前提

  • python3.9环境
  • qtdesigner,用来设计ui界面
  • pyuic,用来把qtdesigner生成的ui文件转换为py文件,已配置至pycharm
  • pyrcc,用来把图片等资源打包成py文件,已配置至pycharm
  • 安装相关可参考https://blog.csdn.net/qq_45769063/article/details/121744539

qtdesigner设计界面

  • 保存后生成的是ui文件

  • pyuic将ui文件转换成py文件
# -*- coding: utf-8 -*-# Form implementation generated from reading ui file 'base.ui'
#
# Created by: PyQt5 UI code generator 5.15.4
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again.  Do not edit this file unless you know what you are doing.from PyQt5 import QtCore, QtGui, QtWidgetsclass Ui_Form(object):def setupUi(self, Form):Form.setObjectName("Form")Form.resize(700, 400)Form.setToolTip("")self.horizontalLayoutWidget = QtWidgets.QWidget(Form)self.horizontalLayoutWidget.setGeometry(QtCore.QRect(60, 30, 621, 80))self.horizontalLayoutWidget.setObjectName("horizontalLayoutWidget")self.horizontalLayout = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget)self.horizontalLayout.setContentsMargins(0, 0, 0, 0)self.horizontalLayout.setObjectName("horizontalLayout")self.label_erweima = QtWidgets.QLabel(self.horizontalLayoutWidget)self.label_erweima.setText("")self.label_erweima.setPixmap(QtGui.QPixmap(":/icons/erweima.png"))self.label_erweima.setObjectName("label_erweima")self.horizontalLayout.addWidget(self.label_erweima)self.label_md5 = QtWidgets.QLabel(self.horizontalLayoutWidget)self.label_md5.setText("")self.label_md5.setPixmap(QtGui.QPixmap(":/icons/md5check.png"))self.label_md5.setObjectName("label_md5")self.horizontalLayout.addWidget(self.label_md5)self.label_picscale = QtWidgets.QLabel(self.horizontalLayoutWidget)self.label_picscale.setText("")self.label_picscale.setPixmap(QtGui.QPixmap(":/icons/openpic.png"))self.label_picscale.setObjectName("label_picscale")self.horizontalLayout.addWidget(self.label_picscale)self.label_vcode = QtWidgets.QLabel(self.horizontalLayoutWidget)self.label_vcode.setText("")self.label_vcode.setPixmap(QtGui.QPixmap(":/icons/vcode.png"))self.label_vcode.setObjectName("label_vcode")self.horizontalLayout.addWidget(self.label_vcode)self.horizontalLayoutWidget_2 = QtWidgets.QWidget(Form)self.horizontalLayoutWidget_2.setGeometry(QtCore.QRect(30, 110, 621, 80))self.horizontalLayoutWidget_2.setObjectName("horizontalLayoutWidget_2")self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget_2)self.horizontalLayout_2.setContentsMargins(0, 0, 0, 0)self.horizontalLayout_2.setObjectName("horizontalLayout_2")self.pushButton_erweima = QtWidgets.QPushButton(self.horizontalLayoutWidget_2)self.pushButton_erweima.setObjectName("pushButton_erweima")self.horizontalLayout_2.addWidget(self.pushButton_erweima)self.pushButton_filemd5 = QtWidgets.QPushButton(self.horizontalLayoutWidget_2)self.pushButton_filemd5.setObjectName("pushButton_filemd5")self.horizontalLayout_2.addWidget(self.pushButton_filemd5)self.pushButton_picscale = QtWidgets.QPushButton(self.horizontalLayoutWidget_2)self.pushButton_picscale.setObjectName("pushButton_picscale")self.horizontalLayout_2.addWidget(self.pushButton_picscale)self.pushButton_getvcode = QtWidgets.QPushButton(self.horizontalLayoutWidget_2)self.pushButton_getvcode.setObjectName("pushButton_getvcode")self.horizontalLayout_2.addWidget(self.pushButton_getvcode)self.horizontalLayoutWidget_3 = QtWidgets.QWidget(Form)self.horizontalLayoutWidget_3.setGeometry(QtCore.QRect(60, 220, 581, 80))self.horizontalLayoutWidget_3.setObjectName("horizontalLayoutWidget_3")self.horizontalLayout_3 = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget_3)self.horizontalLayout_3.setContentsMargins(0, 0, 0, 0)self.horizontalLayout_3.setObjectName("horizontalLayout_3")self.label_time = QtWidgets.QLabel(self.horizontalLayoutWidget_3)self.label_time.setText("")self.label_time.setPixmap(QtGui.QPixmap(":/icons/time.png"))self.label_time.setObjectName("label_time")self.horizontalLayout_3.addWidget(self.label_time)self.horizontalLayoutWidget_4 = QtWidgets.QWidget(Form)self.horizontalLayoutWidget_4.setGeometry(QtCore.QRect(30, 300, 621, 80))self.horizontalLayoutWidget_4.setObjectName("horizontalLayoutWidget_4")self.horizontalLayout_4 = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget_4)self.horizontalLayout_4.setContentsMargins(0, 0, 0, 0)self.horizontalLayout_4.setObjectName("horizontalLayout_4")self.pushButton_time = QtWidgets.QPushButton(self.horizontalLayoutWidget_4)self.pushButton_time.setObjectName("pushButton_time")self.horizontalLayout_4.addWidget(self.pushButton_time)self.pushbutton_8 = QtWidgets.QPushButton(self.horizontalLayoutWidget_4)self.pushbutton_8.setEnabled(False)self.pushbutton_8.setObjectName("pushbutton_8")self.horizontalLayout_4.addWidget(self.pushbutton_8)self.pushButton_7 = QtWidgets.QPushButton(self.horizontalLayoutWidget_4)self.pushButton_7.setEnabled(False)self.pushButton_7.setObjectName("pushButton_7")self.horizontalLayout_4.addWidget(self.pushButton_7)self.pushButton_6 = QtWidgets.QPushButton(self.horizontalLayoutWidget_4)self.pushButton_6.setEnabled(False)self.pushButton_6.setObjectName("pushButton_6")self.horizontalLayout_4.addWidget(self.pushButton_6)self.retranslateUi(Form)QtCore.QMetaObject.connectSlotsByName(Form)def retranslateUi(self, Form):_translate = QtCore.QCoreApplication.translateForm.setWindowTitle(_translate("Form", "Form"))self.pushButton_erweima.setText(_translate("Form", "生成二维码"))self.pushButton_filemd5.setText(_translate("Form", "文件md5值"))self.pushButton_picscale.setText(_translate("Form", "图片缩放"))self.pushButton_getvcode.setText(_translate("Form", "获取验证码"))self.pushButton_time.setText(_translate("Form", "当前时间戳"))self.pushbutton_8.setText(_translate("Form", "XXXXXXX"))self.pushButton_7.setText(_translate("Form", "XXXXXXX"))self.pushButton_6.setText(_translate("Form", "XXXXXXX"))
import test1_rc
  • 编写资源文件qrc

<!DOCTYPE RCC>
<RCC version="1.0"><qresource prefix="icons"><file alias="erweima.png">icons/erweima.png</file><file alias="md5check.png">icons/md5check.png</file><file alias="openpic.png">icons/openpic.png</file><file alias="vcode.png">icons/vcode.png</file><file alias="notepad.png">icons/notepad.png</file><file alias="arrow-continue.png">icons/arrow-continue.png</file><file alias="arrow-curve.png">icons/arrow-curve.png</file><file alias="arrow-curve-180-left.png">icons/arrow-curve-180-left.png</file><file alias="blue-folder-open-document.png">icons/blue-folder-open-document.png</file><file alias="clipboard-paste-document-text.png">icons/clipboard-paste-document-text.png</file><file alias="disk.png">icons/disk.png</file><file alias="disk-pencil.png">icons/disk-pencil.png</file><file alias="document-copy.png">icons/document-copy.png</file><file alias="printer.png">icons/printer.png</file><file alias="question.png">icons/question.png</file><file alias="scissors.png">icons/scissors.png</file><file alias="selection-input.png">icons/selection-input.png</file><file alias="ui-tab-plus.png">icons/ui-tab-plus.png</file><file alias="time.png">icons/time.png</file></qresource>
</RCC>
  • qrc文件转换为py文件
# -*- coding: utf-8 -*-# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.15.2)
#
# WARNING! All changes made in this file will be lost!from PyQt5 import QtCoreqt_resource_data = b"\
\x00\x00\x0c\xb9\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
\x00\x00\x0c\x80\x49\x44\x41\x54\x78\x9c\xdd\x9a\x69\x90\x5c\xd5\
\x79\x86\x9f\xef\xdc\xa5\xa7\xb7\xe9\x9e\xd1\x8c\x56\x24\x8d\x24\
\x16\xd9\x02\x2d\x31\x20\x42\x64\x0b\xa7\x82\x71\x28\x07\x27\xb8\
\x12\x1c\xca\x3f\x4c\x81\x23\xaa\xec\x4a\x25\x24\x8e\xb3\x54\xe4\
\xb8\xa4\x4a\x5c\xb1\xcb\xa4\xec\x2a\x43\x1c\xc7\x10\x70\x4c\x02\
\x21\xae\xc2\x76\x40\xc6\xc2\x28\x2a\x05\x64\x47\x08\x10\x38\x46\
\x68\x19\x8d\x34\x1a\x69\x16\xa9\x25\xcd\xd6\x7d\xef\x3d\x5f\x7e\
\x9c\xdb\xdd\x33\xd2\xcc\x68\x64\x29\x7f\x72\xaa\x6e\xdf\xe5\xdc\
\x7b\xfb\x7d\xbf\xf3\x7e\xcb\x39\xdd\x70\xe9\xad\x00\x5c\x0f\x74\
\x4c\xd1\x77\x15\xb0\x0a\x08\xce\xbb\x6e\x80\x95\x40\xd7\x14\xcf\
\x94\xd3\xf7\xb5\xfd\x02\x58\x2e\xb9\x5d\x07\xbc\x0a\x54\x80\x9f\
\x03\xb7\x4f\xe8\x7b\x00\x38\x96\xf6\x3d\x37\x01\x50\x0b\xf0\xcf\
\xc0\x10\x70\x02\xf8\xdc\x84\x67\x7e\x09\x78\x3d\x7d\xe6\x4d\xe0\
\x96\xff\x0b\xd0\xf3\x80\x7b\x81\xcf\x02\xbb\xb2\xd9\x9c\xde\x77\
\xff\xa7\x74\xde\xbc\xf9\x0a\x1c\x00\xfe\x14\xf8\x3c\x70\x7a\xe5\
\x7b\xde\xab\x1f\xbf\xf7\x13\x6a\x44\x14\x78\x16\xf8\x23\xe0\x71\
\x40\xef\xfa\xcd\xbb\xf5\xc6\x9b\xd6\x2b\x50\x05\xfe\x26\x7d\xdf\
\xde\x52\xa9\xac\xf7\xdd\xff\x7b\xda\xd6\xd6\xae\xc0\xbe\xf4\x7d\
\xbf\x0f\xfc\xf2\x95\x00\x7f\x07\x70\x10\x50\xc4\x28\x22\xba\x78\
\xd9\x0a\xdd\xdf\xdd\xab\x1b\x6e\xbb\xdd\x5d\xf3\x7c\xb7\x19\x4f\
\xef\xdb\xf4\x19\x7d\x65\xcf\x3e\xcd\x14\x5a\x15\x3f\x50\x82\x50\
\xf1\x03\x95\xb0\x45\x7f\xf0\xa3\x1d\xba\x79\xeb\xdf\x2a\xc6\x73\
\x7d\xe9\x33\xab\xd6\xbe\x4f\x0f\x1c\xe9\xd3\xb5\x37\xde\xa2\x88\
\xb8\x7e\x50\xa0\x06\x3c\x82\x1b\xc1\x69\x9b\x3f\x43\x5f\x17\xf0\
\xb8\x14\xca\xf3\xcd\x6d\x77\x23\x8b\x96\x13\x2b\xd8\x62\x96\x53\
\x43\x43\x44\xbf\x76\x0f\xac\xfe\x30\x04\x01\x18\x03\x0a\xd5\x6b\
\x17\x52\x19\xaf\x61\x1f\x7a\x18\x8c\x9f\x5e\xb7\x68\x14\x71\x56\
\x42\x46\x97\xad\x82\x87\xbe\xea\x3c\x22\x49\x20\x8a\x49\x5a\x33\
\x9c\x1a\x1c\x24\xb9\xfd\x5e\x58\xfd\xeb\x78\x06\x64\x6c\x04\xfd\
\xe9\xf6\x20\xd9\xbf\xe7\x41\xa0\x17\xd8\xfa\x8b\x10\xf8\x18\x22\
\xf3\xcd\x47\x3f\x85\xfd\xd0\x6f\xa3\xe3\xa3\x94\x3d\x4b\x87\xc4\
\x24\x89\xa5\xb4\x64\x29\x9d\xf3\x0d\x06\x40\x15\x6b\x95\x7c\xd9\
\x43\x81\x79\x0b\x17\x52\x33\x3e\x82\xa2\x80\x44\x11\x46\x0c\x99\
\x6c\x8e\x8e\xae\x2e\x8c\x27\xa0\xa0\xaa\xb4\xf9\x09\x49\x92\x50\
\x5e\xda\x45\xe7\x82\x65\x54\x6a\x31\x51\x98\xc5\x5f\xb9\x0e\xf3\
\xf5\xbf\xc0\xf6\x1d\xfa\x24\xf0\x55\xe0\xec\x54\x20\x65\x06\x02\
\x8f\x90\x6f\x7d\x90\x2d\x4f\x42\xbe\x95\x4f\x2f\xc9\xf3\x99\xd5\
\x4b\x19\x3e\x73\x8e\xf1\xe1\x61\xc2\x5c\x9e\xf6\xf6\x12\xaa\x8a\
\x88\xe0\x79\x86\x93\x27\x06\x88\xaa\x35\xe6\x2d\x9c\x47\x4b\x26\
\x74\x5f\x20\x42\x14\xc5\xf4\xf6\xf4\xe2\x87\x21\x4b\xba\xae\x02\
\x55\x04\xf0\x3c\xc3\xe0\x60\x85\xa1\x81\x41\xca\x73\xda\x58\x30\
\xbf\x93\xd7\x8e\xf5\x73\xff\xf3\x7b\x38\x1e\xb6\xc2\x33\x8f\xa0\
\x3b\xbe\x7b\x06\x78\x1f\x4e\xca\x17\x34\x33\x03\x01\xc1\x77\xf2\
\x58\xea\x27\x7c\x76\xdd\x32\x5a\x81\xf1\x33\x15\xac\x55\x06\x8f\
\x1f\xa3\xd5\x37\x94\x02\x9f\x72\xe8\x53\xf4\x0c\x23\x95\xd3\xc4\
\x51\x44\x72\xee\x2c\x1d\xb9\x16\xe6\xb4\x64\xe8\xcc\x67\xf1\x6a\
\xe3\xd4\xaa\x55\xaa\x23\xc3\x94\x03\xc3\xdc\x42\x96\xce\x7c\x96\
\xb9\x85\x1c\xe7\x06\xfb\x9d\x11\x6a\xe3\x74\x16\x72\xdc\xb1\xb2\
\x8b\x07\x56\x2d\x46\xc7\xc6\xa0\x25\x5b\x37\xf2\xb4\x38\x67\x22\
\x00\x28\x58\x4b\x5b\xe8\x13\x00\xc6\xf7\xd9\xf6\xc2\x7f\xf0\xc6\
\xde\xd7\xf8\xf6\x13\x8f\x53\xad\x45\x88\xf1\x30\x9e\x47\xa5\x52\
\xe1\xa9\xef\x7c\x9b\x57\x76\xed\x64\xdb\x0f\x5f\x20\x08\x33\x58\
\x01\x3f\x0c\x79\xf9\xe5\x97\x79\x69\xfb\x8b\x3c\xf3\xf4\xbf\x70\
\xac\xb7\x17\x31\x1e\x16\x88\xad\xe5\x1b\xdf\xf8\x7b\x5e\xdf\xfb\
\x1a\xcf\x3c\xfd\x34\xaa\x0a\xc0\xdc\x5c\x08\x49\xdc\x38\x9f\xa9\
\x5d\x84\x80\xe3\xa0\x28\xc6\x08\xc6\x08\x1b\x36\xdc\xca\xf6\x6d\
\xdf\xe3\xd6\x5b\x6e\xa6\x58\x28\x60\x8c\x33\x51\xe7\xdc\xb9\x5c\
\xb3\x7c\x29\xaf\xff\xf4\x15\x3e\x78\xdb\x6d\xd8\x24\xc1\x88\x60\
\xe3\x98\x8d\x1f\x78\x3f\x3d\x07\x7f\x4e\x47\xb9\xc0\x92\x25\x4b\
\x50\x6b\x31\x02\xbe\xe7\xf1\x91\x3b\xef\x60\xe7\xf6\xe7\xd9\xb8\
\xe1\x56\x24\x15\xb4\xad\x23\x6b\x0a\x3c\x9a\x0e\xde\x4c\x3e\xf0\
\x28\xa5\xf6\x4d\x6c\xfe\x16\xab\x3b\x5a\xf9\xfe\x87\x57\x93\x24\
\x96\x30\x0c\x11\x01\xcf\xf3\x48\xe2\x18\x11\x41\x44\x30\x22\x04\
\x99\x10\x49\x8d\x96\xd8\x04\x41\x10\x01\xdf\xf7\x31\xc6\x60\x8c\
\x21\x8a\x63\xe7\x03\x29\xda\x30\x08\x50\xdc\x79\x1c\xc7\x84\x81\
\xcf\xe3\x3f\xd8\xcd\x5f\x6f\x7b\x87\x81\x37\xbe\xc7\xf0\x7f\xfe\
\x5b\x02\xfc\x21\xf0\xb5\xa9\x40\xce\x14\x85\x1a\xcd\xaa\xa5\xa6\
\xa0\x08\x49\x1c\x63\x44\x90\xc4\x3a\xf0\xd4\x45\xaa\xd4\xaa\x11\
\x46\x04\x84\xb4\x4f\x01\xa1\x16\xb9\x67\x34\xbd\x1f\xc0\xe5\x3a\
\xa1\x5a\xad\xe1\x1e\x11\x24\xe3\x73\xf4\xc9\x9f\xb0\xf4\xcf\x9e\
\xe3\xb1\xbe\x88\xd3\xde\x42\xbe\x48\x97\xb7\x9b\xee\x2f\x03\x63\
\xc0\x37\x2f\x9d\x80\x2a\x46\x84\x9c\xef\x35\x2c\x27\x22\x88\x11\
\x0c\xcd\x63\xa9\x1f\xd7\xc1\x0b\x50\xbf\xe6\x0e\x11\xf7\x41\x7a\
\x44\xfd\xd4\x18\x83\x78\x86\xfe\x27\x76\x73\xec\xc1\xa7\x68\x19\
\x13\xca\xe4\xb9\xda\xb6\xf1\x0f\x7c\x82\xfb\x78\x22\xdc\x43\xcf\
\x97\x81\x9d\xc0\x3b\x13\xe1\xcd\xc2\x07\x14\x54\xf1\x8c\xe0\x19\
\xe3\x36\xcf\xe0\x89\x69\xc8\xc2\x88\xa4\x3e\x02\xc6\xc8\x24\x59\
\x35\x09\x35\x8f\x8d\xd0\xb0\xba\xef\x79\x0c\x8f\x8f\x73\xe4\x1f\
\x77\xf1\xf6\xa6\xa7\x30\x63\x90\xa3\x85\x56\xb2\x04\xf8\x74\x52\
\xe4\xd3\x6c\xc4\xc3\x94\x80\x0f\x5d\xda\x08\xd4\x93\xba\x2a\x09\
\x60\x10\x34\xb5\xda\xc4\x0d\x40\x74\xe2\xb9\xba\x11\x49\x25\xe4\
\xce\xeb\x96\xd7\xc6\x91\x1f\x78\xbc\x7b\xbc\x8f\x9f\x3c\xf6\x22\
\x1d\x9f\xdf\x4d\xde\x86\xe4\xc9\x90\x23\x44\x81\x51\x6a\x8c\x51\
\x23\x4f\x06\x1f\x43\x82\xed\xbc\x34\x02\x0d\x16\x10\x18\x83\x49\
\xc7\x7c\xb2\x64\xea\x72\x48\xfd\xa1\x21\x1f\x1a\x8e\xca\x44\xed\
\xa7\xe7\xbe\xef\x71\xe0\xd0\x51\xbe\xff\xe3\x5d\x2c\x9d\xd3\x4a\
\x3e\xcc\x91\x1f\x37\x14\xc8\x10\xe0\x71\x9a\x11\x86\xa9\x12\xe0\
\xf1\x2a\x87\xa9\x12\x03\xbc\x7d\x3e\xba\x99\x25\x54\xff\x56\x75\
\x25\x01\x02\x2a\x82\xa6\x76\x6c\x6c\x32\x79\x6f\x99\xbc\xd7\xb4\
\xa4\x50\xc0\xa6\xef\xf8\xd9\x81\x1e\xfe\xfd\x85\x1d\x94\xb2\x59\
\x3a\x6f\x5e\x46\x69\xd3\x7a\x8a\xf8\x04\x18\x86\x19\xe7\x14\xc3\
\x9c\x61\x94\x97\xd9\xcf\x63\xfc\x17\xb8\x72\x7b\xdb\xf9\x10\x67\
\x21\x21\xe7\x03\x2a\x75\xe1\xa6\x42\x71\xe6\x46\x27\x38\xa5\x36\
\x18\x4f\x64\xef\x98\xd5\x0d\x60\x30\xd4\x62\x65\xd7\xab\x7b\x68\
\x2f\x15\x58\xb2\x68\x1e\x6d\xb9\x1c\xed\x9f\x7b\x3f\x51\x05\x46\
\xff\x69\x0f\x43\x0c\x33\x4a\x8d\x7d\xde\x20\x5f\x4a\x7e\x48\x85\
\xb1\xc3\xc0\x27\x71\xf3\x86\x4b\x20\x40\x4a\x40\x20\xf0\x0c\x7e\
\x0a\x5e\x52\xf0\x75\xc9\x30\x69\x4f\xf3\x1e\x9a\xe4\xdc\x87\x41\
\x8c\xe0\x1f\xfe\x02\xcb\x72\x1e\x51\xdb\x9d\xcc\xef\x28\x30\xa7\
\xd4\x4a\xa6\x25\x43\xbc\xf5\x57\x18\x5f\xe4\x51\xfd\xd6\x4e\x7a\
\xcb\x25\xbe\x52\x3e\x41\xe5\xd5\xb1\x71\xe0\x7e\x60\xef\x54\xf0\
\x66\xe5\x03\xaa\x10\x5b\xa7\x7d\x15\x1a\xc9\x6a\x92\x13\xa7\x0e\
\xeb\xc2\xbb\x22\x5a\xd7\x7f\x7a\xb3\x0a\x6a\x04\xff\xc0\x16\x5a\
\x0e\xff\x15\x37\xce\x5b\x4f\x4f\xf9\xe3\xb4\xb7\x95\xc9\x84\x86\
\xe1\xb3\x23\xf4\x9f\x3e\xc3\xd0\x9d\x0b\xa9\x5c\xb7\x91\x1d\x67\
\x22\x86\x9e\x7b\x07\xdc\x04\xa8\x7b\x3a\x74\xb3\x2a\x25\x5c\xfc\
\x07\x31\x34\x1d\x35\xdd\x23\xe7\x59\x5d\x9a\x74\x9a\x2a\x32\x60\
\x3c\xb2\xdd\x5b\x68\x39\xb2\x19\x8a\x30\xa7\x63\x37\x2b\xda\x1f\
\x25\x0c\x73\x9c\x1b\xad\x31\x70\xaa\xc2\x89\x93\x83\x1c\xde\xdf\
\xc3\x8e\xa1\x53\x3c\x7b\x2e\x46\x92\xc6\x5b\xa6\x35\xf4\xac\x24\
\x24\x28\x81\x11\x02\xd3\xe4\x7b\xbe\x74\x1a\x39\x8a\x89\x52\x72\
\xe0\x45\x04\xd3\xbd\x05\xd3\xed\xc0\x53\x06\x8a\xd0\x1a\x7e\x05\
\x3b\x36\x46\xcf\xe0\x03\xf4\x9c\x1c\xe5\xc8\xd1\x5e\xde\xb3\x7c\
\x31\xe3\x0b\x0d\xd1\xae\x83\x18\xea\x31\x70\xfa\x76\xf1\x11\x40\
\x51\x55\x62\xab\x24\x0a\xb1\x92\xee\xb5\xb1\x8f\x55\x49\xac\xeb\
\xab\x9f\x47\x16\x22\x2b\x44\x08\x7a\x68\x0b\xde\x91\xcd\x48\x2b\
\x50\x02\x72\xb8\x75\x8b\x9a\x52\xee\xf9\x3a\xd7\x75\xff\x0e\xf3\
\xab\x2f\xb1\xfa\xbd\xd7\xf2\xab\x1b\x6f\xc1\xf7\x7d\x50\x7b\x71\
\x68\xcc\x76\x04\x94\x34\x13\x37\x53\x53\xdd\xe4\x4d\x5f\x95\x49\
\x31\x08\x71\x96\x0f\x8f\x6c\x45\x8e\xa5\x96\x2f\xe2\x66\xb8\x21\
\x6e\xc6\x7b\x14\x38\x01\xf9\x8c\xe5\xa6\x5b\x3f\x82\xdf\xb6\xce\
\x45\x33\x6b\x1b\xd1\xef\x32\x09\xd4\x5f\xa2\x8d\xd2\x40\xb5\x29\
\x0f\x99\xc4\xa0\x99\x73\x25\x0d\xb7\xd2\xbd\x05\x8e\x6e\x86\x56\
\x9c\xd5\xc3\x74\x8b\x80\x3e\xa0\x1f\xe2\xdc\xb5\x44\xeb\x9f\xc5\
\x6b\xbb\x1e\xb5\xae\x6c\x9f\xf8\xbd\x97\x49\x20\xa5\x91\xca\xc2\
\x57\xb0\x68\x1a\x58\x2e\x8c\xfc\xf5\x21\x51\x84\x4c\xf7\x16\x82\
\xde\x14\x7c\x0b\x4e\x32\x41\x0a\x7e\xc0\x6d\xd5\x60\x39\x67\xd7\
\x3c\x45\xae\x7c\x3d\x1a\xdb\x46\xc1\x97\xd8\x8b\x03\x9f\x3d\x81\
\x54\x42\x81\x08\x81\x71\x23\x30\xc1\x43\x27\xc9\x09\x31\x6e\xae\
\xdb\xb3\x15\xd3\x9b\xca\x26\x03\x78\x29\xf8\x18\x38\x05\x0c\xc1\
\x08\x5d\x54\xae\x7b\x82\x52\xfb\x3a\x82\x24\x41\xd2\x00\x61\x34\
\x75\x4c\xab\xb3\x19\x80\xd9\x10\x70\x9b\x25\x2d\x0d\xce\xd3\xba\
\x4e\x94\x91\x82\x1c\xd9\x42\x70\x7c\xb3\x73\x56\x3f\x65\x58\x07\
\x7f\xd6\x11\x18\x49\x96\x72\xb2\xeb\x9b\xe4\xca\xeb\x88\xaa\xc3\
\x10\x86\x04\x81\xbb\x59\x84\x54\xff\xf6\x4a\xf8\x00\x6e\x5d\x47\
\x5d\x32\x53\xc0\x36\x5e\x5a\xcf\xb6\xea\x8a\x20\x31\x64\x8e\x6e\
\xc5\x3b\x91\x82\xf7\xd2\xdb\x82\x94\xf9\x30\x50\x81\x33\xd5\x45\
\x1c\x9e\xfb\x35\x8a\xa5\x35\xc4\xd1\x30\x42\xe0\x12\x8c\x31\xf8\
\x9e\x87\x4d\x8d\xd5\xac\xb4\x2e\x97\x00\x6e\xf6\xe4\xf2\x80\x60\
\x1b\x19\xb6\x6e\x78\x83\x08\x98\x23\x5b\x31\xc7\xff\xd2\x69\x5e\
\x52\xd0\x99\x74\x3f\x0e\x9c\x85\xd3\x23\x0b\x39\x54\x7e\x98\x42\
\xfb\x3a\xbc\x64\x14\x91\x00\xf1\x0c\xd8\x04\x49\x12\x4c\x7d\x9e\
\xc1\xec\x22\xd0\xec\x08\xa8\xcb\x03\x91\x55\x7c\x9b\x3a\x31\x34\
\x8c\xa3\x02\x5e\xf7\x16\xfc\x93\xa9\xe5\x01\x12\x5c\xb4\xa9\x2f\
\x10\x9e\x83\xd3\xe7\x16\xb0\x2f\xf3\x45\x72\xad\x6b\xa8\xd5\x86\
\x51\x0d\x48\x70\xca\x52\xe3\xe1\x8b\x90\xa4\xfa\x4f\x6c\x4a\xe0\
\xb2\x7d\xa0\x51\x8d\xd2\x98\x5d\x4d\xcc\x7c\x22\x1e\xc1\xb1\x2f\
\x61\x4e\xa6\xd1\xc6\x4e\x00\x4f\x8a\x6e\x04\x06\x4e\x77\xb2\x57\
\xbf\x40\xbe\xb4\x06\xe2\x51\x12\x09\xdc\x0c\x2e\x16\xf2\xb9\x3c\
\xc5\x62\x11\xcf\xf3\x70\xe1\xba\x69\xb8\x2b\x23\x21\x05\x51\xc5\
\x08\x8d\x3c\x90\xa2\xc7\x8e\x0f\xa1\xfd\x7f\xd7\x04\x5f\xc3\xc9\
\xa6\x4e\x7e\x04\x06\x06\x3b\xf9\xef\xea\x66\x32\x1d\xab\x21\x1e\
\xc1\x8a\xb3\x7c\x4b\x18\xd2\x39\xa7\x83\x42\xb1\x58\x8f\xc8\x34\
\x2a\xd7\x59\x26\xb1\xd9\x11\xc0\xa2\xb8\x52\x22\xb6\xf5\xa9\x09\
\x80\xa1\x3a\xd4\x8f\x09\xcb\x78\xc9\x71\x57\x33\x66\x1a\x5d\x30\
\x0a\x27\xfb\x3b\xd8\x79\xe6\x4f\xc8\x74\xdc\x80\x17\x8f\xa2\xea\
\x91\x28\xcc\x9d\xdb\xc6\x82\x45\x8b\xc8\x64\x32\xc4\xda\xf0\xda\
\xa6\x61\x1a\x12\xba\x42\x0b\x5b\xa2\xe0\x89\xe0\x1b\xc1\x17\xc1\
\x37\x06\xdf\xd6\x90\xea\x18\x49\xf6\x41\x18\xf7\x26\x87\xcc\x31\
\x38\xd1\xd7\xc6\x8f\x07\x1f\xc2\x2b\xae\xc6\xb3\x63\x24\x51\x8d\
\x4c\x10\x70\xf5\x8a\x15\xac\x58\xbe\x9c\x7c\x4b\x0b\x1e\xa4\xef\
\x6b\x6e\x02\x98\x46\x28\xbd\x22\x12\xaa\x4f\x0a\x9b\x81\x4d\x80\
\x68\xa4\x82\x17\x18\xc8\x7d\x8c\x9a\xf6\x11\x8c\x3d\x8c\xe4\xc6\
\x61\x14\xfa\x8e\xb7\xb1\xbd\xef\x0f\x30\xa5\x55\x24\xd1\x08\x35\
\x7c\x16\x2f\x5e\xc2\x35\xd7\x5e\x43\x2e\x97\xc3\x5a\x9d\x76\xd9\
\xd0\x61\xaf\x4f\x46\x2f\xde\x66\x55\x0b\xa9\x2a\x56\xb5\x91\x1c\
\x05\xc5\x44\xa3\x98\x6c\x09\x5b\xab\x30\x36\xfe\x41\xb4\x72\x96\
\xe8\xc4\x8b\x74\x0f\xfa\xbc\x59\xf9\x2d\xfc\xd6\x95\xf8\xb5\x73\
\xe4\x4b\x65\x56\xdd\x70\x03\x57\x2d\x5e\x0c\x0a\x51\x3c\x73\x95\
\x29\x5e\x5d\x42\x33\x2f\x1b\xce\x92\x80\x34\x25\x64\xdc\x7a\x0e\
\x08\x03\x27\xfa\x28\x68\x44\xd6\xb7\x54\x87\x0e\x71\xec\xdd\x7d\
\xec\x3b\x18\x70\x7c\xfc\x1e\xbc\xd2\x42\xf2\xf9\x16\x34\x1e\x65\
\xc9\xd5\x57\xb3\x66\xed\x5a\x8a\xc5\x82\x03\x25\x17\x47\xd5\x08\
\xd1\xf6\x8a\x48\xa8\x3e\x02\x76\xd2\x88\xee\x7b\xeb\x6d\x18\x3b\
\x4d\x9b\x37\xca\xdb\xfb\x0f\x72\xf4\x8c\xc5\xcb\x2e\x20\x57\xce\
\x12\x78\x09\xf9\x7c\x86\x9b\x6e\xba\x99\x65\xcb\x97\x23\x22\x24\
\x49\x33\x7b\x5f\xac\xa9\x90\xca\xeb\x8a\x45\x21\x4d\x17\xb6\xd4\
\x2d\x89\x47\x11\xfd\xfd\xfd\x1c\x38\x74\x90\x39\xed\x73\x28\xcd\
\xbf\x9e\xd5\x2b\x4b\x14\x0b\x79\x0a\xf9\x3c\xf9\x42\x81\x05\x0b\
\x16\xd0\x5a\x2c\x92\xd8\xd9\xd5\x33\x13\x9b\xc1\xad\xc5\x5e\x51\
\x27\x16\x20\x34\x86\x40\x04\x3f\x08\xb8\xeb\xae\xdf\x20\x08\x02\
\xc2\x30\x83\xe7\x99\x0b\x42\x99\xc5\xd5\x4c\xae\xb6\xbf\xb4\xe6\
\x89\xe0\x0b\x60\x67\xe7\xc8\xb3\xaa\x85\x86\xa3\x98\x53\xe3\x11\
\xad\xc6\x23\xb1\x8a\xc9\x16\x88\x50\x6a\x89\xa2\x49\x3c\xe3\xb3\
\x97\x46\x41\x08\x3d\x61\x60\xa4\xea\x4a\xf6\xcb\x2c\x25\xdc\x4a\
\x8e\x67\x38\x7a\xae\xc6\x77\xf7\xfc\x8c\x4d\x1b\xd6\x92\x09\xbc\
\xf3\xca\x94\xfa\x6a\x28\x17\x0c\xb9\xa6\x1f\x8d\xe4\xd7\x78\x4e\
\x1b\x9d\x3a\xe9\x54\x79\xeb\x60\x2f\xcf\xbf\x75\x08\x13\x9c\xff\
\x63\xff\xa5\x13\x38\x45\x75\x0c\x19\x39\x8b\x9d\xb7\x84\x3f\x7e\
\xe9\x4d\x9e\x7c\xe3\x20\xa5\xd0\x77\x11\xa5\xfe\xad\x9a\x66\xe7\
\x06\x92\xa6\x76\xb5\xbe\xaa\x57\x27\x56\x3f\x6e\xd4\x58\xda\xb8\
\x07\x5c\xa8\x3e\x78\x6a\x98\x81\x18\xfc\x6c\x86\xb8\x32\x00\xee\
\x77\x81\x29\x7f\xa1\x84\x99\x47\xf8\x03\xc0\x76\x59\xb5\xde\xf7\
\x3e\xfa\x00\xda\x92\x23\x89\x62\xa7\xcd\x09\x80\x9a\xa0\xa7\x38\
\x9f\x44\x68\xaa\xeb\x4c\xee\x47\xdd\xf2\xbd\x18\xec\xbb\xaf\x13\
\xff\xe8\x3b\x50\xab\xfe\x2b\xf0\xbb\x4c\x23\xa8\x99\x08\x08\xee\
\x07\xe6\x3f\xa7\x34\x07\x69\x6d\x6f\x5a\xbd\x51\x7c\x9d\xd7\xa6\
\x8c\x1a\x3a\x69\x77\xc1\x89\x4e\x71\x2d\x8e\xd1\xa1\xe3\x60\xed\
\xff\x00\x77\xe1\xfe\xd2\x30\x2d\xc8\x99\x9a\x00\x77\x03\xf7\x00\
\x9d\xd3\xc0\xbe\xd2\x4d\x70\x85\xf8\x6e\xe0\x51\xdc\x1f\x48\xfe\
\xff\xb6\xff\x05\x4e\x95\x6d\xd1\x4e\xb6\xef\x54\x00\x00\x00\x00\
\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x03\x5c\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
\x00\x00\x03\x23\x49\x44\x41\x54\x78\x9c\xed\xd8\xdd\xab\x54\x55\
\x18\xc7\xf1\xcf\x51\x3b\x5d\x18\x16\x9c\x4a\x45\xcd\x93\x15\x95\
\x9a\x90\x05\x59\xd9\x7d\x89\x61\x20\xd2\x8b\xa8\x68\x77\x82\x60\
\x50\xf4\x0f\x74\x53\x54\x1c\x08\xa1\xc8\x8a\x4a\xad\xbc\x08\x23\
\xcb\xab\xc0\x0b\xed\x85\x8a\x20\x2b\x92\xee\x95\xa8\x44\x83\x5e\
\xc8\x97\xe9\xe2\x59\xc3\x1c\xc7\xb3\xf7\x59\x7b\x66\x1f\xe7\x5c\
\xec\x2f\x6c\x36\x33\xcf\x5a\xbf\xf5\xdb\x6b\xd6\x7a\x9e\x35\x9b\
\x86\x86\x86\x86\x86\x86\xa9\xe3\x19\x3c\x3b\x68\x13\xbd\x70\x05\
\x5e\x40\x2b\x5d\x2f\x62\x78\xa0\x8e\x2a\x30\x8a\x83\xc2\xf8\x37\
\xe9\x6a\xe1\xd3\x14\x9b\xd6\x3c\x8e\x13\xc2\xf0\x5e\x5c\x93\xae\
\x7d\xe9\xbb\x13\x78\x62\x40\xde\x4a\xb9\x13\x07\x84\xc9\x33\xd8\
\x8e\xa1\x71\xf1\xa1\xf4\xdd\xe9\xd4\xe6\x00\x56\x5e\x4e\x83\x45\
\xdc\x8d\xdd\x38\xa7\x63\x6c\x69\x49\xfb\xdb\xf0\x61\x6a\x7b\x2e\
\xf5\xbd\x6b\x6a\x2d\x5e\xcc\x1c\x31\xdb\x4f\xe3\xa8\xce\x26\x3d\
\x8a\x87\x2b\xe8\xac\xc5\x91\x71\xfd\x3f\x17\x19\x6b\x65\x1a\xa3\
\x76\xd6\xa4\x01\xdb\xeb\xbb\xbd\x54\xf6\xe3\x21\xcc\xec\x41\x73\
\x66\xea\xbb\x5f\x67\x69\xb5\x70\x32\x8d\xf5\x60\xbf\xa6\xc7\xf3\
\x64\x12\xff\x11\xbb\xb0\x01\xf3\x6a\xd4\x9f\x97\x34\x77\xe1\x87\
\x34\xd6\xd6\x1a\xf5\x3d\x92\x44\x1f\xad\x53\xb4\x80\x0d\x69\xac\
\xb5\x39\x8d\x67\x64\x8a\xfe\x96\xee\x75\xce\x7a\x11\xf3\xbb\xc6\
\x2c\x25\xf7\x01\x7e\x4f\xf7\x45\x95\xed\x54\x67\x41\xba\x9f\xca\
\x69\x9c\xfb\x00\xa7\xf0\x17\x6e\xe8\xc5\x51\x01\xcb\x44\x75\xee\
\xae\x07\x8b\xf1\x27\xfe\xc8\x11\x99\x95\x39\xd8\x69\x91\x1d\x6e\
\x14\x45\xa9\x95\xd9\xaf\x88\x5b\xc5\x71\x63\x04\xff\x75\xc5\x96\
\xa4\xb1\xce\xf4\x39\xc6\x25\x1c\x12\x4b\xa9\xdf\x3c\x7d\x13\x7e\
\x11\x93\xb2\xba\x2b\x76\x15\x7e\xc5\x27\xb9\x62\xb9\x4b\x88\x48\
\x6f\x23\x3a\x6b\xb4\x17\x46\xc5\xcc\xcf\x15\x99\xed\x48\x57\x7c\
\x21\xae\xc3\xb1\x5c\xc1\x2a\x0f\xf0\x5d\xba\xdf\x31\x41\xec\x29\
\x6c\x9e\xa4\xff\x22\x7c\x2c\xf6\xd1\x7a\x1c\x9e\xa0\xcd\x72\xb1\
\x44\xbf\xad\xe0\x2b\x9b\xdb\x71\x01\xaf\x4c\x10\xfb\x48\xec\x8b\
\x2d\x05\x7d\x17\x88\x09\xf8\x57\x54\xf5\x22\xc6\x70\x1e\xb7\xf4\
\xec\xb2\x84\x61\xfc\x8c\xe3\xe2\x0f\xcb\x78\x46\xc4\x8c\x5e\xc0\
\xc6\xae\xd8\x5c\x7c\x2d\x36\xeb\xba\x12\xfd\x59\xf8\x49\x54\xfb\
\xdc\xe4\x52\x99\xe7\xc5\x4c\xdf\x3b\x41\x6c\x44\xac\xe9\xf3\x3a\
\x15\xfb\x5a\x7c\x21\x4e\x9e\xeb\x27\xd1\x5e\x95\xb4\x9f\xab\xc5\
\x69\x01\x2b\x84\xc1\xb7\x0a\xe2\xd7\xe3\x2b\x9c\x15\x67\x99\xcf\
\xc4\xaf\xf2\x58\x86\xf6\x9b\xe2\x41\x97\xf5\x6f\xb3\x9c\x83\xf8\
\x07\x37\x17\xc4\xe7\x8b\x4d\xd8\x3e\x5d\x6e\xca\xd0\x5c\x82\xbf\
\xc5\xff\x89\x29\x67\xb5\x30\xf6\x46\x49\x9b\x85\x22\x97\x6f\xcb\
\xd4\x7c\x3d\x69\xae\xea\xcf\x5a\x3e\xef\x89\xa5\xf1\x40\x0d\x5a\
\xf7\x27\xad\x3d\x35\x68\x65\x33\x2a\xce\x2a\xc7\x70\x75\x1f\x3a\
\x73\xf0\xbd\xa8\xf0\x8b\xfb\xb7\x55\x8d\x4d\xe2\x67\xdf\xa3\x5a\
\x41\x6c\x33\x03\xef\x26\x8d\x81\xbd\xa9\x18\x4b\x06\xc6\x5c\xfc\
\x16\x22\x87\x97\x53\xdf\x97\xea\xb5\x54\x8d\x61\x9d\x77\x3e\xbb\
\x31\x3b\xa3\xcf\x6c\xbc\x96\xfa\xbc\xe3\xd2\xa2\x78\xd9\xb9\x52\
\x27\x8b\x7c\xa9\x3c\x93\xdc\x23\x0a\x5b\x0b\xaf\x9a\x66\xaf\x1b\
\x77\x8a\x5c\xde\xc2\xdb\x22\xdd\x0e\x8b\x19\xbe\x4f\x14\xbf\x96\
\xf8\x63\xb4\x63\x30\x16\x27\x67\x39\x3e\xd0\x29\x62\xc7\xc5\xf9\
\xa9\xfd\xf9\x7d\xe5\x2f\xbe\x2a\x53\x75\xe3\xe5\xb2\x42\x9c\x87\
\xd6\x08\xe3\x87\x84\xf9\xec\x73\xfe\x74\x61\xc8\xd4\x4d\x52\x43\
\x43\x43\x43\x43\xff\xfc\x0f\xa9\x82\xb0\x23\x12\x35\x8a\x70\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\xcb\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\x6d\x49\x44\x41\x54\x78\xda\x8c\
\x53\xcd\x6b\x13\x51\x10\xff\x65\x77\xb3\xd9\x60\x4a\x8c\x90\x48\
\x90\x98\xe6\x60\xa0\x14\x82\x58\x0f\x5e\xb4\x50\x68\x05\x11\x0b\
\x05\x8b\x7a\xec\xa5\x9e\xfc\x13\x3c\xf8\x0f\xf8\x55\xf1\xe3\x50\
\x7a\xa9\x78\x88\x07\xc5\x8b\xe0\xb9\x11\x4c\x7b\x68\x90\x84\x44\
\xa8\x81\xa8\xfd\x90\x68\x93\x4d\xb2\xd9\xdd\xec\x3a\xf3\xf2\x7d\
\x73\x60\x78\x6f\xde\xcc\xfc\xe6\xf7\xde\xcc\xf3\xac\xcd\x42\x88\
\xc7\x83\x81\xec\xf9\xa7\xd4\xef\x27\xa6\xaf\xd3\x36\xdc\x3b\x3a\
\x9a\x6c\x7c\xfd\x90\x68\xe5\xcd\x7e\x8c\xeb\x76\x57\x65\x98\x86\
\x97\xa4\x33\xbc\x39\xb5\x9f\x57\x52\x57\xe7\x23\x97\x56\xee\x45\
\xd9\xfe\xbc\xfe\xe4\x57\xe5\x63\xfa\x3e\x82\xb0\x7b\xb1\xdb\xa4\
\xab\xa2\xf0\xd3\xd9\x01\x40\x76\x61\x79\x65\xa6\x50\x28\x20\x72\
\xe7\x05\x34\x4d\x45\x30\x18\x10\x8e\xe3\x63\x1d\x86\x61\xe2\xf0\
\xf5\x5d\x24\x93\x49\x7c\x4a\x6f\x30\xc0\x45\xc1\xa0\xe3\x0c\x29\
\x98\xa6\x89\x5a\xad\x86\xc3\x47\x4b\x50\x55\x55\xa8\x24\x49\xb0\
\x2c\x4b\xf8\x7c\x3e\x9f\x58\x47\x73\x94\x4e\x67\x68\x74\xc8\x48\
\x24\x12\xa8\xd7\xeb\xc2\x2e\x4b\x21\xb4\x24\x6d\xe0\xd7\x34\x0d\
\x59\x43\x85\xee\x0f\x6b\xbf\xc3\x53\x70\x9c\xce\x38\x03\x06\xe0\
\x6a\x1c\xc8\x62\x21\x80\xd5\x07\x1b\xb0\xe9\xdc\x74\x1c\xb4\x6d\
\x1b\xd9\x9d\x1d\xe4\x76\x77\x27\xca\x93\x97\xcf\xd9\x96\x55\x92\
\x98\x41\x5f\x39\x79\x54\x4d\x52\x97\x12\x6d\x5e\x49\x1d\xa2\xaf\
\xeb\x3a\x1e\xbe\xd9\x3a\x4b\x67\xf3\x54\x23\x29\xd9\xc4\x60\xa0\
\x54\xa1\x9f\xdc\x6a\xb5\x28\xb8\x01\x89\xfa\xbb\x9d\xcf\xa3\x50\
\x2e\x43\xf3\x7a\x51\xad\x56\xb1\xb6\xb9\x89\x85\x54\xea\x59\x21\
\x97\x5b\x56\xec\x91\x37\xe0\x44\xc3\x30\xd0\x6c\x36\xd1\x6e\xb7\
\xa1\xfb\x34\x01\x10\x8f\xc7\x85\x5f\xa6\x07\xbd\xb5\xb8\x08\x83\
\xe2\x24\x7a\xd0\x77\x99\x4c\x4d\xb1\xed\x21\x00\x57\xe5\x2e\x38\
\x44\xdb\x43\x89\x0e\x0d\x8b\x44\xe7\xc5\x62\xb1\x3b\x4d\xa1\xd0\
\x20\xee\xfc\xf4\x34\x77\x44\x1e\x63\xc0\x55\x39\x51\x96\x65\x61\
\x3b\x34\x6e\xcc\x20\x16\x8b\x61\x54\x02\x81\x00\x54\x62\x63\xb6\
\xdb\x92\x62\x8d\x00\xf0\x74\x4a\xbd\x64\xd1\x15\xdb\x15\x80\xa5\
\x52\x49\xd8\x21\x62\xc0\x57\x8c\x46\xa3\x82\x19\x01\xc8\x4a\x59\
\x07\xce\xf8\x87\x03\xce\xf7\x1c\x0c\x16\xdd\x95\xbf\xc8\xd2\xdc\
\x1c\xb9\x5c\xc1\xc8\xe9\x31\x63\xe0\x46\xbd\xee\x55\xde\xfe\x04\
\x6e\x9c\x06\xa2\x6a\x37\x49\x1e\x61\xe0\xb5\x5a\xb8\x7d\xed\xc2\
\x18\x7d\xfe\x74\xdf\xf6\x8e\xf6\x4b\x5a\x78\x9d\xd8\x1e\xf0\x67\
\xf2\xbf\x3f\xc0\xc4\xcd\x93\x10\x63\xeb\xa5\x56\x71\x35\xd6\x2b\
\x91\x3e\x31\x77\x6c\x4d\x6f\x55\x7e\x7c\xf9\x5b\x79\x4c\xdb\xba\
\x00\x20\x8d\x94\x1b\x28\x3e\x7f\x95\xc1\xff\xc8\x1f\x17\xdc\x16\
\x86\xb7\xff\x09\x30\x00\x25\x9d\x3e\x11\xaa\xbb\xd2\x6c\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\x65\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\x07\x49\x44\x41\x54\x78\xda\xc4\
\x53\xcf\x6b\xd4\x50\x10\x9e\x97\x97\x6c\x4c\x61\xd5\x6d\xd9\xfa\
\xab\x18\x50\x16\x5d\xc1\x5e\x42\xaf\x82\x07\xa1\x27\x05\x41\x28\
\x7b\xf6\x2e\x78\x11\xa5\xc7\xe2\xcd\x3f\xc0\xab\x22\x05\x0b\x95\
\x6a\x2d\x51\x11\xbd\x14\x05\xb7\x50\x50\xbb\xed\x22\x48\x45\x90\
\xac\xeb\x96\xdd\x34\x9b\xcd\x4b\xde\x8b\xf3\xde\xae\xed\x56\x85\
\x0a\x3d\x38\xf0\xf1\x26\xc9\xcc\x37\x6f\xbe\x99\x90\x34\x4d\x61\
\x2f\xa6\xc1\x1e\x4d\x2f\xdc\x5a\xec\x32\x51\x0a\x86\x69\x2a\x10\
\x6d\x9b\x37\x9b\xcb\xa9\x93\x10\x72\x17\x8f\x47\x49\x1c\xbb\x71\
\x14\x01\xeb\x74\x20\x0a\x43\xd0\x77\xab\xd0\xf6\x7d\x30\x2d\x4b\
\xba\x8e\x42\xb7\x65\xf7\x9f\x5b\xe0\x49\x02\x9d\x20\x00\x59\xb5\
\x34\x7e\xd4\x89\x19\x9b\x42\x92\xf1\xad\x16\x7e\x4f\x40\x51\xc7\
\x40\x88\x09\x74\x8b\x88\xbc\xbc\x3d\x17\x42\x11\xd5\x6a\x0c\xae\
\x5c\x38\xee\x3c\x78\x52\x9d\xea\x89\xef\xf6\x13\x0c\x08\x21\xae\
\xed\xb7\x48\x69\xf4\xcc\xa1\x23\x43\x07\x06\xb2\x86\x4e\x33\x42\
\xa4\xc0\x79\x17\xad\x16\x03\xcf\xe3\x70\xe9\xfc\x09\xe7\xe1\xc2\
\x47\x45\x42\xec\xeb\x2f\x95\x68\x28\xe2\xcd\x53\x27\xf3\x57\x9d\
\x51\xdb\xc6\xdb\x52\xbf\x1d\x41\xc3\x0f\xc0\xdf\x6c\x03\x63\xb1\
\xba\x81\x34\x2a\xc5\x36\x0c\xb0\x47\x06\xe1\xc5\xab\xca\x92\xce\
\x30\x1a\x09\xc6\x86\xf3\xd9\xd2\xd9\xe2\x88\x5d\xdf\x14\xf4\x2b\
\x4b\xa0\x89\x80\x8c\x09\x22\x67\x02\xc7\x4a\x5c\x00\x04\x71\x0a\
\xed\x58\xc0\xb1\x83\x19\x98\x5f\x28\x2f\xe1\x64\x26\x75\x29\x0e\
\xda\x44\xb1\x50\x38\xbc\x5e\x6f\x05\xd5\xcf\xde\x46\xb3\xe1\x87\
\xa1\x1f\xb2\xa4\x13\x25\x29\x17\xdb\x9b\x76\xf9\xa2\xb3\x8f\x02\
\xac\xcd\x3c\x56\xc9\x19\xcb\x72\x75\x39\x4b\x29\xd8\xdb\x37\x2b\
\x5f\xea\x3f\xfc\xd7\x9a\xa6\x3d\xc7\xe7\x75\x84\x87\xf0\xa9\x61\
\x24\x29\x8a\x88\xf3\x2f\x1b\xd8\x6a\xf3\xde\xb4\x4a\x26\x1b\x9f\
\xdc\xd6\xf2\x0c\x10\x3a\x7c\x1a\x8c\x73\x37\xca\xe2\xfb\xda\x2c\
\x34\xaa\xb7\xd9\xfb\xd9\x3f\x46\xf9\x2b\x46\xfa\x18\x37\xc9\x57\
\xe7\x5c\xee\x55\xba\x63\xe4\xb5\xd5\x21\xf8\xf6\xa1\xc2\x17\xef\
\x3c\xeb\x2d\xcb\x8e\x35\x40\x24\x18\x13\x63\xcc\x0a\x04\xb5\xa7\
\x7c\xf9\xfe\x3b\xb9\xa0\x08\x26\xbf\x11\x39\xbe\xde\x0b\xfa\x97\
\x3d\x12\x7d\x48\x7a\x84\xfd\x10\xe4\xbf\xff\x8d\x3f\x05\x18\x00\
\x67\x93\x02\xcf\xc9\x41\xe6\x9e\x00\x00\x00\x00\x49\x45\x4e\x44\
\xae\x42\x60\x82\
\x00\x00\x0e\x07\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
\x00\x00\x0d\xce\x49\x44\x41\x54\x78\x9c\xcd\x99\x6b\x8c\x5d\xd5\
\x75\xc7\x7f\x6b\xef\x7d\xee\x7b\x7c\x87\x19\x7b\x30\x1e\x3c\x7e\
\xe1\x07\x63\xec\x9a\x98\xe2\x60\x95\x60\x82\x9d\xe2\x40\x4a\x52\
\x4a\xea\xaa\x2a\x6a\xa5\xa8\xfd\x90\xa2\x2a\xad\x02\x95\xa0\x1f\
\x2a\x25\xb1\xd2\x7e\x48\x5b\x84\x12\x52\xc1\x87\x54\x29\x0a\x69\
\xd2\x47\x94\x62\x19\x84\x4c\x5c\x63\x94\x86\x24\xd4\x66\x78\xb9\
\x76\x6c\x1e\x36\x36\x78\x3c\xe3\x3b\xf7\xce\xdc\x73\xce\x5e\xfd\
\x70\xce\xb9\xf7\xdc\x3b\x63\x40\x6d\x9a\x76\x8f\x46\xf7\x3c\xf6\
\x63\xbd\xd7\x7f\xad\x23\xe4\xc6\xf8\xf8\x78\x6d\x6c\x6c\xec\x9a\
\x72\xb9\x3c\x22\x22\xda\x7d\x13\xa7\xbf\x96\xff\x9b\xe1\xb0\x56\
\x65\x6a\x6a\xea\xe4\xfe\xfd\xfb\x5f\x04\xa2\xec\x8d\x64\x17\x3b\
\x77\xee\xbc\x2d\x8e\xe3\x07\x66\x67\x67\x37\x89\x98\x0a\xa2\x2a\
\xdd\xd7\xc9\x64\xe9\xbd\x47\x85\x38\x06\xeb\xa0\xfb\x4a\xe8\x9f\
\x96\x9d\x94\xdf\x4f\x04\xe2\x48\x10\x03\xc6\x2c\xbc\x4e\xb2\x89\
\x9a\xbc\x46\x75\xaa\x58\x2e\x3f\xab\xde\x3f\xb0\x6f\xdf\xbe\x9f\
\x74\xe6\xdc\x7a\xeb\xad\x1f\x6f\x34\x1a\xdf\x6a\xb5\x66\x6b\xaa\
\x4a\xb2\x22\xdb\xa0\x87\xcf\xf4\x4a\x50\xa0\x52\x33\xac\xd9\x62\
\x38\x7a\x28\xee\x99\x26\xdd\x8b\x3c\xf5\x3d\xe2\xf0\xb1\xb0\x7a\
\x93\xa1\xd5\x10\xce\x9c\x8c\xb1\xa6\x6f\xc2\x3c\x81\x09\xc6\x08\
\xd6\x5a\x8a\xc5\xe2\x29\x63\xcc\xee\x7d\xfb\xf6\x4d\x98\xf1\xf1\
\xf1\x5a\xa3\xd1\xf8\xf3\x56\xab\x55\x03\x8f\x48\xb2\x50\x92\x0b\
\x10\x03\xe9\xbd\x88\x80\x11\xc4\x24\xd7\xed\x59\x61\xc3\x2f\xc3\
\x86\xeb\x6c\x22\x4d\x91\x54\x50\xe0\x7d\x42\xa4\x8f\x05\xef\x01\
\x2f\xa9\x94\x05\x54\xa8\x0f\x5b\x6e\xf8\x84\x27\x0a\xc1\x48\x77\
\x4f\x11\xc1\x88\xc1\x18\xd3\xb9\x4f\x9e\x25\xcc\xc4\x71\x4c\xbb\
\xdd\x1e\x43\xb9\xff\xae\xbb\xee\xb2\x6e\x74\x74\xf4\x43\xd3\xd3\
\xd3\x9b\x55\xb5\x87\xe3\x44\x73\x82\x68\x4e\x92\x22\xf9\x4b\xc2\
\xd0\xf3\x83\x7f\xb0\xec\xfa\x1d\xe5\xe4\x84\xa1\x71\xc1\x53\x28\
\x19\x6a\x83\x42\xb5\x2e\x14\x2b\x31\x22\x4a\xd4\x76\xcc\x4c\x41\
\x73\x1a\xe6\x5a\x8a\xf7\xc2\xf6\x3b\x94\x57\x9f\xb7\x9c\x7b\x43\
\x09\x0a\x99\x5e\xa1\xdf\x8e\xfa\xcd\x56\x90\x84\x89\xb0\x7d\xe3\
\xc1\x83\x07\x87\x5c\xa9\x54\x5a\xdc\x9c\x99\x29\x84\x61\x98\x9f\
\xd5\x35\x04\x49\x09\xd7\xcc\xb0\xba\x93\xac\x83\x37\x8e\x79\x8e\
\xbf\x60\xd9\xf1\x9b\xca\xf4\xbb\xc2\xaa\xcd\x21\x83\x4b\x43\x4a\
\x55\xc5\x05\x89\x39\xc6\xde\xd0\x6e\x0a\x8d\xf3\x96\xd7\x5f\x09\
\x68\x9c\x77\x54\x07\x94\xfd\x4f\x1a\x9c\xd3\xce\x79\x79\x59\xcd\
\xb3\xb9\x1c\x6f\x22\x42\xb3\xd9\xb4\x53\x53\x53\x05\xe7\xbd\xd7\
\xfe\x89\xfd\x2b\x05\xed\x93\x7e\x6a\x26\xa1\xb0\x72\x5c\x58\xb6\
\xae\xcd\xda\xeb\x5b\x18\x03\xde\x2b\xea\xc1\x7b\x21\xce\x38\x96\
\x98\x62\x55\x29\x2f\x0a\x19\x59\x3d\x8b\x88\x70\xf6\x44\x91\x0d\
\xd7\x57\x78\xed\xc7\x86\x38\xf6\xd8\x5c\x80\x9b\x17\x04\x72\x01\
\x40\xd2\xf3\xb3\x7b\xd7\x43\xb0\x08\xa2\x7d\x72\xce\x6d\x26\x80\
\x8a\xa0\x3e\xd9\x64\xfb\x1d\xca\xf6\x4f\x35\x09\xca\x21\x51\x1b\
\x10\x93\xaa\x3c\x5d\x94\xdb\x4a\x11\xe2\x08\xb2\x20\x31\x74\x65\
\x8b\xdb\xef\x69\xf3\xf2\xb3\x55\x0e\xfc\x7d\x91\xc6\xb4\xc7\xb9\
\xf9\x07\xf6\x47\x42\x95\x9c\x65\x00\xc6\xa6\xb1\x3d\x75\xbf\x3e\
\xf6\x13\x87\xeb\xd1\x88\x07\x11\xc3\xae\xbb\x95\x9b\x7f\xbb\x81\
\x2d\x84\x84\x6d\x8f\x60\xf1\x1a\xd1\xc7\x7f\xef\xe1\xaa\xa8\x7a\
\x14\x88\x23\x88\xa2\x98\xab\x6f\x9c\xe6\x93\x9f\x6b\xb2\x68\xd8\
\xe2\xe3\xde\x68\xd7\x4b\xbc\x90\xc9\x5d\x44\x30\xe9\x53\xd3\x9b\
\x9b\xf2\xdc\xa7\x71\x39\x6f\x8a\x02\x71\x2c\xfc\xca\xa7\x3c\x5b\
\x77\x5f\x24\x6c\x2b\x61\x18\xb2\xe6\xb2\x3d\xec\x5a\xfd\x38\x23\
\x95\x6d\xc4\xbe\x9d\x4a\x79\xfe\xf0\x1a\x53\xb2\x43\xdc\x3c\xf6\
\x28\xdb\x46\xbf\x84\xe0\x08\x67\x61\xd9\xba\x06\xbb\x3f\xd3\xa2\
\x58\x36\x89\x00\xb2\x08\x98\x31\x92\xdd\xe6\xf9\x49\x92\x47\xca\
\x88\xf4\x39\x4c\xee\x36\x31\x9b\x64\x4a\x14\x0a\xab\xaf\x31\x6c\
\xbb\x63\x86\x30\x04\xd5\x64\x62\xc1\xd4\x29\x05\x4b\x70\xa6\x8c\
\xb2\x30\xf1\xaa\x0a\xaa\x88\x04\x94\xec\x30\x45\x3b\x04\x18\x14\
\x68\xb7\x2d\x63\x9b\x1b\x6c\xfd\xd5\x18\x1f\xf7\xfa\x5a\x97\xf2\
\x5c\x28\xcf\x0d\xd7\x7f\x50\xb6\x3c\x8b\x08\x9a\x7b\xe6\x02\xc3\
\xb6\xdb\xdb\xd8\x20\x26\x0e\x0d\x08\x18\x0a\xbc\xf4\xee\x23\x1c\
\xbb\xf0\x18\x61\xdc\xc0\x9a\xe2\x82\x0c\x88\x08\xc6\x38\x9a\xd1\
\xdb\x3c\xf9\xb3\x3d\xa8\x46\x78\x6d\x23\x62\x10\x15\xe2\x48\xd9\
\x74\x73\x83\x89\x67\x2f\x63\xea\xdd\x18\xd3\x8f\x5a\xa4\x4b\x55\
\x9e\x09\xd3\x79\x97\x5d\xf4\x24\xd1\xee\x64\x1f\xc3\xe5\xcb\x85\
\xd1\x0d\x73\xc4\x71\x9a\x59\xd3\xa4\x23\x02\x91\x6f\x20\x62\x30\
\xb2\x00\xe4\xc8\x33\x21\x96\x58\x9b\x78\x42\x8c\xd8\x54\xca\xa0\
\xb1\x50\x1b\x6a\xb3\x6a\x73\x94\x6a\x41\x3a\x6b\xa4\xe3\xb8\x5d\
\x7a\xb2\x5f\xd3\xdd\x3d\x93\xb4\x66\xa7\xf5\xf8\xb3\x7a\x61\xe9\
\x2a\xa5\x54\x8d\x73\x76\xa9\x88\x51\x8c\x01\x63\x0c\xc6\xe4\x9e\
\x5f\xe2\xdf\x18\x4d\xe7\x0a\x62\x72\xef\x0c\x60\x3c\x57\xae\x0f\
\xb1\xa9\x7d\xcf\x8f\xa6\xd2\xf3\x0b\x39\x13\xca\x59\x1e\x0a\xf8\
\x76\x77\x8b\x0c\xac\x95\x6b\x86\xd6\x74\x40\x14\x2e\xb4\xfd\x42\
\x22\xcf\x5d\x2b\xef\xbb\xc4\x39\x8b\x0b\x04\xe3\x12\xff\x8a\xe3\
\x2e\x5d\xc6\x29\x46\x52\xf1\xe6\xf6\x71\xd0\xab\x72\x55\xb0\xce\
\x70\xcd\x0d\xc2\x15\x6b\x42\x5a\x17\x2d\x2f\x1e\xb2\x9c\x7f\xdb\
\xf3\xda\x4f\x0c\xef\xbe\x39\xd8\x89\x14\xd2\x71\x58\xe9\xfb\xc9\
\xd4\x3c\x9f\xd1\x3c\x6a\xed\x79\xa6\x20\x46\x98\x9d\x51\x54\x63\
\x0a\x45\xc3\x86\x6d\x11\xc3\xa3\x73\x5c\x3c\x5f\xe0\xe5\xe7\x02\
\x66\xa6\x15\x6b\x7b\x4d\xc8\xd9\x3e\x8c\x2f\x18\x3e\xfa\x5b\xca\
\xf5\xb7\x5f\x44\xf1\x88\x08\x9b\x6e\x2a\xf1\xd8\x17\xca\xac\xdd\
\xa2\xdc\x70\xe7\x24\x51\x38\x3f\xcd\x2f\x34\x2e\x3d\x65\xe1\x37\
\xc6\x79\xce\xbc\x52\xe1\x7b\x5f\xad\xf2\xb1\xdf\x6b\xb2\xee\x86\
\x29\xd4\x2b\x62\x85\xab\xb6\xd6\xf8\xde\x83\x03\xcc\x36\x15\x63\
\xf2\x26\x64\xbb\x9b\xaa\x87\xa1\xcb\x85\x6b\x3e\xd2\xa2\x1d\x7a\
\x34\x4e\x6c\x71\xe8\xca\x59\x36\x6c\x2b\x22\xc6\x52\xa8\x44\x98\
\xb0\x3f\x3f\xfe\x7c\x86\x71\x1e\xeb\x94\x25\xcb\x94\x95\xd7\x36\
\x68\xcf\x81\x7a\x8b\xe0\xb9\x62\x5d\x83\x95\x9b\xaa\x4c\x1c\x32\
\x3d\xb0\xc3\x75\xe5\xa1\x28\x86\xa0\x08\xc6\x2a\xa8\x21\x89\x42\
\xa0\x1e\x82\x92\xe2\xb3\xd8\xaf\x72\x89\x68\xff\x3f\x1c\x2a\x78\
\x15\x6c\xa0\x28\x8a\xa8\x74\xcc\x50\xd5\x53\xaa\xa4\xd4\xe6\xa2\
\x51\xd7\xdd\xf3\xb6\xa9\xbd\x36\x9d\xf2\xf7\x0b\x18\xda\x21\x58\
\x7a\x1f\x27\x34\x69\x37\x3b\x67\xa3\x03\xe6\xf2\x8e\x97\xc9\x77\
\x21\x33\x11\x81\xa0\x98\xa0\xd1\xa8\x9d\xcc\xcb\x6a\x09\x57\x90\
\x34\x63\x2b\x3e\x56\x82\xa2\xe9\x38\xad\xaa\x12\x87\x49\xa1\x03\
\x8a\x75\x82\x75\xdd\x13\x7c\x94\xcb\xe1\x0b\xa0\x51\x7a\x02\xc3\
\x3c\x06\xe6\x91\xb9\x20\xe1\x62\x84\xc6\xf9\x36\x13\xff\x3e\x87\
\x2d\x1b\xae\xde\x5a\x21\x08\x12\x25\x6a\x1c\x73\xe4\x60\x93\x46\
\x13\xae\xda\x52\x66\xb0\x6e\x38\xf2\x6f\x17\x69\x4c\x2b\x51\xe4\
\xa9\x0d\x39\x56\x6f\x2c\x51\xaf\x5b\xe2\x18\xce\x9d\x6c\x71\xe2\
\xd5\x10\xef\x05\xef\x95\x25\x2b\x0a\xac\xdf\x54\xe8\x88\x73\x41\
\xaa\x32\xed\xe4\x80\x51\x6f\x1e\xb8\x44\x06\xcd\x46\x50\x14\x5e\
\x7a\x66\x9a\x2f\x7f\xfe\x2c\x00\xbf\xbb\xf7\x4a\x7e\xed\xd3\x75\
\xbc\x37\x1c\xd9\x3f\xc9\x97\xfe\xe8\x34\x61\x04\x77\x7f\x79\x05\
\x1f\xdf\x59\xe4\xa1\x3f\x39\x05\x03\x05\xd6\x8e\x17\x78\xeb\xb5\
\x39\x5a\x91\x70\xf7\x9f\x2d\xe3\xa6\x5d\x35\x9e\xff\xfe\x24\x8f\
\x3e\x74\x81\xb1\xb5\x05\x7c\x04\xd7\xdd\x76\x19\x57\x6f\x29\xbc\
\x6f\x70\xe8\x16\x35\x74\x19\x90\x1c\xce\x78\xcf\xc5\x24\x90\xa2\
\x3c\x60\x59\xbf\xb1\xc0\xd3\x8f\x5f\x60\xd7\x27\xeb\x94\x24\x66\
\xff\x63\x93\x8c\xdf\x38\xc0\xc9\x9f\x36\x89\xa3\xc4\x18\xe2\x48\
\xb9\x7e\xf7\x65\x7c\xf6\xfe\x25\x4c\x9f\x69\xf3\x37\x7f\x78\x92\
\xaf\xde\xff\x16\x1b\xaf\x5b\x03\x1e\x46\x7f\xa9\xca\xde\x6f\xae\
\x20\x90\xa4\x08\x8a\xda\x7e\x5e\xa2\xea\x8e\xac\xee\xea\x15\xb4\
\x49\x78\xc8\xc3\xd7\x0f\xc0\x04\xc2\x47\xee\x1c\xe4\xdc\xcb\x33\
\x1c\xfd\x8f\x39\x4e\xbf\xd2\xe4\xc8\xd1\x90\x5b\x7e\xbd\x8e\x51\
\xed\xa0\x5b\x49\x43\x73\x38\xa7\x54\x86\x03\x76\xdc\x59\xa7\x71\
\x7a\x8e\xd7\x7f\x16\x12\x14\x84\x73\xaf\xb6\xf8\xca\x3d\xa7\xf8\
\xdb\x2f\xbe\xcd\xf1\x63\x6d\x8c\xed\x22\xcf\x4b\x8a\x5f\x32\x88\
\x9d\x9a\x90\xeb\xf6\x88\x3e\xd0\x50\x12\x27\x5d\xb1\xa9\xca\x55\
\x6b\x1c\x4f\x7f\x7b\x92\x2b\x0a\x21\x23\x1b\xaa\x5c\x7d\x4d\x91\
\xb0\xdd\x17\xae\x84\xa4\xf7\x63\x21\x6c\x79\x00\xa2\x48\xb9\xee\
\xf6\xcb\x58\xb4\xa6\x4a\xeb\x42\xc4\x77\x1e\x3c\xcb\x8f\x0e\x36\
\xf9\xcb\xef\x8e\x25\x78\xea\x3d\x05\xd8\x0f\xa7\x9d\xeb\x48\x56\
\x65\x21\x28\x9d\xa3\x24\x7d\xab\xaa\xb8\xaa\xe3\x96\xdf\x18\xe4\
\xc1\x2f\xbe\x83\x11\xb8\x7b\xef\x72\x8a\x05\xc1\x2b\x09\x1e\xd1\
\x2c\xf2\x78\xc2\x39\xcf\x99\x63\x2d\xfe\xe5\x1b\x17\x18\x5a\x55\
\xe2\xca\xe5\x8e\xa2\x85\x0f\xef\x2e\x53\x0c\xe0\xb5\x43\xd3\xec\
\x7b\x72\x96\x66\xcb\xf7\x64\xd9\x1e\x29\xe4\xe2\x78\x1e\xfa\xb8\
\xde\x49\xd9\x4f\x9f\x14\x3b\xcd\x2e\x49\x71\x50\x22\xc5\x2d\x1f\
\x5d\xc4\xe0\x57\xde\x21\x1c\x28\xb0\xed\xa6\x2a\xd1\xc5\xb9\x04\
\x55\xa6\xa3\x58\x36\x3c\xf7\x8f\xe7\xf9\xcf\x43\x53\x4c\x9e\x8d\
\xa8\x5d\x5e\xe0\xb3\x5f\xb8\x82\xc5\x83\x86\x87\xfe\xf8\x14\xaf\
\x9f\x56\x8c\x8f\x39\xf1\x52\x9b\x8f\xdd\xbd\x84\xcb\x97\x58\x4e\
\x9f\xd5\x5c\x33\xae\x23\xb3\xf9\x2c\x65\x26\x94\xbf\x11\x92\x92\
\x31\x5b\xd5\xd1\x82\x4d\x32\x70\x38\xe7\xd9\x7c\xcb\x22\x1e\xf8\
\x7a\x95\xc5\x83\x86\x72\xb1\xc0\x9f\x3e\xb2\x82\x38\xb0\xd4\xab\
\x42\xe4\x02\xee\xfd\xda\x18\x8b\x57\x14\xa1\x68\xb8\xe7\xaf\xc6\
\x98\x99\x51\x7c\xe4\xa9\x0d\x07\x8c\xad\x2d\x51\xae\x08\xed\x50\
\xf9\xc4\x1f\x8c\x70\xf4\x87\x33\xcc\xb6\xe1\xd3\x9f\xaf\x30\xbe\
\xa5\x82\xa8\x07\x05\xaf\x19\x50\xec\xda\x82\x18\x25\x8e\xba\xf5\
\xc1\x7c\x0d\x48\x52\x66\x5e\x38\xab\x9c\x7c\xb1\xc4\xfa\x1b\x1a\
\xc4\xa1\x62\xac\xd2\x9a\x2e\x70\xfc\x85\x80\xd5\x9b\x3d\xf5\xcb\
\x8b\x6c\x19\x11\xc2\xb6\xe2\x15\x56\x6d\xae\x82\x26\x7e\x61\x03\
\xcb\xc6\x0f\xd7\x88\x23\x25\xf6\xb0\xee\xba\x6a\xda\x51\xd3\xb4\
\x53\x97\xcc\x03\x58\xb6\xb6\xcc\xd8\x78\x05\x48\x9e\x87\x6d\x0f\
\x26\x81\x31\x93\x67\x2c\xef\x9c\xac\xb1\x6c\xfd\x34\x71\xe4\x31\
\x56\x99\x3e\x57\xe1\x8d\x57\x1d\xc6\xf5\x1a\x76\xea\x00\x5d\xf3\
\x89\x23\x65\xff\x23\x05\xce\xbf\x59\x67\x64\xd5\x2c\x73\x33\x8e\
\x17\x9e\x2e\xf1\xe6\x31\x65\xdd\x56\x83\xf7\x10\xb7\xe9\x14\x3c\
\x71\x1a\x03\x24\xb5\xdd\xac\x56\x30\x02\x71\x08\x71\x7f\x3b\x2c\
\x57\xe1\xb5\xd3\xc6\x51\x46\x52\x56\xd8\xb4\x5b\xca\x93\x8f\xd4\
\xb9\x76\x67\x91\xfa\xd2\x16\x33\x93\x45\x8e\x3e\x53\x61\xea\x1c\
\x69\xf6\xee\xa2\xe1\x1c\x98\x4b\x86\xb1\xd0\x6c\x78\x0e\x3c\x6e\
\x30\xb6\x92\xf4\x34\x8d\xa6\x0b\xf3\x6a\xfd\xf9\x8d\xde\xdd\x92\
\x0a\xef\xe2\x79\xf8\xc1\xb7\x2a\x88\xad\x24\xad\x1c\x03\xd6\x76\
\x21\x4e\xb7\xb1\x65\xbb\x92\xe9\xe0\x21\x23\xb8\x0c\xb2\xa6\x65\
\x62\xec\xa1\x79\x91\x44\xb2\x68\x17\xf0\x2d\x4c\xc5\xfb\xf3\x99\
\x57\x4c\xe6\xb4\x46\x69\xb7\x1c\xea\x05\x63\x93\x52\x33\xa1\x07\
\x7a\xfa\x2a\xb9\x40\x61\xfa\x0b\x9a\x7e\x5a\xb2\x4d\x8c\x53\x8e\
\xfd\xd8\xf0\xf6\xf1\x32\x85\x92\xe2\x0a\x31\xae\xe0\x31\xd6\xa7\
\x2d\x93\x94\x2e\x4d\xc2\xac\x71\x1e\x17\x24\xff\xd6\x79\xc0\xf7\
\xf5\x8b\x3c\x62\x3c\xb6\x90\xcc\x09\x8a\x9e\x76\xa3\xc4\x91\x03\
\x15\x7c\xae\xd1\xdc\x03\x71\x3a\x05\x7e\x37\x1b\xe4\xa0\x44\x67\
\x4e\x97\x89\x7c\xca\x36\xc2\xc5\x49\xcf\x3f\xff\x75\x8d\x4d\x37\
\x95\x18\x1e\x0d\xd1\x58\x58\x34\x12\xb1\x78\xac\x45\xf7\x73\x88\
\x22\x08\x67\x5e\xa9\x31\x33\x9d\xa0\x51\xeb\x84\x65\xeb\x1b\x98\
\x20\x42\x35\x6d\x3f\x1a\x68\x4e\x16\x78\xfb\x44\x05\x31\x9e\xb9\
\x86\xe3\x95\xe7\xca\x9c\x3e\x6e\xb0\xb9\xe0\xae\x99\xb9\x4b\xbf\
\x42\x73\x61\x54\x95\x9c\x74\x52\x5b\xcf\xe5\x8e\xa4\x99\xab\x88\
\x85\xe9\xf3\x9e\x83\xdf\xb1\x18\xb1\x44\xa1\xf0\xa1\x5d\x6d\x76\
\x7d\xa6\x49\x38\xe7\xc9\x0a\x20\x23\xc2\x0f\xbf\x3f\xc0\xb1\x9f\
\x7a\xac\x15\x6a\x75\xcb\x9e\x07\x66\xa9\x0c\x85\x78\x9f\x6c\x6a\
\xad\x72\xf6\x64\x81\x7f\xfd\x5a\x0d\x63\xd2\xe6\xb1\x28\xd6\x65\
\x8e\x9d\x86\xd2\xd4\x5a\x45\x13\x82\x54\x04\x4d\xff\x00\x9c\x31\
\x46\xea\xf5\x3a\xc5\x62\x71\x5e\xcf\x25\x7f\x2d\xa9\x08\xf2\xef\
\xe2\x48\x18\xa8\xb5\xb1\xde\x26\x59\x43\x41\x54\x11\x63\xa9\x2f\
\xaa\xb3\x78\x49\xe2\x90\xd5\x01\x4b\x60\x3c\x4e\x67\x89\xd5\x20\
\x80\xf5\x4a\xb1\x50\x65\x68\xf1\x40\xd6\x25\x9c\x7f\xae\x74\x9d\
\x35\xdf\x20\x30\xc6\x30\x5b\x9c\x4d\x18\x28\x14\x0a\xd9\x67\x9b\
\xee\x06\xb9\x85\xf9\xb6\x7a\xbf\x69\xc5\x91\x50\x29\x87\x38\x5c\
\xae\xa0\x53\x8c\x58\xaa\xd5\x45\x2c\xaa\x27\xd0\xa0\x52\xb3\x04\
\x46\x71\xcc\x25\x5f\x63\x00\x8b\x52\x72\x15\xea\xf5\x5a\x4f\xdf\
\xbf\xff\xcc\x7e\x53\xce\x18\x70\x29\x04\x72\x58\x70\xe2\x92\xea\
\xbf\xa7\x4f\xb7\xf0\xc7\xba\x7c\xd6\x36\x92\x7c\xa0\xb0\xc6\x82\
\xcd\xaa\x53\x45\x24\x39\x20\x70\x49\x07\xc1\x39\x8b\xb3\x0e\x67\
\x63\x7c\xaa\x01\x63\x35\x79\xe6\x5c\xae\x50\xe9\x52\xdd\xd1\x7b\
\x5f\xb7\x3c\x59\x6b\x08\xc3\x90\x72\xb9\x8c\x33\x6a\xc4\x06\x16\
\xd5\x24\x44\xb2\x80\xf9\x5c\x92\x09\x11\xac\xf3\x38\x1b\x80\xcf\
\x24\xd7\x65\xc0\x05\x49\x76\x0f\x9c\xc5\x5a\x87\x35\x31\xa2\x06\
\x50\xac\x55\xac\x73\x38\x17\x24\x9f\xe1\xf2\x7b\x67\x6e\x28\x0b\
\x0b\xd3\x1a\x4b\x10\x04\xa9\x06\x20\x14\xc4\x3b\x67\xcd\x42\xb6\
\xdf\xe5\xbd\xcb\x5c\xa7\x23\x20\x02\xa1\xc1\xda\x39\x34\xee\x7c\
\x0b\x45\x8c\x01\x6f\x71\x4e\x52\xfb\x36\x08\x16\xeb\x2c\x12\x25\
\x1d\x69\xe7\x3c\x44\x25\xac\xb5\x89\xf2\xde\xc3\xff\xfa\x69\x30\
\xc6\x50\x28\x14\x54\x44\xd4\x01\xe7\xca\xe5\x72\x73\x76\x76\xb6\
\xb6\xa0\x0f\xe4\x56\xf7\x3b\x94\x31\x70\xee\x94\xe3\xfc\xeb\x55\
\x96\xac\x6c\x12\xfb\xc4\x3e\xdf\x7a\x79\x80\x0b\x67\x1d\x41\x90\
\xcc\x8d\xda\xc2\xa9\x23\x8b\xd8\x78\xf3\x14\x36\x88\x11\x81\xb9\
\x46\x99\x53\x47\x2b\x38\x2b\x69\x21\xd3\x0d\x14\xd9\x21\xf3\xf5\
\x2f\x69\xef\x55\x18\x1e\x1e\x8e\x56\xae\x5c\xd9\x76\xa3\xa3\xa3\
\xed\x55\xab\x56\xc5\xcf\x3f\xff\x3c\x51\x14\x61\x6d\xd6\x0f\x5a\
\x60\x79\xce\xfe\xb3\x03\xc2\x39\x38\xfc\x4f\x35\x56\x6c\x2c\x31\
\x30\xe4\x99\x3a\x67\x38\x35\x11\xa0\xbe\xdb\x06\x34\x46\x78\xed\
\x47\x05\x66\x26\x87\x19\x59\x19\x11\x86\xc2\x9b\x2f\x07\x5c\x38\
\x97\x7c\x28\xec\x44\xb8\x9c\x96\xe7\x31\x90\x9a\x55\x1c\xc7\xd4\
\x6a\x35\x36\x6e\xdc\x18\x1d\x38\x70\x20\x72\x87\x0f\x1f\x3e\xbd\
\x73\xe7\xce\x0b\xf5\x7a\xbd\x7e\xf8\xd9\xc3\x34\x66\x2e\x12\xc7\
\x9e\xfe\xcf\xae\x9d\x0d\x7b\x34\x91\xfc\x86\x53\x70\xe4\x20\x20\
\x06\xc1\x63\xdc\x5c\x8f\x63\x8a\x24\x70\xfc\xc4\x04\x9c\x98\x30\
\xa0\x8a\xb1\x21\xc6\x92\x34\x70\xfb\x04\x33\xcf\x7c\xd2\xbe\xa9\
\x73\x8e\xc1\xc1\x41\xb6\x6f\xdf\x4e\x18\x86\x6f\x3c\xf3\xcc\x33\
\x2d\xf7\xd4\x53\x4f\x9d\xde\xb3\x67\xcf\x77\x77\xec\xd8\xf1\xb9\
\xe5\xcb\x97\x73\xe6\xcc\x19\x9a\xcd\xe6\x7c\x06\x3e\xe8\x10\x92\
\x4f\xb2\x02\xe8\xc2\x91\xec\x92\xeb\xde\x03\x3c\x89\x08\x03\x03\
\x03\x2c\x5d\xba\x14\x6b\x2d\x4f\x3c\xf1\xc4\x37\x81\x39\x07\xe8\
\xc3\x0f\x3f\xfc\x17\xa5\x52\xe9\xda\xad\x5b\xb7\xee\x18\x19\x19\
\xf9\xef\x11\xfe\xbf\x3c\x32\xa4\x30\x39\x39\xc9\xa1\x43\x87\x1e\
\xbd\xf7\xde\x7b\xff\x0e\x72\xf0\x62\x60\x60\x60\xf8\xbe\xfb\xee\
\xfb\xfd\x35\x6b\xd6\xdc\x56\x28\x14\x96\xfd\x7f\x63\xc2\x7b\xef\
\x5b\xad\xd6\xf1\x89\x89\x89\x6f\xef\xdd\xbb\xf7\x1b\xc0\x1c\x2c\
\x0c\x78\x4b\x40\xf9\x17\x4a\xdd\x07\x1b\x0a\xcc\x00\x61\xfe\xe1\
\x7f\x01\xed\x6f\x4b\x22\xe5\x2c\xb4\x6d\x00\x00\x00\x00\x49\x45\
\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\xa5\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\x47\x49\x44\x41\x54\x78\xda\x94\
\x53\x4d\x6b\x13\x51\x14\x3d\x99\x99\x40\xb2\x10\xad\x82\x04\xa5\
\xa9\x18\xc1\x82\x62\xdb\x68\x15\x49\x35\x54\x4a\xec\x1f\xc8\x0f\
\x48\xdc\x28\x82\xee\x84\x88\xa0\x85\x16\x44\xd1\xf8\xb5\x72\x53\
\x5c\xe8\xc2\x4d\xa9\xa9\x45\x74\x63\x68\x5a\x5c\x58\x23\xda\x06\
\xa3\x91\x5a\x6b\x4c\x30\x1a\x63\x4d\x33\xc9\x64\x66\x9e\xef\xbe\
\x98\x90\x68\xb1\x78\x1f\x07\x66\xde\xdc\x73\xee\xb9\xf7\xbd\xb1\
\x04\xe5\x30\x00\x0b\x28\x7e\x9e\xfb\x8e\x35\xc3\x30\x30\x38\x36\
\x76\xb0\x3f\x91\x38\x93\x05\xae\x2b\xbf\xb7\x8f\x73\xb8\x38\xde\
\xad\x29\x50\xa9\x6c\x9e\x2b\xed\x1a\x0c\x9e\xf7\x7b\x5e\x0f\x0d\
\x6d\x44\x80\x3b\xe0\xb8\x92\xbc\xb7\xcc\x28\xcc\x7f\x20\x9f\x8d\
\xb2\x48\x24\xc2\x54\x55\x65\xfe\xb6\x43\xb3\xa3\x80\x4f\x61\x30\
\x49\x57\xd2\x34\x0d\x3a\x63\xdc\xa1\xb1\x6a\xe1\x1f\x5f\x62\x48\
\xbd\xbc\x8c\x81\xbd\x5d\x18\x39\x99\x40\x45\x75\x27\x16\x24\xfb\
\x63\x89\x41\x2c\xc9\x34\x4d\x68\x9c\x5c\xae\x56\xff\x42\xee\xf3\
\x53\x24\x5f\x5c\x82\xbb\xa7\x0b\x93\x8f\x9e\xe1\x48\x77\x27\xda\
\xaa\xed\xf9\x45\x8b\x0f\x75\x07\xb2\xae\xeb\x0d\x81\xe6\x58\xf9\
\x36\x83\x4f\x73\xd7\x70\x60\x9f\x1b\x91\x87\xd3\xd8\xdd\x77\x16\
\xea\xd4\x1e\x5e\x34\x29\x0b\xeb\x26\x33\xc0\x21\x93\x75\x8d\xbb\
\x68\xae\x5c\xc8\x25\xf1\xf1\x55\x58\x90\xc7\x27\x62\xe8\xe8\x39\
\x8d\x4d\x1d\x87\x45\x9b\xc4\x21\xae\x64\x42\x2c\x21\xb0\x92\xd1\
\x60\xb5\xd9\x1a\x58\x9a\x1f\x47\xff\xc0\x4d\x3c\x98\x9c\xc1\x4e\
\x4f\x08\x5b\x3b\x8f\x8a\x1c\x21\xc0\x39\xc4\x6c\x69\x21\x75\x7f\
\xa9\xc5\xbe\x2f\x34\x82\xe1\xc0\x73\xec\xd8\x12\x44\x2e\xd7\x8e\
\x1c\x16\xc4\xbe\xdd\x6e\xe7\x2d\x98\xa2\x05\xc5\x84\x98\xba\x70\
\x10\x8f\xc7\xc1\x4f\xab\x21\x70\xd1\x7f\x07\x28\x02\x1f\xde\x02\
\x8b\x96\x78\x63\xdf\xeb\xf5\xf2\xb2\x46\x5d\x40\x38\x50\xc8\x81\
\x2c\xcb\xf0\x9c\x72\xa1\xfa\xc7\x20\xad\x56\x2b\xa6\x6f\xbc\x87\
\xd3\xe9\x44\x3a\x9d\x06\xe5\x72\x9e\xd2\xec\x40\x21\x07\x8a\xa2\
\xa0\x58\x2c\x23\x7a\x75\x5e\x10\xf7\x9f\xd8\xde\xb0\x4c\xdf\x28\
\x6c\x7c\x36\xb5\x19\x18\x35\x01\x03\xba\x28\x22\x49\x92\x48\x2a\
\x95\x34\x38\x1c\x0e\x91\x4c\xcf\x14\x8c\xc9\x2d\x02\x74\x67\x38\
\xcf\x2a\x8e\x71\x8a\xdd\x45\x96\xa5\x6e\x85\x43\xb7\x9f\x7c\xcd\
\xe4\x0b\x9a\xc6\x44\x32\x81\xb1\x1a\xea\x7b\xcd\x02\x1a\x53\xd7\
\x11\x97\x7e\x43\x27\xc7\x06\x17\x7a\x7b\xb7\xa1\xfb\x58\x54\x19\
\x8d\xad\x76\x95\xbd\x7a\xa0\xaf\xf9\xbd\x80\xcc\x9b\x59\x4c\x5c\
\x20\x81\xf5\x24\x4c\x27\x81\xff\x0b\x1a\x5e\xf9\x97\x00\x03\x00\
\xb5\x9b\x5a\xaf\xde\x23\xfa\x83\x00\x00\x00\x00\x49\x45\x4e\x44\
\xae\x42\x60\x82\
\x00\x00\x04\xf4\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
\x00\x00\x04\xbb\x49\x44\x41\x54\x78\x9c\xed\x99\x4d\x8c\x13\x65\
\x18\xc7\xff\xcf\xfb\xbe\x9d\x6d\x6b\x76\x03\x82\x46\x85\x10\xa2\
\x6e\x4c\xd0\x0b\x1f\x17\xc5\xb8\x09\xc9\x92\xb5\x9d\x6e\x77\x0f\
\xa3\x88\x46\x3c\x61\xe2\x01\x2e\x26\x8a\x5e\x4d\x14\x43\xbc\x18\
\x0f\xec\xc5\xc4\x4f\xb0\x97\xb6\x3b\xd6\x12\x12\x92\xf5\x93\x44\
\x04\x0e\x7a\x50\x84\x83\x68\x34\x20\x01\x6c\x60\x67\x3b\xf3\xbe\
\x8f\x07\xa7\x65\x5a\xbb\x85\xae\xda\x56\xd2\xdf\x65\x3a\x7d\xde\
\xc9\xfc\xff\x33\xf3\x3e\xef\xc7\x03\x0c\x18\xf0\x8f\xa0\x76\xc1\
\xa9\xa9\xa9\x7b\xb4\xd6\x53\x00\x1e\x64\xe6\xdb\x88\xa8\xa1\xbd\
\x10\xc2\x68\xad\x0f\xb8\xae\xbb\x1f\x00\x77\x7a\x73\xdb\xb6\x9f\
\x95\x52\x3e\x61\x8c\x11\x4d\x21\x03\xe0\x3c\x80\xa3\x52\xca\x7c\
\x3e\x9f\x3f\xdd\x91\x01\xc7\x71\x2c\xcf\xf3\x5e\x02\xb0\x5b\x29\
\xb5\x0c\x00\x9a\xb4\xd7\x0c\xc0\xf3\xbc\xb3\x41\x10\x8c\x96\xcb\
\xe5\x85\x4e\xc4\x87\xf7\x38\x35\x34\x34\xb4\xc6\x18\xf3\xb7\x38\
\xf3\x5f\xcf\x23\x08\x82\x4b\xcc\xfc\x66\x22\x91\x78\x25\x97\xcb\
\x55\xaf\x6b\x60\x62\x62\x62\x48\x29\xf5\x4e\x2c\x16\x7b\x8c\x99\
\x61\x8c\x81\x31\xe6\x7b\x00\xbf\x00\xd0\xd1\x6b\x85\x10\xda\x18\
\x73\xd0\x75\xdd\xb7\x3b\x11\x5f\x23\x93\xc9\x3c\x43\x44\xdb\x8c\
\x31\x12\x8d\x6f\x50\x02\x58\x45\x44\xf7\x49\x29\x41\x44\xf0\x7d\
\x3f\x57\xa9\x54\x9e\x9e\x9b\x9b\xf3\xda\x1a\xc8\x64\x32\xaf\x2a\
\xa5\x5e\x64\x66\x68\xad\x4f\x08\x21\xf6\x58\x96\xf5\x69\x2e\x97\
\x9b\x5f\x8a\xc8\xa5\xb2\x63\xc7\x8e\xf8\x85\x0b\x17\x1e\x21\xa2\
\xd7\xa4\x94\xeb\x43\x13\xaf\xbb\xae\xfb\x42\xb4\x5d\x83\x81\x4c\
\x26\x73\x3f\x80\x63\x52\xca\xb8\xd6\xfa\x98\xef\xfb\xa9\x72\xb9\
\x7c\xbe\x9b\xc2\x9b\xb1\x6d\x7b\x25\x11\x7d\x22\xa5\xdc\xa4\xb5\
\xf6\x00\x6c\x9a\x9d\x9d\xfd\xae\x16\x6f\xe8\x3c\xcc\xbc\x5d\x29\
\x15\xd7\x5a\x57\xb5\xd6\xbb\x7b\x2d\x1e\x00\x5c\xd7\xfd\x9d\x99\
\x77\x69\xad\xab\x4a\xa9\x38\x80\xa7\xa2\xf1\x06\x03\x44\xb4\x39\
\xfc\x79\xb2\x54\x2a\x7d\xd5\x2d\x91\xd7\xc3\x75\xdd\xa3\x00\x4e\
\x84\xa7\x9b\xa3\xb1\xba\x81\x9d\x3b\x77\xc6\x00\xdc\x1e\x66\x9b\
\x1f\xb1\x84\xb4\xf8\x1f\xc2\x00\x4e\x87\xda\x56\x86\x5a\x01\x44\
\x0c\x5c\xbc\x78\x91\x70\xad\x4f\x04\x5d\x95\x77\x63\xd4\x32\x20\
\x85\x5a\x01\x34\x7d\x42\x11\xda\x0e\x70\xfd\xc4\x62\x06\xfe\x37\
\xdc\x74\x06\x64\xd3\xb1\x9f\x68\xa9\xad\x6e\x60\xdd\xba\x75\x01\
\x80\x9f\x84\x10\x00\x70\xa6\x7b\xba\x6e\x0c\x66\x3e\x2d\x84\x00\
\x33\x9f\x0d\xb5\x02\x68\xea\xac\xe9\x74\x7a\x95\x52\x6a\xc3\xd5\
\xab\x57\x8f\x1c\x3e\x7c\xf8\x4a\xf7\x65\x2e\xce\xf8\xf8\xf8\x2d\
\xc9\x64\x72\xcb\xc2\xc2\xc2\x89\x72\xb9\xfc\x73\xaf\xf5\x0c\x18\
\xd0\x2f\x34\x74\x62\xc7\x71\x12\x9e\xe7\x8d\x8a\x30\x15\xf5\x1b\
\x42\x08\xd6\x5a\x9f\x29\x16\x8b\x95\xda\x7f\x75\x03\x8e\xe3\xc8\
\xf9\xf9\xf9\x8f\x84\x10\x59\x63\x4c\x5f\x4e\x25\x84\x10\x6c\x8c\
\xf9\xac\x52\xa9\x3c\x5a\x5b\x99\xa9\x5a\xf0\xdc\xb9\x73\x34\x3c\
\x3c\xbc\x4a\x29\x25\x5b\xad\x51\xfb\x01\x21\x04\xaa\xd5\xea\x6a\
\xcb\xb2\xea\x83\x59\xc3\x93\xb6\x6d\x7b\x8d\x94\xf2\x61\xad\xb5\
\x24\xa2\x7e\x9a\x4e\x83\x99\x49\x08\x61\x84\x10\x5f\xe7\xf3\xf9\
\x1f\x7a\xad\x67\xc0\x80\x01\xff\x12\x0d\x59\x68\x72\x72\x72\x3d\
\x11\x6d\xf1\x7d\xff\xfd\x52\xa9\xf4\x5b\xaf\x44\xb5\x22\x95\x4a\
\xdd\x11\x8b\xc5\x9e\x64\xe6\x23\xc5\x62\xb1\xb6\x43\x71\x6d\x3d\
\xe0\x38\x8e\x34\xc6\xcc\x58\x96\xb5\x4f\x4a\xb9\xa7\x37\x32\x17\
\x47\x08\xf1\xb2\x65\x59\xfb\x98\x79\xbf\xe3\x38\xf5\x71\x20\x3a\
\x65\x90\x44\x34\xa2\xb5\x06\x80\x15\x5d\x57\x78\x1d\x88\x68\x65\
\xa8\x6d\x78\xf9\xf2\xe5\x75\xdd\xad\xb6\xb5\xa3\xc7\x7e\xc2\x00\
\x00\x33\x37\x68\xeb\xcb\x49\x5b\x27\xdc\x9c\x06\x98\xb9\x2f\x67\
\xa3\xad\xa8\x1b\xc8\xe5\x72\x3e\x80\xcb\x61\x65\x64\x75\xcf\x14\
\x2d\xce\x5d\xa1\xb6\x3f\x66\x66\x66\xea\xbb\x12\xd1\x37\xc0\xcc\
\x7c\x1c\x00\x88\x68\x63\x3a\x9d\x1e\xed\xb2\xc0\x45\x09\xb5\x6c\
\x04\x00\x22\xfa\x06\x91\x8d\xe7\x86\x4f\x48\x4a\xf9\xa1\xd6\x9a\
\xa5\x94\xc3\x44\xb4\x37\x9a\x6f\x7b\xc5\xd8\xd8\x98\x12\x42\xec\
\x95\x52\x0e\x07\x41\x60\x98\xf9\x40\x34\xde\x60\xa0\x50\x28\x7c\
\x6e\x8c\xc9\x11\x11\xa4\x94\xd3\x9e\xe7\xbd\x97\xcd\x66\xd7\x76\
\x55\x71\x84\x6c\x36\xbb\x76\x64\x64\xe4\x5d\x21\xc4\x34\x11\xc1\
\x18\x93\x73\x5d\xf7\x8b\x68\x1b\xd5\x74\x0d\x13\xd1\xae\x20\x08\
\xee\x55\x4a\x6d\x20\xa2\x6d\x5a\xeb\x71\xdb\xb6\xe7\x88\xe8\x0c\
\x9a\xb6\xdd\x89\xc8\x10\xd1\xc7\x85\x42\xe1\xcb\xa5\x08\x4c\xa5\
\x52\x0f\x29\xa5\xd2\xcc\xdc\x9c\x4c\x14\x33\xdf\x6d\x8c\x19\x93\
\x52\xae\x20\x22\x04\x41\x70\x5c\x08\xb1\x1b\x4d\x75\x8b\x96\xd9\
\x66\x7a\x7a\xfa\xce\x20\x08\xde\x12\x42\x4c\xb7\x5b\xdf\x87\x4b\
\xbc\x53\xf1\x78\xfc\x81\x56\x25\xd0\x76\x84\x65\xd6\x6f\x2d\xcb\
\x1a\x6d\xb7\x84\x0d\xab\xa4\xf9\x6a\xb5\xfa\xdc\xa1\x43\x87\x7e\
\x6d\x8e\xb7\x4d\x97\x93\x93\x93\x69\x00\xdb\x99\x79\x3d\x80\x65\
\xcd\xed\x85\x10\xc6\x18\x73\x70\x76\x76\xf6\x79\x74\x3e\x7a\x0b\
\xdb\xb6\xdf\x90\x52\x3e\xae\xb5\x6e\x2e\x75\x19\x00\x97\xc3\x0e\
\xfb\x41\xb1\x58\x2c\x61\x91\x8a\xd1\x0d\xe5\xfb\x89\x89\x89\x21\
\x29\x65\xd2\xf7\x7d\x8a\xc5\x62\x0c\x00\xbe\xef\x53\x22\x91\x30\
\x85\x42\xe1\x52\x87\xc2\x1b\xd8\xba\x75\xeb\xad\xc9\x64\xb2\x41\
\x47\x2c\x16\xe3\x4a\xa5\x72\xa5\xd3\xe2\xf9\x80\x5e\xf0\x27\x4b\
\x6a\xe8\x33\xb5\xd6\xe2\xed\x00\x00\x00\x00\x49\x45\x4e\x44\xae\
\x42\x60\x82\
\x00\x00\x01\xe9\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x01\x8b\x49\x44\x41\x54\x78\xda\xa4\
\x52\x31\x4b\x42\x51\x14\xfe\xee\xeb\x29\x4a\x25\x81\x60\x50\x44\
\xd0\x18\x0e\x81\x85\x0e\x42\x3a\x44\x10\x36\xd5\xd6\xd2\x10\x34\
\x99\x35\xb6\x48\x73\x50\x41\xd0\xe0\xd6\x26\x2d\x4d\x8e\x52\x7f\
\x20\xc1\xb9\xa5\x20\x2a\x08\xd3\x04\xdf\x7b\xea\x7b\xbe\xdb\x39\
\x2f\x14\x11\x33\xc9\x0f\x0e\xf7\x9e\x73\xcf\xf7\xdd\x7b\xce\x3d\
\x22\x9d\x4e\x83\x21\x84\x70\xac\x1f\x4e\xe6\x2e\x81\x71\x85\x93\
\x32\xe4\x86\xc8\x0a\x90\x72\x1f\x9a\x0d\x05\xc3\xa2\x21\x01\x53\
\x86\xf6\xd6\x76\x43\xbc\x3a\x3e\x41\x1d\x8a\x2c\x91\x81\x45\x24\
\x4b\xa2\xda\xaa\x92\x98\xcd\xd1\x07\x8a\x17\xba\x05\x16\xa4\x94\
\x61\x5a\x27\x7b\xf9\x13\x86\x67\x7d\x65\x3b\x32\xcf\xfb\x92\x55\
\x42\x7c\x23\xc6\x65\xe0\xfe\xf6\x0e\xaa\x65\x59\xed\xbc\x48\x2a\
\x95\x3a\x0e\x04\x02\xc1\x5e\x81\xf7\x7c\x05\x85\x7c\xf1\xa7\x92\
\x55\x89\xa7\x9b\xc7\x67\x4d\x18\x9f\x10\xf4\x82\x7a\xbd\xde\xce\
\xf3\xf9\xfd\xfe\x60\x97\x60\x07\x57\xb1\x33\x67\x0d\x5f\xc7\x51\
\x6e\x55\x00\x5d\x2a\x63\x6e\xb1\xdc\x72\x49\x74\x0b\x28\x4c\xb6\
\x6d\xfb\xd7\x56\x2c\x79\x16\x51\xcc\x16\xe1\xf9\x30\x5f\xa6\x45\
\x00\xa6\x8f\x04\xca\xe5\x32\xbc\x5e\xaf\xf3\x93\x2c\xd0\xef\x05\
\x6d\x9c\x6f\x9e\x42\x55\x55\x24\x93\xc9\x2c\xfb\x46\xc9\x80\x5a\
\xab\xd5\xd0\x68\x34\xe0\x72\xb9\x84\x69\x9a\x60\x1b\xf8\x21\x52\
\x42\xd3\xb4\x4e\xae\x4a\x81\x2d\xda\xcc\xb2\xc3\xb7\x37\x9b\xcd\
\x81\x02\x3c\x6c\xba\xae\xf3\xfc\x1c\x10\xf7\x55\x44\xa3\xd1\xc3\
\x5c\x2e\x77\xc1\x87\x7f\x95\xe0\x0c\x0e\x95\xc0\xc6\x48\x24\x12\
\x47\x82\x3a\xbf\x43\x81\x19\xfc\x03\x74\xd9\x1b\x0f\xbf\x9b\x6c\
\x6a\xe8\xa9\xec\xe2\x93\x7d\x09\x6e\xca\x28\x50\x30\x22\x46\x16\
\xf8\x16\x60\x00\x3c\xf5\xb0\x8e\x61\x9a\x97\x72\x00\x00\x00\x00\
\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x03\xdf\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
\x00\x00\x03\xa6\x49\x44\x41\x54\x78\x9c\xed\xda\xcd\x6f\x94\x55\
\x14\xc7\xf1\x4f\x6d\x2d\x82\x09\x58\x13\x17\xac\xba\x71\x69\xa1\
\x89\x06\x61\x10\x63\xdd\xa8\x6b\x17\xba\xd7\xba\xf0\x7f\xd0\x0c\
\x7f\x81\xba\xf0\x05\x14\x23\xae\x35\xbe\xa0\x61\x65\x74\xe1\x82\
\xa8\xc1\xd0\x12\x5d\x58\x17\xa0\x21\xa0\x28\x1a\x63\xb5\xd8\x52\
\x17\xf7\x3e\xcc\x9d\x87\xa7\xd3\xe7\x6d\x3a\x21\xe1\x9b\x4c\x72\
\xa7\xcf\x9c\x73\x7e\x67\xe6\x3e\x33\xe7\x9c\x5b\x6e\x31\x5a\xc6\
\x86\xe4\x77\x1c\x77\x62\x32\x3e\xbf\x8a\x65\xac\xb6\x1d\xa8\xad\
\x04\xee\xc6\x3e\x1c\xc4\x5e\x4c\x63\x0a\x77\xc4\xeb\xff\xe2\x0a\
\xce\xe3\x0c\xbe\xc4\xd7\xf8\xad\xa5\xf8\xb5\x79\x08\x6f\xe1\x27\
\xac\x57\x7c\xfc\x8c\x63\x38\xb4\xe5\xaa\xd1\xc1\x27\x58\xdb\x40\
\xdc\x35\xfc\x85\xcb\xf8\x35\xae\xaf\x6d\xf0\xda\x35\x7c\x2a\x7c\
\x7a\x95\xa9\xba\x85\x76\xa1\x8b\xe7\xf5\xf6\xb7\x28\xe4\x2c\x3e\
\xc7\x29\x2c\xe1\x17\xfc\x13\xaf\x6f\xc7\x3d\xb8\x17\xfb\x31\x87\
\x99\x5c\xfc\xab\x78\x3d\xfa\xff\xa3\xa2\xae\x52\xec\x11\xf6\x6d\
\xfa\xee\xfd\x8d\xe3\x78\x18\xdb\x2a\xf8\x9a\x14\xb6\xce\x3b\xd1\
\x47\xea\xf3\x9b\x18\xab\x55\xe6\x70\x31\x17\xe8\x43\xcc\x6e\x62\
\xb7\x3d\x3e\x06\x31\x8b\x0f\x72\xbe\x2f\xe2\xd1\xba\x62\xf3\xcc\
\xe1\xf7\xc4\xf9\x9f\x98\x2f\x61\x37\x23\x6c\xab\xb3\x71\xbd\x19\
\xf3\xc2\xd6\xc9\xe2\x5c\x89\xb1\x1b\x71\x9f\xfe\x77\xfe\xbc\xf2\
\x37\xdb\x0b\x89\xdd\x8b\x25\x6d\x3a\x38\x97\xd8\x5d\x52\x2e\xf9\
\x42\x76\xe1\xb4\x7e\xf1\x55\xf6\xe6\xe1\xc4\xf6\x70\x05\xbb\x19\
\xfd\x49\x9c\x8e\x5a\x2a\xf3\x92\xfe\x6d\xd3\xa9\x68\xdf\x4d\xec\
\xbb\x15\x6d\x0f\xc4\x98\x99\xfd\x2b\x15\xed\xed\xc7\x4a\xe2\xa0\
\xcc\x9e\xcf\xd3\x55\x3f\x01\x78\x36\xb1\x5f\x89\x9a\x4a\x31\x86\
\x93\x89\xf1\xc7\xea\x95\x1c\x5d\xcd\x12\x18\xc3\x47\x89\x8f\x93\
\x65\x75\x74\x84\xa2\x2b\xfb\x9e\xaf\x7b\x13\x75\x35\x4b\x40\x8c\
\x9d\xfd\x4e\xac\x2a\xd8\xc6\xb7\x15\x18\x3d\x23\x54\x93\xf0\x3e\
\x16\x6b\x06\x6f\x83\x45\xbc\x17\xd7\xe3\xc2\xb6\xea\x23\x9f\xc0\
\x14\x9e\x88\xeb\x35\x1c\x19\x9a\xb4\xf2\x1c\x15\xb4\xc0\xe3\x82\
\xc6\xeb\xe4\x13\xd8\x87\xdd\x71\xfd\xbd\x50\x3a\x8c\x9a\xaf\xf0\
\x5d\x5c\xef\xc6\x83\xe9\xc5\x7c\x02\x69\x69\xfb\x99\x50\x60\x8d\
\x9a\xff\x04\x2d\x19\x7d\xe5\x77\x3e\x81\xbd\xc9\xfa\xd4\xb0\x14\
\xd5\x20\xd5\xd2\xf7\x63\x9a\x26\x30\x21\x74\x52\x84\xda\x7d\x69\
\xc8\xa2\xaa\xb0\x24\x68\x22\x68\x9c\xc8\x2e\xa4\x09\xec\xc0\x5d\
\x71\xbd\x2c\x34\x22\x6d\xd1\xb4\x17\xbe\x2c\x68\x22\xdc\xc4\x3b\
\xb2\x0b\x69\x02\x93\x7a\x3d\xec\x4a\x62\x50\x97\xf1\x64\x3d\x9b\
\x7b\x5e\x95\x65\x41\x13\xa1\xef\xb8\xde\x4c\x15\xfd\x0e\xb4\xc5\
\x8f\xc9\xfa\x49\xbc\xaa\x59\x12\x9b\xb2\x53\xa8\x38\xd7\x85\x1e\
\x76\x7a\xf0\xcb\x37\x65\x9b\xf0\x1d\x9e\x36\x2a\x6f\xa8\x97\xc4\
\x74\xd4\xb4\x2e\x0c\x10\x76\x16\xbd\x68\x02\x0b\x7a\x8d\xf6\x03\
\x35\x02\x15\xf9\x6c\x23\x89\xfb\xf5\x06\x08\x0b\x92\x9b\x38\xcf\
\x89\x24\xd0\xd3\xd5\xf5\x16\x52\x94\xc4\x91\x41\x22\x0a\x78\x2a\
\xb1\x3d\x91\x5e\xc8\xdf\x03\x67\x92\x75\xe9\xf2\x75\x13\x56\x85\
\x29\xc6\x9b\xc9\xdf\x9e\xc3\x6b\xca\x0f\x02\x52\x2d\x0b\x83\x5e\
\xf8\x98\x5e\xa6\x8b\xfa\x47\x27\x4d\x29\xfa\x24\xca\xf4\x19\xb7\
\xeb\x6d\xed\x75\xa1\x1e\xda\x90\x29\x5c\xd0\x2b\x5f\x6b\x0d\x9b\
\x06\x90\x4f\xa2\x4c\x02\x07\xf5\xca\xfb\x0b\x72\xc5\x5c\x11\xc7\
\x92\x00\xef\xd6\x55\x3a\x80\x71\x41\xf8\xbc\x72\x9f\xf0\xf1\x44\
\xcf\xdb\x65\x02\xb4\xd5\xd0\xb4\x41\xbe\xa1\x29\xb5\x23\xda\x6a\
\x29\x9b\x52\xbb\xa5\xe4\xc6\xa6\xfe\x86\x4e\x68\x0b\xc8\x37\xf5\
\x07\xaa\x3a\x78\x39\x71\x50\x67\xac\xd2\x84\xc6\x63\x15\x9a\x0f\
\xb6\xea\x92\x1f\x6c\x7d\xab\xe6\x60\x2b\x73\x76\x29\x71\x76\x4e\
\xfb\x5f\xad\x29\xad\x8e\x16\x33\xea\x0e\x77\xab\x32\x94\xe1\x6e\
\x46\xdd\xf1\x7a\x19\x66\x0d\x79\xbc\x9e\xb1\x47\x38\x7c\x48\x03\
\x65\x07\x1c\x87\x54\x2b\x3b\x5a\x3b\xe0\x68\xf3\x88\x69\x11\x5f\
\x08\x0d\xf8\x0f\x42\x4b\xba\xd1\x11\xd3\x23\x51\xe4\x96\x1e\x31\
\xa5\x74\x84\x83\xb9\x91\x1f\xf2\x35\x65\xe4\xc7\xac\x37\xfd\x41\
\xf7\x4d\xff\xaf\x06\xb7\x18\x35\xff\x03\x8b\x99\x79\x19\xf9\xae\
\x1d\x98\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x01\xfb\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x01\x9d\x49\x44\x41\x54\x78\xda\xa4\
\x93\xbf\x4b\xc3\x50\x10\xc7\x2f\x2f\x2f\x92\x0e\x45\x9d\xec\x14\
\xc4\x52\x5d\x5d\xea\xa2\x90\xbf\xc3\xc1\x41\xba\xe8\xe2\xe0\xa4\
\xe0\xe0\xe0\xe0\x54\x45\x1c\x44\x10\x07\x71\x71\x76\x73\x2a\xea\
\x28\x9d\x84\xa2\xed\x24\xa5\x0e\xa2\x85\xd6\x5a\x5e\x93\x9c\x77\
\xaf\x69\x4d\x51\xdb\x8a\x81\xcb\xcb\x8f\xfb\x7e\xde\xf7\xee\x12\
\x03\x11\xe1\x3f\x87\xcc\xc8\x7d\x5a\x8c\x15\x3a\x25\x6b\x5b\x6f\
\x8f\xc3\x88\xe2\x3b\xe3\x29\x5a\x4a\x00\x78\x24\xdb\xfb\x63\x6a\
\xe3\x2c\xb3\x3e\xbd\x18\x87\x41\x7e\x0c\x8a\x87\x99\x1a\xec\x2e\
\x9d\x64\xb5\x03\x84\x80\x57\xa1\x94\x02\x8f\xca\xf1\x7d\xbf\x2f\
\xc0\x34\x4d\xe0\x5c\xd2\x89\x10\xa0\xf7\x14\x41\x10\x80\x22\x71\
\xab\xd5\xea\x0b\xb0\x28\x38\x97\x74\x22\xea\xc0\xf4\x3c\x4f\x03\
\x9a\x03\x00\x28\x04\x70\x2e\xe9\x4c\x0d\x08\x50\x5b\x36\xd9\xba\
\x22\xf2\x20\x80\xb0\x2c\x5d\x26\xe9\x42\x40\xe8\x80\x1f\xbe\x57\
\x14\x8c\x4c\xd8\x7d\x01\x9c\xa3\x01\x1d\x07\xd1\x12\x8a\x17\x4f\
\x43\xcd\x3e\x16\x8b\x45\x4a\x80\xaf\x12\xf2\xf9\x3c\xfc\xf6\x61\
\x19\x86\xd1\xbd\x76\x5d\x97\xb6\xed\x2d\x41\xb2\x03\x1e\xd1\xfc\
\x5a\xf2\xdb\x24\x2c\xaa\xfb\xf6\xa0\x04\x8e\xe3\x40\xb9\x5c\xd6\
\x4d\x24\x9d\x8c\x3a\x90\xec\x40\x4a\x09\xf5\x7a\x13\x72\xd9\x7b\
\x2d\x9c\x5b\x9d\xea\x5a\xe6\x77\x7c\xd8\xb6\x1d\xf6\xc0\x6f\x03\
\x7c\xf0\xf4\x26\x82\xc6\xc3\x49\x8d\x86\x82\x44\x22\xa1\x93\xf9\
\x5a\x8f\x0e\xcd\x1e\x00\x7f\x07\xa4\xb3\xf4\x54\xae\xf1\x1c\x9e\
\xb1\x78\xb8\xb7\x79\x7c\xf5\x52\x79\xad\x2a\x85\x3a\x99\x03\xb1\
\x1d\x9d\x67\x51\x80\xc2\x8f\x38\x6b\xb9\x33\x0e\xc5\x58\x12\xd2\
\xe9\x49\x98\xcd\xe4\xe4\xe9\xcd\x4f\x4d\x74\xbd\xe5\x85\xe8\x7d\
\x15\x2a\x85\x3b\xb8\xdc\x66\xc0\x28\x83\x79\x12\x7f\xfc\x93\xb9\
\x79\xcd\x4f\x01\x06\x00\xba\x01\xda\x2a\x98\x34\xd6\x68\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\x77\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\x19\x49\x44\x41\x54\x78\xda\xc4\
\x53\x4d\x68\x13\x41\x14\x7e\xb3\x7f\xd9\x18\x12\x12\x45\x8b\x9b\
\xab\xb4\x4d\x41\x2f\x1b\xf0\xe0\x59\x58\x51\x10\x7b\x52\x04\x0f\
\x22\x58\x2f\x05\xf1\xe6\x49\x64\x41\x3c\x7a\xed\xc1\x83\x60\xdb\
\x7b\xbd\x78\x13\x2d\x54\x68\x43\x2d\x88\x29\xf4\x07\x2c\xd8\x48\
\x9a\x10\xb3\x9b\xfd\x9b\xd9\xd9\xf1\x6d\x7e\x4a\x45\x41\xa4\x07\
\x07\x3e\x66\xf7\xcd\x37\xef\x7d\xef\x9b\x19\x22\x84\x80\xe3\x0c\
\x09\x8e\x39\x94\xa9\xa7\x35\xc8\x64\xb3\xa0\xe9\x3a\xa8\x99\x0c\
\x28\xaa\x6a\x61\xfc\x06\x2a\xbb\x9f\x12\xdc\x4e\xe7\x90\x2c\x92\
\x04\x58\x14\xf5\x91\x70\x3e\x48\xf0\x4b\x3a\x21\xac\x98\x31\x7b\
\xf4\x1b\x05\xc1\x3f\xb4\x80\x9b\x19\xa5\xf6\x9d\x6b\x65\x33\xad\
\x10\x7a\x1e\xf0\x38\xfe\x7b\x0b\x83\xbd\xc2\xa2\x51\x64\x3f\xb8\
\x3d\x65\x3a\x0e\x07\x1a\x86\x69\x78\x6d\x94\x1a\x71\x80\xa8\x23\
\x6f\x11\xe7\xd5\xa3\x09\xc8\xe4\x93\x55\x8b\x10\x62\xcf\xde\x35\
\xcd\xad\x2d\x0f\x74\x5d\xea\x23\x3d\x9c\x01\x04\x84\x51\x4c\x5b\
\x1d\xdf\xad\x6f\x1f\x34\x3a\x4e\x38\xcf\x19\x7b\x81\x1e\xf8\x7d\
\x05\x34\x08\xec\x87\x33\x97\xcc\x8d\x8d\x1f\xfd\x8c\xbe\x3f\xec\
\x1f\xe5\xbb\x41\x08\x1e\xfa\x40\x29\xd3\x92\x84\x9f\x2a\x16\xb5\
\x22\x8b\xc9\xbd\x76\x8b\xa5\x26\x3e\x4b\x4d\x95\x73\xd5\x5b\x7b\
\xcb\x2b\xbb\x95\x2b\x97\xc7\x8d\x76\x9b\x02\xa8\x32\x74\x64\x80\
\x6f\x89\x80\xae\xac\x80\x97\xd1\xa1\x97\xcd\x81\xa3\xe7\xa0\x49\
\x74\x89\x17\xf2\x05\x94\x73\x96\xf9\xc1\x1a\x7a\xb4\x4f\xca\xb3\
\x6f\x01\x55\x58\x28\xd5\xbe\x39\x73\xd5\x7c\xd7\x95\xe0\xfb\xc2\
\x52\xed\xb0\x47\x49\x22\x44\xd7\x14\x29\x77\x42\x23\xf9\x7c\x96\
\x1a\x46\x09\x82\x90\x92\xda\xfa\x2b\x5c\x7e\x24\x13\x20\xa9\x9c\
\x6d\xae\x16\xf6\x3e\xad\x7c\xa9\x9c\xb9\x78\xc1\x68\x7e\x5c\x6f\
\xa0\x2f\x55\x24\xcc\xc5\x51\xf4\x92\x87\xd1\x42\xec\xf4\xde\xb0\
\x56\xfb\x43\xbc\xb3\xdb\xe5\x6e\xaf\xc4\x5d\x37\x8b\x0a\x5e\x93\
\x51\x25\x79\xac\x02\xf2\xe4\x75\x4b\x3a\x3d\xd1\xbf\x07\xec\xfd\
\xf3\x2a\x6f\x6e\xfe\x76\x6c\xda\xf9\x69\x80\x93\xe3\x8f\x91\x37\
\x9d\x72\xe4\x54\x25\x42\x15\x5e\x4b\xe7\x5f\x97\x1b\x22\x53\xdc\
\x4f\x22\xac\xb0\xb9\xf4\x19\xe3\x63\x08\x03\x51\x1e\xce\x06\x6f\
\xd6\x0d\xe4\xed\x88\xd2\xb9\x09\xe4\xd4\xc8\x30\x81\x34\x84\x3c\
\x84\x72\xe4\x7b\xb4\x46\xfe\x70\x8f\x7c\xf2\xdf\x5f\xe3\x4f\x01\
\x06\x00\xb6\x7a\x10\x04\x89\x58\x63\x65\x00\x00\x00\x00\x49\x45\
\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\xfe\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\xa0\x49\x44\x41\x54\x78\xda\xa4\
\x53\xcf\x4f\x13\x41\x14\x7e\xb3\xbb\xdd\x2e\xdb\x6d\x2b\x05\x81\
\x12\xa2\x68\xb1\xd4\x60\x83\x88\x31\x1e\x94\x68\x34\x4a\x62\x23\
\x89\x47\xff\x02\x13\xb9\x98\xe8\xc5\x9b\x89\x77\x12\x8c\x27\x0f\
\x9a\xf8\x07\x18\x88\x88\x47\x63\x25\x31\x24\x9a\x20\xd2\x00\x45\
\x51\xf9\x51\xa1\x14\xba\x6d\x77\xb7\x74\x67\x67\x9d\x19\x5a\x2a\
\x27\x0f\x4e\xf2\xed\xbc\x7d\xef\x7d\xdf\xbe\x7d\xf3\x06\xb9\xae\
\x0b\xff\xb3\x24\xfe\x88\xbf\x06\x40\x02\x80\x20\xd2\x37\xd4\x06\
\x08\x25\xa8\x71\x8e\xa2\xa3\x9a\xb7\x4a\x31\x0d\xae\x4b\x13\xdd\
\xdf\x40\x1c\xba\x11\xc0\xb3\x89\x3d\x81\xbf\xd6\xa0\xda\x20\xdd\
\x3d\x7b\xba\xa3\x3b\x1a\x69\x6e\xd5\x7c\x5e\x1f\x2b\xb0\x54\xda\
\x35\x16\xbe\x65\x2f\x7d\xfe\xb2\x36\x64\x5a\xf6\x53\x9a\xf7\xf6\
\x40\x05\x35\x72\x28\xa8\x3c\xbc\x95\x88\xf7\x11\x87\x68\x1b\x99\
\x2c\x6c\xd4\x63\x81\xe8\xb1\x50\x20\xd2\x19\x0a\x8f\x4f\xce\x05\
\x77\xf2\x26\xd4\x44\xaa\x02\x6e\x58\x55\xc4\xe1\xa1\xc1\x93\x7d\
\x05\xbd\xa8\xe9\x7a\x01\x26\x9e\xc4\x0f\x94\xf6\x60\x24\x0d\x6b\
\x39\x59\xbb\x76\xb9\xab\x6f\xfc\xcd\xd7\x61\xab\xec\xcc\x50\x77\
\x46\xe0\x51\xe2\x24\x7a\x4f\x85\xbb\x0b\x85\xa2\x66\x18\x26\xb0\
\xc6\x8e\xbe\x4c\x71\x4c\x26\x33\x3c\x25\x76\x54\x06\x16\xdb\xb5\
\x2c\x2d\x1a\x09\x75\x33\xce\x7e\x05\xae\x83\xcf\xb7\xb7\x69\xad\
\x7a\xbe\xb0\xff\xc5\xb1\xf7\x06\x27\x0c\xf4\xe6\xa0\x45\x5d\x87\
\xf4\x52\x1e\x52\x29\x1d\x44\x49\x84\x60\xb0\xb1\x95\x71\x68\xda\
\xb3\xbd\x5f\x20\xb8\x43\x14\x40\x75\x1c\x07\x30\x76\x40\x2f\x94\
\xc0\xb4\xca\xd0\x1f\x53\xe0\xf6\xf5\x46\x48\x2d\x9b\xf0\xea\x9d\
\x09\x82\xe4\x05\x76\xe8\xb6\x8d\x55\xc6\xa9\xf7\x80\x60\x84\x31\
\x46\xd6\x2e\x06\xbd\x58\x06\x42\x10\x20\x51\x82\x47\x77\x8e\xf0\
\xf0\xe3\x17\x1b\x20\x79\xb5\xfd\xea\x08\x92\x10\xe3\xd4\x05\x1c\
\xbc\x9a\xdb\xb6\x4c\xa3\x22\x6a\xa2\xec\x03\xb1\x9a\x78\xf3\xfe\
\x4f\xbe\xcb\x6a\xe3\x81\x86\xda\xe5\x8a\xc9\x38\xcc\xae\x36\x11\
\x4f\xaf\xfc\xca\x6d\x2a\x6a\x00\x64\xc5\xcf\x81\xe8\x60\x4d\x3d\
\x3f\xc3\xc1\xec\x9a\x9f\x21\x9f\x2b\x66\x19\xa7\x2e\xe0\xe0\xb1\
\x95\xc5\xe5\x34\xad\xcd\xf0\x28\x01\xf0\x78\xfd\x20\xc9\x6a\x7d\
\x5c\xa9\xcd\x7c\x0c\xd8\x06\x63\x6b\x65\x75\x91\x71\xea\xbf\xe0\
\x92\x4c\xc5\x32\x47\x67\x93\xc9\x60\xcf\xc0\xd5\x78\x83\xff\x90\
\x4f\x52\x34\xb8\x32\xfc\x9d\x87\xfd\x87\x8f\xf3\xdd\xd4\x77\x8c\
\x85\x8f\x53\xb3\xb8\x6c\x8e\xd2\xb1\xe7\xe7\x8b\xd8\x99\x23\x44\
\x9b\x26\x77\x01\x78\x2e\xde\xf0\xa8\xb1\x7b\xed\xb1\xde\x13\x2d\
\x5d\x3d\x4d\x6a\x30\xd4\xb0\x47\xdc\xb6\x36\x97\xe6\x72\xeb\xf3\
\x33\x69\xdb\x9c\x1f\x01\x3b\x39\xe1\x56\x96\xf8\xbc\xd4\x04\x58\
\x25\x4d\x14\xcd\x20\x74\xb6\x81\xd0\x7f\x01\x50\x7b\x0f\x55\x0c\
\x57\xdb\x96\x01\x77\x7d\x0e\xc8\xa7\x0f\x40\x7e\x6c\x52\x47\x96\
\x62\x8b\x72\x71\x4d\x80\xf5\x42\xad\x42\xfa\xc7\x0d\xa6\x57\x11\
\x0c\x56\x18\xe5\x92\x3f\x02\x0c\x00\xa3\x80\x2c\x26\x09\xee\xf9\
\x88\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x05\xd9\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
\x00\x00\x05\xa0\x49\x44\x41\x54\x78\x9c\xed\x9a\xd9\x6f\x1c\x45\
\x10\xc6\x7f\x35\x3d\xbb\xeb\x63\xc9\x25\x08\x08\x04\x0e\x37\x49\
\x10\x89\x20\xd8\x12\x12\xa7\x40\x0a\x4f\x88\x37\xc4\x03\x28\x80\
\xf8\x5b\xe0\x9f\x88\x90\x10\xe2\x0d\x90\x38\x12\x02\x88\x38\x89\
\x13\xdb\x89\xc1\x47\xcc\x19\x7c\xe6\xf0\xda\x11\x36\xf1\x9e\xb3\
\x33\x5d\x3c\x8c\x37\xd9\x5d\xef\xda\xcb\x7a\x62\x3b\x12\xdf\xdb\
\x74\xf5\x4e\x7f\x5f\x75\x55\x57\xf7\x4e\x0b\x65\x50\xd5\x38\xf0\
\x06\xf0\x16\xb0\x1f\xb8\x0d\x10\x36\x16\x0a\x2c\x02\x43\xc0\xc7\
\xc0\xa7\x22\x52\x58\xde\x4b\xf5\x51\x55\xfd\x41\x37\x3f\x7e\x54\
\xd5\xdd\x25\xde\xb2\x44\xfe\x11\xe0\x5b\x60\xd7\x7a\xb8\x34\x02\
\x4c\x01\x07\x45\xe4\x57\x51\xd5\x16\x42\xf2\xcf\x55\xf7\xca\x16\
\x94\x6b\x59\x4b\xa0\xeb\x4e\x10\x00\x23\xb0\xa5\xcd\xa1\x2d\x51\
\x33\x8a\x7b\x80\x57\x44\x55\xdf\x06\x3e\x2a\xb7\xe4\x3d\xe5\xec\
\x5f\x45\xc6\x67\x2d\x79\x7f\x83\xd8\x2f\x21\xe1\xc2\x03\x3b\x0d\
\x07\x1e\x8c\xd1\x1a\x5f\x26\xe4\x3d\x51\xd5\x6e\xca\xbc\x9f\xf7\
\x94\xa3\x43\x1e\x57\x16\x94\x98\x01\xd9\xe0\x14\x56\x05\x3f\x80\
\x3b\xb7\x0a\x07\xf7\xc7\xab\x45\x9c\x76\x80\x7d\xe5\x2d\x03\xe3\
\x3e\x33\x0b\x4a\xdc\xdd\x78\xf2\x10\x72\x88\xb9\x90\xfa\x47\x19\
\x18\x2b\x56\x9b\x9f\x70\x80\x64\xe9\x29\xe7\x29\xe3\xb3\x01\xae\
\x59\x57\x8e\x0d\xc1\x35\x30\x3e\x67\xc9\x16\x2a\x42\x3a\xe9\x94\
\x3f\x2d\xe6\x94\x7c\x71\x73\x78\xbe\x1a\x22\x50\x28\xc2\xb5\x5c\
\x65\x4e\x56\x08\xd8\xa8\xd5\xa6\x51\x28\x60\xab\x38\x3a\x35\x7b\
\xde\x42\xf8\x5f\xc0\x46\xe3\x96\x17\xe0\x36\xf3\x23\xd5\x1b\x09\
\x2f\x4b\xcf\x8e\x03\x4e\x8d\xd5\x4b\x55\x10\xc7\x60\x6d\x80\x23\
\xd1\xaf\x12\xff\x59\x40\x60\x21\xd9\x22\x74\xdc\xee\x70\xfb\x16\
\x07\x23\xb0\x90\x55\xa6\xae\x06\x5c\x5d\x54\x1c\xe7\xc6\xfe\x5b\
\x55\xc8\xe6\x3d\xc6\xc6\x46\xe9\xe8\xd8\x43\x7b\x5b\x02\xe3\x44\
\x2b\xe2\x3f\x09\x08\x2c\x3c\x7c\x97\xa1\xf3\x21\x97\xf6\xaa\x0d\
\xd6\xfe\x5d\x2e\xa3\xd3\x3e\xe7\xc6\x7c\x54\x01\x84\x5c\x21\xa0\
\xaf\xef\x3b\xc6\xfe\x1a\x64\x66\xe6\x22\x9d\x5d\xaf\x92\x6c\x73\
\x23\x15\xd1\xb0\x80\xc0\xc2\x83\x77\x1a\x5e\xd8\x13\xab\x59\xe8\
\x5c\x07\xf6\x75\xb8\x18\x07\x7a\xfe\x08\xf0\xbc\x80\xde\xde\xa3\
\x4c\x4e\x8c\x10\x8f\xb7\x70\x71\x7a\x14\x10\x3a\xbb\x0e\x46\x2a\
\xa2\xa1\x24\x56\x85\xd6\xb8\xd0\xf5\x90\xbb\x6a\x95\x7e\xfc\x5e\
\x97\x9d\x49\xe8\x39\x7d\x94\xc9\xf1\x11\x8c\x89\x01\x60\x4c\x8c\
\x8b\xd3\xe7\xe9\xef\x3b\x42\x3a\xeb\xe3\xdb\x68\xca\x7d\x43\x02\
\x02\x85\x7b\xb6\x3b\x24\x5b\x56\x1f\xd4\xf7\x03\x06\xce\x1d\x65\
\x62\x7c\x04\xe3\xc6\x2a\x6c\xa1\x88\x51\xfa\xfb\x8e\x90\xc9\xfa\
\x04\x11\x88\x68\x2c\x84\x14\xb6\x27\x57\x1f\xac\xe8\x07\x7c\x78\
\xf8\x6b\xbe\x3f\x33\x48\x22\x1e\xab\xd9\xa7\x24\x02\x68\x2a\x27\
\xaa\x7b\x46\x56\x07\x42\xf2\x5f\xf1\x65\xf7\xcf\x75\xc9\x97\x50\
\x3e\x13\x8b\x0d\xce\x84\x02\x81\x15\x54\x2b\xfb\x56\x09\xa8\xf3\
\x22\x81\xf9\x4c\x7d\x2f\x95\x3c\xff\x65\xf7\x20\x2d\x89\x95\xc9\
\x97\x50\x21\x22\xb3\x7a\x4e\xa8\x1a\x66\x52\x29\x16\x16\xe6\xea\
\x0b\xf0\xfd\xf0\xc0\x20\x55\x99\x6a\x04\x2e\xfd\x1d\x90\xce\x2f\
\x17\x51\xee\xf9\x46\xc9\x97\x8b\xb8\x34\x3d\x4a\x7f\x7f\x98\xd8\
\xf5\x66\x42\x71\x49\xcd\xce\xd2\x73\xea\x73\x72\xd9\xc5\xfa\x02\
\xae\xce\x5d\xe6\xdc\x40\x37\x22\x52\x21\x42\x04\x72\x1e\xf4\x5f\
\x28\xad\xf1\xd5\xe4\x1b\xf7\x7c\x5d\x11\x75\xc2\x49\x71\x99\x99\
\x4d\x71\xf2\xe4\x67\xa4\xd3\xf3\x38\xa6\xf2\xb4\x55\x21\x40\x44\
\x18\x1a\xee\xe5\xec\xd9\xe3\x88\x38\x15\x22\x8c\x03\x17\x52\x01\
\xdd\xbf\x16\xc9\x17\xc3\xd5\xe6\x83\x35\x92\x5f\x49\x84\xea\x12\
\xf9\x54\x8a\x53\x27\x3e\x23\x93\x9e\xc7\x38\xcb\xd7\x9c\xca\x16\
\x11\x8c\x31\x0c\x0d\xf7\x82\xc0\xd3\x07\x5e\x04\x2c\xba\xe4\x76\
\xe3\xc0\xef\x97\x2d\x13\xb3\x39\x46\x07\xbf\xe5\xd4\xc0\xd0\x9a\
\xc9\x2f\x13\x01\x74\x76\xbe\x4a\x7b\x5b\x0b\x73\x57\xaf\xd0\x73\
\xf2\xf3\x90\xbc\x71\x09\x02\xbb\x8a\x80\xeb\x2f\x33\x0c\x0f\xf7\
\x02\x95\x22\x54\x05\xaf\x18\x70\xbc\xfb\x08\x13\xe3\xe7\x89\xaf\
\xb2\xda\x34\x25\x62\x6a\x94\xde\x40\xd9\xf5\xc0\x53\x8c\x0c\x7e\
\x43\x26\x33\x8f\x63\xea\xaf\xf6\x35\x2d\xb2\x34\x13\xe5\x22\x54\
\x95\x5c\xc1\xe7\xcc\x99\x23\x4c\x4f\x45\x4f\xbe\x04\x55\x98\x1c\
\xfb\x99\xd4\xcc\x05\x20\xc0\xa9\x11\x36\xe5\x58\xc1\x7a\x43\x84\
\x5a\xd8\xbd\xf7\x19\xfa\xfa\x8e\x31\x35\x79\xfe\xfa\xf6\x20\x6a\
\xf8\xc5\x22\x7e\xb1\x48\xa2\xb5\x15\x11\xa5\x91\x32\xb5\x4a\x25\
\x16\x04\xe1\xa7\x81\x13\x4c\x4c\xfe\x49\x3a\x33\x7f\xd3\xc9\xc7\
\x5b\x5a\x70\x9c\xc6\xeb\xeb\x8a\x3d\xad\xb5\x14\xbd\x02\xc6\x75\
\x49\x67\xe6\x71\xe4\xe6\x1c\xe0\x9a\x25\x0f\x2b\xcc\x80\xb5\x96\
\x62\x21\x8f\x31\x2e\x6e\x22\x41\x45\x01\x88\x10\x6b\x21\x0f\x75\
\x04\xd8\x20\x08\x3d\x6f\x5c\xdc\xf8\xe6\x25\x0f\x35\x04\xa8\xb5\
\x14\x3d\x0f\xd7\x5d\x22\xbf\x6c\xff\x17\x0d\xa2\x20\x0f\x55\x39\
\xa0\xaa\x78\x85\x30\xe6\xdd\xc4\xe6\x27\x0f\xd5\x02\xac\xc5\x18\
\x97\x58\x3c\xbe\xa9\xc3\xa6\x1c\x15\x6f\x70\x8c\xc1\xbd\x49\x05\
\x0a\xa2\x27\x0f\xeb\xf8\xc7\xd6\xcd\x20\x0f\x55\x02\x62\xae\x41\
\x44\x22\x8f\xfc\xa8\xc8\x8b\x08\x71\x77\x85\xed\xf4\xdd\x77\x6c\
\x63\xdb\x6d\x6d\x58\xbb\x7c\xd7\xd7\x2c\xa2\x22\x1f\x58\xcb\xd6\
\x64\x2b\xf7\xec\xdc\x51\xd1\xee\x00\xe9\xd2\xc3\xf6\x2d\xed\xbc\
\xdc\xb5\x97\x82\xe7\x37\x3d\x50\x39\x42\xf2\x5e\x24\x61\x53\xf0\
\x7c\x5e\xea\xda\xc3\x8e\xad\xed\xe5\xcd\x69\x07\x18\x2e\x6f\x39\
\xf4\xda\xb3\x1c\xd8\x7b\x3f\xd9\xbc\x47\x60\x6d\x53\xe1\xa4\xaa\
\x37\xc8\x27\x9a\x27\x1f\x1e\xe4\x2d\xd9\xbc\xc7\x93\xbb\x3b\x78\
\xf7\xf5\x65\x5f\x82\x47\x44\x55\x0f\x01\x87\xcb\x5b\xaf\x65\x72\
\x1c\xfe\xe2\x04\x3f\xf4\xfd\xc2\xc2\x62\xf6\xfa\x81\xa6\xd1\x51\
\x03\xbf\x3c\x6c\x0c\xda\x64\x56\x89\x08\xdb\x92\x6d\xbc\xd4\xb9\
\x9b\x77\x5e\x7f\x9e\xad\xc9\xd6\xea\x2e\xef\x97\x3e\x74\x1f\x03\
\x9e\xad\xb6\xce\x5f\xcb\x70\x79\x6e\x81\xa2\xef\xd3\xf0\x95\x09\
\x55\xac\xda\x70\x1f\xbb\xc6\xb0\x89\xb9\x86\xbb\xef\xd8\xc6\xf6\
\x2d\xed\xb5\xcc\xa7\x81\x97\x4b\x57\x0d\x1e\x23\xfc\x5a\x7f\xdf\
\x9a\x46\x5c\x3f\x4c\x13\x5e\x35\xf8\xc5\x01\x10\x91\xdf\x80\x83\
\xc0\xf1\x8d\x64\xd5\x20\x4e\xb0\x44\x1e\xaa\xe2\x42\x55\x13\xc0\
\x9b\x84\xd7\x6d\xf6\xb1\xb9\xae\xdb\x0c\x13\x5e\xb7\xf9\x44\x44\
\xf2\x25\xe3\xbf\xc4\x34\x7c\xfd\x9e\xc1\xaf\x46\x00\x00\x00\x00\
\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\x76\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\x18\x49\x44\x41\x54\x78\xda\x8c\
\x93\x4f\x6b\x13\x41\x18\xc6\x9f\x99\x9d\x4d\x5a\xb7\x60\x68\x54\
\x5a\xd2\x42\x72\x68\x51\x4b\x2f\x2a\x2a\x08\x05\xff\x40\x40\x2f\
\x7a\x10\x2f\x1e\xfc\x0c\x0a\xfa\x09\x3c\xf6\x56\x7a\xd1\x6b\xe9\
\x21\x7a\x53\x3c\xe9\x41\x3c\x09\xc1\xbd\x78\x52\xf0\xd0\x20\x85\
\x90\x34\xc5\x24\xbb\x71\x77\x67\x7c\xdf\xcd\x6e\xb2\x1b\x28\x38\
\xf0\x30\xb3\xcb\xbc\xbf\x79\xde\x67\x18\x21\xef\xbf\x40\x32\x1e\
\x92\x56\xf0\x7f\xa3\x45\x6a\xf0\x42\xc1\x4c\x7e\xae\xee\x3c\x7d\
\xb2\xfd\xb3\x75\x08\x18\x83\xea\xf2\x19\x54\xca\x25\xd8\x4a\xe5\
\x2a\x6d\x5b\xe1\xde\xf3\xed\x67\xe9\xb7\xe2\xcd\xc9\x90\x2b\xe5\
\xd3\x58\x2e\x39\xe8\x0d\x7c\xfc\xfa\xdd\xc6\x87\xcf\x5f\xb0\xb5\
\x59\x9b\x01\xd8\x28\x9f\x12\xe7\xce\x2e\x08\x2a\x35\x39\x07\x52\
\x6b\x0d\xdf\x1f\x61\xce\x12\xb8\xb4\x5e\x45\x34\xec\xe1\xf1\xcd\
\xab\x50\xc5\x22\x42\xda\xac\x49\xae\xeb\x62\xb5\x24\xd7\xab\x65\
\xb9\xa6\xa3\xe8\x87\x8c\x1d\x8c\x65\x45\x91\xc1\x54\x1a\x9e\x17\
\xe0\xb8\xdb\xc5\x61\xab\x85\xbf\xbe\x8f\xc1\x60\x80\x7e\xbf\x8f\
\xe6\xee\xcb\x07\x54\x7c\x87\x0e\x5d\xcb\x02\x64\x1e\x60\x30\xf2\
\x03\x58\x42\xc0\xb6\x2c\xcc\x93\xf5\x22\xe5\xd1\x25\xe0\xce\xde\
\x1e\x6e\x6f\x6c\xec\x7e\x77\xdd\x47\xd9\x0c\x2c\x6e\x81\xc5\x23\
\x5e\x93\x0b\x29\x25\x7f\xa0\x90\x84\x79\xb7\x5e\xc7\x28\x0c\xe1\
\x38\x0e\xde\x37\x9b\x3d\x05\x3d\xc9\x60\xd2\x02\x8f\x78\x4d\x85\
\x92\x1c\x10\x25\x76\x52\xc8\xdc\x08\x83\xc3\x20\x90\x39\x07\x61\
\xa8\xc1\xe2\xc1\xb3\x21\x48\xea\x60\xd6\xc9\x14\xa0\xcd\x89\x0e\
\xb8\x0d\x39\xde\x1d\x3b\x40\x06\x62\x51\x2e\x0c\x90\xe8\x1e\xa4\
\x21\x2a\xad\xb9\x68\x2a\xbe\x09\x6e\x41\x26\x27\x32\x24\x9d\x59\
\x01\x03\x74\xf3\x0d\xd0\x21\x48\x64\x14\x17\x64\xc5\x21\x0a\x2e\
\x4a\x95\x81\x30\x34\x06\xd0\x3c\xaf\xbf\xbd\x5d\x34\x41\xb4\x30\
\x7b\x8d\xec\x82\x0b\x45\x72\x62\x0e\x42\x1a\x79\x5e\x91\x01\x73\
\xa4\x45\x6a\xa5\xbd\xff\xee\x93\xdb\x3e\xfa\x73\xa4\x94\x3d\x6e\
\x23\x75\xc0\x27\x92\x14\xf5\xcd\xb2\x93\x0c\x7a\x9d\x8e\x23\xd2\
\x04\x45\xe5\x0a\x50\xbb\x5e\xa7\x2c\xb6\x6a\x95\xa5\xf3\x37\x2e\
\x6f\x5e\xd8\x6f\x34\x50\x38\xfe\xfa\x51\x16\x0a\x9e\x90\x32\x9a\
\x7d\x92\x7a\x38\x3c\xc8\x03\xaa\xd7\xc6\x81\x46\xe6\x22\xbd\x91\
\x5b\x88\x82\x25\xd3\x7c\xfd\x8a\xdb\x3d\xe1\x59\x7b\xff\x04\x18\
\x00\x56\x27\x3e\x5c\x74\x0e\x64\x1a\x00\x00\x00\x00\x49\x45\x4e\
\x44\xae\x42\x60\x82\
\x00\x00\x02\xb2\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\x54\x49\x44\x41\x54\x78\xda\xa4\
\x53\x4f\x68\x92\x61\x1c\x7e\x3e\x93\x84\xd4\x61\x8d\x41\x09\x0e\
\x1c\x43\x67\x5b\x78\xb0\x8d\xe5\x0e\xb2\x83\x84\x44\x87\xa4\x2e\
\xb1\xeb\x20\x68\x87\x9d\x86\x7d\xc7\x41\x24\x3b\xed\x12\x51\x14\
\x74\xa8\x4e\x4a\xad\x49\x8c\x5d\x12\x69\xb4\xad\xa2\x7f\x4e\x98\
\x87\x91\xc5\x52\x88\xad\x48\x1d\x53\x9c\x6f\xbf\xc7\xbe\x85\x75\
\xd8\xa5\x17\x1e\x7e\xff\x9e\xe7\xf9\xa1\xef\xfb\x69\x4a\x29\xfc\
\xcf\xd1\xa2\xd1\x28\x34\x4d\x3b\x2f\xf9\xe7\x5a\xad\xf6\xbe\x5a\
\xad\xa2\x52\xa9\xa0\x5c\x2e\x83\xb9\xd5\x6a\x85\xdd\x6e\x87\xcd\
\x66\x6b\xe5\x16\x8b\xc5\x2f\xdc\x6e\x59\x3c\x9f\x4c\x26\x61\xaa\
\xd7\xeb\x70\x38\x1c\xa7\x04\xe7\xa4\xe9\x3f\x68\x1b\xe7\xe4\x91\
\x4f\x1d\x8f\x29\x95\x4a\x21\x93\xc9\x60\x62\x62\xe2\xfa\x41\x26\
\xfb\x62\xf2\xc8\xa7\xae\xfd\xf8\x3d\x1e\x8f\x9e\xcd\x66\x95\xfc\
\x24\x3d\x10\x08\xf8\xfb\xfa\xfa\xe0\x72\xb9\xc0\xc8\x9a\x7d\xce\
\xc9\x23\xdf\x30\xfd\xdb\xc4\xeb\xf5\xea\xf9\x7c\x5e\x45\x22\x11\
\x5d\x88\x7e\x1a\x30\xb2\x66\x9f\xf3\x7d\xf1\x1f\x83\xab\x9a\x86\
\x49\x41\x50\xc0\xa1\x6c\xd4\x0b\x85\x82\x0a\x85\x42\xba\xd3\xe9\
\xbc\xc8\xc8\x9a\x7d\xce\x83\x06\x9f\xba\x96\x41\x4e\x92\x4f\x82\
\x4d\x41\xe2\xb7\x91\xdf\xe7\xf3\xe9\xc5\x62\x51\x85\xc3\xe1\xc5\
\x74\x3a\xad\x58\xb3\x9f\x30\x78\xe4\xe7\x0c\x03\x8d\xc9\x11\xc0\
\x66\x06\x78\x95\x67\x04\xc7\x57\x81\xa3\x6b\x6e\xf7\x89\x2b\x2b\
\x2b\xfd\xeb\x6e\xf7\x5a\x47\xb5\x5a\x3c\x06\x7c\x97\x59\x49\xf0\
\xb2\x01\xcc\xef\x00\x15\x5f\xb3\x09\xd1\xc1\x26\x8d\x6b\xd6\xe1\
\xe1\xb3\x8e\x91\x91\x5e\x73\x67\x67\xc7\x05\x79\x18\xbd\xa5\x12\
\x3e\x76\x75\xed\x8c\xc6\xe3\xfd\xc2\xe9\xe7\xba\xc6\xd6\xd6\xcf\
\x1f\x4b\x4b\xc1\xdd\xe5\xe5\x01\xe9\xdd\x10\x54\xf0\x4e\xd3\xc6\
\xbe\x0c\x0d\xbd\x55\xf1\xb8\x7a\xd2\xd3\xb3\x7e\x13\x78\xbd\x37\
\x3d\xad\x16\x24\x0a\x6e\x2d\x18\x35\xfb\x9c\x93\x47\x3e\x75\xad\
\xff\xe0\x85\xa6\xdd\x6b\x17\xd7\xa6\xa6\xd4\x9c\xc4\xa7\xc0\xd8\
\x33\x59\xc1\x38\x67\xf4\xdb\x4d\x5a\x3a\x31\x30\x7d\x53\xaa\xbb\
\xbe\xbd\xad\x36\x37\x36\xca\xe3\xb1\x58\xe0\xf1\xcc\xcc\x9b\x5d\
\x60\xf6\x03\xf0\xe0\xa1\x18\x30\xb2\x66\x9f\x73\xf2\xc8\xa7\xae\
\x75\x97\xb7\x81\x3b\xab\x83\x83\x45\xba\xde\x97\x0d\x31\xd9\x78\
\xf2\x9f\x57\xc8\x9a\x7d\xce\xc9\x23\x9f\xba\xd6\x2d\xf8\x80\xd1\
\x49\xe0\xb2\x70\x06\x5e\x01\x89\xbb\xc0\xa2\xe4\xb2\x14\x7c\xec\
\x0d\x7e\x70\x82\xc3\x02\xcb\x38\x10\x39\x0d\x5c\x92\x3c\x3b\x0b\
\x3c\xca\x29\xf5\x9c\x43\x67\xfb\x93\x17\x34\x0d\xe1\x9e\x91\xf3\
\x1c\x12\x98\x8d\x68\x6a\x7b\x89\x5f\x7f\x09\x30\x00\xc4\x5c\x3c\
\xca\x91\x41\x9e\x2f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
\x82\
\x00\x00\x03\x16\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\xb8\x49\x44\x41\x54\x78\xda\x8c\
\x53\x4b\x4c\x13\x51\x14\x3d\x53\xa6\xd0\x69\x8b\xe5\xd7\x10\x2a\
\xa8\x4d\x51\x3e\x0b\x35\x19\x2b\x8d\x8a\xd1\x46\x0c\x31\x31\x31\
\x46\x36\x2e\x4c\x0c\x41\x5c\xb8\x71\xa3\x3b\x20\x24\x2e\x8d\x1b\
\x17\x36\x31\xba\x70\xa1\x89\x80\xbf\x0d\x24\x60\x22\x68\x04\x42\
\x25\x62\x8c\xe5\xe3\x02\x2c\x50\x2d\x85\xb6\xce\x40\xa7\x9d\x69\
\xbd\x6f\xb0\x55\x16\x1a\x26\x39\x39\x9d\xd7\x77\xee\xe7\xdc\x3b\
\xdc\x85\x8e\x0e\xb0\x87\xe3\xb8\xb3\x44\x15\xd8\xde\xb3\x9c\xc9\
\x64\x5e\xb1\x1f\xbc\x6c\x73\xc3\x1c\x1d\x07\x1d\x38\x7a\xba\xbb\
\xef\xfd\x7d\x2b\x9d\xc9\x6c\x32\x81\xfe\x47\x66\x33\x13\x2e\x76\
\x76\x5e\xcd\xde\xe1\xe5\x22\x37\x54\xa1\x12\xd6\xe0\x53\x2e\x7b\
\x98\xbd\xcc\x98\x05\xc9\x32\x83\x21\x2f\x0f\x69\x4d\xe3\xa4\xca\
\x16\xc8\x5c\x29\xb8\xc6\xfb\xcb\x3e\x2a\x5f\x64\xc2\x7d\xa5\xbc\
\xb8\x9d\xfa\x67\x22\xaa\x9f\xb1\x9a\x4c\xb6\xf3\x1b\x92\x24\xb6\
\xb5\x54\x8b\x2a\xa5\x54\xa9\xd6\x24\x71\x92\xb1\x06\x28\xc4\x09\
\xe2\x75\xc2\x4f\x15\x88\xa7\x08\xc4\xb1\x12\x88\xc9\x78\x42\xb2\
\xce\x05\x7d\xfc\x7a\x2c\xe6\xbf\xe3\x1b\xd7\x23\x57\x3b\x2c\xff\
\xad\x80\xf5\x68\x63\x9e\x14\x98\x31\x55\xee\xb4\xee\x5c\x5d\x05\
\x9f\x2f\x08\xed\x82\xc5\x22\x5a\x16\x7b\xcf\xbf\xb8\x72\x5d\xd4\
\xd2\xe9\x2d\x3d\xe7\x40\xe7\x8c\x79\xa3\x11\xd7\x86\x97\xf0\x25\
\x14\x91\x62\x91\x08\x78\x13\x89\xf3\x8c\x46\x5f\xca\xe4\x98\x62\
\x6e\xdf\x7e\x17\xc7\x6c\x44\xc5\xb9\x3a\x13\x4e\x3a\xf3\xb7\x88\
\x35\x36\x15\xc2\xd8\xd0\xeb\x9e\xe4\x7c\x81\x13\x94\xdc\x40\x46\
\xf8\xbc\x87\x4b\x6a\xbc\xfb\x6b\x2e\xb3\xcc\x9f\x16\x25\x34\x34\
\xd8\xf1\x64\x32\x8a\x81\x19\x79\x8b\x58\x51\x55\xf2\x46\x83\x39\
\xf4\xf9\x6b\x4a\x51\xda\x29\x9f\x9f\x99\x08\x4b\x91\xc9\x3a\x9d\
\x2e\x43\xcb\x83\x19\xbd\x57\xff\x6c\x18\xee\x63\x55\x78\x34\x10\
\x80\x92\x2c\x42\x53\x8d\x55\x17\x2b\x29\x72\x91\x5a\x30\x73\x6b\
\x3f\x44\xdb\x5b\x3f\x9b\x35\x2f\xc7\xe3\x78\x13\x88\x4a\xd5\x75\
\x55\x56\x73\x86\x2d\x0f\x20\x93\xeb\xef\x23\x80\xb3\xb1\x16\x0f\
\xfb\xfd\x38\xee\x72\xe9\x62\x96\xdd\x48\x15\x69\xa9\x94\x21\xb7\
\x48\xac\x94\x89\x67\x23\xbe\x09\x7a\x71\xed\xb2\xe9\x53\x88\xd7\
\xd6\xc1\xb5\xc7\x8e\xb1\xde\x61\x5c\x3a\xea\xc8\x89\x59\x3b\xfa\
\xfc\x55\xf5\x4f\x00\x25\xf8\xd1\x9f\x5f\x58\x78\xc8\x2e\x0f\xdd\
\x1c\xbc\xfb\x58\x3c\xd2\x35\x08\x94\xd9\x31\xdf\xd7\x8f\xd6\x13\
\xbb\xd1\x54\x6f\xd3\xc5\x81\x40\x20\x37\xce\x78\x34\x9a\x2f\x53\
\xeb\x7a\x80\x95\xbe\x1b\xa8\xf2\x78\xb0\x51\x5c\xcc\x33\x13\xeb\
\x2b\xcc\xf8\xf0\xf2\x39\x5a\x4f\xb9\x70\xe6\x40\x59\x2e\x73\x22\
\x91\x40\x73\x73\x33\x0e\x7a\xbd\x5d\x4b\x0b\x0b\x23\xe9\xb5\x35\
\xa4\xd9\x1e\x50\x10\xe1\xdb\xe8\x68\x61\xb9\xc7\x53\xc0\xd1\x9e\
\xdf\x6b\xf3\x40\xa5\x40\x4c\xa8\x92\xd0\xf8\xfb\x83\x62\x01\xf6\
\xba\xdd\xb7\xa2\xc1\xe0\x94\x16\x0a\x4d\xd3\xd1\x0e\x82\xc4\x96\
\xab\x84\xe0\x10\x9c\xce\xd3\x06\x41\xb0\xff\x6b\x0b\xa9\x3a\x4e\
\x59\x59\x99\xd4\xc2\xe1\x39\x7a\x25\x9b\x11\x26\x7c\xff\x25\xc0\
\x00\x76\xaa\x7f\x46\x50\xbb\x01\x06\x00\x00\x00\x00\x49\x45\x4e\
\x44\xae\x42\x60\x82\
\x00\x00\x02\x5e\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\x00\x49\x44\x41\x54\x78\xda\x8c\
\x93\xbf\x6b\x14\x41\x1c\xc5\xdf\xcc\xed\x5d\x90\x03\x35\x45\x10\
\xe3\x05\x1b\x03\x62\x20\x60\xa3\x11\xd2\x04\x85\x83\x83\x98\x46\
\xb0\xb0\x57\xfc\x1b\x84\x10\x48\x23\xd8\xca\xa5\x16\x09\xd8\x58\
\xda\xa4\x90\x10\x24\xa9\x22\x7b\xc5\x25\x84\xfc\x2a\x2e\x9d\x64\
\xef\x12\x6f\x63\xf6\xf6\x97\xef\xbb\xee\x2c\x9b\xe5\x0a\xbf\xf0\
\x18\x66\x76\xbf\x6f\xde\x67\x76\x56\xbd\x58\x5c\x84\x52\x6a\x1e\
\xc0\x6d\x0c\xaf\xef\x61\x18\x1e\x44\x61\x88\x72\xa5\x92\x2c\x78\
\xed\x1f\x08\x76\xb7\xb0\xff\xcb\x87\x15\x45\x91\xac\xdd\xf9\xbc\
\xb4\xb4\xe2\x05\x01\x06\x9c\xfb\x7c\x39\x8a\x63\xd8\xb6\x8d\x4f\
\x6b\x6b\x6f\xf9\x5c\x51\xfb\xc6\xd1\xba\xff\x04\x7a\xf2\x11\xc6\
\x7e\x6e\x42\x8b\x33\xa5\x62\x36\x46\x34\x88\x06\x03\x0c\x2e\x2f\
\xe1\xba\x2e\xfa\xfd\x3e\xbe\x2e\x2f\xaf\xf0\xf9\x33\xf6\x4d\x16\
\xa3\x8d\x3d\xa4\x51\xc0\x26\x8a\x14\x0a\x25\xaa\x62\x59\x38\xea\
\x74\xd0\xda\xdb\x43\xfb\xf8\x18\xef\x9a\x4d\x3c\xa8\xd5\x9a\x67\
\xdd\xee\x07\xf6\xbc\xa6\xee\xe5\x4d\x2c\x31\x60\x69\xcd\x66\xad\
\x35\xc0\x24\xbf\xb9\xfb\xf3\xd9\x59\xd4\x67\x66\x32\xa4\x37\x71\
\xbc\x40\xa4\x85\x22\x92\x0e\x7c\x1f\x94\xb4\x26\x09\x12\x13\xf2\
\xff\x2f\x52\x66\xa0\xd2\x66\x31\x91\x03\xcc\x23\x5d\x2b\x97\x31\
\xc2\xd1\x71\x1c\x7c\x5c\x5d\xc5\xd3\xa9\xa9\x66\xdb\xb6\x5f\xee\
\xb4\x5a\x44\xa0\x41\x86\x40\x21\xc5\xc8\x23\x89\x89\x54\xa3\x5e\
\x87\x7c\xa9\x6a\xb5\x8a\x6f\xdb\xdb\xbd\xe4\x0c\xfc\xd4\x40\xa5\
\x08\x52\xf2\x69\x0d\x12\x0a\x26\xff\x76\xd3\x49\xea\xab\x06\x7c\
\x39\x89\x9d\x1a\xa8\x5c\x82\xa2\xc9\x55\x03\xcf\xcb\x12\x48\x6c\
\xb9\x56\x72\x37\x8a\x48\x79\x93\x52\xa9\x94\x19\xe8\x83\xf5\x75\
\xf4\x1c\x67\x44\x26\x66\x57\x5e\x5d\x18\x24\x9d\x3b\x5c\x33\x8a\
\x98\x5c\x4b\x7a\xeb\x4f\xb7\x7b\xd7\x39\x39\x39\xbf\x3e\x3d\xfd\
\xde\x30\xde\x1a\x1f\x7f\xfc\xaa\xd1\x98\x33\x48\x69\xee\x2c\x89\
\x6c\xed\x1b\x04\xea\xcc\x3d\x3c\xfc\x92\x5e\x8e\xa4\x6a\x13\x13\
\x31\x27\x73\x06\xa9\x68\x22\xeb\x44\xd7\xee\xe9\x69\x62\xd0\x4b\
\x65\xea\x66\xdf\x75\xbd\x0c\x89\x8a\xe5\x5e\xc8\xd9\xc8\x05\x13\
\x13\x4a\xb0\x3b\x1b\x1b\xa3\xd6\x90\xdf\xf7\x46\x11\x69\x58\x45\
\x17\x17\xe7\x1c\x46\xff\x0a\x30\x00\x2f\x1c\x22\x3c\xdf\xc8\x0e\
\x25\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x01\x09\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x00\xab\x49\x44\x41\x54\x78\xda\x62\
\xfc\xff\xff\x3f\x03\x45\x80\x91\x91\x11\x84\x1b\x81\x78\x0d\x94\
\xbd\x86\x48\x36\x48\x0f\xdc\x80\x75\x50\x9a\x14\x0c\xd3\xc3\x48\
\x91\x0f\x98\xa0\xf4\x26\x24\x31\x10\x3b\x12\x4d\x0c\x1b\x00\xcb\
\xb3\x40\x39\xcc\x48\x12\x7e\x40\xbc\x15\x88\xbd\x09\x18\xc0\x8c\
\x1c\x88\xe8\x78\x07\xb1\x61\x01\xf3\xc2\x6e\xac\xa6\xe3\x07\xbb\
\x91\xc3\x80\x99\x0c\x03\xf0\x7a\xe1\x20\xa9\x5e\x38\x8a\x66\x3a\
\x0b\x11\x2e\x38\x8a\xec\x05\x64\x0d\x27\x81\x78\x3e\x94\x86\x03\
\x2c\x49\x9e\x05\xea\x03\xfc\x09\x09\x5d\x23\x2e\xf5\xb7\xc9\x48\
\x84\xb7\x61\x5e\x90\x03\xe2\x3b\x40\xfc\x1c\x2a\xf1\x9c\x48\x36\
\x48\x8f\x1c\xc8\x3d\xfc\x40\xcc\x41\x64\xd4\x21\x83\xbf\x40\xfc\
\x03\x20\xc0\x00\xe4\x72\x29\xbb\x03\xed\x97\xc4\x00\x00\x00\x00\
\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\xcb\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\x6d\x49\x44\x41\x54\x78\xda\x8c\
\x52\x4b\x6b\x13\x61\x14\x3d\xdf\xcc\xe4\xd9\x4c\x42\x0d\xc3\xa4\
\x49\x4d\x9a\x20\xb1\x14\xc1\x65\xdb\x6d\x5c\xb6\xda\x2e\x5c\x8a\
\x3b\xd1\xa5\x3b\xc1\x45\x20\x5d\x14\x04\x17\x5d\x08\x56\x14\x17\
\x95\xba\xd1\x6d\x41\x29\xe8\x5f\xc8\xc2\x42\x4b\x83\xb4\x55\x84\
\xd8\x34\xef\x4c\x1e\xe3\xcc\x78\xef\xd0\x47\x2a\x5a\xbc\x70\xf8\
\x6e\xee\x77\xcf\x99\x73\x73\x3f\x71\x3b\x9f\xc7\x49\x08\x21\x6e\
\xd2\x31\x86\xbf\xc7\x27\xdb\xb6\x4b\x84\x73\x45\xc5\x71\x9c\xd3\
\x1f\x94\xc7\x5f\xe5\xf3\xab\x46\xbf\x0f\x8b\xea\x27\x77\xc5\x62\
\x11\x6b\x9b\x9b\x0f\xf8\x1b\x84\xdd\x61\x01\xc9\xb6\x2c\x0c\x41\
\x08\xfa\x82\x35\x18\xa0\xdb\xe9\xa0\xdd\x6e\xa3\xd5\x6a\xb9\xe7\
\xfb\xa5\xa5\x55\xba\xbf\xd1\x33\x8c\x89\xfa\xd1\x11\x18\xa2\x52\
\x81\x24\xed\xec\xb8\x89\x45\x02\x04\x21\x0b\x01\xbf\xa2\x20\xe0\
\xf5\x42\x91\x24\x1e\x0b\xd5\x6a\x15\xcf\xd6\xd7\x91\x9b\x9a\x7a\
\x5e\xda\xde\xbe\xf3\x7d\x7f\x1f\xe2\x58\x40\x71\x6d\x50\x83\xa7\
\xdb\x45\x5f\xd7\x25\xf6\x28\xcb\x32\xfc\xc7\x16\xbb\xe4\x26\x97\
\xcb\xb9\xe3\xa8\xaa\x8a\x8f\xc5\x62\xcd\x57\x2e\x43\x50\x3f\x0f\
\xc8\x02\x12\x61\x8e\x0a\xf1\x0f\x2b\x2b\x99\x82\x10\xb8\x28\xb8\
\x67\x71\x71\xf1\x3e\xa5\x3f\x08\x1b\xf2\xe4\xe4\x64\x94\xb0\x50\
\x28\x14\x9e\x36\x9b\xcd\x59\x4d\xd3\x5c\xdb\x0a\x8d\x31\x0c\xd7\
\x95\xdf\x8f\x6c\x36\x3b\xbb\xbc\xbc\x3c\x5f\x2a\x95\x76\x2a\x95\
\xca\x17\xc5\x34\x4d\x2d\x16\x8b\xa5\x89\x8c\x7a\xbd\x8e\x70\x38\
\xec\x9e\x7d\xda\x44\xb3\xd9\x02\xd7\x7b\xbd\x1e\xa8\x0f\xd1\x68\
\x14\x91\x48\x18\x5b\x5b\xbb\x08\x85\xd4\x34\x73\x59\x40\x4f\x24\
\x12\xa9\x5a\xad\x06\x52\x24\x81\x08\xf6\xf6\xbe\xc1\x30\xba\x38\
\x5b\xb1\x0c\x8f\x47\x26\x11\xdb\xed\xe9\xf5\x7e\x61\x64\x64\x34\
\xc5\x5c\x69\x30\x18\xc4\x48\x20\xd9\xa1\xb5\x1d\xf1\x7a\xea\x1d\
\xd8\xb6\x42\x76\x55\x04\x02\xe1\x73\x90\x24\xaf\xdb\xb3\x71\xeb\
\x1d\xc6\xc6\x52\x49\xe6\x2a\x64\x55\x23\xcb\x19\xbe\x60\x17\x4c\
\x0e\x04\xd4\x7f\xfe\x89\xdc\x33\xfd\x7a\x1a\xbe\x4b\x83\x0c\x73\
\x59\xc0\x1f\x0c\x86\xc8\x16\xad\x62\x6e\x01\xa9\xd4\x55\x12\xe1\
\x57\x38\xbc\x8d\xb3\x7c\x7c\x5c\x47\x32\x79\xdd\xcd\x99\xab\x18\
\x86\xe1\x31\x4d\x81\x60\x50\xa5\x07\xf3\xd3\xc5\xff\x06\x73\x45\
\x24\x12\x79\x48\x2b\xd2\xb8\xd0\x68\x34\xe4\x83\x83\x83\x47\x77\
\xd7\xc8\xcd\x35\xc0\x27\x76\xf1\xf6\xf3\x0b\xd4\xcb\x69\x8c\xaa\
\x97\xf1\xe6\xf1\x3c\xae\x4c\x4c\x3c\x21\x8e\xc5\xfd\xf4\x72\x0f\
\xf9\xe4\x81\xe3\x0c\x7d\x66\x66\xc9\xf9\x23\x2c\x9a\x87\x61\x5a\
\x96\x63\xd2\xc9\x3d\x27\xfd\xcc\x3d\x1d\xce\xa7\xeb\xf0\x68\xda\
\x3d\xc7\xb6\x33\x17\xd9\x16\x92\xf4\xd5\x3c\x3c\x7c\xd9\xa7\xe7\
\xcc\xf1\x5b\x80\x01\x00\x49\x55\x5c\xb5\x47\x6c\x1a\x9a\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
"qt_resource_name = b"\
\x00\x05\
\x00\x6f\xa6\x53\
\x00\x69\
\x00\x63\x00\x6f\x00\x6e\x00\x73\
\x00\x0b\
\x06\x9d\x82\xc7\
\x00\x6e\
\x00\x6f\x00\x74\x00\x65\x00\x70\x00\x61\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x09\
\x05\xa8\xae\x07\
\x00\x76\
\x00\x63\x00\x6f\x00\x64\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x21\
\x07\xbc\x4c\x47\
\x00\x63\
\x00\x6c\x00\x69\x00\x70\x00\x62\x00\x6f\x00\x61\x00\x72\x00\x64\x00\x2d\x00\x70\x00\x61\x00\x73\x00\x74\x00\x65\x00\x2d\x00\x64\
\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x74\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\
\
\x00\x0f\
\x0b\x15\x80\xa7\
\x00\x61\
\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x63\x00\x75\x00\x72\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x05\xf5\x24\x87\
\x00\x6d\
\x00\x64\x00\x35\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0f\
\x0a\x36\x2b\xe7\
\x00\x64\
\x00\x69\x00\x73\x00\x6b\x00\x2d\x00\x70\x00\x65\x00\x6e\x00\x63\x00\x69\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x00\xed\x6c\xc7\
\x00\x65\
\x00\x72\x00\x77\x00\x65\x00\x69\x00\x6d\x00\x61\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0f\
\x0a\x8d\x10\xa7\
\x00\x75\
\x00\x69\x00\x2d\x00\x74\x00\x61\x00\x62\x00\x2d\x00\x70\x00\x6c\x00\x75\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x08\
\x00\x38\x58\x27\
\x00\x74\
\x00\x69\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x08\
\x00\x9e\x5a\x27\
\x00\x64\
\x00\x69\x00\x73\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x18\
\x01\xbf\xf2\x67\
\x00\x61\
\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x63\x00\x75\x00\x72\x00\x76\x00\x65\x00\x2d\x00\x31\x00\x38\x00\x30\x00\x2d\x00\x6c\
\x00\x65\x00\x66\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x03\x76\xc2\x07\
\x00\x71\
\x00\x75\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x06\x1a\x8f\xe7\
\x00\x6f\
\x00\x70\x00\x65\x00\x6e\x00\x70\x00\x69\x00\x63\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x1d\
\x02\x67\x49\x67\
\x00\x62\
\x00\x6c\x00\x75\x00\x65\x00\x2d\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x2d\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2d\
\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x09\xa2\x42\x07\
\x00\x73\
\x00\x63\x00\x69\x00\x73\x00\x73\x00\x6f\x00\x72\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x12\
\x08\xc6\xb8\xe7\
\x00\x61\
\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x2e\x00\x70\x00\x6e\
\x00\x67\
\x00\x11\
\x01\x5f\xdb\x07\
\x00\x64\
\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\
\
\x00\x13\
\x08\x0f\xce\x87\
\x00\x73\
\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2d\x00\x69\x00\x6e\x00\x70\x00\x75\x00\x74\x00\x2e\x00\x70\
\x00\x6e\x00\x67\
\x00\x0b\
\x0a\x2a\x77\xe7\
\x00\x70\
\x00\x72\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\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\x13\x00\x00\x00\x02\
\x00\x00\x01\x32\x00\x00\x00\x00\x00\x01\x00\x00\x2c\xee\
\x00\x00\x01\x48\x00\x00\x00\x00\x00\x01\x00\x00\x30\xd1\
\x00\x00\x00\xf2\x00\x00\x00\x00\x00\x01\x00\x00\x26\x09\
\x00\x00\x02\x56\x00\x00\x00\x00\x00\x01\x00\x00\x46\x74\
\x00\x00\x01\x5e\x00\x00\x00\x00\x00\x01\x00\x00\x32\xd0\
\x00\x00\x01\xce\x00\x00\x00\x00\x00\x01\x00\x00\x3e\x2a\
\x00\x00\x01\x94\x00\x00\x00\x00\x00\x01\x00\x00\x35\x4b\
\x00\x00\x00\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x0c\xbd\
\x00\x00\x00\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x15\x55\
\x00\x00\x01\xb2\x00\x00\x00\x00\x00\x01\x00\x00\x38\x4d\
\x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x00\x44\x00\x00\x00\x00\x00\x01\x00\x00\x10\x1d\
\x00\x00\x02\x7e\x00\x00\x00\x00\x00\x01\x00\x00\x48\xd6\
\x00\x00\x02\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x43\x5a\
\x00\x00\x02\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x40\xa4\
\x00\x00\x02\xaa\x00\x00\x00\x00\x00\x01\x00\x00\x49\xe3\
\x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x23\x60\
\x00\x00\x01\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x2b\x01\
\x00\x00\x00\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x12\xec\
"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\x13\x00\x00\x00\x02\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x01\x32\x00\x00\x00\x00\x00\x01\x00\x00\x2c\xee\
\x00\x00\x01\x81\xd2\xe1\xb3\x04\
\x00\x00\x01\x48\x00\x00\x00\x00\x00\x01\x00\x00\x30\xd1\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x00\xf2\x00\x00\x00\x00\x00\x01\x00\x00\x26\x09\
\x00\x00\x01\x81\xd2\x2d\x9a\xb7\
\x00\x00\x02\x56\x00\x00\x00\x00\x00\x01\x00\x00\x46\x74\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x01\x5e\x00\x00\x00\x00\x00\x01\x00\x00\x32\xd0\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x01\xce\x00\x00\x00\x00\x00\x01\x00\x00\x3e\x2a\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x01\x94\x00\x00\x00\x00\x00\x01\x00\x00\x35\x4b\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x00\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x0c\xbd\
\x00\x00\x01\x81\xd2\x6b\x9a\xdd\
\x00\x00\x00\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x15\x55\
\x00\x00\x01\x81\xd2\x6a\x9e\xe1\
\x00\x00\x01\xb2\x00\x00\x00\x00\x00\x01\x00\x00\x38\x4d\
\x00\x00\x01\x81\xd2\x6c\x5b\xf9\
\x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x01\x81\xd2\xa0\x2d\xeb\
\x00\x00\x00\x44\x00\x00\x00\x00\x00\x01\x00\x00\x10\x1d\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x02\x7e\x00\x00\x00\x00\x00\x01\x00\x00\x48\xd6\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x02\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x43\x5a\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x02\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x40\xa4\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x02\xaa\x00\x00\x00\x00\x00\x01\x00\x00\x49\xe3\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x23\x60\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x01\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x2b\x01\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
\x00\x00\x00\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x12\xec\
\x00\x00\x01\x7d\x14\x14\xa4\xc8\
"qt_version = [int(v) for v in QtCore.qVersion().split('.')]
if qt_version < [5, 8, 0]:rcc_version = 1qt_resource_struct = qt_resource_struct_v1
else:rcc_version = 2qt_resource_struct = qt_resource_struct_v2def 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()

编写程序主入口run.py

  • 本程序实现了一个小工具箱功能,每使用一个工具,会另开窗口实现其功能
import json
import sysimport requestsfrom base import Ui_Form as u0
from erweima import Ui_Form as u1
from filemd5 import Ui_Form as u2
from picscale import Ui_Form as u3
from vcode import Ui_Form as u4
from timetrans import Ui_Form as u5
from PyQt5.QtWidgets import *
import qrcode
from PyQt5.QtGui import QPixmap
import hashlib
from PIL import Image
from database_config import MysqlHelper
import timeclass MainWindow(QMainWindow, u0):def __init__(self, parent=None):super(MainWindow, self).__init__(parent)self.setupUi(self)self.pushButton_erweima.clicked.connect(self.slot1)self.pushButton_filemd5.clicked.connect(self.slot2)self.pushButton_picscale.clicked.connect(self.slot3)self.pushButton_getvcode.clicked.connect(self.slot4)self.pushButton_time.clicked.connect(self.slot5)def slot1(self):win1.show()def slot2(self):win2.show()def slot3(self):win3.show()def slot4(self):win4.show()def slot5(self):win5.show()class ErweimaWindow(QMainWindow, u1):def __init__(self, parent=None):super(ErweimaWindow, self).__init__(parent)self.setupUi(self)self.pushButton.clicked.connect(self.buttonClickedCreate)def buttonClickedCreate(self):tmp_text = self.textEdit.toPlainText()if tmp_text:qrcode.make(tmp_text).save("./erweima.jpg")tmp_pixmap = QPixmap("./erweima.jpg")self.label.setPixmap(tmp_pixmap)self.label.setScaledContents(True)class Filemd5Window(QMainWindow, u2):def __init__(self, parent=None):super(Filemd5Window, self).__init__(parent)self.setupUi(self)self.pushButton.clicked.connect(self.buttonClickedOpenFile)def buttonClickedOpenFile(self):filePath, filetype = QFileDialog.getOpenFileName(self, "选取文件", "./","*.*")if filePath:with open(filePath, 'rb') as tmp:res_md5 = hashlib.md5(tmp.read()).hexdigest()self.lineEdit.setText(res_md5)class PicscaleWindow(QMainWindow, u3):def __init__(self, parent=None):super(PicscaleWindow, self).__init__(parent)self.setupUi(self)self.pushButton_2.clicked.connect(self.buttonClickedOpenImage)def buttonClickedOpenImage(self):# 要想打开多种格式图片"*.jpg;*.png;*.jpeg"filePath, filetype = QFileDialog.getOpenFileName(self, "打开图片", "", "*.jpg;*.png;*.jpeg")if filePath:tmp_text = self.lineEdit_2.text()if tmp_text:if ',' in tmp_text:w = tmp_text.split(',')[0]h = tmp_text.split(',')[1]img = Image.open(filePath)out = img.resize((int(w), int(h)))out.save('./picscale.png')out.show()if ',' in tmp_text:w = tmp_text.split(',')[0]h = tmp_text.split(',')[1]img = Image.open(filePath)out = img.resize((int(w), int(h)))out.save('./picscale.png')out.show()class VcodeWindow(QMainWindow, u4):def __init__(self, parent=None):super(VcodeWindow, self).__init__(parent)self.setupUi(self)self.pushButton.clicked.connect(self.buttonClickedGetVcode)self.pushButton_2.clicked.connect(self.buttonClickedGetVcodeJiasuqi)def buttonClickedGetVcode(self):tmp_text = self.lineEdit.text()if tmp_text:sql = 'SELECT code FROM `sms`.`sms_code` WHERE `phone` =' + tmp_text + ' and status=0 order by id DESC'res = MysqlHelper(host='10.0.41.188', port='33066', user='root', passwd='xxxxxx', db='sms').get_new_sms(sql)# textEdit追加模式,滚动条self.textEdit.append(res)def buttonClickedGetVcodeJiasuqi(self):tmp_text = self.lineEdit_2.text()if tmp_text:headers = {"Cookie": "JSESSIONID=aaapofU69lRqm6FOSJn5x"}url = "http://sms-admin-test.jiezhansifang.com/api/smscode/getSmsCodeList.do?status=&phone=" + tmp_textres = requests.get(url=url, headers=headers)tmp_str = res.textif "</html>" not in tmp_str:# str 转 字典tmp_dict = json.loads(tmp_str)tmp_result = tmp_dict['data']['list']# 列表不为空if len(tmp_result):result = tmp_dict['data']['list'][0]['code']self.textEdit.append(result)class TimetransWindow(QMainWindow, u5):def __init__(self, parent=None):super(TimetransWindow, self).__init__(parent)self.setupUi(self)datetime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time()))self.lineEdit.setText(datetime)datetime1 = str(round(time.time() * 1000))self.lineEdit_2.setText(datetime1)self.pushButton.clicked.connect(self.buttonClickedRefreshTime)self.pushButton.setStyleSheet("QPushButton:hover{background-color:rgb(0,255,255)}")def buttonClickedRefreshTime(self):datetime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time()))self.lineEdit.setText(datetime)datetime1 = str(round(time.time() * 1000))self.lineEdit_2.setText(datetime1)if __name__ == "__main__":app = QApplication(sys.argv)win0 = MainWindow()win0.show()win1 = ErweimaWindow()win2 = Filemd5Window()win3 = PicscaleWindow()win4 = VcodeWindow()win5 = TimetransWindow()sys.exit(app.exec_())
  • 程序主界面

  • 文件md5值功能界面

pyqt5做一个工具箱相关推荐

  1. 用pyqt5做一个能python程序能插入图片的ide

    之前只是放到github上了,现在一想应该开源,大家想继续做好这个ide的都能从这里起步. #注意在.py文件相同目录下放一个1.png做测试图片 #本质就是用html来实现图片#写在前面的话:这个程 ...

  2. pythongui日历控件_“五一”快到了,用Python中PyQt5做一个日历,QCalendar控件详解...

    前面内容,我们详细了解了PyQt5中的一些常用控件 精彩内容回顾 Python用PyQt5设计界面,如何正确显示一幅图片,QPixmap控件详解 拥有漂亮的笔刷才能绘制多彩界面,PythonPyQt5 ...

  3. 使用pyqt5的日期控件做一个小日历方便查看

    日历的制作比较简单,因为pyqt5已经自带了相关的日期控件,只需要明白如何调用再加上比较个性化的功能,这个日历的小控件就制作完成了. [阅读全文] 日历实现代码量不多,需要可直接执行的源码在文末获取下 ...

  4. pyqt5做了一个无线网连接器,与君共勉

    最近打开电脑wifi连接老是出现各种问题,于是突发奇想,我自己能不能做一个wifi连接的小工具岂不是就没有这些麻烦了,居然成功了. 为了方便不会python的朋友也能够使用,于是我用pyqt5将其做成 ...

  5. 前端的小玩意(9.5)——做一个仿360工具箱的web页面(完结篇,可以跑起来的工具箱)

    前端的小玩意(9.1)--做一个仿360工具箱的web页面(Tab按钮切换) http://blog.csdn.net/qq20004604/article/details/52216203 前端的小 ...

  6. 前端的小玩意(9.3)——做一个仿360工具箱的web页面(我的工具里的模板和样式)

    前端的小玩意(9.1)--做一个仿360工具箱的web页面(Tab按钮切换) http://blog.csdn.net/qq20004604/article/details/52216203 前端的小 ...

  7. 【pyqt5】【无敌基础的入门】做一个简单的图像显示器(完整代码+完整注释+封装)

    文章目录 学习目录 一个Demo的制作 1.用Designer直接画图 2.编辑.py实现函数功能 call_trans.py trans.py 界面展示 3.封装成exe 从安装到查资料(Debug ...

  8. python写一个表白程序-用Python做一个情人节表白神器

    思路来自于「Python 编程时光」,我在其之上改进了一下,主要是通过tkinter编写一个界面方便使用,大家可以关注「Python 编程时光」这一良心公众号. 本文最后给出了打包好的软件,无需安装P ...

  9. Android Annotation-让你的代码更加优雅(二)做一个Java诗人(JavaPoet)

    上篇回顾 上一篇我们按照思维导图,介绍了注解的基础知识,如何定义一个注解,提示性注解,运行时注解的写法和用法.没有看过第一篇,又对注解知识相对陌生的同学,建议先食用第一篇.本篇将重点介绍编译期注解,自 ...

最新文章

  1. mac os 系统密码正确的 但是进不了系统
  2. AI 学习之路——轻松初探 Python 篇(一)
  3. 利用koa实现mongodb数据库的增删改查
  4. 树莓派蓝屏_树莓派刷写Windows 10 ARM版后成功运行桌面程序
  5. Greenplum roaring bitmap与业务场景 (类阿里云RDS PG varbitx, 应用于海量用户 实时画像和圈选、透视)
  6. 4个空格 tab vetur_python学习的10个小技巧
  7. mysql undo log回收_MySQL5.7 可以回收(收缩)undo log回滚日志物理文件空间
  8. DHCP+TFTP+PXE自动网络引导安装Linux操作系统
  9. Compound社区发起一项讨论 向5000名早期活跃用户发放总供应量5%的COMP代币
  10. 不用ajax调用搞后台小技巧
  11. ui unity 图片高亮_Unity5 UI图片变灰处理(UGUI)(二)
  12. 【linux】16进制格式查看命令hexdump
  13. JQuery autocomplete使用手册
  14. Win10 虚拟机安装 Windows xp(professional sp3)简记(非教学)
  15. 费马小定理 费马大定理 数论
  16. 抖音账号如何打造,抖音直播带货怎么做:国仁楠哥
  17. 为Linux草根队加油
  18. 【unity】动画状态机中Transition的settings两段动画如何设置?
  19. 面试官硬核提问,教你轻松应对(面试小技巧)1
  20. Android初学之十二:Broadcast

热门文章

  1. 贤鱼的刷题日常(数据结构栈学习)--P1175 表达式的转换--题目详解
  2. 疼痛的脑成像:最新进展
  3. 基于php+mysql的手机销售管理系统
  4. C语言实现飞翔的小鸟小游戏
  5. msvc2017配置qt5.12.8 x86和x64库版本切换
  6. 去中心化应用:区块链技术概述
  7. 基于EasyNVR实现RTSP_Onvif监控摄像头Web无插件化直播监控之视频直播网络占用率大如何解决的问题分析
  8. 计算机工具都有什么,电脑上有哪些特别好用的小工具?盘点10大PC工具,个个都精品...
  9. uniapp 蓝牙连接测温仪
  10. 若依路由刷新缓存页面 + router.push