diff --git a/colourterm.py b/colourterm.py index 125fd29..333028b 100755 --- a/colourterm.py +++ b/colourterm.py @@ -1,22 +1,22 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- import sys import logging -from PyQt4 import QtGui +from PyQt5 import QtWidgets from colourterm.mainwindow import MainWindow from colourterm.resources import init_resources, cleanup_resources -if __name__ == "__main__": +if __name__ == '__main__': logging.basicConfig(level=logging.DEBUG) - app = QtGui.QApplication(sys.argv) - app.setOrganizationName(u'Snyman') - app.setOrganizationDomain(u'snyman.info') - app.setApplicationName(u'ColourTerm') + app = QtWidgets.QApplication(sys.argv) + app.setOrganizationName('Snyman') + app.setOrganizationDomain('snyman.info') + app.setApplicationName('ColourTerm') init_resources() main_window = MainWindow() main_window.show() - exit_code = app.exec_() + exit_code = app.exec() cleanup_resources() sys.exit(exit_code) diff --git a/colourterm/__init__.py b/colourterm/__init__.py index 5a3e7a9..9ae6116 100644 --- a/colourterm/__init__.py +++ b/colourterm/__init__.py @@ -1,14 +1,15 @@ # -*- coding: utf-8 -*- import re -from PyQt4 import QtCore, QtGui +from PyQt5 import QtCore, QtWidgets try: from_utf8 = QtCore.QString.fromUtf8 except AttributeError: - from_utf8 = lambda s: s + def from_utf8(s): + return s -class SComboBox(QtGui.QComboBox): +class SComboBox(QtWidgets.QComboBox): """ Special combobox derivative that emits a signal when a key is pressed. """ @@ -19,7 +20,7 @@ class SComboBox(QtGui.QComboBox): Override the inherited keyPressEvent to emit a signal. """ self.keyPressed.emit(event.key()) - return QtGui.QComboBox.keyPressEvent(self, event) + return QtWidgets.QComboBox.keyPressEvent(self, event) class Highlight(object): @@ -38,7 +39,7 @@ class Highlight(object): def translate(context, string, description=None): - return QtGui.QApplication.translate(context, string, description, QtGui.QApplication.UnicodeUTF8) + return QtWidgets.QApplication.translate(context, string, description) def create_default_highlights(): @@ -49,8 +50,8 @@ def create_default_highlights(): ] -from colourterm.settingsdialog import SettingsDialog -from colourterm.connectdialog import ConnectDialog +from colourterm.settingsdialog import SettingsDialog # noqa +from colourterm.connectdialog import ConnectDialog # noqa __all__ = ['SettingsDialog', 'ConnectDialog', 'SComboBox', 'Highlight', 'translate', 'from_utf8'] diff --git a/colourterm/connectdialog.py b/colourterm/connectdialog.py index 6e5733d..7f07a72 100644 --- a/colourterm/connectdialog.py +++ b/colourterm/connectdialog.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- import os -from PyQt4 import QtCore, QtGui +from PyQt5 import QtWidgets from serial import Serial, FIVEBITS, SIXBITS, SEVENBITS, EIGHTBITS, PARITY_NONE, PARITY_EVEN, PARITY_ODD, PARITY_MARK,\ PARITY_SPACE, STOPBITS_ONE, STOPBITS_ONE_POINT_FIVE, STOPBITS_TWO, SerialException from serial.tools import list_ports @@ -56,21 +56,21 @@ class UiConnectDialog(object): """ Set up the user interface """ - self.device_layout = QtGui.QGridLayout(connect_dialog) + self.device_layout = QtWidgets.QGridLayout(connect_dialog) self.device_layout.setSpacing(8) self.device_layout.setContentsMargins(8, 8, 8, 0) self.device_layout.setObjectName(from_utf8('device_layout')) - self.port_label = QtGui.QLabel(connect_dialog) + self.port_label = QtWidgets.QLabel(connect_dialog) self.port_label.setObjectName(from_utf8('port_label')) self.device_layout.addWidget(self.port_label, 0, 0, 1, 1) - self.port_edit = QtGui.QComboBox(connect_dialog) + self.port_edit = QtWidgets.QComboBox(connect_dialog) self.port_edit.setObjectName(from_utf8('port_edit')) self.port_edit.setEditable(True) self.device_layout.addWidget(self.port_edit, 0, 1, 1, 1) - self.baud_label = QtGui.QLabel(connect_dialog) + self.baud_label = QtWidgets.QLabel(connect_dialog) self.baud_label.setObjectName(from_utf8('baud_label')) self.device_layout.addWidget(self.baud_label, 1, 0, 1, 1) - self.baud_combobox = QtGui.QComboBox(connect_dialog) + self.baud_combobox = QtWidgets.QComboBox(connect_dialog) self.baud_combobox.setObjectName(from_utf8('baud_combobox')) self.baud_combobox.addItem(from_utf8('')) self.baud_combobox.addItem(from_utf8('')) @@ -83,29 +83,29 @@ class UiConnectDialog(object): self.baud_combobox.addItem(from_utf8('')) self.baud_combobox.addItem(from_utf8('')) self.device_layout.addWidget(self.baud_combobox, 1, 1, 1, 1) - self.data_bits_label = QtGui.QLabel(connect_dialog) + self.data_bits_label = QtWidgets.QLabel(connect_dialog) self.data_bits_label.setObjectName(from_utf8('data_bits_label')) self.device_layout.addWidget(self.data_bits_label, 2, 0, 1, 1) - self.data_bits_combobox = QtGui.QComboBox(connect_dialog) + self.data_bits_combobox = QtWidgets.QComboBox(connect_dialog) self.data_bits_combobox.setObjectName(from_utf8('data_bits_combobox')) self.data_bits_combobox.addItem(from_utf8('')) self.data_bits_combobox.addItem(from_utf8('')) self.data_bits_combobox.addItem(from_utf8('')) self.data_bits_combobox.addItem(from_utf8('')) self.device_layout.addWidget(self.data_bits_combobox, 2, 1, 1, 1) - self.stop_bits_label = QtGui.QLabel(connect_dialog) + self.stop_bits_label = QtWidgets.QLabel(connect_dialog) self.stop_bits_label.setObjectName(from_utf8('stop_bits_label')) self.device_layout.addWidget(self.stop_bits_label, 3, 0, 1, 1) - self.stop_bits_combobox = QtGui.QComboBox(connect_dialog) + self.stop_bits_combobox = QtWidgets.QComboBox(connect_dialog) self.stop_bits_combobox.setObjectName(from_utf8('stop_bits_combobox')) self.stop_bits_combobox.addItem(from_utf8('')) self.stop_bits_combobox.addItem(from_utf8('')) self.stop_bits_combobox.addItem(from_utf8('')) self.device_layout.addWidget(self.stop_bits_combobox, 3, 1, 1, 1) - self.parity_label = QtGui.QLabel(connect_dialog) + self.parity_label = QtWidgets.QLabel(connect_dialog) self.parity_label.setObjectName(from_utf8('parity_label')) self.device_layout.addWidget(self.parity_label, 4, 0, 1, 1) - self.parity_combobox = QtGui.QComboBox(connect_dialog) + self.parity_combobox = QtWidgets.QComboBox(connect_dialog) self.parity_combobox.setObjectName(from_utf8('parity_combobox')) self.parity_combobox.addItem(from_utf8('')) self.parity_combobox.addItem(from_utf8('')) @@ -113,27 +113,27 @@ class UiConnectDialog(object): self.parity_combobox.addItem(from_utf8('')) self.parity_combobox.addItem(from_utf8('')) self.device_layout.addWidget(self.parity_combobox, 4, 1, 1, 1) - self.handshake_label = QtGui.QLabel(connect_dialog) + self.handshake_label = QtWidgets.QLabel(connect_dialog) self.handshake_label.setObjectName(from_utf8('handshake_label')) self.device_layout.addWidget(self.handshake_label, 0, 2, 1, 1) - self.software_checkbox = QtGui.QCheckBox(connect_dialog) + self.software_checkbox = QtWidgets.QCheckBox(connect_dialog) self.software_checkbox.setObjectName(from_utf8('software_checkbox')) self.device_layout.addWidget(self.software_checkbox, 0, 3, 1, 1) - self.hardware_checkbox = QtGui.QCheckBox(connect_dialog) + self.hardware_checkbox = QtWidgets.QCheckBox(connect_dialog) self.hardware_checkbox.setObjectName(from_utf8('hardware_checkbox')) self.device_layout.addWidget(self.hardware_checkbox, 1, 3, 1, 1) - self.open_mode_label = QtGui.QLabel(connect_dialog) + self.open_mode_label = QtWidgets.QLabel(connect_dialog) self.open_mode_label.setObjectName(from_utf8('open_mode_label')) self.device_layout.addWidget(self.open_mode_label, 2, 2, 1, 1) - self.reading_checkbox = QtGui.QCheckBox(connect_dialog) + self.reading_checkbox = QtWidgets.QCheckBox(connect_dialog) self.reading_checkbox.setChecked(True) self.reading_checkbox.setObjectName(from_utf8('reading_checkbox')) self.device_layout.addWidget(self.reading_checkbox, 2, 3, 1, 1) - self.writing_checkbox = QtGui.QCheckBox(connect_dialog) + self.writing_checkbox = QtWidgets.QCheckBox(connect_dialog) self.writing_checkbox.setChecked(True) self.writing_checkbox.setObjectName(from_utf8('writing_checkbox')) self.device_layout.addWidget(self.writing_checkbox, 3, 3, 1, 1) - self.button_box = QtGui.QDialogButtonBox(QtGui.QDialogButtonBox.Ok | QtGui.QDialogButtonBox.Cancel) + self.button_box = QtWidgets.QDialogButtonBox(QtWidgets.QDialogButtonBox.Ok | QtWidgets.QDialogButtonBox.Cancel) self.device_layout.addWidget(self.button_box, 5, 0, 1, 4) self.retranslate_ui(connect_dialog) @@ -181,18 +181,17 @@ class UiConnectDialog(object): self.writing_checkbox.setText(translate('ConnectDialog', 'Writing')) -class ConnectDialog(QtGui.QDialog, UiConnectDialog): +class ConnectDialog(QtWidgets.QDialog, UiConnectDialog): def __init__(self, parent): - #super(ConnectDialog, self).__init__() - QtGui.QDialog.__init__(self, parent=parent) + super().__init__(parent=parent) self.setup_ui(self) def get_port(self): - return unicode(self.port_edit.currentText()) + return self.port_edit.currentText() def get_baud(self): - return int(unicode(self.baud_combobox.currentText())) + return int(self.baud_combobox.currentText()) def get_data_bits(self): return DATA_BITS[str(self.data_bits_combobox.currentText())] diff --git a/colourterm/cwebview.py b/colourterm/cwebview.py index 58f8934..82330f9 100644 --- a/colourterm/cwebview.py +++ b/colourterm/cwebview.py @@ -1,10 +1,10 @@ """ This module contains a child class of QWebView in order to reimplement the wheelEvent event handler. """ -from PyQt4 import QtCore, QtWebKit +from PyQt5 import QtCore, QtWebKitWidgets -class CWebView(QtWebKit.QWebView): +class CWebView(QtWebKitWidgets.QWebView): """ This is a reimplementation of QWebView in order to override the wheelEvent method. """ @@ -12,5 +12,4 @@ class CWebView(QtWebKit.QWebView): def wheelEvent(self, event): self.scrolled.emit() - QtWebKit.QWebView.wheelEvent(self, event) - + super().wheelEvent(event) diff --git a/colourterm/mainwindow.py b/colourterm/mainwindow.py index cb4f162..3a6bf53 100644 --- a/colourterm/mainwindow.py +++ b/colourterm/mainwindow.py @@ -3,7 +3,7 @@ import os import threading from string import printable -from PyQt4 import QtCore, QtGui, QtWebKit +from PyQt5 import QtCore, QtGui, QtWidgets, QtWebKit from serial import SerialException, serial_for_url from select import error as SelectError from socket import error as SocketError @@ -13,7 +13,7 @@ from os.path import getsize from colourterm import SettingsDialog, ConnectDialog, SComboBox, Highlight, from_utf8, translate, \ create_default_highlights from colourterm.cwebview import CWebView -from colourterm.xmodem import XMODEM1k, XMODEM +from colourterm.xmodem import XMODEM class MessageType(object): @@ -59,17 +59,17 @@ class UiMainWindow(object): main_window.setObjectName(from_utf8('MainWindow')) main_window.resize(800, 600) main_window.setWindowIcon(QtGui.QIcon(':/icons/colourterm-icon.ico')) - self.central_widget = QtGui.QWidget(main_window) + self.central_widget = QtWidgets.QWidget(main_window) self.central_widget.setObjectName(from_utf8('central_widget')) - self.central_layout = QtGui.QVBoxLayout(self.central_widget) + self.central_layout = QtWidgets.QVBoxLayout(self.central_widget) self.central_layout.setSpacing(0) self.central_layout.setContentsMargins(0, 0, 0, 0) self.central_layout.setObjectName(from_utf8('central_layout')) - self.find_widget = QtGui.QWidget(main_window) + self.find_widget = QtWidgets.QWidget(main_window) self.find_widget.setVisible(False) - self.find_widget.setSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Minimum) + self.find_widget.setSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Minimum) self.find_widget.setObjectName(from_utf8('find_widget')) - self.find_layout = QtGui.QHBoxLayout(self.find_widget) + self.find_layout = QtWidgets.QHBoxLayout(self.find_widget) self.find_layout.setContentsMargins(0, 2, 0, 2) self.find_layout.setObjectName(from_utf8('find_layout')) self.find_combobox = SComboBox(self.find_widget) @@ -81,11 +81,11 @@ class UiMainWindow(object): self.output_browser = CWebView(self.central_widget) self.output_browser.setHtml('
' %
-                                    str(QtGui.QApplication.palette().color(QtGui.QPalette.Text).name()))
-        self.output_browser.setSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
+                                    str(QtWidgets.QApplication.palette().color(QtGui.QPalette.Text).name()))
+        self.output_browser.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding)
         self.output_browser.setObjectName(from_utf8('output_browser'))
         self.central_layout.addWidget(self.output_browser)
-        self.send_layout = QtGui.QHBoxLayout()
+        self.send_layout = QtWidgets.QHBoxLayout()
         self.send_layout.setSpacing(8)
         self.send_layout.setContentsMargins(0, 4, 0, 0)
         self.send_layout.setObjectName(from_utf8('sendLayout'))
@@ -94,8 +94,8 @@ class UiMainWindow(object):
         self.send_combobox.setEnabled(False)
         self.send_combobox.setObjectName(from_utf8('sendComboBox'))
         self.send_layout.addWidget(self.send_combobox)
-        self.send_button = QtGui.QPushButton(self.central_widget)
-        size_policy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed)
+        self.send_button = QtWidgets.QPushButton(self.central_widget)
+        size_policy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
         size_policy.setHorizontalStretch(0)
         size_policy.setVerticalStretch(0)
         size_policy.setHeightForWidth(self.send_button.sizePolicy().hasHeightForWidth())
@@ -106,30 +106,30 @@ class UiMainWindow(object):
         self.send_layout.addWidget(self.send_button)
         self.central_layout.addLayout(self.send_layout)
         main_window.setCentralWidget(self.central_widget)
-        self.status_bar = QtGui.QStatusBar(main_window)
+        self.status_bar = QtWidgets.QStatusBar(main_window)
         self.status_bar.setObjectName(from_utf8('status_bar'))
         main_window.setStatusBar(self.status_bar)
-        self.tool_bar = QtGui.QToolBar(main_window)
+        self.tool_bar = QtWidgets.QToolBar(main_window)
         self.tool_bar.setMovable(False)
         self.tool_bar.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon)
         self.tool_bar.setFloatable(False)
         self.tool_bar.setObjectName(from_utf8('tool_bar'))
         main_window.addToolBar(QtCore.Qt.TopToolBarArea, self.tool_bar)
-        self.open_action = QtGui.QAction(main_window)
+        self.open_action = QtWidgets.QAction(main_window)
         connect_icon = QtGui.QIcon()
         connect_icon.addPixmap(QtGui.QPixmap(from_utf8(':/toolbar/network-connect.png')),
                                QtGui.QIcon.Normal, QtGui.QIcon.Off)
         self.open_action.setIcon(connect_icon)
         self.open_action.setObjectName(from_utf8('open_action'))
         self.open_action.setShortcut(QtGui.QKeySequence.Open)
-        self.close_action = QtGui.QAction(main_window)
+        self.close_action = QtWidgets.QAction(main_window)
         disconnect_icon = QtGui.QIcon()
         disconnect_icon.addPixmap(QtGui.QPixmap(from_utf8(':/toolbar/network-disconnect.png')),
                                   QtGui.QIcon.Normal, QtGui.QIcon.Off)
         self.close_action.setIcon(disconnect_icon)
         self.close_action.setShortcut(QtGui.QKeySequence.Close)
         self.close_action.setObjectName(from_utf8('close_action'))
-        self.find_action = QtGui.QAction(main_window)
+        self.find_action = QtWidgets.QAction(main_window)
         find_icon = QtGui.QIcon()
         find_icon.addPixmap(QtGui.QPixmap(from_utf8(':/toolbar/find.png')),
                             QtGui.QIcon.Normal, QtGui.QIcon.Off)
@@ -138,7 +138,7 @@ class UiMainWindow(object):
         self.find_action.setCheckable(True)
         self.find_action.setChecked(False)
         self.find_action.setObjectName(from_utf8('find_action'))
-        self.capture_action = QtGui.QAction(main_window)
+        self.capture_action = QtWidgets.QAction(main_window)
         capture_icon = QtGui.QIcon()
         capture_icon.addPixmap(QtGui.QPixmap(from_utf8(':/toolbar/capture-to-disk.png')),
                                QtGui.QIcon.Normal, QtGui.QIcon.Off)
@@ -146,7 +146,7 @@ class UiMainWindow(object):
         self.capture_action.setCheckable(True)
         self.capture_action.setChecked(False)
         self.capture_action.setObjectName(from_utf8('capture_action'))
-        self.follow_action = QtGui.QAction(main_window)
+        self.follow_action = QtWidgets.QAction(main_window)
         self.follow_action.setShortcut(QtGui.QKeySequence(QtCore.Qt.CTRL + QtCore.Qt.SHIFT + QtCore.Qt.Key_F))
         follow_icon = QtGui.QIcon()
         follow_icon.addPixmap(QtGui.QPixmap(from_utf8(':/toolbar/follow-output.png')),
@@ -155,7 +155,7 @@ class UiMainWindow(object):
         self.follow_action.setCheckable(True)
         self.follow_action.setChecked(True)
         self.follow_action.setObjectName(from_utf8('follow_action'))
-        self.clear_action = QtGui.QAction(main_window)
+        self.clear_action = QtWidgets.QAction(main_window)
         clear_icon = QtGui.QIcon()
         clear_icon.addPixmap(QtGui.QPixmap(from_utf8(':/toolbar/clear.png')),
                              QtGui.QIcon.Normal, QtGui.QIcon.Off)
@@ -163,21 +163,21 @@ class UiMainWindow(object):
         self.clear_action.setObjectName(from_utf8('clear_action'))
         self.clear_action.setShortcut(QtGui.QKeySequence(QtCore.Qt.CTRL + QtCore.Qt.Key_Backspace))
 
-        self.xmodem_action = QtGui.QAction(main_window)
+        self.xmodem_action = QtWidgets.QAction(main_window)
         xmodem_icon = QtGui.QIcon()
         xmodem_icon.addPixmap(QtGui.QPixmap(from_utf8(':/toolbar/move-up.png')),
-                             QtGui.QIcon.Normal, QtGui.QIcon.Off)
+                              QtGui.QIcon.Normal, QtGui.QIcon.Off)
         self.xmodem_action.setIcon(xmodem_icon)
         self.xmodem_action.setObjectName(from_utf8('xmodem_action'))
         self.xmodem_action.setShortcut(QtGui.QKeySequence(QtCore.Qt.CTRL + QtCore.Qt.SHIFT + QtCore.Qt.Key_X))
 
-        self.configure_action = QtGui.QAction(main_window)
+        self.configure_action = QtWidgets.QAction(main_window)
         configure_icon = QtGui.QIcon()
         configure_icon.addPixmap(QtGui.QPixmap(from_utf8(':/toolbar/configure.png')),
                                  QtGui.QIcon.Normal, QtGui.QIcon.Off)
         self.configure_action.setIcon(configure_icon)
         self.configure_action.setObjectName(from_utf8('configure_action'))
-        self.exit_action = QtGui.QAction(main_window)
+        self.exit_action = QtWidgets.QAction(main_window)
         exit_icon = QtGui.QIcon()
         exit_icon.addPixmap(QtGui.QPixmap(from_utf8(':/toolbar/application-exit.png')),
                             QtGui.QIcon.Normal, QtGui.QIcon.Off)
@@ -205,14 +205,14 @@ class UiMainWindow(object):
         self.send_button.setText(translate('MainWindow', 'Send'))
         self.tool_bar.setWindowTitle(translate('MainWindow', 'Tool Bar'))
         self.open_action.setText(translate('MainWindow', 'Open...'))
-        self.open_action.setToolTip(translate('MainWindow',
-                                              'Open (%s)' % QtGui.QKeySequence(QtGui.QKeySequence.Open).toString()))
+        self.open_action.setToolTip(translate(
+            'MainWindow', 'Open (%s)' % QtGui.QKeySequence(QtGui.QKeySequence.Open)))
         self.close_action.setText(translate('MainWindow', 'Close'))
-        self.close_action.setToolTip(translate('MainWindow',
-                                               'Close (%s)' % QtGui.QKeySequence(QtGui.QKeySequence.Close).toString()))
+        self.close_action.setToolTip(translate(
+            'MainWindow', 'Close (%s)' % QtGui.QKeySequence(QtGui.QKeySequence.Close)))
         self.find_action.setText(translate('MainWindow', 'Find'))
-        self.find_action.setToolTip(translate('MainWindow',
-                                              'Find (%s)' % QtGui.QKeySequence(QtGui.QKeySequence.Find).toString()))
+        self.find_action.setToolTip(translate(
+            'MainWindow', 'Find (%s)' % QtGui.QKeySequence(QtGui.QKeySequence.Find)))
         self.capture_action.setText(translate('MainWindow', 'Capture'))
         self.capture_action.setToolTip(translate('MainWindow', 'Capture to File'))
         self.follow_action.setText(translate('MainWindow', '&Follow'))
@@ -227,7 +227,7 @@ class UiMainWindow(object):
         self.exit_action.setToolTip(translate('MainWindow', 'Exit (Alt+F4)'))
 
 
-class MainWindow(QtGui.QMainWindow, UiMainWindow):
+class MainWindow(QtWidgets.QMainWindow, UiMainWindow):
     updateOutput = QtCore.pyqtSignal(str)
     showMessage = QtCore.pyqtSignal(str, str, int)
 
@@ -240,7 +240,7 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
         self.device_closed = True
         self.follow_output = True
         self.capture_file = None
-        self.capture_filename = u''
+        self.capture_filename = ''
         self.highlights = self.load_highlights()
         self.disable_output = False
         self.xmodem_send_progress_window = None
@@ -271,10 +271,10 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
         if self.capture_file:
             self.capture_file.flush()
             self.capture_file.close()
-        return QtGui.QMainWindow.close(self)
+        return QtWidgets.QMainWindow.close(self)
 
     def document_body(self):
-        return self.output_browser.page().mainFrame().documentElement().findFirst(u'pre')
+        return self.output_browser.page().mainFrame().documentElement().findFirst('pre')
 
     def receive_text(self):
         output = ''
@@ -285,15 +285,10 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
                     continue
                 output += self.device.read(1)
             except SerialException as e:
-                self.showMessage.emit(u'Port Error', u'Error reading from serial port: %s' % e, MessageType.Critical)
+                self.showMessage.emit('Port Error', 'Error reading from serial port: %s' % e, MessageType.Critical)
                 self.on_close_action_triggered()
                 continue
             if output.endswith('\r\n'):
-                #self.terminal_lines.append(output.strip('\r\n'))
-                #if len(self.terminal_lines) > self.max_lines:
-                #    self.terminal_lines = self.terminal_lines[-self.max_lines:]
-                #    self.refreshOutput()
-                #else:
                 self.updateOutput.emit(output.strip('\r\n'))
                 output = ''
             elif output.endswith('\n'):
@@ -303,20 +298,20 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
     def on_open_action_triggered(self):
         self.connect_dialog.update_port_combobox()
         settings = QtCore.QSettings()
-        self.connect_dialog.set_port(unicode(settings.value(u'previous-port', u'').toString()))
-        if self.connect_dialog.exec_() == QtGui.QDialog.Accepted:
+        self.connect_dialog.set_port(settings.value('previous-port', ''))
+        if self.connect_dialog.exec_() == QtWidgets.QDialog.Accepted:
             if not self.device_closed:
                 self.device_closed = True
                 self.device.close()
             try:
                 port = self.connect_dialog.get_port()
-                settings.setValue(u'previous-port', port)
-                if isinstance(port, basestring) and port.startswith('COM'):
+                settings.setValue('previous-port', port)
+                if isinstance(port, str) and port.startswith('COM'):
                     try:
                         # On Windows ports are 0-based, so strip the COM and subtract 1 from the port number
                         port = int(port[3:]) - 1
                     except (TypeError, ValueError):
-                        QtGui.QMessageBox.critical(self, 'Error opening port', 'Error: Port is not valid')
+                        QtWidgets.QMessageBox.critical(self, 'Error opening port', 'Error: Port is not valid')
                         return
                 self.device = serial_for_url(
                     url=port,
@@ -336,7 +331,7 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
                 output_thread = threading.Thread(target=self.receive_text)
                 output_thread.start()
             except SerialException as e:
-                QtGui.QMessageBox.critical(self, 'Error opening port', e.args[0])
+                QtWidgets.QMessageBox.critical(self, 'Error opening port', e.args[0])
         self.send_combobox.setEnabled(not self.device_closed)
         self.send_button.setEnabled(not self.device_closed)
         if self.send_combobox.isEnabled():
@@ -361,13 +356,13 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
             if self.capture_filename:
                 base_dir = os.path.basename(self.capture_filename)
             else:
-                base_dir = u''
-            self.capture_filename = QtGui.QFileDialog.getSaveFileName(self, u'Capture To File', base_dir,
-                                                                      u'Text files (*.txt *.log);;All files (*)')
-            self.capture_file = open(self.capture_filename, u'w')
+                base_dir = ''
+            self.capture_filename = QtWidgets.QFileDialog.getSaveFileName(self, 'Capture To File', base_dir,
+                                                                          'Text files (*.txt *.log);;All files (*)')
+            self.capture_file = open(self.capture_filename, 'w')
             self.status_bar.showMessage(self.capture_filename)
         elif self.capture_file and not enabled:
-            self.capture_filename = u''
+            self.capture_filename = ''
             self.capture_file.flush()
             self.capture_file.close()
             self.capture_file = None
@@ -388,10 +383,10 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
     def xmodem_callback(self, total_packets, success_count, error_count):
         if self.xmodem_send_progress_window:
             self.xmodem_send_progress_window.setValue(success_count)
-            print total_packets, success_count, error_count
+            print('{} {} {}'.format(total_packets, success_count, error_count))
 
     def on_xmodem_action_triggered(self):
-        file_dialog = QtGui.QFileDialog()
+        file_dialog = QtWidgets.QFileDialog()
         if file_dialog.exec_():
             self.disable_output = True
             try:
@@ -401,7 +396,7 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
                 self.device.flushOutput()
                 xmodem_transfer = XMODEM(self.getc, self.putc, mode='xmodem1k', pad='\xff')
                 stream = open(upload_file, 'rb')
-                self.xmodem_send_progress_window = QtGui.QProgressDialog(u'Sending File...', u'', 0, 0)
+                self.xmodem_send_progress_window = QtWidgets.QProgressDialog('Sending File...', '', 0, 0)
                 self.xmodem_send_progress_window.setCancelButton(None)
                 self.xmodem_send_progress_window.setMinimum(0)
                 self.xmodem_send_progress_window.setMaximum(file_size/1024)
@@ -409,7 +404,7 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
                 self.xmodem_send_progress_window.setModal(True)
                 self.xmodem_send_progress_window.show()
                 success = xmodem_transfer.send(stream, retry=200, callback=self.xmodem_callback)
-                print success
+                print(success)
             finally:
                 if self.xmodem_send_progress_window:
                     self.xmodem_send_progress_window.close()
@@ -454,14 +449,9 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
         self.output_browser.update()
 
     def on_update_output(self, output):
-        #self.terminal_lines.append(output)
         if self.capture_file:
             self.capture_file.write(output + '\n')
             self.capture_file.flush()
-        #if len(self.terminal_lines) > 5000:
-        #    self.terminal_lines = self.terminal_lines[-5000:]
-        #    self.refreshOutput()
-        #else:
         output = self.style_output(output)
         self.document_body().appendInside(output)
 
@@ -477,17 +467,17 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
 
     def on_show_message(self, title, message, type_=MessageType.Info):
         if type_ == MessageType.Info:
-            QtGui.QMessageBox.information(self, title, message)
+            QtWidgets.QMessageBox.information(self, title, message)
         elif type_ == MessageType.Question:
-            QtGui.QMessageBox.question(self, title, message)
+            QtWidgets.QMessageBox.question(self, title, message)
         elif type_ == MessageType.Warning:
-            QtGui.QMessageBox.warning(self, title, message)
+            QtWidgets.QMessageBox.warning(self, title, message)
         elif type_ == MessageType.Critical:
-            QtGui.QMessageBox.critical(self, title, message)
+            QtWidgets.QMessageBox.critical(self, title, message)
 
     def refresh_output(self):
         elements = self.output_browser.page().mainFrame().findAllElements('div')
-        lines = [unicode(element.toPlainText()) for element in elements]
+        lines = [element.toPlainText() for element in elements]
         pre = self.output_browser.page().mainFrame().findFirstElement('pre')
         pre.setInnerXml('')
         for line in lines:
@@ -497,59 +487,58 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow):
         self.output_browser.update()
 
     def style_output(self, output):
-        style = u'font-family: \'Ubuntu Mono\', monospace; '
+        style = 'font-family: \'Hack\', \'Ubuntu Mono\', monospace; '
         if not output:
-            output = u' '
+            output = ' '
         for highlight in self.highlights:
             if highlight.regex.search(output):
                 if highlight.foreground:
-                    style = u'%scolor: %s; ' % (style, highlight.foreground)
+                    style = '%scolor: %s; ' % (style, highlight.foreground)
                 if highlight.background:
-                    style = u'%sbackground-color: %s; ' % (style, highlight.background)
+                    style = '%sbackground-color: %s; ' % (style, highlight.background)
                 break
         if style:
             try:
-                output = u'
%s
' % (style, self.filter_printable(output)) - #output = u'
%s
' % (style, unicode(output, u'utf-8')) + output = '
%s
' % (style, self.filter_printable(output)) except TypeError: - output = u'
%s
' % (style, output) + output = '
%s
' % (style, output) else: - output = u'
%s
' % output + output = '
%s
' % output return output def filter_printable(self, output): - printable_output = u'' + printable_output = '' for char in output: if char not in printable: - printable_output += u'\\x{:02x}'.format(ord(char)) + printable_output += '\\x{:02x}'.format(ord(char)) else: - printable_output += unicode(char, u'utf8') + printable_output += str(char, 'utf8') def save_highlights(self, highlights): settings = QtCore.QSettings() - settings.setValue(u'highlights/count', len(highlights)) + settings.setValue('highlights/count', len(highlights)) for index, highlight in enumerate(highlights): - settings.beginGroup(u'highlight-%s' % index) - settings.setValue(u'pattern', highlight.pattern) - settings.setValue(u'foreground', highlight.foreground) + settings.beginGroup('highlight-%s' % index) + settings.setValue('pattern', highlight.pattern) + settings.setValue('foreground', highlight.foreground) if highlight.background: - settings.setValue(u'background', highlight.background) + settings.setValue('background', highlight.background) else: - if settings.contains(u'background'): - settings.remove(u'background') + if settings.contains('background'): + settings.remove('background') settings.endGroup() def load_highlights(self): settings = QtCore.QSettings() - highlight_count = settings.value(u'highlights/count', 0).toInt()[0] + highlight_count = settings.value('highlights/count', 0) highlights = [] for index in range(highlight_count): - settings.beginGroup(u'highlight-%s' % index) - pattern = unicode(settings.value(u'pattern', u'').toString()) - foreground = unicode(settings.value(u'foreground', u'').toString()) + settings.beginGroup('highlight-%s' % index) + pattern = settings.value('pattern', '') + foreground = settings.value('foreground', '') background = None - if settings.contains(u'background'): - background = unicode(settings.value(u'background', u'').toString()) + if settings.contains('background'): + background = settings.value('background', '') settings.endGroup() highlights.append(Highlight(pattern, foreground, background)) return highlights @@ -585,7 +574,7 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow): try: self.device.write(data) except SerialException as se: - self.error(u'Got a SerialException: %s', se) + self.error('Got a SerialException: {}'.format(se)) if 'interrupted system call' in str(se.args[0]).lower(): self.device.write(data) else: @@ -594,6 +583,6 @@ class MainWindow(QtGui.QMainWindow, UiMainWindow): if se.args[0] == 4: self.device.write(data) else: - self.error(u'Got a SocketError or SelectError: %s', se) + self.error('Got a SocketError or SelectError: {}'.format(se)) raise Exception(str(se)) return None diff --git a/colourterm/resources.py b/colourterm/resources.py index bcc4769..dd017ef 100644 --- a/colourterm/resources.py +++ b/colourterm/resources.py @@ -2,913 +2,13 @@ # Resource object code # -# Created by: The Resource Compiler for PyQt4 (Qt v4.8.7) +# Created by: The Resource Compiler for PyQt5 (Qt v5.10.1) # # WARNING! All changes made in this file will be lost! -from PyQt4 import QtCore +from PyQt5 import QtCore -qt_resource_data = "\ -\x00\x00\x02\xd6\ -\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\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ -\x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\x06\xec\x01\ -\x1e\x75\x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x0b\x11\ -\x17\x19\x36\xe0\x1f\xbc\x7d\x00\x00\x02\x56\x49\x44\x41\x54\x78\ -\xda\x8d\x91\x5d\x48\x53\x71\x18\x87\x9f\x73\x66\x52\xe1\x32\x95\ -\x30\xb2\xd5\x12\xc2\x30\xa8\x30\xbd\x31\x2f\xba\xd1\x8b\x90\xc0\ -\xa0\x4f\xa2\x20\xb2\x4c\xab\x8b\x8c\x60\x41\x12\x18\x41\x82\x91\ -\x60\x81\x1f\x45\x17\xd2\xf7\x45\x17\x61\xa4\xa1\x61\x28\xa1\xa8\ -\x91\x59\x4a\xea\x14\x5d\x73\xb6\x4c\xcf\xce\x74\xba\xb3\xfd\x3b\ -\x1c\xd8\x58\x5b\x50\x0f\xbc\xbc\xef\xb9\x78\x9f\xdf\xcb\xff\x48\ -\x60\xb0\x16\xd8\xce\x7f\x50\xb0\x5b\x5e\x79\x7b\x63\x41\x9d\xe6\ -\x9a\x1b\x23\x21\xe1\x44\x48\x90\x2f\x84\x68\xe1\x1f\x04\xfc\x8b\ -\x78\x7a\x8b\x78\x79\xdf\x4e\x46\x7b\x80\x05\x97\xab\x33\x0e\x30\ -\xd0\x05\xfc\x70\xbb\x91\x65\xd9\x28\x49\x92\x90\xf5\xd2\x07\x63\ -\x86\x20\xcb\x5f\x4b\x79\xdd\xfa\x85\xeb\xad\x32\x07\x2c\x53\x5a\ -\x96\x47\x24\xc9\x44\x60\x32\x99\xc2\x02\x53\xa8\x9b\x4c\xc6\xec\ -\xb7\x57\xd1\xdb\xd3\xc5\x8d\xa6\x78\x76\x6e\x76\x73\xfa\xac\xe4\ -\x6a\xc9\x92\xcf\xc5\x41\x18\x23\xd1\x48\xd7\x4b\x9f\xc3\xdd\x37\ -\xf5\x08\xc7\xb7\x37\xd8\xea\xe3\x59\x6f\x9e\xe1\x56\xe9\x6a\x2a\ -\xea\x97\x6a\x9e\xb7\x69\xd3\x91\x17\xfc\x99\x1e\x4a\x9e\x7d\x8f\ -\x32\xfe\x84\x0b\xd5\x3e\x56\x48\x1e\x6a\x2e\x06\x59\x48\xad\x40\ -\x5f\xf6\x00\x93\x61\x81\x14\x4a\x8c\x90\x04\xd4\x21\xb4\xe9\xc7\ -\x5c\xb9\xeb\x61\x5e\x51\xa9\x2e\x51\xd0\x52\xcb\x50\xe5\x1d\x00\ -\x0e\x60\x31\xe6\x82\x90\x24\xe0\x73\x12\x9c\x7e\x88\xed\xce\x18\ -\x9f\x87\xdd\xdc\x3c\x35\x87\x79\xd3\x41\x66\x02\x79\x58\xad\x56\ -\x80\x25\x63\x27\xea\x0d\x8c\x12\x9a\x82\xd0\x97\xab\x1a\x07\x79\ -\xd7\xed\xc4\x76\x74\x8e\x2d\xdb\x72\x19\xf5\x15\x92\x96\x96\x86\ -\xc5\x62\x01\x20\x46\x60\xfc\x2e\xe1\x27\xe0\xa8\xe3\xc1\xb3\x7e\ -\x9e\x36\x4f\x50\x52\xe8\x21\x37\x27\x9d\xfe\x5f\x47\x48\x4e\x4e\ -\x21\x33\x33\x13\x01\x61\xe2\xa2\x05\xf3\x93\x6d\xb4\x35\xb7\x53\ -\xdb\x34\x49\x51\xde\x22\x87\x0a\x12\x79\x31\xb8\x9f\x29\xe7\x00\ -\xe6\x35\x49\xf4\xf5\xf5\xb1\xca\x9c\x08\xa0\xfd\x55\xa0\x7a\x25\ -\xbc\x41\x2b\x7b\x77\x8d\x51\x7e\x58\xe6\x95\xfd\x38\xc3\x23\xdf\ -\xa9\xac\xac\xd4\x2f\x48\x46\x55\x55\x2e\x95\x97\xbf\x05\xba\x62\ -\x04\x3f\x67\x1c\xcc\x3a\x3f\x90\xbe\xce\x49\x46\x51\x36\xe3\xf1\ -\xfb\xc8\xd9\x93\x8d\x39\x65\xc8\x58\xf6\x7a\xbd\xd8\xae\xda\x06\ -\x1a\x1b\x1a\x4e\x02\x3e\x22\xc8\x17\x3a\xf7\x6a\x6b\xc4\xb5\xcb\ -\xc7\x84\x63\xa4\x53\xf8\xfd\xcb\x22\x18\x0c\xea\xdd\x2f\x3a\x3a\ -\x3a\x84\xa2\x28\xa2\xec\x7c\xd9\x27\x60\x2b\x21\xa2\x05\x13\xf6\ -\x51\x11\xcd\xb2\x16\x10\xdd\x1f\x07\x44\xf1\x99\xe2\x16\x60\x03\ -\x51\x48\x60\x90\x02\x64\x85\xbf\x63\xd1\x80\x4e\x60\x89\x28\x7e\ -\x03\x99\xc3\x0a\xf4\x03\x8f\xf6\xf6\x00\x00\x00\x00\x49\x45\x4e\ -\x44\xae\x42\x60\x82\ -\x00\x00\x03\x50\ -\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\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ -\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ -\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xcd\x49\x44\ -\x41\x54\x78\xda\xa5\x93\x4d\x48\x14\x71\x18\xc6\x9f\xff\x7c\x3a\ -\xb3\x33\xbb\x7e\xad\xeb\x17\xc5\x6a\x69\xa5\x41\x1f\x20\x86\xa0\ -\x75\x0b\x05\xeb\x90\x44\x1e\xf6\x20\x18\x81\x76\xad\x8b\x87\x0e\ -\x42\x1d\xba\xa5\x27\x21\x28\x49\x8d\x3a\x44\xa5\x08\x49\x2a\x8a\ -\x89\x69\x56\x7e\x84\x45\xe1\x26\xba\x2b\xae\xbb\xe9\x4e\xeb\xce\ -\xec\xce\x4c\xb3\x96\xb2\x0a\x75\xe9\xb9\xbc\xa7\xdf\xc3\xf3\xbe\ -\x3c\x2f\x31\x4d\x13\xff\x10\xf5\x67\x1a\xf8\x8b\x18\xec\xd3\xfb\ -\x96\x96\x63\xab\xc3\xc3\x4f\x82\x63\x63\x51\xa9\xa0\xe0\x38\x2d\ -\xcb\x24\xb2\xb8\x38\x2f\x97\x96\x32\xae\xca\xca\xba\x13\xad\xad\ -\xf3\x48\xd2\x9e\x04\x43\xf5\xf5\xf7\x56\xfb\xfa\x1a\x33\xce\x94\ -\xf3\x69\x25\xa5\x90\x5c\x2e\x10\x42\xa0\xac\xad\x21\x30\x39\x89\ -\xf5\xa9\x29\x35\xa7\xba\xba\xe3\x6c\x57\xd7\xf5\x64\x83\x5d\xd8\ -\xd7\xdf\xd7\x54\xe8\xf1\x10\x5e\x14\xb1\xf8\x7a\x08\x3f\x97\x97\ -\x21\x08\x3c\xec\x87\x0a\xe1\x28\x3e\x8a\xad\xf0\x26\xbc\xdd\x3d\ -\x66\xfe\x85\x8b\xed\x09\x93\x5d\x83\x09\x2b\xf6\x5c\x5b\xdb\x3b\ -\x77\x6d\x0d\x0f\x4d\xc3\xec\x8b\x97\x41\x5e\x8b\xdf\x96\x58\xb6\ -\x87\x67\xd9\x1c\x89\x63\x5f\xa1\xec\xb4\x83\x77\xe5\x41\xdd\x0c\ -\x61\x79\x60\x50\x2d\x69\x6e\x3e\x55\x66\xad\x43\xc1\x92\xd7\xda\ -\x59\xce\xcf\xe2\x69\x9a\xc1\xc7\xde\xbe\x10\x21\xf4\xb1\xc6\x58\ -\xec\x2e\x43\x51\x31\xd1\x26\xf6\xa4\x54\x55\x38\x58\x41\xc6\x86\ -\x6f\x09\x31\x2d\x06\x29\xdf\xc5\x27\x98\xdd\x2b\x2b\x3e\x5f\x36\ -\x93\x91\x8e\xa5\x0f\x53\xa0\xa3\xda\x9d\x26\x45\x59\xed\x96\xa4\ -\x2c\xd9\x61\x7f\xe3\x3c\x7f\xae\x80\x09\x47\xa1\x05\x7c\x98\x1b\ -\x1c\x86\x7f\xe1\x13\xa8\xd4\xd4\x6d\x66\xc7\x80\x52\xfc\x7e\x29\ -\xc6\xd2\xd8\x5a\x0f\x40\xe0\xb8\xce\x04\x6c\xb7\x89\xe3\xae\xf2\ -\x93\x6e\xcc\x7f\x83\xa9\x04\x31\x33\x31\x65\xe4\xaa\xb1\x6b\x08\ -\x05\xe1\x5b\x5a\x44\x82\x49\xb0\xdb\x09\xe2\x00\xbe\x4f\x4f\xc3\ -\x50\x14\xd0\x84\x38\x6d\x02\x3f\x2e\x0a\xa6\x5b\x1f\x79\x0b\x6d\ -\xe5\x2b\xc6\xa6\x67\x8c\xf4\x2d\xd5\xc3\x01\xcf\x04\x43\x87\x6e\ -\x99\xc4\x93\x8a\x62\x30\xd9\xd9\x0a\x6b\xc6\x41\x41\x47\x9a\x4d\ -\x18\x65\x10\x71\x0b\xde\x00\x10\x0d\x61\x74\x35\x68\x38\x2c\xb8\ -\xc1\x34\x1f\xe9\x36\xdb\x15\x81\x36\x21\x32\x04\x09\x26\xc1\x6e\ -\x27\x60\x73\x72\xfc\x1c\x00\x2d\xac\x41\x67\x23\x32\x1f\x88\x82\ -\xd8\x59\x0c\xa8\x86\x21\x6a\x86\xe7\xaa\x05\x3f\x90\x24\x57\x56\ -\xaa\x70\x4b\xff\x11\x01\x65\xfe\x66\x76\x8f\x58\x54\x55\x55\xb7\ -\xa6\x0b\xaa\x90\xce\x21\xbe\x1c\x01\xed\xe4\xd1\xaf\x19\x20\x71\ -\xdc\x44\x4a\xca\x48\xa7\xdd\x7e\x23\x2f\x53\xfc\xcc\x85\x37\x1d\ -\x48\xe3\xb0\x62\x08\x6a\x82\xd9\x53\xa4\x87\x56\x91\xbc\x4f\x1f\ -\x37\x1d\x71\x72\x24\x33\x18\x03\x6c\x34\xc2\x14\x03\x1b\xc3\x22\ -\x9d\x36\x40\x05\x23\x58\x71\xb0\x98\x0c\x68\xe6\xc1\x4b\x97\xdb\ -\x3d\xc9\x45\xda\xd1\x7d\xcb\xe4\x4b\x6f\x6f\x63\x11\xaf\xf2\xb9\ -\x1c\x41\x26\x08\x38\x42\x10\x04\xb0\xa4\xe9\x98\x8b\xf2\xea\xe1\ -\x9a\x9a\x8e\x86\xfd\x55\x4e\xd6\x73\xab\x95\x0b\x56\x49\xbc\xa3\ -\xa3\x51\x49\x96\x4b\x29\xda\x4a\xb2\xb1\x31\x7b\xa0\xa2\x22\xa5\ -\xd8\x8a\x5d\xbb\xef\x99\xfe\xfb\x9d\x7f\x01\x2e\xd5\x46\xab\x0b\ -\x34\xf6\x10\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x02\xa0\ -\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\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ -\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\ -\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ -\xd7\x0c\x1d\x0d\x11\x0d\x81\xdc\x28\x8a\x00\x00\x02\x2d\x49\x44\ -\x41\x54\x78\xda\x8d\x92\x4b\x6b\x53\x41\x18\x86\xdf\x99\x73\x89\ -\x39\x27\x27\xd5\xa8\xb9\x94\x6e\x52\x53\xdb\x8d\xd5\x58\xaa\xe2\ -\x05\x74\x97\x85\x05\x05\x0b\xd5\xba\xf0\x07\x08\xf5\x27\x88\x22\ -\x88\x1b\x11\x14\x5d\x58\x14\x29\x2d\xd9\x88\x6e\x04\xc1\x85\x8b\ -\xea\xca\x85\x0b\x15\x5d\x18\xa4\x55\xc4\xa0\x6d\x9a\x73\x92\x9c\ -\xcb\x5c\x9c\xb4\xb8\x90\xc6\x98\x81\x6f\xf3\xcd\xfb\x3d\xcc\xf3\ -\x31\xe8\x76\x0a\x93\x0f\xae\xe5\x4f\xdd\xb9\xd2\x2d\xa3\xfd\xeb\ -\x62\x68\x6a\xae\x94\xb4\xc8\x3d\x03\xfe\x31\x23\x7b\xe8\x75\xbd\ -\xf2\xb2\xd2\x29\x47\x3b\x35\x77\x9f\x9d\xcf\x10\xc9\x1f\x4e\x9d\ -\x1c\x21\xe7\x4e\x8f\x51\xc9\xfd\x47\x99\xc3\x33\x3b\x7b\x02\x0c\ -\x4f\x97\x89\x54\xc3\x63\x23\x4e\x26\x69\x6b\xd8\x9a\x8c\xe1\xc8\ -\xf8\xae\x9c\x60\xfe\x6c\x6a\xdf\xf9\xff\x03\x84\x60\x97\xb6\xd9\ -\x28\x8d\x0e\xa7\xe0\xae\x35\x50\x57\x55\x1c\x1d\x44\x36\xdd\x37\ -\x01\xc1\x2f\x76\xdd\x81\xf2\x2e\x12\x19\x2e\x1c\x2f\xa6\x74\x53\ -\xd7\xc0\xb9\x40\xc4\x04\xc2\x90\x23\x97\xdd\x8e\x0f\xef\x3f\x9e\ -\xd0\xfb\x06\x9f\x06\x3f\x3f\x55\x37\xbd\x20\x3f\x71\xd3\x09\x6a\ -\xcb\xe5\x42\x86\xc5\x62\xa6\x8e\x20\x94\xaa\x80\xb0\x5d\x11\x60\ -\x98\x71\x8c\x1f\xd8\x1f\x57\x7a\xf3\x89\x42\x69\xcb\x26\x40\x58\ -\xff\x76\x37\x41\x6b\x43\x03\xb9\x14\x42\x06\x30\x41\xc1\xa5\x86\ -\x48\x68\xa8\xb9\x0c\x5f\x96\x6b\xf8\xb5\x26\x11\xb3\x9c\x3d\x52\ -\xb0\xeb\x7f\x29\xe4\x8e\xce\x4c\x46\xee\x8f\xab\xb9\xfe\x7e\x10\ -\x3d\xa1\x00\x3a\x82\x88\xa2\x19\x00\x6e\x83\xa3\xe5\x0b\x04\x4a\ -\x83\x0b\x01\x10\x0d\xab\xd5\xa5\x83\x9a\x33\xf0\x8a\xd7\x97\x2a\ -\x3a\x00\xf0\xc0\xcb\x47\xad\x55\xbc\x5b\x7c\x82\xb7\xad\x15\xc8\ -\xd0\xc3\x85\xcb\x8f\x11\x33\x4d\x10\xda\xd6\x88\xf0\xac\x7c\x1b\ -\x02\x1a\x04\x67\x90\x82\x13\x02\x79\x06\xc0\x8b\x75\x80\x16\x4b\ -\xdc\x30\x9c\xec\x7d\x6a\x58\x54\xb3\xd3\xa4\xf1\xf5\x4d\x35\x61\ -\x5b\xb0\xac\x38\x28\x25\x68\xb5\x02\x44\x81\xaf\x60\x46\x52\x40\ -\x48\x48\x00\x20\x4d\x00\x58\x07\x7c\x5f\xbc\x05\x00\x2b\x7f\xbc\ -\xac\xec\x5e\xa8\x4d\xc2\x49\xd8\x30\x0c\x5d\x41\x3c\xa8\x69\x78\ -\x9f\x9f\xbb\x3d\xfd\x44\xdd\xc9\x6e\x2c\x48\xa3\x1b\x1a\xa4\x9d\ -\xd4\xd1\x31\xdb\xb1\x69\xa7\xe1\x79\x4d\x50\x4a\x51\xd7\x1a\x70\ -\xbd\x46\xdb\xbb\x77\x00\x35\x6d\x77\x61\x6e\xd6\x11\x2c\x80\x8c\ -\x7c\xf0\xa8\x05\xc1\x23\xb7\x67\x80\x0a\xef\x90\x2c\x34\x85\x1a\ -\x64\xcc\x87\x50\x10\x48\x11\x76\xca\xfe\x06\x81\x37\xee\xc0\xcc\ -\x8e\x0a\x9c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x02\x6f\ -\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\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ -\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\ -\x06\xec\x01\x1e\x75\x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ -\xd7\x0c\x1d\x0e\x02\x37\x24\x79\x0e\xf3\x00\x00\x01\xfc\x49\x44\ -\x41\x54\x78\xda\xa5\x90\x4f\x6b\x13\x41\x18\x87\x7f\xbb\xb3\x69\ -\x76\x37\xd9\xd5\x98\xb4\x1b\x29\xa2\x16\xd4\x83\x17\xf5\x24\x58\ -\xbc\xf8\x0d\xa4\x78\x29\x22\x82\x5e\xa5\x42\xf1\x58\xcf\x7e\x01\ -\xa1\x87\x62\xb1\x01\xf1\x52\x05\xe9\xb1\x78\x10\x91\x4a\xc1\x7f\ -\xa0\x58\x8a\x4d\x53\x93\x92\x36\xb1\x89\xbb\xee\x66\xbb\xbb\x33\ -\xbe\xae\x8b\x84\x1c\xda\xa8\x0f\xf3\x32\x33\x2f\xcc\x33\xbf\x19\ -\xfc\x2f\x12\x7a\x18\xb9\x3c\x2d\x51\x7b\x1d\x82\xe7\x84\x10\xa0\ -\x19\x22\xae\xa8\xb1\xfe\x6c\xe2\x38\x7a\x50\xd0\x03\x0f\x7d\x12\ -\x88\x23\x37\xc7\x4e\x43\x92\xa4\xb8\x40\xdc\x2f\x2d\xe9\x20\xf6\ -\x15\x44\xbb\x2e\x48\x80\x4e\xa7\xf3\xfb\x30\x95\x14\xf7\x3d\xf4\ -\x27\x08\x3c\x80\xa2\xb7\xdb\x76\x77\x02\xea\xbb\x7d\x0a\x7c\x07\ -\xc0\x2f\x81\x83\x38\x40\x92\x80\xef\x95\x60\xe8\xc2\xed\x49\xf0\ -\xe8\xae\xe0\x81\x14\xf9\x76\x9c\xc0\xb6\x5d\x30\x26\xc7\x02\x41\ -\x7b\x4a\x20\xe7\xce\x5e\xb3\x21\x38\x8d\xf8\x63\x1f\xb4\x3f\x3c\ -\xba\xa5\x20\xb6\xbb\x0d\x1e\xed\x66\x47\x8e\x5a\x30\x8c\x0c\x34\ -\x5d\x87\xc4\x06\xc0\x94\x14\x24\x59\x06\xe7\x11\x2e\x8e\x9e\x83\ -\xe3\x38\xd9\xad\xfa\x36\xd6\xbe\x94\x41\x3c\x07\x21\x27\xef\x9b\ -\xa5\xe8\x4f\x37\xab\x35\x78\x3e\xdd\x86\x34\xb8\xa4\x43\xb0\x2c\ -\x42\x68\xf8\xe1\x2b\xd8\xde\x09\x50\xf9\xda\xc2\x46\xa5\x0a\x1e\ -\x78\x33\xf6\xa7\xf9\x27\x7f\x04\x3b\x6f\xe7\xa8\xe9\xde\x68\x35\ -\x6a\xd5\x66\xf3\x1b\x09\x54\xc8\x29\x13\x29\xf5\x20\xd4\xcc\x21\ -\xe8\x46\x1e\x66\x6e\x10\x03\x29\x86\x8e\xbd\xb5\x42\x69\x27\x90\ -\x20\x23\xc1\x5e\x59\x68\x92\xf9\xea\xe6\xea\x32\x57\xd5\x34\xf2\ -\x85\x3c\x2c\xab\x80\xa2\x35\x88\xa1\x42\x01\x19\x5d\x43\xe5\xf3\ -\xeb\x40\xf0\x68\xdc\x5b\x5b\x74\x90\xc0\xd0\x45\xf8\x7d\xa3\x2c\ -\x98\xa6\xbb\xed\xfa\xe8\x99\xf3\x97\xe8\x20\xdd\x6c\x64\xc1\x05\ -\xc7\xe2\xfc\x34\x9a\xf5\xca\x94\x5f\x5b\x7a\x8c\x2e\x64\xf4\x22\ -\x30\x55\x5b\x7d\xb3\xfc\xfe\xe5\x02\x82\x30\x44\x14\x45\x78\x47\ -\xeb\xf2\xc7\x57\x2f\xc0\xc3\x7b\xe8\x07\x66\x0c\x9f\x4c\x9b\x45\ -\x7b\x6c\xf2\xa1\xb8\x72\xa7\x24\xd2\xa6\xd5\x52\x8c\xe1\x63\xf8\ -\x1b\x98\x96\xbf\x7e\xe0\xf0\x29\x61\x5a\x27\x84\xac\xe5\xc6\xf1\ -\x2f\xb0\x4c\xb1\x44\x35\x8b\x3d\xf8\x09\x7b\x1c\xef\xe9\x88\x1f\ -\x84\x20\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x02\x55\ -\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\x03\x00\x00\x00\x28\x2d\x0f\x53\ -\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ -\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ -\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ -\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x0e\x50\x4c\x54\ -\x45\xff\xff\xff\x00\x4e\x00\x00\x49\x00\x00\x55\x00\x00\x4c\x00\ -\x00\x4f\x00\x00\x4d\x00\x00\x4e\x00\x00\x4d\x00\x00\x4b\x00\x00\ -\x4e\x00\x00\x4d\x00\x00\x4c\x00\x00\x4d\x00\x00\x4c\x00\x00\x4e\ -\x00\x00\x4c\x00\x02\x50\x02\x04\x53\x04\x04\x53\x04\x03\x52\x03\ -\x02\x4e\x02\x02\x4e\x02\x02\x4d\x02\x02\x48\x02\x00\x5b\x00\x13\ -\x64\x12\x01\x5b\x01\x0e\x68\x0c\x17\x66\x15\x17\x69\x15\x15\x6b\ -\x12\x11\x6b\x0e\x0e\x68\x0b\x09\x5f\x07\x12\x6b\x10\x10\x5c\x0d\ -\x18\x5d\x14\x17\x56\x11\x1a\x54\x12\x1c\x50\x11\x1c\x50\x14\x2c\ -\x84\x23\x47\xba\x0e\x4a\x8d\x30\x4d\x7d\x29\x4e\x82\x2d\x4e\x8b\ -\x31\x50\xac\x2a\x54\x83\x2d\x57\xc2\x18\x58\xa0\x42\x59\x9f\x41\ -\x5b\x9c\x3f\x5d\xb2\x2d\x64\xb1\x50\x64\xba\x32\x73\xb4\x64\x76\ -\xb5\x63\x76\xbc\x59\x77\xc0\x55\x79\xb8\x61\x7b\xbb\x66\x7f\xc0\ -\x68\x7f\xc8\x35\x82\xc6\x45\x83\xc2\x4a\x88\xc2\x7a\x89\xbd\x4b\ -\x89\xc6\x7b\x8a\xc1\x57\x8a\xc1\x5b\x8e\xc4\x60\x8e\xc7\x44\x8f\ -\xc9\x5c\x90\xbd\x6b\x90\xc1\x6f\x91\xc5\x69\x91\xde\x3e\x93\xc6\ -\x70\x93\xc8\x6a\x96\xc3\x6c\x98\xd5\x47\x99\xd0\x8f\x99\xd2\x90\ -\x9a\xc8\x68\x9a\xcb\x7b\x9d\xc9\x6d\xa6\xd0\x77\xb6\xea\xa1\x29\ -\xec\xef\xa8\x00\x00\x00\x2b\x74\x52\x4e\x53\x00\x0d\x0e\x18\x1b\ -\x1d\x21\x24\x32\x33\x34\x35\x36\x46\x6b\x6c\x72\x8d\x90\x91\x95\ -\x9a\x9d\xa0\xa3\xbc\xd6\xd8\xdb\xe6\xe7\xe9\xeb\xed\xf5\xf5\xf6\ -\xf7\xf9\xf9\xfa\xfa\xfe\x0d\x0e\xc0\xf1\x00\x00\x00\x82\x49\x44\ -\x41\x54\x18\xd3\x63\x60\x20\x05\xb0\x0a\x30\xa1\xf0\xd9\x14\xad\ -\xa4\x19\x91\xe5\x15\xc2\x22\x6d\x25\x41\x2c\x7e\x65\x61\x20\xc9\ -\x22\xef\x1f\x12\xec\x23\x05\x64\xf1\x69\x45\x18\x0b\x31\x30\xcb\ -\xf9\xba\x3a\x7b\x2b\x71\x00\x05\x64\x42\x2d\x03\x4c\x44\x64\x3d\ -\xec\xed\x02\x55\x38\x41\x3a\x04\x75\xdc\xcd\xbd\x4c\xdd\x6c\xac\ -\xc3\x55\xb9\x20\xa6\x89\xea\x3b\x19\x38\x5a\x98\xb9\xa8\x71\xc1\ -\xcc\x17\xd3\x73\xd0\x36\xf2\x54\xe7\x46\xd8\x28\x6e\xe8\x17\xa4\ -\xc9\x8d\xec\x26\x09\x5d\x0d\x1e\x54\x57\xf3\xb2\x13\xef\x43\x00\ -\x7e\xc7\x0f\xc0\x9e\x2e\x4f\x77\x00\x00\x00\x00\x49\x45\x4e\x44\ -\xae\x42\x60\x82\ -\x00\x00\x02\x80\ -\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\x03\x00\x00\x00\x28\x2d\x0f\x53\ -\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ -\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ -\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ -\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x17\x50\x4c\x54\ -\x45\xff\xff\xff\x80\x00\x00\xa8\x00\x00\xad\x00\x00\x87\x00\x00\ -\x8a\x00\x00\x91\x00\x00\x98\x00\x00\x9c\x00\x00\xaa\x00\x00\x80\ -\x00\x00\xa8\x00\x00\xaf\x04\x04\x9c\x00\x00\x87\x0e\x0e\x8e\x00\ -\x00\x6e\x00\x00\x6d\x00\x00\x6a\x00\x00\xa2\x00\x00\x96\x2b\x2b\ -\x7f\x1e\x16\x82\x24\x1b\xd2\x78\x75\xc3\x4a\x49\xc9\x60\x5d\x9d\ -\x1f\x1c\xbf\x34\x2a\xc5\x47\x3f\xa4\x1f\x13\xa4\x1f\x15\xa4\x21\ -\x1a\xa4\x23\x1e\xa5\x1e\x12\xa6\x1e\x10\xab\x24\x17\xaf\x27\x1b\ -\xb3\x31\x26\xb3\x2b\x1f\xbe\x4a\x3f\xc3\x4a\x40\xc8\x4c\x43\xca\ -\x56\x4c\x80\x23\x21\x81\x23\x21\xa1\x3e\x34\xb2\x43\x3a\x6a\x23\ -\x1f\x6a\x23\x20\x7b\x3c\x32\x59\x21\x1c\x5b\x21\x1b\xbd\x00\x00\ -\xbe\x00\x00\xbf\x39\x33\xc1\x11\x0a\xc2\x33\x33\xc2\x4d\x48\xc3\ -\x3a\x3a\xc5\x39\x32\xc6\x12\x0c\xc7\x12\x0c\xc9\x3e\x3e\xcb\x44\ -\x3f\xcb\x4e\x4a\xcc\x46\x46\xd0\x00\x00\xd0\x12\x0c\xd3\x56\x56\ -\xd3\x57\x54\xd3\x65\x60\xd4\x62\x5e\xd6\x60\x5d\xd7\x63\x61\xdb\ -\x13\x10\xdb\x14\x11\xdf\x13\x0f\xdf\x14\x12\xdf\x68\x61\xe3\x00\ -\x00\xe5\x2f\x2a\xe5\x30\x2c\xe5\x32\x2d\xe5\x32\x2e\xe5\x73\x71\ -\xe6\x6d\x6d\xe6\x76\x75\xe9\x8d\x89\xef\x14\x12\xef\x15\x13\xef\ -\x89\x87\xf0\x8d\x8a\xf5\x00\x00\x63\x8e\x41\x21\x00\x00\x00\x34\ -\x74\x52\x4e\x53\x00\x32\x32\x32\x48\x48\x48\x48\x48\x48\x49\x49\ -\x49\x4a\x4b\x4f\x50\x51\x52\xd0\xd7\xdd\xde\xe4\xe6\xea\xf2\xf4\ -\xf5\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfb\xfb\xfc\ -\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xd5\x6e\xde\x62\x00\x00\x00\x9b\ -\x49\x44\x41\x54\x18\x19\x8d\xc1\x45\x16\x82\x00\x00\x05\xc0\x0f\ -\x28\xd8\x22\x76\x77\x77\x62\x07\x62\x77\xe7\xfd\xcf\xa1\xf0\x74\ -\xcf\x0c\x14\xa1\xdc\x06\x7c\x19\x9c\x14\x64\xa4\xf7\x99\xd1\x02\ -\xfa\xf4\xcb\x47\x42\x62\xdd\x5e\xae\x29\xa3\xb9\x70\xbe\xdc\xac\ -\x90\x68\x12\x13\x71\x91\x2f\xcf\xc4\x79\x52\x03\x19\x13\x1b\xf4\ -\x87\xad\xd1\x34\xce\xe0\x87\x8e\x76\x9a\xed\x46\x84\xc6\x9f\x3a\ -\xcc\xd7\xea\x7c\x58\x8d\x1f\x95\x7f\x2c\x74\x7b\xc2\x38\xa0\x82\ -\x4c\x17\x5c\xef\x96\xd5\xca\x6a\xb7\x09\x99\x20\xb1\xef\xdf\xf7\ -\x22\xcb\x95\x1e\xef\x83\x0d\x12\xc2\x73\xcc\xb2\x00\x97\x3b\x79\ -\x08\xc8\x08\x87\x05\x5f\x9c\x8b\x80\x12\x1f\x43\xb3\x13\x6b\xf7\ -\xb4\x66\x64\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x01\x4c\ -\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\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ -\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ -\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xc9\x49\x44\ -\x41\x54\x78\xda\xed\x92\xb1\x0e\x82\x30\x10\x86\xaf\x40\x45\x49\ -\xdc\x74\x32\x0e\xc4\xd1\xa7\xe0\x59\x90\xdd\xc9\xb8\x3b\x3b\xaa\ -\x13\x8b\x2f\xd2\xd5\x89\x37\x60\x73\x23\x62\x08\x68\x8c\x05\xea\ -\x4f\x42\x24\x3a\xe8\xe0\xe2\xc0\x97\xfc\x49\xff\xbb\xcb\xdd\x35\ -\x2d\x53\x4a\xd1\x2f\x68\x50\xdb\xa0\x81\x41\x06\x7d\xc7\x80\x58\ -\x63\x6a\x0e\x9e\xb7\xba\x85\xe1\x22\x11\x82\x9b\xf0\x95\x3a\xd0\ -\xfb\xb9\xef\x38\xb9\x65\xdb\xeb\x9e\xef\x2f\x09\x3c\x9f\x71\xcf\ -\xf9\x71\xea\xba\x23\x3d\x4d\xa9\x0b\xcf\x6b\xe9\x50\x45\x69\x59\ -\x74\x46\xee\x1a\xc7\x34\x11\xe2\x34\x94\x72\xf0\xb2\xc1\x3d\xcf\ -\xe9\x12\x45\x64\x4a\x49\xba\x61\x90\x86\xc6\x5a\x51\x10\x21\x5e\ -\x22\x9f\x04\x01\xc5\x59\x86\x55\x3a\x24\x11\xab\x69\x36\xd8\x31\ -\x36\xc3\xe4\x8d\x59\x95\xc0\x7f\xb8\x86\x44\xdd\x7c\xac\xd4\x96\ -\x40\xfb\x13\xff\xa1\xc1\x03\x06\xaf\x45\x37\x07\xf3\x26\xc3\x00\ -\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x02\x34\ -\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\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ -\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ -\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xb1\x49\x44\ -\x41\x54\x78\xda\xa5\x93\x4d\x6b\x13\x51\x14\x86\x9f\xfb\x35\x49\ -\xda\x49\x4c\x69\xdd\xb8\x48\x10\x5d\x98\xb5\x82\x15\x44\x11\x44\ -\xe8\x3f\x70\xe7\x22\xfa\x03\xc4\x8d\x1b\x5b\x74\xd3\x95\x60\x41\ -\xff\x40\x11\x5c\xe9\x42\x90\x52\x17\x6e\xc4\x2e\xea\x07\x08\x82\ -\x54\xb4\x01\x15\x44\x71\x4c\x33\x36\x93\x74\xe6\xde\x3b\x42\x45\ -\x70\xe1\x44\x42\x9f\xed\xcb\x79\x38\xbc\x9c\x23\xf2\x3c\x67\x2f\ -\x48\x0a\xb8\xb6\x7e\xf9\xee\x99\x87\xad\xc1\xd9\x47\x47\xa2\xe5\ -\x77\x4b\x77\x28\xa0\x70\x83\xf3\xab\x73\x7e\xee\xe0\x39\x91\xba\ -\x21\xaf\xa3\x17\xf6\xf6\xc9\xfb\x66\xac\x0d\x5e\x7e\x7d\x2e\xbc\ -\x19\x52\xaa\x68\xde\x6e\xbd\xd1\x14\x50\x18\x64\xde\xf1\x73\x27\ -\x41\x48\x49\xea\x1c\xff\x13\x08\x40\x01\xf6\x4f\x60\x9d\x27\x4e\ -\x07\x08\x04\x99\x75\xff\x9a\x73\x40\xae\x01\xda\x2b\xed\xc5\x4e\ -\xdc\xb9\xf2\xec\xcb\x53\x1d\x28\x4d\xa0\x15\x46\x49\x92\x6c\x88\ -\x14\x82\x1d\x97\x31\xfb\xa0\x99\x57\x8c\xa1\x12\x18\x8e\xee\x3f\ -\x61\x1b\xb5\xe6\xcd\x4b\x87\x17\xae\xee\x96\x68\x16\xcd\xf7\x8b\ -\xc7\x2e\x4c\xa3\x1c\xb9\xf2\x08\x29\x7e\x0b\x7c\xbc\x2b\xa8\xeb\ -\x3a\x52\x6a\x4a\x84\x44\xfd\x1e\x71\xf2\x83\x6c\x72\x33\xba\x77\ -\xfa\xd5\x8c\x06\xb0\xd6\xb2\x19\x75\xd0\x81\xc6\x94\x15\xb5\x52\ -\x88\x91\x82\xbe\xdb\x46\x49\x30\xb9\x21\x49\x13\x36\xa2\x0f\xf4\ -\x06\x03\xa6\x82\x2a\x33\x41\xfa\x57\x07\x9e\xf9\xc7\xef\x9f\xdc\ -\x42\x63\xd0\x60\xb4\x24\x50\x8a\xd9\x66\x8b\xc9\x20\x60\xed\xe3\ -\x3a\x65\xa3\x29\x69\x4d\x35\xd4\x98\x20\xce\xac\xd5\xf3\x23\xef\ -\xa0\xbc\x64\xf2\x53\x87\x5a\x4c\x4d\x94\x59\xeb\x6c\xf0\xa9\xdd\ -\x13\x63\xdd\x81\xf3\x9e\xcc\x65\x48\x01\x99\xf7\x14\xa1\x47\x09\ -\xbe\x6d\xf7\xc8\x85\xc7\xba\xb1\x05\xd7\x65\x23\xac\xe7\x9f\xbb\ -\x5d\xd1\xed\x67\x84\x76\x9f\x1d\xf3\x99\x16\xfc\xf1\xe9\xea\x32\ -\x30\x3c\x30\xd1\xd8\xaa\xf9\xda\x8d\x91\xcf\xb4\x17\x7e\x01\x5f\ -\x22\xaf\xac\xbe\x86\x35\xeb\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ -\x42\x60\x82\ -\x00\x00\x03\x67\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x16\x00\x00\x00\x16\x08\x03\x00\x00\x00\xf3\x6a\x9c\x09\ -\x00\x00\x01\xa4\x50\x4c\x54\x45\xff\xff\xff\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x2e\x2e\x2e\x2f\x2f\x2f\x16\x16\x16\x1a\x1a\x1a\x10\x10\x10\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x12\x12\x12\x07\x07\x07\x11\x11\x11\ -\x05\x05\x05\x05\x05\x05\x03\x03\x03\x05\x05\x05\x01\x01\x01\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x07\x07\x07\x00\x00\x00\x02\x02\ -\x02\x05\x05\x05\x20\x20\x20\x20\x20\x20\x03\x03\x03\x00\x00\x00\ -\x14\x14\x14\x16\x16\x16\x14\x14\x14\x15\x15\x15\x0e\x0e\x0e\x3b\ -\x3b\x3b\x2c\x2c\x2c\x37\x37\x37\x37\x37\x37\x3f\x3f\x3f\x31\x31\ -\x31\x43\x43\x43\x54\x54\x54\x75\x75\x75\x11\x11\x11\x53\x53\x52\ -\x55\x54\x53\x3c\x36\x32\x8b\x8b\x8b\x4b\x4b\x4b\x50\x50\x50\x57\ -\x57\x57\x20\x20\x20\x42\x42\x42\x4a\x4a\x4a\x51\x3b\x29\x72\x72\ -\x72\x81\x81\x81\x84\x7b\x73\x9f\x91\x83\x03\x03\x03\x07\x07\x07\ -\x0b\x0b\x0b\x0e\x0e\x0e\x10\x0a\x07\x10\x10\x10\x11\x11\x11\x12\ -\x12\x12\x14\x14\x14\x1d\x15\x0f\x1e\x1e\x1e\x1f\x12\x0a\x20\x20\ -\x20\x21\x21\x21\x22\x22\x22\x23\x10\x00\x24\x1a\x16\x26\x26\x26\ -\x2d\x1c\x11\x2d\x2d\x2d\x30\x27\x21\x36\x20\x0e\x38\x38\x38\x3e\ -\x3e\x3e\x41\x41\x41\x44\x20\x03\x47\x47\x47\x49\x49\x49\x4b\x28\ -\x0c\x4e\x28\x0c\x52\x44\x39\x52\x52\x52\x54\x54\x54\x55\x55\x55\ -\x58\x28\x00\x59\x56\x54\x5d\x5d\x5d\x5f\x3c\x22\x60\x2d\x01\x60\ -\x3f\x25\x64\x48\x30\x66\x62\x61\x67\x52\x45\x69\x63\x60\x6c\x34\ -\x01\x6f\x6f\x6f\x70\x56\x46\x74\x47\x21\x77\x38\x02\x78\x44\x15\ -\x78\x78\x78\x7b\x5d\x43\x7c\x41\x0d\x7c\x65\x50\x7f\x7f\x7f\x83\ -\x83\x83\x85\x85\x85\x89\x89\x89\x8a\x8a\x8a\x8e\x8e\x8e\x90\x60\ -\x34\x90\x90\x90\x93\x93\x93\x9a\x62\x39\x9a\x63\x3a\xa4\x72\x4b\ -\xa9\x79\x55\xb1\x99\x82\xb8\xb8\xb8\xc0\xc0\xc0\x67\x17\x18\xb9\ -\x00\x00\x00\x46\x74\x52\x4e\x53\x00\x01\x02\x03\x07\x08\x0d\x0e\ -\x1b\x1d\x23\x27\x2e\x33\x43\x59\x66\x81\x82\x84\x8d\x95\x9b\xaa\ -\xac\xae\xb5\xb5\xb8\xb9\xc0\xc1\xc7\xcd\xcd\xcd\xcf\xd0\xd2\xd7\ -\xdc\xdf\xe9\xea\xf0\xf2\xf5\xf5\xf7\xf7\xf8\xf9\xf9\xf9\xfa\xfb\ -\xfb\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\x61\xda\ -\xb4\x94\x00\x00\x01\x2c\x49\x44\x41\x54\x78\x01\x63\xa0\x39\x60\ -\x16\x52\x92\xe6\x61\x60\xe0\x91\x56\x12\x62\x46\x12\xe6\x37\x74\ -\xb6\x55\x60\x64\x54\xb0\x75\x36\xe5\x87\x0b\x32\xf1\x29\xda\x07\ -\x79\xea\x48\x48\xea\x78\x06\x39\x29\xf2\x31\x41\x44\xd9\xe4\xf5\ -\xac\x2a\xb2\x3c\x6c\xeb\xea\x6c\x3d\xb2\x9a\xad\xf4\xe4\xd9\xc0\ -\xc2\x22\x26\xf5\x2d\x5d\x35\x7e\x21\x31\x31\x21\x7e\x35\xdd\x2d\ -\xf5\x26\x22\x20\x51\x5e\x6d\x87\xd8\xc4\xb8\xc8\x74\x5f\x77\x77\ -\xdf\xf4\xc8\x84\xc4\x58\x07\x6d\x5e\x06\x06\x76\x35\xeb\xda\x86\ -\xc6\xe2\xe0\x80\x54\x33\xb3\xd4\x80\xe0\xe2\xc6\x86\x5a\x6b\x35\ -\x76\x06\x61\xa3\xfc\x30\x2f\xff\xc2\x34\x9f\x70\x5d\xdd\x70\x9f\ -\xb4\x42\x7f\xaf\xb0\x7c\x23\x61\x06\x59\x9b\xc0\x94\x92\x82\x88\ -\x4c\xef\x38\x7d\xfd\x38\xef\xcc\x88\x82\x92\x94\x40\x1b\x59\x06\ -\xf5\xa8\xd0\xe4\xd6\xf6\xdc\x68\x37\x3b\x55\x15\x3b\xb7\xe8\xec\ -\x8e\xb6\xe4\xd0\x28\x75\x06\x19\xcb\xf8\xbc\xd2\xb2\x0c\x47\x2d\ -\x51\x4e\x0e\x51\x2d\xc7\x8c\xb2\x9c\xea\x24\x4b\x19\x06\x01\x83\ -\xca\xf2\xa2\xaa\x26\x0b\x71\x90\xab\xc4\x2d\x9a\xaa\x8a\xca\x2b\ -\x0d\x04\x18\x58\xa4\x8c\x5d\x3a\x5d\xcd\x35\xb8\x41\xc2\xdc\x1a\ -\xe6\xae\x9d\x2e\xc6\x52\x2c\x0c\x0c\xac\x82\x72\x9a\xca\x62\x5c\ -\x10\x1f\x73\x89\x29\x6b\xca\x09\xb2\x42\x03\x10\x25\x34\xa9\x16\ -\x2f\x00\x8e\xef\x43\x84\x4e\x93\x12\x3c\x00\x00\x00\x00\x49\x45\ -\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x04\x79\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x16\x00\x00\x00\x16\x08\x03\x00\x00\x00\xf3\x6a\x9c\x09\ -\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ -\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ -\x7d\xd5\x82\xcc\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ -\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x1f\x50\x4c\x54\ -\x45\xff\xff\xff\xff\xff\xff\x00\x00\x00\x80\x80\x80\xff\xff\xff\ -\x00\x00\x00\x00\xa8\x00\x2e\x2e\x2e\xaa\xaa\xaa\x80\x80\x80\xc0\ -\xc0\xc0\x66\xa8\x66\x00\x00\x00\x00\xa8\x00\x00\x00\x00\x00\xa4\ -\x00\x00\x00\x00\x00\x00\x00\x00\x95\x00\x00\x9f\x00\x00\x00\x00\ -\x90\x90\x90\x00\x00\x00\x00\x9a\x00\x00\x00\x00\x00\x00\x00\x00\ -\x95\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9f\ -\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x00\x00\x00\x00\x00\x00\x00\ -\x2c\x2c\x2c\x00\xa8\x00\x71\x71\x71\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\xad\x00\x00\xb2\x00\xbc\xbc\xbc\xc8\xc8\xc8\x00\xb7\ -\x00\xd3\xd3\xd3\xdb\xdb\xdb\x00\xbc\x00\x00\xbc\x00\x00\xb7\x00\ -\x00\xb2\x00\x6f\x6f\x6f\x01\xac\x01\xbc\xbc\xbc\xd0\xd0\xd0\x00\ -\xa8\x00\x00\xad\x00\x93\x93\x93\xbf\xbf\xbf\x00\xad\x00\xc9\xc9\ -\xc9\x00\x95\x00\xb9\xb9\xb9\x00\x9a\x00\xcb\xcb\xcb\xcc\xcc\xcc\ -\x00\xa8\x00\xce\xce\xce\xb2\xb2\xb2\xd1\xd1\xd1\xd6\xd6\xd6\x81\ -\x81\x81\xa5\xa5\xa5\x00\xa4\x00\xa4\xa4\xa4\xd0\xd0\xd0\xa1\xa1\ -\xa1\xc7\xc7\xc7\xdb\xdb\xdb\xa1\xa1\xa1\xc5\xc5\xc5\xc1\xc1\xc1\ -\x00\x9f\x00\xbe\xbe\xbe\x93\x93\x93\xb3\xb3\xb3\x00\x9a\x00\xb4\ -\xb4\xb4\xb4\xb4\xb4\xb4\xb4\xb4\x86\x86\x86\x87\x87\x87\xda\xda\ -\xda\xb4\xb4\xb4\xd7\xd7\xd7\x76\x76\x76\x92\x92\x92\x99\x99\x99\ -\xaf\xaf\xaf\x86\x86\x86\x8b\x8b\x8b\x00\x9f\x00\x00\xa4\x00\x3e\ -\xa9\x3e\x7e\x7e\x7e\xde\xde\xde\x76\x76\x76\xde\xde\xde\x00\xa8\ -\x00\xc8\xc8\xc8\xd5\xd5\xd5\x00\xad\x00\x00\x9a\x00\x00\x9f\x00\ -\x00\xa4\x00\x00\xa8\x00\x00\xad\x00\x00\xb2\x00\x00\xb7\x00\x54\ -\xb5\x54\x83\xc7\x83\x9b\x9b\x9b\x9d\xc8\x9d\xa6\xa6\xa6\xa9\xa9\ -\xa9\xb3\xb3\xb3\xc0\xc0\xc0\xc1\xc1\xc1\xc3\xc3\xc3\xc6\xc6\xc6\ -\xc8\xc8\xc8\xc9\xc9\xc9\xca\xca\xca\xcc\xce\xcc\xcd\xcd\xcd\xce\ -\xce\xce\xcf\xcf\xcf\xd0\xd0\xd0\xd1\xd1\xd1\xd2\xd2\xd2\xd3\xd3\ -\xd3\xd4\xd4\xd4\xd6\xd6\xd6\xd7\xd7\xd7\xd8\xd8\xd8\xda\xda\xda\ -\xdc\xdc\xdc\xdd\xdd\xdd\xde\xde\xde\xdf\xdf\xdf\xe0\xe0\xe0\xe1\ -\xe1\xe1\xe2\xe2\xe2\xe3\xe3\xe3\xe5\xe5\xe5\xe6\xe6\xe6\xe7\xe7\ -\xe7\xe8\xe8\xe8\xe9\xe9\xe9\xea\xea\xea\xeb\xeb\xeb\xec\xec\xec\ -\xed\xed\xed\xee\xee\xee\xef\xef\xef\xf0\xf0\xf0\xf1\xf1\xf1\xf2\ -\xf2\xf2\xf3\xf3\xf3\xf4\xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf8\xf8\ -\xf8\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\ -\x1c\xd4\xc3\xad\x00\x00\x00\x73\x74\x52\x4e\x53\x00\x01\x02\x02\ -\x02\x03\x03\x03\x03\x04\x04\x05\x07\x08\x0a\x0d\x0f\x13\x13\x14\ -\x1a\x1a\x1b\x1c\x22\x23\x25\x2b\x2c\x33\x36\x38\x3d\x3f\x42\x46\ -\x49\x49\x4d\x4d\x50\x53\x55\x58\x65\x69\x6c\x72\x7a\x7c\x80\x89\ -\x8c\x8f\x91\x94\x9d\x9f\xa5\xa9\xab\xaf\xb1\xba\xbb\xbc\xbd\xbd\ -\xbd\xbf\xbf\xc1\xc1\xc2\xc3\xc7\xcb\xcd\xcd\xcf\xd3\xd3\xd4\xd4\ -\xd5\xd6\xd7\xd9\xde\xe0\xe0\xe2\xe4\xe5\xe5\xe6\xe8\xe8\xe9\xea\ -\xea\xea\xeb\xeb\xf3\xf7\xf7\xf9\xf9\xfa\xfa\xfb\xfc\xfc\xfd\xca\ -\xc5\x05\x0d\x00\x00\x01\x4d\x49\x44\x41\x54\x18\x19\x85\xc1\x05\ -\x4f\x02\x01\x00\x06\xd0\xcf\x06\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\ -\x3b\xc1\x6e\xc5\x44\xc0\xc6\xe3\x3c\x44\x41\x45\x44\xd1\x1f\x28\ -\xba\x9d\xb2\xe9\xe6\x7b\xc0\xff\x98\x19\xd9\x86\x80\x4d\xac\x0f\ -\x34\x31\x6b\x79\xfc\x8e\xd0\xd2\x22\x3f\x03\x68\x60\x54\x9f\x48\ -\x76\x8f\x47\x27\x2a\xa0\x89\x51\x25\x14\x5c\xc9\xf7\x4f\x87\x23\ -\xa0\x81\x51\x2e\xa2\xa4\x5c\xf2\xe9\xe0\xb2\x4d\x17\x3f\x52\x6e\ -\x88\x0b\xe9\x3d\x8f\x52\x70\x89\x34\x7c\x4b\xa8\x3c\x56\x12\xc2\ -\x87\x47\xfe\xad\x6c\x3b\x0f\xb4\x82\xd7\xe7\xee\xc3\x57\x52\x24\ -\x57\x08\x38\xf5\xa0\xe5\x2b\xdf\x48\x49\x17\x47\x25\xa6\x28\x4e\ -\x23\x68\xb9\xf2\xcb\xc7\x37\xd1\x59\xdf\xfa\xfb\xf9\x56\x13\x68\ -\x59\x77\xb2\x17\x81\x54\x25\xdc\xeb\x5d\xd9\x6c\x06\x2d\xfe\x5a\ -\xc6\xbb\x53\xf2\x25\xaa\x8b\x8d\x96\x32\x00\x8e\xe9\x96\x50\x4b\ -\xde\x95\x48\xb9\xe2\xe7\x23\xea\x69\xaf\x04\x80\x5d\xc3\x54\x26\ -\xd4\xb4\x5a\xd7\xc4\xb7\x5c\x52\xb1\xb4\xd3\xce\x00\xac\x6a\xa6\ -\xfb\xdd\xf0\x29\x7c\x68\x95\x14\xef\x2f\xcc\x0c\x1a\x01\x66\xc5\ -\x33\x03\x9e\xf8\x52\x31\x3e\xb2\x4c\x10\xf3\x2c\x56\xa2\xbe\x49\ -\x0e\x6b\xcc\x17\x9f\x0c\xfc\x8a\x4a\x43\x3a\x17\x37\x7a\xe2\xd8\ -\xec\xa4\x54\xf6\x64\x10\xbe\xf8\xc4\xda\x00\x3a\x85\x75\x4c\xc4\ -\xcc\xaa\x05\xe3\x97\xe8\xb9\xb9\x30\xfc\x21\x2a\x12\x34\x3d\x53\ -\x0b\x5b\x07\x67\x57\x0f\xef\x80\x40\x7f\x2f\x77\x17\x27\x7b\x6b\ -\x73\x63\xed\x0f\xd9\x76\x6a\x8d\x75\xa6\xff\xe4\x00\x00\x00\x00\ -\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x03\xaf\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ -\x00\x00\x03\x76\x49\x44\x41\x54\x78\xda\xd5\xd5\x5f\x4c\x5b\x55\ -\x1c\x07\xf0\xef\x2d\x77\x85\xe6\xb6\x96\x95\xae\x80\x6b\x32\x62\ -\xc3\x20\x0b\x23\xfb\x47\xc8\xd2\x2c\x63\x2b\xe9\x6c\x0a\xed\xa0\ -\x16\x0a\x2c\x5b\x44\x10\xd2\xe8\xc4\x60\x66\xaa\x10\x8a\x0b\xd8\ -\x09\x41\x29\x30\xda\x75\xce\x62\xe9\xfe\x91\x39\x15\x97\x80\xb0\ -\x89\x92\x98\x2c\xfa\x62\x7c\xf0\xd1\x64\x06\x13\x5f\xe6\x83\xba\ -\x3d\xa8\xf7\xeb\x89\x5d\xe2\x43\xd9\xe2\x9f\xed\xc1\x87\x4f\x72\ -\xee\xcb\x37\x27\xf7\x7b\xce\xef\x80\xe4\x23\xf1\xe8\x83\xe1\x42\ -\x33\x6a\xb1\x00\xa7\xf0\xa4\xe0\x12\xdc\x42\x3d\x16\xe1\x15\x0e\ -\x4b\x1f\xa3\x51\x5a\xc2\x53\xd2\x32\xfc\xd2\x75\x34\x49\x37\xd0\ -\x2c\x7d\x82\x80\xd0\x22\xad\xa0\x55\xfa\x14\x2f\x68\x8e\x67\x05\ -\x3b\xfb\x9d\x3f\xf4\x26\x7a\x19\x9c\x0e\xb2\x7d\xaa\x9d\x6d\x93\ -\x6d\xf4\x4f\xf9\xe9\x3d\xed\xa5\x2b\xe6\xe2\xd6\x48\x19\xf3\xfa\ -\x75\x54\x86\xf4\x34\x9c\x7a\x8c\xc6\x91\x8d\x34\x8d\x98\x69\x1e\ -\xb1\xb0\x30\x52\xcc\x2d\x91\x27\x58\x10\x2f\xbc\x93\xbd\xe3\x3a\ -\xb4\xdb\x7b\xed\x6a\xe8\x4a\x88\x9d\xef\x74\xd2\x37\xe9\xe3\x81\ -\x37\x0e\xb0\xf2\xb5\x4a\x5a\xfb\xad\x34\xf7\x99\x89\x57\x40\x0c\ -\x0a\xc3\x42\x44\x78\xfd\xde\x77\x48\x08\xe7\x10\x63\xf2\x5b\xeb\ -\xfe\x63\x78\x30\xe9\x8d\x78\xd9\x9d\xee\x66\x53\xa2\x89\xb5\xd1\ -\x5a\xee\x1a\xdd\xc5\x92\x48\x09\x2d\x11\x4b\x26\xf0\x4d\xe1\xb4\ -\x10\x17\x62\x42\x14\xb4\x4c\x17\x51\x1a\xdf\xb0\x72\xdf\xf2\x00\ -\x48\x1a\x8f\x66\xa5\x25\xd6\xa2\xb6\xce\xb4\xf2\x50\xfc\x10\xab\ -\x26\xab\x68\x1b\xb7\xb1\x30\x5a\xf8\x67\x08\xce\x0a\x69\xe1\x92\ -\x70\x11\x34\xce\xe6\xab\xb9\x51\xfd\x2d\x84\x91\xf7\xc0\x53\x81\ -\xc3\xc8\x37\x1e\x35\x7e\x17\x98\x09\xa8\xee\xa4\x9b\x7b\x13\x7b\ -\x59\x16\x2f\x63\xf1\x99\x62\x22\x01\xe2\x82\xf0\xa1\xb0\x08\xea\ -\x16\x75\xaa\x3e\x66\xfc\x19\xaf\x6a\xcb\xef\x7b\x2a\xb4\x8d\xda\ -\x85\xfc\x40\xfe\x9a\xa1\xd9\xb0\xa6\x6f\xd5\xdf\x2e\x7d\xb9\x94\ -\x9e\x59\x0f\xf7\x25\xf7\x71\xdb\xb9\x6d\xb4\x26\xad\xc4\x0c\x88\ -\xf7\x85\xeb\xa0\x7c\x53\x66\xc9\x7b\x36\x6e\x4a\x14\xdd\x29\x4e\ -\x58\x6f\x5b\x13\x5b\x7e\x34\x4c\x98\xbe\xce\x0a\xb6\x3e\x6d\x5d\ -\x1d\x5e\x18\x66\xe4\xf3\x08\x4f\x2c\x9e\x60\xc7\xd5\x0e\x36\x5e\ -\x68\x64\x4d\xaa\x86\x95\xef\x56\xb2\x24\x5d\x42\xa4\x40\xcc\x0b\ -\x9f\x09\x5f\x09\xdf\x08\xab\xc2\x55\xb0\x20\x69\xe6\xe3\x31\xcb\ -\xad\xac\x60\x38\x50\x60\x6e\x35\x7f\x3f\xb8\x34\xa8\x86\x96\x43\ -\xec\xfa\xa0\x8b\xfe\xcb\x7e\x3a\xd2\x0e\xee\x4c\xed\xa4\x2d\x6d\ -\xfb\x6b\xc7\x37\x84\x9b\xc2\x17\x99\xb5\x72\x45\x51\x8d\x51\xd3\ -\x2f\x08\x6b\xcb\xd7\x2f\xcf\x85\xaa\xb2\x60\xd9\xdd\xfe\xe5\x7e\ -\x35\x38\x1f\x64\x60\x2e\x40\x67\xda\xc9\x3d\xa9\x3d\x2c\x9f\x2d\ -\xcf\x14\x77\x49\xf8\x48\x58\xca\x90\xe7\x65\xd5\x14\xb3\xfc\x86\ -\x81\x9c\xc0\x83\xcb\xf3\xa0\xc3\xde\x67\x57\x7b\xae\xf5\xf0\xc8\ -\xdc\x11\xba\x66\x5d\xac\x4e\x56\xb3\x62\xa6\x82\x98\x00\x71\x4e\ -\x38\x2f\xcc\x09\x97\xc1\x4d\x67\x8b\x88\xb0\x3c\xba\x7e\x79\xd9\ -\xe1\xd3\x75\x63\x75\x3c\x36\x77\x8c\xf5\xa9\x7a\xda\xdf\xb6\xb3\ -\x22\x51\x41\xf9\x94\x4c\x8c\xdf\x3b\xbf\x09\x70\x63\xdc\x44\x29\ -\x2c\x2f\xff\xed\x21\x04\x42\x92\x1b\xe4\x55\x71\x9d\xd5\x86\x64\ -\x03\xf7\xc7\xf7\x73\xfb\xc4\x76\xea\xc2\x3a\xe2\x64\xe6\xd6\x29\ -\x63\x7a\x55\x7b\x52\xf7\x2d\x8e\x23\xf7\x1f\x4d\x37\xd4\xc0\xac\ -\xb4\x29\x6b\xee\x29\xb7\x7a\x70\xf2\x20\x77\x8c\xee\xa0\xae\x57\ -\x04\xbf\x04\x6a\xfb\xb4\xbf\xe7\x0d\x28\x3f\xa1\x07\xa5\xff\x6a\ -\x6c\xc2\x83\x2a\x53\xa7\xe9\xae\x63\xcc\xa1\xee\x1e\xda\xcd\xdc\ -\x8e\x5c\x6a\xba\x34\xaa\x12\x32\xfc\x8a\x60\x8e\xef\x3f\xcd\x63\ -\xf8\xf0\xec\xe6\xe7\x37\xab\xd5\x03\xd5\x94\x7d\x32\x95\xe7\x0c\ -\x44\x50\x33\xf4\x50\x06\x3d\x02\x9a\x33\xa5\x2f\x6e\xa5\xd2\xa2\ -\x27\xba\xa5\x6b\x0f\xed\x05\x01\x21\x49\x47\x35\x4b\xf2\x33\x1b\ -\xbe\xcc\x2e\x6b\x7d\xff\xbf\x37\xef\x0f\x9a\xca\x63\x9c\x02\x93\ -\x79\xca\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x02\xa0\ -\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\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ -\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\ -\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ -\xd7\x0c\x1d\x0d\x11\x0d\x81\xdc\x28\x8a\x00\x00\x02\x2d\x49\x44\ -\x41\x54\x78\xda\x8d\x92\x4b\x6b\x53\x41\x18\x86\xdf\x99\x73\x89\ -\x39\x27\x27\xd5\xa8\xb9\x94\x6e\x52\x53\xdb\x8d\xd5\x58\xaa\xe2\ -\x05\x74\x97\x85\x05\x05\x0b\xd5\xba\xf0\x07\x08\xf5\x27\x88\x22\ -\x88\x1b\x11\x14\x5d\x58\x14\x29\x2d\xd9\x88\x6e\x04\xc1\x85\x8b\ -\xea\xca\x85\x0b\x15\x5d\x18\xa4\x55\xc4\xa0\x6d\x9a\x73\x92\x9c\ -\xcb\x5c\x9c\xb4\xb8\x90\xc6\x98\x81\x6f\xf3\xcd\xfb\x3d\xcc\xf3\ -\x31\xe8\x76\x0a\x93\x0f\xae\xe5\x4f\xdd\xb9\xd2\x2d\xa3\xfd\xeb\ -\x62\x68\x6a\xae\x94\xb4\xc8\x3d\x03\xfe\x31\x23\x7b\xe8\x75\xbd\ -\xf2\xb2\xd2\x29\x47\x3b\x35\x77\x9f\x9d\xcf\x10\xc9\x1f\x4e\x9d\ -\x1c\x21\xe7\x4e\x8f\x51\xc9\xfd\x47\x99\xc3\x33\x3b\x7b\x02\x0c\ -\x4f\x97\x89\x54\xc3\x63\x23\x4e\x26\x69\x6b\xd8\x9a\x8c\xe1\xc8\ -\xf8\xae\x9c\x60\xfe\x6c\x6a\xdf\xf9\xff\x03\x84\x60\x97\xb6\xd9\ -\x28\x8d\x0e\xa7\xe0\xae\x35\x50\x57\x55\x1c\x1d\x44\x36\xdd\x37\ -\x01\xc1\x2f\x76\xdd\x81\xf2\x2e\x12\x19\x2e\x1c\x2f\xa6\x74\x53\ -\xd7\xc0\xb9\x40\xc4\x04\xc2\x90\x23\x97\xdd\x8e\x0f\xef\x3f\x9e\ -\xd0\xfb\x06\x9f\x06\x3f\x3f\x55\x37\xbd\x20\x3f\x71\xd3\x09\x6a\ -\xcb\xe5\x42\x86\xc5\x62\xa6\x8e\x20\x94\xaa\x80\xb0\x5d\x11\x60\ -\x98\x71\x8c\x1f\xd8\x1f\x57\x7a\xf3\x89\x42\x69\xcb\x26\x40\x58\ -\xff\x76\x37\x41\x6b\x43\x03\xb9\x14\x42\x06\x30\x41\xc1\xa5\x86\ -\x48\x68\xa8\xb9\x0c\x5f\x96\x6b\xf8\xb5\x26\x11\xb3\x9c\x3d\x52\ -\xb0\xeb\x7f\x29\xe4\x8e\xce\x4c\x46\xee\x8f\xab\xb9\xfe\x7e\x10\ -\x3d\xa1\x00\x3a\x82\x88\xa2\x19\x00\x6e\x83\xa3\xe5\x0b\x04\x4a\ -\x83\x0b\x01\x10\x0d\xab\xd5\xa5\x83\x9a\x33\xf0\x8a\xd7\x97\x2a\ -\x3a\x00\xf0\xc0\xcb\x47\xad\x55\xbc\x5b\x7c\x82\xb7\xad\x15\xc8\ -\xd0\xc3\x85\xcb\x8f\x11\x33\x4d\x10\xda\xd6\x88\xf0\xac\x7c\x1b\ -\x02\x1a\x04\x67\x90\x82\x13\x02\x79\x06\xc0\x8b\x75\x80\x16\x4b\ -\xdc\x30\x9c\xec\x7d\x6a\x58\x54\xb3\xd3\xa4\xf1\xf5\x4d\x35\x61\ -\x5b\xb0\xac\x38\x28\x25\x68\xb5\x02\x44\x81\xaf\x60\x46\x52\x40\ -\x48\x48\x00\x20\x4d\x00\x58\x07\x7c\x5f\xbc\x05\x00\x2b\x7f\xbc\ -\xac\xec\x5e\xa8\x4d\xc2\x49\xd8\x30\x0c\x5d\x41\x3c\xa8\x69\x78\ -\x9f\x9f\xbb\x3d\xfd\x44\xdd\xc9\x6e\x2c\x48\xa3\x1b\x1a\xa4\x9d\ -\xd4\xd1\x31\xdb\xb1\x69\xa7\xe1\x79\x4d\x50\x4a\x51\xd7\x1a\x70\ -\xbd\x46\xdb\xbb\x77\x00\x35\x6d\x77\x61\x6e\xd6\x11\x2c\x80\x8c\ -\x7c\xf0\xa8\x05\xc1\x23\xb7\x67\x80\x0a\xef\x90\x2c\x34\x85\x1a\ -\x64\xcc\x87\x50\x10\x48\x11\x76\xca\xfe\x06\x81\x37\xee\xc0\xcc\ -\x8e\x0a\x9c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x04\x4d\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ -\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ -\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\ -\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x01\x04\ -\x03\x32\x2d\xe1\x0e\xef\xfd\x00\x00\x03\xcd\x49\x44\x41\x54\x78\ -\xda\x9d\x93\x6b\x4c\x93\x67\x14\xc7\xcf\xdb\xf6\x6d\x29\xa3\xd2\ -\x95\x44\x4a\x69\x55\x70\x8b\x09\xac\xb4\x23\x23\x63\x86\xb9\x76\ -\xa3\x33\x23\xcb\x5c\xc2\x30\x5b\x36\x2f\x21\x20\x2e\xdb\x90\xf5\ -\xa2\x36\x59\x84\xc4\x1b\x51\xdc\xb2\x01\x9b\x92\x98\x52\x34\x31\ -\x26\x04\x9b\x08\xd8\x02\x51\x54\x3e\xcc\x81\x26\x58\x19\x1a\x1d\ -\xa0\x64\xd6\xae\x17\xe8\x4a\x97\xb5\xef\xe5\xd9\xc1\x84\xc4\x0f\ -\x33\xb6\x3d\xc9\x3f\x79\x72\xce\x3f\xbf\xf7\xbc\xe7\x3c\x0f\x05\ -\xa9\x07\x65\xb5\x5a\xf4\x26\x93\xa9\x31\x33\x33\xb3\x9c\xe3\x39\ -\x71\x34\xfa\xf7\x83\x50\x28\x78\xde\xe1\x70\x9e\xbd\x3a\x7a\x2d\ -\x01\xe9\x40\x9b\x9b\x0f\xd4\xfa\x9e\xf8\x12\x1c\xc7\x92\x48\x24\ -\x42\x66\xe7\x66\xc9\xcd\x5b\x13\xa4\xef\x42\x2f\x6f\xb1\x7d\xdb\ -\x8e\x1e\x51\xca\xd4\x77\x2b\x8d\xeb\x2f\xb9\x07\xff\x09\x04\x03\ -\x24\xfe\x6f\x9c\x2c\xc5\x96\x48\x6b\xeb\x51\xae\xac\xec\x8d\xfb\ -\x34\x4d\xff\x80\x96\x37\x51\x42\x48\x95\x2e\x7b\x29\x6b\x4b\x76\ -\xb6\x4c\xca\x71\x1c\x30\x6c\x02\x28\x8a\x82\x41\xb7\xfb\xcc\xf8\ -\xf8\x84\x1d\xcb\x01\x14\xbb\xe2\x15\xa4\xc0\x15\xca\x5f\x96\xbf\ -\x35\x33\x33\x07\x84\x10\x60\x18\x06\x58\xfc\x80\x4a\xa9\x9c\xc6\ -\xda\x93\x15\x68\x3a\x60\x69\x51\x51\x51\xd9\xf4\xf4\xef\xc0\xb2\ -\x0c\x8a\x05\x96\x61\x61\xdb\xf6\x6d\x95\x6b\xd7\xad\xa5\x9f\x35\ -\x9a\xad\x4d\xd9\xc2\x64\xa9\x6f\x6f\xaa\x78\xad\xaa\xaa\xca\x16\ -\x0c\x86\x28\x69\x86\x14\x54\x2a\x15\xe0\x02\x21\x23\x53\x5a\x88\ -\xe3\xd9\x58\xac\x2d\x1a\x6d\x6c\x6c\x5c\xdf\xb0\xbb\xe1\xd0\xc2\ -\xc2\xe2\xe1\x64\x3b\xa6\x0c\x06\xc3\x87\x08\xa3\xf2\xf3\xf3\xa1\ -\xef\x82\x0b\x8e\x1e\x6b\xc3\xae\x11\x2c\x91\x80\x5a\xad\x79\x2f\ -\x43\x22\xbd\xbb\xe1\xd5\x0d\x13\xaa\x3c\x55\xed\xf5\x6b\xd7\x17\ -\x92\x05\x4b\xb4\x5a\x6d\xf5\x83\x3f\x66\xa1\xcf\xd5\x0f\xfa\xd2\ -\x52\xe8\x77\xbb\xe1\xb6\xd7\x0b\x40\x00\x34\x1a\x0d\x64\x65\x65\ -\x49\x69\x09\x4d\xfd\x7a\xe3\x06\x3b\x34\x34\x7c\x2e\x19\x30\xd5\ -\xd2\xd2\x5c\xa3\xd7\xe9\x4b\xb4\xc5\xc5\xf0\xa7\xcf\x07\x42\x81\ -\x00\x0a\x0b\x0a\xe0\x7c\x6f\x2f\xf0\x3c\x0f\x72\xb9\xfc\xe9\x0d\ -\xb9\x77\xf7\x1e\xb1\xef\xb3\x7b\x30\x77\x4e\xf4\x22\x68\x67\x67\ -\xc7\x67\xe5\xe5\xe5\xa7\xfc\x7e\x3f\x60\xd7\xf0\xc1\x66\xd3\xf2\ -\x15\x83\x75\xea\x7c\xd0\xeb\x4a\x40\x2c\x11\x43\x20\xe0\x87\x70\ -\x28\xcc\x7c\xde\xf2\xc5\x40\x22\x91\xb0\x03\x80\xff\xb9\x4f\xba\ -\x44\xa7\x15\x5a\xcc\xe6\xef\x84\xb4\xf8\xc0\x19\x67\x8f\x60\x31\ -\xb2\x08\xc7\x8f\x1d\x07\x35\x02\x1f\xcd\x3f\xe2\xbb\x4e\x75\xc5\ -\x7c\x8f\x7d\x21\x02\x30\x3f\x36\x36\x36\x89\xf3\x1e\x07\x00\x0f\ -\xea\x2f\x14\xf9\xdf\x8e\x1b\x76\xd7\xcb\x36\xbd\x63\x70\xdc\xf1\ -\xde\xa9\xf6\x78\x3c\x90\xa3\xc8\xc1\x39\xae\x01\x65\x9e\x92\xef\ -\xec\xfc\xf9\xb7\xf6\xf6\xf6\x8b\xd8\xd9\x4d\xb4\xce\xa2\x82\xa8\ -\x25\x14\x83\x22\xf0\xbc\xb0\x58\xcd\xaf\x38\x7b\x1c\x93\x5b\x3e\ -\xfe\x88\x68\xd6\x68\x88\x4e\xaf\x23\x46\xa3\x91\x0c\x0e\x0e\xf0\ -\x7b\x9a\xf6\xf4\xa2\xa5\x10\x25\x7c\xe1\x62\x9e\x3d\xdb\xf6\x5a\ -\x36\x17\x14\x16\x9c\x75\x76\xf7\xe4\xcc\xcd\x3d\x04\x11\x2d\x82\ -\x55\xb2\x55\xb0\x73\xe7\x0e\x5c\x12\xb9\x6a\xdf\x6f\xaf\x45\xdf\ -\x0c\x24\x11\x2b\xa3\xa0\xcd\x96\x26\x8b\x22\x47\x71\xf0\xe4\xc9\ -\x2e\x51\x30\x10\x02\x01\x6e\x9e\x63\x39\xd0\xbd\xae\x03\x85\x42\ -\x71\xbf\xbe\x6e\x97\xed\xe9\xaf\x27\x19\x22\xa5\x32\x57\xf2\xf5\ -\x37\x5f\x76\xac\xce\x55\xd6\x4d\x4d\x4d\x61\x87\x32\x48\xc4\x13\ -\x10\x8b\xc5\x70\x51\x6a\x78\xbf\xd2\x14\xb2\x5a\x6c\x7b\xd1\x7b\ -\x0b\x45\x92\x05\x0b\x2c\x36\xf3\x3e\x96\xe3\xb7\x76\x3b\x9c\xfb\ -\xc3\xe1\xf0\x27\x5b\x3f\xad\x99\x5f\xbe\x97\xf8\xc2\x70\x04\xdb\ -\xe3\x27\xda\xbe\x3f\x8c\xf9\x4b\xe8\xe5\x20\x95\x70\x38\x4f\x7b\ -\x2b\x2a\x36\x0e\xe3\x51\x8e\xa2\xda\x4e\xb4\x7e\xb5\xab\xa1\x9e\ -\xfc\xd4\xf1\x23\x67\x34\x1a\x3a\x30\x97\x0d\x69\x84\x40\x22\x96\ -\x44\x95\x79\x79\xb9\x78\x5e\x96\x30\xce\x30\xab\x4b\x4b\xf5\xe4\ -\xf2\xc8\x88\xeb\xca\x95\xd1\x23\x98\x8b\xa4\x03\x16\x45\xa3\xd1\ -\x5f\x6a\x6a\xaa\x1d\x1a\x8d\xfa\x34\x25\xa0\x1e\xe2\x8c\xab\x47\ -\x46\x2e\x0f\xb8\x5c\x17\xad\x58\x7f\x0c\x69\x06\x85\x12\x1c\x3a\ -\x72\x70\x07\xc3\x24\xea\x70\x61\xd4\xed\x49\x6f\xff\x90\x67\xb8\ -\x1b\xf3\x3e\x14\x49\x17\xfc\x1f\x0d\x85\x8c\x2f\xad\xa0\x3f\x12\ -\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x04\x6e\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x04\xc2\x00\x00\x04\xc2\ -\x01\xbc\xcf\x90\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\ -\x1b\x16\x0c\x0e\xd2\xa1\x06\x61\x00\x00\x00\x06\x62\x4b\x47\x44\ -\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x03\xfb\x49\x44\ -\x41\x54\x78\xda\xb5\x92\x5f\x68\x1c\x55\x14\xc6\xbf\xfb\x67\x66\ -\x77\x36\xd9\x90\x0a\x4d\x49\xa4\xa4\x4d\x49\x97\xa0\x60\x12\x23\ -\x44\x1a\x48\x45\xd2\x86\xe0\x43\x8c\x85\x9a\x06\xa1\xad\x10\x34\ -\xa2\x28\x4a\xfc\x83\x88\xa0\x14\x2b\x62\x8d\x4f\x79\x90\x52\xfa\ -\xd4\xa7\xfa\x58\x69\x28\x48\x15\x89\xa2\xd6\xda\x24\x26\x36\x6b\ -\xc2\x6e\x53\x45\xc8\x6e\xb2\xbb\xd9\x9d\xd9\xb9\x33\xe3\x99\xdb\ -\x6c\x5a\xd6\x22\xe2\x9f\x03\x1f\x73\xb8\x73\xbf\xdf\xf9\xf6\xec\ -\xe0\xbf\xa8\x20\x08\x42\xed\x20\xd5\x57\xce\x18\x09\x99\x73\xe7\ -\x76\x7b\xb3\xb3\xa7\xd7\xa7\xa6\x7a\x54\x36\xcb\x83\x8a\x81\xf4\ -\x77\xfb\x7b\xf6\xed\x0b\xb6\xf5\xf7\xff\xbc\xba\xbc\xdc\xbf\x7b\ -\x7c\x3c\x25\x41\xe5\x2d\x2f\x4d\x1a\x07\x0f\xee\x17\x5d\x5d\xe0\ -\x9e\xf7\xd7\xe9\x70\xf7\xf2\xa4\x44\xc1\xf7\xdb\x56\x3f\x3d\xff\ -\x11\x80\x21\x0d\x4e\x9e\x3d\xdb\x1b\x6f\xd8\x01\x55\x2e\xe3\xdf\ -\x94\x13\x8f\x63\x65\x69\xb9\x1f\x54\x1a\x9c\x9d\x5f\x90\x46\x26\ -\x73\xeb\x67\x31\x86\x74\x5d\x1d\x40\xcf\x9d\xb9\x1c\x98\xef\xdf\ -\x3d\x39\xe7\xfa\x5e\x58\x3b\xd7\xd7\xc1\x68\xcf\x4c\x08\x14\x6d\ -\xdb\xdc\x02\x7b\x24\x77\x63\x03\x21\xc2\x4e\x24\xb0\xff\xc0\x01\ -\x30\x02\x7f\x7d\xe1\x02\xea\x92\x49\xa0\x1a\x4e\xd0\x5c\x4b\x0b\ -\x1e\x19\x18\xd0\x7f\xdc\x0f\x17\x2f\x22\xba\xb0\x00\x6e\x9a\xf0\ -\x2a\x57\x48\x50\x9b\x60\x45\x4a\xec\xdd\x4b\x3e\xae\xc1\x5d\x34\ -\xc0\x6e\x6d\x85\x2a\x95\xf4\x3b\x92\xee\x4b\x74\xd6\xd9\xd7\xa7\ -\xa1\x74\x57\x7b\x2a\xef\x14\x63\x55\xe0\x42\x01\x65\xd2\xc2\x99\ -\x33\xb0\xd3\x69\x0a\xe9\x6b\x63\x5b\x6f\x2f\xd0\xd9\x09\x65\x17\ -\xb5\xfc\x8e\x0e\x24\x7a\x7a\xe0\x79\x1e\x94\x52\x28\xa5\x52\xda\ -\x43\x5e\x0d\xd6\x89\xb7\x56\x41\x53\xdd\x62\x51\x83\xc2\xba\x3a\ -\x31\x81\xfb\xc6\xc6\x20\x9b\x9a\xf4\xd9\xae\xee\x6e\xdc\x94\x5c\ -\xf7\x8d\x0f\x3e\x14\x42\x75\xaf\x56\x56\x30\x37\x39\x89\xc0\x75\ -\xa1\x39\x8e\x03\xef\xce\xc4\xbe\x94\x7a\x15\xe5\x8a\xd6\xd6\x30\ -\x77\xea\x7d\xa8\x1b\xa9\x10\xa2\xd3\x37\xb4\x77\x62\xfb\x03\x1d\ -\x61\x4a\x2d\x7f\x25\x8d\x85\x8f\x3f\x80\xca\xad\xc1\xa5\xa4\x3c\ -\x12\x81\x9b\xcf\xa1\x6c\xdb\x77\x24\x16\x1c\x6b\x8b\x8b\x10\x96\ -\x05\x23\x66\x21\x6a\x19\x80\x0f\x24\x4f\xbd\x83\x3d\xcf\xbf\x0a\ -\xbf\xa1\xa9\x32\x40\x27\x8d\xe5\x32\xb8\x71\x7a\x02\xd2\xb3\xe1\ -\xe4\xd6\x91\xff\x3d\x8b\xe4\xcc\x4f\x10\xa6\x01\xb7\xec\xdc\x06\ -\xfb\x04\xce\x5c\xbb\x06\x8f\x92\x58\x51\x81\x78\x7d\x84\x64\xc1\ -\xaf\x8d\x62\xfa\x8b\xcf\xd1\xfe\xf8\x93\x1a\x5a\x81\x5f\xb9\xf4\ -\x19\xc4\xa5\xf3\x70\x8a\x2e\x4a\xc4\x29\x86\x21\x15\xc0\x62\xd1\ -\xea\x55\x08\x80\x01\xc4\x87\x29\x3c\x08\x55\x04\x77\xf2\x58\x7f\ -\xec\x29\x74\x0c\x0d\xeb\x94\xa4\x2d\xf8\xae\x81\x27\xe0\x1c\x7b\ -\x05\x56\x8d\x81\xa8\x09\x44\x0c\xf2\x49\xf2\x4b\x5e\x0d\xe6\xd4\ -\x31\x48\x09\xad\x88\x65\xc2\x1f\x7d\x0d\x0f\x1f\x1f\x83\x10\x42\ -\x7f\x7a\x75\x37\xe7\x50\xff\xdb\x7c\x38\x40\xc3\x13\x83\x23\x08\ -\x46\xdf\x84\x49\x6b\x33\x08\x6c\x84\x60\x33\x04\xe3\x36\x38\x10\ -\x9c\xb8\x04\x0e\x13\x53\x04\xeb\xc5\xb7\x09\xfa\x1c\x24\x4d\xe1\ -\x9c\x13\x74\x16\xfc\xc3\x23\x30\x27\x46\xd0\x90\x59\x24\x90\xa1\ -\x75\xff\xe1\xa3\xa8\x7d\xf9\x04\x0c\xf2\xd0\x7c\xc8\x3f\x27\x66\ -\xba\xe3\xa4\xc6\xd7\xdf\x45\xf7\xb1\x67\x42\xa3\x06\xc7\x52\x3f\ -\x42\x9d\x3c\x8c\x18\xb7\x51\x6b\x38\x1a\xbe\x7d\x35\x89\x68\x34\ -\x0a\xd3\x34\xd1\x7e\xe4\x69\xdc\xfb\xc6\x49\xed\x15\x12\x04\x46\ -\x15\x78\xf3\xa0\xb9\x65\x8f\x4e\xa9\x75\xfd\x7b\x64\xdf\x3a\x04\ -\xe6\xda\x60\xe1\x6c\x12\x53\x0e\x9c\x13\x34\x28\x3d\x8b\x48\x24\ -\xa2\xef\x35\x35\x37\xdf\x82\x85\x9c\x4a\x62\xda\x19\x0b\x0c\xae\ -\xc1\x7e\x00\x4c\x8f\x0e\x23\xff\xcd\x65\xd8\x57\xbf\xc2\xf2\x4b\ -\x83\x70\x4b\x36\xca\x0a\x28\x3a\x40\xa1\x04\x38\x65\xc0\xb5\x1d\ -\xfc\x3a\x3e\x04\x35\x33\x8d\x8d\x6f\xbf\xc4\x77\xcf\x0e\x6b\x2f\ -\x13\xac\xc2\x85\x24\x59\xdb\x12\xad\x7e\xb6\x30\x23\x38\x19\xc1\ -\x81\x2b\x63\x87\x50\x13\x05\x62\x16\x41\x84\x09\x67\x73\x28\xf3\ -\x01\x0f\x40\x99\x93\x02\x1f\xf3\x2f\x0c\x62\xc3\x06\x02\x46\xa0\ -\x1a\x0b\x22\x56\x0b\xdf\x5b\x53\x15\xb0\xa3\x58\xfc\x72\x7d\x7b\ -\xdb\xa3\xce\xd2\x2f\x90\x26\x11\x22\x04\x30\x09\x4a\xb2\x0d\xea\ -\x49\x92\x23\x2c\x3d\x40\x49\x02\xd3\x99\x32\x09\x6a\x01\x3c\x06\ -\x58\x66\x1c\x99\x3c\x83\xab\xfc\x29\x0d\x66\x8c\x79\xef\x35\x36\ -\x8e\xd8\x85\xc2\x27\xa4\x3e\x5a\x8d\xc4\x3f\x28\x21\x33\x2a\x00\ -\xa6\x02\xa5\x8e\xe3\xff\xac\x3f\x00\x96\xb0\x06\xcd\xf7\xa2\xd6\ -\x6c\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\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ -\x00\x00\x04\xbb\x49\x44\x41\x54\x78\xda\xad\xd1\x7d\x50\xd3\x75\ -\x1c\xc0\xf1\xdf\xb6\x04\x44\xe3\xb8\xe4\x88\x38\x4c\x22\xae\x7c\ -\x80\xbb\x84\xcc\xae\x07\x54\xc4\x09\x2a\xc7\x50\x61\x1b\x6c\xfb\ -\x8d\x31\x10\x35\x60\x24\xc2\x16\x2a\x8c\x0d\xd8\xd8\x03\xdb\x78\ -\x18\x0f\xe3\x79\x01\x8e\x3d\xe3\x1c\x41\x04\x68\x6a\x89\x69\x69\ -\x45\x3e\x64\xfa\x05\x4f\xcc\x8e\xab\xfc\x27\x4d\xf6\xe9\x57\xd7\ -\x65\x77\xd1\xc3\x25\xef\xbb\xef\x1f\x9f\x7f\x5e\xf7\xb9\xcf\x17\ -\xfb\x3f\xd9\x0d\x47\x46\x5d\x2d\xc2\x4f\x9c\xed\x15\xcb\xb0\x85\ -\xea\x78\xaf\x36\x72\xa0\x45\xf8\xd3\x84\x43\x7d\xd1\xa4\x2f\xf5\ -\x5d\x30\x78\xd4\x5a\xab\x70\x35\x1f\x84\x8f\x9d\xb5\xc2\x05\x43\ -\xbb\xf4\x95\xbe\x43\x3d\x55\xb7\xc6\x7b\xc4\xf7\x06\x8d\xb2\xd0\ -\x05\x41\x1b\x6b\xab\xbd\x87\xcc\xf5\x39\x03\x2d\xc5\x9e\x33\x16\ -\x85\x45\x23\x7e\x8b\xbc\x20\x70\xd5\xfe\x84\xed\xcd\xb2\xbc\x9f\ -\x3b\x15\x79\xe0\x6c\x97\xd2\x1f\x1b\x14\x66\xed\xa0\x68\x44\xcc\ -\xf5\xcd\x32\xc1\xc4\xb1\x66\x11\x74\x95\x73\x40\x2d\x64\x33\x1e\ -\x0b\x15\x65\x6f\x5f\xd4\x5c\xca\x92\x0c\xb6\x89\x1e\x0c\xb5\x0b\ -\xa1\xb5\x3c\x13\x6a\xcb\xb2\x3d\x86\xf8\x18\x9a\x15\xc3\x48\xd8\ -\x9f\x22\x66\x6f\x67\x54\xd4\x0e\x1b\x86\xf9\xfc\x23\x9a\xcb\xda\ -\x42\xaa\x13\xa5\xe6\x1f\x37\x14\xcd\x8d\x74\x1f\x86\x63\x06\x11\ -\xd8\x94\x99\xd0\xaf\xca\x06\x17\x6d\xf3\xf5\x7e\x0a\x79\x8b\xf1\ -\x77\xbc\x8f\x40\x1d\xfe\x7e\xb2\x2f\x05\x7b\x6f\x3a\x97\xf9\xd7\ -\x11\xb3\xd7\xdf\xdf\x34\x2f\x71\x75\x77\x55\xc6\x8f\x63\xc6\xc3\ -\x60\x6b\x78\x1b\x06\xdb\x8a\xa1\xbf\x92\x03\x66\x02\x3f\x57\x56\ -\xf0\xdd\xc9\x84\xd8\x49\x1d\x99\x44\x7d\x87\xd8\xb0\xdb\x6f\xa9\ -\xe2\xea\x5e\x1e\x9a\x15\x0a\xd1\xf5\xc2\x7c\xd4\xeb\x45\x51\xce\ -\x8b\xd2\xe3\x22\xc8\x9a\xc3\x7c\x87\x45\xbb\x1f\x46\x3a\x84\x30\ -\xd0\x58\x00\x0e\x4d\x0e\xf4\xc9\x70\xb0\x28\x33\x60\x9c\x4b\xbf\ -\x73\x65\x6f\x36\xea\xda\xf8\xea\xe5\x83\xbe\x3e\xd6\xb3\x9c\x14\ -\x74\x19\xc7\xd1\x15\x2e\x17\x9d\xe7\x30\x6e\x76\x52\x48\x82\x79\ -\x61\x69\x0e\x75\xab\xa2\x20\xf9\x41\x5b\xb5\x00\x4c\xba\x02\xb0\ -\xd7\xee\x07\x63\x19\x03\x4c\x72\x1c\xde\x95\xa4\x7b\x4e\x27\xc5\ -\x4d\x4f\xc4\xc5\xa1\xb3\xc9\x89\xe8\xa3\x34\x1a\x3a\xb7\x95\x8a\ -\x3e\x63\xd0\xd1\x89\xf8\x98\x1b\xcd\x14\xd2\x01\x98\x0f\x95\xe4\ -\x50\x83\x55\x82\xed\xd7\x7a\x65\x5c\x70\xe9\xf3\xa1\xa5\x3c\x03\ -\x54\x22\x1c\x74\xc5\x0c\x68\x2a\x65\x43\x7b\x69\xfa\xcd\xd6\x20\ -\xff\xa1\x53\x1b\xa2\xd1\x89\x35\x6b\xd0\x87\xd1\xd1\xe8\x54\xcc\ -\x1b\xc8\xfd\x66\xc4\x8d\x86\x45\x4f\x1c\xe8\x78\xf4\xa9\x8f\x52\ -\xe6\xc6\x2f\x36\x94\x24\xbb\xf4\xa2\x9d\x30\x50\xb7\x0f\x8e\x56\ -\xf3\xa1\xa7\x92\x0d\x7a\x61\x32\xb4\x96\xec\x84\xaa\xdc\x44\xa8\ -\x29\xa4\x0f\xea\x96\x78\xd7\xbf\xbf\x32\x08\x8d\x50\xc8\x68\x18\ -\xc3\xd0\xe8\x12\x2f\x64\x0e\x0f\xbc\x56\x8d\x61\x09\x7f\x41\x8d\ -\x65\x74\x4a\x6b\x09\x4d\xd9\x5b\xc1\x98\xeb\x92\xa4\x13\xb7\xe4\ -\x42\xd7\x11\x06\x74\x94\xd1\xa1\xa5\x28\x11\xfa\xe5\x2c\x68\x10\ -\xd2\xc0\xc0\x8c\x99\x19\x5f\x1d\x82\x2e\x2c\xf6\x9a\x9a\x58\xea\ -\x33\x35\xba\x22\x70\xea\x3c\x99\x84\x3e\xf5\x5b\x4c\xe0\xc1\x93\ -\x12\x0c\xa3\xfe\x81\x1e\xad\x60\x93\x5b\x4b\x92\x04\x23\x0d\xbc\ -\xfb\xf2\xdc\x78\x70\x6b\xf9\xd0\x59\x9a\x0a\x76\x39\xb1\x2d\x81\ -\x99\xa5\xa9\x30\xa0\xc1\xa1\xad\x74\x17\x8c\xb3\x62\xbf\xff\x2a\ -\x34\x70\x66\xf2\xb9\xa7\x6f\x37\xbc\x16\x39\x4d\x7f\x31\xe4\xd2\ -\xf8\xaa\xb0\x69\x44\xe0\xc8\xff\x49\x64\x59\xf9\xfc\xa4\x36\x34\ -\x94\x8a\x99\xe5\x3c\x72\x79\xd6\x26\xc6\xa0\x8e\x33\x53\x5f\xb4\ -\x03\x7a\x88\x0d\x5d\x1a\x2e\x98\xc5\x4c\x70\xaa\xd9\x60\x2c\x4f\ -\x01\x97\x32\x1d\x1c\x2a\x36\xd8\x94\x6c\x38\xbd\xed\xe5\x1f\xbe\ -\x7e\x29\xec\xdb\x5e\xea\xfa\xdb\xb9\xeb\xc2\xb5\x55\xc9\xaf\xc4\ -\x64\x87\x2f\x1f\xf9\xfc\x85\xb0\xa9\x7b\x24\x02\x5f\x1b\x89\xf4\ -\x11\x11\x3d\x98\x3a\x77\xdb\x3a\x71\x76\x6c\xa5\x5b\xcb\xbe\xaf\ -\x15\x24\xc0\x58\xe3\x1e\x8f\xb5\x82\xe9\x19\x26\xf0\x1e\x49\x2a\ -\x8c\x36\x66\x82\x5b\x9d\x0e\x56\x05\x13\x4e\xb5\xef\x9b\xb3\x30\ -\x63\xef\x3a\x93\x62\xee\x1c\xd9\x18\xd1\x68\x92\xa6\x45\xd9\xd5\ -\xbc\x90\xc2\xc8\x15\xe1\x25\xcf\x86\x1c\xbf\xba\x79\x03\xd2\x07\ -\x07\x0d\x89\x31\x2c\x18\x33\xc9\x39\xc1\x76\x15\xfb\x90\x51\xbc\ -\x6b\x76\xbc\x96\x0f\x63\x4d\xfc\xb9\xf7\xaa\xd8\x9e\xe1\x3a\xfc\ -\xa1\x59\xce\x80\x89\x8e\x3d\x60\x92\xee\x86\x89\xce\x3d\x70\xb2\ -\x35\xe7\x9e\x81\x17\x5b\xaf\x4b\x58\xab\x31\xcb\xd2\xa2\x1c\x2a\ -\x3c\xd0\xad\xcb\xf0\x72\x6a\x52\x48\xca\xe5\xcb\x9f\xa9\x09\x08\ -\x90\xfe\x86\xfe\x9a\xa5\x9a\xfb\xd4\x51\x39\xfb\x75\x4b\x65\x5a\ -\x9f\xb5\x9a\x75\x69\x50\xc5\xb9\x65\xab\x60\xcc\x7e\xa0\xe7\x3e\ -\x1c\x6b\xe2\xc1\xd9\x16\x1e\xf4\x55\xec\x86\x33\x7a\xbe\x67\x58\ -\x9f\x75\xc1\xa2\xe0\xc4\xda\x54\xdc\x15\x66\x15\xd7\x57\x5b\x46\ -\x27\xd3\x68\x34\x6c\xde\x4c\xa6\x14\x92\xa5\x26\xc3\xc7\xae\xc6\ -\x57\xdb\x54\xf8\x36\xe2\xe1\x26\x19\x4b\x62\x92\xa5\x75\x3b\x54\ -\xac\x93\xb6\xca\x94\x19\xbb\x92\xf9\x60\x40\x9a\xf6\x4d\x67\x39\ -\xb3\xde\x59\xc3\x5b\xea\x3e\x94\x43\xbe\x18\x19\x89\xfd\x6b\x00\ -\x18\xf6\x85\x78\x17\xe9\x98\x82\x4f\xb1\xca\x71\x6f\x87\x82\x1b\ -\x60\x55\xe2\xab\xac\x2a\x3c\xc1\x24\x4f\x4f\x69\x28\x4e\x4c\x76\ -\xd7\xe0\x9c\x9a\x83\xbb\x37\xdd\xbd\x1b\x80\xfd\x97\x7e\x01\xca\ -\x69\x50\xfd\x5a\x79\x3f\xfb\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ -\x42\x60\x82\ -\x00\x00\x02\xf8\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ -\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x02\x61\x00\x00\x02\x61\ -\x01\xc1\x30\x55\xfa\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ -\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x75\x49\x44\ -\x41\x54\x78\xda\xed\x94\x5f\x68\x52\x71\x14\xc7\x7f\xca\x74\x69\ -\x46\x8e\x74\xb9\xa9\xc3\xc2\x49\x84\xb0\xd7\x20\x14\x64\x15\x8d\ -\x5e\x2a\xda\x22\xa3\x27\x5f\xa2\xc1\x6a\x54\x0f\xbd\xee\x25\x2a\ -\x84\xa0\xd1\x1e\x56\x2c\x1a\x45\x50\xc9\xcc\x49\x2f\x21\x44\x10\ -\x62\x22\x18\xf8\x0f\x99\xe2\x1f\xa6\xa2\xf9\x27\x6d\x3a\xaf\xee\ -\x74\x7e\x17\x1f\x1c\x91\xde\x1e\x7a\xaa\x03\x5f\xce\xbd\x3f\xce\ -\xfd\xdc\xf3\xef\x5e\x1e\x00\x90\xbf\x61\x7c\xd4\x7f\xf0\xbf\x02\ -\x9e\x39\xa9\x1c\x7b\x34\x37\xfe\xf8\xce\xcc\xb0\x96\x03\x98\x3b\ -\xf4\x94\x7e\x67\xfd\xca\xf1\x1f\x97\x05\x07\xf6\xef\xeb\x19\x0c\ -\x00\xfd\xc4\x5b\x59\x59\x91\x4e\x9f\x18\x1d\x5b\x9e\x15\x7f\x8d\ -\x2c\x8d\x56\x16\xe7\xa5\xe7\xfa\x3c\xd3\x1b\xec\x74\x3a\x15\xa1\ -\x50\xa8\x58\xaf\xd7\x77\xd6\x9e\xdc\x8a\x7e\x59\x3a\x56\x59\x9c\ -\x15\xed\x82\x5e\x3b\xaf\xb9\xf8\xc0\x22\xd1\x73\x06\x53\x68\x20\ -\x10\x28\xb5\x5a\x2d\x48\xa5\x52\xf0\xbd\x52\x80\x8f\x76\xeb\xd3\ -\xee\x98\xb9\xe9\x43\xd6\xfa\xfa\x44\xeb\xad\xf5\xec\x02\x27\x30\ -\x85\xfa\xfd\xfe\x52\xb9\x5c\x06\xcc\x16\x28\x7c\x63\x63\x03\x4a\ -\xa5\x12\xb8\xdd\xee\xeb\x34\xe6\xc6\x05\xc5\xbd\xc6\xda\xe1\xd6\ -\xa7\x97\xe3\xaf\xa7\xb4\x64\xb0\x2f\xd8\x6e\xb7\x1f\xf4\xf9\x7c\ -\x2c\x74\x6b\x6b\x0b\xc2\xe1\x30\x54\xab\x55\x60\x18\x06\xa2\xd1\ -\x28\x14\x0a\x05\x78\xb5\xbc\xf0\xae\xf1\x46\xc6\x7c\x7e\xa6\xea\ -\x82\xf6\x00\xdb\x6c\xb6\x61\xaf\xd7\x5b\xcc\x66\xb3\x6c\xf9\x95\ -\x4a\x05\x6a\xb5\x1a\x04\x83\x41\xf6\xba\xd9\x6c\x42\x24\x12\x81\ -\x5c\x2e\x07\x5e\xc7\x55\xaf\xf6\x37\x50\xd4\xee\x75\x13\x0a\x85\ -\xf7\x47\x46\x46\x86\x24\x12\x09\x41\x08\x29\x16\x8b\xac\x57\x2a\ -\x95\x04\x5f\x44\x30\x73\xa2\xd1\x68\x08\xb6\x87\x0c\x1d\xbd\x3d\ -\x81\x05\x6c\x73\xda\x63\xec\xe1\x5d\xec\x25\x43\x81\x0a\x85\x82\ -\x60\xf9\x14\x4e\x3d\x0b\xdf\xdc\xdc\xa4\x31\x44\x24\x12\x91\x4c\ -\x26\xf3\x81\xf4\xb0\x5f\xfe\xc7\x0e\x87\xe3\x92\x54\x2a\x7d\xa1\ -\x56\xab\x79\x72\xb9\x9c\xcd\x94\xcf\xe7\x13\x3c\x23\x68\x6c\x05\ -\xb1\x58\xcc\x65\x34\x1a\x27\xff\xe8\xcb\xd3\xeb\xf5\xa3\xe8\xea\ -\xc9\x64\x92\x66\x45\x54\x2a\x15\x69\xb7\xdb\x04\x87\x49\xb0\xdf\ -\x04\x07\xd8\x0d\xe5\x0e\xc6\xc1\x4c\xc9\x64\x32\x31\xae\xd8\x37\ -\x84\x43\x3a\x9d\x66\xb3\xa5\x95\xc5\xe3\x71\x97\xc9\x64\x62\xa1\ -\x9c\xc1\x58\xba\xd2\x62\xb1\xdc\xf4\x78\x3c\x74\xa5\xe6\x31\xd3\ -\x23\xf9\x7c\xfe\x0c\xc2\x9b\x78\x4f\x12\x89\x84\x6b\x12\x8d\x70\ -\xb4\x01\xd2\x31\x81\x40\x30\xc0\xe3\xf1\xc2\xb8\x15\x0f\x0d\x06\ -\x43\x9b\x9e\xe9\x74\xba\xf7\xab\xab\xab\x6a\x04\x9f\x36\x9b\xcd\ -\xcf\x39\x11\xbb\x87\x87\x40\xfa\x82\x3d\x28\x71\x47\xa2\x8e\xdf\ -\xdb\xf1\x83\x34\x16\xd5\x46\x31\xa8\x7a\x47\x8d\x2e\x6d\x77\x9d\ -\x31\x3f\x01\x9d\xcf\x29\xdb\x06\x02\xae\x05\x00\x00\x00\x00\x49\ -\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x03\x61\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ -\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x02\x61\x00\x00\x02\x61\ -\x01\xc1\x30\x55\xfa\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ -\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xde\x49\x44\ -\x41\x54\x78\xda\xb5\x95\xcd\x6a\x14\x41\x10\xc7\xab\xe7\x23\xfb\ -\x95\x4c\x8c\x41\x88\xc1\x80\x12\x48\xd4\x88\xab\xa2\xee\x21\x97\ -\x20\x79\x01\x1f\x40\x3d\x4b\x2e\x06\x54\x88\x2f\x90\x78\x13\x1f\ -\x21\x0f\xe0\xc1\x83\x07\x15\xbc\x78\x51\x31\x7a\x10\x51\x5c\x82\ -\xa0\xf9\xba\x88\x71\x77\xbe\x7a\xa6\xa7\xad\xea\x9d\x69\x66\x76\ -\x47\x11\xd4\x62\xaa\x67\x7b\x7a\xfa\x57\xff\xae\xea\xe9\x65\x52\ -\x4a\xf8\x1f\x66\x51\xb3\xbc\xbc\xfc\x4c\x44\xf1\xac\x6d\xdb\x72\ -\xe6\xf8\x5c\x7d\xec\xe0\xb8\x95\x24\x09\x46\xa4\xa0\xac\x77\x31\ -\xa6\xdc\x30\x0c\xfd\x1b\x2f\x30\xb1\xbf\xb5\xb3\x1d\xb7\x3f\xbc\ -\xf7\x25\x4e\xa9\x54\x2b\x9f\x56\xd7\xd6\x16\x14\xd8\x77\xbd\x85\ -\x4e\xb7\x0b\xce\xc8\x08\x4c\xcf\x9e\x84\xd3\xcd\xb3\xf0\x74\x63\ -\x13\x12\x99\x00\x19\xa3\x86\x40\xa0\xe3\xa4\x50\x13\x16\x2f\x4e\ -\xc3\xab\x97\x2f\xe0\xdd\x9b\x8d\x31\x21\x04\xa0\x4f\x6a\xc5\x9c\ -\x73\x08\xc3\x10\x92\x46\x43\x4d\x18\xb2\x19\x2c\x9e\x3f\x06\x40\ -\xa2\x35\x8c\x69\x20\x53\x0d\xa0\x7a\x06\x16\x3a\x19\xae\x50\xbb\ -\x06\xd3\x8b\xa3\x8e\x43\xd1\x7a\x60\xcb\x80\xea\x90\x05\xda\x32\ -\xa0\x4e\x0b\x42\x81\xa9\xbb\x48\x41\x38\x37\x73\x0d\xd6\x51\x54\ -\xde\x40\x82\x8d\xe0\x27\xaf\x37\x81\xd2\x5c\x66\x92\x5c\xf6\x4a\ -\x30\x7f\x6a\x0a\x12\xa1\xd5\x16\xc0\xd4\xd1\x60\x1a\x0c\xa3\x18\ -\x2e\xcc\x4e\xd2\x64\x0d\xc2\x4e\x0a\xcc\x5c\x52\xa6\x94\x47\x89\ -\x80\x38\x8e\x35\xb8\x54\x71\x8c\xd1\x03\x2e\xc0\x34\x8d\x01\x99\ -\x88\xce\xa0\x5a\x35\xa7\xe5\xc7\xa4\x56\x7b\xb9\xe2\x48\x08\x04\ -\x47\xf0\xe8\xf9\xdb\x42\x2a\xf2\xdb\x5d\x61\x53\xe5\x97\x5a\x73\ -\x38\x47\x92\x62\xec\xab\xfb\xa0\x62\xb2\x18\xa3\x7b\xa8\xf8\xdc\ -\x89\xe9\x9e\x4c\xdd\x82\x4e\x4d\x5e\x75\x22\x95\x30\x62\xd0\xb3\ -\xa2\xe2\x44\x08\x0d\xde\xdd\xdd\x86\x5a\xc3\xc9\x07\xd3\x96\x62\ -\x09\xac\x03\x7d\x63\x06\xec\xed\xed\x80\x48\x95\x26\x86\x91\x4b\ -\x45\x0e\xf2\xf8\xe1\x03\xad\xec\x4f\x8d\x52\x98\x99\xd1\xaf\xf8\ -\x6f\x2c\x2f\x43\x30\x56\xcc\xf1\x3f\xb2\x62\x8e\xa9\x92\xfd\x76\ -\x7d\x69\x09\x26\x0e\x4f\xfc\x12\xc0\xc3\x10\xee\xac\xac\x40\x10\ -\x04\xaa\x80\x87\xc6\xc7\x07\x4f\xb7\x28\x8a\xb2\xbe\x2e\x8a\x1f\ -\xf8\x70\xfb\xe6\x2d\x35\xd6\xc5\x03\x6a\xf5\xee\xda\x00\x7c\x74\ -\xf4\x00\x18\x46\x87\x0a\xa7\x19\x45\xc5\x25\x60\xcf\xf3\x20\x42\ -\x55\x82\xf6\x35\x06\x71\x5d\xb7\x6c\xdd\xc0\xd2\x42\x13\xbc\x52\ -\xa9\xd0\xdc\xdf\x2b\x26\x10\xa5\x88\xc0\x3c\xe4\x65\xe0\xc2\xf9\ -\x20\xf1\x5e\xab\xd7\x01\x0a\x60\x04\x94\x81\x79\x1c\xa9\x23\x35\ -\xe0\xa1\x4a\x47\xbf\x79\x61\x40\x63\xea\x0b\x65\xe9\xb6\x35\xf2\ -\xbb\x22\xe6\xfc\x1e\x30\x76\xa3\x3f\x15\xdd\x4e\x17\xbe\xef\xef\ -\xd3\x81\xaf\xfa\xfd\x16\x78\x3e\x84\x3e\x15\x4f\x82\x65\x9a\xd0\ -\xc1\x77\x69\xf5\x8c\x31\xd3\xc2\x86\x3e\x95\xfb\x47\x8f\x4c\xcd\ -\x0f\x8f\x0c\x9f\xc9\xd8\xbe\xef\xdb\x57\xae\x5d\x65\xd9\x1e\xc5\ -\xbe\xfe\x27\xd1\x8a\x3d\x17\xcb\x10\xd2\x33\x54\x6d\x02\x8f\x38\ -\x9d\xd2\x2e\xd5\xd5\x42\x75\x09\xc2\xb7\x3e\x7f\xfd\x72\x19\x00\ -\x2a\x04\x6d\xb5\x5a\xd0\x6c\x36\x67\x1c\xc7\xa9\x55\xab\xd5\x3a\ -\x16\xa5\x61\xdb\x76\x2d\xcd\xab\x8f\xe9\xf1\x30\x90\xdb\x6e\xb7\ -\x3f\xae\xaf\xaf\x13\x88\xe5\x77\x22\xfa\x8f\x9f\x10\xdc\x10\xc6\ -\xc1\x27\x82\x12\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\ +qt_resource_data = b"\ \x00\x00\x01\xab\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -1370,13 +470,909 @@ qt_resource_data = "\ \x62\xad\x82\xf5\x06\xf6\x4c\xb4\x36\xc1\x3a\x04\xdf\xf1\x1b\xc7\ \xd0\xa7\xa7\xf3\xc9\x91\xe3\x59\x0a\xc7\x0c\x53\x39\x67\x4a\xd9\ \x84\xd7\xfc\xf5\xff\x17\xdb\x8e\x2f\ +\x00\x00\x03\x50\ +\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\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xcd\x49\x44\ +\x41\x54\x78\xda\xa5\x93\x4d\x48\x14\x71\x18\xc6\x9f\xff\x7c\x3a\ +\xb3\x33\xbb\x7e\xad\xeb\x17\xc5\x6a\x69\xa5\x41\x1f\x20\x86\xa0\ +\x75\x0b\x05\xeb\x90\x44\x1e\xf6\x20\x18\x81\x76\xad\x8b\x87\x0e\ +\x42\x1d\xba\xa5\x27\x21\x28\x49\x8d\x3a\x44\xa5\x08\x49\x2a\x8a\ +\x89\x69\x56\x7e\x84\x45\xe1\x26\xba\x2b\xae\xbb\xe9\x4e\xeb\xce\ +\xec\xce\x4c\xb3\x96\xb2\x0a\x75\xe9\xb9\xbc\xa7\xdf\xc3\xf3\xbe\ +\x3c\x2f\x31\x4d\x13\xff\x10\xf5\x67\x1a\xf8\x8b\x18\xec\xd3\xfb\ +\x96\x96\x63\xab\xc3\xc3\x4f\x82\x63\x63\x51\xa9\xa0\xe0\x38\x2d\ +\xcb\x24\xb2\xb8\x38\x2f\x97\x96\x32\xae\xca\xca\xba\x13\xad\xad\ +\xf3\x48\xd2\x9e\x04\x43\xf5\xf5\xf7\x56\xfb\xfa\x1a\x33\xce\x94\ +\xf3\x69\x25\xa5\x90\x5c\x2e\x10\x42\xa0\xac\xad\x21\x30\x39\x89\ +\xf5\xa9\x29\x35\xa7\xba\xba\xe3\x6c\x57\xd7\xf5\x64\x83\x5d\xd8\ +\xd7\xdf\xd7\x54\xe8\xf1\x10\x5e\x14\xb1\xf8\x7a\x08\x3f\x97\x97\ +\x21\x08\x3c\xec\x87\x0a\xe1\x28\x3e\x8a\xad\xf0\x26\xbc\xdd\x3d\ +\x66\xfe\x85\x8b\xed\x09\x93\x5d\x83\x09\x2b\xf6\x5c\x5b\xdb\x3b\ +\x77\x6d\x0d\x0f\x4d\xc3\xec\x8b\x97\x41\x5e\x8b\xdf\x96\x58\xb6\ +\x87\x67\xd9\x1c\x89\x63\x5f\xa1\xec\xb4\x83\x77\xe5\x41\xdd\x0c\ +\x61\x79\x60\x50\x2d\x69\x6e\x3e\x55\x66\xad\x43\xc1\x92\xd7\xda\ +\x59\xce\xcf\xe2\x69\x9a\xc1\xc7\xde\xbe\x10\x21\xf4\xb1\xc6\x58\ +\xec\x2e\x43\x51\x31\xd1\x26\xf6\xa4\x54\x55\x38\x58\x41\xc6\x86\ +\x6f\x09\x31\x2d\x06\x29\xdf\xc5\x27\x98\xdd\x2b\x2b\x3e\x5f\x36\ +\x93\x91\x8e\xa5\x0f\x53\xa0\xa3\xda\x9d\x26\x45\x59\xed\x96\xa4\ +\x2c\xd9\x61\x7f\xe3\x3c\x7f\xae\x80\x09\x47\xa1\x05\x7c\x98\x1b\ +\x1c\x86\x7f\xe1\x13\xa8\xd4\xd4\x6d\x66\xc7\x80\x52\xfc\x7e\x29\ +\xc6\xd2\xd8\x5a\x0f\x40\xe0\xb8\xce\x04\x6c\xb7\x89\xe3\xae\xf2\ +\x93\x6e\xcc\x7f\x83\xa9\x04\x31\x33\x31\x65\xe4\xaa\xb1\x6b\x08\ +\x05\xe1\x5b\x5a\x44\x82\x49\xb0\xdb\x09\xe2\x00\xbe\x4f\x4f\xc3\ +\x50\x14\xd0\x84\x38\x6d\x02\x3f\x2e\x0a\xa6\x5b\x1f\x79\x0b\x6d\ +\xe5\x2b\xc6\xa6\x67\x8c\xf4\x2d\xd5\xc3\x01\xcf\x04\x43\x87\x6e\ +\x99\xc4\x93\x8a\x62\x30\xd9\xd9\x0a\x6b\xc6\x41\x41\x47\x9a\x4d\ +\x18\x65\x10\x71\x0b\xde\x00\x10\x0d\x61\x74\x35\x68\x38\x2c\xb8\ +\xc1\x34\x1f\xe9\x36\xdb\x15\x81\x36\x21\x32\x04\x09\x26\xc1\x6e\ +\x27\x60\x73\x72\xfc\x1c\x00\x2d\xac\x41\x67\x23\x32\x1f\x88\x82\ +\xd8\x59\x0c\xa8\x86\x21\x6a\x86\xe7\xaa\x05\x3f\x90\x24\x57\x56\ +\xaa\x70\x4b\xff\x11\x01\x65\xfe\x66\x76\x8f\x58\x54\x55\x55\xb7\ +\xa6\x0b\xaa\x90\xce\x21\xbe\x1c\x01\xed\xe4\xd1\xaf\x19\x20\x71\ +\xdc\x44\x4a\xca\x48\xa7\xdd\x7e\x23\x2f\x53\xfc\xcc\x85\x37\x1d\ +\x48\xe3\xb0\x62\x08\x6a\x82\xd9\x53\xa4\x87\x56\x91\xbc\x4f\x1f\ +\x37\x1d\x71\x72\x24\x33\x18\x03\x6c\x34\xc2\x14\x03\x1b\xc3\x22\ +\x9d\x36\x40\x05\x23\x58\x71\xb0\x98\x0c\x68\xe6\xc1\x4b\x97\xdb\ +\x3d\xc9\x45\xda\xd1\x7d\xcb\xe4\x4b\x6f\x6f\x63\x11\xaf\xf2\xb9\ +\x1c\x41\x26\x08\x38\x42\x10\x04\xb0\xa4\xe9\x98\x8b\xf2\xea\xe1\ +\x9a\x9a\x8e\x86\xfd\x55\x4e\xd6\x73\xab\x95\x0b\x56\x49\xbc\xa3\ +\xa3\x51\x49\x96\x4b\x29\xda\x4a\xb2\xb1\x31\x7b\xa0\xa2\x22\xa5\ +\xd8\x8a\x5d\xbb\xef\x99\xfe\xfb\x9d\x7f\x01\x2e\xd5\x46\xab\x0b\ +\x34\xf6\x10\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x6f\ +\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\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\ +\x06\xec\x01\x1e\x75\x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x1d\x0e\x02\x37\x24\x79\x0e\xf3\x00\x00\x01\xfc\x49\x44\ +\x41\x54\x78\xda\xa5\x90\x4f\x6b\x13\x41\x18\x87\x7f\xbb\xb3\x69\ +\x76\x37\xd9\xd5\x98\xb4\x1b\x29\xa2\x16\xd4\x83\x17\xf5\x24\x58\ +\xbc\xf8\x0d\xa4\x78\x29\x22\x82\x5e\xa5\x42\xf1\x58\xcf\x7e\x01\ +\xa1\x87\x62\xb1\x01\xf1\x52\x05\xe9\xb1\x78\x10\x91\x4a\xc1\x7f\ +\xa0\x58\x8a\x4d\x53\x93\x92\x36\xb1\x89\xbb\xee\x66\xbb\xbb\x33\ +\xbe\xae\x8b\x84\x1c\xda\xa8\x0f\xf3\x32\x33\x2f\xcc\x33\xbf\x19\ +\xfc\x2f\x12\x7a\x18\xb9\x3c\x2d\x51\x7b\x1d\x82\xe7\x84\x10\xa0\ +\x19\x22\xae\xa8\xb1\xfe\x6c\xe2\x38\x7a\x50\xd0\x03\x0f\x7d\x12\ +\x88\x23\x37\xc7\x4e\x43\x92\xa4\xb8\x40\xdc\x2f\x2d\xe9\x20\xf6\ +\x15\x44\xbb\x2e\x48\x80\x4e\xa7\xf3\xfb\x30\x95\x14\xf7\x3d\xf4\ +\x27\x08\x3c\x80\xa2\xb7\xdb\x76\x77\x02\xea\xbb\x7d\x0a\x7c\x07\ +\xc0\x2f\x81\x83\x38\x40\x92\x80\xef\x95\x60\xe8\xc2\xed\x49\xf0\ +\xe8\xae\xe0\x81\x14\xf9\x76\x9c\xc0\xb6\x5d\x30\x26\xc7\x02\x41\ +\x7b\x4a\x20\xe7\xce\x5e\xb3\x21\x38\x8d\xf8\x63\x1f\xb4\x3f\x3c\ +\xba\xa5\x20\xb6\xbb\x0d\x1e\xed\x66\x47\x8e\x5a\x30\x8c\x0c\x34\ +\x5d\x87\xc4\x06\xc0\x94\x14\x24\x59\x06\xe7\x11\x2e\x8e\x9e\x83\ +\xe3\x38\xd9\xad\xfa\x36\xd6\xbe\x94\x41\x3c\x07\x21\x27\xef\x9b\ +\xa5\xe8\x4f\x37\xab\x35\x78\x3e\xdd\x86\x34\xb8\xa4\x43\xb0\x2c\ +\x42\x68\xf8\xe1\x2b\xd8\xde\x09\x50\xf9\xda\xc2\x46\xa5\x0a\x1e\ +\x78\x33\xf6\xa7\xf9\x27\x7f\x04\x3b\x6f\xe7\xa8\xe9\xde\x68\x35\ +\x6a\xd5\x66\xf3\x1b\x09\x54\xc8\x29\x13\x29\xf5\x20\xd4\xcc\x21\ +\xe8\x46\x1e\x66\x6e\x10\x03\x29\x86\x8e\xbd\xb5\x42\x69\x27\x90\ +\x20\x23\xc1\x5e\x59\x68\x92\xf9\xea\xe6\xea\x32\x57\xd5\x34\xf2\ +\x85\x3c\x2c\xab\x80\xa2\x35\x88\xa1\x42\x01\x19\x5d\x43\xe5\xf3\ +\xeb\x40\xf0\x68\xdc\x5b\x5b\x74\x90\xc0\xd0\x45\xf8\x7d\xa3\x2c\ +\x98\xa6\xbb\xed\xfa\xe8\x99\xf3\x97\xe8\x20\xdd\x6c\x64\xc1\x05\ +\xc7\xe2\xfc\x34\x9a\xf5\xca\x94\x5f\x5b\x7a\x8c\x2e\x64\xf4\x22\ +\x30\x55\x5b\x7d\xb3\xfc\xfe\xe5\x02\x82\x30\x44\x14\x45\x78\x47\ +\xeb\xf2\xc7\x57\x2f\xc0\xc3\x7b\xe8\x07\x66\x0c\x9f\x4c\x9b\x45\ +\x7b\x6c\xf2\xa1\xb8\x72\xa7\x24\xd2\xa6\xd5\x52\x8c\xe1\x63\xf8\ +\x1b\x98\x96\xbf\x7e\xe0\xf0\x29\x61\x5a\x27\x84\xac\xe5\xc6\xf1\ +\x2f\xb0\x4c\xb1\x44\x35\x8b\x3d\xf8\x09\x7b\x1c\xef\xe9\x88\x1f\ +\x84\x20\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x34\ +\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\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xb1\x49\x44\ +\x41\x54\x78\xda\xa5\x93\x4d\x6b\x13\x51\x14\x86\x9f\xfb\x35\x49\ +\xda\x49\x4c\x69\xdd\xb8\x48\x10\x5d\x98\xb5\x82\x15\x44\x11\x44\ +\xe8\x3f\x70\xe7\x22\xfa\x03\xc4\x8d\x1b\x5b\x74\xd3\x95\x60\x41\ +\xff\x40\x11\x5c\xe9\x42\x90\x52\x17\x6e\xc4\x2e\xea\x07\x08\x82\ +\x54\xb4\x01\x15\x44\x71\x4c\x33\x36\x93\x74\xe6\xde\x3b\x42\x45\ +\x70\xe1\x44\x42\x9f\xed\xcb\x79\x38\xbc\x9c\x23\xf2\x3c\x67\x2f\ +\x48\x0a\xb8\xb6\x7e\xf9\xee\x99\x87\xad\xc1\xd9\x47\x47\xa2\xe5\ +\x77\x4b\x77\x28\xa0\x70\x83\xf3\xab\x73\x7e\xee\xe0\x39\x91\xba\ +\x21\xaf\xa3\x17\xf6\xf6\xc9\xfb\x66\xac\x0d\x5e\x7e\x7d\x2e\xbc\ +\x19\x52\xaa\x68\xde\x6e\xbd\xd1\x14\x50\x18\x64\xde\xf1\x73\x27\ +\x41\x48\x49\xea\x1c\xff\x13\x08\x40\x01\xf6\x4f\x60\x9d\x27\x4e\ +\x07\x08\x04\x99\x75\xff\x9a\x73\x40\xae\x01\xda\x2b\xed\xc5\x4e\ +\xdc\xb9\xf2\xec\xcb\x53\x1d\x28\x4d\xa0\x15\x46\x49\x92\x6c\x88\ +\x14\x82\x1d\x97\x31\xfb\xa0\x99\x57\x8c\xa1\x12\x18\x8e\xee\x3f\ +\x61\x1b\xb5\xe6\xcd\x4b\x87\x17\xae\xee\x96\x68\x16\xcd\xf7\x8b\ +\xc7\x2e\x4c\xa3\x1c\xb9\xf2\x08\x29\x7e\x0b\x7c\xbc\x2b\xa8\xeb\ +\x3a\x52\x6a\x4a\x84\x44\xfd\x1e\x71\xf2\x83\x6c\x72\x33\xba\x77\ +\xfa\xd5\x8c\x06\xb0\xd6\xb2\x19\x75\xd0\x81\xc6\x94\x15\xb5\x52\ +\x88\x91\x82\xbe\xdb\x46\x49\x30\xb9\x21\x49\x13\x36\xa2\x0f\xf4\ +\x06\x03\xa6\x82\x2a\x33\x41\xfa\x57\x07\x9e\xf9\xc7\xef\x9f\xdc\ +\x42\x63\xd0\x60\xb4\x24\x50\x8a\xd9\x66\x8b\xc9\x20\x60\xed\xe3\ +\x3a\x65\xa3\x29\x69\x4d\x35\xd4\x98\x20\xce\xac\xd5\xf3\x23\xef\ +\xa0\xbc\x64\xf2\x53\x87\x5a\x4c\x4d\x94\x59\xeb\x6c\xf0\xa9\xdd\ +\x13\x63\xdd\x81\xf3\x9e\xcc\x65\x48\x01\x99\xf7\x14\xa1\x47\x09\ +\xbe\x6d\xf7\xc8\x85\xc7\xba\xb1\x05\xd7\x65\x23\xac\xe7\x9f\xbb\ +\x5d\xd1\xed\x67\x84\x76\x9f\x1d\xf3\x99\x16\xfc\xf1\xe9\xea\x32\ +\x30\x3c\x30\xd1\xd8\xaa\xf9\xda\x8d\x91\xcf\xb4\x17\x7e\x01\x5f\ +\x22\xaf\xac\xbe\x86\x35\xeb\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x02\xd6\ +\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\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\x06\xec\x01\ +\x1e\x75\x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x0b\x11\ +\x17\x19\x36\xe0\x1f\xbc\x7d\x00\x00\x02\x56\x49\x44\x41\x54\x78\ +\xda\x8d\x91\x5d\x48\x53\x71\x18\x87\x9f\x73\x66\x52\xe1\x32\x95\ +\x30\xb2\xd5\x12\xc2\x30\xa8\x30\xbd\x31\x2f\xba\xd1\x8b\x90\xc0\ +\xa0\x4f\xa2\x20\xb2\x4c\xab\x8b\x8c\x60\x41\x12\x18\x41\x82\x91\ +\x60\x81\x1f\x45\x17\xd2\xf7\x45\x17\x61\xa4\xa1\x61\x28\xa1\xa8\ +\x91\x59\x4a\xea\x14\x5d\x73\xb6\x4c\xcf\xce\x74\xba\xb3\xfd\x3b\ +\x1c\xd8\x58\x5b\x50\x0f\xbc\xbc\xef\xb9\x78\x9f\xdf\xcb\xff\x48\ +\x60\xb0\x16\xd8\xce\x7f\x50\xb0\x5b\x5e\x79\x7b\x63\x41\x9d\xe6\ +\x9a\x1b\x23\x21\xe1\x44\x48\x90\x2f\x84\x68\xe1\x1f\x04\xfc\x8b\ +\x78\x7a\x8b\x78\x79\xdf\x4e\x46\x7b\x80\x05\x97\xab\x33\x0e\x30\ +\xd0\x05\xfc\x70\xbb\x91\x65\xd9\x28\x49\x92\x90\xf5\xd2\x07\x63\ +\x86\x20\xcb\x5f\x4b\x79\xdd\xfa\x85\xeb\xad\x32\x07\x2c\x53\x5a\ +\x96\x47\x24\xc9\x44\x60\x32\x99\xc2\x02\x53\xa8\x9b\x4c\xc6\xec\ +\xb7\x57\xd1\xdb\xd3\xc5\x8d\xa6\x78\x76\x6e\x76\x73\xfa\xac\xe4\ +\x6a\xc9\x92\xcf\xc5\x41\x18\x23\xd1\x48\xd7\x4b\x9f\xc3\xdd\x37\ +\xf5\x08\xc7\xb7\x37\xd8\xea\xe3\x59\x6f\x9e\xe1\x56\xe9\x6a\x2a\ +\xea\x97\x6a\x9e\xb7\x69\xd3\x91\x17\xfc\x99\x1e\x4a\x9e\x7d\x8f\ +\x32\xfe\x84\x0b\xd5\x3e\x56\x48\x1e\x6a\x2e\x06\x59\x48\xad\x40\ +\x5f\xf6\x00\x93\x61\x81\x14\x4a\x8c\x90\x04\xd4\x21\xb4\xe9\xc7\ +\x5c\xb9\xeb\x61\x5e\x51\xa9\x2e\x51\xd0\x52\xcb\x50\xe5\x1d\x00\ +\x0e\x60\x31\xe6\x82\x90\x24\xe0\x73\x12\x9c\x7e\x88\xed\xce\x18\ +\x9f\x87\xdd\xdc\x3c\x35\x87\x79\xd3\x41\x66\x02\x79\x58\xad\x56\ +\x80\x25\x63\x27\xea\x0d\x8c\x12\x9a\x82\xd0\x97\xab\x1a\x07\x79\ +\xd7\xed\xc4\x76\x74\x8e\x2d\xdb\x72\x19\xf5\x15\x92\x96\x96\x86\ +\xc5\x62\x01\x20\x46\x60\xfc\x2e\xe1\x27\xe0\xa8\xe3\xc1\xb3\x7e\ +\x9e\x36\x4f\x50\x52\xe8\x21\x37\x27\x9d\xfe\x5f\x47\x48\x4e\x4e\ +\x21\x33\x33\x13\x01\x61\xe2\xa2\x05\xf3\x93\x6d\xb4\x35\xb7\x53\ +\xdb\x34\x49\x51\xde\x22\x87\x0a\x12\x79\x31\xb8\x9f\x29\xe7\x00\ +\xe6\x35\x49\xf4\xf5\xf5\xb1\xca\x9c\x08\xa0\xfd\x55\xa0\x7a\x25\ +\xbc\x41\x2b\x7b\x77\x8d\x51\x7e\x58\xe6\x95\xfd\x38\xc3\x23\xdf\ +\xa9\xac\xac\xd4\x2f\x48\x46\x55\x55\x2e\x95\x97\xbf\x05\xba\x62\ +\x04\x3f\x67\x1c\xcc\x3a\x3f\x90\xbe\xce\x49\x46\x51\x36\xe3\xf1\ +\xfb\xc8\xd9\x93\x8d\x39\x65\xc8\x58\xf6\x7a\xbd\xd8\xae\xda\x06\ +\x1a\x1b\x1a\x4e\x02\x3e\x22\xc8\x17\x3a\xf7\x6a\x6b\xc4\xb5\xcb\ +\xc7\x84\x63\xa4\x53\xf8\xfd\xcb\x22\x18\x0c\xea\xdd\x2f\x3a\x3a\ +\x3a\x84\xa2\x28\xa2\xec\x7c\xd9\x27\x60\x2b\x21\xa2\x05\x13\xf6\ +\x51\x11\xcd\xb2\x16\x10\xdd\x1f\x07\x44\xf1\x99\xe2\x16\x60\x03\ +\x51\x48\x60\x90\x02\x64\x85\xbf\x63\xd1\x80\x4e\x60\x89\x28\x7e\ +\x03\x99\xc3\x0a\xf4\x03\x8f\xf6\xf6\x00\x00\x00\x00\x49\x45\x4e\ +\x44\xae\x42\x60\x82\ +\x00\x00\x02\x80\ +\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\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ +\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x17\x50\x4c\x54\ +\x45\xff\xff\xff\x80\x00\x00\xa8\x00\x00\xad\x00\x00\x87\x00\x00\ +\x8a\x00\x00\x91\x00\x00\x98\x00\x00\x9c\x00\x00\xaa\x00\x00\x80\ +\x00\x00\xa8\x00\x00\xaf\x04\x04\x9c\x00\x00\x87\x0e\x0e\x8e\x00\ +\x00\x6e\x00\x00\x6d\x00\x00\x6a\x00\x00\xa2\x00\x00\x96\x2b\x2b\ +\x7f\x1e\x16\x82\x24\x1b\xd2\x78\x75\xc3\x4a\x49\xc9\x60\x5d\x9d\ +\x1f\x1c\xbf\x34\x2a\xc5\x47\x3f\xa4\x1f\x13\xa4\x1f\x15\xa4\x21\ +\x1a\xa4\x23\x1e\xa5\x1e\x12\xa6\x1e\x10\xab\x24\x17\xaf\x27\x1b\ +\xb3\x31\x26\xb3\x2b\x1f\xbe\x4a\x3f\xc3\x4a\x40\xc8\x4c\x43\xca\ +\x56\x4c\x80\x23\x21\x81\x23\x21\xa1\x3e\x34\xb2\x43\x3a\x6a\x23\ +\x1f\x6a\x23\x20\x7b\x3c\x32\x59\x21\x1c\x5b\x21\x1b\xbd\x00\x00\ +\xbe\x00\x00\xbf\x39\x33\xc1\x11\x0a\xc2\x33\x33\xc2\x4d\x48\xc3\ +\x3a\x3a\xc5\x39\x32\xc6\x12\x0c\xc7\x12\x0c\xc9\x3e\x3e\xcb\x44\ +\x3f\xcb\x4e\x4a\xcc\x46\x46\xd0\x00\x00\xd0\x12\x0c\xd3\x56\x56\ +\xd3\x57\x54\xd3\x65\x60\xd4\x62\x5e\xd6\x60\x5d\xd7\x63\x61\xdb\ +\x13\x10\xdb\x14\x11\xdf\x13\x0f\xdf\x14\x12\xdf\x68\x61\xe3\x00\ +\x00\xe5\x2f\x2a\xe5\x30\x2c\xe5\x32\x2d\xe5\x32\x2e\xe5\x73\x71\ +\xe6\x6d\x6d\xe6\x76\x75\xe9\x8d\x89\xef\x14\x12\xef\x15\x13\xef\ +\x89\x87\xf0\x8d\x8a\xf5\x00\x00\x63\x8e\x41\x21\x00\x00\x00\x34\ +\x74\x52\x4e\x53\x00\x32\x32\x32\x48\x48\x48\x48\x48\x48\x49\x49\ +\x49\x4a\x4b\x4f\x50\x51\x52\xd0\xd7\xdd\xde\xe4\xe6\xea\xf2\xf4\ +\xf5\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfb\xfb\xfc\ +\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xd5\x6e\xde\x62\x00\x00\x00\x9b\ +\x49\x44\x41\x54\x18\x19\x8d\xc1\x45\x16\x82\x00\x00\x05\xc0\x0f\ +\x28\xd8\x22\x76\x77\x77\x62\x07\x62\x77\xe7\xfd\xcf\xa1\xf0\x74\ +\xcf\x0c\x14\xa1\xdc\x06\x7c\x19\x9c\x14\x64\xa4\xf7\x99\xd1\x02\ +\xfa\xf4\xcb\x47\x42\x62\xdd\x5e\xae\x29\xa3\xb9\x70\xbe\xdc\xac\ +\x90\x68\x12\x13\x71\x91\x2f\xcf\xc4\x79\x52\x03\x19\x13\x1b\xf4\ +\x87\xad\xd1\x34\xce\xe0\x87\x8e\x76\x9a\xed\x46\x84\xc6\x9f\x3a\ +\xcc\xd7\xea\x7c\x58\x8d\x1f\x95\x7f\x2c\x74\x7b\xc2\x38\xa0\x82\ +\x4c\x17\x5c\xef\x96\xd5\xca\x6a\xb7\x09\x99\x20\xb1\xef\xdf\xf7\ +\x22\xcb\x95\x1e\xef\x83\x0d\x12\xc2\x73\xcc\xb2\x00\x97\x3b\x79\ +\x08\xc8\x08\x87\x05\x5f\x9c\x8b\x80\x12\x1f\x43\xb3\x13\x6b\xf7\ +\xb4\x66\x64\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\x4c\ +\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\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xc9\x49\x44\ +\x41\x54\x78\xda\xed\x92\xb1\x0e\x82\x30\x10\x86\xaf\x40\x45\x49\ +\xdc\x74\x32\x0e\xc4\xd1\xa7\xe0\x59\x90\xdd\xc9\xb8\x3b\x3b\xaa\ +\x13\x8b\x2f\xd2\xd5\x89\x37\x60\x73\x23\x62\x08\x68\x8c\x05\xea\ +\x4f\x42\x24\x3a\xe8\xe0\xe2\xc0\x97\xfc\x49\xff\xbb\xcb\xdd\x35\ +\x2d\x53\x4a\xd1\x2f\x68\x50\xdb\xa0\x81\x41\x06\x7d\xc7\x80\x58\ +\x63\x6a\x0e\x9e\xb7\xba\x85\xe1\x22\x11\x82\x9b\xf0\x95\x3a\xd0\ +\xfb\xb9\xef\x38\xb9\x65\xdb\xeb\x9e\xef\x2f\x09\x3c\x9f\x71\xcf\ +\xf9\x71\xea\xba\x23\x3d\x4d\xa9\x0b\xcf\x6b\xe9\x50\x45\x69\x59\ +\x74\x46\xee\x1a\xc7\x34\x11\xe2\x34\x94\x72\xf0\xb2\xc1\x3d\xcf\ +\xe9\x12\x45\x64\x4a\x49\xba\x61\x90\x86\xc6\x5a\x51\x10\x21\x5e\ +\x22\x9f\x04\x01\xc5\x59\x86\x55\x3a\x24\x11\xab\x69\x36\xd8\x31\ +\x36\xc3\xe4\x8d\x59\x95\xc0\x7f\xb8\x86\x44\xdd\x7c\xac\xd4\x96\ +\x40\xfb\x13\xff\xa1\xc1\x03\x06\xaf\x45\x37\x07\xf3\x26\xc3\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xa0\ +\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\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\ +\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x1d\x0d\x11\x0d\x81\xdc\x28\x8a\x00\x00\x02\x2d\x49\x44\ +\x41\x54\x78\xda\x8d\x92\x4b\x6b\x53\x41\x18\x86\xdf\x99\x73\x89\ +\x39\x27\x27\xd5\xa8\xb9\x94\x6e\x52\x53\xdb\x8d\xd5\x58\xaa\xe2\ +\x05\x74\x97\x85\x05\x05\x0b\xd5\xba\xf0\x07\x08\xf5\x27\x88\x22\ +\x88\x1b\x11\x14\x5d\x58\x14\x29\x2d\xd9\x88\x6e\x04\xc1\x85\x8b\ +\xea\xca\x85\x0b\x15\x5d\x18\xa4\x55\xc4\xa0\x6d\x9a\x73\x92\x9c\ +\xcb\x5c\x9c\xb4\xb8\x90\xc6\x98\x81\x6f\xf3\xcd\xfb\x3d\xcc\xf3\ +\x31\xe8\x76\x0a\x93\x0f\xae\xe5\x4f\xdd\xb9\xd2\x2d\xa3\xfd\xeb\ +\x62\x68\x6a\xae\x94\xb4\xc8\x3d\x03\xfe\x31\x23\x7b\xe8\x75\xbd\ +\xf2\xb2\xd2\x29\x47\x3b\x35\x77\x9f\x9d\xcf\x10\xc9\x1f\x4e\x9d\ +\x1c\x21\xe7\x4e\x8f\x51\xc9\xfd\x47\x99\xc3\x33\x3b\x7b\x02\x0c\ +\x4f\x97\x89\x54\xc3\x63\x23\x4e\x26\x69\x6b\xd8\x9a\x8c\xe1\xc8\ +\xf8\xae\x9c\x60\xfe\x6c\x6a\xdf\xf9\xff\x03\x84\x60\x97\xb6\xd9\ +\x28\x8d\x0e\xa7\xe0\xae\x35\x50\x57\x55\x1c\x1d\x44\x36\xdd\x37\ +\x01\xc1\x2f\x76\xdd\x81\xf2\x2e\x12\x19\x2e\x1c\x2f\xa6\x74\x53\ +\xd7\xc0\xb9\x40\xc4\x04\xc2\x90\x23\x97\xdd\x8e\x0f\xef\x3f\x9e\ +\xd0\xfb\x06\x9f\x06\x3f\x3f\x55\x37\xbd\x20\x3f\x71\xd3\x09\x6a\ +\xcb\xe5\x42\x86\xc5\x62\xa6\x8e\x20\x94\xaa\x80\xb0\x5d\x11\x60\ +\x98\x71\x8c\x1f\xd8\x1f\x57\x7a\xf3\x89\x42\x69\xcb\x26\x40\x58\ +\xff\x76\x37\x41\x6b\x43\x03\xb9\x14\x42\x06\x30\x41\xc1\xa5\x86\ +\x48\x68\xa8\xb9\x0c\x5f\x96\x6b\xf8\xb5\x26\x11\xb3\x9c\x3d\x52\ +\xb0\xeb\x7f\x29\xe4\x8e\xce\x4c\x46\xee\x8f\xab\xb9\xfe\x7e\x10\ +\x3d\xa1\x00\x3a\x82\x88\xa2\x19\x00\x6e\x83\xa3\xe5\x0b\x04\x4a\ +\x83\x0b\x01\x10\x0d\xab\xd5\xa5\x83\x9a\x33\xf0\x8a\xd7\x97\x2a\ +\x3a\x00\xf0\xc0\xcb\x47\xad\x55\xbc\x5b\x7c\x82\xb7\xad\x15\xc8\ +\xd0\xc3\x85\xcb\x8f\x11\x33\x4d\x10\xda\xd6\x88\xf0\xac\x7c\x1b\ +\x02\x1a\x04\x67\x90\x82\x13\x02\x79\x06\xc0\x8b\x75\x80\x16\x4b\ +\xdc\x30\x9c\xec\x7d\x6a\x58\x54\xb3\xd3\xa4\xf1\xf5\x4d\x35\x61\ +\x5b\xb0\xac\x38\x28\x25\x68\xb5\x02\x44\x81\xaf\x60\x46\x52\x40\ +\x48\x48\x00\x20\x4d\x00\x58\x07\x7c\x5f\xbc\x05\x00\x2b\x7f\xbc\ +\xac\xec\x5e\xa8\x4d\xc2\x49\xd8\x30\x0c\x5d\x41\x3c\xa8\x69\x78\ +\x9f\x9f\xbb\x3d\xfd\x44\xdd\xc9\x6e\x2c\x48\xa3\x1b\x1a\xa4\x9d\ +\xd4\xd1\x31\xdb\xb1\x69\xa7\xe1\x79\x4d\x50\x4a\x51\xd7\x1a\x70\ +\xbd\x46\xdb\xbb\x77\x00\x35\x6d\x77\x61\x6e\xd6\x11\x2c\x80\x8c\ +\x7c\xf0\xa8\x05\xc1\x23\xb7\x67\x80\x0a\xef\x90\x2c\x34\x85\x1a\ +\x64\xcc\x87\x50\x10\x48\x11\x76\xca\xfe\x06\x81\x37\xee\xc0\xcc\ +\x8e\x0a\x9c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x55\ +\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\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ +\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x0e\x50\x4c\x54\ +\x45\xff\xff\xff\x00\x4e\x00\x00\x49\x00\x00\x55\x00\x00\x4c\x00\ +\x00\x4f\x00\x00\x4d\x00\x00\x4e\x00\x00\x4d\x00\x00\x4b\x00\x00\ +\x4e\x00\x00\x4d\x00\x00\x4c\x00\x00\x4d\x00\x00\x4c\x00\x00\x4e\ +\x00\x00\x4c\x00\x02\x50\x02\x04\x53\x04\x04\x53\x04\x03\x52\x03\ +\x02\x4e\x02\x02\x4e\x02\x02\x4d\x02\x02\x48\x02\x00\x5b\x00\x13\ +\x64\x12\x01\x5b\x01\x0e\x68\x0c\x17\x66\x15\x17\x69\x15\x15\x6b\ +\x12\x11\x6b\x0e\x0e\x68\x0b\x09\x5f\x07\x12\x6b\x10\x10\x5c\x0d\ +\x18\x5d\x14\x17\x56\x11\x1a\x54\x12\x1c\x50\x11\x1c\x50\x14\x2c\ +\x84\x23\x47\xba\x0e\x4a\x8d\x30\x4d\x7d\x29\x4e\x82\x2d\x4e\x8b\ +\x31\x50\xac\x2a\x54\x83\x2d\x57\xc2\x18\x58\xa0\x42\x59\x9f\x41\ +\x5b\x9c\x3f\x5d\xb2\x2d\x64\xb1\x50\x64\xba\x32\x73\xb4\x64\x76\ +\xb5\x63\x76\xbc\x59\x77\xc0\x55\x79\xb8\x61\x7b\xbb\x66\x7f\xc0\ +\x68\x7f\xc8\x35\x82\xc6\x45\x83\xc2\x4a\x88\xc2\x7a\x89\xbd\x4b\ +\x89\xc6\x7b\x8a\xc1\x57\x8a\xc1\x5b\x8e\xc4\x60\x8e\xc7\x44\x8f\ +\xc9\x5c\x90\xbd\x6b\x90\xc1\x6f\x91\xc5\x69\x91\xde\x3e\x93\xc6\ +\x70\x93\xc8\x6a\x96\xc3\x6c\x98\xd5\x47\x99\xd0\x8f\x99\xd2\x90\ +\x9a\xc8\x68\x9a\xcb\x7b\x9d\xc9\x6d\xa6\xd0\x77\xb6\xea\xa1\x29\ +\xec\xef\xa8\x00\x00\x00\x2b\x74\x52\x4e\x53\x00\x0d\x0e\x18\x1b\ +\x1d\x21\x24\x32\x33\x34\x35\x36\x46\x6b\x6c\x72\x8d\x90\x91\x95\ +\x9a\x9d\xa0\xa3\xbc\xd6\xd8\xdb\xe6\xe7\xe9\xeb\xed\xf5\xf5\xf6\ +\xf7\xf9\xf9\xfa\xfa\xfe\x0d\x0e\xc0\xf1\x00\x00\x00\x82\x49\x44\ +\x41\x54\x18\xd3\x63\x60\x20\x05\xb0\x0a\x30\xa1\xf0\xd9\x14\xad\ +\xa4\x19\x91\xe5\x15\xc2\x22\x6d\x25\x41\x2c\x7e\x65\x61\x20\xc9\ +\x22\xef\x1f\x12\xec\x23\x05\x64\xf1\x69\x45\x18\x0b\x31\x30\xcb\ +\xf9\xba\x3a\x7b\x2b\x71\x00\x05\x64\x42\x2d\x03\x4c\x44\x64\x3d\ +\xec\xed\x02\x55\x38\x41\x3a\x04\x75\xdc\xcd\xbd\x4c\xdd\x6c\xac\ +\xc3\x55\xb9\x20\xa6\x89\xea\x3b\x19\x38\x5a\x98\xb9\xa8\x71\xc1\ +\xcc\x17\xd3\x73\xd0\x36\xf2\x54\xe7\x46\xd8\x28\x6e\xe8\x17\xa4\ +\xc9\x8d\xec\x26\x09\x5d\x0d\x1e\x54\x57\xf3\xb2\x13\xef\x43\x00\ +\x7e\xc7\x0f\xc0\x9e\x2e\x4f\x77\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x03\xaf\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x03\x76\x49\x44\x41\x54\x78\xda\xd5\xd5\x5f\x4c\x5b\x55\ +\x1c\x07\xf0\xef\x2d\x77\x85\xe6\xb6\x96\x95\xae\x80\x6b\x32\x62\ +\xc3\x20\x0b\x23\xfb\x47\xc8\xd2\x2c\x63\x2b\xe9\x6c\x0a\xed\xa0\ +\x16\x0a\x2c\x5b\x44\x10\xd2\xe8\xc4\x60\x66\xaa\x10\x8a\x0b\xd8\ +\x09\x41\x29\x30\xda\x75\xce\x62\xe9\xfe\x91\x39\x15\x97\x80\xb0\ +\x89\x92\x98\x2c\xfa\x62\x7c\xf0\xd1\x64\x06\x13\x5f\xe6\x83\xba\ +\x3d\xa8\xf7\xeb\x89\x5d\xe2\x43\xd9\xe2\x9f\xed\xc1\x87\x4f\x72\ +\xee\xcb\x37\x27\xf7\x7b\xce\xef\x80\xe4\x23\xf1\xe8\x83\xe1\x42\ +\x33\x6a\xb1\x00\xa7\xf0\xa4\xe0\x12\xdc\x42\x3d\x16\xe1\x15\x0e\ +\x4b\x1f\xa3\x51\x5a\xc2\x53\xd2\x32\xfc\xd2\x75\x34\x49\x37\xd0\ +\x2c\x7d\x82\x80\xd0\x22\xad\xa0\x55\xfa\x14\x2f\x68\x8e\x67\x05\ +\x3b\xfb\x9d\x3f\xf4\x26\x7a\x19\x9c\x0e\xb2\x7d\xaa\x9d\x6d\x93\ +\x6d\xf4\x4f\xf9\xe9\x3d\xed\xa5\x2b\xe6\xe2\xd6\x48\x19\xf3\xfa\ +\x75\x54\x86\xf4\x34\x9c\x7a\x8c\xc6\x91\x8d\x34\x8d\x98\x69\x1e\ +\xb1\xb0\x30\x52\xcc\x2d\x91\x27\x58\x10\x2f\xbc\x93\xbd\xe3\x3a\ +\xb4\xdb\x7b\xed\x6a\xe8\x4a\x88\x9d\xef\x74\xd2\x37\xe9\xe3\x81\ +\x37\x0e\xb0\xf2\xb5\x4a\x5a\xfb\xad\x34\xf7\x99\x89\x57\x40\x0c\ +\x0a\xc3\x42\x44\x78\xfd\xde\x77\x48\x08\xe7\x10\x63\xf2\x5b\xeb\ +\xfe\x63\x78\x30\xe9\x8d\x78\xd9\x9d\xee\x66\x53\xa2\x89\xb5\xd1\ +\x5a\xee\x1a\xdd\xc5\x92\x48\x09\x2d\x11\x4b\x26\xf0\x4d\xe1\xb4\ +\x10\x17\x62\x42\x14\xb4\x4c\x17\x51\x1a\xdf\xb0\x72\xdf\xf2\x00\ +\x48\x1a\x8f\x66\xa5\x25\xd6\xa2\xb6\xce\xb4\xf2\x50\xfc\x10\xab\ +\x26\xab\x68\x1b\xb7\xb1\x30\x5a\xf8\x67\x08\xce\x0a\x69\xe1\x92\ +\x70\x11\x34\xce\xe6\xab\xb9\x51\xfd\x2d\x84\x91\xf7\xc0\x53\x81\ +\xc3\xc8\x37\x1e\x35\x7e\x17\x98\x09\xa8\xee\xa4\x9b\x7b\x13\x7b\ +\x59\x16\x2f\x63\xf1\x99\x62\x22\x01\xe2\x82\xf0\xa1\xb0\x08\xea\ +\x16\x75\xaa\x3e\x66\xfc\x19\xaf\x6a\xcb\xef\x7b\x2a\xb4\x8d\xda\ +\x85\xfc\x40\xfe\x9a\xa1\xd9\xb0\xa6\x6f\xd5\xdf\x2e\x7d\xb9\x94\ +\x9e\x59\x0f\xf7\x25\xf7\x71\xdb\xb9\x6d\xb4\x26\xad\xc4\x0c\x88\ +\xf7\x85\xeb\xa0\x7c\x53\x66\xc9\x7b\x36\x6e\x4a\x14\xdd\x29\x4e\ +\x58\x6f\x5b\x13\x5b\x7e\x34\x4c\x98\xbe\xce\x0a\xb6\x3e\x6d\x5d\ +\x1d\x5e\x18\x66\xe4\xf3\x08\x4f\x2c\x9e\x60\xc7\xd5\x0e\x36\x5e\ +\x68\x64\x4d\xaa\x86\x95\xef\x56\xb2\x24\x5d\x42\xa4\x40\xcc\x0b\ +\x9f\x09\x5f\x09\xdf\x08\xab\xc2\x55\xb0\x20\x69\xe6\xe3\x31\xcb\ +\xad\xac\x60\x38\x50\x60\x6e\x35\x7f\x3f\xb8\x34\xa8\x86\x96\x43\ +\xec\xfa\xa0\x8b\xfe\xcb\x7e\x3a\xd2\x0e\xee\x4c\xed\xa4\x2d\x6d\ +\xfb\x6b\xc7\x37\x84\x9b\xc2\x17\x99\xb5\x72\x45\x51\x8d\x51\xd3\ +\x2f\x08\x6b\xcb\xd7\x2f\xcf\x85\xaa\xb2\x60\xd9\xdd\xfe\xe5\x7e\ +\x35\x38\x1f\x64\x60\x2e\x40\x67\xda\xc9\x3d\xa9\x3d\x2c\x9f\x2d\ +\xcf\x14\x77\x49\xf8\x48\x58\xca\x90\xe7\x65\xd5\x14\xb3\xfc\x86\ +\x81\x9c\xc0\x83\xcb\xf3\xa0\xc3\xde\x67\x57\x7b\xae\xf5\xf0\xc8\ +\xdc\x11\xba\x66\x5d\xac\x4e\x56\xb3\x62\xa6\x82\x98\x00\x71\x4e\ +\x38\x2f\xcc\x09\x97\xc1\x4d\x67\x8b\x88\xb0\x3c\xba\x7e\x79\xd9\ +\xe1\xd3\x75\x63\x75\x3c\x36\x77\x8c\xf5\xa9\x7a\xda\xdf\xb6\xb3\ +\x22\x51\x41\xf9\x94\x4c\x8c\xdf\x3b\xbf\x09\x70\x63\xdc\x44\x29\ +\x2c\x2f\xff\xed\x21\x04\x42\x92\x1b\xe4\x55\x71\x9d\xd5\x86\x64\ +\x03\xf7\xc7\xf7\x73\xfb\xc4\x76\xea\xc2\x3a\xe2\x64\xe6\xd6\x29\ +\x63\x7a\x55\x7b\x52\xf7\x2d\x8e\x23\xf7\x1f\x4d\x37\xd4\xc0\xac\ +\xb4\x29\x6b\xee\x29\xb7\x7a\x70\xf2\x20\x77\x8c\xee\xa0\xae\x57\ +\x04\xbf\x04\x6a\xfb\xb4\xbf\xe7\x0d\x28\x3f\xa1\x07\xa5\xff\x6a\ +\x6c\xc2\x83\x2a\x53\xa7\xe9\xae\x63\xcc\xa1\xee\x1e\xda\xcd\xdc\ +\x8e\x5c\x6a\xba\x34\xaa\x12\x32\xfc\x8a\x60\x8e\xef\x3f\xcd\x63\ +\xf8\xf0\xec\xe6\xe7\x37\xab\xd5\x03\xd5\x94\x7d\x32\x95\xe7\x0c\ +\x44\x50\x33\xf4\x50\x06\x3d\x02\x9a\x33\xa5\x2f\x6e\xa5\xd2\xa2\ +\x27\xba\xa5\x6b\x0f\xed\x05\x01\x21\x49\x47\x35\x4b\xf2\x33\x1b\ +\xbe\xcc\x2e\x6b\x7d\xff\xbf\x37\xef\x0f\x9a\xca\x63\x9c\x02\x93\ +\x79\xca\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x04\x6e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x04\xc2\x00\x00\x04\xc2\ +\x01\xbc\xcf\x90\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\ +\x1b\x16\x0c\x0e\xd2\xa1\x06\x61\x00\x00\x00\x06\x62\x4b\x47\x44\ +\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x03\xfb\x49\x44\ +\x41\x54\x78\xda\xb5\x92\x5f\x68\x1c\x55\x14\xc6\xbf\xfb\x67\x66\ +\x77\x36\xd9\x90\x0a\x4d\x49\xa4\xa4\x4d\x49\x97\xa0\x60\x12\x23\ +\x44\x1a\x48\x45\xd2\x86\xe0\x43\x8c\x85\x9a\x06\xa1\xad\x10\x34\ +\xa2\x28\x4a\xfc\x83\x88\xa0\x14\x2b\x62\x8d\x4f\x79\x90\x52\xfa\ +\xd4\xa7\xfa\x58\x69\x28\x48\x15\x89\xa2\xd6\xda\x24\x26\x36\x6b\ +\xc2\x6e\x53\x45\xc8\x6e\xb2\xbb\xd9\x9d\xd9\xb9\x33\xe3\x99\xdb\ +\x6c\x5a\xd6\x22\xe2\x9f\x03\x1f\x73\xb8\x73\xbf\xdf\xf9\xf6\xec\ +\xe0\xbf\xa8\x20\x08\x42\xed\x20\xd5\x57\xce\x18\x09\x99\x73\xe7\ +\x76\x7b\xb3\xb3\xa7\xd7\xa7\xa6\x7a\x54\x36\xcb\x83\x8a\x81\xf4\ +\x77\xfb\x7b\xf6\xed\x0b\xb6\xf5\xf7\xff\xbc\xba\xbc\xdc\xbf\x7b\ +\x7c\x3c\x25\x41\xe5\x2d\x2f\x4d\x1a\x07\x0f\xee\x17\x5d\x5d\xe0\ +\x9e\xf7\xd7\xe9\x70\xf7\xf2\xa4\x44\xc1\xf7\xdb\x56\x3f\x3d\xff\ +\x11\x80\x21\x0d\x4e\x9e\x3d\xdb\x1b\x6f\xd8\x01\x55\x2e\xe3\xdf\ +\x94\x13\x8f\x63\x65\x69\xb9\x1f\x54\x1a\x9c\x9d\x5f\x90\x46\x26\ +\x73\xeb\x67\x31\x86\x74\x5d\x1d\x40\xcf\x9d\xb9\x1c\x98\xef\xdf\ +\x3d\x39\xe7\xfa\x5e\x58\x3b\xd7\xd7\xc1\x68\xcf\x4c\x08\x14\x6d\ +\xdb\xdc\x02\x7b\x24\x77\x63\x03\x21\xc2\x4e\x24\xb0\xff\xc0\x01\ +\x30\x02\x7f\x7d\xe1\x02\xea\x92\x49\xa0\x1a\x4e\xd0\x5c\x4b\x0b\ +\x1e\x19\x18\xd0\x7f\xdc\x0f\x17\x2f\x22\xba\xb0\x00\x6e\x9a\xf0\ +\x2a\x57\x48\x50\x9b\x60\x45\x4a\xec\xdd\x4b\x3e\xae\xc1\x5d\x34\ +\xc0\x6e\x6d\x85\x2a\x95\xf4\x3b\x92\xee\x4b\x74\xd6\xd9\xd7\xa7\ +\xa1\x74\x57\x7b\x2a\xef\x14\x63\x55\xe0\x42\x01\x65\xd2\xc2\x99\ +\x33\xb0\xd3\x69\x0a\xe9\x6b\x63\x5b\x6f\x2f\xd0\xd9\x09\x65\x17\ +\xb5\xfc\x8e\x0e\x24\x7a\x7a\xe0\x79\x1e\x94\x52\x28\xa5\x52\xda\ +\x43\x5e\x0d\xd6\x89\xb7\x56\x41\x53\xdd\x62\x51\x83\xc2\xba\x3a\ +\x31\x81\xfb\xc6\xc6\x20\x9b\x9a\xf4\xd9\xae\xee\x6e\xdc\x94\x5c\ +\xf7\x8d\x0f\x3e\x14\x42\x75\xaf\x56\x56\x30\x37\x39\x89\xc0\x75\ +\xa1\x39\x8e\x03\xef\xce\xc4\xbe\x94\x7a\x15\xe5\x8a\xd6\xd6\x30\ +\x77\xea\x7d\xa8\x1b\xa9\x10\xa2\xd3\x37\xb4\x77\x62\xfb\x03\x1d\ +\x61\x4a\x2d\x7f\x25\x8d\x85\x8f\x3f\x80\xca\xad\xc1\xa5\xa4\x3c\ +\x12\x81\x9b\xcf\xa1\x6c\xdb\x77\x24\x16\x1c\x6b\x8b\x8b\x10\x96\ +\x05\x23\x66\x21\x6a\x19\x80\x0f\x24\x4f\xbd\x83\x3d\xcf\xbf\x0a\ +\xbf\xa1\xa9\x32\x40\x27\x8d\xe5\x32\xb8\x71\x7a\x02\xd2\xb3\xe1\ +\xe4\xd6\x91\xff\x3d\x8b\xe4\xcc\x4f\x10\xa6\x01\xb7\xec\xdc\x06\ +\xfb\x04\xce\x5c\xbb\x06\x8f\x92\x58\x51\x81\x78\x7d\x84\x64\xc1\ +\xaf\x8d\x62\xfa\x8b\xcf\xd1\xfe\xf8\x93\x1a\x5a\x81\x5f\xb9\xf4\ +\x19\xc4\xa5\xf3\x70\x8a\x2e\x4a\xc4\x29\x86\x21\x15\xc0\x62\xd1\ +\xea\x55\x08\x80\x01\xc4\x87\x29\x3c\x08\x55\x04\x77\xf2\x58\x7f\ +\xec\x29\x74\x0c\x0d\xeb\x94\xa4\x2d\xf8\xae\x81\x27\xe0\x1c\x7b\ +\x05\x56\x8d\x81\xa8\x09\x44\x0c\xf2\x49\xf2\x4b\x5e\x0d\xe6\xd4\ +\x31\x48\x09\xad\x88\x65\xc2\x1f\x7d\x0d\x0f\x1f\x1f\x83\x10\x42\ +\x7f\x7a\x75\x37\xe7\x50\xff\xdb\x7c\x38\x40\xc3\x13\x83\x23\x08\ +\x46\xdf\x84\x49\x6b\x33\x08\x6c\x84\x60\x33\x04\xe3\x36\x38\x10\ +\x9c\xb8\x04\x0e\x13\x53\x04\xeb\xc5\xb7\x09\xfa\x1c\x24\x4d\xe1\ +\x9c\x13\x74\x16\xfc\xc3\x23\x30\x27\x46\xd0\x90\x59\x24\x90\xa1\ +\x75\xff\xe1\xa3\xa8\x7d\xf9\x04\x0c\xf2\xd0\x7c\xc8\x3f\x27\x66\ +\xba\xe3\xa4\xc6\xd7\xdf\x45\xf7\xb1\x67\x42\xa3\x06\xc7\x52\x3f\ +\x42\x9d\x3c\x8c\x18\xb7\x51\x6b\x38\x1a\xbe\x7d\x35\x89\x68\x34\ +\x0a\xd3\x34\xd1\x7e\xe4\x69\xdc\xfb\xc6\x49\xed\x15\x12\x04\x46\ +\x15\x78\xf3\xa0\xb9\x65\x8f\x4e\xa9\x75\xfd\x7b\x64\xdf\x3a\x04\ +\xe6\xda\x60\xe1\x6c\x12\x53\x0e\x9c\x13\x34\x28\x3d\x8b\x48\x24\ +\xa2\xef\x35\x35\x37\xdf\x82\x85\x9c\x4a\x62\xda\x19\x0b\x0c\xae\ +\xc1\x7e\x00\x4c\x8f\x0e\x23\xff\xcd\x65\xd8\x57\xbf\xc2\xf2\x4b\ +\x83\x70\x4b\x36\xca\x0a\x28\x3a\x40\xa1\x04\x38\x65\xc0\xb5\x1d\ +\xfc\x3a\x3e\x04\x35\x33\x8d\x8d\x6f\xbf\xc4\x77\xcf\x0e\x6b\x2f\ +\x13\xac\xc2\x85\x24\x59\xdb\x12\xad\x7e\xb6\x30\x23\x38\x19\xc1\ +\x81\x2b\x63\x87\x50\x13\x05\x62\x16\x41\x84\x09\x67\x73\x28\xf3\ +\x01\x0f\x40\x99\x93\x02\x1f\xf3\x2f\x0c\x62\xc3\x06\x02\x46\xa0\ +\x1a\x0b\x22\x56\x0b\xdf\x5b\x53\x15\xb0\xa3\x58\xfc\x72\x7d\x7b\ +\xdb\xa3\xce\xd2\x2f\x90\x26\x11\x22\x04\x30\x09\x4a\xb2\x0d\xea\ +\x49\x92\x23\x2c\x3d\x40\x49\x02\xd3\x99\x32\x09\x6a\x01\x3c\x06\ +\x58\x66\x1c\x99\x3c\x83\xab\xfc\x29\x0d\x66\x8c\x79\xef\x35\x36\ +\x8e\xd8\x85\xc2\x27\xa4\x3e\x5a\x8d\xc4\x3f\x28\x21\x33\x2a\x00\ +\xa6\x02\xa5\x8e\xe3\xff\xac\x3f\x00\x96\xb0\x06\xcd\xf7\xa2\xd6\ +\x6c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x67\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x03\x00\x00\x00\xf3\x6a\x9c\x09\ +\x00\x00\x01\xa4\x50\x4c\x54\x45\xff\xff\xff\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x2e\x2e\x2e\x2f\x2f\x2f\x16\x16\x16\x1a\x1a\x1a\x10\x10\x10\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x12\x12\x12\x07\x07\x07\x11\x11\x11\ +\x05\x05\x05\x05\x05\x05\x03\x03\x03\x05\x05\x05\x01\x01\x01\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x07\x07\x07\x00\x00\x00\x02\x02\ +\x02\x05\x05\x05\x20\x20\x20\x20\x20\x20\x03\x03\x03\x00\x00\x00\ +\x14\x14\x14\x16\x16\x16\x14\x14\x14\x15\x15\x15\x0e\x0e\x0e\x3b\ +\x3b\x3b\x2c\x2c\x2c\x37\x37\x37\x37\x37\x37\x3f\x3f\x3f\x31\x31\ +\x31\x43\x43\x43\x54\x54\x54\x75\x75\x75\x11\x11\x11\x53\x53\x52\ +\x55\x54\x53\x3c\x36\x32\x8b\x8b\x8b\x4b\x4b\x4b\x50\x50\x50\x57\ +\x57\x57\x20\x20\x20\x42\x42\x42\x4a\x4a\x4a\x51\x3b\x29\x72\x72\ +\x72\x81\x81\x81\x84\x7b\x73\x9f\x91\x83\x03\x03\x03\x07\x07\x07\ +\x0b\x0b\x0b\x0e\x0e\x0e\x10\x0a\x07\x10\x10\x10\x11\x11\x11\x12\ +\x12\x12\x14\x14\x14\x1d\x15\x0f\x1e\x1e\x1e\x1f\x12\x0a\x20\x20\ +\x20\x21\x21\x21\x22\x22\x22\x23\x10\x00\x24\x1a\x16\x26\x26\x26\ +\x2d\x1c\x11\x2d\x2d\x2d\x30\x27\x21\x36\x20\x0e\x38\x38\x38\x3e\ +\x3e\x3e\x41\x41\x41\x44\x20\x03\x47\x47\x47\x49\x49\x49\x4b\x28\ +\x0c\x4e\x28\x0c\x52\x44\x39\x52\x52\x52\x54\x54\x54\x55\x55\x55\ +\x58\x28\x00\x59\x56\x54\x5d\x5d\x5d\x5f\x3c\x22\x60\x2d\x01\x60\ +\x3f\x25\x64\x48\x30\x66\x62\x61\x67\x52\x45\x69\x63\x60\x6c\x34\ +\x01\x6f\x6f\x6f\x70\x56\x46\x74\x47\x21\x77\x38\x02\x78\x44\x15\ +\x78\x78\x78\x7b\x5d\x43\x7c\x41\x0d\x7c\x65\x50\x7f\x7f\x7f\x83\ +\x83\x83\x85\x85\x85\x89\x89\x89\x8a\x8a\x8a\x8e\x8e\x8e\x90\x60\ +\x34\x90\x90\x90\x93\x93\x93\x9a\x62\x39\x9a\x63\x3a\xa4\x72\x4b\ +\xa9\x79\x55\xb1\x99\x82\xb8\xb8\xb8\xc0\xc0\xc0\x67\x17\x18\xb9\ +\x00\x00\x00\x46\x74\x52\x4e\x53\x00\x01\x02\x03\x07\x08\x0d\x0e\ +\x1b\x1d\x23\x27\x2e\x33\x43\x59\x66\x81\x82\x84\x8d\x95\x9b\xaa\ +\xac\xae\xb5\xb5\xb8\xb9\xc0\xc1\xc7\xcd\xcd\xcd\xcf\xd0\xd2\xd7\ +\xdc\xdf\xe9\xea\xf0\xf2\xf5\xf5\xf7\xf7\xf8\xf9\xf9\xf9\xfa\xfb\ +\xfb\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\x61\xda\ +\xb4\x94\x00\x00\x01\x2c\x49\x44\x41\x54\x78\x01\x63\xa0\x39\x60\ +\x16\x52\x92\xe6\x61\x60\xe0\x91\x56\x12\x62\x46\x12\xe6\x37\x74\ +\xb6\x55\x60\x64\x54\xb0\x75\x36\xe5\x87\x0b\x32\xf1\x29\xda\x07\ +\x79\xea\x48\x48\xea\x78\x06\x39\x29\xf2\x31\x41\x44\xd9\xe4\xf5\ +\xac\x2a\xb2\x3c\x6c\xeb\xea\x6c\x3d\xb2\x9a\xad\xf4\xe4\xd9\xc0\ +\xc2\x22\x26\xf5\x2d\x5d\x35\x7e\x21\x31\x31\x21\x7e\x35\xdd\x2d\ +\xf5\x26\x22\x20\x51\x5e\x6d\x87\xd8\xc4\xb8\xc8\x74\x5f\x77\x77\ +\xdf\xf4\xc8\x84\xc4\x58\x07\x6d\x5e\x06\x06\x76\x35\xeb\xda\x86\ +\xc6\xe2\xe0\x80\x54\x33\xb3\xd4\x80\xe0\xe2\xc6\x86\x5a\x6b\x35\ +\x76\x06\x61\xa3\xfc\x30\x2f\xff\xc2\x34\x9f\x70\x5d\xdd\x70\x9f\ +\xb4\x42\x7f\xaf\xb0\x7c\x23\x61\x06\x59\x9b\xc0\x94\x92\x82\x88\ +\x4c\xef\x38\x7d\xfd\x38\xef\xcc\x88\x82\x92\x94\x40\x1b\x59\x06\ +\xf5\xa8\xd0\xe4\xd6\xf6\xdc\x68\x37\x3b\x55\x15\x3b\xb7\xe8\xec\ +\x8e\xb6\xe4\xd0\x28\x75\x06\x19\xcb\xf8\xbc\xd2\xb2\x0c\x47\x2d\ +\x51\x4e\x0e\x51\x2d\xc7\x8c\xb2\x9c\xea\x24\x4b\x19\x06\x01\x83\ +\xca\xf2\xa2\xaa\x26\x0b\x71\x90\xab\xc4\x2d\x9a\xaa\x8a\xca\x2b\ +\x0d\x04\x18\x58\xa4\x8c\x5d\x3a\x5d\xcd\x35\xb8\x41\xc2\xdc\x1a\ +\xe6\xae\x9d\x2e\xc6\x52\x2c\x0c\x0c\xac\x82\x72\x9a\xca\x62\x5c\ +\x10\x1f\x73\x89\x29\x6b\xca\x09\xb2\x42\x03\x10\x25\x34\xa9\x16\ +\x2f\x00\x8e\xef\x43\x84\x4e\x93\x12\x3c\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xf8\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x02\x61\x00\x00\x02\x61\ +\x01\xc1\x30\x55\xfa\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x75\x49\x44\ +\x41\x54\x78\xda\xed\x94\x5f\x68\x52\x71\x14\xc7\x7f\xca\x74\x69\ +\x46\x8e\x74\xb9\xa9\xc3\xc2\x49\x84\xb0\xd7\x20\x14\x64\x15\x8d\ +\x5e\x2a\xda\x22\xa3\x27\x5f\xa2\xc1\x6a\x54\x0f\xbd\xee\x25\x2a\ +\x84\xa0\xd1\x1e\x56\x2c\x1a\x45\x50\xc9\xcc\x49\x2f\x21\x44\x10\ +\x62\x22\x18\xf8\x0f\x99\xe2\x1f\xa6\xa2\xf9\x27\x6d\x3a\xaf\xee\ +\x74\x7e\x17\x1f\x1c\x91\xde\x1e\x7a\xaa\x03\x5f\xce\xbd\x3f\xce\ +\xfd\xdc\xf3\xef\x5e\x1e\x00\x90\xbf\x61\x7c\xd4\x7f\xf0\xbf\x02\ +\x9e\x39\xa9\x1c\x7b\x34\x37\xfe\xf8\xce\xcc\xb0\x96\x03\x98\x3b\ +\xf4\x94\x7e\x67\xfd\xca\xf1\x1f\x97\x05\x07\xf6\xef\xeb\x19\x0c\ +\x00\xfd\xc4\x5b\x59\x59\x91\x4e\x9f\x18\x1d\x5b\x9e\x15\x7f\x8d\ +\x2c\x8d\x56\x16\xe7\xa5\xe7\xfa\x3c\xd3\x1b\xec\x74\x3a\x15\xa1\ +\x50\xa8\x58\xaf\xd7\x77\xd6\x9e\xdc\x8a\x7e\x59\x3a\x56\x59\x9c\ +\x15\xed\x82\x5e\x3b\xaf\xb9\xf8\xc0\x22\xd1\x73\x06\x53\x68\x20\ +\x10\x28\xb5\x5a\x2d\x48\xa5\x52\xf0\xbd\x52\x80\x8f\x76\xeb\xd3\ +\xee\x98\xb9\xe9\x43\xd6\xfa\xfa\x44\xeb\xad\xf5\xec\x02\x27\x30\ +\x85\xfa\xfd\xfe\x52\xb9\x5c\x06\xcc\x16\x28\x7c\x63\x63\x03\x4a\ +\xa5\x12\xb8\xdd\xee\xeb\x34\xe6\xc6\x05\xc5\xbd\xc6\xda\xe1\xd6\ +\xa7\x97\xe3\xaf\xa7\xb4\x64\xb0\x2f\xd8\x6e\xb7\x1f\xf4\xf9\x7c\ +\x2c\x74\x6b\x6b\x0b\xc2\xe1\x30\x54\xab\x55\x60\x18\x06\xa2\xd1\ +\x28\x14\x0a\x05\x78\xb5\xbc\xf0\xae\xf1\x46\xc6\x7c\x7e\xa6\xea\ +\x82\xf6\x00\xdb\x6c\xb6\x61\xaf\xd7\x5b\xcc\x66\xb3\x6c\xf9\x95\ +\x4a\x05\x6a\xb5\x1a\x04\x83\x41\xf6\xba\xd9\x6c\x42\x24\x12\x81\ +\x5c\x2e\x07\x5e\xc7\x55\xaf\xf6\x37\x50\xd4\xee\x75\x13\x0a\x85\ +\xf7\x47\x46\x46\x86\x24\x12\x09\x41\x08\x29\x16\x8b\xac\x57\x2a\ +\x95\x04\x5f\x44\x30\x73\xa2\xd1\x68\x08\xb6\x87\x0c\x1d\xbd\x3d\ +\x81\x05\x6c\x73\xda\x63\xec\xe1\x5d\xec\x25\x43\x81\x0a\x85\x82\ +\x60\xf9\x14\x4e\x3d\x0b\xdf\xdc\xdc\xa4\x31\x44\x24\x12\x91\x4c\ +\x26\xf3\x81\xf4\xb0\x5f\xfe\xc7\x0e\x87\xe3\x92\x54\x2a\x7d\xa1\ +\x56\xab\x79\x72\xb9\x9c\xcd\x94\xcf\xe7\x13\x3c\x23\x68\x6c\x05\ +\xb1\x58\xcc\x65\x34\x1a\x27\xff\xe8\xcb\xd3\xeb\xf5\xa3\xe8\xea\ +\xc9\x64\x92\x66\x45\x54\x2a\x15\x69\xb7\xdb\x04\x87\x49\xb0\xdf\ +\x04\x07\xd8\x0d\xe5\x0e\xc6\xc1\x4c\xc9\x64\x32\x31\xae\xd8\x37\ +\x84\x43\x3a\x9d\x66\xb3\xa5\x95\xc5\xe3\x71\x97\xc9\x64\x62\xa1\ +\x9c\xc1\x58\xba\xd2\x62\xb1\xdc\xf4\x78\x3c\x74\xa5\xe6\x31\xd3\ +\x23\xf9\x7c\xfe\x0c\xc2\x9b\x78\x4f\x12\x89\x84\x6b\x12\x8d\x70\ +\xb4\x01\xd2\x31\x81\x40\x30\xc0\xe3\xf1\xc2\xb8\x15\x0f\x0d\x06\ +\x43\x9b\x9e\xe9\x74\xba\xf7\xab\xab\xab\x6a\x04\x9f\x36\x9b\xcd\ +\xcf\x39\x11\xbb\x87\x87\x40\xfa\x82\x3d\x28\x71\x47\xa2\x8e\xdf\ +\xdb\xf1\x83\x34\x16\xd5\x46\x31\xa8\x7a\x47\x8d\x2e\x6d\x77\x9d\ +\x31\x3f\x01\x9d\xcf\x29\xdb\x06\x02\xae\x05\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\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x04\xbb\x49\x44\x41\x54\x78\xda\xad\xd1\x7d\x50\xd3\x75\ +\x1c\xc0\xf1\xdf\xb6\x04\x44\xe3\xb8\xe4\x88\x38\x4c\x22\xae\x7c\ +\x80\xbb\x84\xcc\xae\x07\x54\xc4\x09\x2a\xc7\x50\x61\x1b\x6c\xfb\ +\x8d\x31\x10\x35\x60\x24\xc2\x16\x2a\x8c\x0d\xd8\xd8\x03\xdb\x78\ +\x18\x0f\xe3\x79\x01\x8e\x3d\xe3\x1c\x41\x04\x68\x6a\x89\x69\x69\ +\x45\x3e\x64\xfa\x05\x4f\xcc\x8e\xab\xfc\x27\x4d\xf6\xe9\x57\xd7\ +\x65\x77\xd1\xc3\x25\xef\xbb\xef\x1f\x9f\x7f\x5e\xf7\xb9\xcf\x17\ +\xfb\x3f\xd9\x0d\x47\x46\x5d\x2d\xc2\x4f\x9c\xed\x15\xcb\xb0\x85\ +\xea\x78\xaf\x36\x72\xa0\x45\xf8\xd3\x84\x43\x7d\xd1\xa4\x2f\xf5\ +\x5d\x30\x78\xd4\x5a\xab\x70\x35\x1f\x84\x8f\x9d\xb5\xc2\x05\x43\ +\xbb\xf4\x95\xbe\x43\x3d\x55\xb7\xc6\x7b\xc4\xf7\x06\x8d\xb2\xd0\ +\x05\x41\x1b\x6b\xab\xbd\x87\xcc\xf5\x39\x03\x2d\xc5\x9e\x33\x16\ +\x85\x45\x23\x7e\x8b\xbc\x20\x70\xd5\xfe\x84\xed\xcd\xb2\xbc\x9f\ +\x3b\x15\x79\xe0\x6c\x97\xd2\x1f\x1b\x14\x66\xed\xa0\x68\x44\xcc\ +\xf5\xcd\x32\xc1\xc4\xb1\x66\x11\x74\x95\x73\x40\x2d\x64\x33\x1e\ +\x0b\x15\x65\x6f\x5f\xd4\x5c\xca\x92\x0c\xb6\x89\x1e\x0c\xb5\x0b\ +\xa1\xb5\x3c\x13\x6a\xcb\xb2\x3d\x86\xf8\x18\x9a\x15\xc3\x48\xd8\ +\x9f\x22\x66\x6f\x67\x54\xd4\x0e\x1b\x86\xf9\xfc\x23\x9a\xcb\xda\ +\x42\xaa\x13\xa5\xe6\x1f\x37\x14\xcd\x8d\x74\x1f\x86\x63\x06\x11\ +\xd8\x94\x99\xd0\xaf\xca\x06\x17\x6d\xf3\xf5\x7e\x0a\x79\x8b\xf1\ +\x77\xbc\x8f\x40\x1d\xfe\x7e\xb2\x2f\x05\x7b\x6f\x3a\x97\xf9\xd7\ +\x11\xb3\xd7\xdf\xdf\x34\x2f\x71\x75\x77\x55\xc6\x8f\x63\xc6\xc3\ +\x60\x6b\x78\x1b\x06\xdb\x8a\xa1\xbf\x92\x03\x66\x02\x3f\x57\x56\ +\xf0\xdd\xc9\x84\xd8\x49\x1d\x99\x44\x7d\x87\xd8\xb0\xdb\x6f\xa9\ +\xe2\xea\x5e\x1e\x9a\x15\x0a\xd1\xf5\xc2\x7c\xd4\xeb\x45\x51\xce\ +\x8b\xd2\xe3\x22\xc8\x9a\xc3\x7c\x87\x45\xbb\x1f\x46\x3a\x84\x30\ +\xd0\x58\x00\x0e\x4d\x0e\xf4\xc9\x70\xb0\x28\x33\x60\x9c\x4b\xbf\ +\x73\x65\x6f\x36\xea\xda\xf8\xea\xe5\x83\xbe\x3e\xd6\xb3\x9c\x14\ +\x74\x19\xc7\xd1\x15\x2e\x17\x9d\xe7\x30\x6e\x76\x52\x48\x82\x79\ +\x61\x69\x0e\x75\xab\xa2\x20\xf9\x41\x5b\xb5\x00\x4c\xba\x02\xb0\ +\xd7\xee\x07\x63\x19\x03\x4c\x72\x1c\xde\x95\xa4\x7b\x4e\x27\xc5\ +\x4d\x4f\xc4\xc5\xa1\xb3\xc9\x89\xe8\xa3\x34\x1a\x3a\xb7\x95\x8a\ +\x3e\x63\xd0\xd1\x89\xf8\x98\x1b\xcd\x14\xd2\x01\x98\x0f\x95\xe4\ +\x50\x83\x55\x82\xed\xd7\x7a\x65\x5c\x70\xe9\xf3\xa1\xa5\x3c\x03\ +\x54\x22\x1c\x74\xc5\x0c\x68\x2a\x65\x43\x7b\x69\xfa\xcd\xd6\x20\ +\xff\xa1\x53\x1b\xa2\xd1\x89\x35\x6b\xd0\x87\xd1\xd1\xe8\x54\xcc\ +\x1b\xc8\xfd\x66\xc4\x8d\x86\x45\x4f\x1c\xe8\x78\xf4\xa9\x8f\x52\ +\xe6\xc6\x2f\x36\x94\x24\xbb\xf4\xa2\x9d\x30\x50\xb7\x0f\x8e\x56\ +\xf3\xa1\xa7\x92\x0d\x7a\x61\x32\xb4\x96\xec\x84\xaa\xdc\x44\xa8\ +\x29\xa4\x0f\xea\x96\x78\xd7\xbf\xbf\x32\x08\x8d\x50\xc8\x68\x18\ +\xc3\xd0\xe8\x12\x2f\x64\x0e\x0f\xbc\x56\x8d\x61\x09\x7f\x41\x8d\ +\x65\x74\x4a\x6b\x09\x4d\xd9\x5b\xc1\x98\xeb\x92\xa4\x13\xb7\xe4\ +\x42\xd7\x11\x06\x74\x94\xd1\xa1\xa5\x28\x11\xfa\xe5\x2c\x68\x10\ +\xd2\xc0\xc0\x8c\x99\x19\x5f\x1d\x82\x2e\x2c\xf6\x9a\x9a\x58\xea\ +\x33\x35\xba\x22\x70\xea\x3c\x99\x84\x3e\xf5\x5b\x4c\xe0\xc1\x93\ +\x12\x0c\xa3\xfe\x81\x1e\xad\x60\x93\x5b\x4b\x92\x04\x23\x0d\xbc\ +\xfb\xf2\xdc\x78\x70\x6b\xf9\xd0\x59\x9a\x0a\x76\x39\xb1\x2d\x81\ +\x99\xa5\xa9\x30\xa0\xc1\xa1\xad\x74\x17\x8c\xb3\x62\xbf\xff\x2a\ +\x34\x70\x66\xf2\xb9\xa7\x6f\x37\xbc\x16\x39\x4d\x7f\x31\xe4\xd2\ +\xf8\xaa\xb0\x69\x44\xe0\xc8\xff\x49\x64\x59\xf9\xfc\xa4\x36\x34\ +\x94\x8a\x99\xe5\x3c\x72\x79\xd6\x26\xc6\xa0\x8e\x33\x53\x5f\xb4\ +\x03\x7a\x88\x0d\x5d\x1a\x2e\x98\xc5\x4c\x70\xaa\xd9\x60\x2c\x4f\ +\x01\x97\x32\x1d\x1c\x2a\x36\xd8\x94\x6c\x38\xbd\xed\xe5\x1f\xbe\ +\x7e\x29\xec\xdb\x5e\xea\xfa\xdb\xb9\xeb\xc2\xb5\x55\xc9\xaf\xc4\ +\x64\x87\x2f\x1f\xf9\xfc\x85\xb0\xa9\x7b\x24\x02\x5f\x1b\x89\xf4\ +\x11\x11\x3d\x98\x3a\x77\xdb\x3a\x71\x76\x6c\xa5\x5b\xcb\xbe\xaf\ +\x15\x24\xc0\x58\xe3\x1e\x8f\xb5\x82\xe9\x19\x26\xf0\x1e\x49\x2a\ +\x8c\x36\x66\x82\x5b\x9d\x0e\x56\x05\x13\x4e\xb5\xef\x9b\xb3\x30\ +\x63\xef\x3a\x93\x62\xee\x1c\xd9\x18\xd1\x68\x92\xa6\x45\xd9\xd5\ +\xbc\x90\xc2\xc8\x15\xe1\x25\xcf\x86\x1c\xbf\xba\x79\x03\xd2\x07\ +\x07\x0d\x89\x31\x2c\x18\x33\xc9\x39\xc1\x76\x15\xfb\x90\x51\xbc\ +\x6b\x76\xbc\x96\x0f\x63\x4d\xfc\xb9\xf7\xaa\xd8\x9e\xe1\x3a\xfc\ +\xa1\x59\xce\x80\x89\x8e\x3d\x60\x92\xee\x86\x89\xce\x3d\x70\xb2\ +\x35\xe7\x9e\x81\x17\x5b\xaf\x4b\x58\xab\x31\xcb\xd2\xa2\x1c\x2a\ +\x3c\xd0\xad\xcb\xf0\x72\x6a\x52\x48\xca\xe5\xcb\x9f\xa9\x09\x08\ +\x90\xfe\x86\xfe\x9a\xa5\x9a\xfb\xd4\x51\x39\xfb\x75\x4b\x65\x5a\ +\x9f\xb5\x9a\x75\x69\x50\xc5\xb9\x65\xab\x60\xcc\x7e\xa0\xe7\x3e\ +\x1c\x6b\xe2\xc1\xd9\x16\x1e\xf4\x55\xec\x86\x33\x7a\xbe\x67\x58\ +\x9f\x75\xc1\xa2\xe0\xc4\xda\x54\xdc\x15\x66\x15\xd7\x57\x5b\x46\ +\x27\xd3\x68\x34\x6c\xde\x4c\xa6\x14\x92\xa5\x26\xc3\xc7\xae\xc6\ +\x57\xdb\x54\xf8\x36\xe2\xe1\x26\x19\x4b\x62\x92\xa5\x75\x3b\x54\ +\xac\x93\xb6\xca\x94\x19\xbb\x92\xf9\x60\x40\x9a\xf6\x4d\x67\x39\ +\xb3\xde\x59\xc3\x5b\xea\x3e\x94\x43\xbe\x18\x19\x89\xfd\x6b\x00\ +\x18\xf6\x85\x78\x17\xe9\x98\x82\x4f\xb1\xca\x71\x6f\x87\x82\x1b\ +\x60\x55\xe2\xab\xac\x2a\x3c\xc1\x24\x4f\x4f\x69\x28\x4e\x4c\x76\ +\xd7\xe0\x9c\x9a\x83\xbb\x37\xdd\xbd\x1b\x80\xfd\x97\x7e\x01\xca\ +\x69\x50\xfd\x5a\x79\x3f\xfb\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x02\xa0\ +\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\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\ +\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x1d\x0d\x11\x0d\x81\xdc\x28\x8a\x00\x00\x02\x2d\x49\x44\ +\x41\x54\x78\xda\x8d\x92\x4b\x6b\x53\x41\x18\x86\xdf\x99\x73\x89\ +\x39\x27\x27\xd5\xa8\xb9\x94\x6e\x52\x53\xdb\x8d\xd5\x58\xaa\xe2\ +\x05\x74\x97\x85\x05\x05\x0b\xd5\xba\xf0\x07\x08\xf5\x27\x88\x22\ +\x88\x1b\x11\x14\x5d\x58\x14\x29\x2d\xd9\x88\x6e\x04\xc1\x85\x8b\ +\xea\xca\x85\x0b\x15\x5d\x18\xa4\x55\xc4\xa0\x6d\x9a\x73\x92\x9c\ +\xcb\x5c\x9c\xb4\xb8\x90\xc6\x98\x81\x6f\xf3\xcd\xfb\x3d\xcc\xf3\ +\x31\xe8\x76\x0a\x93\x0f\xae\xe5\x4f\xdd\xb9\xd2\x2d\xa3\xfd\xeb\ +\x62\x68\x6a\xae\x94\xb4\xc8\x3d\x03\xfe\x31\x23\x7b\xe8\x75\xbd\ +\xf2\xb2\xd2\x29\x47\x3b\x35\x77\x9f\x9d\xcf\x10\xc9\x1f\x4e\x9d\ +\x1c\x21\xe7\x4e\x8f\x51\xc9\xfd\x47\x99\xc3\x33\x3b\x7b\x02\x0c\ +\x4f\x97\x89\x54\xc3\x63\x23\x4e\x26\x69\x6b\xd8\x9a\x8c\xe1\xc8\ +\xf8\xae\x9c\x60\xfe\x6c\x6a\xdf\xf9\xff\x03\x84\x60\x97\xb6\xd9\ +\x28\x8d\x0e\xa7\xe0\xae\x35\x50\x57\x55\x1c\x1d\x44\x36\xdd\x37\ +\x01\xc1\x2f\x76\xdd\x81\xf2\x2e\x12\x19\x2e\x1c\x2f\xa6\x74\x53\ +\xd7\xc0\xb9\x40\xc4\x04\xc2\x90\x23\x97\xdd\x8e\x0f\xef\x3f\x9e\ +\xd0\xfb\x06\x9f\x06\x3f\x3f\x55\x37\xbd\x20\x3f\x71\xd3\x09\x6a\ +\xcb\xe5\x42\x86\xc5\x62\xa6\x8e\x20\x94\xaa\x80\xb0\x5d\x11\x60\ +\x98\x71\x8c\x1f\xd8\x1f\x57\x7a\xf3\x89\x42\x69\xcb\x26\x40\x58\ +\xff\x76\x37\x41\x6b\x43\x03\xb9\x14\x42\x06\x30\x41\xc1\xa5\x86\ +\x48\x68\xa8\xb9\x0c\x5f\x96\x6b\xf8\xb5\x26\x11\xb3\x9c\x3d\x52\ +\xb0\xeb\x7f\x29\xe4\x8e\xce\x4c\x46\xee\x8f\xab\xb9\xfe\x7e\x10\ +\x3d\xa1\x00\x3a\x82\x88\xa2\x19\x00\x6e\x83\xa3\xe5\x0b\x04\x4a\ +\x83\x0b\x01\x10\x0d\xab\xd5\xa5\x83\x9a\x33\xf0\x8a\xd7\x97\x2a\ +\x3a\x00\xf0\xc0\xcb\x47\xad\x55\xbc\x5b\x7c\x82\xb7\xad\x15\xc8\ +\xd0\xc3\x85\xcb\x8f\x11\x33\x4d\x10\xda\xd6\x88\xf0\xac\x7c\x1b\ +\x02\x1a\x04\x67\x90\x82\x13\x02\x79\x06\xc0\x8b\x75\x80\x16\x4b\ +\xdc\x30\x9c\xec\x7d\x6a\x58\x54\xb3\xd3\xa4\xf1\xf5\x4d\x35\x61\ +\x5b\xb0\xac\x38\x28\x25\x68\xb5\x02\x44\x81\xaf\x60\x46\x52\x40\ +\x48\x48\x00\x20\x4d\x00\x58\x07\x7c\x5f\xbc\x05\x00\x2b\x7f\xbc\ +\xac\xec\x5e\xa8\x4d\xc2\x49\xd8\x30\x0c\x5d\x41\x3c\xa8\x69\x78\ +\x9f\x9f\xbb\x3d\xfd\x44\xdd\xc9\x6e\x2c\x48\xa3\x1b\x1a\xa4\x9d\ +\xd4\xd1\x31\xdb\xb1\x69\xa7\xe1\x79\x4d\x50\x4a\x51\xd7\x1a\x70\ +\xbd\x46\xdb\xbb\x77\x00\x35\x6d\x77\x61\x6e\xd6\x11\x2c\x80\x8c\ +\x7c\xf0\xa8\x05\xc1\x23\xb7\x67\x80\x0a\xef\x90\x2c\x34\x85\x1a\ +\x64\xcc\x87\x50\x10\x48\x11\x76\xca\xfe\x06\x81\x37\xee\xc0\xcc\ +\x8e\x0a\x9c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x61\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x02\x61\x00\x00\x02\x61\ +\x01\xc1\x30\x55\xfa\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xde\x49\x44\ +\x41\x54\x78\xda\xb5\x95\xcd\x6a\x14\x41\x10\xc7\xab\xe7\x23\xfb\ +\x95\x4c\x8c\x41\x88\xc1\x80\x12\x48\xd4\x88\xab\xa2\xee\x21\x97\ +\x20\x79\x01\x1f\x40\x3d\x4b\x2e\x06\x54\x88\x2f\x90\x78\x13\x1f\ +\x21\x0f\xe0\xc1\x83\x07\x15\xbc\x78\x51\x31\x7a\x10\x51\x5c\x82\ +\xa0\xf9\xba\x88\x71\x77\xbe\x7a\xa6\xa7\xad\xea\x9d\x69\x66\x76\ +\x47\x11\xd4\x62\xaa\x67\x7b\x7a\xfa\x57\xff\xae\xea\xe9\x65\x52\ +\x4a\xf8\x1f\x66\x51\xb3\xbc\xbc\xfc\x4c\x44\xf1\xac\x6d\xdb\x72\ +\xe6\xf8\x5c\x7d\xec\xe0\xb8\x95\x24\x09\x46\xa4\xa0\xac\x77\x31\ +\xa6\xdc\x30\x0c\xfd\x1b\x2f\x30\xb1\xbf\xb5\xb3\x1d\xb7\x3f\xbc\ +\xf7\x25\x4e\xa9\x54\x2b\x9f\x56\xd7\xd6\x16\x14\xd8\x77\xbd\x85\ +\x4e\xb7\x0b\xce\xc8\x08\x4c\xcf\x9e\x84\xd3\xcd\xb3\xf0\x74\x63\ +\x13\x12\x99\x00\x19\xa3\x86\x40\xa0\xe3\xa4\x50\x13\x16\x2f\x4e\ +\xc3\xab\x97\x2f\xe0\xdd\x9b\x8d\x31\x21\x04\xa0\x4f\x6a\xc5\x9c\ +\x73\x08\xc3\x10\x92\x46\x43\x4d\x18\xb2\x19\x2c\x9e\x3f\x06\x40\ +\xa2\x35\x8c\x69\x20\x53\x0d\xa0\x7a\x06\x16\x3a\x19\xae\x50\xbb\ +\x06\xd3\x8b\xa3\x8e\x43\xd1\x7a\x60\xcb\x80\xea\x90\x05\xda\x32\ +\xa0\x4e\x0b\x42\x81\xa9\xbb\x48\x41\x38\x37\x73\x0d\xd6\x51\x54\ +\xde\x40\x82\x8d\xe0\x27\xaf\x37\x81\xd2\x5c\x66\x92\x5c\xf6\x4a\ +\x30\x7f\x6a\x0a\x12\xa1\xd5\x16\xc0\xd4\xd1\x60\x1a\x0c\xa3\x18\ +\x2e\xcc\x4e\xd2\x64\x0d\xc2\x4e\x0a\xcc\x5c\x52\xa6\x94\x47\x89\ +\x80\x38\x8e\x35\xb8\x54\x71\x8c\xd1\x03\x2e\xc0\x34\x8d\x01\x99\ +\x88\xce\xa0\x5a\x35\xa7\xe5\xc7\xa4\x56\x7b\xb9\xe2\x48\x08\x04\ +\x47\xf0\xe8\xf9\xdb\x42\x2a\xf2\xdb\x5d\x61\x53\xe5\x97\x5a\x73\ +\x38\x47\x92\x62\xec\xab\xfb\xa0\x62\xb2\x18\xa3\x7b\xa8\xf8\xdc\ +\x89\xe9\x9e\x4c\xdd\x82\x4e\x4d\x5e\x75\x22\x95\x30\x62\xd0\xb3\ +\xa2\xe2\x44\x08\x0d\xde\xdd\xdd\x86\x5a\xc3\xc9\x07\xd3\x96\x62\ +\x09\xac\x03\x7d\x63\x06\xec\xed\xed\x80\x48\x95\x26\x86\x91\x4b\ +\x45\x0e\xf2\xf8\xe1\x03\xad\xec\x4f\x8d\x52\x98\x99\xd1\xaf\xf8\ +\x6f\x2c\x2f\x43\x30\x56\xcc\xf1\x3f\xb2\x62\x8e\xa9\x92\xfd\x76\ +\x7d\x69\x09\x26\x0e\x4f\xfc\x12\xc0\xc3\x10\xee\xac\xac\x40\x10\ +\x04\xaa\x80\x87\xc6\xc7\x07\x4f\xb7\x28\x8a\xb2\xbe\x2e\x8a\x1f\ +\xf8\x70\xfb\xe6\x2d\x35\xd6\xc5\x03\x6a\xf5\xee\xda\x00\x7c\x74\ +\xf4\x00\x18\x46\x87\x0a\xa7\x19\x45\xc5\x25\x60\xcf\xf3\x20\x42\ +\x55\x82\xf6\x35\x06\x71\x5d\xb7\x6c\xdd\xc0\xd2\x42\x13\xbc\x52\ +\xa9\xd0\xdc\xdf\x2b\x26\x10\xa5\x88\xc0\x3c\xe4\x65\xe0\xc2\xf9\ +\x20\xf1\x5e\xab\xd7\x01\x0a\x60\x04\x94\x81\x79\x1c\xa9\x23\x35\ +\xe0\xa1\x4a\x47\xbf\x79\x61\x40\x63\xea\x0b\x65\xe9\xb6\x35\xf2\ +\xbb\x22\xe6\xfc\x1e\x30\x76\xa3\x3f\x15\xdd\x4e\x17\xbe\xef\xef\ +\xd3\x81\xaf\xfa\xfd\x16\x78\x3e\x84\x3e\x15\x4f\x82\x65\x9a\xd0\ +\xc1\x77\x69\xf5\x8c\x31\xd3\xc2\x86\x3e\x95\xfb\x47\x8f\x4c\xcd\ +\x0f\x8f\x0c\x9f\xc9\xd8\xbe\xef\xdb\x57\xae\x5d\x65\xd9\x1e\xc5\ +\xbe\xfe\x27\xd1\x8a\x3d\x17\xcb\x10\xd2\x33\x54\x6d\x02\x8f\x38\ +\x9d\xd2\x2e\xd5\xd5\x42\x75\x09\xc2\xb7\x3e\x7f\xfd\x72\x19\x00\ +\x2a\x04\x6d\xb5\x5a\xd0\x6c\x36\x67\x1c\xc7\xa9\x55\xab\xd5\x3a\ +\x16\xa5\x61\xdb\x76\x2d\xcd\xab\x8f\xe9\xf1\x30\x90\xdb\x6e\xb7\ +\x3f\xae\xaf\xaf\x13\x88\xe5\x77\x22\xfa\x8f\x9f\x10\xdc\x10\xc6\ +\xc1\x27\x82\x12\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x04\x79\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x03\x00\x00\x00\xf3\x6a\x9c\x09\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ +\x7d\xd5\x82\xcc\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x1f\x50\x4c\x54\ +\x45\xff\xff\xff\xff\xff\xff\x00\x00\x00\x80\x80\x80\xff\xff\xff\ +\x00\x00\x00\x00\xa8\x00\x2e\x2e\x2e\xaa\xaa\xaa\x80\x80\x80\xc0\ +\xc0\xc0\x66\xa8\x66\x00\x00\x00\x00\xa8\x00\x00\x00\x00\x00\xa4\ +\x00\x00\x00\x00\x00\x00\x00\x00\x95\x00\x00\x9f\x00\x00\x00\x00\ +\x90\x90\x90\x00\x00\x00\x00\x9a\x00\x00\x00\x00\x00\x00\x00\x00\ +\x95\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9f\ +\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x00\x00\x00\x00\x00\x00\x00\ +\x2c\x2c\x2c\x00\xa8\x00\x71\x71\x71\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\xad\x00\x00\xb2\x00\xbc\xbc\xbc\xc8\xc8\xc8\x00\xb7\ +\x00\xd3\xd3\xd3\xdb\xdb\xdb\x00\xbc\x00\x00\xbc\x00\x00\xb7\x00\ +\x00\xb2\x00\x6f\x6f\x6f\x01\xac\x01\xbc\xbc\xbc\xd0\xd0\xd0\x00\ +\xa8\x00\x00\xad\x00\x93\x93\x93\xbf\xbf\xbf\x00\xad\x00\xc9\xc9\ +\xc9\x00\x95\x00\xb9\xb9\xb9\x00\x9a\x00\xcb\xcb\xcb\xcc\xcc\xcc\ +\x00\xa8\x00\xce\xce\xce\xb2\xb2\xb2\xd1\xd1\xd1\xd6\xd6\xd6\x81\ +\x81\x81\xa5\xa5\xa5\x00\xa4\x00\xa4\xa4\xa4\xd0\xd0\xd0\xa1\xa1\ +\xa1\xc7\xc7\xc7\xdb\xdb\xdb\xa1\xa1\xa1\xc5\xc5\xc5\xc1\xc1\xc1\ +\x00\x9f\x00\xbe\xbe\xbe\x93\x93\x93\xb3\xb3\xb3\x00\x9a\x00\xb4\ +\xb4\xb4\xb4\xb4\xb4\xb4\xb4\xb4\x86\x86\x86\x87\x87\x87\xda\xda\ +\xda\xb4\xb4\xb4\xd7\xd7\xd7\x76\x76\x76\x92\x92\x92\x99\x99\x99\ +\xaf\xaf\xaf\x86\x86\x86\x8b\x8b\x8b\x00\x9f\x00\x00\xa4\x00\x3e\ +\xa9\x3e\x7e\x7e\x7e\xde\xde\xde\x76\x76\x76\xde\xde\xde\x00\xa8\ +\x00\xc8\xc8\xc8\xd5\xd5\xd5\x00\xad\x00\x00\x9a\x00\x00\x9f\x00\ +\x00\xa4\x00\x00\xa8\x00\x00\xad\x00\x00\xb2\x00\x00\xb7\x00\x54\ +\xb5\x54\x83\xc7\x83\x9b\x9b\x9b\x9d\xc8\x9d\xa6\xa6\xa6\xa9\xa9\ +\xa9\xb3\xb3\xb3\xc0\xc0\xc0\xc1\xc1\xc1\xc3\xc3\xc3\xc6\xc6\xc6\ +\xc8\xc8\xc8\xc9\xc9\xc9\xca\xca\xca\xcc\xce\xcc\xcd\xcd\xcd\xce\ +\xce\xce\xcf\xcf\xcf\xd0\xd0\xd0\xd1\xd1\xd1\xd2\xd2\xd2\xd3\xd3\ +\xd3\xd4\xd4\xd4\xd6\xd6\xd6\xd7\xd7\xd7\xd8\xd8\xd8\xda\xda\xda\ +\xdc\xdc\xdc\xdd\xdd\xdd\xde\xde\xde\xdf\xdf\xdf\xe0\xe0\xe0\xe1\ +\xe1\xe1\xe2\xe2\xe2\xe3\xe3\xe3\xe5\xe5\xe5\xe6\xe6\xe6\xe7\xe7\ +\xe7\xe8\xe8\xe8\xe9\xe9\xe9\xea\xea\xea\xeb\xeb\xeb\xec\xec\xec\ +\xed\xed\xed\xee\xee\xee\xef\xef\xef\xf0\xf0\xf0\xf1\xf1\xf1\xf2\ +\xf2\xf2\xf3\xf3\xf3\xf4\xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf8\xf8\ +\xf8\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\ +\x1c\xd4\xc3\xad\x00\x00\x00\x73\x74\x52\x4e\x53\x00\x01\x02\x02\ +\x02\x03\x03\x03\x03\x04\x04\x05\x07\x08\x0a\x0d\x0f\x13\x13\x14\ +\x1a\x1a\x1b\x1c\x22\x23\x25\x2b\x2c\x33\x36\x38\x3d\x3f\x42\x46\ +\x49\x49\x4d\x4d\x50\x53\x55\x58\x65\x69\x6c\x72\x7a\x7c\x80\x89\ +\x8c\x8f\x91\x94\x9d\x9f\xa5\xa9\xab\xaf\xb1\xba\xbb\xbc\xbd\xbd\ +\xbd\xbf\xbf\xc1\xc1\xc2\xc3\xc7\xcb\xcd\xcd\xcf\xd3\xd3\xd4\xd4\ +\xd5\xd6\xd7\xd9\xde\xe0\xe0\xe2\xe4\xe5\xe5\xe6\xe8\xe8\xe9\xea\ +\xea\xea\xeb\xeb\xf3\xf7\xf7\xf9\xf9\xfa\xfa\xfb\xfc\xfc\xfd\xca\ +\xc5\x05\x0d\x00\x00\x01\x4d\x49\x44\x41\x54\x18\x19\x85\xc1\x05\ +\x4f\x02\x01\x00\x06\xd0\xcf\x06\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\ +\x3b\xc1\x6e\xc5\x44\xc0\xc6\xe3\x3c\x44\x41\x45\x44\xd1\x1f\x28\ +\xba\x9d\xb2\xe9\xe6\x7b\xc0\xff\x98\x19\xd9\x86\x80\x4d\xac\x0f\ +\x34\x31\x6b\x79\xfc\x8e\xd0\xd2\x22\x3f\x03\x68\x60\x54\x9f\x48\ +\x76\x8f\x47\x27\x2a\xa0\x89\x51\x25\x14\x5c\xc9\xf7\x4f\x87\x23\ +\xa0\x81\x51\x2e\xa2\xa4\x5c\xf2\xe9\xe0\xb2\x4d\x17\x3f\x52\x6e\ +\x88\x0b\xe9\x3d\x8f\x52\x70\x89\x34\x7c\x4b\xa8\x3c\x56\x12\xc2\ +\x87\x47\xfe\xad\x6c\x3b\x0f\xb4\x82\xd7\xe7\xee\xc3\x57\x52\x24\ +\x57\x08\x38\xf5\xa0\xe5\x2b\xdf\x48\x49\x17\x47\x25\xa6\x28\x4e\ +\x23\x68\xb9\xf2\xcb\xc7\x37\xd1\x59\xdf\xfa\xfb\xf9\x56\x13\x68\ +\x59\x77\xb2\x17\x81\x54\x25\xdc\xeb\x5d\xd9\x6c\x06\x2d\xfe\x5a\ +\xc6\xbb\x53\xf2\x25\xaa\x8b\x8d\x96\x32\x00\x8e\xe9\x96\x50\x4b\ +\xde\x95\x48\xb9\xe2\xe7\x23\xea\x69\xaf\x04\x80\x5d\xc3\x54\x26\ +\xd4\xb4\x5a\xd7\xc4\xb7\x5c\x52\xb1\xb4\xd3\xce\x00\xac\x6a\xa6\ +\xfb\xdd\xf0\x29\x7c\x68\x95\x14\xef\x2f\xcc\x0c\x1a\x01\x66\xc5\ +\x33\x03\x9e\xf8\x52\x31\x3e\xb2\x4c\x10\xf3\x2c\x56\xa2\xbe\x49\ +\x0e\x6b\xcc\x17\x9f\x0c\xfc\x8a\x4a\x43\x3a\x17\x37\x7a\xe2\xd8\ +\xec\xa4\x54\xf6\x64\x10\xbe\xf8\xc4\xda\x00\x3a\x85\x75\x4c\xc4\ +\xcc\xaa\x05\xe3\x97\xe8\xb9\xb9\x30\xfc\x21\x2a\x12\x34\x3d\x53\ +\x0b\x5b\x07\x67\x57\x0f\xef\x80\x40\x7f\x2f\x77\x17\x27\x7b\x6b\ +\x73\x63\xed\x0f\xd9\x76\x6a\x8d\x75\xa6\xff\xe4\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x04\x4d\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\ +\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x01\x04\ +\x03\x32\x2d\xe1\x0e\xef\xfd\x00\x00\x03\xcd\x49\x44\x41\x54\x78\ +\xda\x9d\x93\x6b\x4c\x93\x67\x14\xc7\xcf\xdb\xf6\x6d\x29\xa3\xd2\ +\x95\x44\x4a\x69\x55\x70\x8b\x09\xac\xb4\x23\x23\x63\x86\xb9\x76\ +\xa3\x33\x23\xcb\x5c\xc2\x30\x5b\x36\x2f\x21\x20\x2e\xdb\x90\xf5\ +\xa2\x36\x59\x84\xc4\x1b\x51\xdc\xb2\x01\x9b\x92\x98\x52\x34\x31\ +\x26\x04\x9b\x08\xd8\x02\x51\x54\x3e\xcc\x81\x26\x58\x19\x1a\x1d\ +\xa0\x64\xd6\xae\x17\xe8\x4a\x97\xb5\xef\xe5\xd9\xc1\x84\xc4\x0f\ +\x33\xb6\x3d\xc9\x3f\x79\x72\xce\x3f\xbf\xf7\xbc\xe7\x3c\x0f\x05\ +\xa9\x07\x65\xb5\x5a\xf4\x26\x93\xa9\x31\x33\x33\xb3\x9c\xe3\x39\ +\x71\x34\xfa\xf7\x83\x50\x28\x78\xde\xe1\x70\x9e\xbd\x3a\x7a\x2d\ +\x01\xe9\x40\x9b\x9b\x0f\xd4\xfa\x9e\xf8\x12\x1c\xc7\x92\x48\x24\ +\x42\x66\xe7\x66\xc9\xcd\x5b\x13\xa4\xef\x42\x2f\x6f\xb1\x7d\xdb\ +\x8e\x1e\x51\xca\xd4\x77\x2b\x8d\xeb\x2f\xb9\x07\xff\x09\x04\x03\ +\x24\xfe\x6f\x9c\x2c\xc5\x96\x48\x6b\xeb\x51\xae\xac\xec\x8d\xfb\ +\x34\x4d\xff\x80\x96\x37\x51\x42\x48\x95\x2e\x7b\x29\x6b\x4b\x76\ +\xb6\x4c\xca\x71\x1c\x30\x6c\x02\x28\x8a\x82\x41\xb7\xfb\xcc\xf8\ +\xf8\x84\x1d\xcb\x01\x14\xbb\xe2\x15\xa4\xc0\x15\xca\x5f\x96\xbf\ +\x35\x33\x33\x07\x84\x10\x60\x18\x06\x58\xfc\x80\x4a\xa9\x9c\xc6\ +\xda\x93\x15\x68\x3a\x60\x69\x51\x51\x51\xd9\xf4\xf4\xef\xc0\xb2\ +\x0c\x8a\x05\x96\x61\x61\xdb\xf6\x6d\x95\x6b\xd7\xad\xa5\x9f\x35\ +\x9a\xad\x4d\xd9\xc2\x64\xa9\x6f\x6f\xaa\x78\xad\xaa\xaa\xca\x16\ +\x0c\x86\x28\x69\x86\x14\x54\x2a\x15\xe0\x02\x21\x23\x53\x5a\x88\ +\xe3\xd9\x58\xac\x2d\x1a\x6d\x6c\x6c\x5c\xdf\xb0\xbb\xe1\xd0\xc2\ +\xc2\xe2\xe1\x64\x3b\xa6\x0c\x06\xc3\x87\x08\xa3\xf2\xf3\xf3\xa1\ +\xef\x82\x0b\x8e\x1e\x6b\xc3\xae\x11\x2c\x91\x80\x5a\xad\x79\x2f\ +\x43\x22\xbd\xbb\xe1\xd5\x0d\x13\xaa\x3c\x55\xed\xf5\x6b\xd7\x17\ +\x92\x05\x4b\xb4\x5a\x6d\xf5\x83\x3f\x66\xa1\xcf\xd5\x0f\xfa\xd2\ +\x52\xe8\x77\xbb\xe1\xb6\xd7\x0b\x40\x00\x34\x1a\x0d\x64\x65\x65\ +\x49\x69\x09\x4d\xfd\x7a\xe3\x06\x3b\x34\x34\x7c\x2e\x19\x30\xd5\ +\xd2\xd2\x5c\xa3\xd7\xe9\x4b\xb4\xc5\xc5\xf0\xa7\xcf\x07\x42\x81\ +\x00\x0a\x0b\x0a\xe0\x7c\x6f\x2f\xf0\x3c\x0f\x72\xb9\xfc\xe9\x0d\ +\xb9\x77\xf7\x1e\xb1\xef\xb3\x7b\x30\x77\x4e\xf4\x22\x68\x67\x67\ +\xc7\x67\xe5\xe5\xe5\xa7\xfc\x7e\x3f\x60\xd7\xf0\xc1\x66\xd3\xf2\ +\x15\x83\x75\xea\x7c\xd0\xeb\x4a\x40\x2c\x11\x43\x20\xe0\x87\x70\ +\x28\xcc\x7c\xde\xf2\xc5\x40\x22\x91\xb0\x03\x80\xff\xb9\x4f\xba\ +\x44\xa7\x15\x5a\xcc\xe6\xef\x84\xb4\xf8\xc0\x19\x67\x8f\x60\x31\ +\xb2\x08\xc7\x8f\x1d\x07\x35\x02\x1f\xcd\x3f\xe2\xbb\x4e\x75\xc5\ +\x7c\x8f\x7d\x21\x02\x30\x3f\x36\x36\x36\x89\xf3\x1e\x07\x00\x0f\ +\xea\x2f\x14\xf9\xdf\x8e\x1b\x76\xd7\xcb\x36\xbd\x63\x70\xdc\xf1\ +\xde\xa9\xf6\x78\x3c\x90\xa3\xc8\xc1\x39\xae\x01\x65\x9e\x92\xef\ +\xec\xfc\xf9\xb7\xf6\xf6\xf6\x8b\xd8\xd9\x4d\xb4\xce\xa2\x82\xa8\ +\x25\x14\x83\x22\xf0\xbc\xb0\x58\xcd\xaf\x38\x7b\x1c\x93\x5b\x3e\ +\xfe\x88\x68\xd6\x68\x88\x4e\xaf\x23\x46\xa3\x91\x0c\x0e\x0e\xf0\ +\x7b\x9a\xf6\xf4\xa2\xa5\x10\x25\x7c\xe1\x62\x9e\x3d\xdb\xf6\x5a\ +\x36\x17\x14\x16\x9c\x75\x76\xf7\xe4\xcc\xcd\x3d\x04\x11\x2d\x82\ +\x55\xb2\x55\xb0\x73\xe7\x0e\x5c\x12\xb9\x6a\xdf\x6f\xaf\x45\xdf\ +\x0c\x24\x11\x2b\xa3\xa0\xcd\x96\x26\x8b\x22\x47\x71\xf0\xe4\xc9\ +\x2e\x51\x30\x10\x02\x01\x6e\x9e\x63\x39\xd0\xbd\xae\x03\x85\x42\ +\x71\xbf\xbe\x6e\x97\xed\xe9\xaf\x27\x19\x22\xa5\x32\x57\xf2\xf5\ +\x37\x5f\x76\xac\xce\x55\xd6\x4d\x4d\x4d\x61\x87\x32\x48\xc4\x13\ +\x10\x8b\xc5\x70\x51\x6a\x78\xbf\xd2\x14\xb2\x5a\x6c\x7b\xd1\x7b\ +\x0b\x45\x92\x05\x0b\x2c\x36\xf3\x3e\x96\xe3\xb7\x76\x3b\x9c\xfb\ +\xc3\xe1\xf0\x27\x5b\x3f\xad\x99\x5f\xbe\x97\xf8\xc2\x70\x04\xdb\ +\xe3\x27\xda\xbe\x3f\x8c\xf9\x4b\xe8\xe5\x20\x95\x70\x38\x4f\x7b\ +\x2b\x2a\x36\x0e\xe3\x51\x8e\xa2\xda\x4e\xb4\x7e\xb5\xab\xa1\x9e\ +\xfc\xd4\xf1\x23\x67\x34\x1a\x3a\x30\x97\x0d\x69\x84\x40\x22\x96\ +\x44\x95\x79\x79\xb9\x78\x5e\x96\x30\xce\x30\xab\x4b\x4b\xf5\xe4\ +\xf2\xc8\x88\xeb\xca\x95\xd1\x23\x98\x8b\xa4\x03\x16\x45\xa3\xd1\ +\x5f\x6a\x6a\xaa\x1d\x1a\x8d\xfa\x34\x25\xa0\x1e\xe2\x8c\xab\x47\ +\x46\x2e\x0f\xb8\x5c\x17\xad\x58\x7f\x0c\x69\x06\x85\x12\x1c\x3a\ +\x72\x70\x07\xc3\x24\xea\x70\x61\xd4\xed\x49\x6f\xff\x90\x67\xb8\ +\x1b\xf3\x3e\x14\x49\x17\xfc\x1f\x0d\x85\x8c\x2f\xad\xa0\x3f\x12\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ " -qt_resource_name = "\ -\x00\x05\ -\x00\x6f\xa6\x53\ -\x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x73\ +qt_resource_name = b"\ \x00\x07\ \x0b\x66\x28\x62\ \x00\x74\ @@ -1385,28 +1381,38 @@ qt_resource_name = "\ \x0c\xbb\x0b\xc3\ \x00\x73\ \x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\ -\x00\x12\ -\x0f\x06\xcc\xa7\ -\x00\x68\ -\x00\x69\x00\x67\x00\x68\x00\x6c\x00\x69\x00\x67\x00\x68\x00\x74\x00\x2d\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\ -\x00\x67\ +\x00\x05\ +\x00\x6f\xa6\x53\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x13\ +\x06\x7d\xe1\x87\ +\x00\x63\ +\x00\x6f\x00\x6c\x00\x6f\x00\x75\x00\x72\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x2d\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\ +\x00\x6e\x00\x67\ +\x00\x13\ +\x06\x7d\xf9\x5f\ +\x00\x63\ +\x00\x6f\x00\x6c\x00\x6f\x00\x75\x00\x72\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x2d\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x69\ +\x00\x63\x00\x6f\ \x00\x15\ \x01\x39\xc4\x47\ \x00\x68\ \x00\x69\x00\x67\x00\x68\x00\x6c\x00\x69\x00\x67\x00\x68\x00\x74\x00\x2d\x00\x64\x00\x69\x00\x73\x00\x63\x00\x61\x00\x72\x00\x64\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0b\ -\x04\x2b\x8e\x47\ -\x00\x6d\ -\x00\x6f\x00\x76\x00\x65\x00\x2d\x00\x75\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x0e\x38\x51\xe7\ \x00\x6d\ \x00\x6f\x00\x76\x00\x65\x00\x2d\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x12\ -\x0c\xc9\xc2\xe7\ +\x00\x11\ +\x03\xe7\x4e\xe7\ \x00\x68\ -\x00\x69\x00\x67\x00\x68\x00\x6c\x00\x69\x00\x67\x00\x68\x00\x74\x00\x2d\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\ +\x00\x69\x00\x67\x00\x68\x00\x6c\x00\x69\x00\x67\x00\x68\x00\x74\x00\x2d\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x12\ +\x0f\x06\xcc\xa7\ +\x00\x68\ +\x00\x69\x00\x67\x00\x68\x00\x6c\x00\x69\x00\x67\x00\x68\x00\x74\x00\x2d\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x14\ \x0d\x3f\xb7\x07\ @@ -1418,89 +1424,139 @@ qt_resource_name = "\ \x00\x68\ \x00\x69\x00\x67\x00\x68\x00\x6c\x00\x69\x00\x67\x00\x68\x00\x74\x00\x2d\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ -\x00\x11\ -\x03\xe7\x4e\xe7\ +\x00\x0b\ +\x04\x2b\x8e\x47\ +\x00\x6d\ +\x00\x6f\x00\x76\x00\x65\x00\x2d\x00\x75\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x12\ +\x0c\xc9\xc2\xe7\ \x00\x68\ -\x00\x69\x00\x67\x00\x68\x00\x6c\x00\x69\x00\x67\x00\x68\x00\x74\x00\x2d\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\ -\x00\x08\ -\x00\x47\x5a\xe7\ -\x00\x66\ -\x00\x69\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x13\ -\x04\xc4\x04\x47\ -\x00\x6e\ -\x00\x65\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x2d\x00\x63\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\x00\x2e\x00\x70\ -\x00\x6e\x00\x67\ +\x00\x69\x00\x67\x00\x68\x00\x6c\x00\x69\x00\x67\x00\x68\x00\x74\x00\x2d\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\ +\x00\x67\ \x00\x11\ \x0b\x32\x02\xe7\ \x00\x66\ \x00\x6f\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x2d\x00\x6f\x00\x75\x00\x74\x00\x70\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ -\x00\x0d\ -\x08\x51\xc9\x27\ -\x00\x63\ -\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x07\x40\xa2\xc7\ \x00\x61\ \x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2d\x00\x65\x00\x78\x00\x69\x00\x74\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ -\x00\x09\ -\x0b\x85\x83\x07\ -\x00\x63\ -\x00\x6c\x00\x65\x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x00\x47\x5a\xe7\ +\x00\x66\ +\x00\x69\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x03\x0a\xf6\xe7\ \x00\x6e\ \x00\x65\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x2d\x00\x64\x00\x69\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\ \x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x09\ +\x0b\x85\x83\x07\ +\x00\x63\ +\x00\x6c\x00\x65\x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x13\ \x0e\x17\x61\x67\ \x00\x63\ \x00\x61\x00\x70\x00\x74\x00\x75\x00\x72\x00\x65\x00\x2d\x00\x74\x00\x6f\x00\x2d\x00\x64\x00\x69\x00\x73\x00\x6b\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x13\ -\x06\x7d\xe1\x87\ -\x00\x63\ -\x00\x6f\x00\x6c\x00\x6f\x00\x75\x00\x72\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x2d\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\ +\x04\xc4\x04\x47\ +\x00\x6e\ +\x00\x65\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x2d\x00\x63\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ -\x00\x13\ -\x06\x7d\xf9\x5f\ +\x00\x0d\ +\x08\x51\xc9\x27\ \x00\x63\ -\x00\x6f\x00\x6c\x00\x6f\x00\x75\x00\x72\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x2d\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x69\ -\x00\x63\x00\x6f\ +\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ " -qt_resource_struct = "\ +qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x15\ -\x00\x00\x00\x10\x00\x02\x00\x00\x00\x09\x00\x00\x00\x0c\ -\x00\x00\x00\x24\x00\x02\x00\x00\x00\x08\x00\x00\x00\x04\ -\x00\x00\x00\x64\x00\x00\x00\x00\x00\x01\x00\x00\x02\xda\ -\x00\x00\x01\x56\x00\x00\x00\x00\x00\x01\x00\x00\x11\x72\ -\x00\x00\x00\x94\x00\x00\x00\x00\x00\x01\x00\x00\x06\x2e\ -\x00\x00\x01\x28\x00\x00\x00\x00\x00\x01\x00\x00\x10\x22\ -\x00\x00\x00\xd0\x00\x00\x00\x00\x00\x01\x00\x00\x0b\x45\ -\x00\x00\x00\xfa\x00\x00\x00\x00\x00\x01\x00\x00\x0d\x9e\ -\x00\x00\x00\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x08\xd2\ +\x00\x00\x00\x2a\x00\x02\x00\x00\x00\x02\x00\x00\x00\x15\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x09\x00\x00\x00\x0c\ +\x00\x00\x00\x14\x00\x02\x00\x00\x00\x08\x00\x00\x00\x04\ +\x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x00\x1c\x8d\ +\x00\x00\x00\xe2\x00\x00\x00\x00\x00\x01\x00\x00\x22\x54\ +\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x00\x2b\x3a\ +\x00\x00\x01\x62\x00\x00\x00\x00\x00\x01\x00\x00\x29\xea\ +\x00\x00\x01\xac\x00\x00\x00\x00\x00\x01\x00\x00\x2d\xde\ +\x00\x00\x01\x34\x00\x00\x00\x00\x00\x01\x00\x00\x27\x66\ +\x00\x00\x00\xc2\x00\x00\x00\x00\x00\x01\x00\x00\x1f\xe1\ +\x00\x00\x01\x0a\x00\x00\x00\x00\x00\x01\x00\x00\x24\x8c\ +\x00\x00\x02\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x38\x5c\ +\x00\x00\x02\x42\x00\x00\x00\x00\x00\x01\x00\x00\x3b\xc7\ +\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x00\x43\xbb\ +\x00\x00\x02\xb8\x00\x00\x00\x00\x00\x01\x00\x00\x49\xc4\ +\x00\x00\x01\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x33\xea\ +\x00\x00\x02\xe4\x00\x00\x00\x00\x00\x01\x00\x00\x4e\x41\ +\x00\x00\x01\xd6\x00\x00\x00\x00\x00\x01\x00\x00\x30\x37\ +\x00\x00\x02\x74\x00\x00\x00\x00\x00\x01\x00\x00\x3e\xc3\ +\x00\x00\x02\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x46\x5f\ \x00\x00\x00\x3a\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x01\x7e\x00\x00\x00\x00\x00\x01\x00\x00\x13\xaa\ -\x00\x00\x02\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x2f\xa4\ -\x00\x00\x00\x94\x00\x00\x00\x00\x00\x01\x00\x00\x1f\x45\ -\x00\x00\x01\x94\x00\x00\x00\x00\x00\x01\x00\x00\x17\x15\ -\x00\x00\x02\x08\x00\x00\x00\x00\x00\x01\x00\x00\x26\x3a\ -\x00\x00\x01\xe8\x00\x00\x00\x00\x00\x01\x00\x00\x21\xe9\ -\x00\x00\x01\xc0\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x92\ -\x00\x00\x02\x36\x00\x00\x00\x00\x00\x01\x00\x00\x2a\xac\ -\x00\x00\x02\x80\x00\x00\x00\x00\x00\x01\x00\x00\x32\xa0\ -\x00\x00\x02\xac\x00\x00\x00\x00\x00\x01\x00\x00\x36\x05\ -\x00\x00\x02\xd8\x00\x01\x00\x00\x00\x01\x00\x00\x37\xb4\ +\x00\x00\x00\x66\x00\x01\x00\x00\x00\x01\x00\x00\x01\xaf\ " +qt_resource_struct_v2 = b"\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x2a\x00\x02\x00\x00\x00\x02\x00\x00\x00\x15\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x09\x00\x00\x00\x0c\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x14\x00\x02\x00\x00\x00\x08\x00\x00\x00\x04\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x00\x1c\x8d\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x00\xe2\x00\x00\x00\x00\x00\x01\x00\x00\x22\x54\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x00\x2b\x3a\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x01\x62\x00\x00\x00\x00\x00\x01\x00\x00\x29\xea\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x01\xac\x00\x00\x00\x00\x00\x01\x00\x00\x2d\xde\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x01\x34\x00\x00\x00\x00\x00\x01\x00\x00\x27\x66\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x00\xc2\x00\x00\x00\x00\x00\x01\x00\x00\x1f\xe1\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x01\x0a\x00\x00\x00\x00\x00\x01\x00\x00\x24\x8c\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x02\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x38\x5c\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x02\x42\x00\x00\x00\x00\x00\x01\x00\x00\x3b\xc7\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x00\x43\xbb\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x02\xb8\x00\x00\x00\x00\x00\x01\x00\x00\x49\xc4\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x01\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x33\xea\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x02\xe4\x00\x00\x00\x00\x00\x01\x00\x00\x4e\x41\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x01\xd6\x00\x00\x00\x00\x00\x01\x00\x00\x30\x37\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x02\x74\x00\x00\x00\x00\x00\x01\x00\x00\x3e\xc3\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x02\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x46\x5f\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x00\x3a\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +\x00\x00\x00\x66\x00\x01\x00\x00\x00\x01\x00\x00\x01\xaf\ +\x00\x00\x01\x64\xca\xb9\x77\x97\ +" + +qt_version = [int(v) for v in QtCore.qVersion().split('.')] +if qt_version < [5, 8, 0]: + rcc_version = 1 + qt_resource_struct = qt_resource_struct_v1 +else: + rcc_version = 2 + qt_resource_struct = qt_resource_struct_v2 + def init_resources(): - QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) def cleanup_resources(): - QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) - + QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) diff --git a/colourterm/settingsdialog.py b/colourterm/settingsdialog.py index 26ad500..7c2df00 100644 --- a/colourterm/settingsdialog.py +++ b/colourterm/settingsdialog.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from PyQt4 import QtCore, QtGui +from PyQt5 import QtCore, QtGui, QtWidgets from colourterm import Highlight, from_utf8, translate @@ -43,15 +43,15 @@ class UiSettingsDialog(object): def setup_ui(self, settings_dialog): settings_dialog.setObjectName(from_utf8('SettingsDialog')) settings_dialog.resize(587, 390) - self.settings_layout = QtGui.QVBoxLayout(settings_dialog) + self.settings_layout = QtWidgets.QVBoxLayout(settings_dialog) self.settings_layout.setSpacing(8) - self.settings_layout.setMargin(8) + self.settings_layout.setContentsMargins(8, 8, 8, 8) self.settings_layout.setObjectName(from_utf8('settings_layout')) - self.splitter = QtGui.QSplitter(settings_dialog) + self.splitter = QtWidgets.QSplitter(settings_dialog) self.splitter.setOrientation(QtCore.Qt.Horizontal) self.splitter.setObjectName(from_utf8('splitter')) - self.section_list_widget = QtGui.QListWidget(self.splitter) - size_policy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Expanding) + self.section_list_widget = QtWidgets.QListWidget(self.splitter) + size_policy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding) size_policy.setHorizontalStretch(0) size_policy.setVerticalStretch(0) size_policy.setHeightForWidth(self.section_list_widget.sizePolicy().hasHeightForWidth()) @@ -59,120 +59,122 @@ class UiSettingsDialog(object): self.section_list_widget.setMinimumSize(QtCore.QSize(100, 0)) self.section_list_widget.setMaximumSize(QtCore.QSize(200, 16777215)) self.section_list_widget.setObjectName(from_utf8('section_list_widget')) - item = QtGui.QListWidgetItem() + item = QtWidgets.QListWidgetItem() self.section_list_widget.addItem(item) - item = QtGui.QListWidgetItem() + item = QtWidgets.QListWidgetItem() self.section_list_widget.addItem(item) - self.section_stacked_widget = QtGui.QStackedWidget(self.splitter) - size_policy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Preferred) + self.section_stacked_widget = QtWidgets.QStackedWidget(self.splitter) + size_policy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) size_policy.setHorizontalStretch(0) size_policy.setVerticalStretch(0) size_policy.setHeightForWidth(self.section_stacked_widget.sizePolicy().hasHeightForWidth()) self.section_stacked_widget.setSizePolicy(size_policy) self.section_stacked_widget.setObjectName(from_utf8('section_stacked_widget')) - self.highlight_page = QtGui.QWidget() + self.highlight_page = QtWidgets.QWidget() self.highlight_page.setObjectName(from_utf8('highlight_page')) - self.vertical_layout = QtGui.QVBoxLayout(self.highlight_page) + self.vertical_layout = QtWidgets.QVBoxLayout(self.highlight_page) self.vertical_layout.setObjectName(from_utf8('vertical_layout')) - self.highlight_list_widget = QtGui.QListWidget(self.highlight_page) + self.highlight_list_widget = QtWidgets.QListWidget(self.highlight_page) self.highlight_list_widget.setObjectName(from_utf8('highlight_list_widget')) self.vertical_layout.addWidget(self.highlight_list_widget) - self.button_layout = QtGui.QHBoxLayout() + self.button_layout = QtWidgets.QHBoxLayout() self.button_layout.setSpacing(8) self.button_layout.setContentsMargins(0, -1, -1, -1) self.button_layout.setObjectName(from_utf8('button_layout')) - self.up_button = QtGui.QToolButton(self.highlight_page) + self.up_button = QtWidgets.QToolButton(self.highlight_page) self.up_button.setIcon(QtGui.QIcon(':/settings/move-up.png')) self.up_button.setToolButtonStyle(QtCore.Qt.ToolButtonIconOnly) self.up_button.setFocusPolicy(QtCore.Qt.NoFocus) self.up_button.setObjectName(from_utf8('up_button')) self.button_layout.addWidget(self.up_button) - self.down_button = QtGui.QToolButton(self.highlight_page) + self.down_button = QtWidgets.QToolButton(self.highlight_page) self.down_button.setIcon(QtGui.QIcon(':/settings/move-down.png')) self.down_button.setToolButtonStyle(QtCore.Qt.ToolButtonIconOnly) self.down_button.setFocusPolicy(QtCore.Qt.NoFocus) self.down_button.setObjectName(from_utf8('down_button')) self.button_layout.addWidget(self.down_button) - self.button_layout.addItem(QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)) - self.add_button = QtGui.QPushButton(self.highlight_page) + self.button_layout.addItem(QtWidgets.QSpacerItem(40, 20, + QtWidgets.QSizePolicy.Expanding, + QtWidgets.QSizePolicy.Minimum)) + self.add_button = QtWidgets.QPushButton(self.highlight_page) self.add_button.setIcon(QtGui.QIcon(':/settings/highlight-add.png')) self.add_button.setObjectName(from_utf8('add_button')) self.button_layout.addWidget(self.add_button) - self.edit_button = QtGui.QPushButton(self.highlight_page) + self.edit_button = QtWidgets.QPushButton(self.highlight_page) self.edit_button.setIcon(QtGui.QIcon(':/settings/highlight-edit.png')) self.edit_button.setObjectName(from_utf8('edit_button')) self.button_layout.addWidget(self.edit_button) - self.delete_button = QtGui.QPushButton(self.highlight_page) + self.delete_button = QtWidgets.QPushButton(self.highlight_page) self.delete_button.setIcon(QtGui.QIcon(':/settings/highlight-remove.png')) self.delete_button.setObjectName(from_utf8('delete_button')) self.button_layout.addWidget(self.delete_button) - self.save_button = QtGui.QPushButton(self.highlight_page) + self.save_button = QtWidgets.QPushButton(self.highlight_page) self.save_button.setIcon(QtGui.QIcon(':/settings/highlight-save.png')) self.save_button.setObjectName(from_utf8('save_button')) self.save_button.setVisible(False) self.button_layout.addWidget(self.save_button) - self.discard_button = QtGui.QPushButton(self.highlight_page) + self.discard_button = QtWidgets.QPushButton(self.highlight_page) self.discard_button.setIcon(QtGui.QIcon(':/settings/highlight-discard.png')) self.discard_button.setObjectName(from_utf8('discard_button')) self.discard_button.setVisible(False) self.button_layout.addWidget(self.discard_button) self.vertical_layout.addLayout(self.button_layout) - self.highlight_groupbox = QtGui.QGroupBox(self.highlight_page) + self.highlight_groupbox = QtWidgets.QGroupBox(self.highlight_page) self.highlight_groupbox.setObjectName(from_utf8('highlight_groupbox')) - self.highlight_layout = QtGui.QFormLayout(self.highlight_groupbox) - self.highlight_layout.setMargin(8) + self.highlight_layout = QtWidgets.QFormLayout(self.highlight_groupbox) + self.highlight_layout.setContentsMargins(8, 8, 8, 8) self.highlight_layout.setSpacing(8) self.highlight_layout.setObjectName(from_utf8('highlight_layout')) - self.regex_label = QtGui.QLabel(self.highlight_groupbox) + self.regex_label = QtWidgets.QLabel(self.highlight_groupbox) self.regex_label.setObjectName(from_utf8('regex_label')) - self.highlight_layout.setWidget(0, QtGui.QFormLayout.LabelRole, self.regex_label) - self.regex_edit = QtGui.QLineEdit(self.highlight_groupbox) + self.highlight_layout.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.regex_label) + self.regex_edit = QtWidgets.QLineEdit(self.highlight_groupbox) self.regex_edit.setObjectName(from_utf8('regex_edit')) - self.highlight_layout.setWidget(0, QtGui.QFormLayout.FieldRole, self.regex_edit) - self.foreground_label = QtGui.QLabel(self.highlight_groupbox) + self.highlight_layout.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.regex_edit) + self.foreground_label = QtWidgets.QLabel(self.highlight_groupbox) self.foreground_label.setObjectName(from_utf8('foreground_label')) - self.highlight_layout.setWidget(1, QtGui.QFormLayout.LabelRole, self.foreground_label) - self.fg_colour_button = QtGui.QPushButton(self.highlight_groupbox) + self.highlight_layout.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.foreground_label) + self.fg_colour_button = QtWidgets.QPushButton(self.highlight_groupbox) self.fg_colour_button.setText(from_utf8('')) self.fg_colour_button.setObjectName(from_utf8('fg_colour_button')) - self.highlight_layout.setWidget(1, QtGui.QFormLayout.FieldRole, self.fg_colour_button) - self.background_checkbox = QtGui.QCheckBox(self.highlight_groupbox) + self.highlight_layout.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.fg_colour_button) + self.background_checkbox = QtWidgets.QCheckBox(self.highlight_groupbox) self.background_checkbox.setObjectName(from_utf8('background_checkbox')) - self.highlight_layout.setWidget(2, QtGui.QFormLayout.LabelRole, self.background_checkbox) - self.bg_colour_button = QtGui.QPushButton(self.highlight_groupbox) + self.highlight_layout.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.background_checkbox) + self.bg_colour_button = QtWidgets.QPushButton(self.highlight_groupbox) self.bg_colour_button.setText(from_utf8('')) self.bg_colour_button.setObjectName(from_utf8('bg_colour_button')) - self.highlight_layout.setWidget(2, QtGui.QFormLayout.FieldRole, self.bg_colour_button) + self.highlight_layout.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.bg_colour_button) self.vertical_layout.addWidget(self.highlight_groupbox) self.section_stacked_widget.addWidget(self.highlight_page) - self.font_page = QtGui.QWidget() + self.font_page = QtWidgets.QWidget() self.font_page.setObjectName(from_utf8('font_page')) - self.font_layout = QtGui.QFormLayout(self.font_page) - self.font_layout.setMargin(8) + self.font_layout = QtWidgets.QFormLayout(self.font_page) + self.font_layout.setContentsMargins(8, 8, 8, 8) self.font_layout.setSpacing(8) self.font_layout.setObjectName(from_utf8('font_layout')) - self.font_label = QtGui.QLabel(self.font_page) + self.font_label = QtWidgets.QLabel(self.font_page) self.font_label.setObjectName(from_utf8('font_label')) - self.font_layout.setWidget(0, QtGui.QFormLayout.LabelRole, self.font_label) - self.font_combobox = QtGui.QFontComboBox(self.font_page) + self.font_layout.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.font_label) + self.font_combobox = QtWidgets.QFontComboBox(self.font_page) self.font_combobox.setObjectName(from_utf8('font_combobox')) - self.font_layout.setWidget(0, QtGui.QFormLayout.FieldRole, self.font_combobox) - self.size_label = QtGui.QLabel(self.font_page) + self.font_layout.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.font_combobox) + self.size_label = QtWidgets.QLabel(self.font_page) self.size_label.setObjectName(from_utf8('size_label')) - self.font_layout.setWidget(1, QtGui.QFormLayout.LabelRole, self.size_label) - self.size_spinbox = QtGui.QSpinBox(self.font_page) + self.font_layout.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.size_label) + self.size_spinbox = QtWidgets.QSpinBox(self.font_page) self.size_spinbox.setReadOnly(True) self.size_spinbox.setSpecialValueText(from_utf8('')) self.size_spinbox.setMinimum(6) self.size_spinbox.setMaximum(50) self.size_spinbox.setProperty('value', 12) self.size_spinbox.setObjectName(from_utf8('size_spinbox')) - self.font_layout.setWidget(1, QtGui.QFormLayout.FieldRole, self.size_spinbox) + self.font_layout.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.size_spinbox) self.section_stacked_widget.addWidget(self.font_page) self.settings_layout.addWidget(self.splitter) - self.button_box = QtGui.QDialogButtonBox(settings_dialog) + self.button_box = QtWidgets.QDialogButtonBox(settings_dialog) self.button_box.setOrientation(QtCore.Qt.Horizontal) - self.button_box.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) + self.button_box.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel | QtWidgets.QDialogButtonBox.Ok) self.button_box.setObjectName(from_utf8('button_box')) self.settings_layout.addWidget(self.button_box) @@ -216,10 +218,10 @@ class UiSettingsDialog(object): self.size_spinbox.setSuffix(translate('SettingsDialog', 'pt')) -class SettingsDialog(QtGui.QDialog, UiSettingsDialog): +class SettingsDialog(QtWidgets.QDialog, UiSettingsDialog): def __init__(self): - QtGui.QDialog.__init__(self) + QtWidgets.QDialog.__init__(self) self.setup_ui(self) self._highlights = {} self._current_highlight = None @@ -258,10 +260,10 @@ class SettingsDialog(QtGui.QDialog, UiSettingsDialog): self.highlight_list_widget.clear() for index, highlight in enumerate(highlights): self._highlights[index] = highlight - item = QtGui.QListWidgetItem() + item = QtWidgets.QListWidgetItem() if highlight.background: - item.setBackgroundColor(QtGui.QColor(highlight.background)) - item.setTextColor(QtGui.QColor(highlight.foreground)) + item.setBackground(QtGui.QBrush(QtGui.QColor(highlight.background))) + item.setForeground(QtGui.QBrush(QtGui.QColor(highlight.foreground))) item.setText(highlight.pattern) self.highlight_list_widget.addItem(item) @@ -271,7 +273,7 @@ class SettingsDialog(QtGui.QDialog, UiSettingsDialog): self._current_highlight = self._highlights[self._current_row] def on_regex_edit_text_edited(self): - self._current_highlight.set_pattern(unicode(self.regex_edit.text())) + self._current_highlight.set_pattern(self.regex_edit.text()) def on_background_checkbox_toggled(self, checked): self.bg_colour_button.setEnabled(checked) @@ -279,18 +281,18 @@ class SettingsDialog(QtGui.QDialog, UiSettingsDialog): self._current_highlight.background = None def on_fg_colour_button_clicked(self): - colour = QtGui.QColor(self._current_highlight.foreground) - colour = QtGui.QColorDialog.getColor(colour, self) + colour = QtWidgets.QColor(self._current_highlight.foreground) + colour = QtWidgets.QColorDialog.getColor(colour, self) if colour.isValid(): self.fg_colour_button.setStyleSheet('background-color: %s' % colour.name()) self._current_highlight.foreground = colour.name() def on_bg_colour_button_clicked(self): if self._current_highlight.background: - colour = QtGui.QColor(self._current_highlight.background) - colour = QtGui.QColorDialog.getColor(colour, self) + colour = QtWidgets.QColor(self._current_highlight.background) + colour = QtWidgets.QColorDialog.getColor(colour, self) else: - colour = QtGui.QColorDialog.getColor(QtCore.Qt.white, self) + colour = QtWidgets.QColorDialog.getColor(QtCore.Qt.white, self) if colour.isValid(): self.bg_colour_button.setStyleSheet('background-color: %s' % colour.name()) self._current_highlight.background = colour.name() @@ -319,7 +321,7 @@ class SettingsDialog(QtGui.QDialog, UiSettingsDialog): def on_add_button_clicked(self): self._current_row = -1 - self._current_highlight = Highlight(u'', QtGui.QColor(QtGui.QPalette.WindowText).name()) + self._current_highlight = Highlight(u'', QtWidgets.QColor(QtWidgets.QPalette.WindowText).name()) self._set_current_highlight() self.set_edit_mode(True) @@ -328,9 +330,11 @@ class SettingsDialog(QtGui.QDialog, UiSettingsDialog): self.set_edit_mode(True) def on_delete_button_clicked(self): - if QtGui.QMessageBox.question(self, translate('SettingsDialog', 'Confirm Delete'), - translate('SettingsDialog', 'Are you sure you want to delete this highlight?'), - QtGui.QMessageBox.Yes | QtGui.QMessageBox.No) == QtGui.QMessageBox.Yes: + if QtWidgets.QMessageBox.question(self, translate('SettingsDialog', 'Confirm Delete'), + translate('SettingsDialog', + 'Are you sure you want to delete this highlight?'), + QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No) == \ + QtWidgets.QMessageBox.Yes: del self._highlights[self._current_row] self.highlight_list_widget.takeItem(self._current_row) self._current_row = -1 @@ -340,10 +344,10 @@ class SettingsDialog(QtGui.QDialog, UiSettingsDialog): if self._current_row < 0: new_index = len(self._highlights) self._highlights[new_index] = self._current_highlight - item = QtGui.QListWidgetItem() + item = QtWidgets.QListWidgetItem() if self._current_highlight.background: - item.setBackgroundColor(QtGui.QColor(self._current_highlight.background)) - item.setTextColor(QtGui.QColor(self._current_highlight.foreground)) + item.setBackgroundColor(QtWidgets.QColor(self._current_highlight.background)) + item.setTextColor(QtWidgets.QColor(self._current_highlight.foreground)) item.setText(self._current_highlight.pattern) self.highlight_list_widget.addItem(item) self.highlight_list_widget.setCurrentRow(new_index)