diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fd20fdd --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +*.pyc diff --git a/QLocklayers.py b/QLocklayers.py new file mode 100644 index 0000000..423da76 --- /dev/null +++ b/QLocklayers.py @@ -0,0 +1,229 @@ +# -*- coding: utf-8 -*- +""" +/*************************************************************************** + QLocklayers + A QGIS plugin + This tool can be used to copy the map canvas and place it in the clipboard. + Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/ + ------------------- + begin : 2019-04-07 + git sha : $Format:%H$ + copyright : (C) 2019 by Marios S. Kyriakou, KIOS Research and Innovation Center of Excellence (KIOS CoE) + email : mariosmsk@gmail.com + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ +""" +from PyQt5.QtCore import (QSettings, QTranslator, qVersion, QCoreApplication, Qt, QTimer) +from PyQt5.QtGui import (QIcon, QImage, QFont, QKeySequence) +from PyQt5.QtWidgets import (QAction, QApplication, QMessageBox, QWidget) +from qgis.core import (QgsProject) + +# Initialize Qt resources from file resources.py +from .resources import * +# Import the code for the dialog +import os.path + + +class QLocklayers: + """QGIS Plugin Implementation.""" + + def __init__(self, iface): + """Constructor. + + :param iface: An interface instance that will be passed to this class + which provides the hook by which you can manipulate the QGIS + application at run time. + :type iface: QgsInterface + """ + # Save reference to the QGIS interface + self.iface = iface + # initialize plugin directory + self.plugin_dir = os.path.dirname(__file__) + # initialize locale + locale = QSettings().value('locale/userLocale')[0:2] + locale_path = os.path.join( + self.plugin_dir, + 'i18n', + 'QLocklayers_{}.qm'.format(locale)) + + if os.path.exists(locale_path): + self.translator = QTranslator() + self.translator.load(locale_path) + + if qVersion() > '4.3.3': + QCoreApplication.installTranslator(self.translator) + + # Declare instance attributes + self.actions = [] + self.menu = self.tr(u'&QLocklayers') + + # Check if plugin was started the first time in current QGIS session + # Must be set in initGui() to survive plugin reloads + self.first_start = None + + # noinspection PyMethodMayBeStatic + def tr(self, message): + """Get the translation for a string using Qt translation API. + + We implement this ourselves since we do not inherit QObject. + + :param message: String for translation. + :type message: str, QString + + :returns: Translated version of message. + :rtype: QString + """ + # noinspection PyTypeChecker,PyArgumentList,PyCallByClass + return QCoreApplication.translate('QLocklayers', message) + + + def add_action( + self, + icon_path, + text, + callback, + enabled_flag=True, + add_to_menu=True, + add_to_toolbar=True, + status_tip=None, + whats_this=None, + shortcut=None, + parent=None): + """Add a toolbar icon to the toolbar. + + :param icon_path: Path to the icon for this action. Can be a resource + path (e.g. ':/plugins/foo/bar.png') or a normal file system path. + :type icon_path: str + + :param text: Text that should be shown in menu items for this action. + :type text: str + + :param callback: Function to be called when the action is triggered. + :type callback: function + + :param enabled_flag: A flag indicating if the action should be enabled + by default. Defaults to True. + :type enabled_flag: bool + + :param add_to_menu: Flag indicating whether the action should also + be added to the menu. Defaults to True. + :type add_to_menu: bool + + :param add_to_toolbar: Flag indicating whether the action should also + be added to the toolbar. Defaults to True. + :type add_to_toolbar: bool + + :param status_tip: Optional text to show in a popup when mouse pointer + hovers over the action. + :type status_tip: str + + :param parent: Parent widget for the new action. Defaults None. + :type parent: QWidget + + :param whats_this: Optional text to show in the status bar when the + mouse pointer hovers over the action. + + :returns: The action that was created. Note that the action is also + added to self.actions list. + :rtype: QAction + """ + + icon = QIcon(icon_path) + action = QAction(icon, text, parent) + action.triggered.connect(callback) + action.setEnabled(enabled_flag) + + if status_tip is not None: + action.setStatusTip(status_tip) + + if whats_this is not None: + action.setWhatsThis(whats_this) + + if shortcut is not None: + action.setShortcut(QKeySequence(shortcut)) + + if add_to_toolbar: + # Adds plugin icon to Plugins toolbar + self.iface.addToolBarIcon(action) + + if add_to_menu: + self.iface.addPluginToMenu( + self.menu, + action) + + self.actions.append(action) + + return action + + + def initGui(self): + """Create the menu entries and toolbar icons inside the QGIS GUI.""" + + icon_path = ':/plugins/QLocklayers/lock.png' + self.add_action( + icon_path, + text=self.tr(u'Lock layers'), + shortcut="Ctrl+R", + callback=self.lock, + parent=self.iface.mainWindow()) + icon_path = ':/plugins/QLocklayers/unlock.png' + self.clickPhotos = self.add_action( + icon_path, + text=self.tr(u'Unlock layers'), + shortcut="Ctrl+U", + callback=self.unlock, + parent=self.iface.mainWindow()) + + def unload(self): + """Removes the plugin menu item and icon from QGIS GUI.""" + for action in self.actions: + self.iface.removePluginMenu( + self.tr(u'&QLocklayers'), + action) + self.iface.removeToolBarIcon(action) + + def showMessage(self, title, msg, button): + msgBox = QMessageBox() + msgBox.setIcon(QMessageBox.Information) + msgBox.setWindowTitle(title) + msgBox.setText(msg) + msgBox.setStandardButtons(QMessageBox.Ok) + font = QFont() + font.setPointSize(9) + msgBox.setFont(font) + msgBox.setWindowFlags(Qt.CustomizeWindowHint | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint) + buttonY = msgBox.button(QMessageBox.Ok) + buttonY.setText(button) + buttonY.setFont(font) + msgBox.exec_() + + def lock(self): + """Run method that performs all the real work""" + + # Create the dialog with elements (after translation) and keep reference + # Only create GUI ONCE in callback, so that it will only load when the plugin is started + selectedLayers = self.iface.layerTreeView().selectedLayers() + requieredLayers = QgsProject.instance().requiredLayers() + selectedLayers.extend(requieredLayers) + QgsProject.instance().setRequiredLayers(selectedLayers) + self.showMessage(title='QLocklayers', msg='Lock selected layers succesfull.', button='OK') + + def unlock(self): + selectedLayers = self.iface.layerTreeView().selectedLayers() + requieredLayers = QgsProject.instance().requiredLayers() + + for lyr in selectedLayers: + try: + requieredLayers.remove(lyr) + except: + pass + QgsProject.instance().setRequiredLayers(requieredLayers) + self.showMessage(title='QLocklayers', msg='Unlock selected layers succesfull.', button='OK') diff --git a/README.md b/README.md new file mode 100644 index 0000000..819b03d --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ + + +# QLockLayers + +QGIS 3 plugin + +This tool can be used to lock/unlock selected layers on the project. Using button or shortcut `Ctrl-R` to lock selected layers and using `Ctrl-U` to unlock selected layers. + +* [QGIS Cyprus](https://www.facebook.com/qgiscyprus/) diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..168e2e3 --- /dev/null +++ b/__init__.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +""" +/*************************************************************************** + QCopycanvas + A QGIS plugin + This tool can be used to copy the map canvas and place it in the clipboard. + Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/ + ------------------- + begin : 2019-04-07 + copyright : (C) 2019 by Marios S. Kyriakou, KIOS Research and Innovation Center of Excellence (KIOS CoE) + email : mariosmsk@gmail.com + git sha : $Format:%H$ + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + This script initializes the plugin, making it known to QGIS. +""" + + +# noinspection PyPep8Naming +def classFactory(iface): # pylint: disable=invalid-name + """Load QCopycanvas class from file QCopycanvas. + + :param iface: A QGIS interface instance. + :type iface: QgsInterface + """ + # + from .QLocklayers import QLocklayers + return QLocklayers(iface) diff --git a/lock.png b/lock.png new file mode 100644 index 0000000..8ecc8f0 Binary files /dev/null and b/lock.png differ diff --git a/metadata.txt b/metadata.txt new file mode 100644 index 0000000..a71e165 --- /dev/null +++ b/metadata.txt @@ -0,0 +1,39 @@ +# This file contains metadata for your plugin. Since +# version 2.0 of QGIS this is the proper way to supply +# information about a plugin. The old method of +# embedding metadata in __init__.py will +# is no longer supported since version 2.0. + +# This file should be included when you package your plugin.# Mandatory items: + +[general] +name=QLockLayers +qgisMinimumVersion=3.0 +description=This tool can be used to lock selected layers on the project. +version=0.1 +author=Marios S. Kyriakou, KIOS Research and Innovation Center of Excellence (KIOS CoE) +email=mariosmsk@gmail.com + +about=This tool can be used to lock/unlock selected layers on the project. Using button or shortcut `Ctrl-R` to lock selected layers and using `Ctrl-U` to unlock selected layers. + +tracker=https://github.com/KIOS-Research/QLocklayers/issues/ +repository=https://github.com/KIOS-Research/QLocklayers/ +# End of mandatory metadata + +# Recommended items: + +# Uncomment the following line and add your changelog: +# changelog= + +# Tags are comma separated with spaces allowed +tags=python, lock layers, removable + +homepage=https://mariosmsk.com/2019/04/07/qlocklayers/ +category=Plugins +icon=icon.png +# experimental flag +experimental=False + +# deprecated flag (applies to the whole plugin, not just a single version) +deprecated=False + diff --git a/resources.py b/resources.py new file mode 100644 index 0000000..7d8518d --- /dev/null +++ b/resources.py @@ -0,0 +1,1374 @@ +# -*- coding: utf-8 -*- + +# Resource object code +# +# Created by: The Resource Compiler for PyQt5 (Qt v5.12.1) +# +# WARNING! All changes made in this file will be lost! + +from PyQt5 import QtCore + +qt_resource_data = b"\ +\x00\x00\x2e\x41\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ +\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ +\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ +\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ +\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ +\x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ +\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\ +\x00\x00\x07\x74\x49\x4d\x45\x07\xe3\x04\x07\x13\x14\x32\xcc\x4a\ +\xc6\x09\x00\x00\x2d\x0f\x49\x44\x41\x54\x78\xda\xed\xdd\x79\x9c\ +\x1d\x55\x9d\xf7\xf1\xcf\xbd\xbd\xa6\xf7\x4e\xd2\xe9\xce\xd6\xe9\ +\x74\x56\xb2\x08\x24\x24\x40\x02\x01\xc2\xbe\x2b\x8a\x28\x8e\xc8\ +\x36\x2a\x22\xea\x8c\xeb\xe8\xa3\x8e\xcf\xb8\x3d\xb3\xe8\xa8\x38\ +\xbe\x5c\x1e\x71\x14\xdc\x50\x11\x8c\xec\x20\x4b\x02\x49\x58\xb2\ +\xef\x5b\xa7\xd3\x49\xa7\xd3\x9d\xf4\xbe\xdf\xbe\x77\xfe\x20\x8c\ +\x88\x44\x4e\x75\xdf\xba\xa7\xaa\xce\xf7\xdd\xaf\x17\x7f\xf0\x3a\ +\xb9\xf7\x57\x75\xab\xbe\x75\xea\x54\xd5\xa9\x18\x12\x4d\x31\x72\ +\xa8\x64\x32\x13\x18\x43\x39\x65\x94\x51\x4e\x19\xe5\x14\x93\x4b\ +\x16\x79\xe4\x11\x23\x9f\x7c\xa0\x8f\x3e\x52\xf4\xd3\xcf\x10\x03\ +\x74\xd2\x4a\x2b\x6d\xb4\xd1\x46\x2b\x2d\x34\x52\x4f\x13\x83\xb6\ +\x17\x47\xfc\x11\xb3\x5d\x80\xa4\x4d\x3e\x13\x99\xce\x74\xaa\x99\ +\xc0\x04\xc6\x33\x96\x5c\xe2\xc4\x89\xfd\xd5\x1f\xf0\x9a\xff\xa6\ +\xe0\x35\xff\x7d\xfd\x5f\x92\x24\x03\xb4\xd0\xc8\x21\x0e\x52\xcf\ +\x6e\xf6\x70\x90\x3e\xdb\x0b\x2b\xe9\xa1\x00\x08\xb7\x6c\x66\x31\ +\x87\x5a\x6a\x99\xca\x24\x8a\xc8\x21\x87\x1c\xb2\xc8\x26\x9b\x78\ +\xda\x7e\xdd\x14\x49\x12\xc7\xff\x06\x19\xa4\x93\x83\xec\x63\x2f\ +\x7b\xd9\xc2\x4e\x12\xb6\x57\x82\x0c\x9f\x02\x20\x8c\xf2\x18\xcf\ +\x2c\xe6\x31\x9f\x99\x94\x51\x40\x3e\x79\xe4\x93\x4b\x3c\x43\xdf\ +\x9f\x64\x80\x3e\xfa\xe8\xa7\x87\x4e\x0e\xb0\x85\xcd\x6c\xa7\x8e\ +\xae\xe3\xfd\x08\x09\x0d\x05\x40\x98\x8c\x61\x26\x6f\x61\x1e\xb5\ +\x94\x53\x4c\x09\xa5\x14\x67\x6c\xa7\x3f\x91\x14\x3d\x74\xd0\x4e\ +\x27\x2d\xec\x66\x33\x9b\xd8\xc1\x31\xdb\x2b\x4a\x4c\x29\x00\xc2\ +\x60\x34\xb3\x99\xc3\x6c\xa6\x52\x49\x05\x63\x29\x21\xdb\x76\x49\ +\x6f\x20\x41\x3b\x2d\xb4\x70\x98\x3a\xb6\xb1\x55\x41\x10\x06\x0a\ +\x80\x20\x8b\x53\xc5\x42\xe6\x30\x9b\xc9\x8c\xa7\x2a\xa0\x3b\xfe\ +\xeb\x25\xe8\xa0\x91\x46\x0e\xb2\x87\x2d\x6c\x64\x1f\x43\xb6\x4b\ +\x92\x13\x51\x00\x04\x51\x8c\x22\x6a\x99\xc5\x4c\x6a\x98\xcd\x54\ +\xc6\x85\x62\xc7\x7f\xbd\x21\x8e\xb2\x97\x3d\x6c\x67\x27\xdb\xd9\ +\x4b\xb7\x46\x08\x82\x47\x01\x10\x34\x85\x54\x73\x12\x73\x98\xc3\ +\x2c\x66\x50\x6c\xbb\x9c\x34\xe8\x60\x17\x3b\xd8\xce\x2e\x76\xb0\ +\x97\x76\xdb\xe5\xc8\x6b\x29\x00\x82\x23\x9f\x09\x4c\x63\x16\x27\ +\x73\x1a\x33\x29\xb0\x5d\x4e\x9a\xf5\xb3\x97\x75\xbc\xcc\x36\xf6\ +\x70\x80\x1e\xdb\xe5\xc8\x2b\x14\x00\x41\x10\xa7\x8a\x29\x4c\xe3\ +\x54\x96\x32\x27\x12\x47\xfd\x13\xe9\x66\x17\xcf\xb3\x96\x1d\xec\ +\xe7\x30\x49\xdb\xe5\x88\x02\xc0\xb6\x02\xaa\xa8\xe6\x2c\x2e\xe4\ +\x14\x4a\x6c\x17\x93\x21\x1d\xac\xe3\x71\x9e\xe3\x20\x0d\x74\xdb\ +\x2e\xc6\x6d\x0a\x00\x7b\xb2\x28\x65\x0c\x73\xb9\x8c\xcb\xa8\x22\ +\xcb\x76\x39\x19\x96\xe4\x28\x4f\xf0\x5b\x36\xd0\x42\xbb\xfa\x02\ +\xb6\x28\x00\xec\xc8\xa6\x88\x2a\x2e\xe6\x5a\x96\x38\xfd\x1b\xa4\ +\x58\xc9\xbd\x3c\x4e\x13\x9d\x7a\xe0\xc8\x06\x97\x37\x3e\x5b\xb2\ +\x18\xc5\x14\xde\xc1\x8d\xd4\xd8\x2e\x25\x20\x1a\xf8\x35\xf7\xb0\ +\x9b\x1e\x86\x74\xa9\x50\xa2\x2d\x97\xd3\xf8\x2f\x9a\xdf\xe0\xb9\ +\x3b\xb7\xff\x5a\xf9\x19\x67\x93\x6f\xfb\xe7\x11\xf1\x4f\x31\x6f\ +\xe7\x51\x7a\xad\xef\x6c\x41\xfd\xeb\xe1\x61\xde\x46\x91\xed\x9f\ +\xc9\x25\x3a\x05\xc8\x94\x7c\x2e\xe2\xfd\x9c\x49\x31\xd9\x5a\xeb\ +\x27\x90\x22\x41\x17\x2f\xf3\x63\xee\xd7\xd5\x81\xcc\xd0\xa6\x98\ +\x09\xf9\x5c\xc9\xfb\x38\x99\xb1\xe4\x59\x5e\xe3\x29\xfa\xe9\xa1\ +\x9f\x04\x49\xfa\x19\x38\xfe\x7f\x73\xc9\x23\x4e\x36\x79\x14\x04\ +\xa0\xc2\x01\x5a\x58\xc7\x4f\xf8\xa3\xa6\x1d\xf1\x9f\x02\xc0\x6f\ +\xd9\x5c\xc9\x7b\x79\x0b\xe3\x19\x95\xc1\xb5\x9d\x62\x90\xa3\x34\ +\xd1\xcc\x11\x9a\x38\x46\x3b\x9d\xc7\xff\xfa\x49\x92\x24\x05\xc7\ +\xff\x0b\x10\x23\x7e\xfc\xbf\x71\xf2\x29\xa2\x98\x62\x8a\x29\x65\ +\x34\x95\x8c\xa3\x82\x4a\xc6\x90\x93\xd1\xea\x7b\x39\xc4\x06\x7e\ +\xc6\x0a\x3d\x48\xe4\x2f\x05\x80\x9f\xb2\x38\x85\xdb\x59\x4c\x0d\ +\x05\x19\x58\xd3\xfd\x34\xd3\x40\x03\x0d\x1c\xe0\x10\x2d\xc7\xa7\ +\xec\xe8\xa7\x8f\x01\x06\x49\x30\x48\x82\xc4\x9b\x5e\x71\x8f\x93\ +\x4d\x36\x39\x64\x93\x43\x2e\xf9\xe4\x91\x47\x3e\xf9\x8c\x65\x22\ +\x93\x8e\xff\x55\x90\xe7\xfb\xd2\xa4\xe8\x61\x1f\x6b\xb9\x93\x8d\ +\x0a\x01\xff\x28\x00\xfc\x92\xc3\x14\xae\xe3\x22\x4e\xa1\xd8\xd7\ +\xb5\xdc\x4b\x1d\x75\xec\x63\x1f\x07\x69\xa5\xeb\xf8\x71\xbe\x8b\ +\x3e\xd2\x79\x41\x2d\xf6\x9a\x9e\x41\x11\xe5\x4c\x64\x2a\x53\x99\ +\xca\x14\x46\xf9\xb8\x6c\x29\x3a\x59\xc7\x23\xfc\x9a\x7a\xdd\x25\ +\xe0\x0f\x05\x80\x1f\xe2\x8c\xe7\x22\x2e\xe3\x74\x26\xfb\xf4\x0d\ +\x09\x9a\xd9\xcd\x6e\xea\x68\xa0\x99\xa3\xb4\xd0\x42\x47\xc6\x66\ +\xe7\xcb\xa6\x94\xb1\x8c\x61\x2c\x63\x99\x4c\x0d\xd3\x99\xce\x58\ +\xdf\x1e\x59\xae\x67\x0d\x0f\xf2\xa8\x9e\x1d\xf0\x83\x02\x20\xfd\ +\xca\x58\xc4\x95\x9c\xcb\x1c\x1f\x6e\xef\x1d\xe0\x08\xfb\xa8\xa3\ +\x8e\x7a\x1a\x38\xc0\x61\x8e\xa5\xf5\x48\xef\x55\x8c\xd1\x8c\x67\ +\x12\x93\x98\xc2\x14\x6a\xa8\x65\x1c\x39\x69\xff\x96\x21\x36\xf3\ +\x14\x2b\x78\x91\x36\x8b\xcb\x1a\x49\x0a\x80\xf4\xca\xa6\x96\x0b\ +\xb9\x9a\x25\x14\xa6\xf9\x93\xbb\x68\x60\x1f\xbb\xd9\xc5\x5e\xea\ +\x38\x40\x87\xed\x45\x7d\x9d\x52\x26\x51\x43\x2d\x53\xa9\xa1\x96\ +\x6a\xca\xd3\xbe\xfc\xcf\xf1\x20\x8f\xb1\x4b\x27\x03\xe9\xa4\x00\ +\x48\xa7\x71\x2c\xe4\x32\x2e\x66\x46\x5a\x3f\xb5\x99\xfd\x1c\xa0\ +\x8e\xed\x6c\x61\x27\x47\x03\xdd\x11\x8e\x51\x42\x2d\x73\x99\xcb\ +\x2c\xaa\x99\xc2\xd8\xb4\x7e\xfa\x7e\x1e\xe6\x7e\x5e\xe2\x88\xed\ +\xc5\x8c\x0e\x05\x40\xba\xe4\x31\x83\x0b\xb9\x96\x05\x69\x1b\x21\ +\x4f\xd2\x49\x03\xf5\x6c\xe2\x05\x5e\xa6\xe1\x7f\xaf\xda\x87\x41\ +\x1e\x93\x58\xc0\x22\xe6\x51\xcd\xa4\x34\xce\x5d\xdc\xcf\x8b\xdc\ +\xcb\xe3\xec\xa6\xdf\xf6\x22\x46\x83\x02\x20\x3d\x46\xb3\x80\xf7\ +\x71\x31\x15\x69\xf9\xb4\x24\xbd\x1c\xa6\x91\x6d\x3c\xc3\x93\x21\ +\x1e\xfc\x8a\x33\x9e\xe5\x2c\x63\x36\x13\xa8\x64\x54\x9a\x62\xe0\ +\x08\x0f\xf3\xdf\xac\xa3\xd5\xf6\xe2\x89\xc0\x2b\x9b\xf9\xad\x6c\ +\x60\x20\x2d\xf7\xc3\x0f\x70\x94\x2d\xdc\xcb\xad\x4c\xb3\xbd\x60\ +\x69\x33\x9d\xbf\xe7\x37\x6c\xa2\x89\xfe\x34\xad\xa3\x75\xdc\xc2\ +\x24\xeb\xef\x44\x10\x21\x8f\x69\x7c\x93\x96\x34\x6c\xd6\x49\x7a\ +\x68\xe2\x45\xfe\x83\x65\xe4\xda\x5e\xac\xb4\xcb\x66\x21\x5f\x64\ +\x15\x4d\xf4\x90\x4c\xc3\xda\x6a\xe5\x47\xcc\xc8\xc0\x0d\x49\x22\ +\x27\x14\x23\x9f\xe5\x6c\x4c\xc3\xb1\x3f\x49\x1f\x4d\xfc\x96\x6b\ +\x19\x67\x7b\xa1\x7c\x35\x8e\xeb\xf8\x1d\x47\xe8\x4b\x43\x08\x0c\ +\xb0\x9e\x73\xc9\xd7\x69\xac\xd8\x32\x8a\x4f\xa5\xa9\xe3\xdf\xcc\ +\x77\x59\x10\xc1\xe3\xfe\x1b\xc9\xe3\x34\xfe\x2b\x2d\x7d\xa6\x14\ +\xfd\x7c\xdc\xd7\x7b\x11\x45\x4e\x20\x8b\x5a\xee\x4f\xcb\x46\xbc\ +\x87\xcf\x33\xd9\xb1\xf3\xd9\x38\x55\x7c\x84\xed\x69\x59\x7f\x0f\ +\x32\xc3\xb9\x19\x15\xc5\xb2\x02\x2e\x49\xc3\xb0\x5f\x82\xcd\xfc\ +\x1d\x15\xe4\x3b\xb6\xfb\x03\xc4\xc9\xa7\x82\x1b\xd8\x4a\x62\xc4\ +\xa7\x02\xeb\xb8\x28\x72\xef\x51\x90\x00\xab\xe4\x76\xf6\x8c\x70\ +\xf7\xef\xe3\x65\x3e\x42\x35\x85\x0e\x9f\xc3\xc6\x28\xa4\x9a\xf7\ +\xf3\x32\x7d\x23\x8c\x80\x7d\x7c\x8c\xf1\xb6\x17\x47\x5c\x10\x63\ +\x3e\xdf\xa1\x81\xa1\x11\x6c\xb0\x3d\xac\xe6\x0e\xe6\x30\xda\xe1\ +\x9d\xff\xcf\xca\x98\xc3\x47\x59\x4b\xcf\x08\xd6\xe8\x10\x07\xf9\ +\x16\xf3\xb4\x3e\xc5\x5f\x59\x9c\xcd\xdd\x1c\x19\xc1\xa6\x3a\xc8\ +\x66\xbe\xc4\x22\xc6\x6a\x63\xfd\x5f\x31\x2a\x58\xc4\x3f\xf1\xf2\ +\x88\x7a\x55\x47\xf8\x39\xe7\x84\xf2\x35\xaa\x16\x69\xf0\xc4\x8b\ +\x7c\x2e\xe1\xc3\x5c\xc0\x98\x61\xfe\xfb\x14\xfb\xf8\x25\xdf\xe3\ +\x21\x76\x68\xce\xbb\xbf\xd0\x43\x23\xbb\xd9\x44\x0b\xa3\x19\x33\ +\xcc\x68\x2c\x64\x32\x93\xe8\x66\x7f\xc6\x1e\x8b\x8e\x00\x05\x80\ +\xb9\x32\xae\xe1\x83\x2c\xa5\x74\x98\xff\xfe\x10\x7f\xe0\x2e\x7e\ +\xc7\x4b\xb4\xa2\xd9\xef\xff\x5a\x17\xf5\xec\xa4\x8e\x3e\x2a\x86\ +\x39\x33\x70\x3e\x13\x98\xcc\x20\xfb\x35\x9b\xa0\x29\x05\x80\xa9\ +\xf1\xbc\x8b\xbf\x67\xd1\x30\x47\x9b\xfb\x78\x96\xbb\xb9\x87\x67\ +\x38\xac\x09\xae\x4e\x28\x49\x2b\x7b\xd8\xc9\x11\x72\x19\x3f\xac\ +\xce\x7c\x2e\x13\xa8\x26\xc5\x01\xba\x6c\x2f\x4c\x38\x28\x00\xcc\ +\x4c\xe2\xef\xb8\x95\x79\xc3\xbc\x55\x67\x2f\xbf\xe3\x2e\x1e\x60\ +\x9f\x9e\x65\x7f\x53\x83\x34\xb2\x8d\x7a\x7a\x29\x19\xd6\xa9\x56\ +\x36\x95\xd4\x12\xe3\x00\xed\xb6\x17\x25\x0c\x14\x00\x26\xaa\xb9\ +\x81\xf7\x33\x7d\x58\x6b\xab\x93\x67\xf8\x39\x3f\x64\x3d\x3d\xb6\ +\x17\x23\x34\x7a\xd9\xc7\x7a\x3a\xc8\x61\xdc\x30\x22\x37\xce\x58\ +\x66\x90\x62\x5f\xe0\x26\x4d\x91\x50\x9a\xcc\x17\x39\x34\xac\x7b\ +\xd7\x87\x38\xc0\x0f\x38\xdd\x91\x5b\x7c\xd3\x2d\x8f\x25\xfc\x90\ +\x3d\xc3\xba\xe0\x9a\xe4\x20\x5f\xa0\xda\xf6\x22\x48\xf8\x4d\xe2\ +\x9f\x69\x19\xc6\xee\x9f\xa4\x9b\x97\xf8\x3c\x45\xba\xdc\x37\x6c\ +\x31\x0a\xf8\x18\x2f\xd0\x3d\xac\xf8\x3d\xc6\x97\x15\x01\x32\x12\ +\x71\x2a\xf9\xfa\xb0\x6e\x50\x19\xe4\x30\x2b\x38\xdf\xf6\x02\x44\ +\xc2\x39\x3c\xc0\x61\x06\x87\xf1\x2b\xf4\xf2\x1f\x54\x3a\x78\x9b\ +\xb5\xa4\x45\x9c\x71\x7c\x6d\x58\xb7\xa4\xf4\xb3\x83\xaf\xa6\x79\ +\x3e\x3c\x97\x55\xf0\x75\x76\x0e\x73\x32\x91\x2f\x33\x4e\x11\x20\ +\xde\xc5\xa8\xe0\x0b\xc3\x3a\xfb\xec\x63\x25\x6f\x53\xc7\x3f\xad\ +\x62\xbc\x83\xe7\x86\x35\x8b\x40\x92\xcf\x52\xa1\x5f\x43\xbc\x1a\ +\xc3\x27\x86\x35\xfc\xd4\xcd\x2f\x99\x6f\xbb\xf8\x48\x9a\xc3\xdd\ +\x74\x0d\x2b\x92\x3f\xa3\xde\x98\x78\x33\x8e\x4f\x0c\xeb\x31\xd5\ +\x7d\x7c\x82\x32\xdb\xc5\x47\x56\x19\x9f\xa2\x6e\x18\xbf\x4a\x82\ +\xcf\x50\x69\xbb\x78\x09\x8f\x2a\x3e\x49\xc7\x30\x36\xb4\xa7\x78\ +\x6b\x46\x5e\x03\xea\xaa\x18\x85\x5c\xc3\xb3\xc3\xf8\x65\x3a\xf8\ +\xb8\x22\x40\xcc\x8c\xe6\x36\x1a\x3d\x9f\x6d\x26\xf8\x25\xcb\x34\ +\x3d\x95\xef\x0a\x38\x8b\xbb\x3d\xf7\xce\x92\x34\x72\xbb\x4e\x04\ +\xe4\xcd\x15\xf3\x3e\xb6\x7b\xde\xfd\x7b\xf9\x16\x0b\xc9\xb7\x5d\ +\xbc\x13\xf2\x39\x85\x6f\xd0\xed\x39\x02\x76\x70\x13\xc5\xb6\x8b\ +\x97\x60\xcb\xe3\x9d\xac\xf1\x7c\xcd\xf9\x08\x9f\x65\xb6\xa6\xa8\ +\xce\x98\x5c\x66\xf1\x39\x9a\x3d\xfe\x4a\x83\xac\xe6\x5a\xfd\x4a\ +\x72\x62\x59\x5c\xc1\xa3\xf4\x7a\x1e\xf8\xfb\x10\x93\x35\x11\x45\ +\x46\x65\x33\x99\xdb\x3d\x0f\x08\xf6\xf2\x30\x97\xe9\xf9\x17\x39\ +\x91\x73\xf8\x8d\xe7\xc1\xbf\x1d\xdc\xcc\x58\xdd\x6a\x92\x71\x71\ +\xc6\x72\x0b\x3b\x3d\x0f\x06\xfe\x9a\xb3\x6d\x97\x2e\xc1\x34\x8f\ +\x1f\x79\x9c\xad\x3e\xc1\x36\x6e\xd0\xdd\xfe\x96\xc4\x28\xe6\x46\ +\xb6\x7b\x1c\x10\x6c\xe6\xfb\xcc\xb1\x5d\x7a\x70\xa8\x3b\xf4\xaa\ +\x4a\x6e\xe5\x1a\xaa\x3c\xfc\x8b\x41\x36\xf1\x9f\xdc\xa3\xd9\x67\ +\xac\x19\x60\x0b\x3d\x4c\x61\x8c\x87\xed\xb8\x80\x0a\x92\x6c\xd3\ +\x84\x21\xf2\x5a\x05\xbc\x9f\xad\x9e\xc6\xfe\x7b\x59\xc3\x0d\x0a\ +\x50\xeb\xb2\xb9\x91\xb5\x9e\xa6\x15\x4f\xb2\x95\xf7\xeb\x82\xad\ +\xfc\x59\x9c\x8b\x3d\x8e\xfd\xf7\xf1\x02\xef\x55\xd7\x3f\x10\xe2\ +\xbc\x8f\xb5\x9e\x86\x6e\x07\x78\x9e\x8b\x34\x6e\x23\xaf\x3a\x89\ +\x87\x3c\x5d\x57\xee\xe3\x45\xde\xaf\xa3\x7f\x60\xc4\xb9\x85\x17\ +\x3d\xf5\x02\xba\x78\x90\xd9\xb6\xcb\x96\x60\x28\xe3\x87\xb4\x7a\ +\xd8\x78\xfa\x59\xc7\x07\xb4\xfb\x07\x4a\x16\xb7\xb1\xce\xd3\x03\ +\xc3\xad\x7c\x5f\x4f\x6d\x08\x64\x73\xb3\xa7\x5b\x4a\x06\xd9\xcc\ +\x87\x75\xd5\x3f\x70\xb2\xf9\x10\x9b\x3c\x9d\xc6\x35\xf3\xf7\xfa\ +\x1d\x65\x8e\xa7\xd7\x7c\x25\xd9\xc9\x47\xb4\xd9\x04\x52\x0e\x1f\ +\x63\x97\x87\xdf\x72\x88\x7a\x66\xd9\x2e\x5a\xec\x8a\xf3\x27\x4f\ +\x47\x8d\x26\x3e\xab\xf7\xd0\x06\xd6\x28\x3e\x4d\xa3\xa7\xde\xdc\ +\xd3\x3a\x95\x73\x59\x3e\x9f\xf3\xb0\xb9\xa4\x68\xe5\x73\x3a\x6f\ +\x0c\xb4\x52\xfe\x89\x63\x9e\x7e\xd3\x4f\xea\x11\x2e\x57\xe5\x72\ +\x16\xed\x1e\x36\x95\x5e\xbe\xc2\x64\x5d\xfa\x0b\xb4\x18\x93\xf8\ +\x17\x4f\xd3\xb8\xb6\xb3\x4c\x0f\x08\xb9\x28\xc6\x14\x56\x7a\xb8\ +\xf5\x67\x88\x6f\x73\x92\x3a\x8c\x81\x97\xc5\x1c\xee\xf4\x34\xaa\ +\xf3\xb4\xcb\xb1\xee\xee\x06\x5d\xc1\x4d\xbc\x8b\x1c\xe3\xf6\xf7\ +\xf1\x03\xb6\xe8\xbd\xb3\x81\x97\xa2\x9d\x63\x8c\x35\xbe\xca\x1f\ +\xa3\x92\x16\x76\xe8\xbd\x4d\x6e\xc9\x67\x39\x7b\x3c\x74\x14\xd7\ +\x71\x39\x85\xb6\x8b\x16\x43\x85\x5c\xce\x4b\x1e\x7e\xdd\xdd\x2c\ +\xd7\x48\x80\x5b\x66\x71\x8f\x87\x6e\xe2\x41\x6e\x62\xb4\xed\x92\ +\xc5\x83\x72\x6e\xe2\x90\x87\xd3\xbb\xbb\x99\x69\xbb\x64\x3b\xdc\ +\x3c\x05\xa8\xe0\x2a\x6e\x35\x3e\xa2\xf7\xf0\x4d\xee\xa5\xc5\x76\ +\xd1\xe2\x41\x3f\x87\x49\x72\xa6\xe1\x1d\x1b\x31\x26\xb0\x9f\x3a\ +\x9d\x06\xb8\x21\x87\xf3\x59\xe5\xa1\x83\xf8\x53\xa6\x39\x1a\x94\ +\x61\x96\xc5\x74\xee\xf1\xf0\x2b\x3f\xc3\x79\xba\xc1\xcb\x0d\xb5\ +\xfc\x9b\x87\xbb\xc6\xd7\x73\x86\xde\xee\x1b\x4a\xb9\x9c\xc9\x26\ +\xe3\xdf\xb9\x8f\xaf\x53\x63\xbb\x64\xf1\xdf\x28\xde\xcd\x56\xe3\ +\x4b\x44\xed\xdc\xac\xab\xc4\xa1\x95\xc7\xad\xb4\x19\x5f\xea\xdd\ +\xcc\x75\x1a\x0a\x8c\xbe\x79\xfc\x7f\xe3\x4d\xa2\x97\xbb\x19\xe5\ +\xee\x35\xe2\x08\xc8\xe3\xa7\xc6\x33\x05\x24\xf9\x11\x73\x6d\x17\ +\x2c\xfe\x2a\xe4\x43\xec\x37\xdc\x20\x06\x78\x41\xcf\x8c\x87\xde\ +\x0c\x5e\x64\xc0\xf0\x17\xaf\xe7\x43\x7a\xd2\x23\xca\x62\x9c\xc1\ +\x7d\xc6\x97\x86\xea\xb9\xde\x76\xc1\x92\x06\x37\x50\x6f\x7c\xc9\ +\xf7\xb7\x2c\x56\x8f\x2f\xba\x0a\xf9\x22\x47\x0d\x37\x85\x76\x7e\ +\xaa\x51\xe1\x48\xc8\xe2\xbf\x8d\x9f\xf9\x68\xe1\xf3\xba\xe1\x2b\ +\xba\xce\xe7\x71\xc3\x0d\x21\xc1\x8b\xea\xfe\x47\xc6\x5c\x5e\x36\ +\x9e\x3c\xfc\x51\xce\xb3\x5d\x6e\x26\xb9\x34\x31\x62\x16\x17\x72\ +\x9a\x61\xdb\x03\xfc\x84\xed\xb6\x0b\x96\x34\xd9\xc2\x4f\x69\x30\ +\x6c\x7b\x3a\x97\xa8\xe7\x17\x4d\x17\xf2\x8c\xe1\x51\xa0\x83\x9f\ +\xea\xe2\x5f\xa4\xe4\x73\x37\x9d\x86\xbf\xfe\xd3\x2c\xb7\x5d\xae\ +\xa4\x5f\x16\xff\x69\x3c\xf5\xe7\x2a\xce\xb2\x5d\xae\xa4\x55\x8c\ +\x65\x3c\x67\xf8\xeb\xb7\xf2\x6d\x77\xfa\x00\xee\x9c\x02\x9c\xc3\ +\x22\x4a\x8c\x5a\x1e\xe2\x71\x5e\xb0\x5d\xae\xa4\x55\x8a\x35\x3c\ +\x49\xa3\x51\xdb\x12\x16\xb8\x73\x00\x70\x25\x00\xb2\xb8\x86\xd9\ +\x46\x4b\x9b\xe4\x45\x7e\x43\xbf\xed\x82\x25\xcd\xfa\xb9\x97\x97\ +\x48\x19\xb4\x8c\x33\x9b\x6b\x5c\x79\xfa\xc3\x95\x00\x58\xc8\x42\ +\x4a\x8d\x5a\xee\xe4\x11\x76\xda\x2e\x57\x7c\xb0\x9d\x47\xd9\x65\ +\xd4\xb2\x8c\xd3\x58\x60\xbb\xdc\xcc\x70\x25\x00\xae\xa4\xc6\x28\ +\xd3\xfb\x59\xc5\xc3\x3a\xfe\x47\x52\x3f\x0f\xb1\x8a\x01\x83\x96\ +\x59\xd4\x70\xa5\xed\x72\x33\xc3\x8d\x00\x98\xc2\x39\x86\x13\x7a\ +\x6c\xe5\x49\xea\x6d\x97\x2b\x3e\xa9\xe3\x4f\x86\x17\x77\xc7\x70\ +\x0e\x93\x6d\x97\x9b\x09\x6e\x04\xc0\xc5\xd4\x1a\x3d\xd2\x3b\xc0\ +\x4a\x9e\xd3\xbc\x7f\x91\x95\x60\x25\xcf\x18\xf5\xef\x72\xa9\xe5\ +\x22\xdb\xe5\x66\x82\x0b\x01\x50\xc4\xd5\x94\x1b\xb5\xdc\xce\x2a\ +\x0e\xd8\x2e\x57\x7c\x54\xcf\x4a\xc3\x11\x9e\xd1\xbc\x8d\x22\xdb\ +\xe5\xfa\xcf\x85\x00\x58\xcc\xc9\x46\x6f\x83\x1f\xe0\x71\x5e\x60\ +\xc8\x76\xb9\xe2\xa3\x21\x5e\xe4\x09\xa3\x71\x80\x51\x9c\xc2\x22\ +\xdb\xe5\xfa\x2f\xfa\x01\x10\xe3\x7a\x4a\x8d\x9e\xf0\xda\xcd\xb3\ +\xec\xb7\x5d\xae\xf8\xac\x8e\x67\xd8\x6d\xd0\x2e\x46\x29\xef\x8a\ +\xfe\x93\x81\xd1\x0f\x80\x71\x2c\x37\x7a\xc6\x7b\x88\x87\xd8\xa8\ +\xe3\x7f\xe4\x0d\xb1\x91\x47\x8c\x7e\xe7\x51\x9c\xcf\x58\xdb\xe5\ +\xfa\x2d\xfa\x01\x70\x31\xe3\x8c\x96\xf2\x30\xcf\x6a\xfc\xdf\x09\ +\xfb\x79\x86\x26\x83\x76\x59\x54\x71\x81\xed\x62\xfd\x16\xf5\x00\ +\x88\xf3\x4e\xa3\xf1\xff\x14\x8f\xb0\x53\xe3\xff\x4e\x48\xb0\x93\ +\xc7\x8c\x5a\xe6\x72\x5d\xe4\xf7\x90\x48\x8b\x53\x45\x9f\xd1\x03\ +\x20\x3d\x5c\x6b\x34\x50\x28\x51\x50\xc0\x75\x86\x33\x05\xf6\x31\ +\x2e\xda\xe3\x00\xd1\xce\xb7\x1c\xae\x31\x7c\xac\xf7\x29\xb6\xd1\ +\x6b\xbb\x5c\xc9\x90\x1e\xb6\xb2\xd2\xa8\x65\x1e\x6f\xd5\xa4\xf0\ +\xe1\x55\xcc\x6a\xc3\x47\x40\xdf\x6b\xf8\xa4\xa0\x44\x43\x29\x37\ +\x19\x3f\x1a\x5e\x6c\xbb\x58\x19\x9e\x2c\x66\x1b\xce\x07\xbb\x8b\ +\xf9\xd1\xee\xe8\xc9\xeb\xc4\x78\x0b\x3b\x8d\xb6\x8d\x81\x68\xbf\ +\x14\x3e\xca\xa7\x00\x05\x5c\x68\xf8\xfa\xef\x07\x68\x31\x7a\x50\ +\x54\xa2\x22\x45\x0b\x0f\x19\xb5\xcc\xe1\xdc\x28\x4f\x15\x1e\xf5\ +\x00\x30\x91\xe0\x41\x5a\x6d\x17\x2b\x19\x76\x8c\x15\x86\x57\x7d\ +\x2e\xd4\xf0\x70\x18\x65\x31\x97\x16\xa3\x4e\xde\x4a\xaa\x75\x02\ +\xe0\x9c\x18\x53\x0c\x47\x88\x8e\x30\x27\xba\x07\xca\xc8\x2e\x18\ +\x85\x2c\x30\x7c\x04\xf8\x7e\xda\x74\x02\xe0\x9c\x14\x6d\xdc\x6f\ +\xd4\x72\x0c\xa7\x46\xf7\x5d\x01\xd1\x0d\x80\x12\xce\x31\x3a\xae\ +\xf7\xf0\xa8\xde\x0b\xef\xa4\x1e\x1e\xa1\xcf\xa0\x5d\x9c\x65\xd1\ +\xbd\x46\x14\xdd\x00\x28\x65\x89\x51\xbb\xf5\xd4\xe9\x0e\x40\x27\ +\x0d\xb2\x97\x8d\x46\x2d\x97\x1a\x4e\x27\x17\x42\x51\x0d\x80\x3c\ +\x26\x52\x6b\xd4\xf2\x41\x4d\x00\xe6\xac\x7e\xc3\x2b\x01\xd3\x98\ +\x10\xd5\xdb\x81\xa2\x1a\x00\x25\xcc\x35\xba\x07\x30\xc1\x23\x0c\ +\xda\x2e\x56\x2c\x19\xe4\x61\xa3\xde\x5f\x3e\x73\xa2\x7a\x12\x10\ +\xd5\x00\x28\xe3\x54\x83\x56\x49\xea\xd9\xa4\x47\x80\x9d\x35\xc4\ +\x7a\x1a\x48\x1a\xb4\x3c\x95\x32\xdb\xc5\xfa\x23\xaa\x01\x50\xce\ +\xc9\x06\xad\x06\x79\x4c\x27\x00\x0e\x4b\xd1\xc7\x9f\x8c\xfa\x00\ +\xa7\x28\x00\xc2\x24\x87\x71\xcc\x34\x68\x97\xe0\x71\xdb\xa5\x8a\ +\x65\x8f\x19\x9d\x02\xce\x64\x5c\x34\x5f\x17\x16\xcd\x00\x28\x63\ +\x16\xf9\x6f\xda\x2a\x45\x2f\xcf\xdb\x2e\x55\x2c\x7b\x8e\x3e\x83\ +\xbb\x40\x0a\x98\x65\x38\xb1\x6c\xc8\x44\x33\x00\x46\x33\xcb\xa0\ +\x55\x82\xbd\x1c\xb4\x5d\xaa\x58\xb6\xdf\xf0\x32\xb0\x02\x20\x44\ +\xca\x98\x66\xd0\xaa\x4f\xc7\x7f\x01\x9e\x37\xba\x1d\xa8\x36\x9a\ +\xa3\x00\xd1\x0c\x80\x72\x66\x18\xb4\xea\xe5\x59\xdb\x85\x4a\x00\ +\x3c\x6b\x34\x15\xcc\x0c\x05\x40\x58\x64\x33\x86\x09\x06\xed\xfa\ +\x58\x6d\xbb\x54\x09\x00\xb3\x1e\xc0\x24\xc6\x44\x71\x18\x30\x8a\ +\x01\x30\x9a\x6a\x83\x29\x1c\x06\x69\xe4\xb0\xed\x52\x25\x00\x0e\ +\xd1\x64\x70\x25\x20\x9b\xea\x28\xf6\x01\xa2\x18\x00\x63\xa8\x31\ +\x68\xd5\xcb\x76\xdd\x02\x24\xc0\x10\x3b\x8c\xfa\x00\x53\x18\x63\ +\xbb\xd4\xf4\x8b\x62\x00\x94\x1b\xbd\xd7\xb5\x87\x6d\xb6\x0b\x95\ +\x80\xd8\x66\xf4\x3c\xe8\x64\xc3\xc7\xcb\x43\x25\x8a\x01\x50\x4a\ +\x95\x41\xab\x5e\xb6\xda\x2e\x54\x02\xc2\x6c\x46\xe8\xf1\x51\x7c\ +\x1e\x20\x8a\x01\x50\x4c\xa5\x41\x2b\xf5\x00\xe4\x55\x5b\x8c\x7a\ +\x00\xe3\x14\x00\x61\x90\x45\xa9\x41\x57\x6d\x88\x36\x1a\x6c\x97\ +\x2a\x01\x71\x80\x76\x83\xf1\xa0\xb1\x94\x44\x6f\x7f\x89\xdc\x02\ +\x51\x40\xb9\xc1\x6d\xc0\x7d\x1c\x36\x1a\xf8\x11\x17\xf4\x72\xc4\ +\xe0\x95\xe1\xa3\x18\x1d\xbd\xf9\x81\xa3\x17\x00\xa5\x54\x18\xb4\ +\xea\xd5\xf1\x5f\x5e\xa3\xc1\xe8\x24\x60\x4c\xf4\x66\x06\x8a\x5e\ +\x00\x94\x19\x5d\xac\xe9\xe5\x90\xed\x42\x25\x40\x0e\x1a\x0d\x03\ +\x56\x28\x00\x82\xaf\xc4\xe8\x62\x4d\xaf\x1e\x03\x92\xd7\x68\x30\ +\x0a\x80\xd1\x0a\x80\xe0\x2b\x34\x1a\xab\x55\x00\xc8\x6b\x99\xf5\ +\x00\x4a\x34\x06\x10\x7c\xa3\x28\x32\x68\xd5\xa7\xdb\x80\xe5\x35\ +\x1a\x8d\x86\x84\x8b\x14\x00\xc1\x67\x16\x00\x03\x1c\xb5\x5d\xa8\ +\x04\x48\xab\xc1\x55\x00\x28\x8a\xde\x4b\xc2\xa2\x17\x00\x05\x46\ +\xaf\x73\x1e\xa4\xdd\x76\xa1\x12\x20\xa6\x01\xa0\x1e\x40\xe0\x15\ +\x18\xf4\x00\x06\xe9\x30\xfa\xc1\xc5\x15\xfd\x74\x19\xcc\x0b\x54\ +\xac\x1e\x40\xf0\x99\x04\x40\xbf\x8e\xff\xf2\x3a\xed\x06\xf3\x43\ +\xab\x07\x10\x78\xb9\xe4\x19\x4c\xdb\xd0\x4f\x87\xed\x42\x25\x60\ +\x4c\x02\x20\x9b\x7c\x72\x6c\x17\x9a\x5e\x51\x0b\x80\x6c\xa3\x1f\ +\x68\x90\x2e\xdb\x85\x4a\xc0\x74\x19\x9c\x14\xc6\xc8\x89\xda\xac\ +\x40\x51\x0b\x80\x2c\x83\xb9\x80\x60\x48\x23\x00\xf2\x3a\x03\x46\ +\x6f\x08\x32\xdb\xbe\x42\x24\x6a\x01\x90\x6d\x94\xd0\x49\xbd\x0f\ +\x50\x5e\x67\xd0\x68\x7e\x28\xb3\xed\x2b\x44\xa2\x16\x00\x66\x09\ +\xad\x00\x90\xd7\x1b\x54\x0f\x20\x0a\x4c\x4f\x01\x14\x00\xf2\x97\ +\xcc\x02\x40\x3d\x80\x80\xd3\x29\x80\x0c\x8f\x4e\x01\x22\x21\x6e\ +\xb4\x44\x29\xcd\x07\x2c\xaf\x93\x30\x78\x43\xa0\xe9\xf6\x15\x22\ +\x11\x5b\x1c\x62\xc4\x0c\x5a\xa5\x8c\xba\x7b\xe2\x92\xa4\x51\x00\ +\x98\x6d\x5f\x21\x12\xb5\x00\x10\x11\x0f\x14\x00\x22\x0e\x53\x00\ +\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\ +\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\ +\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\ +\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\ +\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\ +\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\ +\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\ +\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\ +\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\ +\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\ +\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\ +\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\ +\xe2\x30\x05\x80\x88\xc3\xb2\x6d\x17\x60\x45\x9c\x5c\x0a\x6c\x17\ +\x21\x81\x92\xeb\xe6\xc1\x30\x6a\x01\x10\x37\xfa\x19\x0b\x38\x89\ +\x0b\x6c\x97\x2a\x81\x72\x92\xd1\x21\xc1\x6c\xfb\x0a\x91\x68\x04\ +\x40\x8c\x38\xd9\x64\x93\xcd\x04\x46\x1b\xb4\x9f\xc0\x6d\xdc\x66\ +\xbb\x68\x09\xa1\xd1\x4c\xa0\x95\x21\x12\x24\x18\x22\x65\xbb\x9c\ +\x91\x8b\xd9\x2e\x20\x2d\x8a\x98\xc5\x69\x9c\xc1\x62\xa6\x32\xca\ +\x76\x31\x12\x69\x03\x34\xb2\x9e\xd5\xac\x65\x3d\xc7\x6c\x17\x33\ +\x72\xe1\x0e\x80\x38\x35\x5c\xc9\xd5\x9c\xa1\xdd\x5e\x32\x6e\x80\ +\xad\xdc\xcf\xaf\xd9\xc1\x90\xed\x52\x86\x2f\xac\x01\x50\xc4\x29\ +\x5c\xc9\xf9\x4c\x27\x87\x5c\xb2\x42\xbb\x1c\x12\x66\x43\x0c\x32\ +\xc0\x4e\x9e\x60\x05\xeb\xe8\xb6\x5d\xce\x70\x84\x6f\xc7\x89\x33\ +\x85\x8b\xb8\x82\x85\x14\x32\x8a\x1c\xdb\xe5\x88\xf3\x06\xe9\xa1\ +\x87\xed\x3c\xcc\x03\xec\x26\x61\xbb\x1c\x6f\xc2\x15\x00\xa5\x9c\ +\xce\x15\x9c\xce\x44\xca\x75\x19\x4f\x02\xa5\x9f\x56\x1a\x78\x8e\ +\x15\xac\xa1\xc3\x76\x31\xe6\xc2\x13\x00\x85\x9c\xcd\x35\x2c\x66\ +\x22\xe5\x64\xd9\x2e\x46\xe4\x0d\x24\x68\xe3\x20\xeb\xb9\x9f\x27\ +\xc2\x12\x02\xe1\x08\x80\x42\xce\xe5\x72\x16\x32\x83\xb2\x90\x54\ +\x2c\xae\x4a\xd1\xc1\x1e\x5e\xe6\x51\x1e\xa6\xd3\x76\x31\x6f\x2e\ +\xf8\xbb\x53\x16\xcb\xb9\x94\xc5\xcc\xa3\x24\x04\xd5\x8a\x40\x8a\ +\x2e\xb6\xb3\x8a\x15\x3c\x15\xf4\x2b\x04\xc1\xde\xa5\xe2\x8c\xe7\ +\x5a\xae\x60\x11\xc5\x01\xaf\x54\xe4\x2f\xa5\xe8\x64\x2d\x0f\xf1\ +\x1b\x1a\x48\xda\x2e\xe6\xc4\x82\x7b\x36\x1d\xa3\x98\x65\xdc\xc8\ +\xad\xcc\x27\x5f\xbb\xbf\x84\x4c\x8c\x3c\x6a\x38\x85\xd1\xc4\x69\ +\x62\xc0\x76\x39\x27\x12\xd4\x00\xc8\x63\x06\xd7\x70\x0b\xd7\x51\ +\xaa\x9d\x5f\x42\x2a\x46\x11\x8b\x98\x4a\x0e\x6d\x74\x06\xf3\x64\ +\x20\x98\x01\x50\xcc\x42\x6e\xe1\x23\xcc\xd1\xce\x2f\x21\x17\x63\ +\x32\xa7\x33\x8a\x2e\x5a\xe9\xb7\x5d\xcc\x5f\x0b\x5e\x00\xc4\x19\ +\xc7\x79\xdc\xc6\xf5\xba\xbd\x57\x22\x62\x14\xa7\x31\x91\x4e\x5a\ +\xe8\x0d\xda\x03\x44\x41\x0b\x80\x5c\xaa\xb9\x8e\x4f\xb2\x54\xc7\ +\x7e\x89\x90\x18\xd3\x98\xc7\x20\x8d\xf4\x04\xeb\x54\x20\x58\x01\ +\x90\xc3\x49\xdc\xc1\xed\x4c\xb2\x5d\x88\x48\xda\x8d\xe5\x74\x8a\ +\xd8\x4f\x6b\x90\x22\x20\x48\x01\x90\xcd\xc9\x7c\x9a\xf7\x50\x68\ +\xbb\x10\x11\x5f\xe4\x73\x2a\xe3\xd8\x4b\x53\x70\x2e\x0c\x06\x29\ +\x00\x96\xf2\x2f\x5c\x11\x91\x29\x4a\x44\xde\x48\x16\x27\x31\x83\ +\x3a\xea\x6c\x17\xf2\xaa\xe0\x9c\x69\x5f\xcb\xe7\x38\x39\x8d\x9f\ +\x97\xa2\x9f\x7a\x9a\xe8\xa6\x8b\x0e\xba\xe9\x0b\x4e\xea\x4a\xe0\ +\xc5\xc9\xa7\x90\x12\x8a\x28\xa4\x92\x29\xe4\xa6\x75\x4f\x59\xcf\ +\x97\xf9\xad\xed\x45\x7c\x45\x50\x02\xe0\x16\xfe\x91\x59\x69\xe8\ +\x8f\x0c\x50\xc7\x0b\x6c\x64\x2f\x7b\x68\xa0\x9f\xd4\xf1\x3f\x82\ +\x36\xfa\x2a\x01\x17\x03\x62\xc7\xff\xf2\x98\x4c\x2d\xb5\xbc\x85\ +\x45\xd4\x90\x3b\xe2\xcf\x1e\x62\x3b\xff\xc1\x5d\xb6\x17\xf1\xd5\ +\xc5\xb4\xef\xdd\x7c\x8e\x59\x23\xec\xfc\xef\x66\x35\xab\x59\x47\ +\x03\xbd\xf4\x93\x60\x90\x84\x76\x7a\x49\x8b\x18\xd9\xe4\x90\x4d\ +\x1e\x05\x4c\xe2\x54\xce\xe0\x4c\x6a\x47\xf4\x89\x09\xb6\xf3\x65\ +\x7e\x65\x7b\xc1\x82\xe1\x62\xd6\xbd\xe6\x58\xed\xfd\xaf\x99\xdf\ +\xf3\x41\x16\x51\x4d\x79\x1a\xd2\x59\xe4\xc4\x62\xe4\x52\x4e\x35\ +\xa7\x71\x13\x3f\xe3\xd0\x08\xb6\xda\x7e\xd6\x71\xb9\xed\xc5\x09\ +\x82\x65\xac\x1e\xf6\xee\x9f\x60\x3d\x9f\x61\x39\x73\x18\x1d\xa8\ +\xe1\x4c\x89\xba\x2c\x4a\x99\xc9\xb9\xfc\x13\x1b\x49\x0c\x3b\x02\ +\xd6\xb2\xcc\xf6\x82\xd8\x5e\x8d\x73\x79\x86\x81\x61\xad\xbe\x6e\ +\x9e\xe5\x33\x9c\x4b\x55\xd4\x66\x6a\x97\xd0\x88\x53\xc5\xb9\x7c\ +\x96\x95\x74\x0f\x6b\x1b\x1e\xe0\x19\xe6\xba\x7b\xe8\x8a\x33\x91\ +\x9f\x33\x34\xac\x9d\x7f\x35\x9f\x65\x39\xe3\x6c\x2f\x82\x08\x95\ +\x9c\xcf\xff\x61\xed\xb0\x42\x60\x88\x7b\x98\x68\xf3\x10\x66\x2f\ +\x7d\x62\x94\x73\x1b\xb7\x78\x3e\x6b\x4f\xb0\x97\xfb\xf8\x31\xf7\ +\xb3\x25\x9c\xf3\xb0\x4a\xc4\x74\xb3\x8f\x6d\xec\xa3\x8d\x52\x4a\ +\x3d\xee\x51\x31\xa6\xd1\xcf\x46\xfa\x6c\x2f\x44\xe6\x95\x72\x03\ +\xf5\x9e\x13\xf3\x08\x2b\xb8\x9d\xd9\x01\xb9\x7a\x21\xf2\xaa\x18\ +\xb5\x7c\x80\x15\x34\x7b\xde\xa6\x1b\xb8\x81\x52\xdb\xe5\x67\x5a\ +\x01\x17\xb1\xd6\x73\x77\x69\x27\xdf\xe6\x6c\xf2\x6d\x17\x2f\xf2\ +\x86\x46\x71\x0e\xdf\x61\x97\xe7\xd3\xda\xd5\x5c\x60\x6b\x96\x6b\ +\x3b\xa7\x00\x59\xcc\xe6\x0e\x2e\xf6\xf4\x6f\xfa\xd8\xc0\x4f\xf9\ +\x31\x1b\xc2\x36\xf3\xba\x38\x23\xc1\x7e\x76\xd0\xc3\x68\x46\x7b\ +\x7a\x63\xc5\x24\x72\xd8\x4a\x0b\xce\xdc\xb7\x52\xc5\xa7\xe8\xf5\ +\x94\x91\xed\x3c\xca\xdb\x29\xb3\x5d\xb8\xc8\x9b\x2a\xe5\x6a\x1e\ +\xa6\xdd\xd3\xf6\xdd\xcb\x27\xa9\xb2\x5d\x78\xa6\xe4\xf3\x56\xb6\ +\x7a\xdc\xfd\x7f\xc5\xa9\x7a\x4c\x48\x42\x22\x9b\x05\xdc\x4b\x9b\ +\xa7\x6d\x7c\x33\x57\xb9\x71\x72\x1b\xe3\x54\x7e\xe6\x69\xd5\x74\ +\x70\x37\xd3\x75\xb5\x5f\x42\x24\x4e\x2d\x77\xd1\xe1\x69\x3b\xff\ +\x6f\x4e\x76\x61\x2b\x2f\xe3\x13\x74\x79\x58\x2d\x7d\x7c\x87\xb1\ +\xb6\x8b\x16\xf1\x28\x46\x05\x77\xd2\xe7\x61\x4b\xef\xe6\x53\x94\ +\xdb\x2e\xdb\x7f\x57\xf3\x82\xa7\x5c\xfc\xa6\xde\x02\x28\x21\x55\ +\xc0\xb7\x3c\x6d\xeb\x6b\xb9\xca\x76\xc9\x7e\x9b\xcc\x77\x48\x1a\ +\xaf\x90\x7e\xee\x71\xa1\x53\x24\x91\x15\xe3\x27\x1e\x9e\x74\x49\ +\x72\x27\xd5\xb6\x4b\xf6\xd7\x8d\x6c\xf3\x30\x32\xba\xc2\x85\x2e\ +\x91\x44\x5a\x29\xbf\xa7\xc7\x78\x9b\xdf\xc1\xcd\xb6\x0b\xf6\xd3\ +\x0c\x7e\x62\xfc\xe8\x4f\x0f\x8f\x53\xa3\x3b\xfe\x24\xe4\x62\x4c\ +\xe5\x49\xe3\x8b\xde\x83\xdc\xc5\x74\xdb\x25\xfb\xb7\x2a\x6e\x67\ +\x97\xe1\x8a\x48\xb0\x91\x65\xea\xfe\x4b\x04\xc4\x39\x9b\x0d\xc6\ +\x0f\x0d\xef\xe6\x8e\x4c\x1e\xf6\x32\x79\x27\xe0\x49\xdc\xc8\xe9\ +\x86\xdf\x58\xc7\xb7\x78\x90\xc1\x0c\x56\x27\xe2\x8f\x14\x47\x48\ +\x32\xd7\xf0\x74\xb6\x88\x1e\x36\xd1\x92\xa9\xe2\x32\x19\x00\xef\ +\xe4\x2a\x2a\x8d\x5a\x1e\xe6\xb7\xfc\x88\xb6\x0c\xd6\x26\xe2\x9f\ +\x04\x07\x18\x47\x0d\x45\x06\x6d\xb3\xc8\xe2\x30\x2f\xd9\x2e\x39\ +\xfd\xc6\x71\xb7\xe1\x60\x48\x2f\x0f\x70\x8a\xed\x72\x45\xd2\xea\ +\x54\x56\x18\x8e\x04\x74\xf3\x33\x2a\x32\x55\x56\xe6\xce\xb2\xcf\ +\x64\x8e\xe1\xdb\xfe\x76\x71\x1f\x9b\x32\x56\x97\x48\x26\x6c\xe4\ +\x3e\x76\x1b\xb5\x2c\x60\x0e\x67\x64\xaa\xac\x4c\x05\x40\x1e\x17\ +\x31\xc5\xa8\xe5\x31\x9e\xe2\xd1\x20\xbd\x3c\x49\x24\x0d\x86\x78\ +\x84\xa7\x69\x35\x6a\x3b\x85\x8b\xc8\xcb\x4c\x59\x99\x0a\x80\xd9\ +\x2c\x30\x7a\x96\x2f\xc9\x3a\xfe\xc0\xc1\x0c\x55\x25\x92\x39\x0d\ +\xac\x60\xbd\xd1\xeb\x69\xca\x59\xc8\xac\xcc\x14\x95\xa9\x00\xb8\ +\xd8\x70\xe6\xb3\x26\x1e\xe7\xf9\x0c\xd5\x24\x92\x59\xab\x78\x82\ +\x66\x83\x76\x71\x26\x71\x51\x66\x4a\xca\x4c\x00\xe4\xb3\x84\x31\ +\x06\xed\x52\xac\xe1\x69\xba\x32\xb3\xe8\x22\x19\xd6\xc9\x53\xac\ +\xc1\x64\xda\x8f\x31\x2c\xcd\xcc\xc3\xc1\x99\x09\x80\x69\xcc\x30\ +\x7a\xa4\xa7\x8d\xe7\xd8\x98\x91\x8a\x44\x6c\x58\xc7\x4a\xda\x0d\ +\xda\x15\x30\x8b\x69\x99\x28\x28\x33\x01\x70\xa1\xe1\x4d\x10\xcf\ +\xb3\x5a\x33\xfd\x4a\x84\xf5\xb0\x96\xd5\x46\x2d\x4b\x39\x2f\x13\ +\x05\x65\x22\x00\xe2\x9c\x67\x34\xeb\x69\x3f\x4f\xb2\x3e\x13\x0b\ +\x2d\x62\xcd\x3a\x9e\xa0\xdf\xa0\x5d\x29\xe7\x65\x62\xef\xcc\x44\ +\x00\x8c\xe7\x64\xa3\x13\x80\xf5\x6c\xa4\x33\x03\xf5\x88\xd8\xd3\ +\xc1\x46\xa3\xd3\xdc\x42\x16\x64\xe2\xc5\x37\x99\x08\x80\x73\x0d\ +\xa7\xf4\x78\x86\x5d\x19\xa8\x46\xc4\xae\x5d\x3c\x63\xd4\xae\x20\ +\x13\x6f\x0e\xcc\x44\x00\x2c\x30\xba\xa9\xa1\x93\x17\x69\xc8\x40\ +\x35\x22\x76\x1d\x60\x2d\x1d\x06\xed\xf2\x59\xe8\x7f\x31\x99\x08\ +\x80\x85\x46\x01\xf0\x1c\xfb\x34\xe3\xbf\x38\x20\x41\x1d\x6b\x0c\ +\xda\xe5\x71\x9a\xff\xc5\xf8\x1f\x00\x25\xcc\x32\x7a\xff\xdf\x2a\ +\xdd\xff\x27\x8e\x38\xc8\x2a\x83\x56\xb9\xcc\xa6\xd8\xef\x52\xfc\ +\x0f\x80\x93\x29\x34\x98\xe0\x60\x80\xcd\x1c\xf5\xbd\x16\x91\x20\ +\x68\x61\x13\x03\x6f\xda\x2a\x46\x11\xf3\xfd\x2e\xc5\xff\x00\x58\ +\x68\x34\xe7\xc0\x5e\x1a\x0d\x56\x89\x48\x14\x0c\x70\x88\x7d\x06\ +\xed\xb2\xfd\x3f\x09\xf0\x3f\x00\x66\x1b\x05\xc0\x7a\x5a\x8d\x6e\ +\x91\x14\x09\xbf\x14\xad\x6c\x30\x68\x97\xc5\x6c\xbf\x4b\xf1\x3f\ +\x00\x6a\x8d\xbe\x63\xbd\xe6\xff\x11\x87\xb4\x19\xdd\xf2\x16\x67\ +\xaa\xdf\x85\xf8\x1f\x00\x35\x46\x3d\x80\xed\x46\x17\x46\x44\xa2\ +\xa1\x93\x6d\x06\xad\x22\x10\x00\xb9\x4c\x30\x18\x02\xec\xa6\xd1\ +\xe8\xf6\x48\x91\x68\xe8\xe3\x10\x3d\x6f\xda\x2a\xce\x04\xa3\x2b\ +\x68\x23\xe0\x6f\x00\xc4\x19\x67\x74\x0d\xe0\x10\x5d\x46\x13\x25\ +\x88\x44\x43\x92\x6e\x1a\xdf\xb4\x55\x8c\x62\xc6\xf8\xbb\x8f\xfa\ +\x1d\x00\x66\x2f\x3a\xaa\xd3\xf1\x5f\x1c\xd3\xcf\x7e\xa3\x76\xd5\ +\x61\x0e\x80\x98\xe1\xec\xa6\xf5\x0a\x00\x71\x8c\x69\x00\x54\xfa\ +\xfb\x9a\x10\xbf\x03\xc0\x64\x26\x74\x38\xac\x57\x80\x88\x63\x06\ +\x38\x6c\xd4\xce\xe4\x14\x7a\x04\xfc\x0e\x80\x42\xa3\x76\xdd\x9a\ +\x05\x58\x1c\x33\x64\x38\xf5\x8d\x23\x01\xa0\x21\x40\x71\x4b\xd2\ +\x38\x00\x7c\xe5\xf7\x65\x40\xb3\xf2\x7b\xd4\x03\x10\xc7\x98\xf6\ +\x00\x8a\xc2\xdd\x03\x30\x9b\x0a\x44\x3d\x00\x71\x8d\x69\x0f\xa0\ +\x20\xcc\x01\x80\xe1\x6d\x0c\x83\x7a\x0e\x40\x1c\x93\x32\x7c\xf8\ +\xcd\xe7\x37\x04\xf9\x1d\x00\x66\xe9\x95\x52\x00\x88\x63\x4c\xb7\ +\x79\x5f\x8f\xff\x99\x7c\x39\xa8\x88\x04\x8e\x02\x40\xc4\x61\x0a\ +\x00\x11\x87\x29\x00\x44\x1c\x96\x6d\xbb\x00\xb1\x26\x46\x36\xd9\ +\x40\x82\x84\x06\x61\x5d\xa5\x00\x70\x49\x36\xa5\x54\x50\x46\x29\ +\x25\x14\x90\x47\x2e\xb9\xc0\x00\x03\xf4\xd3\x43\x07\xed\xb4\xd1\ +\x4c\xbb\xa6\x67\x77\x87\x02\xc0\x0d\x45\x8c\xa7\x92\x4a\x6a\xa9\ +\x65\x12\x55\x54\x32\xfa\x35\xb7\x98\xa4\xe8\xe1\x18\x4d\x1c\xa6\ +\x81\xbd\xec\xe5\x30\x4d\x34\xea\x35\xad\x2e\x50\x00\x44\x5d\x36\ +\x55\x54\x32\x9b\x25\x2c\x60\x16\x65\x6f\x78\x5d\x39\x46\x21\x85\ +\x4c\x06\x20\x45\x1b\x3b\x78\x89\xe7\xd9\x4e\x13\x8d\xba\x49\x3b\ +\xda\x14\x00\xd1\x15\x23\x9b\x0a\xa6\x72\x39\x17\x33\x87\x7c\xe3\ +\x7f\x55\xce\x19\x9c\xc1\x2d\x6c\xe1\x51\xfe\x48\x1d\x47\x34\x46\ +\x10\x5d\x0a\x80\xa8\xca\xa6\x9c\x5a\xae\xe7\x06\x4a\x87\x75\x37\ +\x59\x3e\x0b\x59\xc0\x47\xb8\x9b\x9f\xb0\x9b\x36\x8d\x0b\x44\x93\ +\x02\x20\x8a\x62\xe4\x33\x95\x0f\x72\x8b\xe1\xc3\x58\x27\xfe\x9c\ +\x42\x3e\xc0\xdf\xf1\x43\x7e\xc0\x3e\xfa\xd5\x0f\x88\x1e\xdd\x07\ +\x10\x45\x15\xdc\xc4\x1f\xb9\x63\x84\xbb\xff\xab\x0a\xf9\x18\x7f\ +\xe4\x26\xc3\xe9\xdd\x24\x54\x14\x00\x51\x13\xe7\x4c\xbe\xcf\x9d\ +\xd4\xa4\xf5\x53\xa7\xf2\x5d\xee\x62\x99\xd1\x3b\x1e\x24\x44\x74\ +\x0a\x10\x2d\xa5\xbc\x93\x3b\x98\xed\xc3\x33\x64\x31\x2e\xa4\x86\ +\xef\xf2\x0b\x5a\x6d\x2f\xa4\xa4\x8f\x02\x20\x4a\x26\xf1\x41\x6e\ +\xa0\x8a\x1c\x5f\x3e\x3d\x87\x99\x7c\x96\xc9\x7c\x8f\x7a\xdb\x0b\ +\x2a\xe9\xa2\x00\x88\x8e\xe9\x7c\x98\x6b\xa9\xf2\xf1\xb4\x2e\x9b\ +\xf1\xdc\x48\x11\x77\xb2\xc3\xf6\xc2\x4a\x7a\x28\x00\xa2\x62\x2e\ +\x1f\xe5\x4a\xc6\xf9\xfe\xaa\x97\x4a\xae\x25\x9f\x6f\xb2\xd5\xf6\ +\x02\x4b\x3a\x68\x10\x30\x1a\x6a\xb9\x83\xab\xa9\xcc\xc0\xef\x19\ +\x63\x1c\x57\x71\x87\xff\xaf\xad\x94\x4c\x50\x00\x44\x41\x15\xb7\ +\x73\x15\x15\x7e\x4f\x1f\x75\x5c\x8c\x0a\xae\xe6\x76\x2a\x6d\x2f\ +\xb6\x8c\x9c\x02\x20\xfc\xf2\xb9\x99\x6b\xfd\x7e\x85\xd4\x5f\x88\ +\x51\xc9\x3b\xb9\xd9\xef\x09\x2b\xc5\x7f\x0a\x80\xf0\xbb\x9c\xf7\ +\x31\x3e\xc3\xbf\x64\x9c\xf1\xbc\x8f\xcb\x6d\x2f\xba\x8c\x94\x02\ +\x20\xec\xe6\xf0\x51\xa6\x58\x18\xcc\xcd\xa6\x86\x8f\x72\x92\xed\ +\xc5\x97\x91\x51\x00\x84\x59\x8c\x7c\x3e\xcc\x62\x4b\x5d\xf1\x3c\ +\x4e\xe7\x76\xf2\x33\x78\xea\x21\x69\xa7\x00\x08\xb3\x2c\x16\x73\ +\x83\xe1\xcb\x57\x5e\x6f\x88\x6e\x8e\xd1\x4c\x33\xc7\x86\xfd\x72\ +\xd6\x5c\x6e\x62\xb1\x6e\x0f\x0e\x33\xdd\x07\x10\x5e\x71\xc6\xf2\ +\x59\xcf\x2f\x8f\x4c\xd2\x43\x1b\x1d\xb4\xd1\xc8\x11\x7a\x88\x51\ +\x40\x05\x13\x28\xa3\x98\x32\x0a\x3c\x1d\x12\x62\x14\xf0\x69\x6e\ +\xa6\x59\xaf\x76\x0b\x2b\x05\x40\x78\x8d\xe2\x7c\x2e\xf6\xf4\x2f\ +\x12\x74\xd3\xc4\x3a\x1e\x63\x0d\x3b\xff\xe2\xd5\x54\xb9\xcc\xe2\ +\x74\x2e\xe0\x54\xaa\x28\xf4\x74\x4c\xbf\x94\xe5\xdc\x4f\x8f\xed\ +\x95\x21\xc3\xa3\x00\x08\xab\x18\xa3\xb9\xdd\x43\xfb\x14\x03\xd4\ +\x71\x1f\x3f\x67\xcb\x1b\x1c\xaf\x07\xd8\xc4\x26\x7e\xcc\x3c\xde\ +\xc3\x5b\x99\xe2\x61\x54\x21\xc6\xed\xac\xa4\x57\x73\x05\x84\x93\ +\x02\x20\xac\x0a\x58\xcc\x99\x1e\xda\xf7\x73\x37\x77\xb2\xe9\x6f\ +\x76\xd6\x93\x6c\x64\x33\xbf\xe0\x0e\xde\xe3\x21\x02\x96\xb2\x88\ +\x63\x9a\x42\x34\x9c\x34\x08\x18\x56\x55\x7c\xd0\x43\xeb\x7d\xdc\ +\xc4\xc7\xd9\x60\x70\xae\x9e\x64\x3d\xff\xc0\x4d\xec\xf7\xf0\xe9\ +\xb7\x51\x65\x7b\x75\xc8\xf0\x28\x00\xc2\x29\x97\xa9\x9c\x6d\xdc\ +\x7a\x23\xb7\xf0\x00\x9d\xc6\xed\x3b\x79\x80\x9b\xd9\x64\xdc\xfe\ +\x2c\x6a\x86\x79\x2d\x42\x2c\x53\x00\x84\xd3\x38\x96\x1b\x77\xd2\ +\x77\xf1\x51\xd6\x78\x3a\x4b\x4f\xd1\xc3\x6a\x3e\xcc\x76\xc3\xf6\ +\xf9\x9c\xa7\x09\xc3\xc2\x49\x01\x10\x4e\x95\x5c\x64\xd8\xf2\x18\ +\x1f\xe3\x05\xcf\x83\x74\x29\x7a\x79\x89\x8f\x1b\xcf\xfe\x73\xa1\ +\x1e\x0d\x0a\x27\x05\x40\x18\xe5\x53\x6d\x7c\x13\xee\x57\x59\x49\ +\xcf\x30\xc6\xe8\x53\xf4\xb0\x8a\xaf\x19\xb6\x9e\x47\xb5\x1e\x0d\ +\x0a\x23\x05\x40\x18\x95\x33\xc7\x68\xc6\xdf\x04\xab\xb8\x87\xae\ +\x61\x5e\xa2\x4b\xd1\xc9\xdd\x3c\x6f\xf4\x46\x80\x02\x66\x53\x6e\ +\x7b\xb5\x88\x77\x0a\x80\x30\x1a\xcb\x7c\xa3\x76\x3d\x7c\x9b\xc3\ +\x23\xb8\x4b\x2f\x49\x23\xdf\xa6\xd7\xa8\xed\x7c\xc6\xda\x5e\x2d\ +\xe2\x9d\x02\x20\x8c\xc6\x30\xc7\xa0\x55\x3f\xeb\x78\x64\xc4\xdf\ +\xf5\x30\xeb\xe8\x37\x68\x37\x57\x01\x10\x46\x0a\x80\xf0\x89\x51\ +\xce\x14\x83\x76\xdd\xfc\x8e\xf6\x11\x7f\x5b\x1b\xbf\x37\xba\xc9\ +\xa7\xe6\x04\x2f\x1e\x95\x40\x53\x00\x84\x4f\x3e\x63\x28\x7e\xd3\ +\x56\x49\x8e\xf1\x50\x5a\xbe\xef\x21\xda\x0c\x46\x11\x4a\x18\x63\ +\xfc\x02\x52\x09\x0c\x05\x40\xf8\x94\x18\x4d\xff\x35\xc0\x5e\x76\ +\xa7\xe5\xfb\x76\xb2\xcf\xe0\x24\x20\x46\xa5\x41\x2c\x49\xc0\x28\ +\x00\xc2\xa7\xd8\xe8\xa6\x9b\x6e\xd6\xa7\xe9\x01\x9d\x24\xeb\x8c\ +\x4e\x02\x2a\x14\x00\xe1\xa3\x00\x08\x9f\x3c\xa3\x1d\xad\x97\x9d\ +\x69\xfb\xc6\x5d\x46\x57\x02\x8a\x74\x27\x40\xf8\x28\x00\xc2\x27\ +\xdb\x68\x47\x1b\xe0\x60\xda\xbe\xf1\xc0\x5f\xcc\x1d\x70\x22\xf9\ +\x3e\xbd\x92\x4c\x7c\xa4\x00\x08\x9f\x1c\xa3\xc1\xb6\x04\x1d\x69\ +\xfb\xc6\x4e\xa3\x29\xc3\x14\x00\x21\xa4\x00\x08\x9f\x6c\xa3\x27\ +\xef\x52\xf4\xa5\xed\x1b\x7b\x8c\x6e\x26\xca\xd3\xec\x12\xe1\xa3\ +\x00\x08\x23\x93\xeb\xed\xa9\x34\xce\xd1\x63\xf6\x59\xba\x0b\x20\ +\x84\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\ +\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\ +\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\ +\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\ +\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\ +\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\x01\ +\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\x4c\ +\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\x38\ +\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\x88\ +\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\x00\ +\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\x53\ +\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\x0e\ +\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\x22\ +\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x80\x88\xc3\x14\x00\ +\x22\x0e\x53\x00\x88\x38\x4c\x01\x20\xe2\x30\x05\x40\xf8\xa4\x48\ +\x1a\xb4\x8a\x91\x9d\xb6\x6f\xcc\x26\x66\xd0\x6a\x88\x94\xb5\x75\ +\x22\xc3\xa4\x00\x08\x9f\x04\xfd\x06\xad\xe2\x8c\x4a\xdb\x37\x16\ +\x90\x65\xd0\xaa\x9f\x41\x6b\xeb\x44\x86\x49\x01\x10\x3e\x83\xf4\ +\x19\xb4\xca\xa6\x3c\x6d\xdf\x38\xda\xa8\x37\xd1\x47\xc2\xda\x3a\ +\x91\x61\x52\x00\x84\x8f\x59\x00\xe4\x51\x9d\xb6\x6f\x9c\x42\x9e\ +\x41\xab\x5e\x06\xac\xad\x13\x19\x26\x05\x40\xf8\xf4\xd1\x61\xd0\ +\x6a\x14\xb3\xd3\xf6\x8d\xb3\x8c\x4e\x27\x3a\x8d\x82\x49\x02\x45\ +\x01\x10\x3e\x1d\x34\x19\xb4\x2a\x62\x01\xb9\x69\xf9\xbe\x5c\x4e\ +\xa5\xd0\xa0\xdd\x61\xa3\x60\x92\x40\x51\x00\x84\x4f\x07\x87\x0d\ +\xc6\xdb\x73\x98\xcc\xdc\xb4\x7c\xdf\xc9\x4c\x26\xe7\x4d\x5b\x25\ +\x69\xa2\xd3\xf6\xaa\x11\xaf\x14\x00\xe1\x33\x48\x1b\xad\x06\xed\ +\x8a\x78\x7b\x5a\xbe\xef\x6d\x46\xc7\xff\x63\xb4\xe9\x2a\x40\xf8\ +\x28\x00\xc2\xe8\x18\xdb\x0d\x5a\x15\x73\x43\x1a\xae\x04\x8c\xe6\ +\xbd\x14\x1b\xb4\xdb\xce\x31\xdb\xab\x45\xbc\x53\x00\x84\x51\x33\ +\x9b\x0c\x5a\xc5\x19\xcb\x1d\x23\xfe\xae\x8f\x31\xc6\x68\x2b\xd9\ +\x44\xb3\xed\xd5\x22\xde\x29\x00\xc2\xa8\xc5\x28\x00\x20\x9f\x0f\ +\x33\x7d\x04\xbf\x71\x16\x33\xb9\x8d\x7c\xa3\xb6\x9b\x68\xb1\xbd\ +\x5a\xc4\x3b\x05\x40\x18\xb5\xb3\xd3\xa8\xc3\x1d\x63\x2c\xff\x4e\ +\x99\xd1\x8d\xbc\x6f\xf4\xaf\xcb\xf8\x77\xc6\x18\xfd\xeb\x16\x76\ +\xe9\x1a\x40\x18\x29\x00\xc2\x68\x88\x43\x3c\x67\xd4\x32\xc6\xf9\ +\x7c\x62\x98\x23\x01\xe5\x7c\x92\xf3\x0c\xc3\xe3\x39\x0e\x31\x64\ +\x7b\xb5\x88\x77\x0a\x80\x70\x6a\xe2\x31\xc3\x96\x45\xdc\xc0\xfb\ +\x19\xe7\xb1\x17\x10\xa3\x92\x0f\xf0\x5e\x8a\x0c\xdb\x3f\x66\x74\ +\x6f\x82\x04\x8e\x02\x20\x9c\xda\x78\x91\x03\x86\x6d\x27\x72\x2b\ +\x1f\x62\xaa\xd1\x03\x3d\xaf\xc8\xa2\x96\x0f\x71\x2b\x13\x0c\xdb\ +\x1f\xe0\x25\xda\x6d\xaf\x12\x19\x0e\x05\x40\x38\x25\xa8\xe7\x21\ +\xe3\xd6\xd3\xb8\x89\x7f\x64\xa9\xd1\xe5\x3c\x28\xe6\x2c\xfe\x91\ +\x9b\xa8\x35\xfe\xfc\x07\xa9\xd7\x83\x40\xe1\x94\xbe\x67\xc6\x25\ +\xb3\x8e\xf2\x3b\xde\xc1\x68\xc3\xd6\xd5\xbc\x97\x29\x3c\xc8\xb3\ +\xec\xa1\xf7\x6f\xb4\x1b\xc5\x74\xce\xe6\x52\x96\x51\xe2\xa1\x92\ +\xdf\xea\x1e\x80\xb0\x52\x00\x84\x55\x2f\xeb\x79\x82\x6b\x8d\xdb\ +\x97\x70\x05\x73\x58\xc4\x4a\xb6\xb2\x9f\xe6\xbf\x3a\x62\xe7\x30\ +\x96\x1a\xe6\x70\x16\xe7\x30\xd5\x53\x25\x8f\xb3\xe1\x6f\x86\x8a\ +\x04\x98\x02\x20\xbc\xda\xf9\x31\xcb\x19\xe3\xe1\x5f\xd4\x32\x95\ +\x4b\x78\x89\x17\xd8\x41\x33\x5d\xf4\x32\x08\xe4\x30\x8a\x22\xc6\ +\x31\x8b\xd3\x58\x48\x95\xc7\xe1\xc2\x16\x7e\xac\x0b\x80\xe1\xa5\ +\x00\x08\xaf\x3e\x9e\xe5\xf7\xdc\xec\x69\x87\x8d\x31\x9e\x2b\xb8\ +\x9c\x1e\xea\x38\x44\x0b\xdd\x40\x21\x63\x99\xc8\x14\x0a\x86\x71\ +\xbf\x40\x8a\xdf\xb3\x4a\x8f\x01\x87\x97\x02\x20\xcc\x7a\xf9\x3a\ +\x97\x30\xde\xf3\x50\x6e\x8c\x42\xe6\xa6\xe1\x59\xc1\x24\x8d\xfc\ +\x9b\x76\xff\x30\xd3\x55\x80\x30\x4b\xb2\x9b\xef\xd1\x69\x69\x32\ +\xce\x14\x9d\x7c\x97\x9d\xba\x01\x28\xcc\x14\x00\x61\xf7\xef\xd6\ +\xba\xe0\x7d\xac\xe2\x1b\xb6\x17\x5f\x46\x46\x01\x10\x76\xfd\xdc\ +\xc1\x3e\x0b\x47\xe1\x21\xf6\xf3\x11\xa3\xf9\x89\x25\xc0\x14\x00\ +\xe1\xb7\x97\x7f\x60\x6f\x86\x4f\x03\x52\xec\xe1\x0e\xf6\xd8\x5e\ +\x74\x19\x29\x05\x40\x14\xfc\x89\x2f\xb1\x2b\xa3\xdf\xb8\x87\xaf\ +\xf1\xb4\xed\xc5\x96\x91\x53\x00\x44\xc1\x20\xbf\xe7\xbb\x19\x8c\ +\x80\x5d\x7c\x87\xdf\x68\x02\xb0\x28\xd0\x65\xc0\x68\xe8\xe6\x1e\ +\x12\xdc\xc6\xbc\x0c\x7c\xd7\x36\xbe\xcf\x3d\x74\xd9\x5e\x64\x49\ +\x07\x05\x40\x54\x1c\xe5\x5e\xba\xf9\x20\x8b\x7d\xed\xd5\xa5\x78\ +\x81\x1f\xb0\x82\xa3\xb6\x17\x57\xd2\x43\x01\x10\x1d\xcd\xac\xa0\ +\x87\x9b\x39\xd7\x70\x12\x2f\xef\xfa\xf8\x13\x77\xf1\x27\x4d\xfe\ +\x15\x1d\x0a\x80\x28\x39\xca\xa3\x1c\xa3\x9e\xab\xa8\xf2\xe1\xd3\ +\x1b\xf9\x03\xbf\xd2\x93\xff\xd1\xa2\x00\x88\x96\x76\x9e\xe5\x08\ +\xf5\x5c\xc5\x82\xb4\xfe\xb6\x83\xbc\xcc\x03\x3c\xc0\x4e\xbd\xff\ +\x2f\x5a\x14\x00\x51\x33\xc0\x66\x8e\xb0\x93\x4b\x38\x8b\x99\x69\ +\xfa\xcc\xfd\x3c\xc5\x1f\x79\x9a\x66\x4b\x37\x1d\x8b\x6f\x14\x00\ +\xd1\x93\xa2\x89\xfb\x78\x81\x2b\xb8\x84\xf9\x23\x7e\x47\xf0\x61\ +\xd6\xf3\x24\xf7\xb1\x5f\x97\xfd\xa2\x48\x01\x10\x4d\x09\xea\xf8\ +\x3e\x4f\x73\x19\x17\x30\x9d\xf1\xe4\x7a\x7e\xd4\x37\xc5\x00\x87\ +\xd8\xc3\x6a\xee\x63\xb3\x3a\xfe\x51\xa5\x00\x88\xae\x41\x36\xb1\ +\x89\xdf\x73\x25\x67\x31\x85\x4a\x46\x1b\xc6\x40\x8a\x7e\x5a\x69\ +\xa2\x8e\x95\xfc\x81\x9d\xb6\x17\x43\xfc\xa4\x00\x88\xba\x1d\xec\ +\xe0\xbf\x58\xcc\x72\x16\x31\x91\x12\x0a\xc9\x27\xef\x0d\xde\xf6\ +\x9b\x22\x41\x3f\x7d\x74\xd3\x41\x03\x2f\xf2\x24\x6b\xe9\xb1\x5d\ +\xbc\xf8\x4d\x01\xe0\x82\x1e\x9e\xe2\x29\x72\xa8\x61\x01\x27\x33\ +\x9d\x6a\x2a\xc8\x21\x4e\x9c\x38\x90\x24\x49\x92\x01\x9a\x39\xc0\ +\x2e\x36\xf2\x32\x75\x3a\xdf\x77\x85\x02\xc0\x1d\x83\xec\x62\x17\ +\xbf\x02\xe2\x14\x52\x49\x09\xc5\x14\x02\x5d\x74\xd2\x49\x13\xdd\ +\x24\x6d\x97\x28\x99\xa6\x00\x70\x51\x92\x4e\x3a\x6d\x17\x21\x41\ +\xa0\xa7\x01\x45\x1c\xa6\x00\x10\x71\x98\x02\x40\xc4\x61\x0a\x00\ +\x11\x87\x29\x00\x44\x1c\xa6\x00\x10\x71\x98\x02\x40\xc4\x61\x0a\ +\x00\x11\x87\x29\x00\x44\x1c\xa6\x00\x10\x71\x98\x02\x40\xc4\x61\ +\x0a\x00\x11\x87\x29\x00\x44\x1c\xa6\x00\x10\x71\x98\x02\x40\xc4\ +\x61\x0a\x00\x11\x87\x29\x00\x44\x1c\xa6\x00\x10\x71\x98\x02\x40\ +\xc4\x61\x0a\x00\x11\x87\x29\x00\x44\x1c\xa6\x00\x10\x71\x98\x02\ +\x40\xc4\x61\x0a\x00\x11\x87\x29\x00\x44\x1c\xa6\x00\x10\x71\x98\ +\x02\x40\xc4\x61\x0a\x00\x11\x87\x29\x00\x44\x1c\xa6\x00\x10\x71\ +\x98\x02\x40\xc4\x61\x0a\x00\x11\x87\x29\x00\x44\x1c\xa6\x00\x10\ +\x71\x98\x02\x40\xc4\x61\x0a\x00\x11\x87\x29\x00\x44\x1c\xa6\x00\ +\x10\x71\x98\x02\x40\xc4\x61\x0a\x00\x11\x87\x29\x00\x44\x1c\xa6\ +\x00\x10\x71\x98\x02\x40\xc4\x61\x7e\x07\x40\xca\xb0\x8a\x98\xed\ +\x15\x21\x92\x51\x31\xb2\x8c\xda\x99\xed\x41\xc3\xe6\x77\x00\x24\ +\x8c\x5a\xe5\xab\x27\x22\x8e\x89\x93\x6f\xd4\x6e\xd0\xef\x32\xfc\ +\x35\x60\xd4\xaa\x40\x01\x20\x8e\x89\x53\x68\xd4\xae\xdf\xef\x32\ +\xfc\x94\x32\x0c\x80\x42\x05\x80\x38\x26\x8b\x02\xa3\x76\xfd\xfe\ +\x9e\x04\xf8\x1d\x00\x5d\x46\xed\x0a\x0c\xcf\x87\x44\xa2\xc2\xb4\ +\x07\xd0\x1d\xee\x00\x38\x6a\xd4\xae\x44\x01\x20\x8e\xc9\xa2\xc4\ +\xa8\x5d\x8b\x0b\x01\x30\x99\x3c\x5f\xeb\x10\x09\x9a\x3c\xaa\x8d\ +\xda\x1d\x0d\x77\x00\xb4\x18\xb5\x9b\xa2\x00\x10\xc7\x98\x07\x40\ +\xd2\xcf\x32\xfc\x0d\x80\x24\x0d\x46\xed\x6a\x14\x00\xe2\x98\x7c\ +\x6a\x8c\xda\x1d\x08\x73\x0f\x20\x49\x33\x3d\x06\x0b\x30\x96\x32\ +\xb2\x7d\xad\x44\x24\x48\xb2\x29\x63\xcc\x9b\xb6\x4a\xd1\x1d\xee\ +\x1e\x00\x0c\x72\xc8\x20\x00\x72\xa8\x31\xbc\x28\x22\x12\x05\x05\ +\xd4\x18\x1c\xf2\x92\x1c\x34\xbc\x95\x6e\xd8\xfc\xbf\xfe\xbe\x93\ +\x21\x83\x56\xf3\x28\xf5\xbd\x12\x91\xa0\x28\x65\xbe\x41\xab\x24\ +\x3b\xfc\x2e\xc4\xff\x00\xd8\x6a\x14\x00\xa7\x52\xe6\x7b\x25\x22\ +\x41\x51\xce\x02\x83\x56\x43\x6c\xf5\xbb\x10\xff\x03\x60\x8b\x61\ +\x0f\x60\x8c\xee\x06\x14\x47\xc4\x19\xcb\x5c\x83\x76\x91\x08\x80\ +\x0d\x46\x01\x50\xc9\x54\xc3\x3b\xa3\x44\xc2\xae\x88\xa9\x8c\x33\ +\x68\x97\x60\x83\xdf\xa5\x64\x62\x0c\xa0\xd5\x60\x1c\x33\xce\x42\ +\x2a\x7d\xaf\x45\x24\x08\x2a\x59\x68\xf0\x00\x7c\x92\x63\xec\xf2\ +\xbb\x14\xff\x03\xa0\x9b\x6d\x46\x8f\x04\x2d\xa5\x5a\x27\x01\xe2\ +\x80\x38\xd5\x2c\x35\x68\x37\xc0\x16\x7a\xfc\x2f\xc6\x7f\x6b\xe9\ +\x33\x68\x35\x97\x59\x3a\x09\x10\x07\x14\x31\x8b\x39\x06\xed\xfa\ +\x58\xeb\x7f\x31\x99\x08\x80\xe7\x8c\x02\x20\x87\x33\x0c\xef\x8d\ +\x12\x09\xb3\xa9\x9c\x69\x74\xdb\x5b\x2f\xab\xfc\x2f\x26\x13\x01\ +\xf0\x3c\xed\x46\x77\x33\x9d\xc9\x0c\x9d\x04\x48\xc4\xc5\x99\xce\ +\x19\x06\xed\x92\xb4\xb1\x26\x13\xe5\xf8\xaf\x83\xf5\x46\xe7\x32\ +\x33\x38\x4d\x03\x81\x12\x71\x55\x2c\x62\xba\x41\xbb\x6e\xd6\xd1\ +\xed\x7f\x39\x99\x39\xe2\x3e\x4a\x9b\x51\xbb\xcb\x38\x33\x23\xf5\ +\x88\xd8\xb2\x84\xcb\x8c\xda\xb5\xf2\x70\x26\xca\xc9\x4c\x00\x3c\ +\xc6\x31\xa3\x76\x73\x39\xd3\xe8\xfa\xa8\x48\x38\x55\x71\x06\x27\ +\x19\xb5\x6c\xe3\xc9\x4c\x14\x94\x99\x00\x38\xc4\x46\x3a\x0c\xda\ +\x65\x73\x16\x4b\x32\x52\x91\x88\x0d\x4b\x59\x66\x34\x00\xd8\xce\ +\xcb\x1c\xce\x44\x41\x99\x09\x80\x21\x1e\xe7\x88\x51\xcb\xb7\x70\ +\x3e\x13\x33\x52\x93\x48\xa6\x4d\x66\x39\xf3\x8c\x5a\x36\xf1\x98\ +\xd1\x1d\xb4\x23\x96\xa9\x51\xf7\x27\xa8\x37\x5a\xa0\x02\x2e\xe0\ +\x0a\x5d\x0b\x90\x08\x8a\x73\x29\xcb\x19\x65\xd0\x32\xc1\x01\x9e\ +\xca\x54\x51\x99\xd1\xc8\x6a\xc3\x3e\xc0\x54\x2e\xe6\x94\x0c\x55\ +\x25\x92\x39\x0b\xb8\x94\xa9\x46\x2d\x9b\x59\x4d\x53\x66\x8a\xca\ +\x54\x00\x0c\xf1\x08\x75\x46\x2d\xf3\x38\x9d\xb7\x51\x94\xa1\xba\ +\x44\x32\xa3\x98\xb7\xb1\xd8\x70\xea\xbb\x7d\x3c\x9c\x99\x13\x80\ +\x4c\xbe\x1c\x74\x3d\xeb\x0c\x2f\x06\x56\x72\x29\x97\xea\x6d\x81\ +\x12\x21\x71\x2e\xe5\x12\xaa\x8c\xda\x1e\xe3\x25\xff\x9f\x02\xb4\ +\xe1\xed\xbc\x40\xca\xe8\xaf\x8b\x3f\x18\x4d\x98\x20\x12\x0e\xa7\ +\xb1\x82\x2e\xc3\xad\x7f\x0d\x57\x67\xae\xb0\x4c\xbe\x90\xa3\x8d\ +\x99\xcc\x26\xd7\xa0\x65\x2e\xa3\xc9\xe3\x65\xc3\xf7\x0a\x89\x04\ +\x5b\x25\xff\xc0\x45\x86\x73\x5e\x75\xf2\x30\xf7\x64\xe2\x1e\xc0\ +\x57\x64\x32\x00\xba\x28\x64\x16\x13\x8c\xda\x16\x30\x81\x63\x6c\ +\xf1\xfb\xdd\xa8\x22\xbe\x2b\xe4\x7a\x6e\xa1\xd2\xf0\xa4\x76\x03\ +\xf7\xf0\x82\xed\x92\xfd\x32\x81\x6f\x19\x77\x84\x12\xec\xe0\x2a\ +\xa3\xfe\x82\x48\x70\xe5\xf2\x56\x76\x91\x30\xdc\xea\x3b\xf9\x46\ +\xb4\x9f\x87\xb9\x9a\x55\x24\x0d\x57\xc6\x20\xdb\x58\xaa\xb7\x06\ +\x4a\x88\x65\x71\x16\x3b\x18\x34\xdc\xe2\x93\xac\xe4\x2a\xdb\x25\ +\xfb\xab\x84\xcf\xd0\x6a\xb8\x3a\x52\x24\xd8\xc6\x2c\xbd\x32\x44\ +\x42\x2a\x9b\x99\x6c\x31\x3e\xfa\xa7\xe8\xe0\x0b\x94\xdb\x2e\xda\ +\x6f\x8b\xf9\x35\x43\xc6\xab\x24\xc5\xd3\xd4\x2a\x02\x24\x84\xb2\ +\x99\xc6\xb3\x1e\xb6\xf4\x24\xf7\x1b\x4d\x15\x16\x72\x59\x5c\x4f\ +\x83\x87\xd5\x92\xe2\x25\xe6\x29\x02\x24\x64\xb2\x99\xc3\x6a\x4f\ +\xdb\x79\x33\x37\xb9\x31\xe6\x35\x91\xff\xeb\x69\xc5\xa4\xd8\xc5\ +\xf9\xe4\xdb\x2e\x5b\xc4\x58\x1e\xe7\xb0\xdd\xe3\x56\xfe\x75\xa6\ +\xd8\x2e\x3b\x33\xe2\x9c\xc5\x33\x9e\x56\xcd\x10\x7b\x78\xb7\x5e\ +\x1e\x26\x21\x51\xca\x7b\xd8\xeb\xe1\xdc\x3f\x45\x8a\xa7\x38\xcb\ +\x9d\x87\xe0\x8a\xb8\x8e\x46\x4f\xab\x27\xc1\x41\xfe\x95\x99\xb6\ +\x0b\x17\x79\x53\x53\xf9\x22\x0d\x1e\x77\xff\x16\xde\xed\xd2\xf3\ +\x2f\x31\xc6\xf3\x69\xe3\x8b\x23\xaf\x0e\x91\x34\xf3\x3b\x2e\x36\ +\x7c\x9c\x42\xc4\x86\x5c\x2e\xe0\x57\x34\x19\x5f\xea\x7e\x75\xdb\ +\xfe\x12\x93\xed\x3c\xfd\x62\xeb\x2a\x7b\x1f\x2d\x94\x71\xb2\x87\ +\x7f\x11\xa3\x80\x49\x9c\xc4\x28\x1a\x69\xb7\x54\xb5\xc8\xdf\x32\ +\x85\x1b\xf8\x10\x4b\x19\xed\x71\x67\xbe\x8f\xef\x51\x97\xa9\xe7\ +\xff\x82\x22\x9f\xa5\xbc\xe4\x71\x98\x24\x45\x3f\xbb\xf9\x19\xef\ +\xa4\xc4\x76\xf9\x22\x7f\xa1\x88\xab\xb8\x8b\xdd\xf4\x7b\xde\xa6\ +\xd7\x73\x9e\xd1\x34\x21\x91\x53\xc8\xf5\x34\x79\x5e\x5d\x29\x3a\ +\x59\xcb\x57\x38\x83\x1c\xdb\x0b\x20\x02\x40\x2e\x4b\xf8\x0a\xab\ +\x68\x1b\xc6\xd6\x7c\x98\xf7\xd8\x3c\xfb\xb7\x79\xa3\x6d\x82\x7a\ +\x12\x9c\x4e\xae\xc7\x0e\x53\x2e\xe3\x99\x4d\x2d\xd5\x64\xd3\x44\ +\xc2\xe2\x12\x88\xe4\xb2\x88\x77\x71\x3d\x57\x33\xd3\xf3\x71\x3c\ +\x45\x27\xff\xca\x2f\x6c\x3e\xf5\x6a\xf7\x4e\xfb\x01\xb6\x52\xc6\ +\x1c\xcf\x11\x10\xa3\x90\x19\x9c\xca\x54\x2a\x89\xd3\x45\x3f\x29\ +\xab\xcb\x21\x2e\x8a\x53\xce\x69\xbc\x83\x77\x71\x1d\x27\x53\xe4\ +\x79\x10\x2f\x45\x27\x77\xf1\x0d\xda\x6d\x6e\xbd\xb6\x1f\xb5\xe9\ +\x65\x33\x13\xa8\xf5\x1c\x01\xaf\x0c\x0a\x4e\x63\x09\x93\x98\x40\ +\x15\xa3\xe8\x65\x40\x31\x20\x19\x11\xa7\x98\x99\x2c\xe1\x0a\xde\ +\xc5\x8d\xcc\xa7\x68\x18\x57\xf0\x53\x74\xf2\x3b\xbe\x62\x38\x53\ +\xa6\x6f\x82\x30\xf1\xd6\x6c\xbe\xcc\x45\x14\x8f\xe0\x13\x0e\xb0\ +\x86\x95\xec\xe0\x30\xcd\xb4\xd2\xab\x20\x10\x5f\xc4\x18\xc5\x68\ +\xc6\x52\xc9\x34\x16\x73\x06\x33\x47\xb0\xff\x74\xf2\x28\x9f\x63\ +\x87\xfd\x45\x0a\x82\x45\x7c\x81\x73\x46\x14\x01\x30\x48\x1d\x9b\ +\xd8\xc4\x36\x1a\xe8\xa0\xe7\xf8\x9f\x26\x14\x91\x91\xca\xa1\xe0\ +\xf8\x5f\x09\x93\x98\xc3\x7c\xe6\x51\x33\xa2\x21\xe8\x14\x5d\x3c\ +\xcd\x3f\xf3\x92\xed\x45\x0b\x4a\x00\xc0\x12\x3e\xcd\x39\x94\xa4\ +\xa1\x9e\x01\x0e\xb1\x93\x7a\x0e\x50\xcf\x01\xda\x18\x62\x88\xa4\ +\xd1\xdb\x89\x45\x5e\x2b\x4e\x9c\x2c\xb2\x28\xa3\x9a\xc9\x4c\xa6\ +\x9a\x59\x8c\x4f\xc3\xe3\x3a\x29\xda\x79\x9a\x7f\xe5\x39\xdb\x0b\ +\x08\xc1\x09\x00\x78\x0b\x9f\xe1\x52\x4a\xd3\x5e\x51\x3b\xbd\xf4\ +\xd0\xa7\x08\x10\x4f\xe2\xe4\x53\xc0\xa8\xb4\x3f\x81\x92\xa2\x9d\ +\x87\xf8\x2a\x9b\x6d\x2f\xe0\x2b\x82\x13\x00\x30\x95\x4f\xf3\x4e\ +\xca\x02\x55\x93\x48\x3a\xa5\x68\xe7\xb7\x7c\x8d\x3d\xb6\x0b\x79\ +\x95\xed\xab\x00\xaf\xd5\xc6\x8b\xe4\x33\x57\x0f\xfe\x4a\x64\xb5\ +\xf1\x43\xbe\xc2\x01\xdb\x65\xfc\x59\x90\x02\x00\xba\x58\x43\x2b\ +\x27\x19\x4e\xa0\x2c\x12\x2e\x7b\xf9\x2a\x77\x72\xcc\x76\x19\xaf\ +\x15\xac\x00\x80\x01\x36\xb1\x9d\x89\xd4\xd8\x2e\x44\x24\xcd\x9e\ +\xe6\xf3\xdc\x97\xb9\x19\xff\xcd\x04\x2d\x00\x60\x90\x03\x6c\x60\ +\x88\xb9\xba\xd7\x5f\x22\xa3\x87\x1f\xf0\xff\x58\x4b\xaf\xed\x42\ +\x5e\x2f\x78\x01\x00\x09\x5a\xd8\xcc\x0e\xa6\x51\x61\xbb\x14\x91\ +\x34\xd8\xc9\x97\xb8\x9b\xdd\xf4\xdb\x2e\xe4\xaf\x05\x31\x00\x60\ +\x88\x76\xf6\xb1\x81\x41\x4e\x52\x3f\x40\x42\xad\x9f\x9f\xf3\x75\ +\x9e\x08\xea\x63\x6b\xc1\x0c\x00\x48\xd1\x4b\x03\xdb\xd9\x41\x35\ +\x63\xdd\x99\x2b\x4d\x22\x65\x88\x0d\x7c\x99\x5f\xf2\x32\x5d\x41\ +\xbd\x3d\x3d\xa8\x01\x00\x30\xc4\x51\x76\xb2\x8b\x46\xc6\x51\x12\ +\xe8\x4a\x45\x5e\x2f\xc1\x7e\x7e\xc1\xf7\x78\x90\x83\x41\x9e\xeb\ +\x27\xe8\xbb\x55\x3f\xbb\xd8\xc1\x7e\xfa\x28\xa3\x50\x3d\x01\x09\ +\x85\x41\x1a\xf8\x23\x3f\xe1\x5e\xd6\x32\x60\xbb\x98\xbf\x2d\x1c\ +\x77\xdd\x65\x31\x9f\x65\x9c\xc5\x22\x26\x6a\x4c\x40\x02\x6d\x90\ +\x06\xd6\xb2\x92\x67\xd9\x14\x86\xdb\xcf\xc3\x11\x00\x00\xd9\xcc\ +\xe7\x5c\xce\x60\x3e\x53\x28\xb0\x5d\x8c\xc8\x1b\xe8\xa1\x8e\x4d\ +\xac\xe6\x4f\x6c\x09\xe6\x90\xdf\x5f\x0b\x4f\x00\x00\x64\x51\xcb\ +\x79\x2c\x61\x26\x53\xa8\x0c\xfc\xe9\x8b\xb8\x23\xc9\x51\xea\xd9\ +\xca\xb3\x3c\xc5\xde\x20\x9f\xf3\xbf\x5e\xb8\x02\xe0\x15\xa5\x9c\ +\xcc\x85\x2c\x65\x02\x15\x94\x87\x72\x09\x24\x3a\x52\xb4\xd2\x4c\ +\x23\x2f\xf3\x24\x6b\x68\xb1\x5d\x8e\x57\x61\xdd\x7d\xb2\xa9\xe4\ +\x6c\xce\x61\x31\xe5\x14\x53\x42\x4e\x68\x97\x44\xc2\x29\xc5\x20\ +\x1d\x74\x72\x8c\xb5\x3c\xc5\x4a\x9a\xc2\x74\xdc\xff\xb3\x70\xef\ +\x36\x31\x4a\x59\xc6\x12\x96\x30\x89\x02\xf2\xc9\x25\x57\x27\x06\ +\xe2\xab\x21\x06\x18\xa0\x8f\x6e\x1a\x78\x8e\x55\xac\xb4\x3b\xa9\ +\xe7\x48\x85\x3b\x00\xfe\xbc\x14\xd5\x9c\xc2\x69\xbc\x85\x59\x54\ +\x90\x43\xfc\xf8\x5f\x8c\xd8\xf1\x4b\x87\xd1\x58\x4e\xc9\xa4\x57\ +\x76\xeb\xe4\xf1\x97\x77\xbd\xf2\x37\xc8\x11\x76\xb0\x91\x17\xd9\ +\x40\x7d\x98\x77\xfc\x57\x45\x6d\xc7\xc8\xa2\x82\x19\xd4\x52\xcd\ +\x64\x26\x50\xce\x68\xc6\x90\x4d\x3e\x79\xba\x87\x40\x3c\x49\xd2\ +\x4f\x1f\x83\x1c\xe5\x18\xad\x34\x52\x4f\x3d\x7b\xd9\x4d\x73\x38\ +\xbb\xfa\x27\xf2\x3f\xf2\x2f\xd3\x05\x11\xe3\xdc\x2d\x00\x00\x00\ +\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\ +\x00\x32\x30\x31\x39\x2d\x30\x34\x2d\x30\x37\x54\x31\x37\x3a\x32\ +\x30\x3a\x35\x30\x2b\x30\x32\x3a\x30\x30\x9a\x7a\x70\x98\x00\x00\ +\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\ +\x79\x00\x32\x30\x31\x39\x2d\x30\x34\x2d\x30\x37\x54\x31\x37\x3a\ +\x32\x30\x3a\x35\x30\x2b\x30\x32\x3a\x30\x30\xeb\x27\xc8\x24\x00\ +\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\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\x23\x03\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ +\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ +\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ +\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ +\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ +\x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ +\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\ +\x00\x00\x07\x74\x49\x4d\x45\x07\xe3\x04\x07\x13\x15\x14\x07\x5c\ +\x72\xb5\x00\x00\x21\xd1\x49\x44\x41\x54\x78\xda\xed\xdd\x79\x9c\ +\x15\xd5\x99\xff\xf1\x4f\xb3\x2f\x8d\x6c\x2a\xa2\xa0\x80\x22\x20\ +\xe2\x02\x46\x54\x54\x5c\x50\xe3\x16\x0d\x4a\x4c\xdc\x27\x46\x7f\ +\x19\xe3\x88\xce\x24\x83\x31\x31\xa2\x51\x63\x96\x49\xd4\xf8\x8b\ +\x2f\xf3\x52\x23\x2e\x31\xb8\x3b\x9a\xb8\x8b\x22\x8a\x26\x20\x2a\ +\x3b\x46\x51\xc0\x88\xb2\x37\x4d\xb3\x74\xd3\x77\xfe\x40\x22\x1a\ +\x84\xa7\xea\x56\xdd\xa7\xaa\xce\xf7\x7d\x5f\xf1\x9f\x1c\x6e\x3d\ +\xe7\xd4\xa9\x6f\xd7\xad\xb5\x0a\x29\xae\x0e\x74\x63\x17\x3a\xd2\ +\x89\x8e\x74\xfa\xf4\xbf\xed\x68\x03\xb4\xa4\x0d\xd0\x8a\xd6\xc0\ +\x6a\xd6\x00\x75\xac\x05\xea\x58\xc9\x52\x96\xb2\xec\xd3\xff\x2d\ +\x65\x1e\xf3\x59\xe1\xdd\x11\x49\x4b\x95\x77\x01\x92\xa0\xd6\xf4\ +\xa5\x2f\xbb\xd1\x9d\x6e\xec\xcc\xce\xb4\x4b\xe8\x7b\x57\x32\x8f\ +\x79\xcc\x67\x01\x7f\x67\x26\xb3\x58\xe3\xdd\x51\x49\x8a\x02\x20\ +\xef\x5a\xb2\x17\xfd\xe9\xc7\x1e\xec\x41\x0f\x9a\x54\x60\x89\x8d\ +\xcc\x65\x06\x33\x99\xc9\x34\xa6\xb2\xd6\x7b\x00\xa4\x1c\x0a\x80\ +\xbc\xea\xc5\xc1\x0c\x62\x10\x83\x68\xe5\x58\x45\x03\x73\x98\xcc\ +\x64\x26\x30\x85\x46\xef\x21\x91\xe8\x14\x00\xf9\xd2\x8a\x03\x38\ +\x82\x43\x19\x98\xd8\xee\x7d\x52\x56\x32\x99\xf1\xbc\xc0\x6b\xda\ +\x27\xc8\x13\x05\x40\x3e\x34\x65\x1f\x86\x71\x30\x43\x33\xb7\xe1\ +\x7f\xd1\x6a\xde\x60\x02\xcf\x31\x9e\x75\xde\xa5\xc8\xd6\x29\x00\ +\xb2\x6e\x3b\x8e\xe7\x6b\x0c\xcb\xfc\x86\xff\x45\x35\x3c\xc7\xff\ +\xf2\x04\x4b\xbc\x0b\x91\x2d\x51\x00\x64\x57\x2f\x4e\xe4\x04\x86\ +\xd2\xdc\xbb\x90\x32\x34\x32\x85\x27\x18\xcb\x4c\xef\x42\x64\xf3\ +\x14\x00\x59\xd4\x97\x33\x38\x95\xbe\xde\x65\x24\x68\x06\x0f\x72\ +\x2f\x73\xbc\xcb\x10\xc9\xb6\xce\x5c\xc0\x04\x1a\x29\x15\xf2\x33\ +\x9d\x51\xec\xe0\x3d\xc4\x22\x59\xd4\x86\x33\x79\x92\x06\xf7\x8d\ +\x34\xed\x4f\x3d\x7f\xe1\x0c\xda\x78\x0f\xb7\x48\x76\xec\xce\xf5\ +\x2c\x76\xdf\x34\x2b\xf9\x59\xc1\xad\xec\xe9\x3d\xec\x22\xde\x5a\ +\x30\x82\x67\x0b\xbb\xcb\xbf\xb5\xcf\x24\xce\xce\xf5\x21\x4e\x91\ +\x32\x74\xe5\x5a\x16\xba\x6f\x84\xde\x9f\x7f\x70\x35\x5d\xbc\x57\ +\x85\x48\x65\xf5\xe2\x46\xea\xdc\x37\xbe\xac\x7c\xd6\x72\x17\x7d\ +\xbc\x57\x89\x48\x65\xec\xcb\x5d\x01\x1c\xec\x8b\xfa\x59\xcf\xe3\ +\x0c\xf6\x5e\x35\x22\xe9\x3a\x92\x17\xdc\x37\xb5\x2c\x7f\x9e\xe5\ +\x30\xef\x55\x24\x92\x8e\xc1\x3c\xe7\xbe\x81\xe5\xe1\x33\x81\x43\ +\xbc\x57\x95\x48\xb2\xf6\xe6\x71\xf7\x0d\x6b\x73\x9f\xc6\x4c\x9e\ +\x81\x68\xe4\x51\x06\x78\xaf\xb2\x30\xe8\x52\xe0\xf4\xf5\xe1\x2a\ +\x46\x54\xe4\x51\x1d\xff\x6a\x21\xf3\x59\xc0\x7c\x96\x7d\xfa\x90\ +\xaf\x65\x2c\x63\x35\xcb\x81\x12\xcb\x37\x69\xd7\x81\x2a\xa0\x03\ +\xad\xe9\xf8\xe9\x23\xc4\x3a\xd2\x89\xee\x74\xa3\x9b\xd3\xb5\x7b\ +\x8d\xfc\x89\x2b\xf9\xbb\xcb\xb2\x03\xa2\x00\x48\x57\x07\xae\xe4\ +\x7b\x15\x3c\xd7\xbd\x9e\xb9\xcc\x60\x16\xb3\x78\x8f\x05\x2c\x48\ +\xe4\xde\xfc\x96\x74\xa3\x1b\xbb\xd2\x87\x7e\xf4\xa3\x27\x4d\x2b\ +\xd6\x9b\x75\xfc\x96\xab\xa9\xa9\xd8\xf2\x02\xa4\x00\x48\x4f\x13\ +\xce\xe3\x5a\xb6\xab\xc0\x92\x96\x33\x99\xbf\xf1\x06\xb3\x98\x93\ +\xfa\xe3\x38\x5a\xd2\x87\xbe\x0c\xe4\x2b\x0c\xa2\x7d\x05\xfa\xf6\ +\x31\x97\x73\xa7\x9e\x36\x24\x79\x33\x84\xc9\x29\xff\x52\xae\x67\ +\x22\xbf\xe1\x74\x76\x77\x8a\xf1\x2a\xfa\x70\x06\x37\xf0\x1a\xf5\ +\x29\xf7\xf4\x6f\x1c\xe8\xbd\x3a\x45\xec\xba\x70\x6f\x8a\x07\xd7\ +\x1a\x98\xc4\x2f\x39\x3e\x43\x8f\x08\xd9\x86\x13\xf8\x15\x93\x59\ +\x9f\xe2\x61\xc1\xbb\xd8\xde\xbb\x9b\x22\x5b\x57\xc5\xb9\x2c\x49\ +\x69\x33\x58\xc8\x6d\x7c\x9d\x0e\xde\x5d\xfc\x52\x1d\x19\xce\xed\ +\x7c\x9c\x52\xef\x17\x73\x96\x77\x07\x45\xb6\xac\x27\x4f\xa7\x32\ +\xf9\xdf\xe5\x46\x86\xd1\xcc\xbb\x7b\x26\x4d\x18\xc4\x68\x26\xa5\ +\xb2\x0f\xf4\x24\xbb\x78\x77\x4f\x64\xf3\x9a\x72\x29\xb5\x89\x4f\ +\xf9\xa9\xfc\x90\x9e\xde\x5d\x8b\xa5\x17\x3f\x62\x5a\xe2\xe3\xb1\ +\x92\x8b\x9d\x4e\xa9\x8a\x6c\xc1\xee\xbc\x9e\xf0\x54\x9f\xc7\xcf\ +\xd9\xcb\xbb\x5b\x65\xdb\x9b\x5f\x30\x2f\xe1\x91\x79\x85\x5d\xbd\ +\xbb\x25\xb2\xa9\xf3\x12\xfd\xdb\xbf\x9a\x7b\x18\x5a\xa0\xbf\x73\ +\x4d\x38\x8c\x7b\x59\x93\xe0\x08\xd5\x70\x8e\x77\xa7\x44\x36\x68\ +\xcf\x1f\x13\x9c\xda\x73\x18\x55\x91\x6b\x07\x2a\xaf\x03\x17\x30\ +\x35\xc1\x91\x7a\x90\x4e\xde\x5d\x12\x39\x9c\xf9\x09\x4d\xe8\x7a\ +\xc6\x72\x78\xc1\x2f\xcd\xaa\xe2\x08\x1e\x48\xec\x66\xe8\x0f\x18\ +\xea\xdd\x21\x09\x59\x53\xae\x4d\xe8\xdc\x77\x2d\x37\xe5\xf4\x50\ +\x5f\x1c\xbd\xb8\x99\x55\x89\x8c\x5b\x03\x57\x57\xf0\xd2\x64\x91\ +\x4d\x74\x4e\xe8\x94\xdf\x27\x8c\xa6\xb3\x77\x67\x2a\xae\x3d\x23\ +\xf9\x30\x91\xf1\x1b\xa7\x4b\x84\xa4\xf2\xf6\xe3\x83\x04\x26\xef\ +\x87\x5c\x44\x6b\xef\xae\xb8\x69\xcd\x7f\xf0\x8f\x04\x46\x71\x2e\ +\x03\xbd\xbb\x22\x61\x39\x3b\x81\x27\xfa\x2d\x62\x54\xc0\x1b\xff\ +\x46\x2d\xb9\x80\x8f\xca\x1e\xcb\x35\x7c\xc7\xbb\x23\x12\x8a\x16\ +\xfc\xbe\xec\x09\xbb\x84\xcb\x68\xeb\xdd\x91\xcc\xa8\xe6\x47\x2c\ +\x2d\x7b\x4c\x6f\xa1\x85\x77\x47\xa4\xf8\x3a\x32\xae\xcc\x89\xba\ +\x96\x5f\x54\xe4\x46\xda\x7c\xe9\xc0\xaf\x58\x5b\xe6\xc8\x3e\x9f\ +\xe1\xfb\x24\xa4\x10\x7a\x32\xa3\xcc\x49\xfa\x2c\xfd\xbc\x3b\x91\ +\x59\xbd\xb9\xbf\xcc\xd1\x9d\x43\x6f\xef\x4e\x48\x71\xed\x5f\xe6\ +\x8b\x3c\x66\x72\xac\x77\x17\x32\xef\x08\xde\x2a\x6b\x8c\x17\x31\ +\xc4\xbb\x0b\x52\x4c\xc3\xcb\x3a\xf0\x57\xc3\xc5\x3a\x63\x6d\xd2\ +\x8c\x4b\x58\x59\xc6\x48\xaf\xe2\x64\xef\x2e\x48\xf1\x5c\x54\xd6\ +\x25\x3f\x8f\xd3\xdd\xbb\x03\xb9\xb2\x0b\x7f\x2e\x63\xb4\xd7\x73\ +\xa1\x77\x07\xa4\x58\x46\x95\x31\x1d\x17\x72\xb6\x77\xf9\xb9\x74\ +\x22\x0b\xca\x18\xf5\x2b\xbd\xcb\x97\xe2\xf8\x59\x19\x13\xf1\x76\ +\x1d\x99\x8e\xad\x23\x77\x96\x31\xf2\xd7\x78\x97\x2f\x45\x50\xc5\ +\x6f\x62\x4f\xc1\x45\xfa\x35\x5a\xb6\xe1\x2c\x8e\x3d\xfe\xbf\x2b\ +\xd0\x2d\xd5\xe2\xa2\x29\xb7\xc7\x9e\x7e\xcf\xb0\x93\x77\xf9\x85\ +\xd0\x85\x27\x62\xaf\x83\xbb\x73\xf2\x18\x35\xc9\xa4\x26\xdc\x13\ +\x73\xe2\xd5\x71\x51\xc1\x6f\xec\xad\xa4\x2a\x46\xb2\x3a\xe6\x9a\ +\x18\xa3\xbd\x00\x89\xa7\x2a\xf6\x25\xbf\xb3\xd9\xd3\xbb\xf8\xc2\ +\xd9\x8b\x77\x62\xae\x8d\x5b\x14\xc5\x12\xc7\x2f\x63\x4e\xb8\xc7\ +\x74\xd8\x2f\x15\xed\x78\x20\xe6\x1a\xb9\xc1\xbb\x74\xc9\x9f\x6b\ +\x63\x4d\xb5\x7a\x46\xe9\xef\x4d\x6a\xaa\x18\xc9\xba\x58\xeb\x65\ +\xb4\x77\xe9\x92\x2f\x3f\x8c\x35\xcd\x3e\xe2\x50\xef\xc2\x0b\xef\ +\xb0\x98\x97\x63\xff\xc0\xbb\x70\xc9\x8f\xef\xc4\x9a\x62\x6f\xb1\ +\xb3\x77\xe1\x41\xe8\x11\xeb\xd1\xa2\x8d\xfc\x9b\x77\xe1\x92\x0f\ +\xc7\xc4\x7a\xd9\xe5\xd3\xba\xc5\xb7\x62\xaa\x63\x9d\x18\x5c\xc7\ +\x51\xde\x85\x4b\xf6\xf5\x67\x79\x8c\xc9\xf5\x7b\x9a\x7b\x17\x1e\ +\x94\xa6\xfc\x36\xc6\x5a\x5a\x51\x80\x17\xad\x48\xaa\x76\x8a\xf1\ +\x90\xef\xf5\x5c\xe2\x5d\x76\x90\x2e\x8d\x71\x7b\xd6\xfb\x74\xf5\ +\x2e\x5b\xb2\xab\x1d\x53\x22\x4f\xa9\x06\xce\xf5\x2e\x3b\x58\xdf\ +\x8a\x71\x4e\x60\x32\xd5\xde\x65\x4b\x36\x35\x89\xf1\xcb\xb2\x8e\ +\x13\xbc\xcb\x0e\xda\x89\x31\xae\x10\x7c\x44\x27\x6a\x65\x73\xae\ +\x8a\x3c\x95\x56\x32\xcc\xbb\xe8\xe0\x0d\x65\x45\xe4\xf5\x76\xb9\ +\x77\xd1\x92\x3d\xc7\x47\xfe\x45\xb9\x88\x41\xde\x45\x0b\xf0\x15\ +\x96\x44\xfe\xd9\x76\xb4\x77\xd1\x92\x2d\x3d\x22\xdf\x74\xba\x4c\ +\x9b\x7f\x66\xec\x13\x39\x02\x96\xd2\xcb\xbb\x68\xc9\x8e\xd6\x4c\ +\x8e\x38\x81\x56\xb0\xbf\x77\xd1\xb2\x89\xc1\x91\x7f\x08\xbc\x49\ +\x1b\xef\xa2\x25\x2b\xee\x8a\xfc\xdb\xff\x20\xef\x92\xe5\x0b\x0e\ +\xa6\x36\xe2\x5a\xbc\xc3\xbb\x64\xc9\x86\xb3\x22\x4e\x9c\x3a\x0e\ +\xf7\x2e\x59\x36\x23\x7a\x04\x7c\xcb\xbb\x64\xf1\xd7\x23\xe2\xce\ +\x63\xbd\x9e\xed\x9f\x59\x27\x44\xbc\x88\x7b\x99\xee\xde\x08\x5d\ +\x13\x5e\x8c\xf8\x57\xe3\xdf\xbd\x4b\x96\x2d\x88\x7a\x1b\xd7\x78\ +\xbd\xab\x21\x6c\x57\x44\x9c\x30\xa3\xbd\x0b\x96\xad\x88\xfa\x1c\ +\x87\xcb\xbc\x0b\x16\x3f\xfb\x45\xbc\x94\xf4\x1e\x5d\x43\x96\x79\ +\x55\x11\x1f\x25\x5e\xaf\xf3\x39\xa1\x6a\xc5\xec\x48\x53\xe5\x19\ +\xdd\xf1\x97\x0b\x2d\x78\x21\xd2\x7a\x9d\x41\x4b\xef\x92\xc5\xc3\ +\x75\x91\xa6\xc9\x5c\xb6\xf5\x2e\x58\x8c\x3a\xf1\xae\x7e\xd8\xc9\ +\x96\x0d\x88\xb4\xfb\x5f\xc7\x40\xef\x82\x25\x82\xbd\x59\x15\x61\ +\xed\xae\xa5\xbf\x77\xc1\x52\x59\x4d\x78\x25\xd2\xdf\x88\x73\xbc\ +\x0b\x96\x88\xce\x88\xb4\x7e\x5f\xd3\xdb\x03\xc2\x72\x71\xa4\xe9\ +\xf1\x2b\xef\x72\x25\x86\x1b\x22\xad\xe3\xef\x7a\x97\x2b\x95\xd3\ +\x9d\x9a\x08\x53\xe3\x65\xbd\x5e\x2a\x97\x9a\x45\xda\xcb\x5b\xae\ +\x17\xb9\x85\xe3\xfe\x08\x13\x63\x19\x3d\xbc\xcb\x95\x98\xba\xb3\ +\x34\xc2\x9a\xbe\xd7\xbb\x5c\xa9\x8c\x03\x69\x8c\x30\x2d\x74\xbd\ +\x78\x9e\x8d\x88\xb0\xa6\x1b\x19\xe2\x5d\xae\xa4\xaf\x8a\xd7\x23\ +\x4c\x8a\xdb\xbd\xcb\x95\x32\x8d\x89\xb0\xb6\x27\xea\x42\xaf\xe2\ +\x3b\x33\xc2\x84\x78\x87\x76\xde\xe5\x4a\x99\xaa\x23\x5d\xee\x75\ +\x9a\x77\xb9\x92\xae\xd6\xcc\x33\x4f\x86\xf5\x1c\xe0\x5d\xae\x24\ +\xe0\xe0\x08\x0f\x7b\x9b\x4b\x2b\xef\x72\x25\x4d\x3f\x8e\xf0\xd7\ +\xe0\x06\xef\x62\x25\x21\x37\x47\x58\xeb\xba\x39\xa8\xc0\x3a\xb0\ +\xcc\x3c\x11\xde\xd7\xf3\xe3\x0b\xa3\x2d\xef\x99\xd7\xfb\x72\x3a\ +\x7a\x97\x2b\x69\xf9\x69\x84\xbf\x04\xc7\x78\x17\x2b\x09\x3a\x36\ +\xc2\x9a\x1f\xed\x5d\xac\xa4\x23\xca\xdf\xff\x31\xde\xc5\x4a\xc2\ +\xee\xd5\x3e\x40\xe8\xae\x36\x4f\x81\x15\x74\xf1\x2e\x56\x12\xb6\ +\x7d\x84\x97\xbe\x8e\xf6\x2e\x56\x92\x17\xe5\xef\xff\xa5\xde\xc5\ +\x4a\x0a\x7e\xa0\x7d\x80\x90\xd9\xff\xfe\xbf\xa3\x07\x44\x14\x52\ +\x8b\x08\x57\x04\x8c\xf6\x2e\x56\x92\xd5\x26\xc2\xbb\x63\x8e\xf7\ +\x2e\x56\x52\x72\xb2\x79\x0e\x2c\xa5\xad\x77\xb1\x92\xa4\xef\x99\ +\x57\xfd\x73\xde\xa5\x4a\x8a\x9e\x36\xcf\x03\xdd\x1e\x5c\x20\x55\ +\xcc\x32\xae\xf6\xf5\xec\xe5\x5d\xac\xa4\x68\x5f\xf3\x8d\x60\xd3\ +\x75\x5f\x40\x71\x1c\x67\xce\xfd\xfb\xbd\x4b\x95\x94\x3d\x6c\x9e\ +\x0b\xba\x12\xa4\x30\xac\x3b\x7e\xfa\xfb\x5f\x7c\x7b\x9a\xef\x0c\ +\xf8\x8b\x77\xa9\x92\x8c\x3d\xcc\xbb\x7d\xf7\x79\x97\x2a\x15\x60\ +\x7d\x1c\x4c\x23\xfd\xbc\x4b\x95\x24\x58\x6f\x05\x69\xd0\x0a\x0f\ +\x42\x7f\xf3\x3e\xc0\x8d\xde\xa5\x4a\xf9\x5a\x9a\x4f\x00\xfe\xc9\ +\xbb\x54\xa9\x90\xb1\xc6\x19\xb1\x88\x16\xde\xa5\x4a\xb9\xec\x0f\ +\x85\xd2\x2b\xa2\x42\xb1\x9f\x79\x4e\x7c\xdd\xbb\x54\x29\xd7\x13\ +\xc6\x55\x3d\xde\xbb\x50\xa9\x20\xeb\xf3\x82\x1f\xf5\x2e\x54\xca\ +\xd3\xc5\xfc\xfe\x1f\x65\x7d\x48\x4e\x35\xce\x8a\x7a\xdd\x16\x96\ +\x6f\xdf\x37\xae\xe8\xf7\xf4\x9e\xf8\xa0\x34\x35\xbf\x3d\xf0\x12\ +\xef\x52\xa5\x1c\x6f\x19\x57\xf3\x48\xef\x42\xa5\xc2\xfe\xcb\x38\ +\x33\xde\xf0\x2e\x54\xe2\xeb\x6d\x5c\xc9\xab\x75\xfb\x67\x70\x3a\ +\xb3\xc6\x38\x3b\x7a\x7b\x97\x9a\xa6\x62\xbf\x12\x71\xb8\xb1\xdd\ +\xa3\x2c\xf3\x2e\x55\x2a\x6c\x09\x4f\x18\x5b\x7e\xcd\xbb\x54\x89\ +\x6b\xa2\x31\xe3\x8f\xf6\x2e\x54\x1c\x1c\xaf\xf3\x43\xc5\xb6\x83\ +\xf1\x8a\xaf\x05\x3a\x00\x18\xa4\x66\x7c\x68\x9a\x1f\xeb\xd9\xc1\ +\xbb\xd4\xf4\x14\xf9\x27\xc0\xd7\x8d\xbd\xfb\x03\xeb\xbd\x4b\x15\ +\x07\x0d\xdc\x6d\x6a\xd7\x84\x13\xbc\x4b\x95\x38\x9e\x32\xee\xe2\ +\xf5\xf1\x2e\x54\x9c\xf4\x37\xce\x10\xeb\xd1\x02\xc9\x90\x36\xc6\ +\xa3\xbc\xd3\xbc\x0b\x15\x47\xb6\x07\xc5\xac\x2e\xee\x0b\xc3\x8a\ +\xfb\x13\x60\x88\xf1\xd1\x9e\x0f\x7b\x17\x2a\x8e\x1e\x31\xb5\x6a\ +\x55\xdc\xb7\x44\x16\x37\x00\x0e\x37\xb6\xb3\x4d\x01\x29\x26\xeb\ +\xda\xb7\xce\x26\xc9\x0c\xdb\x29\xc0\xb9\x7a\xf2\x5b\xd0\xaa\x8c\ +\x6f\x8b\x7e\xd9\xbb\xd0\xb4\x14\x75\x0f\xa0\x1d\x83\x4c\xed\x1e\ +\xa1\xe4\x5d\xaa\x38\x2a\xf1\x98\xa9\xdd\xfe\x45\x7d\x4c\x78\x51\ +\x03\xe0\x60\x9a\x9b\xda\x3d\xe5\x5d\xa8\x38\xb3\xcd\x80\x16\x0c\ +\xf1\x2e\x34\x1d\x45\x0d\x80\xc3\x4c\xad\xd6\x31\xc1\xbb\x50\x71\ +\x36\x9e\x7a\x53\xbb\x82\x1e\x05\x28\x6a\x00\x1c\x68\x6a\xf5\x1a\ +\x75\xde\x85\x8a\xb3\x95\x4c\x32\xb5\x1b\xec\x5d\x68\x3a\x8a\x19\ +\x00\x4d\xd8\xc7\xd4\x6e\x9c\x77\xa1\x92\x01\xcf\x9b\x5a\x0d\x2c\ +\xe6\xe1\xe2\x62\x06\x40\x6f\xda\x99\xda\xbd\xe0\x5d\xa8\x64\x80\ +\xed\xcf\x40\x7b\x76\xf5\x2e\x34\x0d\xc5\x0c\x80\x81\xa6\x56\xab\ +\x79\xdd\xbb\x50\xc9\x80\x57\x59\x63\x6a\x67\x9b\x55\x39\x53\xcc\ +\x00\xd8\xcf\xd4\xea\x4d\xd6\x7a\x17\x2a\x19\xb0\x86\xb7\x4d\xed\ +\x14\x00\xb9\x61\x5b\x55\xb6\x83\x3f\x52\x7c\x93\x4d\xad\x14\x00\ +\xb9\xb1\x8f\xa9\x95\x9e\xf6\x26\x1b\xd8\x02\x60\x5f\xef\x32\xc5\ +\xa6\x8b\xf1\x26\xcf\x3d\xbd\x0b\x95\x8c\xd8\xdb\x38\x63\x3a\x79\ +\x17\x9a\xbc\x22\xee\x01\xec\x66\x6a\x55\xc7\x2c\xef\x42\x25\x23\ +\xa6\xb3\xda\xd4\xce\x36\xb3\x72\xa5\x88\x01\x60\x3b\x5d\x33\x95\ +\x06\xef\x42\x25\x23\x1a\x98\x6e\x6a\x57\xc0\xe7\x03\x17\x31\x00\ +\x6c\x39\x3d\xdb\xbb\x4c\xc9\x90\x39\xa6\x56\xda\x03\xc8\x05\xdb\ +\x6a\xfa\xbb\x77\x99\x92\x21\xb6\xd9\x50\xc0\x4b\x81\x14\x00\x22\ +\xf0\x8e\xa9\x95\x7e\x02\xe4\x42\x4f\x53\x2b\x05\x80\x7c\xc6\x16\ +\x00\xbd\xbc\xcb\x94\xad\x6b\x46\xa3\xe9\x94\x8e\x5e\x06\x26\x9f\ +\xe9\x6c\x7c\x43\x40\x33\xef\x42\x93\x56\xbc\x3d\x80\x6d\x4d\x77\ +\x6d\x2d\xd3\xcb\xc0\x64\x13\x4b\x58\x61\x68\xd5\xa4\x78\x57\x02\ +\x14\x2f\x00\x6c\xef\x73\x5f\xe8\x5d\xa6\x64\xcc\xc7\xa6\x56\xdb\ +\x7b\x97\x99\xb4\xe2\x05\xc0\x76\xa6\x56\x9f\x78\x97\x29\x19\x63\ +\x9b\x11\xb6\xd9\x95\x23\xc5\x0b\x00\x5b\x46\x2b\x00\xe4\xf3\x6c\ +\x33\x42\x7b\x00\x99\xa7\x3d\x00\x89\x43\x7b\x00\x05\x61\x3b\x4c\ +\xb3\xd8\xbb\x4c\xc9\x98\x45\xa6\x56\x9d\xbd\xcb\x4c\x5a\xf1\x02\ +\xc0\xf6\x16\xb7\x25\xde\x65\x4a\xc6\xd8\x66\x44\xe1\xde\x11\x18\ +\x6a\x00\xd8\xee\xfe\x92\x70\xd8\x1e\x0b\x66\x7b\xdf\x64\x8e\x14\ +\x2f\x00\x6c\xab\x48\x0f\x03\x93\xcf\xb3\xcd\x08\xed\x01\x64\x9e\ +\x02\x40\xe2\xd0\x1e\x40\x41\x28\x00\x24\x0e\xdb\x8c\x50\x00\x64\ +\x9e\x02\x40\xe2\xb0\xed\x01\xe8\x27\x40\xe6\xd9\x7a\xa4\x83\x80\ +\xf2\x79\xeb\x4c\xad\xb4\x07\x90\x79\xb6\xf3\xb9\x1f\x79\x97\x29\ +\x19\x13\xe8\x6b\xe2\x8b\x17\x00\xef\x1a\xda\xac\x65\x81\x77\x99\ +\x22\x59\x50\xbc\x00\x78\xc2\xd0\xe6\x05\xbd\x15\x58\x04\x8a\x18\ +\x00\xd3\x79\x6d\xab\x6d\x6e\xf7\x2e\x52\x24\x1b\x8a\x17\x00\x30\ +\x6a\x2b\xbf\xe7\x5e\xe5\x61\xef\x12\x45\xb2\xa1\x88\x01\x30\x9e\ +\xab\xb6\xf0\xff\x2e\xe1\xac\x50\x0f\xf8\x88\x84\xa1\x8a\x5f\x7c\ +\xc9\x53\xdd\x16\x30\xc8\xbb\x38\xc9\xa4\x23\x4c\x4f\x05\x7c\xdc\ +\xbb\x4c\xb1\x3a\x85\xb9\x5f\x58\x79\x8d\xdc\x47\x57\xef\xb2\x24\ +\xa3\x02\x0d\x80\xc2\x3d\xe5\xf4\x9f\x1e\xe2\x09\x86\x73\x12\x03\ +\xe8\xc2\x1a\xe6\xf1\x02\x63\x99\xea\x5d\x94\x88\x88\x64\x4f\xa0\ +\x7b\x00\x45\x3c\x08\x28\x22\x46\x0a\x00\x91\x80\x29\x00\x44\x02\ +\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\x80\x29\x00\x44\ +\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\x80\x29\x00\ +\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\x80\x29\ +\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\x80\ +\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\ +\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\ +\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\ +\x00\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\ +\x0a\x00\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\ +\x60\x0a\x00\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\ +\x24\x60\xcd\xbc\x0b\x48\x51\x7b\xb6\xa3\x33\xed\xe8\x40\x15\xcd\ +\x68\xe7\x5d\x8e\x64\x5a\x1f\xef\x02\x7c\x14\x2b\x00\xaa\xd9\x93\ +\xbd\x18\x40\x2f\x7a\xd0\x93\xd6\xde\xe5\x48\xe1\x6c\x47\x0f\xde\ +\xf7\x2e\x22\x49\x55\xde\x05\x24\x62\x17\x86\x32\x84\x83\xd8\x43\ +\x3f\x69\x24\x75\x1f\xf3\x1a\xaf\x33\x91\x49\xd4\x7a\x97\x52\xbe\ +\x7c\x07\x40\x53\x86\x72\x1c\xc7\xd1\xcf\xbb\x10\x09\x50\x03\x2f\ +\xf1\x28\x8f\x31\xdf\xbb\x90\x72\xe4\x35\x00\xaa\x38\x84\xd3\x38\ +\x95\xed\xbd\x0b\x91\xc0\x95\x98\xcc\x23\x3c\xc4\x6c\xef\x42\xe2\ +\xc9\x63\x00\x74\x64\x04\xff\xc1\x9e\xde\x65\x88\x6c\x62\x32\x37\ +\x71\x1f\xf5\xde\x65\x44\x95\xb7\x00\xe8\xcd\x45\x9c\xaf\xc3\x7b\ +\x92\x49\x0b\x19\xc3\xef\x98\xe7\x5d\x46\x14\x79\x0a\x80\x03\xf9\ +\x09\xc7\xe4\xaa\x62\x09\x4f\x03\x63\xb8\x3a\x3f\x21\x90\x97\xcd\ +\x69\x20\x57\x73\xbc\x77\x11\x22\x26\x6b\xf9\x3d\xd7\xb1\xd0\xbb\ +\x0c\x8b\x3c\x04\xc0\x4e\x5c\xc7\x59\xb9\xa8\x54\x64\xa3\x55\xdc\ +\xcc\xcf\x59\xe6\x5d\xc6\xd6\x64\x7d\xb3\x6a\xc1\xf7\xb9\x9c\xb6\ +\xde\x65\x88\xc4\xf0\x31\x23\x19\xeb\x5d\xc4\x96\x65\x3b\x00\xf6\ +\xe5\x36\x06\x7a\x17\x21\x52\x86\xbf\x70\x21\x1f\x78\x17\xf1\xe5\ +\x9a\x7a\x17\xf0\xa5\x5a\x72\x3d\x77\xb0\x93\x77\x19\x22\x65\xe9\ +\xcd\x77\xa8\x63\x12\x25\xef\x42\x36\x2f\xab\x7b\x00\xfd\xb8\x97\ +\x7d\xbd\x8b\x10\x49\xc8\x78\xbe\xc9\x47\xde\x45\x6c\x4e\x36\xaf\ +\x9d\x3f\x8f\xc9\xda\xfc\xa5\x40\x0e\x65\x32\x43\xbd\x8b\xd8\x9c\ +\xec\xfd\x04\x68\xc9\xaf\xb9\x96\xe6\xde\x65\x88\x24\xaa\x1d\x67\ +\xd1\x84\xf1\x59\xfb\x29\x90\xb5\x9f\x00\xdb\xf3\x18\x07\x78\x17\ +\x21\x92\x92\x27\x38\x9d\x95\xde\x45\x6c\x2a\x5b\x01\xb0\x1b\x7f\ +\xa1\xb7\x77\x11\x22\x29\x9a\xca\x57\xf9\x87\x77\x11\x9f\xc9\xd2\ +\x31\x80\x21\xfc\x55\x9b\xbf\x14\xdc\x00\x5e\xa2\x97\x77\x11\x9f\ +\xc9\xce\x1e\xc0\x91\x3c\x96\xf8\x05\x3f\x1f\xf3\x11\xab\xa8\xa5\ +\x86\x1a\xd6\x7b\x77\x50\x72\xa5\x29\xdb\xb0\x0d\xd5\xb4\xa5\x2b\ +\x5d\x12\xfe\xee\x85\x1c\xcb\x9b\xde\x1d\xdc\x20\x2b\x01\x70\x1c\ +\x0f\xd1\x2a\x91\x6f\x5a\xc5\xcb\x4c\x66\x36\xb3\x98\xc3\x0a\xef\ +\x6e\x49\x21\x74\x60\x77\xfa\xd0\x97\x41\x1c\x9c\xd0\x1f\xa9\x1a\ +\x8e\x67\x82\x77\xb7\xb2\x63\x18\xab\x29\x95\xf9\x69\x60\x1c\x57\ +\x30\x44\xe7\x0f\x24\x45\xcd\x39\x98\x9f\xf0\x22\x0d\x65\xcf\xd7\ +\xe5\x3a\xd1\xbd\xd1\x41\xac\x2c\x73\x30\xa7\x33\x9a\x5d\xbc\xbb\ +\x21\x01\xe9\xca\x48\x26\x97\x39\x6b\x3f\xa1\xaf\x77\x37\xb2\x60\ +\x00\xcb\xcb\x18\xc4\x3a\x6e\x66\x6f\xef\x2e\x48\xa0\xf6\xe1\x66\ +\xea\xca\x98\xbd\x1f\xd0\xdd\xbb\x0b\xde\x76\xe4\x83\xd8\xc3\x57\ +\xc3\xf5\x89\x1f\x9e\x11\x89\xa6\x0b\x3f\xa7\x26\xf6\x1c\x9e\xc9\ +\xb6\xde\x1d\xf0\xd4\x26\xf6\x6e\xd4\x2a\x46\xd3\xd1\xbb\x7c\x11\ +\x00\x3a\x71\x15\xab\x62\xce\xe4\xe7\x0b\xf6\x6e\x8e\x48\xee\x8c\ +\x39\x68\x8f\xd3\xc3\xbb\x74\x91\xcf\xe9\xc6\x03\x31\x67\xf3\xcf\ +\xbd\x4b\xf7\x72\x69\xac\xe1\x9a\xcf\xa9\xde\x85\x8b\x6c\xd6\x89\ +\xcc\x8d\x31\xa3\x1b\x19\xe1\x5d\xb8\x87\xc1\xac\x8b\x31\x58\x77\ +\xe8\xe9\x40\x92\x61\x6d\x19\x13\x63\x56\xaf\x08\xef\xcd\x84\xd5\ +\xbc\x13\x79\x98\x6a\x39\xdb\xbb\x6c\x91\xad\x3a\x37\xc6\xf1\x80\ +\x69\x09\x5d\x06\x97\x1b\xb7\x47\x1e\xa2\xa9\x7a\x01\x98\xe4\x44\ +\x7f\xa6\x47\x9e\xdf\x3f\xf3\x2e\xba\x92\xbe\x1a\x79\x78\x5e\x60\ +\x1b\xef\xa2\x45\xcc\xaa\x79\x3a\xe2\x0c\xaf\x67\x3f\xef\xa2\x2b\ +\xa5\x2d\xef\x46\x1c\x9c\x47\x42\xdb\x41\x92\xdc\x6b\xc1\xd8\x88\ +\xb3\xfc\xad\x50\x2e\x63\xbf\x21\xe2\xc0\xfc\xff\x4c\xdd\xb4\x2c\ +\x62\xd3\x94\x5b\x22\xce\xf4\x2b\xbc\x4b\xae\x84\xfe\xd4\x47\x1a\ +\x94\x1b\xbd\x0b\x16\x89\xed\xa6\x48\x73\x7d\x0d\xbb\x7b\x17\x9c\ +\xbe\xa7\x22\x0d\xc9\x1f\xf5\xd7\x5f\x72\xac\x2a\xe2\x69\xc1\xfb\ +\xbd\x0b\x4e\xdb\xf1\x91\x86\xe3\x29\x5a\x78\x17\x2c\x52\x96\x16\ +\x3c\x13\x61\xc6\x37\x16\xfb\x50\x60\x15\x53\x22\x0c\xc6\xdf\x74\ +\xd1\x8f\x14\x40\x75\xa4\x3b\x5e\x9e\xf3\x2e\x37\x4d\xa7\x46\x18\ +\x88\x65\xf4\xf4\x2e\x57\x24\x11\x3b\xb3\x24\xc2\xcc\x3f\xca\xbb\ +\xdc\xb4\x54\x31\x35\xc2\xae\xd0\xc9\xde\xe5\x8a\x24\xe6\x94\x08\ +\x01\x30\xc9\xbb\xd8\xb4\x44\xf9\xfd\xff\x1b\xef\x62\x45\x12\xf5\ +\xdb\x08\xb3\xff\x30\xef\x62\xd3\xf1\xbc\x79\x00\xa6\xe8\xe0\x9f\ +\x14\x4c\x4b\xde\x36\xcf\xff\x87\xbc\x8b\x4d\xc3\x3e\xe6\xee\xaf\ +\xd7\xbb\x81\xa4\x80\x86\xd0\x68\xdc\x02\x1a\xd8\xd9\xbb\xd8\xe4\ +\xd9\xaf\x8a\xba\xd5\xbb\x54\x91\x54\xdc\x61\xde\x06\xae\xf7\x2e\ +\x35\x69\x6d\x59\x61\xec\xfa\xe2\xb0\x9f\x92\x26\x05\xd6\x99\x45\ +\xc6\xad\x60\x29\x6d\xbc\x8b\x4d\xd6\xb7\xcd\xd9\x77\xbe\x77\xa9\ +\x22\xa9\xb9\xd0\xbc\x1d\x7c\xcb\xbb\xd4\x64\x3d\x67\xec\xf6\x3c\ +\x1d\xfe\x93\x02\x6b\x6e\x7e\x0a\x76\xa1\x0e\x04\x6e\x67\xbe\x01\ +\xe8\x42\xef\x52\x45\x52\x35\xd2\xb8\x25\xac\x2a\xd2\x75\xb0\xdf\ +\x35\x76\xfa\x23\xdd\xf7\x2f\x05\xd7\x86\x85\xc6\xad\xa1\x22\x0f\ +\xbf\xad\xcc\xbd\x76\x27\x1a\xdb\xfd\x9a\x35\x15\xa9\x47\xc4\x4b\ +\x9d\xf9\x22\xb7\x53\xbc\x4b\x4d\x4a\x6b\xe3\x43\x12\xd7\xd0\xc9\ +\xbb\x54\x91\xd4\x6d\xcb\x5a\xd3\xf6\x50\x53\x89\xfd\xe1\x4a\xec\ +\x01\x0c\x35\x9e\xd2\x78\x82\xa5\x15\xa8\x46\xc4\xd7\x62\x9e\x34\ +\xb5\x6b\xc7\xe0\xf4\x8b\xa9\x44\x00\x1c\x61\x6c\x77\x77\x05\x6a\ +\x11\xf1\x77\x97\xb1\xdd\x10\xef\x42\x93\xf1\xaa\xf1\x02\x20\x9d\ +\x00\x94\x30\xb4\x60\xb1\x69\x9b\xf8\xb3\x77\xa1\x49\x68\xc9\x1a\ +\x53\x67\x6f\xf1\x2e\x54\xa4\x62\x7e\x6f\xda\x26\x96\xa6\xbf\x87\ +\x9e\xfe\x4f\x80\x7d\x69\x69\x6a\x57\xe8\x27\xa1\x88\x7c\x8e\x6d\ +\xb6\x77\x64\x8f\xb4\x0b\x49\x3f\x00\xf6\x36\xb5\x6a\xe4\xc5\xd4\ +\x2b\x11\xc9\x8a\x71\x94\x4c\xed\x0e\x4a\xbb\x90\xac\x04\xc0\x5b\ +\x2c\x49\xbd\x12\x91\xac\x58\xc4\x54\x53\xbb\x02\xec\x01\x0c\x30\ +\xb5\x1a\x97\x7a\x1d\x22\x59\xf2\x82\xa9\xd5\xae\x69\x97\x91\x7e\ +\x00\xec\x66\x6a\x35\x31\xf5\x3a\x44\xb2\xc4\x36\xe3\x73\x1f\x00\ +\xad\xe9\x62\x6a\x37\x2b\xed\x8e\x8a\x64\xca\x6c\x53\xab\x9e\x79\ +\x7f\x31\x4e\x3f\xd3\xe9\x8e\xf5\xba\x09\x48\x02\xd3\x9a\xf5\xa6\ +\x6d\xa3\x5b\xba\x65\xa4\x9d\x2f\x3b\x99\x5a\x7d\xa0\x9b\x80\x24\ +\x30\xab\x99\x6f\x6a\x67\xfb\x09\x1d\x5b\xda\x01\xb0\x9d\xa9\x95\ +\x6d\x77\x48\xa4\x48\xe6\x98\x5a\xa5\xfc\x80\xbc\xb4\x03\xc0\x76\ +\x7f\xdf\x82\x94\xab\x10\xc9\x9e\x79\xa6\x56\xd5\xe9\x16\x91\x76\ +\x00\x74\x36\xb5\x5a\x99\x72\x15\x22\xd9\x63\x9b\xf5\x39\x0f\x80\ +\xd6\xa6\x56\x35\x29\x57\x21\x92\x3d\x41\x04\x80\xed\x0e\xbf\xda\ +\x94\xab\x10\xc9\x1e\x5b\x00\xa4\xfc\x64\xc0\x6c\x04\x80\x7e\x02\ +\x48\x78\x82\xd8\x03\x68\x66\x6a\xa5\x93\x80\x12\x9e\xd5\xa6\x56\ +\x29\x5f\x21\x93\xf3\xeb\x8c\x44\xa4\x1c\x0a\x00\x91\x80\x29\x00\ +\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\x80\xd9\ +\x4e\xd3\x49\xb1\x74\xa6\x0f\xdd\xe8\x40\x35\xd5\x40\x2d\xb5\x2c\ +\xe3\x43\x66\xeb\xb1\x6c\xe1\x51\x00\x84\xa3\x2d\x43\x38\x9c\x83\ +\xe9\xf7\xa5\x77\x68\x2c\x61\x06\x13\x18\xc7\x2b\xd4\x79\x17\x2b\ +\x95\xa1\x00\x08\x41\x35\xc3\x39\x8b\x43\xb7\x7a\x5d\x66\x67\x0e\ +\xe1\x10\x7e\xc8\x3a\x5e\xe4\x1e\x1e\x66\x95\x77\xe1\x92\x36\x1d\ +\x03\x28\xba\xbd\x19\xc3\x42\xc6\x30\x2c\xc2\x9b\x97\x5a\x70\x34\ +\x77\xb1\x90\x3b\xd9\xcb\xbb\x7c\x49\x97\x02\xa0\xc8\xf6\xe5\x7e\ +\xa6\x70\x76\xcc\x1b\x4a\xaa\x39\x87\xb7\x78\x96\x03\xbc\xbb\x21\ +\xe9\x51\x00\x14\xd5\xce\x3c\xc2\x1b\x8c\xa0\xaa\xcc\xef\x19\xc6\ +\x44\x1e\xa4\xbb\x77\x77\x24\x1d\x0a\x80\x22\x6a\xce\x28\x66\x70\ +\x72\x62\xdf\x77\x0a\x33\xf8\x3e\xcd\xbd\xbb\x25\xc9\x53\x00\x14\ +\xcf\xce\xbc\xc4\xf5\x09\xdf\x47\x5e\xcd\x2f\x79\x95\x5e\xde\x5d\ +\x93\xa4\x29\x00\x8a\xe6\x24\xde\xe4\xc0\x54\xbe\x79\x3f\xde\x60\ +\x84\x77\xf7\x24\x59\x0a\x80\x62\xb9\x9a\x47\xe9\x98\xda\xb7\xb7\ +\x67\x2c\x57\x7a\x77\x51\x92\xa4\x00\x28\x8e\xa6\xdc\xc2\x15\x29\ +\x2f\xa3\x8a\xd1\xdc\xae\xab\x47\x8a\x43\xab\xb2\x28\x9a\x71\x1f\ +\xa7\x56\x64\x49\xdf\xa6\x1d\xa7\xd3\xe0\xdd\x61\x49\x82\xf6\x00\ +\x8a\xa1\x8a\x5b\x2b\xb4\xf9\x03\x8c\xe0\x0f\x65\x9f\x5e\x94\x4c\ +\x50\x00\x14\xc3\x2f\xf8\x76\x45\x97\x77\x26\x3f\xf3\xee\xb2\x24\ +\x41\x01\x50\x04\x17\xf2\xfd\x8a\x2f\x73\x14\x17\x78\x77\x5b\xca\ +\xa7\x00\xc8\xbf\xbd\xf8\x95\xcb\x72\x6f\x62\x5f\xef\xae\x4b\xb9\ +\x14\x00\x79\x57\xcd\xfd\xc6\xf7\x2f\x25\xad\x25\xf7\xb3\x8d\x77\ +\xf7\xa5\x3c\x0a\x80\xbc\xbb\x89\x3e\x6e\xcb\xde\x8d\xff\xf1\xee\ +\xbe\x94\x47\x01\x90\x6f\x07\x73\xae\xeb\xf2\xcf\xe3\x20\xef\x21\ +\x90\x72\xe8\x3a\x80\x3c\x6b\xce\x2d\x31\x4f\xc7\xad\xe1\x2d\x66\ +\xf2\x11\x2b\x80\xf6\x74\xa5\x1f\x7b\xc7\x7a\x07\x4d\x15\xbf\x63\ +\x3f\x5d\x13\x90\x5f\x0a\x80\x3c\xfb\x7f\xec\x19\xf9\xdf\xd4\xf0\ +\x00\xf7\xf1\xca\xbf\xbc\x8e\xad\x35\x43\xf8\x16\xa7\x46\xfe\x55\ +\xbf\x37\xe7\x73\x8b\xf7\x40\x48\x56\xdd\x42\xc9\xf0\x39\xc7\xbb\ +\xcc\x5c\x6a\xc1\x7c\xd3\xe8\x7e\xf6\x59\xc2\x65\x5b\xd9\xc0\xdb\ +\x73\x39\x4b\x23\x7e\xeb\xfb\xba\x51\x38\x96\x73\x4c\xa3\x9b\x72\ +\xb8\xea\x18\x40\x7e\x9d\x4d\xb7\x48\xed\xc7\xd0\x87\xeb\xa9\xd9\ +\x62\x9b\x15\x5c\x47\x5f\xee\x8e\xf4\xbd\xbb\x70\xa6\xf7\x50\x48\ +\x5c\x0a\x80\xbc\x6a\xc2\xa8\x08\xad\x6b\x39\x9d\x73\x59\x6c\x6a\ +\xfb\x09\x67\x73\x56\xa4\x07\x82\x5e\xa6\x0b\x83\xf3\x4a\x01\x90\ +\x57\x87\xb1\x9b\xb9\xed\x32\x8e\xe1\xbe\x48\xdf\x7e\x0f\x87\xb3\ +\xc8\xdc\x7a\x77\x0e\xf5\x1e\x0e\x89\x47\x01\x90\x57\x67\x9b\x5b\ +\xd6\x30\x8c\x57\x23\x7f\xff\xdf\x18\xc6\x72\x73\xeb\xb3\xbc\x87\ +\x43\xe2\x51\x00\xe4\x53\x5b\x86\x1b\x5b\xae\x67\x38\x6f\xc4\x5a\ +\xc6\xdb\x7c\x93\x46\x63\xdb\x11\x4e\x57\x23\x4a\x99\x14\x00\xf9\ +\x74\x0c\xed\x8c\x2d\xaf\xe1\xf9\xd8\x4b\x79\x9a\xeb\x8c\x2d\xb7\ +\xe1\x28\xef\x21\x91\x38\x14\x00\xf9\x74\xb8\xb1\xdd\x74\xae\x2d\ +\x6b\x39\x3f\x65\x66\xc2\x15\x49\xa6\x28\x00\xf2\xc9\xba\xb9\x8d\ +\xa4\xbe\xac\xe5\xac\xe3\x52\x63\xcb\x23\x5d\xc7\x43\x62\x52\x00\ +\xe4\x51\x17\xf6\x30\xb5\x9b\x58\xc6\xee\xff\x46\x4f\xf3\xba\xa9\ +\xdd\x9e\x6c\xe7\x3a\x26\x12\x8b\x02\x20\x8f\xf6\x32\x9e\x77\xff\ +\x6d\x22\x4b\xbb\xd9\xd4\xaa\x8a\x01\x6e\xe3\x21\xb1\x29\x00\xf2\ +\x68\x77\x53\xab\x1a\x1e\x4d\x64\x69\x8f\x18\x2f\x0a\xf2\xbb\x2d\ +\x59\x62\x53\x00\xe4\x51\x5f\x53\xab\x17\x59\x9d\xc8\xd2\x56\xf1\ +\x92\xa9\x9d\x02\x20\x87\x14\x00\x79\xb4\xab\xa9\x95\x6d\xb3\xb5\ +\x78\xd1\xd4\xca\x7e\x65\xa2\x64\x86\x02\x20\x8f\x6c\xef\xfe\x99\ +\x96\xd8\xf2\x6c\xdf\x94\xde\x1b\x89\x24\x35\x0a\x80\x3c\xb2\x5d\ +\x04\xf4\x6e\x62\xcb\xfb\xbb\xa9\x95\x9e\x0f\x98\x43\x0a\x80\x3c\ +\xb2\x05\xc0\x8a\xc4\x96\xb7\x3c\xc1\xaa\x24\x53\x14\x00\x79\xd4\ +\xc6\xd4\xaa\x2e\xb1\xe5\xd9\xce\x02\x24\xfb\x42\x72\xa9\x08\x05\ +\x40\x1e\xd9\xae\x02\x28\x25\xb6\x3c\xdb\x37\xe9\x99\x00\x39\xa4\ +\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\x80\x29\x00\x44\x02\ +\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\x80\x29\x00\x44\ +\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\x80\x29\x00\ +\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\x80\x29\ +\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\x80\ +\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\x91\ +\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\x00\ +\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\x0a\ +\x00\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\x60\ +\x0a\x00\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\x24\ +\x60\x0a\x00\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\x40\ +\x24\x60\x0a\x00\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\x02\ +\x40\x24\x60\x0a\x00\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\x98\ +\x02\x40\x24\x60\x0a\x00\x91\x80\x29\x00\x44\x02\xa6\x00\x10\x09\ +\x98\x02\x40\x24\x60\x0a\x00\x91\x80\x29\x00\xf2\x68\xbd\xa9\x55\ +\xd3\xc4\x96\x67\xfb\x26\x5b\x55\x92\x29\x0a\x80\x3c\xaa\x35\xb5\ +\x6a\x9b\xd8\xf2\xda\x99\x5a\xad\x74\x19\x0b\x29\x8b\x02\x20\x8f\ +\x6c\x9b\xda\x76\x89\x2d\xcf\xf6\x4d\x0a\x80\x1c\x52\x00\xe4\x91\ +\x6d\x0f\x60\xf7\xc4\x96\xd7\xc7\xd4\xaa\xc6\x65\x2c\xa4\x2c\x0a\ +\x80\x3c\xfa\xd8\xd4\x6a\x60\x62\xcb\xb3\x7d\xd3\x27\x2e\x63\x21\ +\x65\x51\x00\xe4\xd1\x6c\x53\xab\x23\x12\x5b\x9e\xed\x9b\x6c\x55\ +\x49\xa6\x28\x00\xf2\x68\x8e\xa9\xd5\x60\xba\x25\xb2\xb4\x9d\xd8\ +\xcf\xd4\x4e\x01\x90\x43\x0a\x80\x3c\x9a\x65\x6a\xd5\x84\x33\x13\ +\x59\xda\x39\xc6\x59\xa2\x00\xc8\x21\x05\x40\x1e\xbd\xcd\x5a\x53\ +\xbb\x91\xb4\x2a\x7b\x59\xad\xf8\x9e\xa9\xdd\x1a\xa6\xba\x8e\x89\ +\xc4\xa2\x00\xc8\xa3\x3a\x5e\x33\xb5\xdb\x81\xef\x96\xbd\xac\x8b\ +\xd8\xd1\xd4\xee\x55\x56\xbb\x8e\x89\xc4\xa2\x00\xc8\xa7\x71\xc6\ +\x76\x57\xd1\xb5\xac\xe5\xec\xc4\x4f\x8c\x2d\x5f\x70\x1d\x0f\x89\ +\x49\x01\x90\x4f\xcf\x19\xdb\x6d\xc3\x9d\x65\xac\xe3\x26\x8c\x31\ +\x5e\x05\x68\xaf\x48\x32\x45\x01\x90\x4f\xaf\xf2\xbe\xb1\xe5\xd1\ +\x5c\x15\x7b\x29\xd7\x72\xa4\xb1\xe5\xbb\xfc\xd5\x7b\x48\x24\x0e\ +\x05\x40\x3e\x95\xb8\xc7\xdc\xf6\xc7\x5c\x14\x6b\x19\x17\x73\x99\ +\xb9\xed\x3d\x94\xbc\x87\x44\xe2\x50\x00\xe4\xd5\x5d\x11\x36\xb9\ +\x9b\xf8\x51\xe4\xef\xbf\x82\x1b\xcd\x6d\x4b\xdc\xed\x3d\x1c\x12\ +\x8f\x02\x20\xaf\xde\xe1\x59\x73\xdb\x2a\xae\x61\x2c\xdb\x98\xdb\ +\xb7\xe7\x41\xae\x8e\x50\xcb\xd3\xbc\xeb\x3d\x1c\x12\x8f\x02\x20\ +\xbf\xae\x8d\xd4\xfa\x1b\x4c\x63\xb8\xa9\xe5\x08\xa6\x71\x4a\xa4\ +\xef\xbe\xc6\x7b\x28\x24\x2e\x05\x40\x7e\x8d\x67\x42\xa4\xf6\xdd\ +\x79\x88\x89\x7c\x6d\x0b\x8f\xf7\x68\xca\x49\xbc\xce\xfd\x11\x2f\ +\x21\x7e\x91\x57\xbc\x87\x42\xe2\x6a\xe6\x5d\x80\x94\xe1\x27\x91\ +\xcf\xbe\x1f\xc0\x63\x2c\xe4\x41\x9e\x63\xe2\xe7\xee\xde\xdb\x9e\ +\x03\x39\x8a\x53\xd8\x21\x72\x0d\x25\xae\xf4\x1e\x06\x89\x4f\x01\ +\x90\x67\xe3\xf8\x13\xdf\x8c\xfc\xaf\x76\xe0\x22\x2e\x02\x96\x32\ +\x9f\x5a\xa0\x1d\xdd\xe9\x18\xbb\x86\x7b\x19\xef\x3d\x0c\x12\x9f\ +\x02\x20\xdf\x2e\xe5\x58\xda\xc7\xfc\xb7\x9d\xe8\x54\xf6\xf2\x6b\ +\xf8\x6f\xef\x21\x90\x72\xe8\x18\x40\xbe\x2d\xe4\x72\xd7\xe5\xff\ +\x37\x1f\x79\x0f\x81\x94\x43\x01\x90\x77\xbf\xe3\x61\xb7\x65\x3f\ +\xc8\xad\xde\xdd\x97\xf2\x28\x00\xf2\xef\x3c\xe6\xba\x2c\xf7\x5d\ +\xbe\xe3\xdd\x75\x29\x97\x02\x20\xff\x96\xf3\x0d\x56\x55\x7c\xa9\ +\xb5\x8c\x60\x85\x77\xd7\xa5\x5c\x0a\x80\x22\x98\xc4\x49\xc6\x47\ +\x84\x24\xa5\x9e\x11\x4c\xf1\xee\xb6\x94\x4f\x01\x50\x0c\xcf\xf3\ +\x6f\x34\x56\x6c\x69\x25\xce\xe7\x29\xef\x2e\x4b\x12\x14\x00\x45\ +\x71\x1f\xe7\xd3\x50\x91\x25\x35\x70\x1e\x63\xbc\xbb\x2b\xc9\x50\ +\x00\x14\xc7\x1d\x0c\xaf\xc0\x63\xb9\xd6\x70\x1a\x7f\xf0\xee\xaa\ +\x24\x45\x01\x50\x24\x8f\x73\x94\xf1\xa5\x21\x71\x2d\xe4\x08\xc7\ +\xd3\x8e\x92\x38\x05\x40\xb1\xbc\xc2\x5e\x3c\x93\xda\xb7\x8f\x63\ +\x20\x13\xbd\xbb\x28\x49\x52\x00\x14\xcd\x27\x1c\xc7\x55\xd4\x27\ +\xfe\xbd\xf5\xfc\x84\x61\xba\xee\xaf\x68\x14\x00\xc5\xb3\x9e\xd1\ +\x0c\x48\xf8\x21\x9d\x2f\x33\x90\x9f\x56\xf0\x3c\x83\x54\x88\x02\ +\xa0\x98\x66\x73\x34\xe7\x32\x3f\x91\xef\x9a\xc7\xd9\x0c\x65\x9a\ +\x77\x97\x24\x0d\x0a\x80\xa2\x2a\x31\x86\x5d\x39\xa7\xcc\x17\x76\ +\xcd\xe5\x12\xfa\x70\xb7\x1e\xf9\x59\x54\x0a\x80\x22\xab\xe7\x2e\ +\xfa\x73\x2a\xff\x1b\xe3\x98\xc0\x3a\x1e\xe3\x14\x7a\x73\x23\x6b\ +\xbc\xbb\x21\xe9\xd1\xf3\x00\x8a\x6e\x3d\x0f\xf1\x10\xdb\xf2\x4d\ +\xbe\xca\xa1\xa6\xd7\x7c\xac\xe4\x25\x9e\x64\x2c\x4b\xbc\x4b\x97\ +\xf4\x29\x00\xc2\xb0\x98\x9b\xb9\x99\x66\x7c\x85\x43\xe8\x43\x5f\ +\xfa\xd0\xf9\x0b\x2d\x96\x30\x9b\x59\xcc\xe2\x65\x26\x55\xe8\x8a\ +\x42\xc9\x00\x05\x40\x48\x1a\x98\xf8\xcf\xf3\xf8\x6d\x68\x47\x35\ +\x1d\x80\xe5\xd4\xb2\x92\x3a\xef\xe2\xc4\x83\x02\x20\x54\x75\xd4\ +\xa5\x7c\xd5\xa0\xe4\x80\x0e\x02\x8a\x04\x4c\x01\x20\x12\x30\x05\ +\x80\x48\xc0\x14\x00\x22\x01\x53\x00\x88\x04\x4c\x01\x20\x12\x30\ +\x05\x80\x48\xc0\x14\x00\x22\x01\x53\x00\x88\x04\x4c\x01\x20\x12\ +\x30\x05\x80\x48\xc0\x14\x00\x22\x01\x53\x00\x88\x04\x4c\x01\x20\ +\x12\x30\x05\x80\x48\xc0\x14\x00\x22\x01\x53\x00\x88\x04\x4c\x01\ +\x20\x12\x30\x05\x80\x48\xc0\x14\x00\x22\x01\x53\x00\x88\x04\x4c\ +\x01\x20\x12\x30\x05\x80\x48\xc0\x14\x00\x22\x01\x53\x00\x88\x04\ +\x4c\x01\x20\x12\x30\x05\x80\x48\xc0\x14\x00\x22\x01\x53\x00\x88\ +\x04\x4c\x01\x20\x12\x30\x05\x80\x48\xc0\x14\x00\x22\x01\x53\x00\ +\x88\x04\x4c\x01\x20\x12\x30\x05\x80\x48\xc0\x14\x00\x22\x01\x53\ +\x00\x88\x04\x4c\x01\x20\x12\x30\x05\x80\x48\xc0\x14\x00\x22\x01\ +\x53\x00\x88\x04\x4c\x01\x20\x12\x30\x05\x80\x48\xc0\xd2\x0e\x80\ +\x52\x26\xaa\x10\xc9\x1e\xdb\xac\xb7\x6d\x41\x29\x17\x11\x5f\xbd\ +\xa9\x55\x9b\x94\xab\x10\xc9\x9e\x6a\x53\xab\x75\xe9\x16\x91\x76\ +\x00\xd8\xca\x6f\x97\x72\x15\x22\xd9\x63\x9b\xf5\x6b\xd3\x2d\x42\ +\x01\x20\xe2\x23\x88\x00\xa8\x49\x70\x28\x44\x8a\xc4\x36\xeb\x6d\ +\x5b\x50\x6c\x69\x07\xc0\x12\x53\xab\x0e\x29\x57\x21\x92\x3d\x1d\ +\x4c\xad\x96\xa6\x5b\x44\xda\x01\xb0\xd8\xd4\x6a\xb7\x94\xab\x10\ +\xc9\x9e\xde\xa6\x56\x8b\xd2\x2d\x22\xed\x00\xb0\x95\xdf\x27\xe5\ +\x2a\x44\xb2\x67\x77\x53\x2b\xdb\x9f\xd0\xcc\xea\x46\xc9\xf4\xd9\ +\xd6\xbb\x50\x91\x8a\xea\x62\xdc\x32\x76\x48\xb7\x8c\xb4\xf7\x00\ +\xfe\x61\x3c\x8a\xa9\x7d\x00\x09\x8b\x6d\xc6\xaf\xe6\xe3\x74\xcb\ +\x48\x3b\x00\x1a\x99\x67\x6a\xb7\x67\xca\x75\x88\x64\x4b\x7f\x53\ +\xab\xf7\xf3\x7e\x25\x20\xcc\x34\xb5\x3a\x34\xf5\x3a\x44\xb2\x64\ +\xa8\xa9\x95\x6d\xeb\x29\x43\xfa\x01\xf0\xb6\xa9\xd5\x91\x54\xa5\ +\x5e\x89\x48\x56\x54\x71\x98\xa9\xdd\xd4\xb4\x0b\x49\x3f\x00\x6c\ +\x5d\xe8\x42\xbf\xd4\x2b\x11\xc9\x8a\x01\x74\x31\xb5\x2b\x40\x00\ +\xbc\x61\x6c\x77\x44\xea\x95\x88\x64\xc5\xe1\xc6\x76\x53\xbc\x0b\ +\x4d\xc2\x42\xd3\xe9\x8e\x27\xbd\xcb\x14\xa9\x98\x67\x4c\xdb\xc4\ +\x47\xde\x65\x26\xe3\x61\x53\x67\x1b\xe8\xea\x5d\xa8\x48\x45\xec\ +\x48\x83\x69\x9b\xb8\x3f\xfd\x52\x2a\xf1\x28\x8e\x09\xa6\x56\x4d\ +\x39\xbd\x02\xb5\x88\xf8\x3b\x83\xa6\xa6\x76\xaf\x78\x17\x9a\x8c\ +\xfe\xc6\x6b\x9e\x52\x3f\xe0\x21\x92\x09\x6f\x1b\xb7\x88\xc2\x5c\ +\x1e\xf7\x81\xb1\xc3\xfb\x78\x17\x2a\x92\xba\x81\xc6\xad\xe1\xbd\ +\x4a\x14\x53\x99\xa7\xf1\x3d\x65\x6c\xf7\x5f\x15\xa9\x46\xc4\x93\ +\x75\x96\x5b\xb7\x9a\x1c\x38\xc6\x98\x79\x0d\xc6\x5b\x24\x45\xf2\ +\x6a\x57\xea\x8d\x5b\x43\x81\x4e\x8c\x37\xe3\x63\x63\xa7\x6f\xf5\ +\x2e\x55\x24\x55\xb7\x1b\xb7\x84\x4f\x68\xe6\x5d\x6a\x92\x6e\x35\ +\x76\x7b\x1d\x3b\x7b\x97\x2a\x92\x9a\xee\xac\x35\x6e\x09\x37\x7b\ +\x97\x9a\xac\x21\xc6\x6e\x97\xb8\xc3\xbb\x54\x91\xd4\xdc\x65\xde\ +\x0e\x06\x7b\x97\x9a\xb4\x69\xc6\x8e\x37\x1a\xef\x93\x12\xc9\x9b\ +\x43\x68\x0c\xf7\x94\xf8\xa5\xe6\xec\x9b\x4a\x73\xef\x62\x45\x12\ +\xd7\x8c\xb7\xcc\xdb\xc0\xc5\xde\xc5\x26\xaf\x23\x2b\xcd\xdd\xff\ +\x4f\xef\x62\x45\x12\xf7\x03\xf3\xfc\xaf\x29\xe6\x73\xb2\x6f\x34\ +\x0f\xc0\xca\xe2\x5c\x03\x25\x02\x40\x3f\x6a\xcd\xf3\xff\xd7\xde\ +\xc5\xa6\xa3\x87\xf9\x0c\x68\x89\xa9\xb4\xf6\x2e\x57\x24\x31\xad\ +\x78\xd3\x3c\xf7\xeb\x8b\x7b\x26\xec\x6e\xf3\x20\xe8\x8a\x00\x29\ +\x92\xdb\x22\xcc\xfc\x3f\x78\x17\x9b\x9e\xdd\x22\xec\x03\x94\x38\ +\xd3\xbb\x5c\x91\x44\x9c\x16\x61\xd6\xaf\xa3\x97\x77\xb9\x69\xb2\ +\x5e\x07\x55\xa2\x44\x1d\x07\x7b\x97\x2b\x52\xb6\xc1\x11\x7e\xfd\ +\x17\x7e\xcf\xb7\x3b\xab\x22\x0c\xc6\x62\xf6\xf0\x2e\x58\xa4\x2c\ +\xfd\x59\x12\x61\xc6\xd7\xb2\x93\x77\xc1\x69\x1b\x1d\x61\x38\x4a\ +\x2c\x60\x17\xef\x82\x45\x62\xeb\x66\xbe\x15\x7e\xc3\xe7\xc7\xde\ +\x05\xa7\xaf\x0d\xf3\x23\x0d\xc9\x0c\x3d\x2a\x4c\x72\xaa\x2b\x33\ +\x22\xcd\xf5\xf7\xc3\x38\xf7\x75\x42\xa4\x41\x29\x31\xd7\xf8\x1a\ +\x45\x91\x2c\xe9\xc5\x3b\x11\x67\xfa\x49\xde\x25\x57\xca\x43\x11\ +\x07\x66\x21\x03\xbd\x4b\x16\x89\x64\x90\xf9\x16\xf8\x8d\x9f\xb1\ +\xde\x25\x57\x4e\x57\x96\x46\x1c\x9c\x1a\x8e\xf2\x2e\x5a\xc4\xec\ +\xab\x11\x2e\x7c\xdf\xf0\x59\x92\xf6\x7b\x80\xb3\xe5\x94\x88\xc3\ +\x53\xa2\x91\xeb\x8d\xcf\x52\x15\xf1\xd4\x94\xd1\xc6\xc7\x7e\x6f\ +\xfa\x39\xcd\xbb\xec\x4a\x1b\x13\x79\x88\x4a\x8c\x63\x47\xef\xb2\ +\x45\xb6\x68\x7b\xe3\x4b\x3f\x3e\xff\xb9\xcd\xbb\xec\xca\x6b\xc7\ +\x9c\x18\x03\xb5\x90\x13\xbc\x0b\x17\xf9\x52\x27\x46\xfe\xe5\x5f\ +\xa2\xc4\x4c\xaa\xbd\x0b\xf7\xd0\x97\x15\x31\x06\xab\xc4\xe3\xf4\ +\xf0\x2e\x5d\xe4\x5f\xec\x14\xe1\x79\x3f\x9b\x7e\x56\x86\x7b\xb9\ +\xdb\xd7\xcd\x4f\x48\xf9\xfc\x67\x15\xa3\x69\xe9\x5d\xbc\xc8\x3f\ +\x35\x67\x64\xe4\xc3\x7e\x1b\x8f\x6d\x8d\xf0\x2e\xde\xd3\x35\xb1\ +\x06\xad\x44\x89\x77\xb9\x40\x21\x20\x19\xd0\x92\xef\xf2\x5e\xec\ +\x79\x3c\xda\xbb\x7c\x5f\x55\x31\x77\x9b\x36\x1e\x11\x18\x45\x1b\ +\xef\x2e\x48\xc0\x5a\x72\x41\xc4\x2b\x5b\x3f\xff\xb9\x8f\x2a\xef\ +\x2e\x78\x6b\xc9\x0b\x65\x0c\x60\x89\x45\xdc\xc0\x20\xef\x4e\x48\ +\x80\xf6\xe3\x46\x16\x95\x35\x77\x9f\xa5\x85\x77\x27\xb2\xa0\x1d\ +\x13\xcb\x1a\xc6\x12\x25\xa6\x31\xaa\xd8\xf7\x51\x4b\x86\xec\xca\ +\x65\x4c\x2f\x7b\xce\xbe\x12\xe6\xb1\xff\xcd\xe9\xc8\x94\xb2\x87\ +\xb3\x44\x89\xf7\xb8\x8d\x33\x74\xf3\x90\xa4\x64\x47\xce\xe4\x76\ +\xe6\x26\x32\x57\xdf\xc8\xc6\x83\x3f\xb3\xf2\x0b\xa4\x13\x4f\xf1\ +\x95\xc4\xbe\xed\x43\x66\x33\x87\xd9\xcc\x62\x11\xcb\xa9\xa5\x96\ +\x55\xde\x1d\x94\xdc\x69\x4b\x35\xd5\x74\x60\x7b\xfa\xd0\x87\xdd\ +\xe9\x93\xe0\xbd\xfa\x7f\xe5\x58\x96\x7a\x77\x10\xb2\x13\x00\xb0\ +\x0d\x4f\x70\x48\x6a\xdf\x5e\x62\xb9\x77\x07\x25\x57\x3a\xa4\xb8\ +\x6d\xbc\xc4\x89\xac\xf4\xee\xe0\x06\xd9\x09\x00\x68\xc3\x1f\xc3\ +\xb9\x21\x52\x82\xf5\x30\x67\xb2\xda\xbb\x88\x8d\xb2\x74\x7b\x4d\ +\x3d\x0f\xd0\xa1\x78\xef\x44\x13\xd9\xc4\x4d\x9c\x47\xbd\x77\x11\ +\x9f\xc9\x52\x00\x40\x89\xa7\x58\xcc\x51\x19\xab\x4a\x24\x19\xeb\ +\xb8\x88\x6b\x28\x79\x97\xb1\xa9\x2c\xfd\x04\xd8\x68\x08\x0f\xe8\ +\x48\xbe\x14\xce\x87\x8c\x60\xa2\x77\x11\x5f\xd4\xc4\xbb\x80\xcd\ +\x78\x85\x41\x3c\xef\x5d\x84\x48\xa2\x9e\x61\x50\xf6\x36\xff\xac\ +\xfd\x04\xd8\xa8\x96\xbb\x59\xc6\xe1\x34\xf3\x2e\x44\x24\x01\xf5\ +\x5c\xc3\x05\xd4\x7a\x97\xb1\x39\x59\xfc\x09\xb0\xd1\x3e\xdc\xc1\ +\xbe\xde\x45\x88\x94\x69\x12\xe7\xf1\xb6\x77\x11\x5f\x26\x8b\x3f\ +\x01\x36\x7a\x93\xfd\xb9\x44\x97\xf0\x48\x8e\xad\xe6\x32\x0e\xc8\ +\xee\xe6\x9f\xd5\x9f\x00\x1b\x35\xf2\x3a\xf7\xd1\x2d\xdc\x07\x26\ +\x48\x8e\x95\x78\x80\x93\xf9\x73\xb6\x8e\xfa\x7f\x51\x96\x7f\x02\ +\x7c\xe6\x30\xfe\x47\x0f\x06\x97\x5c\x99\xc4\x7f\xf2\xb2\x77\x11\ +\x5b\x97\xe5\x9f\x00\x9f\x79\x91\x41\x1c\xc5\x14\xef\x32\x44\x4c\ +\xa6\xf3\x0d\xf6\xcf\xc3\xe6\x9f\x97\x3d\x80\x0d\x9a\x30\x9c\x1f\ +\xb0\xbf\x77\x19\x22\x5b\xf0\x1a\xbf\xe4\x51\x1a\xbd\xcb\xb0\xca\ +\x53\x00\x6c\x70\x28\x97\x70\xa2\x4e\x10\x4a\xe6\xd4\xf3\x38\xbf\ +\x61\x82\x77\x19\xd1\xe4\x2f\x00\x00\xba\x72\x0e\xdf\xa6\xb7\x77\ +\x19\x22\x9f\x9a\xcd\x1d\x8c\xe1\x63\xef\x32\xa2\xcb\x67\x00\x6c\ +\x30\x88\xd3\x18\xa1\x47\x84\x8b\xab\xb9\xdc\xcf\xd8\xfc\x1e\x9f\ +\xca\x73\x00\x6c\xd0\x9f\x63\x39\x96\x03\xc3\x78\xb1\xb2\x64\x46\ +\x1d\xaf\xf2\x24\x4f\x31\xc3\xbb\x90\xf2\xe4\x3f\x00\x36\x68\xc1\ +\x20\x0e\x62\x30\x03\xe8\x9d\xf1\x6b\x1b\x24\xcf\x1a\x78\x87\xa9\ +\xbc\xce\xab\x4c\xce\xd2\x4d\xbd\xf1\x15\x25\x00\x3e\xd3\x8a\x7e\ +\xf4\xa2\x27\x3d\xd9\x91\xce\x74\xa6\x33\x2d\x68\xae\xc7\x2f\x4a\ +\x64\xb5\xd4\xb3\x8e\x25\x2c\x61\x09\x1f\x32\x97\xb9\xbc\xc7\x4c\ +\xd6\x7a\x97\x95\xac\xff\x03\x6c\xe6\x85\x33\xa1\xd8\xb3\x54\x00\ +\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\ +\x74\x65\x00\x32\x30\x31\x39\x2d\x30\x34\x2d\x30\x37\x54\x31\x37\ +\x3a\x32\x31\x3a\x32\x30\x2b\x30\x32\x3a\x30\x30\x7f\x7d\x12\xbf\ +\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\ +\x69\x66\x79\x00\x32\x30\x31\x39\x2d\x30\x34\x2d\x30\x37\x54\x31\ +\x37\x3a\x32\x31\x3a\x32\x30\x2b\x30\x32\x3a\x30\x30\x0e\x20\xaa\ +\x03\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\ +\x65\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\ +" + +qt_resource_name = b"\ +\x00\x07\ +\x07\x3b\xe0\xb3\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x73\ +\x00\x0b\ +\x02\x84\x97\xd3\ +\x00\x51\ +\x00\x4c\x00\x6f\x00\x63\x00\x6b\x00\x6c\x00\x61\x00\x79\x00\x65\x00\x72\x00\x73\ +\x00\x08\ +\x05\x9e\x59\x27\ +\x00\x6c\ +\x00\x6f\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0a\ +\x05\x95\xdd\x27\ +\x00\x75\ +\x00\x6e\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ +" + +qt_resource_struct_v1 = b"\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ +\x00\x00\x00\x14\x00\x02\x00\x00\x00\x02\x00\x00\x00\x03\ +\x00\x00\x00\x46\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x45\ +\x00\x00\x00\x30\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +" + +qt_resource_struct_v2 = b"\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x14\x00\x02\x00\x00\x00\x02\x00\x00\x00\x03\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x46\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x45\ +\x00\x00\x01\x69\xf8\x63\xe1\xf4\ +\x00\x00\x00\x30\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x01\x69\xf8\x63\x6f\xa1\ +" + +qt_version = [int(v) for v in QtCore.qVersion().split('.')] +if qt_version < [5, 8, 0]: + rcc_version = 1 + qt_resource_struct = qt_resource_struct_v1 +else: + rcc_version = 2 + qt_resource_struct = qt_resource_struct_v2 + +def qInitResources(): + QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) + +def qCleanupResources(): + QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) + +qInitResources() diff --git a/resources.qrc b/resources.qrc new file mode 100644 index 0000000..e6d17fd --- /dev/null +++ b/resources.qrc @@ -0,0 +1,6 @@ + + + lock.png + unlock.png + + diff --git a/runuifiles.bat b/runuifiles.bat new file mode 100644 index 0000000..3417aba --- /dev/null +++ b/runuifiles.bat @@ -0,0 +1 @@ +C:\Users\mkiria01\AppData\Local\Programs\Python\Python37\Scripts\pyrcc5 resources.qrc -o resources.py \ No newline at end of file diff --git a/unlock.png b/unlock.png new file mode 100644 index 0000000..fb80fab Binary files /dev/null and b/unlock.png differ