From a7a88d0c3dfaf1ca4984c118873c3fd00615e295 Mon Sep 17 00:00:00 2001 From: Nils <> Date: Sat, 7 Dec 2019 23:43:22 +0100 Subject: [PATCH] Initial German translation --- engine/track.py | 23 +- qtgui/designer/mainwindow.py | 429 +- qtgui/designer/mainwindow.ui | 465 +- qtgui/mainwindow.py | 28 +- qtgui/menu.py | 25 +- qtgui/musicstructures.py | 27 +- qtgui/resources.py | 11143 ++++++++++++---------- qtgui/resources/translations/config.pro | 2 +- qtgui/resources/translations/de.qm | Bin 425 -> 25822 bytes qtgui/resources/translations/de.ts | 1262 ++- qtgui/scorescene.py | 1 - qtgui/submenus.py | 89 +- qtgui/trackEditor.py | 22 +- 13 files changed, 8205 insertions(+), 5311 deletions(-) diff --git a/engine/track.py b/engine/track.py index 0aa52e8..4546c16 100644 --- a/engine/track.py +++ b/engine/track.py @@ -987,8 +987,8 @@ class Track(object): #TODO: However, it is even less elegant to put this call in all rhythm editing methods and functions. inserts, block duplicate, content links, augment, tuplets undo etc. #Taken out an placed in tempo Export. #self.score.tempoTrack.expandLastBlockToScoreDuration() #we guarantee that the tempo track is always at least as long as the music tracks. - midiNotesBinaryCoxData = bytes() # Create a binary blob that contains the MIDI events - instrumentChangesBinaryCoxData = bytes() # same as above, but only for instrument changes. + midiNotesBinaryCboxData = bytes() # Create a binary blob that contains the MIDI events + instrumentChangesBinaryCboxData = bytes() # same as above, but only for instrument changes. originalPosition = self.state.position() self.getPreliminaryData() @@ -1007,9 +1007,9 @@ class Track(object): assert self.initialMidiBankMsb == initialProgamChange.msb assert self.initialMidiBankLsb == initialProgamChange.lsb if initialProgamChange.program >= 0: #-1 is off. - instrumentChangesBinaryCoxData += cbox.Pattern.serialize_event(0, 0xC0 + self.initialMidiChannel, initialProgamChange.program, 0) - instrumentChangesBinaryCoxData += cbox.Pattern.serialize_event(0, 0xB0 + self.initialMidiChannel, 0, self.initialMidiBankMsb) #position, status byte+channel, controller number, controller value - instrumentChangesBinaryCoxData += cbox.Pattern.serialize_event(0, 0xB0 + self.initialMidiChannel, 32, self.initialMidiBankLsb) #position, status byte+channel, controller number, controller value + instrumentChangesBinaryCboxData += cbox.Pattern.serialize_event(0, 0xC0 + self.initialMidiChannel, initialProgamChange.program, 0) + instrumentChangesBinaryCboxData += cbox.Pattern.serialize_event(0, 0xB0 + self.initialMidiChannel, 0, self.initialMidiBankMsb) #position, status byte+channel, controller number, controller value + instrumentChangesBinaryCboxData += cbox.Pattern.serialize_event(0, 0xB0 + self.initialMidiChannel, 32, self.initialMidiBankLsb) #position, status byte+channel, controller number, controller value localRight = self.right #performance resultAppend = result.append #performance @@ -1027,13 +1027,13 @@ class Track(object): resultAppend(expObj) dur = expObj["completeDuration"] if expObj["type"] != "InstrumentChange": - for blob in expObj["midiBytes"]: #a list of - midiNotesBinaryCoxData += blob + for blob in expObj["midiBytes"]: #a list of + midiNotesBinaryCboxData += blob if expObj["type"] == "Chord" or expObj["type"] == "Rest": #save for later when we create Beams. No other use. _allExportedChordsAppend(expObj) else: for blob in expObj["midiBytes"]: #a list of - instrumentChangesBinaryCoxData += blob + instrumentChangesBinaryCboxData += blob elif r == 2: #block end. Again, this is already the previous state. right now we are in the next block already. lastBlock = self.blocks[self.state.blockindex-1] #why -1? see comment above @@ -1161,13 +1161,12 @@ class Track(object): metaData["duration"] = self.state.tickindex #tickindex is now at the end, so this is the end duration. This includes Blocks minimumDuration as well since it is included in left/right metaData["beams"] = resultBeamGroups - #Notes - t = (midiNotesBinaryCoxData, 0, self.state.tickindex) + #Notes + t = (midiNotesBinaryCboxData, 0, self.state.tickindex) self.sequencerInterface.setTrack([t]) #(bytes-blob, position, length) #tickindex is still on the last position, which means the second parameter is the length #Instrument Changes - self.sequencerInterface.setSubtrack(key="instrumentChanges", blobs=[(instrumentChangesBinaryCoxData, 0, self.state.tickindex),]) #(bytes-blob, position, length) - + self.sequencerInterface.setSubtrack(key="instrumentChanges", blobs=[(instrumentChangesBinaryCboxData, 0, self.state.tickindex),]) #(bytes-blob, position, length) self.toPosition(originalPosition, strict = False) #has head() in it return result diff --git a/qtgui/designer/mainwindow.py b/qtgui/designer/mainwindow.py index 4925d8b..5d1a496 100644 --- a/qtgui/designer/mainwindow.py +++ b/qtgui/designer/mainwindow.py @@ -2,7 +2,7 @@ # Form implementation generated from reading ui file 'mainwindow.ui' # -# Created by: PyQt5 UI code generator 5.13.1 +# Created by: PyQt5 UI code generator 5.13.2 # # WARNING! All changes made in this file will be lost! @@ -14,6 +14,7 @@ class Ui_MainWindow(object): def setupUi(self, MainWindow): MainWindow.setObjectName("MainWindow") MainWindow.resize(1036, 625) + MainWindow.setWindowTitle("Laborejo") self.centralwidget = QtWidgets.QWidget(MainWindow) self.centralwidget.setObjectName("centralwidget") self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.centralwidget) @@ -26,6 +27,7 @@ class Ui_MainWindow(object): self.statusbar.setObjectName("statusbar") MainWindow.setStatusBar(self.statusbar) self.toolBar = QtWidgets.QToolBar(MainWindow) + self.toolBar.setWindowTitle("toolBar") self.toolBar.setMovable(False) self.toolBar.setFloatable(False) self.toolBar.setObjectName("toolBar") @@ -39,8 +41,10 @@ class Ui_MainWindow(object): self.menuObjects.setObjectName("menuObjects") self.menuGeneric = QtWidgets.QMenu(self.menubar) self.menuGeneric.setEnabled(True) + self.menuGeneric.setTitle("&Generic") self.menuGeneric.setObjectName("menuGeneric") self.menuType_Here = QtWidgets.QMenu(self.menuGeneric) + self.menuType_Here.setTitle("T&ype Here") self.menuType_Here.setObjectName("menuType_Here") self.menuTracks = QtWidgets.QMenu(self.menubar) self.menuTracks.setObjectName("menuTracks") @@ -55,6 +59,7 @@ class Ui_MainWindow(object): self.menu.setObjectName("menu") self.menu_2 = QtWidgets.QMenu(self.menubar) self.menu_2.setEnabled(False) + self.menu_2.setTitle("|") self.menu_2.setObjectName("menu_2") self.menuEdit_MusicItem = QtWidgets.QMenu(self.menubar) self.menuEdit_MusicItem.setObjectName("menuEdit_MusicItem") @@ -80,287 +85,482 @@ class Ui_MainWindow(object): self.leftToolBar.setSizePolicy(sizePolicy) self.leftToolBar.setMinimumSize(QtCore.QSize(26, 0)) self.leftToolBar.setMaximumSize(QtCore.QSize(26, 16777215)) + self.leftToolBar.setWindowTitle("leftToolBar") self.leftToolBar.setMovable(False) self.leftToolBar.setAllowedAreas(QtCore.Qt.LeftToolBarArea) self.leftToolBar.setFloatable(False) self.leftToolBar.setObjectName("leftToolBar") MainWindow.addToolBar(QtCore.Qt.LeftToolBarArea, self.leftToolBar) self.actionUp = QtWidgets.QAction(MainWindow) + self.actionUp.setText("u&p") + self.actionUp.setToolTip("up") + self.actionUp.setShortcut("Up") self.actionUp.setObjectName("actionUp") self.actionDown = QtWidgets.QAction(MainWindow) + self.actionDown.setText("d&own") + self.actionDown.setToolTip("down") + self.actionDown.setShortcut("Down") self.actionDown.setObjectName("actionDown") self.actionLeft = QtWidgets.QAction(MainWindow) + self.actionLeft.setText("&left") + self.actionLeft.setToolTip("left") + self.actionLeft.setShortcut("Left") self.actionLeft.setObjectName("actionLeft") self.actionRight = QtWidgets.QAction(MainWindow) + self.actionRight.setText("&right") + self.actionRight.setToolTip("right") + self.actionRight.setShortcut("Right") self.actionRight.setObjectName("actionRight") self.actionModal1 = QtWidgets.QAction(MainWindow) + self.actionModal1.setText("&modal1") + self.actionModal1.setIconText("modal1") + self.actionModal1.setToolTip("modal1") + self.actionModal1.setShortcut("1") self.actionModal1.setObjectName("actionModal1") self.actionModal2 = QtWidgets.QAction(MainWindow) + self.actionModal2.setText("modal&2") + self.actionModal2.setToolTip("modal2") + self.actionModal2.setShortcut("2") self.actionModal2.setObjectName("actionModal2") self.actionModal3 = QtWidgets.QAction(MainWindow) + self.actionModal3.setText("modal&3") + self.actionModal3.setToolTip("modal3") + self.actionModal3.setShortcut("3") self.actionModal3.setObjectName("actionModal3") self.actionModal4 = QtWidgets.QAction(MainWindow) + self.actionModal4.setText("modal&4") + self.actionModal4.setToolTip("modal4") + self.actionModal4.setShortcut("4") self.actionModal4.setObjectName("actionModal4") self.actionModal5 = QtWidgets.QAction(MainWindow) + self.actionModal5.setText("modal&5") + self.actionModal5.setToolTip("modal5") + self.actionModal5.setShortcut("5") self.actionModal5.setObjectName("actionModal5") self.actionModal6 = QtWidgets.QAction(MainWindow) + self.actionModal6.setText("modal&6") + self.actionModal6.setToolTip("modal6") + self.actionModal6.setShortcut("6") self.actionModal6.setObjectName("actionModal6") self.actionModal7 = QtWidgets.QAction(MainWindow) + self.actionModal7.setText("modal&7") + self.actionModal7.setToolTip("modal7") + self.actionModal7.setShortcut("7") self.actionModal7.setObjectName("actionModal7") self.actionModal8 = QtWidgets.QAction(MainWindow) + self.actionModal8.setText("modal&8") + self.actionModal8.setToolTip("modal8") + self.actionModal8.setShortcut("8") self.actionModal8.setObjectName("actionModal8") self.actionModal9 = QtWidgets.QAction(MainWindow) + self.actionModal9.setText("modal&9") + self.actionModal9.setToolTip("modal9") + self.actionModal9.setShortcut("9") self.actionModal9.setObjectName("actionModal9") self.actionModal0 = QtWidgets.QAction(MainWindow) + self.actionModal0.setText("modal&0") + self.actionModal0.setToolTip("modal0") + self.actionModal0.setShortcut("0") self.actionModal0.setObjectName("actionModal0") self.actionDelete = QtWidgets.QAction(MainWindow) + self.actionDelete.setShortcut("Del") self.actionDelete.setObjectName("actionDelete") self.actionBackspace = QtWidgets.QAction(MainWindow) + self.actionBackspace.setShortcut("Backspace") self.actionBackspace.setObjectName("actionBackspace") self.actionShift_modal1 = QtWidgets.QAction(MainWindow) + self.actionShift_modal1.setText("sh&ift+modal1") + self.actionShift_modal1.setShortcut("Shift+1") self.actionShift_modal1.setObjectName("actionShift_modal1") self.actionShift_modal2 = QtWidgets.QAction(MainWindow) + self.actionShift_modal2.setText("shi&ft+modal2") + self.actionShift_modal2.setShortcut("Shift+2") self.actionShift_modal2.setObjectName("actionShift_modal2") self.actionShift_modal3 = QtWidgets.QAction(MainWindow) + self.actionShift_modal3.setText("shift+modal3") + self.actionShift_modal3.setShortcut("Shift+3") self.actionShift_modal3.setObjectName("actionShift_modal3") self.actionShift_modal4 = QtWidgets.QAction(MainWindow) + self.actionShift_modal4.setText("shift+modal4") + self.actionShift_modal4.setShortcut("Shift+4") self.actionShift_modal4.setObjectName("actionShift_modal4") self.actionShift_modal5 = QtWidgets.QAction(MainWindow) + self.actionShift_modal5.setText("shift+modal5") + self.actionShift_modal5.setShortcut("Shift+5") self.actionShift_modal5.setObjectName("actionShift_modal5") self.actionShift_modal6 = QtWidgets.QAction(MainWindow) + self.actionShift_modal6.setText("shift+modal6") + self.actionShift_modal6.setShortcut("Shift+6") self.actionShift_modal6.setObjectName("actionShift_modal6") self.actionShift_modal7 = QtWidgets.QAction(MainWindow) + self.actionShift_modal7.setText("shift+modal7") + self.actionShift_modal7.setShortcut("Shift+7") self.actionShift_modal7.setObjectName("actionShift_modal7") self.actionShift_modal8 = QtWidgets.QAction(MainWindow) + self.actionShift_modal8.setText("shift+modal8") + self.actionShift_modal8.setShortcut("Shift+8") self.actionShift_modal8.setObjectName("actionShift_modal8") self.actionShift_modal9 = QtWidgets.QAction(MainWindow) + self.actionShift_modal9.setText("shift+modal9") + self.actionShift_modal9.setShortcut("Shift+9") self.actionShift_modal9.setObjectName("actionShift_modal9") self.actionShift_modal0 = QtWidgets.QAction(MainWindow) + self.actionShift_modal0.setText("shift+modal0") + self.actionShift_modal0.setShortcut("Shift+0") self.actionShift_modal0.setObjectName("actionShift_modal0") self.actionAddCursorNoteToChord = QtWidgets.QAction(MainWindow) + self.actionAddCursorNoteToChord.setShortcut("Return") self.actionAddCursorNoteToChord.setShortcutContext(QtCore.Qt.WindowShortcut) self.actionAddCursorNoteToChord.setObjectName("actionAddCursorNoteToChord") self.actionDeleteCursorNoteFromChord = QtWidgets.QAction(MainWindow) + self.actionDeleteCursorNoteFromChord.setShortcut("Shift+Del") self.actionDeleteCursorNoteFromChord.setObjectName("actionDeleteCursorNoteFromChord") self.actionAdd_Track = QtWidgets.QAction(MainWindow) self.actionAdd_Track.setObjectName("actionAdd_Track") self.actionTrackUp = QtWidgets.QAction(MainWindow) + self.actionTrackUp.setText("&trackUp") + self.actionTrackUp.setShortcut("PgUp") self.actionTrackUp.setObjectName("actionTrackUp") self.actionTrackDown = QtWidgets.QAction(MainWindow) + self.actionTrackDown.setText("trac&kDown") + self.actionTrackDown.setShortcut("PgDown") self.actionTrackDown.setObjectName("actionTrackDown") self.actionHead = QtWidgets.QAction(MainWindow) + self.actionHead.setText("&head") + self.actionHead.setShortcut("Home") self.actionHead.setObjectName("actionHead") self.actionTail = QtWidgets.QAction(MainWindow) + self.actionTail.setText("tail") + self.actionTail.setShortcut("End") self.actionTail.setObjectName("actionTail") self.actionTrackFirst = QtWidgets.QAction(MainWindow) + self.actionTrackFirst.setText("trackFirst") + self.actionTrackFirst.setShortcut("Ctrl+PgUp") self.actionTrackFirst.setObjectName("actionTrackFirst") self.actionTrackLast = QtWidgets.QAction(MainWindow) + self.actionTrackLast.setText("trackLast") + self.actionTrackLast.setShortcut("Ctrl+PgDown") self.actionTrackLast.setObjectName("actionTrackLast") self.actionSharpen_Note = QtWidgets.QAction(MainWindow) + self.actionSharpen_Note.setShortcut("+") self.actionSharpen_Note.setObjectName("actionSharpen_Note") self.actionFlatten_Note = QtWidgets.QAction(MainWindow) + self.actionFlatten_Note.setShortcut("-") self.actionFlatten_Note.setObjectName("actionFlatten_Note") self.actionMeasureLeft = QtWidgets.QAction(MainWindow) + self.actionMeasureLeft.setText("measureLeft") + self.actionMeasureLeft.setShortcut("Ctrl+Left") self.actionMeasureLeft.setObjectName("actionMeasureLeft") self.actionMeasureRight = QtWidgets.QAction(MainWindow) + self.actionMeasureRight.setText("measureRight") + self.actionMeasureRight.setShortcut("Ctrl+Right") self.actionMeasureRight.setObjectName("actionMeasureRight") self.actionStep_Up = QtWidgets.QAction(MainWindow) + self.actionStep_Up.setShortcut("Alt+Up") self.actionStep_Up.setObjectName("actionStep_Up") self.actionStep_Down = QtWidgets.QAction(MainWindow) + self.actionStep_Down.setShortcut("Alt+Down") self.actionStep_Down.setObjectName("actionStep_Down") self.actionOctave_Up = QtWidgets.QAction(MainWindow) + self.actionOctave_Up.setShortcut("Ctrl+Alt+Up") self.actionOctave_Up.setObjectName("actionOctave_Up") self.actionOctave_Down = QtWidgets.QAction(MainWindow) + self.actionOctave_Down.setShortcut("Ctrl+Alt+Down") self.actionOctave_Down.setObjectName("actionOctave_Down") self.actionAugment = QtWidgets.QAction(MainWindow) + self.actionAugment.setShortcut("Alt+Right") self.actionAugment.setObjectName("actionAugment") self.actionDiminish = QtWidgets.QAction(MainWindow) + self.actionDiminish.setShortcut("Alt+Left") self.actionDiminish.setObjectName("actionDiminish") self.actionAppend_Block = QtWidgets.QAction(MainWindow) self.actionAppend_Block.setObjectName("actionAppend_Block") self.actionSplit_Current_Block = QtWidgets.QAction(MainWindow) + self.actionSplit_Current_Block.setShortcut("Ins") self.actionSplit_Current_Block.setObjectName("actionSplit_Current_Block") self.actionDuplicate = QtWidgets.QAction(MainWindow) + self.actionDuplicate.setShortcut("Alt+Ins") self.actionDuplicate.setObjectName("actionDuplicate") self.actionCreate_Linked_Copy = QtWidgets.QAction(MainWindow) + self.actionCreate_Linked_Copy.setShortcut("Alt+Shift+Ins") self.actionCreate_Linked_Copy.setObjectName("actionCreate_Linked_Copy") self.actionDelete_Current_Block = QtWidgets.QAction(MainWindow) self.actionDelete_Current_Block.setObjectName("actionDelete_Current_Block") self.actionToggle_Notehead_Rectangles = QtWidgets.QAction(MainWindow) self.actionToggle_Notehead_Rectangles.setCheckable(True) + self.actionToggle_Notehead_Rectangles.setShortcut("F1") self.actionToggle_Notehead_Rectangles.setObjectName("actionToggle_Notehead_Rectangles") self.actionPlayPause = QtWidgets.QAction(MainWindow) + self.actionPlayPause.setShortcut("Space") self.actionPlayPause.setObjectName("actionPlayPause") self.actionPlayFromBeginning = QtWidgets.QAction(MainWindow) + self.actionPlayFromBeginning.setShortcut("Shift+Space") self.actionPlayFromBeginning.setObjectName("actionPlayFromBeginning") self.actionFollow_Playhead = QtWidgets.QAction(MainWindow) self.actionFollow_Playhead.setCheckable(True) self.actionFollow_Playhead.setChecked(True) + self.actionFollow_Playhead.setShortcut("F3") self.actionFollow_Playhead.setObjectName("actionFollow_Playhead") self.actionPlayFromEditCursor = QtWidgets.QAction(MainWindow) + self.actionPlayFromEditCursor.setShortcut("Ctrl+Space") self.actionPlayFromEditCursor.setObjectName("actionPlayFromEditCursor") self.actionStaccato = QtWidgets.QAction(MainWindow) + self.actionStaccato.setShortcut(",") self.actionStaccato.setObjectName("actionStaccato") self.actionCopy = QtWidgets.QAction(MainWindow) + self.actionCopy.setShortcut("Ctrl+C") self.actionCopy.setObjectName("actionCopy") self.actionCut = QtWidgets.QAction(MainWindow) + self.actionCut.setShortcut("Ctrl+X") self.actionCut.setObjectName("actionCut") self.actionPaste = QtWidgets.QAction(MainWindow) + self.actionPaste.setShortcut("Ctrl+V") self.actionPaste.setObjectName("actionPaste") self.actionUpOctave = QtWidgets.QAction(MainWindow) + self.actionUpOctave.setText("&upOctave") + self.actionUpOctave.setShortcut("Ctrl+Up") self.actionUpOctave.setObjectName("actionUpOctave") self.actionDownOctave = QtWidgets.QAction(MainWindow) + self.actionDownOctave.setText("&downOctave") + self.actionDownOctave.setShortcut("Ctrl+Down") self.actionDownOctave.setObjectName("actionDownOctave") self.actionDots = QtWidgets.QAction(MainWindow) + self.actionDots.setShortcut("Q") self.actionDots.setObjectName("actionDots") self.actionCC_Mode = QtWidgets.QAction(MainWindow) self.actionCC_Mode.setCheckable(True) + self.actionCC_Mode.setShortcut("F7") self.actionCC_Mode.setObjectName("actionCC_Mode") - self.CCactionSplit_Current_Block = QtWidgets.QAction(MainWindow) - self.CCactionSplit_Current_Block.setObjectName("CCactionSplit_Current_Block") self.actionChange_Grid_Rhythm = QtWidgets.QAction(MainWindow) self.actionChange_Grid_Rhythm.setCheckable(False) self.actionChange_Grid_Rhythm.setChecked(False) + self.actionChange_Grid_Rhythm.setShortcut("F2") self.actionChange_Grid_Rhythm.setObjectName("actionChange_Grid_Rhythm") self.actionSnap_To_Grid = QtWidgets.QAction(MainWindow) self.actionSnap_To_Grid.setCheckable(True) self.actionSnap_To_Grid.setChecked(True) self.actionSnap_To_Grid.setObjectName("actionSnap_To_Grid") self.actionAlt_modal1 = QtWidgets.QAction(MainWindow) + self.actionAlt_modal1.setText("&Alt_modal1") + self.actionAlt_modal1.setShortcut("Alt+1") self.actionAlt_modal1.setObjectName("actionAlt_modal1") self.actionAlt_modal2 = QtWidgets.QAction(MainWindow) + self.actionAlt_modal2.setText("Alt_modal2") + self.actionAlt_modal2.setShortcut("Alt+2") self.actionAlt_modal2.setObjectName("actionAlt_modal2") self.actionAlt_modal3 = QtWidgets.QAction(MainWindow) + self.actionAlt_modal3.setText("Alt_modal3") + self.actionAlt_modal3.setShortcut("Alt+3") self.actionAlt_modal3.setObjectName("actionAlt_modal3") self.actionAlt_modal4 = QtWidgets.QAction(MainWindow) + self.actionAlt_modal4.setText("Alt_modal4") + self.actionAlt_modal4.setShortcut("Alt+4") self.actionAlt_modal4.setObjectName("actionAlt_modal4") self.actionAlt_modal5 = QtWidgets.QAction(MainWindow) + self.actionAlt_modal5.setText("Alt_modal5") + self.actionAlt_modal5.setShortcut("Alt+5") self.actionAlt_modal5.setObjectName("actionAlt_modal5") self.actionAlt_modal6 = QtWidgets.QAction(MainWindow) + self.actionAlt_modal6.setText("Alt_modal6") + self.actionAlt_modal6.setShortcut("Alt+6") self.actionAlt_modal6.setObjectName("actionAlt_modal6") self.actionAlt_modal7 = QtWidgets.QAction(MainWindow) + self.actionAlt_modal7.setText("Alt_modal7") + self.actionAlt_modal7.setShortcut("Alt+7") self.actionAlt_modal7.setObjectName("actionAlt_modal7") self.actionAlt_modal8 = QtWidgets.QAction(MainWindow) + self.actionAlt_modal8.setText("Alt_modal8") + self.actionAlt_modal8.setShortcut("Alt+8") self.actionAlt_modal8.setObjectName("actionAlt_modal8") self.actionAlt_modal9 = QtWidgets.QAction(MainWindow) + self.actionAlt_modal9.setText("Alt_modal9") + self.actionAlt_modal9.setShortcut("Alt+9") self.actionAlt_modal9.setObjectName("actionAlt_modal9") self.actionAlt_modal0 = QtWidgets.QAction(MainWindow) + self.actionAlt_modal0.setText("Alt_modal0") + self.actionAlt_modal0.setShortcut("Alt+0") self.actionAlt_modal0.setObjectName("actionAlt_modal0") self.actionMidi_In_is_Active = QtWidgets.QAction(MainWindow) self.actionMidi_In_is_Active.setCheckable(True) + self.actionMidi_In_is_Active.setShortcut("F4") self.actionMidi_In_is_Active.setObjectName("actionMidi_In_is_Active") self.actionTie = QtWidgets.QAction(MainWindow) + self.actionTie.setShortcut("I") self.actionTie.setObjectName("actionTie") self.actionLegatoSlur = QtWidgets.QAction(MainWindow) + self.actionLegatoSlur.setShortcut("S") self.actionLegatoSlur.setObjectName("actionLegatoSlur") self.actionTenuto = QtWidgets.QAction(MainWindow) + self.actionTenuto.setShortcut("E") self.actionTenuto.setObjectName("actionTenuto") self.actionTriplet = QtWidgets.QAction(MainWindow) + self.actionTriplet.setShortcut("T") self.actionTriplet.setObjectName("actionTriplet") self.actionCustom_Tuplets = QtWidgets.QAction(MainWindow) self.actionCustom_Tuplets.setEnabled(False) + self.actionCustom_Tuplets.setShortcut("Alt+T") self.actionCustom_Tuplets.setObjectName("actionCustom_Tuplets") self.actionPrevailingRest = QtWidgets.QAction(MainWindow) self.actionPrevailingRest.setEnabled(False) self.actionPrevailingRest.setObjectName("actionPrevailingRest") self.actionSplit_in_2 = QtWidgets.QAction(MainWindow) + self.actionSplit_in_2.setShortcut("X") self.actionSplit_in_2.setObjectName("actionSplit_in_2") self.actionSplit_in_3 = QtWidgets.QAction(MainWindow) + self.actionSplit_in_3.setShortcut("Shift+X") self.actionSplit_in_3.setObjectName("actionSplit_in_3") self.actionCustom_Split = QtWidgets.QAction(MainWindow) self.actionCustom_Split.setEnabled(True) + self.actionCustom_Split.setShortcut("Alt+X") self.actionCustom_Split.setObjectName("actionCustom_Split") self.actionUndo = QtWidgets.QAction(MainWindow) + self.actionUndo.setShortcut("Ctrl+Z") self.actionUndo.setObjectName("actionUndo") self.actionRedo = QtWidgets.QAction(MainWindow) + self.actionRedo.setShortcut("Ctrl+Shift+Z") self.actionRedo.setObjectName("actionRedo") self.actionJoin_with_next_Block = QtWidgets.QAction(MainWindow) + self.actionJoin_with_next_Block.setShortcut("Shift+Ins") self.actionJoin_with_next_Block.setObjectName("actionJoin_with_next_Block") self.actionSet_UpBeat = QtWidgets.QAction(MainWindow) self.actionSet_UpBeat.setObjectName("actionSet_UpBeat") self.actionSelectLeft = QtWidgets.QAction(MainWindow) + self.actionSelectLeft.setText("selectLeft") + self.actionSelectLeft.setShortcut("Shift+Left") self.actionSelectLeft.setObjectName("actionSelectLeft") self.actionSelectRight = QtWidgets.QAction(MainWindow) + self.actionSelectRight.setText("selectRi&ght") + self.actionSelectRight.setShortcut("Shift+Right") self.actionSelectRight.setObjectName("actionSelectRight") self.actionSelectMeasureLeft = QtWidgets.QAction(MainWindow) + self.actionSelectMeasureLeft.setText("selectMeasureLeft") + self.actionSelectMeasureLeft.setShortcut("Ctrl+Shift+Left") self.actionSelectMeasureLeft.setObjectName("actionSelectMeasureLeft") self.actionSelectMeasureRight = QtWidgets.QAction(MainWindow) + self.actionSelectMeasureRight.setText("selectMeasureRight") + self.actionSelectMeasureRight.setShortcut("Ctrl+Shift+Right") self.actionSelectMeasureRight.setObjectName("actionSelectMeasureRight") self.actionSelectHead = QtWidgets.QAction(MainWindow) + self.actionSelectHead.setText("selectHead") + self.actionSelectHead.setShortcut("Shift+Home") self.actionSelectHead.setObjectName("actionSelectHead") self.actionSelectTail = QtWidgets.QAction(MainWindow) + self.actionSelectTail.setText("selectTail") + self.actionSelectTail.setShortcut("Shift+End") self.actionSelectTail.setObjectName("actionSelectTail") self.actionSelectTrackUp = QtWidgets.QAction(MainWindow) + self.actionSelectTrackUp.setText("selectTrackUp") + self.actionSelectTrackUp.setShortcut("Shift+PgUp") self.actionSelectTrackUp.setObjectName("actionSelectTrackUp") self.actionSelectTrackDown = QtWidgets.QAction(MainWindow) + self.actionSelectTrackDown.setText("selectTrackDown") + self.actionSelectTrackDown.setShortcut("Shift+PgDown") self.actionSelectTrackDown.setObjectName("actionSelectTrackDown") self.actionSelectTrackFirst = QtWidgets.QAction(MainWindow) + self.actionSelectTrackFirst.setText("selectTrackFirst") + self.actionSelectTrackFirst.setShortcut("Ctrl+Shift+PgUp") self.actionSelectTrackFirst.setObjectName("actionSelectTrackFirst") self.actionSelectTrackLast = QtWidgets.QAction(MainWindow) + self.actionSelectTrackLast.setText("selectTrackLast") + self.actionSelectTrackLast.setShortcut("Ctrl+Shift+PgDown") self.actionSelectTrackLast.setObjectName("actionSelectTrackLast") self.actionSelectUp = QtWidgets.QAction(MainWindow) + self.actionSelectUp.setText("selectUp") + self.actionSelectUp.setShortcut("Shift+Up") self.actionSelectUp.setObjectName("actionSelectUp") self.actionSelectDown = QtWidgets.QAction(MainWindow) + self.actionSelectDown.setText("selectDo&wn") + self.actionSelectDown.setShortcut("Shift+Down") self.actionSelectDown.setObjectName("actionSelectDown") self.actionSelectUpOctave = QtWidgets.QAction(MainWindow) + self.actionSelectUpOctave.setText("selectUpOcta&ve") + self.actionSelectUpOctave.setShortcut("Ctrl+Shift+Up") self.actionSelectUpOctave.setObjectName("actionSelectUpOctave") self.actionSelectDownOctave = QtWidgets.QAction(MainWindow) + self.actionSelectDownOctave.setText("selectDow&nOctave") + self.actionSelectDownOctave.setShortcut("Ctrl+Shift+Down") self.actionSelectDownOctave.setObjectName("actionSelectDownOctave") self.actionSelectTrack = QtWidgets.QAction(MainWindow) + self.actionSelectTrack.setText("selectTrack") + self.actionSelectTrack.setShortcut("Shift+A") self.actionSelectTrack.setObjectName("actionSelectTrack") self.actionSelectMeasureColumn = QtWidgets.QAction(MainWindow) + self.actionSelectMeasureColumn.setText("selectMeasureColumn") + self.actionSelectMeasureColumn.setShortcut("Ctrl+A") self.actionSelectMeasureColumn.setObjectName("actionSelectMeasureColumn") self.actionSelectAllTracks = QtWidgets.QAction(MainWindow) + self.actionSelectAllTracks.setText("selectAllTracks") + self.actionSelectAllTracks.setShortcut("Ctrl+Shift+A") self.actionSelectAllTracks.setObjectName("actionSelectAllTracks") self.actionVelocityMore = QtWidgets.QAction(MainWindow) + self.actionVelocityMore.setShortcut(">") self.actionVelocityMore.setObjectName("actionVelocityMore") self.actionVelocityLess = QtWidgets.QAction(MainWindow) + self.actionVelocityLess.setShortcut("<") self.actionVelocityLess.setObjectName("actionVelocityLess") self.actionDurationModMore = QtWidgets.QAction(MainWindow) + self.actionDurationModMore.setShortcut("Alt+Shift+Right") self.actionDurationModMore.setObjectName("actionDurationModMore") self.actionDurationModLess = QtWidgets.QAction(MainWindow) + self.actionDurationModLess.setShortcut("Alt+Shift+Left") self.actionDurationModLess.setObjectName("actionDurationModLess") self.actionReset_Velocity_Duration_Mod = QtWidgets.QAction(MainWindow) self.actionReset_Velocity_Duration_Mod.setObjectName("actionReset_Velocity_Duration_Mod") self.actionWiden_Score_View = QtWidgets.QAction(MainWindow) + self.actionWiden_Score_View.setShortcut("Ctrl+Shift++") self.actionWiden_Score_View.setObjectName("actionWiden_Score_View") self.actionShrink_Score_View = QtWidgets.QAction(MainWindow) + self.actionShrink_Score_View.setShortcut("Ctrl+Shift+-") self.actionShrink_Score_View.setObjectName("actionShrink_Score_View") self.actionData_Editor = QtWidgets.QAction(MainWindow) self.actionData_Editor.setCheckable(True) + self.actionData_Editor.setShortcut("Ctrl+T") self.actionData_Editor.setObjectName("actionData_Editor") self.actionClef = QtWidgets.QAction(MainWindow) + self.actionClef.setShortcut("C") self.actionClef.setObjectName("actionClef") self.actionMetrical_Instruction = QtWidgets.QAction(MainWindow) + self.actionMetrical_Instruction.setShortcut("M") self.actionMetrical_Instruction.setObjectName("actionMetrical_Instruction") self.actionKey_Signature = QtWidgets.QAction(MainWindow) + self.actionKey_Signature.setShortcut("K") self.actionKey_Signature.setObjectName("actionKey_Signature") self.actionDynamics = QtWidgets.QAction(MainWindow) + self.actionDynamics.setShortcut("D") self.actionDynamics.setObjectName("actionDynamics") self.actionMulti_Measure_Rest = QtWidgets.QAction(MainWindow) + self.actionMulti_Measure_Rest.setShortcut("R") self.actionMulti_Measure_Rest.setObjectName("actionMulti_Measure_Rest") self.actionTemporary_Tempo_Change = QtWidgets.QAction(MainWindow) + self.actionTemporary_Tempo_Change.setShortcut("F") self.actionTemporary_Tempo_Change.setObjectName("actionTemporary_Tempo_Change") self.actionBeam = QtWidgets.QAction(MainWindow) + self.actionBeam.setShortcut("B") self.actionBeam.setObjectName("actionBeam") self.actionRemoveBeams = QtWidgets.QAction(MainWindow) + self.actionRemoveBeams.setShortcut("Alt+B") self.actionRemoveBeams.setObjectName("actionRemoveBeams") self.actionTempo_Change = QtWidgets.QAction(MainWindow) + self.actionTempo_Change.setShortcut("G") self.actionTempo_Change.setObjectName("actionTempo_Change") self.actionDelete_Tempo_Change = QtWidgets.QAction(MainWindow) + self.actionDelete_Tempo_Change.setShortcut("Alt+G") self.actionDelete_Tempo_Change.setObjectName("actionDelete_Tempo_Change") self.actionBlock_Mode = QtWidgets.QAction(MainWindow) self.actionBlock_Mode.setCheckable(True) + self.actionBlock_Mode.setShortcut("F6") self.actionBlock_Mode.setObjectName("actionBlock_Mode") self.actionNotation_Mode = QtWidgets.QAction(MainWindow) self.actionNotation_Mode.setCheckable(True) self.actionNotation_Mode.setChecked(True) + self.actionNotation_Mode.setShortcut("F5") self.actionNotation_Mode.setObjectName("actionNotation_Mode") self.actionTransposeChord = QtWidgets.QAction(MainWindow) self.actionTransposeChord.setObjectName("actionTransposeChord") self.actionTranspose_Score = QtWidgets.QAction(MainWindow) self.actionTranspose_Score.setObjectName("actionTranspose_Score") self.actionSave = QtWidgets.QAction(MainWindow) + self.actionSave.setShortcut("Ctrl+S") self.actionSave.setObjectName("actionSave") self.actionExport_File = QtWidgets.QAction(MainWindow) self.actionExport_File.setObjectName("actionExport_File") @@ -371,18 +571,27 @@ class Ui_MainWindow(object): self.actionDelete_All_Empty_Blocks = QtWidgets.QAction(MainWindow) self.actionDelete_All_Empty_Blocks.setObjectName("actionDelete_All_Empty_Blocks") self.actionBlockRight = QtWidgets.QAction(MainWindow) + self.actionBlockRight.setText("blo&ckRight") + self.actionBlockRight.setShortcut("Ctrl+Alt+Right") self.actionBlockRight.setObjectName("actionBlockRight") self.actionBlockLeft = QtWidgets.QAction(MainWindow) + self.actionBlockLeft.setText("&blockLeft") + self.actionBlockLeft.setShortcut("Ctrl+Alt+Left") self.actionBlockLeft.setObjectName("actionBlockLeft") self.actionSelectBlockRight = QtWidgets.QAction(MainWindow) + self.actionSelectBlockRight.setText("&selectBlockRight") + self.actionSelectBlockRight.setShortcut("Ctrl+Alt+Shift+Right") self.actionSelectBlockRight.setObjectName("actionSelectBlockRight") self.actionSelectBlockLeft = QtWidgets.QAction(MainWindow) + self.actionSelectBlockLeft.setText("s&electBlockLeft") + self.actionSelectBlockLeft.setShortcut("Ctrl+Alt+Shift+Left") self.actionSelectBlockLeft.setObjectName("actionSelectBlockLeft") self.actionPedalNotes = QtWidgets.QAction(MainWindow) self.actionPedalNotes.setObjectName("actionPedalNotes") self.actionReverse = QtWidgets.QAction(MainWindow) self.actionReverse.setObjectName("actionReverse") self.actionDuplicateItem = QtWidgets.QAction(MainWindow) + self.actionDuplicateItem.setShortcut("Ctrl+D") self.actionDuplicateItem.setObjectName("actionDuplicateItem") self.actionRandom = QtWidgets.QAction(MainWindow) self.actionRandom.setObjectName("actionRandom") @@ -392,8 +601,6 @@ class Ui_MainWindow(object): self.actionDescending.setObjectName("actionDescending") self.actionMirror_around_Cursor = QtWidgets.QAction(MainWindow) self.actionMirror_around_Cursor.setObjectName("actionMirror_around_Cursor") - self.actionInsert_Random = QtWidgets.QAction(MainWindow) - self.actionInsert_Random.setObjectName("actionInsert_Random") self.actionRandom_chromatic_in_clef_range = QtWidgets.QAction(MainWindow) self.actionRandom_chromatic_in_clef_range.setObjectName("actionRandom_chromatic_in_clef_range") self.actionRandom_in_scale_in_clef_range = QtWidgets.QAction(MainWindow) @@ -405,6 +612,7 @@ class Ui_MainWindow(object): self.actionExport_to_Ly = QtWidgets.QAction(MainWindow) self.actionExport_to_Ly.setObjectName("actionExport_to_Ly") self.actionShow_PDF = QtWidgets.QAction(MainWindow) + self.actionShow_PDF.setShortcut("Ctrl+P") self.actionShow_PDF.setObjectName("actionShow_PDF") self.actionExport_to_pdf_file = QtWidgets.QAction(MainWindow) self.actionExport_to_pdf_file.setObjectName("actionExport_to_pdf_file") @@ -429,16 +637,16 @@ class Ui_MainWindow(object): self.actionDelete_Current_Track = QtWidgets.QAction(MainWindow) self.actionDelete_Current_Track.setObjectName("actionDelete_Current_Track") self.actionUse_Current_Track_as_Metronome = QtWidgets.QAction(MainWindow) + self.actionUse_Current_Track_as_Metronome.setShortcut("U") self.actionUse_Current_Track_as_Metronome.setObjectName("actionUse_Current_Track_as_Metronome") self.actionMetronome_Enabled = QtWidgets.QAction(MainWindow) self.actionMetronome_Enabled.setCheckable(True) + self.actionMetronome_Enabled.setShortcut("Alt+U") self.actionMetronome_Enabled.setObjectName("actionMetronome_Enabled") self.actionRandom_in_scale_in_cursor_plus_octave = QtWidgets.QAction(MainWindow) self.actionRandom_in_scale_in_cursor_plus_octave.setObjectName("actionRandom_in_scale_in_cursor_plus_octave") self.actionRandom_in_scale_in_octave_around_cursor = QtWidgets.QAction(MainWindow) self.actionRandom_in_scale_in_octave_around_cursor.setObjectName("actionRandom_in_scale_in_octave_around_cursor") - self.actionCreate_pool_from_selection = QtWidgets.QAction(MainWindow) - self.actionCreate_pool_from_selection.setObjectName("actionCreate_pool_from_selection") self.actionLyBarline = QtWidgets.QAction(MainWindow) self.actionLyBarline.setObjectName("actionLyBarline") self.actionLyFree_Instruction = QtWidgets.QAction(MainWindow) @@ -446,8 +654,10 @@ class Ui_MainWindow(object): self.actionLyRepeat = QtWidgets.QAction(MainWindow) self.actionLyRepeat.setObjectName("actionLyRepeat") self.actionZoom_In_Score_View = QtWidgets.QAction(MainWindow) + self.actionZoom_In_Score_View.setShortcut("Ctrl++") self.actionZoom_In_Score_View.setObjectName("actionZoom_In_Score_View") self.actionZoom_Out_Score_View = QtWidgets.QAction(MainWindow) + self.actionZoom_Out_Score_View.setShortcut("Ctrl+-") self.actionZoom_Out_Score_View.setObjectName("actionZoom_Out_Score_View") self.menuObjects.addAction(self.actionMetrical_Instruction) self.menuObjects.addAction(self.actionClef) @@ -648,18 +858,13 @@ class Ui_MainWindow(object): def retranslateUi(self, MainWindow): _translate = QtCore.QCoreApplication.translate - MainWindow.setWindowTitle(_translate("MainWindow", "Laborejo")) - self.toolBar.setWindowTitle(_translate("MainWindow", "toolBar")) self.menuHelp.setTitle(_translate("MainWindow", "Help")) self.menuObjects.setTitle(_translate("MainWindow", "&Insert Objects")) - self.menuGeneric.setTitle(_translate("MainWindow", "&Generic")) - self.menuType_Here.setTitle(_translate("MainWindow", "T&ype Here")) self.menuTracks.setTitle(_translate("MainWindow", "&Structures")) self.menuEdit.setTitle(_translate("MainWindow", "E&dit Note")) self.menuView.setTitle(_translate("MainWindow", "&Control")) self.menuMode.setTitle(_translate("MainWindow", "&View and Edit Mode")) self.menu.setTitle(_translate("MainWindow", "|")) - self.menu_2.setTitle(_translate("MainWindow", "|")) self.menuEdit_MusicItem.setTitle(_translate("MainWindow", "Edit &MusicItem")) self.menuEdit_2.setTitle(_translate("MainWindow", "E&dit")) self.menuToolbox.setTitle(_translate("MainWindow", "&Toolbox")) @@ -667,292 +872,97 @@ class Ui_MainWindow(object): self.menuInsert.setTitle(_translate("MainWindow", "&Note Generation")) self.menuMIDI.setTitle(_translate("MainWindow", "&MIDI")) self.menuLilypond.setTitle(_translate("MainWindow", "&Lilypond")) - self.leftToolBar.setWindowTitle(_translate("MainWindow", "leftToolBar")) - self.actionUp.setText(_translate("MainWindow", "u&p")) - self.actionUp.setShortcut(_translate("MainWindow", "Up")) - self.actionDown.setText(_translate("MainWindow", "d&own")) - self.actionDown.setShortcut(_translate("MainWindow", "Down")) - self.actionLeft.setText(_translate("MainWindow", "&left")) - self.actionLeft.setShortcut(_translate("MainWindow", "Left")) - self.actionRight.setText(_translate("MainWindow", "&right")) - self.actionRight.setShortcut(_translate("MainWindow", "Right")) - self.actionModal1.setText(_translate("MainWindow", "&modal1")) - self.actionModal1.setShortcut(_translate("MainWindow", "1")) - self.actionModal2.setText(_translate("MainWindow", "modal&2")) - self.actionModal2.setShortcut(_translate("MainWindow", "2")) - self.actionModal3.setText(_translate("MainWindow", "modal&3")) - self.actionModal3.setShortcut(_translate("MainWindow", "3")) - self.actionModal4.setText(_translate("MainWindow", "modal&4")) - self.actionModal4.setShortcut(_translate("MainWindow", "4")) - self.actionModal5.setText(_translate("MainWindow", "modal&5")) - self.actionModal5.setShortcut(_translate("MainWindow", "5")) - self.actionModal6.setText(_translate("MainWindow", "modal&6")) - self.actionModal6.setShortcut(_translate("MainWindow", "6")) - self.actionModal7.setText(_translate("MainWindow", "modal&7")) - self.actionModal7.setShortcut(_translate("MainWindow", "7")) - self.actionModal8.setText(_translate("MainWindow", "modal&8")) - self.actionModal8.setShortcut(_translate("MainWindow", "8")) - self.actionModal9.setText(_translate("MainWindow", "modal&9")) - self.actionModal9.setShortcut(_translate("MainWindow", "9")) - self.actionModal0.setText(_translate("MainWindow", "modal&0")) - self.actionModal0.setShortcut(_translate("MainWindow", "0")) self.actionDelete.setText(_translate("MainWindow", "&Delete Item")) - self.actionDelete.setShortcut(_translate("MainWindow", "Del")) self.actionBackspace.setText(_translate("MainWindow", "Delete previous &Item")) - self.actionBackspace.setShortcut(_translate("MainWindow", "Backspace")) - self.actionShift_modal1.setText(_translate("MainWindow", "sh&ift+modal1")) - self.actionShift_modal1.setShortcut(_translate("MainWindow", "Shift+1")) - self.actionShift_modal2.setText(_translate("MainWindow", "shi&ft+modal2")) - self.actionShift_modal2.setShortcut(_translate("MainWindow", "Shift+2")) - self.actionShift_modal3.setText(_translate("MainWindow", "shift+modal3")) - self.actionShift_modal3.setShortcut(_translate("MainWindow", "Shift+3")) - self.actionShift_modal4.setText(_translate("MainWindow", "shift+modal4")) - self.actionShift_modal4.setShortcut(_translate("MainWindow", "Shift+4")) - self.actionShift_modal5.setText(_translate("MainWindow", "shift+modal5")) - self.actionShift_modal5.setShortcut(_translate("MainWindow", "Shift+5")) - self.actionShift_modal6.setText(_translate("MainWindow", "shift+modal6")) - self.actionShift_modal6.setShortcut(_translate("MainWindow", "Shift+6")) - self.actionShift_modal7.setText(_translate("MainWindow", "shift+modal7")) - self.actionShift_modal7.setShortcut(_translate("MainWindow", "Shift+7")) - self.actionShift_modal8.setText(_translate("MainWindow", "shift+modal8")) - self.actionShift_modal8.setShortcut(_translate("MainWindow", "Shift+8")) - self.actionShift_modal9.setText(_translate("MainWindow", "shift+modal9")) - self.actionShift_modal9.setShortcut(_translate("MainWindow", "Shift+9")) - self.actionShift_modal0.setText(_translate("MainWindow", "shift+modal0")) - self.actionShift_modal0.setShortcut(_translate("MainWindow", "Shift+0")) self.actionAddCursorNoteToChord.setText(_translate("MainWindow", "&Add Note to Chord")) - self.actionAddCursorNoteToChord.setShortcut(_translate("MainWindow", "Return")) self.actionDeleteCursorNoteFromChord.setText(_translate("MainWindow", "&Delete Note from Chord")) - self.actionDeleteCursorNoteFromChord.setShortcut(_translate("MainWindow", "Shift+Del")) self.actionAdd_Track.setText(_translate("MainWindow", "&Add Track")) - self.actionTrackUp.setText(_translate("MainWindow", "&trackUp")) - self.actionTrackUp.setShortcut(_translate("MainWindow", "PgUp")) - self.actionTrackDown.setText(_translate("MainWindow", "trac&kDown")) - self.actionTrackDown.setShortcut(_translate("MainWindow", "PgDown")) - self.actionHead.setText(_translate("MainWindow", "&head")) - self.actionHead.setShortcut(_translate("MainWindow", "Home")) - self.actionTail.setText(_translate("MainWindow", "tail")) - self.actionTail.setShortcut(_translate("MainWindow", "End")) - self.actionTrackFirst.setText(_translate("MainWindow", "trackFirst")) - self.actionTrackFirst.setShortcut(_translate("MainWindow", "Ctrl+PgUp")) - self.actionTrackLast.setText(_translate("MainWindow", "trackLast")) - self.actionTrackLast.setShortcut(_translate("MainWindow", "Ctrl+PgDown")) self.actionSharpen_Note.setText(_translate("MainWindow", "&Sharpen Note")) - self.actionSharpen_Note.setShortcut(_translate("MainWindow", "+")) self.actionFlatten_Note.setText(_translate("MainWindow", "&Flatten Note")) - self.actionFlatten_Note.setShortcut(_translate("MainWindow", "-")) - self.actionMeasureLeft.setText(_translate("MainWindow", "measureLeft")) - self.actionMeasureLeft.setShortcut(_translate("MainWindow", "Ctrl+Left")) - self.actionMeasureRight.setText(_translate("MainWindow", "measureRight")) - self.actionMeasureRight.setShortcut(_translate("MainWindow", "Ctrl+Right")) self.actionStep_Up.setText(_translate("MainWindow", "Step &Up")) - self.actionStep_Up.setShortcut(_translate("MainWindow", "Alt+Up")) self.actionStep_Down.setText(_translate("MainWindow", "Ste&p Down")) - self.actionStep_Down.setShortcut(_translate("MainWindow", "Alt+Down")) self.actionOctave_Up.setText(_translate("MainWindow", "&Octave Up")) - self.actionOctave_Up.setShortcut(_translate("MainWindow", "Ctrl+Alt+Up")) self.actionOctave_Down.setText(_translate("MainWindow", "Octa&ve Down")) - self.actionOctave_Down.setShortcut(_translate("MainWindow", "Ctrl+Alt+Down")) self.actionAugment.setText(_translate("MainWindow", "&Augment")) - self.actionAugment.setShortcut(_translate("MainWindow", "Alt+Right")) self.actionDiminish.setText(_translate("MainWindow", "&Diminish")) - self.actionDiminish.setShortcut(_translate("MainWindow", "Alt+Left")) self.actionAppend_Block.setText(_translate("MainWindow", "Append &Block")) self.actionSplit_Current_Block.setText(_translate("MainWindow", "&Split Current Block")) - self.actionSplit_Current_Block.setShortcut(_translate("MainWindow", "Ins")) self.actionDuplicate.setText(_translate("MainWindow", "&Duplicate Current Block")) - self.actionDuplicate.setShortcut(_translate("MainWindow", "Alt+Ins")) self.actionCreate_Linked_Copy.setText(_translate("MainWindow", "&Create Linked Copy")) - self.actionCreate_Linked_Copy.setShortcut(_translate("MainWindow", "Alt+Shift+Ins")) self.actionDelete_Current_Block.setText(_translate("MainWindow", "De&lete Current Block")) self.actionToggle_Notehead_Rectangles.setText(_translate("MainWindow", "&Rectangle Noteheads")) - self.actionToggle_Notehead_Rectangles.setShortcut(_translate("MainWindow", "F1")) self.actionPlayPause.setText(_translate("MainWindow", "P&lay / Pause")) - self.actionPlayPause.setShortcut(_translate("MainWindow", "Space")) self.actionPlayFromBeginning.setText(_translate("MainWindow", "Play fr&om Start")) - self.actionPlayFromBeginning.setShortcut(_translate("MainWindow", "Shift+Space")) self.actionFollow_Playhead.setText(_translate("MainWindow", "&Follow Playhead")) - self.actionFollow_Playhead.setShortcut(_translate("MainWindow", "F3")) self.actionPlayFromEditCursor.setText(_translate("MainWindow", "Pla&y from Cursor")) - self.actionPlayFromEditCursor.setShortcut(_translate("MainWindow", "Ctrl+Space")) self.actionStaccato.setText(_translate("MainWindow", "Staccato")) - self.actionStaccato.setShortcut(_translate("MainWindow", ",")) self.actionCopy.setText(_translate("MainWindow", "&Copy")) - self.actionCopy.setShortcut(_translate("MainWindow", "Ctrl+C")) self.actionCut.setText(_translate("MainWindow", "Cut")) - self.actionCut.setShortcut(_translate("MainWindow", "Ctrl+X")) self.actionPaste.setText(_translate("MainWindow", "&Paste")) - self.actionPaste.setShortcut(_translate("MainWindow", "Ctrl+V")) - self.actionUpOctave.setText(_translate("MainWindow", "&upOctave")) - self.actionUpOctave.setShortcut(_translate("MainWindow", "Ctrl+Up")) - self.actionDownOctave.setText(_translate("MainWindow", "&downOctave")) - self.actionDownOctave.setShortcut(_translate("MainWindow", "Ctrl+Down")) self.actionDots.setText(_translate("MainWindow", "Dots")) - self.actionDots.setShortcut(_translate("MainWindow", "Q")) self.actionCC_Mode.setText(_translate("MainWindow", "&Control Changes")) - self.actionCC_Mode.setShortcut(_translate("MainWindow", "F7")) - self.CCactionSplit_Current_Block.setText(_translate("MainWindow", "CCactionSplit_Current_Block")) - self.CCactionSplit_Current_Block.setShortcut(_translate("MainWindow", "Ins")) self.actionChange_Grid_Rhythm.setText(_translate("MainWindow", "&Change Grid Rhythm")) - self.actionChange_Grid_Rhythm.setShortcut(_translate("MainWindow", "F2")) self.actionSnap_To_Grid.setText(_translate("MainWindow", "Snap To Grid")) - self.actionAlt_modal1.setText(_translate("MainWindow", "&Alt_modal1")) - self.actionAlt_modal1.setShortcut(_translate("MainWindow", "Alt+1")) - self.actionAlt_modal2.setText(_translate("MainWindow", "Alt_modal2")) - self.actionAlt_modal2.setShortcut(_translate("MainWindow", "Alt+2")) - self.actionAlt_modal3.setText(_translate("MainWindow", "Alt_modal3")) - self.actionAlt_modal3.setShortcut(_translate("MainWindow", "Alt+3")) - self.actionAlt_modal4.setText(_translate("MainWindow", "Alt_modal4")) - self.actionAlt_modal4.setShortcut(_translate("MainWindow", "Alt+4")) - self.actionAlt_modal5.setText(_translate("MainWindow", "Alt_modal5")) - self.actionAlt_modal5.setShortcut(_translate("MainWindow", "Alt+5")) - self.actionAlt_modal6.setText(_translate("MainWindow", "Alt_modal6")) - self.actionAlt_modal6.setShortcut(_translate("MainWindow", "Alt+6")) - self.actionAlt_modal7.setText(_translate("MainWindow", "Alt_modal7")) - self.actionAlt_modal7.setShortcut(_translate("MainWindow", "Alt+7")) - self.actionAlt_modal8.setText(_translate("MainWindow", "Alt_modal8")) - self.actionAlt_modal8.setShortcut(_translate("MainWindow", "Alt+8")) - self.actionAlt_modal9.setText(_translate("MainWindow", "Alt_modal9")) - self.actionAlt_modal9.setShortcut(_translate("MainWindow", "Alt+9")) - self.actionAlt_modal0.setText(_translate("MainWindow", "Alt_modal0")) - self.actionAlt_modal0.setShortcut(_translate("MainWindow", "Alt+0")) self.actionMidi_In_is_Active.setText(_translate("MainWindow", "&Midi In is Active")) self.actionMidi_In_is_Active.setToolTip(_translate("MainWindow", "Toggle midi in on and off")) - self.actionMidi_In_is_Active.setShortcut(_translate("MainWindow", "F4")) self.actionTie.setText(_translate("MainWindow", "T&ie")) - self.actionTie.setShortcut(_translate("MainWindow", "I")) self.actionLegatoSlur.setText(_translate("MainWindow", "&Legato Slur")) self.actionLegatoSlur.setToolTip(_translate("MainWindow", "Toggle Legato Slur")) - self.actionLegatoSlur.setShortcut(_translate("MainWindow", "S")) self.actionTenuto.setText(_translate("MainWindow", "T&enuto")) - self.actionTenuto.setShortcut(_translate("MainWindow", "E")) self.actionTriplet.setText(_translate("MainWindow", "Triplet")) - self.actionTriplet.setShortcut(_translate("MainWindow", "T")) self.actionCustom_Tuplets.setText(_translate("MainWindow", "&Custom Tuplets")) - self.actionCustom_Tuplets.setShortcut(_translate("MainWindow", "Alt+T")) self.actionPrevailingRest.setText(_translate("MainWindow", "Prevailing Rest")) self.actionSplit_in_2.setText(_translate("MainWindow", "&Split in 2")) - self.actionSplit_in_2.setShortcut(_translate("MainWindow", "X")) self.actionSplit_in_3.setText(_translate("MainWindow", "Split &in 3")) - self.actionSplit_in_3.setShortcut(_translate("MainWindow", "Shift+X")) self.actionCustom_Split.setText(_translate("MainWindow", "Split in &X")) - self.actionCustom_Split.setShortcut(_translate("MainWindow", "Alt+X")) self.actionUndo.setText(_translate("MainWindow", "&Undo")) - self.actionUndo.setShortcut(_translate("MainWindow", "Ctrl+Z")) self.actionRedo.setText(_translate("MainWindow", "&Redo")) - self.actionRedo.setShortcut(_translate("MainWindow", "Ctrl+Shift+Z")) self.actionJoin_with_next_Block.setText(_translate("MainWindow", "&Join with next Block")) - self.actionJoin_with_next_Block.setShortcut(_translate("MainWindow", "Shift+Ins")) self.actionSet_UpBeat.setText(_translate("MainWindow", "Set Upbeat")) - self.actionSelectLeft.setText(_translate("MainWindow", "selectLeft")) - self.actionSelectLeft.setShortcut(_translate("MainWindow", "Shift+Left")) - self.actionSelectRight.setText(_translate("MainWindow", "selectRi&ght")) - self.actionSelectRight.setShortcut(_translate("MainWindow", "Shift+Right")) - self.actionSelectMeasureLeft.setText(_translate("MainWindow", "selectMeasureLeft")) - self.actionSelectMeasureLeft.setShortcut(_translate("MainWindow", "Ctrl+Shift+Left")) - self.actionSelectMeasureRight.setText(_translate("MainWindow", "selectMeasureRight")) - self.actionSelectMeasureRight.setShortcut(_translate("MainWindow", "Ctrl+Shift+Right")) - self.actionSelectHead.setText(_translate("MainWindow", "selectHead")) - self.actionSelectHead.setShortcut(_translate("MainWindow", "Shift+Home")) - self.actionSelectTail.setText(_translate("MainWindow", "selectTail")) - self.actionSelectTail.setShortcut(_translate("MainWindow", "Shift+End")) - self.actionSelectTrackUp.setText(_translate("MainWindow", "selectTrackUp")) - self.actionSelectTrackUp.setShortcut(_translate("MainWindow", "Shift+PgUp")) - self.actionSelectTrackDown.setText(_translate("MainWindow", "selectTrackDown")) - self.actionSelectTrackDown.setShortcut(_translate("MainWindow", "Shift+PgDown")) - self.actionSelectTrackFirst.setText(_translate("MainWindow", "selectTrackFirst")) - self.actionSelectTrackFirst.setShortcut(_translate("MainWindow", "Ctrl+Shift+PgUp")) - self.actionSelectTrackLast.setText(_translate("MainWindow", "selectTrackLast")) - self.actionSelectTrackLast.setShortcut(_translate("MainWindow", "Ctrl+Shift+PgDown")) - self.actionSelectUp.setText(_translate("MainWindow", "selectUp")) - self.actionSelectUp.setShortcut(_translate("MainWindow", "Shift+Up")) - self.actionSelectDown.setText(_translate("MainWindow", "selectDo&wn")) - self.actionSelectDown.setShortcut(_translate("MainWindow", "Shift+Down")) - self.actionSelectUpOctave.setText(_translate("MainWindow", "selectUpOcta&ve")) - self.actionSelectUpOctave.setShortcut(_translate("MainWindow", "Ctrl+Shift+Up")) - self.actionSelectDownOctave.setText(_translate("MainWindow", "selectDow&nOctave")) - self.actionSelectDownOctave.setShortcut(_translate("MainWindow", "Ctrl+Shift+Down")) - self.actionSelectTrack.setText(_translate("MainWindow", "selectTrack")) - self.actionSelectTrack.setShortcut(_translate("MainWindow", "Shift+A")) - self.actionSelectMeasureColumn.setText(_translate("MainWindow", "selectMeasureColumn")) - self.actionSelectMeasureColumn.setShortcut(_translate("MainWindow", "Ctrl+A")) - self.actionSelectAllTracks.setText(_translate("MainWindow", "selectAllTracks")) - self.actionSelectAllTracks.setShortcut(_translate("MainWindow", "Ctrl+Shift+A")) self.actionVelocityMore.setText(_translate("MainWindow", "&More Velocity")) self.actionVelocityMore.setToolTip(_translate("MainWindow", "More Velocity")) - self.actionVelocityMore.setShortcut(_translate("MainWindow", ">")) self.actionVelocityLess.setText(_translate("MainWindow", "&Less Velocity")) self.actionVelocityLess.setToolTip(_translate("MainWindow", "Less Velocity")) - self.actionVelocityLess.setShortcut(_translate("MainWindow", "<")) self.actionDurationModMore.setText(_translate("MainWindow", "Lo&nger Duration Mod.")) self.actionDurationModMore.setToolTip(_translate("MainWindow", "Longer Duration Mod.")) - self.actionDurationModMore.setShortcut(_translate("MainWindow", "Alt+Shift+Right")) self.actionDurationModLess.setText(_translate("MainWindow", "Shorter Duration Mod.")) self.actionDurationModLess.setToolTip(_translate("MainWindow", "Shorter Duration Mod.")) - self.actionDurationModLess.setShortcut(_translate("MainWindow", "Alt+Shift+Left")) self.actionReset_Velocity_Duration_Mod.setText(_translate("MainWindow", "&Reset Velocity / Duration Mod.")) self.actionWiden_Score_View.setText(_translate("MainWindow", "&Widen Score View")) - self.actionWiden_Score_View.setShortcut(_translate("MainWindow", "Ctrl+Shift++")) self.actionShrink_Score_View.setText(_translate("MainWindow", "Shr&ink Score View")) - self.actionShrink_Score_View.setShortcut(_translate("MainWindow", "Ctrl+Shift+-")) self.actionData_Editor.setText(_translate("MainWindow", "&Track Editor")) - self.actionData_Editor.setShortcut(_translate("MainWindow", "Ctrl+T")) self.actionClef.setText(_translate("MainWindow", "&Clef")) - self.actionClef.setShortcut(_translate("MainWindow", "C")) self.actionMetrical_Instruction.setText(_translate("MainWindow", "&Metrical Instruction")) - self.actionMetrical_Instruction.setShortcut(_translate("MainWindow", "M")) self.actionKey_Signature.setText(_translate("MainWindow", "&Key Signature")) - self.actionKey_Signature.setShortcut(_translate("MainWindow", "K")) self.actionDynamics.setText(_translate("MainWindow", "&Dynamics")) - self.actionDynamics.setShortcut(_translate("MainWindow", "D")) self.actionMulti_Measure_Rest.setText(_translate("MainWindow", "Multi Measure &Rest")) - self.actionMulti_Measure_Rest.setShortcut(_translate("MainWindow", "R")) self.actionTemporary_Tempo_Change.setText(_translate("MainWindow", "Tem&porary Tempo Change")) - self.actionTemporary_Tempo_Change.setShortcut(_translate("MainWindow", "F")) self.actionBeam.setText(_translate("MainWindow", "&Beam")) - self.actionBeam.setShortcut(_translate("MainWindow", "B")) self.actionRemoveBeams.setText(_translate("MainWindow", "&Remove Beams")) - self.actionRemoveBeams.setShortcut(_translate("MainWindow", "Alt+B")) self.actionTempo_Change.setText(_translate("MainWindow", "&Tempo Change")) - self.actionTempo_Change.setShortcut(_translate("MainWindow", "G")) self.actionDelete_Tempo_Change.setText(_translate("MainWindow", "D&elete Tempo Change")) - self.actionDelete_Tempo_Change.setShortcut(_translate("MainWindow", "Alt+G")) self.actionBlock_Mode.setText(_translate("MainWindow", "&Blocks Only")) - self.actionBlock_Mode.setShortcut(_translate("MainWindow", "F6")) self.actionNotation_Mode.setText(_translate("MainWindow", "&Notation")) - self.actionNotation_Mode.setShortcut(_translate("MainWindow", "F5")) self.actionTransposeChord.setText(_translate("MainWindow", "&Transpose Chord")) self.actionTranspose_Score.setText(_translate("MainWindow", "&Transpose Score")) self.actionSave.setText(_translate("MainWindow", "&Save")) - self.actionSave.setShortcut(_translate("MainWindow", "Ctrl+S")) self.actionExport_File.setText(_translate("MainWindow", "Export File")) self.actionImport_File_replaces_current.setText(_translate("MainWindow", "Import File (replaces current)")) self.actionUnlink_Current_Block.setText(_translate("MainWindow", "&Unlink Current Block")) self.actionDelete_All_Empty_Blocks.setText(_translate("MainWindow", "Delete All &Empty Blocks")) - self.actionBlockRight.setText(_translate("MainWindow", "blo&ckRight")) - self.actionBlockRight.setShortcut(_translate("MainWindow", "Ctrl+Alt+Right")) - self.actionBlockLeft.setText(_translate("MainWindow", "&blockLeft")) - self.actionBlockLeft.setShortcut(_translate("MainWindow", "Ctrl+Alt+Left")) - self.actionSelectBlockRight.setText(_translate("MainWindow", "&selectBlockRight")) - self.actionSelectBlockRight.setShortcut(_translate("MainWindow", "Ctrl+Alt+Shift+Right")) - self.actionSelectBlockLeft.setText(_translate("MainWindow", "s&electBlockLeft")) - self.actionSelectBlockLeft.setShortcut(_translate("MainWindow", "Ctrl+Alt+Shift+Left")) self.actionPedalNotes.setText(_translate("MainWindow", "&Pedal Notes")) self.actionReverse.setText(_translate("MainWindow", "&Reverse")) self.actionDuplicateItem.setText(_translate("MainWindow", "Dup&licate")) - self.actionDuplicateItem.setShortcut(_translate("MainWindow", "Ctrl+D")) self.actionRandom.setText(_translate("MainWindow", "&Shuffle")) self.actionAscending.setText(_translate("MainWindow", "&Ascending")) self.actionDescending.setText(_translate("MainWindow", "&Descending")) self.actionMirror_around_Cursor.setText(_translate("MainWindow", "&Mirror around Cursor")) - self.actionInsert_Random.setText(_translate("MainWindow", "Insert Random")) self.actionRandom_chromatic_in_clef_range.setText(_translate("MainWindow", "&Random chromatic in clef range")) self.actionRandom_in_scale_in_clef_range.setText(_translate("MainWindow", "Random &in-scale in clef range")) self.actionRandom_pitch_from_clipboard.setText(_translate("MainWindow", "Random pitch &from clipboard")) self.actionProperties.setText(_translate("MainWindow", "Meta&data")) self.actionExport_to_Ly.setText(_translate("MainWindow", "&Export to .ly file")) self.actionShow_PDF.setText(_translate("MainWindow", "&Show PDF")) - self.actionShow_PDF.setShortcut(_translate("MainWindow", "Ctrl+P")) self.actionExport_to_pdf_file.setText(_translate("MainWindow", "Export to .pdf file")) self.actionInstrument_Change.setText(_translate("MainWindow", "&Instrument Change")) self.actionProgram_Change_Relative.setText(_translate("MainWindow", "Program Change Relative")) @@ -965,16 +975,11 @@ class Ui_MainWindow(object): self.actionMIDI_Channel_Reset.setText(_translate("MainWindow", "MIDI C&hannel Reset")) self.actionDelete_Current_Track.setText(_translate("MainWindow", "Delete Current Track")) self.actionUse_Current_Track_as_Metronome.setText(_translate("MainWindow", "Use Current Track as &Metronome")) - self.actionUse_Current_Track_as_Metronome.setShortcut(_translate("MainWindow", "U")) self.actionMetronome_Enabled.setText(_translate("MainWindow", "Metronome &Enabled")) - self.actionMetronome_Enabled.setShortcut(_translate("MainWindow", "Alt+U")) self.actionRandom_in_scale_in_cursor_plus_octave.setText(_translate("MainWindow", "Random in-scale in cursor plus octave (authentic mode)")) self.actionRandom_in_scale_in_octave_around_cursor.setText(_translate("MainWindow", "Random in-scale in octave around cursor (hypo mode)")) - self.actionCreate_pool_from_selection.setText(_translate("MainWindow", "Create pool from selection")) self.actionLyBarline.setText(_translate("MainWindow", "Barline")) self.actionLyFree_Instruction.setText(_translate("MainWindow", "Free Instruction")) self.actionLyRepeat.setText(_translate("MainWindow", "Repeat")) self.actionZoom_In_Score_View.setText(_translate("MainWindow", "Zoom In Score View")) - self.actionZoom_In_Score_View.setShortcut(_translate("MainWindow", "Ctrl++")) self.actionZoom_Out_Score_View.setText(_translate("MainWindow", "Zoom Out Score View")) - self.actionZoom_Out_Score_View.setShortcut(_translate("MainWindow", "Ctrl+-")) diff --git a/qtgui/designer/mainwindow.ui b/qtgui/designer/mainwindow.ui index 632af4e..6a97e89 100644 --- a/qtgui/designer/mainwindow.ui +++ b/qtgui/designer/mainwindow.ui @@ -11,7 +11,7 @@ - Laborejo + Laborejo @@ -23,7 +23,7 @@ - toolBar + toolBar false @@ -75,11 +75,11 @@ true - &Generic + &Generic - T&ype Here + T&ype Here @@ -242,7 +242,7 @@ false - | + | @@ -358,7 +358,7 @@ - leftToolBar + leftToolBar false @@ -378,114 +378,159 @@ - u&p + u&p + + + up - Up + Up - d&own + d&own + + + down - Down + Down - &left + &left + + + left - Left + Left - &right + &right + + + right - Right + Right - &modal1 + &modal1 + + + modal1 + + + modal1 - 1 + 1 - modal&2 + modal&2 + + + modal2 - 2 + 2 - modal&3 + modal&3 + + + modal3 - 3 + 3 - modal&4 + modal&4 + + + modal4 - 4 + 4 - modal&5 + modal&5 + + + modal5 - 5 + 5 - modal&6 + modal&6 + + + modal6 - 6 + 6 - modal&7 + modal&7 + + + modal7 - 7 + 7 - modal&8 + modal&8 + + + modal8 - 8 + 8 - modal&9 + modal&9 + + + modal9 - 9 + 9 - modal&0 + modal&0 + + + modal0 - 0 + 0 @@ -493,7 +538,7 @@ &Delete Item - Del + Del @@ -501,87 +546,87 @@ Delete previous &Item - Backspace + Backspace - sh&ift+modal1 + sh&ift+modal1 - Shift+1 + Shift+1 - shi&ft+modal2 + shi&ft+modal2 - Shift+2 + Shift+2 - shift+modal3 + shift+modal3 - Shift+3 + Shift+3 - shift+modal4 + shift+modal4 - Shift+4 + Shift+4 - shift+modal5 + shift+modal5 - Shift+5 + Shift+5 - shift+modal6 + shift+modal6 - Shift+6 + Shift+6 - shift+modal7 + shift+modal7 - Shift+7 + Shift+7 - shift+modal8 + shift+modal8 - Shift+8 + Shift+8 - shift+modal9 + shift+modal9 - Shift+9 + Shift+9 - shift+modal0 + shift+modal0 - Shift+0 + Shift+0 @@ -589,7 +634,7 @@ &Add Note to Chord - Return + Return Qt::WindowShortcut @@ -600,7 +645,7 @@ &Delete Note from Chord - Shift+Del + Shift+Del @@ -610,50 +655,50 @@ - &trackUp + &trackUp - PgUp + PgUp - trac&kDown + trac&kDown - PgDown + PgDown - &head + &head - Home + Home - tail + tail - End + End - trackFirst + trackFirst - Ctrl+PgUp + Ctrl+PgUp - trackLast + trackLast - Ctrl+PgDown + Ctrl+PgDown @@ -661,7 +706,7 @@ &Sharpen Note - + + + @@ -669,23 +714,23 @@ &Flatten Note - - + - - measureLeft + measureLeft - Ctrl+Left + Ctrl+Left - measureRight + measureRight - Ctrl+Right + Ctrl+Right @@ -693,7 +738,7 @@ Step &Up - Alt+Up + Alt+Up @@ -701,7 +746,7 @@ Ste&p Down - Alt+Down + Alt+Down @@ -709,7 +754,7 @@ &Octave Up - Ctrl+Alt+Up + Ctrl+Alt+Up @@ -717,7 +762,7 @@ Octa&ve Down - Ctrl+Alt+Down + Ctrl+Alt+Down @@ -725,7 +770,7 @@ &Augment - Alt+Right + Alt+Right @@ -733,7 +778,7 @@ &Diminish - Alt+Left + Alt+Left @@ -746,7 +791,7 @@ &Split Current Block - Ins + Ins @@ -754,7 +799,7 @@ &Duplicate Current Block - Alt+Ins + Alt+Ins @@ -762,7 +807,7 @@ &Create Linked Copy - Alt+Shift+Ins + Alt+Shift+Ins @@ -778,7 +823,7 @@ &Rectangle Noteheads - F1 + F1 @@ -786,7 +831,7 @@ P&lay / Pause - Space + Space @@ -794,7 +839,7 @@ Play fr&om Start - Shift+Space + Shift+Space @@ -808,7 +853,7 @@ &Follow Playhead - F3 + F3 @@ -816,7 +861,7 @@ Pla&y from Cursor - Ctrl+Space + Ctrl+Space @@ -824,7 +869,7 @@ Staccato - , + , @@ -832,7 +877,7 @@ &Copy - Ctrl+C + Ctrl+C @@ -840,7 +885,7 @@ Cut - Ctrl+X + Ctrl+X @@ -848,23 +893,23 @@ &Paste - Ctrl+V + Ctrl+V - &upOctave + &upOctave - Ctrl+Up + Ctrl+Up - &downOctave + &downOctave - Ctrl+Down + Ctrl+Down @@ -872,7 +917,7 @@ Dots - Q + Q @@ -883,15 +928,7 @@ &Control Changes - F7 - - - - - CCactionSplit_Current_Block - - - Ins + F7 @@ -905,7 +942,7 @@ &Change Grid Rhythm - F2 + F2 @@ -921,82 +958,82 @@ - &Alt_modal1 + &Alt_modal1 - Alt+1 + Alt+1 - Alt_modal2 + Alt_modal2 - Alt+2 + Alt+2 - Alt_modal3 + Alt_modal3 - Alt+3 + Alt+3 - Alt_modal4 + Alt_modal4 - Alt+4 + Alt+4 - Alt_modal5 + Alt_modal5 - Alt+5 + Alt+5 - Alt_modal6 + Alt_modal6 - Alt+6 + Alt+6 - Alt_modal7 + Alt_modal7 - Alt+7 + Alt+7 - Alt_modal8 + Alt_modal8 - Alt+8 + Alt+8 - Alt_modal9 + Alt_modal9 - Alt+9 + Alt+9 - Alt_modal0 + Alt_modal0 - Alt+0 + Alt+0 @@ -1010,7 +1047,7 @@ Toggle midi in on and off - F4 + F4 @@ -1018,7 +1055,7 @@ T&ie - I + I @@ -1029,7 +1066,7 @@ Toggle Legato Slur - S + S @@ -1037,7 +1074,7 @@ T&enuto - E + E @@ -1045,7 +1082,7 @@ Triplet - T + T @@ -1056,7 +1093,7 @@ &Custom Tuplets - Alt+T + Alt+T @@ -1072,7 +1109,7 @@ &Split in 2 - X + X @@ -1080,7 +1117,7 @@ Split &in 3 - Shift+X + Shift+X @@ -1091,7 +1128,7 @@ Split in &X - Alt+X + Alt+X @@ -1099,7 +1136,7 @@ &Undo - Ctrl+Z + Ctrl+Z @@ -1107,7 +1144,7 @@ &Redo - Ctrl+Shift+Z + Ctrl+Shift+Z @@ -1115,7 +1152,7 @@ &Join with next Block - Shift+Ins + Shift+Ins @@ -1125,138 +1162,138 @@ - selectLeft + selectLeft - Shift+Left + Shift+Left - selectRi&ght + selectRi&ght - Shift+Right + Shift+Right - selectMeasureLeft + selectMeasureLeft - Ctrl+Shift+Left + Ctrl+Shift+Left - selectMeasureRight + selectMeasureRight - Ctrl+Shift+Right + Ctrl+Shift+Right - selectHead + selectHead - Shift+Home + Shift+Home - selectTail + selectTail - Shift+End + Shift+End - selectTrackUp + selectTrackUp - Shift+PgUp + Shift+PgUp - selectTrackDown + selectTrackDown - Shift+PgDown + Shift+PgDown - selectTrackFirst + selectTrackFirst - Ctrl+Shift+PgUp + Ctrl+Shift+PgUp - selectTrackLast + selectTrackLast - Ctrl+Shift+PgDown + Ctrl+Shift+PgDown - selectUp + selectUp - Shift+Up + Shift+Up - selectDo&wn + selectDo&wn - Shift+Down + Shift+Down - selectUpOcta&ve + selectUpOcta&ve - Ctrl+Shift+Up + Ctrl+Shift+Up - selectDow&nOctave + selectDow&nOctave - Ctrl+Shift+Down + Ctrl+Shift+Down - selectTrack + selectTrack - Shift+A + Shift+A - selectMeasureColumn + selectMeasureColumn - Ctrl+A + Ctrl+A - selectAllTracks + selectAllTracks - Ctrl+Shift+A + Ctrl+Shift+A @@ -1267,7 +1304,7 @@ More Velocity - > + > @@ -1278,7 +1315,7 @@ Less Velocity - < + < @@ -1289,7 +1326,7 @@ Longer Duration Mod. - Alt+Shift+Right + Alt+Shift+Right @@ -1300,7 +1337,7 @@ Shorter Duration Mod. - Alt+Shift+Left + Alt+Shift+Left @@ -1313,7 +1350,7 @@ &Widen Score View - Ctrl+Shift++ + Ctrl+Shift++ @@ -1321,7 +1358,7 @@ Shr&ink Score View - Ctrl+Shift+- + Ctrl+Shift+- @@ -1332,7 +1369,7 @@ &Track Editor - Ctrl+T + Ctrl+T @@ -1340,7 +1377,7 @@ &Clef - C + C @@ -1348,7 +1385,7 @@ &Metrical Instruction - M + M @@ -1356,7 +1393,7 @@ &Key Signature - K + K @@ -1364,7 +1401,7 @@ &Dynamics - D + D @@ -1372,7 +1409,7 @@ Multi Measure &Rest - R + R @@ -1380,7 +1417,7 @@ Tem&porary Tempo Change - F + F @@ -1388,7 +1425,7 @@ &Beam - B + B @@ -1396,7 +1433,7 @@ &Remove Beams - Alt+B + Alt+B @@ -1404,7 +1441,7 @@ &Tempo Change - G + G @@ -1412,7 +1449,7 @@ D&elete Tempo Change - Alt+G + Alt+G @@ -1423,7 +1460,7 @@ &Blocks Only - F6 + F6 @@ -1437,7 +1474,7 @@ &Notation - F5 + F5 @@ -1455,7 +1492,7 @@ &Save - Ctrl+S + Ctrl+S @@ -1480,34 +1517,34 @@ - blo&ckRight + blo&ckRight - Ctrl+Alt+Right + Ctrl+Alt+Right - &blockLeft + &blockLeft - Ctrl+Alt+Left + Ctrl+Alt+Left - &selectBlockRight + &selectBlockRight - Ctrl+Alt+Shift+Right + Ctrl+Alt+Shift+Right - s&electBlockLeft + s&electBlockLeft - Ctrl+Alt+Shift+Left + Ctrl+Alt+Shift+Left @@ -1525,7 +1562,7 @@ Dup&licate - Ctrl+D + Ctrl+D @@ -1548,11 +1585,6 @@ &Mirror around Cursor - - - Insert Random - - &Random chromatic in clef range @@ -1583,7 +1615,7 @@ &Show PDF - Ctrl+P + Ctrl+P @@ -1646,7 +1678,7 @@ Use Current Track as &Metronome - U + U @@ -1657,7 +1689,7 @@ Metronome &Enabled - Alt+U + Alt+U @@ -1670,11 +1702,6 @@ Random in-scale in octave around cursor (hypo mode) - - - Create pool from selection - - Barline @@ -1695,7 +1722,7 @@ Zoom In Score View - Ctrl++ + Ctrl++ @@ -1703,7 +1730,7 @@ Zoom Out Score View - Ctrl+- + Ctrl+- diff --git a/qtgui/mainwindow.py b/qtgui/mainwindow.py index 857ad43..64b8c8e 100644 --- a/qtgui/mainwindow.py +++ b/qtgui/mainwindow.py @@ -32,6 +32,8 @@ from PyQt5 import QtWidgets, QtCore, QtGui from template.qtgui.mainwindow import MainWindow as TemplateMainWindow from template.qtgui.menu import Menu from template.qtgui.about import About +translate = QtCore.QCoreApplication.translate + #Our modules import engine.api as api @@ -60,19 +62,19 @@ class MainWindow(TemplateMainWindow): #Do not start them all with "You can..." or "...that you can", in response to the Did you know? title. #We use injection into the class and not a parameter because this dialog gets shown by creating an object. We can't give the parameters when this is shown via the mainWindow menu. About.didYouKnow = [ - QtCore.QCoreApplication.translate("About", "

Most commands work in the appending position (last position in a track) and apply to the item before it.

Use it to apply dots, sharps and flats on the item you just inserted without moving the cursor back and forth.

"), - QtCore.QCoreApplication.translate("About", "

Learn the keyboard shortcuts! Laborejo is designed to work with the keyboard alone and with midi instruments for full speed.

Everytime you grab your mouse you loose concentration, precision and time."), - QtCore.QCoreApplication.translate("About", "

Spread/shrink the space between notes with Ctrl+Shift+Mousewheel or Ctrl+Shift with Plus and Minus.

"), - QtCore.QCoreApplication.translate("About", "

Click with the left mouse button to set the cursor to that position. Hold Shift to create a selection.

"), - QtCore.QCoreApplication.translate("About", "

Most commands can be applied to single notes and selections equally.

Use Shift + movement-keys to create selections.

"), - QtCore.QCoreApplication.translate("About", "

Blocks and Tracks can be moved in Block-View Mode [F6]. Use Shift+Middle Mouse Button to move blocks and Alt+Middle to reorder tracks.

"), - QtCore.QCoreApplication.translate("About", "

There are no empty measures/bars.

Use Multi Measure Rests[R] instead. You need to have a metrical instruction for that [M].

"), - QtCore.QCoreApplication.translate("About", "

Many Music Items like clefs can only be inserted, not edited. They are however such simplistic that delete-and-reinsert is equally time-efficient.

"), - QtCore.QCoreApplication.translate("About", "

All notes should be considered non-transposing. Treat everything as 'in C'.

That said, there is a semitone transposition in the Track Properties [Ctrl+T].

"), - QtCore.QCoreApplication.translate("About", "

Upbeats/anacrusis can be set per-track in the Track Properties [Ctrl+T].

"), - QtCore.QCoreApplication.translate("About", "

There is no key-rebinding except numpad-shortcuts.

"), - QtCore.QCoreApplication.translate("About", "

Hidden tracks still output sound.

"), - QtCore.QCoreApplication.translate("About", "

Non-audible tracks still output instrument changes and CCs so that they can be switched on again in the middle of playback.

"), + translate("About", "

Most commands work in the appending position (last position in a track) and apply to the item before it.

Use it to apply dots, sharps and flats on the item you just inserted without moving the cursor back and forth.

"), + translate("About", "

Learn the keyboard shortcuts! Laborejo is designed to work with the keyboard alone and with midi instruments for full speed.

Everytime you grab your mouse you loose concentration, precision and time."), + translate("About", "

Spread/shrink the space between notes with Ctrl+Shift+Mousewheel or Ctrl+Shift with Plus and Minus.

"), + translate("About", "

Click with the left mouse button to set the cursor to that position. Hold Shift to create a selection.

"), + translate("About", "

Most commands can be applied to single notes and selections equally.

Use Shift + movement-keys to create selections.

"), + translate("About", "

Blocks and Tracks can be moved in Block-View Mode [F6]. Use Shift+Middle Mouse Button to move blocks and Alt+Middle to reorder tracks.

"), + translate("About", "

There are no empty measures/bars.

Use Multi Measure Rests[R] instead. You need to have a metrical instruction for that [M].

"), + translate("About", "

Many Music Items like clefs can only be inserted, not edited. They are however such simplistic that delete-and-reinsert is equally time-efficient.

"), + translate("About", "

All notes should be considered non-transposing. Treat everything as 'in C'.

That said, there is a semitone transposition in the Track Properties [Ctrl+T].

"), + translate("About", "

Upbeats/anacrusis can be set per-track in the Track Properties [Ctrl+T].

"), + translate("About", "

There is no key-rebinding except numpad-shortcuts.

"), + translate("About", "

Hidden tracks still output sound.

"), + translate("About", "

Non-audible tracks still output instrument changes and CCs so that they can be switched on again in the middle of playback.

"), ] + About.didYouKnow super().__init__() diff --git a/qtgui/menu.py b/qtgui/menu.py index 2f2823a..2b242bd 100644 --- a/qtgui/menu.py +++ b/qtgui/menu.py @@ -26,6 +26,7 @@ from pathlib import Path #Third Party Modules from PyQt5 import QtCore, QtGui, QtWidgets +translate = QtCore.QCoreApplication.translate #Template Modules @@ -298,9 +299,9 @@ class MenuActionDatabase(object): #Lilypond #Print and Export is in self.actions - self.mainWindow.ui.actionLyBarline: ChooseOne(self.mainWindow, "Choose a Barline", api.getLilypondBarlineList()), - self.mainWindow.ui.actionLyRepeat: ChooseOne(self.mainWindow, "Choose a Repeat", api.getLilypondRepeatList()), - self.mainWindow.ui.actionLyFree_Instruction: lambda: forwardText(self.mainWindow, "Enter Instruction", api.lilypondText), + self.mainWindow.ui.actionLyBarline: ChooseOne(self.mainWindow, translate("menu", "Choose a Barline"), api.getLilypondBarlineList()), + self.mainWindow.ui.actionLyRepeat: ChooseOne(self.mainWindow, translate("menu", "Choose a Repeat"), api.getLilypondRepeatList()), + self.mainWindow.ui.actionLyFree_Instruction: lambda: forwardText(self.mainWindow, translate("menu", "Enter Instruction"), api.lilypondText), } self.modalActions = { #these are only available in Note Edit Mode, not in CC Edit Mode etc. @@ -461,23 +462,23 @@ class MenuActionDatabase(object): def renameUndoRedoByHistory(self, undoList, redoList): if undoList: - self.mainWindow.ui.actionUndo.setText("Undo: {}".format(undoList[-1])) + self.mainWindow.ui.actionUndo.setText(translate("menu", "Undo: {}").format(undoList[-1])) self.mainWindow.ui.actionUndo.setEnabled(True) else: - self.mainWindow.ui.actionUndo.setText("Undo") + self.mainWindow.ui.actionUndo.setText(translate("menu", "Undo")) self.mainWindow.ui.actionUndo.setEnabled(False) if redoList: - self.mainWindow.ui.actionRedo.setText("Redo: {}".format(redoList[-1])) + self.mainWindow.ui.actionRedo.setText(translate("menu", "Redo: {}").format(redoList[-1])) self.mainWindow.ui.actionRedo.setEnabled(True) else: - self.mainWindow.ui.actionRedo.setText("Redo") + self.mainWindow.ui.actionRedo.setText(translate("menu", "Redo")) self.mainWindow.ui.actionRedo.setEnabled(False) def exportLy(self): lastExportDirectory = api.session.guiSharedDataToSave["lastExportDirectory"] if "lastExportDirectory" in api.session.guiSharedDataToSave else str(Path.home()) - filename = QtWidgets.QFileDialog.getSaveFileName(self.mainWindow, "Export Lilypond Source File", lastExportDirectory, "Lilypond Source (*.ly)") + filename = QtWidgets.QFileDialog.getSaveFileName(self.mainWindow, translate("menu", "Export Lilypond Source File"), lastExportDirectory, translate("menu", "Lilypond Source (*.ly)")) filename = filename[0] #(path, filter) if filename: if not os.path.splitext(filename)[1]: #no file extension given? @@ -502,7 +503,7 @@ class ToolBarCCType(QtWidgets.QSpinBox): class ToolBarSnapToGrid(QtWidgets.QCheckBox): def __init__(self, mainWindow): - super().__init__("Snap to Grid") + super().__init__(translate("menu", "Snap to Grid")) self.setStatus() self.stateChanged.connect(self.changed) @@ -534,7 +535,7 @@ class ToolBarMetronome(QtWidgets.QCheckBox): There is also the menu actionMetronome_Enabled , itself a normal checkbox. It's callback and state are handled in the menuDatabase classes init.""" def __init__(self, mainWindow): - super().__init__("Metronome") + super().__init__(translate("menu", "Metronome")) self.setStatus() self.stateChanged.connect(self.changed) api.callbacks.metronomeChanged.append(self.updateFromCallback) @@ -558,7 +559,7 @@ class ToolBarMetronome(QtWidgets.QCheckBox): self.blockSignals(True) self.setStatus() assert self.isChecked() == exportDict["enabled"], (self.isChecked(), exportDict["enabled"]) - self.setText("Metronome: " + exportDict["label"]) + self.setText(translate("menu", "Metronome:") + " " + exportDict["label"]) self.blockSignals(False) def changed(self, value): @@ -572,7 +573,7 @@ class ToolBarPlaybackSpeed(QtWidgets.QDoubleSpinBox): self.setDecimals(1) self.setValue(api.currentTempoScalingFactor()) self.setSingleStep(0.1) - self.setPrefix("Tempo ×") #yes, this is the unicode multiplication sign × and not an x + self.setPrefix(translate("menu", "Tempo ×")) #yes, this is the unicode multiplication sign × and not an x api.callbacks.tempoScalingChanged.append(self.updateFromCallback) self.valueChanged.connect(self.changed) self.setLineEdit(ToolBarPlaybackSpeed.CustomLineEdit()) diff --git a/qtgui/musicstructures.py b/qtgui/musicstructures.py index ba64907..d6f82b0 100644 --- a/qtgui/musicstructures.py +++ b/qtgui/musicstructures.py @@ -27,6 +27,7 @@ from math import log #Third party from PyQt5 import QtCore, QtGui, QtWidgets +translate = QtCore.QCoreApplication.translate #Template from template.qtgui.helper import stringToColor @@ -80,12 +81,12 @@ class GuiBlockHandle(QtWidgets.QGraphicsRectItem): """ if self.staticExportItem["completeDuration"] >= api.D1: #cosmetics - self.startLabel = QtWidgets.QGraphicsSimpleTextItem(self.staticExportItem["name"] + " start") + self.startLabel = QtWidgets.QGraphicsSimpleTextItem(self.staticExportItem["name"] + translate("musicstructures", " start")) self.startLabel.setParentItem(self) self.startLabel.setPos(0, constantsAndConfigs.stafflineGap) self.startLabel.setFlags(QtWidgets.QGraphicsItem.ItemIgnoresParentOpacity) - self.endLabel = QtWidgets.QGraphicsSimpleTextItem(self.staticExportItem["name"] + " end ") + self.endLabel = QtWidgets.QGraphicsSimpleTextItem(self.staticExportItem["name"] + translate("musicstructures", " end ")) self.endLabel.setParentItem(self) self.endLabel.setPos(self.rect().width() - self.endLabel.boundingRect().width(), constantsAndConfigs.stafflineGap) self.endLabel.setFlags(QtWidgets.QGraphicsItem.ItemIgnoresParentOpacity) @@ -147,17 +148,17 @@ class GuiBlockHandle(QtWidgets.QGraphicsRectItem): def contextMenuEvent(self, event): if self.startLabel.isVisible(): listOfLabelsAndFunctions = [ - ("edit properties", lambda: BlockPropertiesEdit(self.scene().parentView.mainWindow, staticExportItem = self.staticExportItem)), + (translate("musicstructures", "edit properties"), lambda: BlockPropertiesEdit(self.scene().parentView.mainWindow, staticExportItem = self.staticExportItem)), ("separator", None), #("split here", lambda: self.splitHere(event)), - ("duplicate", lambda: api.duplicateBlock(self.staticExportItem["id"])), - ("create content link", lambda: api.duplicateContentLinkBlock(self.staticExportItem["id"])), - ("unlink", lambda: api.unlinkBlock(self.staticExportItem["id"])), + (translate("musicstructures", "duplicate"), lambda: api.duplicateBlock(self.staticExportItem["id"])), + (translate("musicstructures", "create content link"), lambda: api.duplicateContentLinkBlock(self.staticExportItem["id"])), + (translate("musicstructures", "unlink"), lambda: api.unlinkBlock(self.staticExportItem["id"])), ("separator", None), - ("join with next block", lambda: api.joinBlockWithNext(self.staticExportItem["id"])), - ("delete block", lambda: api.deleteBlock(self.staticExportItem["id"])), + (translate("musicstructures", "join with next block"), lambda: api.joinBlockWithNext(self.staticExportItem["id"])), + (translate("musicstructures", "delete block"), lambda: api.deleteBlock(self.staticExportItem["id"])), ("separator", None), - ("append block at the end", lambda: api.appendBlock(self.parent.staticExportItem["id"])), + (translate("musicstructures", "append block at the end"), lambda: api.appendBlock(self.parent.staticExportItem["id"])), ] callContextMenu(listOfLabelsAndFunctions) else: @@ -212,7 +213,7 @@ class GuiTrack(QtWidgets.QGraphicsItem): #Add one central "Create new CC Path" button which is for all non-existing CC Paths of this track and reacte to the current constantsAndConfig.ccValue #This button is not in the CCPath object because those only get created for existing backend-CCs. - self.universalCreateFirstCCBlock = QtWidgets.QGraphicsSimpleTextItem("Create CC Path") + self.universalCreateFirstCCBlock = QtWidgets.QGraphicsSimpleTextItem(translate("musicstructures", "Create CC Path")) self.universalCreateFirstCCBlock.setFlag(QtWidgets.QGraphicsItem.ItemIgnoresParentOpacity) #toggle between edit modes not only hides stuff but the track itself gets 10% opacity. We want to avoid it for this item. self.universalCreateFirstCCBlock.mousePressEvent = lambda mouseEvent: api.newGraphTrackCC(trId = self.staticExportItem["id"], cc = constantsAndConfigs.ccViewValue) #trigger callback to self.syncCCsToBackend self.universalCreateFirstCCBlock.setParentItem(self) @@ -229,8 +230,8 @@ class GuiTrack(QtWidgets.QGraphicsItem): self.setParentItem(parent) def _editName(self): - result = QtWidgets.QInputDialog.getText(self.scene().parentView, "Track Name", #dialog title - "Set Track Name for {}".format(self.parent.staticExportItem["id"]), #label + result = QtWidgets.QInputDialog.getText(self.scene().parentView, translate("musicstructures", "Track Name"), #dialog title + translate("musicstructures", "Set Track Name for {}").format(self.parent.staticExportItem["id"]), #label QtWidgets.QLineEdit.Normal, self.parent.staticExportItem["name"] ) @@ -238,7 +239,7 @@ class GuiTrack(QtWidgets.QGraphicsItem): api.setTrackName(self.parent.staticExportItem["id"], nameString = result[0], initialInstrumentName = self.parent.staticExportItem["initialInstrumentName"], initialShortInstrumentName = self.parent.staticExportItem["initialShortInstrumentName"]) #keep the old lilypond names def contextMenuEvent(self, event): - listOfLabelsAndFunctions = [ ("edit name", self._editName), ] + listOfLabelsAndFunctions = [ (translate("musicstructures", "edit name"), self._editName), ] callContextMenu(listOfLabelsAndFunctions) event.accept() diff --git a/qtgui/resources.py b/qtgui/resources.py index a9030b1..6d9c33c 100644 --- a/qtgui/resources.py +++ b/qtgui/resources.py @@ -2,7 +2,7 @@ # Resource object code # -# Created by: The Resource Compiler for PyQt5 (Qt v5.13.1) +# Created by: The Resource Compiler for PyQt5 (Qt v5.13.2) # # WARNING! All changes made in this file will be lost! @@ -563,146 +563,6 @@ qt_resource_data = b"\ \x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\ \x67\x9b\xee\x3c\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ -\x00\x00\x08\x96\ -\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\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ -\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\ -\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\ -\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\ -\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\ -\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ -\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\ -\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ -\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ -\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ -\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x30\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\x34\x20\x72\x39\x39\x33\x39\ -\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\x73\x74\x73\x2e\x34\x2e\x73\ -\x76\x67\x22\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\x34\x30\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ -\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ -\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ -\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ -\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ -\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\ -\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\ -\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ -\x33\x34\x30\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ -\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\ -\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\ -\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\ -\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\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\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\x77\x69\ -\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x31\ -\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x33\x34\x30\x35\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\x7a\x6f\x6f\x6d\x3d\x22\x32\x2e\x36\x37\x30\x30\x33\x35\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x78\x3d\x22\x31\x30\x39\x2e\x33\x38\x30\x34\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\ -\x22\x31\x30\x31\x34\x2e\x30\x37\x34\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x78\x3d\x22\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ -\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\x34\x30\x31\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\ -\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x72\x65\x73\x74\x73\ -\x2e\x34\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x2e\ -\x34\x2c\x38\x2e\x37\x36\x33\x36\x34\x35\x36\x20\x34\x2e\x39\x2c\ -\x30\x2e\x35\x38\x38\x36\x34\x35\x35\x39\x20\x43\x20\x34\x2e\x30\ -\x32\x35\x2c\x30\x2e\x39\x31\x33\x36\x34\x35\x35\x20\x33\x2e\x31\ -\x2c\x31\x2e\x31\x36\x33\x36\x34\x35\x35\x20\x32\x2e\x31\x37\x35\ -\x2c\x31\x2e\x31\x36\x33\x36\x34\x35\x35\x20\x31\x2e\x30\x32\x35\ -\x2c\x31\x2e\x31\x36\x33\x36\x34\x35\x35\x20\x30\x2c\x30\x2e\x33\ -\x31\x33\x36\x34\x35\x35\x39\x20\x30\x2c\x2d\x30\x2e\x38\x33\x36\ -\x33\x35\x34\x34\x31\x20\x30\x2c\x2d\x31\x2e\x38\x31\x31\x33\x35\ -\x34\x34\x20\x30\x2e\x37\x37\x35\x2c\x2d\x32\x2e\x36\x31\x31\x33\ -\x35\x34\x34\x20\x31\x2e\x37\x37\x35\x2c\x2d\x32\x2e\x36\x31\x31\ -\x33\x35\x34\x34\x20\x63\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\x2e\ -\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\x2c\x31\x20\ -\x30\x2e\x32\x35\x2c\x30\x2e\x36\x39\x39\x39\x39\x39\x39\x39\x20\ -\x30\x2e\x31\x35\x2c\x31\x2e\x34\x39\x39\x39\x39\x39\x39\x39\x20\ -\x30\x2e\x38\x37\x35\x2c\x31\x2e\x34\x39\x39\x39\x39\x39\x39\x39\ -\x20\x30\x2e\x34\x32\x35\x2c\x30\x20\x31\x2e\x34\x32\x35\x2c\x2d\ -\x31\x2e\x33\x32\x34\x39\x39\x39\x39\x39\x20\x31\x2e\x35\x35\x2c\ -\x2d\x31\x2e\x37\x34\x39\x39\x39\x39\x39\x39\x20\x6c\x20\x31\x2e\ -\x31\x37\x35\x2c\x2d\x33\x2e\x38\x20\x63\x20\x2d\x30\x2e\x38\x35\ -\x2c\x30\x2e\x33\x20\x2d\x31\x2e\x37\x35\x2c\x30\x2e\x35\x37\x35\ -\x20\x2d\x32\x2e\x36\x37\x35\x2c\x30\x2e\x35\x37\x35\x20\x2d\x31\ -\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\ -\x38\x35\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\ -\x30\x2e\x39\x37\x35\x20\x30\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\ -\x37\x35\x30\x30\x30\x31\x20\x31\x2e\x37\x37\x35\x2c\x2d\x31\x2e\ -\x37\x37\x35\x30\x30\x30\x31\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\ -\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\x2c\x31\ -\x2e\x30\x30\x30\x30\x30\x30\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\ -\x37\x20\x30\x2e\x31\x35\x2c\x31\x2e\x35\x20\x30\x2e\x38\x37\x35\ -\x2c\x31\x2e\x35\x20\x30\x2e\x34\x32\x35\x2c\x30\x20\x31\x2e\x33\ -\x32\x35\x2c\x2d\x31\x2e\x33\x35\x20\x31\x2e\x35\x2c\x2d\x31\x2e\ -\x37\x35\x20\x30\x2e\x31\x2c\x2d\x30\x2e\x32\x37\x35\x30\x30\x30\ -\x31\x20\x30\x2e\x35\x2c\x2d\x30\x2e\x32\x37\x35\x30\x30\x30\x31\ -\x20\x30\x2e\x36\x2c\x30\x20\x6c\x20\x2d\x34\x2e\x35\x35\x2c\x31\ -\x36\x2e\x38\x37\x35\x20\x63\x20\x2d\x30\x2e\x31\x37\x35\x2c\x30\ -\x2e\x31\x35\x20\x2d\x30\x2e\x33\x37\x35\x2c\x30\x2e\x32\x32\x35\ -\x20\x2d\x30\x2e\x35\x37\x35\x2c\x30\x2e\x32\x32\x35\x20\x2d\x30\ -\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x30\ -\x37\x35\x20\x2d\x30\x2e\x36\x2c\x2d\x30\x2e\x32\x32\x35\x20\x7a\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x34\x30\x33\x22\x0a\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\x3c\x2f\ -\x73\x76\x67\x3e\x0a\ \x00\x00\x05\x7e\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -793,7 +653,7 @@ qt_resource_data = b"\ \x2e\x33\x37\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\ \x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\ \x35\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x09\x33\ +\x00\x00\x06\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\ @@ -825,238 +685,79 @@ qt_resource_data = b"\ \x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ \x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ \x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x35\x32\x33\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x34\x35\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ \x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ -\x6e\x61\x6d\x65\x3d\x22\x6e\x6f\x74\x65\x68\x65\x61\x64\x73\x4c\ -\x6f\x6e\x67\x61\x2e\x73\x76\x67\x22\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\x32\x33\x38\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ -\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ -\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ -\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x35\x32\x33\x36\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\x0a\ -\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\ -\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\ -\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\ -\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\ -\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x35\x32\x33\ -\x34\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\x7a\x6f\x6f\x6d\x3d\x22\x32\x31\x2e\ -\x33\x36\x30\x32\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x32\x31\x2e\x35\x30\x38\ -\x35\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\x36\x2e\x38\x32\x35\x35\x39\ -\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\x39\x32\x30\x22\x0a\ +\x6e\x61\x6d\x65\x3d\x22\x72\x65\x73\x74\x42\x72\x65\x76\x69\x73\ +\x2e\x73\x76\x67\x22\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\x34\x35\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\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x35\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\ +\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\ +\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ +\x64\x74\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ +\x33\x34\x34\x39\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\x7a\x6f\x6f\x6d\x3d\x22\ +\x32\x31\x2e\x33\x36\x30\x32\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x36\x2e\x31\ +\x31\x32\x38\x35\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\x35\x2e\x33\x35\ +\x35\x33\x39\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\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\x0a\x20\ +\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\x63\x75\x72\ -\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x73\x76\x67\x35\ -\x32\x33\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x73\x76\x67\x33\ +\x34\x34\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\ \x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\ -\x22\x6e\x6f\x74\x65\x68\x65\x61\x64\x73\x2e\x73\x4d\x32\x6e\x65\ -\x6f\x6d\x65\x6e\x73\x75\x72\x61\x6c\x22\x0a\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x6d\x20\x31\x2e\x32\x35\x33\x31\x38\x34\x31\x2c\x2d\ -\x30\x2e\x37\x37\x33\x20\x39\x2e\x38\x39\x39\x39\x39\x39\x39\x2c\ -\x30\x20\x63\x20\x30\x2e\x33\x2c\x30\x20\x30\x2e\x35\x35\x2c\x30\ -\x2e\x32\x32\x35\x30\x30\x30\x30\x33\x20\x30\x2e\x35\x35\x2c\x30\ -\x2e\x35\x32\x35\x30\x30\x30\x30\x33\x20\x6c\x20\x30\x2c\x30\x2e\ -\x35\x35\x20\x63\x20\x30\x2c\x30\x2e\x33\x20\x2d\x30\x2e\x32\x35\ -\x2c\x30\x2e\x35\x32\x35\x20\x2d\x30\x2e\x35\x35\x2c\x30\x2e\x35\ -\x32\x35\x20\x6c\x20\x2d\x39\x2e\x38\x39\x39\x39\x39\x39\x39\x2c\ -\x30\x20\x63\x20\x2d\x30\x2e\x32\x39\x39\x39\x39\x39\x39\x36\x2c\ -\x30\x20\x2d\x30\x2e\x35\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\x30\ -\x2e\x32\x32\x35\x20\x2d\x30\x2e\x35\x34\x39\x39\x39\x39\x39\x36\ -\x2c\x2d\x30\x2e\x35\x32\x35\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x35\ -\x35\x20\x63\x20\x30\x2c\x2d\x30\x2e\x33\x20\x30\x2e\x32\x35\x2c\ -\x2d\x30\x2e\x35\x32\x35\x30\x30\x30\x30\x33\x20\x30\x2e\x35\x34\ -\x39\x39\x39\x39\x39\x36\x2c\x2d\x30\x2e\x35\x32\x35\x30\x30\x30\ -\x30\x33\x20\x7a\x20\x6d\x20\x39\x2e\x38\x39\x39\x39\x39\x39\x39\ -\x2c\x2d\x32\x2e\x36\x20\x2d\x39\x2e\x38\x39\x39\x39\x39\x39\x39\ -\x2c\x30\x20\x63\x20\x2d\x30\x2e\x33\x34\x39\x39\x39\x39\x39\x36\ -\x2c\x30\x20\x2d\x30\x2e\x35\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\ -\x30\x2e\x34\x20\x2d\x30\x2e\x35\x34\x39\x39\x39\x39\x39\x36\x2c\ -\x2d\x30\x2e\x38\x20\x30\x2c\x2d\x30\x2e\x32\x35\x20\x2d\x30\x2e\ -\x31\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x2d\x30\x2e\x33\x37\ -\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x2d\x30\x2e\x32\x2c\x30\x20\ -\x2d\x30\x2e\x33\x37\x35\x2c\x30\x2e\x31\x32\x35\x20\x2d\x30\x2e\ -\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x6c\x20\x30\x2c\x38\x2e\ -\x34\x20\x63\x20\x30\x2c\x30\x2e\x32\x35\x20\x30\x2e\x31\x37\x35\ -\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\x33\x37\x35\x2c\x30\x2e\x33\ -\x37\x35\x20\x30\x2e\x32\x2c\x30\x20\x30\x2e\x33\x37\x35\x2c\x2d\ -\x30\x2e\x31\x32\x35\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x33\ -\x37\x35\x20\x30\x2c\x2d\x30\x2e\x34\x20\x30\x2e\x32\x2c\x2d\x30\ -\x2e\x38\x20\x30\x2e\x35\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\x30\ -\x2e\x38\x20\x6c\x20\x39\x2e\x38\x39\x39\x39\x39\x39\x39\x2c\x30\ -\x20\x63\x20\x30\x2e\x33\x35\x2c\x30\x20\x30\x2e\x35\x35\x2c\x30\ -\x2e\x34\x20\x30\x2e\x35\x35\x2c\x30\x2e\x38\x20\x30\x2c\x30\x2e\ -\x32\x35\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\ -\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\x32\x2c\x30\ -\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\x30\x2e\ -\x33\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x6c\x20\x30\x2c\x2d\ -\x38\x2e\x34\x20\x63\x20\x30\x2e\x31\x37\x35\x2c\x2d\x32\x2e\x30\ -\x37\x35\x20\x30\x2e\x34\x35\x2c\x2d\x34\x2e\x32\x20\x30\x2e\x34\ -\x35\x2c\x2d\x36\x2e\x32\x37\x35\x20\x30\x2c\x2d\x30\x2e\x33\x20\ -\x2d\x30\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\x2d\x30\ -\x2e\x34\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\x2d\x30\x2e\x32\x32\ -\x35\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\x30\x2e\x31\x32\x35\ -\x20\x2d\x30\x2e\x34\x35\x2c\x30\x2e\x34\x32\x35\x20\x6c\x20\x2d\ -\x30\x2e\x33\x2c\x36\x2e\x32\x35\x20\x30\x2c\x30\x2e\x30\x32\x35\ -\x20\x63\x20\x30\x2c\x30\x2e\x34\x20\x2d\x30\x2e\x32\x2c\x30\x2e\ -\x38\x20\x2d\x30\x2e\x35\x35\x2c\x30\x2e\x38\x20\x7a\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x35\x32\x33\x32\ -\x22\x0a\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\x3c\x2f\x73\x76\x67\ -\x3e\x0a\ -\x00\x00\x06\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\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x33\x33\x36\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\ -\x34\x20\x72\x39\x39\x33\x39\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\ -\x73\x74\x31\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\ -\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ -\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ -\x3d\x22\x31\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\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\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ -\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x31\x35\x34\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\x7a\x6f\x6f\x6d\x3d\x22\x34\x2e\x38\x30\x38\x33\x32\x36\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x78\x3d\x22\x31\x31\x31\x2e\x36\x34\x37\x35\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ -\x3d\x22\x39\x38\x38\x2e\x33\x38\x36\x31\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x78\x3d\x22\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\x33\x36\x31\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x33\x33\x36\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ -\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ -\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ -\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ -\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ -\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ -\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x64\x65\x66\x73\x33\x33\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ -\x31\x30\x2e\x30\x30\x36\x38\x39\x2c\x30\x20\x48\x20\x31\x2e\x30\ -\x33\x31\x38\x39\x30\x33\x20\x63\x20\x2d\x30\x2e\x31\x2c\x30\x20\ -\x2d\x30\x2e\x31\x39\x39\x39\x39\x39\x39\x37\x2c\x2d\x30\x2e\x31\ -\x20\x2d\x30\x2e\x31\x39\x39\x39\x39\x39\x39\x37\x2c\x2d\x30\x2e\ -\x32\x20\x76\x20\x2d\x33\x2e\x35\x20\x63\x20\x30\x2c\x2d\x30\x2e\ -\x31\x20\x30\x2e\x31\x2c\x2d\x30\x2e\x32\x20\x30\x2e\x31\x39\x39\ -\x39\x39\x39\x39\x37\x2c\x2d\x30\x2e\x32\x20\x48\x20\x31\x30\x2e\ -\x30\x30\x36\x38\x39\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\ -\x32\x2c\x30\x2e\x31\x20\x30\x2e\x32\x2c\x30\x2e\x32\x20\x76\x20\ -\x33\x2e\x35\x20\x63\x20\x30\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x31\ -\x2c\x30\x2e\x32\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x32\x20\x7a\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\ -\x36\x33\x22\x0a\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\x3c\x2f\x73\ -\x76\x67\x3e\x0a\ -\x00\x00\x06\x40\ +\x22\x72\x65\x73\x74\x73\x2e\x4d\x31\x6d\x65\x6e\x73\x75\x72\x61\ +\x6c\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x2e\x34\ +\x37\x35\x2c\x36\x2e\x36\x38\x36\x39\x37\x30\x34\x20\x30\x2c\x2d\ +\x36\x2e\x32\x35\x30\x30\x30\x30\x30\x34\x20\x2d\x35\x2e\x34\x37\ +\x35\x2c\x2d\x30\x2e\x35\x20\x30\x2c\x36\x2e\x32\x35\x30\x30\x30\ +\x30\x30\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x33\x34\x34\x37\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\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\ @@ -1088,77 +789,179 @@ qt_resource_data = b"\ \x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ \x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ \x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x37\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x35\x32\x31\x30\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\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\x73\x74\x4c\x6f\x6e\x67\x61\x2e\ -\x73\x76\x67\x22\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\x34\x38\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\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x38\x31\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\ -\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\ +\x6e\x61\x6d\x65\x3d\x22\x6e\x6f\x74\x65\x68\x65\x61\x64\x73\x42\ +\x72\x65\x76\x69\x73\x2e\x73\x76\x67\x22\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\x32\x31\x38\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\ +\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\ +\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\ +\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ +\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\ +\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\ +\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x35\x32\x31\x36\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\ +\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\ +\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\ \x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\ -\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\ -\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\ -\x74\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\ -\x34\x37\x39\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\x7a\x6f\x6f\x6d\x3d\x22\x33\ -\x30\x2e\x32\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x38\x2e\x35\x33\x31\x38\x35\ -\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x79\x3d\x22\x39\x39\x38\x2e\x36\x34\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\x31\x39\x32\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\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\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\x73\x76\x67\x33\x34\x37\ -\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x72\ -\x65\x73\x74\x73\x2e\x4d\x32\x6d\x65\x6e\x73\x75\x72\x61\x6c\x22\ -\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\x2e\x34\x37\x35\ -\x2c\x36\x2e\x35\x20\x35\x2e\x34\x37\x35\x2c\x2d\x36\x20\x30\x2c\ -\x2d\x36\x2e\x35\x20\x30\x2c\x36\x20\x5a\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x37\x37\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x07\x6b\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\ +\x61\x63\x69\x74\x79\x3d\x22\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x35\x32\ +\x31\x34\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x2e\ +\x38\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x78\x3d\x22\x32\x30\x32\x2e\x34\x38\x35\x30\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x79\x3d\x22\x37\x38\x32\x2e\x32\x36\x33\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\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\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\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\x73\x76\x67\x35\x32\x31\x30\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\ +\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x6e\x6f\x74\x65\x68\ +\x65\x61\x64\x73\x2e\x73\x4d\x31\x6e\x65\x6f\x6d\x65\x6e\x73\x75\ +\x72\x61\x6c\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\ +\x2e\x33\x2c\x2d\x30\x2e\x38\x20\x39\x2e\x39\x2c\x30\x20\x63\x20\ +\x30\x2e\x33\x2c\x30\x20\x30\x2e\x35\x35\x2c\x30\x2e\x32\x32\x35\ +\x20\x30\x2e\x35\x35\x2c\x30\x2e\x35\x32\x35\x20\x6c\x20\x30\x2c\ +\x30\x2e\x35\x35\x20\x63\x20\x30\x2c\x30\x2e\x33\x20\x2d\x30\x2e\ +\x32\x35\x2c\x30\x2e\x35\x32\x35\x20\x2d\x30\x2e\x35\x35\x2c\x30\ +\x2e\x35\x32\x35\x20\x6c\x20\x2d\x39\x2e\x39\x2c\x30\x20\x43\x20\ +\x31\x2c\x30\x2e\x38\x20\x30\x2e\x37\x35\x2c\x30\x2e\x35\x37\x35\ +\x20\x30\x2e\x37\x35\x2c\x30\x2e\x32\x37\x35\x20\x6c\x20\x30\x2c\ +\x2d\x30\x2e\x35\x35\x20\x43\x20\x30\x2e\x37\x35\x2c\x2d\x30\x2e\ +\x35\x37\x35\x20\x31\x2c\x2d\x30\x2e\x38\x20\x31\x2e\x33\x2c\x2d\ +\x30\x2e\x38\x20\x5a\x20\x6d\x20\x39\x2e\x39\x2c\x2d\x32\x2e\x36\ +\x20\x2d\x39\x2e\x39\x2c\x30\x20\x43\x20\x30\x2e\x39\x35\x2c\x2d\ +\x33\x2e\x34\x20\x30\x2e\x37\x35\x2c\x2d\x33\x2e\x38\x20\x30\x2e\ +\x37\x35\x2c\x2d\x34\x2e\x32\x20\x30\x2e\x37\x35\x2c\x2d\x34\x2e\ +\x34\x35\x20\x30\x2e\x35\x37\x35\x2c\x2d\x34\x2e\x35\x37\x35\x20\ +\x30\x2e\x33\x37\x35\x2c\x2d\x34\x2e\x35\x37\x35\x20\x30\x2e\x31\ +\x37\x35\x2c\x2d\x34\x2e\x35\x37\x35\x20\x30\x2c\x2d\x34\x2e\x34\ +\x35\x20\x30\x2c\x2d\x34\x2e\x32\x20\x4c\x20\x30\x2c\x34\x2e\x32\ +\x20\x43\x20\x30\x2c\x34\x2e\x34\x35\x20\x30\x2e\x31\x37\x35\x2c\ +\x34\x2e\x35\x37\x35\x20\x30\x2e\x33\x37\x35\x2c\x34\x2e\x35\x37\ +\x35\x20\x30\x2e\x35\x37\x35\x2c\x34\x2e\x35\x37\x35\x20\x30\x2e\ +\x37\x35\x2c\x34\x2e\x34\x35\x20\x30\x2e\x37\x35\x2c\x34\x2e\x32\ +\x20\x30\x2e\x37\x35\x2c\x33\x2e\x38\x20\x30\x2e\x39\x35\x2c\x33\ +\x2e\x34\x20\x31\x2e\x33\x2c\x33\x2e\x34\x20\x6c\x20\x39\x2e\x39\ +\x2c\x30\x20\x63\x20\x30\x2e\x33\x35\x2c\x30\x20\x30\x2e\x35\x35\ +\x2c\x30\x2e\x34\x20\x30\x2e\x35\x35\x2c\x30\x2e\x38\x20\x30\x2c\ +\x30\x2e\x32\x35\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x33\x37\x35\ +\x20\x30\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\x32\ +\x2c\x30\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\ +\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x6c\x20\x30\ +\x2c\x2d\x38\x2e\x34\x20\x63\x20\x30\x2c\x2d\x30\x2e\x32\x35\x20\ +\x2d\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x2d\x30\ +\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x2d\x30\x2e\x32\ +\x2c\x30\x20\x2d\x30\x2e\x33\x37\x35\x2c\x30\x2e\x31\x32\x35\x20\ +\x2d\x30\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2c\x30\ +\x2e\x34\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x38\x20\x2d\x30\x2e\x35\ +\x35\x2c\x30\x2e\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x35\x32\x31\x32\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x03\xf1\ +\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\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x22\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\x31\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ +\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ +\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ +\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\ +\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\ +\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x38\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2e\ +\x33\x35\x2c\x36\x2e\x32\x35\x20\x43\x20\x32\x2e\x38\x32\x35\x2c\ +\x37\x2e\x37\x32\x35\x20\x36\x2e\x31\x2c\x31\x30\x20\x36\x2e\x31\ +\x2c\x31\x32\x2e\x38\x32\x35\x20\x63\x20\x30\x2c\x31\x2e\x36\x32\ +\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x33\x2e\x32\x32\x35\x20\x2d\ +\x31\x2e\x33\x35\x2c\x34\x2e\x36\x32\x35\x20\x2d\x30\x2e\x30\x37\ +\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\x32\x32\x35\x2c\x30\x2e\ +\x36\x32\x35\x20\x30\x2e\x35\x32\x35\x2c\x30\x2e\x36\x32\x35\x20\ +\x30\x2e\x31\x37\x35\x2c\x30\x20\x30\x2e\x33\x35\x2c\x2d\x30\x2e\ +\x31\x20\x30\x2e\x34\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\ +\x38\x32\x35\x2c\x2d\x31\x2e\x35\x32\x35\x20\x31\x2e\x33\x35\x2c\ +\x2d\x33\x2e\x32\x32\x35\x20\x31\x2e\x33\x35\x2c\x2d\x34\x2e\x39\ +\x37\x35\x20\x43\x20\x37\x2e\x30\x37\x35\x2c\x37\x2e\x37\x20\x30\ +\x2e\x33\x35\x2c\x35\x2e\x31\x32\x35\x20\x30\x2e\x33\x35\x2c\x30\ +\x20\x48\x20\x30\x20\x76\x20\x36\x2e\x32\x35\x20\x68\x20\x30\x2e\ +\x33\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x34\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\ +\x00\x00\x0a\xe8\ \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\ @@ -1190,96 +993,287 @@ qt_resource_data = b"\ \x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ \x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ \x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x33\x33\x36\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x34\x33\x34\x30\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ \x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ -\x6e\x61\x6d\x65\x3d\x22\x63\x6c\x65\x66\x50\x65\x72\x63\x75\x73\ -\x73\x69\x6f\x6e\x2e\x73\x76\x67\x22\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\x33\x34\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x33\x33\x34\x32\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\x0a\ -\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\ -\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\ -\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\ +\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x31\x32\x38\x2e\x73\x76\ +\x67\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x34\x33\x34\x38\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ +\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\ +\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ +\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\ +\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\ +\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\ +\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\ +\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\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\x64\x65\x66\ +\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x34\ +\x33\x34\x36\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\ +\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\ +\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\ \x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\ -\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x32\x30\x39\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x33\x34\ -\x30\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x2e\x33\ -\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x78\x3d\x22\x35\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x36\x31\x39\ -\x2e\x31\x33\x36\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\ +\x31\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\ +\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\x77\x69\x6e\ +\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\ +\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\ +\x65\x64\x76\x69\x65\x77\x34\x33\x34\x34\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\ +\x7a\x6f\x6f\x6d\x3d\x22\x31\x35\x2e\x31\x30\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ +\x31\x36\x2e\x32\x36\x30\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\x36\ +\x2e\x37\x33\x36\x37\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\x33\x30\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\ +\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\ \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\x73\ -\x76\x67\x33\x33\x33\x36\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\ +\x76\x67\x34\x33\x34\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\ \x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\ -\x6d\x65\x3d\x22\x63\x6c\x65\x66\x73\x2e\x70\x65\x72\x63\x75\x73\ -\x73\x69\x6f\x6e\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x38\x2e\x31\x2c\x2d\x36\x2e\x32\x35\x20\x2d\x32\x2e\x34\x32\x35\ -\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x2c\x30\x20\x2d\x30\x2e\x31\ -\x37\x35\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x31\x37\x35\x2c\x30\x2e\ -\x32\x20\x6c\x20\x30\x2c\x31\x32\x2e\x31\x20\x63\x20\x30\x2c\x30\ -\x2e\x31\x20\x30\x2e\x30\x37\x35\x2c\x30\x2e\x32\x20\x30\x2e\x31\ -\x37\x35\x2c\x30\x2e\x32\x20\x6c\x20\x32\x2e\x34\x32\x35\x2c\x30\ -\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\x32\x2c\x2d\x30\x2e\ -\x31\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x6c\x20\x30\x2c\x2d\ -\x31\x32\x2e\x31\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\x20\x2d\x30\ -\x2e\x31\x2c\x2d\x30\x2e\x32\x20\x2d\x30\x2e\x32\x2c\x2d\x30\x2e\ -\x32\x20\x7a\x20\x6d\x20\x2d\x35\x2e\x35\x2c\x30\x20\x2d\x32\x2e\ -\x34\x32\x35\x2c\x30\x20\x43\x20\x30\x2e\x30\x37\x35\x2c\x2d\x36\ -\x2e\x32\x35\x20\x30\x2c\x2d\x36\x2e\x31\x35\x20\x30\x2c\x2d\x36\ -\x2e\x30\x35\x20\x6c\x20\x30\x2c\x31\x32\x2e\x31\x20\x63\x20\x30\ -\x2c\x30\x2e\x31\x20\x30\x2e\x30\x37\x35\x2c\x30\x2e\x32\x20\x30\ -\x2e\x31\x37\x35\x2c\x30\x2e\x32\x20\x6c\x20\x32\x2e\x34\x32\x35\ -\x2c\x30\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\x32\x2c\x2d\ -\x30\x2e\x31\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x6c\x20\x30\ -\x2c\x2d\x31\x32\x2e\x31\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\x20\ -\x2d\x30\x2e\x31\x2c\x2d\x30\x2e\x32\x20\x2d\x30\x2e\x32\x2c\x2d\ -\x30\x2e\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x33\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x36\x2e\x36\x37\x37\x37\x35\x34\ +\x32\x2c\x32\x31\x2e\x35\x39\x37\x37\x37\x35\x20\x63\x20\x30\x2c\ +\x2d\x30\x2e\x36\x37\x35\x20\x2d\x30\x2e\x32\x2c\x2d\x31\x2e\x32\ +\x37\x35\x20\x2d\x30\x2e\x35\x2c\x2d\x31\x2e\x38\x20\x30\x2e\x31\ +\x37\x35\x2c\x2d\x30\x2e\x36\x37\x35\x20\x30\x2e\x33\x2c\x2d\x31\ +\x2e\x33\x37\x35\x20\x30\x2e\x33\x2c\x2d\x32\x2e\x30\x37\x35\x20\ +\x30\x2c\x2d\x30\x2e\x37\x35\x20\x2d\x30\x2e\x32\x2c\x2d\x31\x2e\ +\x34\x32\x35\x20\x2d\x30\x2e\x35\x2c\x2d\x32\x2e\x30\x32\x35\x20\ +\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x30\x2e\x33\x2c\ +\x2d\x31\x2e\x37\x20\x30\x2e\x33\x2c\x2d\x32\x2e\x35\x35\x20\x30\ +\x2c\x2d\x30\x2e\x39\x32\x35\x20\x2d\x30\x2e\x32\x35\x2c\x2d\x31\ +\x2e\x37\x35\x20\x2d\x30\x2e\x36\x35\x2c\x2d\x32\x2e\x35\x32\x35\ +\x20\x30\x2e\x30\x35\x2c\x2d\x30\x2e\x37\x39\x39\x39\x39\x39\x39\ +\x20\x30\x2e\x30\x37\x35\x2c\x2d\x31\x2e\x36\x32\x34\x39\x39\x39\ +\x39\x20\x30\x2e\x30\x37\x35\x2c\x2d\x32\x2e\x34\x32\x34\x39\x39\ +\x39\x39\x20\x30\x2c\x2d\x30\x2e\x39\x32\x35\x20\x2d\x30\x2e\x32\ +\x32\x35\x2c\x2d\x31\x2e\x37\x37\x34\x39\x39\x39\x37\x20\x2d\x30\ +\x2e\x35\x37\x35\x2c\x2d\x32\x2e\x35\x37\x34\x39\x39\x39\x37\x20\ +\x30\x2e\x30\x35\x2c\x2d\x30\x2e\x37\x37\x35\x20\x30\x2e\x30\x35\ +\x2c\x2d\x31\x2e\x35\x35\x20\x30\x2e\x30\x35\x2c\x2d\x32\x2e\x33\ +\x32\x35\x20\x30\x2c\x2d\x34\x2e\x37\x37\x35\x30\x30\x30\x32\x20\ +\x2d\x35\x2e\x32\x32\x34\x39\x39\x39\x39\x36\x2c\x2d\x37\x2e\x39\ +\x37\x35\x30\x30\x30\x32\x20\x2d\x35\x2e\x32\x32\x34\x39\x39\x39\ +\x39\x36\x2c\x2d\x31\x32\x2e\x37\x35\x30\x30\x30\x30\x32\x20\x6c\ +\x20\x30\x2c\x2d\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x33\x35\x2c\ +\x30\x20\x30\x2c\x33\x31\x2e\x32\x34\x39\x39\x39\x39\x38\x20\x30\ +\x2e\x33\x35\x2c\x30\x20\x30\x2c\x2d\x33\x2e\x37\x35\x20\x63\x20\ +\x32\x2e\x34\x39\x39\x39\x39\x39\x39\x36\x2c\x30\x2e\x33\x37\x35\ +\x20\x35\x2e\x37\x34\x39\x39\x39\x39\x39\x36\x2c\x31\x2e\x35\x20\ +\x35\x2e\x37\x34\x39\x39\x39\x39\x39\x36\x2c\x33\x2e\x37\x37\x35\ +\x20\x30\x2c\x30\x2e\x34\x32\x35\x20\x2d\x30\x2e\x31\x35\x2c\x30\ +\x2e\x38\x37\x35\x20\x2d\x30\x2e\x31\x35\x2c\x31\x2e\x33\x20\x30\ +\x2c\x30\x2e\x33\x20\x30\x2e\x32\x37\x35\x2c\x30\x2e\x35\x20\x30\ +\x2e\x35\x35\x2c\x30\x2e\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\x30\ +\x2e\x35\x37\x35\x2c\x2d\x31\x2e\x32\x20\x30\x2e\x35\x37\x35\x2c\ +\x2d\x31\x2e\x38\x20\x7a\x20\x4d\x20\x2d\x30\x2e\x30\x34\x37\x32\ +\x34\x35\x37\x36\x2c\x2d\x34\x2e\x34\x35\x32\x32\x32\x34\x37\x20\ +\x63\x20\x31\x2e\x38\x34\x39\x39\x39\x39\x39\x36\x2c\x32\x2e\x30\ +\x39\x39\x39\x39\x39\x39\x20\x34\x2e\x32\x37\x34\x39\x39\x39\x39\ +\x36\x2c\x34\x2e\x39\x37\x35\x30\x30\x30\x30\x38\x20\x34\x2e\x32\ +\x37\x34\x39\x39\x39\x39\x36\x2c\x37\x2e\x37\x35\x30\x30\x30\x30\ +\x31\x20\x30\x2c\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x30\x32\x35\ +\x2c\x30\x2e\x34\x37\x35\x20\x2d\x30\x2e\x30\x32\x35\x2c\x30\x2e\ +\x37\x20\x2d\x31\x2e\x37\x2c\x2d\x32\x2e\x35\x35\x20\x2d\x34\x2e\ +\x32\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\x34\x2e\x38\x32\x34\x39\ +\x39\x39\x39\x38\x20\x2d\x34\x2e\x32\x34\x39\x39\x39\x39\x39\x36\ +\x2c\x2d\x37\x2e\x39\x35\x30\x30\x30\x30\x31\x20\x6c\x20\x30\x2c\ +\x2d\x30\x2e\x35\x20\x7a\x20\x6d\x20\x30\x2c\x35\x2e\x35\x30\x30\ +\x30\x30\x30\x31\x20\x63\x20\x32\x2e\x30\x34\x39\x39\x39\x39\x39\ +\x36\x2c\x31\x2e\x38\x32\x35\x20\x34\x2e\x37\x37\x34\x39\x39\x39\ +\x39\x36\x2c\x34\x2e\x34\x32\x35\x20\x34\x2e\x37\x37\x34\x39\x39\ +\x39\x39\x36\x2c\x37\x2e\x31\x34\x39\x39\x39\x39\x37\x20\x6c\x20\ +\x30\x2c\x31\x20\x63\x20\x2d\x31\x2e\x38\x37\x35\x2c\x2d\x32\x2e\ +\x34\x32\x35\x20\x2d\x34\x2e\x37\x37\x34\x39\x39\x39\x39\x36\x2c\ +\x2d\x34\x2e\x34\x34\x39\x39\x39\x39\x37\x20\x2d\x34\x2e\x37\x37\ +\x34\x39\x39\x39\x39\x36\x2c\x2d\x37\x2e\x36\x32\x34\x39\x39\x39\ +\x37\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x35\x32\x35\x20\x7a\x20\x6d\ +\x20\x30\x2c\x35\x2e\x35\x32\x34\x39\x39\x39\x37\x20\x63\x20\x32\ +\x2e\x32\x39\x39\x39\x39\x39\x39\x36\x2c\x31\x2e\x35\x35\x20\x35\ +\x2e\x33\x34\x39\x39\x39\x39\x39\x36\x2c\x33\x2e\x38\x34\x39\x39\ +\x39\x39\x39\x20\x35\x2e\x33\x34\x39\x39\x39\x39\x39\x36\x2c\x36\ +\x2e\x35\x37\x34\x39\x39\x39\x39\x20\x30\x2c\x30\x2e\x34\x35\x20\ +\x2d\x30\x2e\x30\x32\x35\x2c\x30\x2e\x39\x20\x2d\x30\x2e\x31\x2c\ +\x31\x2e\x33\x35\x20\x2d\x31\x2e\x39\x2c\x2d\x32\x2e\x33\x37\x35\ +\x20\x2d\x35\x2e\x32\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\x34\x2e\ +\x31\x20\x2d\x35\x2e\x32\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\x37\ +\x2e\x32\x39\x39\x39\x39\x39\x39\x20\x6c\x20\x30\x2c\x2d\x30\x2e\ +\x36\x32\x35\x20\x7a\x20\x6d\x20\x30\x2c\x35\x2e\x36\x32\x34\x39\ +\x39\x39\x39\x20\x63\x20\x32\x2e\x33\x39\x39\x39\x39\x39\x39\x36\ +\x2c\x31\x2e\x31\x32\x35\x20\x35\x2e\x35\x34\x39\x39\x39\x39\x39\ +\x36\x2c\x32\x2e\x39\x37\x35\x20\x35\x2e\x35\x34\x39\x39\x39\x39\ +\x39\x36\x2c\x35\x2e\x35\x32\x35\x20\x30\x2c\x30\x2e\x33\x37\x35\ +\x20\x2d\x30\x2e\x30\x35\x2c\x30\x2e\x37\x32\x35\x20\x2d\x30\x2e\ +\x31\x32\x35\x2c\x31\x2e\x31\x20\x2d\x31\x2e\x39\x35\x2c\x2d\x31\ +\x2e\x39\x32\x35\x20\x2d\x35\x2e\x34\x32\x34\x39\x39\x39\x39\x36\ +\x2c\x2d\x33\x2e\x30\x35\x20\x2d\x35\x2e\x34\x32\x34\x39\x39\x39\ +\x39\x36\x2c\x2d\x36\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x36\x32\x35\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x34\x33\x34\x32\x22\x0a\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\ +\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\x4b\ +\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\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ +\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\ +\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\ +\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\ +\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\ +\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ +\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\ +\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ +\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ +\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ +\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x33\x34\x36\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ +\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ +\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x31\x36\x69\x2e\x73\x76\ +\x67\x22\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\x33\x35\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\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x33\x33\x35\x32\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\x0a\ +\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\ +\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\ +\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\ +\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x33\x35\ +\x30\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x78\x3d\x22\x31\x32\x2e\x30\x36\x30\x37\x32\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ +\x31\x30\x30\x30\x2e\x34\x34\x37\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\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\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\x73\x76\x67\x33\x33\x34\x36\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\ +\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x30\x2e\x31\x30\ +\x32\x36\x36\x35\x31\x31\x2c\x35\x2e\x37\x32\x35\x33\x32\x30\x31\ +\x20\x63\x20\x32\x2e\x33\x32\x34\x39\x39\x39\x38\x31\x2c\x2d\x31\ +\x2e\x33\x32\x35\x20\x35\x2e\x33\x39\x39\x39\x39\x39\x38\x31\x2c\ +\x2d\x33\x2e\x33\x37\x35\x20\x35\x2e\x33\x39\x39\x39\x39\x39\x38\ +\x31\x2c\x2d\x35\x2e\x39\x39\x39\x39\x39\x39\x39\x35\x20\x30\x2c\ +\x2d\x30\x2e\x36\x32\x34\x39\x39\x39\x39\x38\x20\x2d\x30\x2e\x31\ +\x32\x35\x2c\x2d\x31\x2e\x32\x34\x39\x39\x39\x39\x39\x35\x20\x2d\ +\x30\x2e\x33\x35\x2c\x2d\x31\x2e\x38\x32\x34\x39\x39\x39\x39\x35\ +\x20\x2d\x32\x2c\x32\x2e\x32\x37\x34\x39\x39\x39\x39\x36\x20\x2d\ +\x35\x2e\x30\x34\x39\x39\x39\x39\x38\x31\x2c\x34\x2e\x30\x37\x34\ +\x39\x39\x39\x39\x20\x2d\x35\x2e\x30\x34\x39\x39\x39\x39\x38\x31\ +\x2c\x37\x2e\x31\x39\x39\x39\x39\x39\x39\x20\x6c\x20\x30\x2c\x30\ +\x2e\x36\x32\x35\x20\x7a\x20\x6d\x20\x36\x2e\x37\x32\x34\x39\x39\ +\x39\x38\x31\x2c\x2d\x31\x31\x2e\x36\x32\x35\x20\x63\x20\x30\x2c\ +\x31\x2e\x31\x20\x2d\x30\x2e\x34\x2c\x32\x2e\x30\x35\x20\x2d\x30\ +\x2e\x39\x37\x35\x2c\x32\x2e\x39\x20\x30\x2e\x34\x2c\x30\x2e\x38\ +\x35\x20\x30\x2e\x36\x32\x35\x2c\x31\x2e\x37\x37\x35\x30\x30\x30\ +\x31\x20\x30\x2e\x36\x32\x35\x2c\x32\x2e\x37\x32\x35\x30\x30\x30\ +\x30\x35\x20\x30\x2c\x34\x2e\x35\x34\x39\x39\x39\x39\x39\x35\x20\ +\x2d\x36\x2e\x33\x37\x34\x39\x39\x39\x38\x31\x2c\x36\x2e\x34\x34\ +\x39\x39\x39\x39\x39\x35\x20\x2d\x36\x2e\x33\x37\x34\x39\x39\x39\ +\x38\x31\x2c\x31\x31\x2e\x30\x30\x30\x30\x30\x30\x38\x35\x20\x6c\ +\x20\x2d\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\x2d\x31\x32\x2e\x35\ +\x30\x30\x30\x30\x30\x38\x20\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\ +\x31\x2e\x38\x37\x34\x39\x39\x39\x39\x36\x20\x43\x20\x32\x2e\x33\ +\x37\x32\x33\x33\x34\x37\x2c\x2d\x31\x2e\x31\x37\x34\x36\x37\x39\ +\x38\x20\x35\x2e\x36\x34\x37\x33\x33\x34\x37\x2c\x2d\x33\x2e\x31\ +\x39\x39\x36\x37\x39\x39\x20\x35\x2e\x36\x34\x37\x33\x33\x34\x37\ +\x2c\x2d\x35\x2e\x38\x39\x39\x36\x37\x39\x39\x20\x63\x20\x30\x2c\ +\x2d\x30\x2e\x35\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x2d\x31\x2e\ +\x30\x37\x35\x20\x2d\x30\x2e\x33\x32\x35\x2c\x2d\x31\x2e\x35\x37\ +\x35\x20\x2d\x30\x2e\x30\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\ +\x30\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x36\x32\x35\x20\x30\x2e\x35\ +\x32\x35\x2c\x2d\x30\x2e\x36\x32\x35\x20\x30\x2e\x37\x2c\x30\x20\ +\x30\x2e\x37\x37\x35\x2c\x31\x2e\x36\x20\x30\x2e\x37\x37\x35\x2c\ +\x32\x2e\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x33\x33\x34\x38\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x09\x7b\ +\x00\x00\x05\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\ @@ -1303,223 +1297,219 @@ qt_resource_data = b"\ \x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ \x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ \x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x33\x31\x36\x39\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\ -\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x63\x6c\ -\x65\x66\x42\x61\x73\x73\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\ -\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\ -\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\ -\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\ -\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x39\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x30\x31\x38\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x37\x2e\x38\x33\x30\ -\x34\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x78\x3d\x22\x32\x32\x2e\x34\x32\x32\x33\x31\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x79\x3d\x22\x39\x38\x37\x2e\x33\x38\x30\x39\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x78\x3d\x22\x32\x38\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\x79\x3d\x22\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\ -\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\x31\x36\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\x33\x31\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\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x64\x65\x66\x73\x33\x31\x37\x35\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\ -\x6d\x20\x31\x34\x2e\x31\x37\x35\x2c\x2d\x33\x2e\x31\x35\x30\x39\ -\x38\x35\x35\x20\x63\x20\x30\x2c\x2d\x30\x2e\x37\x32\x35\x20\x30\ -\x2e\x35\x37\x35\x2c\x2d\x31\x2e\x33\x30\x30\x30\x30\x30\x31\x20\ -\x31\x2e\x33\x2c\x2d\x31\x2e\x33\x30\x30\x30\x30\x30\x31\x20\x30\ -\x2e\x37\x32\x35\x2c\x30\x20\x31\x2e\x33\x2c\x30\x2e\x35\x37\x35\ -\x30\x30\x30\x31\x20\x31\x2e\x33\x2c\x31\x2e\x33\x30\x30\x30\x30\ -\x30\x31\x20\x30\x2c\x30\x2e\x37\x32\x35\x20\x2d\x30\x2e\x35\x37\ -\x35\x2c\x31\x2e\x32\x39\x39\x39\x39\x39\x39\x20\x2d\x31\x2e\x33\ -\x2c\x31\x2e\x32\x39\x39\x39\x39\x39\x39\x20\x2d\x30\x2e\x37\x32\ -\x35\x2c\x30\x20\x2d\x31\x2e\x33\x2c\x2d\x30\x2e\x35\x37\x34\x39\ -\x39\x39\x39\x20\x2d\x31\x2e\x33\x2c\x2d\x31\x2e\x32\x39\x39\x39\ -\x39\x39\x39\x20\x7a\x20\x6d\x20\x30\x2c\x2d\x36\x2e\x32\x35\x30\ -\x30\x30\x30\x31\x20\x63\x20\x30\x2c\x2d\x30\x2e\x37\x32\x35\x30\ -\x30\x30\x34\x20\x30\x2e\x35\x37\x35\x2c\x2d\x31\x2e\x33\x30\x30\ -\x30\x30\x30\x34\x20\x31\x2e\x33\x2c\x2d\x31\x2e\x33\x30\x30\x30\ -\x30\x30\x34\x20\x30\x2e\x37\x32\x35\x2c\x30\x20\x31\x2e\x33\x2c\ -\x30\x2e\x35\x37\x35\x20\x31\x2e\x33\x2c\x31\x2e\x33\x30\x30\x30\ -\x30\x30\x34\x20\x30\x2c\x30\x2e\x37\x32\x35\x20\x2d\x30\x2e\x35\ -\x37\x35\x2c\x31\x2e\x33\x20\x2d\x31\x2e\x33\x2c\x31\x2e\x33\x20\ -\x2d\x30\x2e\x37\x32\x35\x2c\x30\x20\x2d\x31\x2e\x33\x2c\x2d\x30\ -\x2e\x35\x37\x35\x20\x2d\x31\x2e\x33\x2c\x2d\x31\x2e\x33\x20\x7a\ -\x20\x4d\x20\x36\x2e\x31\x2c\x2d\x31\x32\x2e\x38\x30\x30\x39\x38\ -\x36\x20\x63\x20\x34\x2e\x32\x37\x35\x2c\x30\x20\x37\x2e\x33\x2c\ -\x32\x2e\x31\x35\x20\x37\x2e\x33\x2c\x36\x2e\x32\x30\x30\x30\x30\ -\x30\x34\x20\x30\x2c\x36\x2e\x35\x37\x35\x30\x30\x30\x30\x33\x20\ -\x2d\x36\x2e\x36\x2c\x31\x30\x2e\x33\x37\x35\x20\x2d\x31\x32\x2e\ -\x39\x32\x35\x2c\x31\x33\x2e\x30\x32\x35\x20\x2d\x30\x2e\x30\x35\ -\x2c\x30\x2e\x30\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x30\x2e\x30\ -\x37\x35\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x30\x37\x35\x20\x2d\x30\ -\x2e\x31\x35\x2c\x30\x20\x2d\x30\x2e\x32\x37\x35\x2c\x2d\x30\x2e\ -\x31\x32\x35\x20\x2d\x30\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x32\x37\ -\x35\x20\x30\x2c\x2d\x30\x2e\x30\x37\x35\x20\x30\x2e\x30\x32\x35\ -\x2c\x2d\x30\x2e\x31\x35\x20\x30\x2e\x30\x37\x35\x2c\x2d\x30\x2e\ -\x32\x20\x35\x2e\x30\x37\x35\x2c\x2d\x32\x2e\x39\x35\x20\x31\x30\ -\x2e\x33\x37\x35\x2c\x2d\x36\x2e\x36\x32\x34\x39\x39\x39\x39\x37\ -\x20\x31\x30\x2e\x33\x37\x35\x2c\x2d\x31\x32\x2e\x33\x35\x20\x30\ -\x2c\x2d\x33\x2e\x30\x32\x35\x20\x2d\x31\x2e\x36\x2c\x2d\x35\x2e\ -\x39\x32\x35\x30\x30\x30\x34\x20\x2d\x34\x2e\x33\x35\x2c\x2d\x35\ -\x2e\x39\x32\x35\x30\x30\x30\x34\x20\x2d\x31\x2e\x39\x37\x35\x2c\ -\x30\x20\x2d\x33\x2e\x34\x35\x2c\x31\x2e\x34\x32\x35\x20\x2d\x34\ -\x2e\x31\x2c\x33\x2e\x33\x32\x35\x30\x30\x30\x34\x20\x30\x2e\x33\ -\x35\x2c\x2d\x30\x2e\x32\x20\x30\x2e\x37\x2c\x2d\x30\x2e\x33\x32\ -\x35\x20\x31\x2e\x30\x37\x35\x2c\x2d\x30\x2e\x33\x32\x35\x20\x31\ -\x2e\x33\x37\x35\x2c\x30\x20\x32\x2e\x35\x2c\x31\x2e\x31\x32\x35\ -\x20\x32\x2e\x35\x2c\x32\x2e\x35\x20\x30\x2c\x31\x2e\x34\x35\x20\ -\x2d\x31\x2e\x31\x2c\x32\x2e\x36\x37\x35\x30\x30\x30\x31\x20\x2d\ -\x32\x2e\x35\x2c\x32\x2e\x36\x37\x35\x30\x30\x30\x31\x20\x2d\x31\ -\x2e\x35\x2c\x30\x20\x2d\x32\x2e\x38\x2c\x2d\x31\x2e\x32\x30\x30\ -\x30\x30\x30\x31\x20\x2d\x32\x2e\x38\x2c\x2d\x32\x2e\x36\x37\x35\ -\x30\x30\x30\x31\x20\x30\x2c\x2d\x33\x2e\x33\x30\x30\x30\x30\x30\ -\x34\x20\x32\x2e\x35\x37\x35\x2c\x2d\x36\x2e\x30\x35\x30\x30\x30\ -\x30\x34\x20\x35\x2e\x38\x32\x35\x2c\x2d\x36\x2e\x30\x35\x30\x30\ -\x30\x30\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x31\x37\x31\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x05\x53\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x22\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\x31\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ +\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ +\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ +\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\ +\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\ +\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x38\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x2e\ +\x39\x35\x2c\x2d\x31\x2e\x36\x37\x35\x20\x63\x20\x30\x2c\x2d\x30\ +\x2e\x36\x32\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x31\x2e\x30\ +\x35\x20\x2d\x31\x2e\x30\x37\x35\x2c\x2d\x31\x2e\x30\x35\x20\x2d\ +\x30\x2e\x31\x2c\x30\x20\x2d\x30\x2e\x32\x32\x35\x2c\x30\x2e\x30\ +\x32\x35\x20\x2d\x30\x2e\x33\x32\x35\x2c\x30\x2e\x30\x35\x20\x43\ +\x20\x35\x2e\x37\x37\x35\x2c\x2d\x32\x2e\x34\x35\x20\x34\x2e\x35\ +\x37\x35\x2c\x2d\x31\x2e\x36\x35\x20\x33\x2e\x36\x32\x35\x2c\x2d\ +\x31\x2e\x30\x35\x20\x32\x2e\x36\x37\x35\x2c\x2d\x30\x2e\x34\x35\ +\x20\x31\x2e\x35\x2c\x30\x2e\x33\x32\x35\x20\x30\x2e\x39\x37\x35\ +\x2c\x30\x2e\x39\x35\x20\x30\x2e\x38\x2c\x31\x2e\x31\x35\x20\x30\ +\x2e\x37\x2c\x31\x2e\x34\x32\x35\x20\x30\x2e\x37\x2c\x31\x2e\x36\ +\x37\x35\x20\x63\x20\x30\x2c\x30\x2e\x36\x32\x35\x20\x30\x2e\x35\ +\x32\x35\x2c\x31\x2e\x30\x35\x20\x31\x2e\x30\x37\x35\x2c\x31\x2e\ +\x30\x35\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\x32\x2c\x2d\x30\x2e\ +\x30\x32\x35\x20\x30\x2e\x33\x2c\x2d\x30\x2e\x30\x35\x20\x43\x20\ +\x32\x2e\x38\x35\x2c\x32\x2e\x34\x35\x20\x34\x2e\x30\x35\x2c\x31\ +\x2e\x36\x35\x20\x35\x2c\x31\x2e\x30\x35\x20\x35\x2e\x39\x35\x2c\ +\x30\x2e\x34\x35\x20\x37\x2e\x31\x35\x2c\x2d\x30\x2e\x33\x32\x35\ +\x20\x37\x2e\x36\x37\x35\x2c\x2d\x30\x2e\x39\x35\x20\x37\x2e\x38\ +\x35\x2c\x2d\x31\x2e\x31\x35\x20\x37\x2e\x39\x35\x2c\x2d\x31\x2e\ +\x34\x32\x35\x20\x37\x2e\x39\x35\x2c\x2d\x31\x2e\x36\x37\x35\x20\ +\x7a\x20\x4d\x20\x36\x2e\x36\x37\x35\x2c\x2d\x33\x2e\x34\x20\x63\ +\x20\x31\x2e\x31\x2c\x30\x20\x31\x2e\x39\x37\x35\x2c\x30\x2e\x35\ +\x20\x31\x2e\x39\x37\x35\x2c\x31\x2e\x37\x20\x30\x2c\x30\x2e\x34\ +\x37\x35\x20\x2d\x30\x2e\x31\x35\x2c\x30\x2e\x39\x35\x20\x2d\x30\ +\x2e\x33\x2c\x31\x2e\x34\x32\x35\x20\x43\x20\x38\x2e\x30\x32\x35\ +\x2c\x30\x2e\x36\x35\x20\x37\x2e\x35\x35\x2c\x31\x2e\x35\x35\x20\ +\x36\x2e\x37\x32\x35\x2c\x32\x2e\x31\x20\x35\x2e\x33\x37\x35\x2c\ +\x33\x20\x33\x2e\x38\x35\x2c\x33\x2e\x34\x20\x31\x2e\x39\x37\x35\ +\x2c\x33\x2e\x34\x20\x30\x2e\x38\x37\x35\x2c\x33\x2e\x34\x20\x30\ +\x2c\x32\x2e\x39\x20\x30\x2c\x31\x2e\x37\x20\x30\x2c\x31\x2e\x32\ +\x32\x35\x20\x30\x2e\x31\x35\x2c\x30\x2e\x37\x35\x20\x30\x2e\x33\ +\x2c\x30\x2e\x32\x37\x35\x20\x30\x2e\x36\x32\x35\x2c\x2d\x30\x2e\ +\x36\x35\x20\x31\x2e\x30\x37\x35\x2c\x2d\x31\x2e\x35\x35\x20\x31\ +\x2e\x39\x2c\x2d\x32\x2e\x31\x20\x33\x2e\x32\x35\x2c\x2d\x33\x20\ +\x34\x2e\x38\x2c\x2d\x33\x2e\x34\x20\x36\x2e\x36\x37\x35\x2c\x2d\ +\x33\x2e\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x34\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ +\x00\x00\x09\x33\ \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\ +\x6e\x6f\x22\x3f\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\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\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x30\x38\x39\x22\x3e\x0a\ -\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\x30\x39\ -\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\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x30\x39\x35\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x2d\x35\x2e\x31\x30\x35\x39\x33\x32\x32\ -\x2c\x2d\x30\x2e\x37\x38\x37\x37\x31\x31\x38\x35\x20\x2d\x30\x2e\ -\x30\x32\x35\x2c\x31\x2e\x37\x32\x35\x20\x63\x20\x30\x2c\x30\x2e\ -\x31\x30\x30\x30\x30\x30\x30\x35\x20\x2d\x30\x2e\x30\x32\x35\x2c\ -\x30\x2e\x31\x37\x34\x39\x39\x39\x39\x35\x20\x2d\x30\x2e\x30\x32\ -\x35\x2c\x30\x2e\x32\x37\x34\x39\x39\x39\x39\x35\x20\x30\x2c\x30\ -\x2e\x35\x35\x20\x30\x2e\x30\x35\x2c\x31\x2e\x31\x20\x30\x2e\x31\ -\x2c\x31\x2e\x36\x35\x20\x31\x2e\x31\x35\x2c\x2d\x30\x2e\x39\x35\ -\x20\x32\x2e\x34\x2c\x2d\x31\x2e\x39\x39\x39\x39\x39\x39\x39\x35\ -\x20\x32\x2e\x34\x2c\x2d\x33\x2e\x34\x37\x34\x39\x39\x39\x39\x35\ -\x20\x30\x2c\x2d\x30\x2e\x38\x35\x30\x30\x30\x30\x30\x35\x20\x2d\ -\x30\x2e\x33\x35\x2c\x2d\x31\x2e\x37\x32\x35\x30\x30\x30\x30\x35\ -\x20\x2d\x31\x2e\x31\x2c\x2d\x31\x2e\x37\x32\x35\x30\x30\x30\x30\ -\x35\x20\x2d\x30\x2e\x37\x37\x35\x2c\x30\x20\x2d\x31\x2e\x33\x32\ -\x35\x2c\x30\x2e\x37\x32\x35\x20\x2d\x31\x2e\x33\x35\x2c\x31\x2e\ -\x35\x35\x30\x30\x30\x30\x30\x35\x20\x7a\x20\x6d\x20\x2d\x30\x2e\ -\x39\x37\x35\x2c\x34\x2e\x34\x39\x39\x39\x39\x39\x39\x35\x20\x2d\ -\x30\x2e\x32\x37\x35\x2c\x2d\x31\x34\x2e\x39\x37\x35\x30\x30\x30\ -\x31\x20\x63\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x34\ -\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\x2e\x36\x32\x35\x2c\x2d\x30\ -\x2e\x31\x37\x35\x20\x30\x2e\x32\x32\x35\x2c\x30\x20\x30\x2e\x34\ -\x32\x35\x2c\x30\x2e\x30\x37\x35\x20\x30\x2e\x36\x32\x35\x2c\x30\ -\x2e\x31\x37\x35\x20\x6c\x20\x2d\x30\x2e\x31\x35\x2c\x38\x2e\x37\ -\x32\x35\x30\x30\x30\x31\x20\x63\x20\x30\x2e\x36\x35\x2c\x2d\x30\ -\x2e\x34\x37\x35\x20\x31\x2e\x34\x2c\x2d\x30\x2e\x37\x35\x20\x32\ -\x2e\x32\x2c\x2d\x30\x2e\x37\x35\x20\x31\x2e\x33\x32\x35\x2c\x30\ -\x20\x32\x2e\x33\x32\x34\x39\x39\x39\x39\x38\x2c\x31\x2e\x31\x35\ -\x20\x32\x2e\x33\x32\x34\x39\x39\x39\x39\x38\x2c\x32\x2e\x35\x30\ -\x30\x30\x30\x30\x30\x35\x20\x30\x2c\x32\x2e\x30\x34\x39\x39\x39\ -\x39\x39\x35\x20\x2d\x32\x2e\x32\x34\x39\x39\x39\x39\x39\x38\x2c\ -\x32\x2e\x39\x34\x39\x39\x39\x39\x39\x35\x20\x2d\x33\x2e\x38\x32\ -\x34\x39\x39\x39\x39\x38\x2c\x34\x2e\x32\x32\x34\x39\x39\x39\x39\ -\x35\x20\x2d\x30\x2e\x33\x35\x2c\x30\x2e\x32\x37\x35\x20\x2d\x30\ -\x2e\x35\x35\x2c\x30\x2e\x38\x20\x2d\x31\x2c\x30\x2e\x38\x20\x2d\ -\x30\x2e\x33\x2c\x30\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x30\x2e\ -\x32\x32\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x35\x32\ -\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x30\x39\x31\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\ +\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ +\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ +\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ +\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x35\x32\x33\x30\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ +\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ +\x6e\x61\x6d\x65\x3d\x22\x6e\x6f\x74\x65\x68\x65\x61\x64\x73\x4c\ +\x6f\x6e\x67\x61\x2e\x73\x76\x67\x22\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\x32\x33\x38\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ +\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ +\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ +\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x35\x32\x33\x36\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\x0a\ +\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\ +\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\ +\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\ +\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x35\x32\x33\ +\x34\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\x7a\x6f\x6f\x6d\x3d\x22\x32\x31\x2e\ +\x33\x36\x30\x32\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x32\x31\x2e\x35\x30\x38\ +\x35\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\x36\x2e\x38\x32\x35\x35\x39\ +\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\x39\x32\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\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\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\x73\x76\x67\x35\ +\x32\x33\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\ +\x22\x6e\x6f\x74\x65\x68\x65\x61\x64\x73\x2e\x73\x4d\x32\x6e\x65\ +\x6f\x6d\x65\x6e\x73\x75\x72\x61\x6c\x22\x0a\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x6d\x20\x31\x2e\x32\x35\x33\x31\x38\x34\x31\x2c\x2d\ +\x30\x2e\x37\x37\x33\x20\x39\x2e\x38\x39\x39\x39\x39\x39\x39\x2c\ +\x30\x20\x63\x20\x30\x2e\x33\x2c\x30\x20\x30\x2e\x35\x35\x2c\x30\ +\x2e\x32\x32\x35\x30\x30\x30\x30\x33\x20\x30\x2e\x35\x35\x2c\x30\ +\x2e\x35\x32\x35\x30\x30\x30\x30\x33\x20\x6c\x20\x30\x2c\x30\x2e\ +\x35\x35\x20\x63\x20\x30\x2c\x30\x2e\x33\x20\x2d\x30\x2e\x32\x35\ +\x2c\x30\x2e\x35\x32\x35\x20\x2d\x30\x2e\x35\x35\x2c\x30\x2e\x35\ +\x32\x35\x20\x6c\x20\x2d\x39\x2e\x38\x39\x39\x39\x39\x39\x39\x2c\ +\x30\x20\x63\x20\x2d\x30\x2e\x32\x39\x39\x39\x39\x39\x39\x36\x2c\ +\x30\x20\x2d\x30\x2e\x35\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\x30\ +\x2e\x32\x32\x35\x20\x2d\x30\x2e\x35\x34\x39\x39\x39\x39\x39\x36\ +\x2c\x2d\x30\x2e\x35\x32\x35\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x35\ +\x35\x20\x63\x20\x30\x2c\x2d\x30\x2e\x33\x20\x30\x2e\x32\x35\x2c\ +\x2d\x30\x2e\x35\x32\x35\x30\x30\x30\x30\x33\x20\x30\x2e\x35\x34\ +\x39\x39\x39\x39\x39\x36\x2c\x2d\x30\x2e\x35\x32\x35\x30\x30\x30\ +\x30\x33\x20\x7a\x20\x6d\x20\x39\x2e\x38\x39\x39\x39\x39\x39\x39\ +\x2c\x2d\x32\x2e\x36\x20\x2d\x39\x2e\x38\x39\x39\x39\x39\x39\x39\ +\x2c\x30\x20\x63\x20\x2d\x30\x2e\x33\x34\x39\x39\x39\x39\x39\x36\ +\x2c\x30\x20\x2d\x30\x2e\x35\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\ +\x30\x2e\x34\x20\x2d\x30\x2e\x35\x34\x39\x39\x39\x39\x39\x36\x2c\ +\x2d\x30\x2e\x38\x20\x30\x2c\x2d\x30\x2e\x32\x35\x20\x2d\x30\x2e\ +\x31\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x2d\x30\x2e\x33\x37\ +\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x2d\x30\x2e\x32\x2c\x30\x20\ +\x2d\x30\x2e\x33\x37\x35\x2c\x30\x2e\x31\x32\x35\x20\x2d\x30\x2e\ +\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x6c\x20\x30\x2c\x38\x2e\ +\x34\x20\x63\x20\x30\x2c\x30\x2e\x32\x35\x20\x30\x2e\x31\x37\x35\ +\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\x33\x37\x35\x2c\x30\x2e\x33\ +\x37\x35\x20\x30\x2e\x32\x2c\x30\x20\x30\x2e\x33\x37\x35\x2c\x2d\ +\x30\x2e\x31\x32\x35\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x33\ +\x37\x35\x20\x30\x2c\x2d\x30\x2e\x34\x20\x30\x2e\x32\x2c\x2d\x30\ +\x2e\x38\x20\x30\x2e\x35\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\x30\ +\x2e\x38\x20\x6c\x20\x39\x2e\x38\x39\x39\x39\x39\x39\x39\x2c\x30\ +\x20\x63\x20\x30\x2e\x33\x35\x2c\x30\x20\x30\x2e\x35\x35\x2c\x30\ +\x2e\x34\x20\x30\x2e\x35\x35\x2c\x30\x2e\x38\x20\x30\x2c\x30\x2e\ +\x32\x35\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\ +\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\x32\x2c\x30\ +\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\x30\x2e\ +\x33\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x6c\x20\x30\x2c\x2d\ +\x38\x2e\x34\x20\x63\x20\x30\x2e\x31\x37\x35\x2c\x2d\x32\x2e\x30\ +\x37\x35\x20\x30\x2e\x34\x35\x2c\x2d\x34\x2e\x32\x20\x30\x2e\x34\ +\x35\x2c\x2d\x36\x2e\x32\x37\x35\x20\x30\x2c\x2d\x30\x2e\x33\x20\ +\x2d\x30\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\x2d\x30\ +\x2e\x34\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\x2d\x30\x2e\x32\x32\ +\x35\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\x30\x2e\x31\x32\x35\ +\x20\x2d\x30\x2e\x34\x35\x2c\x30\x2e\x34\x32\x35\x20\x6c\x20\x2d\ +\x30\x2e\x33\x2c\x36\x2e\x32\x35\x20\x30\x2c\x30\x2e\x30\x32\x35\ +\x20\x63\x20\x30\x2c\x30\x2e\x34\x20\x2d\x30\x2e\x32\x2c\x30\x2e\ +\x38\x20\x2d\x30\x2e\x35\x35\x2c\x30\x2e\x38\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x35\x32\x33\x32\ +\x22\x0a\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\x3c\x2f\x73\x76\x67\ \x3e\x0a\ \x00\x00\x0a\xfd\ \x3c\ @@ -1699,675 +1689,198 @@ qt_resource_data = b"\ \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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x06\x5a\ +\x00\x00\x06\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\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\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\ +\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\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ -\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ -\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ -\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x35\x30\x35\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\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\x73\x74\x4d\x61\x78\x69\x6d\x61\ -\x2e\x73\x76\x67\x22\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\x35\x31\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\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x35\x31\x31\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ +\x33\x33\x36\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\ +\x34\x20\x72\x39\x39\x33\x39\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\ +\x73\x74\x31\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\ +\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ \x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\ -\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ -\x64\x74\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x3d\x22\x31\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\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\x77\ +\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ +\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x31\x35\x34\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\x7a\x6f\x6f\x6d\x3d\x22\x34\x2e\x38\x30\x38\x33\x32\x36\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x78\x3d\x22\x31\x31\x31\x2e\x36\x34\x37\x35\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ +\x3d\x22\x39\x38\x38\x2e\x33\x38\x36\x31\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x78\x3d\x22\x31\x39\x32\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\x31\x30\x34\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x33\x35\x30\x39\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\x7a\x6f\x6f\x6d\x3d\x22\ -\x33\x30\x2e\x32\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x38\x2e\x33\x34\x36\ -\x39\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\x39\x2e\x32\x38\x32\x30\ -\x35\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\x30\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\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\ -\x35\x30\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\ -\x22\x72\x65\x73\x74\x73\x2e\x4d\x33\x6d\x65\x6e\x73\x75\x72\x61\ -\x6c\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x2e\x34\ -\x37\x35\x2c\x31\x32\x2e\x38\x34\x34\x32\x38\x20\x30\x2c\x2d\x31\ -\x38\x2e\x37\x35\x30\x30\x30\x30\x33\x20\x2d\x35\x2e\x34\x37\x35\ -\x2c\x2d\x30\x2e\x35\x20\x30\x2c\x31\x38\x2e\x37\x35\x30\x30\x30\ -\x30\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x61\x74\x68\x33\x35\x30\x37\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0a\xe8\ +\x79\x3d\x22\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\x33\x36\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x33\x33\x36\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ +\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ +\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ +\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ +\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ +\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ +\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x64\x65\x66\x73\x33\x33\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ +\x31\x30\x2e\x30\x30\x36\x38\x39\x2c\x30\x20\x48\x20\x31\x2e\x30\ +\x33\x31\x38\x39\x30\x33\x20\x63\x20\x2d\x30\x2e\x31\x2c\x30\x20\ +\x2d\x30\x2e\x31\x39\x39\x39\x39\x39\x39\x37\x2c\x2d\x30\x2e\x31\ +\x20\x2d\x30\x2e\x31\x39\x39\x39\x39\x39\x39\x37\x2c\x2d\x30\x2e\ +\x32\x20\x76\x20\x2d\x33\x2e\x35\x20\x63\x20\x30\x2c\x2d\x30\x2e\ +\x31\x20\x30\x2e\x31\x2c\x2d\x30\x2e\x32\x20\x30\x2e\x31\x39\x39\ +\x39\x39\x39\x39\x37\x2c\x2d\x30\x2e\x32\x20\x48\x20\x31\x30\x2e\ +\x30\x30\x36\x38\x39\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\ +\x32\x2c\x30\x2e\x31\x20\x30\x2e\x32\x2c\x30\x2e\x32\x20\x76\x20\ +\x33\x2e\x35\x20\x63\x20\x30\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x31\ +\x2c\x30\x2e\x32\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x32\x20\x7a\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\ +\x36\x33\x22\x0a\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\x3c\x2f\x73\ +\x76\x67\x3e\x0a\ +\x00\x00\x23\x15\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ \x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\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\ +\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\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ -\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ -\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ -\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x34\x33\x34\x30\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ -\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ -\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x31\x32\x38\x2e\x73\x76\ -\x67\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ +\x33\x30\x36\x39\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\ +\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x6e\x75\ +\x6d\x62\x65\x72\x73\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\ +\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\ +\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\ +\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\ +\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x32\x39\x39\x38\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\x7a\x6f\x6f\x6d\x3d\x22\x39\x2e\x36\x31\x36\x36\ +\x35\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x78\x3d\x22\x31\x34\x37\x2e\x31\x38\x30\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x79\x3d\x22\x39\x37\x34\x2e\x39\x39\x36\x36\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\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ +\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\x30\x36\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\x34\x33\x34\x38\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ -\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\ -\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ -\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\ -\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\ -\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\ -\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\ -\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\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\x64\x65\x66\ -\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x34\ -\x33\x34\x36\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\ -\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\ -\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\ -\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\ -\x31\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\ -\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\x77\x69\x6e\ -\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\ -\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x34\x33\x34\x34\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\ -\x7a\x6f\x6f\x6d\x3d\x22\x31\x35\x2e\x31\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x31\x36\x2e\x32\x36\x30\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\x36\ -\x2e\x37\x33\x36\x37\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\x33\x30\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\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\x73\ -\x76\x67\x34\x33\x34\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\ -\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x36\x2e\x36\x37\x37\x37\x35\x34\ -\x32\x2c\x32\x31\x2e\x35\x39\x37\x37\x37\x35\x20\x63\x20\x30\x2c\ -\x2d\x30\x2e\x36\x37\x35\x20\x2d\x30\x2e\x32\x2c\x2d\x31\x2e\x32\ -\x37\x35\x20\x2d\x30\x2e\x35\x2c\x2d\x31\x2e\x38\x20\x30\x2e\x31\ -\x37\x35\x2c\x2d\x30\x2e\x36\x37\x35\x20\x30\x2e\x33\x2c\x2d\x31\ -\x2e\x33\x37\x35\x20\x30\x2e\x33\x2c\x2d\x32\x2e\x30\x37\x35\x20\ -\x30\x2c\x2d\x30\x2e\x37\x35\x20\x2d\x30\x2e\x32\x2c\x2d\x31\x2e\ -\x34\x32\x35\x20\x2d\x30\x2e\x35\x2c\x2d\x32\x2e\x30\x32\x35\x20\ -\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x30\x2e\x33\x2c\ -\x2d\x31\x2e\x37\x20\x30\x2e\x33\x2c\x2d\x32\x2e\x35\x35\x20\x30\ -\x2c\x2d\x30\x2e\x39\x32\x35\x20\x2d\x30\x2e\x32\x35\x2c\x2d\x31\ -\x2e\x37\x35\x20\x2d\x30\x2e\x36\x35\x2c\x2d\x32\x2e\x35\x32\x35\ -\x20\x30\x2e\x30\x35\x2c\x2d\x30\x2e\x37\x39\x39\x39\x39\x39\x39\ -\x20\x30\x2e\x30\x37\x35\x2c\x2d\x31\x2e\x36\x32\x34\x39\x39\x39\ -\x39\x20\x30\x2e\x30\x37\x35\x2c\x2d\x32\x2e\x34\x32\x34\x39\x39\ -\x39\x39\x20\x30\x2c\x2d\x30\x2e\x39\x32\x35\x20\x2d\x30\x2e\x32\ -\x32\x35\x2c\x2d\x31\x2e\x37\x37\x34\x39\x39\x39\x37\x20\x2d\x30\ -\x2e\x35\x37\x35\x2c\x2d\x32\x2e\x35\x37\x34\x39\x39\x39\x37\x20\ -\x30\x2e\x30\x35\x2c\x2d\x30\x2e\x37\x37\x35\x20\x30\x2e\x30\x35\ -\x2c\x2d\x31\x2e\x35\x35\x20\x30\x2e\x30\x35\x2c\x2d\x32\x2e\x33\ -\x32\x35\x20\x30\x2c\x2d\x34\x2e\x37\x37\x35\x30\x30\x30\x32\x20\ -\x2d\x35\x2e\x32\x32\x34\x39\x39\x39\x39\x36\x2c\x2d\x37\x2e\x39\ -\x37\x35\x30\x30\x30\x32\x20\x2d\x35\x2e\x32\x32\x34\x39\x39\x39\ -\x39\x36\x2c\x2d\x31\x32\x2e\x37\x35\x30\x30\x30\x30\x32\x20\x6c\ -\x20\x30\x2c\x2d\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x33\x35\x2c\ -\x30\x20\x30\x2c\x33\x31\x2e\x32\x34\x39\x39\x39\x39\x38\x20\x30\ -\x2e\x33\x35\x2c\x30\x20\x30\x2c\x2d\x33\x2e\x37\x35\x20\x63\x20\ -\x32\x2e\x34\x39\x39\x39\x39\x39\x39\x36\x2c\x30\x2e\x33\x37\x35\ -\x20\x35\x2e\x37\x34\x39\x39\x39\x39\x39\x36\x2c\x31\x2e\x35\x20\ -\x35\x2e\x37\x34\x39\x39\x39\x39\x39\x36\x2c\x33\x2e\x37\x37\x35\ -\x20\x30\x2c\x30\x2e\x34\x32\x35\x20\x2d\x30\x2e\x31\x35\x2c\x30\ -\x2e\x38\x37\x35\x20\x2d\x30\x2e\x31\x35\x2c\x31\x2e\x33\x20\x30\ -\x2c\x30\x2e\x33\x20\x30\x2e\x32\x37\x35\x2c\x30\x2e\x35\x20\x30\ -\x2e\x35\x35\x2c\x30\x2e\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\x30\ -\x2e\x35\x37\x35\x2c\x2d\x31\x2e\x32\x20\x30\x2e\x35\x37\x35\x2c\ -\x2d\x31\x2e\x38\x20\x7a\x20\x4d\x20\x2d\x30\x2e\x30\x34\x37\x32\ -\x34\x35\x37\x36\x2c\x2d\x34\x2e\x34\x35\x32\x32\x32\x34\x37\x20\ -\x63\x20\x31\x2e\x38\x34\x39\x39\x39\x39\x39\x36\x2c\x32\x2e\x30\ -\x39\x39\x39\x39\x39\x39\x20\x34\x2e\x32\x37\x34\x39\x39\x39\x39\ -\x36\x2c\x34\x2e\x39\x37\x35\x30\x30\x30\x30\x38\x20\x34\x2e\x32\ -\x37\x34\x39\x39\x39\x39\x36\x2c\x37\x2e\x37\x35\x30\x30\x30\x30\ -\x31\x20\x30\x2c\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x30\x32\x35\ -\x2c\x30\x2e\x34\x37\x35\x20\x2d\x30\x2e\x30\x32\x35\x2c\x30\x2e\ -\x37\x20\x2d\x31\x2e\x37\x2c\x2d\x32\x2e\x35\x35\x20\x2d\x34\x2e\ -\x32\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\x34\x2e\x38\x32\x34\x39\ -\x39\x39\x39\x38\x20\x2d\x34\x2e\x32\x34\x39\x39\x39\x39\x39\x36\ -\x2c\x2d\x37\x2e\x39\x35\x30\x30\x30\x30\x31\x20\x6c\x20\x30\x2c\ -\x2d\x30\x2e\x35\x20\x7a\x20\x6d\x20\x30\x2c\x35\x2e\x35\x30\x30\ -\x30\x30\x30\x31\x20\x63\x20\x32\x2e\x30\x34\x39\x39\x39\x39\x39\ -\x36\x2c\x31\x2e\x38\x32\x35\x20\x34\x2e\x37\x37\x34\x39\x39\x39\ -\x39\x36\x2c\x34\x2e\x34\x32\x35\x20\x34\x2e\x37\x37\x34\x39\x39\ -\x39\x39\x36\x2c\x37\x2e\x31\x34\x39\x39\x39\x39\x37\x20\x6c\x20\ -\x30\x2c\x31\x20\x63\x20\x2d\x31\x2e\x38\x37\x35\x2c\x2d\x32\x2e\ -\x34\x32\x35\x20\x2d\x34\x2e\x37\x37\x34\x39\x39\x39\x39\x36\x2c\ -\x2d\x34\x2e\x34\x34\x39\x39\x39\x39\x37\x20\x2d\x34\x2e\x37\x37\ -\x34\x39\x39\x39\x39\x36\x2c\x2d\x37\x2e\x36\x32\x34\x39\x39\x39\ -\x37\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x35\x32\x35\x20\x7a\x20\x6d\ -\x20\x30\x2c\x35\x2e\x35\x32\x34\x39\x39\x39\x37\x20\x63\x20\x32\ -\x2e\x32\x39\x39\x39\x39\x39\x39\x36\x2c\x31\x2e\x35\x35\x20\x35\ -\x2e\x33\x34\x39\x39\x39\x39\x39\x36\x2c\x33\x2e\x38\x34\x39\x39\ -\x39\x39\x39\x20\x35\x2e\x33\x34\x39\x39\x39\x39\x39\x36\x2c\x36\ -\x2e\x35\x37\x34\x39\x39\x39\x39\x20\x30\x2c\x30\x2e\x34\x35\x20\ -\x2d\x30\x2e\x30\x32\x35\x2c\x30\x2e\x39\x20\x2d\x30\x2e\x31\x2c\ -\x31\x2e\x33\x35\x20\x2d\x31\x2e\x39\x2c\x2d\x32\x2e\x33\x37\x35\ -\x20\x2d\x35\x2e\x32\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\x34\x2e\ -\x31\x20\x2d\x35\x2e\x32\x34\x39\x39\x39\x39\x39\x36\x2c\x2d\x37\ -\x2e\x32\x39\x39\x39\x39\x39\x39\x20\x6c\x20\x30\x2c\x2d\x30\x2e\ -\x36\x32\x35\x20\x7a\x20\x6d\x20\x30\x2c\x35\x2e\x36\x32\x34\x39\ -\x39\x39\x39\x20\x63\x20\x32\x2e\x33\x39\x39\x39\x39\x39\x39\x36\ -\x2c\x31\x2e\x31\x32\x35\x20\x35\x2e\x35\x34\x39\x39\x39\x39\x39\ -\x36\x2c\x32\x2e\x39\x37\x35\x20\x35\x2e\x35\x34\x39\x39\x39\x39\ -\x39\x36\x2c\x35\x2e\x35\x32\x35\x20\x30\x2c\x30\x2e\x33\x37\x35\ -\x20\x2d\x30\x2e\x30\x35\x2c\x30\x2e\x37\x32\x35\x20\x2d\x30\x2e\ -\x31\x32\x35\x2c\x31\x2e\x31\x20\x2d\x31\x2e\x39\x35\x2c\x2d\x31\ -\x2e\x39\x32\x35\x20\x2d\x35\x2e\x34\x32\x34\x39\x39\x39\x39\x36\ -\x2c\x2d\x33\x2e\x30\x35\x20\x2d\x35\x2e\x34\x32\x34\x39\x39\x39\ -\x39\x36\x2c\x2d\x36\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x36\x32\x35\ -\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x34\x33\x34\x32\x22\x0a\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\ -\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x06\xf3\ -\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\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x32\x31\x22\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\x34\x32\ -\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ -\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ -\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ -\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ -\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ -\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ -\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\ -\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ -\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ -\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x32\x37\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x33\x2e\x32\x37\x35\x2c\x31\x39\x2e\x31\ -\x30\x37\x36\x32\x37\x20\x31\x2e\x38\x32\x35\x2c\x2d\x38\x2e\x32\ -\x32\x35\x20\x63\x20\x2d\x30\x2e\x39\x35\x2c\x30\x2e\x33\x32\x35\ -\x20\x2d\x31\x2e\x39\x32\x35\x2c\x30\x2e\x36\x32\x35\x20\x2d\x32\ -\x2e\x39\x32\x35\x2c\x30\x2e\x36\x32\x35\x20\x2d\x31\x2e\x31\x35\ -\x2c\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\ -\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x31\x2e\x39\x39\x39\x39\x39\x39\ -\x38\x20\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\x30\x2e\x38\x2c\x2d\ -\x31\x2e\x37\x37\x35\x20\x31\x2e\x38\x2c\x2d\x31\x2e\x37\x37\x35\ -\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\x2e\x32\x2c\x30\x2e\x34\x20\ -\x31\x2e\x34\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\ -\x2e\x31\x37\x35\x2c\x31\x2e\x34\x39\x39\x39\x39\x39\x38\x20\x30\ -\x2e\x39\x2c\x31\x2e\x34\x39\x39\x39\x39\x39\x38\x20\x30\x2e\x34\ -\x35\x2c\x30\x20\x31\x2e\x34\x35\x2c\x2d\x31\x2e\x33\x39\x39\x39\ -\x39\x39\x38\x20\x31\x2e\x35\x35\x2c\x2d\x31\x2e\x38\x37\x34\x39\ -\x39\x39\x38\x20\x6c\x20\x30\x2e\x38\x32\x35\x2c\x2d\x33\x2e\x37\ -\x20\x63\x20\x2d\x30\x2e\x39\x2c\x30\x2e\x33\x32\x35\x20\x2d\x31\ -\x2e\x38\x32\x35\x2c\x30\x2e\x36\x20\x2d\x32\x2e\x38\x2c\x30\x2e\ -\x36\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\x31\x37\x35\ -\x2c\x2d\x30\x2e\x38\x35\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x32\ -\x20\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\x30\x2e\x37\x37\x35\x2c\ -\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x37\x37\x35\x2c\x2d\x31\x2e\ -\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\x2e\x32\x32\x35\ -\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\x2c\x31\x20\x30\x2e\x32\ -\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x35\x2c\x31\x2e\x35\x20\x30\ -\x2e\x38\x37\x35\x2c\x31\x2e\x35\x20\x30\x2e\x34\x32\x35\x2c\x30\ -\x20\x31\x2e\x33\x35\x2c\x2d\x31\x2e\x33\x37\x35\x20\x31\x2e\x34\ -\x35\x2c\x2d\x31\x2e\x38\x32\x35\x20\x6c\x20\x30\x2e\x38\x35\x2c\ -\x2d\x33\x2e\x37\x32\x35\x20\x63\x20\x2d\x30\x2e\x38\x37\x35\x2c\ -\x30\x2e\x33\x20\x2d\x31\x2e\x37\x37\x35\x2c\x30\x2e\x35\x37\x34\ -\x39\x39\x39\x39\x36\x20\x2d\x32\x2e\x37\x2c\x30\x2e\x35\x37\x34\ -\x39\x39\x39\x39\x36\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\ -\x2e\x32\x2c\x2d\x30\x2e\x38\x34\x39\x39\x39\x39\x39\x36\x20\x2d\ -\x32\x2e\x32\x2c\x2d\x31\x2e\x39\x39\x39\x39\x39\x39\x39\x36\x20\ -\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\x30\x2e\x38\x2c\x2d\x31\x2e\ -\x37\x37\x35\x20\x31\x2e\x38\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\ -\x2e\x36\x35\x2c\x30\x20\x31\x2e\x32\x2c\x30\x2e\x34\x20\x31\x2e\ -\x34\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\ -\x37\x35\x2c\x31\x2e\x35\x20\x30\x2e\x39\x2c\x31\x2e\x35\x20\x30\ -\x2e\x34\x2c\x30\x20\x31\x2e\x32\x32\x35\x2c\x2d\x31\x2e\x33\x32\ -\x35\x20\x31\x2e\x33\x32\x35\x2c\x2d\x31\x2e\x37\x35\x20\x6c\x20\ -\x30\x2e\x38\x35\x2c\x2d\x33\x2e\x37\x37\x35\x20\x63\x20\x2d\x30\ -\x2e\x38\x35\x2c\x30\x2e\x33\x20\x2d\x31\x2e\x37\x2c\x30\x2e\x35\ -\x35\x20\x2d\x32\x2e\x36\x2c\x30\x2e\x35\x35\x20\x2d\x31\x2e\x31\ -\x35\x2c\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\ -\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\ -\x39\x37\x35\x30\x30\x30\x32\x20\x30\x2e\x37\x37\x35\x2c\x2d\x31\ -\x2e\x37\x37\x35\x30\x30\x30\x32\x20\x31\x2e\x37\x37\x35\x2c\x2d\ -\x31\x2e\x37\x37\x35\x30\x30\x30\x32\x20\x30\x2e\x36\x35\x2c\x30\ -\x20\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\ -\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x30\x30\x30\x30\x30\ -\x32\x20\x30\x2e\x31\x35\x2c\x31\x2e\x35\x30\x30\x30\x30\x30\x32\ -\x20\x30\x2e\x38\x37\x35\x2c\x31\x2e\x35\x30\x30\x30\x30\x30\x32\ -\x20\x30\x2e\x34\x2c\x30\x20\x31\x2e\x31\x2c\x2d\x31\x2e\x33\x37\ -\x35\x20\x31\x2e\x32\x35\x2c\x2d\x31\x2e\x37\x35\x30\x30\x30\x30\ -\x32\x20\x30\x2e\x31\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\x35\ -\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\x36\x2c\x30\x20\x6c\x20\ -\x2d\x35\x2e\x39\x35\x2c\x32\x39\x2e\x33\x37\x35\x20\x63\x20\x2d\ -\x30\x2e\x31\x37\x35\x2c\x30\x2e\x31\x35\x20\x2d\x30\x2e\x34\x2c\ -\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x36\x2c\x30\x2e\x32\x32\x35\ -\x20\x2d\x30\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x34\x2c\x2d\x30\x2e\ -\x30\x37\x35\x20\x2d\x30\x2e\x35\x37\x35\x2c\x2d\x30\x2e\x32\x32\ -\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x34\x32\x33\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\ -\x3e\x0a\ -\x00\x00\x04\xce\ -\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\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x31\x30\x39\x22\x3e\x0a\ -\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\x31\x31\ -\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\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x31\x31\x35\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x2d\x35\x2e\x30\x35\x36\x31\x31\x33\x31\ -\x2c\x2d\x38\x2e\x38\x38\x31\x34\x30\x35\x35\x20\x63\x20\x30\x2e\ -\x31\x37\x35\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x34\x2c\x2d\x30\x2e\ -\x31\x35\x20\x30\x2e\x36\x2c\x2d\x30\x2e\x31\x35\x20\x30\x2e\x32\ -\x2c\x30\x20\x30\x2e\x34\x2c\x30\x2e\x30\x35\x20\x30\x2e\x35\x37\ -\x35\x2c\x30\x2e\x31\x35\x20\x6c\x20\x2d\x30\x2e\x30\x35\x2c\x34\ -\x2e\x33\x37\x35\x20\x32\x2e\x37\x32\x35\x2c\x2d\x30\x2e\x34\x32\ -\x35\x20\x63\x20\x30\x2e\x30\x32\x35\x2c\x30\x20\x30\x2e\x30\x35\ -\x2c\x2d\x30\x2e\x30\x32\x35\x20\x30\x2e\x30\x37\x35\x2c\x2d\x30\ -\x2e\x30\x32\x35\x20\x30\x2e\x32\x32\x34\x39\x39\x39\x39\x38\x2c\ -\x30\x20\x30\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x30\x2e\x32\ -\x20\x30\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x30\x2e\x34\x32\ -\x35\x20\x6c\x20\x30\x2e\x31\x35\x2c\x31\x34\x2e\x34\x20\x63\x20\ -\x2d\x30\x2e\x31\x37\x35\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x33\x37\ -\x35\x2c\x30\x2e\x31\x35\x30\x30\x30\x30\x35\x20\x2d\x30\x2e\x35\ -\x37\x34\x39\x39\x39\x39\x38\x2c\x30\x2e\x31\x35\x30\x30\x30\x30\ -\x35\x20\x2d\x30\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x34\x2c\x2d\x30\ -\x2e\x30\x35\x20\x2d\x30\x2e\x35\x37\x35\x2c\x2d\x30\x2e\x31\x35\ -\x30\x30\x30\x30\x35\x20\x6c\x20\x30\x2e\x30\x35\x2c\x2d\x34\x2e\ -\x33\x37\x35\x20\x2d\x32\x2e\x37\x35\x2c\x30\x2e\x34\x32\x35\x20\ -\x63\x20\x2d\x30\x2e\x30\x32\x35\x2c\x30\x20\x2d\x30\x2e\x30\x32\ -\x35\x2c\x30\x2e\x30\x32\x35\x20\x2d\x30\x2e\x30\x35\x2c\x30\x2e\ -\x30\x32\x35\x20\x2d\x30\x2e\x32\x32\x35\x2c\x30\x20\x2d\x30\x2e\ -\x34\x32\x35\x2c\x2d\x30\x2e\x32\x20\x2d\x30\x2e\x34\x32\x35\x2c\ -\x2d\x30\x2e\x34\x32\x35\x20\x7a\x20\x6d\x20\x33\x2e\x34\x32\x35\ -\x2c\x31\x31\x2e\x38\x35\x20\x30\x2e\x30\x35\x2c\x2d\x35\x2e\x33\ -\x32\x35\x20\x2d\x32\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\ -\x2d\x30\x2e\x30\x37\x35\x2c\x35\x2e\x33\x32\x35\x20\x7a\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x31\x31\ -\x31\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x07\x1e\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x32\x39\x38\x33\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\ -\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x6e\x6f\ -\x74\x65\x68\x65\x61\x64\x73\x42\x6c\x61\x63\x6b\x2e\x73\x76\x67\ -\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\ -\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ -\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\ -\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\ -\x77\x36\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x35\ -\x2e\x31\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x78\x3d\x22\x33\x2e\x30\x35\x30\x32\x31\x31\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x79\x3d\x22\x39\x39\x33\x2e\x32\x37\x30\x30\x37\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\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\ -\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x32\x39\x38\ -\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\x39\x39\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x39\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x35\x2e\x33\x33\x35\x31\x36\x39\x34\x2c\x2d\x33\x2e\ -\x34\x20\x63\x20\x31\x2e\x33\x32\x35\x2c\x30\x20\x32\x2e\x36\x32\ -\x35\x2c\x30\x2e\x36\x35\x20\x32\x2e\x36\x32\x35\x2c\x32\x2e\x31\ -\x35\x20\x30\x2c\x31\x2e\x37\x37\x35\x20\x2d\x31\x2e\x34\x32\x35\ -\x2c\x33\x2e\x30\x35\x20\x2d\x32\x2e\x36\x2c\x33\x2e\x37\x35\x20\ -\x2d\x30\x2e\x39\x2c\x30\x2e\x35\x35\x20\x2d\x31\x2e\x39\x35\x2c\ -\x30\x2e\x39\x20\x2d\x33\x2c\x30\x2e\x39\x20\x2d\x31\x2e\x33\x32\ -\x34\x39\x39\x39\x39\x2c\x30\x20\x2d\x32\x2e\x36\x32\x34\x39\x39\ -\x39\x39\x31\x2c\x2d\x30\x2e\x36\x35\x20\x2d\x32\x2e\x36\x32\x34\ -\x39\x39\x39\x39\x31\x2c\x2d\x32\x2e\x31\x35\x20\x30\x2c\x2d\x31\ -\x2e\x37\x37\x35\x20\x31\x2e\x34\x35\x30\x30\x30\x30\x30\x31\x2c\ -\x2d\x33\x2e\x30\x35\x20\x32\x2e\x36\x32\x34\x39\x39\x39\x39\x31\ -\x2c\x2d\x33\x2e\x37\x35\x20\x30\x2e\x39\x2c\x2d\x30\x2e\x35\x35\ -\x20\x31\x2e\x39\x32\x35\x2c\x2d\x30\x2e\x39\x20\x32\x2e\x39\x37\ -\x35\x2c\x2d\x30\x2e\x39\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x38\x35\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x23\x15\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x33\x30\x36\x39\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\ -\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x6e\x75\ -\x6d\x62\x65\x72\x73\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\ -\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\ -\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\ -\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\ -\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x32\x39\x39\x38\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\x7a\x6f\x6f\x6d\x3d\x22\x39\x2e\x36\x31\x36\x36\ -\x35\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x78\x3d\x22\x31\x34\x37\x2e\x31\x38\x30\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x79\x3d\x22\x39\x37\x34\x2e\x39\x39\x36\x36\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\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ -\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\x30\x36\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\x33\x30\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ +\x61\x33\x30\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\ @@ -2799,288 +2312,198 @@ qt_resource_data = b"\ \x2e\x34\x37\x35\x2c\x30\x2e\x31\x37\x35\x20\x2d\x30\x2e\x39\x35\ \x30\x30\x31\x2c\x30\x2e\x33\x35\x20\x2d\x31\x2e\x34\x35\x30\x30\ \x31\x2c\x30\x2e\x33\x35\x20\x2d\x32\x2e\x34\x37\x34\x39\x39\x2c\ -\x30\x20\x2d\x34\x2e\x31\x35\x2c\x2d\x31\x2e\x31\x35\x20\x2d\x34\ -\x2e\x31\x35\x2c\x2d\x33\x2e\x34\x37\x35\x30\x30\x30\x30\x32\x20\ -\x30\x2c\x2d\x32\x2e\x33\x32\x34\x39\x39\x39\x38\x20\x31\x2e\x36\ -\x37\x35\x2c\x2d\x33\x2e\x34\x34\x39\x39\x39\x39\x38\x20\x34\x2e\ -\x31\x35\x2c\x2d\x33\x2e\x34\x34\x39\x39\x39\x39\x38\x20\x32\x2e\ -\x37\x37\x35\x30\x31\x2c\x30\x20\x34\x2e\x31\x37\x35\x2c\x33\x2e\ -\x31\x32\x34\x39\x39\x39\x38\x20\x34\x2e\x31\x37\x35\x2c\x36\x2e\ -\x32\x34\x39\x39\x39\x39\x38\x32\x20\x30\x2c\x33\x2e\x31\x39\x39\ -\x39\x39\x39\x39\x38\x20\x2d\x31\x2e\x37\x35\x2c\x36\x2e\x32\x34\ -\x39\x39\x39\x39\x39\x38\x20\x2d\x34\x2e\x36\x37\x35\x2c\x36\x2e\ -\x32\x34\x39\x39\x39\x39\x39\x38\x20\x2d\x31\x2e\x37\x32\x34\x39\ -\x39\x2c\x30\x20\x2d\x33\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x39\x35\ -\x20\x2d\x33\x2e\x33\x37\x35\x2c\x2d\x32\x2e\x35\x32\x35\x20\x30\ -\x2c\x2d\x30\x2e\x39\x20\x30\x2e\x37\x32\x35\x2c\x2d\x31\x2e\x36\ -\x32\x35\x20\x31\x2e\x36\x32\x35\x2c\x2d\x31\x2e\x36\x32\x35\x20\ -\x30\x2e\x39\x30\x30\x30\x31\x2c\x30\x20\x31\x2e\x36\x32\x35\x2c\ -\x30\x2e\x37\x32\x35\x20\x31\x2e\x36\x32\x35\x2c\x31\x2e\x36\x32\ -\x35\x20\x30\x2c\x30\x2e\x35\x37\x35\x20\x2d\x30\x2e\x39\x37\x34\ -\x39\x39\x2c\x30\x2e\x36\x35\x20\x2d\x30\x2e\x39\x37\x34\x39\x39\ -\x2c\x31\x2e\x32\x32\x35\x20\x30\x2c\x30\x2e\x35\x20\x30\x2e\x35\ -\x35\x2c\x30\x2e\x37\x37\x35\x20\x31\x2e\x30\x39\x39\x39\x39\x2c\ -\x30\x2e\x37\x37\x35\x20\x31\x2e\x37\x35\x2c\x30\x20\x31\x2e\x39\ -\x35\x30\x30\x31\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x39\x35\ -\x30\x30\x31\x2c\x2d\x33\x2e\x37\x37\x35\x20\x76\x20\x2d\x31\x2e\ -\x36\x32\x34\x39\x39\x39\x39\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6e\x69\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x34\x2e\x34\x37\x34\x39\x39\x39\x36\x2c\x2d\x35\x2e\x38\x39\x37\ -\x37\x38\x31\x34\x20\x63\x20\x2d\x31\x2e\x36\x35\x2c\x30\x20\x2d\ -\x31\x2e\x37\x35\x2c\x32\x2e\x35\x20\x2d\x31\x2e\x37\x35\x2c\x34\ -\x2e\x35\x37\x35\x20\x76\x20\x31\x2e\x30\x30\x30\x30\x30\x30\x30\ -\x32\x20\x31\x20\x63\x20\x30\x2c\x32\x2e\x30\x37\x34\x39\x39\x39\ -\x39\x38\x20\x30\x2e\x31\x2c\x34\x2e\x35\x37\x34\x39\x39\x39\x39\ -\x38\x20\x31\x2e\x37\x35\x2c\x34\x2e\x35\x37\x34\x39\x39\x39\x39\ -\x38\x20\x31\x2e\x36\x35\x2c\x30\x20\x31\x2e\x37\x37\x35\x2c\x2d\ -\x32\x2e\x35\x20\x31\x2e\x37\x37\x35\x2c\x2d\x34\x2e\x35\x37\x34\ -\x39\x39\x39\x39\x38\x20\x76\x20\x2d\x31\x20\x2d\x31\x2e\x30\x30\ -\x30\x30\x30\x30\x30\x32\x20\x63\x20\x30\x2c\x2d\x32\x2e\x30\x37\ -\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x2d\x34\x2e\x35\x37\x35\x20\ -\x2d\x31\x2e\x37\x37\x35\x2c\x2d\x34\x2e\x35\x37\x35\x20\x7a\x20\ -\x6d\x20\x30\x2c\x2d\x30\x2e\x36\x37\x35\x20\x63\x20\x32\x2e\x38\ -\x37\x35\x2c\x30\x20\x34\x2e\x35\x2c\x33\x2e\x30\x37\x35\x20\x34\ -\x2e\x35\x2c\x36\x2e\x32\x35\x30\x30\x30\x30\x30\x32\x20\x30\x2c\ -\x33\x2e\x31\x37\x34\x39\x39\x39\x39\x38\x20\x2d\x31\x2e\x36\x32\ -\x35\x2c\x36\x2e\x32\x34\x39\x39\x39\x39\x39\x38\x20\x2d\x34\x2e\ -\x35\x2c\x36\x2e\x32\x34\x39\x39\x39\x39\x39\x38\x20\x43\x20\x31\ -\x2e\x36\x2c\x35\x2e\x39\x32\x37\x32\x31\x38\x36\x20\x30\x2c\x32\ -\x2e\x38\x35\x32\x32\x31\x38\x36\x20\x30\x2c\x2d\x30\x2e\x33\x32\ -\x32\x37\x38\x31\x33\x38\x20\x30\x2c\x2d\x33\x2e\x34\x39\x37\x37\ -\x38\x31\x34\x20\x31\x2e\x36\x2c\x2d\x36\x2e\x35\x37\x32\x37\x38\ -\x31\x34\x20\x34\x2e\x34\x37\x34\x39\x39\x39\x36\x2c\x2d\x36\x2e\ -\x35\x37\x32\x37\x38\x31\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x7a\x65\x72\x6f\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\ -\x76\x67\x3e\x0a\ -\x00\x00\x07\x97\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x33\x33\x39\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\ -\x34\x20\x72\x39\x39\x33\x39\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\ -\x73\x74\x38\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\ -\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ -\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ -\x3d\x22\x31\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\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\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ -\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x31\x37\x32\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\x7a\x6f\x6f\x6d\x3d\x22\x32\x31\x2e\x33\x36\x30\x32\x38\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x78\x3d\x22\x32\x2e\x31\x38\x38\x38\x38\x38\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ -\x3d\x22\x31\x30\x30\x30\x2e\x32\x37\x34\x34\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x78\x3d\x22\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\x33\x39\x31\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x33\x33\x39\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ -\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ -\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ -\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ -\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ -\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ -\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x64\x65\x66\x73\x33\x33\x39\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x30\x20\x2d\x34\x2e\x31\x35\x2c\x2d\x31\x2e\x31\x35\x20\x2d\x34\ +\x2e\x31\x35\x2c\x2d\x33\x2e\x34\x37\x35\x30\x30\x30\x30\x32\x20\ +\x30\x2c\x2d\x32\x2e\x33\x32\x34\x39\x39\x39\x38\x20\x31\x2e\x36\ +\x37\x35\x2c\x2d\x33\x2e\x34\x34\x39\x39\x39\x39\x38\x20\x34\x2e\ +\x31\x35\x2c\x2d\x33\x2e\x34\x34\x39\x39\x39\x39\x38\x20\x32\x2e\ +\x37\x37\x35\x30\x31\x2c\x30\x20\x34\x2e\x31\x37\x35\x2c\x33\x2e\ +\x31\x32\x34\x39\x39\x39\x38\x20\x34\x2e\x31\x37\x35\x2c\x36\x2e\ +\x32\x34\x39\x39\x39\x39\x38\x32\x20\x30\x2c\x33\x2e\x31\x39\x39\ +\x39\x39\x39\x39\x38\x20\x2d\x31\x2e\x37\x35\x2c\x36\x2e\x32\x34\ +\x39\x39\x39\x39\x39\x38\x20\x2d\x34\x2e\x36\x37\x35\x2c\x36\x2e\ +\x32\x34\x39\x39\x39\x39\x39\x38\x20\x2d\x31\x2e\x37\x32\x34\x39\ +\x39\x2c\x30\x20\x2d\x33\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x39\x35\ +\x20\x2d\x33\x2e\x33\x37\x35\x2c\x2d\x32\x2e\x35\x32\x35\x20\x30\ +\x2c\x2d\x30\x2e\x39\x20\x30\x2e\x37\x32\x35\x2c\x2d\x31\x2e\x36\ +\x32\x35\x20\x31\x2e\x36\x32\x35\x2c\x2d\x31\x2e\x36\x32\x35\x20\ +\x30\x2e\x39\x30\x30\x30\x31\x2c\x30\x20\x31\x2e\x36\x32\x35\x2c\ +\x30\x2e\x37\x32\x35\x20\x31\x2e\x36\x32\x35\x2c\x31\x2e\x36\x32\ +\x35\x20\x30\x2c\x30\x2e\x35\x37\x35\x20\x2d\x30\x2e\x39\x37\x34\ +\x39\x39\x2c\x30\x2e\x36\x35\x20\x2d\x30\x2e\x39\x37\x34\x39\x39\ +\x2c\x31\x2e\x32\x32\x35\x20\x30\x2c\x30\x2e\x35\x20\x30\x2e\x35\ +\x35\x2c\x30\x2e\x37\x37\x35\x20\x31\x2e\x30\x39\x39\x39\x39\x2c\ +\x30\x2e\x37\x37\x35\x20\x31\x2e\x37\x35\x2c\x30\x20\x31\x2e\x39\ +\x35\x30\x30\x31\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x39\x35\ +\x30\x30\x31\x2c\x2d\x33\x2e\x37\x37\x35\x20\x76\x20\x2d\x31\x2e\ +\x36\x32\x34\x39\x39\x39\x39\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6e\x69\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\ \x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x32\x2e\x35\x35\x38\x36\x30\x36\x32\x2c\x35\x2e\x33\x39\x32\x39\ -\x30\x33\x35\x20\x32\x2e\x39\x2c\x2d\x38\x2e\x31\x37\x35\x20\x63\ -\x20\x2d\x30\x2e\x38\x37\x35\x2c\x30\x2e\x33\x20\x2d\x31\x2e\x37\ -\x35\x2c\x30\x2e\x35\x37\x35\x20\x2d\x32\x2e\x36\x37\x35\x2c\x30\ -\x2e\x35\x37\x35\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\ -\x31\x37\x34\x39\x39\x39\x39\x39\x2c\x2d\x30\x2e\x38\x35\x20\x2d\ -\x32\x2e\x31\x37\x34\x39\x39\x39\x39\x39\x2c\x2d\x32\x20\x30\x2c\ -\x2d\x30\x2e\x39\x37\x35\x20\x30\x2e\x37\x37\x34\x39\x39\x39\x39\ -\x39\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x37\x37\x34\x39\x39\ -\x39\x39\x39\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\ -\x30\x20\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\ -\x35\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\ -\x35\x2c\x31\x2e\x35\x20\x30\x2e\x38\x37\x35\x2c\x31\x2e\x35\x20\ -\x30\x2e\x34\x32\x35\x2c\x30\x20\x31\x2e\x34\x35\x2c\x2d\x31\x2e\ -\x33\x35\x20\x31\x2e\x36\x32\x35\x2c\x2d\x31\x2e\x37\x35\x20\x30\ -\x2e\x31\x32\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\x35\x2c\ -\x2d\x30\x2e\x32\x35\x20\x30\x2e\x36\x2c\x30\x20\x6c\x20\x2d\x33\ -\x2e\x31\x35\x2c\x31\x30\x2e\x36\x32\x35\x20\x63\x20\x2d\x30\x2e\ -\x31\x37\x35\x2c\x30\x2e\x31\x35\x20\x2d\x30\x2e\x34\x2c\x30\x2e\ -\x32\x32\x35\x20\x2d\x30\x2e\x36\x2c\x30\x2e\x32\x32\x35\x20\x2d\ -\x30\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\ -\x30\x37\x35\x20\x2d\x30\x2e\x36\x2c\x2d\x30\x2e\x32\x32\x35\x20\ -\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x33\x39\x33\x22\x0a\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\x3c\ -\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x06\x5b\ +\x34\x2e\x34\x37\x34\x39\x39\x39\x36\x2c\x2d\x35\x2e\x38\x39\x37\ +\x37\x38\x31\x34\x20\x63\x20\x2d\x31\x2e\x36\x35\x2c\x30\x20\x2d\ +\x31\x2e\x37\x35\x2c\x32\x2e\x35\x20\x2d\x31\x2e\x37\x35\x2c\x34\ +\x2e\x35\x37\x35\x20\x76\x20\x31\x2e\x30\x30\x30\x30\x30\x30\x30\ +\x32\x20\x31\x20\x63\x20\x30\x2c\x32\x2e\x30\x37\x34\x39\x39\x39\ +\x39\x38\x20\x30\x2e\x31\x2c\x34\x2e\x35\x37\x34\x39\x39\x39\x39\ +\x38\x20\x31\x2e\x37\x35\x2c\x34\x2e\x35\x37\x34\x39\x39\x39\x39\ +\x38\x20\x31\x2e\x36\x35\x2c\x30\x20\x31\x2e\x37\x37\x35\x2c\x2d\ +\x32\x2e\x35\x20\x31\x2e\x37\x37\x35\x2c\x2d\x34\x2e\x35\x37\x34\ +\x39\x39\x39\x39\x38\x20\x76\x20\x2d\x31\x20\x2d\x31\x2e\x30\x30\ +\x30\x30\x30\x30\x30\x32\x20\x63\x20\x30\x2c\x2d\x32\x2e\x30\x37\ +\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x2d\x34\x2e\x35\x37\x35\x20\ +\x2d\x31\x2e\x37\x37\x35\x2c\x2d\x34\x2e\x35\x37\x35\x20\x7a\x20\ +\x6d\x20\x30\x2c\x2d\x30\x2e\x36\x37\x35\x20\x63\x20\x32\x2e\x38\ +\x37\x35\x2c\x30\x20\x34\x2e\x35\x2c\x33\x2e\x30\x37\x35\x20\x34\ +\x2e\x35\x2c\x36\x2e\x32\x35\x30\x30\x30\x30\x30\x32\x20\x30\x2c\ +\x33\x2e\x31\x37\x34\x39\x39\x39\x39\x38\x20\x2d\x31\x2e\x36\x32\ +\x35\x2c\x36\x2e\x32\x34\x39\x39\x39\x39\x39\x38\x20\x2d\x34\x2e\ +\x35\x2c\x36\x2e\x32\x34\x39\x39\x39\x39\x39\x38\x20\x43\x20\x31\ +\x2e\x36\x2c\x35\x2e\x39\x32\x37\x32\x31\x38\x36\x20\x30\x2c\x32\ +\x2e\x38\x35\x32\x32\x31\x38\x36\x20\x30\x2c\x2d\x30\x2e\x33\x32\ +\x32\x37\x38\x31\x33\x38\x20\x30\x2c\x2d\x33\x2e\x34\x39\x37\x37\ +\x38\x31\x34\x20\x31\x2e\x36\x2c\x2d\x36\x2e\x35\x37\x32\x37\x38\ +\x31\x34\x20\x34\x2e\x34\x37\x34\x39\x39\x39\x36\x2c\x2d\x36\x2e\ +\x35\x37\x32\x37\x38\x31\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x7a\x65\x72\x6f\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\ +\x76\x67\x3e\x0a\ +\x00\x00\x04\xce\ \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\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\ +\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\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ -\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ -\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ -\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x34\x35\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\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\x73\x74\x42\x72\x65\x76\x69\x73\ -\x2e\x73\x76\x67\x22\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\x34\x35\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\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x35\x31\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\ -\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\ -\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ -\x64\x74\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x33\x34\x34\x39\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\x7a\x6f\x6f\x6d\x3d\x22\ -\x32\x31\x2e\x33\x36\x30\x32\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x36\x2e\x31\ -\x31\x32\x38\x35\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\x35\x2e\x33\x35\ -\x35\x33\x39\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\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\x63\x75\x72\ -\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x73\x76\x67\x33\ -\x34\x34\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\ -\x22\x72\x65\x73\x74\x73\x2e\x4d\x31\x6d\x65\x6e\x73\x75\x72\x61\ -\x6c\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x2e\x34\ -\x37\x35\x2c\x36\x2e\x36\x38\x36\x39\x37\x30\x34\x20\x30\x2c\x2d\ -\x36\x2e\x32\x35\x30\x30\x30\x30\x30\x34\x20\x2d\x35\x2e\x34\x37\ -\x35\x2c\x2d\x30\x2e\x35\x20\x30\x2c\x36\x2e\x32\x35\x30\x30\x30\ -\x30\x30\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x34\x34\x37\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\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\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x31\x30\x39\x22\x3e\x0a\ +\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\x31\x31\ +\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\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x31\x31\x35\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x2d\x35\x2e\x30\x35\x36\x31\x31\x33\x31\ +\x2c\x2d\x38\x2e\x38\x38\x31\x34\x30\x35\x35\x20\x63\x20\x30\x2e\ +\x31\x37\x35\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x34\x2c\x2d\x30\x2e\ +\x31\x35\x20\x30\x2e\x36\x2c\x2d\x30\x2e\x31\x35\x20\x30\x2e\x32\ +\x2c\x30\x20\x30\x2e\x34\x2c\x30\x2e\x30\x35\x20\x30\x2e\x35\x37\ +\x35\x2c\x30\x2e\x31\x35\x20\x6c\x20\x2d\x30\x2e\x30\x35\x2c\x34\ +\x2e\x33\x37\x35\x20\x32\x2e\x37\x32\x35\x2c\x2d\x30\x2e\x34\x32\ +\x35\x20\x63\x20\x30\x2e\x30\x32\x35\x2c\x30\x20\x30\x2e\x30\x35\ +\x2c\x2d\x30\x2e\x30\x32\x35\x20\x30\x2e\x30\x37\x35\x2c\x2d\x30\ +\x2e\x30\x32\x35\x20\x30\x2e\x32\x32\x34\x39\x39\x39\x39\x38\x2c\ +\x30\x20\x30\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x30\x2e\x32\ +\x20\x30\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x30\x2e\x34\x32\ +\x35\x20\x6c\x20\x30\x2e\x31\x35\x2c\x31\x34\x2e\x34\x20\x63\x20\ +\x2d\x30\x2e\x31\x37\x35\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x33\x37\ +\x35\x2c\x30\x2e\x31\x35\x30\x30\x30\x30\x35\x20\x2d\x30\x2e\x35\ +\x37\x34\x39\x39\x39\x39\x38\x2c\x30\x2e\x31\x35\x30\x30\x30\x30\ +\x35\x20\x2d\x30\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x34\x2c\x2d\x30\ +\x2e\x30\x35\x20\x2d\x30\x2e\x35\x37\x35\x2c\x2d\x30\x2e\x31\x35\ +\x30\x30\x30\x30\x35\x20\x6c\x20\x30\x2e\x30\x35\x2c\x2d\x34\x2e\ +\x33\x37\x35\x20\x2d\x32\x2e\x37\x35\x2c\x30\x2e\x34\x32\x35\x20\ +\x63\x20\x2d\x30\x2e\x30\x32\x35\x2c\x30\x20\x2d\x30\x2e\x30\x32\ +\x35\x2c\x30\x2e\x30\x32\x35\x20\x2d\x30\x2e\x30\x35\x2c\x30\x2e\ +\x30\x32\x35\x20\x2d\x30\x2e\x32\x32\x35\x2c\x30\x20\x2d\x30\x2e\ +\x34\x32\x35\x2c\x2d\x30\x2e\x32\x20\x2d\x30\x2e\x34\x32\x35\x2c\ +\x2d\x30\x2e\x34\x32\x35\x20\x7a\x20\x6d\x20\x33\x2e\x34\x32\x35\ +\x2c\x31\x31\x2e\x38\x35\x20\x30\x2e\x30\x35\x2c\x2d\x35\x2e\x33\ +\x32\x35\x20\x2d\x32\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\ +\x2d\x30\x2e\x30\x37\x35\x2c\x35\x2e\x33\x32\x35\x20\x7a\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x31\x31\ +\x31\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x03\x8f\ +\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\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x35\x30\x34\x22\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\x35\x31\ +\x32\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ +\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ +\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ +\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ +\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\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\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x35\x31\x30\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x4d\x20\x2d\x31\x2e\x32\x35\x2c\x30\x20\x43\x20\ +\x2d\x31\x2e\x32\x35\x2c\x30\x2e\x37\x20\x2d\x30\x2e\x37\x2c\x31\ +\x2e\x32\x35\x20\x30\x2c\x31\x2e\x32\x35\x20\x30\x2e\x37\x2c\x31\ +\x2e\x32\x35\x20\x31\x2e\x32\x35\x2c\x30\x2e\x37\x20\x31\x2e\x32\ +\x35\x2c\x30\x20\x31\x2e\x32\x35\x2c\x2d\x30\x2e\x37\x20\x30\x2e\ +\x37\x2c\x2d\x31\x2e\x32\x35\x20\x30\x2c\x2d\x31\x2e\x32\x35\x20\ +\x2d\x30\x2e\x37\x2c\x2d\x31\x2e\x32\x35\x20\x2d\x31\x2e\x32\x35\ +\x2c\x2d\x30\x2e\x37\x20\x2d\x31\x2e\x32\x35\x2c\x30\x20\x7a\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x35\ +\x30\x36\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ \x00\x00\x10\x85\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -3348,7 +2771,7 @@ qt_resource_data = b"\ \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\x3c\x2f\x73\ \x76\x67\x3e\x0a\ -\x00\x00\x03\x8f\ +\x00\x00\x07\x1e\ \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\ @@ -3372,42 +2795,220 @@ qt_resource_data = b"\ \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\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x35\x30\x34\x22\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\x35\x31\ -\x32\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ -\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ -\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ -\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ -\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ -\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ -\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\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\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x35\x31\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x4d\x20\x2d\x31\x2e\x32\x35\x2c\x30\x20\x43\x20\ -\x2d\x31\x2e\x32\x35\x2c\x30\x2e\x37\x20\x2d\x30\x2e\x37\x2c\x31\ -\x2e\x32\x35\x20\x30\x2c\x31\x2e\x32\x35\x20\x30\x2e\x37\x2c\x31\ -\x2e\x32\x35\x20\x31\x2e\x32\x35\x2c\x30\x2e\x37\x20\x31\x2e\x32\ -\x35\x2c\x30\x20\x31\x2e\x32\x35\x2c\x2d\x30\x2e\x37\x20\x30\x2e\ -\x37\x2c\x2d\x31\x2e\x32\x35\x20\x30\x2c\x2d\x31\x2e\x32\x35\x20\ -\x2d\x30\x2e\x37\x2c\x2d\x31\x2e\x32\x35\x20\x2d\x31\x2e\x32\x35\ -\x2c\x2d\x30\x2e\x37\x20\x2d\x31\x2e\x32\x35\x2c\x30\x20\x7a\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x35\ -\x30\x36\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x08\x7d\ +\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\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ +\x32\x39\x38\x33\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\ +\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x6e\x6f\ +\x74\x65\x68\x65\x61\x64\x73\x42\x6c\x61\x63\x6b\x2e\x73\x76\x67\ +\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\ +\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\ +\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\ +\x77\x36\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x35\ +\x2e\x31\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x78\x3d\x22\x33\x2e\x30\x35\x30\x32\x31\x31\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x79\x3d\x22\x39\x39\x33\x2e\x32\x37\x30\x30\x37\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\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\ +\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x32\x39\x38\ +\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\x39\x39\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x39\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x6d\x20\x35\x2e\x33\x33\x35\x31\x36\x39\x34\x2c\x2d\x33\x2e\ +\x34\x20\x63\x20\x31\x2e\x33\x32\x35\x2c\x30\x20\x32\x2e\x36\x32\ +\x35\x2c\x30\x2e\x36\x35\x20\x32\x2e\x36\x32\x35\x2c\x32\x2e\x31\ +\x35\x20\x30\x2c\x31\x2e\x37\x37\x35\x20\x2d\x31\x2e\x34\x32\x35\ +\x2c\x33\x2e\x30\x35\x20\x2d\x32\x2e\x36\x2c\x33\x2e\x37\x35\x20\ +\x2d\x30\x2e\x39\x2c\x30\x2e\x35\x35\x20\x2d\x31\x2e\x39\x35\x2c\ +\x30\x2e\x39\x20\x2d\x33\x2c\x30\x2e\x39\x20\x2d\x31\x2e\x33\x32\ +\x34\x39\x39\x39\x39\x2c\x30\x20\x2d\x32\x2e\x36\x32\x34\x39\x39\ +\x39\x39\x31\x2c\x2d\x30\x2e\x36\x35\x20\x2d\x32\x2e\x36\x32\x34\ +\x39\x39\x39\x39\x31\x2c\x2d\x32\x2e\x31\x35\x20\x30\x2c\x2d\x31\ +\x2e\x37\x37\x35\x20\x31\x2e\x34\x35\x30\x30\x30\x30\x30\x31\x2c\ +\x2d\x33\x2e\x30\x35\x20\x32\x2e\x36\x32\x34\x39\x39\x39\x39\x31\ +\x2c\x2d\x33\x2e\x37\x35\x20\x30\x2e\x39\x2c\x2d\x30\x2e\x35\x35\ +\x20\x31\x2e\x39\x32\x35\x2c\x2d\x30\x2e\x39\x20\x32\x2e\x39\x37\ +\x35\x2c\x2d\x30\x2e\x39\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x38\x35\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x07\x6b\ +\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\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ +\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\ +\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\ +\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\ +\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\ +\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ +\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\ +\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ +\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ +\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ +\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x33\x33\x36\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ +\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ +\x6e\x61\x6d\x65\x3d\x22\x63\x6c\x65\x66\x50\x65\x72\x63\x75\x73\ +\x73\x69\x6f\x6e\x2e\x73\x76\x67\x22\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\x33\x34\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x33\x33\x34\x32\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\x0a\ +\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\ +\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\ +\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\ +\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x32\x30\x39\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x33\x34\ +\x30\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x2e\x33\ +\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x78\x3d\x22\x35\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x36\x31\x39\ +\x2e\x31\x33\x36\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x33\x30\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\ +\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x73\ +\x76\x67\x33\x33\x33\x36\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\ +\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\ +\x6d\x65\x3d\x22\x63\x6c\x65\x66\x73\x2e\x70\x65\x72\x63\x75\x73\ +\x73\x69\x6f\x6e\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ +\x38\x2e\x31\x2c\x2d\x36\x2e\x32\x35\x20\x2d\x32\x2e\x34\x32\x35\ +\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x2c\x30\x20\x2d\x30\x2e\x31\ +\x37\x35\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x31\x37\x35\x2c\x30\x2e\ +\x32\x20\x6c\x20\x30\x2c\x31\x32\x2e\x31\x20\x63\x20\x30\x2c\x30\ +\x2e\x31\x20\x30\x2e\x30\x37\x35\x2c\x30\x2e\x32\x20\x30\x2e\x31\ +\x37\x35\x2c\x30\x2e\x32\x20\x6c\x20\x32\x2e\x34\x32\x35\x2c\x30\ +\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\x32\x2c\x2d\x30\x2e\ +\x31\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x6c\x20\x30\x2c\x2d\ +\x31\x32\x2e\x31\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\x20\x2d\x30\ +\x2e\x31\x2c\x2d\x30\x2e\x32\x20\x2d\x30\x2e\x32\x2c\x2d\x30\x2e\ +\x32\x20\x7a\x20\x6d\x20\x2d\x35\x2e\x35\x2c\x30\x20\x2d\x32\x2e\ +\x34\x32\x35\x2c\x30\x20\x43\x20\x30\x2e\x30\x37\x35\x2c\x2d\x36\ +\x2e\x32\x35\x20\x30\x2c\x2d\x36\x2e\x31\x35\x20\x30\x2c\x2d\x36\ +\x2e\x30\x35\x20\x6c\x20\x30\x2c\x31\x32\x2e\x31\x20\x63\x20\x30\ +\x2c\x30\x2e\x31\x20\x30\x2e\x30\x37\x35\x2c\x30\x2e\x32\x20\x30\ +\x2e\x31\x37\x35\x2c\x30\x2e\x32\x20\x6c\x20\x32\x2e\x34\x32\x35\ +\x2c\x30\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\x32\x2c\x2d\ +\x30\x2e\x31\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x6c\x20\x30\ +\x2c\x2d\x31\x32\x2e\x31\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\x20\ +\x2d\x30\x2e\x31\x2c\x2d\x30\x2e\x32\x20\x2d\x30\x2e\x32\x2c\x2d\ +\x30\x2e\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x33\x33\x33\x38\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\x96\ \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\ @@ -3439,380 +3040,371 @@ qt_resource_data = b"\ \x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ \x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ \x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x35\x32\x31\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x30\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ -\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ -\x6e\x61\x6d\x65\x3d\x22\x6e\x6f\x74\x65\x68\x65\x61\x64\x73\x42\ -\x72\x65\x76\x69\x73\x2e\x73\x76\x67\x22\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\x32\x31\x38\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\ -\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\ -\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\ -\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ -\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\ -\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\ -\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x64\x65\x66\x73\x35\x32\x31\x36\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\ -\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\ -\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\ -\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x35\x32\ -\x31\x34\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x2e\ -\x38\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x78\x3d\x22\x32\x30\x32\x2e\x34\x38\x35\x30\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x79\x3d\x22\x37\x38\x32\x2e\x32\x36\x33\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\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\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\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\x73\x76\x67\x35\x32\x31\x30\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\ -\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x6e\x6f\x74\x65\x68\ -\x65\x61\x64\x73\x2e\x73\x4d\x31\x6e\x65\x6f\x6d\x65\x6e\x73\x75\ -\x72\x61\x6c\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\ -\x2e\x33\x2c\x2d\x30\x2e\x38\x20\x39\x2e\x39\x2c\x30\x20\x63\x20\ -\x30\x2e\x33\x2c\x30\x20\x30\x2e\x35\x35\x2c\x30\x2e\x32\x32\x35\ -\x20\x30\x2e\x35\x35\x2c\x30\x2e\x35\x32\x35\x20\x6c\x20\x30\x2c\ -\x30\x2e\x35\x35\x20\x63\x20\x30\x2c\x30\x2e\x33\x20\x2d\x30\x2e\ -\x32\x35\x2c\x30\x2e\x35\x32\x35\x20\x2d\x30\x2e\x35\x35\x2c\x30\ -\x2e\x35\x32\x35\x20\x6c\x20\x2d\x39\x2e\x39\x2c\x30\x20\x43\x20\ -\x31\x2c\x30\x2e\x38\x20\x30\x2e\x37\x35\x2c\x30\x2e\x35\x37\x35\ -\x20\x30\x2e\x37\x35\x2c\x30\x2e\x32\x37\x35\x20\x6c\x20\x30\x2c\ -\x2d\x30\x2e\x35\x35\x20\x43\x20\x30\x2e\x37\x35\x2c\x2d\x30\x2e\ -\x35\x37\x35\x20\x31\x2c\x2d\x30\x2e\x38\x20\x31\x2e\x33\x2c\x2d\ -\x30\x2e\x38\x20\x5a\x20\x6d\x20\x39\x2e\x39\x2c\x2d\x32\x2e\x36\ -\x20\x2d\x39\x2e\x39\x2c\x30\x20\x43\x20\x30\x2e\x39\x35\x2c\x2d\ -\x33\x2e\x34\x20\x30\x2e\x37\x35\x2c\x2d\x33\x2e\x38\x20\x30\x2e\ -\x37\x35\x2c\x2d\x34\x2e\x32\x20\x30\x2e\x37\x35\x2c\x2d\x34\x2e\ -\x34\x35\x20\x30\x2e\x35\x37\x35\x2c\x2d\x34\x2e\x35\x37\x35\x20\ -\x30\x2e\x33\x37\x35\x2c\x2d\x34\x2e\x35\x37\x35\x20\x30\x2e\x31\ -\x37\x35\x2c\x2d\x34\x2e\x35\x37\x35\x20\x30\x2c\x2d\x34\x2e\x34\ -\x35\x20\x30\x2c\x2d\x34\x2e\x32\x20\x4c\x20\x30\x2c\x34\x2e\x32\ -\x20\x43\x20\x30\x2c\x34\x2e\x34\x35\x20\x30\x2e\x31\x37\x35\x2c\ -\x34\x2e\x35\x37\x35\x20\x30\x2e\x33\x37\x35\x2c\x34\x2e\x35\x37\ -\x35\x20\x30\x2e\x35\x37\x35\x2c\x34\x2e\x35\x37\x35\x20\x30\x2e\ -\x37\x35\x2c\x34\x2e\x34\x35\x20\x30\x2e\x37\x35\x2c\x34\x2e\x32\ -\x20\x30\x2e\x37\x35\x2c\x33\x2e\x38\x20\x30\x2e\x39\x35\x2c\x33\ -\x2e\x34\x20\x31\x2e\x33\x2c\x33\x2e\x34\x20\x6c\x20\x39\x2e\x39\ -\x2c\x30\x20\x63\x20\x30\x2e\x33\x35\x2c\x30\x20\x30\x2e\x35\x35\ -\x2c\x30\x2e\x34\x20\x30\x2e\x35\x35\x2c\x30\x2e\x38\x20\x30\x2c\ -\x30\x2e\x32\x35\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x33\x37\x35\ -\x20\x30\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\x32\ -\x2c\x30\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\ -\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x6c\x20\x30\ -\x2c\x2d\x38\x2e\x34\x20\x63\x20\x30\x2c\x2d\x30\x2e\x32\x35\x20\ -\x2d\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x2d\x30\ -\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x2d\x30\x2e\x32\ -\x2c\x30\x20\x2d\x30\x2e\x33\x37\x35\x2c\x30\x2e\x31\x32\x35\x20\ -\x2d\x30\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2c\x30\ -\x2e\x34\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x38\x20\x2d\x30\x2e\x35\ -\x35\x2c\x30\x2e\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x35\x32\x31\x32\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x10\x83\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x33\x31\x37\x39\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\x39\x31\x20\ -\x72\x31\x33\x37\x32\x35\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x63\x6c\x65\ -\x66\x54\x72\x65\x62\x6c\x65\x5f\x38\x2e\x73\x76\x67\x22\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\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\x22\ -\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\ -\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\ -\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x32\x30\x39\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x32\x39\ -\x38\x39\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\x7a\x6f\x6f\x6d\x3d\x22\x34\x2e\ -\x38\x30\x38\x33\x32\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x33\x32\x2e\x36\x34\ -\x32\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x79\x3d\x22\x39\x36\x35\x2e\x31\x38\x38\x30\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\x31\x39\x32\x30\x22\x0a\ +\x6f\x6e\x3d\x22\x30\x2e\x34\x38\x2e\x34\x20\x72\x39\x39\x33\x39\ +\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\x73\x74\x73\x2e\x34\x2e\x73\ +\x76\x67\x22\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\x34\x30\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ +\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ +\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ +\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ +\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ +\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\ +\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\ +\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ +\x33\x34\x30\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ +\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\ +\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\ +\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\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\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\x77\x69\ -\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x33\x30\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\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\x73\x76\x67\x33\ -\x31\x37\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\x33\x31\x38\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\ -\x65\x66\x73\x33\x31\x38\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x36\x2e\ -\x33\x35\x2c\x2d\x37\x2e\x35\x30\x37\x30\x38\x32\x34\x20\x43\x20\ -\x35\x2e\x35\x2c\x2d\x31\x30\x2e\x34\x35\x37\x30\x38\x32\x20\x35\ -\x2c\x2d\x31\x33\x2e\x32\x38\x32\x30\x38\x32\x20\x35\x2c\x2d\x31\ -\x36\x2e\x39\x38\x32\x30\x38\x32\x20\x63\x20\x30\x2c\x2d\x33\x20\ -\x31\x2e\x34\x2c\x2d\x35\x2e\x38\x20\x33\x2e\x37\x37\x35\x2c\x2d\ -\x37\x2e\x36\x32\x35\x20\x30\x2e\x30\x35\x2c\x2d\x30\x2e\x30\x35\ -\x20\x30\x2e\x31\x32\x35\x2c\x2d\x30\x2e\x30\x37\x35\x20\x30\x2e\ -\x32\x2c\x2d\x30\x2e\x30\x37\x35\x20\x30\x2e\x30\x37\x35\x2c\x30\ -\x20\x30\x2e\x31\x35\x2c\x30\x2e\x30\x32\x35\x20\x30\x2e\x32\x2c\ -\x30\x2e\x30\x37\x35\x20\x31\x2e\x39\x2c\x32\x2e\x32\x35\x20\x33\ -\x2e\x35\x37\x35\x2c\x36\x2e\x36\x20\x33\x2e\x35\x37\x35\x2c\x39\ -\x2e\x36\x32\x35\x20\x30\x2c\x33\x2e\x37\x35\x20\x2d\x32\x2e\x32\ -\x35\x2c\x36\x2e\x36\x37\x34\x39\x39\x39\x36\x20\x2d\x34\x2e\x37\ -\x35\x2c\x39\x2e\x34\x39\x39\x39\x39\x39\x36\x20\x30\x2e\x35\x35\ -\x2c\x31\x2e\x38\x32\x34\x39\x39\x39\x39\x20\x31\x2e\x30\x35\x2c\ -\x33\x2e\x36\x37\x34\x39\x39\x39\x39\x20\x31\x2e\x35\x32\x35\x2c\ -\x35\x2e\x35\x32\x34\x39\x39\x39\x39\x20\x68\x20\x30\x2e\x31\x35\ -\x20\x63\x20\x33\x2e\x38\x35\x2c\x30\x20\x36\x2e\x33\x35\x2c\x33\ -\x2e\x31\x37\x35\x20\x36\x2e\x33\x35\x2c\x36\x2e\x34\x37\x35\x30\ -\x30\x30\x31\x20\x30\x2c\x31\x2e\x38\x39\x39\x39\x39\x39\x39\x20\ -\x2d\x30\x2e\x38\x32\x35\x2c\x33\x2e\x38\x32\x35\x30\x30\x30\x34\ -\x20\x2d\x32\x2e\x36\x37\x35\x2c\x35\x2e\x32\x30\x30\x30\x30\x30\ -\x34\x20\x2d\x30\x2e\x36\x32\x35\x2c\x30\x2e\x34\x37\x35\x20\x2d\ -\x31\x2e\x33\x32\x35\x2c\x30\x2e\x38\x20\x2d\x32\x2e\x30\x37\x35\ -\x2c\x31\x20\x30\x2c\x30\x2e\x33\x32\x35\x20\x30\x2e\x30\x32\x35\ -\x2c\x30\x2e\x36\x37\x35\x20\x30\x2e\x30\x32\x35\x2c\x31\x20\x30\ -\x2c\x31\x2e\x31\x35\x20\x2d\x30\x2e\x30\x32\x35\x2c\x32\x2e\x33\ -\x20\x2d\x30\x2e\x31\x2c\x33\x2e\x34\x35\x20\x2d\x30\x2e\x31\x37\ -\x35\x2c\x33\x2e\x30\x32\x35\x20\x2d\x32\x2e\x33\x35\x2c\x35\x2e\ -\x36\x37\x35\x20\x2d\x35\x2e\x33\x35\x2c\x35\x2e\x36\x37\x35\x20\ -\x2d\x32\x2e\x37\x37\x35\x2c\x30\x20\x2d\x35\x2e\x30\x35\x2c\x2d\ -\x32\x2e\x33\x20\x2d\x35\x2e\x30\x35\x2c\x2d\x35\x2e\x31\x32\x35\ -\x20\x30\x2c\x2d\x31\x2e\x34\x35\x20\x31\x2e\x33\x35\x2c\x2d\x32\ -\x2e\x36\x20\x32\x2e\x38\x32\x35\x2c\x2d\x32\x2e\x36\x20\x31\x2e\ -\x33\x35\x2c\x30\x20\x32\x2e\x33\x37\x35\x2c\x31\x2e\x32\x20\x32\ -\x2e\x33\x37\x35\x2c\x32\x2e\x36\x20\x30\x2c\x31\x2e\x33\x20\x2d\ -\x31\x2e\x30\x37\x35\x2c\x32\x2e\x33\x37\x35\x20\x2d\x32\x2e\x33\ -\x37\x35\x2c\x32\x2e\x33\x37\x35\x20\x2d\x30\x2e\x33\x32\x35\x2c\ -\x30\x20\x2d\x30\x2e\x36\x37\x35\x2c\x2d\x30\x2e\x31\x20\x2d\x30\ -\x2e\x39\x37\x35\x2c\x2d\x30\x2e\x32\x35\x20\x30\x2e\x36\x35\x2c\ -\x31\x2e\x31\x37\x35\x20\x31\x2e\x38\x35\x2c\x32\x20\x33\x2e\x32\ -\x35\x2c\x32\x20\x32\x2e\x34\x37\x35\x2c\x30\x20\x34\x2e\x31\x35\ -\x2c\x2d\x32\x2e\x33\x20\x34\x2e\x33\x2c\x2d\x34\x2e\x38\x32\x35\ -\x20\x30\x2e\x30\x37\x35\x2c\x2d\x31\x2e\x31\x20\x30\x2e\x31\x2c\ -\x2d\x32\x2e\x32\x32\x35\x20\x30\x2e\x31\x2c\x2d\x33\x2e\x33\x32\ -\x35\x20\x76\x20\x2d\x30\x2e\x37\x37\x35\x20\x63\x20\x2d\x30\x2e\ -\x36\x35\x2c\x30\x2e\x31\x20\x2d\x31\x2e\x33\x2c\x30\x2e\x31\x35\ -\x20\x2d\x31\x2e\x39\x37\x35\x2c\x30\x2e\x31\x35\x20\x2d\x34\x2e\ -\x37\x2c\x30\x20\x2d\x38\x2e\x33\x32\x35\x2c\x2d\x34\x2e\x32\x37\ -\x35\x30\x30\x30\x35\x20\x2d\x38\x2e\x33\x32\x35\x2c\x2d\x39\x2e\ -\x33\x30\x30\x30\x30\x30\x35\x20\x30\x2c\x2d\x34\x2e\x35\x32\x35\ -\x20\x33\x2e\x33\x35\x2c\x2d\x37\x2e\x38\x34\x39\x39\x39\x39\x39\ -\x20\x36\x2e\x33\x35\x2c\x2d\x31\x31\x2e\x32\x37\x34\x39\x39\x39\ -\x39\x20\x7a\x20\x6d\x20\x34\x2e\x39\x2c\x31\x39\x2e\x32\x35\x30\ -\x30\x30\x30\x34\x20\x63\x20\x31\x2e\x38\x32\x35\x2c\x2d\x30\x2e\ -\x35\x35\x20\x33\x2e\x31\x2c\x2d\x32\x2e\x34\x32\x35\x30\x30\x30\ -\x35\x20\x33\x2e\x31\x2c\x2d\x34\x2e\x32\x35\x30\x30\x30\x30\x35\ -\x20\x30\x2c\x2d\x32\x2e\x32\x34\x39\x39\x39\x39\x39\x20\x2d\x31\ -\x2e\x36\x2c\x2d\x34\x2e\x34\x35\x20\x2d\x34\x2e\x32\x2c\x2d\x34\ -\x2e\x38\x20\x30\x2e\x35\x37\x35\x2c\x32\x2e\x37\x35\x30\x30\x30\ -\x30\x31\x20\x31\x2c\x35\x2e\x39\x37\x35\x20\x31\x2e\x31\x2c\x39\ -\x2e\x30\x35\x30\x30\x30\x30\x35\x20\x7a\x20\x6d\x20\x2d\x32\x2e\ -\x38\x35\x2c\x30\x2e\x33\x32\x35\x20\x63\x20\x30\x2e\x36\x32\x35\ -\x2c\x30\x20\x31\x2e\x32\x35\x2c\x2d\x30\x2e\x30\x32\x35\x20\x31\ -\x2e\x38\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\x43\x20\x31\x30\ -\x2e\x31\x37\x35\x2c\x38\x2e\x37\x36\x37\x39\x31\x37\x35\x20\x39\ -\x2e\x37\x2c\x35\x2e\x34\x36\x37\x39\x31\x37\x36\x20\x39\x2e\x31\ -\x2c\x32\x2e\x36\x34\x32\x39\x31\x37\x35\x20\x63\x20\x2d\x32\x2e\ -\x31\x37\x35\x2c\x30\x2e\x31\x32\x35\x20\x2d\x33\x2e\x34\x2c\x31\ -\x2e\x35\x35\x20\x2d\x33\x2e\x34\x2c\x33\x2e\x31\x30\x30\x30\x30\ -\x30\x31\x20\x30\x2c\x31\x2e\x31\x32\x35\x20\x30\x2e\x36\x35\x2c\ -\x32\x2e\x32\x39\x39\x39\x39\x39\x39\x20\x32\x2e\x30\x37\x35\x2c\ -\x33\x2e\x31\x32\x34\x39\x39\x39\x39\x20\x30\x2e\x31\x2c\x30\x2e\ -\x31\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x32\x32\x35\x20\x30\x2e\ -\x31\x37\x35\x2c\x30\x2e\x33\x35\x20\x30\x2c\x30\x2e\x32\x37\x35\ -\x20\x2d\x30\x2e\x32\x32\x35\x2c\x30\x2e\x35\x32\x35\x20\x2d\x30\ -\x2e\x35\x2c\x30\x2e\x35\x32\x35\x20\x2d\x30\x2e\x30\x37\x35\x2c\ -\x30\x20\x2d\x30\x2e\x31\x35\x2c\x2d\x30\x2e\x30\x32\x35\x20\x2d\ -\x30\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x30\x35\x20\x2d\x32\x2c\x2d\ -\x31\x2e\x30\x37\x35\x20\x2d\x32\x2e\x39\x2c\x2d\x32\x2e\x38\x34\ -\x39\x39\x39\x39\x39\x20\x2d\x32\x2e\x39\x2c\x2d\x34\x2e\x36\x20\ -\x30\x2c\x2d\x32\x2e\x32\x35\x20\x31\x2e\x35\x32\x35\x2c\x2d\x34\ -\x2e\x34\x35\x20\x34\x2e\x32\x2c\x2d\x34\x2e\x39\x35\x20\x2d\x30\ -\x2e\x34\x2c\x2d\x31\x2e\x36\x20\x2d\x30\x2e\x38\x37\x35\x2c\x2d\ -\x33\x2e\x31\x37\x35\x20\x2d\x31\x2e\x33\x32\x35\x2c\x2d\x34\x2e\ -\x37\x34\x39\x39\x39\x39\x39\x20\x2d\x32\x2e\x37\x35\x2c\x33\x2e\ -\x30\x39\x39\x39\x39\x39\x39\x20\x2d\x35\x2e\x35\x2c\x36\x2e\x32\ -\x32\x34\x39\x39\x39\x39\x20\x2d\x35\x2e\x35\x2c\x31\x30\x2e\x33\ -\x35\x20\x30\x2c\x33\x2e\x34\x34\x39\x39\x39\x39\x39\x20\x33\x2e\ -\x32\x37\x35\x2c\x36\x2e\x33\x32\x35\x30\x30\x30\x34\x20\x36\x2e\ -\x37\x2c\x36\x2e\x33\x32\x35\x30\x30\x30\x34\x20\x7a\x20\x6d\x20\ -\x31\x2e\x37\x37\x35\x2c\x2d\x33\x33\x2e\x32\x20\x63\x20\x2d\x32\ -\x2e\x35\x2c\x31\x2e\x33\x37\x35\x20\x2d\x34\x2e\x30\x35\x2c\x33\ -\x2e\x39\x37\x35\x20\x2d\x34\x2e\x30\x35\x2c\x36\x2e\x38\x32\x35\ -\x20\x30\x2c\x32\x2e\x32\x35\x20\x30\x2e\x34\x37\x35\x2c\x34\x2e\ -\x30\x35\x20\x31\x2c\x35\x2e\x38\x39\x39\x39\x39\x39\x36\x20\x32\ -\x2e\x31\x35\x2c\x2d\x32\x2e\x35\x34\x39\x39\x39\x39\x36\x20\x33\ -\x2e\x39\x35\x2c\x2d\x35\x2e\x32\x32\x34\x39\x39\x39\x36\x20\x33\ -\x2e\x39\x35\x2c\x2d\x38\x2e\x35\x34\x39\x39\x39\x39\x36\x20\x30\ -\x2c\x2d\x31\x2e\x38\x32\x35\x20\x2d\x30\x2e\x32\x2c\x2d\x32\x2e\ -\x35\x37\x35\x20\x2d\x30\x2e\x39\x2c\x2d\x34\x2e\x31\x37\x35\x20\ -\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x31\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\ -\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\ -\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x65\x69\x67\x68\x74\x22\x0a\x20\ -\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x39\x2e\x38\x34\x35\x34\x36\ -\x31\x31\x2c\x32\x38\x2e\x33\x31\x36\x37\x32\x20\x63\x20\x30\x2e\ -\x35\x34\x36\x32\x37\x30\x39\x2c\x2d\x30\x2e\x35\x36\x35\x31\x30\ -\x38\x20\x31\x2e\x30\x31\x37\x31\x39\x33\x39\x2c\x2d\x31\x2e\x31\ -\x36\x37\x38\x38\x39\x20\x31\x2e\x30\x31\x37\x31\x39\x33\x39\x2c\ -\x2d\x31\x2e\x39\x34\x30\x32\x30\x33\x20\x30\x2c\x2d\x31\x2e\x30\ -\x35\x34\x38\x36\x38\x20\x2d\x31\x2e\x30\x39\x32\x35\x34\x31\x39\ -\x2c\x2d\x31\x2e\x37\x31\x34\x31\x36\x31\x20\x2d\x32\x2e\x32\x34\ -\x31\x35\x39\x34\x31\x2c\x2d\x31\x2e\x37\x31\x34\x31\x36\x31\x20\ -\x2d\x30\x2e\x39\x32\x33\x30\x31\x2c\x30\x20\x2d\x31\x2e\x34\x36\ -\x39\x32\x38\x31\x2c\x30\x2e\x37\x31\x35\x38\x30\x34\x20\x2d\x31\ -\x2e\x34\x36\x39\x32\x38\x31\x2c\x31\x2e\x34\x31\x32\x37\x37\x20\ -\x30\x2c\x30\x2e\x34\x31\x34\x34\x31\x32\x20\x30\x2e\x31\x36\x39\ -\x35\x33\x33\x2c\x30\x2e\x37\x39\x31\x31\x35\x31\x20\x30\x2e\x35\ -\x38\x33\x39\x34\x35\x2c\x31\x2e\x30\x33\x36\x30\x33\x31\x20\x7a\ -\x20\x6d\x20\x30\x2e\x35\x30\x38\x35\x39\x36\x39\x2c\x30\x2e\x33\ -\x30\x31\x33\x39\x31\x20\x63\x20\x31\x2e\x30\x33\x36\x30\x33\x31\ -\x2c\x30\x2e\x36\x30\x32\x37\x38\x32\x20\x31\x2e\x36\x30\x31\x31\ -\x33\x38\x2c\x31\x2e\x34\x36\x39\x32\x38\x20\x31\x2e\x36\x30\x31\ -\x31\x33\x38\x2c\x32\x2e\x33\x39\x32\x32\x39\x20\x30\x2c\x31\x2e\ -\x33\x35\x36\x32\x35\x38\x20\x2d\x31\x2e\x32\x32\x34\x34\x2c\x32\ -\x2e\x36\x37\x34\x38\x34\x33\x20\x2d\x33\x2e\x34\x38\x34\x38\x33\ -\x31\x31\x2c\x32\x2e\x36\x37\x34\x38\x34\x33\x20\x2d\x31\x2e\x37\ -\x33\x32\x39\x39\x37\x2c\x30\x20\x2d\x33\x2e\x33\x37\x31\x38\x31\ -\x2c\x2d\x30\x2e\x39\x39\x38\x33\x35\x37\x20\x2d\x33\x2e\x33\x37\ -\x31\x38\x31\x2c\x2d\x32\x2e\x35\x39\x39\x34\x39\x36\x20\x30\x2c\ -\x2d\x30\x2e\x39\x36\x30\x36\x38\x33\x20\x30\x2e\x37\x35\x33\x34\ -\x37\x37\x2c\x2d\x31\x2e\x36\x31\x39\x39\x37\x35\x20\x31\x2e\x34\ -\x36\x39\x32\x38\x31\x2c\x2d\x32\x2e\x32\x37\x39\x32\x36\x38\x20\ -\x2d\x30\x2e\x38\x32\x38\x38\x32\x35\x2c\x2d\x30\x2e\x35\x32\x37\ -\x34\x33\x34\x20\x2d\x31\x2e\x32\x30\x35\x35\x36\x34\x2c\x2d\x31\ -\x2e\x32\x39\x39\x37\x34\x38\x20\x2d\x31\x2e\x32\x30\x35\x35\x36\ -\x34\x2c\x2d\x32\x2e\x30\x35\x33\x32\x32\x35\x20\x30\x2c\x2d\x31\ -\x2e\x32\x36\x32\x30\x37\x34\x20\x31\x2e\x31\x33\x30\x32\x31\x36\ -\x2c\x2d\x32\x2e\x34\x38\x36\x34\x37\x34\x20\x33\x2e\x32\x35\x38\ -\x37\x38\x39\x2c\x2d\x32\x2e\x34\x38\x36\x34\x37\x34\x20\x31\x2e\ -\x35\x30\x36\x39\x35\x34\x31\x2c\x30\x20\x32\x2e\x39\x37\x36\x32\ -\x33\x34\x31\x2c\x30\x2e\x37\x35\x33\x34\x37\x37\x20\x32\x2e\x39\ -\x37\x36\x32\x33\x34\x31\x2c\x32\x2e\x31\x30\x39\x37\x33\x36\x20\ -\x30\x2c\x30\x2e\x39\x30\x34\x31\x37\x32\x20\x2d\x30\x2e\x36\x30\ -\x32\x37\x38\x32\x2c\x31\x2e\x35\x38\x32\x33\x30\x31\x20\x2d\x31\ -\x2e\x32\x34\x33\x32\x33\x37\x2c\x32\x2e\x32\x34\x31\x35\x39\x34\ -\x20\x7a\x20\x6d\x20\x2d\x33\x2e\x32\x35\x38\x37\x38\x38\x31\x2c\ -\x30\x2e\x34\x38\x39\x37\x36\x20\x63\x20\x2d\x30\x2e\x36\x34\x30\ -\x34\x35\x36\x2c\x30\x2e\x35\x36\x35\x31\x30\x38\x20\x2d\x31\x2e\ -\x32\x34\x33\x32\x33\x38\x2c\x31\x2e\x31\x34\x39\x30\x35\x33\x20\ -\x2d\x31\x2e\x32\x34\x33\x32\x33\x38\x2c\x31\x2e\x39\x37\x37\x38\ -\x37\x37\x20\x30\x2c\x31\x2e\x32\x39\x39\x37\x34\x38\x20\x31\x2e\ -\x32\x34\x33\x32\x33\x38\x2c\x32\x2e\x32\x30\x33\x39\x32\x31\x20\ -\x32\x2e\x36\x31\x38\x33\x33\x33\x2c\x32\x2e\x32\x30\x33\x39\x32\ -\x31\x20\x31\x2e\x30\x33\x36\x30\x33\x31\x32\x2c\x30\x20\x31\x2e\ -\x36\x35\x37\x36\x35\x30\x31\x2c\x2d\x30\x2e\x38\x30\x39\x39\x38\ -\x38\x20\x31\x2e\x36\x35\x37\x36\x35\x30\x31\x2c\x2d\x31\x2e\x36\ -\x30\x31\x31\x33\x39\x20\x30\x2c\x2d\x30\x2e\x34\x37\x30\x39\x32\ -\x33\x20\x2d\x30\x2e\x32\x30\x37\x32\x30\x35\x39\x2c\x2d\x30\x2e\ -\x39\x36\x30\x36\x38\x33\x20\x2d\x30\x2e\x36\x39\x36\x39\x36\x36\ -\x39\x2c\x2d\x31\x2e\x32\x34\x33\x32\x33\x37\x20\x7a\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x32\x38\ +\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\x36\ \x22\x0a\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\x3c\x2f\x73\x76\x67\ -\x3e\x0a\ -\x00\x00\x0d\x98\ +\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x31\ +\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x33\x34\x30\x35\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\x7a\x6f\x6f\x6d\x3d\x22\x32\x2e\x36\x37\x30\x30\x33\x35\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x78\x3d\x22\x31\x30\x39\x2e\x33\x38\x30\x34\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\ +\x22\x31\x30\x31\x34\x2e\x30\x37\x34\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x78\x3d\x22\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ +\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\x34\x30\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\ +\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x72\x65\x73\x74\x73\ +\x2e\x34\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x2e\ +\x34\x2c\x38\x2e\x37\x36\x33\x36\x34\x35\x36\x20\x34\x2e\x39\x2c\ +\x30\x2e\x35\x38\x38\x36\x34\x35\x35\x39\x20\x43\x20\x34\x2e\x30\ +\x32\x35\x2c\x30\x2e\x39\x31\x33\x36\x34\x35\x35\x20\x33\x2e\x31\ +\x2c\x31\x2e\x31\x36\x33\x36\x34\x35\x35\x20\x32\x2e\x31\x37\x35\ +\x2c\x31\x2e\x31\x36\x33\x36\x34\x35\x35\x20\x31\x2e\x30\x32\x35\ +\x2c\x31\x2e\x31\x36\x33\x36\x34\x35\x35\x20\x30\x2c\x30\x2e\x33\ +\x31\x33\x36\x34\x35\x35\x39\x20\x30\x2c\x2d\x30\x2e\x38\x33\x36\ +\x33\x35\x34\x34\x31\x20\x30\x2c\x2d\x31\x2e\x38\x31\x31\x33\x35\ +\x34\x34\x20\x30\x2e\x37\x37\x35\x2c\x2d\x32\x2e\x36\x31\x31\x33\ +\x35\x34\x34\x20\x31\x2e\x37\x37\x35\x2c\x2d\x32\x2e\x36\x31\x31\ +\x33\x35\x34\x34\x20\x63\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\x2e\ +\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\x2c\x31\x20\ +\x30\x2e\x32\x35\x2c\x30\x2e\x36\x39\x39\x39\x39\x39\x39\x39\x20\ +\x30\x2e\x31\x35\x2c\x31\x2e\x34\x39\x39\x39\x39\x39\x39\x39\x20\ +\x30\x2e\x38\x37\x35\x2c\x31\x2e\x34\x39\x39\x39\x39\x39\x39\x39\ +\x20\x30\x2e\x34\x32\x35\x2c\x30\x20\x31\x2e\x34\x32\x35\x2c\x2d\ +\x31\x2e\x33\x32\x34\x39\x39\x39\x39\x39\x20\x31\x2e\x35\x35\x2c\ +\x2d\x31\x2e\x37\x34\x39\x39\x39\x39\x39\x39\x20\x6c\x20\x31\x2e\ +\x31\x37\x35\x2c\x2d\x33\x2e\x38\x20\x63\x20\x2d\x30\x2e\x38\x35\ +\x2c\x30\x2e\x33\x20\x2d\x31\x2e\x37\x35\x2c\x30\x2e\x35\x37\x35\ +\x20\x2d\x32\x2e\x36\x37\x35\x2c\x30\x2e\x35\x37\x35\x20\x2d\x31\ +\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\ +\x38\x35\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\ +\x30\x2e\x39\x37\x35\x20\x30\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\ +\x37\x35\x30\x30\x30\x31\x20\x31\x2e\x37\x37\x35\x2c\x2d\x31\x2e\ +\x37\x37\x35\x30\x30\x30\x31\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\ +\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\x2c\x31\ +\x2e\x30\x30\x30\x30\x30\x30\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\ +\x37\x20\x30\x2e\x31\x35\x2c\x31\x2e\x35\x20\x30\x2e\x38\x37\x35\ +\x2c\x31\x2e\x35\x20\x30\x2e\x34\x32\x35\x2c\x30\x20\x31\x2e\x33\ +\x32\x35\x2c\x2d\x31\x2e\x33\x35\x20\x31\x2e\x35\x2c\x2d\x31\x2e\ +\x37\x35\x20\x30\x2e\x31\x2c\x2d\x30\x2e\x32\x37\x35\x30\x30\x30\ +\x31\x20\x30\x2e\x35\x2c\x2d\x30\x2e\x32\x37\x35\x30\x30\x30\x31\ +\x20\x30\x2e\x36\x2c\x30\x20\x6c\x20\x2d\x34\x2e\x35\x35\x2c\x31\ +\x36\x2e\x38\x37\x35\x20\x63\x20\x2d\x30\x2e\x31\x37\x35\x2c\x30\ +\x2e\x31\x35\x20\x2d\x30\x2e\x33\x37\x35\x2c\x30\x2e\x32\x32\x35\ +\x20\x2d\x30\x2e\x35\x37\x35\x2c\x30\x2e\x32\x32\x35\x20\x2d\x30\ +\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x30\ +\x37\x35\x20\x2d\x30\x2e\x36\x2c\x2d\x30\x2e\x32\x32\x35\x20\x7a\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ +\x34\x30\x33\x22\x0a\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\x3c\x2f\ +\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\x96\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ +\x33\x34\x36\x30\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\x39\x32\x2e\ +\x34\x20\x35\x64\x61\x36\x38\x39\x63\x33\x31\x33\x2c\x20\x32\x30\ +\x31\x39\x2d\x30\x31\x2d\x31\x34\x22\x0a\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x6e\ +\x6f\x74\x65\x68\x65\x61\x64\x73\x57\x68\x6f\x6c\x65\x2e\x73\x76\ +\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\ +\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\ +\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\ +\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x32\x33\x30\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\x31\x30\x34\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\ +\x65\x77\x36\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\x7a\x6f\x6f\x6d\x3d\x22\x36\ +\x30\x2e\x34\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x34\x2e\x33\x39\x37\x32\x38\ +\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x79\x3d\x22\x31\x30\x30\x31\x2e\x33\x35\x35\x37\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\x35\x33\x36\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\x30\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\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\x63\x75\ +\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x73\x76\x67\ +\x33\x34\x36\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\x34\x36\x38\x22\x3e\x0a\x20\x20\x20\ +\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\ +\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\ +\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\ +\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ +\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\ +\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x36\x36\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x34\x2e\x31\x32\x39\x34\x38\x30\x33\x2c\ +\x2d\x32\x2e\x38\x35\x20\x63\x20\x2d\x30\x2e\x39\x35\x30\x32\x36\ +\x33\x35\x2c\x30\x20\x2d\x31\x2e\x33\x34\x39\x33\x37\x34\x33\x2c\ +\x31\x2e\x30\x35\x20\x2d\x31\x2e\x33\x34\x39\x33\x37\x34\x33\x2c\ +\x32\x2e\x32\x20\x30\x2c\x31\x2e\x39\x37\x35\x20\x31\x2e\x31\x34\ +\x30\x33\x31\x36\x2c\x33\x2e\x35\x20\x32\x2e\x36\x34\x31\x37\x33\ +\x33\x31\x2c\x33\x2e\x35\x20\x30\x2e\x39\x35\x30\x32\x36\x34\x34\ +\x2c\x30\x20\x31\x2e\x33\x33\x30\x33\x36\x39\x34\x2c\x2d\x31\x2e\ +\x30\x35\x20\x31\x2e\x33\x33\x30\x33\x36\x39\x34\x2c\x2d\x32\x2e\ +\x32\x20\x30\x2c\x2d\x31\x2e\x39\x37\x35\x20\x2d\x31\x2e\x31\x32\ +\x31\x33\x31\x31\x31\x2c\x2d\x33\x2e\x35\x20\x2d\x32\x2e\x36\x32\ +\x32\x37\x32\x38\x32\x2c\x2d\x33\x2e\x35\x20\x7a\x20\x4d\x20\x39\ +\x2e\x35\x32\x36\x39\x37\x39\x33\x2c\x30\x20\x63\x20\x30\x2c\x31\ +\x2e\x30\x37\x35\x20\x2d\x30\x2e\x36\x34\x36\x31\x37\x39\x37\x2c\ +\x31\x2e\x38\x37\x35\x20\x2d\x31\x2e\x33\x38\x37\x33\x38\x35\x38\ +\x2c\x32\x2e\x34\x20\x2d\x31\x2e\x30\x32\x36\x32\x38\x34\x39\x2c\ +\x30\x2e\x37\x32\x35\x20\x2d\x32\x2e\x32\x30\x34\x36\x31\x31\x36\ +\x2c\x31\x20\x2d\x33\x2e\x33\x36\x33\x39\x33\x33\x34\x2c\x31\x20\ +\x43\x20\x33\x2e\x36\x31\x36\x33\x33\x38\x33\x2c\x33\x2e\x34\x20\ +\x32\x2e\x34\x31\x39\x30\x30\x35\x39\x2c\x33\x2e\x31\x32\x35\x20\ +\x31\x2e\x33\x39\x32\x37\x32\x31\x2c\x32\x2e\x34\x20\x30\x2e\x36\ +\x35\x31\x35\x31\x34\x37\x39\x2c\x31\x2e\x38\x37\x35\x20\x30\x2e\ +\x30\x30\x35\x33\x33\x35\x30\x35\x2c\x31\x2e\x30\x37\x35\x20\x30\ +\x2e\x30\x30\x35\x33\x33\x35\x30\x35\x2c\x30\x20\x63\x20\x30\x2c\ +\x2d\x31\x2e\x30\x37\x35\x20\x30\x2e\x36\x34\x36\x31\x37\x39\x37\ +\x34\x2c\x2d\x31\x2e\x38\x37\x35\x20\x31\x2e\x33\x38\x37\x33\x38\ +\x35\x39\x35\x2c\x2d\x32\x2e\x34\x20\x31\x2e\x30\x32\x36\x32\x38\ +\x34\x39\x2c\x2d\x30\x2e\x37\x32\x35\x20\x32\x2e\x32\x32\x33\x36\ +\x31\x37\x33\x2c\x2d\x31\x20\x33\x2e\x33\x38\x32\x39\x33\x39\x31\ +\x2c\x2d\x31\x20\x31\x2e\x31\x35\x39\x33\x32\x31\x38\x2c\x30\x20\ +\x32\x2e\x33\x33\x37\x36\x34\x38\x35\x2c\x30\x2e\x32\x37\x35\x20\ +\x33\x2e\x33\x36\x33\x39\x33\x33\x34\x2c\x31\x20\x30\x2e\x37\x34\ +\x31\x32\x30\x36\x31\x2c\x30\x2e\x35\x32\x35\x20\x31\x2e\x33\x38\ +\x37\x33\x38\x35\x38\x2c\x31\x2e\x33\x32\x35\x20\x31\x2e\x33\x38\ +\x37\x33\x38\x35\x38\x2c\x32\x2e\x34\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x36\x32\x22\x0a\ +\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\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ +\x2e\x39\x35\x33\x38\x35\x39\x30\x39\x22\x20\x2f\x3e\x0a\x3c\x2f\ +\x73\x76\x67\x3e\x0a\ +\x00\x00\x07\x12\ +\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\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x30\x39\x39\x22\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\x30\ +\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\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x31\x30\x35\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x2d\x34\x2e\x39\x32\x39\x30\x37\x38\x34\ +\x2c\x2d\x30\x2e\x32\x32\x34\x39\x34\x37\x30\x32\x20\x2d\x30\x2e\ +\x30\x32\x35\x2c\x31\x2e\x37\x32\x35\x30\x30\x30\x30\x32\x20\x76\ +\x20\x30\x2e\x32\x37\x35\x20\x63\x20\x30\x2c\x30\x2e\x35\x35\x20\ +\x30\x2e\x30\x35\x2c\x31\x2e\x31\x20\x30\x2e\x31\x2c\x31\x2e\x36\ +\x35\x20\x31\x2e\x31\x32\x35\x2c\x2d\x30\x2e\x39\x32\x35\x20\x32\ +\x2e\x32\x32\x35\x2c\x2d\x32\x2e\x30\x32\x35\x20\x32\x2e\x32\x32\ +\x35\x2c\x2d\x33\x2e\x34\x37\x35\x30\x30\x30\x30\x32\x20\x30\x2c\ +\x2d\x30\x2e\x38\x35\x20\x2d\x30\x2e\x33\x2c\x2d\x31\x2e\x37\x32\ +\x34\x39\x39\x39\x39\x38\x20\x2d\x31\x2e\x30\x32\x35\x2c\x2d\x31\ +\x2e\x37\x32\x34\x39\x39\x39\x39\x38\x20\x2d\x30\x2e\x37\x35\x2c\ +\x30\x20\x2d\x31\x2e\x32\x35\x2c\x30\x2e\x37\x35\x20\x2d\x31\x2e\ +\x32\x37\x35\x2c\x31\x2e\x35\x34\x39\x39\x39\x39\x39\x38\x20\x7a\ +\x20\x6d\x20\x2d\x30\x2e\x39\x35\x2c\x34\x2e\x35\x30\x30\x30\x30\ +\x30\x30\x32\x20\x2d\x30\x2e\x30\x35\x2c\x2d\x32\x2e\x36\x35\x20\ +\x63\x20\x2d\x30\x2e\x37\x2c\x30\x2e\x38\x37\x35\x20\x2d\x31\x2e\ +\x37\x37\x35\x2c\x31\x2e\x35\x37\x35\x20\x2d\x32\x2e\x36\x32\x35\ +\x2c\x32\x2e\x33\x37\x35\x20\x2d\x30\x2e\x33\x2c\x30\x2e\x32\x37\ +\x35\x20\x2d\x30\x2e\x34\x35\x2c\x30\x2e\x38\x20\x2d\x30\x2e\x38\ +\x37\x35\x2c\x30\x2e\x38\x20\x2d\x30\x2e\x33\x2c\x30\x20\x2d\x30\ +\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x35\ +\x32\x35\x2c\x2d\x30\x2e\x35\x32\x35\x20\x6c\x20\x2d\x30\x2e\x32\ +\x37\x34\x39\x39\x39\x36\x2c\x2d\x31\x34\x2e\x39\x37\x35\x20\x63\ +\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x33\x39\x39\x39\ +\x39\x39\x36\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\x2e\x36\x32\x34\ +\x39\x39\x39\x36\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\x2e\x32\x32\ +\x35\x2c\x30\x20\x30\x2e\x34\x32\x35\x2c\x30\x2e\x30\x37\x35\x20\ +\x30\x2e\x36\x32\x35\x2c\x30\x2e\x31\x37\x35\x20\x6c\x20\x2d\x30\ +\x2e\x31\x35\x2c\x38\x2e\x37\x32\x35\x20\x63\x20\x30\x2e\x34\x35\ +\x2c\x2d\x30\x2e\x34\x37\x35\x20\x31\x2e\x30\x35\x2c\x2d\x30\x2e\ +\x37\x35\x20\x31\x2e\x37\x2c\x2d\x30\x2e\x37\x35\x20\x30\x2e\x35\ +\x35\x2c\x30\x20\x31\x2e\x30\x35\x2c\x30\x2e\x32\x32\x35\x20\x31\ +\x2e\x34\x32\x35\x2c\x30\x2e\x35\x37\x35\x20\x6c\x20\x2d\x30\x2e\ +\x31\x37\x35\x2c\x2d\x38\x2e\x35\x35\x20\x63\x20\x30\x2e\x32\x2c\ +\x2d\x30\x2e\x31\x20\x30\x2e\x34\x2c\x2d\x30\x2e\x31\x37\x35\x20\ +\x30\x2e\x36\x32\x35\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\x2e\x32\ +\x32\x35\x2c\x30\x20\x30\x2e\x34\x35\x2c\x30\x2e\x30\x37\x35\x20\ +\x30\x2e\x36\x35\x2c\x30\x2e\x31\x37\x35\x20\x6c\x20\x2d\x30\x2e\ +\x31\x37\x35\x2c\x38\x2e\x37\x32\x35\x20\x63\x20\x30\x2e\x36\x2c\ +\x2d\x30\x2e\x34\x37\x35\x20\x31\x2e\x33\x37\x35\x2c\x2d\x30\x2e\ +\x37\x35\x20\x32\x2e\x31\x35\x2c\x2d\x30\x2e\x37\x35\x20\x31\x2e\ +\x33\x35\x2c\x30\x20\x32\x2e\x33\x37\x34\x39\x39\x39\x39\x37\x2c\ +\x31\x2e\x31\x32\x35\x20\x32\x2e\x33\x37\x34\x39\x39\x39\x39\x37\ +\x2c\x32\x2e\x34\x37\x34\x39\x39\x39\x39\x38\x20\x30\x2c\x32\x2e\ +\x30\x35\x30\x30\x30\x30\x30\x32\x20\x2d\x32\x2e\x32\x34\x39\x39\ +\x39\x39\x39\x37\x2c\x32\x2e\x39\x35\x30\x30\x30\x30\x30\x32\x20\ +\x2d\x33\x2e\x38\x32\x34\x39\x39\x39\x39\x37\x2c\x34\x2e\x32\x35\ +\x30\x30\x30\x30\x30\x32\x20\x2d\x30\x2e\x33\x35\x2c\x30\x2e\x32\ +\x37\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x30\x2e\x38\x20\x2d\x30\ +\x2e\x39\x37\x35\x2c\x30\x2e\x38\x20\x2d\x30\x2e\x33\x2c\x30\x20\ +\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x32\x32\x35\x20\x2d\x30\ +\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x35\x32\x35\x20\x7a\x20\x6d\x20\ +\x2d\x33\x2e\x33\x2c\x2d\x34\x2e\x35\x30\x30\x30\x30\x30\x30\x32\ +\x20\x2d\x30\x2e\x30\x32\x35\x2c\x31\x2e\x37\x32\x35\x30\x30\x30\ +\x30\x32\x20\x76\x20\x30\x2e\x32\x37\x35\x20\x63\x20\x30\x2c\x30\ +\x2e\x35\x37\x35\x20\x30\x2e\x30\x32\x35\x2c\x31\x2e\x31\x32\x35\ +\x20\x30\x2e\x31\x2c\x31\x2e\x37\x20\x31\x2c\x2d\x30\x2e\x39\x35\ +\x20\x31\x2e\x38\x2c\x2d\x32\x2e\x31\x35\x20\x31\x2e\x38\x2c\x2d\ +\x33\x2e\x35\x32\x35\x30\x30\x30\x30\x32\x20\x30\x2c\x2d\x30\x2e\ +\x38\x32\x35\x20\x2d\x30\x2e\x31\x35\x2c\x2d\x31\x2e\x37\x32\x34\ +\x39\x39\x39\x39\x38\x20\x2d\x30\x2e\x38\x35\x2c\x2d\x31\x2e\x37\ +\x32\x34\x39\x39\x39\x39\x38\x20\x2d\x30\x2e\x36\x37\x35\x2c\x30\ +\x20\x2d\x31\x2c\x30\x2e\x37\x37\x34\x39\x39\x39\x39\x38\x20\x2d\ +\x31\x2e\x30\x32\x35\x2c\x31\x2e\x35\x34\x39\x39\x39\x39\x39\x38\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x33\x31\x30\x31\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ +\x00\x00\x07\x97\ \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\ @@ -3848,191 +3440,326 @@ qt_resource_data = b"\ \x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ \x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ \x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x33\x31\x36\x39\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\x39\x31\x20\ -\x72\x31\x33\x37\x32\x35\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x63\x6c\x65\ -\x66\x42\x61\x73\x73\x5f\x38\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\ -\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\ -\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\ -\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\ -\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\ -\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x32\x30\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x30\x31\x38\ -\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\x7a\x6f\x6f\x6d\x3d\x22\x34\x2e\x34\x35\ -\x37\x36\x30\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x32\x35\x2e\x37\x35\x36\ -\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x79\x3d\x22\x39\x39\x34\x2e\x35\x39\x39\x37\x34\x22\ +\x33\x33\x39\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\ +\x34\x20\x72\x39\x39\x33\x39\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\ +\x73\x74\x38\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\ +\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ +\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x3d\x22\x31\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\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\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\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\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\x73\x76\x67\x33\x31\x36\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\x33\x31\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\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\x64\x65\x66\ -\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\ -\x31\x37\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x34\x2e\x31\x37\x35\ -\x2c\x2d\x33\x2e\x31\x35\x30\x39\x38\x35\x35\x20\x63\x20\x30\x2c\ -\x2d\x30\x2e\x37\x32\x35\x20\x30\x2e\x35\x37\x35\x2c\x2d\x31\x2e\ -\x33\x30\x30\x30\x30\x30\x31\x20\x31\x2e\x33\x2c\x2d\x31\x2e\x33\ -\x30\x30\x30\x30\x30\x31\x20\x30\x2e\x37\x32\x35\x2c\x30\x20\x31\ -\x2e\x33\x2c\x30\x2e\x35\x37\x35\x30\x30\x30\x31\x20\x31\x2e\x33\ -\x2c\x31\x2e\x33\x30\x30\x30\x30\x30\x31\x20\x30\x2c\x30\x2e\x37\ -\x32\x35\x20\x2d\x30\x2e\x35\x37\x35\x2c\x31\x2e\x32\x39\x39\x39\ -\x39\x39\x39\x20\x2d\x31\x2e\x33\x2c\x31\x2e\x32\x39\x39\x39\x39\ -\x39\x39\x20\x2d\x30\x2e\x37\x32\x35\x2c\x30\x20\x2d\x31\x2e\x33\ -\x2c\x2d\x30\x2e\x35\x37\x34\x39\x39\x39\x39\x20\x2d\x31\x2e\x33\ -\x2c\x2d\x31\x2e\x32\x39\x39\x39\x39\x39\x39\x20\x7a\x20\x6d\x20\ -\x30\x2c\x2d\x36\x2e\x32\x35\x30\x30\x30\x30\x31\x20\x63\x20\x30\ -\x2c\x2d\x30\x2e\x37\x32\x35\x30\x30\x30\x34\x20\x30\x2e\x35\x37\ -\x35\x2c\x2d\x31\x2e\x33\x30\x30\x30\x30\x30\x34\x20\x31\x2e\x33\ -\x2c\x2d\x31\x2e\x33\x30\x30\x30\x30\x30\x34\x20\x30\x2e\x37\x32\ -\x35\x2c\x30\x20\x31\x2e\x33\x2c\x30\x2e\x35\x37\x35\x20\x31\x2e\ -\x33\x2c\x31\x2e\x33\x30\x30\x30\x30\x30\x34\x20\x30\x2c\x30\x2e\ -\x37\x32\x35\x20\x2d\x30\x2e\x35\x37\x35\x2c\x31\x2e\x33\x20\x2d\ -\x31\x2e\x33\x2c\x31\x2e\x33\x20\x2d\x30\x2e\x37\x32\x35\x2c\x30\ -\x20\x2d\x31\x2e\x33\x2c\x2d\x30\x2e\x35\x37\x35\x20\x2d\x31\x2e\ -\x33\x2c\x2d\x31\x2e\x33\x20\x7a\x20\x4d\x20\x36\x2e\x31\x2c\x2d\ -\x31\x32\x2e\x38\x30\x30\x39\x38\x36\x20\x63\x20\x34\x2e\x32\x37\ -\x35\x2c\x30\x20\x37\x2e\x33\x2c\x32\x2e\x31\x35\x20\x37\x2e\x33\ -\x2c\x36\x2e\x32\x30\x30\x30\x30\x30\x34\x20\x30\x2c\x36\x2e\x35\ -\x37\x35\x30\x30\x30\x30\x33\x20\x2d\x36\x2e\x36\x2c\x31\x30\x2e\ -\x33\x37\x35\x20\x2d\x31\x32\x2e\x39\x32\x35\x2c\x31\x33\x2e\x30\ -\x32\x35\x20\x2d\x30\x2e\x30\x35\x2c\x30\x2e\x30\x35\x20\x2d\x30\ -\x2e\x31\x32\x35\x2c\x30\x2e\x30\x37\x35\x20\x2d\x30\x2e\x32\x2c\ -\x30\x2e\x30\x37\x35\x20\x2d\x30\x2e\x31\x35\x2c\x30\x20\x2d\x30\ -\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\x2d\x30\x2e\x32\ -\x37\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2c\x2d\x30\x2e\x30\ -\x37\x35\x20\x30\x2e\x30\x32\x35\x2c\x2d\x30\x2e\x31\x35\x20\x30\ -\x2e\x30\x37\x35\x2c\x2d\x30\x2e\x32\x20\x35\x2e\x30\x37\x35\x2c\ -\x2d\x32\x2e\x39\x35\x20\x31\x30\x2e\x33\x37\x35\x2c\x2d\x36\x2e\ -\x36\x32\x34\x39\x39\x39\x39\x37\x20\x31\x30\x2e\x33\x37\x35\x2c\ -\x2d\x31\x32\x2e\x33\x35\x20\x30\x2c\x2d\x33\x2e\x30\x32\x35\x20\ -\x2d\x31\x2e\x36\x2c\x2d\x35\x2e\x39\x32\x35\x30\x30\x30\x34\x20\ -\x2d\x34\x2e\x33\x35\x2c\x2d\x35\x2e\x39\x32\x35\x30\x30\x30\x34\ -\x20\x2d\x31\x2e\x39\x37\x35\x2c\x30\x20\x2d\x33\x2e\x34\x35\x2c\ -\x31\x2e\x34\x32\x35\x20\x2d\x34\x2e\x31\x2c\x33\x2e\x33\x32\x35\ -\x30\x30\x30\x34\x20\x30\x2e\x33\x35\x2c\x2d\x30\x2e\x32\x20\x30\ -\x2e\x37\x2c\x2d\x30\x2e\x33\x32\x35\x20\x31\x2e\x30\x37\x35\x2c\ -\x2d\x30\x2e\x33\x32\x35\x20\x31\x2e\x33\x37\x35\x2c\x30\x20\x32\ -\x2e\x35\x2c\x31\x2e\x31\x32\x35\x20\x32\x2e\x35\x2c\x32\x2e\x35\ -\x20\x30\x2c\x31\x2e\x34\x35\x20\x2d\x31\x2e\x31\x2c\x32\x2e\x36\ -\x37\x35\x30\x30\x30\x31\x20\x2d\x32\x2e\x35\x2c\x32\x2e\x36\x37\ -\x35\x30\x30\x30\x31\x20\x2d\x31\x2e\x35\x2c\x30\x20\x2d\x32\x2e\ -\x38\x2c\x2d\x31\x2e\x32\x30\x30\x30\x30\x30\x31\x20\x2d\x32\x2e\ -\x38\x2c\x2d\x32\x2e\x36\x37\x35\x30\x30\x30\x31\x20\x30\x2c\x2d\ -\x33\x2e\x33\x30\x30\x30\x30\x30\x34\x20\x32\x2e\x35\x37\x35\x2c\ -\x2d\x36\x2e\x30\x35\x30\x30\x30\x30\x34\x20\x35\x2e\x38\x32\x35\ -\x2c\x2d\x36\x2e\x30\x35\x30\x30\x30\x30\x34\x20\x7a\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x31\x37\x31\ +\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ +\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x31\x37\x32\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\x7a\x6f\x6f\x6d\x3d\x22\x32\x31\x2e\x33\x36\x30\x32\x38\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x78\x3d\x22\x32\x2e\x31\x38\x38\x38\x38\x38\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ +\x3d\x22\x31\x30\x30\x30\x2e\x32\x37\x34\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x78\x3d\x22\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\x33\x39\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x33\x33\x39\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ +\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ +\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ +\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ +\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ +\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ +\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x64\x65\x66\x73\x33\x33\x39\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ +\x32\x2e\x35\x35\x38\x36\x30\x36\x32\x2c\x35\x2e\x33\x39\x32\x39\ +\x30\x33\x35\x20\x32\x2e\x39\x2c\x2d\x38\x2e\x31\x37\x35\x20\x63\ +\x20\x2d\x30\x2e\x38\x37\x35\x2c\x30\x2e\x33\x20\x2d\x31\x2e\x37\ +\x35\x2c\x30\x2e\x35\x37\x35\x20\x2d\x32\x2e\x36\x37\x35\x2c\x30\ +\x2e\x35\x37\x35\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\ +\x31\x37\x34\x39\x39\x39\x39\x39\x2c\x2d\x30\x2e\x38\x35\x20\x2d\ +\x32\x2e\x31\x37\x34\x39\x39\x39\x39\x39\x2c\x2d\x32\x20\x30\x2c\ +\x2d\x30\x2e\x39\x37\x35\x20\x30\x2e\x37\x37\x34\x39\x39\x39\x39\ +\x39\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x37\x37\x34\x39\x39\ +\x39\x39\x39\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\ +\x30\x20\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\ +\x35\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\ +\x35\x2c\x31\x2e\x35\x20\x30\x2e\x38\x37\x35\x2c\x31\x2e\x35\x20\ +\x30\x2e\x34\x32\x35\x2c\x30\x20\x31\x2e\x34\x35\x2c\x2d\x31\x2e\ +\x33\x35\x20\x31\x2e\x36\x32\x35\x2c\x2d\x31\x2e\x37\x35\x20\x30\ +\x2e\x31\x32\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\x35\x2c\ +\x2d\x30\x2e\x32\x35\x20\x30\x2e\x36\x2c\x30\x20\x6c\x20\x2d\x33\ +\x2e\x31\x35\x2c\x31\x30\x2e\x36\x32\x35\x20\x63\x20\x2d\x30\x2e\ +\x31\x37\x35\x2c\x30\x2e\x31\x35\x20\x2d\x30\x2e\x34\x2c\x30\x2e\ +\x32\x32\x35\x20\x2d\x30\x2e\x36\x2c\x30\x2e\x32\x32\x35\x20\x2d\ +\x30\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\ +\x30\x37\x35\x20\x2d\x30\x2e\x36\x2c\x2d\x30\x2e\x32\x32\x35\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x33\x39\x33\x22\x0a\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\x3c\ +\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x06\xc7\ +\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\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ +\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\ +\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\ +\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\ +\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\ +\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ +\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\ +\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ +\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ +\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ +\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x30\x35\x39\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\x34\x20\x72\x39\x39\x33\x39\ +\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ +\x63\x6e\x61\x6d\x65\x3d\x22\x64\x6f\x74\x73\x2e\x64\x6f\x74\x2e\ +\x73\x76\x67\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x33\x30\x36\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\x64\ +\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\ +\x73\x33\x30\x36\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\ +\x20\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\ +\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ +\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x3d\x22\x31\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\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\x77\ +\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ +\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x30\x36\x33\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x33\x2e\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ +\x30\x2e\x33\x36\x36\x37\x32\x34\x31\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\ +\x30\x33\x2e\x33\x30\x37\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\x39\x32\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\x38\ \x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\ -\x6d\x65\x3d\x22\x65\x69\x67\x68\x74\x22\x0a\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x4d\x20\x39\x2e\x33\x39\x34\x36\x37\x37\x34\x2c\x39\ -\x2e\x36\x30\x30\x32\x38\x39\x32\x20\x43\x20\x39\x2e\x39\x34\x30\ -\x39\x34\x38\x35\x2c\x39\x2e\x30\x33\x35\x31\x38\x31\x34\x20\x31\ -\x30\x2e\x34\x31\x31\x38\x37\x32\x2c\x38\x2e\x34\x33\x32\x34\x30\ -\x30\x31\x20\x31\x30\x2e\x34\x31\x31\x38\x37\x32\x2c\x37\x2e\x36\ -\x36\x30\x30\x38\x36\x31\x20\x63\x20\x30\x2c\x2d\x31\x2e\x30\x35\ -\x34\x38\x36\x37\x38\x20\x2d\x31\x2e\x30\x39\x32\x35\x34\x32\x33\ -\x2c\x2d\x31\x2e\x37\x31\x34\x31\x36\x30\x33\x20\x2d\x32\x2e\x32\ -\x34\x31\x35\x39\x34\x38\x2c\x2d\x31\x2e\x37\x31\x34\x31\x36\x30\ -\x33\x20\x2d\x30\x2e\x39\x32\x33\x30\x30\x39\x34\x2c\x30\x20\x2d\ -\x31\x2e\x34\x36\x39\x32\x38\x30\x33\x2c\x30\x2e\x37\x31\x35\x38\ -\x30\x33\x32\x20\x2d\x31\x2e\x34\x36\x39\x32\x38\x30\x33\x2c\x31\ -\x2e\x34\x31\x32\x37\x36\x39\x35\x20\x30\x2c\x30\x2e\x34\x31\x34\ -\x34\x31\x32\x34\x20\x30\x2e\x31\x36\x39\x35\x33\x32\x34\x2c\x30\ -\x2e\x37\x39\x31\x31\x35\x30\x39\x20\x30\x2e\x35\x38\x33\x39\x34\ -\x34\x37\x2c\x31\x2e\x30\x33\x36\x30\x33\x30\x39\x20\x7a\x20\x4d\ -\x20\x39\x2e\x39\x30\x33\x32\x37\x34\x37\x2c\x39\x2e\x39\x30\x31\ -\x36\x38\x20\x63\x20\x31\x2e\x30\x33\x36\x30\x33\x31\x33\x2c\x30\ -\x2e\x36\x30\x32\x37\x38\x32\x20\x31\x2e\x36\x30\x31\x31\x33\x38\ -\x33\x2c\x31\x2e\x34\x36\x39\x32\x38\x20\x31\x2e\x36\x30\x31\x31\ -\x33\x38\x33\x2c\x32\x2e\x33\x39\x32\x32\x39\x20\x30\x2c\x31\x2e\ -\x33\x35\x36\x32\x35\x38\x20\x2d\x31\x2e\x32\x32\x34\x34\x2c\x32\ -\x2e\x36\x37\x34\x38\x34\x33\x20\x2d\x33\x2e\x34\x38\x34\x38\x33\ -\x31\x32\x2c\x32\x2e\x36\x37\x34\x38\x34\x33\x20\x2d\x31\x2e\x37\ -\x33\x32\x39\x39\x37\x32\x2c\x30\x20\x2d\x33\x2e\x33\x37\x31\x38\ -\x30\x39\x38\x2c\x2d\x30\x2e\x39\x39\x38\x33\x35\x37\x20\x2d\x33\ -\x2e\x33\x37\x31\x38\x30\x39\x38\x2c\x2d\x32\x2e\x35\x39\x39\x34\ -\x39\x36\x20\x30\x2c\x2d\x30\x2e\x39\x36\x30\x36\x38\x33\x20\x30\ -\x2e\x37\x35\x33\x34\x37\x37\x2c\x2d\x31\x2e\x36\x31\x39\x39\x37\ -\x35\x20\x31\x2e\x34\x36\x39\x32\x38\x30\x32\x2c\x2d\x32\x2e\x32\ -\x37\x39\x32\x36\x38\x20\x43\x20\x35\x2e\x32\x38\x38\x32\x32\x37\ -\x35\x2c\x39\x2e\x35\x36\x32\x36\x31\x35\x33\x20\x34\x2e\x39\x31\ -\x31\x34\x38\x39\x2c\x38\x2e\x37\x39\x30\x33\x30\x31\x37\x20\x34\ -\x2e\x39\x31\x31\x34\x38\x39\x2c\x38\x2e\x30\x33\x36\x38\x32\x34\ -\x36\x20\x63\x20\x30\x2c\x2d\x31\x2e\x32\x36\x32\x30\x37\x34\x20\ -\x31\x2e\x31\x33\x30\x32\x31\x35\x35\x2c\x2d\x32\x2e\x34\x38\x36\ -\x34\x37\x34\x32\x20\x33\x2e\x32\x35\x38\x37\x38\x38\x32\x2c\x2d\ -\x32\x2e\x34\x38\x36\x34\x37\x34\x32\x20\x31\x2e\x35\x30\x36\x39\ -\x35\x34\x2c\x30\x20\x32\x2e\x39\x37\x36\x32\x33\x34\x38\x2c\x30\ -\x2e\x37\x35\x33\x34\x37\x37\x20\x32\x2e\x39\x37\x36\x32\x33\x34\ -\x38\x2c\x32\x2e\x31\x30\x39\x37\x33\x35\x37\x20\x30\x2c\x30\x2e\ -\x39\x30\x34\x31\x37\x32\x35\x20\x2d\x30\x2e\x36\x30\x32\x37\x38\ -\x32\x2c\x31\x2e\x35\x38\x32\x33\x30\x31\x35\x20\x2d\x31\x2e\x32\ -\x34\x33\x32\x33\x37\x33\x2c\x32\x2e\x32\x34\x31\x35\x39\x33\x39\ -\x20\x7a\x20\x6d\x20\x2d\x33\x2e\x32\x35\x38\x37\x38\x38\x35\x2c\ -\x30\x2e\x34\x38\x39\x37\x36\x20\x63\x20\x2d\x30\x2e\x36\x34\x30\ -\x34\x35\x35\x35\x2c\x30\x2e\x35\x36\x35\x31\x30\x38\x20\x2d\x31\ -\x2e\x32\x34\x33\x32\x33\x37\x32\x2c\x31\x2e\x31\x34\x39\x30\x35\ -\x33\x20\x2d\x31\x2e\x32\x34\x33\x32\x33\x37\x32\x2c\x31\x2e\x39\ -\x37\x37\x38\x37\x37\x20\x30\x2c\x31\x2e\x32\x39\x39\x37\x34\x38\ -\x20\x31\x2e\x32\x34\x33\x32\x33\x37\x32\x2c\x32\x2e\x32\x30\x33\ -\x39\x32\x31\x20\x32\x2e\x36\x31\x38\x33\x33\x32\x38\x2c\x32\x2e\ -\x32\x30\x33\x39\x32\x31\x20\x31\x2e\x30\x33\x36\x30\x33\x30\x39\ -\x2c\x30\x20\x31\x2e\x36\x35\x37\x36\x34\x39\x34\x2c\x2d\x30\x2e\ -\x38\x30\x39\x39\x38\x38\x20\x31\x2e\x36\x35\x37\x36\x34\x39\x34\ -\x2c\x2d\x31\x2e\x36\x30\x31\x31\x33\x39\x20\x30\x2c\x2d\x30\x2e\ -\x34\x37\x30\x39\x32\x33\x20\x2d\x30\x2e\x32\x30\x37\x32\x30\x36\ -\x31\x2c\x2d\x30\x2e\x39\x36\x30\x36\x38\x33\x20\x2d\x30\x2e\x36\ -\x39\x36\x39\x36\x36\x32\x2c\x2d\x31\x2e\x32\x34\x33\x32\x33\x37\ -\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x37\x32\x38\x22\x0a\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\ -\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x07\x82\ +\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\ +\x3d\x22\x30\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\x73\x76\x67\x33\x30\x35\x39\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\ +\x2d\x6e\x61\x6d\x65\x3d\x22\x64\x6f\x74\x73\x2e\x64\x6f\x74\x22\ +\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\x2e\x37\x39\x35\ +\x35\x38\x38\x31\x32\x2c\x30\x20\x63\x20\x30\x2c\x30\x2e\x38\x20\ +\x30\x2e\x36\x32\x34\x39\x39\x39\x39\x38\x2c\x31\x2e\x34\x32\x35\ +\x20\x31\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x31\x2e\x34\x32\ +\x35\x20\x30\x2e\x38\x2c\x30\x20\x31\x2e\x34\x32\x35\x2c\x2d\x30\ +\x2e\x36\x32\x35\x20\x31\x2e\x34\x32\x35\x2c\x2d\x31\x2e\x34\x32\ +\x35\x20\x30\x2c\x2d\x30\x2e\x38\x20\x2d\x30\x2e\x36\x32\x35\x2c\ +\x2d\x31\x2e\x34\x32\x35\x20\x2d\x31\x2e\x34\x32\x35\x2c\x2d\x31\ +\x2e\x34\x32\x35\x20\x2d\x30\x2e\x38\x2c\x30\x20\x2d\x31\x2e\x34\ +\x32\x34\x39\x39\x39\x39\x38\x2c\x30\x2e\x36\x32\x35\x20\x2d\x31\ +\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x31\x2e\x34\x32\x35\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x30\x36\x31\x22\x0a\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\x3c\ +\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x07\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\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ +\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\ +\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\ +\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\ +\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\ +\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ +\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\ +\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ +\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ +\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ +\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\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\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\ +\x6d\x65\x3d\x22\x66\x6c\x61\x67\x38\x69\x2e\x73\x76\x67\x22\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\x31\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ +\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ +\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ +\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ +\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ +\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\ +\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\ +\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x38\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\ +\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\ +\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x36\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\x7a\x6f\x6f\x6d\x3d\x22\x32\x31\x2e\x33\x36\ +\x30\x32\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x78\x3d\x22\x32\x32\x2e\x34\x31\x31\x39\x31\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x79\x3d\x22\x39\x39\x35\x2e\x39\x31\x39\x38\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\ +\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x32\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\ +\x73\x2e\x64\x33\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ +\x2d\x30\x2e\x30\x37\x31\x33\x34\x32\x32\x38\x2c\x2d\x30\x2e\x30\ +\x37\x30\x33\x30\x36\x32\x31\x20\x43\x20\x32\x2e\x34\x30\x33\x36\ +\x35\x37\x38\x2c\x2d\x31\x2e\x35\x34\x35\x33\x30\x36\x33\x20\x35\ +\x2e\x36\x37\x38\x36\x35\x37\x38\x2c\x2d\x33\x2e\x38\x32\x30\x33\ +\x30\x36\x33\x20\x35\x2e\x36\x37\x38\x36\x35\x37\x38\x2c\x2d\x36\ +\x2e\x36\x34\x35\x33\x30\x36\x33\x20\x63\x20\x30\x2c\x2d\x31\x2e\ +\x36\x32\x35\x30\x30\x30\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\ +\x33\x2e\x32\x32\x35\x30\x30\x30\x34\x20\x2d\x31\x2e\x33\x35\x2c\ +\x2d\x34\x2e\x36\x32\x35\x30\x30\x30\x37\x20\x2d\x30\x2e\x30\x37\ +\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x30\x2e\x32\x32\x35\x2c\x2d\ +\x30\x2e\x36\x32\x35\x20\x30\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x36\ +\x32\x35\x20\x30\x2e\x31\x37\x35\x2c\x30\x20\x30\x2e\x33\x35\x2c\ +\x30\x2e\x31\x20\x30\x2e\x34\x35\x2c\x30\x2e\x32\x37\x35\x20\x30\ +\x2e\x38\x32\x35\x2c\x31\x2e\x35\x32\x35\x20\x31\x2e\x33\x35\x2c\ +\x33\x2e\x32\x32\x35\x30\x30\x30\x32\x20\x31\x2e\x33\x35\x2c\x34\ +\x2e\x39\x37\x35\x30\x30\x30\x37\x20\x30\x2c\x35\x2e\x31\x32\x35\ +\x20\x2d\x36\x2e\x37\x32\x35\x30\x30\x30\x30\x38\x2c\x37\x2e\x37\ +\x30\x30\x30\x30\x30\x31\x20\x2d\x36\x2e\x37\x32\x35\x30\x30\x30\ +\x30\x38\x2c\x31\x32\x2e\x38\x32\x35\x20\x68\x20\x2d\x30\x2e\x33\ +\x35\x20\x76\x20\x2d\x36\x2e\x32\x34\x39\x39\x39\x39\x39\x31\x20\ +\x68\x20\x30\x2e\x33\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x34\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x06\xda\ \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\ @@ -4056,106 +3783,257 @@ qt_resource_data = b"\ \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\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x33\x31\x22\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\x34\x33\ -\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ -\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ -\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ -\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ -\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ -\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ -\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\ -\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ -\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ -\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x33\x37\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x33\x2e\x36\x37\x35\x2c\x32\x32\x2e\x32\ -\x38\x35\x35\x39\x33\x20\x31\x2e\x35\x32\x35\x2c\x2d\x38\x2e\x32\ -\x35\x20\x63\x20\x2d\x30\x2e\x39\x37\x35\x2c\x30\x2e\x33\x35\x20\ -\x2d\x31\x2e\x39\x37\x35\x2c\x30\x2e\x36\x35\x20\x2d\x33\x2e\x30\ -\x32\x35\x2c\x30\x2e\x36\x35\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\ -\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\x32\x2e\ -\x31\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\ -\x30\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x37\ -\x37\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\ -\x20\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\ -\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x35\ -\x2c\x31\x2e\x35\x20\x30\x2e\x38\x37\x35\x2c\x31\x2e\x35\x20\x30\ -\x2e\x34\x35\x2c\x30\x20\x31\x2e\x35\x2c\x2d\x31\x2e\x34\x35\x20\ -\x31\x2e\x36\x2c\x2d\x31\x2e\x39\x32\x35\x20\x4c\x20\x36\x2e\x33\ -\x35\x2c\x37\x2e\x38\x31\x30\x35\x39\x33\x33\x20\x63\x20\x2d\x30\ -\x2e\x39\x35\x2c\x30\x2e\x33\x32\x35\x20\x2d\x31\x2e\x39\x2c\x30\ -\x2e\x36\x32\x35\x20\x2d\x32\x2e\x39\x2c\x30\x2e\x36\x32\x35\x20\ -\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\x32\x2c\x2d\x30\x2e\ -\x38\x35\x20\x2d\x32\x2e\x32\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\ -\x39\x37\x35\x20\x30\x2e\x38\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\ -\x2e\x38\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\ -\x20\x31\x2e\x32\x2c\x30\x2e\x34\x20\x31\x2e\x34\x2c\x31\x20\x30\ -\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x37\x35\x2c\x31\x2e\ -\x35\x20\x30\x2e\x39\x2c\x31\x2e\x35\x20\x30\x2e\x34\x32\x35\x2c\ -\x30\x20\x31\x2e\x33\x37\x35\x2c\x2d\x31\x2e\x34\x20\x31\x2e\x34\ -\x35\x2c\x2d\x31\x2e\x38\x37\x35\x20\x6c\x20\x30\x2e\x37\x2c\x2d\ -\x33\x2e\x37\x20\x63\x20\x2d\x30\x2e\x39\x2c\x30\x2e\x33\x32\x35\ -\x20\x2d\x31\x2e\x38\x35\x2c\x30\x2e\x36\x20\x2d\x32\x2e\x38\x2c\ -\x30\x2e\x36\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\x31\ -\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\x32\x2e\x31\x37\x35\x2c\ -\x2d\x32\x2e\x30\x30\x30\x30\x30\x30\x30\x32\x20\x30\x2c\x2d\x30\ -\x2e\x39\x37\x35\x20\x30\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\x37\ -\x34\x39\x39\x39\x39\x38\x20\x31\x2e\x37\x37\x35\x2c\x2d\x31\x2e\ -\x37\x37\x34\x39\x39\x39\x39\x38\x20\x30\x2e\x36\x35\x2c\x30\x20\ -\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\x2c\ -\x30\x2e\x39\x39\x39\x39\x39\x39\x39\x38\x20\x30\x2e\x32\x35\x2c\ -\x30\x2e\x37\x20\x30\x2e\x31\x35\x2c\x31\x2e\x35\x20\x30\x2e\x38\ -\x37\x35\x2c\x31\x2e\x35\x20\x30\x2e\x34\x2c\x30\x20\x31\x2e\x32\ -\x37\x35\x2c\x2d\x31\x2e\x33\x35\x20\x31\x2e\x33\x35\x2c\x2d\x31\ -\x2e\x38\x20\x6c\x20\x30\x2e\x37\x2c\x2d\x33\x2e\x37\x34\x39\x39\ -\x39\x39\x39\x38\x20\x63\x20\x2d\x30\x2e\x38\x37\x35\x2c\x30\x2e\ -\x33\x20\x2d\x31\x2e\x37\x37\x35\x2c\x30\x2e\x35\x37\x35\x20\x2d\ -\x32\x2e\x37\x2c\x30\x2e\x35\x37\x35\x20\x2d\x31\x2e\x31\x35\x2c\ -\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\ -\x32\x2e\x31\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\x39\x37\ -\x35\x20\x30\x2e\x38\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x38\ -\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\ -\x2e\x32\x2c\x30\x2e\x34\x20\x31\x2e\x34\x2c\x31\x20\x30\x2e\x32\ -\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x37\x35\x2c\x31\x2e\x35\x20\ -\x30\x2e\x39\x2c\x31\x2e\x35\x20\x30\x2e\x34\x2c\x30\x20\x31\x2e\ -\x31\x35\x2c\x2d\x31\x2e\x33\x32\x35\x20\x31\x2e\x32\x32\x35\x2c\ -\x2d\x31\x2e\x37\x35\x20\x6c\x20\x30\x2e\x37\x2c\x2d\x33\x2e\x37\ -\x37\x35\x30\x30\x30\x33\x20\x63\x20\x2d\x30\x2e\x38\x32\x35\x2c\ -\x30\x2e\x33\x20\x2d\x31\x2e\x37\x2c\x30\x2e\x35\x35\x20\x2d\x32\ -\x2e\x35\x37\x35\x2c\x30\x2e\x35\x35\x20\x2d\x31\x2e\x31\x35\x2c\ -\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\ -\x32\x2e\x31\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\x39\x37\ -\x35\x20\x30\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\ -\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\ -\x2c\x30\x20\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\ -\x32\x35\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\ -\x31\x35\x2c\x31\x2e\x35\x20\x30\x2e\x38\x37\x35\x2c\x31\x2e\x35\ -\x20\x30\x2e\x34\x2c\x30\x20\x30\x2e\x39\x37\x35\x2c\x2d\x31\x2e\ -\x33\x37\x35\x20\x31\x2e\x31\x32\x35\x2c\x2d\x31\x2e\x37\x35\x20\ -\x30\x2e\x31\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\x35\x2c\x2d\ -\x30\x2e\x32\x37\x35\x20\x30\x2e\x36\x2c\x30\x20\x6c\x20\x2d\x35\ -\x2e\x39\x37\x35\x2c\x33\x35\x2e\x36\x32\x35\x20\x63\x20\x2d\x30\ -\x2e\x31\x37\x35\x2c\x30\x2e\x31\x35\x20\x2d\x30\x2e\x34\x2c\x30\ -\x2e\x32\x32\x35\x20\x2d\x30\x2e\x36\x2c\x30\x2e\x32\x32\x35\x20\ -\x2d\x30\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\ -\x2e\x30\x37\x35\x20\x2d\x30\x2e\x36\x2c\x2d\x30\x2e\x32\x32\x35\ -\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x34\x33\x33\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ -\x0a\ -\x00\x00\x03\xf1\ +\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\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ +\x33\x33\x37\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\ +\x34\x20\x72\x39\x39\x33\x39\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\ +\x73\x74\x32\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\ +\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ +\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x3d\x22\x31\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\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\x77\ +\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ +\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x31\x36\x30\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\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x37\x37\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ +\x22\x32\x30\x30\x2e\x37\x38\x31\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\x31\ +\x33\x2e\x30\x36\x30\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\ +\x31\x39\x32\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\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\ +\x3d\x22\x30\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\x73\x76\x67\x33\x33\x37\x31\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\x33\x37\x39\x22\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ +\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\ +\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ +\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ +\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\ +\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x64\x65\ +\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ +\x33\x33\x37\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x30\x2e\x32\x33\ +\x34\x33\x32\x32\x2c\x33\x2e\x39\x33\x32\x35\x33\x32\x34\x20\x68\ +\x20\x2d\x38\x2e\x39\x37\x35\x20\x63\x20\x2d\x30\x2e\x31\x2c\x30\ +\x20\x2d\x30\x2e\x32\x2c\x2d\x30\x2e\x31\x20\x2d\x30\x2e\x32\x2c\ +\x2d\x30\x2e\x32\x20\x56\x20\x30\x2e\x32\x33\x32\x35\x33\x32\x34\ +\x33\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x31\x2c\x2d\ +\x30\x2e\x32\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x68\x20\x38\ +\x2e\x39\x37\x35\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\x32\ +\x2c\x30\x2e\x31\x20\x30\x2e\x32\x2c\x30\x2e\x32\x20\x56\x20\x33\ +\x2e\x37\x33\x32\x35\x33\x32\x34\x20\x63\x20\x30\x2c\x30\x2e\x31\ +\x20\x2d\x30\x2e\x31\x2c\x30\x2e\x32\x20\x2d\x30\x2e\x32\x2c\x30\ +\x2e\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x33\x33\x37\x33\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x09\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\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ +\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\ +\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\ +\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\ +\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\ +\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ +\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\ +\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ +\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ +\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ +\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x38\x36\x38\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ +\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ +\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x36\x34\x2e\x73\x76\x67\ +\x22\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\x38\x37\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\x64\x65\x66\x73\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x38\ +\x37\x34\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\ +\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\ +\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\ +\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ +\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\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\x77\x69\x6e\x64\ +\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x39\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x33\x38\x37\x32\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\x7a\ +\x6f\x6f\x6d\x3d\x22\x32\x31\x2e\x33\x36\x30\x32\x38\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ +\x3d\x22\x32\x30\x2e\x33\x30\x35\x34\x34\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\ +\x30\x31\x33\x2e\x34\x35\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\ +\x3d\x22\x31\x39\x32\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\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\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\x73\x76\x67\x33\x38\x36\x38\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\ +\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x36\x2e\x31\ +\x38\x35\x34\x39\x38\x36\x2c\x32\x30\x2e\x33\x32\x34\x30\x39\x33\ +\x20\x63\x20\x30\x2c\x2d\x30\x2e\x36\x37\x35\x20\x2d\x30\x2e\x32\ +\x2c\x2d\x31\x2e\x32\x35\x20\x2d\x30\x2e\x35\x2c\x2d\x31\x2e\x37\ +\x37\x35\x20\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x36\x37\x35\x20\ +\x30\x2e\x33\x2c\x2d\x31\x2e\x34\x20\x30\x2e\x33\x2c\x2d\x32\x2e\ +\x31\x20\x30\x2c\x2d\x30\x2e\x37\x35\x20\x2d\x30\x2e\x32\x2c\x2d\ +\x31\x2e\x34\x32\x35\x20\x2d\x30\x2e\x35\x2c\x2d\x32\x2e\x30\x32\ +\x35\x20\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x30\x2e\ +\x33\x2c\x2d\x31\x2e\x37\x20\x30\x2e\x33\x2c\x2d\x32\x2e\x35\x35\ +\x20\x30\x2c\x2d\x30\x2e\x39\x32\x35\x20\x2d\x30\x2e\x32\x35\x2c\ +\x2d\x31\x2e\x37\x35\x20\x2d\x30\x2e\x36\x35\x2c\x2d\x32\x2e\x35\ +\x32\x34\x39\x39\x39\x38\x20\x30\x2e\x30\x35\x2c\x2d\x30\x2e\x38\ +\x20\x30\x2e\x30\x37\x35\x2c\x2d\x31\x2e\x36\x32\x35\x20\x30\x2e\ +\x30\x37\x35\x2c\x2d\x32\x2e\x34\x32\x35\x20\x30\x2c\x2d\x34\x2e\ +\x37\x30\x30\x30\x30\x30\x34\x20\x2d\x35\x2e\x37\x34\x39\x39\x39\ +\x39\x39\x38\x2c\x2d\x37\x2e\x34\x35\x30\x30\x30\x30\x33\x37\x20\ +\x2d\x35\x2e\x37\x34\x39\x39\x39\x39\x39\x38\x2c\x2d\x31\x32\x2e\ +\x31\x35\x30\x30\x30\x30\x33\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x31\ +\x20\x2d\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\x32\x35\x2e\x30\x30\ +\x30\x30\x30\x30\x31\x20\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\x2d\ +\x33\x2e\x31\x32\x35\x20\x63\x20\x32\x2e\x34\x39\x39\x39\x39\x39\ +\x39\x38\x2c\x30\x2e\x33\x37\x35\x20\x35\x2e\x37\x34\x39\x39\x39\ +\x39\x39\x38\x2c\x31\x2e\x35\x20\x35\x2e\x37\x34\x39\x39\x39\x39\ +\x39\x38\x2c\x33\x2e\x37\x37\x35\x20\x30\x2c\x30\x2e\x34\x32\x35\ +\x20\x2d\x30\x2e\x31\x35\x2c\x30\x2e\x38\x37\x35\x20\x2d\x30\x2e\ +\x31\x35\x2c\x31\x2e\x33\x20\x30\x2c\x30\x2e\x33\x20\x30\x2e\x32\ +\x37\x35\x2c\x30\x2e\x35\x20\x30\x2e\x35\x35\x2c\x30\x2e\x35\x20\ +\x30\x2e\x36\x35\x2c\x30\x20\x30\x2e\x35\x37\x35\x2c\x2d\x31\x2e\ +\x32\x20\x30\x2e\x35\x37\x35\x2c\x2d\x31\x2e\x38\x20\x7a\x20\x4d\ +\x20\x2d\x30\x2e\x35\x33\x39\x35\x30\x31\x33\x38\x2c\x2d\x30\x2e\ +\x32\x32\x35\x39\x30\x37\x31\x37\x20\x43\x20\x31\x2e\x35\x31\x30\ +\x34\x39\x38\x36\x2c\x31\x2e\x35\x39\x39\x30\x39\x32\x38\x20\x34\ +\x2e\x32\x33\x35\x34\x39\x38\x36\x2c\x34\x2e\x31\x39\x39\x30\x39\ +\x32\x38\x20\x34\x2e\x32\x33\x35\x34\x39\x38\x36\x2c\x36\x2e\x39\ +\x32\x34\x30\x39\x33\x32\x20\x6c\x20\x30\x2c\x31\x20\x63\x20\x2d\ +\x31\x2e\x38\x37\x35\x2c\x2d\x32\x2e\x34\x32\x35\x30\x30\x30\x37\ +\x20\x2d\x34\x2e\x37\x37\x34\x39\x39\x39\x39\x38\x2c\x2d\x34\x2e\ +\x34\x35\x30\x30\x30\x30\x34\x20\x2d\x34\x2e\x37\x37\x34\x39\x39\ +\x39\x39\x38\x2c\x2d\x37\x2e\x36\x32\x35\x30\x30\x30\x33\x37\x20\ +\x6c\x20\x30\x2c\x2d\x30\x2e\x35\x32\x35\x20\x7a\x20\x6d\x20\x30\ +\x2c\x35\x2e\x35\x32\x34\x39\x39\x39\x36\x37\x20\x63\x20\x32\x2e\ +\x32\x39\x39\x39\x39\x39\x39\x38\x2c\x31\x2e\x35\x35\x30\x30\x30\ +\x31\x20\x35\x2e\x33\x34\x39\x39\x39\x39\x39\x38\x2c\x33\x2e\x38\ +\x35\x30\x30\x30\x30\x37\x20\x35\x2e\x33\x34\x39\x39\x39\x39\x39\ +\x38\x2c\x36\x2e\x35\x37\x35\x30\x30\x30\x35\x20\x30\x2c\x30\x2e\ +\x34\x35\x20\x2d\x30\x2e\x30\x32\x35\x2c\x30\x2e\x39\x20\x2d\x30\ +\x2e\x31\x2c\x31\x2e\x33\x35\x20\x2d\x31\x2e\x39\x2c\x2d\x32\x2e\ +\x33\x37\x35\x20\x2d\x35\x2e\x32\x34\x39\x39\x39\x39\x39\x38\x2c\ +\x2d\x34\x2e\x30\x39\x39\x39\x39\x39\x38\x20\x2d\x35\x2e\x32\x34\ +\x39\x39\x39\x39\x39\x38\x2c\x2d\x37\x2e\x32\x39\x39\x39\x39\x39\ +\x35\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x36\x32\x35\x30\x30\x31\x20\ +\x7a\x20\x6d\x20\x30\x2c\x35\x2e\x36\x32\x35\x30\x30\x30\x35\x20\ +\x63\x20\x32\x2e\x33\x39\x39\x39\x39\x39\x39\x38\x2c\x31\x2e\x31\ +\x32\x35\x20\x35\x2e\x35\x34\x39\x39\x39\x39\x39\x38\x2c\x32\x2e\ +\x39\x37\x35\x20\x35\x2e\x35\x34\x39\x39\x39\x39\x39\x38\x2c\x35\ +\x2e\x35\x32\x35\x20\x30\x2c\x30\x2e\x33\x37\x35\x20\x2d\x30\x2e\ +\x30\x35\x2c\x30\x2e\x37\x32\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\ +\x31\x2e\x31\x20\x2d\x31\x2e\x39\x35\x2c\x2d\x31\x2e\x39\x32\x35\ +\x20\x2d\x35\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x2d\x33\x2e\ +\x30\x35\x20\x2d\x35\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x2d\ +\x36\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x36\x32\x35\x20\x7a\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x37\ +\x30\x22\x0a\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\x3c\x2f\x73\x76\ +\x67\x3e\x0a\ +\x00\x00\x09\x7b\ \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\ @@ -4179,195 +4057,288 @@ qt_resource_data = b"\ \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\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x22\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\x31\x30\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ -\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ -\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ -\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\ -\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\ -\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ -\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\ -\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x38\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2e\ -\x33\x35\x2c\x36\x2e\x32\x35\x20\x43\x20\x32\x2e\x38\x32\x35\x2c\ -\x37\x2e\x37\x32\x35\x20\x36\x2e\x31\x2c\x31\x30\x20\x36\x2e\x31\ -\x2c\x31\x32\x2e\x38\x32\x35\x20\x63\x20\x30\x2c\x31\x2e\x36\x32\ -\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x33\x2e\x32\x32\x35\x20\x2d\ -\x31\x2e\x33\x35\x2c\x34\x2e\x36\x32\x35\x20\x2d\x30\x2e\x30\x37\ -\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\x32\x32\x35\x2c\x30\x2e\ -\x36\x32\x35\x20\x30\x2e\x35\x32\x35\x2c\x30\x2e\x36\x32\x35\x20\ -\x30\x2e\x31\x37\x35\x2c\x30\x20\x30\x2e\x33\x35\x2c\x2d\x30\x2e\ -\x31\x20\x30\x2e\x34\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\ -\x38\x32\x35\x2c\x2d\x31\x2e\x35\x32\x35\x20\x31\x2e\x33\x35\x2c\ -\x2d\x33\x2e\x32\x32\x35\x20\x31\x2e\x33\x35\x2c\x2d\x34\x2e\x39\ -\x37\x35\x20\x43\x20\x37\x2e\x30\x37\x35\x2c\x37\x2e\x37\x20\x30\ -\x2e\x33\x35\x2c\x35\x2e\x31\x32\x35\x20\x30\x2e\x33\x35\x2c\x30\ -\x20\x48\x20\x30\x20\x76\x20\x36\x2e\x32\x35\x20\x68\x20\x30\x2e\ -\x33\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x61\x74\x68\x34\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\ -\x00\x00\x08\xfd\ +\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\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ +\x33\x31\x36\x39\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\ +\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x63\x6c\ +\x65\x66\x42\x61\x73\x73\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\ +\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\ +\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\ +\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\ +\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x39\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x30\x31\x38\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x37\x2e\x38\x33\x30\ +\x34\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x78\x3d\x22\x32\x32\x2e\x34\x32\x32\x33\x31\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x79\x3d\x22\x39\x38\x37\x2e\x33\x38\x30\x39\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x78\x3d\x22\x32\x38\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\x79\x3d\x22\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\ +\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\x31\x36\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\x33\x31\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\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x33\x31\x37\x35\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x6d\x20\x31\x34\x2e\x31\x37\x35\x2c\x2d\x33\x2e\x31\x35\x30\x39\ +\x38\x35\x35\x20\x63\x20\x30\x2c\x2d\x30\x2e\x37\x32\x35\x20\x30\ +\x2e\x35\x37\x35\x2c\x2d\x31\x2e\x33\x30\x30\x30\x30\x30\x31\x20\ +\x31\x2e\x33\x2c\x2d\x31\x2e\x33\x30\x30\x30\x30\x30\x31\x20\x30\ +\x2e\x37\x32\x35\x2c\x30\x20\x31\x2e\x33\x2c\x30\x2e\x35\x37\x35\ +\x30\x30\x30\x31\x20\x31\x2e\x33\x2c\x31\x2e\x33\x30\x30\x30\x30\ +\x30\x31\x20\x30\x2c\x30\x2e\x37\x32\x35\x20\x2d\x30\x2e\x35\x37\ +\x35\x2c\x31\x2e\x32\x39\x39\x39\x39\x39\x39\x20\x2d\x31\x2e\x33\ +\x2c\x31\x2e\x32\x39\x39\x39\x39\x39\x39\x20\x2d\x30\x2e\x37\x32\ +\x35\x2c\x30\x20\x2d\x31\x2e\x33\x2c\x2d\x30\x2e\x35\x37\x34\x39\ +\x39\x39\x39\x20\x2d\x31\x2e\x33\x2c\x2d\x31\x2e\x32\x39\x39\x39\ +\x39\x39\x39\x20\x7a\x20\x6d\x20\x30\x2c\x2d\x36\x2e\x32\x35\x30\ +\x30\x30\x30\x31\x20\x63\x20\x30\x2c\x2d\x30\x2e\x37\x32\x35\x30\ +\x30\x30\x34\x20\x30\x2e\x35\x37\x35\x2c\x2d\x31\x2e\x33\x30\x30\ +\x30\x30\x30\x34\x20\x31\x2e\x33\x2c\x2d\x31\x2e\x33\x30\x30\x30\ +\x30\x30\x34\x20\x30\x2e\x37\x32\x35\x2c\x30\x20\x31\x2e\x33\x2c\ +\x30\x2e\x35\x37\x35\x20\x31\x2e\x33\x2c\x31\x2e\x33\x30\x30\x30\ +\x30\x30\x34\x20\x30\x2c\x30\x2e\x37\x32\x35\x20\x2d\x30\x2e\x35\ +\x37\x35\x2c\x31\x2e\x33\x20\x2d\x31\x2e\x33\x2c\x31\x2e\x33\x20\ +\x2d\x30\x2e\x37\x32\x35\x2c\x30\x20\x2d\x31\x2e\x33\x2c\x2d\x30\ +\x2e\x35\x37\x35\x20\x2d\x31\x2e\x33\x2c\x2d\x31\x2e\x33\x20\x7a\ +\x20\x4d\x20\x36\x2e\x31\x2c\x2d\x31\x32\x2e\x38\x30\x30\x39\x38\ +\x36\x20\x63\x20\x34\x2e\x32\x37\x35\x2c\x30\x20\x37\x2e\x33\x2c\ +\x32\x2e\x31\x35\x20\x37\x2e\x33\x2c\x36\x2e\x32\x30\x30\x30\x30\ +\x30\x34\x20\x30\x2c\x36\x2e\x35\x37\x35\x30\x30\x30\x30\x33\x20\ +\x2d\x36\x2e\x36\x2c\x31\x30\x2e\x33\x37\x35\x20\x2d\x31\x32\x2e\ +\x39\x32\x35\x2c\x31\x33\x2e\x30\x32\x35\x20\x2d\x30\x2e\x30\x35\ +\x2c\x30\x2e\x30\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x30\x2e\x30\ +\x37\x35\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x30\x37\x35\x20\x2d\x30\ +\x2e\x31\x35\x2c\x30\x20\x2d\x30\x2e\x32\x37\x35\x2c\x2d\x30\x2e\ +\x31\x32\x35\x20\x2d\x30\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x32\x37\ +\x35\x20\x30\x2c\x2d\x30\x2e\x30\x37\x35\x20\x30\x2e\x30\x32\x35\ +\x2c\x2d\x30\x2e\x31\x35\x20\x30\x2e\x30\x37\x35\x2c\x2d\x30\x2e\ +\x32\x20\x35\x2e\x30\x37\x35\x2c\x2d\x32\x2e\x39\x35\x20\x31\x30\ +\x2e\x33\x37\x35\x2c\x2d\x36\x2e\x36\x32\x34\x39\x39\x39\x39\x37\ +\x20\x31\x30\x2e\x33\x37\x35\x2c\x2d\x31\x32\x2e\x33\x35\x20\x30\ +\x2c\x2d\x33\x2e\x30\x32\x35\x20\x2d\x31\x2e\x36\x2c\x2d\x35\x2e\ +\x39\x32\x35\x30\x30\x30\x34\x20\x2d\x34\x2e\x33\x35\x2c\x2d\x35\ +\x2e\x39\x32\x35\x30\x30\x30\x34\x20\x2d\x31\x2e\x39\x37\x35\x2c\ +\x30\x20\x2d\x33\x2e\x34\x35\x2c\x31\x2e\x34\x32\x35\x20\x2d\x34\ +\x2e\x31\x2c\x33\x2e\x33\x32\x35\x30\x30\x30\x34\x20\x30\x2e\x33\ +\x35\x2c\x2d\x30\x2e\x32\x20\x30\x2e\x37\x2c\x2d\x30\x2e\x33\x32\ +\x35\x20\x31\x2e\x30\x37\x35\x2c\x2d\x30\x2e\x33\x32\x35\x20\x31\ +\x2e\x33\x37\x35\x2c\x30\x20\x32\x2e\x35\x2c\x31\x2e\x31\x32\x35\ +\x20\x32\x2e\x35\x2c\x32\x2e\x35\x20\x30\x2c\x31\x2e\x34\x35\x20\ +\x2d\x31\x2e\x31\x2c\x32\x2e\x36\x37\x35\x30\x30\x30\x31\x20\x2d\ +\x32\x2e\x35\x2c\x32\x2e\x36\x37\x35\x30\x30\x30\x31\x20\x2d\x31\ +\x2e\x35\x2c\x30\x20\x2d\x32\x2e\x38\x2c\x2d\x31\x2e\x32\x30\x30\ +\x30\x30\x30\x31\x20\x2d\x32\x2e\x38\x2c\x2d\x32\x2e\x36\x37\x35\ +\x30\x30\x30\x31\x20\x30\x2c\x2d\x33\x2e\x33\x30\x30\x30\x30\x30\ +\x34\x20\x32\x2e\x35\x37\x35\x2c\x2d\x36\x2e\x30\x35\x30\x30\x30\ +\x30\x34\x20\x35\x2e\x38\x32\x35\x2c\x2d\x36\x2e\x30\x35\x30\x30\ +\x30\x30\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x33\x31\x37\x31\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x09\x4e\ \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\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\ +\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\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ -\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ -\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ -\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x35\x32\x35\x30\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ -\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ -\x6e\x61\x6d\x65\x3d\x22\x6e\x6f\x74\x65\x68\x65\x61\x64\x73\x4d\ -\x61\x78\x69\x6d\x61\x2e\x73\x76\x67\x22\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\x32\x35\x38\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\ -\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\ -\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\ -\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ -\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\ -\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\ -\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x64\x65\x66\x73\x35\x32\x35\x36\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\ -\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\ -\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\ -\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x35\x32\ -\x35\x34\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\x7a\x6f\x6f\x6d\x3d\x22\x32\x32\ -\x2e\x36\x32\x37\x34\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x31\x32\x2e\x34\x37\ -\x33\x33\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\x30\x2e\x34\x36\x31\x39\ -\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\x31\x30\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\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x35\ -\x32\x35\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\ -\x22\x6e\x6f\x74\x65\x68\x65\x61\x64\x73\x2e\x73\x4d\x33\x6e\x65\ -\x6f\x6d\x65\x6e\x73\x75\x72\x61\x6c\x22\x0a\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x6d\x20\x31\x2e\x33\x2c\x2d\x30\x2e\x38\x31\x36\x39\ -\x34\x31\x37\x36\x20\x31\x33\x2e\x36\x35\x2c\x30\x20\x63\x20\x30\ -\x2e\x33\x2c\x30\x20\x30\x2e\x35\x35\x2c\x30\x2e\x32\x32\x35\x30\ -\x30\x30\x30\x32\x20\x30\x2e\x35\x35\x2c\x30\x2e\x35\x32\x35\x30\ -\x30\x30\x30\x32\x20\x6c\x20\x30\x2c\x30\x2e\x35\x35\x20\x63\x20\ -\x30\x2c\x30\x2e\x33\x20\x2d\x30\x2e\x32\x35\x2c\x30\x2e\x35\x32\ -\x35\x20\x2d\x30\x2e\x35\x35\x2c\x30\x2e\x35\x32\x35\x20\x6c\x20\ -\x2d\x31\x33\x2e\x36\x35\x2c\x30\x20\x63\x20\x2d\x30\x2e\x33\x2c\ -\x30\x20\x2d\x30\x2e\x35\x35\x2c\x2d\x30\x2e\x32\x32\x35\x20\x2d\ -\x30\x2e\x35\x35\x2c\x2d\x30\x2e\x35\x32\x35\x20\x6c\x20\x30\x2c\ -\x2d\x30\x2e\x35\x35\x20\x63\x20\x30\x2c\x2d\x30\x2e\x33\x20\x30\ -\x2e\x32\x35\x2c\x2d\x30\x2e\x35\x32\x35\x30\x30\x30\x30\x32\x20\ -\x30\x2e\x35\x35\x2c\x2d\x30\x2e\x35\x32\x35\x30\x30\x30\x30\x32\ -\x20\x7a\x20\x6d\x20\x31\x33\x2e\x36\x35\x2c\x2d\x32\x2e\x36\x30\ -\x30\x30\x30\x30\x30\x34\x20\x2d\x31\x33\x2e\x36\x35\x2c\x30\x20\ -\x63\x20\x2d\x30\x2e\x33\x35\x2c\x30\x20\x2d\x30\x2e\x35\x35\x2c\ -\x2d\x30\x2e\x34\x20\x2d\x30\x2e\x35\x35\x2c\x2d\x30\x2e\x38\x20\ -\x30\x2c\x2d\x30\x2e\x32\x35\x20\x2d\x30\x2e\x31\x37\x35\x2c\x2d\ -\x30\x2e\x33\x37\x35\x20\x2d\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\ -\x33\x37\x35\x20\x2d\x30\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x33\x37\ -\x35\x2c\x30\x2e\x31\x32\x35\x20\x2d\x30\x2e\x33\x37\x35\x2c\x30\ -\x2e\x33\x37\x35\x20\x6c\x20\x30\x2c\x38\x2e\x34\x20\x63\x20\x30\ -\x2c\x30\x2e\x32\x35\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x33\x37\ -\x35\x20\x30\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\ -\x32\x2c\x30\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\ -\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x30\x2c\ -\x2d\x30\x2e\x34\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x38\x20\x30\x2e\ -\x35\x35\x2c\x2d\x30\x2e\x38\x20\x6c\x20\x31\x33\x2e\x36\x35\x2c\ -\x30\x20\x63\x20\x30\x2e\x33\x35\x2c\x30\x20\x30\x2e\x35\x35\x2c\ -\x30\x2e\x34\x20\x30\x2e\x35\x35\x2c\x30\x2e\x38\x20\x30\x2c\x30\ -\x2e\x32\x35\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\ -\x30\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\x32\x2c\ -\x30\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\x30\ -\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x6c\x20\x30\x2c\ -\x2d\x38\x2e\x34\x20\x63\x20\x30\x2e\x31\x37\x35\x2c\x2d\x32\x2e\ -\x30\x37\x35\x20\x30\x2e\x34\x35\x2c\x2d\x34\x2e\x32\x20\x30\x2e\ -\x34\x35\x2c\x2d\x36\x2e\x32\x37\x34\x39\x39\x39\x32\x20\x30\x2c\ -\x2d\x30\x2e\x33\x20\x2d\x30\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x34\ -\x32\x35\x20\x2d\x30\x2e\x34\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\ -\x2d\x30\x2e\x32\x32\x35\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\ -\x30\x2e\x31\x32\x35\x20\x2d\x30\x2e\x34\x35\x2c\x30\x2e\x34\x32\ -\x35\x20\x6c\x20\x2d\x30\x2e\x33\x2c\x36\x2e\x32\x34\x39\x39\x39\ -\x39\x32\x20\x30\x2c\x30\x2e\x30\x32\x35\x20\x63\x20\x30\x2c\x30\ -\x2e\x34\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x38\x20\x2d\x30\x2e\x35\ -\x35\x2c\x30\x2e\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x35\x32\x35\x32\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x09\x50\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ +\x33\x33\x38\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\ +\x34\x20\x72\x39\x39\x33\x39\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\ +\x73\x74\x34\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\ +\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ +\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x3d\x22\x31\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\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\x77\ +\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ +\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x31\x36\x36\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\x7a\x6f\x6f\x6d\x3d\x22\x37\x2e\x35\x35\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ +\x22\x34\x38\x2e\x39\x37\x32\x37\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\ +\x30\x34\x2e\x30\x34\x34\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\x31\x39\x32\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\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ +\x64\x3d\x22\x30\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\x73\x76\x67\x33\x33\x38\x31\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\x33\x38\x39\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ +\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ +\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ +\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ +\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ +\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\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\x64\ +\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\ +\x73\x33\x33\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x2e\x37\x32\ +\x31\x33\x39\x38\x33\x2c\x32\x2e\x33\x34\x30\x35\x33\x38\x20\x63\ +\x20\x30\x2c\x2d\x30\x2e\x36\x35\x20\x30\x2e\x32\x35\x2c\x2d\x31\ +\x20\x30\x2e\x39\x2c\x2d\x31\x20\x30\x2e\x38\x35\x2c\x30\x20\x32\ +\x2e\x31\x32\x35\x2c\x30\x2e\x33\x37\x35\x20\x33\x2e\x32\x35\x2c\ +\x30\x2e\x39\x32\x35\x20\x6c\x20\x2d\x33\x2e\x34\x32\x35\x2c\x2d\ +\x34\x2e\x31\x20\x63\x20\x2d\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\ +\x32\x20\x2d\x30\x2e\x32\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\x2d\ +\x30\x2e\x32\x35\x2c\x2d\x30\x2e\x36\x32\x35\x20\x30\x2c\x2d\x30\ +\x2e\x38\x32\x35\x20\x31\x2e\x32\x32\x35\x2c\x2d\x31\x2e\x36\x20\ +\x32\x2e\x31\x35\x2c\x2d\x32\x2e\x34\x20\x30\x2e\x36\x35\x2c\x2d\ +\x30\x2e\x35\x35\x20\x30\x2e\x39\x37\x35\x2c\x2d\x31\x2e\x33\x35\ +\x20\x30\x2e\x39\x37\x35\x2c\x2d\x32\x2e\x31\x32\x35\x20\x30\x2c\ +\x2d\x30\x2e\x36\x20\x2d\x30\x2e\x32\x2c\x2d\x31\x2e\x31\x37\x35\ +\x20\x2d\x30\x2e\x36\x2c\x2d\x31\x2e\x36\x37\x35\x20\x6c\x20\x2d\ +\x30\x2e\x39\x37\x35\x2c\x2d\x31\x2e\x31\x35\x20\x63\x20\x2d\x30\ +\x2e\x30\x35\x2c\x2d\x30\x2e\x30\x37\x35\x20\x2d\x30\x2e\x30\x37\ +\x35\x2c\x2d\x30\x2e\x31\x35\x20\x2d\x30\x2e\x30\x37\x35\x2c\x2d\ +\x30\x2e\x32\x32\x35\x20\x30\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\ +\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x33\x35\x20\x30\x2e\x33\x35\x2c\ +\x2d\x30\x2e\x33\x35\x20\x30\x2e\x30\x37\x35\x2c\x30\x20\x30\x2e\ +\x31\x37\x35\x2c\x30\x2e\x30\x32\x35\x20\x30\x2e\x32\x35\x2c\x30\ +\x2e\x31\x32\x35\x20\x6c\x20\x33\x2e\x38\x2c\x34\x2e\x35\x35\x20\ +\x63\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x32\x20\x30\x2e\x32\x35\ +\x2c\x30\x2e\x34\x32\x35\x20\x30\x2e\x32\x35\x2c\x30\x2e\x36\x32\ +\x35\x20\x30\x2c\x30\x2e\x38\x32\x35\x20\x2d\x31\x2e\x32\x32\x35\ +\x2c\x31\x2e\x36\x20\x2d\x32\x2e\x31\x35\x2c\x32\x2e\x34\x20\x2d\ +\x30\x2e\x36\x35\x2c\x30\x2e\x35\x35\x20\x2d\x30\x2e\x39\x37\x35\ +\x2c\x31\x2e\x33\x35\x20\x2d\x30\x2e\x39\x37\x35\x2c\x32\x2e\x31\ +\x32\x34\x39\x39\x39\x39\x35\x20\x30\x2c\x30\x2e\x36\x20\x30\x2e\ +\x32\x2c\x31\x2e\x31\x37\x35\x20\x30\x2e\x36\x2c\x31\x2e\x36\x37\ +\x35\x30\x30\x30\x30\x35\x20\x6c\x20\x32\x2e\x31\x37\x35\x2c\x32\ +\x2e\x36\x20\x63\x20\x30\x2e\x30\x35\x2c\x30\x2e\x30\x37\x35\x20\ +\x30\x2e\x30\x37\x35\x2c\x30\x2e\x31\x32\x35\x20\x30\x2e\x30\x37\ +\x35\x2c\x30\x2e\x32\x20\x30\x2c\x30\x2e\x31\x37\x35\x20\x2d\x30\ +\x2e\x31\x37\x35\x2c\x30\x2e\x33\x35\x20\x2d\x30\x2e\x33\x35\x2c\ +\x30\x2e\x33\x35\x20\x2d\x30\x2e\x30\x37\x35\x2c\x30\x20\x2d\x30\ +\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x30\x32\x35\x20\x2d\x30\x2e\x32\ +\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\x2d\x30\x2e\x34\x37\x35\x2c\ +\x2d\x30\x2e\x35\x35\x20\x2d\x31\x2e\x36\x35\x2c\x2d\x31\x2e\x30\ +\x37\x35\x20\x2d\x32\x2e\x35\x35\x2c\x2d\x31\x2e\x30\x37\x35\x20\ +\x2d\x31\x2c\x30\x20\x2d\x31\x2e\x33\x2c\x30\x2e\x37\x32\x35\x20\ +\x2d\x31\x2e\x33\x2c\x31\x2e\x37\x35\x20\x30\x2c\x30\x2e\x38\x37\ +\x35\x20\x30\x2e\x32\x37\x35\x2c\x31\x2e\x38\x37\x35\x20\x30\x2e\ +\x37\x2c\x32\x2e\x34\x20\x30\x2e\x31\x2c\x30\x2e\x31\x32\x35\x20\ +\x30\x2c\x30\x2e\x32\x37\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x30\ +\x2e\x32\x37\x35\x20\x2d\x30\x2e\x30\x35\x2c\x30\x20\x2d\x30\x2e\ +\x31\x2c\x30\x20\x2d\x30\x2e\x31\x32\x35\x2c\x2d\x30\x2e\x30\x35\ +\x20\x2d\x31\x2e\x31\x35\x2c\x2d\x31\x2e\x33\x37\x35\x20\x2d\x32\ +\x2e\x33\x32\x35\x2c\x2d\x33\x2e\x37\x35\x20\x2d\x32\x2e\x33\x32\ +\x35\x2c\x2d\x35\x2e\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x38\x33\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0a\x27\ \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\ @@ -4399,14 +4370,14 @@ qt_resource_data = b"\ \x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ \x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ \x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x34\x30\x32\x31\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x34\x31\x38\x38\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ \x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ -\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x33\x32\x69\x2e\x73\x76\ +\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x36\x34\x69\x2e\x73\x76\ \x67\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\ \x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x34\x30\x32\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ +\x61\x34\x31\x39\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\ @@ -4424,7 +4395,7 @@ qt_resource_data = b"\ \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\x64\x65\x66\ \x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x34\ -\x30\x32\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\ +\x31\x39\x34\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\ \x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\ \x20\x20\x20\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\ @@ -4444,293 +4415,218 @@ qt_resource_data = b"\ \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\x31\x30\ \x34\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x34\x30\x32\x35\x22\x0a\x20\x20\x20\x20\ +\x65\x64\x76\x69\x65\x77\x34\x31\x39\x32\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\ \x7a\x6f\x6f\x6d\x3d\x22\x33\x30\x2e\x32\x30\x38\x22\x0a\x20\x20\ \x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x2d\x35\x2e\x31\x38\x37\x36\x31\x39\x33\x22\x0a\x20\x20\x20\x20\ +\x2d\x36\x2e\x35\x32\x37\x38\x34\x30\x34\x22\x0a\x20\x20\x20\x20\ \x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\ -\x33\x2e\x39\x38\x31\x30\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x39\x2e\x34\x31\x31\x39\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\x31\x39\x32\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\ -\x30\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\x6d\x61\x78\x69\x6d\x69\ -\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x34\x30\x32\x31\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\ -\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\ -\x75\x35\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\x2e\ -\x30\x31\x38\x39\x36\x31\x38\x36\x2c\x31\x30\x2e\x39\x31\x37\x39\ -\x32\x39\x20\x30\x2c\x2d\x30\x2e\x31\x20\x63\x20\x30\x2c\x2d\x32\ -\x2e\x38\x35\x30\x30\x30\x30\x36\x20\x32\x2e\x32\x30\x30\x30\x30\ -\x30\x30\x34\x2c\x2d\x35\x2e\x30\x30\x30\x30\x30\x30\x37\x20\x33\ -\x2e\x37\x30\x30\x30\x30\x30\x30\x34\x2c\x2d\x37\x2e\x33\x35\x30\ -\x30\x30\x30\x37\x20\x30\x2e\x30\x37\x35\x2c\x30\x2e\x33\x20\x30\ -\x2e\x31\x32\x35\x2c\x30\x2e\x36\x20\x30\x2e\x31\x32\x35\x2c\x30\ -\x2e\x39\x32\x35\x20\x30\x2c\x32\x2e\x34\x30\x30\x30\x30\x30\x31\ -\x20\x2d\x32\x2e\x31\x37\x35\x2c\x34\x2e\x37\x37\x35\x30\x30\x30\ -\x35\x20\x2d\x33\x2e\x38\x32\x35\x30\x30\x30\x30\x34\x2c\x36\x2e\ -\x35\x32\x35\x30\x30\x30\x37\x20\x7a\x20\x6d\x20\x30\x2c\x35\x2e\ -\x33\x32\x35\x20\x63\x20\x30\x2c\x2d\x34\x2e\x34\x32\x35\x20\x34\ -\x2e\x38\x30\x30\x30\x30\x30\x30\x34\x2c\x2d\x37\x2e\x34\x32\x35\ -\x30\x30\x30\x32\x20\x34\x2e\x38\x30\x30\x30\x30\x30\x30\x34\x2c\ -\x2d\x31\x31\x2e\x38\x35\x30\x30\x30\x30\x37\x20\x30\x2c\x2d\x30\ -\x2e\x37\x20\x2d\x30\x2e\x31\x35\x2c\x2d\x31\x2e\x34\x20\x2d\x30\ -\x2e\x34\x35\x2c\x2d\x32\x2e\x30\x35\x20\x30\x2e\x34\x32\x35\x2c\ -\x2d\x30\x2e\x38\x37\x35\x20\x30\x2e\x37\x2c\x2d\x31\x2e\x38\x30\ -\x30\x30\x30\x30\x30\x39\x20\x30\x2e\x37\x2c\x2d\x32\x2e\x38\x32\ -\x35\x30\x30\x30\x31\x31\x20\x30\x2c\x2d\x30\x2e\x38\x39\x39\x39\ -\x39\x39\x38\x39\x20\x2d\x30\x2e\x32\x2c\x2d\x31\x2e\x37\x37\x34\ -\x39\x39\x39\x38\x39\x20\x2d\x30\x2e\x35\x37\x35\x2c\x2d\x32\x2e\ -\x35\x39\x39\x39\x39\x39\x37\x39\x20\x30\x2e\x34\x35\x2c\x2d\x30\ -\x2e\x38\x37\x35\x20\x30\x2e\x37\x35\x2c\x2d\x31\x2e\x38\x32\x35\ -\x30\x30\x30\x31\x20\x30\x2e\x37\x35\x2c\x2d\x32\x2e\x38\x35\x30\ -\x30\x30\x30\x31\x20\x30\x2c\x2d\x31\x2e\x35\x32\x35\x20\x2d\x30\ -\x2e\x34\x2c\x2d\x33\x20\x2d\x31\x2e\x30\x35\x2c\x2d\x34\x2e\x33\ -\x37\x34\x39\x39\x39\x33\x20\x2d\x30\x2e\x31\x2c\x2d\x30\x2e\x31\ -\x37\x35\x20\x2d\x30\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x32\x37\x35\ -\x20\x2d\x30\x2e\x34\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x2d\x30\ -\x2e\x33\x2c\x30\x20\x2d\x30\x2e\x36\x2c\x30\x2e\x32\x35\x20\x2d\ -\x30\x2e\x35\x32\x35\x2c\x30\x2e\x36\x32\x34\x39\x39\x39\x33\x20\ -\x30\x2e\x36\x35\x2c\x31\x2e\x32\x35\x20\x31\x2e\x30\x35\x2c\x32\ -\x2e\x36\x32\x35\x20\x31\x2e\x30\x35\x2c\x34\x2e\x30\x32\x35\x20\ -\x30\x2c\x32\x2e\x33\x35\x30\x30\x30\x30\x31\x20\x2d\x32\x2e\x34\ -\x32\x35\x2c\x34\x2e\x35\x20\x2d\x34\x2e\x32\x35\x30\x30\x30\x30\ -\x30\x34\x2c\x35\x2e\x39\x39\x39\x39\x39\x39\x38\x39\x20\x6c\x20\ -\x30\x2c\x2d\x32\x2e\x35\x37\x34\x39\x39\x39\x38\x39\x20\x2d\x30\ -\x2e\x33\x35\x2c\x30\x20\x30\x2c\x31\x38\x2e\x37\x35\x30\x30\x30\ -\x30\x37\x20\x30\x2e\x33\x35\x2c\x30\x20\x7a\x20\x6d\x20\x30\x2c\ -\x2d\x31\x30\x2e\x37\x35\x30\x30\x30\x30\x37\x20\x30\x2c\x2d\x30\ -\x2e\x31\x32\x35\x20\x63\x20\x30\x2c\x2d\x32\x2e\x38\x37\x35\x20\ -\x32\x2e\x32\x37\x35\x30\x30\x30\x30\x34\x2c\x2d\x34\x2e\x39\x37\ -\x35\x30\x30\x30\x30\x39\x20\x33\x2e\x38\x32\x35\x30\x30\x30\x30\ -\x34\x2c\x2d\x37\x2e\x33\x35\x20\x30\x2e\x31\x35\x2c\x30\x2e\x34\ -\x37\x35\x20\x30\x2e\x32\x35\x2c\x30\x2e\x39\x39\x39\x39\x39\x39\ -\x39\x31\x20\x30\x2e\x32\x35\x2c\x31\x2e\x34\x39\x39\x39\x39\x39\ -\x38\x39\x20\x30\x2c\x32\x2e\x33\x30\x30\x30\x30\x30\x31\x31\x20\ -\x2d\x32\x2e\x33\x32\x35\x2c\x34\x2e\x34\x35\x30\x30\x30\x30\x31\ -\x31\x20\x2d\x34\x2e\x30\x37\x35\x30\x30\x30\x30\x34\x2c\x35\x2e\ -\x39\x37\x35\x30\x30\x30\x31\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x30\x32\x33\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x05\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\ -\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\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x22\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\x31\x30\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ -\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ -\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ -\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\ -\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\ -\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ -\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\ -\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x38\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x2e\ -\x39\x35\x2c\x2d\x31\x2e\x36\x37\x35\x20\x63\x20\x30\x2c\x2d\x30\ -\x2e\x36\x32\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x31\x2e\x30\ -\x35\x20\x2d\x31\x2e\x30\x37\x35\x2c\x2d\x31\x2e\x30\x35\x20\x2d\ -\x30\x2e\x31\x2c\x30\x20\x2d\x30\x2e\x32\x32\x35\x2c\x30\x2e\x30\ -\x32\x35\x20\x2d\x30\x2e\x33\x32\x35\x2c\x30\x2e\x30\x35\x20\x43\ -\x20\x35\x2e\x37\x37\x35\x2c\x2d\x32\x2e\x34\x35\x20\x34\x2e\x35\ -\x37\x35\x2c\x2d\x31\x2e\x36\x35\x20\x33\x2e\x36\x32\x35\x2c\x2d\ -\x31\x2e\x30\x35\x20\x32\x2e\x36\x37\x35\x2c\x2d\x30\x2e\x34\x35\ -\x20\x31\x2e\x35\x2c\x30\x2e\x33\x32\x35\x20\x30\x2e\x39\x37\x35\ -\x2c\x30\x2e\x39\x35\x20\x30\x2e\x38\x2c\x31\x2e\x31\x35\x20\x30\ -\x2e\x37\x2c\x31\x2e\x34\x32\x35\x20\x30\x2e\x37\x2c\x31\x2e\x36\ -\x37\x35\x20\x63\x20\x30\x2c\x30\x2e\x36\x32\x35\x20\x30\x2e\x35\ -\x32\x35\x2c\x31\x2e\x30\x35\x20\x31\x2e\x30\x37\x35\x2c\x31\x2e\ -\x30\x35\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\x32\x2c\x2d\x30\x2e\ -\x30\x32\x35\x20\x30\x2e\x33\x2c\x2d\x30\x2e\x30\x35\x20\x43\x20\ -\x32\x2e\x38\x35\x2c\x32\x2e\x34\x35\x20\x34\x2e\x30\x35\x2c\x31\ -\x2e\x36\x35\x20\x35\x2c\x31\x2e\x30\x35\x20\x35\x2e\x39\x35\x2c\ -\x30\x2e\x34\x35\x20\x37\x2e\x31\x35\x2c\x2d\x30\x2e\x33\x32\x35\ -\x20\x37\x2e\x36\x37\x35\x2c\x2d\x30\x2e\x39\x35\x20\x37\x2e\x38\ -\x35\x2c\x2d\x31\x2e\x31\x35\x20\x37\x2e\x39\x35\x2c\x2d\x31\x2e\ -\x34\x32\x35\x20\x37\x2e\x39\x35\x2c\x2d\x31\x2e\x36\x37\x35\x20\ -\x7a\x20\x4d\x20\x36\x2e\x36\x37\x35\x2c\x2d\x33\x2e\x34\x20\x63\ -\x20\x31\x2e\x31\x2c\x30\x20\x31\x2e\x39\x37\x35\x2c\x30\x2e\x35\ -\x20\x31\x2e\x39\x37\x35\x2c\x31\x2e\x37\x20\x30\x2c\x30\x2e\x34\ -\x37\x35\x20\x2d\x30\x2e\x31\x35\x2c\x30\x2e\x39\x35\x20\x2d\x30\ -\x2e\x33\x2c\x31\x2e\x34\x32\x35\x20\x43\x20\x38\x2e\x30\x32\x35\ -\x2c\x30\x2e\x36\x35\x20\x37\x2e\x35\x35\x2c\x31\x2e\x35\x35\x20\ -\x36\x2e\x37\x32\x35\x2c\x32\x2e\x31\x20\x35\x2e\x33\x37\x35\x2c\ -\x33\x20\x33\x2e\x38\x35\x2c\x33\x2e\x34\x20\x31\x2e\x39\x37\x35\ -\x2c\x33\x2e\x34\x20\x30\x2e\x38\x37\x35\x2c\x33\x2e\x34\x20\x30\ -\x2c\x32\x2e\x39\x20\x30\x2c\x31\x2e\x37\x20\x30\x2c\x31\x2e\x32\ -\x32\x35\x20\x30\x2e\x31\x35\x2c\x30\x2e\x37\x35\x20\x30\x2e\x33\ -\x2c\x30\x2e\x32\x37\x35\x20\x30\x2e\x36\x32\x35\x2c\x2d\x30\x2e\ -\x36\x35\x20\x31\x2e\x30\x37\x35\x2c\x2d\x31\x2e\x35\x35\x20\x31\ -\x2e\x39\x2c\x2d\x32\x2e\x31\x20\x33\x2e\x32\x35\x2c\x2d\x33\x20\ -\x34\x2e\x38\x2c\x2d\x33\x2e\x34\x20\x36\x2e\x36\x37\x35\x2c\x2d\ -\x33\x2e\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x34\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ -\x0a\ -\x00\x00\x07\x91\ +\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\x30\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\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\ +\x3d\x22\x30\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\x73\x76\x67\x34\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\ +\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x75\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x30\x2e\x30\x34\ +\x37\x32\x34\x35\x37\x36\x2c\x31\x37\x2e\x31\x35\x33\x34\x34\x35\ +\x20\x30\x2c\x2d\x30\x2e\x33\x20\x63\x20\x30\x2c\x2d\x32\x2e\x38\ +\x37\x35\x20\x32\x2e\x31\x39\x39\x39\x39\x39\x39\x36\x2c\x2d\x35\ +\x2e\x30\x35\x20\x33\x2e\x36\x39\x39\x39\x39\x39\x39\x36\x2c\x2d\ +\x37\x2e\x34\x35\x30\x30\x30\x30\x31\x20\x30\x2e\x31\x2c\x30\x2e\ +\x33\x32\x35\x20\x30\x2e\x31\x32\x35\x2c\x30\x2e\x36\x37\x35\x30\ +\x30\x30\x31\x20\x30\x2e\x31\x32\x35\x2c\x31\x2e\x30\x32\x35\x30\ +\x30\x30\x31\x20\x30\x2c\x32\x2e\x34\x35\x20\x2d\x32\x2e\x31\x37\ +\x35\x2c\x34\x2e\x39\x32\x35\x20\x2d\x33\x2e\x38\x32\x34\x39\x39\ +\x39\x39\x36\x2c\x36\x2e\x37\x32\x35\x20\x7a\x20\x6d\x20\x30\x2c\ +\x35\x2e\x33\x32\x35\x20\x63\x20\x30\x2c\x2d\x34\x2e\x34\x37\x35\ +\x20\x34\x2e\x37\x39\x39\x39\x39\x39\x39\x36\x2c\x2d\x37\x2e\x35\ +\x37\x35\x20\x34\x2e\x37\x39\x39\x39\x39\x39\x39\x36\x2c\x2d\x31\ +\x32\x2e\x30\x35\x20\x30\x2c\x2d\x30\x2e\x37\x35\x30\x30\x30\x30\ +\x31\x20\x2d\x30\x2e\x31\x35\x2c\x2d\x31\x2e\x34\x37\x35\x30\x30\ +\x30\x31\x20\x2d\x30\x2e\x34\x35\x2c\x2d\x32\x2e\x31\x37\x35\x30\ +\x30\x30\x31\x20\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x39\x20\x30\ +\x2e\x37\x2c\x2d\x31\x2e\x38\x35\x30\x30\x30\x30\x32\x20\x30\x2e\ +\x37\x2c\x2d\x32\x2e\x38\x37\x35\x30\x30\x30\x32\x20\x30\x2c\x2d\ +\x30\x2e\x39\x37\x35\x20\x2d\x30\x2e\x32\x35\x2c\x2d\x31\x2e\x39\ +\x32\x35\x20\x2d\x30\x2e\x37\x2c\x2d\x32\x2e\x37\x37\x35\x20\x30\ +\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x39\x20\x30\x2e\x37\x2c\x2d\x31\ +\x2e\x38\x32\x35\x30\x30\x30\x30\x31\x20\x30\x2e\x37\x2c\x2d\x32\ +\x2e\x38\x35\x30\x30\x30\x30\x30\x31\x20\x30\x2c\x2d\x30\x2e\x38\ +\x32\x34\x39\x39\x39\x39\x39\x20\x2d\x30\x2e\x33\x32\x35\x2c\x2d\ +\x31\x2e\x35\x39\x39\x39\x39\x39\x39\x39\x20\x2d\x30\x2e\x38\x35\ +\x2c\x2d\x32\x2e\x32\x32\x34\x39\x39\x39\x39\x39\x20\x30\x2e\x36\ +\x2c\x2d\x31\x2e\x30\x35\x20\x31\x2e\x30\x32\x35\x2c\x2d\x32\x2e\ +\x31\x35\x20\x31\x2e\x30\x32\x35\x2c\x2d\x33\x2e\x34\x20\x30\x2c\ +\x2d\x31\x2e\x35\x35\x20\x2d\x30\x2e\x34\x2c\x2d\x33\x2e\x30\x35\ +\x20\x2d\x31\x2e\x30\x35\x2c\x2d\x34\x2e\x34\x34\x39\x39\x39\x39\ +\x37\x20\x2d\x30\x2e\x31\x2c\x2d\x30\x2e\x31\x37\x35\x20\x2d\x30\ +\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x2d\x30\x2e\x34\ +\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x2d\x30\x2e\x33\x2c\x30\x20\ +\x2d\x30\x2e\x36\x2c\x30\x2e\x32\x35\x20\x2d\x30\x2e\x35\x32\x35\ +\x2c\x30\x2e\x36\x32\x34\x39\x39\x39\x37\x20\x30\x2e\x36\x35\x2c\ +\x31\x2e\x32\x37\x35\x20\x31\x2e\x30\x35\x2c\x32\x2e\x36\x37\x35\ +\x20\x31\x2e\x30\x35\x2c\x34\x2e\x31\x20\x30\x2c\x32\x2e\x33\x37\ +\x35\x20\x2d\x32\x2e\x34\x32\x35\x2c\x34\x2e\x36\x32\x35\x20\x2d\ +\x34\x2e\x32\x34\x39\x39\x39\x39\x39\x36\x2c\x36\x2e\x31\x37\x34\ +\x39\x39\x39\x39\x39\x20\x6c\x20\x30\x2c\x2d\x32\x2e\x38\x32\x34\ +\x39\x39\x39\x39\x39\x20\x2d\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\ +\x32\x35\x2e\x30\x30\x30\x30\x30\x30\x33\x20\x30\x2e\x33\x35\x2c\ +\x30\x20\x7a\x20\x6d\x20\x30\x2c\x2d\x31\x30\x2e\x39\x35\x20\x30\ +\x2c\x2d\x30\x2e\x33\x20\x63\x20\x30\x2c\x2d\x32\x2e\x39\x32\x35\ +\x30\x30\x30\x31\x20\x32\x2e\x32\x34\x39\x39\x39\x39\x39\x36\x2c\ +\x2d\x35\x2e\x31\x32\x35\x30\x30\x30\x33\x20\x33\x2e\x37\x34\x39\ +\x39\x39\x39\x39\x36\x2c\x2d\x37\x2e\x35\x35\x30\x30\x30\x30\x33\ +\x20\x30\x2e\x32\x32\x35\x2c\x30\x2e\x35\x32\x35\x20\x30\x2e\x33\ +\x32\x35\x2c\x31\x2e\x31\x32\x35\x20\x30\x2e\x33\x32\x35\x2c\x31\ +\x2e\x37\x20\x30\x2c\x32\x2e\x33\x35\x30\x30\x30\x30\x32\x20\x2d\ +\x32\x2e\x33\x32\x35\x2c\x34\x2e\x35\x37\x35\x30\x30\x30\x32\x20\ +\x2d\x34\x2e\x30\x37\x34\x39\x39\x39\x39\x36\x2c\x36\x2e\x31\x35\ +\x30\x30\x30\x30\x33\x20\x7a\x20\x6d\x20\x30\x2c\x2d\x35\x2e\x36\ +\x30\x30\x30\x30\x30\x33\x20\x30\x2c\x2d\x30\x2e\x33\x32\x35\x20\ +\x63\x20\x30\x2c\x2d\x32\x2e\x38\x20\x32\x2e\x31\x34\x39\x39\x39\ +\x39\x39\x36\x2c\x2d\x34\x2e\x39\x32\x35\x30\x30\x30\x30\x31\x20\ +\x33\x2e\x36\x37\x34\x39\x39\x39\x39\x36\x2c\x2d\x37\x2e\x32\x32\ +\x35\x20\x30\x2e\x32\x37\x35\x2c\x30\x2e\x34\x20\x30\x2e\x34\x2c\ +\x30\x2e\x38\x37\x34\x39\x39\x39\x39\x39\x20\x30\x2e\x34\x2c\x31\ +\x2e\x33\x37\x34\x39\x39\x39\x39\x39\x20\x30\x2c\x32\x2e\x33\x35\ +\x30\x30\x30\x30\x30\x31\x20\x2d\x32\x2e\x33\x32\x35\x2c\x34\x2e\ +\x36\x30\x30\x30\x30\x30\x30\x31\x20\x2d\x34\x2e\x30\x37\x34\x39\ +\x39\x39\x39\x36\x2c\x36\x2e\x31\x37\x35\x30\x30\x30\x30\x31\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x34\x31\x39\x30\x22\x0a\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\x3c\ +\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x07\x82\ \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\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\ +\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\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ -\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ -\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ -\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x33\x34\x36\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\x34\x20\x72\x39\x39\x33\x39\ -\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ -\x63\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\x34\x2e\ -\x73\x76\x67\x22\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\x33\x35\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\x64\ -\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\ -\x73\x33\x33\x35\x32\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\ -\x20\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\ -\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ -\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ -\x3d\x22\x31\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\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\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ -\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x33\x35\x30\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\x7a\x6f\x6f\x6d\x3d\x22\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x35\x37\ -\x2e\x39\x35\x31\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\x30\x35\x2e\x36\ -\x36\x34\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\x31\x39\x32\ -\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\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\ -\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\x73\ -\x76\x67\x33\x33\x34\x36\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\ -\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\x2e\x33\x35\x2c\x35\x20\x63\ -\x20\x32\x2e\x33\x32\x35\x2c\x31\x2e\x33\x32\x35\x20\x35\x2e\x34\ -\x2c\x33\x2e\x33\x37\x35\x20\x35\x2e\x34\x2c\x36\x20\x30\x2c\x30\ -\x2e\x36\x32\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x31\x2e\x32\x35\ -\x20\x2d\x30\x2e\x33\x35\x2c\x31\x2e\x38\x32\x35\x20\x43\x20\x33\ -\x2e\x34\x2c\x31\x30\x2e\x35\x35\x20\x30\x2e\x33\x35\x2c\x38\x2e\ -\x37\x35\x20\x30\x2e\x33\x35\x2c\x35\x2e\x36\x32\x35\x20\x56\x20\ -\x35\x20\x7a\x20\x6d\x20\x36\x2e\x37\x32\x35\x2c\x31\x31\x2e\x36\ -\x32\x35\x20\x63\x20\x30\x2c\x2d\x31\x2e\x31\x20\x2d\x30\x2e\x34\ -\x2c\x2d\x32\x2e\x30\x35\x20\x2d\x30\x2e\x39\x37\x35\x2c\x2d\x32\ -\x2e\x39\x20\x43\x20\x36\x2e\x35\x2c\x31\x32\x2e\x38\x37\x35\x20\ -\x36\x2e\x37\x32\x35\x2c\x31\x31\x2e\x39\x35\x20\x36\x2e\x37\x32\ -\x35\x2c\x31\x31\x20\x36\x2e\x37\x32\x35\x2c\x36\x2e\x34\x35\x20\ -\x30\x2e\x33\x35\x2c\x34\x2e\x35\x35\x20\x30\x2e\x33\x35\x2c\x30\ -\x20\x48\x20\x30\x20\x76\x20\x31\x32\x2e\x35\x20\x68\x20\x30\x2e\ -\x33\x35\x20\x76\x20\x2d\x31\x2e\x38\x37\x35\x20\x63\x20\x32\x2e\ -\x34\x37\x35\x2c\x31\x2e\x32\x37\x35\x20\x35\x2e\x37\x35\x2c\x33\ -\x2e\x33\x20\x35\x2e\x37\x35\x2c\x36\x20\x43\x20\x36\x2e\x31\x2c\ -\x31\x37\x2e\x31\x37\x35\x20\x35\x2e\x39\x37\x35\x2c\x31\x37\x2e\ -\x37\x20\x35\x2e\x37\x37\x35\x2c\x31\x38\x2e\x32\x20\x35\x2e\x37\ -\x2c\x31\x38\x2e\x35\x37\x35\x20\x36\x2c\x31\x38\x2e\x38\x32\x35\ -\x20\x36\x2e\x33\x2c\x31\x38\x2e\x38\x32\x35\x20\x63\x20\x30\x2e\ -\x37\x2c\x30\x20\x30\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x36\x20\x30\ -\x2e\x37\x37\x35\x2c\x2d\x32\x2e\x32\x20\x7a\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x34\x38\x22\x0a\ -\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\ -\x00\x00\x06\xda\ +\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\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x33\x31\x22\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\x34\x33\ +\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ +\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ +\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ +\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ +\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\ +\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x33\x37\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x33\x2e\x36\x37\x35\x2c\x32\x32\x2e\x32\ +\x38\x35\x35\x39\x33\x20\x31\x2e\x35\x32\x35\x2c\x2d\x38\x2e\x32\ +\x35\x20\x63\x20\x2d\x30\x2e\x39\x37\x35\x2c\x30\x2e\x33\x35\x20\ +\x2d\x31\x2e\x39\x37\x35\x2c\x30\x2e\x36\x35\x20\x2d\x33\x2e\x30\ +\x32\x35\x2c\x30\x2e\x36\x35\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\ +\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\x32\x2e\ +\x31\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\ +\x30\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x37\ +\x37\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\ +\x20\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\ +\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x35\ +\x2c\x31\x2e\x35\x20\x30\x2e\x38\x37\x35\x2c\x31\x2e\x35\x20\x30\ +\x2e\x34\x35\x2c\x30\x20\x31\x2e\x35\x2c\x2d\x31\x2e\x34\x35\x20\ +\x31\x2e\x36\x2c\x2d\x31\x2e\x39\x32\x35\x20\x4c\x20\x36\x2e\x33\ +\x35\x2c\x37\x2e\x38\x31\x30\x35\x39\x33\x33\x20\x63\x20\x2d\x30\ +\x2e\x39\x35\x2c\x30\x2e\x33\x32\x35\x20\x2d\x31\x2e\x39\x2c\x30\ +\x2e\x36\x32\x35\x20\x2d\x32\x2e\x39\x2c\x30\x2e\x36\x32\x35\x20\ +\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\x32\x2c\x2d\x30\x2e\ +\x38\x35\x20\x2d\x32\x2e\x32\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\ +\x39\x37\x35\x20\x30\x2e\x38\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\ +\x2e\x38\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\ +\x20\x31\x2e\x32\x2c\x30\x2e\x34\x20\x31\x2e\x34\x2c\x31\x20\x30\ +\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x37\x35\x2c\x31\x2e\ +\x35\x20\x30\x2e\x39\x2c\x31\x2e\x35\x20\x30\x2e\x34\x32\x35\x2c\ +\x30\x20\x31\x2e\x33\x37\x35\x2c\x2d\x31\x2e\x34\x20\x31\x2e\x34\ +\x35\x2c\x2d\x31\x2e\x38\x37\x35\x20\x6c\x20\x30\x2e\x37\x2c\x2d\ +\x33\x2e\x37\x20\x63\x20\x2d\x30\x2e\x39\x2c\x30\x2e\x33\x32\x35\ +\x20\x2d\x31\x2e\x38\x35\x2c\x30\x2e\x36\x20\x2d\x32\x2e\x38\x2c\ +\x30\x2e\x36\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\x31\ +\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\x32\x2e\x31\x37\x35\x2c\ +\x2d\x32\x2e\x30\x30\x30\x30\x30\x30\x30\x32\x20\x30\x2c\x2d\x30\ +\x2e\x39\x37\x35\x20\x30\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\x37\ +\x34\x39\x39\x39\x39\x38\x20\x31\x2e\x37\x37\x35\x2c\x2d\x31\x2e\ +\x37\x37\x34\x39\x39\x39\x39\x38\x20\x30\x2e\x36\x35\x2c\x30\x20\ +\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\x2c\ +\x30\x2e\x39\x39\x39\x39\x39\x39\x39\x38\x20\x30\x2e\x32\x35\x2c\ +\x30\x2e\x37\x20\x30\x2e\x31\x35\x2c\x31\x2e\x35\x20\x30\x2e\x38\ +\x37\x35\x2c\x31\x2e\x35\x20\x30\x2e\x34\x2c\x30\x20\x31\x2e\x32\ +\x37\x35\x2c\x2d\x31\x2e\x33\x35\x20\x31\x2e\x33\x35\x2c\x2d\x31\ +\x2e\x38\x20\x6c\x20\x30\x2e\x37\x2c\x2d\x33\x2e\x37\x34\x39\x39\ +\x39\x39\x39\x38\x20\x63\x20\x2d\x30\x2e\x38\x37\x35\x2c\x30\x2e\ +\x33\x20\x2d\x31\x2e\x37\x37\x35\x2c\x30\x2e\x35\x37\x35\x20\x2d\ +\x32\x2e\x37\x2c\x30\x2e\x35\x37\x35\x20\x2d\x31\x2e\x31\x35\x2c\ +\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\ +\x32\x2e\x31\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\x39\x37\ +\x35\x20\x30\x2e\x38\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x38\ +\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\ +\x2e\x32\x2c\x30\x2e\x34\x20\x31\x2e\x34\x2c\x31\x20\x30\x2e\x32\ +\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x37\x35\x2c\x31\x2e\x35\x20\ +\x30\x2e\x39\x2c\x31\x2e\x35\x20\x30\x2e\x34\x2c\x30\x20\x31\x2e\ +\x31\x35\x2c\x2d\x31\x2e\x33\x32\x35\x20\x31\x2e\x32\x32\x35\x2c\ +\x2d\x31\x2e\x37\x35\x20\x6c\x20\x30\x2e\x37\x2c\x2d\x33\x2e\x37\ +\x37\x35\x30\x30\x30\x33\x20\x63\x20\x2d\x30\x2e\x38\x32\x35\x2c\ +\x30\x2e\x33\x20\x2d\x31\x2e\x37\x2c\x30\x2e\x35\x35\x20\x2d\x32\ +\x2e\x35\x37\x35\x2c\x30\x2e\x35\x35\x20\x2d\x31\x2e\x31\x35\x2c\ +\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\ +\x32\x2e\x31\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\x39\x37\ +\x35\x20\x30\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\ +\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\ +\x2c\x30\x20\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\ +\x32\x35\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\ +\x31\x35\x2c\x31\x2e\x35\x20\x30\x2e\x38\x37\x35\x2c\x31\x2e\x35\ +\x20\x30\x2e\x34\x2c\x30\x20\x30\x2e\x39\x37\x35\x2c\x2d\x31\x2e\ +\x33\x37\x35\x20\x31\x2e\x31\x32\x35\x2c\x2d\x31\x2e\x37\x35\x20\ +\x30\x2e\x31\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\x35\x2c\x2d\ +\x30\x2e\x32\x37\x35\x20\x30\x2e\x36\x2c\x30\x20\x6c\x20\x2d\x35\ +\x2e\x39\x37\x35\x2c\x33\x35\x2e\x36\x32\x35\x20\x63\x20\x2d\x30\ +\x2e\x31\x37\x35\x2c\x30\x2e\x31\x35\x20\x2d\x30\x2e\x34\x2c\x30\ +\x2e\x32\x32\x35\x20\x2d\x30\x2e\x36\x2c\x30\x2e\x32\x32\x35\x20\ +\x2d\x30\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\ +\x2e\x30\x37\x35\x20\x2d\x30\x2e\x36\x2c\x2d\x30\x2e\x32\x32\x35\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x33\x34\x33\x33\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ +\x00\x00\x0d\x67\ \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\ @@ -4766,405 +4662,406 @@ qt_resource_data = b"\ \x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ \x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ \x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x33\x33\x37\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x32\x39\x38\x33\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\ \x34\x20\x72\x39\x39\x33\x39\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\ -\x73\x74\x32\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\ -\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ -\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ -\x3d\x22\x31\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\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\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ -\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x31\x36\x30\x22\x0a\x20\x20\ +\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x62\x6c\ +\x6f\x63\x6b\x45\x6e\x64\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\ +\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\ +\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\ +\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\ +\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x36\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\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x37\x37\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ -\x22\x32\x30\x30\x2e\x37\x38\x31\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\x31\ -\x33\x2e\x30\x36\x30\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\ -\x31\x39\x32\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\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\ -\x3d\x22\x30\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\x73\x76\x67\x33\x33\x37\x31\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\x33\x37\x39\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ -\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\ -\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\ -\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ -\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ -\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\ -\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x64\x65\ -\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ -\x33\x33\x37\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x30\x2e\x32\x33\ -\x34\x33\x32\x32\x2c\x33\x2e\x39\x33\x32\x35\x33\x32\x34\x20\x68\ -\x20\x2d\x38\x2e\x39\x37\x35\x20\x63\x20\x2d\x30\x2e\x31\x2c\x30\ -\x20\x2d\x30\x2e\x32\x2c\x2d\x30\x2e\x31\x20\x2d\x30\x2e\x32\x2c\ -\x2d\x30\x2e\x32\x20\x56\x20\x30\x2e\x32\x33\x32\x35\x33\x32\x34\ -\x33\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x31\x2c\x2d\ -\x30\x2e\x32\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x68\x20\x38\ -\x2e\x39\x37\x35\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\x32\ -\x2c\x30\x2e\x31\x20\x30\x2e\x32\x2c\x30\x2e\x32\x20\x56\x20\x33\ -\x2e\x37\x33\x32\x35\x33\x32\x34\x20\x63\x20\x30\x2c\x30\x2e\x31\ -\x20\x2d\x30\x2e\x31\x2c\x30\x2e\x32\x20\x2d\x30\x2e\x32\x2c\x30\ -\x2e\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x61\x74\x68\x33\x33\x37\x33\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x09\xd7\ +\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x33\x34\x30\x30\x37\x30\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x78\x3d\x22\x33\x38\x2e\x35\x36\x34\x37\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ +\x3d\x22\x39\x39\x31\x2e\x35\x32\x34\x38\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x78\x3d\x22\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x32\x39\x38\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\x39\x39\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x64\x65\x66\x73\x32\x39\x38\x39\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x34\x30\x70\x78\x3b\x66\x6f\ +\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\ +\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\x6c\x69\x6e\x65\x2d\ +\x68\x65\x69\x67\x68\x74\x3a\x31\x32\x35\x25\x3b\x6c\x65\x74\x74\ +\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x77\ +\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\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\x66\x6f\x6e\x74\x2d\x66\x61\x6d\ +\x69\x6c\x79\x3a\x27\x38\x2d\x62\x69\x74\x20\x4c\x69\x6d\x69\x74\ +\x20\x4f\x20\x42\x52\x4b\x27\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\x38\x2d\x62\x69\x74\x20\x4c\x69\x6d\x69\ +\x74\x20\x4f\x20\x42\x52\x4b\x27\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x74\x65\x78\x74\x33\x37\x33\x39\x22\x0a\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\x31\x2e\x34\x34\x31\x36\x36\ +\x35\x2c\x31\x34\x2e\x38\x38\x37\x34\x34\x34\x29\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\ +\x6c\x79\x3a\x57\x65\x61\x76\x65\x72\x20\x42\x52\x4b\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\x57\x65\x61\x76\x65\ +\x72\x20\x42\x52\x4b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x6d\x20\x31\x38\x2e\x36\x37\x32\x38\x33\x39\x2c\x32\x2e\x30\ +\x30\x34\x31\x30\x39\x32\x20\x63\x20\x2d\x31\x2e\x33\x32\x32\x33\ +\x34\x35\x2c\x30\x2e\x36\x36\x34\x37\x34\x35\x33\x20\x30\x2e\x37\ +\x39\x30\x33\x32\x34\x2c\x31\x2e\x32\x31\x34\x38\x30\x36\x39\x20\ +\x30\x2e\x34\x2c\x31\x2e\x36\x38\x20\x2d\x31\x2e\x30\x32\x38\x32\ +\x39\x32\x2c\x2d\x30\x2e\x31\x35\x39\x32\x30\x32\x35\x20\x2d\x32\ +\x2e\x35\x37\x33\x35\x38\x2c\x2d\x31\x2e\x30\x36\x37\x32\x34\x33\ +\x35\x20\x2d\x32\x2e\x31\x36\x31\x32\x35\x31\x2c\x2d\x32\x2e\x33\ +\x35\x36\x38\x37\x37\x37\x20\x30\x2e\x34\x33\x34\x34\x38\x34\x2c\ +\x2d\x31\x2e\x32\x38\x34\x36\x37\x30\x32\x35\x20\x31\x2e\x37\x39\ +\x39\x33\x33\x39\x2c\x2d\x31\x2e\x37\x30\x38\x31\x30\x35\x38\x39\ +\x20\x32\x2e\x37\x32\x38\x37\x34\x39\x2c\x2d\x32\x2e\x35\x32\x35\ +\x36\x32\x33\x20\x30\x2e\x36\x37\x39\x35\x35\x39\x2c\x2d\x31\x2e\ +\x30\x33\x33\x30\x37\x34\x32\x20\x2d\x31\x2e\x33\x37\x33\x36\x33\ +\x2c\x2d\x31\x2e\x31\x36\x32\x39\x37\x30\x35\x20\x2d\x31\x2e\x36\ +\x39\x37\x35\x2c\x2d\x32\x2e\x30\x34\x37\x34\x39\x38\x38\x20\x2d\ +\x31\x2e\x36\x35\x33\x36\x34\x32\x2c\x2d\x31\x2e\x38\x33\x37\x31\ +\x33\x37\x38\x20\x2d\x31\x2e\x33\x33\x35\x31\x38\x36\x2c\x2d\x34\ +\x2e\x37\x37\x32\x34\x36\x35\x33\x20\x30\x2e\x32\x33\x36\x35\x39\ +\x38\x2c\x2d\x36\x2e\x35\x34\x35\x34\x36\x31\x33\x20\x30\x2e\x36\ +\x36\x38\x30\x39\x34\x2c\x2d\x31\x2e\x30\x30\x39\x37\x38\x30\x34\ +\x20\x31\x2e\x37\x38\x36\x35\x39\x38\x2c\x2d\x31\x2e\x39\x32\x31\ +\x35\x35\x34\x34\x20\x31\x2e\x36\x37\x30\x39\x30\x32\x2c\x2d\x33\ +\x2e\x32\x34\x34\x35\x33\x33\x34\x20\x2d\x30\x2e\x31\x37\x38\x31\ +\x39\x33\x2c\x2d\x31\x2e\x33\x32\x38\x38\x32\x36\x20\x2d\x31\x2e\ +\x36\x37\x34\x31\x38\x2c\x2d\x31\x2e\x37\x30\x36\x34\x33\x35\x20\ +\x2d\x32\x2e\x32\x35\x39\x39\x39\x39\x2c\x2d\x32\x2e\x37\x39\x32\ +\x34\x39\x39\x20\x2d\x31\x2e\x33\x30\x37\x34\x35\x35\x2c\x2d\x31\ +\x2e\x39\x31\x33\x34\x34\x36\x20\x2d\x30\x2e\x38\x30\x30\x38\x36\ +\x38\x2c\x2d\x34\x2e\x35\x34\x35\x34\x38\x34\x20\x30\x2e\x36\x37\ +\x37\x39\x36\x32\x2c\x2d\x36\x2e\x32\x30\x31\x34\x35\x35\x20\x30\ +\x2e\x36\x39\x31\x33\x38\x38\x2c\x2d\x31\x2e\x30\x32\x34\x37\x35\ +\x31\x20\x31\x2e\x38\x39\x38\x34\x32\x37\x2c\x2d\x32\x2e\x30\x33\ +\x37\x31\x38\x32\x20\x31\x2e\x35\x31\x34\x35\x33\x36\x2c\x2d\x33\ +\x2e\x34\x30\x36\x30\x33\x34\x20\x2d\x30\x2e\x32\x38\x30\x33\x34\ +\x2c\x2d\x31\x2e\x33\x30\x32\x31\x39\x35\x20\x2d\x31\x2e\x37\x38\ +\x30\x38\x37\x39\x2c\x2d\x31\x2e\x33\x33\x30\x39\x39\x38\x20\x2d\ +\x32\x2e\x35\x35\x39\x35\x32\x39\x2c\x2d\x32\x2e\x31\x36\x38\x39\ +\x30\x36\x20\x2d\x30\x2e\x39\x34\x34\x32\x37\x36\x2c\x2d\x30\x2e\ +\x39\x37\x38\x31\x30\x32\x20\x30\x2e\x30\x38\x32\x34\x31\x2c\x2d\ +\x32\x2e\x33\x30\x36\x35\x36\x34\x20\x30\x2e\x39\x37\x34\x39\x37\ +\x34\x2c\x2d\x32\x2e\x38\x37\x36\x39\x35\x31\x20\x30\x2e\x35\x35\ +\x32\x30\x32\x39\x2c\x2d\x30\x2e\x34\x32\x33\x34\x39\x36\x20\x31\ +\x2e\x32\x33\x38\x33\x39\x37\x2c\x2d\x30\x2e\x37\x31\x31\x32\x36\ +\x20\x31\x2e\x36\x36\x32\x30\x35\x36\x2c\x2d\x31\x2e\x32\x36\x39\ +\x31\x34\x35\x20\x2d\x30\x2e\x30\x34\x32\x34\x37\x2c\x2d\x30\x2e\ +\x34\x39\x38\x34\x39\x36\x20\x2d\x31\x2e\x37\x33\x36\x31\x35\x33\ +\x2c\x2d\x31\x2e\x34\x39\x31\x37\x39\x38\x20\x2d\x30\x2e\x33\x38\ +\x30\x34\x36\x38\x2c\x2d\x31\x2e\x31\x33\x39\x36\x39\x38\x20\x31\ +\x2e\x33\x39\x30\x30\x35\x35\x2c\x30\x2e\x33\x32\x33\x33\x35\x32\ +\x20\x32\x2e\x34\x37\x35\x35\x31\x36\x2c\x31\x2e\x39\x34\x37\x35\ +\x32\x37\x20\x31\x2e\x32\x31\x31\x30\x39\x33\x2c\x33\x2e\x31\x30\ +\x32\x38\x31\x36\x20\x2d\x30\x2e\x36\x38\x36\x36\x37\x2c\x30\x2e\ +\x38\x30\x37\x36\x39\x36\x20\x2d\x31\x2e\x38\x34\x34\x33\x37\x2c\ +\x31\x2e\x30\x38\x36\x32\x32\x33\x20\x2d\x32\x2e\x34\x34\x35\x36\ +\x32\x34\x2c\x31\x2e\x39\x37\x34\x33\x38\x20\x30\x2e\x36\x31\x34\ +\x33\x33\x31\x2c\x31\x2e\x30\x38\x36\x32\x39\x35\x20\x32\x2e\x32\ +\x37\x35\x33\x34\x2c\x31\x2e\x35\x36\x38\x33\x38\x38\x20\x32\x2e\ +\x36\x38\x31\x32\x34\x38\x2c\x32\x2e\x39\x37\x35\x34\x37\x20\x30\ +\x2e\x38\x35\x35\x35\x30\x36\x2c\x31\x2e\x39\x34\x33\x37\x39\x31\ +\x20\x30\x2e\x30\x35\x31\x38\x33\x2c\x34\x2e\x31\x35\x31\x31\x30\ +\x33\x20\x2d\x31\x2e\x32\x36\x39\x32\x35\x31\x2c\x35\x2e\x36\x37\ +\x31\x31\x39\x37\x20\x2d\x30\x2e\x36\x37\x35\x34\x34\x35\x2c\x30\ +\x2e\x39\x34\x36\x32\x30\x33\x20\x2d\x31\x2e\x37\x35\x39\x30\x36\ +\x37\x2c\x31\x2e\x39\x33\x37\x31\x37\x37\x20\x2d\x31\x2e\x33\x33\ +\x34\x34\x39\x38\x2c\x33\x2e\x32\x32\x30\x38\x32\x39\x20\x30\x2e\ +\x33\x36\x33\x39\x31\x38\x2c\x31\x2e\x31\x38\x36\x39\x30\x31\x20\ +\x31\x2e\x37\x35\x31\x34\x39\x35\x2c\x31\x2e\x35\x34\x36\x36\x37\ +\x38\x20\x32\x2e\x32\x38\x39\x39\x39\x38\x2c\x32\x2e\x36\x32\x39\ +\x39\x39\x38\x20\x31\x2e\x32\x34\x37\x39\x32\x36\x2c\x31\x2e\x39\ +\x31\x34\x36\x30\x36\x20\x30\x2e\x35\x39\x37\x39\x31\x33\x2c\x34\ +\x2e\x34\x36\x33\x32\x30\x32\x33\x20\x2d\x30\x2e\x38\x32\x31\x36\ +\x32\x34\x2c\x36\x2e\x30\x39\x31\x38\x37\x38\x20\x2d\x30\x2e\x36\ +\x39\x36\x31\x37\x2c\x31\x2e\x30\x31\x34\x34\x38\x38\x20\x2d\x31\ +\x2e\x39\x30\x33\x37\x39\x37\x2c\x32\x2e\x30\x32\x39\x31\x30\x37\ +\x38\x20\x2d\x31\x2e\x34\x36\x38\x33\x37\x34\x2c\x33\x2e\x33\x39\ +\x38\x31\x31\x35\x31\x20\x30\x2e\x32\x33\x32\x35\x34\x32\x2c\x30\ +\x2e\x39\x37\x30\x31\x37\x33\x39\x20\x31\x2e\x31\x39\x30\x39\x36\ +\x32\x2c\x31\x2e\x32\x38\x36\x38\x32\x39\x31\x20\x31\x2e\x39\x38\ +\x35\x37\x38\x2c\x31\x2e\x36\x36\x35\x36\x32\x33\x37\x20\x31\x2e\ +\x33\x35\x32\x39\x36\x33\x2c\x30\x2e\x35\x34\x37\x30\x33\x34\x38\ +\x20\x31\x2e\x30\x38\x39\x38\x35\x38\x2c\x32\x2e\x33\x30\x39\x37\ +\x38\x34\x35\x31\x20\x30\x2e\x30\x34\x37\x31\x33\x2c\x33\x2e\x30\ +\x34\x31\x34\x36\x38\x33\x34\x20\x43\x20\x31\x39\x2e\x37\x39\x35\ +\x36\x36\x33\x2c\x31\x2e\x32\x35\x36\x35\x37\x39\x31\x20\x31\x39\ +\x2e\x32\x33\x33\x37\x33\x37\x2c\x31\x2e\x36\x32\x39\x37\x32\x36\ +\x34\x20\x31\x38\x2e\x36\x37\x32\x38\x34\x2c\x32\x2e\x30\x30\x34\ +\x31\x30\x39\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x34\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ +\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ +\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\ +\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x06\x5a\ \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\ +\x6e\x6f\x22\x3f\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\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x33\x30\x37\x39\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\ -\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x61\x63\ -\x63\x69\x64\x65\x6e\x74\x61\x6c\x73\x44\x6f\x75\x62\x6c\x65\x73\ -\x68\x61\x72\x70\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\ -\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ -\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\ +\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ +\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ +\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ +\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x35\x30\x35\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\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\x73\x74\x4d\x61\x78\x69\x6d\x61\ +\x2e\x73\x76\x67\x22\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\x35\x31\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\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x35\x31\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\ +\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\ \x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\ -\x65\x3d\x22\x31\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\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\ -\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\ -\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x31\x35\x32\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\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\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ +\x64\x74\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ +\x33\x35\x30\x39\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\x7a\x6f\x6f\x6d\x3d\x22\ -\x32\x31\x2e\x33\x36\x30\x32\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x36\x2e\ -\x35\x35\x36\x37\x39\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\x30\x33\x2e\ -\x38\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x31\x39\x32\ -\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\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\ -\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\x73\ -\x76\x67\x33\x30\x37\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\x33\x30\x38\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\x64\x65\x66\x73\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x30\x38\ -\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x32\x2e\x38\x38\x35\x31\x31\ -\x35\x39\x2c\x30\x2e\x30\x30\x36\x32\x31\x38\x32\x38\x20\x63\x20\ -\x30\x2e\x35\x37\x35\x2c\x30\x2e\x35\x37\x35\x20\x31\x2e\x34\x35\ -\x2c\x30\x2e\x37\x20\x32\x2e\x32\x37\x35\x30\x30\x30\x30\x31\x2c\ -\x30\x2e\x37\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\x32\x2c\x30\x2e\ -\x31\x20\x30\x2e\x32\x2c\x30\x2e\x32\x20\x6c\x20\x30\x2e\x32\x32\ -\x35\x2c\x32\x2e\x32\x32\x35\x30\x30\x30\x30\x32\x20\x63\x20\x30\ -\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x30\x37\x35\x2c\x30\x2e\x32\x20\ -\x2d\x30\x2e\x31\x37\x35\x2c\x30\x2e\x32\x20\x68\x20\x2d\x30\x2e\ -\x30\x32\x35\x20\x6c\x20\x2d\x32\x2e\x32\x32\x35\x30\x30\x30\x30\ -\x31\x2c\x2d\x30\x2e\x32\x32\x35\x20\x63\x20\x2d\x30\x2e\x31\x2c\ -\x30\x20\x2d\x30\x2e\x32\x2c\x2d\x30\x2e\x31\x20\x2d\x30\x2e\x32\ -\x2c\x2d\x30\x2e\x32\x20\x30\x2c\x2d\x30\x2e\x38\x32\x35\x20\x2d\ -\x30\x2e\x31\x32\x35\x2c\x2d\x31\x2e\x37\x20\x2d\x30\x2e\x37\x2c\ -\x2d\x32\x2e\x32\x37\x35\x30\x30\x30\x30\x32\x20\x2d\x30\x2e\x35\ -\x37\x35\x2c\x30\x2e\x35\x37\x35\x30\x30\x30\x30\x32\x20\x2d\x30\ -\x2e\x37\x2c\x31\x2e\x34\x35\x30\x30\x30\x30\x30\x32\x20\x2d\x30\ -\x2e\x37\x2c\x32\x2e\x32\x37\x35\x30\x30\x30\x30\x32\x20\x30\x2c\ -\x30\x2e\x31\x20\x2d\x30\x2e\x31\x2c\x30\x2e\x32\x20\x2d\x30\x2e\ -\x32\x2c\x30\x2e\x32\x20\x6c\x20\x2d\x32\x2e\x32\x32\x35\x2c\x30\ -\x2e\x32\x32\x35\x20\x68\x20\x2d\x30\x2e\x30\x32\x35\x20\x63\x20\ -\x2d\x30\x2e\x31\x2c\x30\x20\x2d\x30\x2e\x31\x37\x35\x2c\x2d\x30\ -\x2e\x31\x20\x2d\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x32\x20\x6c\ -\x20\x30\x2e\x32\x32\x35\x2c\x2d\x32\x2e\x32\x32\x35\x30\x30\x30\ -\x30\x32\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x31\x2c\ -\x2d\x30\x2e\x32\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x30\x2e\ -\x38\x32\x35\x2c\x30\x20\x31\x2e\x37\x2c\x2d\x30\x2e\x31\x32\x35\ -\x20\x32\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x37\x20\x2d\x30\x2e\x35\ -\x37\x35\x2c\x2d\x30\x2e\x35\x37\x35\x20\x2d\x31\x2e\x34\x35\x2c\ -\x2d\x30\x2e\x37\x20\x2d\x32\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x37\ -\x20\x2d\x30\x2e\x31\x2c\x30\x20\x2d\x30\x2e\x32\x2c\x2d\x30\x2e\ -\x31\x20\x2d\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x6c\x20\x2d\x30\ -\x2e\x32\x32\x35\x2c\x2d\x32\x2e\x32\x32\x34\x39\x39\x39\x39\x38\ -\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x30\x37\x35\x2c\ -\x2d\x30\x2e\x32\x20\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x32\x20\ -\x68\x20\x30\x2e\x30\x32\x35\x20\x6c\x20\x32\x2e\x32\x32\x35\x2c\ -\x30\x2e\x32\x32\x35\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\ -\x32\x2c\x30\x2e\x31\x20\x30\x2e\x32\x2c\x30\x2e\x32\x20\x30\x2c\ -\x30\x2e\x38\x32\x35\x20\x30\x2e\x31\x32\x35\x2c\x31\x2e\x37\x20\ -\x30\x2e\x37\x2c\x32\x2e\x32\x37\x34\x39\x39\x39\x39\x38\x20\x30\ -\x2e\x35\x37\x35\x2c\x2d\x30\x2e\x35\x37\x34\x39\x39\x39\x39\x38\ -\x20\x30\x2e\x37\x2c\x2d\x31\x2e\x34\x34\x39\x39\x39\x39\x39\x38\ -\x20\x30\x2e\x37\x2c\x2d\x32\x2e\x32\x37\x34\x39\x39\x39\x39\x38\ -\x20\x30\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x31\x2c\x2d\x30\x2e\x32\ -\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x6c\x20\x32\x2e\x32\x32\ -\x35\x30\x30\x30\x30\x31\x2c\x2d\x30\x2e\x32\x32\x35\x20\x68\x20\ -\x30\x2e\x30\x32\x35\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\ -\x31\x37\x35\x2c\x30\x2e\x31\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\ -\x32\x20\x6c\x20\x2d\x30\x2e\x32\x32\x35\x2c\x32\x2e\x32\x32\x34\ -\x39\x39\x39\x39\x38\x20\x63\x20\x30\x2c\x30\x2e\x31\x20\x2d\x30\ -\x2e\x31\x2c\x30\x2e\x32\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x32\x20\ -\x2d\x30\x2e\x38\x32\x35\x30\x30\x30\x30\x31\x2c\x30\x20\x2d\x31\ -\x2e\x37\x30\x30\x30\x30\x30\x30\x31\x2c\x30\x2e\x31\x32\x35\x20\ -\x2d\x32\x2e\x32\x37\x35\x30\x30\x30\x30\x31\x2c\x30\x2e\x37\x20\ -\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x30\x38\x31\x22\x0a\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\x3c\ -\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x09\xf4\ +\x33\x30\x2e\x32\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x38\x2e\x33\x34\x36\ +\x39\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\x39\x2e\x32\x38\x32\x30\ +\x35\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\x30\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\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x33\ +\x35\x30\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\ +\x22\x72\x65\x73\x74\x73\x2e\x4d\x33\x6d\x65\x6e\x73\x75\x72\x61\ +\x6c\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x2e\x34\ +\x37\x35\x2c\x31\x32\x2e\x38\x34\x34\x32\x38\x20\x30\x2c\x2d\x31\ +\x38\x2e\x37\x35\x30\x30\x30\x30\x33\x20\x2d\x35\x2e\x34\x37\x35\ +\x2c\x2d\x30\x2e\x35\x20\x30\x2c\x31\x38\x2e\x37\x35\x30\x30\x30\ +\x30\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x33\x35\x30\x37\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x06\xf3\ \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\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\ +\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\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ -\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ -\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ -\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x38\x36\x38\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ -\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ -\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x36\x34\x2e\x73\x76\x67\ -\x22\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\x38\x37\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\x64\x65\x66\x73\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x38\ -\x37\x34\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\ -\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\ -\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\ -\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\ -\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ -\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\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\x77\x69\x6e\x64\ -\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x39\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x33\x38\x37\x32\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\x7a\ -\x6f\x6f\x6d\x3d\x22\x32\x31\x2e\x33\x36\x30\x32\x38\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ -\x3d\x22\x32\x30\x2e\x33\x30\x35\x34\x34\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\ -\x30\x31\x33\x2e\x34\x35\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\ -\x3d\x22\x31\x39\x32\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\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\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\x73\x76\x67\x33\x38\x36\x38\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\ -\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x36\x2e\x31\ -\x38\x35\x34\x39\x38\x36\x2c\x32\x30\x2e\x33\x32\x34\x30\x39\x33\ -\x20\x63\x20\x30\x2c\x2d\x30\x2e\x36\x37\x35\x20\x2d\x30\x2e\x32\ -\x2c\x2d\x31\x2e\x32\x35\x20\x2d\x30\x2e\x35\x2c\x2d\x31\x2e\x37\ -\x37\x35\x20\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x36\x37\x35\x20\ -\x30\x2e\x33\x2c\x2d\x31\x2e\x34\x20\x30\x2e\x33\x2c\x2d\x32\x2e\ -\x31\x20\x30\x2c\x2d\x30\x2e\x37\x35\x20\x2d\x30\x2e\x32\x2c\x2d\ -\x31\x2e\x34\x32\x35\x20\x2d\x30\x2e\x35\x2c\x2d\x32\x2e\x30\x32\ -\x35\x20\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x30\x2e\ -\x33\x2c\x2d\x31\x2e\x37\x20\x30\x2e\x33\x2c\x2d\x32\x2e\x35\x35\ -\x20\x30\x2c\x2d\x30\x2e\x39\x32\x35\x20\x2d\x30\x2e\x32\x35\x2c\ -\x2d\x31\x2e\x37\x35\x20\x2d\x30\x2e\x36\x35\x2c\x2d\x32\x2e\x35\ -\x32\x34\x39\x39\x39\x38\x20\x30\x2e\x30\x35\x2c\x2d\x30\x2e\x38\ -\x20\x30\x2e\x30\x37\x35\x2c\x2d\x31\x2e\x36\x32\x35\x20\x30\x2e\ -\x30\x37\x35\x2c\x2d\x32\x2e\x34\x32\x35\x20\x30\x2c\x2d\x34\x2e\ -\x37\x30\x30\x30\x30\x30\x34\x20\x2d\x35\x2e\x37\x34\x39\x39\x39\ -\x39\x39\x38\x2c\x2d\x37\x2e\x34\x35\x30\x30\x30\x30\x33\x37\x20\ -\x2d\x35\x2e\x37\x34\x39\x39\x39\x39\x39\x38\x2c\x2d\x31\x32\x2e\ -\x31\x35\x30\x30\x30\x30\x33\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x31\ -\x20\x2d\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\x32\x35\x2e\x30\x30\ -\x30\x30\x30\x30\x31\x20\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\x2d\ -\x33\x2e\x31\x32\x35\x20\x63\x20\x32\x2e\x34\x39\x39\x39\x39\x39\ -\x39\x38\x2c\x30\x2e\x33\x37\x35\x20\x35\x2e\x37\x34\x39\x39\x39\ -\x39\x39\x38\x2c\x31\x2e\x35\x20\x35\x2e\x37\x34\x39\x39\x39\x39\ -\x39\x38\x2c\x33\x2e\x37\x37\x35\x20\x30\x2c\x30\x2e\x34\x32\x35\ -\x20\x2d\x30\x2e\x31\x35\x2c\x30\x2e\x38\x37\x35\x20\x2d\x30\x2e\ -\x31\x35\x2c\x31\x2e\x33\x20\x30\x2c\x30\x2e\x33\x20\x30\x2e\x32\ -\x37\x35\x2c\x30\x2e\x35\x20\x30\x2e\x35\x35\x2c\x30\x2e\x35\x20\ -\x30\x2e\x36\x35\x2c\x30\x20\x30\x2e\x35\x37\x35\x2c\x2d\x31\x2e\ -\x32\x20\x30\x2e\x35\x37\x35\x2c\x2d\x31\x2e\x38\x20\x7a\x20\x4d\ -\x20\x2d\x30\x2e\x35\x33\x39\x35\x30\x31\x33\x38\x2c\x2d\x30\x2e\ -\x32\x32\x35\x39\x30\x37\x31\x37\x20\x43\x20\x31\x2e\x35\x31\x30\ -\x34\x39\x38\x36\x2c\x31\x2e\x35\x39\x39\x30\x39\x32\x38\x20\x34\ -\x2e\x32\x33\x35\x34\x39\x38\x36\x2c\x34\x2e\x31\x39\x39\x30\x39\ -\x32\x38\x20\x34\x2e\x32\x33\x35\x34\x39\x38\x36\x2c\x36\x2e\x39\ -\x32\x34\x30\x39\x33\x32\x20\x6c\x20\x30\x2c\x31\x20\x63\x20\x2d\ -\x31\x2e\x38\x37\x35\x2c\x2d\x32\x2e\x34\x32\x35\x30\x30\x30\x37\ -\x20\x2d\x34\x2e\x37\x37\x34\x39\x39\x39\x39\x38\x2c\x2d\x34\x2e\ -\x34\x35\x30\x30\x30\x30\x34\x20\x2d\x34\x2e\x37\x37\x34\x39\x39\ -\x39\x39\x38\x2c\x2d\x37\x2e\x36\x32\x35\x30\x30\x30\x33\x37\x20\ -\x6c\x20\x30\x2c\x2d\x30\x2e\x35\x32\x35\x20\x7a\x20\x6d\x20\x30\ -\x2c\x35\x2e\x35\x32\x34\x39\x39\x39\x36\x37\x20\x63\x20\x32\x2e\ -\x32\x39\x39\x39\x39\x39\x39\x38\x2c\x31\x2e\x35\x35\x30\x30\x30\ -\x31\x20\x35\x2e\x33\x34\x39\x39\x39\x39\x39\x38\x2c\x33\x2e\x38\ -\x35\x30\x30\x30\x30\x37\x20\x35\x2e\x33\x34\x39\x39\x39\x39\x39\ -\x38\x2c\x36\x2e\x35\x37\x35\x30\x30\x30\x35\x20\x30\x2c\x30\x2e\ -\x34\x35\x20\x2d\x30\x2e\x30\x32\x35\x2c\x30\x2e\x39\x20\x2d\x30\ -\x2e\x31\x2c\x31\x2e\x33\x35\x20\x2d\x31\x2e\x39\x2c\x2d\x32\x2e\ -\x33\x37\x35\x20\x2d\x35\x2e\x32\x34\x39\x39\x39\x39\x39\x38\x2c\ -\x2d\x34\x2e\x30\x39\x39\x39\x39\x39\x38\x20\x2d\x35\x2e\x32\x34\ -\x39\x39\x39\x39\x39\x38\x2c\x2d\x37\x2e\x32\x39\x39\x39\x39\x39\ -\x35\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x36\x32\x35\x30\x30\x31\x20\ -\x7a\x20\x6d\x20\x30\x2c\x35\x2e\x36\x32\x35\x30\x30\x30\x35\x20\ -\x63\x20\x32\x2e\x33\x39\x39\x39\x39\x39\x39\x38\x2c\x31\x2e\x31\ -\x32\x35\x20\x35\x2e\x35\x34\x39\x39\x39\x39\x39\x38\x2c\x32\x2e\ -\x39\x37\x35\x20\x35\x2e\x35\x34\x39\x39\x39\x39\x39\x38\x2c\x35\ -\x2e\x35\x32\x35\x20\x30\x2c\x30\x2e\x33\x37\x35\x20\x2d\x30\x2e\ -\x30\x35\x2c\x30\x2e\x37\x32\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\ -\x31\x2e\x31\x20\x2d\x31\x2e\x39\x35\x2c\x2d\x31\x2e\x39\x32\x35\ -\x20\x2d\x35\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x2d\x33\x2e\ -\x30\x35\x20\x2d\x35\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x2d\ -\x36\x20\x6c\x20\x30\x2c\x2d\x30\x2e\x36\x32\x35\x20\x7a\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x37\ -\x30\x22\x0a\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\x3c\x2f\x73\x76\ -\x67\x3e\x0a\ -\x00\x00\x0a\x27\ +\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\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x32\x31\x22\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\x34\x32\ +\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ +\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ +\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ +\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ +\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\ +\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x32\x37\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x33\x2e\x32\x37\x35\x2c\x31\x39\x2e\x31\ +\x30\x37\x36\x32\x37\x20\x31\x2e\x38\x32\x35\x2c\x2d\x38\x2e\x32\ +\x32\x35\x20\x63\x20\x2d\x30\x2e\x39\x35\x2c\x30\x2e\x33\x32\x35\ +\x20\x2d\x31\x2e\x39\x32\x35\x2c\x30\x2e\x36\x32\x35\x20\x2d\x32\ +\x2e\x39\x32\x35\x2c\x30\x2e\x36\x32\x35\x20\x2d\x31\x2e\x31\x35\ +\x2c\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\ +\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x31\x2e\x39\x39\x39\x39\x39\x39\ +\x38\x20\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\x30\x2e\x38\x2c\x2d\ +\x31\x2e\x37\x37\x35\x20\x31\x2e\x38\x2c\x2d\x31\x2e\x37\x37\x35\ +\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\x2e\x32\x2c\x30\x2e\x34\x20\ +\x31\x2e\x34\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\ +\x2e\x31\x37\x35\x2c\x31\x2e\x34\x39\x39\x39\x39\x39\x38\x20\x30\ +\x2e\x39\x2c\x31\x2e\x34\x39\x39\x39\x39\x39\x38\x20\x30\x2e\x34\ +\x35\x2c\x30\x20\x31\x2e\x34\x35\x2c\x2d\x31\x2e\x33\x39\x39\x39\ +\x39\x39\x38\x20\x31\x2e\x35\x35\x2c\x2d\x31\x2e\x38\x37\x34\x39\ +\x39\x39\x38\x20\x6c\x20\x30\x2e\x38\x32\x35\x2c\x2d\x33\x2e\x37\ +\x20\x63\x20\x2d\x30\x2e\x39\x2c\x30\x2e\x33\x32\x35\x20\x2d\x31\ +\x2e\x38\x32\x35\x2c\x30\x2e\x36\x20\x2d\x32\x2e\x38\x2c\x30\x2e\ +\x36\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\x31\x37\x35\ +\x2c\x2d\x30\x2e\x38\x35\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x32\ +\x20\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\x30\x2e\x37\x37\x35\x2c\ +\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x37\x37\x35\x2c\x2d\x31\x2e\ +\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\x2e\x32\x32\x35\ +\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\x2c\x31\x20\x30\x2e\x32\ +\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x35\x2c\x31\x2e\x35\x20\x30\ +\x2e\x38\x37\x35\x2c\x31\x2e\x35\x20\x30\x2e\x34\x32\x35\x2c\x30\ +\x20\x31\x2e\x33\x35\x2c\x2d\x31\x2e\x33\x37\x35\x20\x31\x2e\x34\ +\x35\x2c\x2d\x31\x2e\x38\x32\x35\x20\x6c\x20\x30\x2e\x38\x35\x2c\ +\x2d\x33\x2e\x37\x32\x35\x20\x63\x20\x2d\x30\x2e\x38\x37\x35\x2c\ +\x30\x2e\x33\x20\x2d\x31\x2e\x37\x37\x35\x2c\x30\x2e\x35\x37\x34\ +\x39\x39\x39\x39\x36\x20\x2d\x32\x2e\x37\x2c\x30\x2e\x35\x37\x34\ +\x39\x39\x39\x39\x36\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\ +\x2e\x32\x2c\x2d\x30\x2e\x38\x34\x39\x39\x39\x39\x39\x36\x20\x2d\ +\x32\x2e\x32\x2c\x2d\x31\x2e\x39\x39\x39\x39\x39\x39\x39\x36\x20\ +\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\x30\x2e\x38\x2c\x2d\x31\x2e\ +\x37\x37\x35\x20\x31\x2e\x38\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\ +\x2e\x36\x35\x2c\x30\x20\x31\x2e\x32\x2c\x30\x2e\x34\x20\x31\x2e\ +\x34\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\ +\x37\x35\x2c\x31\x2e\x35\x20\x30\x2e\x39\x2c\x31\x2e\x35\x20\x30\ +\x2e\x34\x2c\x30\x20\x31\x2e\x32\x32\x35\x2c\x2d\x31\x2e\x33\x32\ +\x35\x20\x31\x2e\x33\x32\x35\x2c\x2d\x31\x2e\x37\x35\x20\x6c\x20\ +\x30\x2e\x38\x35\x2c\x2d\x33\x2e\x37\x37\x35\x20\x63\x20\x2d\x30\ +\x2e\x38\x35\x2c\x30\x2e\x33\x20\x2d\x31\x2e\x37\x2c\x30\x2e\x35\ +\x35\x20\x2d\x32\x2e\x36\x2c\x30\x2e\x35\x35\x20\x2d\x31\x2e\x31\ +\x35\x2c\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\ +\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\ +\x39\x37\x35\x30\x30\x30\x32\x20\x30\x2e\x37\x37\x35\x2c\x2d\x31\ +\x2e\x37\x37\x35\x30\x30\x30\x32\x20\x31\x2e\x37\x37\x35\x2c\x2d\ +\x31\x2e\x37\x37\x35\x30\x30\x30\x32\x20\x30\x2e\x36\x35\x2c\x30\ +\x20\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\ +\x2c\x31\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x30\x30\x30\x30\x30\ +\x32\x20\x30\x2e\x31\x35\x2c\x31\x2e\x35\x30\x30\x30\x30\x30\x32\ +\x20\x30\x2e\x38\x37\x35\x2c\x31\x2e\x35\x30\x30\x30\x30\x30\x32\ +\x20\x30\x2e\x34\x2c\x30\x20\x31\x2e\x31\x2c\x2d\x31\x2e\x33\x37\ +\x35\x20\x31\x2e\x32\x35\x2c\x2d\x31\x2e\x37\x35\x30\x30\x30\x30\ +\x32\x20\x30\x2e\x31\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\x35\ +\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\x36\x2c\x30\x20\x6c\x20\ +\x2d\x35\x2e\x39\x35\x2c\x32\x39\x2e\x33\x37\x35\x20\x63\x20\x2d\ +\x30\x2e\x31\x37\x35\x2c\x30\x2e\x31\x35\x20\x2d\x30\x2e\x34\x2c\ +\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x36\x2c\x30\x2e\x32\x32\x35\ +\x20\x2d\x30\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x34\x2c\x2d\x30\x2e\ +\x30\x37\x35\x20\x2d\x30\x2e\x35\x37\x35\x2c\x2d\x30\x2e\x32\x32\ +\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x33\x34\x32\x33\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\ +\x3e\x0a\ +\x00\x00\x09\x50\ \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\ @@ -5196,14 +5093,14 @@ qt_resource_data = b"\ \x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ \x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ \x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x34\x31\x38\x38\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x34\x30\x32\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ \x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ -\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x36\x34\x69\x2e\x73\x76\ +\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x33\x32\x69\x2e\x73\x76\ \x67\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\ \x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x34\x31\x39\x36\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ +\x61\x34\x30\x32\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ \x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\ \x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ \x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\ @@ -5221,7 +5118,7 @@ qt_resource_data = b"\ \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\x64\x65\x66\ \x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x34\ -\x31\x39\x34\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\ +\x30\x32\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\ \x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\ \x20\x20\x20\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\ @@ -5241,206 +5138,81 @@ qt_resource_data = b"\ \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\x31\x30\ \x34\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x34\x31\x39\x32\x22\x0a\x20\x20\x20\x20\ +\x65\x64\x76\x69\x65\x77\x34\x30\x32\x35\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\ \x7a\x6f\x6f\x6d\x3d\x22\x33\x30\x2e\x32\x30\x38\x22\x0a\x20\x20\ \x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x2d\x36\x2e\x35\x32\x37\x38\x34\x30\x34\x22\x0a\x20\x20\x20\x20\ +\x2d\x35\x2e\x31\x38\x37\x36\x31\x39\x33\x22\x0a\x20\x20\x20\x20\ \x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\ -\x39\x2e\x34\x31\x31\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x33\x2e\x39\x38\x31\x30\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ \x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\ -\x22\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\x30\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\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\ -\x3d\x22\x30\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\x73\x76\x67\x34\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\ -\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x75\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x30\x2e\x30\x34\ -\x37\x32\x34\x35\x37\x36\x2c\x31\x37\x2e\x31\x35\x33\x34\x34\x35\ -\x20\x30\x2c\x2d\x30\x2e\x33\x20\x63\x20\x30\x2c\x2d\x32\x2e\x38\ -\x37\x35\x20\x32\x2e\x31\x39\x39\x39\x39\x39\x39\x36\x2c\x2d\x35\ -\x2e\x30\x35\x20\x33\x2e\x36\x39\x39\x39\x39\x39\x39\x36\x2c\x2d\ -\x37\x2e\x34\x35\x30\x30\x30\x30\x31\x20\x30\x2e\x31\x2c\x30\x2e\ -\x33\x32\x35\x20\x30\x2e\x31\x32\x35\x2c\x30\x2e\x36\x37\x35\x30\ -\x30\x30\x31\x20\x30\x2e\x31\x32\x35\x2c\x31\x2e\x30\x32\x35\x30\ -\x30\x30\x31\x20\x30\x2c\x32\x2e\x34\x35\x20\x2d\x32\x2e\x31\x37\ -\x35\x2c\x34\x2e\x39\x32\x35\x20\x2d\x33\x2e\x38\x32\x34\x39\x39\ -\x39\x39\x36\x2c\x36\x2e\x37\x32\x35\x20\x7a\x20\x6d\x20\x30\x2c\ -\x35\x2e\x33\x32\x35\x20\x63\x20\x30\x2c\x2d\x34\x2e\x34\x37\x35\ -\x20\x34\x2e\x37\x39\x39\x39\x39\x39\x39\x36\x2c\x2d\x37\x2e\x35\ -\x37\x35\x20\x34\x2e\x37\x39\x39\x39\x39\x39\x39\x36\x2c\x2d\x31\ -\x32\x2e\x30\x35\x20\x30\x2c\x2d\x30\x2e\x37\x35\x30\x30\x30\x30\ -\x31\x20\x2d\x30\x2e\x31\x35\x2c\x2d\x31\x2e\x34\x37\x35\x30\x30\ -\x30\x31\x20\x2d\x30\x2e\x34\x35\x2c\x2d\x32\x2e\x31\x37\x35\x30\ -\x30\x30\x31\x20\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x39\x20\x30\ -\x2e\x37\x2c\x2d\x31\x2e\x38\x35\x30\x30\x30\x30\x32\x20\x30\x2e\ -\x37\x2c\x2d\x32\x2e\x38\x37\x35\x30\x30\x30\x32\x20\x30\x2c\x2d\ -\x30\x2e\x39\x37\x35\x20\x2d\x30\x2e\x32\x35\x2c\x2d\x31\x2e\x39\ -\x32\x35\x20\x2d\x30\x2e\x37\x2c\x2d\x32\x2e\x37\x37\x35\x20\x30\ -\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x39\x20\x30\x2e\x37\x2c\x2d\x31\ -\x2e\x38\x32\x35\x30\x30\x30\x30\x31\x20\x30\x2e\x37\x2c\x2d\x32\ -\x2e\x38\x35\x30\x30\x30\x30\x30\x31\x20\x30\x2c\x2d\x30\x2e\x38\ -\x32\x34\x39\x39\x39\x39\x39\x20\x2d\x30\x2e\x33\x32\x35\x2c\x2d\ -\x31\x2e\x35\x39\x39\x39\x39\x39\x39\x39\x20\x2d\x30\x2e\x38\x35\ -\x2c\x2d\x32\x2e\x32\x32\x34\x39\x39\x39\x39\x39\x20\x30\x2e\x36\ -\x2c\x2d\x31\x2e\x30\x35\x20\x31\x2e\x30\x32\x35\x2c\x2d\x32\x2e\ -\x31\x35\x20\x31\x2e\x30\x32\x35\x2c\x2d\x33\x2e\x34\x20\x30\x2c\ -\x2d\x31\x2e\x35\x35\x20\x2d\x30\x2e\x34\x2c\x2d\x33\x2e\x30\x35\ -\x20\x2d\x31\x2e\x30\x35\x2c\x2d\x34\x2e\x34\x34\x39\x39\x39\x39\ -\x37\x20\x2d\x30\x2e\x31\x2c\x2d\x30\x2e\x31\x37\x35\x20\x2d\x30\ -\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x2d\x30\x2e\x34\ -\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x2d\x30\x2e\x33\x2c\x30\x20\ -\x2d\x30\x2e\x36\x2c\x30\x2e\x32\x35\x20\x2d\x30\x2e\x35\x32\x35\ -\x2c\x30\x2e\x36\x32\x34\x39\x39\x39\x37\x20\x30\x2e\x36\x35\x2c\ -\x31\x2e\x32\x37\x35\x20\x31\x2e\x30\x35\x2c\x32\x2e\x36\x37\x35\ -\x20\x31\x2e\x30\x35\x2c\x34\x2e\x31\x20\x30\x2c\x32\x2e\x33\x37\ -\x35\x20\x2d\x32\x2e\x34\x32\x35\x2c\x34\x2e\x36\x32\x35\x20\x2d\ -\x34\x2e\x32\x34\x39\x39\x39\x39\x39\x36\x2c\x36\x2e\x31\x37\x34\ -\x39\x39\x39\x39\x39\x20\x6c\x20\x30\x2c\x2d\x32\x2e\x38\x32\x34\ -\x39\x39\x39\x39\x39\x20\x2d\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\ -\x32\x35\x2e\x30\x30\x30\x30\x30\x30\x33\x20\x30\x2e\x33\x35\x2c\ -\x30\x20\x7a\x20\x6d\x20\x30\x2c\x2d\x31\x30\x2e\x39\x35\x20\x30\ -\x2c\x2d\x30\x2e\x33\x20\x63\x20\x30\x2c\x2d\x32\x2e\x39\x32\x35\ -\x30\x30\x30\x31\x20\x32\x2e\x32\x34\x39\x39\x39\x39\x39\x36\x2c\ -\x2d\x35\x2e\x31\x32\x35\x30\x30\x30\x33\x20\x33\x2e\x37\x34\x39\ -\x39\x39\x39\x39\x36\x2c\x2d\x37\x2e\x35\x35\x30\x30\x30\x30\x33\ -\x20\x30\x2e\x32\x32\x35\x2c\x30\x2e\x35\x32\x35\x20\x30\x2e\x33\ -\x32\x35\x2c\x31\x2e\x31\x32\x35\x20\x30\x2e\x33\x32\x35\x2c\x31\ -\x2e\x37\x20\x30\x2c\x32\x2e\x33\x35\x30\x30\x30\x30\x32\x20\x2d\ -\x32\x2e\x33\x32\x35\x2c\x34\x2e\x35\x37\x35\x30\x30\x30\x32\x20\ -\x2d\x34\x2e\x30\x37\x34\x39\x39\x39\x39\x36\x2c\x36\x2e\x31\x35\ -\x30\x30\x30\x30\x33\x20\x7a\x20\x6d\x20\x30\x2c\x2d\x35\x2e\x36\ -\x30\x30\x30\x30\x30\x33\x20\x30\x2c\x2d\x30\x2e\x33\x32\x35\x20\ -\x63\x20\x30\x2c\x2d\x32\x2e\x38\x20\x32\x2e\x31\x34\x39\x39\x39\ -\x39\x39\x36\x2c\x2d\x34\x2e\x39\x32\x35\x30\x30\x30\x30\x31\x20\ -\x33\x2e\x36\x37\x34\x39\x39\x39\x39\x36\x2c\x2d\x37\x2e\x32\x32\ -\x35\x20\x30\x2e\x32\x37\x35\x2c\x30\x2e\x34\x20\x30\x2e\x34\x2c\ -\x30\x2e\x38\x37\x34\x39\x39\x39\x39\x39\x20\x30\x2e\x34\x2c\x31\ -\x2e\x33\x37\x34\x39\x39\x39\x39\x39\x20\x30\x2c\x32\x2e\x33\x35\ -\x30\x30\x30\x30\x30\x31\x20\x2d\x32\x2e\x33\x32\x35\x2c\x34\x2e\ -\x36\x30\x30\x30\x30\x30\x30\x31\x20\x2d\x34\x2e\x30\x37\x34\x39\ -\x39\x39\x39\x36\x2c\x36\x2e\x31\x37\x35\x30\x30\x30\x30\x31\x20\ -\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x34\x31\x39\x30\x22\x0a\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\x3c\ -\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x06\xc7\ -\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\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ -\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\ -\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\ -\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\ -\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\ -\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ -\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\ -\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ -\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ -\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ -\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x30\x35\x39\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\x34\x20\x72\x39\x39\x33\x39\ -\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ -\x63\x6e\x61\x6d\x65\x3d\x22\x64\x6f\x74\x73\x2e\x64\x6f\x74\x2e\ -\x73\x76\x67\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x33\x30\x36\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\x64\ -\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\ -\x73\x33\x30\x36\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\ -\x20\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\ -\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ -\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ -\x3d\x22\x31\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\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\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ -\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x30\x36\x33\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x33\x2e\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x30\x2e\x33\x36\x36\x37\x32\x34\x31\x33\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\ -\x30\x33\x2e\x33\x30\x37\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\x39\x32\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\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\ -\x3d\x22\x30\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\x73\x76\x67\x33\x30\x35\x39\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\ -\x2d\x6e\x61\x6d\x65\x3d\x22\x64\x6f\x74\x73\x2e\x64\x6f\x74\x22\ -\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\x2e\x37\x39\x35\ -\x35\x38\x38\x31\x32\x2c\x30\x20\x63\x20\x30\x2c\x30\x2e\x38\x20\ -\x30\x2e\x36\x32\x34\x39\x39\x39\x39\x38\x2c\x31\x2e\x34\x32\x35\ -\x20\x31\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x31\x2e\x34\x32\ -\x35\x20\x30\x2e\x38\x2c\x30\x20\x31\x2e\x34\x32\x35\x2c\x2d\x30\ -\x2e\x36\x32\x35\x20\x31\x2e\x34\x32\x35\x2c\x2d\x31\x2e\x34\x32\ -\x35\x20\x30\x2c\x2d\x30\x2e\x38\x20\x2d\x30\x2e\x36\x32\x35\x2c\ -\x2d\x31\x2e\x34\x32\x35\x20\x2d\x31\x2e\x34\x32\x35\x2c\x2d\x31\ -\x2e\x34\x32\x35\x20\x2d\x30\x2e\x38\x2c\x30\x20\x2d\x31\x2e\x34\ -\x32\x34\x39\x39\x39\x39\x38\x2c\x30\x2e\x36\x32\x35\x20\x2d\x31\ -\x2e\x34\x32\x34\x39\x39\x39\x39\x38\x2c\x31\x2e\x34\x32\x35\x20\ -\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x30\x36\x31\x22\x0a\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\x3c\ -\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x07\x5b\ +\x22\x31\x39\x32\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\ +\x30\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\x6d\x61\x78\x69\x6d\x69\ +\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x34\x30\x32\x31\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\ +\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\ +\x75\x35\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\x2e\ +\x30\x31\x38\x39\x36\x31\x38\x36\x2c\x31\x30\x2e\x39\x31\x37\x39\ +\x32\x39\x20\x30\x2c\x2d\x30\x2e\x31\x20\x63\x20\x30\x2c\x2d\x32\ +\x2e\x38\x35\x30\x30\x30\x30\x36\x20\x32\x2e\x32\x30\x30\x30\x30\ +\x30\x30\x34\x2c\x2d\x35\x2e\x30\x30\x30\x30\x30\x30\x37\x20\x33\ +\x2e\x37\x30\x30\x30\x30\x30\x30\x34\x2c\x2d\x37\x2e\x33\x35\x30\ +\x30\x30\x30\x37\x20\x30\x2e\x30\x37\x35\x2c\x30\x2e\x33\x20\x30\ +\x2e\x31\x32\x35\x2c\x30\x2e\x36\x20\x30\x2e\x31\x32\x35\x2c\x30\ +\x2e\x39\x32\x35\x20\x30\x2c\x32\x2e\x34\x30\x30\x30\x30\x30\x31\ +\x20\x2d\x32\x2e\x31\x37\x35\x2c\x34\x2e\x37\x37\x35\x30\x30\x30\ +\x35\x20\x2d\x33\x2e\x38\x32\x35\x30\x30\x30\x30\x34\x2c\x36\x2e\ +\x35\x32\x35\x30\x30\x30\x37\x20\x7a\x20\x6d\x20\x30\x2c\x35\x2e\ +\x33\x32\x35\x20\x63\x20\x30\x2c\x2d\x34\x2e\x34\x32\x35\x20\x34\ +\x2e\x38\x30\x30\x30\x30\x30\x30\x34\x2c\x2d\x37\x2e\x34\x32\x35\ +\x30\x30\x30\x32\x20\x34\x2e\x38\x30\x30\x30\x30\x30\x30\x34\x2c\ +\x2d\x31\x31\x2e\x38\x35\x30\x30\x30\x30\x37\x20\x30\x2c\x2d\x30\ +\x2e\x37\x20\x2d\x30\x2e\x31\x35\x2c\x2d\x31\x2e\x34\x20\x2d\x30\ +\x2e\x34\x35\x2c\x2d\x32\x2e\x30\x35\x20\x30\x2e\x34\x32\x35\x2c\ +\x2d\x30\x2e\x38\x37\x35\x20\x30\x2e\x37\x2c\x2d\x31\x2e\x38\x30\ +\x30\x30\x30\x30\x30\x39\x20\x30\x2e\x37\x2c\x2d\x32\x2e\x38\x32\ +\x35\x30\x30\x30\x31\x31\x20\x30\x2c\x2d\x30\x2e\x38\x39\x39\x39\ +\x39\x39\x38\x39\x20\x2d\x30\x2e\x32\x2c\x2d\x31\x2e\x37\x37\x34\ +\x39\x39\x39\x38\x39\x20\x2d\x30\x2e\x35\x37\x35\x2c\x2d\x32\x2e\ +\x35\x39\x39\x39\x39\x39\x37\x39\x20\x30\x2e\x34\x35\x2c\x2d\x30\ +\x2e\x38\x37\x35\x20\x30\x2e\x37\x35\x2c\x2d\x31\x2e\x38\x32\x35\ +\x30\x30\x30\x31\x20\x30\x2e\x37\x35\x2c\x2d\x32\x2e\x38\x35\x30\ +\x30\x30\x30\x31\x20\x30\x2c\x2d\x31\x2e\x35\x32\x35\x20\x2d\x30\ +\x2e\x34\x2c\x2d\x33\x20\x2d\x31\x2e\x30\x35\x2c\x2d\x34\x2e\x33\ +\x37\x34\x39\x39\x39\x33\x20\x2d\x30\x2e\x31\x2c\x2d\x30\x2e\x31\ +\x37\x35\x20\x2d\x30\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x32\x37\x35\ +\x20\x2d\x30\x2e\x34\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x2d\x30\ +\x2e\x33\x2c\x30\x20\x2d\x30\x2e\x36\x2c\x30\x2e\x32\x35\x20\x2d\ +\x30\x2e\x35\x32\x35\x2c\x30\x2e\x36\x32\x34\x39\x39\x39\x33\x20\ +\x30\x2e\x36\x35\x2c\x31\x2e\x32\x35\x20\x31\x2e\x30\x35\x2c\x32\ +\x2e\x36\x32\x35\x20\x31\x2e\x30\x35\x2c\x34\x2e\x30\x32\x35\x20\ +\x30\x2c\x32\x2e\x33\x35\x30\x30\x30\x30\x31\x20\x2d\x32\x2e\x34\ +\x32\x35\x2c\x34\x2e\x35\x20\x2d\x34\x2e\x32\x35\x30\x30\x30\x30\ +\x30\x34\x2c\x35\x2e\x39\x39\x39\x39\x39\x39\x38\x39\x20\x6c\x20\ +\x30\x2c\x2d\x32\x2e\x35\x37\x34\x39\x39\x39\x38\x39\x20\x2d\x30\ +\x2e\x33\x35\x2c\x30\x20\x30\x2c\x31\x38\x2e\x37\x35\x30\x30\x30\ +\x30\x37\x20\x30\x2e\x33\x35\x2c\x30\x20\x7a\x20\x6d\x20\x30\x2c\ +\x2d\x31\x30\x2e\x37\x35\x30\x30\x30\x30\x37\x20\x30\x2c\x2d\x30\ +\x2e\x31\x32\x35\x20\x63\x20\x30\x2c\x2d\x32\x2e\x38\x37\x35\x20\ +\x32\x2e\x32\x37\x35\x30\x30\x30\x30\x34\x2c\x2d\x34\x2e\x39\x37\ +\x35\x30\x30\x30\x30\x39\x20\x33\x2e\x38\x32\x35\x30\x30\x30\x30\ +\x34\x2c\x2d\x37\x2e\x33\x35\x20\x30\x2e\x31\x35\x2c\x30\x2e\x34\ +\x37\x35\x20\x30\x2e\x32\x35\x2c\x30\x2e\x39\x39\x39\x39\x39\x39\ +\x39\x31\x20\x30\x2e\x32\x35\x2c\x31\x2e\x34\x39\x39\x39\x39\x39\ +\x38\x39\x20\x30\x2c\x32\x2e\x33\x30\x30\x30\x30\x30\x31\x31\x20\ +\x2d\x32\x2e\x33\x32\x35\x2c\x34\x2e\x34\x35\x30\x30\x30\x30\x31\ +\x31\x20\x2d\x34\x2e\x30\x37\x35\x30\x30\x30\x30\x34\x2c\x35\x2e\ +\x39\x37\x35\x30\x30\x30\x31\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x30\x32\x33\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x07\x91\ \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\ @@ -5472,569 +5244,521 @@ qt_resource_data = b"\ \x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ \x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ \x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\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\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\ -\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\ -\x6d\x65\x3d\x22\x66\x6c\x61\x67\x38\x69\x2e\x73\x76\x67\x22\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\x31\x30\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ -\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ -\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ -\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ -\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ -\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\ -\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\ -\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x38\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\ -\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\ -\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\ -\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x36\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\x7a\x6f\x6f\x6d\x3d\x22\x32\x31\x2e\x33\x36\ -\x30\x32\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x78\x3d\x22\x32\x32\x2e\x34\x31\x31\x39\x31\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x79\x3d\x22\x39\x39\x35\x2e\x39\x31\x39\x38\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\ -\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x32\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\ -\x73\x2e\x64\x33\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ -\x2d\x30\x2e\x30\x37\x31\x33\x34\x32\x32\x38\x2c\x2d\x30\x2e\x30\ -\x37\x30\x33\x30\x36\x32\x31\x20\x43\x20\x32\x2e\x34\x30\x33\x36\ -\x35\x37\x38\x2c\x2d\x31\x2e\x35\x34\x35\x33\x30\x36\x33\x20\x35\ -\x2e\x36\x37\x38\x36\x35\x37\x38\x2c\x2d\x33\x2e\x38\x32\x30\x33\ -\x30\x36\x33\x20\x35\x2e\x36\x37\x38\x36\x35\x37\x38\x2c\x2d\x36\ -\x2e\x36\x34\x35\x33\x30\x36\x33\x20\x63\x20\x30\x2c\x2d\x31\x2e\ -\x36\x32\x35\x30\x30\x30\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\ -\x33\x2e\x32\x32\x35\x30\x30\x30\x34\x20\x2d\x31\x2e\x33\x35\x2c\ -\x2d\x34\x2e\x36\x32\x35\x30\x30\x30\x37\x20\x2d\x30\x2e\x30\x37\ -\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x30\x2e\x32\x32\x35\x2c\x2d\ -\x30\x2e\x36\x32\x35\x20\x30\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x36\ -\x32\x35\x20\x30\x2e\x31\x37\x35\x2c\x30\x20\x30\x2e\x33\x35\x2c\ -\x30\x2e\x31\x20\x30\x2e\x34\x35\x2c\x30\x2e\x32\x37\x35\x20\x30\ -\x2e\x38\x32\x35\x2c\x31\x2e\x35\x32\x35\x20\x31\x2e\x33\x35\x2c\ -\x33\x2e\x32\x32\x35\x30\x30\x30\x32\x20\x31\x2e\x33\x35\x2c\x34\ -\x2e\x39\x37\x35\x30\x30\x30\x37\x20\x30\x2c\x35\x2e\x31\x32\x35\ -\x20\x2d\x36\x2e\x37\x32\x35\x30\x30\x30\x30\x38\x2c\x37\x2e\x37\ -\x30\x30\x30\x30\x30\x31\x20\x2d\x36\x2e\x37\x32\x35\x30\x30\x30\ -\x30\x38\x2c\x31\x32\x2e\x38\x32\x35\x20\x68\x20\x2d\x30\x2e\x33\ -\x35\x20\x76\x20\x2d\x36\x2e\x32\x34\x39\x39\x39\x39\x39\x31\x20\ -\x68\x20\x30\x2e\x33\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x34\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x06\x0c\ -\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\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x31\x31\x22\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\x34\x31\ -\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ -\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ -\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ -\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ -\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ -\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ -\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\ -\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ -\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ -\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x31\x37\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x32\x2e\x38\x32\x35\x2c\x31\x35\x2e\x36\ -\x39\x32\x33\x39\x33\x20\x32\x2e\x31\x35\x2c\x2d\x38\x2e\x31\x39\ -\x39\x39\x39\x39\x38\x20\x63\x20\x2d\x30\x2e\x39\x2c\x30\x2e\x33\ -\x32\x35\x20\x2d\x31\x2e\x38\x32\x35\x2c\x30\x2e\x36\x20\x2d\x32\ -\x2e\x38\x2c\x30\x2e\x36\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\ -\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\x32\x2e\x31\ -\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\x30\ -\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x37\x37\ -\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\ -\x31\x2e\x32\x2c\x30\x2e\x34\x20\x31\x2e\x34\x2c\x31\x20\x30\x2e\ -\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x37\x35\x2c\x31\x2e\x35\ -\x20\x30\x2e\x39\x2c\x31\x2e\x35\x20\x30\x2e\x34\x32\x35\x2c\x30\ -\x20\x31\x2e\x34\x32\x35\x2c\x2d\x31\x2e\x33\x35\x20\x31\x2e\x35\ -\x35\x2c\x2d\x31\x2e\x38\x20\x6c\x20\x30\x2e\x39\x37\x35\x2c\x2d\ -\x33\x2e\x37\x35\x20\x63\x20\x2d\x30\x2e\x38\x37\x35\x2c\x30\x2e\ -\x33\x32\x35\x20\x2d\x31\x2e\x38\x2c\x30\x2e\x35\x37\x35\x20\x2d\ -\x32\x2e\x37\x32\x35\x2c\x30\x2e\x35\x37\x35\x20\x2d\x31\x2e\x31\ -\x35\x2c\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\ -\x30\x30\x30\x30\x30\x35\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x32\ -\x2e\x30\x30\x30\x30\x30\x30\x30\x35\x20\x30\x2c\x2d\x30\x2e\x39\ -\x37\x34\x39\x39\x39\x39\x35\x20\x30\x2e\x38\x2c\x2d\x31\x2e\x37\ -\x37\x34\x39\x39\x39\x39\x35\x20\x31\x2e\x38\x2c\x2d\x31\x2e\x37\ -\x37\x34\x39\x39\x39\x39\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\ -\x2e\x32\x2c\x30\x2e\x34\x20\x31\x2e\x34\x2c\x30\x2e\x39\x39\x39\ -\x39\x39\x39\x39\x35\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\ -\x2e\x31\x37\x35\x2c\x31\x2e\x35\x20\x30\x2e\x39\x2c\x31\x2e\x35\ -\x20\x30\x2e\x34\x32\x35\x2c\x30\x20\x31\x2e\x33\x35\x2c\x2d\x31\ -\x2e\x33\x32\x35\x20\x31\x2e\x34\x35\x2c\x2d\x31\x2e\x37\x34\x39\ -\x39\x39\x39\x39\x35\x20\x6c\x20\x31\x2c\x2d\x33\x2e\x38\x20\x63\ -\x20\x2d\x30\x2e\x38\x35\x2c\x30\x2e\x33\x20\x2d\x31\x2e\x37\x35\ -\x2c\x30\x2e\x35\x37\x35\x20\x2d\x32\x2e\x36\x35\x2c\x30\x2e\x35\ -\x37\x35\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\x31\x37\ -\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\ -\x32\x20\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\x30\x2e\x37\x37\x35\ -\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x37\x37\x35\x2c\x2d\x31\ -\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\x2e\x32\x32\ -\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\x2c\x31\x20\x30\x2e\ -\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x35\x2c\x31\x2e\x35\x20\ -\x30\x2e\x38\x37\x35\x2c\x31\x2e\x35\x20\x30\x2e\x34\x2c\x30\x20\ -\x31\x2e\x32\x32\x35\x2c\x2d\x31\x2e\x33\x35\x20\x31\x2e\x33\x37\ -\x35\x2c\x2d\x31\x2e\x37\x35\x20\x30\x2e\x31\x2c\x2d\x30\x2e\x32\ -\x37\x35\x20\x30\x2e\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\ -\x36\x2c\x30\x20\x4c\x20\x34\x2c\x31\x35\x2e\x36\x39\x32\x33\x39\ -\x33\x20\x63\x20\x2d\x30\x2e\x31\x37\x35\x2c\x30\x2e\x31\x35\x20\ -\x2d\x30\x2e\x33\x37\x35\x2c\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\ -\x35\x37\x35\x2c\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x32\x2c\x30\ -\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x30\x37\x35\x20\x2d\ -\x30\x2e\x36\x2c\x2d\x30\x2e\x32\x32\x35\x20\x7a\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x31\x33\x22\ -\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x07\x12\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x33\x34\x36\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\x34\x20\x72\x39\x39\x33\x39\ +\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ +\x63\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\x34\x2e\ +\x73\x76\x67\x22\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\x33\x35\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\x64\ +\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\ +\x73\x33\x33\x35\x32\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\ +\x20\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\ +\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ +\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x3d\x22\x31\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\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\x77\ +\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ +\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x33\x35\x30\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\x7a\x6f\x6f\x6d\x3d\x22\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x35\x37\ +\x2e\x39\x35\x31\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\x30\x35\x2e\x36\ +\x36\x34\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\x31\x39\x32\ +\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\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\ +\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\x73\ +\x76\x67\x33\x33\x34\x36\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\ +\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\ +\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\x2e\x33\x35\x2c\x35\x20\x63\ +\x20\x32\x2e\x33\x32\x35\x2c\x31\x2e\x33\x32\x35\x20\x35\x2e\x34\ +\x2c\x33\x2e\x33\x37\x35\x20\x35\x2e\x34\x2c\x36\x20\x30\x2c\x30\ +\x2e\x36\x32\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x31\x2e\x32\x35\ +\x20\x2d\x30\x2e\x33\x35\x2c\x31\x2e\x38\x32\x35\x20\x43\x20\x33\ +\x2e\x34\x2c\x31\x30\x2e\x35\x35\x20\x30\x2e\x33\x35\x2c\x38\x2e\ +\x37\x35\x20\x30\x2e\x33\x35\x2c\x35\x2e\x36\x32\x35\x20\x56\x20\ +\x35\x20\x7a\x20\x6d\x20\x36\x2e\x37\x32\x35\x2c\x31\x31\x2e\x36\ +\x32\x35\x20\x63\x20\x30\x2c\x2d\x31\x2e\x31\x20\x2d\x30\x2e\x34\ +\x2c\x2d\x32\x2e\x30\x35\x20\x2d\x30\x2e\x39\x37\x35\x2c\x2d\x32\ +\x2e\x39\x20\x43\x20\x36\x2e\x35\x2c\x31\x32\x2e\x38\x37\x35\x20\ +\x36\x2e\x37\x32\x35\x2c\x31\x31\x2e\x39\x35\x20\x36\x2e\x37\x32\ +\x35\x2c\x31\x31\x20\x36\x2e\x37\x32\x35\x2c\x36\x2e\x34\x35\x20\ +\x30\x2e\x33\x35\x2c\x34\x2e\x35\x35\x20\x30\x2e\x33\x35\x2c\x30\ +\x20\x48\x20\x30\x20\x76\x20\x31\x32\x2e\x35\x20\x68\x20\x30\x2e\ +\x33\x35\x20\x76\x20\x2d\x31\x2e\x38\x37\x35\x20\x63\x20\x32\x2e\ +\x34\x37\x35\x2c\x31\x2e\x32\x37\x35\x20\x35\x2e\x37\x35\x2c\x33\ +\x2e\x33\x20\x35\x2e\x37\x35\x2c\x36\x20\x43\x20\x36\x2e\x31\x2c\ +\x31\x37\x2e\x31\x37\x35\x20\x35\x2e\x39\x37\x35\x2c\x31\x37\x2e\ +\x37\x20\x35\x2e\x37\x37\x35\x2c\x31\x38\x2e\x32\x20\x35\x2e\x37\ +\x2c\x31\x38\x2e\x35\x37\x35\x20\x36\x2c\x31\x38\x2e\x38\x32\x35\ +\x20\x36\x2e\x33\x2c\x31\x38\x2e\x38\x32\x35\x20\x63\x20\x30\x2e\ +\x37\x2c\x30\x20\x30\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x36\x20\x30\ +\x2e\x37\x37\x35\x2c\x2d\x32\x2e\x32\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x34\x38\x22\x0a\ +\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\ +\x00\x00\x0a\xb1\ \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\ +\x6e\x6f\x22\x3f\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\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\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x30\x39\x39\x22\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\x30\ -\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\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x31\x30\x35\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x2d\x34\x2e\x39\x32\x39\x30\x37\x38\x34\ -\x2c\x2d\x30\x2e\x32\x32\x34\x39\x34\x37\x30\x32\x20\x2d\x30\x2e\ -\x30\x32\x35\x2c\x31\x2e\x37\x32\x35\x30\x30\x30\x30\x32\x20\x76\ -\x20\x30\x2e\x32\x37\x35\x20\x63\x20\x30\x2c\x30\x2e\x35\x35\x20\ -\x30\x2e\x30\x35\x2c\x31\x2e\x31\x20\x30\x2e\x31\x2c\x31\x2e\x36\ -\x35\x20\x31\x2e\x31\x32\x35\x2c\x2d\x30\x2e\x39\x32\x35\x20\x32\ -\x2e\x32\x32\x35\x2c\x2d\x32\x2e\x30\x32\x35\x20\x32\x2e\x32\x32\ -\x35\x2c\x2d\x33\x2e\x34\x37\x35\x30\x30\x30\x30\x32\x20\x30\x2c\ -\x2d\x30\x2e\x38\x35\x20\x2d\x30\x2e\x33\x2c\x2d\x31\x2e\x37\x32\ -\x34\x39\x39\x39\x39\x38\x20\x2d\x31\x2e\x30\x32\x35\x2c\x2d\x31\ -\x2e\x37\x32\x34\x39\x39\x39\x39\x38\x20\x2d\x30\x2e\x37\x35\x2c\ -\x30\x20\x2d\x31\x2e\x32\x35\x2c\x30\x2e\x37\x35\x20\x2d\x31\x2e\ -\x32\x37\x35\x2c\x31\x2e\x35\x34\x39\x39\x39\x39\x39\x38\x20\x7a\ -\x20\x6d\x20\x2d\x30\x2e\x39\x35\x2c\x34\x2e\x35\x30\x30\x30\x30\ -\x30\x30\x32\x20\x2d\x30\x2e\x30\x35\x2c\x2d\x32\x2e\x36\x35\x20\ -\x63\x20\x2d\x30\x2e\x37\x2c\x30\x2e\x38\x37\x35\x20\x2d\x31\x2e\ -\x37\x37\x35\x2c\x31\x2e\x35\x37\x35\x20\x2d\x32\x2e\x36\x32\x35\ -\x2c\x32\x2e\x33\x37\x35\x20\x2d\x30\x2e\x33\x2c\x30\x2e\x32\x37\ -\x35\x20\x2d\x30\x2e\x34\x35\x2c\x30\x2e\x38\x20\x2d\x30\x2e\x38\ -\x37\x35\x2c\x30\x2e\x38\x20\x2d\x30\x2e\x33\x2c\x30\x20\x2d\x30\ -\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x35\ -\x32\x35\x2c\x2d\x30\x2e\x35\x32\x35\x20\x6c\x20\x2d\x30\x2e\x32\ -\x37\x34\x39\x39\x39\x36\x2c\x2d\x31\x34\x2e\x39\x37\x35\x20\x63\ -\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x33\x39\x39\x39\ -\x39\x39\x36\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\x2e\x36\x32\x34\ -\x39\x39\x39\x36\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\x2e\x32\x32\ -\x35\x2c\x30\x20\x30\x2e\x34\x32\x35\x2c\x30\x2e\x30\x37\x35\x20\ -\x30\x2e\x36\x32\x35\x2c\x30\x2e\x31\x37\x35\x20\x6c\x20\x2d\x30\ -\x2e\x31\x35\x2c\x38\x2e\x37\x32\x35\x20\x63\x20\x30\x2e\x34\x35\ -\x2c\x2d\x30\x2e\x34\x37\x35\x20\x31\x2e\x30\x35\x2c\x2d\x30\x2e\ -\x37\x35\x20\x31\x2e\x37\x2c\x2d\x30\x2e\x37\x35\x20\x30\x2e\x35\ -\x35\x2c\x30\x20\x31\x2e\x30\x35\x2c\x30\x2e\x32\x32\x35\x20\x31\ -\x2e\x34\x32\x35\x2c\x30\x2e\x35\x37\x35\x20\x6c\x20\x2d\x30\x2e\ -\x31\x37\x35\x2c\x2d\x38\x2e\x35\x35\x20\x63\x20\x30\x2e\x32\x2c\ -\x2d\x30\x2e\x31\x20\x30\x2e\x34\x2c\x2d\x30\x2e\x31\x37\x35\x20\ -\x30\x2e\x36\x32\x35\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\x2e\x32\ -\x32\x35\x2c\x30\x20\x30\x2e\x34\x35\x2c\x30\x2e\x30\x37\x35\x20\ -\x30\x2e\x36\x35\x2c\x30\x2e\x31\x37\x35\x20\x6c\x20\x2d\x30\x2e\ -\x31\x37\x35\x2c\x38\x2e\x37\x32\x35\x20\x63\x20\x30\x2e\x36\x2c\ -\x2d\x30\x2e\x34\x37\x35\x20\x31\x2e\x33\x37\x35\x2c\x2d\x30\x2e\ -\x37\x35\x20\x32\x2e\x31\x35\x2c\x2d\x30\x2e\x37\x35\x20\x31\x2e\ -\x33\x35\x2c\x30\x20\x32\x2e\x33\x37\x34\x39\x39\x39\x39\x37\x2c\ -\x31\x2e\x31\x32\x35\x20\x32\x2e\x33\x37\x34\x39\x39\x39\x39\x37\ -\x2c\x32\x2e\x34\x37\x34\x39\x39\x39\x39\x38\x20\x30\x2c\x32\x2e\ -\x30\x35\x30\x30\x30\x30\x30\x32\x20\x2d\x32\x2e\x32\x34\x39\x39\ -\x39\x39\x39\x37\x2c\x32\x2e\x39\x35\x30\x30\x30\x30\x30\x32\x20\ -\x2d\x33\x2e\x38\x32\x34\x39\x39\x39\x39\x37\x2c\x34\x2e\x32\x35\ -\x30\x30\x30\x30\x30\x32\x20\x2d\x30\x2e\x33\x35\x2c\x30\x2e\x32\ -\x37\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x30\x2e\x38\x20\x2d\x30\ -\x2e\x39\x37\x35\x2c\x30\x2e\x38\x20\x2d\x30\x2e\x33\x2c\x30\x20\ -\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x32\x32\x35\x20\x2d\x30\ -\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x35\x32\x35\x20\x7a\x20\x6d\x20\ -\x2d\x33\x2e\x33\x2c\x2d\x34\x2e\x35\x30\x30\x30\x30\x30\x30\x32\ -\x20\x2d\x30\x2e\x30\x32\x35\x2c\x31\x2e\x37\x32\x35\x30\x30\x30\ -\x30\x32\x20\x76\x20\x30\x2e\x32\x37\x35\x20\x63\x20\x30\x2c\x30\ -\x2e\x35\x37\x35\x20\x30\x2e\x30\x32\x35\x2c\x31\x2e\x31\x32\x35\ -\x20\x30\x2e\x31\x2c\x31\x2e\x37\x20\x31\x2c\x2d\x30\x2e\x39\x35\ -\x20\x31\x2e\x38\x2c\x2d\x32\x2e\x31\x35\x20\x31\x2e\x38\x2c\x2d\ -\x33\x2e\x35\x32\x35\x30\x30\x30\x30\x32\x20\x30\x2c\x2d\x30\x2e\ -\x38\x32\x35\x20\x2d\x30\x2e\x31\x35\x2c\x2d\x31\x2e\x37\x32\x34\ -\x39\x39\x39\x39\x38\x20\x2d\x30\x2e\x38\x35\x2c\x2d\x31\x2e\x37\ -\x32\x34\x39\x39\x39\x39\x38\x20\x2d\x30\x2e\x36\x37\x35\x2c\x30\ -\x20\x2d\x31\x2c\x30\x2e\x37\x37\x34\x39\x39\x39\x39\x38\x20\x2d\ -\x31\x2e\x30\x32\x35\x2c\x31\x2e\x35\x34\x39\x39\x39\x39\x39\x38\ -\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x31\x30\x31\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ -\x0a\ -\x00\x00\x09\x4e\ +\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ +\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ +\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ +\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x34\x33\x35\x30\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ +\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ +\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x31\x32\x38\x69\x2e\x73\ +\x76\x67\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x34\x33\x35\x38\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ +\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ +\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ +\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ +\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\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\x64\x65\ +\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ +\x34\x33\x35\x36\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ +\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\ +\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\ +\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\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\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\x77\x69\ +\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x32\ +\x30\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x34\x33\x35\x34\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\x7a\x6f\x6f\x6d\x3d\x22\x34\x32\x2e\x37\x32\x30\x35\x36\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x78\x3d\x22\x31\x35\x2e\x36\x31\x35\x38\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\ +\x22\x39\x38\x39\x2e\x34\x39\x35\x31\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\x31\x39\x32\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\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\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\x73\x76\x67\x34\x33\x35\x30\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\ +\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\ +\x2e\x75\x37\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\ +\x2e\x30\x32\x32\x39\x37\x38\x30\x33\x2c\x31\x39\x2e\x32\x31\x38\ +\x30\x33\x31\x20\x30\x2c\x2d\x30\x2e\x34\x37\x35\x20\x63\x20\x30\ +\x2c\x2d\x32\x2e\x38\x35\x20\x32\x2e\x31\x37\x34\x39\x39\x39\x39\ +\x37\x2c\x2d\x35\x20\x33\x2e\x36\x37\x34\x39\x39\x39\x39\x37\x2c\ +\x2d\x37\x2e\x33\x37\x35\x20\x30\x2e\x31\x2c\x30\x2e\x34\x20\x30\ +\x2e\x31\x35\x2c\x30\x2e\x38\x32\x35\x20\x30\x2e\x31\x35\x2c\x31\ +\x2e\x32\x32\x35\x20\x30\x2c\x32\x2e\x34\x32\x35\x20\x2d\x32\x2e\ +\x31\x37\x35\x2c\x34\x2e\x38\x35\x20\x2d\x33\x2e\x38\x32\x34\x39\ +\x39\x39\x39\x37\x2c\x36\x2e\x36\x32\x35\x20\x7a\x20\x6d\x20\x30\ +\x2c\x35\x2e\x33\x32\x35\x20\x63\x20\x30\x2c\x2d\x34\x2e\x34\x35\ +\x20\x34\x2e\x37\x39\x39\x39\x39\x39\x39\x37\x2c\x2d\x37\x2e\x35\ +\x20\x34\x2e\x37\x39\x39\x39\x39\x39\x39\x37\x2c\x2d\x31\x31\x2e\ +\x39\x35\x20\x30\x2c\x2d\x30\x2e\x38\x32\x35\x20\x2d\x30\x2e\x31\ +\x35\x2c\x2d\x31\x2e\x36\x32\x35\x20\x2d\x30\x2e\x34\x35\x2c\x2d\ +\x32\x2e\x34\x20\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x39\x30\x30\ +\x30\x30\x30\x34\x20\x30\x2e\x37\x2c\x2d\x31\x2e\x38\x32\x35\x30\ +\x30\x30\x34\x20\x30\x2e\x37\x2c\x2d\x32\x2e\x38\x35\x20\x30\x2c\ +\x2d\x31\x2e\x30\x32\x35\x20\x2d\x30\x2e\x32\x35\x2c\x2d\x32\x2e\ +\x30\x34\x39\x39\x39\x39\x36\x20\x2d\x30\x2e\x37\x2c\x2d\x32\x2e\ +\x39\x37\x34\x39\x39\x39\x36\x20\x30\x2e\x34\x32\x35\x2c\x2d\x30\ +\x2e\x38\x37\x35\x20\x30\x2e\x37\x2c\x2d\x31\x2e\x38\x30\x30\x30\ +\x30\x30\x34\x20\x30\x2e\x37\x2c\x2d\x32\x2e\x38\x32\x35\x30\x30\ +\x30\x34\x20\x30\x2c\x2d\x31\x2e\x30\x32\x35\x30\x30\x30\x30\x32\ +\x20\x2d\x30\x2e\x32\x35\x2c\x2d\x32\x2e\x30\x35\x30\x30\x30\x30\ +\x30\x32\x20\x2d\x30\x2e\x37\x2c\x2d\x32\x2e\x39\x37\x35\x20\x30\ +\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x38\x37\x35\x20\x30\x2e\x37\x2c\ +\x2d\x31\x2e\x38\x32\x35\x20\x30\x2e\x37\x2c\x2d\x32\x2e\x38\x35\ +\x20\x30\x2c\x2d\x30\x2e\x38\x37\x35\x20\x2d\x30\x2e\x33\x32\x35\ +\x2c\x2d\x31\x2e\x37\x32\x35\x20\x2d\x30\x2e\x38\x35\x2c\x2d\x32\ +\x2e\x34\x32\x35\x20\x30\x2e\x36\x2c\x2d\x31\x2e\x30\x35\x20\x31\ +\x2e\x30\x32\x35\x2c\x2d\x32\x2e\x31\x32\x35\x20\x31\x2e\x30\x32\ +\x35\x2c\x2d\x33\x2e\x33\x37\x35\x20\x30\x2c\x2d\x31\x2e\x35\x32\ +\x35\x20\x2d\x30\x2e\x34\x2c\x2d\x33\x2e\x30\x32\x35\x20\x2d\x31\ +\x2e\x30\x35\x2c\x2d\x34\x2e\x34\x32\x35\x20\x2d\x30\x2e\x31\x2c\ +\x2d\x30\x2e\x31\x37\x35\x20\x2d\x30\x2e\x32\x37\x35\x2c\x2d\x30\ +\x2e\x32\x37\x35\x20\x2d\x30\x2e\x34\x35\x2c\x2d\x30\x2e\x32\x37\ +\x35\x20\x2d\x30\x2e\x33\x2c\x30\x20\x2d\x30\x2e\x36\x2c\x30\x2e\ +\x32\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x30\x2e\x36\x32\x35\x20\ +\x30\x2e\x36\x35\x2c\x31\x2e\x32\x37\x35\x20\x31\x2e\x30\x35\x2c\ +\x32\x2e\x36\x35\x20\x31\x2e\x30\x35\x2c\x34\x2e\x30\x37\x35\x20\ +\x30\x2c\x32\x2e\x33\x37\x35\x20\x2d\x32\x2e\x34\x32\x35\x2c\x34\ +\x2e\x35\x35\x20\x2d\x34\x2e\x32\x34\x39\x39\x39\x39\x39\x37\x2c\ +\x36\x2e\x30\x37\x35\x20\x6c\x20\x30\x2c\x2d\x32\x2e\x37\x20\x2d\ +\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\x33\x31\x2e\x32\x35\x20\x30\ +\x2e\x33\x35\x2c\x30\x20\x7a\x20\x6d\x20\x30\x2c\x2d\x31\x31\x2e\ +\x31\x32\x35\x20\x30\x2c\x2d\x30\x2e\x35\x20\x63\x20\x30\x2c\x2d\ +\x32\x2e\x38\x37\x35\x20\x32\x2e\x32\x32\x34\x39\x39\x39\x39\x37\ +\x2c\x2d\x35\x2e\x30\x35\x20\x33\x2e\x37\x32\x34\x39\x39\x39\x39\ +\x37\x2c\x2d\x37\x2e\x34\x34\x39\x39\x39\x39\x36\x20\x30\x2e\x32\ +\x32\x35\x2c\x30\x2e\x35\x39\x39\x39\x39\x39\x36\x20\x30\x2e\x33\ +\x35\x2c\x31\x2e\x32\x32\x34\x39\x39\x39\x36\x20\x30\x2e\x33\x35\ +\x2c\x31\x2e\x38\x37\x34\x39\x39\x39\x36\x20\x30\x2c\x32\x2e\x33\ +\x32\x34\x39\x39\x39\x36\x20\x2d\x32\x2e\x33\x32\x35\x2c\x34\x2e\ +\x35\x32\x35\x20\x2d\x34\x2e\x30\x37\x34\x39\x39\x39\x39\x37\x2c\ +\x36\x2e\x30\x37\x35\x20\x7a\x20\x6d\x20\x30\x2c\x2d\x35\x2e\x38\ +\x20\x30\x2c\x2d\x30\x2e\x35\x20\x63\x20\x30\x2c\x2d\x32\x2e\x38\ +\x37\x34\x39\x39\x39\x36\x20\x32\x2e\x32\x32\x34\x39\x39\x39\x39\ +\x37\x2c\x2d\x35\x2e\x30\x35\x20\x33\x2e\x37\x32\x34\x39\x39\x39\ +\x39\x37\x2c\x2d\x37\x2e\x34\x35\x30\x30\x30\x30\x30\x32\x20\x30\ +\x2e\x32\x32\x35\x2c\x30\x2e\x36\x20\x30\x2e\x33\x35\x2c\x31\x2e\ +\x32\x32\x35\x20\x30\x2e\x33\x35\x2c\x31\x2e\x38\x37\x35\x30\x30\ +\x30\x30\x32\x20\x30\x2c\x32\x2e\x33\x32\x35\x30\x30\x30\x34\x20\ +\x2d\x32\x2e\x33\x32\x35\x2c\x34\x2e\x35\x32\x35\x20\x2d\x34\x2e\ +\x30\x37\x34\x39\x39\x39\x39\x37\x2c\x36\x2e\x30\x37\x35\x20\x7a\ +\x20\x6d\x20\x30\x2c\x2d\x35\x2e\x38\x32\x35\x20\x30\x2c\x2d\x30\ +\x2e\x35\x20\x63\x20\x30\x2c\x2d\x32\x2e\x37\x37\x35\x20\x32\x2e\ +\x30\x39\x39\x39\x39\x39\x39\x37\x2c\x2d\x34\x2e\x38\x35\x20\x33\ +\x2e\x36\x32\x34\x39\x39\x39\x39\x37\x2c\x2d\x37\x2e\x31\x32\x35\ +\x20\x30\x2e\x32\x37\x35\x2c\x30\x2e\x34\x37\x35\x20\x30\x2e\x34\ +\x35\x2c\x31\x20\x30\x2e\x34\x35\x2c\x31\x2e\x35\x35\x20\x30\x2c\ +\x32\x2e\x33\x32\x35\x20\x2d\x32\x2e\x33\x32\x35\x2c\x34\x2e\x35\ +\x32\x34\x39\x39\x39\x39\x38\x20\x2d\x34\x2e\x30\x37\x34\x39\x39\ +\x39\x39\x37\x2c\x36\x2e\x30\x37\x35\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x33\x35\x32\x22\x0a\ +\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\ +\x00\x00\x08\xfd\ \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\ +\x6e\x6f\x22\x3f\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\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x33\x33\x38\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\ -\x34\x20\x72\x39\x39\x33\x39\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\ -\x73\x74\x34\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\ -\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\ -\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ -\x3d\x22\x31\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\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\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\ -\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x31\x36\x36\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\x7a\x6f\x6f\x6d\x3d\x22\x37\x2e\x35\x35\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ -\x22\x34\x38\x2e\x39\x37\x32\x37\x30\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\ -\x30\x34\x2e\x30\x34\x34\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\x31\x39\x32\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\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ -\x64\x3d\x22\x30\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\x73\x76\x67\x33\x33\x38\x31\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\x33\x38\x39\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ -\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ -\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ -\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ -\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ -\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\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\x64\ -\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\ -\x73\x33\x33\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\ -\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x2e\x37\x32\ -\x31\x33\x39\x38\x33\x2c\x32\x2e\x33\x34\x30\x35\x33\x38\x20\x63\ -\x20\x30\x2c\x2d\x30\x2e\x36\x35\x20\x30\x2e\x32\x35\x2c\x2d\x31\ -\x20\x30\x2e\x39\x2c\x2d\x31\x20\x30\x2e\x38\x35\x2c\x30\x20\x32\ -\x2e\x31\x32\x35\x2c\x30\x2e\x33\x37\x35\x20\x33\x2e\x32\x35\x2c\ -\x30\x2e\x39\x32\x35\x20\x6c\x20\x2d\x33\x2e\x34\x32\x35\x2c\x2d\ -\x34\x2e\x31\x20\x63\x20\x2d\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\ -\x32\x20\x2d\x30\x2e\x32\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\x2d\ -\x30\x2e\x32\x35\x2c\x2d\x30\x2e\x36\x32\x35\x20\x30\x2c\x2d\x30\ -\x2e\x38\x32\x35\x20\x31\x2e\x32\x32\x35\x2c\x2d\x31\x2e\x36\x20\ -\x32\x2e\x31\x35\x2c\x2d\x32\x2e\x34\x20\x30\x2e\x36\x35\x2c\x2d\ -\x30\x2e\x35\x35\x20\x30\x2e\x39\x37\x35\x2c\x2d\x31\x2e\x33\x35\ -\x20\x30\x2e\x39\x37\x35\x2c\x2d\x32\x2e\x31\x32\x35\x20\x30\x2c\ -\x2d\x30\x2e\x36\x20\x2d\x30\x2e\x32\x2c\x2d\x31\x2e\x31\x37\x35\ -\x20\x2d\x30\x2e\x36\x2c\x2d\x31\x2e\x36\x37\x35\x20\x6c\x20\x2d\ -\x30\x2e\x39\x37\x35\x2c\x2d\x31\x2e\x31\x35\x20\x63\x20\x2d\x30\ -\x2e\x30\x35\x2c\x2d\x30\x2e\x30\x37\x35\x20\x2d\x30\x2e\x30\x37\ -\x35\x2c\x2d\x30\x2e\x31\x35\x20\x2d\x30\x2e\x30\x37\x35\x2c\x2d\ -\x30\x2e\x32\x32\x35\x20\x30\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\ -\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x33\x35\x20\x30\x2e\x33\x35\x2c\ -\x2d\x30\x2e\x33\x35\x20\x30\x2e\x30\x37\x35\x2c\x30\x20\x30\x2e\ -\x31\x37\x35\x2c\x30\x2e\x30\x32\x35\x20\x30\x2e\x32\x35\x2c\x30\ -\x2e\x31\x32\x35\x20\x6c\x20\x33\x2e\x38\x2c\x34\x2e\x35\x35\x20\ -\x63\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x32\x20\x30\x2e\x32\x35\ -\x2c\x30\x2e\x34\x32\x35\x20\x30\x2e\x32\x35\x2c\x30\x2e\x36\x32\ -\x35\x20\x30\x2c\x30\x2e\x38\x32\x35\x20\x2d\x31\x2e\x32\x32\x35\ -\x2c\x31\x2e\x36\x20\x2d\x32\x2e\x31\x35\x2c\x32\x2e\x34\x20\x2d\ -\x30\x2e\x36\x35\x2c\x30\x2e\x35\x35\x20\x2d\x30\x2e\x39\x37\x35\ -\x2c\x31\x2e\x33\x35\x20\x2d\x30\x2e\x39\x37\x35\x2c\x32\x2e\x31\ -\x32\x34\x39\x39\x39\x39\x35\x20\x30\x2c\x30\x2e\x36\x20\x30\x2e\ -\x32\x2c\x31\x2e\x31\x37\x35\x20\x30\x2e\x36\x2c\x31\x2e\x36\x37\ -\x35\x30\x30\x30\x30\x35\x20\x6c\x20\x32\x2e\x31\x37\x35\x2c\x32\ -\x2e\x36\x20\x63\x20\x30\x2e\x30\x35\x2c\x30\x2e\x30\x37\x35\x20\ -\x30\x2e\x30\x37\x35\x2c\x30\x2e\x31\x32\x35\x20\x30\x2e\x30\x37\ -\x35\x2c\x30\x2e\x32\x20\x30\x2c\x30\x2e\x31\x37\x35\x20\x2d\x30\ -\x2e\x31\x37\x35\x2c\x30\x2e\x33\x35\x20\x2d\x30\x2e\x33\x35\x2c\ -\x30\x2e\x33\x35\x20\x2d\x30\x2e\x30\x37\x35\x2c\x30\x20\x2d\x30\ -\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x30\x32\x35\x20\x2d\x30\x2e\x32\ -\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\x2d\x30\x2e\x34\x37\x35\x2c\ -\x2d\x30\x2e\x35\x35\x20\x2d\x31\x2e\x36\x35\x2c\x2d\x31\x2e\x30\ -\x37\x35\x20\x2d\x32\x2e\x35\x35\x2c\x2d\x31\x2e\x30\x37\x35\x20\ -\x2d\x31\x2c\x30\x20\x2d\x31\x2e\x33\x2c\x30\x2e\x37\x32\x35\x20\ -\x2d\x31\x2e\x33\x2c\x31\x2e\x37\x35\x20\x30\x2c\x30\x2e\x38\x37\ -\x35\x20\x30\x2e\x32\x37\x35\x2c\x31\x2e\x38\x37\x35\x20\x30\x2e\ -\x37\x2c\x32\x2e\x34\x20\x30\x2e\x31\x2c\x30\x2e\x31\x32\x35\x20\ -\x30\x2c\x30\x2e\x32\x37\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x30\ -\x2e\x32\x37\x35\x20\x2d\x30\x2e\x30\x35\x2c\x30\x20\x2d\x30\x2e\ -\x31\x2c\x30\x20\x2d\x30\x2e\x31\x32\x35\x2c\x2d\x30\x2e\x30\x35\ -\x20\x2d\x31\x2e\x31\x35\x2c\x2d\x31\x2e\x33\x37\x35\x20\x2d\x32\ -\x2e\x33\x32\x35\x2c\x2d\x33\x2e\x37\x35\x20\x2d\x32\x2e\x33\x32\ -\x35\x2c\x2d\x35\x2e\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x38\x33\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x06\x97\ +\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ +\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ +\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ +\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x35\x32\x35\x30\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ +\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ +\x6e\x61\x6d\x65\x3d\x22\x6e\x6f\x74\x65\x68\x65\x61\x64\x73\x4d\ +\x61\x78\x69\x6d\x61\x2e\x73\x76\x67\x22\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\x32\x35\x38\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\ +\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\ +\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\ +\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ +\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\ +\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\ +\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x35\x32\x35\x36\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\ +\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\ +\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x35\x32\ +\x35\x34\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\x7a\x6f\x6f\x6d\x3d\x22\x32\x32\ +\x2e\x36\x32\x37\x34\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x31\x32\x2e\x34\x37\ +\x33\x33\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x79\x3d\x22\x39\x39\x30\x2e\x34\x36\x31\x39\ +\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\x31\x30\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\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x35\ +\x32\x35\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\ +\x22\x6e\x6f\x74\x65\x68\x65\x61\x64\x73\x2e\x73\x4d\x33\x6e\x65\ +\x6f\x6d\x65\x6e\x73\x75\x72\x61\x6c\x22\x0a\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x6d\x20\x31\x2e\x33\x2c\x2d\x30\x2e\x38\x31\x36\x39\ +\x34\x31\x37\x36\x20\x31\x33\x2e\x36\x35\x2c\x30\x20\x63\x20\x30\ +\x2e\x33\x2c\x30\x20\x30\x2e\x35\x35\x2c\x30\x2e\x32\x32\x35\x30\ +\x30\x30\x30\x32\x20\x30\x2e\x35\x35\x2c\x30\x2e\x35\x32\x35\x30\ +\x30\x30\x30\x32\x20\x6c\x20\x30\x2c\x30\x2e\x35\x35\x20\x63\x20\ +\x30\x2c\x30\x2e\x33\x20\x2d\x30\x2e\x32\x35\x2c\x30\x2e\x35\x32\ +\x35\x20\x2d\x30\x2e\x35\x35\x2c\x30\x2e\x35\x32\x35\x20\x6c\x20\ +\x2d\x31\x33\x2e\x36\x35\x2c\x30\x20\x63\x20\x2d\x30\x2e\x33\x2c\ +\x30\x20\x2d\x30\x2e\x35\x35\x2c\x2d\x30\x2e\x32\x32\x35\x20\x2d\ +\x30\x2e\x35\x35\x2c\x2d\x30\x2e\x35\x32\x35\x20\x6c\x20\x30\x2c\ +\x2d\x30\x2e\x35\x35\x20\x63\x20\x30\x2c\x2d\x30\x2e\x33\x20\x30\ +\x2e\x32\x35\x2c\x2d\x30\x2e\x35\x32\x35\x30\x30\x30\x30\x32\x20\ +\x30\x2e\x35\x35\x2c\x2d\x30\x2e\x35\x32\x35\x30\x30\x30\x30\x32\ +\x20\x7a\x20\x6d\x20\x31\x33\x2e\x36\x35\x2c\x2d\x32\x2e\x36\x30\ +\x30\x30\x30\x30\x30\x34\x20\x2d\x31\x33\x2e\x36\x35\x2c\x30\x20\ +\x63\x20\x2d\x30\x2e\x33\x35\x2c\x30\x20\x2d\x30\x2e\x35\x35\x2c\ +\x2d\x30\x2e\x34\x20\x2d\x30\x2e\x35\x35\x2c\x2d\x30\x2e\x38\x20\ +\x30\x2c\x2d\x30\x2e\x32\x35\x20\x2d\x30\x2e\x31\x37\x35\x2c\x2d\ +\x30\x2e\x33\x37\x35\x20\x2d\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\ +\x33\x37\x35\x20\x2d\x30\x2e\x32\x2c\x30\x20\x2d\x30\x2e\x33\x37\ +\x35\x2c\x30\x2e\x31\x32\x35\x20\x2d\x30\x2e\x33\x37\x35\x2c\x30\ +\x2e\x33\x37\x35\x20\x6c\x20\x30\x2c\x38\x2e\x34\x20\x63\x20\x30\ +\x2c\x30\x2e\x32\x35\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x33\x37\ +\x35\x20\x30\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\ +\x32\x2c\x30\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\ +\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x30\x2c\ +\x2d\x30\x2e\x34\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x38\x20\x30\x2e\ +\x35\x35\x2c\x2d\x30\x2e\x38\x20\x6c\x20\x31\x33\x2e\x36\x35\x2c\ +\x30\x20\x63\x20\x30\x2e\x33\x35\x2c\x30\x20\x30\x2e\x35\x35\x2c\ +\x30\x2e\x34\x20\x30\x2e\x35\x35\x2c\x30\x2e\x38\x20\x30\x2c\x30\ +\x2e\x32\x35\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\ +\x30\x2e\x33\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x30\x2e\x32\x2c\ +\x30\x20\x30\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\x30\ +\x2e\x33\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x6c\x20\x30\x2c\ +\x2d\x38\x2e\x34\x20\x63\x20\x30\x2e\x31\x37\x35\x2c\x2d\x32\x2e\ +\x30\x37\x35\x20\x30\x2e\x34\x35\x2c\x2d\x34\x2e\x32\x20\x30\x2e\ +\x34\x35\x2c\x2d\x36\x2e\x32\x37\x34\x39\x39\x39\x32\x20\x30\x2c\ +\x2d\x30\x2e\x33\x20\x2d\x30\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x34\ +\x32\x35\x20\x2d\x30\x2e\x34\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\ +\x2d\x30\x2e\x32\x32\x35\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\ +\x30\x2e\x31\x32\x35\x20\x2d\x30\x2e\x34\x35\x2c\x30\x2e\x34\x32\ +\x35\x20\x6c\x20\x2d\x30\x2e\x33\x2c\x36\x2e\x32\x34\x39\x39\x39\ +\x39\x32\x20\x30\x2c\x30\x2e\x30\x32\x35\x20\x63\x20\x30\x2c\x30\ +\x2e\x34\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x38\x20\x2d\x30\x2e\x35\ +\x35\x2c\x30\x2e\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x35\x32\x35\x32\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x06\x40\ \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\ +\x6e\x6f\x22\x3f\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\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\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x31\x31\x39\x22\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\x32\ -\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\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x31\x32\x35\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x2d\x33\x2e\x31\x31\x30\x32\x38\x31\x34\ -\x2c\x37\x2e\x38\x39\x34\x31\x36\x34\x39\x20\x63\x20\x30\x2c\x30\ -\x2e\x32\x32\x35\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x34\x32\x35\x20\ -\x2d\x30\x2e\x34\x32\x35\x2c\x30\x2e\x34\x32\x35\x20\x2d\x30\x2e\ -\x32\x32\x35\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\ -\x32\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\ -\x76\x20\x2d\x33\x2e\x37\x37\x35\x20\x6c\x20\x2d\x32\x2e\x31\x37\ -\x35\x2c\x30\x2e\x37\x37\x35\x20\x76\x20\x34\x2e\x30\x35\x20\x63\ -\x20\x30\x2c\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x32\x2c\x30\x2e\ -\x34\x32\x35\x20\x2d\x30\x2e\x34\x32\x35\x2c\x30\x2e\x34\x32\x35\ -\x20\x2d\x30\x2e\x32\x32\x35\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\ -\x2c\x2d\x30\x2e\x32\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\ -\x34\x32\x35\x20\x76\x20\x2d\x33\x2e\x37\x35\x20\x6c\x20\x2d\x30\ -\x2e\x39\x37\x35\x2c\x30\x2e\x33\x32\x35\x20\x63\x20\x2d\x30\x2e\ -\x32\x35\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x30\ -\x2e\x31\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x33\x37\x35\ -\x20\x76\x20\x2d\x31\x2e\x36\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\ -\x37\x35\x20\x30\x2e\x31\x32\x35\x2c\x2d\x30\x2e\x33\x32\x35\x20\ -\x30\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x6c\x20\x31\ -\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x34\x35\x20\x76\x20\x2d\x34\x2e\ -\x31\x20\x6c\x20\x2d\x30\x2e\x39\x37\x35\x2c\x30\x2e\x33\x35\x20\ -\x63\x20\x2d\x30\x2e\x32\x35\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x35\ -\x32\x35\x2c\x2d\x30\x2e\x31\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\ -\x30\x2e\x33\x37\x35\x20\x76\x20\x2d\x31\x2e\x36\x32\x35\x20\x63\ -\x20\x30\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\x2e\x31\x32\x35\x2c\ -\x2d\x30\x2e\x33\x32\x35\x20\x30\x2e\x32\x37\x35\x2c\x2d\x30\x2e\ -\x33\x37\x35\x20\x6c\x20\x31\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x34\ -\x32\x35\x20\x76\x20\x2d\x34\x2e\x30\x37\x35\x20\x63\x20\x30\x2c\ -\x2d\x30\x2e\x32\x32\x35\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x34\x32\ -\x35\x20\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\x30\ -\x2e\x32\x32\x35\x2c\x30\x20\x30\x2e\x34\x32\x35\x2c\x30\x2e\x32\ -\x20\x30\x2e\x34\x32\x35\x2c\x30\x2e\x34\x32\x35\x20\x76\x20\x33\ -\x2e\x37\x37\x35\x20\x6c\x20\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\ -\x37\x37\x35\x20\x76\x20\x2d\x34\x2e\x30\x35\x20\x63\x20\x30\x2c\ -\x2d\x30\x2e\x32\x32\x35\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x34\x32\ -\x35\x20\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\x30\ -\x2e\x32\x32\x35\x2c\x30\x20\x30\x2e\x34\x32\x35\x2c\x30\x2e\x32\ -\x20\x30\x2e\x34\x32\x35\x2c\x30\x2e\x34\x32\x35\x20\x76\x20\x33\ -\x2e\x37\x35\x20\x6c\x20\x30\x2e\x39\x37\x35\x2c\x2d\x30\x2e\x33\ -\x32\x35\x20\x63\x20\x30\x2e\x32\x35\x2c\x2d\x30\x2e\x31\x20\x30\ -\x2e\x35\x32\x35\x2c\x30\x2e\x31\x20\x30\x2e\x35\x32\x35\x2c\x30\ -\x2e\x33\x37\x35\x20\x76\x20\x31\x2e\x36\x20\x63\x20\x30\x2c\x30\ -\x2e\x31\x37\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x30\x2e\x33\x32\ -\x35\x20\x2d\x30\x2e\x32\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x6c\ -\x20\x2d\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x35\x20\x76\x20\x34\ -\x2e\x31\x20\x6c\x20\x30\x2e\x39\x37\x35\x2c\x2d\x30\x2e\x33\x35\ -\x20\x63\x20\x30\x2e\x32\x35\x2c\x2d\x30\x2e\x31\x30\x30\x30\x30\ -\x30\x30\x33\x20\x30\x2e\x35\x32\x35\x2c\x30\x2e\x31\x20\x30\x2e\ -\x35\x32\x35\x2c\x30\x2e\x33\x37\x35\x20\x76\x20\x31\x2e\x36\x32\ -\x35\x20\x63\x20\x30\x2c\x30\x2e\x31\x37\x35\x20\x2d\x30\x2e\x31\ -\x32\x35\x2c\x30\x2e\x33\x32\x35\x20\x2d\x30\x2e\x32\x37\x35\x2c\ -\x30\x2e\x33\x37\x35\x20\x6c\x20\x2d\x31\x2e\x32\x32\x35\x2c\x30\ -\x2e\x34\x32\x35\x20\x76\x20\x34\x2e\x30\x37\x35\x20\x7a\x20\x6d\ -\x20\x2d\x30\x2e\x38\x35\x2c\x2d\x31\x30\x2e\x33\x32\x35\x20\x2d\ -\x32\x2e\x31\x37\x35\x2c\x30\x2e\x37\x35\x20\x76\x20\x34\x2e\x31\ -\x20\x6c\x20\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x37\x35\x20\x76\ -\x20\x2d\x34\x2e\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x31\x32\x31\x22\x20\x2f\x3e\x0a\x3c\ -\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0d\x67\ +\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ +\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ +\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ +\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x37\x35\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\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\x73\x74\x4c\x6f\x6e\x67\x61\x2e\ +\x73\x76\x67\x22\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\x34\x38\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\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x38\x31\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ +\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\ +\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\ +\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\ +\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\ +\x74\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\ +\x34\x37\x39\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\x7a\x6f\x6f\x6d\x3d\x22\x33\ +\x30\x2e\x32\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x38\x2e\x35\x33\x31\x38\x35\ +\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x79\x3d\x22\x39\x39\x38\x2e\x36\x34\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\x31\x39\x32\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\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\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\x73\x76\x67\x33\x34\x37\ +\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ +\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x72\ +\x65\x73\x74\x73\x2e\x4d\x32\x6d\x65\x6e\x73\x75\x72\x61\x6c\x22\ +\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\x2e\x34\x37\x35\ +\x2c\x36\x2e\x35\x20\x35\x2e\x34\x37\x35\x2c\x2d\x36\x20\x30\x2c\ +\x2d\x36\x2e\x35\x20\x30\x2c\x36\x20\x5a\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x37\x37\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x06\x97\ \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\ @@ -6058,509 +5782,765 @@ qt_resource_data = b"\ \x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ \x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ \x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x32\x39\x38\x33\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\ -\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x62\x6c\ -\x6f\x63\x6b\x45\x6e\x64\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\ -\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\ -\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\ -\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\ -\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x36\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\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x33\x34\x30\x30\x37\x30\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x78\x3d\x22\x33\x38\x2e\x35\x36\x34\x37\x36\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ -\x3d\x22\x39\x39\x31\x2e\x35\x32\x34\x38\x34\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x78\x3d\x22\x31\x39\x32\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\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x30\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\x73\x76\x67\x32\x39\x38\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\x39\x39\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x64\x65\x66\x73\x32\x39\x38\x39\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x67\x0a\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x34\x30\x70\x78\x3b\x66\x6f\ -\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ -\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\ -\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\ -\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\x6c\x69\x6e\x65\x2d\ -\x68\x65\x69\x67\x68\x74\x3a\x31\x32\x35\x25\x3b\x6c\x65\x74\x74\ -\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x77\ -\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\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\x66\x6f\x6e\x74\x2d\x66\x61\x6d\ -\x69\x6c\x79\x3a\x27\x38\x2d\x62\x69\x74\x20\x4c\x69\x6d\x69\x74\ -\x20\x4f\x20\x42\x52\x4b\x27\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\x38\x2d\x62\x69\x74\x20\x4c\x69\x6d\x69\ -\x74\x20\x4f\x20\x42\x52\x4b\x27\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x74\x65\x78\x74\x33\x37\x33\x39\x22\x0a\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\x31\x2e\x34\x34\x31\x36\x36\ -\x35\x2c\x31\x34\x2e\x38\x38\x37\x34\x34\x34\x29\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\ -\x6c\x79\x3a\x57\x65\x61\x76\x65\x72\x20\x42\x52\x4b\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\x57\x65\x61\x76\x65\ -\x72\x20\x42\x52\x4b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x31\x38\x2e\x36\x37\x32\x38\x33\x39\x2c\x32\x2e\x30\ -\x30\x34\x31\x30\x39\x32\x20\x63\x20\x2d\x31\x2e\x33\x32\x32\x33\ -\x34\x35\x2c\x30\x2e\x36\x36\x34\x37\x34\x35\x33\x20\x30\x2e\x37\ -\x39\x30\x33\x32\x34\x2c\x31\x2e\x32\x31\x34\x38\x30\x36\x39\x20\ -\x30\x2e\x34\x2c\x31\x2e\x36\x38\x20\x2d\x31\x2e\x30\x32\x38\x32\ -\x39\x32\x2c\x2d\x30\x2e\x31\x35\x39\x32\x30\x32\x35\x20\x2d\x32\ -\x2e\x35\x37\x33\x35\x38\x2c\x2d\x31\x2e\x30\x36\x37\x32\x34\x33\ -\x35\x20\x2d\x32\x2e\x31\x36\x31\x32\x35\x31\x2c\x2d\x32\x2e\x33\ -\x35\x36\x38\x37\x37\x37\x20\x30\x2e\x34\x33\x34\x34\x38\x34\x2c\ -\x2d\x31\x2e\x32\x38\x34\x36\x37\x30\x32\x35\x20\x31\x2e\x37\x39\ -\x39\x33\x33\x39\x2c\x2d\x31\x2e\x37\x30\x38\x31\x30\x35\x38\x39\ -\x20\x32\x2e\x37\x32\x38\x37\x34\x39\x2c\x2d\x32\x2e\x35\x32\x35\ -\x36\x32\x33\x20\x30\x2e\x36\x37\x39\x35\x35\x39\x2c\x2d\x31\x2e\ -\x30\x33\x33\x30\x37\x34\x32\x20\x2d\x31\x2e\x33\x37\x33\x36\x33\ -\x2c\x2d\x31\x2e\x31\x36\x32\x39\x37\x30\x35\x20\x2d\x31\x2e\x36\ -\x39\x37\x35\x2c\x2d\x32\x2e\x30\x34\x37\x34\x39\x38\x38\x20\x2d\ -\x31\x2e\x36\x35\x33\x36\x34\x32\x2c\x2d\x31\x2e\x38\x33\x37\x31\ -\x33\x37\x38\x20\x2d\x31\x2e\x33\x33\x35\x31\x38\x36\x2c\x2d\x34\ -\x2e\x37\x37\x32\x34\x36\x35\x33\x20\x30\x2e\x32\x33\x36\x35\x39\ -\x38\x2c\x2d\x36\x2e\x35\x34\x35\x34\x36\x31\x33\x20\x30\x2e\x36\ -\x36\x38\x30\x39\x34\x2c\x2d\x31\x2e\x30\x30\x39\x37\x38\x30\x34\ -\x20\x31\x2e\x37\x38\x36\x35\x39\x38\x2c\x2d\x31\x2e\x39\x32\x31\ -\x35\x35\x34\x34\x20\x31\x2e\x36\x37\x30\x39\x30\x32\x2c\x2d\x33\ -\x2e\x32\x34\x34\x35\x33\x33\x34\x20\x2d\x30\x2e\x31\x37\x38\x31\ -\x39\x33\x2c\x2d\x31\x2e\x33\x32\x38\x38\x32\x36\x20\x2d\x31\x2e\ -\x36\x37\x34\x31\x38\x2c\x2d\x31\x2e\x37\x30\x36\x34\x33\x35\x20\ -\x2d\x32\x2e\x32\x35\x39\x39\x39\x39\x2c\x2d\x32\x2e\x37\x39\x32\ -\x34\x39\x39\x20\x2d\x31\x2e\x33\x30\x37\x34\x35\x35\x2c\x2d\x31\ -\x2e\x39\x31\x33\x34\x34\x36\x20\x2d\x30\x2e\x38\x30\x30\x38\x36\ -\x38\x2c\x2d\x34\x2e\x35\x34\x35\x34\x38\x34\x20\x30\x2e\x36\x37\ -\x37\x39\x36\x32\x2c\x2d\x36\x2e\x32\x30\x31\x34\x35\x35\x20\x30\ -\x2e\x36\x39\x31\x33\x38\x38\x2c\x2d\x31\x2e\x30\x32\x34\x37\x35\ -\x31\x20\x31\x2e\x38\x39\x38\x34\x32\x37\x2c\x2d\x32\x2e\x30\x33\ -\x37\x31\x38\x32\x20\x31\x2e\x35\x31\x34\x35\x33\x36\x2c\x2d\x33\ -\x2e\x34\x30\x36\x30\x33\x34\x20\x2d\x30\x2e\x32\x38\x30\x33\x34\ -\x2c\x2d\x31\x2e\x33\x30\x32\x31\x39\x35\x20\x2d\x31\x2e\x37\x38\ -\x30\x38\x37\x39\x2c\x2d\x31\x2e\x33\x33\x30\x39\x39\x38\x20\x2d\ -\x32\x2e\x35\x35\x39\x35\x32\x39\x2c\x2d\x32\x2e\x31\x36\x38\x39\ -\x30\x36\x20\x2d\x30\x2e\x39\x34\x34\x32\x37\x36\x2c\x2d\x30\x2e\ -\x39\x37\x38\x31\x30\x32\x20\x30\x2e\x30\x38\x32\x34\x31\x2c\x2d\ -\x32\x2e\x33\x30\x36\x35\x36\x34\x20\x30\x2e\x39\x37\x34\x39\x37\ -\x34\x2c\x2d\x32\x2e\x38\x37\x36\x39\x35\x31\x20\x30\x2e\x35\x35\ -\x32\x30\x32\x39\x2c\x2d\x30\x2e\x34\x32\x33\x34\x39\x36\x20\x31\ -\x2e\x32\x33\x38\x33\x39\x37\x2c\x2d\x30\x2e\x37\x31\x31\x32\x36\ -\x20\x31\x2e\x36\x36\x32\x30\x35\x36\x2c\x2d\x31\x2e\x32\x36\x39\ -\x31\x34\x35\x20\x2d\x30\x2e\x30\x34\x32\x34\x37\x2c\x2d\x30\x2e\ -\x34\x39\x38\x34\x39\x36\x20\x2d\x31\x2e\x37\x33\x36\x31\x35\x33\ -\x2c\x2d\x31\x2e\x34\x39\x31\x37\x39\x38\x20\x2d\x30\x2e\x33\x38\ -\x30\x34\x36\x38\x2c\x2d\x31\x2e\x31\x33\x39\x36\x39\x38\x20\x31\ -\x2e\x33\x39\x30\x30\x35\x35\x2c\x30\x2e\x33\x32\x33\x33\x35\x32\ -\x20\x32\x2e\x34\x37\x35\x35\x31\x36\x2c\x31\x2e\x39\x34\x37\x35\ -\x32\x37\x20\x31\x2e\x32\x31\x31\x30\x39\x33\x2c\x33\x2e\x31\x30\ -\x32\x38\x31\x36\x20\x2d\x30\x2e\x36\x38\x36\x36\x37\x2c\x30\x2e\ -\x38\x30\x37\x36\x39\x36\x20\x2d\x31\x2e\x38\x34\x34\x33\x37\x2c\ -\x31\x2e\x30\x38\x36\x32\x32\x33\x20\x2d\x32\x2e\x34\x34\x35\x36\ -\x32\x34\x2c\x31\x2e\x39\x37\x34\x33\x38\x20\x30\x2e\x36\x31\x34\ -\x33\x33\x31\x2c\x31\x2e\x30\x38\x36\x32\x39\x35\x20\x32\x2e\x32\ -\x37\x35\x33\x34\x2c\x31\x2e\x35\x36\x38\x33\x38\x38\x20\x32\x2e\ -\x36\x38\x31\x32\x34\x38\x2c\x32\x2e\x39\x37\x35\x34\x37\x20\x30\ -\x2e\x38\x35\x35\x35\x30\x36\x2c\x31\x2e\x39\x34\x33\x37\x39\x31\ -\x20\x30\x2e\x30\x35\x31\x38\x33\x2c\x34\x2e\x31\x35\x31\x31\x30\ -\x33\x20\x2d\x31\x2e\x32\x36\x39\x32\x35\x31\x2c\x35\x2e\x36\x37\ -\x31\x31\x39\x37\x20\x2d\x30\x2e\x36\x37\x35\x34\x34\x35\x2c\x30\ -\x2e\x39\x34\x36\x32\x30\x33\x20\x2d\x31\x2e\x37\x35\x39\x30\x36\ -\x37\x2c\x31\x2e\x39\x33\x37\x31\x37\x37\x20\x2d\x31\x2e\x33\x33\ -\x34\x34\x39\x38\x2c\x33\x2e\x32\x32\x30\x38\x32\x39\x20\x30\x2e\ -\x33\x36\x33\x39\x31\x38\x2c\x31\x2e\x31\x38\x36\x39\x30\x31\x20\ -\x31\x2e\x37\x35\x31\x34\x39\x35\x2c\x31\x2e\x35\x34\x36\x36\x37\ -\x38\x20\x32\x2e\x32\x38\x39\x39\x39\x38\x2c\x32\x2e\x36\x32\x39\ -\x39\x39\x38\x20\x31\x2e\x32\x34\x37\x39\x32\x36\x2c\x31\x2e\x39\ -\x31\x34\x36\x30\x36\x20\x30\x2e\x35\x39\x37\x39\x31\x33\x2c\x34\ -\x2e\x34\x36\x33\x32\x30\x32\x33\x20\x2d\x30\x2e\x38\x32\x31\x36\ -\x32\x34\x2c\x36\x2e\x30\x39\x31\x38\x37\x38\x20\x2d\x30\x2e\x36\ -\x39\x36\x31\x37\x2c\x31\x2e\x30\x31\x34\x34\x38\x38\x20\x2d\x31\ -\x2e\x39\x30\x33\x37\x39\x37\x2c\x32\x2e\x30\x32\x39\x31\x30\x37\ -\x38\x20\x2d\x31\x2e\x34\x36\x38\x33\x37\x34\x2c\x33\x2e\x33\x39\ -\x38\x31\x31\x35\x31\x20\x30\x2e\x32\x33\x32\x35\x34\x32\x2c\x30\ -\x2e\x39\x37\x30\x31\x37\x33\x39\x20\x31\x2e\x31\x39\x30\x39\x36\ -\x32\x2c\x31\x2e\x32\x38\x36\x38\x32\x39\x31\x20\x31\x2e\x39\x38\ -\x35\x37\x38\x2c\x31\x2e\x36\x36\x35\x36\x32\x33\x37\x20\x31\x2e\ -\x33\x35\x32\x39\x36\x33\x2c\x30\x2e\x35\x34\x37\x30\x33\x34\x38\ -\x20\x31\x2e\x30\x38\x39\x38\x35\x38\x2c\x32\x2e\x33\x30\x39\x37\ -\x38\x34\x35\x31\x20\x30\x2e\x30\x34\x37\x31\x33\x2c\x33\x2e\x30\ -\x34\x31\x34\x36\x38\x33\x34\x20\x43\x20\x31\x39\x2e\x37\x39\x35\ -\x36\x36\x33\x2c\x31\x2e\x32\x35\x36\x35\x37\x39\x31\x20\x31\x39\ -\x2e\x32\x33\x33\x37\x33\x37\x2c\x31\x2e\x36\x32\x39\x37\x32\x36\ -\x34\x20\x31\x38\x2e\x36\x37\x32\x38\x34\x2c\x32\x2e\x30\x30\x34\ -\x31\x30\x39\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x34\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x31\x31\x39\x22\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\x32\ +\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\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x31\x32\x35\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x2d\x33\x2e\x31\x31\x30\x32\x38\x31\x34\ +\x2c\x37\x2e\x38\x39\x34\x31\x36\x34\x39\x20\x63\x20\x30\x2c\x30\ +\x2e\x32\x32\x35\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x34\x32\x35\x20\ +\x2d\x30\x2e\x34\x32\x35\x2c\x30\x2e\x34\x32\x35\x20\x2d\x30\x2e\ +\x32\x32\x35\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\ +\x32\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\ +\x76\x20\x2d\x33\x2e\x37\x37\x35\x20\x6c\x20\x2d\x32\x2e\x31\x37\ +\x35\x2c\x30\x2e\x37\x37\x35\x20\x76\x20\x34\x2e\x30\x35\x20\x63\ +\x20\x30\x2c\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x32\x2c\x30\x2e\ +\x34\x32\x35\x20\x2d\x30\x2e\x34\x32\x35\x2c\x30\x2e\x34\x32\x35\ +\x20\x2d\x30\x2e\x32\x32\x35\x2c\x30\x20\x2d\x30\x2e\x34\x32\x35\ +\x2c\x2d\x30\x2e\x32\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\ +\x34\x32\x35\x20\x76\x20\x2d\x33\x2e\x37\x35\x20\x6c\x20\x2d\x30\ +\x2e\x39\x37\x35\x2c\x30\x2e\x33\x32\x35\x20\x63\x20\x2d\x30\x2e\ +\x32\x35\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x30\ +\x2e\x31\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x33\x37\x35\ +\x20\x76\x20\x2d\x31\x2e\x36\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\ +\x37\x35\x20\x30\x2e\x31\x32\x35\x2c\x2d\x30\x2e\x33\x32\x35\x20\ +\x30\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\x6c\x20\x31\ +\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x34\x35\x20\x76\x20\x2d\x34\x2e\ +\x31\x20\x6c\x20\x2d\x30\x2e\x39\x37\x35\x2c\x30\x2e\x33\x35\x20\ +\x63\x20\x2d\x30\x2e\x32\x35\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x35\ +\x32\x35\x2c\x2d\x30\x2e\x31\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\ +\x30\x2e\x33\x37\x35\x20\x76\x20\x2d\x31\x2e\x36\x32\x35\x20\x63\ +\x20\x30\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\x2e\x31\x32\x35\x2c\ +\x2d\x30\x2e\x33\x32\x35\x20\x30\x2e\x32\x37\x35\x2c\x2d\x30\x2e\ +\x33\x37\x35\x20\x6c\x20\x31\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x34\ +\x32\x35\x20\x76\x20\x2d\x34\x2e\x30\x37\x35\x20\x63\x20\x30\x2c\ +\x2d\x30\x2e\x32\x32\x35\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x34\x32\ +\x35\x20\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\x30\ +\x2e\x32\x32\x35\x2c\x30\x20\x30\x2e\x34\x32\x35\x2c\x30\x2e\x32\ +\x20\x30\x2e\x34\x32\x35\x2c\x30\x2e\x34\x32\x35\x20\x76\x20\x33\ +\x2e\x37\x37\x35\x20\x6c\x20\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\ +\x37\x37\x35\x20\x76\x20\x2d\x34\x2e\x30\x35\x20\x63\x20\x30\x2c\ +\x2d\x30\x2e\x32\x32\x35\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x34\x32\ +\x35\x20\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x34\x32\x35\x20\x30\ +\x2e\x32\x32\x35\x2c\x30\x20\x30\x2e\x34\x32\x35\x2c\x30\x2e\x32\ +\x20\x30\x2e\x34\x32\x35\x2c\x30\x2e\x34\x32\x35\x20\x76\x20\x33\ +\x2e\x37\x35\x20\x6c\x20\x30\x2e\x39\x37\x35\x2c\x2d\x30\x2e\x33\ +\x32\x35\x20\x63\x20\x30\x2e\x32\x35\x2c\x2d\x30\x2e\x31\x20\x30\ +\x2e\x35\x32\x35\x2c\x30\x2e\x31\x20\x30\x2e\x35\x32\x35\x2c\x30\ +\x2e\x33\x37\x35\x20\x76\x20\x31\x2e\x36\x20\x63\x20\x30\x2c\x30\ +\x2e\x31\x37\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x30\x2e\x33\x32\ +\x35\x20\x2d\x30\x2e\x32\x37\x35\x2c\x30\x2e\x33\x37\x35\x20\x6c\ +\x20\x2d\x31\x2e\x32\x32\x35\x2c\x30\x2e\x34\x35\x20\x76\x20\x34\ +\x2e\x31\x20\x6c\x20\x30\x2e\x39\x37\x35\x2c\x2d\x30\x2e\x33\x35\ +\x20\x63\x20\x30\x2e\x32\x35\x2c\x2d\x30\x2e\x31\x30\x30\x30\x30\ +\x30\x30\x33\x20\x30\x2e\x35\x32\x35\x2c\x30\x2e\x31\x20\x30\x2e\ +\x35\x32\x35\x2c\x30\x2e\x33\x37\x35\x20\x76\x20\x31\x2e\x36\x32\ +\x35\x20\x63\x20\x30\x2c\x30\x2e\x31\x37\x35\x20\x2d\x30\x2e\x31\ +\x32\x35\x2c\x30\x2e\x33\x32\x35\x20\x2d\x30\x2e\x32\x37\x35\x2c\ +\x30\x2e\x33\x37\x35\x20\x6c\x20\x2d\x31\x2e\x32\x32\x35\x2c\x30\ +\x2e\x34\x32\x35\x20\x76\x20\x34\x2e\x30\x37\x35\x20\x7a\x20\x6d\ +\x20\x2d\x30\x2e\x38\x35\x2c\x2d\x31\x30\x2e\x33\x32\x35\x20\x2d\ +\x32\x2e\x31\x37\x35\x2c\x30\x2e\x37\x35\x20\x76\x20\x34\x2e\x31\ +\x20\x6c\x20\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x37\x35\x20\x76\ +\x20\x2d\x34\x2e\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x33\x31\x32\x31\x22\x20\x2f\x3e\x0a\x3c\ \x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0a\xb1\ +\x00\x00\x06\x0c\ \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\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\ +\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\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ -\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ -\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ -\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x34\x33\x35\x30\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ -\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ -\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x31\x32\x38\x69\x2e\x73\ -\x76\x67\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x34\x33\x35\x38\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ -\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ -\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ -\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ -\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\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\x64\x65\ -\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ -\x34\x33\x35\x36\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ -\x20\x20\x20\x20\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\x22\x0a\x20\x20\x20\x20\x20\x6f\ -\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\ -\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\ +\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\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x34\x31\x31\x22\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\x34\x31\ +\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ +\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ +\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ +\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ +\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\ +\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x31\x37\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x32\x2e\x38\x32\x35\x2c\x31\x35\x2e\x36\ +\x39\x32\x33\x39\x33\x20\x32\x2e\x31\x35\x2c\x2d\x38\x2e\x31\x39\ +\x39\x39\x39\x39\x38\x20\x63\x20\x2d\x30\x2e\x39\x2c\x30\x2e\x33\ +\x32\x35\x20\x2d\x31\x2e\x38\x32\x35\x2c\x30\x2e\x36\x20\x2d\x32\ +\x2e\x38\x2c\x30\x2e\x36\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\ +\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\x32\x2e\x31\ +\x37\x35\x2c\x2d\x32\x20\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\x30\ +\x2e\x37\x37\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x37\x37\ +\x35\x2c\x2d\x31\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\ +\x31\x2e\x32\x2c\x30\x2e\x34\x20\x31\x2e\x34\x2c\x31\x20\x30\x2e\ +\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x37\x35\x2c\x31\x2e\x35\ +\x20\x30\x2e\x39\x2c\x31\x2e\x35\x20\x30\x2e\x34\x32\x35\x2c\x30\ +\x20\x31\x2e\x34\x32\x35\x2c\x2d\x31\x2e\x33\x35\x20\x31\x2e\x35\ +\x35\x2c\x2d\x31\x2e\x38\x20\x6c\x20\x30\x2e\x39\x37\x35\x2c\x2d\ +\x33\x2e\x37\x35\x20\x63\x20\x2d\x30\x2e\x38\x37\x35\x2c\x30\x2e\ +\x33\x32\x35\x20\x2d\x31\x2e\x38\x2c\x30\x2e\x35\x37\x35\x20\x2d\ +\x32\x2e\x37\x32\x35\x2c\x30\x2e\x35\x37\x35\x20\x2d\x31\x2e\x31\ +\x35\x2c\x30\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x38\x35\ +\x30\x30\x30\x30\x30\x35\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\x32\ +\x2e\x30\x30\x30\x30\x30\x30\x30\x35\x20\x30\x2c\x2d\x30\x2e\x39\ +\x37\x34\x39\x39\x39\x39\x35\x20\x30\x2e\x38\x2c\x2d\x31\x2e\x37\ +\x37\x34\x39\x39\x39\x39\x35\x20\x31\x2e\x38\x2c\x2d\x31\x2e\x37\ +\x37\x34\x39\x39\x39\x39\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\ +\x2e\x32\x2c\x30\x2e\x34\x20\x31\x2e\x34\x2c\x30\x2e\x39\x39\x39\ +\x39\x39\x39\x39\x35\x20\x30\x2e\x32\x35\x2c\x30\x2e\x37\x20\x30\ +\x2e\x31\x37\x35\x2c\x31\x2e\x35\x20\x30\x2e\x39\x2c\x31\x2e\x35\ +\x20\x30\x2e\x34\x32\x35\x2c\x30\x20\x31\x2e\x33\x35\x2c\x2d\x31\ +\x2e\x33\x32\x35\x20\x31\x2e\x34\x35\x2c\x2d\x31\x2e\x37\x34\x39\ +\x39\x39\x39\x39\x35\x20\x6c\x20\x31\x2c\x2d\x33\x2e\x38\x20\x63\ +\x20\x2d\x30\x2e\x38\x35\x2c\x30\x2e\x33\x20\x2d\x31\x2e\x37\x35\ +\x2c\x30\x2e\x35\x37\x35\x20\x2d\x32\x2e\x36\x35\x2c\x30\x2e\x35\ +\x37\x35\x20\x2d\x31\x2e\x31\x35\x2c\x30\x20\x2d\x32\x2e\x31\x37\ +\x35\x2c\x2d\x30\x2e\x38\x35\x20\x2d\x32\x2e\x31\x37\x35\x2c\x2d\ +\x32\x20\x30\x2c\x2d\x30\x2e\x39\x37\x35\x20\x30\x2e\x37\x37\x35\ +\x2c\x2d\x31\x2e\x37\x37\x35\x20\x31\x2e\x37\x37\x35\x2c\x2d\x31\ +\x2e\x37\x37\x35\x20\x30\x2e\x36\x35\x2c\x30\x20\x31\x2e\x32\x32\ +\x35\x2c\x30\x2e\x34\x20\x31\x2e\x34\x32\x35\x2c\x31\x20\x30\x2e\ +\x32\x35\x2c\x30\x2e\x37\x20\x30\x2e\x31\x35\x2c\x31\x2e\x35\x20\ +\x30\x2e\x38\x37\x35\x2c\x31\x2e\x35\x20\x30\x2e\x34\x2c\x30\x20\ +\x31\x2e\x32\x32\x35\x2c\x2d\x31\x2e\x33\x35\x20\x31\x2e\x33\x37\ +\x35\x2c\x2d\x31\x2e\x37\x35\x20\x30\x2e\x31\x2c\x2d\x30\x2e\x32\ +\x37\x35\x20\x30\x2e\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2e\ +\x36\x2c\x30\x20\x4c\x20\x34\x2c\x31\x35\x2e\x36\x39\x32\x33\x39\ +\x33\x20\x63\x20\x2d\x30\x2e\x31\x37\x35\x2c\x30\x2e\x31\x35\x20\ +\x2d\x30\x2e\x33\x37\x35\x2c\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\ +\x35\x37\x35\x2c\x30\x2e\x32\x32\x35\x20\x2d\x30\x2e\x32\x2c\x30\ +\x20\x2d\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x30\x37\x35\x20\x2d\ +\x30\x2e\x36\x2c\x2d\x30\x2e\x32\x32\x35\x20\x7a\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x31\x33\x22\ +\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x10\x83\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ +\x33\x31\x37\x39\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\x39\x31\x20\ +\x72\x31\x33\x37\x32\x35\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x63\x6c\x65\ +\x66\x54\x72\x65\x62\x6c\x65\x5f\x38\x2e\x73\x76\x67\x22\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\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\x22\ +\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\ +\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\ \x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\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\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\x77\x69\ -\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x31\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x32\ -\x30\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x34\x33\x35\x34\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\x7a\x6f\x6f\x6d\x3d\x22\x34\x32\x2e\x37\x32\x30\x35\x36\x33\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\ +\x61\x63\x69\x74\x79\x3d\x22\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x32\x30\x39\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x32\x39\ +\x38\x39\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\x7a\x6f\x6f\x6d\x3d\x22\x34\x2e\ +\x38\x30\x38\x33\x32\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x33\x32\x2e\x36\x34\ +\x32\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x79\x3d\x22\x39\x36\x35\x2e\x31\x38\x38\x30\x33\ \x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x78\x3d\x22\x31\x35\x2e\x36\x31\x35\x38\x30\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\ -\x22\x39\x38\x39\x2e\x34\x39\x35\x31\x38\x22\x0a\x20\x20\x20\x20\ +\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x31\x39\x32\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\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\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\x73\x76\x67\x33\ +\x31\x37\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\x33\x31\x38\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\ +\x65\x66\x73\x33\x31\x38\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x36\x2e\ +\x33\x35\x2c\x2d\x37\x2e\x35\x30\x37\x30\x38\x32\x34\x20\x43\x20\ +\x35\x2e\x35\x2c\x2d\x31\x30\x2e\x34\x35\x37\x30\x38\x32\x20\x35\ +\x2c\x2d\x31\x33\x2e\x32\x38\x32\x30\x38\x32\x20\x35\x2c\x2d\x31\ +\x36\x2e\x39\x38\x32\x30\x38\x32\x20\x63\x20\x30\x2c\x2d\x33\x20\ +\x31\x2e\x34\x2c\x2d\x35\x2e\x38\x20\x33\x2e\x37\x37\x35\x2c\x2d\ +\x37\x2e\x36\x32\x35\x20\x30\x2e\x30\x35\x2c\x2d\x30\x2e\x30\x35\ +\x20\x30\x2e\x31\x32\x35\x2c\x2d\x30\x2e\x30\x37\x35\x20\x30\x2e\ +\x32\x2c\x2d\x30\x2e\x30\x37\x35\x20\x30\x2e\x30\x37\x35\x2c\x30\ +\x20\x30\x2e\x31\x35\x2c\x30\x2e\x30\x32\x35\x20\x30\x2e\x32\x2c\ +\x30\x2e\x30\x37\x35\x20\x31\x2e\x39\x2c\x32\x2e\x32\x35\x20\x33\ +\x2e\x35\x37\x35\x2c\x36\x2e\x36\x20\x33\x2e\x35\x37\x35\x2c\x39\ +\x2e\x36\x32\x35\x20\x30\x2c\x33\x2e\x37\x35\x20\x2d\x32\x2e\x32\ +\x35\x2c\x36\x2e\x36\x37\x34\x39\x39\x39\x36\x20\x2d\x34\x2e\x37\ +\x35\x2c\x39\x2e\x34\x39\x39\x39\x39\x39\x36\x20\x30\x2e\x35\x35\ +\x2c\x31\x2e\x38\x32\x34\x39\x39\x39\x39\x20\x31\x2e\x30\x35\x2c\ +\x33\x2e\x36\x37\x34\x39\x39\x39\x39\x20\x31\x2e\x35\x32\x35\x2c\ +\x35\x2e\x35\x32\x34\x39\x39\x39\x39\x20\x68\x20\x30\x2e\x31\x35\ +\x20\x63\x20\x33\x2e\x38\x35\x2c\x30\x20\x36\x2e\x33\x35\x2c\x33\ +\x2e\x31\x37\x35\x20\x36\x2e\x33\x35\x2c\x36\x2e\x34\x37\x35\x30\ +\x30\x30\x31\x20\x30\x2c\x31\x2e\x38\x39\x39\x39\x39\x39\x39\x20\ +\x2d\x30\x2e\x38\x32\x35\x2c\x33\x2e\x38\x32\x35\x30\x30\x30\x34\ +\x20\x2d\x32\x2e\x36\x37\x35\x2c\x35\x2e\x32\x30\x30\x30\x30\x30\ +\x34\x20\x2d\x30\x2e\x36\x32\x35\x2c\x30\x2e\x34\x37\x35\x20\x2d\ +\x31\x2e\x33\x32\x35\x2c\x30\x2e\x38\x20\x2d\x32\x2e\x30\x37\x35\ +\x2c\x31\x20\x30\x2c\x30\x2e\x33\x32\x35\x20\x30\x2e\x30\x32\x35\ +\x2c\x30\x2e\x36\x37\x35\x20\x30\x2e\x30\x32\x35\x2c\x31\x20\x30\ +\x2c\x31\x2e\x31\x35\x20\x2d\x30\x2e\x30\x32\x35\x2c\x32\x2e\x33\ +\x20\x2d\x30\x2e\x31\x2c\x33\x2e\x34\x35\x20\x2d\x30\x2e\x31\x37\ +\x35\x2c\x33\x2e\x30\x32\x35\x20\x2d\x32\x2e\x33\x35\x2c\x35\x2e\ +\x36\x37\x35\x20\x2d\x35\x2e\x33\x35\x2c\x35\x2e\x36\x37\x35\x20\ +\x2d\x32\x2e\x37\x37\x35\x2c\x30\x20\x2d\x35\x2e\x30\x35\x2c\x2d\ +\x32\x2e\x33\x20\x2d\x35\x2e\x30\x35\x2c\x2d\x35\x2e\x31\x32\x35\ +\x20\x30\x2c\x2d\x31\x2e\x34\x35\x20\x31\x2e\x33\x35\x2c\x2d\x32\ +\x2e\x36\x20\x32\x2e\x38\x32\x35\x2c\x2d\x32\x2e\x36\x20\x31\x2e\ +\x33\x35\x2c\x30\x20\x32\x2e\x33\x37\x35\x2c\x31\x2e\x32\x20\x32\ +\x2e\x33\x37\x35\x2c\x32\x2e\x36\x20\x30\x2c\x31\x2e\x33\x20\x2d\ +\x31\x2e\x30\x37\x35\x2c\x32\x2e\x33\x37\x35\x20\x2d\x32\x2e\x33\ +\x37\x35\x2c\x32\x2e\x33\x37\x35\x20\x2d\x30\x2e\x33\x32\x35\x2c\ +\x30\x20\x2d\x30\x2e\x36\x37\x35\x2c\x2d\x30\x2e\x31\x20\x2d\x30\ +\x2e\x39\x37\x35\x2c\x2d\x30\x2e\x32\x35\x20\x30\x2e\x36\x35\x2c\ +\x31\x2e\x31\x37\x35\x20\x31\x2e\x38\x35\x2c\x32\x20\x33\x2e\x32\ +\x35\x2c\x32\x20\x32\x2e\x34\x37\x35\x2c\x30\x20\x34\x2e\x31\x35\ +\x2c\x2d\x32\x2e\x33\x20\x34\x2e\x33\x2c\x2d\x34\x2e\x38\x32\x35\ +\x20\x30\x2e\x30\x37\x35\x2c\x2d\x31\x2e\x31\x20\x30\x2e\x31\x2c\ +\x2d\x32\x2e\x32\x32\x35\x20\x30\x2e\x31\x2c\x2d\x33\x2e\x33\x32\ +\x35\x20\x76\x20\x2d\x30\x2e\x37\x37\x35\x20\x63\x20\x2d\x30\x2e\ +\x36\x35\x2c\x30\x2e\x31\x20\x2d\x31\x2e\x33\x2c\x30\x2e\x31\x35\ +\x20\x2d\x31\x2e\x39\x37\x35\x2c\x30\x2e\x31\x35\x20\x2d\x34\x2e\ +\x37\x2c\x30\x20\x2d\x38\x2e\x33\x32\x35\x2c\x2d\x34\x2e\x32\x37\ +\x35\x30\x30\x30\x35\x20\x2d\x38\x2e\x33\x32\x35\x2c\x2d\x39\x2e\ +\x33\x30\x30\x30\x30\x30\x35\x20\x30\x2c\x2d\x34\x2e\x35\x32\x35\ +\x20\x33\x2e\x33\x35\x2c\x2d\x37\x2e\x38\x34\x39\x39\x39\x39\x39\ +\x20\x36\x2e\x33\x35\x2c\x2d\x31\x31\x2e\x32\x37\x34\x39\x39\x39\ +\x39\x20\x7a\x20\x6d\x20\x34\x2e\x39\x2c\x31\x39\x2e\x32\x35\x30\ +\x30\x30\x30\x34\x20\x63\x20\x31\x2e\x38\x32\x35\x2c\x2d\x30\x2e\ +\x35\x35\x20\x33\x2e\x31\x2c\x2d\x32\x2e\x34\x32\x35\x30\x30\x30\ +\x35\x20\x33\x2e\x31\x2c\x2d\x34\x2e\x32\x35\x30\x30\x30\x30\x35\ +\x20\x30\x2c\x2d\x32\x2e\x32\x34\x39\x39\x39\x39\x39\x20\x2d\x31\ +\x2e\x36\x2c\x2d\x34\x2e\x34\x35\x20\x2d\x34\x2e\x32\x2c\x2d\x34\ +\x2e\x38\x20\x30\x2e\x35\x37\x35\x2c\x32\x2e\x37\x35\x30\x30\x30\ +\x30\x31\x20\x31\x2c\x35\x2e\x39\x37\x35\x20\x31\x2e\x31\x2c\x39\ +\x2e\x30\x35\x30\x30\x30\x30\x35\x20\x7a\x20\x6d\x20\x2d\x32\x2e\ +\x38\x35\x2c\x30\x2e\x33\x32\x35\x20\x63\x20\x30\x2e\x36\x32\x35\ +\x2c\x30\x20\x31\x2e\x32\x35\x2c\x2d\x30\x2e\x30\x32\x35\x20\x31\ +\x2e\x38\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\x43\x20\x31\x30\ +\x2e\x31\x37\x35\x2c\x38\x2e\x37\x36\x37\x39\x31\x37\x35\x20\x39\ +\x2e\x37\x2c\x35\x2e\x34\x36\x37\x39\x31\x37\x36\x20\x39\x2e\x31\ +\x2c\x32\x2e\x36\x34\x32\x39\x31\x37\x35\x20\x63\x20\x2d\x32\x2e\ +\x31\x37\x35\x2c\x30\x2e\x31\x32\x35\x20\x2d\x33\x2e\x34\x2c\x31\ +\x2e\x35\x35\x20\x2d\x33\x2e\x34\x2c\x33\x2e\x31\x30\x30\x30\x30\ +\x30\x31\x20\x30\x2c\x31\x2e\x31\x32\x35\x20\x30\x2e\x36\x35\x2c\ +\x32\x2e\x32\x39\x39\x39\x39\x39\x39\x20\x32\x2e\x30\x37\x35\x2c\ +\x33\x2e\x31\x32\x34\x39\x39\x39\x39\x20\x30\x2e\x31\x2c\x30\x2e\ +\x31\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\x32\x32\x35\x20\x30\x2e\ +\x31\x37\x35\x2c\x30\x2e\x33\x35\x20\x30\x2c\x30\x2e\x32\x37\x35\ +\x20\x2d\x30\x2e\x32\x32\x35\x2c\x30\x2e\x35\x32\x35\x20\x2d\x30\ +\x2e\x35\x2c\x30\x2e\x35\x32\x35\x20\x2d\x30\x2e\x30\x37\x35\x2c\ +\x30\x20\x2d\x30\x2e\x31\x35\x2c\x2d\x30\x2e\x30\x32\x35\x20\x2d\ +\x30\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x30\x35\x20\x2d\x32\x2c\x2d\ +\x31\x2e\x30\x37\x35\x20\x2d\x32\x2e\x39\x2c\x2d\x32\x2e\x38\x34\ +\x39\x39\x39\x39\x39\x20\x2d\x32\x2e\x39\x2c\x2d\x34\x2e\x36\x20\ +\x30\x2c\x2d\x32\x2e\x32\x35\x20\x31\x2e\x35\x32\x35\x2c\x2d\x34\ +\x2e\x34\x35\x20\x34\x2e\x32\x2c\x2d\x34\x2e\x39\x35\x20\x2d\x30\ +\x2e\x34\x2c\x2d\x31\x2e\x36\x20\x2d\x30\x2e\x38\x37\x35\x2c\x2d\ +\x33\x2e\x31\x37\x35\x20\x2d\x31\x2e\x33\x32\x35\x2c\x2d\x34\x2e\ +\x37\x34\x39\x39\x39\x39\x39\x20\x2d\x32\x2e\x37\x35\x2c\x33\x2e\ +\x30\x39\x39\x39\x39\x39\x39\x20\x2d\x35\x2e\x35\x2c\x36\x2e\x32\ +\x32\x34\x39\x39\x39\x39\x20\x2d\x35\x2e\x35\x2c\x31\x30\x2e\x33\ +\x35\x20\x30\x2c\x33\x2e\x34\x34\x39\x39\x39\x39\x39\x20\x33\x2e\ +\x32\x37\x35\x2c\x36\x2e\x33\x32\x35\x30\x30\x30\x34\x20\x36\x2e\ +\x37\x2c\x36\x2e\x33\x32\x35\x30\x30\x30\x34\x20\x7a\x20\x6d\x20\ +\x31\x2e\x37\x37\x35\x2c\x2d\x33\x33\x2e\x32\x20\x63\x20\x2d\x32\ +\x2e\x35\x2c\x31\x2e\x33\x37\x35\x20\x2d\x34\x2e\x30\x35\x2c\x33\ +\x2e\x39\x37\x35\x20\x2d\x34\x2e\x30\x35\x2c\x36\x2e\x38\x32\x35\ +\x20\x30\x2c\x32\x2e\x32\x35\x20\x30\x2e\x34\x37\x35\x2c\x34\x2e\ +\x30\x35\x20\x31\x2c\x35\x2e\x38\x39\x39\x39\x39\x39\x36\x20\x32\ +\x2e\x31\x35\x2c\x2d\x32\x2e\x35\x34\x39\x39\x39\x39\x36\x20\x33\ +\x2e\x39\x35\x2c\x2d\x35\x2e\x32\x32\x34\x39\x39\x39\x36\x20\x33\ +\x2e\x39\x35\x2c\x2d\x38\x2e\x35\x34\x39\x39\x39\x39\x36\x20\x30\ +\x2c\x2d\x31\x2e\x38\x32\x35\x20\x2d\x30\x2e\x32\x2c\x2d\x32\x2e\ +\x35\x37\x35\x20\x2d\x30\x2e\x39\x2c\x2d\x34\x2e\x31\x37\x35\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x31\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\ +\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\ +\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x65\x69\x67\x68\x74\x22\x0a\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x39\x2e\x38\x34\x35\x34\x36\ +\x31\x31\x2c\x32\x38\x2e\x33\x31\x36\x37\x32\x20\x63\x20\x30\x2e\ +\x35\x34\x36\x32\x37\x30\x39\x2c\x2d\x30\x2e\x35\x36\x35\x31\x30\ +\x38\x20\x31\x2e\x30\x31\x37\x31\x39\x33\x39\x2c\x2d\x31\x2e\x31\ +\x36\x37\x38\x38\x39\x20\x31\x2e\x30\x31\x37\x31\x39\x33\x39\x2c\ +\x2d\x31\x2e\x39\x34\x30\x32\x30\x33\x20\x30\x2c\x2d\x31\x2e\x30\ +\x35\x34\x38\x36\x38\x20\x2d\x31\x2e\x30\x39\x32\x35\x34\x31\x39\ +\x2c\x2d\x31\x2e\x37\x31\x34\x31\x36\x31\x20\x2d\x32\x2e\x32\x34\ +\x31\x35\x39\x34\x31\x2c\x2d\x31\x2e\x37\x31\x34\x31\x36\x31\x20\ +\x2d\x30\x2e\x39\x32\x33\x30\x31\x2c\x30\x20\x2d\x31\x2e\x34\x36\ +\x39\x32\x38\x31\x2c\x30\x2e\x37\x31\x35\x38\x30\x34\x20\x2d\x31\ +\x2e\x34\x36\x39\x32\x38\x31\x2c\x31\x2e\x34\x31\x32\x37\x37\x20\ +\x30\x2c\x30\x2e\x34\x31\x34\x34\x31\x32\x20\x30\x2e\x31\x36\x39\ +\x35\x33\x33\x2c\x30\x2e\x37\x39\x31\x31\x35\x31\x20\x30\x2e\x35\ +\x38\x33\x39\x34\x35\x2c\x31\x2e\x30\x33\x36\x30\x33\x31\x20\x7a\ +\x20\x6d\x20\x30\x2e\x35\x30\x38\x35\x39\x36\x39\x2c\x30\x2e\x33\ +\x30\x31\x33\x39\x31\x20\x63\x20\x31\x2e\x30\x33\x36\x30\x33\x31\ +\x2c\x30\x2e\x36\x30\x32\x37\x38\x32\x20\x31\x2e\x36\x30\x31\x31\ +\x33\x38\x2c\x31\x2e\x34\x36\x39\x32\x38\x20\x31\x2e\x36\x30\x31\ +\x31\x33\x38\x2c\x32\x2e\x33\x39\x32\x32\x39\x20\x30\x2c\x31\x2e\ +\x33\x35\x36\x32\x35\x38\x20\x2d\x31\x2e\x32\x32\x34\x34\x2c\x32\ +\x2e\x36\x37\x34\x38\x34\x33\x20\x2d\x33\x2e\x34\x38\x34\x38\x33\ +\x31\x31\x2c\x32\x2e\x36\x37\x34\x38\x34\x33\x20\x2d\x31\x2e\x37\ +\x33\x32\x39\x39\x37\x2c\x30\x20\x2d\x33\x2e\x33\x37\x31\x38\x31\ +\x2c\x2d\x30\x2e\x39\x39\x38\x33\x35\x37\x20\x2d\x33\x2e\x33\x37\ +\x31\x38\x31\x2c\x2d\x32\x2e\x35\x39\x39\x34\x39\x36\x20\x30\x2c\ +\x2d\x30\x2e\x39\x36\x30\x36\x38\x33\x20\x30\x2e\x37\x35\x33\x34\ +\x37\x37\x2c\x2d\x31\x2e\x36\x31\x39\x39\x37\x35\x20\x31\x2e\x34\ +\x36\x39\x32\x38\x31\x2c\x2d\x32\x2e\x32\x37\x39\x32\x36\x38\x20\ +\x2d\x30\x2e\x38\x32\x38\x38\x32\x35\x2c\x2d\x30\x2e\x35\x32\x37\ +\x34\x33\x34\x20\x2d\x31\x2e\x32\x30\x35\x35\x36\x34\x2c\x2d\x31\ +\x2e\x32\x39\x39\x37\x34\x38\x20\x2d\x31\x2e\x32\x30\x35\x35\x36\ +\x34\x2c\x2d\x32\x2e\x30\x35\x33\x32\x32\x35\x20\x30\x2c\x2d\x31\ +\x2e\x32\x36\x32\x30\x37\x34\x20\x31\x2e\x31\x33\x30\x32\x31\x36\ +\x2c\x2d\x32\x2e\x34\x38\x36\x34\x37\x34\x20\x33\x2e\x32\x35\x38\ +\x37\x38\x39\x2c\x2d\x32\x2e\x34\x38\x36\x34\x37\x34\x20\x31\x2e\ +\x35\x30\x36\x39\x35\x34\x31\x2c\x30\x20\x32\x2e\x39\x37\x36\x32\ +\x33\x34\x31\x2c\x30\x2e\x37\x35\x33\x34\x37\x37\x20\x32\x2e\x39\ +\x37\x36\x32\x33\x34\x31\x2c\x32\x2e\x31\x30\x39\x37\x33\x36\x20\ +\x30\x2c\x30\x2e\x39\x30\x34\x31\x37\x32\x20\x2d\x30\x2e\x36\x30\ +\x32\x37\x38\x32\x2c\x31\x2e\x35\x38\x32\x33\x30\x31\x20\x2d\x31\ +\x2e\x32\x34\x33\x32\x33\x37\x2c\x32\x2e\x32\x34\x31\x35\x39\x34\ +\x20\x7a\x20\x6d\x20\x2d\x33\x2e\x32\x35\x38\x37\x38\x38\x31\x2c\ +\x30\x2e\x34\x38\x39\x37\x36\x20\x63\x20\x2d\x30\x2e\x36\x34\x30\ +\x34\x35\x36\x2c\x30\x2e\x35\x36\x35\x31\x30\x38\x20\x2d\x31\x2e\ +\x32\x34\x33\x32\x33\x38\x2c\x31\x2e\x31\x34\x39\x30\x35\x33\x20\ +\x2d\x31\x2e\x32\x34\x33\x32\x33\x38\x2c\x31\x2e\x39\x37\x37\x38\ +\x37\x37\x20\x30\x2c\x31\x2e\x32\x39\x39\x37\x34\x38\x20\x31\x2e\ +\x32\x34\x33\x32\x33\x38\x2c\x32\x2e\x32\x30\x33\x39\x32\x31\x20\ +\x32\x2e\x36\x31\x38\x33\x33\x33\x2c\x32\x2e\x32\x30\x33\x39\x32\ +\x31\x20\x31\x2e\x30\x33\x36\x30\x33\x31\x32\x2c\x30\x20\x31\x2e\ +\x36\x35\x37\x36\x35\x30\x31\x2c\x2d\x30\x2e\x38\x30\x39\x39\x38\ +\x38\x20\x31\x2e\x36\x35\x37\x36\x35\x30\x31\x2c\x2d\x31\x2e\x36\ +\x30\x31\x31\x33\x39\x20\x30\x2c\x2d\x30\x2e\x34\x37\x30\x39\x32\ +\x33\x20\x2d\x30\x2e\x32\x30\x37\x32\x30\x35\x39\x2c\x2d\x30\x2e\ +\x39\x36\x30\x36\x38\x33\x20\x2d\x30\x2e\x36\x39\x36\x39\x36\x36\ +\x39\x2c\x2d\x31\x2e\x32\x34\x33\x32\x33\x37\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x32\x38\ +\x22\x0a\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\x3c\x2f\x73\x76\x67\ +\x3e\x0a\ +\x00\x00\x0d\x98\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ +\x33\x31\x36\x39\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\x39\x31\x20\ +\x72\x31\x33\x37\x32\x35\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x63\x6c\x65\ +\x66\x42\x61\x73\x73\x5f\x38\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\ +\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\ +\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\ +\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\ +\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x32\x30\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x30\x31\x38\ +\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\x7a\x6f\x6f\x6d\x3d\x22\x34\x2e\x34\x35\ +\x37\x36\x30\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x32\x35\x2e\x37\x35\x36\ +\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x79\x3d\x22\x39\x39\x34\x2e\x35\x39\x39\x37\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\x78\x3d\x22\x31\x39\x32\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\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\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\x73\x76\x67\x34\x33\x35\x30\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\ -\x6c\x79\x70\x68\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\ -\x2e\x75\x37\x22\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\ -\x2e\x30\x32\x32\x39\x37\x38\x30\x33\x2c\x31\x39\x2e\x32\x31\x38\ -\x30\x33\x31\x20\x30\x2c\x2d\x30\x2e\x34\x37\x35\x20\x63\x20\x30\ -\x2c\x2d\x32\x2e\x38\x35\x20\x32\x2e\x31\x37\x34\x39\x39\x39\x39\ -\x37\x2c\x2d\x35\x20\x33\x2e\x36\x37\x34\x39\x39\x39\x39\x37\x2c\ -\x2d\x37\x2e\x33\x37\x35\x20\x30\x2e\x31\x2c\x30\x2e\x34\x20\x30\ -\x2e\x31\x35\x2c\x30\x2e\x38\x32\x35\x20\x30\x2e\x31\x35\x2c\x31\ -\x2e\x32\x32\x35\x20\x30\x2c\x32\x2e\x34\x32\x35\x20\x2d\x32\x2e\ -\x31\x37\x35\x2c\x34\x2e\x38\x35\x20\x2d\x33\x2e\x38\x32\x34\x39\ -\x39\x39\x39\x37\x2c\x36\x2e\x36\x32\x35\x20\x7a\x20\x6d\x20\x30\ -\x2c\x35\x2e\x33\x32\x35\x20\x63\x20\x30\x2c\x2d\x34\x2e\x34\x35\ -\x20\x34\x2e\x37\x39\x39\x39\x39\x39\x39\x37\x2c\x2d\x37\x2e\x35\ -\x20\x34\x2e\x37\x39\x39\x39\x39\x39\x39\x37\x2c\x2d\x31\x31\x2e\ -\x39\x35\x20\x30\x2c\x2d\x30\x2e\x38\x32\x35\x20\x2d\x30\x2e\x31\ -\x35\x2c\x2d\x31\x2e\x36\x32\x35\x20\x2d\x30\x2e\x34\x35\x2c\x2d\ -\x32\x2e\x34\x20\x30\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x39\x30\x30\ -\x30\x30\x30\x34\x20\x30\x2e\x37\x2c\x2d\x31\x2e\x38\x32\x35\x30\ -\x30\x30\x34\x20\x30\x2e\x37\x2c\x2d\x32\x2e\x38\x35\x20\x30\x2c\ -\x2d\x31\x2e\x30\x32\x35\x20\x2d\x30\x2e\x32\x35\x2c\x2d\x32\x2e\ -\x30\x34\x39\x39\x39\x39\x36\x20\x2d\x30\x2e\x37\x2c\x2d\x32\x2e\ -\x39\x37\x34\x39\x39\x39\x36\x20\x30\x2e\x34\x32\x35\x2c\x2d\x30\ -\x2e\x38\x37\x35\x20\x30\x2e\x37\x2c\x2d\x31\x2e\x38\x30\x30\x30\ -\x30\x30\x34\x20\x30\x2e\x37\x2c\x2d\x32\x2e\x38\x32\x35\x30\x30\ -\x30\x34\x20\x30\x2c\x2d\x31\x2e\x30\x32\x35\x30\x30\x30\x30\x32\ -\x20\x2d\x30\x2e\x32\x35\x2c\x2d\x32\x2e\x30\x35\x30\x30\x30\x30\ -\x30\x32\x20\x2d\x30\x2e\x37\x2c\x2d\x32\x2e\x39\x37\x35\x20\x30\ -\x2e\x34\x32\x35\x2c\x2d\x30\x2e\x38\x37\x35\x20\x30\x2e\x37\x2c\ -\x2d\x31\x2e\x38\x32\x35\x20\x30\x2e\x37\x2c\x2d\x32\x2e\x38\x35\ -\x20\x30\x2c\x2d\x30\x2e\x38\x37\x35\x20\x2d\x30\x2e\x33\x32\x35\ -\x2c\x2d\x31\x2e\x37\x32\x35\x20\x2d\x30\x2e\x38\x35\x2c\x2d\x32\ -\x2e\x34\x32\x35\x20\x30\x2e\x36\x2c\x2d\x31\x2e\x30\x35\x20\x31\ -\x2e\x30\x32\x35\x2c\x2d\x32\x2e\x31\x32\x35\x20\x31\x2e\x30\x32\ -\x35\x2c\x2d\x33\x2e\x33\x37\x35\x20\x30\x2c\x2d\x31\x2e\x35\x32\ -\x35\x20\x2d\x30\x2e\x34\x2c\x2d\x33\x2e\x30\x32\x35\x20\x2d\x31\ -\x2e\x30\x35\x2c\x2d\x34\x2e\x34\x32\x35\x20\x2d\x30\x2e\x31\x2c\ -\x2d\x30\x2e\x31\x37\x35\x20\x2d\x30\x2e\x32\x37\x35\x2c\x2d\x30\ -\x2e\x32\x37\x35\x20\x2d\x30\x2e\x34\x35\x2c\x2d\x30\x2e\x32\x37\ -\x35\x20\x2d\x30\x2e\x33\x2c\x30\x20\x2d\x30\x2e\x36\x2c\x30\x2e\ -\x32\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x30\x2e\x36\x32\x35\x20\ -\x30\x2e\x36\x35\x2c\x31\x2e\x32\x37\x35\x20\x31\x2e\x30\x35\x2c\ -\x32\x2e\x36\x35\x20\x31\x2e\x30\x35\x2c\x34\x2e\x30\x37\x35\x20\ -\x30\x2c\x32\x2e\x33\x37\x35\x20\x2d\x32\x2e\x34\x32\x35\x2c\x34\ -\x2e\x35\x35\x20\x2d\x34\x2e\x32\x34\x39\x39\x39\x39\x39\x37\x2c\ -\x36\x2e\x30\x37\x35\x20\x6c\x20\x30\x2c\x2d\x32\x2e\x37\x20\x2d\ -\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\x33\x31\x2e\x32\x35\x20\x30\ -\x2e\x33\x35\x2c\x30\x20\x7a\x20\x6d\x20\x30\x2c\x2d\x31\x31\x2e\ -\x31\x32\x35\x20\x30\x2c\x2d\x30\x2e\x35\x20\x63\x20\x30\x2c\x2d\ -\x32\x2e\x38\x37\x35\x20\x32\x2e\x32\x32\x34\x39\x39\x39\x39\x37\ -\x2c\x2d\x35\x2e\x30\x35\x20\x33\x2e\x37\x32\x34\x39\x39\x39\x39\ -\x37\x2c\x2d\x37\x2e\x34\x34\x39\x39\x39\x39\x36\x20\x30\x2e\x32\ -\x32\x35\x2c\x30\x2e\x35\x39\x39\x39\x39\x39\x36\x20\x30\x2e\x33\ -\x35\x2c\x31\x2e\x32\x32\x34\x39\x39\x39\x36\x20\x30\x2e\x33\x35\ -\x2c\x31\x2e\x38\x37\x34\x39\x39\x39\x36\x20\x30\x2c\x32\x2e\x33\ -\x32\x34\x39\x39\x39\x36\x20\x2d\x32\x2e\x33\x32\x35\x2c\x34\x2e\ -\x35\x32\x35\x20\x2d\x34\x2e\x30\x37\x34\x39\x39\x39\x39\x37\x2c\ -\x36\x2e\x30\x37\x35\x20\x7a\x20\x6d\x20\x30\x2c\x2d\x35\x2e\x38\ -\x20\x30\x2c\x2d\x30\x2e\x35\x20\x63\x20\x30\x2c\x2d\x32\x2e\x38\ -\x37\x34\x39\x39\x39\x36\x20\x32\x2e\x32\x32\x34\x39\x39\x39\x39\ -\x37\x2c\x2d\x35\x2e\x30\x35\x20\x33\x2e\x37\x32\x34\x39\x39\x39\ -\x39\x37\x2c\x2d\x37\x2e\x34\x35\x30\x30\x30\x30\x30\x32\x20\x30\ -\x2e\x32\x32\x35\x2c\x30\x2e\x36\x20\x30\x2e\x33\x35\x2c\x31\x2e\ -\x32\x32\x35\x20\x30\x2e\x33\x35\x2c\x31\x2e\x38\x37\x35\x30\x30\ -\x30\x30\x32\x20\x30\x2c\x32\x2e\x33\x32\x35\x30\x30\x30\x34\x20\ -\x2d\x32\x2e\x33\x32\x35\x2c\x34\x2e\x35\x32\x35\x20\x2d\x34\x2e\ -\x30\x37\x34\x39\x39\x39\x39\x37\x2c\x36\x2e\x30\x37\x35\x20\x7a\ -\x20\x6d\x20\x30\x2c\x2d\x35\x2e\x38\x32\x35\x20\x30\x2c\x2d\x30\ -\x2e\x35\x20\x63\x20\x30\x2c\x2d\x32\x2e\x37\x37\x35\x20\x32\x2e\ -\x30\x39\x39\x39\x39\x39\x39\x37\x2c\x2d\x34\x2e\x38\x35\x20\x33\ -\x2e\x36\x32\x34\x39\x39\x39\x39\x37\x2c\x2d\x37\x2e\x31\x32\x35\ -\x20\x30\x2e\x32\x37\x35\x2c\x30\x2e\x34\x37\x35\x20\x30\x2e\x34\ -\x35\x2c\x31\x20\x30\x2e\x34\x35\x2c\x31\x2e\x35\x35\x20\x30\x2c\ -\x32\x2e\x33\x32\x35\x20\x2d\x32\x2e\x33\x32\x35\x2c\x34\x2e\x35\ -\x32\x34\x39\x39\x39\x39\x38\x20\x2d\x34\x2e\x30\x37\x34\x39\x39\ -\x39\x39\x37\x2c\x36\x2e\x30\x37\x35\x20\x7a\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x33\x35\x32\x22\x0a\ -\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\ -\x00\x00\x08\x4b\ +\x2d\x79\x3d\x22\x33\x30\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\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\x73\x76\x67\x33\x31\x36\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\x33\x31\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\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\x64\x65\x66\ +\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\ +\x31\x37\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x34\x2e\x31\x37\x35\ +\x2c\x2d\x33\x2e\x31\x35\x30\x39\x38\x35\x35\x20\x63\x20\x30\x2c\ +\x2d\x30\x2e\x37\x32\x35\x20\x30\x2e\x35\x37\x35\x2c\x2d\x31\x2e\ +\x33\x30\x30\x30\x30\x30\x31\x20\x31\x2e\x33\x2c\x2d\x31\x2e\x33\ +\x30\x30\x30\x30\x30\x31\x20\x30\x2e\x37\x32\x35\x2c\x30\x20\x31\ +\x2e\x33\x2c\x30\x2e\x35\x37\x35\x30\x30\x30\x31\x20\x31\x2e\x33\ +\x2c\x31\x2e\x33\x30\x30\x30\x30\x30\x31\x20\x30\x2c\x30\x2e\x37\ +\x32\x35\x20\x2d\x30\x2e\x35\x37\x35\x2c\x31\x2e\x32\x39\x39\x39\ +\x39\x39\x39\x20\x2d\x31\x2e\x33\x2c\x31\x2e\x32\x39\x39\x39\x39\ +\x39\x39\x20\x2d\x30\x2e\x37\x32\x35\x2c\x30\x20\x2d\x31\x2e\x33\ +\x2c\x2d\x30\x2e\x35\x37\x34\x39\x39\x39\x39\x20\x2d\x31\x2e\x33\ +\x2c\x2d\x31\x2e\x32\x39\x39\x39\x39\x39\x39\x20\x7a\x20\x6d\x20\ +\x30\x2c\x2d\x36\x2e\x32\x35\x30\x30\x30\x30\x31\x20\x63\x20\x30\ +\x2c\x2d\x30\x2e\x37\x32\x35\x30\x30\x30\x34\x20\x30\x2e\x35\x37\ +\x35\x2c\x2d\x31\x2e\x33\x30\x30\x30\x30\x30\x34\x20\x31\x2e\x33\ +\x2c\x2d\x31\x2e\x33\x30\x30\x30\x30\x30\x34\x20\x30\x2e\x37\x32\ +\x35\x2c\x30\x20\x31\x2e\x33\x2c\x30\x2e\x35\x37\x35\x20\x31\x2e\ +\x33\x2c\x31\x2e\x33\x30\x30\x30\x30\x30\x34\x20\x30\x2c\x30\x2e\ +\x37\x32\x35\x20\x2d\x30\x2e\x35\x37\x35\x2c\x31\x2e\x33\x20\x2d\ +\x31\x2e\x33\x2c\x31\x2e\x33\x20\x2d\x30\x2e\x37\x32\x35\x2c\x30\ +\x20\x2d\x31\x2e\x33\x2c\x2d\x30\x2e\x35\x37\x35\x20\x2d\x31\x2e\ +\x33\x2c\x2d\x31\x2e\x33\x20\x7a\x20\x4d\x20\x36\x2e\x31\x2c\x2d\ +\x31\x32\x2e\x38\x30\x30\x39\x38\x36\x20\x63\x20\x34\x2e\x32\x37\ +\x35\x2c\x30\x20\x37\x2e\x33\x2c\x32\x2e\x31\x35\x20\x37\x2e\x33\ +\x2c\x36\x2e\x32\x30\x30\x30\x30\x30\x34\x20\x30\x2c\x36\x2e\x35\ +\x37\x35\x30\x30\x30\x30\x33\x20\x2d\x36\x2e\x36\x2c\x31\x30\x2e\ +\x33\x37\x35\x20\x2d\x31\x32\x2e\x39\x32\x35\x2c\x31\x33\x2e\x30\ +\x32\x35\x20\x2d\x30\x2e\x30\x35\x2c\x30\x2e\x30\x35\x20\x2d\x30\ +\x2e\x31\x32\x35\x2c\x30\x2e\x30\x37\x35\x20\x2d\x30\x2e\x32\x2c\ +\x30\x2e\x30\x37\x35\x20\x2d\x30\x2e\x31\x35\x2c\x30\x20\x2d\x30\ +\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x31\x32\x35\x20\x2d\x30\x2e\x32\ +\x37\x35\x2c\x2d\x30\x2e\x32\x37\x35\x20\x30\x2c\x2d\x30\x2e\x30\ +\x37\x35\x20\x30\x2e\x30\x32\x35\x2c\x2d\x30\x2e\x31\x35\x20\x30\ +\x2e\x30\x37\x35\x2c\x2d\x30\x2e\x32\x20\x35\x2e\x30\x37\x35\x2c\ +\x2d\x32\x2e\x39\x35\x20\x31\x30\x2e\x33\x37\x35\x2c\x2d\x36\x2e\ +\x36\x32\x34\x39\x39\x39\x39\x37\x20\x31\x30\x2e\x33\x37\x35\x2c\ +\x2d\x31\x32\x2e\x33\x35\x20\x30\x2c\x2d\x33\x2e\x30\x32\x35\x20\ +\x2d\x31\x2e\x36\x2c\x2d\x35\x2e\x39\x32\x35\x30\x30\x30\x34\x20\ +\x2d\x34\x2e\x33\x35\x2c\x2d\x35\x2e\x39\x32\x35\x30\x30\x30\x34\ +\x20\x2d\x31\x2e\x39\x37\x35\x2c\x30\x20\x2d\x33\x2e\x34\x35\x2c\ +\x31\x2e\x34\x32\x35\x20\x2d\x34\x2e\x31\x2c\x33\x2e\x33\x32\x35\ +\x30\x30\x30\x34\x20\x30\x2e\x33\x35\x2c\x2d\x30\x2e\x32\x20\x30\ +\x2e\x37\x2c\x2d\x30\x2e\x33\x32\x35\x20\x31\x2e\x30\x37\x35\x2c\ +\x2d\x30\x2e\x33\x32\x35\x20\x31\x2e\x33\x37\x35\x2c\x30\x20\x32\ +\x2e\x35\x2c\x31\x2e\x31\x32\x35\x20\x32\x2e\x35\x2c\x32\x2e\x35\ +\x20\x30\x2c\x31\x2e\x34\x35\x20\x2d\x31\x2e\x31\x2c\x32\x2e\x36\ +\x37\x35\x30\x30\x30\x31\x20\x2d\x32\x2e\x35\x2c\x32\x2e\x36\x37\ +\x35\x30\x30\x30\x31\x20\x2d\x31\x2e\x35\x2c\x30\x20\x2d\x32\x2e\ +\x38\x2c\x2d\x31\x2e\x32\x30\x30\x30\x30\x30\x31\x20\x2d\x32\x2e\ +\x38\x2c\x2d\x32\x2e\x36\x37\x35\x30\x30\x30\x31\x20\x30\x2c\x2d\ +\x33\x2e\x33\x30\x30\x30\x30\x30\x34\x20\x32\x2e\x35\x37\x35\x2c\ +\x2d\x36\x2e\x30\x35\x30\x30\x30\x30\x34\x20\x35\x2e\x38\x32\x35\ +\x2c\x2d\x36\x2e\x30\x35\x30\x30\x30\x30\x34\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x31\x37\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\ +\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\x2d\x6e\x61\ +\x6d\x65\x3d\x22\x65\x69\x67\x68\x74\x22\x0a\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x4d\x20\x39\x2e\x33\x39\x34\x36\x37\x37\x34\x2c\x39\ +\x2e\x36\x30\x30\x32\x38\x39\x32\x20\x43\x20\x39\x2e\x39\x34\x30\ +\x39\x34\x38\x35\x2c\x39\x2e\x30\x33\x35\x31\x38\x31\x34\x20\x31\ +\x30\x2e\x34\x31\x31\x38\x37\x32\x2c\x38\x2e\x34\x33\x32\x34\x30\ +\x30\x31\x20\x31\x30\x2e\x34\x31\x31\x38\x37\x32\x2c\x37\x2e\x36\ +\x36\x30\x30\x38\x36\x31\x20\x63\x20\x30\x2c\x2d\x31\x2e\x30\x35\ +\x34\x38\x36\x37\x38\x20\x2d\x31\x2e\x30\x39\x32\x35\x34\x32\x33\ +\x2c\x2d\x31\x2e\x37\x31\x34\x31\x36\x30\x33\x20\x2d\x32\x2e\x32\ +\x34\x31\x35\x39\x34\x38\x2c\x2d\x31\x2e\x37\x31\x34\x31\x36\x30\ +\x33\x20\x2d\x30\x2e\x39\x32\x33\x30\x30\x39\x34\x2c\x30\x20\x2d\ +\x31\x2e\x34\x36\x39\x32\x38\x30\x33\x2c\x30\x2e\x37\x31\x35\x38\ +\x30\x33\x32\x20\x2d\x31\x2e\x34\x36\x39\x32\x38\x30\x33\x2c\x31\ +\x2e\x34\x31\x32\x37\x36\x39\x35\x20\x30\x2c\x30\x2e\x34\x31\x34\ +\x34\x31\x32\x34\x20\x30\x2e\x31\x36\x39\x35\x33\x32\x34\x2c\x30\ +\x2e\x37\x39\x31\x31\x35\x30\x39\x20\x30\x2e\x35\x38\x33\x39\x34\ +\x34\x37\x2c\x31\x2e\x30\x33\x36\x30\x33\x30\x39\x20\x7a\x20\x4d\ +\x20\x39\x2e\x39\x30\x33\x32\x37\x34\x37\x2c\x39\x2e\x39\x30\x31\ +\x36\x38\x20\x63\x20\x31\x2e\x30\x33\x36\x30\x33\x31\x33\x2c\x30\ +\x2e\x36\x30\x32\x37\x38\x32\x20\x31\x2e\x36\x30\x31\x31\x33\x38\ +\x33\x2c\x31\x2e\x34\x36\x39\x32\x38\x20\x31\x2e\x36\x30\x31\x31\ +\x33\x38\x33\x2c\x32\x2e\x33\x39\x32\x32\x39\x20\x30\x2c\x31\x2e\ +\x33\x35\x36\x32\x35\x38\x20\x2d\x31\x2e\x32\x32\x34\x34\x2c\x32\ +\x2e\x36\x37\x34\x38\x34\x33\x20\x2d\x33\x2e\x34\x38\x34\x38\x33\ +\x31\x32\x2c\x32\x2e\x36\x37\x34\x38\x34\x33\x20\x2d\x31\x2e\x37\ +\x33\x32\x39\x39\x37\x32\x2c\x30\x20\x2d\x33\x2e\x33\x37\x31\x38\ +\x30\x39\x38\x2c\x2d\x30\x2e\x39\x39\x38\x33\x35\x37\x20\x2d\x33\ +\x2e\x33\x37\x31\x38\x30\x39\x38\x2c\x2d\x32\x2e\x35\x39\x39\x34\ +\x39\x36\x20\x30\x2c\x2d\x30\x2e\x39\x36\x30\x36\x38\x33\x20\x30\ +\x2e\x37\x35\x33\x34\x37\x37\x2c\x2d\x31\x2e\x36\x31\x39\x39\x37\ +\x35\x20\x31\x2e\x34\x36\x39\x32\x38\x30\x32\x2c\x2d\x32\x2e\x32\ +\x37\x39\x32\x36\x38\x20\x43\x20\x35\x2e\x32\x38\x38\x32\x32\x37\ +\x35\x2c\x39\x2e\x35\x36\x32\x36\x31\x35\x33\x20\x34\x2e\x39\x31\ +\x31\x34\x38\x39\x2c\x38\x2e\x37\x39\x30\x33\x30\x31\x37\x20\x34\ +\x2e\x39\x31\x31\x34\x38\x39\x2c\x38\x2e\x30\x33\x36\x38\x32\x34\ +\x36\x20\x63\x20\x30\x2c\x2d\x31\x2e\x32\x36\x32\x30\x37\x34\x20\ +\x31\x2e\x31\x33\x30\x32\x31\x35\x35\x2c\x2d\x32\x2e\x34\x38\x36\ +\x34\x37\x34\x32\x20\x33\x2e\x32\x35\x38\x37\x38\x38\x32\x2c\x2d\ +\x32\x2e\x34\x38\x36\x34\x37\x34\x32\x20\x31\x2e\x35\x30\x36\x39\ +\x35\x34\x2c\x30\x20\x32\x2e\x39\x37\x36\x32\x33\x34\x38\x2c\x30\ +\x2e\x37\x35\x33\x34\x37\x37\x20\x32\x2e\x39\x37\x36\x32\x33\x34\ +\x38\x2c\x32\x2e\x31\x30\x39\x37\x33\x35\x37\x20\x30\x2c\x30\x2e\ +\x39\x30\x34\x31\x37\x32\x35\x20\x2d\x30\x2e\x36\x30\x32\x37\x38\ +\x32\x2c\x31\x2e\x35\x38\x32\x33\x30\x31\x35\x20\x2d\x31\x2e\x32\ +\x34\x33\x32\x33\x37\x33\x2c\x32\x2e\x32\x34\x31\x35\x39\x33\x39\ +\x20\x7a\x20\x6d\x20\x2d\x33\x2e\x32\x35\x38\x37\x38\x38\x35\x2c\ +\x30\x2e\x34\x38\x39\x37\x36\x20\x63\x20\x2d\x30\x2e\x36\x34\x30\ +\x34\x35\x35\x35\x2c\x30\x2e\x35\x36\x35\x31\x30\x38\x20\x2d\x31\ +\x2e\x32\x34\x33\x32\x33\x37\x32\x2c\x31\x2e\x31\x34\x39\x30\x35\ +\x33\x20\x2d\x31\x2e\x32\x34\x33\x32\x33\x37\x32\x2c\x31\x2e\x39\ +\x37\x37\x38\x37\x37\x20\x30\x2c\x31\x2e\x32\x39\x39\x37\x34\x38\ +\x20\x31\x2e\x32\x34\x33\x32\x33\x37\x32\x2c\x32\x2e\x32\x30\x33\ +\x39\x32\x31\x20\x32\x2e\x36\x31\x38\x33\x33\x32\x38\x2c\x32\x2e\ +\x32\x30\x33\x39\x32\x31\x20\x31\x2e\x30\x33\x36\x30\x33\x30\x39\ +\x2c\x30\x20\x31\x2e\x36\x35\x37\x36\x34\x39\x34\x2c\x2d\x30\x2e\ +\x38\x30\x39\x39\x38\x38\x20\x31\x2e\x36\x35\x37\x36\x34\x39\x34\ +\x2c\x2d\x31\x2e\x36\x30\x31\x31\x33\x39\x20\x30\x2c\x2d\x30\x2e\ +\x34\x37\x30\x39\x32\x33\x20\x2d\x30\x2e\x32\x30\x37\x32\x30\x36\ +\x31\x2c\x2d\x30\x2e\x39\x36\x30\x36\x38\x33\x20\x2d\x30\x2e\x36\ +\x39\x36\x39\x36\x36\x32\x2c\x2d\x31\x2e\x32\x34\x33\x32\x33\x37\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x33\x37\x32\x38\x22\x0a\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\ +\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x05\x53\ \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\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\ +\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\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\ -\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\ -\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ -\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x33\x34\x36\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\x39\x31\x20\x72\x31\x33\x37\x32\x35\x22\ -\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ -\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x31\x36\x69\x2e\x73\x76\ -\x67\x22\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\x33\x35\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\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\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x33\x33\x35\x32\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\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\x22\x0a\ -\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\ -\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\ -\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\ -\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\ -\x3d\x22\x31\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x30\x34\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x33\x35\ -\x30\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\x7a\x6f\x6f\x6d\x3d\x22\x31\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x78\x3d\x22\x31\x32\x2e\x30\x36\x30\x37\x32\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ -\x31\x30\x30\x30\x2e\x34\x34\x37\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\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\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\x73\x76\x67\x33\x33\x34\x36\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x67\x6c\x79\x70\x68\ -\x2d\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x61\x67\x73\x2e\x64\x34\x22\ -\x0a\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x30\x2e\x31\x30\ -\x32\x36\x36\x35\x31\x31\x2c\x35\x2e\x37\x32\x35\x33\x32\x30\x31\ -\x20\x63\x20\x32\x2e\x33\x32\x34\x39\x39\x39\x38\x31\x2c\x2d\x31\ -\x2e\x33\x32\x35\x20\x35\x2e\x33\x39\x39\x39\x39\x39\x38\x31\x2c\ -\x2d\x33\x2e\x33\x37\x35\x20\x35\x2e\x33\x39\x39\x39\x39\x39\x38\ -\x31\x2c\x2d\x35\x2e\x39\x39\x39\x39\x39\x39\x39\x35\x20\x30\x2c\ -\x2d\x30\x2e\x36\x32\x34\x39\x39\x39\x39\x38\x20\x2d\x30\x2e\x31\ -\x32\x35\x2c\x2d\x31\x2e\x32\x34\x39\x39\x39\x39\x39\x35\x20\x2d\ -\x30\x2e\x33\x35\x2c\x2d\x31\x2e\x38\x32\x34\x39\x39\x39\x39\x35\ -\x20\x2d\x32\x2c\x32\x2e\x32\x37\x34\x39\x39\x39\x39\x36\x20\x2d\ -\x35\x2e\x30\x34\x39\x39\x39\x39\x38\x31\x2c\x34\x2e\x30\x37\x34\ -\x39\x39\x39\x39\x20\x2d\x35\x2e\x30\x34\x39\x39\x39\x39\x38\x31\ -\x2c\x37\x2e\x31\x39\x39\x39\x39\x39\x39\x20\x6c\x20\x30\x2c\x30\ -\x2e\x36\x32\x35\x20\x7a\x20\x6d\x20\x36\x2e\x37\x32\x34\x39\x39\ -\x39\x38\x31\x2c\x2d\x31\x31\x2e\x36\x32\x35\x20\x63\x20\x30\x2c\ -\x31\x2e\x31\x20\x2d\x30\x2e\x34\x2c\x32\x2e\x30\x35\x20\x2d\x30\ -\x2e\x39\x37\x35\x2c\x32\x2e\x39\x20\x30\x2e\x34\x2c\x30\x2e\x38\ -\x35\x20\x30\x2e\x36\x32\x35\x2c\x31\x2e\x37\x37\x35\x30\x30\x30\ -\x31\x20\x30\x2e\x36\x32\x35\x2c\x32\x2e\x37\x32\x35\x30\x30\x30\ -\x30\x35\x20\x30\x2c\x34\x2e\x35\x34\x39\x39\x39\x39\x39\x35\x20\ -\x2d\x36\x2e\x33\x37\x34\x39\x39\x39\x38\x31\x2c\x36\x2e\x34\x34\ -\x39\x39\x39\x39\x39\x35\x20\x2d\x36\x2e\x33\x37\x34\x39\x39\x39\ -\x38\x31\x2c\x31\x31\x2e\x30\x30\x30\x30\x30\x30\x38\x35\x20\x6c\ -\x20\x2d\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\x2d\x31\x32\x2e\x35\ -\x30\x30\x30\x30\x30\x38\x20\x30\x2e\x33\x35\x2c\x30\x20\x30\x2c\ -\x31\x2e\x38\x37\x34\x39\x39\x39\x39\x36\x20\x43\x20\x32\x2e\x33\ -\x37\x32\x33\x33\x34\x37\x2c\x2d\x31\x2e\x31\x37\x34\x36\x37\x39\ -\x38\x20\x35\x2e\x36\x34\x37\x33\x33\x34\x37\x2c\x2d\x33\x2e\x31\ -\x39\x39\x36\x37\x39\x39\x20\x35\x2e\x36\x34\x37\x33\x33\x34\x37\ -\x2c\x2d\x35\x2e\x38\x39\x39\x36\x37\x39\x39\x20\x63\x20\x30\x2c\ -\x2d\x30\x2e\x35\x35\x20\x2d\x30\x2e\x31\x32\x35\x2c\x2d\x31\x2e\ -\x30\x37\x35\x20\x2d\x30\x2e\x33\x32\x35\x2c\x2d\x31\x2e\x35\x37\ -\x35\x20\x2d\x30\x2e\x30\x37\x35\x2c\x2d\x30\x2e\x33\x37\x35\x20\ -\x30\x2e\x32\x32\x35\x2c\x2d\x30\x2e\x36\x32\x35\x20\x30\x2e\x35\ -\x32\x35\x2c\x2d\x30\x2e\x36\x32\x35\x20\x30\x2e\x37\x2c\x30\x20\ -\x30\x2e\x37\x37\x35\x2c\x31\x2e\x36\x20\x30\x2e\x37\x37\x35\x2c\ -\x32\x2e\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x33\x34\x38\x22\x0a\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\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x08\x96\ +\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\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x30\x38\x39\x22\x3e\x0a\ +\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\x30\x39\ +\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\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x30\x39\x35\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x2d\x35\x2e\x31\x30\x35\x39\x33\x32\x32\ +\x2c\x2d\x30\x2e\x37\x38\x37\x37\x31\x31\x38\x35\x20\x2d\x30\x2e\ +\x30\x32\x35\x2c\x31\x2e\x37\x32\x35\x20\x63\x20\x30\x2c\x30\x2e\ +\x31\x30\x30\x30\x30\x30\x30\x35\x20\x2d\x30\x2e\x30\x32\x35\x2c\ +\x30\x2e\x31\x37\x34\x39\x39\x39\x39\x35\x20\x2d\x30\x2e\x30\x32\ +\x35\x2c\x30\x2e\x32\x37\x34\x39\x39\x39\x39\x35\x20\x30\x2c\x30\ +\x2e\x35\x35\x20\x30\x2e\x30\x35\x2c\x31\x2e\x31\x20\x30\x2e\x31\ +\x2c\x31\x2e\x36\x35\x20\x31\x2e\x31\x35\x2c\x2d\x30\x2e\x39\x35\ +\x20\x32\x2e\x34\x2c\x2d\x31\x2e\x39\x39\x39\x39\x39\x39\x39\x35\ +\x20\x32\x2e\x34\x2c\x2d\x33\x2e\x34\x37\x34\x39\x39\x39\x39\x35\ +\x20\x30\x2c\x2d\x30\x2e\x38\x35\x30\x30\x30\x30\x30\x35\x20\x2d\ +\x30\x2e\x33\x35\x2c\x2d\x31\x2e\x37\x32\x35\x30\x30\x30\x30\x35\ +\x20\x2d\x31\x2e\x31\x2c\x2d\x31\x2e\x37\x32\x35\x30\x30\x30\x30\ +\x35\x20\x2d\x30\x2e\x37\x37\x35\x2c\x30\x20\x2d\x31\x2e\x33\x32\ +\x35\x2c\x30\x2e\x37\x32\x35\x20\x2d\x31\x2e\x33\x35\x2c\x31\x2e\ +\x35\x35\x30\x30\x30\x30\x30\x35\x20\x7a\x20\x6d\x20\x2d\x30\x2e\ +\x39\x37\x35\x2c\x34\x2e\x34\x39\x39\x39\x39\x39\x39\x35\x20\x2d\ +\x30\x2e\x32\x37\x35\x2c\x2d\x31\x34\x2e\x39\x37\x35\x30\x30\x30\ +\x31\x20\x63\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x34\ +\x2c\x2d\x30\x2e\x31\x37\x35\x20\x30\x2e\x36\x32\x35\x2c\x2d\x30\ +\x2e\x31\x37\x35\x20\x30\x2e\x32\x32\x35\x2c\x30\x20\x30\x2e\x34\ +\x32\x35\x2c\x30\x2e\x30\x37\x35\x20\x30\x2e\x36\x32\x35\x2c\x30\ +\x2e\x31\x37\x35\x20\x6c\x20\x2d\x30\x2e\x31\x35\x2c\x38\x2e\x37\ +\x32\x35\x30\x30\x30\x31\x20\x63\x20\x30\x2e\x36\x35\x2c\x2d\x30\ +\x2e\x34\x37\x35\x20\x31\x2e\x34\x2c\x2d\x30\x2e\x37\x35\x20\x32\ +\x2e\x32\x2c\x2d\x30\x2e\x37\x35\x20\x31\x2e\x33\x32\x35\x2c\x30\ +\x20\x32\x2e\x33\x32\x34\x39\x39\x39\x39\x38\x2c\x31\x2e\x31\x35\ +\x20\x32\x2e\x33\x32\x34\x39\x39\x39\x39\x38\x2c\x32\x2e\x35\x30\ +\x30\x30\x30\x30\x30\x35\x20\x30\x2c\x32\x2e\x30\x34\x39\x39\x39\ +\x39\x39\x35\x20\x2d\x32\x2e\x32\x34\x39\x39\x39\x39\x39\x38\x2c\ +\x32\x2e\x39\x34\x39\x39\x39\x39\x39\x35\x20\x2d\x33\x2e\x38\x32\ +\x34\x39\x39\x39\x39\x38\x2c\x34\x2e\x32\x32\x34\x39\x39\x39\x39\ +\x35\x20\x2d\x30\x2e\x33\x35\x2c\x30\x2e\x32\x37\x35\x20\x2d\x30\ +\x2e\x35\x35\x2c\x30\x2e\x38\x20\x2d\x31\x2c\x30\x2e\x38\x20\x2d\ +\x30\x2e\x33\x2c\x30\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x30\x2e\ +\x32\x32\x35\x20\x2d\x30\x2e\x35\x32\x35\x2c\x2d\x30\x2e\x35\x32\ +\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x33\x30\x39\x31\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\ +\x3e\x0a\ +\x00\x00\x09\xd7\ \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\ @@ -6596,110 +6576,130 @@ qt_resource_data = b"\ \x31\x2e\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\ \x30\x30\x30\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ \x31\x30\x30\x30\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\ -\x33\x34\x36\x30\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\x39\x32\x2e\ -\x34\x20\x35\x64\x61\x36\x38\x39\x63\x33\x31\x33\x2c\x20\x32\x30\ -\x31\x39\x2d\x30\x31\x2d\x31\x34\x22\x0a\x20\x20\x20\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x6e\ -\x6f\x74\x65\x68\x65\x61\x64\x73\x57\x68\x6f\x6c\x65\x2e\x73\x76\ -\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\ -\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\ -\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\ -\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\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\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\x77\x69\x6e\x64\x6f\x77\x2d\ -\x77\x69\x64\x74\x68\x3d\x22\x32\x33\x30\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\x31\x30\x34\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\ -\x65\x77\x36\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\x7a\x6f\x6f\x6d\x3d\x22\x36\ -\x30\x2e\x34\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x34\x2e\x33\x39\x37\x32\x38\ -\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x79\x3d\x22\x31\x30\x30\x31\x2e\x33\x35\x35\x37\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\x35\x33\x36\x22\x0a\x20\ +\x33\x30\x37\x39\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\ +\x34\x20\x72\x39\x39\x33\x39\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x61\x63\ +\x63\x69\x64\x65\x6e\x74\x61\x6c\x73\x44\x6f\x75\x62\x6c\x65\x73\ +\x68\x61\x72\x70\x2e\x73\x76\x67\x22\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\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\x22\x0a\x20\x20\x20\x20\ +\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\ +\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\ +\x65\x3d\x22\x31\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\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\ +\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x39\ +\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x31\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x31\x35\x32\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\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\x7a\x6f\x6f\x6d\x3d\x22\ +\x32\x31\x2e\x33\x36\x30\x32\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x36\x2e\ +\x35\x35\x36\x37\x39\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\x30\x33\x2e\ +\x38\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x31\x39\x32\ +\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\x38\x22\x0a\x20\ \x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x79\x3d\x22\x31\x30\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\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\x63\x75\ -\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x73\x76\x67\ -\x33\x34\x36\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\x34\x36\x38\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\ -\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\ -\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\ -\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ -\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\ -\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x34\x36\x36\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x34\x2e\x31\x32\x39\x34\x38\x30\x33\x2c\ -\x2d\x32\x2e\x38\x35\x20\x63\x20\x2d\x30\x2e\x39\x35\x30\x32\x36\ -\x33\x35\x2c\x30\x20\x2d\x31\x2e\x33\x34\x39\x33\x37\x34\x33\x2c\ -\x31\x2e\x30\x35\x20\x2d\x31\x2e\x33\x34\x39\x33\x37\x34\x33\x2c\ -\x32\x2e\x32\x20\x30\x2c\x31\x2e\x39\x37\x35\x20\x31\x2e\x31\x34\ -\x30\x33\x31\x36\x2c\x33\x2e\x35\x20\x32\x2e\x36\x34\x31\x37\x33\ -\x33\x31\x2c\x33\x2e\x35\x20\x30\x2e\x39\x35\x30\x32\x36\x34\x34\ -\x2c\x30\x20\x31\x2e\x33\x33\x30\x33\x36\x39\x34\x2c\x2d\x31\x2e\ -\x30\x35\x20\x31\x2e\x33\x33\x30\x33\x36\x39\x34\x2c\x2d\x32\x2e\ -\x32\x20\x30\x2c\x2d\x31\x2e\x39\x37\x35\x20\x2d\x31\x2e\x31\x32\ -\x31\x33\x31\x31\x31\x2c\x2d\x33\x2e\x35\x20\x2d\x32\x2e\x36\x32\ -\x32\x37\x32\x38\x32\x2c\x2d\x33\x2e\x35\x20\x7a\x20\x4d\x20\x39\ -\x2e\x35\x32\x36\x39\x37\x39\x33\x2c\x30\x20\x63\x20\x30\x2c\x31\ -\x2e\x30\x37\x35\x20\x2d\x30\x2e\x36\x34\x36\x31\x37\x39\x37\x2c\ -\x31\x2e\x38\x37\x35\x20\x2d\x31\x2e\x33\x38\x37\x33\x38\x35\x38\ -\x2c\x32\x2e\x34\x20\x2d\x31\x2e\x30\x32\x36\x32\x38\x34\x39\x2c\ -\x30\x2e\x37\x32\x35\x20\x2d\x32\x2e\x32\x30\x34\x36\x31\x31\x36\ -\x2c\x31\x20\x2d\x33\x2e\x33\x36\x33\x39\x33\x33\x34\x2c\x31\x20\ -\x43\x20\x33\x2e\x36\x31\x36\x33\x33\x38\x33\x2c\x33\x2e\x34\x20\ -\x32\x2e\x34\x31\x39\x30\x30\x35\x39\x2c\x33\x2e\x31\x32\x35\x20\ -\x31\x2e\x33\x39\x32\x37\x32\x31\x2c\x32\x2e\x34\x20\x30\x2e\x36\ -\x35\x31\x35\x31\x34\x37\x39\x2c\x31\x2e\x38\x37\x35\x20\x30\x2e\ -\x30\x30\x35\x33\x33\x35\x30\x35\x2c\x31\x2e\x30\x37\x35\x20\x30\ -\x2e\x30\x30\x35\x33\x33\x35\x30\x35\x2c\x30\x20\x63\x20\x30\x2c\ -\x2d\x31\x2e\x30\x37\x35\x20\x30\x2e\x36\x34\x36\x31\x37\x39\x37\ -\x34\x2c\x2d\x31\x2e\x38\x37\x35\x20\x31\x2e\x33\x38\x37\x33\x38\ -\x35\x39\x35\x2c\x2d\x32\x2e\x34\x20\x31\x2e\x30\x32\x36\x32\x38\ -\x34\x39\x2c\x2d\x30\x2e\x37\x32\x35\x20\x32\x2e\x32\x32\x33\x36\ -\x31\x37\x33\x2c\x2d\x31\x20\x33\x2e\x33\x38\x32\x39\x33\x39\x31\ -\x2c\x2d\x31\x20\x31\x2e\x31\x35\x39\x33\x32\x31\x38\x2c\x30\x20\ -\x32\x2e\x33\x33\x37\x36\x34\x38\x35\x2c\x30\x2e\x32\x37\x35\x20\ -\x33\x2e\x33\x36\x33\x39\x33\x33\x34\x2c\x31\x20\x30\x2e\x37\x34\ -\x31\x32\x30\x36\x31\x2c\x30\x2e\x35\x32\x35\x20\x31\x2e\x33\x38\ -\x37\x33\x38\x35\x38\x2c\x31\x2e\x33\x32\x35\x20\x31\x2e\x33\x38\ -\x37\x33\x38\x35\x38\x2c\x32\x2e\x34\x20\x7a\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x36\x32\x22\x0a\ -\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\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ -\x2e\x39\x35\x33\x38\x35\x39\x30\x39\x22\x20\x2f\x3e\x0a\x3c\x2f\ -\x73\x76\x67\x3e\x0a\ +\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\ +\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\x73\ +\x76\x67\x33\x30\x37\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\x33\x30\x38\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\x64\x65\x66\x73\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x30\x38\ +\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x32\x2e\x38\x38\x35\x31\x31\ +\x35\x39\x2c\x30\x2e\x30\x30\x36\x32\x31\x38\x32\x38\x20\x63\x20\ +\x30\x2e\x35\x37\x35\x2c\x30\x2e\x35\x37\x35\x20\x31\x2e\x34\x35\ +\x2c\x30\x2e\x37\x20\x32\x2e\x32\x37\x35\x30\x30\x30\x30\x31\x2c\ +\x30\x2e\x37\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\x32\x2c\x30\x2e\ +\x31\x20\x30\x2e\x32\x2c\x30\x2e\x32\x20\x6c\x20\x30\x2e\x32\x32\ +\x35\x2c\x32\x2e\x32\x32\x35\x30\x30\x30\x30\x32\x20\x63\x20\x30\ +\x2c\x30\x2e\x31\x20\x2d\x30\x2e\x30\x37\x35\x2c\x30\x2e\x32\x20\ +\x2d\x30\x2e\x31\x37\x35\x2c\x30\x2e\x32\x20\x68\x20\x2d\x30\x2e\ +\x30\x32\x35\x20\x6c\x20\x2d\x32\x2e\x32\x32\x35\x30\x30\x30\x30\ +\x31\x2c\x2d\x30\x2e\x32\x32\x35\x20\x63\x20\x2d\x30\x2e\x31\x2c\ +\x30\x20\x2d\x30\x2e\x32\x2c\x2d\x30\x2e\x31\x20\x2d\x30\x2e\x32\ +\x2c\x2d\x30\x2e\x32\x20\x30\x2c\x2d\x30\x2e\x38\x32\x35\x20\x2d\ +\x30\x2e\x31\x32\x35\x2c\x2d\x31\x2e\x37\x20\x2d\x30\x2e\x37\x2c\ +\x2d\x32\x2e\x32\x37\x35\x30\x30\x30\x30\x32\x20\x2d\x30\x2e\x35\ +\x37\x35\x2c\x30\x2e\x35\x37\x35\x30\x30\x30\x30\x32\x20\x2d\x30\ +\x2e\x37\x2c\x31\x2e\x34\x35\x30\x30\x30\x30\x30\x32\x20\x2d\x30\ +\x2e\x37\x2c\x32\x2e\x32\x37\x35\x30\x30\x30\x30\x32\x20\x30\x2c\ +\x30\x2e\x31\x20\x2d\x30\x2e\x31\x2c\x30\x2e\x32\x20\x2d\x30\x2e\ +\x32\x2c\x30\x2e\x32\x20\x6c\x20\x2d\x32\x2e\x32\x32\x35\x2c\x30\ +\x2e\x32\x32\x35\x20\x68\x20\x2d\x30\x2e\x30\x32\x35\x20\x63\x20\ +\x2d\x30\x2e\x31\x2c\x30\x20\x2d\x30\x2e\x31\x37\x35\x2c\x2d\x30\ +\x2e\x31\x20\x2d\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x32\x20\x6c\ +\x20\x30\x2e\x32\x32\x35\x2c\x2d\x32\x2e\x32\x32\x35\x30\x30\x30\ +\x30\x32\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x31\x2c\ +\x2d\x30\x2e\x32\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x30\x2e\ +\x38\x32\x35\x2c\x30\x20\x31\x2e\x37\x2c\x2d\x30\x2e\x31\x32\x35\ +\x20\x32\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x37\x20\x2d\x30\x2e\x35\ +\x37\x35\x2c\x2d\x30\x2e\x35\x37\x35\x20\x2d\x31\x2e\x34\x35\x2c\ +\x2d\x30\x2e\x37\x20\x2d\x32\x2e\x32\x37\x35\x2c\x2d\x30\x2e\x37\ +\x20\x2d\x30\x2e\x31\x2c\x30\x20\x2d\x30\x2e\x32\x2c\x2d\x30\x2e\ +\x31\x20\x2d\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x6c\x20\x2d\x30\ +\x2e\x32\x32\x35\x2c\x2d\x32\x2e\x32\x32\x34\x39\x39\x39\x39\x38\ +\x20\x63\x20\x30\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x30\x37\x35\x2c\ +\x2d\x30\x2e\x32\x20\x30\x2e\x31\x37\x35\x2c\x2d\x30\x2e\x32\x20\ +\x68\x20\x30\x2e\x30\x32\x35\x20\x6c\x20\x32\x2e\x32\x32\x35\x2c\ +\x30\x2e\x32\x32\x35\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\ +\x32\x2c\x30\x2e\x31\x20\x30\x2e\x32\x2c\x30\x2e\x32\x20\x30\x2c\ +\x30\x2e\x38\x32\x35\x20\x30\x2e\x31\x32\x35\x2c\x31\x2e\x37\x20\ +\x30\x2e\x37\x2c\x32\x2e\x32\x37\x34\x39\x39\x39\x39\x38\x20\x30\ +\x2e\x35\x37\x35\x2c\x2d\x30\x2e\x35\x37\x34\x39\x39\x39\x39\x38\ +\x20\x30\x2e\x37\x2c\x2d\x31\x2e\x34\x34\x39\x39\x39\x39\x39\x38\ +\x20\x30\x2e\x37\x2c\x2d\x32\x2e\x32\x37\x34\x39\x39\x39\x39\x38\ +\x20\x30\x2c\x2d\x30\x2e\x31\x20\x30\x2e\x31\x2c\x2d\x30\x2e\x32\ +\x20\x30\x2e\x32\x2c\x2d\x30\x2e\x32\x20\x6c\x20\x32\x2e\x32\x32\ +\x35\x30\x30\x30\x30\x31\x2c\x2d\x30\x2e\x32\x32\x35\x20\x68\x20\ +\x30\x2e\x30\x32\x35\x20\x63\x20\x30\x2e\x31\x2c\x30\x20\x30\x2e\ +\x31\x37\x35\x2c\x30\x2e\x31\x20\x30\x2e\x31\x37\x35\x2c\x30\x2e\ +\x32\x20\x6c\x20\x2d\x30\x2e\x32\x32\x35\x2c\x32\x2e\x32\x32\x34\ +\x39\x39\x39\x39\x38\x20\x63\x20\x30\x2c\x30\x2e\x31\x20\x2d\x30\ +\x2e\x31\x2c\x30\x2e\x32\x20\x2d\x30\x2e\x32\x2c\x30\x2e\x32\x20\ +\x2d\x30\x2e\x38\x32\x35\x30\x30\x30\x30\x31\x2c\x30\x20\x2d\x31\ +\x2e\x37\x30\x30\x30\x30\x30\x30\x31\x2c\x30\x2e\x31\x32\x35\x20\ +\x2d\x32\x2e\x32\x37\x35\x30\x30\x30\x30\x31\x2c\x30\x2e\x37\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x30\x38\x31\x22\x0a\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\x3c\ +\x2f\x73\x76\x67\x3e\x0a\ \x00\x00\x0c\x87\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -6903,192 +6903,1730 @@ qt_resource_data = b"\ \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\x3c\ \x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x01\xa9\ +\x00\x00\x64\xde\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x00\x08\x06\x77\xac\x49\x00\x00\x00\x00\x69\x00\x00\x01\ -\x80\x03\x00\x00\x01\x12\x00\x57\x00\x69\x00\x6c\x00\x6c\x00\x6b\ -\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6d\ -\x00\x20\x00\x42\x00\x65\x00\x69\x00\x73\x00\x70\x00\x69\x00\x65\ -\x00\x6c\x00\x70\x00\x72\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6d\ -\x00\x6d\x00\x2e\x00\x20\x00\x45\x00\x72\x00\x73\x00\x74\x00\x65\ -\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x53\x00\x69\x00\x65\ -\x00\x20\x00\x6e\x00\x65\x00\x75\x00\x65\x00\x20\x00\x50\x00\x72\ -\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\x20\ -\x00\x61\x00\x75\x00\x66\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\ -\x00\x65\x00\x72\x00\x20\x00\x47\x00\x72\x00\x75\x00\x6e\x00\x64\ -\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x20\x00\x77\x00\x69\x00\x65\ -\x00\x20\x00\x65\x00\x73\x00\x20\x00\x49\x00\x68\x00\x6e\x00\x65\ -\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x66\x00\xe4\x00\x6c\x00\x6c\ -\x00\x74\x00\x2e\x00\x20\x00\x45\x00\x69\x00\x6e\x00\x20\x00\x67\ -\x00\x75\x00\x74\x00\x65\x00\x72\x00\x20\x00\x45\x00\x69\x00\x6e\ -\x00\x73\x00\x74\x00\x69\x00\x65\x00\x67\x00\x20\x00\x77\x00\xe4\ -\x00\x72\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x66\x00\x69\ -\x00\x67\x00\x2e\x00\x70\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x54\x54\x68\x69\x73\x20\x69\x73\x20\x61\x6e\x20\x65\x78\x61\ -\x6d\x70\x6c\x65\x20\x61\x70\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\ -\x2e\x20\x45\x78\x74\x65\x6e\x64\x20\x69\x74\x20\x74\x6f\x20\x79\ -\x6f\x75\x72\x20\x6c\x69\x6b\x69\x6e\x67\x2e\x20\x53\x74\x61\x72\ -\x74\x20\x62\x79\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x63\x6f\x6e\ -\x66\x69\x67\x2e\x70\x79\x07\x00\x00\x00\x05\x41\x62\x6f\x75\x74\ -\x01\x88\x00\x00\x00\x02\x01\x01\ +\x00\x00\x07\xc0\x00\x00\x00\x66\x00\x00\x59\x9e\x00\x00\x00\x70\ +\x00\x00\x5a\xd1\x00\x00\x00\x7c\x00\x00\x3c\xa7\x00\x00\x06\xc6\ +\x00\x00\x59\xc6\x00\x00\x06\xd0\x00\x00\x5a\x50\x00\x00\x07\x36\ +\x00\x00\x5a\x7b\x00\x00\x07\x40\x00\x00\x5a\xa6\x00\x00\x07\x70\ +\x00\x00\x5a\xf9\x00\x00\x07\x96\x00\x00\x5b\xb7\x00\x00\x07\xa0\ +\x00\x00\x5c\x3e\x00\x00\x4a\xc4\x00\x00\x29\xbc\x00\x00\x6c\xc6\ +\x00\x00\x59\xf1\x00\x00\x77\x70\x00\x00\x5b\x24\x00\x00\x79\xc6\ +\x00\x00\x5b\xe2\x00\x00\x79\xda\x00\x00\x5c\x10\x00\x00\x7a\x70\ +\x00\x00\x5c\x69\x00\x04\xb6\xb3\x00\x00\x2b\xdb\x00\x04\xec\x30\ +\x00\x00\x2e\x27\x00\x05\x6c\xf5\x00\x00\x39\xf4\x00\x05\x8b\xaf\ +\x00\x00\x3e\xf8\x00\x05\xac\xf4\x00\x00\x48\x02\x00\x05\xc4\xaf\ +\x00\x00\x3f\xca\x00\x06\xcc\xc6\x00\x00\x5a\x1f\x00\x07\x48\x35\ +\x00\x00\x4e\x60\x00\x07\x77\x70\x00\x00\x5b\x52\x00\x26\xc4\x60\ +\x00\x00\x40\x20\x00\x2a\x8b\x7d\x00\x00\x16\xdc\x00\x2a\xa2\xb6\ +\x00\x00\x17\xab\x00\x2a\xa6\x79\x00\x00\x18\x69\x00\x2b\x1d\x89\ +\x00\x00\x1e\x7c\x00\x2b\x8b\xaf\x00\x00\x22\x61\x00\x2b\x98\xc5\ +\x00\x00\x23\xa8\x00\x2b\xc4\xaf\x00\x00\x26\xf1\x00\x2c\x07\xe3\ +\x00\x00\x1c\x74\x00\x36\x50\x93\x00\x00\x4e\x13\x00\x40\x5f\x74\ +\x00\x00\x1e\x42\x00\x40\x7a\x28\x00\x00\x1a\x32\x00\x47\xcb\x04\ +\x00\x00\x2c\x51\x00\x48\x15\x63\x00\x00\x1a\xd5\x00\x4d\x67\x02\ +\x00\x00\x24\xfe\x00\x50\x8b\x04\x00\x00\x31\x44\x00\x5d\xf5\x19\ +\x00\x00\x31\x0c\x00\x5d\xf7\x39\x00\x00\x20\x03\x00\x61\x4a\x15\ +\x00\x00\x2c\x8b\x00\x64\x20\x45\x00\x00\x44\xf3\x00\x64\xa3\x44\ +\x00\x00\x46\x3f\x00\x67\x2d\x85\x00\x00\x42\xed\x00\x77\x77\x70\ +\x00\x00\x5b\x83\x00\x78\x42\xe5\x00\x00\x4c\x98\x00\x7a\x79\xc4\ +\x00\x00\x5c\x97\x00\x92\x84\x85\x00\x00\x29\x56\x00\xb0\x6a\x74\ +\x00\x00\x3f\x4c\x00\xb0\x6a\x94\x00\x00\x38\x0c\x00\xbe\xae\x2b\ +\x00\x00\x2b\x1c\x00\xee\x61\x7e\x00\x00\x12\x32\x00\xfe\x0d\xc3\ +\x00\x00\x56\xa6\x00\xfe\x72\x99\x00\x00\x17\x0c\x01\x06\x46\x6d\ +\x00\x00\x2f\xd5\x01\x15\xa7\x35\x00\x00\x21\x7a\x01\x40\x57\x0e\ +\x00\x00\x22\xd9\x01\x89\xcd\xd4\x00\x00\x50\x76\x01\x9b\xdf\xe5\ +\x00\x00\x23\xde\x01\xae\x52\xfb\x00\x00\x2a\x55\x01\xb3\xd9\xab\ +\x00\x00\x1a\x70\x01\xbb\xd3\x64\x00\x00\x1b\xc1\x01\xc5\x19\x3b\ +\x00\x00\x42\x60\x01\xe0\x94\x65\x00\x00\x2d\x74\x02\x1d\x76\xae\ +\x00\x00\x02\x0b\x02\x29\x1a\x25\x00\x00\x1f\x34\x02\x66\x08\xe7\ +\x00\x00\x3c\x1c\x02\x73\xce\xce\x00\x00\x4c\x20\x02\x7a\xa8\x94\ +\x00\x00\x40\x55\x02\xb6\x8a\xa5\x00\x00\x21\x06\x02\xd7\xdd\x25\ +\x00\x00\x1b\x6f\x03\x0f\x3d\x3e\x00\x00\x13\xbc\x03\x19\xc9\x74\ +\x00\x00\x30\x1f\x03\x20\xd1\xe9\x00\x00\x34\x95\x03\x3c\x13\x79\ +\x00\x00\x35\x90\x03\x84\x07\x15\x00\x00\x32\x33\x03\x9c\x73\x83\ +\x00\x00\x50\xef\x03\xe5\x54\x44\x00\x00\x3d\x1a\x03\xed\x3e\xbb\ +\x00\x00\x53\x94\x04\x32\x97\x44\x00\x00\x32\xdd\x04\x47\x3b\xce\ +\x00\x00\x0a\x93\x04\x5b\x88\x07\x00\x00\x27\xf1\x04\x82\x38\xde\ +\x00\x00\x2f\x56\x04\xac\x2c\xa5\x00\x00\x53\x11\x04\xb2\xc3\xed\ +\x00\x00\x3f\xef\x04\xbb\x68\x8e\x00\x00\x0b\xf2\x04\xd1\xf3\x8d\ +\x00\x00\x48\x2b\x04\xef\xbf\x40\x00\x00\x1c\x0e\x05\x05\x9c\x94\ +\x00\x00\x46\x87\x05\x3d\x2f\xc8\x00\x00\x49\xd5\x05\x4b\x0d\x15\ +\x00\x00\x33\xf8\x05\x4d\x2f\xf8\x00\x00\x4a\x1d\x05\x75\xa2\xa7\ +\x00\x00\x3c\x61\x05\x8c\x6b\x84\x00\x00\x36\xd9\x05\xa4\xd1\xf0\ +\x00\x00\x58\xca\x05\xbd\x5f\xd5\x00\x00\x48\xdb\x05\xc3\x17\xe4\ +\x00\x00\x37\x16\x05\xcb\x4f\x9e\x00\x00\x58\x82\x06\x04\x15\xa5\ +\x00\x00\x3a\x2b\x06\x23\x5c\xe6\x00\x00\x3a\xfe\x06\x23\xa1\xfe\ +\x00\x00\x08\xac\x06\x36\x71\xb8\x00\x00\x38\xab\x06\x45\xff\x35\ +\x00\x00\x3d\xcc\x06\x59\x20\x3b\x00\x00\x16\x23\x06\x76\x93\x33\ +\x00\x00\x38\x6d\x06\x84\x44\x84\x00\x00\x15\xbe\x06\x9e\xdb\xe9\ +\x00\x00\x18\x9d\x06\xa8\x85\x0e\x00\x00\x20\x3c\x06\xac\xab\x5d\ +\x00\x00\x59\x51\x06\xae\xbb\x13\x00\x00\x43\x3a\x06\xb3\xa5\x8e\ +\x00\x00\x14\xc1\x06\xcc\x5c\xff\x00\x00\x39\xc2\x06\xf3\xc5\x3b\ +\x00\x00\x24\xa5\x06\xfe\xc1\x7e\x00\x00\x20\x6e\x07\x19\x13\xf7\ +\x00\x00\x3f\x99\x07\x2f\xf3\x65\x00\x00\x42\xaa\x07\x3e\xe9\xa4\ +\x00\x00\x41\x8a\x07\x6e\x59\x43\x00\x00\x19\x0f\x07\x95\xe8\x2d\ +\x00\x00\x47\x99\x07\xc5\x30\x4b\x00\x00\x44\x13\x07\xd3\x9c\x95\ +\x00\x00\x2e\xc5\x07\xf4\x8d\x43\x00\x00\x49\x1a\x07\xf5\x82\x60\ +\x00\x00\x4b\x18\x08\x4d\x55\xf2\x00\x00\x44\x57\x08\x4d\x55\xf2\ +\x00\x00\x51\xce\x08\x4d\x56\xf2\x00\x00\x44\x8c\x08\x4d\x56\xf2\ +\x00\x00\x52\x0b\x08\x52\x39\x24\x00\x00\x33\x36\x08\x60\x01\x7d\ +\x00\x00\x17\x43\x08\x89\x30\x05\x00\x00\x29\x1c\x08\xb2\xcc\xd9\ +\x00\x00\x3e\x3e\x08\xb3\x83\xf5\x00\x00\x45\xa3\x08\xb4\x7e\x16\ +\x00\x00\x55\x4b\x08\xba\xf9\x65\x00\x00\x51\x96\x08\xbe\x3a\xf4\ +\x00\x00\x16\x9d\x08\xcc\xcb\x25\x00\x00\x23\x59\x08\xd4\x9b\x68\ +\x00\x00\x4a\x65\x08\xdf\xc8\x7d\x00\x00\x19\x49\x08\xf4\x86\x4f\ +\x00\x00\x49\x4f\x09\x09\xad\x9e\x00\x00\x53\x4a\x09\x28\x39\x45\ +\x00\x00\x2d\x34\x09\x2e\x15\x0e\x00\x00\x31\xdc\x09\x3f\x1a\xa7\ +\x00\x00\x37\xa1\x09\x4b\x00\xfb\x00\x00\x41\xff\x09\x4c\xf4\x15\ +\x00\x00\x57\x34\x09\x4e\xe7\x8e\x00\x00\x06\x15\x09\x57\x32\x3e\ +\x00\x00\x37\x61\x09\x5e\x82\x80\x00\x00\x55\xd8\x09\x62\x7f\x3a\ +\x00\x00\x3e\xc3\x09\x62\xd9\x55\x00\x00\x47\xcb\x09\x6c\x4d\x88\ +\x00\x00\x54\xb2\x09\x82\x8e\xfe\x00\x00\x2f\x96\x09\x8c\x71\xb5\ +\x00\x00\x48\x72\x09\x96\xf5\xcd\x00\x00\x2c\xd6\x09\xa7\x3e\x42\ +\x00\x00\x1d\xca\x09\xae\x04\xd7\x00\x00\x19\xf4\x09\xb2\xd4\x94\ +\x00\x00\x19\x90\x09\xb2\xdb\x4b\x00\x00\x27\x1d\x09\xc6\x08\xd7\ +\x00\x00\x16\x5e\x09\xd1\xb4\xce\x00\x00\x57\xef\x09\xd3\x00\x45\ +\x00\x00\x41\x4c\x09\xe8\x54\xfc\x00\x00\x44\xc1\x09\xf0\xf4\x6e\ +\x00\x00\x4e\xcc\x09\xf4\xbc\x5d\x00\x00\x49\x94\x09\xfb\xcf\x95\ +\x00\x00\x24\x70\x0a\x00\xef\x03\x00\x00\x50\x0d\x0a\x13\x00\x62\ +\x00\x00\x3a\x99\x0a\x34\xfb\x61\x00\x00\x47\x63\x0a\x38\x59\x74\ +\x00\x00\x30\xbd\x0a\x3c\xfb\x61\x00\x00\x30\x83\x0a\x58\x07\xce\ +\x00\x00\x4f\x47\x0a\x65\xbb\xfc\x00\x00\x17\xe1\x0a\x79\x9d\x0f\ +\x00\x00\x38\xeb\x0a\x7c\xed\xce\x00\x00\x05\x6f\x0a\x8e\xc0\x60\ +\x00\x00\x20\xbb\x0a\xae\x4a\xb3\x00\x00\x56\x15\x0a\xb4\xc0\x09\ +\x00\x00\x2e\x54\x0a\xc2\x2e\x60\x00\x00\x39\x77\x0a\xd0\x22\x7b\ +\x00\x00\x43\x9d\x0a\xd5\x38\xa3\x00\x00\x4d\x76\x0a\xdf\xf1\xbb\ +\x00\x00\x28\x57\x0a\xf0\x4e\x7b\x00\x00\x1d\x1b\x0a\xf8\xe3\x44\ +\x00\x00\x36\x50\x0a\xff\xd5\x29\x00\x00\x2f\x1e\x0a\xff\xd7\xc9\ +\x00\x00\x1e\x09\x0b\x42\x28\xae\x00\x00\x1e\xf4\x0b\x66\x2b\xd8\ +\x00\x00\x25\xc0\x0b\x77\xde\xc5\x00\x00\x4a\xa3\x0b\x80\x63\x53\ +\x00\x00\x25\x3c\x0b\x90\x72\x94\x00\x00\x3b\x6a\x0b\x96\x27\xf5\ +\x00\x00\x3e\x91\x0b\xb2\xc3\xad\x00\x00\x3f\x1d\x0b\xc8\x4d\xc4\ +\x00\x00\x51\x43\x0b\xdf\xdc\xdb\x00\x00\x1e\xaa\x0c\x01\x97\x4e\ +\x00\x00\x10\x7c\x0c\x23\x44\x23\x00\x00\x22\x16\x0c\x28\xa8\x35\ +\x00\x00\x28\xbf\x0c\x4d\x19\x55\x00\x00\x33\x92\x0c\x5d\xb9\xe3\ +\x00\x00\x18\x1c\x0c\x7d\x09\x46\x00\x00\x52\xcb\x0c\x9b\xd2\xe0\ +\x00\x00\x5c\xcb\x0c\x9c\x93\x22\x00\x00\x1f\x95\x0c\xaa\x18\xf5\ +\x00\x00\x4e\x89\x0c\xb4\xf9\x96\x00\x00\x58\x3d\x0c\xc4\xf2\xa3\ +\x00\x00\x22\x8d\x0c\xde\x8e\x9e\x00\x00\x03\xd6\x0d\x03\xd0\xb3\ +\x00\x00\x21\x3b\x0d\x03\xde\xa7\x00\x00\x31\x90\x0d\x09\xf9\x75\ +\x00\x00\x59\x15\x0d\x1b\x4c\x56\x00\x00\x57\xa4\x0d\x21\x1c\xae\ +\x00\x00\x39\x22\x0d\x28\x4c\x23\x00\x00\x46\xba\x0d\x2b\x24\x85\ +\x00\x00\x2c\x14\x0d\x58\x53\xbe\x00\x00\x00\x00\x0d\x5e\x88\x55\ +\x00\x00\x3b\x9c\x0d\x61\x60\x63\x00\x00\x53\xd9\x0d\x6d\x9b\x05\ +\x00\x00\x47\x0f\x0d\x75\x9f\xf3\x00\x00\x4b\xc5\x0d\x83\xe7\xc5\ +\x00\x00\x1d\x89\x0d\x8b\x47\xee\x00\x00\x55\x90\x0d\x9c\xe9\x0e\ +\x00\x00\x0e\x9c\x0d\xb1\xb9\x43\x00\x00\x54\x40\x0d\xbe\xb0\x2e\ +\x00\x00\x3d\x7e\x0d\xe9\xcd\xa4\x00\x00\x4f\x96\x0d\xee\xc7\x55\ +\x00\x00\x27\x7b\x0d\xf5\x0d\xd5\x00\x00\x29\xf6\x0d\xf9\xfb\x0d\ +\x00\x00\x40\xdf\x0d\xfb\x21\x13\x00\x00\x2a\xb1\x0e\x1c\xd4\x65\ +\x00\x00\x3c\xc9\x0e\x44\x20\xa3\x00\x00\x52\x48\x0e\x85\x4f\x70\ +\x00\x00\x52\x8e\x0e\x9b\x46\x8d\x00\x00\x4d\xc0\x0e\xf6\x2e\x5e\ +\x00\x00\x2d\xda\x0f\x00\xaa\x25\x00\x00\x1b\x0b\x0f\x01\x8b\x95\ +\x00\x00\x26\x9c\x0f\x03\x74\x92\x00\x00\x26\x05\x0f\x11\x1b\x94\ +\x00\x00\x26\x45\x0f\x2d\xd1\xcd\x00\x00\x2b\x75\x0f\x32\x43\xe5\ +\x00\x00\x25\x7c\x0f\x69\x7f\x16\x00\x00\x24\x30\x0f\x8d\x9b\x05\ +\x00\x00\x1c\xc4\x0f\x96\x30\x42\x00\x00\x32\x83\x0f\xc1\x0b\xa6\ +\x00\x00\x4b\x67\x0f\xde\xb5\xc5\x00\x00\x54\xef\x0f\xed\xcb\x48\ +\x00\x00\x40\x8b\x69\x00\x00\x5c\xfd\x03\x00\x00\x01\x4a\x00\x3c\ +\x00\x70\x00\x3e\x00\x41\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x4e\ +\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x6e\ +\x00\x64\x00\x20\x00\x6b\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x00\x64\x00\x20\x00\x22\x00\x69\x00\x6e\x00\x20\x00\x43\ +\x00\x22\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x6e\x00\x69\ +\x00\x63\x00\x68\x00\x74\x00\x2d\x00\x74\x00\x72\x00\x61\x00\x6e\ +\x00\x73\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\x00\x65\ +\x00\x6e\x00\x64\x00\x2e\x00\x3c\x00\x2f\x00\x70\x00\x3e\x00\x3c\ +\x00\x70\x00\x3e\x00\x57\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x53\ +\x00\x69\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\x00\x6f\ +\x00\x63\x00\x68\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\ +\x00\x70\x00\x6f\x00\x6e\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\ +\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\ +\x00\x53\x00\x69\x00\x65\x00\x20\x00\x48\x00\x61\x00\x6c\x00\x62\ +\x00\x74\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\ +\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x69\x00\x6d\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\ +\x00\x20\x00\x45\x00\x64\x00\x69\x00\x74\x00\x6f\x00\x72\x00\x20\ +\x00\x5b\x00\x53\x00\x74\x00\x72\x00\x67\x00\x2b\x00\x54\x00\x5d\ +\x00\x3c\x00\x2f\x00\x70\x00\x3e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\xa7\x3c\x70\x3e\x41\x6c\x6c\x20\x6e\x6f\x74\x65\x73\x20\x73\ +\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\ +\x72\x65\x64\x20\x6e\x6f\x6e\x2d\x74\x72\x61\x6e\x73\x70\x6f\x73\ +\x69\x6e\x67\x2e\x20\x54\x72\x65\x61\x74\x20\x65\x76\x65\x72\x79\ +\x74\x68\x69\x6e\x67\x20\x61\x73\x20\x27\x69\x6e\x20\x43\x27\x2e\ +\x3c\x2f\x70\x3e\x3c\x70\x3e\x54\x68\x61\x74\x20\x73\x61\x69\x64\ +\x2c\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x61\x20\x73\x65\x6d\ +\x69\x74\x6f\x6e\x65\x20\x74\x72\x61\x6e\x73\x70\x6f\x73\x69\x74\ +\x69\x6f\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x54\x72\x61\x63\x6b\ +\x20\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73\x20\x5b\x43\x74\x72\ +\x6c\x2b\x54\x5d\x2e\x3c\x2f\x70\x3e\x07\x00\x00\x00\x05\x41\x62\ +\x6f\x75\x74\x01\x03\x00\x00\x01\x24\x00\x3c\x00\x70\x00\x3e\x00\ +\x42\x00\x6c\x00\xf6\x00\x63\x00\x6b\x00\x65\x00\x20\x00\x75\x00\ +\x6e\x00\x64\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\x00\x65\x00\ +\x6e\x00\x20\x00\x6b\x00\xf6\x00\x6e\x00\x6e\x00\x65\x00\x6e\x00\ +\x20\x00\x69\x00\x6d\x00\x20\x00\x42\x00\x6c\x00\x6f\x00\x63\x00\ +\x6b\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\x20\x00\x5b\x00\ +\x46\x00\x36\x00\x5d\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\x77\x00\ +\x65\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x55\x00\ +\x6d\x00\x73\x00\x63\x00\x68\x00\x61\x00\x6c\x00\x74\x00\x65\x00\ +\x6e\x00\x2b\x00\x4d\x00\x69\x00\x74\x00\x74\x00\x6c\x00\x65\x00\ +\x72\x00\x65\x00\x20\x00\x4d\x00\x61\x00\x75\x00\x73\x00\x74\x00\ +\x61\x00\x73\x00\x74\x00\x65\x00\x20\x00\x75\x00\x6d\x00\x20\x00\ +\x42\x00\x6c\x00\xf6\x00\x63\x00\x6b\x00\x65\x00\x20\x00\x7a\x00\ +\x75\x00\x20\x00\x62\x00\x65\x00\x77\x00\x65\x00\x67\x00\x65\x00\ +\x6e\x00\x2c\x00\x20\x00\x41\x00\x6c\x00\x74\x00\x2b\x00\x4d\x00\ +\x69\x00\x74\x00\x74\x00\x6c\x00\x65\x00\x72\x00\x65\x00\x20\x00\ +\x66\x00\xfc\x00\x72\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\x00\ +\x65\x00\x6e\x00\x2e\x00\x3c\x00\x2f\x00\x70\x00\x3e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x8d\x3c\x70\x3e\x42\x6c\x6f\x63\x6b\x73\ +\x20\x61\x6e\x64\x20\x54\x72\x61\x63\x6b\x73\x20\x63\x61\x6e\x20\ +\x62\x65\x20\x6d\x6f\x76\x65\x64\x20\x69\x6e\x20\x42\x6c\x6f\x63\ +\x6b\x2d\x56\x69\x65\x77\x20\x4d\x6f\x64\x65\x20\x5b\x46\x36\x5d\ +\x2e\x20\x55\x73\x65\x20\x53\x68\x69\x66\x74\x2b\x4d\x69\x64\x64\ +\x6c\x65\x20\x4d\x6f\x75\x73\x65\x20\x42\x75\x74\x74\x6f\x6e\x20\ +\x74\x6f\x20\x6d\x6f\x76\x65\x20\x62\x6c\x6f\x63\x6b\x73\x20\x61\ +\x6e\x64\x20\x41\x6c\x74\x2b\x4d\x69\x64\x64\x6c\x65\x20\x74\x6f\ +\x20\x72\x65\x6f\x72\x64\x65\x72\x20\x74\x72\x61\x63\x6b\x73\x2e\ +\x3c\x2f\x70\x3e\x07\x00\x00\x00\x05\x41\x62\x6f\x75\x74\x01\x03\ +\x00\x00\x01\x12\x00\x3c\x00\x70\x00\x3e\x00\x45\x00\x69\x00\x6e\ +\x00\x20\x00\x4b\x00\x6c\x00\x69\x00\x63\x00\x6b\x00\x20\x00\x6d\ +\x00\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x6c\ +\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x4d\x00\x61\ +\x00\x75\x00\x73\x00\x74\x00\x61\x00\x73\x00\x74\x00\x65\x00\x20\ +\x00\x70\x00\x6c\x00\x61\x00\x74\x00\x7a\x00\x69\x00\x65\x00\x72\ +\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x43\x00\x75\ +\x00\x72\x00\x73\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6e\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\x53\x00\x74\ +\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x2e\x00\x20\x00\x5a\x00\x75\ +\x00\x73\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\x6d\ +\x00\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x55\ +\x00\x6d\x00\x73\x00\x63\x00\x68\x00\x61\x00\x6c\x00\x74\x00\x74\ +\x00\x61\x00\x73\x00\x74\x00\x65\x00\x20\x00\x77\x00\x69\x00\x72\ +\x00\x64\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x41\ +\x00\x75\x00\x73\x00\x77\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x65\ +\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x74\x00\x2e\x00\x3c\ +\x00\x2f\x00\x70\x00\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6d\ +\x3c\x70\x3e\x43\x6c\x69\x63\x6b\x20\x77\x69\x74\x68\x20\x74\x68\ +\x65\x20\x6c\x65\x66\x74\x20\x6d\x6f\x75\x73\x65\x20\x62\x75\x74\ +\x74\x6f\x6e\x20\x74\x6f\x20\x73\x65\x74\x20\x74\x68\x65\x20\x63\ +\x75\x72\x73\x6f\x72\x20\x74\x6f\x20\x74\x68\x61\x74\x20\x70\x6f\ +\x73\x69\x74\x69\x6f\x6e\x2e\x20\x48\x6f\x6c\x64\x20\x53\x68\x69\ +\x66\x74\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x73\ +\x65\x6c\x65\x63\x74\x69\x6f\x6e\x2e\x3c\x2f\x70\x3e\x07\x00\x00\ +\x00\x05\x41\x62\x6f\x75\x74\x01\x03\x00\x00\x00\x64\x00\x3c\x00\ +\x70\x00\x3e\x00\x56\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\ +\x63\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\x00\ +\x72\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x72\x00\x7a\x00\x65\x00\ +\x75\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x77\x00\x65\x00\x69\x00\ +\x74\x00\x65\x00\x72\x00\x68\x00\x69\x00\x6e\x00\x20\x00\x4d\x00\ +\x75\x00\x73\x00\x69\x00\x6b\x00\x2e\x00\x3c\x00\x2f\x00\x70\x00\ +\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x3c\x70\x3e\x48\x69\ +\x64\x64\x65\x6e\x20\x74\x72\x61\x63\x6b\x73\x20\x73\x74\x69\x6c\ +\x6c\x20\x6f\x75\x74\x70\x75\x74\x20\x73\x6f\x75\x6e\x64\x2e\x3c\ +\x2f\x70\x3e\x07\x00\x00\x00\x05\x41\x62\x6f\x75\x74\x01\x03\x00\ +\x00\x01\xb0\x00\x3c\x00\x70\x00\x3e\x00\x42\x00\x69\x00\x74\x00\ +\x74\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\ +\x61\x00\x73\x00\x74\x00\x61\x00\x74\x00\x75\x00\x72\x00\x6b\x00\ +\xfc\x00\x72\x00\x7a\x00\x65\x00\x6c\x00\x20\x00\x61\x00\x75\x00\ +\x73\x00\x77\x00\x65\x00\x6e\x00\x64\x00\x69\x00\x67\x00\x20\x00\ +\x6c\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x6e\x00\x21\x00\x20\x00\ +\x44\x00\x69\x00\x65\x00\x20\x00\x62\x00\x65\x00\x73\x00\x74\x00\ +\x65\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x63\x00\ +\x68\x00\x6e\x00\x65\x00\x6c\x00\x6c\x00\x73\x00\x74\x00\x65\x00\ +\x20\x00\x45\x00\x69\x00\x6e\x00\x67\x00\x61\x00\x62\x00\x65\x00\ +\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x4c\x00\x61\x00\x62\x00\ +\x6f\x00\x72\x00\x65\x00\x6a\x00\x6f\x00\x20\x00\x65\x00\x72\x00\ +\x72\x00\x65\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x6d\x00\ +\x61\x00\x6e\x00\x20\x00\x64\x00\x75\x00\x72\x00\x63\x00\x68\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x4b\x00\x6f\x00\x6d\x00\ +\x62\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x4d\x00\x69\x00\x64\x00\ +\x69\x00\x2d\x00\x4b\x00\x65\x00\x79\x00\x62\x00\x6f\x00\x61\x00\ +\x72\x00\x64\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x43\x00\ +\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x72\x00\x2d\x00\ +\x54\x00\x61\x00\x73\x00\x74\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x2e\x00\x3c\x00\x2f\x00\x70\x00\x3e\x00\x3c\x00\x70\x00\x3e\x00\ +\x4a\x00\x65\x00\x64\x00\x65\x00\x72\x00\x20\x00\x47\x00\x72\x00\ +\x69\x00\x66\x00\x66\x00\x20\x00\x7a\x00\x75\x00\x72\x00\x20\x00\ +\x4d\x00\x61\x00\x75\x00\x73\x00\x20\x00\x62\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x00\x74\x00\x20\x00\x53\x00\x69\x00\x65\x00\x20\x00\ +\x72\x00\x61\x00\x75\x00\x73\x00\x21\x00\x3c\x00\x2f\x00\x70\x00\ +\x3e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcd\x3c\x70\x3e\ +\x4c\x65\x61\x72\x6e\x20\x74\x68\x65\x20\x6b\x65\x79\x62\x6f\x61\ +\x72\x64\x20\x73\x68\x6f\x72\x74\x63\x75\x74\x73\x21\x20\x4c\x61\ +\x62\x6f\x72\x65\x6a\x6f\x20\x69\x73\x20\x64\x65\x73\x69\x67\x6e\ +\x65\x64\x20\x74\x6f\x20\x77\x6f\x72\x6b\x20\x77\x69\x74\x68\x20\ +\x74\x68\x65\x20\x6b\x65\x79\x62\x6f\x61\x72\x64\x20\x61\x6c\x6f\ +\x6e\x65\x20\x61\x6e\x64\x20\x77\x69\x74\x68\x20\x6d\x69\x64\x69\ +\x20\x69\x6e\x73\x74\x72\x75\x6d\x65\x6e\x74\x73\x20\x66\x6f\x72\ +\x20\x66\x75\x6c\x6c\x20\x73\x70\x65\x65\x64\x2e\x3c\x2f\x70\x3e\ +\x45\x76\x65\x72\x79\x74\x69\x6d\x65\x20\x79\x6f\x75\x20\x67\x72\ +\x61\x62\x20\x79\x6f\x75\x72\x20\x6d\x6f\x75\x73\x65\x20\x79\x6f\ +\x75\x20\x6c\x6f\x6f\x73\x65\x20\x63\x6f\x6e\x63\x65\x6e\x74\x72\ +\x61\x74\x69\x6f\x6e\x2c\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\ +\x20\x61\x6e\x64\x20\x74\x69\x6d\x65\x2e\x07\x00\x00\x00\x05\x41\ +\x62\x6f\x75\x74\x01\x03\x00\x00\x01\x34\x00\x3c\x00\x70\x00\x3e\ +\x00\x44\x00\x69\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x69\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\x2c\x00\x20\x00\x77\x00\x69\x00\x65\ +\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x73\x00\x63\ +\x00\x68\x00\x6c\x00\xfc\x00\x73\x00\x73\x00\x65\x00\x6c\x00\x2c\ +\x00\x20\x00\x6b\x00\xf6\x00\x6e\x00\x6e\x00\x65\x00\x6e\x00\x20\ +\x00\x6e\x00\x75\x00\x72\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x67\ +\x00\x65\x00\x66\x00\xfc\x00\x67\x00\x74\x00\x20\x00\x77\x00\x65\ +\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x61\x00\x62\ +\x00\x65\x00\x72\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\ +\x00\x20\x00\x6d\x00\x65\x00\x68\x00\x72\x00\x20\x00\x62\x00\x65\ +\x00\x61\x00\x72\x00\x62\x00\x65\x00\x69\x00\x74\x00\x65\x00\x74\ +\x00\x2e\x00\x20\x00\x4c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\ +\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x6e\x00\x65\ +\x00\x75\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x66\x00\xfc\x00\x67\ +\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\x65\ +\x00\x69\x00\x6e\x00\x66\x00\x61\x00\x63\x00\x68\x00\x65\x00\x72\ +\x00\x20\x00\x73\x00\x63\x00\x68\x00\x6e\x00\x65\x00\x6c\x00\x6c\ +\x00\x65\x00\x72\x00\x2e\x00\x3c\x00\x2f\x00\x70\x00\x3e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x99\x3c\x70\x3e\x4d\x61\x6e\x79\x20\ +\x4d\x75\x73\x69\x63\x20\x49\x74\x65\x6d\x73\x20\x6c\x69\x6b\x65\ +\x20\x63\x6c\x65\x66\x73\x20\x63\x61\x6e\x20\x6f\x6e\x6c\x79\x20\ +\x62\x65\x20\x69\x6e\x73\x65\x72\x74\x65\x64\x2c\x20\x6e\x6f\x74\ +\x20\x65\x64\x69\x74\x65\x64\x2e\x20\x54\x68\x65\x79\x20\x61\x72\ +\x65\x20\x68\x6f\x77\x65\x76\x65\x72\x20\x73\x75\x63\x68\x20\x73\ +\x69\x6d\x70\x6c\x69\x73\x74\x69\x63\x20\x74\x68\x61\x74\x20\x64\ +\x65\x6c\x65\x74\x65\x2d\x61\x6e\x64\x2d\x72\x65\x69\x6e\x73\x65\ +\x72\x74\x20\x69\x73\x20\x65\x71\x75\x61\x6c\x6c\x79\x20\x74\x69\ +\x6d\x65\x2d\x65\x66\x66\x69\x63\x69\x65\x6e\x74\x2e\x3c\x2f\x70\ +\x3e\x07\x00\x00\x00\x05\x41\x62\x6f\x75\x74\x01\x03\x00\x00\x00\ +\xc4\x00\x3c\x00\x70\x00\x3e\x00\x44\x00\x69\x00\x65\x00\x20\x00\ +\x6d\x00\x65\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\x00\ +\x42\x00\x65\x00\x66\x00\x65\x00\x68\x00\x6c\x00\x65\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\x65\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\ +\x77\x00\x6f\x00\x68\x00\x6c\x00\x20\x00\x61\x00\x75\x00\x66\x00\ +\x20\x00\x45\x00\x69\x00\x6e\x00\x7a\x00\x65\x00\x6c\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x61\x00\ +\x6c\x00\x73\x00\x20\x00\x61\x00\x75\x00\x63\x00\x68\x00\x20\x00\ +\x61\x00\x75\x00\x66\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x67\x00\x61\x00\x6e\x00\x7a\x00\x65\x00\x20\x00\x41\x00\ +\x75\x00\x73\x00\x77\x00\x61\x00\x68\x00\x6c\x00\x2e\x00\x3c\x00\ +\x2f\x00\x70\x00\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x81\x3c\ +\x70\x3e\x4d\x6f\x73\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\ +\x63\x61\x6e\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\x74\ +\x6f\x20\x73\x69\x6e\x67\x6c\x65\x20\x6e\x6f\x74\x65\x73\x20\x61\ +\x6e\x64\x20\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x73\x20\x65\x71\ +\x75\x61\x6c\x6c\x79\x2e\x3c\x2f\x70\x3e\x3c\x70\x3e\x55\x73\x65\ +\x20\x53\x68\x69\x66\x74\x20\x2b\x20\x6d\x6f\x76\x65\x6d\x65\x6e\ +\x74\x2d\x6b\x65\x79\x73\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x73\x2e\x3c\x2f\x70\x3e\ +\x07\x00\x00\x00\x05\x41\x62\x6f\x75\x74\x01\x03\x00\x00\x01\xac\ +\x00\x3c\x00\x70\x00\x3e\x00\x44\x00\x69\x00\x65\x00\x20\x00\x6d\ +\x00\x65\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x42\ +\x00\x65\x00\x66\x00\x65\x00\x68\x00\x6c\x00\x65\x00\x2c\x00\x20\ +\x00\x77\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x61\x00\x6d\x00\x20\ +\x00\x45\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x72\ +\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\x00\x20\x00\x61\x00\x75\ +\x00\x73\x00\x67\x00\x65\x00\x66\x00\xfc\x00\x68\x00\x72\x00\x74\ +\x00\x2c\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6e\ +\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\ +\x00\x69\x00\x73\x00\x63\x00\x68\x00\x20\x00\x61\x00\x75\x00\x66\ +\x00\x20\x00\x64\x00\x61\x00\x73\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x64\x00\x61\x00\x76\x00\x6f\ +\x00\x72\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x77\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x74\x00\x2e\x00\x3c\x00\x2f\x00\x70\ +\x00\x3e\x00\x3c\x00\x70\x00\x3e\x00\x44\x00\x61\x00\x73\x00\x20\ +\x00\x69\x00\x73\x00\x74\x00\x20\x00\x70\x00\x72\x00\x61\x00\x6b\ +\x00\x74\x00\x69\x00\x73\x00\x63\x00\x68\x00\x20\x00\x75\x00\x6d\ +\x00\x20\x00\x56\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x69\x00\x63\ +\x00\x68\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x50\x00\x75\x00\x6e\ +\x00\x6b\x00\x74\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\ +\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x74\x00\x63\x00\x2e\x00\x20\ +\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\ +\x00\x6c\x00\x65\x00\x74\x00\x7a\x00\x74\x00\x65\x00\x20\x00\x65\ +\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x66\x00\xfc\x00\x67\x00\x74\ +\x00\x65\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x65\x00\x20\x00\x7a\ +\x00\x75\x00\x20\x00\x65\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\ +\x00\x65\x00\x6e\x00\x3c\x00\x2f\x00\x70\x00\x3e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\xe4\x3c\x70\x3e\x4d\x6f\x73\x74\x20\x63\x6f\ +\x6d\x6d\x61\x6e\x64\x73\x20\x77\x6f\x72\x6b\x20\x69\x6e\x20\x74\ +\x68\x65\x20\x61\x70\x70\x65\x6e\x64\x69\x6e\x67\x20\x70\x6f\x73\ +\x69\x74\x69\x6f\x6e\x20\x28\x6c\x61\x73\x74\x20\x70\x6f\x73\x69\ +\x74\x69\x6f\x6e\x20\x69\x6e\x20\x61\x20\x74\x72\x61\x63\x6b\x29\ +\x20\x61\x6e\x64\x20\x61\x70\x70\x6c\x79\x20\x74\x6f\x20\x74\x68\ +\x65\x20\x69\x74\x65\x6d\x20\x62\x65\x66\x6f\x72\x65\x20\x69\x74\ +\x2e\x3c\x2f\x70\x3e\x3c\x70\x3e\x55\x73\x65\x20\x69\x74\x20\x74\ +\x6f\x20\x61\x70\x70\x6c\x79\x20\x64\x6f\x74\x73\x2c\x20\x73\x68\ +\x61\x72\x70\x73\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\x73\x20\x6f\ +\x6e\x20\x74\x68\x65\x20\x69\x74\x65\x6d\x20\x79\x6f\x75\x20\x6a\ +\x75\x73\x74\x20\x69\x6e\x73\x65\x72\x74\x65\x64\x20\x77\x69\x74\ +\x68\x6f\x75\x74\x20\x6d\x6f\x76\x69\x6e\x67\x20\x74\x68\x65\x20\ +\x63\x75\x72\x73\x6f\x72\x20\x62\x61\x63\x6b\x20\x61\x6e\x64\x20\ +\x66\x6f\x72\x74\x68\x2e\x3c\x2f\x70\x3e\x07\x00\x00\x00\x05\x41\ +\x62\x6f\x75\x74\x01\x03\x00\x00\x01\x44\x00\x3c\x00\x70\x00\x3e\ +\x00\x53\x00\x74\x00\x75\x00\x6d\x00\x6d\x00\x67\x00\x65\x00\x73\ +\x00\x63\x00\x68\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x74\x00\x65\ +\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\x00\x65\x00\x6e\x00\x20\ +\x00\x73\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x69\ +\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x63\ +\x00\x68\x00\x20\x00\x4d\x00\x69\x00\x64\x00\x69\x00\x20\x00\x49\ +\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x20\x00\x43\x00\x68\x00\x61\x00\x6e\x00\x67\x00\x65\ +\x00\x73\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x43\x00\x43\ +\x00\x73\x00\x2c\x00\x20\x00\x64\x00\x61\x00\x6d\x00\x69\x00\x74\ +\x00\x20\x00\x73\x00\x69\x00\x65\x00\x20\x00\x77\x00\xe4\x00\x68\ +\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x65\x00\x72\ +\x00\x20\x00\x57\x00\x69\x00\x65\x00\x64\x00\x65\x00\x72\x00\x67\ +\x00\x61\x00\x62\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x65\ +\x00\x73\x00\x63\x00\x68\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x74\ +\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\ +\x00\x6b\x00\xf6\x00\x6e\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x75\ +\x00\x6e\x00\x64\x00\x20\x00\x72\x00\x69\x00\x63\x00\x68\x00\x74\ +\x00\x69\x00\x67\x00\x20\x00\x6b\x00\x6c\x00\x69\x00\x6e\x00\x67\ +\x00\x65\x00\x6e\x00\x2e\x00\x3c\x00\x2f\x00\x70\x00\x3e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x82\x3c\x70\x3e\x4e\x6f\x6e\x2d\x61\ +\x75\x64\x69\x62\x6c\x65\x20\x74\x72\x61\x63\x6b\x73\x20\x73\x74\ +\x69\x6c\x6c\x20\x6f\x75\x74\x70\x75\x74\x20\x69\x6e\x73\x74\x72\ +\x75\x6d\x65\x6e\x74\x20\x63\x68\x61\x6e\x67\x65\x73\x20\x61\x6e\ +\x64\x20\x43\x43\x73\x20\x73\x6f\x20\x74\x68\x61\x74\x20\x74\x68\ +\x65\x79\x20\x63\x61\x6e\x20\x62\x65\x20\x73\x77\x69\x74\x63\x68\ +\x65\x64\x20\x6f\x6e\x20\x61\x67\x61\x69\x6e\x20\x69\x6e\x20\x74\ +\x68\x65\x20\x6d\x69\x64\x64\x6c\x65\x20\x6f\x66\x20\x70\x6c\x61\ +\x79\x62\x61\x63\x6b\x2e\x3c\x2f\x70\x3e\x07\x00\x00\x00\x05\x41\ +\x62\x6f\x75\x74\x01\x03\x00\x00\x01\x32\x00\x3c\x00\x70\x00\x3e\ +\x00\x4d\x00\x69\x00\x74\x00\x20\x00\x53\x00\x74\x00\x72\x00\x67\ +\x00\x2b\x00\x55\x00\x6d\x00\x73\x00\x63\x00\x68\x00\x61\x00\x6c\ +\x00\x74\x00\x65\x00\x6e\x00\x2b\x00\x4d\x00\x61\x00\x75\x00\x73\ +\x00\x72\x00\x61\x00\x64\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\x61\ +\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x7a\x00\x77\x00\x69\x00\x73\x00\x63\x00\x68\ +\x00\x65\x00\x6e\x00\x72\x00\xe4\x00\x75\x00\x6d\x00\x65\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x67\x00\x72\x00\xf6\x00\xdf\x00\x65\ +\x00\x72\x00\x6e\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x6b\x00\x6c\x00\x65\x00\x69\x00\x6e\ +\x00\x65\x00\x72\x00\x6e\x00\x2e\x00\x20\x00\x53\x00\x74\x00\x72\ +\x00\x67\x00\x2b\x00\x55\x00\x6d\x00\x73\x00\x63\x00\x68\x00\x61\ +\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x69\x00\x74\ +\x00\x20\x00\x50\x00\x6c\x00\x75\x00\x73\x00\x20\x00\x6f\x00\x64\ +\x00\x65\x00\x72\x00\x20\x00\x4d\x00\x69\x00\x6e\x00\x75\x00\x73\ +\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\x61\x00\x75\ +\x00\x63\x00\x68\x00\x3c\x00\x2f\x00\x70\x00\x3e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x6a\x3c\x70\x3e\x53\x70\x72\x65\x61\x64\x2f\ +\x73\x68\x72\x69\x6e\x6b\x20\x74\x68\x65\x20\x73\x70\x61\x63\x65\ +\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x6e\x6f\x74\x65\x73\x20\x77\ +\x69\x74\x68\x20\x43\x74\x72\x6c\x2b\x53\x68\x69\x66\x74\x2b\x4d\ +\x6f\x75\x73\x65\x77\x68\x65\x65\x6c\x20\x6f\x72\x20\x43\x74\x72\ +\x6c\x2b\x53\x68\x69\x66\x74\x20\x77\x69\x74\x68\x20\x50\x6c\x75\ +\x73\x20\x61\x6e\x64\x20\x4d\x69\x6e\x75\x73\x2e\x3c\x2f\x70\x3e\ +\x07\x00\x00\x00\x05\x41\x62\x6f\x75\x74\x01\x03\x00\x00\x00\xe8\ +\x00\x3c\x00\x70\x00\x3e\x00\x45\x00\x73\x00\x20\x00\x67\x00\x69\ +\x00\x62\x00\x74\x00\x20\x00\x6b\x00\x65\x00\x69\x00\x6e\x00\x65\ +\x00\x20\x00\x6c\x00\x65\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\ +\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\x00\x2e\x00\x3c\x00\x2f\ +\x00\x70\x00\x3e\x00\x3c\x00\x70\x00\x3e\x00\x4d\x00\x65\x00\x68\ +\x00\x72\x00\x74\x00\x61\x00\x6b\x00\x74\x00\x70\x00\x61\x00\x75\ +\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x5b\x00\x52\x00\x5d\x00\x20\ +\x00\x6b\x00\xf6\x00\x6e\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x6a\ +\x00\x65\x00\x64\x00\x65\x00\x72\x00\x7a\x00\x65\x00\x69\x00\x74\ +\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x66\x00\xfc\ +\x00\x67\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\ +\x00\x6e\x00\x2c\x00\x20\x00\x61\x00\x75\x00\x63\x00\x68\x00\x20\ +\x00\x6f\x00\x68\x00\x6e\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\ +\x00\x74\x00\x61\x00\x72\x00\x74\x00\x20\x00\x5b\x00\x4d\x00\x5d\ +\x00\x3c\x00\x2f\x00\x70\x00\x3e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x88\x3c\x70\x3e\x54\x68\x65\x72\x65\x20\x61\x72\x65\x20\x6e\ +\x6f\x20\x65\x6d\x70\x74\x79\x20\x6d\x65\x61\x73\x75\x72\x65\x73\ +\x2f\x62\x61\x72\x73\x2e\x3c\x2f\x70\x3e\x3c\x70\x3e\x55\x73\x65\ +\x20\x4d\x75\x6c\x74\x69\x20\x4d\x65\x61\x73\x75\x72\x65\x20\x52\ +\x65\x73\x74\x73\x5b\x52\x5d\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\ +\x20\x59\x6f\x75\x20\x6e\x65\x65\x64\x20\x74\x6f\x20\x68\x61\x76\ +\x65\x20\x61\x20\x6d\x65\x74\x72\x69\x63\x61\x6c\x20\x69\x6e\x73\ +\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x66\x6f\x72\x20\x74\x68\x61\ +\x74\x20\x5b\x4d\x5d\x2e\x3c\x2f\x70\x3e\x07\x00\x00\x00\x05\x41\ +\x62\x6f\x75\x74\x01\x03\x00\x00\x00\xb2\x00\x3c\x00\x70\x00\x3e\ +\x00\x41\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x54\x00\x61\x00\x73\ +\x00\x74\x00\x65\x00\x6e\x00\x6b\x00\xfc\x00\x72\x00\x7a\x00\x65\ +\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x64\x00\x20\x00\x66\ +\x00\x65\x00\x73\x00\x74\x00\x2e\x00\x20\x00\x44\x00\x61\x00\x76\ +\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\ +\x00\x6e\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\x73\ +\x00\x69\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\ +\x00\x74\x00\x65\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\xe4\x00\x72\ +\x00\x65\x00\x6e\x00\x20\x00\x48\x00\x6f\x00\x76\x00\x65\x00\x72\ +\x00\x2d\x00\x53\x00\x68\x00\x6f\x00\x72\x00\x74\x00\x63\x00\x75\ +\x00\x74\x00\x73\x00\x3c\x00\x2f\x00\x70\x00\x3e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x39\x3c\x70\x3e\x54\x68\x65\x72\x65\x20\x69\ +\x73\x20\x6e\x6f\x20\x6b\x65\x79\x2d\x72\x65\x62\x69\x6e\x64\x69\ +\x6e\x67\x20\x65\x78\x63\x65\x70\x74\x20\x6e\x75\x6d\x70\x61\x64\ +\x2d\x73\x68\x6f\x72\x74\x63\x75\x74\x73\x2e\x3c\x2f\x70\x3e\x07\ +\x00\x00\x00\x05\x41\x62\x6f\x75\x74\x01\x03\x00\x00\x00\x94\x00\ +\x3c\x00\x70\x00\x3e\x00\x41\x00\x75\x00\x66\x00\x74\x00\x61\x00\ +\x6b\x00\x74\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6c\x00\x74\x00\ +\x65\x00\x6e\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x53\x00\ +\x70\x00\x75\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\ +\x62\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ +\x20\x00\x73\x00\x69\x00\x63\x00\x68\x00\x20\x00\x69\x00\x6d\x00\ +\x20\x00\x53\x00\x70\x00\x75\x00\x72\x00\x20\x00\x45\x00\x64\x00\ +\x69\x00\x74\x00\x6f\x00\x72\x00\x20\x00\x5b\x00\x53\x00\x74\x00\ +\x72\x00\x67\x00\x2b\x00\x54\x00\x5d\x00\x2e\x00\x3c\x00\x2f\x00\ +\x70\x00\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x3c\x70\x3e\ +\x55\x70\x62\x65\x61\x74\x73\x2f\x61\x6e\x61\x63\x72\x75\x73\x69\ +\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x73\x65\x74\x20\x70\x65\x72\ +\x2d\x74\x72\x61\x63\x6b\x20\x69\x6e\x20\x74\x68\x65\x20\x54\x72\ +\x61\x63\x6b\x20\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73\x20\x5b\ +\x43\x74\x72\x6c\x2b\x54\x5d\x2e\x3c\x2f\x70\x3e\x07\x00\x00\x00\ +\x05\x41\x62\x6f\x75\x74\x01\x03\x00\x00\x00\x34\x00\x4e\x00\x6f\ +\x00\x74\x00\x65\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x41\ +\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\x64\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\x12\x26\x41\x64\x64\x20\x4e\ +\x6f\x74\x65\x20\x74\x6f\x20\x43\x68\x6f\x72\x64\x07\x00\x00\x00\ +\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x12\x00\x4e\x00\x65\x00\x75\x00\x65\x00\x20\x00\x53\x00\x70\x00\ +\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x26\x41\x64\ +\x64\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ +\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x16\x00\x41\x00\x75\ +\x00\x66\x00\x73\x00\x74\x00\x65\x00\x69\x00\x67\x00\x65\x00\x6e\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x26\x41\x73\x63\ +\x65\x6e\x64\x69\x6e\x67\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x41\x00\x75\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x72\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x26\x41\x75\ +\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x42\x00\x61\x00\x6c\ +\x00\x6b\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x26\x42\x65\x61\x6d\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x42\x00\x6c\x00\xf6\ +\x00\x63\x00\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x26\x42\x6c\x6f\x63\x6b\x73\x20\x4f\x6e\x6c\x79\x07\x00\x00\x00\ +\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x36\x00\x52\x00\x68\x00\x79\x00\x74\x00\x68\x00\x6d\x00\x75\x00\ +\x73\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x52\x00\x61\x00\ +\x73\x00\x74\x00\x65\x00\x72\x00\x73\x00\x20\x00\xe4\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x26\x43\x68\x61\x6e\x67\x65\x20\x47\x72\x69\x64\x20\x52\x68\ +\x79\x74\x68\x6d\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\x53\x00\x63\x00\x68\x00\ +\x6c\x00\xfc\x00\x73\x00\x73\x00\x65\x00\x6c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x26\x43\x6c\x65\x66\x07\x00\x00\x00\x0a\x4d\ +\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\ +\x53\x00\x26\x00\x74\x00\x65\x00\x75\x00\x65\x00\x72\x00\x75\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x26\x43\x6f\ +\x6e\x74\x72\x6f\x6c\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x6f\x00\x6e\ +\x00\x74\x00\x72\x00\x6f\x00\x6c\x00\x20\x00\x43\x00\x68\x00\x61\ +\x00\x6e\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x26\x43\x6f\x6e\x74\x72\x6f\x6c\x20\x43\x68\x61\x6e\x67\ +\x65\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ +\x77\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\ +\x05\x26\x43\x6f\x70\x79\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x40\x00\x44\x00\x69\x00\ +\x65\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x42\x00\x6c\x00\x6f\x00\ +\x63\x00\x6b\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\x00\x4c\x00\ +\x69\x00\x6e\x00\x6b\x00\x20\x00\x76\x00\x65\x00\x72\x00\x64\x00\ +\x6f\x00\x70\x00\x70\x00\x65\x00\x6c\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x26\x43\x72\x65\x61\x74\x65\x20\x4c\x69\x6e\ +\x6b\x65\x64\x20\x43\x6f\x70\x79\x07\x00\x00\x00\x0a\x4d\x61\x69\ +\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x4e\x00\ +\x2d\x00\x54\x00\x6f\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x26\x43\x75\x73\x74\x6f\x6d\x20\x54\x75\x70\x6c\x65\ +\x74\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x1c\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x20\x00\x6c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x26\x44\x65\ +\x6c\x65\x74\x65\x20\x49\x74\x65\x6d\x07\x00\x00\x00\x0a\x4d\x61\ +\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2e\x00\x4e\ +\x00\x6f\x00\x74\x00\x65\x00\x20\x00\x61\x00\x75\x00\x73\x00\x20\ +\x00\x41\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\x64\x00\x20\x00\x6c\ +\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x26\x44\x65\x6c\x65\x74\x65\x20\x4e\x6f\ +\x74\x65\x20\x66\x72\x6f\x6d\x20\x43\x68\x6f\x72\x64\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x14\x00\x41\x00\x62\x00\x73\x00\x74\x00\x65\x00\x69\x00\x67\ +\x00\x65\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x26\x44\x65\x73\x63\x65\x6e\x64\x69\x6e\x67\x07\x00\x00\x00\x0a\ +\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x16\ +\x00\x44\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x75\x00\x69\x00\x65\ +\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x26\x44\x69\x6d\x69\x6e\x69\x73\x68\x07\x00\x00\x00\x0a\x4d\x61\ +\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2e\x00\x44\ +\x00\x69\x00\x65\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x42\x00\x6c\ +\x00\x6f\x00\x63\x00\x6b\x00\x20\x00\x76\x00\x65\x00\x72\x00\x64\ +\x00\x6f\x00\x70\x00\x70\x00\x65\x00\x6c\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x18\x26\x44\x75\x70\x6c\x69\x63\x61\x74\x65\ +\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x42\x6c\x6f\x63\x6b\x07\x00\ +\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x0e\x00\x44\x00\x79\x00\x6e\x00\x61\x00\x6d\x00\x69\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x44\x79\x6e\x61\ +\x6d\x69\x63\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x32\x00\x41\x00\x6c\x00\x73\x00\ +\x20\x00\x2e\x00\x6c\x00\x79\x00\x20\x00\x44\x00\x61\x00\x74\x00\ +\x65\x00\x69\x00\x20\x00\x65\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\x13\x26\x45\x78\x70\x6f\x72\x74\x20\x74\x6f\x20\ +\x2e\x6c\x79\x20\x66\x69\x6c\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\ +\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x26\x00\x44\x00\ +\x75\x00\x72\x00\x63\x00\x68\x00\x20\x00\x62\x00\x20\x00\x65\x00\ +\x72\x00\x6e\x00\x69\x00\x65\x00\x64\x00\x72\x00\x69\x00\x67\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x26\x46\x6c\ +\x61\x74\x74\x65\x6e\x20\x4e\x6f\x74\x65\x07\x00\x00\x00\x0a\x4d\ +\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\ +\x50\x00\x6c\x00\x61\x00\x79\x00\x68\x00\x65\x00\x61\x00\x64\x00\ +\x20\x00\x66\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x26\x46\x6f\x6c\x6c\x6f\x77\x20\x50\ +\x6c\x61\x79\x68\x65\x61\x64\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ +\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x30\x00\x43\x00\x68\ +\x00\x61\x00\x6e\x00\x6e\x00\x65\x00\x6c\x00\x20\x00\x43\x00\x68\ +\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\ +\x00\x66\x00\xfc\x00\x67\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x26\x49\x6e\x73\x65\x72\x74\x20\x43\x68\ +\x61\x6e\x6e\x65\x6c\x20\x43\x68\x61\x6e\x67\x65\x20\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x22\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\ +\x00\x20\x00\x26\x00\x45\x00\x69\x00\x6e\x00\x66\x00\xfc\x00\x67\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x26\x49\ +\x6e\x73\x65\x72\x74\x20\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x26\x00\x49\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x77\x00\x65\x00\x63\ +\x00\x68\x00\x73\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x12\x26\x49\x6e\x73\x74\x72\x75\x6d\x65\x6e\x74\x20\x43\x68\ +\x61\x6e\x67\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x3a\x00\x4d\x00\x69\x00\x74\x00\ +\x20\x00\x6e\x00\xe4\x00\x63\x00\x68\x00\x73\x00\x74\x00\x65\x00\ +\x6d\x00\x20\x00\x42\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x65\x00\x69\x00\x6e\x00\x69\x00\x67\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x26\x4a\x6f\ +\x69\x6e\x20\x77\x69\x74\x68\x20\x6e\x65\x78\x74\x20\x42\x6c\x6f\ +\x63\x6b\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x14\x00\x56\x00\x6f\x00\x72\x00\x7a\x00\ +\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0e\x26\x4b\x65\x79\x20\x53\x69\x67\x6e\x61\x74\ +\x75\x72\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ +\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x42\x00\x69\x00\x6e\x00\x64\ +\x00\x65\x00\x62\x00\x6f\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x26\x4c\x65\x67\x61\x74\x6f\x20\x53\x6c\ +\x75\x72\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x0c\x00\x4c\x00\x65\x00\x69\x00\x73\x00\ +\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x26\x4c\x65\ +\x73\x73\x20\x56\x65\x6c\x6f\x63\x69\x74\x79\x07\x00\x00\x00\x0a\ +\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\ +\x00\x26\x00\x4c\x00\x69\x00\x6c\x00\x79\x00\x70\x00\x6f\x00\x6e\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x4c\x69\x6c\ +\x79\x70\x6f\x6e\x64\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x26\x00\x4d\x00\x49\ +\x00\x44\x00\x49\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x4d\ +\x49\x44\x49\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ +\x6f\x77\x01\x03\x00\x00\x00\x1c\x00\x4d\x00\x69\x00\x64\x00\x69\ +\x00\x20\x00\x43\x00\x68\x00\x61\x00\x6e\x00\x6e\x00\x65\x00\x6c\ +\x00\x20\x00\x2b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x26\x4d\ +\x49\x44\x49\x20\x43\x68\x61\x6e\x6e\x65\x6c\x20\x2b\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x0c\x00\x4d\x00\x65\x00\x74\x00\x72\x00\x75\x00\x6d\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x15\x26\x4d\x65\x74\x72\x69\x63\x61\ +\x6c\x20\x49\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x30\x00\x4d\x00\x69\x00\x64\x00\x69\x00\x20\x00\x49\x00\x6e\ +\x00\x70\x00\x75\x00\x74\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\ +\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x69\x00\x65\x00\x72\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x26\x4d\x69\x64\ +\x69\x20\x49\x6e\x20\x69\x73\x20\x41\x63\x74\x69\x76\x65\x07\x00\ +\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x3a\x00\x53\x00\x70\x00\x69\x00\x65\x00\x67\x00\x65\x00\ +\x6c\x00\x6e\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\x00\x43\x00\ +\x75\x00\x72\x00\x73\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6c\x00\ +\x73\x00\x20\x00\x41\x00\x63\x00\x68\x00\x73\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x15\x26\x4d\x69\x72\x72\x6f\x72\x20\x61\ +\x72\x6f\x75\x6e\x64\x20\x43\x75\x72\x73\x6f\x72\x07\x00\x00\x00\ +\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x0c\x00\x4c\x00\x61\x00\x75\x00\x74\x00\x65\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0e\x26\x4d\x6f\x72\x65\x20\x56\x65\x6c\ +\x6f\x63\x69\x74\x79\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x4e\x00\x6f\x00\x74\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x4e\ +\x6f\x74\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ +\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x4e\x00\x6f\ +\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x26\x00\x45\x00\x72\x00\x7a\ +\x00\x65\x00\x75\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x26\x4e\x6f\x74\x65\x20\x47\x65\x6e\x65\x72\x61\ +\x74\x69\x6f\x6e\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x22\x00\x55\x00\x6d\x00\x20\x00\ +\x4f\x00\x6b\x00\x74\x00\x61\x00\x76\x00\x65\x00\x20\x00\x65\x00\ +\x72\x00\x68\x00\xf6\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x26\x4f\x63\x74\x61\x76\x65\x20\x55\x70\x07\ +\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ +\x00\x00\x00\x10\x00\x45\x00\x69\x00\x6e\x00\x66\x00\xfc\x00\x67\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x50\ +\x61\x73\x74\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x50\x00\x65\x00\x64\x00\ +\x61\x00\x6c\x00\x6e\x00\x6f\x00\x74\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x26\x50\x65\x64\x61\x6c\x20\x4e\x6f\ +\x74\x65\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ +\x6f\x77\x01\x03\x00\x00\x00\x5e\x00\x5a\x00\x75\x00\x66\x00\xe4\ +\x00\x6c\x00\x6c\x00\x69\x00\x67\x00\x65\x00\x20\x00\x63\x00\x68\ +\x00\x72\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x73\x00\x63\ +\x00\x68\x00\x65\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x65\x00\x20\ +\x00\x69\x00\x6d\x00\x20\x00\x53\x00\x63\x00\x68\x00\x6c\x00\xfc\ +\x00\x73\x00\x73\x00\x65\x00\x6c\x00\x62\x00\x65\x00\x72\x00\x65\ +\x00\x69\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\ +\x26\x52\x61\x6e\x64\x6f\x6d\x20\x63\x68\x72\x6f\x6d\x61\x74\x69\ +\x63\x20\x69\x6e\x20\x63\x6c\x65\x66\x20\x72\x61\x6e\x67\x65\x07\ +\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ +\x00\x00\x00\x18\x00\x42\x00\x61\x00\x6c\x00\x6b\x00\x65\x00\x6e\ +\x00\x2d\x00\x4e\x00\x6f\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x14\x26\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x20\x4e\x6f\x74\x65\x68\x65\x61\x64\x73\x07\x00\x00\x00\x0a\x4d\ +\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x00\ +\x52\x00\x65\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x26\x52\x65\x64\x6f\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x20\x00\x42\x00\x61\x00\ +\x6c\x00\x6b\x00\x65\x00\x6e\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\x0d\x26\x52\x65\x6d\x6f\x76\x65\x20\x42\x65\x61\ +\x6d\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x42\x00\x4c\x00\x61\x00\x75\x00\x74\x00\ +\x73\x00\x74\x00\xe4\x00\x72\x00\x6b\x00\x65\x00\x20\x00\x75\x00\ +\x6e\x00\x64\x00\x20\x00\x4c\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\ +\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x73\x00\ +\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1f\x26\x52\x65\x73\x65\x74\x20\x56\x65\x6c\x6f\x63\x69\ +\x74\x79\x20\x2f\x20\x44\x75\x72\x61\x74\x69\x6f\x6e\x20\x4d\x6f\ +\x64\x2e\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x28\x00\x52\x00\x65\x00\x69\x00\x68\x00\ +\x65\x00\x6e\x00\x66\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\x20\x00\ +\x55\x00\x6d\x00\x6b\x00\x65\x00\x68\x00\x72\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x26\x52\x65\x76\x65\x72\x73\ +\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ +\x01\x03\x00\x00\x00\x12\x00\x53\x00\x70\x00\x65\x00\x69\x00\x63\ +\x00\x68\x00\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x26\x53\x61\x76\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ +\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x26\x00\x44\x00\x75\ +\x00\x72\x00\x63\x00\x68\x00\x20\x00\x4b\x00\x72\x00\x65\x00\x75\ +\x00\x7a\x00\x20\x00\x65\x00\x72\x00\x68\x00\xf6\x00\x68\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x26\x53\x68\x61\ +\x72\x70\x65\x6e\x20\x4e\x6f\x74\x65\x07\x00\x00\x00\x0a\x4d\x61\ +\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x50\ +\x00\x44\x00\x46\x00\x20\x00\x61\x00\x6e\x00\x7a\x00\x65\x00\x69\ +\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x26\x53\x68\x6f\x77\x20\x50\x44\x46\x07\x00\x00\x00\x0a\x4d\x61\ +\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x4d\ +\x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x26\x53\x68\x75\x66\x66\x6c\x65\x07\x00\ +\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x26\x00\x44\x00\x69\x00\x65\x00\x73\x00\x65\x00\x6e\x00\ +\x20\x00\x42\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x20\x00\x74\x00\ +\x65\x00\x69\x00\x6c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x14\x26\x53\x70\x6c\x69\x74\x20\x43\x75\x72\x72\x65\x6e\ +\x74\x20\x42\x6c\x6f\x63\x6b\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ +\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x5a\x00\x77\ +\x00\x65\x00\x69\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x26\x53\x70\x6c\x69\x74\ +\x20\x69\x6e\x20\x32\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x16\x00\x26\x00\x53\x00\x74\ +\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x26\x53\x74\x72\x75\x63\ +\x74\x75\x72\x65\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x54\x00\x65\x00\x6d\ +\x00\x70\x00\x6f\x00\x77\x00\x65\x00\x63\x00\x68\x00\x73\x00\x65\ +\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x26\x54\x65\x6d\ +\x70\x6f\x20\x43\x68\x61\x6e\x67\x65\x07\x00\x00\x00\x0a\x4d\x61\ +\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x26\ +\x00\x57\x00\x65\x00\x72\x00\x6b\x00\x7a\x00\x65\x00\x75\x00\x67\ +\x00\x6b\x00\x61\x00\x73\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x26\x54\x6f\x6f\x6c\x62\x6f\x78\x07\x00\ +\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x14\x00\x53\x00\x70\x00\x75\x00\x72\x00\x65\x00\x64\x00\ +\x69\x00\x74\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x26\x54\x72\x61\x63\x6b\x20\x45\x64\x69\x74\x6f\x72\x07\x00\ +\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x28\x00\x41\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\x64\x00\ +\x20\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\ +\x6e\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x10\x26\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x20\ +\x43\x68\x6f\x72\x64\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x26\x00\x41\x00\x6c\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\ +\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x26\x54\x72\x61\x6e\x73\ +\x70\x6f\x73\x65\x20\x53\x63\x6f\x72\x65\x07\x00\x00\x00\x0a\x4d\ +\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\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\x0a\x4d\x61\x69\x6e\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2a\x00\x4c\x00\x69\x00\ +\x6e\x00\x6b\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x42\x00\ +\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x20\x00\x6c\x00\xf6\x00\ +\x73\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x26\ +\x55\x6e\x6c\x69\x6e\x6b\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x42\ +\x6c\x6f\x63\x6b\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x44\x00\x26\x00\x4d\x00\x6f\x00\ +\x64\x00\x75\x00\x73\x00\x20\x00\x7a\x00\x75\x00\x72\x00\x20\x00\ +\x41\x00\x6e\x00\x73\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\ +\x75\x00\x6e\x00\x64\x00\x20\x00\x42\x00\x65\x00\x61\x00\x72\x00\ +\x62\x00\x65\x00\x69\x00\x74\x00\x75\x00\x6e\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x26\x56\x69\x65\x77\x20\x61\x6e\x64\ +\x20\x45\x64\x69\x74\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x0a\x4d\ +\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x36\x00\ +\x4e\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x7a\x00\x77\x00\x69\x00\ +\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x72\x00\xe4\x00\x75\x00\ +\x6d\x00\x65\x00\x20\x00\x73\x00\x74\x00\x72\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x26\ +\x57\x69\x64\x65\x6e\x20\x53\x63\x6f\x72\x65\x20\x56\x69\x65\x77\ +\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ +\x03\x00\x00\x00\x3c\x00\x4c\x00\x65\x00\x65\x00\x72\x00\x65\x00\ +\x6e\x00\x20\x00\x42\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x20\x00\ +\x61\x00\x6e\x00\x73\x00\x20\x00\x45\x00\x6e\x00\x64\x00\x65\x00\ +\x20\x00\x61\x00\x6e\x00\x68\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x70\x70\x65\x6e\ +\x64\x20\x26\x42\x6c\x6f\x63\x6b\x07\x00\x00\x00\x0a\x4d\x61\x69\ +\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2a\x00\x42\x00\ +\x61\x00\x6e\x00\x6b\x00\x20\x00\x43\x00\x68\x00\x61\x00\x6e\x00\ +\x67\x00\x65\x00\x20\x00\x28\x00\x72\x00\x65\x00\x6c\x00\x61\x00\ +\x74\x00\x69\x00\x76\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x14\x42\x61\x6e\x6b\x20\x43\x68\x61\x6e\x67\x65\x20\x52\x65\x6c\ +\x61\x74\x69\x76\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x54\x00\x61\x00\x6b\ +\x00\x74\x00\x73\x00\x74\x00\x72\x00\x69\x00\x63\x00\x68\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x42\x61\x72\x6c\x69\x6e\x65\x07\ +\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ +\x00\x00\x00\x30\x00\x43\x00\x68\x00\x61\x00\x6e\x00\x6e\x00\x65\ +\x00\x6c\x00\x20\x00\x43\x00\x68\x00\x61\x00\x6e\x00\x67\x00\x65\ +\x00\x20\x00\x28\x00\x72\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\ +\x00\x76\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x68\ +\x61\x6e\x6e\x65\x6c\x20\x43\x68\x61\x6e\x67\x65\x20\x52\x65\x6c\ +\x61\x74\x69\x76\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x41\x00\x75\x00\x73\ +\x00\x73\x00\x63\x00\x68\x00\x6e\x00\x65\x00\x69\x00\x64\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x43\x75\x74\x07\ +\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ +\x00\x00\x00\x2c\x00\x54\x00\x65\x00\x6d\x00\x70\x00\x6f\x00\x77\ +\x00\x65\x00\x63\x00\x68\x00\x73\x00\x65\x00\x6c\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\x14\x44\x26\x65\x6c\x65\x74\ +\x65\x20\x54\x65\x6d\x70\x6f\x20\x43\x68\x61\x6e\x67\x65\x07\x00\ +\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x28\x00\x44\x00\x69\x00\x65\x00\x73\x00\x65\x00\x6e\x00\ +\x20\x00\x42\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x20\x00\x6c\x00\ +\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x44\x65\x26\x6c\x65\x74\x65\x20\x43\x75\x72\ +\x72\x65\x6e\x74\x20\x42\x6c\x6f\x63\x6b\x07\x00\x00\x00\x0a\x4d\ +\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x34\x00\ +\x41\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x65\x00\ +\x72\x00\x65\x00\x6e\x00\x20\x00\x42\x00\x6c\x00\xf6\x00\x63\x00\ +\x6b\x00\x65\x00\x20\x00\x6c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x44\x65\x6c\ +\x65\x74\x65\x20\x41\x6c\x6c\x20\x26\x45\x6d\x70\x74\x79\x20\x42\ +\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x26\x00\x41\x00\x6b\x00\x74\ +\x00\x69\x00\x76\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\ +\x00\x20\x00\x6c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\x65\x6c\x65\x74\x65\ +\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x54\x72\x61\x63\x6b\x07\x00\ +\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x32\x00\x56\x00\x6f\x00\x72\x00\x68\x00\x65\x00\x72\x00\ +\x69\x00\x67\x00\x65\x00\x73\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x6c\x00\xf6\x00\x73\x00\x63\x00\ +\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x44\ +\x65\x6c\x65\x74\x65\x20\x70\x72\x65\x76\x69\x6f\x75\x73\x20\x26\ +\x49\x74\x65\x6d\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x16\x00\x50\x00\x75\x00\x6e\x00\ +\x6b\x00\x74\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x44\x6f\x74\x73\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x14\x00\x56\x00\x65\x00\x72\x00\x64\x00\x6f\x00\x70\x00\x70\ +\x00\x65\x00\x6c\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x44\x75\x70\x26\x6c\x69\x63\x61\x74\x65\x07\x00\x00\x00\x0a\x4d\ +\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x16\x00\ +\x42\x00\x65\x00\x61\x00\x72\x00\x62\x00\x65\x00\x69\x00\x74\x00\ +\x65\x00\x26\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x45\ +\x26\x64\x69\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x22\x00\x4e\x00\x6f\x00\x74\x00\ +\x65\x00\x6e\x00\x20\x00\x26\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\x0a\x45\x26\x64\x69\x74\x20\x4e\x6f\x74\x65\x07\ +\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ +\x00\x00\x00\x30\x00\x4d\x00\x26\x00\x75\x00\x73\x00\x69\x00\x6b\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\ +\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\x0f\x45\x64\ +\x69\x74\x20\x26\x4d\x75\x73\x69\x63\x49\x74\x65\x6d\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x16\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\x0b\x45\x78\x70\x6f\x72\x74\x20\x46\x69\x6c\x65\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x34\x00\x41\x00\x6c\x00\x73\x00\x20\x00\x2e\x00\x70\x00\x64\ +\x00\x66\x00\x20\x00\x44\x00\x61\x00\x74\x00\x65\x00\x69\x00\x20\ +\x00\x65\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\x13\ +\x45\x78\x70\x6f\x72\x74\x20\x74\x6f\x20\x2e\x70\x64\x66\x20\x66\ +\x69\x6c\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ +\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x42\x00\x65\x00\x6c\x00\x69\ +\x00\x65\x00\x62\x00\x69\x00\x67\x00\x65\x00\x72\x00\x20\x00\x54\ +\x00\x65\x00\x78\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x46\x72\x65\x65\x20\x49\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\ +\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ +\x03\x00\x00\x00\x0a\x00\x48\x00\x69\x00\x6c\x00\x66\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x48\x65\x6c\x70\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x34\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\x28\x00\x75\x00\x6e\ +\x00\x64\x00\x20\x00\x65\x00\x72\x00\x73\x00\x65\x00\x74\x00\x7a\ +\x00\x65\x00\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\ +\x49\x6d\x70\x6f\x72\x74\x20\x46\x69\x6c\x65\x20\x28\x72\x65\x70\ +\x6c\x61\x63\x65\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x29\x07\x00\ +\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x28\x00\x42\x00\x61\x00\x6e\x00\x6b\x00\x20\x00\x43\x00\ +\x68\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x65\x00\x69\x00\ +\x6e\x00\x66\x00\xfc\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x12\x49\x6e\x73\x65\x72\x74\x20\x42\x61\x6e\x6b\ +\x20\x43\x68\x61\x6e\x67\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ +\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x4c\x00\x65\ +\x00\x69\x00\x73\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x4c\x65\x73\x73\x20\x56\x65\x6c\x6f\x63\x69\x74\x79\x07\ +\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ +\x00\x00\x00\x0c\x00\x4c\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x4c\x6f\x26\x6e\x67\x65\ +\x72\x20\x44\x75\x72\x61\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x2e\x07\ +\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ +\x00\x00\x00\x0c\x00\x4c\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x4c\x6f\x6e\x67\x65\x72\ +\x20\x44\x75\x72\x61\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x2e\x07\x00\ +\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x1c\x00\x4d\x00\x69\x00\x64\x00\x69\x00\x20\x00\x43\x00\ +\x68\x00\x61\x00\x6e\x00\x6e\x00\x65\x00\x6c\x00\x20\x00\x2d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4d\x49\x44\x49\x20\x26\x43\ +\x68\x61\x6e\x6e\x65\x6c\x20\x2d\x07\x00\x00\x00\x0a\x4d\x61\x69\ +\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x32\x00\x4d\x00\ +\x69\x00\x64\x00\x69\x00\x20\x00\x43\x00\x68\x00\x61\x00\x6e\x00\ +\x6e\x00\x65\x00\x6c\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\ +\x63\x00\x6b\x00\x73\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4d\x49\x44\x49\x20\x43\x26\ +\x68\x61\x6e\x6e\x65\x6c\x20\x52\x65\x73\x65\x74\x07\x00\x00\x00\ +\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x12\x00\x4d\x00\x65\x00\x74\x00\x61\x00\x64\x00\x61\x00\x74\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x65\x74\ +\x61\x26\x64\x61\x74\x61\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x4d\x00\x65\x00\ +\x74\x00\x72\x00\x6f\x00\x6e\x00\x6f\x00\x6d\x00\x20\x00\x69\x00\ +\x73\x00\x74\x00\x20\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x12\x4d\x65\x74\x72\x6f\x6e\x6f\x6d\x65\x20\x26\x45\x6e\ +\x61\x62\x6c\x65\x64\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x4c\x00\x61\x00\x75\ +\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x4d\x6f\x72\x65\x20\x56\x65\x6c\x6f\x63\x69\x74\x79\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x1a\x00\x4d\x00\x65\x00\x68\x00\x72\x00\x74\x00\x61\x00\x6b\ +\x00\x74\x00\x70\x00\x61\x00\x75\x00\x73\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x13\x4d\x75\x6c\x74\x69\x20\x4d\x65\x61\x73\ +\x75\x72\x65\x20\x26\x52\x65\x73\x74\x07\x00\x00\x00\x0a\x4d\x61\ +\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x20\x00\x4e\ +\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x26\x00\x53\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\x4e\x6f\x74\x65\x20\x26\x53\x6f\ +\x72\x74\x69\x6e\x67\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2c\x00\x55\x00\x6d\x00\x20\ +\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x20\ +\x00\x65\x00\x72\x00\x6e\x00\x69\x00\x65\x00\x64\x00\x72\x00\x69\ +\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x4f\x63\x74\x61\x26\x76\x65\x20\x44\x6f\x77\x6e\x07\x00\x00\x00\ +\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x24\x00\x57\x00\x69\x00\x65\x00\x64\x00\x65\x00\x72\x00\x67\x00\ +\x61\x00\x62\x00\x65\x00\x20\x00\x2f\x00\x20\x00\x50\x00\x61\x00\ +\x75\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x50\ +\x26\x6c\x61\x79\x20\x2f\x20\x50\x61\x75\x73\x65\x07\x00\x00\x00\ +\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x2a\x00\x57\x00\x69\x00\x65\x00\x64\x00\x65\x00\x72\x00\x67\x00\ +\x61\x00\x62\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6d\x00\x20\x00\ +\x43\x00\x75\x00\x72\x00\x73\x00\x6f\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x50\x6c\x61\x26\x79\x20\x66\x72\x6f\x6d\x20\ +\x43\x75\x72\x73\x6f\x72\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2a\x00\x57\x00\x69\x00\ +\x65\x00\x64\x00\x65\x00\x72\x00\x67\x00\x61\x00\x62\x00\x65\x00\ +\x20\x00\x76\x00\x6f\x00\x6d\x00\x20\x00\x41\x00\x6e\x00\x66\x00\ +\x61\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x50\ +\x6c\x61\x79\x20\x66\x72\x26\x6f\x6d\x20\x53\x74\x61\x72\x74\x07\ +\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ +\x00\x00\x00\x2e\x00\x4d\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x61\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x6c\x00\x74\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x50\x00\x61\x00\x75\x00\x73\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x72\x65\x76\ +\x61\x69\x6c\x69\x6e\x67\x20\x52\x65\x73\x74\x07\x00\x00\x00\x0a\ +\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x30\ +\x00\x50\x00\x72\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6d\x00\x20\ +\x00\x43\x00\x68\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x28\ +\x00\x72\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x50\x72\x6f\x67\x72\x61\ +\x6d\x20\x43\x68\x61\x6e\x67\x65\x20\x52\x65\x6c\x61\x74\x69\x76\ +\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ +\x01\x03\x00\x00\x00\x60\x00\x5a\x00\x75\x00\x66\x00\xe4\x00\x6c\ +\x00\x6c\x00\x69\x00\x67\x00\x65\x00\x20\x00\x4e\x00\x6f\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\x6b\x00\x61\x00\x6c\x00\x61\x00\x20\ +\x00\x69\x00\x6d\x00\x20\x00\x53\x00\x63\x00\x68\x00\x6c\x00\xfc\ +\x00\x73\x00\x73\x00\x65\x00\x6c\x00\x62\x00\x65\x00\x72\x00\x65\ +\x00\x69\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\ +\x52\x61\x6e\x64\x6f\x6d\x20\x26\x69\x6e\x2d\x73\x63\x61\x6c\x65\ +\x20\x69\x6e\x20\x63\x6c\x65\x66\x20\x72\x61\x6e\x67\x65\x07\x00\ +\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\xa6\x00\x5a\x00\x75\x00\x66\x00\xe4\x00\x6c\x00\x6c\x00\ +\x69\x00\x67\x00\x65\x00\x20\x00\x4e\x00\x6f\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\x6b\x00\x61\x00\x6c\x00\x61\x00\x20\x00\x76\x00\ +\x6f\x00\x6d\x00\x20\x00\x43\x00\x75\x00\x72\x00\x73\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x75\x00\x73\x00\x2c\x00\x20\x00\x75\x00\ +\x6d\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x4f\x00\ +\x6b\x00\x74\x00\x61\x00\x76\x00\x65\x00\x20\x00\x65\x00\x72\x00\ +\x77\x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x74\x00\x20\x00\ +\x28\x00\x41\x00\x75\x00\x74\x00\x68\x00\x65\x00\x6e\x00\x74\x00\ +\x69\x00\x73\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x36\x52\x61\x6e\x64\x6f\x6d\x20\x69\x6e\x2d\x73\x63\x61\ +\x6c\x65\x20\x69\x6e\x20\x63\x75\x72\x73\x6f\x72\x20\x70\x6c\x75\ +\x73\x20\x6f\x63\x74\x61\x76\x65\x20\x28\x61\x75\x74\x68\x65\x6e\ +\x74\x69\x63\x20\x6d\x6f\x64\x65\x29\x07\x00\x00\x00\x0a\x4d\x61\ +\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x6e\x00\x5a\ +\x00\x75\x00\x66\x00\xe4\x00\x6c\x00\x6c\x00\x69\x00\x67\x00\x65\ +\x00\x20\x00\x4e\x00\x6f\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\x6b\ +\x00\x61\x00\x6c\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x64\ +\x00\x65\x00\x6e\x00\x20\x00\x43\x00\x75\x00\x72\x00\x73\x00\x6f\ +\x00\x72\x00\x20\x00\x68\x00\x65\x00\x72\x00\x75\x00\x6d\x00\x20\ +\x00\x28\x00\x48\x00\x79\x00\x70\x00\x6f\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x33\x52\x61\x6e\x64\x6f\x6d\x20\x69\x6e\x2d\ +\x73\x63\x61\x6c\x65\x20\x69\x6e\x20\x6f\x63\x74\x61\x76\x65\x20\ +\x61\x72\x6f\x75\x6e\x64\x20\x63\x75\x72\x73\x6f\x72\x20\x28\x68\ +\x79\x70\x6f\x20\x6d\x6f\x64\x65\x29\x07\x00\x00\x00\x0a\x4d\x61\ +\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x4e\x00\x5a\ +\x00\x75\x00\x66\x00\xe4\x00\x6c\x00\x6c\x00\x69\x00\x67\x00\x65\ +\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x65\x00\x20\x00\x61\x00\x75\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x6d\x00\x20\x00\x5a\x00\x77\ +\x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x73\x00\x70\ +\x00\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1c\x52\x61\x6e\x64\x6f\x6d\x20\x70\x69\x74\ +\x63\x68\x20\x26\x66\x72\x6f\x6d\x20\x63\x6c\x69\x70\x62\x6f\x61\ +\x72\x64\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x18\x00\x57\x00\x69\x00\x65\x00\x64\x00\ +\x65\x00\x72\x00\x68\x00\x6f\x00\x6c\x00\x75\x00\x6e\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\x70\x65\x61\x74\x07\ +\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ +\x00\x00\x00\x22\x00\x41\x00\x75\x00\x66\x00\x74\x00\x61\x00\x6b\ +\x00\x74\x00\x20\x00\x66\x00\x65\x00\x73\x00\x74\x00\x6c\x00\x65\ +\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x53\x65\x74\x20\x55\x70\x62\x65\x61\x74\x07\x00\x00\x00\x0a\x4d\ +\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\ +\x4b\x00\xfc\x00\x72\x00\x7a\x00\x65\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x53\x68\x6f\x72\x74\x65\x72\x20\x44\x75\x72\ +\x61\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x2e\x07\x00\x00\x00\x0a\x4d\ +\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x3a\x00\ +\x4e\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x7a\x00\x77\x00\x69\x00\ +\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x72\x00\xe4\x00\x75\x00\ +\x6d\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x00\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x12\x53\x68\x72\x26\x69\x6e\x6b\x20\x53\x63\x6f\x72\x65\ +\x20\x56\x69\x65\x77\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x36\x00\x41\x00\x6d\x00\x20\ +\x00\x52\x00\x68\x00\x79\x00\x74\x00\x68\x00\x6d\x00\x75\x00\x73\ +\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\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\x0c\x53\x6e\x61\x70\x20\x54\ +\x6f\x20\x47\x72\x69\x64\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x44\x00\x72\x00\ +\x65\x00\x69\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x70\x6c\x69\x74\x20\x26\ +\x69\x6e\x20\x33\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x16\x00\x54\x00\x65\x00\x69\x00\ +\x6c\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x58\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x70\x6c\x69\x74\x20\x69\ +\x6e\x20\x26\x58\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x53\x00\x74\x00\x61\x00\ +\x63\x00\x63\x00\x61\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x53\x74\x61\x63\x63\x61\x74\x6f\x07\x00\x00\x00\x0a\ +\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2c\ +\x00\x55\x00\x6d\x00\x20\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\ +\x00\x74\x00\x74\x00\x20\x00\x65\x00\x72\x00\x6e\x00\x69\x00\x65\ +\x00\x64\x00\x72\x00\x69\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x53\x74\x65\x26\x70\x20\x44\x6f\x77\x6e\ +\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ +\x03\x00\x00\x00\x24\x00\x55\x00\x6d\x00\x20\x00\x53\x00\x63\x00\ +\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x20\x00\x65\x00\x72\x00\ +\x68\x00\xf6\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x53\x74\x65\x70\x20\x26\x55\x70\x07\x00\x00\x00\x0a\ +\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\ +\x00\x54\x00\x65\x00\x6e\x00\x75\x00\x74\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x54\x26\x65\x6e\x75\x74\x6f\x07\x00\x00\ +\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ +\x00\x14\x00\x48\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x62\x00\x6f\ +\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x54\x26\x69\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x38\x00\x56\x00\x6f\x00\x72\x00\ +\xfc\x00\x62\x00\x65\x00\x72\x00\x67\x00\x65\x00\x68\x00\x65\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x54\x00\x65\x00\x6d\x00\ +\x70\x00\x6f\x00\x77\x00\x65\x00\x63\x00\x68\x00\x73\x00\x65\x00\ +\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x65\x6d\x26\x70\ +\x6f\x72\x61\x72\x79\x20\x54\x65\x6d\x70\x6f\x20\x43\x68\x61\x6e\ +\x67\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x34\x00\x42\x00\x69\x00\x6e\x00\x64\x00\ +\x65\x00\x62\x00\x6f\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x65\x00\ +\x69\x00\x6e\x00\x2f\x00\x61\x00\x75\x00\x73\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\x12\x54\x6f\x67\x67\x6c\x65\x20\x4c\x65\x67\x61\ +\x74\x6f\x20\x53\x6c\x75\x72\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ +\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x34\x00\x4d\x00\x69\ +\x00\x64\x00\x69\x00\x20\x00\x49\x00\x6e\x00\x70\x00\x75\x00\x74\ +\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x2f\x00\x61\x00\x75\x00\x73\ +\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\ +\x20\x6d\x69\x64\x69\x20\x69\x6e\x20\x6f\x6e\x20\x61\x6e\x64\x20\ +\x6f\x66\x66\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ +\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x54\x00\x72\x00\x69\x00\x6f\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x54\x72\ +\x69\x70\x6c\x65\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x42\x00\x41\x00\x6b\x00\x74\ +\x00\x69\x00\x76\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\ +\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x4d\x00\x65\x00\x74\ +\x00\x72\x00\x6f\x00\x6e\x00\x6f\x00\x6d\x00\x20\x00\x62\x00\x65\ +\x00\x6e\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x43\x75\x72\x72\x65\x6e\ +\x74\x20\x54\x72\x61\x63\x6b\x20\x61\x73\x20\x26\x4d\x65\x74\x72\ +\x6f\x6e\x6f\x6d\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ +\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x52\x00\x65\x00\x69\ +\x00\x6e\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x12\x5a\x6f\x6f\x6d\x20\x49\x6e\x20\ +\x53\x63\x6f\x72\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x0a\x4d\ +\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\ +\x52\x00\x61\x00\x75\x00\x73\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x5a\x6f\x6f\ +\x6d\x20\x4f\x75\x74\x20\x53\x63\x6f\x72\x65\x20\x56\x69\x65\x77\ +\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ +\x03\x00\x00\x00\x02\x00\x7c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x01\x7c\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x28\x00\x54\x00\x61\x00\x6b\x00\x74\x00\ +\x73\x00\x74\x00\x72\x00\x69\x00\x63\x00\x68\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\x10\x43\x68\x6f\x6f\x73\x65\x20\ +\x61\x20\x42\x61\x72\x6c\x69\x6e\x65\x07\x00\x00\x00\x04\x6d\x65\ +\x6e\x75\x01\x03\x00\x00\x00\x3c\x00\x57\x00\x69\x00\x65\x00\x64\ +\x00\x65\x00\x72\x00\x68\x00\x6f\x00\x6c\x00\x75\x00\x6e\x00\x67\ +\x00\x73\x00\x7a\x00\x65\x00\x69\x00\x63\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\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x43\x68\ +\x6f\x6f\x73\x65\x20\x61\x20\x52\x65\x70\x65\x61\x74\x07\x00\x00\ +\x00\x04\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\x24\x00\x41\x00\x6e\ +\x00\x77\x00\x65\x00\x69\x00\x73\x00\x75\x00\x6e\x00\x67\x00\x20\ +\x00\x65\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x62\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\x6e\x74\x65\x72\x20\ +\x49\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x04\ +\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\x3e\x00\x4c\x00\x69\x00\x6c\ +\x00\x79\x00\x70\x00\x6f\x00\x6e\x00\x64\x00\x20\x00\x51\x00\x75\ +\x00\x65\x00\x6c\x00\x6c\x00\x64\x00\x61\x00\x74\x00\x65\x00\x69\ +\x00\x20\x00\x65\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\x1b\x45\x78\x70\x6f\x72\x74\x20\x4c\x69\x6c\x79\x70\x6f\x6e\ +\x64\x20\x53\x6f\x75\x72\x63\x65\x20\x46\x69\x6c\x65\x07\x00\x00\ +\x00\x04\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\x24\x00\x4c\x00\x69\ +\x00\x6c\x00\x79\x00\x70\x00\x6f\x00\x6e\x00\x64\x00\x20\x00\x51\ +\x00\x75\x00\x65\x00\x6c\x00\x6c\x00\x74\x00\x65\x00\x78\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x4c\x69\x6c\x79\x70\x6f\ +\x6e\x64\x20\x53\x6f\x75\x72\x63\x65\x20\x28\x2a\x2e\x6c\x79\x29\ +\x07\x00\x00\x00\x04\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\x10\x00\ +\x4d\x00\x65\x00\x74\x00\x72\x00\x6f\x00\x6e\x00\x6f\x00\x6d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x65\x74\x72\x6f\x6e\x6f\ +\x6d\x65\x07\x00\x00\x00\x04\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\ +\x12\x00\x4d\x00\x65\x00\x74\x00\x72\x00\x6f\x00\x6e\x00\x6f\x00\ +\x6d\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4d\x65\x74\ +\x72\x6f\x6e\x6f\x6d\x65\x3a\x07\x00\x00\x00\x04\x6d\x65\x6e\x75\ +\x01\x03\x00\x00\x00\x08\x00\x52\x00\x65\x00\x64\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x52\x65\x64\x6f\x07\x00\x00\x00\ +\x04\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x65\x00\ +\x64\x00\x6f\x00\x20\x00\x7b\x00\x7d\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x52\x65\x64\x6f\x3a\x20\x7b\x7d\x07\x00\x00\x00\x04\ +\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\x28\x00\x41\x00\x6d\x00\x20\ +\x00\x52\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x61\ +\x00\x75\x00\x73\x00\x72\x00\x69\x00\x63\x00\x68\x00\x74\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x6e\x61\x70\ +\x20\x74\x6f\x20\x47\x72\x69\x64\x07\x00\x00\x00\x04\x6d\x65\x6e\ +\x75\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x65\x00\x6d\x00\x70\x00\ +\x6f\x00\x20\x00\xd7\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x54\ +\x65\x6d\x70\x6f\x20\xc3\x83\xc2\x97\x07\x00\x00\x00\x04\x6d\x65\ +\x6e\x75\x01\x03\x00\x00\x00\x08\x00\x55\x00\x6e\x00\x64\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x55\x6e\x64\x6f\x07\x00\ +\x00\x00\x04\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\x10\x00\x55\x00\ +\x6e\x00\x64\x00\x6f\x00\x3a\x00\x20\x00\x7b\x00\x7d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x55\x6e\x64\x6f\x3a\x20\x7b\x7d\x07\ +\x00\x00\x00\x04\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\x0c\x00\x20\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x20\x65\x6e\x64\x20\x07\x00\x00\x00\x0f\x6d\x75\ +\x73\x69\x63\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x01\x03\x00\ +\x00\x00\x0c\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x20\x73\x74\x61\x72\x74\x07\ +\x00\x00\x00\x0f\x6d\x75\x73\x69\x63\x73\x74\x72\x75\x63\x74\x75\ +\x72\x65\x73\x01\x03\x00\x00\x00\x22\x00\x43\x00\x43\x00\x20\x00\ +\x4b\x00\x75\x00\x72\x00\x76\x00\x65\x00\x20\x00\x65\x00\x72\x00\ +\x7a\x00\x65\x00\x75\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x43\x43\x20\x50\ +\x61\x74\x68\x07\x00\x00\x00\x0f\x6d\x75\x73\x69\x63\x73\x74\x72\ +\x75\x63\x74\x75\x72\x65\x73\x01\x03\x00\x00\x00\x34\x00\x53\x00\ +\x70\x00\x75\x00\x72\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\ +\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x7b\x00\x7d\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\xe4\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x53\x65\x74\x20\x54\ +\x72\x61\x63\x6b\x20\x4e\x61\x6d\x65\x20\x66\x6f\x72\x20\x7b\x7d\ +\x07\x00\x00\x00\x0f\x6d\x75\x73\x69\x63\x73\x74\x72\x75\x63\x74\ +\x75\x72\x65\x73\x01\x03\x00\x00\x00\x10\x00\x53\x00\x70\x00\x75\ +\x00\x72\x00\x6e\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x54\x72\x61\x63\x6b\x20\x4e\x61\x6d\x65\x07\x00\ +\x00\x00\x0f\x6d\x75\x73\x69\x63\x73\x74\x72\x75\x63\x74\x75\x72\ +\x65\x73\x01\x03\x00\x00\x00\x3a\x00\x6c\x00\x65\x00\x65\x00\x72\ +\x00\x65\x00\x6e\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\ +\x00\x20\x00\x61\x00\x6d\x00\x20\x00\x65\x00\x6e\x00\x64\x00\x65\ +\x00\x20\x00\x65\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x61\x70\x70\x65\ +\x6e\x64\x20\x62\x6c\x6f\x63\x6b\x20\x61\x74\x20\x74\x68\x65\x20\ +\x65\x6e\x64\x07\x00\x00\x00\x0f\x6d\x75\x73\x69\x63\x73\x74\x72\ +\x75\x63\x74\x75\x72\x65\x73\x01\x03\x00\x00\x00\x2a\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x6b\x00\x20\x00\x65\x00\x72\x00\x7a\x00\x65\x00\ +\x75\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x63\x72\x65\x61\x74\x65\x20\x63\x6f\x6e\x74\x65\x6e\x74\x20\ +\x6c\x69\x6e\x6b\x07\x00\x00\x00\x0f\x6d\x75\x73\x69\x63\x73\x74\ +\x72\x75\x63\x74\x75\x72\x65\x73\x01\x03\x00\x00\x00\x1a\x00\x62\ +\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x20\x00\x6c\x00\xf6\x00\x73\ +\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x64\x65\x6c\x65\x74\x65\x20\x62\x6c\x6f\x63\x6b\x07\x00\ +\x00\x00\x0f\x6d\x75\x73\x69\x63\x73\x74\x72\x75\x63\x74\x75\x72\ +\x65\x73\x01\x03\x00\x00\x00\x16\x00\x64\x00\x75\x00\x70\x00\x6c\ +\x00\x69\x00\x7a\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x64\x75\x70\x6c\x69\x63\x61\x74\ +\x65\x07\x00\x00\x00\x0f\x6d\x75\x73\x69\x63\x73\x74\x72\x75\x63\ +\x74\x75\x72\x65\x73\x01\x03\x00\x00\x00\x20\x00\x6e\x00\x61\x00\ +\x6d\x00\x65\x00\x6e\x00\x20\x00\x62\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\x09\x65\x64\x69\x74\x20\x6e\x61\x6d\x65\x07\x00\ +\x00\x00\x0f\x6d\x75\x73\x69\x63\x73\x74\x72\x75\x63\x74\x75\x72\ +\x65\x73\x01\x03\x00\x00\x00\x30\x00\x65\x00\x69\x00\x67\x00\x65\ +\x00\x6e\x00\x73\x00\x63\x00\x68\x00\x61\x00\x66\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x00\x62\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\x0f\x65\x64\x69\x74\x20\x70\x72\x6f\x70\x65\x72\x74\x69\x65\ +\x73\x07\x00\x00\x00\x0f\x6d\x75\x73\x69\x63\x73\x74\x72\x75\x63\ +\x74\x75\x72\x65\x73\x01\x03\x00\x00\x00\x3e\x00\x6d\x00\x69\x00\ +\x74\x00\x20\x00\x6e\x00\xe4\x00\x63\x00\x68\x00\x73\x00\x74\x00\ +\x65\x00\x6e\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\ +\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x6d\x00\ +\x65\x00\x6c\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x14\x6a\x6f\x69\x6e\x20\x77\x69\x74\x68\x20\x6e\x65\x78\ +\x74\x20\x62\x6c\x6f\x63\x6b\x07\x00\x00\x00\x0f\x6d\x75\x73\x69\ +\x63\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x01\x03\x00\x00\x00\ +\x1a\x00\x6c\x00\x69\x00\x6e\x00\x6b\x00\x20\x00\x61\x00\x75\x00\ +\x66\x00\x6c\x00\xf6\x00\x73\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x75\x6e\x6c\x69\x6e\x6b\x07\x00\x00\x00\x0f\ +\x6d\x75\x73\x69\x63\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x01\ +\x03\x00\x00\x00\x10\x00\x42\x00\x61\x00\x6e\x00\x6b\x00\x20\x00\ +\x4c\x00\x53\x00\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\ +\x61\x6e\x6b\x20\x4c\x53\x42\x07\x00\x00\x00\x08\x73\x75\x62\x6d\ +\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x10\x00\x42\x00\x61\x00\x6e\ +\x00\x6b\x00\x20\x00\x4d\x00\x53\x00\x42\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x42\x61\x6e\x6b\x20\x4d\x53\x42\x07\x00\x00\x00\ +\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x0e\x00\ +\x43\x00\x68\x00\x61\x00\x6e\x00\x6e\x00\x65\x00\x6c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x43\x68\x61\x6e\x6e\x65\x6c\x07\x00\ +\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\ +\x6a\x00\x43\x00\x68\x00\x61\x00\x6e\x00\x6e\x00\x65\x00\x6c\x00\ +\x20\x00\x43\x00\x68\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x20\x00\ +\x31\x00\x2d\x00\x31\x00\x36\x00\x2e\x00\x20\x00\x5b\x00\x45\x00\ +\x6e\x00\x74\x00\x65\x00\x72\x00\x5d\x00\x20\x00\x75\x00\x6d\x00\ +\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x4b\x00\x61\x00\x6e\x00\ +\x61\x00\x6c\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x62\x00\x65\x00\ +\x6e\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x29\x43\x68\x61\x6e\x6e\x65\x6c\x20\x43\x68\x61\ +\x6e\x67\x65\x20\x31\x2d\x31\x36\x2e\x20\x5b\x65\x6e\x74\x65\x72\ +\x5d\x20\x74\x6f\x20\x75\x73\x65\x20\x76\x61\x6c\x75\x65\x07\x00\ +\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\ +\x56\x00\x49\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x76\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x61\x00\x75\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x6d\x00\x20\x00\x41\x00\x62\x00\x73\x00\x74\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x7a\x00\x77\x00\x65\x00\x69\x00\x65\x00\ +\x72\x00\x20\x00\x54\x00\xf6\x00\x6e\x00\x65\x00\x20\x00\x62\x00\ +\x61\x00\x75\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x29\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x20\x49\x6e\x74\x65\x72\ +\x76\x61\x6c\x20\x66\x72\x6f\x6d\x20\x72\x65\x6c\x61\x74\x69\x76\ +\x65\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x08\x73\ +\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x22\x00\x52\x00\ +\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x62\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\x09\x45\x64\x69\x74\x20\x47\x72\ +\x69\x64\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\ +\x03\x00\x00\x00\x10\x00\x45\x00\x69\x00\x6e\x00\x66\x00\xfc\x00\ +\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x49\ +\x6e\x73\x65\x72\x74\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\ +\x75\x73\x01\x03\x00\x00\x00\x26\x00\x50\x00\x65\x00\x64\x00\x61\ +\x00\x6c\x00\x6e\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x65\ +\x00\x69\x00\x6e\x00\x66\x00\xfc\x00\x67\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x12\x49\x6e\x73\x65\x72\x74\x20\x50\ +\x65\x64\x61\x6c\x20\x4e\x6f\x74\x65\x73\x07\x00\x00\x00\x08\x73\ +\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x26\x00\x49\x00\ +\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x65\x00\x6e\x00\x77\x00\x65\x00\x63\x00\x68\x00\x73\x00\ +\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x49\x6e\x73\ +\x74\x72\x75\x6d\x65\x6e\x74\x20\x43\x68\x61\x6e\x67\x65\x07\x00\ +\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\ +\x10\x00\x4d\x00\x65\x00\x74\x00\x61\x00\x64\x00\x61\x00\x74\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x65\x74\x61\x20\ +\x44\x61\x74\x61\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\ +\x73\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x72\x00\x6f\x00\x67\x00\ +\x72\x00\x61\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\ +\x72\x6f\x67\x72\x61\x6d\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\ +\x6e\x75\x73\x01\x03\x00\x00\x00\x10\x00\x4b\x00\x75\x00\x72\x00\ +\x7a\x00\x6e\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x53\x68\x6f\x72\x74\x20\x4e\x61\x6d\x65\x07\x00\x00\ +\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\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\x08\x73\x75\x62\x6d\x65\ +\x6e\x75\x73\x01\x03\x00\x00\x00\x1e\x00\x54\x00\x72\x00\x61\x00\ +\x6e\x00\x73\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\x00\ +\x65\x00\x20\x00\x7b\x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x20\x7b\x7d\x07\x00\x00\ +\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x38\ +\x00\x44\x00\x61\x00\x75\x00\x65\x00\x72\x00\x20\x00\x61\x00\x6c\ +\x00\x73\x00\x20\x00\x47\x00\x72\x00\x75\x00\x6e\x00\x64\x00\x6c\ +\x00\x61\x00\x67\x00\x65\x00\x20\x00\x62\x00\x65\x00\x6e\x00\x75\ +\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x55\x73\x65\x20\x64\x75\x72\x61\x74\x69\x6f\x6e\x20\x61\ +\x73\x20\x62\x61\x73\x65\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\ +\x6e\x75\x73\x01\x03\x00\x00\x00\x18\x00\x5b\x00\x31\x00\x5d\x00\ +\x20\x00\x56\x00\x69\x00\x6f\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x5b\x31\x5d\x20\x54\ +\x72\x65\x62\x6c\x65\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\ +\x75\x73\x01\x03\x00\x00\x00\x10\x00\x5b\x00\x32\x00\x5d\x00\x20\ +\x00\x42\x00\x61\x00\x73\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x5b\x32\x5d\x20\x42\x61\x73\x73\x07\x00\x00\x00\x08\x73\ +\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x20\x00\x5b\x00\ +\x33\x00\x5d\x00\x20\x00\x41\x00\x6c\x00\x74\x00\x2f\x00\x42\x00\ +\x72\x00\x61\x00\x74\x00\x73\x00\x63\x00\x68\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x5b\x33\x5d\x20\x41\x6c\x74\x6f\x07\ +\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\ +\x00\x1c\x00\x5b\x00\x34\x00\x5d\x00\x20\x00\x53\x00\x63\x00\x68\ +\x00\x6c\x00\x61\x00\x67\x00\x7a\x00\x65\x00\x75\x00\x67\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x5b\x34\x5d\x20\x44\x72\x75\x6d\ +\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\ +\x00\x00\x1e\x00\x5b\x00\x35\x00\x5d\x00\x20\x00\x56\x00\x69\x00\ +\x6f\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x5e\x00\ +\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x5b\x35\x5d\x20\x54\ +\x72\x65\x62\x6c\x65\x20\x5e\x38\x07\x00\x00\x00\x08\x73\x75\x62\ +\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x1e\x00\x5b\x00\x36\x00\ +\x5d\x00\x20\x00\x56\x00\x69\x00\x6f\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x6e\x00\x20\x00\x5f\x00\x38\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x5b\x36\x5d\x20\x54\x72\x65\x62\x6c\x65\x20\x5f\x38\ +\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\ +\x00\x00\x16\x00\x5b\x00\x37\x00\x5d\x00\x20\x00\x42\x00\x61\x00\ +\x73\x00\x73\x00\x20\x00\x5f\x00\x38\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x5b\x37\x5d\x20\x42\x61\x73\x73\x20\x5f\x38\x07\x00\ +\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\ +\x44\x00\x5b\x00\x45\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x5d\x00\ +\x20\x00\x75\x00\x6d\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\x20\x00\ +\x7a\x00\x75\x00\x20\x00\x62\x00\x65\x00\x6e\x00\x75\x00\x74\x00\ +\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x5b\ +\x65\x6e\x74\x65\x72\x5d\x20\x74\x6f\x20\x75\x73\x65\x20\x76\x61\ +\x6c\x75\x65\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\ +\x01\x03\x00\x00\x00\x2a\x00\x5b\x00\x72\x00\x5d\x00\x20\x00\x4d\ +\x00\x69\x00\x74\x00\x20\x00\x43\x00\x72\x00\x65\x00\x73\x00\x63\ +\x00\x2f\x00\x44\x00\x65\x00\x63\x00\x72\x00\x65\x00\x73\x00\x63\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5b\x72\x5d\x20\x52\x61\ +\x6d\x70\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\ +\x03\x00\x00\x00\x34\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\x6e\x00\x20\x00\x53\x00\x63\x00\x68\x00\x6c\x00\ +\xfc\x00\x73\x00\x73\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6c\x65\x66\ +\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\ +\x00\x00\x2e\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\x44\x00\x79\x00\x6e\x00\x61\x00\x6d\x00\x69\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x63\x68\x6f\x6f\x73\ +\x65\x20\x61\x20\x64\x79\x6e\x61\x6d\x69\x63\x07\x00\x00\x00\x08\ +\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x3e\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\x4d\ +\x00\x65\x00\x74\x00\x72\x00\x69\x00\x6b\x00\x61\x00\x6e\x00\x77\ +\x00\x65\x00\x69\x00\x73\x00\x75\x00\x6e\x00\x67\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1d\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\x6d\ +\x65\x74\x72\x69\x63\x61\x6c\x20\x69\x6e\x73\x74\x72\x75\x63\x74\ +\x69\x6f\x6e\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\ +\x01\x03\x00\x00\x00\x8e\x00\x57\x00\xe4\x00\x68\x00\x6c\x00\x65\ +\x00\x6e\x00\x20\x00\x53\x00\x69\x00\x65\x00\x20\x00\x53\x00\x63\ +\x00\x68\x00\x6c\x00\xe4\x00\x67\x00\x65\x00\x20\x00\x70\x00\x72\ +\x00\x6f\x00\x20\x00\x4d\x00\x69\x00\x6e\x00\x75\x00\x74\x00\x65\ +\x00\x2c\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x52\x00\x65\ +\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x7a\x00\x6e\x00\x6f\ +\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x77\x00\x69\x00\x65\ +\x00\x20\x00\x49\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x70\x00\x6f\ +\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x61\ +\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x63\x68\ +\x6f\x6f\x73\x65\x20\x75\x6e\x69\x74\x73\x20\x70\x65\x72\x20\x6d\ +\x69\x6e\x75\x74\x65\x2c\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\ +\x20\x6e\x6f\x74\x65\x2c\x20\x67\x72\x61\x70\x68\x20\x74\x79\x70\ +\x65\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\ +\x00\x00\x00\x1c\x00\x44\x00\x61\x00\x75\x00\x65\x00\x72\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x54\x00\x69\x00\x63\x00\x6b\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x64\x75\x72\x61\x74\x69\ +\x6f\x6e\x20\x69\x6e\x20\x74\x69\x63\x6b\x73\x07\x00\x00\x00\x08\ +\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x28\x00\x42\ +\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x20\x00\x23\x00\x7b\x00\x7d\ +\x00\x20\x00\x62\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\x0e\ +\x65\x64\x69\x74\x20\x62\x6c\x6f\x63\x6b\x20\x23\x7b\x7d\x07\x00\ +\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\ +\x20\x00\x4d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x69\x00\x6e\x00\x20\x00\x54\x00\x69\x00\x63\x00\x6b\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x6d\x69\x6e\x69\x6d\ +\x75\x6d\x20\x69\x6e\x20\x74\x69\x63\x6b\x73\x07\x00\x00\x00\x08\ +\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x08\x00\x4e\ +\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x6e\x61\x6d\x65\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\ +\x73\x01\x03\x00\x00\x00\x1a\x00\x44\x00\x65\x00\x63\x00\x6b\x00\ +\x6b\x00\x72\x00\x61\x00\x66\x00\x74\x00\x3a\x00\x20\x00\x7b\x00\ +\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x20\x7b\x7d\x25\x07\x00\x00\x00\x08\x73\x75\x62\x6d\ +\x65\x6e\x75\x73\x01\x03\x00\x00\x00\x3e\x00\x47\x00\x72\x00\x75\ +\x00\x6e\x00\x64\x00\x74\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x73\ +\x00\x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x43\x00\x75\ +\x00\x72\x00\x73\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x73\x00\x69\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x20\x72\x6f\x6f\x74\x20\x6e\x6f\x74\x65\x20\x69\x73\x20\x74\ +\x68\x65\x20\x63\x75\x72\x73\x6f\x72\x20\x70\x6f\x73\x69\x74\x69\ +\x6f\x6e\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\ +\x03\x00\x00\x00\x24\x00\x5a\x00\x65\x00\x72\x00\x74\x00\x65\x00\ +\x69\x00\x6c\x00\x65\x00\x20\x00\x41\x00\x6b\x00\x6b\x00\x6f\x00\ +\x72\x00\x64\x00\x20\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0e\x73\x70\x6c\x69\x74\x20\x63\x68\x6f\x72\x64\x20\x69\ +\x6e\x07\x00\x00\x00\x08\x73\x75\x62\x6d\x65\x6e\x75\x73\x01\x03\ +\x00\x00\x00\x3c\x00\x45\x00\x72\x00\x77\x00\x65\x00\x69\x00\x74\ +\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x75\ +\x00\x73\x00\x6b\x00\x6c\x00\x61\x00\x70\x00\x70\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x66\x6f\x6c\x64\x20\x61\ +\x6c\x6c\x20\x61\x64\x76\x61\x6e\x63\x65\x64\x07\x00\x00\x00\x15\ +\x74\x72\x61\x63\x6b\x45\x64\x69\x74\x6f\x72\x50\x79\x74\x68\x6f\ +\x6e\x46\x69\x6c\x65\x01\x03\x00\x00\x00\x30\x00\x41\x00\x6c\x00\ +\x6c\x00\x65\x00\x20\x00\x41\x00\x75\x00\x66\x00\x74\x00\x61\x00\ +\x6b\x00\x74\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x73\x00\ +\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x73\x65\x74\x20\x61\x6c\x6c\x20\x75\x70\x62\ +\x65\x61\x74\x73\x07\x00\x00\x00\x15\x74\x72\x61\x63\x6b\x45\x64\ +\x69\x74\x6f\x72\x50\x79\x74\x68\x6f\x6e\x46\x69\x6c\x65\x01\x03\ +\x00\x00\x00\x3c\x00\x45\x00\x72\x00\x77\x00\x65\x00\x69\x00\x74\ +\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x69\ +\x00\x6e\x00\x6b\x00\x6c\x00\x61\x00\x70\x00\x70\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x75\x6e\x66\x6f\x6c\x64\ +\x20\x61\x6c\x6c\x20\x61\x64\x76\x61\x6e\x63\x65\x64\x07\x00\x00\ +\x00\x15\x74\x72\x61\x63\x6b\x45\x64\x69\x74\x6f\x72\x50\x79\x74\ +\x68\x6f\x6e\x46\x69\x6c\x65\x01\x03\x00\x00\x00\x22\x00\x20\x00\ +\x41\x00\x75\x00\x66\x00\x74\x00\x61\x00\x6b\x00\x74\x00\x20\x00\ +\x69\x00\x6e\x00\x20\x00\x54\x00\x69\x00\x63\x00\x6b\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x20\x55\x70\x62\x65\x61\x74\ +\x20\x54\x69\x63\x6b\x73\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\ +\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\ +\x26\x00\x45\x00\x72\x00\x77\x00\x65\x00\x69\x00\x74\x00\x65\x00\ +\x72\x00\x74\x00\x65\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\ +\x08\x41\x64\x76\x61\x6e\x63\x65\x64\x07\x00\x00\x00\x10\x74\x72\ +\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\ +\x00\x00\x00\x0c\x00\x48\x00\xf6\x00\x72\x00\x62\x00\x61\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x41\x75\x64\x69\x62\x6c\ +\x65\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\ +\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x10\x00\x42\x00\x61\ +\x00\x6e\x00\x6b\x00\x20\x00\x4c\x00\x53\x00\x42\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x42\x61\x6e\x6b\x20\x4c\x53\x42\x07\x00\ +\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\ +\x67\x65\x74\x01\x03\x00\x00\x00\x10\x00\x42\x00\x61\x00\x6e\x00\ +\x6b\x00\x20\x00\x4d\x00\x53\x00\x42\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x42\x61\x6e\x6b\x20\x4d\x53\x42\x07\x00\x00\x00\x10\ +\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\ +\x01\x03\x00\x00\x00\x16\x00\x43\x00\x43\x00\x20\x00\x43\x00\x68\ +\x00\x61\x00\x6e\x00\x6e\x00\x65\x00\x6c\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x43\x20\x43\x68\x61\x6e\x6e\x65\x6c\ +\x73\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\ +\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x10\x00\x43\x00\x68\ +\x00\x61\x00\x6e\x00\x6e\x00\x65\x00\x6c\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x43\x68\x61\x6e\x6e\x65\x6c\x20\x07\x00\ +\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\ +\x67\x65\x74\x01\x03\x00\x00\x00\x16\x00\x4e\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x6c\x00\x20\x00\x45\x00\x6e\x00\x64\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x4f\x66\x66\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\ +\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x0e\x00\ +\x4c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x06\x44\x65\x6c\x65\x74\x65\x07\x00\x00\ +\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\ +\x65\x74\x01\x03\x00\x00\x00\x1a\x00\x4e\x00\x6f\x00\x72\x00\x6d\ +\x00\x61\x00\x6c\x00\x20\x00\x41\x00\x6e\x00\x66\x00\x61\x00\x6e\ +\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x65\x72\x66\ +\x61\x75\x6c\x74\x20\x4f\x6e\x07\x00\x00\x00\x10\x74\x72\x61\x63\ +\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\ +\x00\x14\x00\x44\x00\x6f\x00\x70\x00\x70\x00\x65\x00\x6c\x00\x73\ +\x00\x70\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x44\x6f\x75\x62\x6c\x65\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\ +\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\ +\x74\x01\x03\x00\x00\x00\x32\x00\x52\x00\x68\x00\x79\x00\x74\x00\ +\x68\x00\x6d\x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\ +\x56\x00\x65\x00\x72\x00\xe4\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x75\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x44\x75\x72\x61\x74\x69\x6f\x6e\x20\x4f\x66\x66\x73\ +\x65\x74\x73\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\ +\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x30\x00\x44\ +\x00\x79\x00\x6e\x00\x61\x00\x6d\x00\x69\x00\x73\x00\x63\x00\x68\ +\x00\x65\x00\x20\x00\x56\x00\x65\x00\x72\x00\xe4\x00\x6e\x00\x64\ +\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x44\x79\x6e\x61\x6d\x69\x63\x20\ +\x53\x69\x67\x6e\x61\x74\x75\x72\x65\x20\x44\x65\x66\x69\x6e\x69\ +\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\ +\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x10\ +\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x42\x00\x6f\x00\x78\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x42\ +\x6f\x78\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\ +\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x28\x00\x4e\x00\ +\x61\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\ +\x49\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x49\ +\x6e\x73\x74\x72\x75\x6d\x65\x6e\x74\x20\x4e\x61\x6d\x65\x07\x00\ +\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\ +\x67\x65\x74\x01\x03\x00\x00\x00\x16\x00\x4c\x00\x65\x00\x67\x00\ +\x61\x00\x74\x00\x6f\x00\x20\x00\x45\x00\x6e\x00\x64\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x65\x67\x61\x74\x6f\x20\ +\x4f\x66\x66\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\ +\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x1a\x00\x4c\ +\x00\x65\x00\x67\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x41\x00\x6e\ +\x00\x66\x00\x61\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x4c\x65\x67\x61\x74\x6f\x20\x4f\x6e\x07\x00\x00\x00\x10\ +\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\ +\x01\x03\x00\x00\x00\x10\x00\x50\x00\x72\x00\x6f\x00\x67\x00\x72\ +\x00\x61\x00\x6d\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x50\x72\x6f\x67\x72\x61\x6d\x20\x07\x00\x00\x00\x10\x74\x72\x61\ +\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\ +\x00\x00\x4c\x00\x52\x00\x68\x00\x79\x00\x74\x00\x68\x00\x6d\x00\ +\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x56\x00\x65\x00\ +\x72\x00\xe4\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x75\x00\x6e\x00\ +\x67\x00\x65\x00\x6e\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\ +\x63\x00\x6b\x00\x73\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x20\x52\x65\x73\x65\x74\x20\x74\ +\x6f\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x44\x75\x72\x61\x74\x69\ +\x6f\x6e\x20\x56\x61\x6c\x75\x65\x73\x07\x00\x00\x00\x10\x74\x72\ +\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\ +\x00\x00\x00\x4a\x00\x44\x00\x79\x00\x6e\x00\x61\x00\x6d\x00\x69\ +\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x56\x00\x65\x00\x72\ +\x00\xe4\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\ +\x00\x65\x00\x6e\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\ +\x00\x6b\x00\x73\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1f\x52\x65\x73\x65\x74\x20\x74\x6f\ +\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x44\x79\x6e\x61\x6d\x69\x63\ +\x20\x56\x61\x6c\x75\x65\x73\x07\x00\x00\x00\x10\x74\x72\x61\x63\ +\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\ +\x00\x36\x00\x4b\x00\x75\x00\x72\x00\x7a\x00\x65\x00\x72\x00\x20\ +\x00\x4e\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\ +\x00\x20\x00\x49\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x53\x68\x6f\x72\x74\x20\x49\x6e\x73\x74\x72\x75\x6d\x65\ +\x6e\x74\x20\x4e\x61\x6d\x65\x07\x00\x00\x00\x10\x74\x72\x61\x63\ +\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\ +\x00\x1a\x00\x53\x00\x74\x00\x61\x00\x63\x00\x63\x00\x61\x00\x74\ +\x00\x6f\x00\x20\x00\x45\x00\x6e\x00\x64\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x53\x74\x61\x63\x63\x61\x74\x6f\x20\x4f\ +\x66\x66\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\ +\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x1e\x00\x53\x00\ +\x74\x00\x61\x00\x63\x00\x63\x00\x61\x00\x74\x00\x6f\x00\x20\x00\ +\x41\x00\x6e\x00\x66\x00\x61\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x53\x74\x61\x63\x63\x61\x74\x6f\x20\x4f\x6e\ +\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\ +\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x16\x00\x54\x00\x65\x00\ +\x6e\x00\x75\x00\x74\x00\x6f\x00\x20\x00\x45\x00\x6e\x00\x64\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x54\x65\x6e\x75\x74\ +\x6f\x20\x4f\x66\x66\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\ +\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x1a\ +\x00\x54\x00\x65\x00\x6e\x00\x75\x00\x74\x00\x6f\x00\x20\x00\x41\ +\x00\x6e\x00\x66\x00\x61\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x54\x65\x6e\x75\x74\x6f\x20\x4f\x6e\x07\x00\x00\ +\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\ +\x65\x74\x01\x03\x00\x00\x00\x1c\x00\x54\x00\x72\x00\x61\x00\x6e\ +\x00\x73\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x54\x72\ +\x61\x6e\x73\x70\x6f\x73\x65\x20\x07\x00\x00\x00\x10\x74\x72\x61\ +\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\ +\x00\x00\x10\x00\x53\x00\x69\x00\x63\x00\x68\x00\x74\x00\x62\x00\ +\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x73\ +\x69\x62\x6c\x65\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\ +\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x22\x00\ +\x42\x00\x65\x00\x6e\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x72\x00\ +\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x72\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x63\x75\x73\x74\x6f\ +\x6d\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\ +\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x02\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x01\x66\x07\x00\x00\x00\x10\x74\x72\ +\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\ +\x00\x00\x00\x04\x00\x66\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x02\x66\x66\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\ +\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x06\x00\ +\x66\x00\x66\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x66\ +\x66\x66\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\ +\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x08\x00\x66\x00\ +\x66\x00\x66\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x66\ +\x66\x66\x66\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\ +\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x04\x00\x66\ +\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x66\x70\x07\x00\ +\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\ +\x67\x65\x74\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x66\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x02\x6d\x66\x07\x00\x00\x00\x10\x74\x72\ +\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\ +\x00\x00\x00\x04\x00\x6d\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x02\x6d\x70\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\ +\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x02\x00\ +\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x70\x07\x00\x00\x00\ +\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\ +\x74\x01\x03\x00\x00\x00\x04\x00\x70\x00\x70\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x02\x70\x70\x07\x00\x00\x00\x10\x74\x72\x61\x63\ +\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\ +\x00\x06\x00\x70\x00\x70\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x03\x70\x70\x70\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\ +\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x08\ +\x00\x70\x00\x70\x00\x70\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x70\x70\x70\x70\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\ +\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\ +\x0a\x00\x70\x00\x70\x00\x70\x00\x70\x00\x70\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x70\x70\x70\x70\x70\x07\x00\x00\x00\x10\x74\ +\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\ +\x03\x00\x00\x00\x04\x00\x73\x00\x66\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x02\x73\x66\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\ +\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x06\ +\x00\x73\x00\x66\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\ +\x73\x66\x66\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\ +\x75\x70\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x06\x00\x73\ +\x00\x66\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x73\x66\ +\x7a\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\ +\x57\x69\x64\x67\x65\x74\x01\x03\x00\x00\x00\x04\x00\x73\x00\x70\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x73\x70\x07\x00\x00\x00\ +\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\ +\x74\x01\x03\x00\x00\x00\x06\x00\x73\x00\x70\x00\x70\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x03\x73\x70\x70\x07\x00\x00\x00\x10\x74\ +\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\x67\x65\x74\x01\ +\x03\x00\x00\x00\x0a\x00\x74\x00\x61\x00\x63\x00\x65\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x74\x61\x63\x65\x74\x07\x00\ +\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\x69\x64\ +\x67\x65\x74\x01\x03\x00\x00\x00\x04\xd8\x34\xdd\x60\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\xc3\xb0\xc2\x9d\xc2\x85\xc2\xa0\x20\ +\x07\x00\x00\x00\x10\x74\x72\x61\x63\x6b\x47\x72\x6f\x75\x70\x57\ +\x69\x64\x67\x65\x74\x01\x88\x00\x00\x00\x02\x01\x01\ " qt_resource_name = b"\ -\x00\x0d\ -\x0b\x0f\xc0\xa7\ -\x00\x61\ -\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x0d\xfc\x11\x13\ \x00\x74\ \x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x00\x0d\ +\x0b\x0f\xc0\xa7\ +\x00\x61\ +\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x03\ \x00\x00\x7a\xc7\ \x00\x73\ \x00\x76\x00\x67\ \x00\x0b\ -\x0a\xb8\x4e\xa7\ -\x00\x66\ -\x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0a\ -\x07\x46\x43\x87\ -\x00\x72\ -\x00\x65\x00\x73\x00\x74\x00\x31\x00\x36\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x0a\xb8\x4e\xa7\ +\x00\x66\ +\x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0a\x68\xfe\x27\ \x00\x66\ \x00\x6c\x00\x61\x00\x67\x00\x33\x00\x32\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0e\ +\x04\x57\x75\x67\ +\x00\x72\ +\x00\x65\x00\x73\x00\x74\x00\x42\x00\x72\x00\x65\x00\x76\x00\x69\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x13\ +\x07\xc3\x92\x27\ +\x00\x6e\ +\x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x42\x00\x72\x00\x65\x00\x76\x00\x69\x00\x73\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x09\ +\x07\xab\x80\x87\ +\x00\x66\ +\x00\x6c\x00\x61\x00\x67\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0b\ +\x04\x81\x15\x87\ +\x00\x66\ +\x00\x6c\x00\x61\x00\x67\x00\x31\x00\x32\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0b\ +\x04\x12\x15\x87\ +\x00\x66\ +\x00\x6c\x00\x61\x00\x67\x00\x31\x00\x36\x00\x69\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x11\ +\x0c\x93\x9f\xe7\ +\x00\x6e\ +\x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x48\x00\x61\x00\x6c\x00\x66\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ \x00\x12\ \x0f\x80\xf3\x87\ \x00\x6e\ \x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x4c\x00\x6f\x00\x6e\x00\x67\x00\x61\x00\x2e\x00\x73\x00\x76\ \x00\x67\ -\x00\x09\ -\x0a\x74\xab\x47\ -\x00\x72\ -\x00\x65\x00\x73\x00\x74\x00\x31\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0d\ -\x05\x49\x7d\x67\ -\x00\x72\ -\x00\x65\x00\x73\x00\x74\x00\x4c\x00\x6f\x00\x6e\x00\x67\x00\x61\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x12\ -\x0f\xfe\x22\x67\ -\x00\x63\ -\x00\x6c\x00\x65\x00\x66\x00\x50\x00\x65\x00\x72\x00\x63\x00\x75\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ -\x00\x0c\ -\x05\xe3\x2f\xc7\ -\x00\x63\ -\x00\x6c\x00\x65\x00\x66\x00\x42\x00\x61\x00\x73\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x13\ -\x07\xa8\xdf\x47\ -\x00\x61\ -\x00\x63\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x46\x00\x6c\x00\x61\x00\x74\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ \x00\x0c\ \x0e\xf7\x2f\xc7\ \x00\x63\ \x00\x6c\x00\x65\x00\x66\x00\x41\x00\x6c\x00\x74\x00\x6f\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0e\ -\x09\x62\x35\x27\ +\x00\x09\ +\x0a\x74\xab\x47\ \x00\x72\ -\x00\x65\x00\x73\x00\x74\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x61\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x65\x00\x73\x00\x74\x00\x31\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0b\ -\x04\x81\x15\x87\ -\x00\x66\ -\x00\x6c\x00\x61\x00\x67\x00\x31\x00\x32\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0a\ -\x07\x98\x43\x87\ -\x00\x72\ -\x00\x65\x00\x73\x00\x74\x00\x36\x00\x34\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x0c\x81\xdd\xc7\ +\x00\x6e\ +\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x16\ \x00\xd4\xe8\xa7\ \x00\x61\ \x00\x63\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x4e\x00\x61\x00\x74\x00\x75\x00\x72\x00\x61\ \x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x12\ -\x0c\x32\x07\x07\ -\x00\x6e\ -\x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x42\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ -\x00\x0b\ -\x0c\x81\xdd\xc7\ -\x00\x6e\ -\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x09\ -\x0a\x7b\xab\x47\ -\x00\x72\ -\x00\x65\x00\x73\x00\x74\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0e\ -\x04\x57\x75\x67\ -\x00\x72\ -\x00\x65\x00\x73\x00\x74\x00\x42\x00\x72\x00\x65\x00\x76\x00\x69\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x10\ -\x0c\x70\xa2\x67\ -\x00\x63\ -\x00\x6c\x00\x65\x00\x66\x00\x54\x00\x72\x00\x65\x00\x62\x00\x6c\x00\x65\x00\x5e\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x13\ \x0f\x42\xb4\xc7\ \x00\x73\ \x00\x63\x00\x72\x00\x69\x00\x70\x00\x74\x00\x73\x00\x53\x00\x74\x00\x61\x00\x63\x00\x63\x00\x61\x00\x74\x00\x6f\x00\x2e\x00\x73\ \x00\x76\x00\x67\ -\x00\x13\ -\x07\xc3\x92\x27\ -\x00\x6e\ -\x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x42\x00\x72\x00\x65\x00\x76\x00\x69\x00\x73\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ \x00\x10\ -\x0c\x40\xa2\x67\ +\x0c\x70\xa2\x67\ \x00\x63\ -\x00\x6c\x00\x65\x00\x66\x00\x54\x00\x72\x00\x65\x00\x62\x00\x6c\x00\x65\x00\x5f\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0e\ -\x0c\x5e\x51\x07\ +\x00\x6c\x00\x65\x00\x66\x00\x54\x00\x72\x00\x65\x00\x62\x00\x6c\x00\x65\x00\x5e\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x12\ +\x0c\x32\x07\x07\ +\x00\x6e\ +\x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x42\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x12\ +\x0f\xfe\x22\x67\ \x00\x63\ -\x00\x6c\x00\x65\x00\x66\x00\x42\x00\x61\x00\x73\x00\x73\x00\x5f\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0b\ -\x04\xaa\xce\x27\ +\x00\x6c\x00\x65\x00\x66\x00\x50\x00\x65\x00\x72\x00\x63\x00\x75\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x0a\ +\x07\x46\x43\x87\ \x00\x72\ -\x00\x65\x00\x73\x00\x74\x00\x31\x00\x32\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x09\ -\x07\xab\x80\x87\ -\x00\x66\ -\x00\x6c\x00\x61\x00\x67\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x13\ -\x06\xfa\xd2\x67\ -\x00\x6e\ -\x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x61\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ -\x00\x0b\ -\x06\x52\x15\x87\ -\x00\x66\ -\x00\x6c\x00\x61\x00\x67\x00\x33\x00\x32\x00\x69\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x11\ -\x0c\x93\x9f\xe7\ +\x00\x65\x00\x73\x00\x74\x00\x31\x00\x36\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x12\ +\x01\x8d\xee\x47\ \x00\x6e\ -\x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x48\x00\x61\x00\x6c\x00\x66\x00\x2e\x00\x73\x00\x76\x00\x67\ -\ -\x00\x0a\ -\x0a\x44\xfe\x27\ -\x00\x66\ -\x00\x6c\x00\x61\x00\x67\x00\x31\x00\x36\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x57\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x17\ +\x07\x08\x14\x67\ +\x00\x61\ +\x00\x63\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x46\x00\x6c\x00\x61\x00\x74\x00\x46\x00\x6c\ +\x00\x61\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x09\ -\x0a\x75\xab\x47\ +\x0a\x7b\xab\x47\ \x00\x72\ -\x00\x65\x00\x73\x00\x74\x00\x32\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x1a\ -\x0a\x46\x61\xe7\ -\x00\x61\ -\x00\x63\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x44\x00\x6f\x00\x75\x00\x62\x00\x6c\x00\x65\ -\x00\x73\x00\x68\x00\x61\x00\x72\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0a\ -\x0a\x9a\xfe\x27\ -\x00\x66\ -\x00\x6c\x00\x61\x00\x67\x00\x36\x00\x34\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0b\ -\x09\x72\x15\x87\ -\x00\x66\ -\x00\x6c\x00\x61\x00\x67\x00\x36\x00\x34\x00\x69\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x65\x00\x73\x00\x74\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x07\ \x0b\x67\x5a\x07\ \x00\x64\ @@ -7097,41 +8635,90 @@ qt_resource_name = b"\ \x0a\xe9\xfe\x27\ \x00\x66\ \x00\x6c\x00\x61\x00\x67\x00\x38\x00\x69\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0a\ -\x07\x6a\x43\x87\ +\x00\x09\ +\x0a\x75\xab\x47\ \x00\x72\ -\x00\x65\x00\x73\x00\x74\x00\x33\x00\x32\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x17\ -\x07\x08\x14\x67\ -\x00\x61\ -\x00\x63\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x46\x00\x6c\x00\x61\x00\x74\x00\x46\x00\x6c\ -\x00\x61\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x65\x00\x73\x00\x74\x00\x32\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0a\ +\x0a\x9a\xfe\x27\ +\x00\x66\ +\x00\x6c\x00\x61\x00\x67\x00\x36\x00\x34\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0c\ +\x05\xe3\x2f\xc7\ +\x00\x63\ +\x00\x6c\x00\x65\x00\x66\x00\x42\x00\x61\x00\x73\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x09\ \x0a\x77\xab\x47\ \x00\x72\ \x00\x65\x00\x73\x00\x74\x00\x34\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x14\ -\x0a\x6a\xeb\xa7\ -\x00\x61\ -\x00\x63\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x53\x00\x68\x00\x61\x00\x72\x00\x70\x00\x2e\ -\x00\x73\x00\x76\x00\x67\ +\x00\x0b\ +\x09\x72\x15\x87\ +\x00\x66\ +\x00\x6c\x00\x61\x00\x67\x00\x36\x00\x34\x00\x69\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0b\ +\x04\xaa\xce\x27\ +\x00\x72\ +\x00\x65\x00\x73\x00\x74\x00\x31\x00\x32\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0c\ \x09\x61\xe9\x27\ \x00\x62\ \x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x45\x00\x6e\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0e\ +\x09\x62\x35\x27\ +\x00\x72\ +\x00\x65\x00\x73\x00\x74\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x61\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0a\ +\x07\x98\x43\x87\ +\x00\x72\ +\x00\x65\x00\x73\x00\x74\x00\x36\x00\x34\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0b\ +\x06\x52\x15\x87\ +\x00\x66\ +\x00\x6c\x00\x61\x00\x67\x00\x33\x00\x32\x00\x69\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0a\ +\x0a\x44\xfe\x27\ +\x00\x66\ +\x00\x6c\x00\x61\x00\x67\x00\x31\x00\x36\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0c\ \x08\x50\xae\x47\ \x00\x66\ \x00\x6c\x00\x61\x00\x67\x00\x31\x00\x32\x00\x38\x00\x69\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0b\ -\x04\x12\x15\x87\ -\x00\x66\ -\x00\x6c\x00\x61\x00\x67\x00\x31\x00\x36\x00\x69\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x12\ -\x01\x8d\xee\x47\ +\x00\x13\ +\x06\xfa\xd2\x67\ \x00\x6e\ -\x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x57\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ +\x00\x6f\x00\x74\x00\x65\x00\x68\x00\x65\x00\x61\x00\x64\x00\x73\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x61\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x0d\ +\x05\x49\x7d\x67\ +\x00\x72\ +\x00\x65\x00\x73\x00\x74\x00\x4c\x00\x6f\x00\x6e\x00\x67\x00\x61\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x14\ +\x0a\x6a\xeb\xa7\ +\x00\x61\ +\x00\x63\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x53\x00\x68\x00\x61\x00\x72\x00\x70\x00\x2e\ +\x00\x73\x00\x76\x00\x67\ +\x00\x0a\ +\x07\x6a\x43\x87\ +\x00\x72\ +\x00\x65\x00\x73\x00\x74\x00\x33\x00\x32\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x10\ +\x0c\x40\xa2\x67\ +\x00\x63\ +\x00\x6c\x00\x65\x00\x66\x00\x54\x00\x72\x00\x65\x00\x62\x00\x6c\x00\x65\x00\x5f\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0e\ +\x0c\x5e\x51\x07\ +\x00\x63\ +\x00\x6c\x00\x65\x00\x66\x00\x42\x00\x61\x00\x73\x00\x73\x00\x5f\x00\x38\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x13\ +\x07\xa8\xdf\x47\ +\x00\x61\ +\x00\x63\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x46\x00\x6c\x00\x61\x00\x74\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x1a\ +\x0a\x46\x61\xe7\ +\x00\x61\ +\x00\x63\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x44\x00\x6f\x00\x75\x00\x62\x00\x6c\x00\x65\ +\x00\x73\x00\x68\x00\x61\x00\x72\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0e\ \x0c\x53\x31\x27\ \x00\x63\ @@ -7146,52 +8733,52 @@ qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x01\ \x00\x00\x00\x3e\x00\x02\x00\x00\x00\x2b\x00\x00\x00\x06\ \x00\x00\x00\x4a\x00\x00\x00\x00\x00\x01\x00\x00\x1f\xad\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\x20\x00\x02\x00\x00\x00\x01\x00\x00\x00\x05\ +\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x05\ \x00\x00\x06\x0a\x00\x00\x00\x00\x00\x01\x00\x01\xa8\x89\ -\x00\x00\x01\xe6\x00\x00\x00\x00\x00\x01\x00\x00\x80\x5a\ -\x00\x00\x05\xbe\x00\x00\x00\x00\x00\x01\x00\x01\x93\x64\ -\x00\x00\x05\xa2\x00\x00\x00\x00\x00\x01\x00\x01\x8b\x15\ -\x00\x00\x02\x76\x00\x00\x00\x00\x00\x01\x00\x00\xb7\x02\ -\x00\x00\x01\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x6e\x77\ -\x00\x00\x03\x5e\x00\x00\x00\x00\x00\x01\x00\x00\xf8\x21\ -\x00\x00\x00\xdc\x00\x00\x00\x00\x00\x01\x00\x00\x40\x8f\ -\x00\x00\x01\x26\x00\x00\x00\x00\x00\x01\x00\x00\x4e\x42\ -\x00\x00\x03\xbe\x00\x00\x00\x00\x00\x01\x00\x01\x0c\x9d\ -\x00\x00\x03\x92\x00\x00\x00\x00\x00\x01\x00\x01\x03\x9c\ -\x00\x00\x04\xec\x00\x00\x00\x00\x00\x01\x00\x01\x5b\xf2\ +\x00\x00\x01\xc2\x00\x00\x00\x00\x00\x01\x00\x00\x91\x75\ +\x00\x00\x02\xb4\x00\x00\x00\x00\x00\x01\x00\x00\xc1\x8e\ +\x00\x00\x01\x02\x00\x00\x00\x00\x00\x01\x00\x00\x45\x96\ +\x00\x00\x00\x80\x00\x00\x00\x00\x00\x01\x00\x00\x27\xd5\ +\x00\x00\x00\xe6\x00\x00\x00\x00\x00\x01\x00\x00\x3a\xaa\ +\x00\x00\x03\xdc\x00\x00\x00\x00\x00\x01\x00\x01\x14\xd5\ +\x00\x00\x04\xd2\x00\x00\x00\x00\x00\x01\x00\x01\x5b\xba\ +\x00\x00\x03\x8a\x00\x00\x00\x00\x00\x01\x00\x00\xf7\xd9\ +\x00\x00\x04\x52\x00\x00\x00\x00\x00\x01\x00\x01\x37\x1b\ +\x00\x00\x04\xa6\x00\x00\x00\x00\x00\x01\x00\x01\x52\xb9\ +\x00\x00\x02\xde\x00\x00\x00\x00\x00\x01\x00\x00\xca\x28\ +\x00\x00\x02\x9a\x00\x00\x00\x00\x00\x01\x00\x00\xb8\xf4\ +\x00\x00\x05\x20\x00\x00\x00\x00\x00\x01\x00\x01\x68\x99\ +\x00\x00\x04\x38\x00\x00\x00\x00\x00\x01\x00\x01\x30\x24\ +\x00\x00\x05\x82\x00\x00\x00\x00\x00\x01\x00\x01\x8c\xcc\ +\x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x36\xb5\ +\x00\x00\x00\xa2\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x34\ +\x00\x00\x04\x88\x00\x00\x00\x00\x00\x01\x00\x01\x48\x04\ +\x00\x00\x03\xf8\x00\x00\x00\x00\x00\x01\x00\x01\x1c\x5b\ +\x00\x00\x04\x16\x00\x00\x00\x00\x00\x01\x00\x01\x29\xc6\ +\x00\x00\x03\xc0\x00\x00\x00\x00\x00\x01\x00\x01\x0a\xaa\ +\x00\x00\x04\x6e\x00\x00\x00\x00\x00\x01\x00\x01\x40\x6f\ +\x00\x00\x05\xae\x00\x00\x00\x00\x00\x01\x00\x01\x92\x23\ \x00\x00\x00\x66\x00\x00\x00\x00\x00\x01\x00\x00\x22\x53\ -\x00\x00\x04\xd2\x00\x00\x00\x00\x00\x01\x00\x01\x55\xe2\ -\x00\x00\x01\xcc\x00\x00\x00\x00\x00\x01\x00\x00\x79\x63\ -\x00\x00\x01\x44\x00\x00\x00\x00\x00\x01\x00\x00\x57\xc1\ -\x00\x00\x03\x7a\x00\x00\x00\x00\x00\x01\x00\x00\xff\xa7\ -\x00\x00\x02\xea\x00\x00\x00\x00\x00\x01\x00\x00\xd1\x7d\ -\x00\x00\x05\x84\x00\x00\x00\x00\x00\x01\x00\x01\x80\x60\ -\x00\x00\x05\x66\x00\x00\x00\x00\x00\x01\x00\x01\x72\xf5\ -\x00\x00\x01\x8e\x00\x00\x00\x00\x00\x01\x00\x00\x68\x19\ -\x00\x00\x04\x88\x00\x00\x00\x00\x00\x01\x00\x01\x3d\x8d\ -\x00\x00\x04\x02\x00\x00\x00\x00\x00\x01\x00\x01\x1b\x47\ -\x00\x00\x04\x34\x00\x00\x00\x00\x00\x01\x00\x01\x29\xba\ -\x00\x00\x00\x80\x00\x00\x00\x00\x00\x01\x00\x00\x2a\xed\ -\x00\x00\x05\x38\x00\x00\x00\x00\x00\x01\x00\x01\x6c\x5a\ -\x00\x00\x00\xc4\x00\x00\x00\x00\x00\x01\x00\x00\x39\xa6\ -\x00\x00\x04\x1c\x00\x00\x00\x00\x00\x01\x00\x01\x22\xdc\ -\x00\x00\x05\x20\x00\x00\x00\x00\x00\x01\x00\x01\x63\x08\ -\x00\x00\x02\x5e\x00\x00\x00\x00\x00\x01\x00\x00\xaf\x67\ -\x00\x00\x04\x6e\x00\x00\x00\x00\x00\x01\x00\x01\x33\x95\ -\x00\x00\x04\xb8\x00\x00\x00\x00\x00\x01\x00\x01\x4e\x83\ -\x00\x00\x04\xa4\x00\x00\x00\x00\x00\x01\x00\x01\x47\xb8\ -\x00\x00\x02\x18\x00\x00\x00\x00\x00\x01\x00\x00\x85\x2c\ -\x00\x00\x03\x16\x00\x00\x00\x00\x00\x01\x00\x00\xd9\xfe\ +\x00\x00\x04\xf2\x00\x00\x00\x00\x00\x01\x00\x01\x61\xfe\ +\x00\x00\x01\x8e\x00\x00\x00\x00\x00\x01\x00\x00\x67\x73\ +\x00\x00\x03\x58\x00\x00\x00\x00\x00\x01\x00\x00\xe7\x03\ +\x00\x00\x03\xa8\x00\x00\x00\x00\x00\x01\x00\x01\x01\x58\ +\x00\x00\x03\x12\x00\x00\x00\x00\x00\x01\x00\x00\xd1\x3e\ +\x00\x00\x03\x70\x00\x00\x00\x00\x00\x01\x00\x00\xed\xe1\ +\x00\x00\x03\x3e\x00\x00\x00\x00\x00\x01\x00\x00\xdf\xa4\ +\x00\x00\x03\x2a\x00\x00\x00\x00\x00\x01\x00\x00\xd8\xd9\ +\x00\x00\x02\x46\x00\x00\x00\x00\x00\x01\x00\x00\xaa\x63\ +\x00\x00\x05\x3a\x00\x00\x00\x00\x00\x01\x00\x01\x6e\xa9\ \x00\x00\x05\xe8\x00\x00\x00\x00\x00\x01\x00\x01\x9b\xfe\ -\x00\x00\x03\x3c\x00\x00\x00\x00\x00\x01\x00\x00\xea\x85\ -\x00\x00\x02\x98\x00\x00\x00\x00\x00\x01\x00\x00\xbd\x61\ -\x00\x00\x02\x42\x00\x00\x00\x00\x00\x01\x00\x00\x8c\x4e\ -\x00\x00\x03\xda\x00\x00\x00\x00\x00\x01\x00\x01\x15\xf1\ -\x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x00\x5d\x18\ -\x00\x00\x02\xbe\x00\x00\x00\x00\x00\x01\x00\x00\xcd\xea\ -\x00\x00\x00\x9a\x00\x00\x00\x00\x00\x01\x00\x00\x30\x6f\ -\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x46\xd3\ +\x00\x00\x05\x60\x00\x00\x00\x00\x00\x01\x00\x01\x7f\x30\ +\x00\x00\x02\x20\x00\x00\x00\x00\x00\x01\x00\x00\x99\xda\ +\x00\x00\x01\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x6e\x5c\ +\x00\x00\x01\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x4d\xe5\ +\x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x00\x5c\x72\ +\x00\x00\x01\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x96\x47\ +\x00\x00\x01\x46\x00\x00\x00\x00\x00\x01\x00\x00\x53\x3b\ +\x00\x00\x02\x70\x00\x00\x00\x00\x00\x01\x00\x00\xb1\x85\ " qt_resource_struct_v2 = b"\ @@ -7201,97 +8788,97 @@ qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x4a\x00\x00\x00\x00\x00\x01\x00\x00\x1f\xad\ \x00\x00\x01\x6d\x7e\x8f\x3a\x76\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x6d\x7e\x8e\xfd\x80\ -\x00\x00\x00\x20\x00\x02\x00\x00\x00\x01\x00\x00\x00\x05\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x05\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x06\x0a\x00\x00\x00\x00\x00\x01\x00\x01\xa8\x89\ -\x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x01\xe6\x00\x00\x00\x00\x00\x01\x00\x00\x80\x5a\ +\x00\x00\x01\x6e\xe2\x78\xbf\x5b\ +\x00\x00\x01\xc2\x00\x00\x00\x00\x00\x01\x00\x00\x91\x75\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x05\xbe\x00\x00\x00\x00\x00\x01\x00\x01\x93\x64\ +\x00\x00\x02\xb4\x00\x00\x00\x00\x00\x01\x00\x00\xc1\x8e\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x05\xa2\x00\x00\x00\x00\x00\x01\x00\x01\x8b\x15\ +\x00\x00\x01\x02\x00\x00\x00\x00\x00\x01\x00\x00\x45\x96\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x02\x76\x00\x00\x00\x00\x00\x01\x00\x00\xb7\x02\ +\x00\x00\x00\x80\x00\x00\x00\x00\x00\x01\x00\x00\x27\xd5\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x01\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x6e\x77\ +\x00\x00\x00\xe6\x00\x00\x00\x00\x00\x01\x00\x00\x3a\xaa\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x03\x5e\x00\x00\x00\x00\x00\x01\x00\x00\xf8\x21\ +\x00\x00\x03\xdc\x00\x00\x00\x00\x00\x01\x00\x01\x14\xd5\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x00\xdc\x00\x00\x00\x00\x00\x01\x00\x00\x40\x8f\ +\x00\x00\x04\xd2\x00\x00\x00\x00\x00\x01\x00\x01\x5b\xba\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x01\x26\x00\x00\x00\x00\x00\x01\x00\x00\x4e\x42\ +\x00\x00\x03\x8a\x00\x00\x00\x00\x00\x01\x00\x00\xf7\xd9\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x03\xbe\x00\x00\x00\x00\x00\x01\x00\x01\x0c\x9d\ +\x00\x00\x04\x52\x00\x00\x00\x00\x00\x01\x00\x01\x37\x1b\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x03\x92\x00\x00\x00\x00\x00\x01\x00\x01\x03\x9c\ +\x00\x00\x04\xa6\x00\x00\x00\x00\x00\x01\x00\x01\x52\xb9\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x04\xec\x00\x00\x00\x00\x00\x01\x00\x01\x5b\xf2\ +\x00\x00\x02\xde\x00\x00\x00\x00\x00\x01\x00\x00\xca\x28\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x00\x66\x00\x00\x00\x00\x00\x01\x00\x00\x22\x53\ +\x00\x00\x02\x9a\x00\x00\x00\x00\x00\x01\x00\x00\xb8\xf4\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x04\xd2\x00\x00\x00\x00\x00\x01\x00\x01\x55\xe2\ +\x00\x00\x05\x20\x00\x00\x00\x00\x00\x01\x00\x01\x68\x99\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x01\xcc\x00\x00\x00\x00\x00\x01\x00\x00\x79\x63\ +\x00\x00\x04\x38\x00\x00\x00\x00\x00\x01\x00\x01\x30\x24\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x01\x44\x00\x00\x00\x00\x00\x01\x00\x00\x57\xc1\ +\x00\x00\x05\x82\x00\x00\x00\x00\x00\x01\x00\x01\x8c\xcc\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x03\x7a\x00\x00\x00\x00\x00\x01\x00\x00\xff\xa7\ +\x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x36\xb5\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x02\xea\x00\x00\x00\x00\x00\x01\x00\x00\xd1\x7d\ +\x00\x00\x00\xa2\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x34\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x05\x84\x00\x00\x00\x00\x00\x01\x00\x01\x80\x60\ +\x00\x00\x04\x88\x00\x00\x00\x00\x00\x01\x00\x01\x48\x04\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x05\x66\x00\x00\x00\x00\x00\x01\x00\x01\x72\xf5\ +\x00\x00\x03\xf8\x00\x00\x00\x00\x00\x01\x00\x01\x1c\x5b\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x01\x8e\x00\x00\x00\x00\x00\x01\x00\x00\x68\x19\ +\x00\x00\x04\x16\x00\x00\x00\x00\x00\x01\x00\x01\x29\xc6\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x04\x88\x00\x00\x00\x00\x00\x01\x00\x01\x3d\x8d\ +\x00\x00\x03\xc0\x00\x00\x00\x00\x00\x01\x00\x01\x0a\xaa\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x04\x02\x00\x00\x00\x00\x00\x01\x00\x01\x1b\x47\ +\x00\x00\x04\x6e\x00\x00\x00\x00\x00\x01\x00\x01\x40\x6f\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x04\x34\x00\x00\x00\x00\x00\x01\x00\x01\x29\xba\ +\x00\x00\x05\xae\x00\x00\x00\x00\x00\x01\x00\x01\x92\x23\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x00\x80\x00\x00\x00\x00\x00\x01\x00\x00\x2a\xed\ +\x00\x00\x00\x66\x00\x00\x00\x00\x00\x01\x00\x00\x22\x53\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x05\x38\x00\x00\x00\x00\x00\x01\x00\x01\x6c\x5a\ +\x00\x00\x04\xf2\x00\x00\x00\x00\x00\x01\x00\x01\x61\xfe\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x00\xc4\x00\x00\x00\x00\x00\x01\x00\x00\x39\xa6\ +\x00\x00\x01\x8e\x00\x00\x00\x00\x00\x01\x00\x00\x67\x73\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x04\x1c\x00\x00\x00\x00\x00\x01\x00\x01\x22\xdc\ +\x00\x00\x03\x58\x00\x00\x00\x00\x00\x01\x00\x00\xe7\x03\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x05\x20\x00\x00\x00\x00\x00\x01\x00\x01\x63\x08\ +\x00\x00\x03\xa8\x00\x00\x00\x00\x00\x01\x00\x01\x01\x58\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x02\x5e\x00\x00\x00\x00\x00\x01\x00\x00\xaf\x67\ +\x00\x00\x03\x12\x00\x00\x00\x00\x00\x01\x00\x00\xd1\x3e\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x04\x6e\x00\x00\x00\x00\x00\x01\x00\x01\x33\x95\ +\x00\x00\x03\x70\x00\x00\x00\x00\x00\x01\x00\x00\xed\xe1\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x04\xb8\x00\x00\x00\x00\x00\x01\x00\x01\x4e\x83\ +\x00\x00\x03\x3e\x00\x00\x00\x00\x00\x01\x00\x00\xdf\xa4\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x04\xa4\x00\x00\x00\x00\x00\x01\x00\x01\x47\xb8\ +\x00\x00\x03\x2a\x00\x00\x00\x00\x00\x01\x00\x00\xd8\xd9\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x02\x18\x00\x00\x00\x00\x00\x01\x00\x00\x85\x2c\ +\x00\x00\x02\x46\x00\x00\x00\x00\x00\x01\x00\x00\xaa\x63\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x03\x16\x00\x00\x00\x00\x00\x01\x00\x00\xd9\xfe\ +\x00\x00\x05\x3a\x00\x00\x00\x00\x00\x01\x00\x01\x6e\xa9\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ \x00\x00\x05\xe8\x00\x00\x00\x00\x00\x01\x00\x01\x9b\xfe\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x03\x3c\x00\x00\x00\x00\x00\x01\x00\x00\xea\x85\ +\x00\x00\x05\x60\x00\x00\x00\x00\x00\x01\x00\x01\x7f\x30\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x02\x98\x00\x00\x00\x00\x00\x01\x00\x00\xbd\x61\ +\x00\x00\x02\x20\x00\x00\x00\x00\x00\x01\x00\x00\x99\xda\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x02\x42\x00\x00\x00\x00\x00\x01\x00\x00\x8c\x4e\ +\x00\x00\x01\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x6e\x5c\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x03\xda\x00\x00\x00\x00\x00\x01\x00\x01\x15\xf1\ +\x00\x00\x01\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x4d\xe5\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x00\x5d\x18\ +\x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x00\x5c\x72\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ -\x00\x00\x02\xbe\x00\x00\x00\x00\x00\x01\x00\x00\xcd\xea\ +\x00\x00\x01\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x96\x47\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x00\x9a\x00\x00\x00\x00\x00\x01\x00\x00\x30\x6f\ +\x00\x00\x01\x46\x00\x00\x00\x00\x00\x01\x00\x00\x53\x3b\ \x00\x00\x01\x6a\x84\x2e\xbd\x1d\ -\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x46\xd3\ +\x00\x00\x02\x70\x00\x00\x00\x00\x00\x01\x00\x00\xb1\x85\ \x00\x00\x01\x6a\x84\x2e\xbd\x19\ " diff --git a/qtgui/resources/translations/config.pro b/qtgui/resources/translations/config.pro index 3eb110d..d339ebd 100644 --- a/qtgui/resources/translations/config.pro +++ b/qtgui/resources/translations/config.pro @@ -1,2 +1,2 @@ -SOURCES = ../../mainwindow.py ../../designer/mainwindow.py +SOURCES = ../../mainwindow.py ../../designer/mainwindow.py ../../submenus.py ../../musicstructures.py ../../menu.py ../../items.py ../../graphs.py ../../conductor.py ../../trackEditor.py ../../designer/trackWidget.py TRANSLATIONS = de.ts diff --git a/qtgui/resources/translations/de.qm b/qtgui/resources/translations/de.qm index e629db0eabfbc7da5924049b307e36fa20b9f606..df0f08b31ebed278b57c0b8259644801ef9586d5 100644 GIT binary patch literal 25822 zcmbt+4S3vDneR#SH8aU1p-n$1ZTVBm5ZWd!rBo=Tk|rrFP1@3=Ef|aZGxJX}?PO-0 zkCqg4_k!FDi}0`txIBQnu8Ka&a$R)2yNe>9yDH$yRaRLP_O7_HB!T7h^Z!^;*1Mg4g@;%JFaE^)97G{|8?GLa7gK zRqC=Ql{)7eN@Y0zw@MwuxY1QgP2=y_#` zTQz3hQ0l@Hs_~ZpuGH4wtHuXTD79mrYJ3u(-~V0J^bFv9;B?iz<9wxdU#*%o{Cz6% zK(QB7Cb+Y8moS8DLj)bZ&jL61+VPkapDpL0Nc+X3O z>zw&g-GlqyR%-SBy05e64xMzX-f8*+1{=fAV>(*EH`(KgGDya`o*OLk1Rn zqyE(I0RQ!;*IUp1N~w)^)^Aw=KAeAh{l}U?mksCD-&?!^c)eEt^AXVH;-&SkZhcs( z;X4{OdD(LfC!^4xe zDb@13hUZ?t6>_qs;k9o;K9{vMHr@;Tw*R-ri`RWysh!U^?uujG^M2nrwC?wi(dCWh zzl4l$u^T^rLZ6;$K5;9)-?_B;jq9NwyOuKz7g`cEb`DZFF+r+M!tH(8%hm)HuANPE>dd$uE^iN1$-{Q zEAq(Z6WI5Ck!PMh3vza43h0%i>w&Hs`de!xRjCFq; z9s8rrz~_nR*bDoy@28`gp_`N%c_@1QZQ#qgyP_Ze@ZW%sh3H*xJPSSi=ja!{qm9Ti1hlJ<&40=Eq8%^=Qknm!1M&KHKug$zgon(sFwNbhzkn%Ux%` z0eb#v%R^86736Gr%eRM~1Yi4FUjE68nE$2Lx=-y^s^hxWGyBhkU0KxH^~LkC{|@`Kwj1}rpY6M??Vjzo zfMe~z-$Zk1CdyvyQ!QKj*k!n-5*mhUI@H+-^Ef3{Q~-dU>bj?3a{ zQcVIvH~tFB#`7Xp$l*1OxdnHA57u3$SC;h;>gQZ@SdX)?DsjkSCgE8%pjm24z3Hwh zc#mt`1VR9D2e8RN-%1*rO6<7P68?y%h1V&KNgn$u;N1YQ;rBWHX%ske_JmraM${p1 zClLx%6aK!iCBL;dld-b7l2f#bleuyxWsNyjGM6o;Q%=E2;j3(SsbFV|`CKubo#?Sf z3XWZ}oTE-*x-^L=mR+>YPG_yYvwOCz%Wnn5kx2|F+Ue9KP_kpx?%o@t2 z9BXv@rb9i}{-R?IPo~F9YlhOPRK~$~WjxweE`gO+DW~UKV*&Kuj6W3L7MxrGVnmi> zc@rz=yQ~}l*(lGuuvzNm5xk$$q!j(4Y>Qr#*&JyiYaU~45bHQ*lKdr%^K`2ZqwbM~Vq1Ff`2(71Hn5n&bB>;g&rAUbGx!)F7XaVFT<(l3^lFI5fZ-(8 z;Wq_f>fq@F)}GC{DKM@tlZIX#OP40Knq-{u5@=2yjQKn$Iwk#OvRo+UKsWXrfv(UD@ta9a z05XhvmIjR3TkXPDcR<1%2$hx`_h~{%FMaKJ9#CQVGImbfk zDH=McpHTE1br>Qj%;zW12~oT}p(M8AO1!=7!kj6}MSBX{q?kQ$bRQ-_q$)0qw-nQ;s#A zD_au`?3lS~)sytrBk^Lr|lr*5N5Ku>^ZLDH^} zkX?H~u)}yJ>O>w zD0B`Klus$J6dAsX>e41zY7h=oa1qt^#EGI$hb3#vx-vp`8hm4GVHPo}R2x3?h0Yg^ zyCE7wc6QntDi_m9YiG%sDq5NJ5ikPwPh3|no0+En0*4VWI0!Wm!&pu#jrWLACY@=^ zM&vP>JH|-GDwdOzRxv%5&!k~kl42lJPR1!Y-C$yO!4W`|HRr=+I|JxsY_~H$o=&F0 ze1r8-PtL*SZ6MA#{%G#S8jyHoy6CSsDIppi(=q&sYoOjx(*`gytDOWRmax!}p|m?< z$;4WCvxFsFk(Nm2&vZYt$^KtR_FS<9ai5w3QT!Oe&Vy{Cdkg^)1xUO|=`VtY+K2db z(}V&jKXkCx=qQ0&*bQwhhI~*k+d$sB2TqE-qD3SoHH?0n#$I4&=0;p(nw_qF$xSz@FOwj1X|mYi&gX@eJ@SX~(#Lg#^g$UJ z)Ii-~3!wI}<$NC&wKQU&oF#)(xl(a0T!~%COUyf-vEcz2v3f9Q+z*$ru4h2B*Fd;I zStWWL=>}9|Oid{4Shh52lGJ{ekHerD`81_zFP!s|1EHoTf216Dw7l1W3ka* zHp#G`{Ib+ejAfuf?n+EbXWIvp;mH^!(X-Ee_@=03gEH#Ht_;A))nn=vZTDsUKtB%Z z??qdJFeZRcLlf+XaEPzBgG%q@VZzXW^Qb=zvnn%mUl)7{x*ig=8)>IqPNm0SZA=ki z;MuL@q@A5W#z+qJ^&yRQ<6m%a+DmhahzXLDuwiuC6Et zZgBZaUPyrBW!3vZ*-AcVb*d(T54Bio65%A&3y(-gaSUPWaU3-D>MK3o)4w7Wm9gce(7>;Kx00EU9h4;`SYkFAwOv+`pA?)VlrPUea=gq#2k+! z@_N6bzbqZ>(}jad`DcVDoDqA?wP)MdN*$6&O(;puPJ;5(R}V8rXoNG0;CpsG=O)m4 zM3-C`{A6>MGnFq*TT_l*EEk;Ox-q*Tl)^ar=b>_@l(vTCYiplVEEPxh9nxVl_|;=w z2`iaJv`o`FX&+_MIOUWI>7<>}g9>Hs`*m!sbI#ErQ^7_(IA z z(>ZbyB|Ejz&uk=)V06|C&L7d#r;U^{0aHsqm++CBpXg1ctlg+mQWE=+Bc_;f#fD(X z4}uf9W2_6R`B;QW32Ew5&j%6HAT-XVsf%=VW?ah~byTD)6`o#14#>#GG<}JlKH-WY z9i3}bd;pO|Z+U_-uxWZLN`dqSy0+y{X-sT$?5S$w{nDpDzBS>N`Su_=GELhAGc}3o zKnee!0-b2kX`uMJ4+v1%h&MmKqLq-Jvi<@K5`Eg&T9+2mDQn*(3cyD6=7ai_%24v^ z!)Q$OA&E0#*NIsPjR866hOqv;NTM%?6g-zPO9J0~O<;OL8Z8!i zrbe3qFZKXybsjGO*{TZN3AGw?#d5Yzwg6HsrCg+$!pN7=%WQT=6aDF_bT(a_H1Drp z&oQx7yoZ^AOA`H{JzOM=RbRPKfXYj8-Lyy>P@D#O5}+UPsSnhqv-VUvY2@GrkVSI; z9=uLNqUau}yG#=tb&c!tOm=8NV&IxQ@)#P@9wb)d>5OB-ECHB79db;=WiUxHrl4jn zJA91eiS0>v#V-Cj{h8WMQ`jjD$XN#w2H5p52iUbSD26 zCN9gtvFjK->s(VqW;>Ok2;rmLme_@~YZ%p9yM&n2gl;Fioy2$!v^yuh)(6m<7<49V zNat{-Trf>{(R5-T)1#!=_m~@fzLc}6N}aBiMhWNwv#Rtkm1<{9`n#>;uy=c9de$oMn@_B{I{G$r<;j%MUiCoC_mHbYFdDUg1_imi#gPRh<` zyKS^uSLw6RahMj?E5vYEnvIOMDl4Phn0JN|BqcL~L1;ZUPbJ1TJ|j<0>_ZI)@j!AC zQ2|(!WU9fMzl8>b3FFq5gd=AJMBduL_Bs>$V2&{#Wgha19>uuL2x4GTDd!{9h^eWZ zi4C-?e!#AI$>5U-D}7{`x^ckZA-ly`-ni~IU#h8;OjDT#1XV~8-pSh^K(-^= z{;_x)UJWF4n5=oqV6C(I%OaRO*4O7$Gqa{Hz3;ThVaOv(hXZk8aXh?A1gqdwrD)^` zgMS9KUVS>8Kr|+XA=)N_R)!n9^nztX;)(AJ2K9CC=x&(=aS4lBPD)Gb!YE8_|t7+;A;BXL7 zDBj-r!4W8tB%J|CB8ib)E;E+9#Pdo-lPjIiSNycrVjlBk&q5goW+Ve%MFT*ws3) zk?hjT=z|=TNJ%ml-r2&${%nTz*g3P5ejWYjo9EEpHiLM zY_dmcF8dthS5?BWPQN}Z#HjSE&D-n(7;O}?x$>y$$So#bq5P>9eo`J|9|I!+I!K;r zg_%{~S2kA0)>gATUfG*=pbVKTf24l)H@JE>ArsM3^AjaMx-tgS?CF=gRkE`fxrFn97`p5Hl`dvDWgl}fsO{}AZw%h!B~$n7eeB5)ft85wO`zb6jCrq(z5^4y)m7l}V455aRlIz1o`NcN0%dl6&QZ0p zH5X(?+T%L<4C3ex*2e)jfr`m+$u1bV)B}zaIf<1RzE&PLlQbq`wC{!2w$lh3Cv;zc zi5%-eL<%(fQKa9_Q@ptX+r_x(fp%M-{4ia_3e{uVtButsug=4eJUGat*BFK$WogF7 zd+&A(pFqwaH9%Rm!!{5${ZIwy7s#a9)x)45 zAWb36Zdo1G!5&_{HliS-*yL`pVux~VAkTi9oYWq>>@vEivaG;O;WCKPm1X}ETbHfr z3;-JosSQ3!s3{}5;LN2~A8g?~!xmh$-2yTkFz-QhO`@J(9sk`Yfj=3+`ind!)k+g5ZuE~>`?F_U-Qct2K5Y-8u1#Y%=IBVyvk(_R1FwvqDc_AwTRmyEr zZ3Cj#d8XNmbm;09>3|4#YN;!HpU~o0>k?O(=6Aq|G0I5dALERm0u+IvPvU6VSOoh2 z^P;igl9R~S@S$uNq*LX7b7@OAb zbdNB2)ggy}I^OZsZT<&x2$672hg_aa&_n&9v;J7x;CzkTL{lEsn#!3-~d46?w@ z{+yUUXLIGG*~gL%-l=2&xlJno%V3teR(-^W8sX5**0mq0gvmfr{Abu-ifmBxDKDf+ zV5Y=lqAP=~f0e-6v{@HxYN;RjYsbWJK5@h2pQ@ZN`(UHNJJ$$y)Zv|eDBiWM*b@iO z-czfVM=`@ew@;&mrcI0Mw@>jlnbeMW&ZSj{lc2@~Vhk`U7W20r3xHH5+Gglz_{d}opS>0%$peWz-JxXgCbBG+i$HR9+_KS* zhWj>PRnWurFXiO{N4q^64)diNqh6VdD7v)=1 zQqtBJ-m5}dguRzRUn1z;L=THZH03o2Rt3RJnk1!20gY?;Jgov4?>t)Q71WWCk=yGr z-EH@Ruv52fWC>coLB?9Z+cogK|EmmD@!bks87mX-a0eP?I80WNU_pYr%V@p@W~TFS zWfNL$LN5);0FBo;KC_oKOrNH*KIE*5c}J)sI|#Md=Bq+Pms|&jw{dQySRSLp6|)hZ zG-Q}GWSZ0ln-OXT^Vey157K5YbGUK_Xz4+a0?WB*csUopSwF;nz7cj`hy%K6g`(H461{3WwMI`D zTS-rmV2n2qLQNW#FujPzt8d%BjOyyP)$dlfD`&M;mI3`a&2EuzHbK~7PtSQ=%Ovc8 zKPRTE4HkXa>}e4lXoTamh7okC&K|e|1DW>E?(3+GBwB;k4sn*18@m8S01B@NrkBa^ zhY;j!h&4u0L>>L&>CASlPUbQxuK~+0T4T0UmMa%p0_{ClYwZE(0n;vewy@;KM$bLO zU*5ri!0hdIVEP6d z*Apg9Q1q3xEpg|2GrFs>sF-}O3A_)Vxm*%V?Z>;M_t__BWE8f1pFO1yMJrjl5y>R4 z2I~wIIC_^=#aKZm^)pIHsG#lxjwiiLm2I1|`P4H9bRI98?n89=a8q(GVm9clbAlcM zE!Zl=lXe;haXW4{>u+JXztoi1Wu2}(a;_xUZB^FwG~yN4M(|EQ(=&2O9IxZv&Zcm% zmMK3LA&p2hjnb&g1cg5hA)|KUxri4#*uAD92F69~Dcr$*p1Y57HjTUQxV>lLu1mS( zti`V~jpJ9j;3f6F+qL}Rll-Jrn$8<+%d!d^NX+S?nIWP9)u-7hzKugk6sHD93Pm($b(M;Jg!D2DrDx`-tvTFp#x(?{sb`sFHSi*AVI)<(<6yQmQXaymBIGqYM0liw z(LRP&A%|Z*$+80-ZTd{1+_Mkw*A!+iy$S~zbZ8VJsZh_nwgnpc3$zt=dn!Z;zs-}@ zhpd&v*aCxBa5YKflK;y#&*_qU*&J=qD=s$-3KqTQiMcPTDZ8a4OIPdAXb=6T@^sz%y1_v9MsmwECcXjUJH>!niCBof%N z7F25797tO+Gn9@Q^Mi_0#7m&6Z+?+JDJ#HgNk+z)0p${(?k)Y!xQ(m%)*dO)n^9;( zNz-(5vq}2ysxQBE#`3*ber9t4P$;-KXstJ+z+*CAm8CYb&aZ1q{x(|sb7lU1hb}2q zM`r_EUvMiqIAXQj=DwibC1vNZ;pp&hH-J>o>>3ZI|bcfFet2JVc@Mmoo!;JDOEQ z>psx-P=@CvP-fVRAUQl7)@O@=J5&B*?qO6-@mo3rh)If~9-taB)KQr}hHh#`ye^UI zvNL${vV;B3)epvw7kCL2J3K}7#q0npA2oP>*~v=TdqC&(+2}|RY|VwuCO^@Z9M+9+ zu;zOcDLMRi&vA6=ptfKwMY>RNaBUE-R__SAwsl)!0A&)fmH=E0A(In%3A-7D&yx5N zeFj|{rKP(55CAcu6ZHVqKxWyD@hjM*zIR+R!v!C}PZYZ40<#rZ z38O?C;*~ArXPo5sMHqsHlZmFJ{#k+Qh|E*tz9Fj9iJy7V26&oai?#SCqmTQ9!RX`F z<&$UxbeUJIfiVGxDPCW!wZE8a@K9RtQE5bzjxGVM Rg+8X7J>w<>(evu+{vR2m^7sG% literal 425 zcmZ8du};G<5WRpXotYRIjvvSuuuv&N-H=*|6*qC*Qxn@t9JSdP`2jW-c0Pawu_N&b zY~A?Eed%>wy0bs6U{NpX)z z)GjfRg@(YNW5RJ7KWKupT&|^OY-L&RRO=hf%KJu26~x(`i(SyRVhJ1^k8bF=k&RfB i^CGA&@M>gTNq~n-XKOLJA5S5Ca=mgx$R6=L%CcX+!C*uH diff --git a/qtgui/resources/translations/de.ts b/qtgui/resources/translations/de.ts index b1068da..ce61db1 100644 --- a/qtgui/resources/translations/de.ts +++ b/qtgui/resources/translations/de.ts @@ -1,11 +1,1265 @@ - + + About - - This is an example application. Extend it to your liking. Start by editing config.py - Willkommen im Beispielprogramm. Erstellen Sie neue Programme auf dieser Grundlage wie es Ihnen gefällt. Ein guter Einstieg wäre config.py + + <p>Most commands work in the appending position (last position in a track) and apply to the item before it.</p><p>Use it to apply dots, sharps and flats on the item you just inserted without moving the cursor back and forth.</p> + <p>Die meisten Befehle, wenn am Ende der Spur ausgeführt, werden automatisch auf das Objekt davor angewendet.</p><p>Das ist praktisch um Vorzeichen, Punktierungen etc. für die letzte eingefügte Note zu erzeugen</p> + + + + <p>Learn the keyboard shortcuts! Laborejo is designed to work with the keyboard alone and with midi instruments for full speed.</p>Everytime you grab your mouse you loose concentration, precision and time. + <p>Bitte die Tastaturkürzel auswendig lernen! Die beste und schnellste Eingabe für Laborejo erreicht man durch die Kombination von Midi-Keyboard und Computer-Tastatur.</p><p>Jeder Griff zur Maus bringt Sie raus!</p>. + + + + <p>Spread/shrink the space between notes with Ctrl+Shift+Mousewheel or Ctrl+Shift with Plus and Minus.</p> + <p>Mit Strg+Umschalten+Mausrad können Sie alle Objektzwischenräume vergrößern oder verkleinern. Strg+Umschalten mit Plus oder Minus funktioniert auch</p> + + + + <p>Click with the left mouse button to set the cursor to that position. Hold Shift to create a selection.</p> + <p>Ein Klick mit der linken Maustaste platziert den Cursor an diese Stelle. Zusammen mit der Umschalttaste wird eine Auswahl erzeugt.</p> + + + + <p>Most commands can be applied to single notes and selections equally.</p><p>Use Shift + movement-keys to create selections.</p> + <p>Die meisten Befehle funktionieren sowohl auf Einzelobjekte als auch auf eine ganze Auswahl.</p> + + + + <p>Blocks and Tracks can be moved in Block-View Mode [F6]. Use Shift+Middle Mouse Button to move blocks and Alt+Middle to reorder tracks.</p> + <p>Blöcke und Spuren können im Blockmodus [F6] verschoben werden: Umschalten+Mittlere Maustaste um Blöcke zu bewegen, Alt+Mittlere für Spuren.</p> + + + + <p>There are no empty measures/bars.</p><p>Use Multi Measure Rests[R] instead. You need to have a metrical instruction for that [M].</p> + <p>Es gibt keine leeren Takte.</p><p>Mehrtaktpausen [R] können jederzeit eingefügt werden, auch ohne Taktart [M]</p> + + + + <p>Many Music Items like clefs can only be inserted, not edited. They are however such simplistic that delete-and-reinsert is equally time-efficient.</p> + <p>Die meisten Objekte, wie Notenschlüssel, können nur eingefügt werden, aber nicht mehr bearbeitet. Löschen und neu einfügen ist einfacher schneller.</p> + + + + <p>All notes should be considered non-transposing. Treat everything as 'in C'.</p><p>That said, there is a semitone transposition in the Track Properties [Ctrl+T].</p> + <p>Alle Noten sind klingend "in C" und nicht-transponierend.</p><p>Wenn Sie dennoch transponieren möchten finden Sie Halbtontransposition im Spur Editor [Strg+T]</p> + + + + <p>Upbeats/anacrusis can be set per-track in the Track Properties [Ctrl+T].</p> + <p>Auftakte gelten per Spur und befinden sich im Spur Editor [Strg+T].</p> + + + + <p>There is no key-rebinding except numpad-shortcuts.</p> + <p>Alle Tastenkürzel sind fest. Davon ausgenommen sind die temporären Hover-Shortcuts</p> + + + + <p>Hidden tracks still output sound.</p> + <p>Versteckte Spuren erzeugen weiterhin Musik.</p> + + + + <p>Non-audible tracks still output instrument changes and CCs so that they can be switched on again in the middle of playback.</p> + <p>Stummgeschaltete Spuren senden immer noch Midi Instrument Changes und CCs, damit sie während der Wiedergabe angeschaltet werden können und richtig klingen.</p> + + + + MainWindow + + + Help + Hilfe + + + + &Insert Objects + Objekte &Einfügen + + + + &Structures + &Strukturen + + + + E&dit Note + Noten &Bearbeiten + + + + &Control + S&teuerung + + + + &View and Edit Mode + &Modus zur Ansicht und Bearbeitung + + + + | + | + + + + Edit &MusicItem + M&usikobjekte Bearbeiten + + + + E&dit + Bearbeite&n + + + + &Toolbox + &Werkzeugkasten + + + + Note &Sorting + Noten &Sortieren + + + + &Note Generation + Noten &Erzeugen + + + + &MIDI + &MIDI + + + + &Lilypond + &Lilypond + + + + &Delete Item + Objekt löschen + + + + Delete previous &Item + Vorheriges Objekt löschen + + + + &Add Note to Chord + Note zum Akkord hinzufügen + + + + &Delete Note from Chord + Note aus Akkord löschen + + + + &Add Track + Neue Spur + + + + &Sharpen Note + Durch Kreuz erhöhen + + + + &Flatten Note + Durch b erniedrigen + + + + Step &Up + Um Schritt erhöhen + + + + Ste&p Down + Um Schritt erniedrigen + + + + &Octave Up + Um Oktave erhöhen + + + + Octa&ve Down + Um Schritt erniedrigen + + + + &Augment + Augmentieren + + + + &Diminish + Diminuieren + + + + Append &Block + Leeren Block ans Ende anhängen + + + + &Split Current Block + Diesen Block teilen + + + + &Duplicate Current Block + Diesen Block verdoppeln + + + + &Create Linked Copy + Diesen Block mit Link verdoppeln + + + + De&lete Current Block + Diesen Block löschen + + + + &Rectangle Noteheads + Balken-Noten + + + + P&lay / Pause + Wiedergabe / Pause + + + + Play fr&om Start + Wiedergabe vom Anfang + + + + &Follow Playhead + Playhead folgen + + + + Pla&y from Cursor + Wiedergabe vom Cursor + + + + Staccato + Staccato + + + + &Copy + Kopieren + + + + Cut + Ausschneiden + + + + &Paste + Einfügen + + + + Dots + Punktierung + + + + &Control Changes + Control Changes + + + + &Change Grid Rhythm + Rhythmus des Rasters ändern + + + + Snap To Grid + Am Rhythmusraster einrasten + + + + &Midi In is Active + Midi Input ist aktiviert + + + + Toggle midi in on and off + Midi Input ein/ausschalten + + + + T&ie + Haltebogen + + + + &Legato Slur + Bindebogen + + + + Toggle Legato Slur + Bindebogen ein/ausschalten + + + + T&enuto + Tenuto + + + + Triplet + Triole + + + + &Custom Tuplets + N-Tole + + + + Prevailing Rest + Momentan geltende Pause + + + + &Split in 2 + Zweiteilen + + + + Split &in 3 + Dreiteilen + + + + Split in &X + Teilen in X + + + + &Undo + Undo + + + + &Redo + Redo + + + + &Join with next Block + Mit nächstem Block vereinigen + + + + Set Upbeat + Auftakt festlegen + + + + &More Velocity + Lauter + + + + More Velocity + Lauter + + + + &Less Velocity + Leiser + + + + Less Velocity + Leiser + + + + Lo&nger Duration Mod. + Länger + + + + Longer Duration Mod. + Länger + + + + Shorter Duration Mod. + Kürzer + + + + &Reset Velocity / Duration Mod. + Lautstärke und Länge zurücksetzen + + + + &Widen Score View + Notenzwischenräume strecken + + + + Shr&ink Score View + Notenzwischenräume verringern + + + + &Track Editor + Spureditor + + + + &Clef + Schlüssel + + + + &Metrical Instruction + Metrum + + + + &Key Signature + Vorzeichen + + + + &Dynamics + Dynamik + + + + Multi Measure &Rest + Mehrtaktpause + + + + Tem&porary Tempo Change + Vorübergehender Tempowechsel + + + + &Beam + Balken + + + + &Remove Beams + Balken entfernen + + + + &Tempo Change + Tempowechsel + + + + D&elete Tempo Change + Tempowechsel entfernen + + + + &Blocks Only + Blöcke + + + + &Notation + Noten + + + + &Transpose Chord + Akkord transponieren + + + + &Transpose Score + Alles transponieren + + + + &Save + Speichern + + + + Export File + Exportieren + + + + Import File (replaces current) + Importieren (und ersetzen) + + + + &Unlink Current Block + Link des Blocks lösen + + + + Delete All &Empty Blocks + Alle leeren Blöcke löschen + + + + &Pedal Notes + Pedalnoten + + + + &Reverse + Reihenfolge Umkehren + + + + Dup&licate + Verdoppeln + + + + &Shuffle + Mischen + + + + &Ascending + Aufsteigend + + + + &Descending + Absteigend + + + + &Mirror around Cursor + Spiegeln mit Cursor als Achse + + + + &Random chromatic in clef range + Zufällige chromatische Note im Schlüsselbereich + + + + Random &in-scale in clef range + Zufällige Note aus der Skala im Schlüsselbereich + + + + Random pitch &from clipboard + Zufällige Note aus dem Zwischenspeicher + + + + Meta&data + Metadaten + + + + &Export to .ly file + Als .ly Datei exportieren + + + + &Show PDF + PDF anzeigen + + + + Export to .pdf file + Als .pdf Datei exportieren + + + + &Instrument Change + Instrumentenwechsel + + + + Program Change Relative + Program Change (relativ) + + + + Insert Bank Change + Bank Change einfügen + + + + Bank Change Relative + Bank Change (relativ) + + + + &Insert Channel Change + Channel Change einfügen + + + + Channel Change Relative + Channel Change (relativ) + + + + &MIDI Channel + + Midi Channel + + + + + MIDI &Channel - + Midi Channel - + + + + MIDI C&hannel Reset + Midi Channel zurücksetzen + + + + Delete Current Track + Aktive Spur löschen + + + + Use Current Track as &Metronome + Aktive Spur als Metronom benutzen + + + + Metronome &Enabled + Metronom ist an + + + + Random in-scale in cursor plus octave (authentic mode) + Zufällige Note aus der Skala vom Cursor aus, um eine Oktave erweitert (Authentisch) + + + + Random in-scale in octave around cursor (hypo mode) + Zufällige Note aus der Skala um den Cursor herum (Hypo) + + + + Barline + Taktstrich + + + + Free Instruction + Beliebiger Text + + + + Repeat + Wiederholung + + + + Zoom In Score View + Reinzoomen + + + + Zoom Out Score View + Rauszoomen + + + + menu + + + Choose a Barline + Taktstrich auswählen + + + + Choose a Repeat + Wiederholungszeichen auswählen + + + + Enter Instruction + Anweisung eingeben + + + + Undo: {} + Undo: {} + + + + Undo + Undo + + + + Redo: {} + Redo {} + + + + Redo + Redo + + + + Export Lilypond Source File + Lilypond Quelldatei exportieren + + + + Lilypond Source (*.ly) + Lilypond Quelltext + + + + Snap to Grid + Am Raster ausrichten + + + + Metronome + Metronom + + + + Metronome: + Metronom: + + + + Tempo × + Tempo × + + + + musicstructures + + + start + start + + + + end + ende + + + + edit properties + eigenschaften bearbeiten + + + + duplicate + duplizieren + + + + create content link + content link erzeugen + + + + unlink + link auflösen + + + + join with next block + mit nächsten block verschmelzen + + + + delete block + block löschen + + + + append block at the end + leeren block am ende erzeugen + + + + Track Name + Spurname + + + + Set Track Name for {} + Spurnamen für {} verändern + + + + edit name + namen bearbeiten + + + + Create CC Path + CC Kurve erzeugen + + + + submenus + + + [1] Treble + [1] Violinen + + + + [2] Bass + [2] Bass + + + + [3] Alto + [3] Alt/Bratsche + + + + [4] Drum + [4] Schlagzeug + + + + [5] Treble ^8 + [5] Violinen ^8 + + + + [6] Treble _8 + [6] Violinen _8 + + + + [7] Bass _8 + [7] Bass _8 + + + + choose a clef + Wählen Sie einen Schlüssel + + + + split chord in + Zerteile Akkord in + + + + root note is the cursor position + Grundton ist die Cursorposition + + + + choose a dynamic + Wählen Sie eine Dynamik + + + + [r] Ramp + [r] Mit Cresc/Decresc + + + + choose a metrical instruction + Wählen Sie eine Metrikanweisung + + + + choose units per minute, reference note, graph type + Wählen Sie Schläge pro Minute, die Referenznote sowie Interpolationsart + + + + [enter] to use value + [Enter] um diesen Wert zu benutzen + + + + edit block #{} + Block #{} bearbeiten + + + + name + Name + + + + minimum in ticks + Minimum in Ticks + + + + duration in ticks + Dauer in Ticks + + + + Transpose {} + Transponiere {} + + + + Construct Interval from relative distance + Intervall aus dem Abstand zweier Töne bauen + + + + Meta Data + Metadata + + + + Instrument Change + Instrumentenwechsel + + + + Program + Program + + + + Bank MSB + Bank MSB + + + + Bank LSB + Bank LSB + + + + Short Name + Kurzname + + + + Insert + Einfügen + + + + Channel Change 1-16. [enter] to use value + Channel Change 1-16. [Enter] um den Kanal zu benutzen + + + + Channel + Channel + + + + Text + Text + + + + Edit Grid + Raster bearbeiten + + + + opacity: {}% + Deckkraft: {} + + + + Insert Pedal Notes + Pedalnoten einfügen + + + + Use duration as base + Dauer als Grundlage benutzen + + + + trackEditorPythonFile + + + set all upbeats + Alle Auftakte einstellen + + + + fold all advanced + Erweiterte Optionen ausklappen + + + + unfold all advanced + Erweiterte Optionen einklappen + + + + trackGroupWidget + + + GroupBox + GroupBox + + + + Upbeat Ticks + Auftakt in Ticks + + + + 𝅘𝅥𝅮 + 𝅘𝅥𝅮 + + + + Double Track + Doppelspur + + + + Audible + Hörbar + + + + Visible + Sichtbar + + + + Channel + Channel + + + + CC Channels + CC Channels + + + + Program + Program + + + + Bank MSB + Bank MSB + + + + Transpose + Transposition + + + + Bank LSB + Bank LSB + + + + Delete + Löschen + + + + Instrument Name + Name des Instruments + + + + Short Instrument Name + Kurzer Name des Instruments + + + + Advanced + Erweiterte Optionen + + + + Derfault On + Normal Anfang + + + + Default Off + Normal Ende + + + + Staccato On + Staccato Anfang + + + + Staccato Off + Staccato Ende + + + + Tenuto On + Tenuto Anfang + + + + Tenuto Off + Tenuto Ende + + + + Legato On + Legato Anfang + + + + Legato Off + Legato Ende + + + + Reset to Default Duration Values + Rhythmische Veränderungen zurücksetzen + + + + Duration Offsets + Rhythmische Veränderungen + + + + ppppp + ppppp + + + + pppp + pppp + + + + ppp + ppp + + + + pp + pp + + + + p + p + + + + mp + mp + + + + mf + mf + + + + f + f + + + + ff + ff + + + + fff + fff + + + + ffff + ffff + + + + tacet + tacet + + + + custom + Benutzerdefiniert + + + + sfz + sfz + + + + sf + sf + + + + sff + sff + + + + fp + fp + + + + sp + sp + + + + spp + spp + + + + Reset to Default Dynamic Values + Dynamische Veränderungen zurücksetzen + + + + Dynamic Signature Definitions + Dynamische Veränderungen diff --git a/qtgui/scorescene.py b/qtgui/scorescene.py index 31d28a1..c91a433 100644 --- a/qtgui/scorescene.py +++ b/qtgui/scorescene.py @@ -24,7 +24,6 @@ import logging; logging.info("import {}".format(__file__)) #Standard Library - #Third party from PyQt5 import QtCore, QtGui, QtWidgets diff --git a/qtgui/submenus.py b/qtgui/submenus.py index 8bf7e0c..b10a49b 100644 --- a/qtgui/submenus.py +++ b/qtgui/submenus.py @@ -20,16 +20,25 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . """ +import logging; logging.info("import {}".format(__file__)) + +#Standard Library +from sys import maxsize + +#Third party from PyQt5 import QtCore, QtGui, QtWidgets +translate = QtCore.QCoreApplication.translate -import engine.api as api +#Template import template.engine.pitch as pitch from template.qtgui.helper import QHLine from template.qtgui.submenus import * +#Our own files +import engine.api as api from .constantsAndConfigs import constantsAndConfigs from .designer.tickWidget import Ui_tickWidget -from sys import maxsize + class CombinedTickWidget(QtWidgets.QFrame): def __init__(self): @@ -148,17 +157,17 @@ class TickWidget(QtWidgets.QDialog): class SecondaryClefMenu(Submenu): - clefs = [("[1] Treble", lambda: api.insertClef("treble")), - ("[2] Bass", lambda: api.insertClef("bass")), - ("[3] Alto", lambda: api.insertClef("alto")), - ("[4] Drum", lambda: api.insertClef("percussion")), - ("[5] Treble ^8 ", lambda: api.insertClef("treble^8")), - ("[6] Treble _8 ", lambda: api.insertClef("treble_8")), - ("[7] Bass _8 ", lambda: api.insertClef("bass_8")), + clefs = [(translate("submenus", "[1] Treble"), lambda: api.insertClef("treble")), + (translate("submenus", "[2] Bass"), lambda: api.insertClef("bass")), + (translate("submenus", "[3] Alto"), lambda: api.insertClef("alto")), + (translate("submenus", "[4] Drum"), lambda: api.insertClef("percussion")), + (translate("submenus", "[5] Treble ^8"), lambda: api.insertClef("treble^8")), + (translate("submenus", "[6] Treble _8"), lambda: api.insertClef("treble_8")), + (translate("submenus", "[7] Bass _8"), lambda: api.insertClef("bass_8")), ] def __init__(self, mainWindow): - super().__init__(mainWindow, "choose a clef") + super().__init__(mainWindow, translate("submenus", "choose a clef")) for number, (prettyname, function) in enumerate(SecondaryClefMenu.clefs): button = QtWidgets.QPushButton(prettyname) @@ -180,7 +189,7 @@ class SecondarySplitMenu(Submenu): ] def __init__(self, mainWindow): - super().__init__(mainWindow, "split chord in") + super().__init__(mainWindow, translate("submenus", "split chord in")) for number, (prettyname, function) in enumerate(SecondarySplitMenu.splits): button = QtWidgets.QPushButton(prettyname) @@ -192,7 +201,7 @@ class SecondarySplitMenu(Submenu): class SecondaryKeySignatureMenu(Submenu): def __init__(self, mainWindow): - super().__init__(mainWindow, "root note is the cursor position") + super().__init__(mainWindow, translate("submenus", "root note is the cursor position")) l = [("[{}] {}".format(num+1, modeString.title()), lambda r, modeString=modeString: api.insertCursorCommonKeySignature(modeString)) for num, modeString in enumerate(api.commonKeySignaturesAsList())] for number, (prettyname, function) in enumerate(l): @@ -204,8 +213,8 @@ class SecondaryKeySignatureMenu(Submenu): class SecondaryDynamicsMenu(Submenu): def __init__(self, mainWindow): - super().__init__(mainWindow, "choose a dynamic") - button = QtWidgets.QPushButton("[r] Ramp") + super().__init__(mainWindow, translate("submenus", "choose a dynamic")) + button = QtWidgets.QPushButton(translate("submenus", "[r] Ramp")) button.setShortcut(QtGui.QKeySequence("r")) self.layout.addWidget(button) button.clicked.connect(api.insertDynamicRamp) @@ -222,7 +231,7 @@ class SecondaryDynamicsMenu(Submenu): class SecondaryMetricalInstructionMenu(Submenu): def __init__(self, mainWindow): - super().__init__(mainWindow, "choose a metrical instruction") + super().__init__(mainWindow, translate("submenus", "choose a metrical instruction")) l = [("[{}] {}".format(num+1, modeString), lambda r, modeString=modeString: api.insertCommonMetricalInstrucions(modeString)) for num, modeString in enumerate(api.commonMetricalInstructionsAsList())] @@ -242,7 +251,7 @@ class SecondaryTempoChangeMenu(Submenu): def __init__(self, mainWindow, staticExportTempoItem = None): - super().__init__(mainWindow, "choose units per minute, reference note, graph type") + super().__init__(mainWindow, translate("submenus", "choose units per minute, reference note, graph type")) self.mainWindow = mainWindow self.staticExportTempoItem = staticExportTempoItem @@ -291,7 +300,7 @@ class SecondaryTemporaryTempoChangeMenu(Submenu): lastCustomValue = 0.42 def __init__(self, mainWindow): - super().__init__(mainWindow, "[enter] to use value") + super().__init__(mainWindow, translate("submenus", "[enter] to use value")) self.spinbox = QtWidgets.QDoubleSpinBox() self.spinbox.setValue(SecondaryTemporaryTempoChangeMenu.lastCustomValue) @@ -314,16 +323,16 @@ class BlockPropertiesEdit(Submenu): self.mainWindow = mainWindow self.staticExportItem = staticExportItem - self.layout.insertRow(0, QtWidgets.QLabel("edit block #{}".format(staticExportItem["id"]))) + self.layout.insertRow(0, QtWidgets.QLabel(translate("submenus", "edit block #{}").format(staticExportItem["id"]))) self.name = QtWidgets.QLineEdit(self.staticExportItem["name"]) self.name.selectAll() - self.layout.addRow("name", self.name) + self.layout.addRow(translate("submenus", "name"), self.name) #self.minimumInTicks = QtWidgets.QSpinBox() self.minimumInTicks = CombinedTickWidget() self.minimumInTicks.setValue(self.staticExportItem["minimumInTicks"]) - self.layout.addRow("minimum in ticks", self.minimumInTicks) + self.layout.addRow(translate("submenus", "minimum in ticks"), self.minimumInTicks) self.__call__() @@ -342,15 +351,15 @@ class TempoBlockPropertiesEdit(Submenu): self.mainWindow = mainWindow self.staticExportItem = staticExportItem - self.layout.insertRow(0, QtWidgets.QLabel("edit block #{}".format(staticExportItem["id"]))) + self.layout.insertRow(0, QtWidgets.QLabel(translate("submenus", "edit block #{}").format(staticExportItem["id"]))) self.name = QtWidgets.QLineEdit(self.staticExportItem["name"]) self.name.selectAll() - self.layout.addRow("name", self.name) + self.layout.addRow(translate("submenus", "name"), self.name) self.duration = CombinedTickWidget() self.duration.setValue(self.staticExportItem["duration"]) - self.layout.addRow("duration in ticks", self.duration) + self.layout.addRow(translate("submenus", "duration in ticks"), self.duration) self.__call__() @@ -364,11 +373,11 @@ class TempoBlockPropertiesEdit(Submenu): class TransposeMenu(Submenu): def __init__(self, mainWindow, what): - super().__init__(mainWindow, "Transpose {}".format(what.title()), hasOkCancelButtons=True) + super().__init__(mainWindow, translate("submenus", "Transpose {}").format(what.title()), hasOkCancelButtons=True) assert what in ("item", "score") self.what = what - self.layout.insertRow(0, QtWidgets.QLabel("Construct Interval from relative distance")) + self.layout.insertRow(0, QtWidgets.QLabel(translate("submenus", "Construct Interval from relative distance"))) self.fromNote = QtWidgets.QComboBox() self.fromNote.addItems(pitch.sortedNoteNameList) @@ -397,9 +406,9 @@ class TransposeMenu(Submenu): class SecondaryProperties(Submenu): def __init__(self, mainWindow): """Directly edits the backend score meta data. There is no api and no callbacks""" - super().__init__(mainWindow, "Meta Data", hasOkCancelButtons=True) + super().__init__(mainWindow, translate("submenus", "Meta Data"), hasOkCancelButtons=True) - dictionary = api.getMetadata() + dictionary = api.getMetadata() #TOOD: untranslated to keep relation to lilypond? test = set(type(key) for key in dictionary.keys()) assert len(test) == 1 @@ -456,7 +465,7 @@ class SecondaryProgramChangeMenu(Submenu): lastLsbValue = 0 def __init__(self, mainWindow): - super().__init__(mainWindow, "Instrument Change") + super().__init__(mainWindow, translate("submenus", "Instrument Change")) self.program = QtWidgets.QSpinBox() self.program.setValue(type(self).lastProgramValue) @@ -466,15 +475,15 @@ class SecondaryProgramChangeMenu(Submenu): self.lsb.setValue(type(self).lastLsbValue) self.shortInstrumentName = QtWidgets.QLineEdit() - for label, spinbox in (("Program", self.program), ("Bank MSB", self.msb), ("Bank LSB", self.lsb)): + for label, spinbox in ((translate("submenus", "Program"), self.program), (translate("submenus", "Bank MSB"), self.msb), (translate("submenus", "Bank LSB"), self.lsb)): spinbox.setMinimum(0) spinbox.setMaximum(127) spinbox.setSingleStep(1) self.layout.addRow(label, spinbox) - self.layout.addRow("Short Name", self.shortInstrumentName) + self.layout.addRow(translate("submenus", "Short Name"), self.shortInstrumentName) - self.insert = QtWidgets.QPushButton("Insert") + self.insert = QtWidgets.QPushButton(translate("submenus", "Insert")) self.insert.clicked.connect(self.process) self.layout.addWidget(self.insert) @@ -495,16 +504,16 @@ class SecondaryChannelChangeMenu(Submenu): lastCustomValue = 0 def __init__(self, mainWindow): - super().__init__(mainWindow, "Channel Change 1-16. [enter] to use value") + super().__init__(mainWindow, translate("submenus", "Channel Change 1-16. [enter] to use value")) self.spinbox = QtWidgets.QSpinBox() self.spinbox.setValue(type(self).lastCustomValue) self.spinbox.setMinimum(1) self.spinbox.setMaximum(16) self.spinbox.setSingleStep(1) - self.layout.addRow("Channel", self.spinbox) + self.layout.addRow(translate("submenus", "Channel"), self.spinbox) self.name = QtWidgets.QLineEdit() - self.layout.addRow("Text", self.name) + self.layout.addRow(translate("submenus", "Text"), self.name) def process(self): v = self.spinbox.value() @@ -519,17 +528,17 @@ class GridRhytmEdit(Submenu): self.mainWindow = mainWindow - self.layout.insertRow(0, QtWidgets.QLabel("Edit Grid")) + self.layout.insertRow(0, QtWidgets.QLabel(translate("submenus", "Edit Grid"))) self.duration = CombinedTickWidget() self.duration.setValue(constantsAndConfigs.gridRhythm) - self.layout.addRow("duration in ticks", self.duration) + self.layout.addRow(translate("submenus", "duration in ticks"), self.duration) self.opacity = QtWidgets.QSlider(QtCore.Qt.Horizontal) self.opacity.setMinimum(0) self.opacity.setMaximum(50) - self.opacityLabel = QtWidgets.QLabel("opacity: {}%".format(int(constantsAndConfigs.gridOpacity * 100))) + self.opacityLabel = QtWidgets.QLabel(translate("submenus", "opacity: {}%").format(int(constantsAndConfigs.gridOpacity * 100))) self.layout.addRow(self.opacityLabel, self.opacity) - self.opacity.valueChanged.connect(lambda: self.opacityLabel.setText("opacity: {}%".format(self.opacity.value()))) + self.opacity.valueChanged.connect(lambda: self.opacityLabel.setText(translate("submenus", "opacity: {}%").format(self.opacity.value()))) self.opacity.setValue(int(constantsAndConfigs.gridOpacity * 100)) self.opacity.valueChanged.connect(lambda: self.mainWindow.scoreView.scoreScene.grid.setOpacity(self.opacity.value() / 100)) #only react to changes after the initial value was set. self.__call__() @@ -554,9 +563,9 @@ class GridRhytmEdit(Submenu): def pedalNoteChooser(mainWindow): try: constantsAndConfigs.realNotesStrings[constantsAndConfigs.realNotesValues.index(constantsAndConfigs.gridRhythm)+1] - rhythmString = QtWidgets.QInputDialog.getItem(mainWindow, "Insert Pedal Notes", "Use duration as base", constantsAndConfigs.realNotesStrings, constantsAndConfigs.realNotesValues.index(constantsAndConfigs.gridRhythm)+1, False) + rhythmString = QtWidgets.QInputDialog.getItem(mainWindow, translate("submenus", "Insert Pedal Notes"), translate("submenus", "Use duration as base"), constantsAndConfigs.realNotesStrings, constantsAndConfigs.realNotesValues.index(constantsAndConfigs.gridRhythm)+1, False) except IndexError: - rhythmString = QtWidgets.QInputDialog.getItem(mainWindow, "Insert Pedal Notes", "Use duration as base", constantsAndConfigs.realNotesStrings, constantsAndConfigs.realNotesValues.index(constantsAndConfigs.gridRhythm), False) + rhythmString = QtWidgets.QInputDialog.getItem(mainWindow, translate("submenus", "Insert Pedal Notes"), translate("submenus", "Use duration as base"), constantsAndConfigs.realNotesStrings, constantsAndConfigs.realNotesValues.index(constantsAndConfigs.gridRhythm), False) if rhythmString[1]: #bool. Canceled? diff --git a/qtgui/trackEditor.py b/qtgui/trackEditor.py index 47ae2af..265d503 100644 --- a/qtgui/trackEditor.py +++ b/qtgui/trackEditor.py @@ -22,10 +22,18 @@ along with this program. If not, see . import logging; logging.info("import {}".format(__file__)) -from PyQt5 import QtWidgets, QtCore, QtGui -from .designer.trackWidget import Ui_trackGroupWidget -from .constantsAndConfigs import constantsAndConfigs +#Standard Library + +#Third party +from PyQt5 import QtCore, QtGui, QtWidgets +translate = QtCore.QCoreApplication.translate + +#Template from template.helper import pairwise + +#Our own files +from .constantsAndConfigs import constantsAndConfigs +from .designer.trackWidget import Ui_trackGroupWidget from .submenus import TickWidget, CombinedTickWidget from contextlib import contextmanager import engine.api as api @@ -296,6 +304,8 @@ class TrackWidget(QtWidgets.QGroupBox): #Engine from 0 to 15, GUI from 1 to 16. self.ccChannels[i+1].setChecked(i in trackExportObject["ccChannels"]) #a checkbox widget. + + class TrackEditor(QtWidgets.QWidget): """Created by ControlMainWindow. One permanent instance""" def __init__(self, mainWindow): @@ -318,18 +328,18 @@ class TrackEditor(QtWidgets.QWidget): self.allUpbeatsCombinedTickWidget = CombinedTickWidget() - allUpbeatsPushButton = QtWidgets.QPushButton("set all upbeats") + allUpbeatsPushButton = QtWidgets.QPushButton(translate("trackEditorPythonFile", "set all upbeats")) allUpbeatsPushButton.clicked.connect(self.setAllUpbeats) #gets the value itself allUpbeatsLayout.addWidget(self.allUpbeatsCombinedTickWidget) allUpbeatsLayout.addWidget(allUpbeatsPushButton) #Reset all Advanced Views - foldAllAdvanvced = QtWidgets.QPushButton("fold all advanced") + foldAllAdvanvced = QtWidgets.QPushButton(translate("trackEditorPythonFile", "fold all advanced")) foldAllAdvanvced.clicked.connect(self.foldAllAdvanvced) allUpbeatsLayout.addWidget(foldAllAdvanvced) - unfoldAllAdvanvced = QtWidgets.QPushButton("unfold all advanced") + unfoldAllAdvanvced = QtWidgets.QPushButton(translate("trackEditorPythonFile", "unfold all advanced")) unfoldAllAdvanvced.clicked.connect(self.unfoldAllAdvanced) allUpbeatsLayout.addWidget(unfoldAllAdvanvced)