[
  {
    "path": ".gitignore",
    "content": "*.pyc\n.idea\nBriarIDS.iml\nbriar.egg-info/\ndist/\nbuild/\n/untitled\n\n"
  },
  {
    "path": "LICENSE.txt",
    "content": "MIT License\n\nCopyright (c) 2017 BriarIDS Robbie C\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# BriarIDS\n\nCheck out the new Donors page!  I huge thanks to all those who support BriarIDS: [**Donors**](https://github.com/g3tsyst3m/BriarIDS/wiki/Donors)<br>\n* Also be sure to check out the [**WIKI**](https://github.com/g3tsyst3m/BriarIDS/wiki) for detailed instructions, demo videos, etc.  I've updated it with plenty of useful information. *\n\nThank you all for the donations received in the last year.  I do truly appreciate your support!\n\nIf BriarIDS is used for educational purposes in the classroom setting (ie. Network Security courses, etc) please send me some feedback if you don't mind, letting me know how it cooperated.  Thanks!\nHere's my email: g3tsyst3m@gmail.com\n\n## Introduction\n\nA simple yet effective IDS for the Raspberry PI.  BriarIDS is configured to work with Raspbian and takes advantage of the PyQT GUI frontend for an all-in-one solution that monitors your home network.  Bro is now integrated into the BriarIDS GUI for additional logging options.  Snorby is still a work in progress concerning an automated installation.  Will post progress notes on Wordpress site periodically.  \n\n<img src=\"https://github.com/g3tsyst3m/BriarIDS/blob/master/images/Briar.PNG?raw=true\" style=\"float:right\">\n\n## Why the name BriarIDS?\n\nIt's kinda cheesy.  The name comes from the protection Briars and Brambles (Raspberry bushes) give to rabbits when under attack.  \n## So how's it different from other IDS solutions?\n\nIt's not really.  The key difference is how it's setup.  This is a home network based IDS solution using Suricata that primarily monitors WAN traffic (LAN too if you wanted).  I looked all over the web for a SIMPLE home-based IDS using the PI and getting a network TAP working; I didn't have much luck.  I'll reemphasize that there were Raspberry PI solutions out there, some that were quite amazing.  They just weren't very agreeable with home network-based configurations.  I just wanted a simple command-line solution that's cooperative in a few minutes upon installation.  Snorby and SGUIL and all the other GUI frontends are always awesome secondary add-ons and those will be integrated into BriarIDS shortly.  For now, I just want to provide a simple working IDS that is fairly straight forward and user friendly.\n\n## Why the Raspberry Pi?\n\nSince I wanted to provide the most cost effective and feasible solution for homeowners to protect their network, I knew a Raspberry PI would fit the bill assuming it cooperated.  A PI will run you roughly $40-$60 with a decent SDcard purchased along with it. Next, as we all know, you need a tap interface or some way to get packets into your monitoring interface.  While there are other somewhat reasonably priced solutions out there, I decided to take advantage of what I already had to work with at the house.  That's where Tomato Router firmware comes in.  The IPTables --tee functionality did the job and copied all my WAN packets over to the Raspberry Device with ease.  Once things began cooperating I wanted to share this solution with everyone.  I know I can't be the only one out there who desires to have an easy and affordable solution for their home network security perimeter.\n\n## What PI OS(es) does it run on (that you have personally tested)?\n\nRaspbian, DietPI\n\n## Can this be ported to other OSes?\n\nYes.  You may need to adjust some of the apt packages depending on the Linux flavor you are using.  I've installed it successfully on Kali Linux (Debian 4.8.15-1kali1 (2016-12-23) x86_64 GNU/Linux). Try it out in a VM running the latest Debian or Ubuntu.  It should cooperate with the exception of the critical-stack agent and libssl.  You will want to download the Intel x86/x64 .deb file versus the .arm deb file currently set to download in the script.  As for ssl, bro-2.5 only currently supports libssl1.0-dev so make sure you have that installed if installing on Kali Linux or other new repos.\n\n## What Router(s) have you tested this with?\n\nJust the Linksys E1200v2 thus far\n\n## What Tomato firmware version are you using?\n\ntomato-E1200v2-NVRAM64K-1.28.RT-N5x-MIPSR2-132-Max.bin\n\n## I have more questions...\n\nI hoped you would.  Check out the wiki and let me know what needs to be added.\n"
  },
  {
    "path": "Vtotalcheck.py",
    "content": "#!/usr/bin/env python\nimport hashlib, httplib, mimetypes, os, pprint, simplejson, sys, urlparse\n\nDEFAULT_TYPE = 'application/octet-stream'\n\nREPORT_URL = 'https://www.virustotal.com/api/get_file_report.json'\nSCAN_URL = 'https://www.virustotal.com/api/scan_file.json'\n\ncapturedkey = open('/opt/suricata/etc/suricata/Vtotalapi.key', 'r').read()\nAPI_KEY = capturedkey.rstrip()\n#print API_KEY\n\n# The following function is modified from the snippet at:\n# http://code.activestate.com/recipes/146306/\ndef encode_multipart_formdata(fields, files=()):\n    \"\"\"\n    fields is a dictionary of name to value for regular form fields.\n    files is a sequence of (name, filename, value) elements for data to be\n    uploaded as files.\n    Return (content_type, body) ready for httplib.HTTP instance\n    \"\"\"\n    BOUNDARY = '----------ThIs_Is_tHe_bouNdaRY_$'\n    CRLF = '\\r\\n'\n    L = []\n    for key, value in fields.items():\n        L.append('--' + BOUNDARY)\n        L.append('Content-Disposition: form-data; name=\"%s\"' % key)\n        L.append('')\n        L.append(value)\n    for (key, filename, value) in files:\n        L.append('--' + BOUNDARY)\n        L.append('Content-Disposition: form-data; name=\"%s\"; filename=\"%s\"' %\n                 (key, filename))\n        content_type = mimetypes.guess_type(filename)[0] or DEFAULT_TYPE\n        L.append('Content-Type: %s' % content_type)\n        L.append('')\n        L.append(value)\n    L.append('--' + BOUNDARY + '--')\n    L.append('')\n    body = CRLF.join(L)\n    content_type = 'multipart/form-data; boundary=%s' % BOUNDARY\n    return content_type, body\n\ndef post_multipart(url, fields, files=()):\n    \"\"\"\n    url is the full to send the post request to.\n    fields is a dictionary of name to value for regular form fields.\n    files is a sequence of (name, filename, value) elements for data to be\n    uploaded as files.\n    Return body of http response.\n    \"\"\"\n    content_type, data = encode_multipart_formdata(fields, files)\n    url_parts = urlparse.urlparse(url)\n    if url_parts.scheme == 'http':\n        h = httplib.HTTPConnection(url_parts.netloc)\n    elif url_parts.scheme == 'https':\n        h = httplib.HTTPSConnection(url_parts.netloc)\n    else:\n        raise Exception('Unsupported URL scheme')\n    path = urlparse.urlunparse(('', '') + url_parts[2:])\n    h.request('POST', path, data, {'content-type':content_type})\n    return h.getresponse().read()\n\ndef scan_file(filename):\n    files = [('file', filename, open(filename, 'rb').read())]\n    json = post_multipart(SCAN_URL, {'key':API_KEY}, files)\n    return simplejson.loads(json)\n\ndef get_report(filename):\n    md5sum = hashlib.md5(open(filename, 'rb').read()).hexdigest()\n    json = post_multipart(REPORT_URL, {'resource':md5sum, 'key':API_KEY})\n    data = simplejson.loads(json)\n    if data['result'] != 1:\n        print 'Result not found, submitting file.'\n        data = scan_file(filename)\n        if data['result'] == 1:\n            print 'Submit successful.'\n            print 'Please wait a few minutes and try again to receive report.'\n        else:\n            print 'Submit failed.'\n            pprint.pprint(data)\n    else:\n        pprint.pprint(data['report'])\n\n\nif __name__ == '__main__':\n    if len(sys.argv) != 2:\n        print 'Usage: %s filename' % sys.argv[0]\n        sys.exit(1)\n\n    filename = sys.argv[1]\n    if not os.path.isfile(filename):\n        print '%s is not a valid file' % filename\n        sys.exit(1)\n\n    get_report(filename)\n\n"
  },
  {
    "path": "__init__.py",
    "content": ""
  },
  {
    "path": "briarids/__init__.py",
    "content": ""
  },
  {
    "path": "briarids/briar_ids.py",
    "content": "\"\"\"BriarIDS main module\r\n\r\nCreates main class and makes sure it only runs on command line.\r\n\r\n\"\"\"\r\n\r\nimport os\r\nimport sys\r\n#import subprocess\r\n#needs python3-pip\r\n#also sudo apt-get install python3-pyqt5\r\ntry:\r\n    from PyQt5 import QtCore, QtGui, QtWidgets\r\n    from PyQt5.QtCore import QTimer\r\n    from PyQt5.QtWidgets import QApplication\r\nexcept ImportError:\r\n    print ('pyqt5 not installed...installing now.')\r\n    os.system(\"sudo apt-get install python-pyqt5 -y\")\r\n    raise ImportError(\"ok done installing try running Briar now!\")\r\n\r\nos.system(\"sudo /usr/local/bin/./checkXauth.sh\")\r\nos.system(\"sudo /usr/local/bin/./updatecheck.sh\")\r\n\r\nimport load_briar_menu\r\n\r\n\r\nclass Main(QtWidgets.QWidget):\r\n\r\n    def __init__(self):\r\n\r\n        super(Main, self).__init__()\r\n        print (\"loading main menu...\")\r\n        #output = subprocess.check_output('sudo ip r show|grep \" src \"|cut -d \" \" -f 3,12 | awk \\'{print $1}\\'', shell=True)\r\n        #print output\r\n        # name of gui python script\r\n        self.ui = load_briar_menu.UiForm()\r\n        self.ui.setup_ui(self)\r\n\r\n\r\ndef main():\r\n\r\n    app = QApplication(sys.argv)\r\n    app.setStyle(\"plastique\")\r\n\r\n    main = Main()\r\n    main.show()\r\n    sys.exit(app.exec_())\r\n\r\n\r\nif __name__ == '__main__':\r\n    main()\r\n\r\n\r\n"
  },
  {
    "path": "briarids/load_briar_menu.py",
    "content": "# -*- coding: utf-8 -*-\r\n\"\"\" BriarIDS menu loader: Creates a python desktop application.\r\n\r\nDesktop application allows you to install Suricata, Bro, and Critical Stack Agent \r\nvia selectable button options.  \r\n\r\nFollow wiki at https://github.com/musicmancorley/BriarIDS/wiki for latest docs.\r\n\r\n\"\"\"\r\n\r\n#from PyQt4 import QtCore, QtGui\r\nfrom PyQt5 import QtCore, QtGui, QtWidgets\r\nfrom PyQt5.QtCore import QThread, QObject, pyqtSignal\r\nimport os, sys, threading, subprocess, time\r\nfrom subprocess import Popen, PIPE, CalledProcessError\r\n\r\n\r\nclass SuricataInstallerThread(QThread):\r\n\r\n    install_signal = pyqtSignal(object)\r\n\r\n    def __init__(self, url):\r\n        QThread.__init__(self)\r\n        self.url = url\r\n\r\n    def run(self):\r\n        p = subprocess.Popen(self.url, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\r\n        stdout = []\r\n        counter=0.0\r\n        while True:\r\n            line = p.stdout.readline()\r\n            stdout.append(line)\r\n            print (line.rstrip())\r\n            if \"  CC       \" in str(line):\r\n                counter=counter+.1\r\n                self.install_signal.emit('%s' % (counter))\r\n            if \"Phase-1\" in str(line):\r\n                counter=7\r\n                self.install_signal.emit('%s' % (counter))\r\n            if \"Phase-2\" in str(line):\r\n                counter=20\r\n                self.install_signal.emit('%s' % (counter))\r\n            if \"Phase-3\" in str(line):\r\n                counter=45\r\n                self.install_signal.emit('%s' % (counter))\r\n            if \"Phase-4\" in str(line):\r\n                counter=93\r\n                self.install_signal.emit('%s' % (counter))\r\n            if \"Phase-5\" in str(line):\r\n                counter=97\r\n                self.install_signal.emit('%s' % (counter))\r\n            if \"success\" in str(line):\r\n                counter=100\r\n                self.install_signal.emit('%s' % (counter))\r\n            if line == '':\r\n                break\r\n\r\nclass BroInstallerThread(QThread):\r\n\r\n    broinstall_signal = pyqtSignal(object)\r\n\r\n    def __init__(self, url):\r\n        QThread.__init__(self)\r\n        self.url = url\r\n\r\n    def run(self):\r\n        p = subprocess.Popen(self.url, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\r\n        stdout = []\r\n        counter=0.0\r\n        while True:\r\n            line = p.stdout.readline()\r\n            stdout.append(line)\r\n            print (line.rstrip())\r\n            if \"Building CXX\" in str(line):\r\n                counter=counter+.1\r\n                self.broinstall_signal.emit('%s' % (counter))\r\n            if \"prereqs\" in str(line):\r\n                counter=3\r\n                self.broinstall_signal.emit('%s' % (counter))\r\n            if \"Preparing\" in str(line):\r\n                counter=10\r\n                self.broinstall_signal.emit('%s' % (counter))\r\n            if \"coffee\" in str(line):\r\n                counter=30\r\n                self.broinstall_signal.emit('%s' % (counter))\r\n            if \"complete!\" in str(line):\r\n                counter=100\r\n                self.broinstall_signal.emit('%s' % (counter))\r\n            if line == '':\r\n                break\r\n\r\nclass UiForm:\r\n\r\n    \"\"\"Primary class that creates the BriarIDS desktop application\r\n    \r\n    Creates the desktop application, as well as runs bash script's depending on which button is \r\n    pressed.\r\n    \r\n    \"\"\"\r\n\r\n    def setup_ui(self, Form):\r\n        \"\"\"Sets up the outline of the UI.\r\n        \r\n        Instantiates all the classes from the pyQt4 program and then defines the size,shape, layout of\r\n        all the UI elements.\r\n        \r\n        param Form: pyQt4 form object\r\n        \"\"\"\r\n        Form.setObjectName(\"Form\")\r\n        Form.resize(468, 602)\r\n        Form.setMinimumSize(QtCore.QSize(468, 602))\r\n        Form.setMaximumSize(QtCore.QSize(468, 602))\r\n        Form.setStyleSheet(\"background-color: rgb(216, 224, 255);\")\r\n        self.label = QtWidgets.QLabel(Form)\r\n        self.label.setGeometry(QtCore.QRect(60, 10, 351, 16))\r\n        self.label.setObjectName(\"label\")\r\n        self.label_2 = QtWidgets.QLabel(Form)\r\n        self.label_2.setGeometry(QtCore.QRect(10, 30, 461, 311))\r\n        self.label_2.setObjectName(\"label_2\")\r\n        self.comboBox = QtWidgets.QComboBox(Form)\r\n        self.comboBox.setGeometry(QtCore.QRect(260, 340, 111, 22))\r\n        self.comboBox.setObjectName(\"comboBox\")\r\n        self.comboBox.addItem(\"\")\r\n        self.comboBox.addItem(\"\")\r\n        self.comboBox.addItem(\"\")\r\n        self.comboBox.addItem(\"\")\r\n        self.comboBox.addItem(\"\")\r\n        self.comboBox.addItem(\"\")\r\n        self.label_3 = QtWidgets.QLabel(Form)\r\n        self.label_3.setGeometry(QtCore.QRect(70, 340, 181, 16))\r\n        self.label_3.setObjectName(\"label_3\")\r\n        self.pushButton = QtWidgets.QPushButton(Form)\r\n        self.pushButton.setGeometry(QtCore.QRect(140, 370, 191, 51))\r\n        self.pushButton.setStyleSheet(\"font: 11pt \\\"Lucida Handwriting\\\";\")\r\n        self.pushButton.setObjectName(\"pushButton\")\r\n        self.pushButton_2 = QtWidgets.QPushButton(Form)\r\n        self.pushButton_2.setGeometry(QtCore.QRect(140, 425, 191, 31))\r\n        self.pushButton_2.setStyleSheet(\"font: 11pt \\\"Lucida Handwriting\\\";\")\r\n        self.pushButton_2.setObjectName(\"pushButton_2\")\r\n  \r\n        self.pushButton_6 = QtWidgets.QPushButton(Form)\r\n        self.pushButton_6.setGeometry(QtCore.QRect(140, 460, 90, 31))\r\n        self.pushButton_6.setStyleSheet(\"font: 11pt \\\"Lucida Handwriting\\\";\")\r\n        self.pushButton_6.setObjectName(\"pushButton_6\")\r\n        \r\n        self.pushButton_7 = QtWidgets.QPushButton(Form)\r\n        self.pushButton_7.setGeometry(QtCore.QRect(241, 460, 90, 31))\r\n        self.pushButton_7.setStyleSheet(\"font: 11pt \\\"Lucida Handwriting\\\";\")\r\n        self.pushButton_7.setObjectName(\"pushButton_7\")\r\n        \r\n        self.progressBar = QtWidgets.QProgressBar(Form)\r\n        self.progressBar.setEnabled(True)\r\n        self.progressBar.hide()\r\n        self.progressBar.setGeometry(QtCore.QRect(140, 580, 211, 21))\r\n        self.progressBar.setProperty(\"value\", 0)\r\n        self.progressBar.setTextVisible(True)\r\n        self.progressBar.setObjectName(\"progressBar\")\r\n        self.pushButton_3 = QtWidgets.QPushButton(Form)\r\n        self.pushButton_3.setGeometry(QtCore.QRect(140, 495, 191, 51))\r\n        self.pushButton_3.setStyleSheet(\"font: 11pt \\\"Lucida Handwriting\\\";\")\r\n        self.pushButton_3.setObjectName(\"pushButton_3\")\r\n        self.pushButton_5 = QtWidgets.QPushButton(Form)\r\n        self.pushButton_5.setGeometry(QtCore.QRect(140, 550, 191, 21))\r\n        self.pushButton_5.setStyleSheet(\"font: 11pt \\\"Lucida Handwriting\\\";\")\r\n        self.pushButton_5.setObjectName(\"pushButton_5\")\r\n\r\n        self.label_4 = QtWidgets.QLabel(Form)\r\n        self.label_4.hide()\r\n        self.label_4.setGeometry(QtCore.QRect(180, 560, 111, 16))\r\n        self.label_4.setObjectName(\"label_4\")\r\n\r\n        self.retranslateUi(Form)\r\n        QtCore.QMetaObject.connectSlotsByName(Form)\r\n        \r\n\r\n    def retranslateUi(self, Form):\r\n        _translate = QtCore.QCoreApplication.translate\r\n        Form.setWindowTitle(_translate(\"Form\", \"BriarIDS\"))\r\n        self.label.setText(_translate(\"Form\", \"<html><head/><body><p><span style=\\\" font-size:10pt; font-weight:600; color:#0569eb;\\\">Welcome to BriarIDS - designed for the Raspberry Pi</span></p></body></html>\"))\r\n        self.label_2.setText(_translate(\"Form\", \"<html><head/><body><p><img src=\\\":/newPrefix/Brambles-for-the-Rabbit_scaled.jpg\\\"/></p></body></html>\"))\r\n        self.comboBox.setToolTip(_translate(\"Form\", \"monitoring interface\"))\r\n        output = subprocess.check_output(\"sudo ip r sh | awk 'NR==1{print $5}'\",shell=True)\r\n        self.comboBox.setItemText(0, _translate(\"Form\", \"autodetected interface: \"+output))\r\n        self.comboBox.setItemText(1, _translate(\"Form\", \"wlan0\"))\r\n        self.comboBox.setItemText(2, _translate(\"Form\", \"wlan1\"))\r\n        self.comboBox.setItemText(3, _translate(\"Form\", \"eth0\"))\r\n        self.comboBox.setItemText(4, _translate(\"Form\", \"eth1\"))\r\n        self.comboBox.setItemText(5, _translate(\"Form\", \"eth2\"))\r\n        self.label_3.setText(_translate(\"Form\", \"Choose Suricata Monitoring Interface\"))\r\n        self.pushButton.clicked.connect(self.installsuri)\r\n        \r\n        retvalue=os.system(\"ls /opt/suricata/etc/suricata/BriarIDS_installed\")\r\n        if retvalue==0:\r\n            self.pushButton.setStyleSheet(\"background-color: rgb(0, 255, 0);\")\r\n            self.pushButton.setText(_translate(\"Form\", \"Suricata installed!\"))\r\n            self.pushButton.setToolTip(_translate(\"Form\", \"Suricata installed!\"))\r\n\r\n        else:\r\n            self.pushButton.setText(_translate(\"Form\", \"Install Suricata\"))\r\n            self.pushButton.setToolTip(_translate(\"Form\", \"Install Suricata\"))\r\n        self.pushButton_2.setToolTip(_translate(\"Form\", \"Run Suricata\"))\r\n        self.pushButton_2.setText(_translate(\"Form\", \"Run Suricata\"))\r\n        self.pushButton_2.clicked.connect(self.runtheprog)\r\n\r\n        self.pushButton_6.setToolTip(_translate(\"Form\", \"Run Bro\"))\r\n        self.pushButton_6.setText(_translate(\"Form\", \"Run Bro\"))\r\n        self.pushButton_6.clicked.connect(self.runbro)\r\n\r\n        self.pushButton_7.setToolTip(_translate(\"Form\", \"Stop Bro\"))\r\n        self.pushButton_7.setText(_translate(\"Form\", \"Stop Bro\"))\r\n        self.pushButton_7.clicked.connect(self.stopbro)\r\n \r\n        retvalue3=os.system(\"ls /opt/nsm/bro/share/bro/policy/bro-otx/otx.dat\")\r\n        if retvalue3 != 0:\r\n            self.pushButton_5.setToolTip(_translate(\"Form\", \"Configure Alienvault Intel Feed\"))\r\n            self.pushButton_5.setText(_translate(\"Form\", \"Configure Alienvault Intel Feed\"))\r\n        else:\r\n            self.pushButton_5.setStyleSheet(\"background-color: rgb(0, 255, 0);\")\r\n            self.pushButton_5.setToolTip(_translate(\"Form\", \"Alienvault Intel Feed installed!\"))\r\n            self.pushButton_5.setText(_translate(\"Form\", \"Alienvault Intel Feed installed!\"))\r\n        self.pushButton_5.clicked.connect(self.bro_intel_config)\r\n        \r\n        retvalue2=os.system(\"ls /opt/nsm/bro/bro_install_complete\")\r\n        if retvalue2==0:\r\n            self.pushButton_3.setStyleSheet(\"background-color: rgb(0, 255, 0);\")\r\n            self.pushButton_3.setText(_translate(\"Form\", \"Bro installed!\"))\r\n            self.pushButton_3.setToolTip(_translate(\"Form\", \"Bro installed!\"))\r\n\r\n        else:\r\n            self.pushButton_3.setText(_translate(\"Form\", \"Install Bro\"))\r\n            self.pushButton_3.setToolTip(_translate(\"Form\", \"Install Bro\"))\r\n        self.pushButton_3.clicked.connect(self.broinstall)\r\n\r\n#        self.pushButton_4.setToolTip(_translate(\"Form\", \"Add in your public/WAN IP\", None))\r\n#        self.pushButton_4.setText(_translate(\"Form\", \"Add WAN IP to config for monitoring\", None))\r\n#        self.pushButton_5.setToolTip(_translate(\"Form\", \"This installs Bro and the Critical Stack Intel Feed client\", None))\r\n#        self.pushButton_5.setText(_translate(\"Form\", \"Install/Configure/Run Bro AND Intel Agent!\", None))\r\n#        self.pushButton_5.clicked.connect(self.brointelinstall)\r\n#        self.pushButton_4.clicked.connect(self.configcheck)\r\n        #self.pushButton_8.setToolTip(_translate(\"Form\", \"Runs the VirusTotal Scanner against your extracted files!\", None))\r\n        #self.pushButton_8.setText(_translate(\"Form\", \"Virus Total File Scanner (new!)\", None))\r\n        #self.pushButton_8.clicked.connect(self.vtotalscanner)\r\n        output = subprocess.check_output(\"sudo ip r sh | awk 'NR==1{print $5}'\",shell=True)\r\n        #Ubuntu specific\r\n        #output = subprocess.check_output('sudo ip r show|grep \" src \"|cut -d \" \" -f 3,12 | awk \\'{print $1}\\'', shell=True)\r\n        #self.comboBox.setItemText(0, _translate(\"Form\", output, None))\r\n       # self.comboBox.setItemText(1, _translate(\"Form\", \"eth0\", None))\r\n       # self.comboBox.setItemText(2, _translate(\"Form\", \"eth1\", None))\r\n       # self.comboBox.setItemText(3, _translate(\"Form\", \"eth2\", None))\r\n       # self.comboBox.setItemText(4, _translate(\"Form\", \"wlan0\", None))\r\n       # self.comboBox.setItemText(5, _translate(\"Form\", \"wlan1\", None))\r\n       # self.comboBox.setItemText(6, _translate(\"Form\", \"wlan2\", None))\r\n        self.label_3.setText(_translate(\"Form\", \"<span style='font-size:8pt'>CHOOSE SURICATA MONITOR INTERFACE:</span>\", None))\r\n\r\n    def install(self):\r\n        \"\"\"Runs the suricata install bash shell script when 'Install Suricata' button pressed\"\"\"\r\n\r\n        self.pushButton.clicked.connect(self.installsuri)\r\n        self.label_4.setText(_translate(\"Form\", \"Installation Progress:\"))\r\n       \r\n\r\n    def installsuri(self):\r\n        \"\"\"Runs the suricata install bash shell script when 'Install Suricata' button pressed\"\"\"\r\n        if \"Suricata installed!\" in self.pushButton.text():\r\n            print(\"you've already installed Suricata.  delete this file to reinstall: /opt/suricata/etc/suricata/BriarIDS_installed\")\r\n            exit(0)\r\n        #self.label_4.show()\r\n        self.progressBar.show()\r\n        url = \"sudo /usr/local/bin/./suricata-install-script.sh\"\r\n        self.threads = []\r\n        \r\n        installer = SuricataInstallerThread(url)\r\n        installer.install_signal.connect(self.on_data_ready)\r\n        self.threads.append(installer)\r\n        installer.start()\r\n            \r\n    def on_data_ready(self, data):\r\n        data=float(data)\r\n        self.progressBar.setFormat(\"%.2f%%\" % data)\r\n        self.progressBar.setValue(data)\r\n\r\n    def runbro(self):\r\n        \"\"\"Starts bro when 'Run Bro' button pressed\"\"\"\r\n        mycommand = '/opt/nsm/bro/bin/broctl start'\r\n        os.system(\"sudo x-terminal-emulator -e \" + mycommand)\r\n\r\n    def stopbro(self):\r\n        \"\"\"Stops bro when 'Stop Bro' button pressed\"\"\"\r\n        mycommand = '/opt/nsm/bro/bin/broctl stop'\r\n        os.system(\"sudo x-terminal-emulator -e \" + mycommand)\r\n\r\n    def runtheprog(self):\r\n        \"\"\"Start's suricata when 'Run Suricata' button pressed\"\"\"\r\n        \r\n        monint = str(self.comboBox.currentText())\r\n        if \"autodetect\" in monint:\r\n            monint=monint.split(\": \")\r\n            monint=monint[1].strip(\"\\n\")\r\n            #print(monint)\r\n            #exit(0)\r\n        print(\"Configuring interface using Ethtool...\")\r\n        os.system(\"ethtool -K \" + monint + \" tx off rx off sg off gso off gro off\" + \" 2>/dev/null\")\r\n        print(\"Note: You can view your alert logs by issuing the following command: tail -f /var/log/suricata/http.log /var/log/suricata/fast.log\")\r\n        print(\"Even better, you are encouraged to use the new WEB GUI log management interface, TheBriarPatch, specifically for BriarIDS!\")\r\n        print(\"Go here to clone it: https://github.com/musicmancorley/TheBriarPatch\")\r\n        os.system(\"sleep 5\")\r\n        print(\"Starting Suricata!!!\")\r\n        os.system(\"sudo /usr/local/bin/./rulecleanup.sh\")\r\n        mycommand = '/opt/suricata/bin/suricata -c /opt/suricata/etc/suricata/suricata.yaml --af-packet=' + monint + \" &\"\r\n        os.system(\"sudo x-terminal-emulator -e \" + mycommand)\r\n\r\n  #  def configcheck(self):\r\n        \"\"\"Python system call that runs script that makes sure BriarIDS is installed and that a WAN IP entered\"\"\"\r\n\r\n   #     os.system(\"sudo /usr/local/bin/./configcheck.sh\")\r\n    \r\n    def bro_intel_config(self):\r\n        if \"Alienvault Intel Feed installed!\" in self.pushButton_5.text():\r\n            print(\"you've already installed the Bro Alienvault Intel Feed module.  Delete this file to reinstall: /opt/nsm/bro/share/bro/policy/bro-otx/otx.dat\")\r\n            exit(0)\r\n        os.system(\"sudo /usr/local/bin/./bro-alienvaultintel-installer.sh\")\r\n\r\n    def broinstall(self):\r\n        \"\"\"Python system call that runs script that installs/configures Bro.\"\"\"\r\n        if \"Bro installed!\" in self.pushButton_3.text():\r\n            print(\"you've already installed Bro.  delete this file to reinstall: /opt/nsm/bro/bro_install_complete\")\r\n            exit(0)\r\n        #self.label_4.show()\r\n        self.progressBar.show()\r\n        url = \"sudo /usr/local/bin/./bro-installer.sh\"\r\n        self.threads = []\r\n\r\n        binstaller = BroInstallerThread(url)\r\n        binstaller.broinstall_signal.connect(self.on_data_ready)\r\n        self.threads.append(binstaller)\r\n        binstaller.start()\r\n\r\n   # def vtotalscanner(self):\r\n        \"\"\"Python system call that runs script that runs vtotalscanner scripts\"\"\"\r\n    #    os.system(\"sudo /usr/local/bin/./filetypescan.sh\")\r\n\r\n\r\nimport resource\r\n"
  },
  {
    "path": "briarids/main_rc.py.old",
    "content": "# -*- coding: utf-8 -*-\n\n# Resource object code\n#\n# Created by: The Resource Compiler for PyQt4 (Qt v4.8.7)\n#\n# WARNING! All changes made in this file will be lost!\n\nfrom PyQt4 import QtCore\n\nqt_resource_data = \"\\\n\\x00\\x05\\x78\\xb5\\\n\\xff\\\n\\xd8\\xff\\xe0\\x00\\x10\\x4a\\x46\\x49\\x46\\x00\\x01\\x01\\x01\\x00\\x48\\x00\\\n\\x48\\x00\\x00\\xff\\xe1\\x00\\xee\\x45\\x78\\x69\\x66\\x00\\x00\\x49\\x49\\x2a\\\n\\x00\\x08\\x00\\x00\\x00\\x08\\x00\\x0e\\x01\\x02\\x00\\x11\\x00\\x00\\x00\\x6e\\\n\\x00\\x00\\x00\\x1a\\x01\\x05\\x00\\x01\\x00\\x00\\x00\\x80\\x00\\x00\\x00\\x1b\\\n\\x01\\x05\\x00\\x01\\x00\\x00\\x00\\x88\\x00\\x00\\x00\\x28\\x01\\x03\\x00\\x01\\\n\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x32\\x01\\x02\\x00\\x14\\x00\\x00\\x00\\x90\\\n\\x00\\x00\\x00\\x3b\\x01\\x02\\x00\\x0f\\x00\\x00\\x00\\xa4\\x00\\x00\\x00\\x98\\\n\\x82\\x02\\x00\\x08\\x00\\x00\\x00\\xb4\\x00\\x00\\x00\\x69\\x87\\x04\\x00\\x01\\\n\\x00\\x00\\x00\\xbc\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x57\\x69\\x6c\\x64\\x20\\\n\\x4a\\x61\\x63\\x6b\\x20\\x52\\x61\\x62\\x62\\x69\\x74\\x00\\x00\\x48\\x00\\x00\\\n\\x00\\x01\\x00\\x00\\x00\\x48\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x32\\x30\\x31\\\n\\x37\\x3a\\x30\\x36\\x3a\\x30\\x35\\x20\\x31\\x35\\x3a\\x30\\x37\\x3a\\x35\\x31\\\n\\x00\\x42\\x72\\x69\\x61\\x6e\\x20\\x4e\\x6f\\x72\\x63\\x72\\x6f\\x73\\x73\\x00\\\n\\x00\\xc2\\xa9\\x20\\x32\\x30\\x31\\x32\\x00\\x03\\x00\\x00\\x90\\x07\\x00\\x04\\\n\\x00\\x00\\x00\\x30\\x32\\x31\\x30\\x00\\xa0\\x07\\x00\\x04\\x00\\x00\\x00\\x30\\\n\\x31\\x30\\x30\\x01\\xa0\\x03\\x00\\x01\\x00\\x00\\x00\\xff\\xff\\x00\\x00\\x00\\\n\\x00\\x00\\x00\\xff\\xe1\\x03\\x77\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x6e\\x73\\\n\\x2e\\x61\\x64\\x6f\\x62\\x65\\x2e\\x63\\x6f\\x6d\\x2f\\x78\\x61\\x70\\x2f\\x31\\\n\\x2e\\x30\\x2f\\x00\\x3c\\x3f\\x78\\x70\\x61\\x63\\x6b\\x65\\x74\\x20\\x62\\x65\\\n\\x67\\x69\\x6e\\x3d\\x27\\xef\\xbb\\xbf\\x27\\x20\\x69\\x64\\x3d\\x27\\x57\\x35\\\n\\x4d\\x30\\x4d\\x70\\x43\\x65\\x68\\x69\\x48\\x7a\\x72\\x65\\x53\\x7a\\x4e\\x54\\\n\\x63\\x7a\\x6b\\x63\\x39\\x64\\x27\\x3f\\x3e\\x0a\\x3c\\x78\\x3a\\x78\\x6d\\x70\\\n\\x6d\\x65\\x74\\x61\\x20\\x78\\x6d\\x6c\\x6e\\x73\\x3a\\x78\\x3d\\x27\\x61\\x64\\\n\\x6f\\x62\\x65\\x3a\\x6e\\x73\\x3a\\x6d\\x65\\x74\\x61\\x2f\\x27\\x3e\\x0a\\x3c\\\n\\x72\\x64\\x66\\x3a\\x52\\x44\\x46\\x20\\x78\\x6d\\x6c\\x6e\\x73\\x3a\\x72\\x64\\\n\\x66\\x3d\\x27\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x77\\x77\\x77\\x2e\\x77\\x33\\\n\\x2e\\x6f\\x72\\x67\\x2f\\x31\\x39\\x39\\x39\\x2f\\x30\\x32\\x2f\\x32\\x32\\x2d\\\n\\x72\\x64\\x66\\x2d\\x73\\x79\\x6e\\x74\\x61\\x78\\x2d\\x6e\\x73\\x23\\x27\\x3e\\\n\\x0a\\x0a\\x20\\x3c\\x72\\x64\\x66\\x3a\\x44\\x65\\x73\\x63\\x72\\x69\\x70\\x74\\\n\\x69\\x6f\\x6e\\x20\\x78\\x6d\\x6c\\x6e\\x73\\x3a\\x65\\x78\\x69\\x66\\x3d\\x27\\\n\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x6e\\x73\\x2e\\x61\\x64\\x6f\\x62\\x65\\x2e\\\n\\x63\\x6f\\x6d\\x2f\\x65\\x78\\x69\\x66\\x2f\\x31\\x2e\\x30\\x2f\\x27\\x3e\\x0a\\\n\\x20\\x20\\x3c\\x65\\x78\\x69\\x66\\x3a\\x49\\x6d\\x61\\x67\\x65\\x44\\x65\\x73\\\n\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x3e\\x57\\x69\\x6c\\x64\\x20\\x4a\\x61\\\n\\x63\\x6b\\x20\\x52\\x61\\x62\\x62\\x69\\x74\\x3c\\x2f\\x65\\x78\\x69\\x66\\x3a\\\n\\x49\\x6d\\x61\\x67\\x65\\x44\\x65\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\\n\\x3e\\x0a\\x20\\x20\\x3c\\x65\\x78\\x69\\x66\\x3a\\x58\\x52\\x65\\x73\\x6f\\x6c\\\n\\x75\\x74\\x69\\x6f\\x6e\\x3e\\x37\\x32\\x3c\\x2f\\x65\\x78\\x69\\x66\\x3a\\x58\\\n\\x52\\x65\\x73\\x6f\\x6c\\x75\\x74\\x69\\x6f\\x6e\\x3e\\x0a\\x20\\x20\\x3c\\x65\\\n\\x78\\x69\\x66\\x3a\\x59\\x52\\x65\\x73\\x6f\\x6c\\x75\\x74\\x69\\x6f\\x6e\\x3e\\\n\\x37\\x32\\x3c\\x2f\\x65\\x78\\x69\\x66\\x3a\\x59\\x52\\x65\\x73\\x6f\\x6c\\x75\\\n\\x74\\x69\\x6f\\x6e\\x3e\\x0a\\x20\\x20\\x3c\\x65\\x78\\x69\\x66\\x3a\\x52\\x65\\\n\\x73\\x6f\\x6c\\x75\\x74\\x69\\x6f\\x6e\\x55\\x6e\\x69\\x74\\x3e\\x49\\x6e\\x63\\\n\\x68\\x3c\\x2f\\x65\\x78\\x69\\x66\\x3a\\x52\\x65\\x73\\x6f\\x6c\\x75\\x74\\x69\\\n\\x6f\\x6e\\x55\\x6e\\x69\\x74\\x3e\\x0a\\x20\\x20\\x3c\\x65\\x78\\x69\\x66\\x3a\\\n\\x44\\x61\\x74\\x65\\x54\\x69\\x6d\\x65\\x3e\\x32\\x30\\x31\\x32\\x3a\\x30\\x35\\\n\\x3a\\x32\\x30\\x20\\x31\\x34\\x3a\\x30\\x31\\x3a\\x34\\x33\\x3c\\x2f\\x65\\x78\\\n\\x69\\x66\\x3a\\x44\\x61\\x74\\x65\\x54\\x69\\x6d\\x65\\x3e\\x0a\\x20\\x20\\x3c\\\n\\x65\\x78\\x69\\x66\\x3a\\x41\\x72\\x74\\x69\\x73\\x74\\x3e\\x42\\x72\\x69\\x61\\\n\\x6e\\x20\\x4e\\x6f\\x72\\x63\\x72\\x6f\\x73\\x73\\x3c\\x2f\\x65\\x78\\x69\\x66\\\n\\x3a\\x41\\x72\\x74\\x69\\x73\\x74\\x3e\\x0a\\x20\\x20\\x3c\\x65\\x78\\x69\\x66\\\n\\x3a\\x43\\x6f\\x70\\x79\\x72\\x69\\x67\\x68\\x74\\x3e\\xc2\\xa9\\x20\\x32\\x30\\\n\\x31\\x32\\x20\\x28\\x50\\x68\\x6f\\x74\\x6f\\x67\\x72\\x61\\x70\\x68\\x65\\x72\\\n\\x29\\x20\\x2d\\x20\\x5b\\x4e\\x6f\\x6e\\x65\\x5d\\x20\\x28\\x45\\x64\\x69\\x74\\\n\\x6f\\x72\\x29\\x3c\\x2f\\x65\\x78\\x69\\x66\\x3a\\x43\\x6f\\x70\\x79\\x72\\x69\\\n\\x67\\x68\\x74\\x3e\\x0a\\x20\\x20\\x3c\\x65\\x78\\x69\\x66\\x3a\\x45\\x78\\x69\\\n\\x66\\x56\\x65\\x72\\x73\\x69\\x6f\\x6e\\x3e\\x45\\x78\\x69\\x66\\x20\\x56\\x65\\\n\\x72\\x73\\x69\\x6f\\x6e\\x20\\x32\\x2e\\x31\\x3c\\x2f\\x65\\x78\\x69\\x66\\x3a\\\n\\x45\\x78\\x69\\x66\\x56\\x65\\x72\\x73\\x69\\x6f\\x6e\\x3e\\x0a\\x20\\x20\\x3c\\\n\\x65\\x78\\x69\\x66\\x3a\\x46\\x6c\\x61\\x73\\x68\\x50\\x69\\x78\\x56\\x65\\x72\\\n\\x73\\x69\\x6f\\x6e\\x3e\\x46\\x6c\\x61\\x73\\x68\\x50\\x69\\x78\\x20\\x56\\x65\\\n\\x72\\x73\\x69\\x6f\\x6e\\x20\\x31\\x2e\\x30\\x3c\\x2f\\x65\\x78\\x69\\x66\\x3a\\\n\\x46\\x6c\\x61\\x73\\x68\\x50\\x69\\x78\\x56\\x65\\x72\\x73\\x69\\x6f\\x6e\\x3e\\\n\\x0a\\x20\\x20\\x3c\\x65\\x78\\x69\\x66\\x3a\\x43\\x6f\\x6c\\x6f\\x72\\x53\\x70\\\n\\x61\\x63\\x65\\x3e\\x49\\x6e\\x74\\x65\\x72\\x6e\\x61\\x6c\\x20\\x65\\x72\\x72\\\n\\x6f\\x72\\x20\\x28\\x75\\x6e\\x6b\\x6e\\x6f\\x77\\x6e\\x20\\x76\\x61\\x6c\\x75\\\n\\x65\\x20\\x36\\x35\\x35\\x33\\x35\\x29\\x3c\\x2f\\x65\\x78\\x69\\x66\\x3a\\x43\\\n\\x6f\\x6c\\x6f\\x72\\x53\\x70\\x61\\x63\\x65\\x3e\\x0a\\x20\\x3c\\x2f\\x72\\x64\\\n\\x66\\x3a\\x44\\x65\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x3e\\x0a\\x0a\\\n\\x3c\\x2f\\x72\\x64\\x66\\x3a\\x52\\x44\\x46\\x3e\\x0a\\x3c\\x2f\\x78\\x3a\\x78\\\n\\x6d\\x70\\x6d\\x65\\x74\\x61\\x3e\\x0a\\x3c\\x3f\\x78\\x70\\x61\\x63\\x6b\\x65\\\n\\x74\\x20\\x65\\x6e\\x64\\x3d\\x27\\x72\\x27\\x3f\\x3e\\x0a\\xff\\xdb\\x00\\x43\\\n\\x00\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\n\\x01\\xff\\xdb\\x00\\x43\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\n\\x01\\x01\\x01\\x01\\x01\\x01\\xff\\xc2\\x00\\x11\\x08\\x02\\x04\\x01\\xf4\\x03\\\n\\x01\\x11\\x00\\x02\\x11\\x01\\x03\\x11\\x01\\xff\\xc4\\x00\\x1e\\x00\\x00\\x02\\\n\\x03\\x01\\x01\\x01\\x01\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x07\\\n\\x04\\x05\\x08\\x03\\x02\\x09\\x01\\x00\\x0a\\xff\\xc4\\x00\\x1c\\x01\\x00\\x02\\\n\\x03\\x01\\x01\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x05\\\n\\x02\\x03\\x06\\x07\\x01\\x00\\x08\\xff\\xda\\x00\\x0c\\x03\\x01\\x00\\x02\\x10\\\n\\x03\\x10\\x00\\x00\\x01\\x4b\\xe4\\x30\\x7f\\x4d\\x80\\x84\\x7a\\x03\\x81\\x6d\\\n\\xa8\\xad\\x07\\xa7\\x9a\\xfd\\x10\\x0a\\x7a\\x87\\x25\\xe2\\x54\\x29\\x48\\xcf\\\n\\x8a\\xf8\\x65\\xf7\\x64\\x59\\xa7\\x5e\\x23\\x3d\\x1e\\xab\\x38\\x89\\x18\\x5a\\\n\\x6d\\x27\\xc8\\x8d\\xcf\\x41\\xdb\\x9c\\xf7\\x18\\xc5\\x6e\\xe2\\x8f\\x8e\\x61\\\n\\x6a\\x8a\\xad\\xa1\\xd1\\xc4\\xb1\\x61\\xf7\\x78\\x7d\\x62\\x31\\xf2\\x31\\xba\\\n\\xcc\\x7f\\x2c\\x1c\\x97\\xe2\\x5f\\x68\\x05\\x0d\\x10\\xa9\\x03\\xcb\\x42\\xc8\\\n\\x11\\x41\\x98\\xfe\\xdd\\x6d\\xad\\xa9\\xe7\\x5b\\x7f\\x8a\\x29\\x13\\xa0\\x09\\\n\\xf7\\x79\\x52\\x04\\xa6\\xda\\x77\\xe1\\x77\\x84\\x94\\x38\\x80\\x06\\x0e\\x6c\\\n\\x2c\\x06\\xdb\\xa7\\xfd\\xc3\\x17\\x79\\xcb\\x9f\\x4e\\x32\\xf2\\xbd\\x55\\x09\\\n\\x3b\\xbc\\x8e\\xbc\\x53\\x6d\\xa8\\xc0\\x83\\xd2\\x3f\\xe3\\xe3\\x03\\x57\\xc0\\\n\\xc9\\x3f\\x1f\\x5d\\xed\\x6f\\x94\\x47\\x2a\\x9b\\xff\\x00\\x2a\\x16\\x22\\x36\\\n\\xcc\\xc9\\x6e\\xec\\xf7\\x7f\\x52\\xb9\\xe2\\xe1\\xc9\\x48\\x07\\x3c\\xbb\\xbe\\\n\\xc1\\xd6\\x55\\x05\\xdc\\x84\\xaa\\xbb\\x68\\x48\\xd3\\xa2\\xaf\\x74\\xa4\\xce\\\n\\x85\\x41\\x5a\\xa8\\xd9\\x13\\xcc\\x4a\\x36\\x4c\\x5c\\x8c\\x76\\x39\\xa4\\x76\\\n\\x7f\\x36\\x99\\x34\\xff\\x00\\x42\\x55\\x89\\x7a\\x0c\\x3e\\x7e\\xe2\\x38\\x9d\\\n\\x96\\x81\\xe1\\x59\\x00\\x90\\x3c\\xb4\\x21\\x6a\\xf6\\x08\\x27\\xfd\\x09\\xd6\\\n\\x76\\x3f\\x99\\x3c\\xbb\\x39\\x8f\\xcf\\xe6\\xf4\\x70\\x5c\\xd4\\xf4\\xed\\x3b\\\n\\x6d\\x77\\x04\\x85\\xfd\\x1f\\x78\\xf9\\xec\\x7a\\xeb\\x19\\x1a\\xb1\\x6a\\xc6\\\n\\x5b\\xf8\\x79\\xad\\xaa\\x4e\\xfc\\x38\\x2e\\x90\\xe9\\x3c\\x88\\x6e\\xe0\\x88\\\n\\x00\\x36\\x4b\\xea\\xcb\\x95\\x20\\x2e\\x54\\x12\\x8a\\xe6\\xba\\x7e\\x82\\xfb\\\n\\xde\\x91\\x23\\xd9\\x6c\\x7b\\xa5\\xc9\\xa8\\xff\\x00\\xcc\\xc7\\x31\\x73\\x47\\\n\\x46\\xc2\\xd2\\x53\\x18\\x89\\xcd\\xe9\\x5d\\x53\\x8f\\x14\\x50\\x47\\xbe\\x0e\\\n\\xbe\\xec\\xda\\x3e\\x8f\\x0b\\xb3\\x71\\xe0\\xd3\\x90\\xb3\\x95\\x07\\x4f\\x37\\\n\\x27\\x50\\x48\\x16\\x6b\\xc7\\x0f\\x37\\xc0\\x6b\\xda\\x4f\\x6b\\x69\\xf4\\xeb\\\n\\xbb\\x62\\x29\\xe6\\x60\\x4e\\x23\\x00\\xfb\\x31\\x8a\\xf6\\xaa\\x2e\\x85\\xa6\\\n\\x09\\x10\\xa1\\x81\\x52\\x7d\\x31\\x61\\x8f\\x33\\x0c\\x10\\xb1\\xd0\\x8f\\xd9\\\n\\x48\\x82\\xda\\xa6\\x9c\\xe7\\xae\\x99\\x44\\x4e\\x7c\\xcd\\x3d\\x91\\x2a\\xa3\\\n\\x47\\x94\\x14\\xbe\\x91\\xd0\\x44\\x6e\\x4c\\xed\\x62\\xd4\\xdb\\xc9\\x91\\x2b\\\n\\xc9\\xd4\\xc2\\x34\\xc0\\x05\\x4e\\x3d\\x61\\xd3\\x01\\x37\\x92\\x34\\xb8\\x82\\\n\\x9b\\x1b\\x75\\xd4\\xe0\\x44\\x1a\\x1f\\x67\\x9d\\xb1\\x0d\\x84\\xae\\x38\\xde\\\n\\xd2\\x25\\x36\\x07\\x4e\\xb5\\x0a\\x78\\xd6\\x24\\x03\\xb4\\x25\\x08\\x8f\\xab\\\n\\x98\\x7b\\x16\\x43\\x35\\x4b\\x50\\x69\\x35\\x80\\x47\\x3b\\x82\\x45\\xc2\\xa1\\\n\\x9f\\xfc\\xe0\\x12\\x06\\xcb\\xe3\\xe5\\xf7\\x12\\xae\\x36\\x39\\x21\\x7d\\x1f\\\n\\xe5\\x37\\xe9\\xfd\\xa3\\xdc\\xaf\\xb9\\xbd\\x90\\xb0\\x65\\x7d\\xa1\\xe4\\x32\\\n\\xde\\x5c\\xf2\\xce\\x4f\\xf6\\x55\\xd6\\xeb\\x56\\xed\\xf6\\x4b\\x70\\x3c\\xc6\\\n\\x7c\\xf1\\x42\\x09\\xba\\x6c\\xdb\\x4e\\xaf\\x70\\xfa\\x6e\\x63\\x20\\xac\\x9d\\\n\\xb2\\x63\\xbc\\x56\\xa6\\xd7\\x46\\xaf\\x45\\x2f\\xe4\\x95\\x7e\\x09\\x45\\xe5\\\n\\x43\\x0b\\xac\\xa3\\x5d\\xd2\\xa2\\x82\\xb2\\xef\\x56\\x9b\\x31\\xf3\\x4c\\xc3\\\n\\x23\\x78\\x9e\\x38\\xe4\\xda\\xa0\\x6d\\xde\\x76\\x69\\xdd\\x37\\xd7\\xc6\\x4e\\\n\\xac\\x7f\\x3a\\x57\\xf7\\x58\\x50\\x07\\x98\\xf1\\x76\\xb2\\x6a\\xcc\\x16\\x80\\\n\\x15\\x8b\\x18\\x7d\\xa1\\x2e\\x86\\xb9\\x1a\\xd5\\x7f\\xb9\\xf7\\x47\\x6e\\x87\\\n\\x1e\\xfe\\x1a\\x32\\x67\\xdb\\x52\\x1e\\x15\\x08\\xe7\\x62\\x41\\x92\\x8f\\x3b\\\n\\x65\\x54\\xc6\\xca\\x6f\\xab\\x75\\xd1\\x41\\xc5\\xa8\\x65\\x09\\x4f\\xe6\\x4d\\\n\\xb5\\xde\\xb2\\xae\\xcd\\xc8\\x17\\xba\\x85\\x61\\xad\\x21\\x53\\xa3\\x94\\x79\\\n\\x72\\x7e\\xf1\\xfc\\x06\\xa0\\x73\\x41\\x6b\\xb7\\x97\\xa8\\xd2\\xdb\\x7a\\x31\\\n\\x3d\\xc0\\x26\\xad\\xd6\\x0b\\x67\\xb8\\xeb\\x44\\xa9\\x3b\\xb9\\x73\\xaf\\xb3\\\n\\xdd\\xdf\\xa8\\xfc\\x79\\x57\\x56\\x52\\xce\\xbb\\x73\\xe3\\xcc\\x5f\\xe7\\x33\\\n\\x89\\x4e\\x8e\\x70\\x9e\\xc7\\x67\\xbb\\x90\\x73\\xa9\\x81\\xf2\\x23\\x07\\x4b\\\n\\xe4\\xb4\\x8d\\x14\\x3c\\xa5\\xc5\\xb9\\x0d\\x41\\xb4\\x9e\\x95\\xd5\\x33\\x9c\\\n\\xa1\\x38\\x79\\xc3\\x4d\\xca\\xd5\\x77\\x35\\x79\\x44\\x44\\xe8\\xf5\\x02\\xec\\\n\\x7d\\x48\\x24\\x1e\\xdf\\xec\\x0f\\x06\\x2b\\x9d\\x52\\x19\\xa3\\x39\\x83\\x35\\\n\\x8a\\xf7\\x15\\x8d\\xc7\\xac\\xfd\\x3d\\x87\\x6e\\xac\\xd0\\x5f\\xae\\x20\\x5e\\\n\\x98\\x2e\\x5e\\x07\\x42\\x60\\x67\\x5e\\xba\\xb7\\x94\\x44\\xaf\\x15\\x54\\x95\\\n\\x49\\x2e\\x74\\x52\\x32\\x69\\xb2\\xb6\\x43\\x7e\\x7d\\x79\\xe0\\x9a\\x24\\x3b\\\n\\x47\\xb2\\x97\\x8b\\x73\\xc3\\x2f\\xfa\\xf5\\x77\\x4e\\xa3\\xda\\x60\\xfb\\xbb\\\n\\xeb\\xfb\\xa6\\xba\\xf1\\x9e\\x5d\\x37\\x54\\x5b\\xa0\\xdb\\x94\\xf3\\x2e\\x78\\\n\\xc2\\x58\\x7c\\xe2\\xc3\\xb2\\x27\\x54\\x19\\xb1\\x20\\x30\\x3e\\x79\\x4a\\x8a\\\n\\xa9\\x8d\\x4d\\x7d\\xfb\\xb6\\x19\\x43\\xb7\\x28\\xe4\\x2a\\xa8\\x31\\xaa\\x6e\\\n\\x88\\x50\\x8d\\xfd\\x09\\xbf\\xf7\\x5e\\x45\\xf5\\xef\\x24\\x25\\x7d\\x45\\xf6\\\n\\x96\\x9a\\x20\\x2c\\xa5\\xe7\\x17\\x71\\x04\\x9f\\xdb\\x34\\x26\\x2d\\x1f\\x88\\\n\\xb0\\xce\\xfe\\x2e\\x91\\xfb\\x5b\\xf9\\x8a\\x3f\\xa6\\x4b\\xc0\\x28\\x09\\xe4\\\n\\xda\\xf0\\x23\\x07\\xa1\\x3f\\x4d\\x4c\\xef\\x53\\x99\\x7f\\x3c\\xe6\\x14\\xf6\\\n\\xb0\\xae\\x64\\xb6\\x5b\\x94\\xcd\\x2d\\xc0\\x46\\x24\\xdf\\x76\\xa9\\xba\\xb9\\\n\\x2b\\x5a\\x5d\\x5e\\x34\\xad\\x79\\xeb\\x40\\x1b\\x98\\x32\\x59\\xe8\\x91\\x47\\\n\\x40\\x9e\\x84\\x03\\x38\\x54\\x78\\x7d\\xe5\\x64\\xeb\\x62\\x2a\\x0d\\x06\\x99\\\n\\x97\\x41\\xf9\\x0b\\xa7\\x7c\\x6d\\x76\\xed\\x39\\xed\\xbe\\x94\\xb4\\x97\\x62\\\n\\x3e\\xf5\\x65\\x14\\xf1\\xbb\\x3b\\xa6\\x6a\\xca\\xe6\\x3b\\x6d\\xc8\\x9c\\x6f\\\n\\x99\\x7d\\x57\\x35\\x39\\x66\\x84\\xea\\xdd\\x5d\\x76\\x20\\x77\\xb7\\x7b\\xa2\\\n\\xa1\\x6d\\x48\\x70\\x3a\\x06\\xd5\\x17\\x0d\\x49\\x95\\x14\\x3f\\x04\\xc8\\xf3\\\n\\xb7\\x69\\xe5\\xee\\x47\\xc3\\x18\\x75\\x07\\x18\\x5e\\x42\\x69\\xba\\xa8\\x83\\\n\\x60\\x10\\xca\\x3f\\x2e\\x32\\x56\\xf4\\x58\\x30\\x63\\xfe\\x9e\\x35\\xd3\\x96\\\n\\xca\\xe7\\x60\\xd8\\xd3\\x03\\x36\\xdf\\x7f\\x74\\xae\\x93\\x6f\\x42\\xab\\xbc\\\n\\xe6\\x1a\\x9d\\x35\\x2b\\xb9\\x8d\\xfc\\xde\\x0c\\x1d\\xa7\\x60\\x5e\\xdc\\x56\\\n\\x41\\xe0\\x5c\\xc8\\x6d\\x27\\xd3\\x34\\x00\\x9a\\xb8\\xa4\\xce\\xf8\\x4f\\x26\\\n\\xf2\\x41\\x1a\\xd5\\x55\\x62\\x60\\xec\\xf3\\xaf\\x3c\\x45\\x42\\x76\\x6a\\x0c\\\n\\xcb\\x4b\\xd6\\x2b\\xb4\\x16\\xdf\\x26\\x47\\x58\\xfd\\x23\\x31\\x2a\\x1c\\xac\\\n\\xc8\\x22\\xba\\x8a\\x9e\\xca\\x00\\x0e\\xcd\\x45\\xcd\\xbe\\x06\\xc8\\x63\\x26\\\n\\x59\\x0b\\x57\\x16\\x49\\x37\\xce\\x45\\x05\\xdc\\x62\\x93\\x42\\x41\\x69\\x94\\\n\\xe8\\xbb\\x8f\\x83\\x30\\xf9\\xff\\x00\\xba\\xbe\\xb6\\x51\\x62\\x36\\x7c\\xf3\\\n\\x52\\x1a\\xbf\\xac\\x31\\x03\\xd2\\xb1\\x6e\\xc3\\xdd\\x64\\xff\\x00\\x3e\\x01\\\n\\xc0\\x93\\x27\\x95\\xc2\\x42\\xdd\\x62\\x5b\\xa4\\x8a\\xc2\\x4f\\xc7\\x6d\\x1f\\\n\\x87\\x79\\xae\\x14\\x1f\\xe6\\xde\\x79\\xe0\\x47\\x2c\\xd6\\xce\\x5f\\xa1\\x4c\\\n\\x3f\\x30\\x7f\\x44\\xb2\\xec\\x1a\\x2e\\x7c\\x91\\x29\\x44\\x16\\xf5\\x2e\\xb6\\\n\\xc4\\xb4\\xd0\\x8c\\x4e\\x19\\x63\\x9e\\xcc\\xd8\\x1b\\x43\\x29\\xf6\\x8b\\xd6\\\n\\xc7\\xa2\\x07\\x2b\\x03\\x15\\x71\\xde\\x57\\x48\\x9a\\x33\\x8c\\xf8\\xc9\\x9d\\\n\\x25\\x8c\\xa9\\x24\\x22\\x55\\x02\\x17\\x5a\\x43\\x0e\\x49\\x6b\\xec\\x42\\xc2\\\n\\x12\\x2c\\xce\\x1c\\xd3\\x65\\xa8\\x74\\xb9\\x36\\x7b\\x45\\xa2\\x2b\\x8e\\xca\\\n\\xf5\\x68\\x91\\xef\\x1a\\x14\\x44\\x57\\x06\\x75\\x43\\x5d\\x42\\x65\\x71\\x4e\\\n\\x18\\x9b\\x45\\x1a\\x7a\\x91\\xef\\xbc\\xb7\\xd4\\xbd\\xfe\\x3f\\xde\\x45\\x0f\\\n\\x63\\x6c\\xa1\\x83\\xe7\\xce\\xdc\\x87\\x4b\\xd9\\x1c\\x90\\x36\\x10\\x06\\xe6\\\n\\xb6\\x8e\\xc3\\xfb\\x83\\x97\\xf6\\xfa\\xae\\xcb\\xd9\\x66\\xa4\\x55\\xec\\x73\\\n\\x32\\xb4\\x5c\\xe2\\xd6\\x7e\\x09\\x14\\x8d\\x1a\\x58\\x8d\\x4f\\xce\\x7d\\x03\\\n\\xa3\\x95\\xe5\\xb8\\x85\\xbb\\xd5\\xab\\xf4\\xb5\\xce\\x00\\x62\\x02\\x69\\x15\\\n\\x68\\x5a\\xac\\xeb\\xe7\\xb3\\x99\\x05\\xa5\\x77\\xac\\x4b\\xaf\\x7d\\xb0\\x9c\\\n\\xdc\\x5b\\x8d\\xdc\\x1d\\x0e\\xbd\\x86\\x9b\\xdc\\x63\\xca\\xf9\\xf9\\x99\\x20\\\n\\x68\\x4e\\x95\\xbe\\x45\\x68\\x5b\\xad\\x79\\xa6\\x3d\\x09\\x80\\xe7\\xde\\xe1\\\n\\xed\\xa9\\xbf\\x33\\x1a\\x8d\\xf8\\xc2\\xab\\x99\\x8f\\x4f\\x12\\x53\\xc9\\xf6\\\n\\x02\\x62\\xb6\\xb7\\x6c\\xbb\\x41\\x37\\xcd\\x26\\xf1\\xba\\x4d\\x1f\\x1c\\xee\\\n\\x66\\x56\\xf1\\x57\\x4b\\xde\\x33\\x91\\x25\\xca\\x49\\x5c\\x67\\x0b\\x48\\x07\\\n\\x9a\\x1d\\x0c\\xba\\x2a\\x21\\x10\\x19\\x96\\x5e\\xa8\\xf1\\x91\\x81\\x34\\xb9\\\n\\x34\\x74\\x35\\x8f\\x12\\xfe\\xc9\\x5a\\x42\\x2e\\xcd\\xa7\\x47\\xf9\\x61\\xc3\\\n\\x11\\xee\\x5a\\x5e\\x52\\xed\\x0d\\xc2\\x3b\\x1d\\xa9\\x89\\xbe\\x0f\\xe0\\x17\\\n\\x10\\x73\\x9e\\x4d\\xa7\\x36\\xba\\xb2\\xf2\\x19\\x45\\x78\\x35\\x02\\x7c\\x54\\\n\\xea\\x9e\\x2f\\x1c\\x75\\xb2\\x1c\\x2f\\x2c\\xe1\\xb4\\xe4\\x70\\xc0\\xfb\\xd4\\\n\\x2c\\x36\\xce\\xea\\x50\\xba\\xdc\\xa5\\x35\\xaf\\xc8\\x6c\\xf4\\xac\\x88\\xdb\\\n\\x5d\\x57\\x3a\\xaa\\x88\\xae\\x7c\\x54\\x94\\x43\\xda\\x3b\\x0d\\xc6\\x8a\\xaa\\\n\\x3c\\xc2\\x8c\\xf5\\x8f\\x4f\\xa8\\xba\\x4e\\xe1\\x50\\x31\\xc8\\x5e\\x2f\\xcb\\\n\\xc7\\x54\\xe4\\xc8\\x5d\\x05\\x64\\x70\\x2d\\x62\\x7e\\xfe\\x3a\\xba\\xf8\\xdc\\\n\\x82\\xf9\\xb0\\xae\\x6f\\x4b\\xed\\x51\\xe4\\x9b\\x90\\x98\\xed\\x54\\x7a\\x4e\\\n\\x42\\xac\\x67\\x91\\x04\\xf6\\x97\\xd1\\xf5\\x46\\x20\\x1d\\x09\\x84\\x4a\\xa2\\\n\\x79\\x60\\x26\\x84\\x51\\x49\\x3b\\x2d\\xcb\\x64\\xe9\\x19\\x16\\x24\\xb1\\xf4\\\n\\x39\\xde\\x46\\xb8\\x52\\x0e\\x85\\x52\\xf7\\x4e\\x66\\x78\\xd5\\x69\\x58\\xc7\\\n\\xaf\\xdf\\xb1\\xd4\\xac\\x1c\\x30\\x48\\x06\\xdb\\x56\\x73\\x4c\\xb6\\x7c\\x7b\\\n\\xb7\\xa6\\x16\\xb2\\xbe\\x77\\xc8\\x5a\\x22\\x0a\\xef\\xe9\\x4d\\x1a\\xba\\xc5\\\n\\xa8\\xbc\\x92\\x7e\\x0a\\xbc\\x9b\\x2e\\x9c\\x94\\x86\\xe3\\x67\\x91\\xc1\\x57\\\n\\x7a\\xac\\xb0\\xcb\\x55\\x63\\xab\\x3c\\x5e\\xe7\\xc8\\xb2\\xf4\\x9a\\xd5\\x7a\\\n\\x59\\xec\\x61\\x7c\\x47\\xd6\\x83\\x55\\x19\\x20\\x91\\xc4\\xb7\\x2c\\x6a\\xa8\\\n\\x73\\x6d\\x3a\\x83\\x4b\\x78\\xf8\\xdf\\xc1\\xd6\\x58\\xd5\\xe6\\x4c\\xb6\\xcb\\\n\\x85\\xb4\\x63\\xfe\\x3d\\xc7\\x65\\xa8\\x1e\\xd7\\x5e\\x01\\xbb\\x15\\x8c\\xf9\\\n\\x0d\\xfb\\xe3\\x6c\\x8e\\x23\\x91\\xa1\\x7c\\xb5\\x5c\\xda\\xf9\\x65\\xb7\\x9d\\\n\\x65\\x39\\x09\\x61\\x93\\x2b\\xf5\\x5e\\x33\\x7b\\x30\\x2e\\xfd\\x4d\\x3d\\x3a\\\n\\x26\\x6a\\xc0\\x3f\\x72\\x83\\x3a\\xba\\xe6\\xf4\\x17\\xbb\\x0c\\xfe\\xba\\xcf\\\n\\x67\\xc1\\x72\\xa5\\x88\\xe3\\xce\\x92\\xea\\x1c\\x77\\x6e\\x2d\\xf6\\x6d\\xf3\\\n\\xad\\xcf\\x71\\x1e\\x8d\\xb5\\xe4\\x42\\xfa\\xfc\\x59\\x99\\xaf\\xd7\\xca\\x8c\\\n\\x7a\\x9d\\xd5\\x98\\xc1\\xec\\x3b\\xc4\\xb2\\xae\\xbb\\x72\\x6a\\x8c\\xf4\\xd4\\\n\\x8d\\x79\\xd0\\x10\\x83\\x94\\x9c\\x5f\\x34\\x13\\x41\\xa2\\x22\\x51\\x0c\\x0d\\\n\\xb7\\x19\\x48\\x74\\xfd\\x58\\x64\\x43\\x99\\xae\\x5c\\xe6\\x0d\\x2a\\xc1\\xb7\\\n\\xa9\\x67\\x1a\\xe4\\xa7\\xd8\\x2a\\x91\\x75\\x9e\\x82\\x85\\x04\\x5b\\xbf\\x81\\\n\\x74\\x35\\x9b\\x6a\\xd8\\xeb\\x4d\\x1f\\x6a\\x60\\x9f\\xe9\\x8a\\xa1\\x01\\x6b\\\n\\x77\\x44\\xa8\\x7c\\x25\\xc8\\x38\\xbc\\xd4\\xc0\\x75\\x66\\xe5\\x99\\x35\\xab\\\n\\x16\\xc4\\x24\\x66\\x7c\\xd8\\x59\\xd7\\xcf\\x6e\\x45\\x9b\\x89\\xe7\\xa1\\x5a\\\n\\x60\\x54\\x4e\\xeb\\xd2\\x6b\\x15\\xa9\\x39\\xee\\x9e\\xd5\\x4c\\xe9\\x09\\x2a\\\n\\x36\\x84\\x5f\\xd6\\x80\\x52\\x64\\xef\\x28\\x11\\x9a\\xe7\\x66\\x55\\xdb\\x65\\\n\\x6d\\x6e\\x65\\x04\\x1e\\xe9\\x81\\xdc\\xc1\\x78\\x7b\\xf2\\x00\\x2b\\x57\\xec\\\n\\xda\\xda\\x0b\\x49\\x64\\x01\\xfb\\x59\\x79\\x33\\x98\\x1d\\x05\\x2a\\xae\\x6b\\\n\\x3d\\xe2\\x10\\x5f\\xcd\\xda\\x00\\xc8\\x56\\x6a\\x7c\\x7d\\x65\\x51\\x18\\x4c\\\n\\x5a\\xef\\x81\\x1c\\xb0\\x6b\\x3b\\xae\\xb6\\xbf\\x41\\xf4\\x84\\x96\\x1a\\xf5\\\n\\xfc\\x58\\x0d\\xd0\\x13\\x11\\xa0\\x2c\\x50\\x97\\x45\\xb6\\x2b\\x4f\\xa1\\xae\\\n\\x90\\x5a\\x98\\x80\\xdd\\x50\\x8e\\x45\\x80\\x3a\\x57\\xa3\\xda\\x2a\\xa0\\x3c\\\n\\x06\\xe3\\x77\\x5e\\xe8\\x6b\\xdb\\x8e\\x8e\\x22\\x9c\\xfa\\x87\\x87\\x2a\\xd9\\\n\\x17\\xc8\\xcc\\xa7\\x14\\x6f\\x61\\x52\\xf1\\x22\\xf9\\x03\\x79\\x02\\x72\\xcf\\\n\\xdf\\x15\\x93\\x5c\\xb0\\xe1\\x29\\xdd\\x49\\xb7\\x63\\xd6\\x6c\\x2c\\x82\\x36\\\n\\x93\\x61\\x2c\\x74\\x10\\x54\\x0c\\x4c\\x05\\x74\\xab\\x6a\\xa1\\x78\\x21\\x1d\\\n\\x40\\x7c\\x33\\x17\\x75\\x67\\x18\\x0f\\xa2\\xf8\\x29\\xb9\\xb0\\x08\\x2c\\x41\\\n\\xd4\\xbb\\xc6\\x2d\\xe1\\x12\\xdd\\xe7\\x97\\x77\\xf2\\xcf\\x35\\xd5\\x62\\x7f\\\n\\xdf\\x64\\x29\\x7b\\x93\\xf5\\x4c\\xde\\xef\\x1d\\xe0\\x54\\xba\\x18\\x18\\xcc\\\n\\xfe\\x85\\x57\\xcc\\x5a\\xd0\\x05\\xf9\\x4a\\xcb\\x1f\\x29\\xe5\\x1b\\x96\\x3c\\\n\\xad\\xb2\\xcf\\x5e\\xaa\\x93\\x58\\xbd\\xa5\\xb1\\x5e\\x70\\xd6\\x64\\xb9\\xe6\\\n\\x55\\x2f\\x01\\x5a\\xd4\\x3e\\x10\\xcc\\xb4\\x61\\x52\\x76\\x82\\x30\\x9e\\xeb\\\n\\x7c\\x40\\xa4\\x3b\\x3e\\x08\\xe5\\x59\\xd3\\xc5\\x6d\\x7a\\xd2\\x8a\\xcc\\x0d\\\n\\xb9\\x20\\xed\\x96\\x5d\\xe4\\x25\\xb9\\x67\\x9a\\x25\\x75\\x21\\x30\\x60\\x56\\\n\\x07\\xb1\\xa9\\x6a\\x62\\xf0\\xe3\\x8b\\x71\\xff\\x00\\x8b\\xfe\\xa2\\x0f\\xe8\\\n\\xa9\\xa5\\x58\\xbc\\x9c\\xe2\\xd1\\x80\\x63\\x83\\xc8\\x31\\x44\\xa8\\x3a\\x56\\\n\\x75\\xc9\\x9c\\x4c\\xc2\\xa8\\x78\\x27\\x56\\x5d\\xe1\\xed\\x3a\\x6a\\xbb\\xa6\\\n\\xfc\\x0c\\x9c\\xc5\\x33\\x1d\\x35\\x65\\xbe\\xf9\\xd0\\xa7\\xf5\\x44\\x17\\x85\\\n\\xee\\xc0\\x9e\\xdf\\x5a\\x59\\x16\\x62\\xd2\\x4e\\x1a\\xf2\\x85\\x8b\\xe5\\x0f\\\n\\x1b\\x2b\\xea\\xfa\\x38\\xd3\\x7a\\x80\\x2f\\x40\\xcc\\x52\\xb4\\xf3\\x05\\x80\\\n\\xd0\\xc1\\xe4\\x6f\\x19\\xf9\\x63\\x7d\\x96\\xb7\\x91\\x35\\x95\\x5d\\x3c\\xf9\\\n\\x48\\x8b\\xea\\x76\\x8b\\xe7\\xb9\\xac\\x39\\xb2\\xd9\\x5a\\xc5\\xa5\\x0a\\xcd\\\n\\xbf\\x52\\xd0\\x7e\\xd5\\xf9\\x4f\\x31\\x7a\\x18\\x1b\\x9d\\x02\\xf6\\x80\\x9f\\\n\\x12\\xac\\x92\\x22\\xfe\\x02\\x8e\\x72\\xae\\xcf\\xc8\\x43\\xe9\\xb9\\xd9\\x9a\\\n\\xb1\\xfe\\x82\\x11\\xdc\\x9b\\x27\\x9d\\x7f\\x71\\x0b\\xdf\\xad\\x5d\\x33\\x5c\\\n\\x50\\x29\\x1f\\xbf\\x46\\xd3\\x37\\x92\\xad\\xce\\x73\\x01\\x21\\x6b\\x18\\x4a\\\n\\x3b\\x6f\\x38\\xc3\\xf8\\x72\\x54\\x97\\xd9\\xc6\\x89\\xe6\\xfe\\xae\\xbb\\x5f\\\n\\xcf\\x3f\\x6f\\x67\\xb2\\xce\\x90\\x58\\xf6\\x89\\xe7\\x4a\\xb7\\x43\\x7b\\xab\\\n\\x40\\xdf\\xe4\\xe2\\x9f\\xab\\xc7\\x84\\x07\\x9e\\xdc\\x14\\x24\\xb4\\x2f\\x17\\\n\\x4d\\x5f\\xa0\\x75\\x7a\\x5b\\x41\\x28\\xef\\x0a\\xfd\\x79\\x19\\x34\\xfb\\x7d\\\n\\xf0\\xdf\\x46\\x38\\xe1\\xee\\x7d\\xe5\\x04\\x7c\\xd3\\x06\\x4d\\xa5\\x51\\x2d\\\n\\xbc\\xe1\\x7b\\x52\\xc2\\xc7\\x63\\x61\\x78\\xe6\\x90\\xa4\\xef\\x29\\xa4\\xc4\\\n\\x9b\\x50\\xbe\\xcb\\x8e\\x94\\xa4\\x4e\\xc0\\xf8\\xec\\x54\\x14\\xb1\\xfa\\xdb\\\n\\x26\\xc0\\x4b\\x27\\x15\\x46\\x62\\xc0\\x46\\x7b\\x44\\xad\\x7d\\xa6\\x5d\\x39\\\n\\x7a\\x35\\x7c\\x6b\\x8d\\x46\\xc9\\xfa\\x04\\x92\\x57\\x2b\\xa7\\x57\\x41\\xa8\\\n\\x37\\xe8\\x9b\\x4e\\xd2\\xa8\\xd5\\x43\\x53\\xdd\\x47\\x15\\x4e\\x54\\xc6\\xd6\\\n\\xcb\\x5c\\x44\\xa1\\x2c\\xcf\\x82\\xa3\\xfe\\xe6\\x5c\\x9e\\x8a\\x41\\xbb\\x55\\\n\\xd6\\x59\\x4c\\xe8\\x69\\x97\\x1a\\xbc\\xa7\\xba\\x41\\x7b\\x64\\x36\\x0d\\xea\\\n\\x9e\\x75\\x75\\x7f\\x5b\\x65\\x19\\x4b\\x5e\\x64\\xb0\\x3d\\x8c\\x9e\\xcc\\x16\\\n\\x0b\\xda\\xa2\\x54\\x56\\x0c\\x77\\xee\\x9f\\xe9\\x21\\xf9\\xe0\\x3b\\x72\\x7b\\\n\\xee\\x82\\x30\\x79\\x72\\xa1\\x1f\\x54\\x7d\\xd2\\x3e\\x42\\xbe\\x5f\\x58\\x32\\\n\\x45\\x80\\x41\\xad\\xa6\\xd5\\xd7\\x42\\x80\\xf5\\x5a\\x87\\x0e\\x27\\x06\\x09\\\n\\x82\\x63\\xa4\\x99\\x64\\x1a\\x5f\\x7d\\xf9\\x7c\\x16\\xfc\\xf0\\x60\\x6d\\xfe\\\n\\xc3\\xa3\\x34\\x96\\xd7\\xa4\\x13\\x7a\\x17\\x54\\x2b\\x79\\x61\\x8b\\xfc\\xaf\\\n\\xee\\x11\\xba\\x67\\xba\\xac\\x76\\xf7\\xf5\\xff\\x00\\xf7\\x9f\\x8f\\x47\\x96\\\n\\xab\\xba\\x57\\xed\\xf5\\x4b\\xee\\x36\\x57\\xac\\xba\\x39\\xf3\\x8e\\xbf\\x5a\\\n\\x9f\\xd7\\xd2\\x7b\\xa5\\xf4\\x7b\\x55\\x1f\\x68\\x39\\xa6\\x87\\xe7\\xe4\\x9a\\\n\\x3c\\x25\\xf3\\x1d\\x39\\x89\\x1a\\xc3\\xc3\\x18\\xae\\x60\\x2f\\x62\\xef\\xa7\\\n\\x59\\xe4\\x76\\x27\\xd7\\x18\\xc2\\x6c\\x23\\x18\\xe0\\x0e\\x83\\xf2\\x59\\xec\\\n\\xeb\\x5a\\xe1\\x8b\\x76\\x67\\xb7\\xd5\\xcb\\xd8\\x63\\xf0\\xf6\\xe4\\x5b\\x33\\\n\\xd0\\xf1\\x3c\\x9f\\xdc\\xd7\\xea\\x93\\xaa\\x5d\\xdd\\xd2\\x53\\x8c\\x88\\xb5\\\n\\x74\\xdf\\xa9\\xf4\\xd0\\xeb\\x6f\\xd0\\x87\\x3e\\x2f\\x85\\xc0\\xb0\\xad\\xb3\\\n\\xe6\\xf2\\x25\\xa1\\x53\\x30\\x9b\\x48\\x9f\\x69\\xbd\\xa9\\xc1\\xcc\\xb1\\xfa\\\n\\x5f\\x2f\\xcf\\x09\\xe1\\x47\\x52\\x25\\x52\\x8b\\xe5\\x33\\x5d\\x30\\xae\\xdf\\\n\\xa5\\x83\\x23\\xe4\\xcc\\x3c\\xd8\\xee\\x9f\\x03\\xfc\\xaa\\x90\\x82\\x52\\xf7\\\n\\xbe\\x16\\x36\\x79\\x4b\\x99\\x21\\x34\\xc7\\xf4\\x0a\\x66\\x8e\\x21\\x60\\xaa\\\n\\x5f\\xaf\\x43\\x87\\xbc\\xb7\\xf3\\x5e\\xf6\\x85\\xb0\\x55\\xe7\\x52\\xe9\\x55\\\n\\xdd\\xdf\\xaf\\x97\\xce\\xd7\\x05\\xad\\x94\\xf9\\x9c\\xc1\\x62\\x62\\x33\\x13\\\n\\x11\\x2f\\xaf\\x04\\x9c\\x41\\x5e\\x0d\\x41\\x8e\\xc1\\xea\\x23\\x93\\x6a\\x57\\\n\\xbe\\xd4\\x47\\xcb\\x5a\\xbe\\xf6\\x94\\x8f\\x97\\x73\\x44\\x03\\xe8\\xa4\\x1a\\\n\\x53\\x2a\\x2f\\x1e\\xb4\\x61\\xbf\\x95\\x3a\\x18\\x13\\x5d\\x49\\x0a\\x46\\x87\\\n\\x25\\x89\\x35\\x4e\\x7f\\x33\\xfc\\xbe\\x36\\x05\\xf7\\xff\\x00\\x23\\x3c\\x36\\\n\\xe3\\x90\\xda\\x9f\\x3a\\xdd\\xe4\\x78\\xfb\\xfb\\x19\\xd4\\x40\\xe7\\xcc\\xf6\\\n\\x92\\x5b\\x69\\x4e\\x80\\x25\\x83\\x38\\x84\\x26\\x13\\x54\\x43\\x33\\xa6\\xf0\\\n\\x9c\\x92\\x08\\xde\\xa9\\x65\\xb2\\x0a\\xb3\\x43\\x4e\\xbb\\x9a\\xfa\\x78\\xac\\\n\\x15\\x98\\x03\\xb5\\xd8\\xd3\\xcd\\x31\\x66\\xdc\\x23\\x70\\xb2\\xfc\\x7b\\x55\\\n\\x28\\x43\\x8e\\x67\\x2d\\xc0\\xda\\x6d\\xd2\\xaf\\x4c\\xb6\\x9c\\xaf\\xab\\x99\\\n\\x9d\\x23\\xdd\\x13\\xdf\\x49\\xcd\\xea\\x19\\xa3\\x99\\x06\\x3a\\xdd\\x4f\\x77\\\n\\xd1\\x3e\\xd9\\xc5\\xbf\\xbd\\x9a\\x04\\xc3\\x66\\x8d\\x3b\\x99\\xd6\\x4c\\x4c\\\n\\xdd\\x91\\x00\\x52\\x64\\xe6\\xb3\\xa7\\x3b\\xe6\\x9d\\x97\\x8b\\x35\\xca\\xfd\\\n\\x2b\\xaa\\xa5\\x1c\\xc0\\x21\\xfa\\xa2\\x03\\x50\\x11\\x28\\xb4\\x43\\xd6\\x62\\\n\\x77\\x85\\x12\\xf1\\x80\\x55\\x6d\\xfa\\x08\\x0c\\x41\\xc9\\xae\\xf4\\xca\\xca\\\n\\x59\\x69\\x87\\x59\\x43\\x81\\x69\\x0c\\x48\\x45\\x9b\\x29\\xa7\\x05\\x6e\\xa3\\\n\\xd1\\x5b\\xd6\\xda\\x7d\\xd8\\x2f\\xe7\\xde\\xf7\\xf6\\xb3\\x35\\x7d\\xda\\x91\\\n\\xa4\\x9f\\x22\\x39\\x02\\xb5\\x4e\\xd4\\x4e\\x75\\x24\\xfc\\x6e\\xe7\\xb0\\x7f\\\n\\x41\\x89\\xd5\\xfc\\xc1\\xc8\\x61\\xda\\xc0\\x73\\xa3\\x2d\\x1c\\x2c\\xcd\\x88\\\n\\x68\\xd2\\x47\\x8e\\x28\\x18\\xe4\\x13\\x54\\x10\\x71\\x63\\x93\\xd7\\xe7\\xe1\\\n\\x66\\xb2\\x4f\\x27\\x38\\x88\\x7a\\x93\\xdb\\x38\\xb5\\x0f\\x62\\x6d\\x32\\x41\\\n\\xd9\\xf6\\x7d\\xf6\\xd9\\x94\\x9c\\xb4\\x66\\x2b\\xf5\\x9a\\x95\\xbf\\x47\\xbe\\\n\\x4e\\xcc\\x05\\x8f\\x8c\\x2d\\x32\\x67\\xe9\\x60\\x7a\\xce\\x38\\x11\\x54\\xe0\\\n\\x4a\\x89\\x8e\\xfa\\xa3\\x28\\x72\\xde\\x6f\\x07\\x1c\\x05\\xe3\\xc1\\xeb\\x3a\\\n\\x12\\x4f\\x65\\xd5\\x67\\x0b\\xa0\\xd9\\x4d\\x35\\x94\\x8e\\x0a\\xdc\\x62\\xca\\\n\\x15\\x87\\x38\\x50\\x09\\xb5\\x6d\\xa5\\xcd\\x73\\xf0\\x7b\\x6d\\x12\\x19\\x5e\\\n\\x95\\x5e\\xad\\xe3\\x90\\x81\\xbb\\x62\\x2c\\xcf\\xba\\xd3\\x29\\xdc\\xad\\xf5\\\n\\xec\\x79\\x53\\x7f\\x63\\x46\\x95\\x65\\x1d\\x7d\\x85\\xa8\\x5d\\xdd\\x84\\x06\\\n\\x83\\x74\\xe4\\xb4\\x7a\\x90\\xdf\\x33\\x85\\xa8\\xf5\\x14\\xe3\\x45\\xcf\\x47\\\n\\xcf\\x56\\xf1\\x20\\xaf\\x73\\xc6\\xb7\\x54\\x42\\x77\\xd0\\xfd\\x01\\x1d\\xa3\\\n\\x9a\\xd6\\x2c\\x8b\\xaa\\x56\\x31\\xcd\\x9b\\x92\\x19\\x55\\x23\\xfa\\xb8\\xae\\\n\\xb7\\x48\\x67\\xa8\\xb9\\x33\\xd0\\xab\\xa3\\xc7\\xa0\\xa1\\x22\\xdd\\xac\\xb2\\\n\\x26\\xea\\xc2\\x05\\xcc\\x18\\x9d\\x49\\xc6\\xa3\\x75\\x00\\xfd\\xd1\\xd9\\x40\\\n\\x19\\x5f\\x16\\x6b\\x21\\x09\\x2d\\x20\\xc9\\x41\\x65\\x4c\\x00\\xcc\\x53\\x29\\\n\\x57\\xce\\x49\\x55\\xf3\\x3e\\x75\\x4e\\xf1\\x72\\xfd\\x71\\x2d\\x1b\\x44\\xb5\\\n\\x9d\\x3c\\x5a\\x7b\\x58\\x55\\x70\\x4c\\xac\\x72\\x32\\x14\\x5a\\x76\\x3e\\x7b\\\n\\xd1\\xa5\\xf8\\x1b\\x59\\x42\\x3f\\xe8\\x0a\\x5d\\xb1\\xca\\x71\\x25\\xaa\\xeb\\\n\\x38\\xec\\x81\\x7b\\x81\\xeb\\x1a\\x71\\xba\\xab\\x67\\x98\\x19\\x5f\\x09\\xeb\\\n\\xd8\\xf6\\x22\\x33\\x88\\x17\\xfa\\xbf\\x0f\\x93\\x7e\\xa3\\xd2\\xd9\\xd6\\xbf\\\n\\x47\\x42\\xb3\\x3e\\x30\\xe0\\xe2\\x44\\x62\\x7d\\xe5\\x6e\\x55\\xe2\\x2b\\xaa\\\n\\xb6\\xc9\\xd5\\x86\\x5c\\xc3\\xcb\\x47\\x54\\xd3\\x6c\\xc0\\x14\\x34\\x2a\\xe5\\\n\\x47\\x8f\\x2d\\x1c\\x0f\\x3f\\xb5\\x3f\\x5a\\xcc\\xfe\\x84\\xed\\x0d\\x28\\xc7\\\n\\x64\\xfa\\x82\\x6e\\x86\\xcb\\x46\\x9b\\xf7\\xc8\\xf1\\x52\\x5f\\xa5\\x36\\x4f\\\n\\xb6\\xfc\\xe5\\xa4\\xb3\\x56\\xb9\\xec\\x02\\x6d\\x1a\\xa8\\x25\\x65\\xa5\\xd4\\\n\\x1c\\xd8\\x23\\x28\\xfa\\xed\\x47\\xb7\\xbf\\x92\\x55\\x87\\xe5\\x8e\\x05\\x2e\\\n\\x1e\\xcc\\x85\\x45\\x59\\x74\\x32\\xf4\\x8d\\xa0\\x44\\x55\\x45\\x8f\\x52\\x2e\\\n\\xe5\\xd7\\x4f\\xef\\xa2\\xd0\\x29\\x63\\x73\\xac\\xf1\\xa2\\xda\\x5c\\x0a\\x86\\\n\\x6c\\x6a\\xf3\\xed\\x53\\x89\\x16\\x41\\x34\\x57\\x0c\\xd6\\xbc\\x07\\x62\\x0d\\\n\\xac\\x35\\x4b\\xe3\\xa7\\x24\\x93\\x9e\\xeb\\x0f\\xc7\\x46\\x1c\\xeb\\xa3\\x4a\\\n\\x25\\xde\\x72\\xba\\xdd\\x11\\x47\\x7e\\x37\\x5f\\xeb\\x17\\x25\\xcb\\x40\\xd5\\\n\\x64\\x4f\\x00\\x51\\xcc\\x94\\x82\\xcb\\xc9\\x90\\x60\\xd7\\x84\\x79\\xd3\\x56\\\n\\x21\\x26\\xba\\x98\\xa6\\xfb\\x12\\xaf\\x2b\\x40\\x2b\\xf1\\x51\\x74\\x84\\x9e\\\n\\x95\\x49\\xd6\\x18\\x61\\xf2\\xd3\\x2b\\x95\\x5c\\x1d\\x18\\xbd\\x03\\x25\\x01\\\n\\x01\\x96\\x38\\xc3\\xef\\x7d\\x21\\x37\\xb5\\x77\\x9b\\x35\\xfa\\xcf\\xa3\\x43\\\n\\x0c\\xed\\xd0\\x6d\\x88\\x09\\x4e\\x21\\x65\\x2b\\xd8\\xfd\\xe0\\x5f\\x08\\xaa\\\n\\xb0\\x29\\x55\\xc1\\x29\\x4e\\x2b\\x13\\xc0\\x74\\x79\\x0c\\x26\\xc4\\x08\\x39\\\n\\xe7\\xc3\\xc5\\xb0\\x0b\\xd5\\x31\\x61\\xe7\\x83\\x15\\x68\\x2b\\xdc\\xf0\\x85\\\n\\xf2\\xe5\\x2b\\x8d\\xac\\x1b\\x40\\xd2\\xf1\\x5c\\xbd\\xb1\\x4d\\x33\\xe1\\xfd\\\n\\xc8\\x79\\x93\\x1b\\xad\\x04\\x31\\x79\\xb6\\x99\\xad\\x92\\x9e\\x22\\xef\\x17\\\n\\x1f\\xa8\\xbf\\x4a\\x73\\x3a\\x09\\x33\\x74\\x52\\x74\\xa4\\x72\\x76\\x0a\\x94\\\n\\x6c\\x6a\\xe9\\x8f\\xd5\\xfd\\x10\\x79\\xda\\xd1\\x97\\xa3\\xf4\\x88\\x06\\x34\\\n\\xd8\\x1e\\x55\\xcf\\x55\\x59\\x0e\\x53\\x5a\\xb9\\x75\\xf3\\xa2\\x08\\x99\\x59\\\n\\xc5\\xb7\\xde\\x3d\\xaf\\x94\\xa9\\xe4\\x2f\\xdc\\x96\\xb2\\x1c\\x29\\xea\\x59\\\n\\x86\\xb2\\x4d\\x2a\\x7f\\x73\\x16\\x2c\\xb7\\x8d\\x37\\xca\\xb8\\xe2\\xcd\\x26\\\n\\x21\\x69\\x56\\xda\\xb2\\xef\\x9c\\xe0\\x2e\\x43\\xeb\\x9e\\xe8\\xb7\\x2c\\x7e\\\n\\xc1\\x0b\\x58\\x9b\\x28\\x67\\x4b\\x7e\\x5e\\xfb\\x45\\x55\\x24\\x0b\\xe6\\xc8\\\n\\x19\\x5a\\xc0\\x6e\\x9f\\x3a\\xd3\\x66\\x98\\x1e\\xa4\\x68\\xb8\\x94\\x9a\\xd4\\\n\\x6b\\xb3\\xce\\xa7\\x2b\\x4c\\x41\\x45\\x15\\x36\\x0e\\x04\\xe1\\xeb\\x6e\\xb9\\\n\\x06\\xaf\\x5e\\x1c\\x48\\x45\\xaa\\x23\\x24\\x71\\xed\\x1a\\xb0\\xa2\\x3f\\x3b\\\n\\xea\\xd1\\x65\\x92\\x25\\xca\\x93\\x1a\\xdc\\xdb\\x4f\\x9d\\x7a\\x4a\\xda\\xe9\\\n\\xb0\\x87\\xec\\xcc\\x93\\xdd\\xaf\\xf3\\xf6\\x3f\\x96\\x7d\\x8e\\x58\\x0d\\x9e\\\n\\xf7\\xc8\\x7a\\xcc\\x23\\xa3\\x7b\\x93\\x4d\\x75\\xdb\\x0d\\xb2\\xf2\\xf1\\xe5\\\n\\x74\\x65\\x79\\xb5\\x55\\xe8\\x05\\xc1\\x1c\\xeb\\x96\\x3a\\x81\\x48\\xfa\\x4a\\\n\\x85\\x4c\\x06\\x34\\x44\\xb6\\x60\\xb9\\x7e\\xe2\\x02\\x07\\x30\\xfe\\xd0\\x64\\\n\\xaa\\xd9\\x28\\xac\\x2f\\xea\\x10\\xda\\x5f\\x64\\xba\\x39\\x21\\x4c\\xf0\\xc7\\\n\\x4e\\x22\\x24\\xa6\\xc6\\x13\\xe3\\x07\\xcb\\xbe\\x8e\\x86\\xab\\xe9\\x1b\\x23\\\n\\x29\\x18\\x7a\\xb4\\xf2\\x68\\x1f\\x7e\\x56\\x42\\x3d\\xc6\\xba\\x08\\x37\\x0e\\\n\\xae\\x2c\\x50\\x43\\xae\\x44\\xbd\\xee\\x28\\x6b\\xdf\\x52\\xe1\\x70\\x31\\xc3\\\n\\xcd\\xa5\\x2d\\x56\\xb6\\x64\\x73\\xc9\\xfd\\x4b\\x76\\xa2\\xe2\\x46\\x96\\x29\\\n\\x68\\xac\\xcd\\x52\\x9d\\x60\\xda\\x8d\\x27\\x29\\x44\\x3f\\x40\\x4c\\x76\\x32\\\n\\x7e\\xc5\\x2a\\xfc\\xec\\xc4\\x48\\x9d\\xc2\\xb9\\x41\\xac\\x98\\x83\\xb6\\x87\\\n\\x4c\\xfd\\xca\\xed\\x86\\x4b\\xa1\\x65\\x61\\xe6\\x29\\xaf\\x9e\\x4a\\x9b\\x72\\\n\\x57\\xea\\xe3\\x7a\\x26\\x9f\\x1b\\x97\\xb1\\x22\\xb8\\x7d\\x73\\xdb\\xf7\\xbd\\\n\\x34\\x44\\xa2\\x57\\x8b\\x9b\\xa7\\x2c\\x28\\xfe\\x7c\\xa9\\x89\\x9f\\xc0\\x09\\\n\\xaf\\x88\\x25\\xda\\x04\\x2f\\xbd\\x90\\x99\\x5e\\x7d\\xb0\\x57\\x20\\x1e\\x37\\\n\\xd0\\xcf\\x44\\xa4\\xa0\\x61\\xc5\\x9b\\x7f\\x01\\x6a\\x32\\xc7\\x57\\x7b\\x22\\\n\\xba\\x9d\\xd6\\x0f\\xf4\\x83\\x44\\xbb\\xea\\xb0\\xff\\x00\\x0c\\x19\\x72\\x92\\\n\\xd8\\xd6\\xfd\\xe8\\x14\\x6d\\x89\\xf4\\x22\\x7c\\x34\\x75\\xe5\\x50\\x82\\x5a\\\n\\xb6\\x93\\x4f\\xd5\\xc6\\xfe\\xe8\\xb5\\x95\\x55\\xf3\\x31\\x06\\x01\\x44\\x7a\\\n\\xfa\\x20\\x1d\\x05\\x68\\xc5\\xd7\\x02\\x7c\\x1b\\xcf\\xf3\\x44\\x47\\x66\\x0c\\\n\\x75\\x82\\x4e\\x5a\\xd3\\x22\\xac\\xe8\\x94\\xf7\\x10\\x36\\xc9\\x80\\x36\\x8d\\\n\\xd6\\xde\\x52\\xf3\\x2c\\xb6\\xc9\\xcf\\x37\\x33\\x61\\x25\\x51\\xe9\\x26\\xbc\\\n\\x06\\x51\\x3d\\xfb\\xa5\\x77\\xfe\\x01\\xae\\xfe\\x2e\\x98\\x36\\x66\\x6e\\x26\\\n\\x35\\x89\\x43\\x7d\\x93\\xcc\\x64\\x48\\xb4\\xa1\\xc0\\x95\\x6a\\x7c\\x45\\x74\\\n\\xc0\\x6c\\x59\\xdd\\x3f\\xa2\\x96\\xdf\\x97\\x51\\x11\\x9e\\x55\\x82\\x4a\\xf3\\\n\\x2c\\xd0\\x3a\\x4f\\x44\\x9b\\x6b\\x57\\x56\\x90\\x7f\\x70\\x4f\\x2c\\xb2\\x75\\\n\\xa8\\x3c\\xb3\\xd9\\xa3\\x71\\x62\\x9e\\xa7\\xc1\\x2d\\xb1\\xdb\\x05\\x0e\\xdf\\\n\\x5f\\xa9\\x3e\\xcc\\x9c\\x1f\\xf7\\xd1\\x1d\\x16\\xf0\\xe0\\xf2\\xc3\\x8c\\xac\\\n\\x54\\xca\\xa7\\x83\\xf2\\xf6\\xcf\\x87\\x25\\xe5\\x15\\xf4\\x36\\xd5\\x94\\xb8\\\n\\x19\\x8d\\xa7\\x9e\\x49\\x5b\\xf5\\x9c\\x6c\\x35\\x12\\x78\\xfd\\x5e\\x47\\x28\\\n\\x03\\x89\\x57\\x5f\\x6b\\xf0\\xa6\\x97\\x38\\x8c\\x70\\xd5\\x21\\xdf\\x3e\\x87\\\n\\x5b\\xd5\\x30\\x22\\xd3\\x27\\x85\\xb6\\x05\\xa5\\x98\\x73\\x16\\x60\\x6f\\x5d\\\n\\x4a\\x83\\xf8\\xa5\\xc1\\xc0\\x67\\x24\\xe9\\x21\\xff\\x00\\x23\\x2a\\xd0\\xce\\\n\\xe5\\xf7\\xbd\\x61\\xec\\xcc\\xc6\\xb1\\x66\\xee\\x46\\xd7\\x20\\xb0\\x35\\x44\\\n\\xc9\\x47\\xee\\xa2\\x24\\xc1\\x07\\x27\\xa9\\xac\\x5a\\x15\\x1e\\xc7\\x99\\x81\\\n\\x6c\\x6c\\x67\\xf9\\xa1\\xa6\\xd0\\xc3\\x21\\x02\\xcc\\x7b\\x3d\\xb3\\x60\\x4c\\\n\\xf0\\x36\\x44\\x40\\xbd\\x6e\\x30\\x21\\xe1\\xea\\x14\\xfa\\xc3\\x37\\xcf\\xbc\\\n\\xb1\\xcb\\xc3\\x3d\\x7d\\xec\\xe1\\x58\\x81\\xdd\\x92\\xc7\\x85\\x3b\\xa5\\xec\\\n\\x2b\\x63\\xb8\\x5f\\xf4\\xcf\\x5a\\x4b\\x08\\x4e\\x19\\x51\\x32\\x21\\x0f\\x31\\\n\\x08\\xfb\\x64\\x45\\x0c\\x0f\\xa8\\xa0\\xaa\\xd0\\xb1\\x0b\\x64\\x83\\xe0\\x4b\\\n\\x0f\\x1c\\xca\\xc8\\xac\\x58\\x4d\\x90\\x22\\x7c\\xd8\\x0f\\x9c\\x0c\\x1a\\x51\\\n\\xca\\x44\\x22\\xc9\\x73\\x35\\xe6\\x59\\x56\\xbb\\xc6\\xbe\\xa0\\x13\\xd6\\x36\\\n\\x60\\x6c\\xb7\\x47\\xaf\\x1c\\xa5\\x9b\\x1d\\x10\\x83\\x16\\xb4\\x0c\\x5b\\x5f\\\n\\x04\\x9d\\xb4\\xcb\\x9b\\xc9\\x28\\x6e\\xd1\\xb2\\x15\\x76\\x7e\\xfd\\x19\\x31\\\n\\xf6\\x88\\x47\\xd5\\x0b\\x9a\\x9d\\xd3\\x46\\xce\\x69\\x9d\\xc6\\x85\\xc3\\xed\\\n\\xca\\xa5\\x23\\x57\\x2a\\xae\\x26\\xb9\\x75\\xfd\\x5a\\x05\\xdf\\x8f\\x3e\\x53\\\n\\xe7\\x1a\\x25\\x40\\xe8\\xe1\\x19\\xdc\\xb1\\xc3\\x2c\\xc5\\xce\\x92\\x03\\x68\\\n\\xdd\\x0a\\x2c\\x15\\x72\\xe7\\x5c\\x3e\\xeb\\x70\\xcc\\x17\\x9f\\x39\\x94\\xe3\\\n\\x7b\\xa0\\x22\\x4d\\xde\\x08\\x0f\\x6d\\xfa\\xe9\\x7b\\x64\\x05\\xf6\\x93\\xcd\\\n\\x53\\xb2\\xe9\\x4d\\x1d\\x71\\xa3\\xec\\x87\\x1b\\xbe\\x74\\xd4\\x4b\\x85\\x9f\\\n\\x3b\\x87\\xad\\x78\\x57\\xd7\\x42\\xd8\\x93\\x81\\x56\\x94\\x7a\\x54\\x2d\\xd1\\\n\\x0a\\x83\\x0f\\x3c\\x75\\xf8\\x13\\xc1\\x63\\xf3\\x75\\xc0\\x0d\\xbf\\x46\\xe5\\\n\\xf4\\xe1\\x83\\x5f\\x9d\\x64\\xed\\x49\\xe9\\xeb\\x70\\x91\\x7b\\x0b\\x32\\xca\\\n\\xed\\xe0\\xdd\\x8f\\x33\\x9e\\xbf\\x5e\\x5c\\xba\\x6c\\x00\\x72\\x2c\\xf5\\x99\\\n\\xeb\\xca\\xc5\\xbc\\xf7\\xd0\\x8d\\x34\\x42\\xdc\\x0d\\xda\\xf1\\xba\\xad\\x7e\\\n\\x3e\\x87\\x6b\\x65\\x7e\\x44\\xb3\\x14\\xf7\\xea\\x88\\x34\\x8f\\xe9\\x6e\\x3f\\\n\\x23\\x9c\\x06\\x0a\\xa0\\x6d\\x65\\xb2\\x02\\x7c\\x13\\x9f\\x91\\x53\\x35\\xc0\\\n\\x99\\xfb\\xd6\\x38\\xb3\\x2c\\x59\\x50\\x53\\xfa\\x39\\x10\\xcb\\x1a\\xc4\\x11\\\n\\x99\\x40\\x86\\xf0\\x66\\x9b\\xb3\\xc6\\x15\\x94\\x0e\\xa2\\xb9\\x74\\x9b\\xb9\\\n\\xe4\\x3e\\x49\\xf6\\x11\\x7e\\x57\\xd4\\x2c\\xcb\\xa3\\xfb\\x5d\\x2f\\xbd\\x67\\\n\\x43\\xd1\\x9d\\x0d\\xee\\x79\\x7f\\x53\\x6e\\x89\\x42\\x94\\xc9\\x7c\\xf2\\x77\\\n\\xd1\\x4f\\x4b\\xcb\\x7a\\x65\\x6a\\x35\\xc3\\xb3\\xac\\x4e\\xd9\\x9e\\x2a\\x25\\\n\\x8a\\xa4\\xbf\\x41\\x93\\xeb\\xe0\\xfe\\x50\\xa6\\xc3\\xdf\\xa1\\xc0\\x47\\xcf\\\n\\xc3\\x50\\xf3\\x36\\x56\\x0b\\x21\\x63\\xa1\\xb1\\x53\\xb3\\x33\\x14\\x6b\\x37\\\n\\x79\\x8b\\x4f\\xac\\xf7\\xf7\\x8c\\x50\\xb2\\x0d\\xc4\\x98\\xde\\x96\\x7b\\xd6\\\n\\xda\\x7f\\x2c\\x0c\\x92\\x4d\\x82\\xb4\\x76\\x80\\x10\\xef\\x9e\\x1f\\x79\\x6a\\\n\\x88\\x8d\\x8f\\xc1\\xf2\\xe5\\x69\\xe3\\x93\\x7f\\x57\\xe8\\xce\\x79\\xea\\x5f\\\n\\xa6\\x1d\\x47\\x94\\x0a\\x5e\\xad\\x61\\x87\\x30\\x77\\x12\\xe0\\xe8\\x5a\\xbc\\\n\\x57\\x15\\xef\\xb0\\x0d\\xc5\\x5b\\x15\\xac\\x6e\\xff\\x00\\x54\\x66\\x02\\xda\\\n\\x79\\x4d\\x9e\\x26\\x22\\x36\\x0d\\x31\\x99\\x5f\\x8c\\x75\\x08\\xe3\\xf0\\x0c\\\n\\x72\\xcb\\x46\\x96\\xde\\x02\\x04\\x53\\xd2\\xaa\\xe5\\x94\\x22\\x48\\x6d\\xd3\\\n\\x6f\\x40\\xef\\x71\\x6d\\x5a\\xab\\x34\\x83\\xbb\\x28\\x90\\xe5\\xff\\x00\\x58\\\n\\x7b\\xe9\\x17\\xbf\\x01\\x79\\x18\\x53\\xf0\\x26\\xab\\x59\\x95\\xd7\\xde\\x57\\\n\\x0a\\x03\\x77\\x8c\\xd3\\x4f\\xe0\\x18\\x68\\x93\\x3c\\x42\\xe6\\x72\\x58\\xdb\\\n\\x8f\\xf3\\xe1\\x40\\xc4\\x26\\x6d\\xe5\\x13\\x99\\xa2\\xf4\\x84\\x40\\xbe\\xfe\\\n\\xd5\\x92\\x36\\x55\\xaa\\xd6\\xbb\\xad\\x01\\x9b\\xc1\\x5a\\x7a\\xb2\\x41\\xb0\\\n\\xf3\\x7d\\x3d\\xe7\\x61\\x15\\x33\\x0d\\xf5\\xe6\\x2e\\xd2\\xf5\\x39\\x10\\x30\\\n\\xad\\x6d\\x5f\\x4f\\x7f\\x30\\x67\\x58\\x59\\xa8\\xfc\\xde\\xfd\\x31\\xa4\\x57\\\n\\x6b\\x14\\x7d\\xff\\x00\\x33\\x8d\\xe6\\x7c\\x87\\x8a\\xe5\\xc7\\x33\\xd9\\xc5\\\n\\xaf\\x88\\x06\\x8d\\x7f\\xd5\\xc3\\xf8\\xa9\\xc4\\x13\\x5f\\xd3\\xe8\\xa2\\xeb\\\n\\xe8\\xc5\\xf2\\x26\\xf2\\xcd\\x95\\xd4\\xfa\\xd9\\x06\\xd6\\x72\\x23\\x1e\\x62\\\n\\xd9\\x55\\x11\\xa8\\xaf\\xae\\x03\\x2a\\xf9\\x3d\\x5d\\x5a\\x98\\xfc\\xa7\\x5e\\\n\\xf6\\xfd\\x69\\xda\\x4b\\x68\\xb3\\xe8\\x46\\xe7\\x4a\\x18\\xfa\\x9b\\xd2\\x7c\\\n\\x65\\x47\\xd4\\xf1\\xbf\\x1d\\x0b\\xf2\\xa0\\xd8\\x34\\x41\\xf9\\x4e\\x4f\\xc7\\\n\\x6b\\x6d\\x5f\\x93\\xe9\\x32\\x42\\x0a\\x73\\x8c\\xd3\\x21\\x36\\x74\\xb3\\xf1\\\n\\x99\\x9f\\xcd\\x65\\x0e\\x3f\\xca\\x31\\x87\\x52\\x14\\x22\\xd3\\x63\\x8f\\x5d\\\n\\x70\\x8c\\xeb\\x6d\\x1f\\x99\\x14\\x7e\\xd7\\xe8\\x91\\x1a\\x63\\x11\\x16\\xdd\\\n\\x0e\\x9a\\x75\\x9e\\xf5\\x9c\\xbc\\x1b\\xe5\\xb4\\xed\\x90\\x19\\xb9\\x3d\\xcf\\\n\\x43\\x5b\\x9d\\xa1\\x91\\x59\\x24\\xab\\x86\\x24\\xaa\\x72\\xd9\\x4d\\x5c\\xdb\\\n\\xdf\\xb3\\x9c\\xd3\\x84\\x63\\xf8\\x7a\\x57\\xf5\\x84\\x91\\x2c\\x48\\xc7\\x5b\\\n\\x03\\x25\\x95\\x98\\x2f\\xc3\\xf9\\xf9\\x06\\x69\\xed\\xf2\\x55\\xe0\\x49\\xee\\\n\\x91\\x70\\x92\\x6e\\x14\\xa0\\xfa\\x0a\\xe0\\x54\\x4a\\x2f\\x58\\xdd\\x6d\\x4b\\\n\\x4f\\x03\\x2e\\x52\\x30\\x4d\\x36\\x25\\x14\\xb3\\x5e\\xde\\x5b\\xb6\\xfb\\xd0\\\n\\xef\\x9e\\x5b\\x1d\\x3b\\x55\\xb8\\x56\\xcc\\x3c\\x97\\x67\\x81\\xa4\\x57\\x63\\\n\\x4d\\x80\\x9e\\x7c\\xa1\\x28\\x33\\x59\\xc7\\xf0\\x52\\xcb\\x96\\x10\\x32\\xb0\\\n\\xbb\\xac\\xf1\\xe9\\xd8\\x38\\xd0\\x26\\xd3\\xfa\\xbd\\x26\\x13\\xc2\\x73\\x95\\\n\\xd4\\xf3\\x83\\x6b\\x49\\xaa\\x32\\xa8\\x3a\\x28\\x91\\xdb\\xf0\\x85\\x33\\xae\\\n\\x94\\xe9\\xfe\\x6f\\x5a\\x73\\x56\\x52\\x4c\\x7d\\xaf\\x85\\xf6\\x9f\\xb6\\x32\\\n\\x9c\\xab\\x6a\\x99\\x49\\x35\\x9e\\xd7\\x89\\x1f\\xf5\\xe1\\x12\\x1e\\x4e\\x95\\\n\\x37\\xf5\\x5e\\x36\\x40\\xd6\\x56\\xd1\\xf5\\xc7\\x9b\\xf1\\x7c\\xee\\x60\\xa6\\\n\\x96\\x0a\\x60\\x43\\x7c\\x29\\xb5\\xed\\x5a\\xc9\\x7f\\x2a\\x64\\x92\\x05\\x96\\\n\\x7d\\xd5\\x76\\x2d\\x05\\x9d\\x17\\x06\\xd3\\x50\\x9c\\xd6\\x1a\\x16\\x11\\x7a\\\n\\xf7\\x95\\x9f\\x4c\\x56\\xf8\\xd0\\xb7\\x90\\xbd\\xe0\\xac\\xf4\\x09\\xfd\\xd0\\\n\\x65\\xc5\\xde\\xd7\\xe5\\xdf\\xd9\\x6d\\x77\\x7b\\x44\\xb2\\x9a\\xef\\x21\\xa5\\\n\\x58\\x05\\x39\\xcd\\x2b\\xb3\\xc7\\x5e\\x58\\x25\\x00\\xc4\\xf0\\x8c\\x84\\x8e\\\n\\xa1\\x98\\x78\\x0d\\x35\\xa5\\xaf\\x94\\xb4\\x37\\xcb\\xb3\\x43\\x2a\\x77\\xd3\\\n\\xd2\\x0e\\xa5\\xef\\x95\\x0a\\xf0\\xb7\\x3d\\xe6\\x15\\xdf\\x67\\x66\\x2e\\x16\\\n\\x66\\x28\\xba\\x8e\\x80\\x2f\\x3e\\xa4\\x0f\\x51\\x2d\\x50\\x86\\x7d\\x6d\\x3a\\\n\\x04\\x0e\\x87\\xad\\xb1\\xd7\\xe0\\xad\\xaa\\x15\\xae\\x1a\\xc2\\x3a\\x87\\xef\\\n\\xe4\\xf9\\x7b\\x58\\xec\\x8b\\x0d\\xb9\\xa6\\x5a\\x75\\xd2\\xe4\\x45\\xd7\\xf5\\\n\\xb4\\x8f\\xb1\\xcf\\x1c\\x7d\\x8e\\xfa\\x75\\xc8\\xb2\\x5c\\x5a\\x09\\x1b\\x56\\\n\\x86\\xf6\\xa6\\x19\\x43\\x65\\xdc\\x36\\xf0\\x95\\x43\\x51\\x97\\x06\\xe7\\xab\\\n\\xc3\\xd2\\xa7\\x34\\xd2\\x5f\\x59\\x70\\x82\\xca\\xfe\\x1e\\x79\\x11\\x4b\\x74\\\n\\x44\\x82\\x85\\x5f\\x19\\x57\\x8e\\x5c\\x6d\\x26\\x3b\\x94\\xeb\\xe7\\xf5\\x91\\\n\\x83\\x97\\xf2\\x32\\x24\\x6e\\xb7\\xba\\xc1\\xab\\xc7\\xc9\\x92\\x73\\x9a\\xb4\\\n\\x6d\\xe8\\xbc\\x1a\\x2e\\x83\\x28\\x53\\x91\\x1a\\x10\\x49\\x0f\\x2c\\x6d\\x31\\\n\\x7d\\x72\\xa8\\xb4\\x65\\x23\\x11\\x3c\\x86\\x88\\x24\\x46\\x9c\\xab\\x35\\x93\\\n\\xf7\\xb6\\x68\\x82\\xc3\\x59\\x6e\\x5a\\x19\\x5e\\x56\\xe2\\xe4\\x96\\xa8\\x4a\\\n\\x99\\x9e\\x23\\xf3\\xb4\\x0f\\xd1\\xc8\\x81\\x28\\x9d\\xe7\\x8a\\xb5\\xf9\\xdf\\\n\\x4f\\xd5\\x80\\x6e\\x87\\xef\\x9e\\xdc\\x56\\x2b\\x7d\\x74\\x06\\xec\\x24\\x0c\\\n\\xba\\x7f\\x60\\x55\\xef\\x85\\x40\\xf3\\xc2\\x01\\x48\\x1a\\x2d\\x73\\x28\\x9e\\\n\\x6d\\xea\\xc0\\x7e\\xae\\xf1\\xec\\xe5\\x06\\x8e\\x88\\x3a\\xa5\\xc2\\x60\\xd8\\\n\\x2c\\x7f\\x62\\xaa\\xce\\x28\\x34\\xc1\\xe0\\xef\\x44\\x38\\x97\\x5e\\x45\\x1b\\\n\\x8f\\x47\\x6d\\xad\\x4e\\x89\\xa8\\x83\\xcf\\x73\\x8e\\xb3\\x7c\\x64\\x20\\xc3\\\n\\x85\\x04\\x4c\\x2d\\xfa\\x40\\x0e\\x25\\xfb\\x2b\\x20\\x0f\\xe4\\x05\\x04\\xca\\\n\\x2a\\xe1\\x42\\x74\\x1b\\x60\\xcd\\xab\\x87\\x44\\xe7\\xaf\\xd4\\x1a\\xb8\\x5e\\\n\\x62\\xf9\\x54\\x93\\x04\\x0f\\x2a\\x16\\xe2\\x19\\x6e\\x60\\xd6\\xd2\\xae\\x35\\\n\\x04\\x4a\\xce\\xb5\\xcf\\x18\\xfd\\x6d\\x28\\xc6\\x30\\x2c\\x89\\x14\\x3d\\xf6\\\n\\x91\\x7e\\x2a\\xcc\\x72\\xaa\\x0f\\x33\\x76\\xef\\x12\\x9c\\x03\\x08\\x48\\x63\\\n\\x57\\xa2\\x2b\\xf3\\x5d\\x34\\x96\\x75\\xb6\\x3a\\xd0\\x75\\xfa\\x93\\xdf\\x59\\\n\\x79\\x52\\xbe\\x37\\x9d\\xd1\\x3f\\xdf\\x67\\xef\\xd8\\x8b\\x14\\x10\\xbc\\x2e\\\n\\x3d\\xa0\\xc3\\x6a\\x6c\\x09\\x2a\\x9e\\x37\\x66\\x0e\\xee\\xe7\\xd0\\x20\\x67\\\n\\xd8\\x9e\\x53\\x8b\\xb6\\xd2\\x58\\x39\\x12\\xe9\\x34\\x8b\\x06\\x03\\xd9\\x2c\\\n\\xb9\\x6e\\x64\\x93\\x41\\xd0\\xd1\\x9d\\x0d\\xe1\\xa4\\x13\\x18\\x67\\xb2\\xd5\\\n\\xaa\\xa9\\x14\\x0e\\xf1\\xc9\\x58\\x83\\xd7\\x59\\x54\\x13\\x45\\xa6\\x87\\x6c\\\n\\xd8\\xb6\\xbd\\x5c\\x8b\\x8b\\x54\\xc1\\x0d\\x22\\x16\\x21\\xa4\\x75\\x4f\\xe0\\\n\\xc2\\xfd\\x60\\xb1\\xda\\xc9\\xb6\\xf7\\x79\\xa5\\xaa\\x5a\\xed\\x3b\\x79\\x5a\\\n\\x33\\x4d\\x9e\\x26\\x78\\xbd\\x80\\xc5\\x15\\xec\\x6d\\xe2\\x48\\xd5\\xb6\\x4a\\\n\\x1a\\x66\\xa8\\x8c\\xbe\\x99\\x4f\\x9f\\xd0\\x38\\x3d\\x11\\x92\\x48\\x4a\\xa9\\\n\\x4a\\xc9\\x0a\\xa5\\x16\\x7b\\x98\\xd0\\x10\\x97\\xf1\\x92\\x4b\\x91\\x61\\x31\\\n\\x57\\xa2\\x9e\\xbc\\xcf\\xef\\xb5\\xb9\\xac\\xf7\\x6b\\x17\\x9b\\x69\\xc4\\x0b\\\n\\x6d\\x54\\xe8\\x69\\xb5\\x63\\x7d\\x8e\\x01\\x6c\\x8f\\xec\\xc1\\x88\\x18\\x56\\\n\\xff\\x00\\x9e\\xa0\\x11\\xdf\\xc8\\xae\\xed\\xa3\\xa9\\xb9\\x66\\x15\\x98\\x3a\\\n\\x7a\\x99\\xeb\\x6e\\x73\\x76\\xa7\\xe3\\x20\\xc0\\xee\\xb1\\x33\\xd2\\xb1\\xcb\\\n\\x98\\x12\\xf3\\x51\\x7a\\xf2\\x9d\\x2c\\x8c\\xf9\\x2e\\x42\\x5a\\x64\\xe5\\x1d\\\n\\x54\\x8f\\x20\\xa4\\x90\\x1d\\x84\\xa0\\x14\\x1a\\x40\\x8b\\x7d\\xbd\\xc0\\x1b\\\n\\xad\\xc5\\x96\\x23\\xc3\\x6c\\xce\\x2a\\xdf\\x63\\xf6\\x5b\\x6d\\xb8\\x7d\\x7a\\\n\\xe2\\xc7\\xef\\x04\\x73\\x62\\x33\\x74\\x00\\xfd\\x1f\\x0b\\xcb\\xfa\\xdf\\xe5\\\n\\xb0\\x35\\x27\\x8d\\x43\\x3e\\x6c\\x2b\\x49\\xfe\\x65\\xae\\xc5\\x14\\xf9\\x45\\\n\\x6c\\xbd\\xda\\x0b\\x2b\\xae\\xa6\\x50\\xc5\\x7e\\x09\\xfa\\x05\\x96\\x64\\x90\\\n\\xb5\\xf4\\xbe\\xd4\\x8e\\x4a\\x0c\\xec\\x27\\x28\\xe7\\x1a\\xfa\\x69\\x93\\x49\\\n\\x53\\xf0\\x00\\x8e\\x7e\\x68\\xf4\\xbe\\xd0\\xb0\\xf9\\x94\\xe1\\x6e\\x8c\\x60\\\n\\xd1\\x48\\xf7\\xd5\\x53\\xe9\\xef\\xbc\\xa1\\xed\\xe0\\xd6\\x5b\\x59\\x74\\x62\\\n\\x68\\xfc\\x22\\xba\\xc1\\x6e\\xfe\\xba\\x92\\x1a\\x60\\xb2\\x68\\xb3\\x73\\x3a\\\n\\xe7\\x55\\x79\\x76\\xf9\\x99\\x67\\x46\\xba\\x46\\xb7\\xe8\\x17\\x07\\x48\\x7b\\\n\\xdf\\x17\\xac\\x99\\x1b\\x80\\xc9\\xd6\\x68\\xef\\xcf\\xfc\\xc1\\x81\\x97\\x57\\\n\\xe7\\xc5\\xf3\\x7a\\x2d\\x7c\\x75\\x27\\x43\\x85\\xb3\\xe1\\x41\\xca\\x90\\x97\\\n\\x5a\\x63\\x73\\x76\\xcb\\x4e\\x4b\\x89\\xc1\\x7e\\xc8\\xe3\\x3d\\xc6\\x94\\x3f\\\n\\x6b\\xa2\\x96\\x31\\x56\\xf4\\x58\\x30\\x3f\\x9f\\x89\\xe8\\xdc\\x61\\x8f\\xad\\\n\\x89\\x2d\\x6e\\x06\\xa8\\x72\\xd6\\x2e\\x22\\xfc\\xf6\\x48\\xac\\x1d\\x87\\x3d\\\n\\x25\\xb2\\x69\\x6c\\x37\\x47\\x12\\x56\\xcc\\x26\\xaf\\xaa\\x69\\x1b\\x48\\xbe\\\n\\xc8\\x87\\x95\\xeb\\x10\\x2a\\xb3\\x6d\\x52\\xf8\\xf7\\x78\\xcd\\x65\\xa2\\x7d\\\n\\x09\\xcf\\xf2\\x0c\\xbe\\x9b\\x69\\x8b\\xba\\x57\\x44\\xa1\\xb1\\x97\\x48\\x40\\\n\\x2c\\xba\\x8d\\x06\\xaa\\xc2\\x37\\xc5\\xf2\\x51\\x7d\\x8f\\x9a\\x2e\\xb2\\x12\\\n\\xd2\\x7f\\x89\\xa8\\x6a\\x2f\\x5f\\x3d\\x5f\\x7d\\x4d\\x6d\\x90\\x75\\xdf\\x4c\\\n\\xcd\\x18\\x5f\\x5d\\x83\\x0e\\xe4\\x9a\\xb1\\x77\\x2d\\xc1\\x53\\x9c\\x61\\xf6\\\n\\x22\\xe3\\x43\\x9b\\xf2\\x72\\xc3\\x2a\\xe6\\x02\\x2f\\xe4\\xf9\\x3b\\x3a\\x87\\\n\\xbc\\x02\\x39\\xe3\\xbd\\xed\\x5d\\xf0\\xc7\\xb6\\xb3\\xe2\\x3b\\xb9\\xe5\\x4a\\\n\\x6d\\xe2\\xf4\\x9e\\xb4\\xc8\\xe9\\xdd\\x86\\x48\\x18\\xd6\\xa4\\xb7\\x8b\\x89\\\n\\x3d\\x2f\\xb4\\xa1\\xe0\\x48\\x75\\xf2\\x1e\\x2c\\x0d\\x0f\\x25\\x8c\\xd0\\x25\\\n\\xf4\\x36\\xaa\\xa5\\xfc\\x52\\xcc\\x6d\\x4e\\x9d\\x61\\x06\\x35\\x83\\x66\\xbd\\\n\\x0e\\x74\\x86\\x15\\x31\\x72\\x1b\\x24\\xc5\\x0d\\xb3\\xf0\\xc4\\xb6\\xd8\\x62\\\n\\x08\\x5c\\xaa\\x2a\\xaa\\xeb\\x11\\x3d\\x00\\x59\\x7f\\xc6\\xa7\\xde\\xd4\\x55\\\n\\x65\\xc8\\x8a\\x50\\x0c\\xdb\\x32\\x04\\x28\\x92\\xa9\\xae\\x2e\\x85\\x15\\xff\\\n\\x00\\x11\\x80\\x52\\xdc\\xb0\\xd8\\x70\\xf4\\x32\\xff\\x00\\x2a\\x7c\\xf5\\x80\\\n\\xba\\xd2\\x11\\x2e\\xfe\\xba\\xda\\xeb\\xa2\\x26\\x70\\xa6\\xf2\\xf1\\xa2\\xcc\\\n\\x1f\\xa9\\x8e\\x95\\xfc\\x9e\\xc7\\x39\\x4e\\xeb\\x41\\xfa\\xff\\x00\\xcc\\xb8\\\n\\xad\\x09\\x34\\xd3\\x26\\x28\\xd5\\x16\\xa2\\xdd\\xcb\\x9c\\xff\\x00\\xcc\\x12\\\n\\x50\\x65\\xd5\\x98\\x2b\\x02\\x9f\\xa4\\xda\\x94\\xd9\\x4e\\xd6\\x43\\xef\\x2e\\\n\\x53\\x75\\xec\\x47\\x94\\x64\\x52\\xbb\\x57\\xf9\\xb4\\xdf\\x89\\x84\\x02\\xa4\\\n\\xc4\\xb2\\x34\\xbe\\x66\\xf6\\x9d\\xe2\\x68\\x43\\x93\\x5b\\xb1\\xf6\\xcd\\x3d\\\n\\xcf\\xc1\\x94\\xcb\\x3b\\xbf\\xa2\\x6c\\xda\\x7d\\xf7\\x26\\x8c\\x8b\\x9a\\x34\\\n\\x88\\x1d\\x20\\x78\\x04\\x35\\xcd\\xb8\\xa9\\x9e\\x7a\\x15\\xb8\\xb5\\x63\\x94\\\n\\x3e\\xc6\\xcd\\xf2\\x56\\x95\\x59\\x24\\x08\\xaa\\x28\\x27\\xe6\\xfd\\xf6\\x66\\\n\\x82\\x25\\x5d\\x6c\\x07\\x27\\xe9\\xdd\\x05\\x56\\x04\\x7c\\x79\\xfb\\xd7\\xcb\\\n\\x2f\\x03\\xba\\x31\\x74\\x06\\x12\\xb9\\x80\\x09\\x74\\xc4\\x88\\x38\\x4f\\x85\\\n\\xe1\\x5c\\x60\\x3d\\xca\\x92\\xa3\\xe9\\x85\\x0d\\x4b\\x29\\x7d\\xea\\xd1\\xeb\\\n\\xb4\\xfe\\xe3\\x58\\x78\\x09\\xe1\\xfb\\xef\\x17\\xc1\\xca\\x47\\xbb\\xdd\\x11\\\n\\x1f\\x37\\x55\\xef\\x29\\x65\\x2e\\x2f\\x34\\xdd\\xf4\\x48\\x24\\x53\\x91\\xb6\\\n\\x8c\\xc5\\x82\\xf8\\x95\\x4d\\xbb\\xeb\\x8e\\x7b\\x40\\xee\\x65\\xd3\\x87\\x02\\\n\\xa9\\xca\\x5b\\x27\\x33\\x0e\\xcd\\xa8\\x74\\x4d\\x00\\xf4\\x7a\\x6f\\x44\\x4a\\\n\\x85\\x48\\xdc\\x9e\\xee\\x3f\\x01\\x97\\x5a\\x8b\\x66\\xbb\\x45\\xb4\\x7c\\x99\\\n\\x7d\\x90\\xb7\\x95\\xf0\\x97\\x6b\\x9c\\x04\\xd2\\xad\\x30\\x76\\x59\\x01\\x97\\\n\\x88\\xc1\\x30\\xad\\x90\\x53\\xac\\x89\\xa3\\x34\\xb4\\x4b\\xdc\\x74\\x16\\xdb\\\n\\x20\\xbc\\x08\\x95\\xb8\\xce\\x93\\x73\\xfa\\xd3\\x62\\xc7\\xcc\\xa7\\xa3\\x0e\\\n\\xba\\xd8\\x17\\x0c\\xc2\\xda\\x50\\xe3\\xf7\\xc7\\x43\\x4c\\x5e\\x36\\x03\\x17\\\n\\x45\\x65\\xb1\\x65\\x8f\\x1d\\x17\\x65\\x71\\x05\\xf9\\x25\\x3b\\x7d\\x16\\x3f\\\n\\x12\\xe0\\xda\\x62\\x1e\\xf3\\xf2\\x8c\\x6e\\x14\\xaa\\x88\\xb8\\xcc\\x5a\\x75\\\n\\x67\\x34\\xe0\\x1c\\x89\\xf3\\xf5\\x93\\xd0\\xd6\\x63\\xbf\\xf9\\xbd\\x66\\xa8\\\n\\xaf\\xb5\\x85\\xd4\\xd1\\xa1\\x0d\\x40\\x27\\x2b\\xbc\\xa8\\x2e\\xe8\\x3f\\x69\\\n\\x4d\\xf6\\x2f\\x48\\x9f\\x5d\\x4b\\x89\\xcd\\x87\\x02\\x84\\x61\\xe8\\x62\\x86\\\n\\x93\\x92\\x35\\x1b\\x1f\\x6c\\xf7\\xb5\\x7f\\x26\\xd0\\x19\\x6c\\x23\\x85\\x12\\\n\\x3e\\xb7\\x1f\\x44\\xc0\\xcd\\x09\\xb6\\xda\\x1f\\x3d\\x2c\\xc4\\xaa\\x78\\xa6\\\n\\xd8\\xb0\\xad\\x92\\x9a\\xcb\\x5c\\x53\\x10\\x96\\xcf\\x95\\x28\\xdc\\x2b\\xf4\\\n\\x38\\x92\\xc6\\x00\\x41\\x5a\\xd2\\x82\\x82\\x66\\x85\\x65\\x41\\x70\\x43\\x2e\\\n\\x3f\\x3c\\x2e\\x4c\\x0b\\xe3\\xb5\\x34\\x74\\x0a\\xb7\\x59\\xf2\\x4a\\x2c\\x30\\\n\\x5b\\x74\\x49\\xfd\\xdc\\x8f\\xa6\\x99\\x5f\\x06\\x50\\xcf\\x1e\\xfa\\xc8\\x5f\\\n\\xec\\xd2\\x6a\\xd7\\xe2\\xd5\\x9a\\x89\\xfb\\xd5\\xff\\x00\\x2d\\xed\\x96\\xdc\\\n\\x7a\\xbc\\x2f\\x3a\\x79\\xcf\\xcb\\xe8\\x88\\x2d\\x90\\x15\\xac\\x6e\\x55\\xf9\\\n\\xbe\\x97\\x45\\x6d\\x60\\x6d\\x25\\xd9\\x13\\x34\\xd4\\xbd\\x73\\x16\\x5e\\xaf\\\n\\x61\\x1b\\x14\\x62\\xe1\\x40\\x97\\xfa\\xe1\\x6c\\x98\\xd5\\x93\\xba\\xef\\x46\\\n\\x48\\x34\\xd0\\xb5\\x5c\\xb6\\x09\\xe7\\xfc\\xd5\\xc2\\xa7\\x0f\\x6c\\x74\\x79\\\n\\x2b\\xbd\\x19\\xa2\\xd8\\x2b\\xdd\\xe9\\x34\\x7e\\x4f\\x0e\\xd4\\x17\\x25\\x38\\\n\\x7f\\x39\\x2d\\x32\\x2d\\x1e\\xb1\\xba\\x9e\\xeb\\x42\\xef\\x1d\\xcf\\xba\\xa8\\\n\\x2b\\x35\\x8d\\x33\\x3d\\x4d\\xdf\\x73\\x68\\x7a\\x3f\\x65\\xe8\\xba\\x73\\x53\\\n\\x9a\\x9c\\x29\\xa9\\x5e\\x57\\x04\\x7f\\xa1\\xcb\\xf1\\x57\\xb4\\x71\\xb0\\x21\\\n\\x69\\x8b\\x84\\x3c\\xf3\\x45\\x28\\xcd\\xe4\\x26\\x1b\\x8f\\x9f\\x87\\x6a\\x01\\\n\\x2f\\x68\\x78\\x38\\xdc\\xb4\\x64\\x9d\\xaf\\xb5\\x8b\\x44\\x52\\xa6\\xd0\\x24\\\n\\x44\\x0d\\x44\\xba\\x61\\x62\\x00\\xd1\\x65\\x35\\xd6\\x7f\\x13\\xed\\xd3\\xa1\\\n\\x36\\x12\\x81\\x95\\x5f\\x5f\\x0c\\x2a\\xd0\\x52\\x6c\\xf3\\x62\\x16\\xf2\\xe6\\\n\\x3f\\x9e\\x29\\xfd\\xfa\\x80\\x49\\x09\\x81\\xa2\\x67\\x2f\\x13\\x45\\x2a\\x10\\\n\\x25\\x39\\x6c\\x2c\\xd5\\xe1\\xda\\x72\\x32\\xdf\\x51\\xda\\x3a\\x79\\xfe\\x49\\\n\\x11\\xa3\\x96\\x60\\x91\\xd7\\xfd\\x27\\xa2\\x1e\\x72\\x9e\\x7e\\xf1\\x8e\\x2a\\\n\\xe8\\x8a\\xeb\\x95\\x12\\x19\\x51\\x84\\x11\\x52\\xd1\\xfb\\xdf\\x15\\xfd\\x1c\\\n\\x1f\\x63\\x42\\x52\\xdd\\xd5\\xfd\\xd1\\x76\\x1a\\xb7\\x7b\\xa7\\xb6\\x3c\\x65\\\n\\x28\\x9a\\x2d\\x29\\x23\\x2b\\x4f\\xa5\\xae\\x1c\\x41\\xe8\\x60\\x86\\x56\\x42\\\n\\xca\\xce\\x74\\xe0\\x71\\x5d\\x91\\xee\\x20\\xad\\x2a\\xfc\\x6b\\x84\\x67\\x72\\\n\\x75\\x6d\\x86\\x78\\xce\\x60\\x6f\\x42\\xc8\\x49\\xeb\\x4a\\xa9\\x65\\x86\\x81\\\n\\xdf\\x86\\x6f\\x1b\\x05\\xef\\xd8\\x33\\x87\\x9d\\xd9\\x03\\xfb\\x54\\xae\\xea\\\n\\xd6\\xe8\\x4f\\x0a\\x54\\xc6\\xc0\\xd6\\x00\\xb9\\x18\\x7d\\x10\\xa8\\x6c\\x61\\\n\\x04\\xc8\\x16\\x5a\\xe6\\x59\\xea\\xb9\\xb4\\x4b\\xe5\\x57\\xe5\\x85\\x7d\\x39\\\n\\xe7\\x9c\\x0d\\x1c\\xa6\\x95\\x40\\xc4\\x86\\x3b\\x66\\xcd\\x92\\xad\\xb3\\xcd\\\n\\xa4\\xba\\xcf\\x92\\x16\\x61\\x99\\xfb\\x69\\xa7\\xfe\\xd8\\xea\\x03\\x51\\x66\\\n\\x04\\x16\\xa3\\xaf\\xf3\\xea\\xad\\xa7\\x46\\x6d\\xa0\\x07\\x45\\x62\\xb9\\xcf\\\n\\x3b\\x40\\x42\\xb4\\x6f\\xa2\\xb3\\xc9\\x98\\x04\\x03\\xe6\\x89\\x8c\\x21\\x3a\\\n\\x25\\x17\\x5b\\x33\\xa2\\xb7\\x63\\x06\\xb7\\x5b\\xe8\\x8d\\xa2\\x0b\\x33\\x6b\\\n\\x5a\\xb2\\xcb\\x6e\\x04\\x3d\\xd2\\x6c\\xd9\\x23\\x95\\x9d\\x05\\xbb\\x28\\x5a\\\n\\x3b\\xbb\\xec\\x60\\xd7\\x2d\\x4b\\x37\\xdb\\x0b\\xf6\\x7b\\x52\\x06\\x2c\\x29\\\n\\xe7\\xf2\\xb9\\x33\\x25\\x5e\\x17\\x10\\xe1\\xcb\\x64\\x61\\x67\\xab\\x83\\xaf\\\n\\xb1\\x0f\\xf9\\xf7\\x5f\\x95\\x3f\\x4e\\x6f\\xd6\\x3b\\xa5\\x2e\\x55\\xc3\\x3d\\\n\\x1e\\xf3\\x86\\x4e\\x19\\x2e\\x53\\xd5\\xf7\\xa8\\x75\\x32\\xca\\x0c\\x44\\xb2\\\n\\xb2\\xd2\\x99\\x7b\\xa8\\x5f\\xa6\\x54\\x66\\xca\\xe5\\xed\\x86\\xd3\\xaa\\xa4\\\n\\xbf\\x04\\xa5\\x72\\xdc\\x62\\xfe\\xc1\\x73\\x3f\\xcf\\x79\\xb7\\x34\\x42\\xb7\\\n\\x75\\x49\\x5c\\xa7\\x2a\\xd8\\xb8\\xf1\\x42\\xa1\\x4f\\x28\\x4d\\x6b\\xb7\\x07\\\n\\x8c\\xfd\\xe9\\x1b\\x87\\xa2\\x10\\x31\\x7a\\x69\\xe7\\x04\\xa3\\xd6\\xec\\xe4\\\n\\x40\\xdd\\x31\\x8d\\xe6\\x87\\x4b\\x43\\xf6\\x37\\xb2\\x68\\x83\\x22\\x43\\x4b\\\n\\x3a\\x35\\x3f\\x4a\\x18\\xe4\\x8f\\x84\\xc3\\x1a\\x75\\x9e\\x8b\\xf5\\x17\\x54\\\n\\x33\\x2f\\x4b\\x65\\x1f\\xbe\\x0d\\x5e\\x36\\x7b\\x9b\\x72\\x5f\\xbd\\xd6\\x01\\\n\\xcf\\xe7\\xb8\\x0f\\x1d\\x0c\\x32\\x8e\\xa3\\x96\\x89\\x2f\\x33\\x9f\\x3c\\x4b\\\n\\x03\\x1d\\x9c\\x6c\\x74\\x5d\\xdf\\x4d\\x13\\xb5\\x3e\\x6c\\x1c\\xbf\\x82\\x5a\\\n\\xd4\\xfc\\xd8\\xbd\\x81\\xdf\\x32\\x75\\x8b\\x4b\\x5c\\xf2\\x86\\xb6\\xbd\\x5d\\\n\\xac\\xc8\\x9f\\x94\\xbf\\x42\\x5b\\xb6\\xd1\\x70\\xc5\\x77\\x3d\\x7c\\xaa\\x8b\\\n\\x7c\\x8f\\xd3\\xbb\\x0c\\x76\\x76\\x31\\xa8\\x20\\x19\\x9f\\x9b\\x17\\xe5\\x99\\\n\\xe4\\xa2\\xda\\xab\\xfc\\x4f\\x7d\\x21\\x8f\\xa3\\x77\\x3a\\x89\\x64\\x56\\xdc\\\n\\xc1\\xe1\\x73\\xfa\\xfd\\x5f\\xbf\\x33\\x22\\xed\\xd8\\x94\\xe4\\x39\\xdd\\x69\\\n\\x6b\\x94\\xbe\\x9a\\x6d\\x9e\\x31\\x8e\\xb3\\xdb\\x91\\x8e\\x4a\\xeb\\xe1\\xa2\\\n\\xb3\\xca\\x3a\\xcc\\x0e\\xb7\\xdd\\x36\\xbb\\x67\\x32\\x53\\x78\\x14\\xe2\\x0f\\\n\\xe8\\x59\\x12\\x8f\\x49\\xe5\\x57\\xf9\\x75\\x77\\x8b\\x4a\\xac\\xca\\x35\\xea\\\n\\x65\\xbf\\xd3\\xef\\x4e\\xab\\xf6\\x9f\\x3e\\x9b\\x63\\x87\\x42\\x5d\\x11\\x9a\\\n\\x3c\\xe6\\x45\\x2a\\xb1\\x9c\\x9a\\xdf\\x43\\x58\\x84\\x96\\xe0\\xd8\\x2e\\x16\\\n\\x83\\x42\\xb1\\x16\\xd1\\x5a\\xdc\\xc5\\xc0\\xd0\\x9c\\x74\\xed\\x07\\x14\\xaa\\\n\\x14\\xd8\\x02\\x6d\\xb9\\x8e\\x70\\x6f\\xa9\\xdd\\x0e\\x13\\xa5\\xc3\\x55\\x37\\\n\\xa1\\x5f\\xf3\\xff\\x00\\xb1\\xf6\\x0d\\xd6\\x1f\\x12\\x2c\\xc6\\x64\\xd2\\xaa\\\n\\x1f\\xe2\\xee\\x89\\xd3\\xc7\\x75\\x1a\\x1b\\xba\\x64\\x47\\x29\\xed\\x1a\\x29\\\n\\x54\\xae\\x61\\x44\\xc0\\x59\\xcc\\xa1\\x6b\\xef\\xd5\\xfe\\x7a\\x41\\x68\\xdd\\\n\\xae\\x1d\\xab\\x86\\x11\\x32\\xa1\\xcd\\xf5\\x99\\xf5\\xc7\\xd6\\xbc\\x79\\x7f\\\n\\x30\\xcf\\xbb\\xb1\\xec\\x12\\xc1\\x99\\x9e\\x2b\\xb8\\xf6\\x4e\\xca\\x5b\\xdf\\\n\\x77\\x73\\x44\\xb4\\xe4\\x64\\xfb\\x5a\\x17\\x92\\xa7\\xe7\\x1f\\x45\\xa3\\xf3\\\n\\xdb\\x7a\\xa4\\x2c\\x4f\\xd9\\x80\\xad\\x34\\x0f\\xaa\\x70\\x34\\x8a\\x69\\x0d\\\n\\xa7\\x19\\x0a\\x85\\xf7\\x8e\\x74\\xc7\\x5b\\xd6\\x6d\\xb6\\x54\\x32\\x4f\\x15\\\n\\x51\\x19\\xa4\\x80\\x24\\xad\\xb2\\x5a\\xf8\\xf8\\xcd\\x84\\x28\\x48\\xb2\\xa0\\\n\\x52\\x29\\x55\\x3c\\xd1\\x8f\\x56\\x95\\xf9\\x01\\xc4\\x0c\\x50\\x3c\\xe7\\x34\\\n\\x34\\x0d\\x55\\xbc\\x35\\x40\\x34\\x3c\\xcd\\x5f\\xa8\\x75\\xba\\x2b\\x87\\xe4\\\n\\x57\\x2e\\xf4\\x2b\\x3e\\xe3\\xbb\\xed\\x7e\\x7d\\xd9\\xc0\\xb9\\xd5\\x13\\xae\\\n\\x87\\x67\\xbe\\xe8\\x2a\\xe3\\x47\\xcf\\x0c\\x42\\xbb\\xbf\\xcd\\x6f\\x95\\x69\\\n\\x68\\x09\\x2a\\xe7\\x03\\xb7\\x69\\xb3\\x2d\\x68\\x92\\xd5\\xb4\\x14\\xa7\\xca\\\n\\xfa\\x46\\xda\\x71\\x3c\\xd0\\x38\\xc1\\x6b\\x0a\\x90\\x79\\x73\\xb2\\xcb\\xe6\\\n\\xc8\\x31\\x38\\x1c\\xf9\\xb9\\xad\\xcb\\x88\\x8c\\xf5\\x77\\x49\\x10\\x97\\x55\\\n\\xe2\\xde\\xc2\\x3c\\x81\\xb0\\x2b\\x40\\xb1\\x81\\x65\\xcb\\x77\\x5a\\x14\\x6c\\\n\\xd8\\xa5\\xdc\\x12\\x59\\x5c\\x4b\\x60\\x92\\x48\\xc0\\x06\\xaf\\xf9\\xe0\\xf0\\\n\\x65\\xb7\\x3c\\x6a\\x70\\x80\\x4b\\xbd\\xc0\\xf3\\x7b\\x46\\xf3\\xe8\\x4b\\xb6\\\n\\x46\\x6e\\x44\\x5c\\x05\\x66\\x5f\\x0c\\x8e\\x2d\\x54\\x43\\xbe\\xcd\\x09\\x5f\\\n\\x83\\xdf\\x7d\\xc4\\x09\\xff\\x00\\x2a\\xf2\\xf6\\x39\\x83\\x2c\\xb6\\x81\\x19\\\n\\xc6\\x84\\x13\\x9a\\x70\\x57\\x57\\x5a\\x62\\xd7\\x1c\\xb4\\x53\\x68\\xc7\\xe4\\\n\\x4a\\x76\\x42\\xef\\xf4\\xe7\\xbd\\x1d\\x99\\x7e\\x7b\\x9c\\xa5\\xd3\\xdc\\x53\\\n\\xb8\\xde\\xdc\\x55\\xb5\\xbe\\xa7\\x58\\x36\\xf1\\x4a\\x51\\xa2\\xea\\xc3\\xbe\\\n\\x6a\\x8a\\x5b\\x70\\x02\\x58\\x1e\\x0d\\x05\\x65\\xc0\\x54\\xae\\xa3\\xd1\\x48\\\n\\x10\\xda\\x33\\x1b\\x41\\x77\\xdf\\x3b\\x19\\x78\\x28\\x59\\xc8\\xa3\\xdb\\x9c\\\n\\x87\\x3b\\xc3\\xa7\\x51\\x9f\\xc7\\x11\\xd8\\xa5\\x7e\\x53\\xdb\\xec\\x9b\\xb8\\\n\\x35\\x9f\\x47\\x33\\x18\\x6b\\xd2\\x0f\\xf7\\x18\\xc7\\x2a\\x85\\x2a\\xa3\\x92\\\n\\x9b\\xae\\xa8\\xbc\\xbc\\xa0\\x76\\x26\\x63\\xfd\\xd2\\xc8\\xb4\\xad\\xdd\\x98\\\n\\xae\\x79\\x05\\x1f\\x8d\\xb0\\x28\\x5b\\xe1\\x9b\\x25\\xfa\\x47\\xc7\\x4f\\x10\\\n\\x39\\xf6\\xfb\\x7f\\xa9\\x4e\\x8d\\x38\\x7c\\x22\\x9d\\x41\\xb9\\x50\\x26\\x9c\\\n\\xdf\\x65\\xfa\\x5d\\x37\\xad\\xc3\\xdc\\xd3\\x6e\\x61\\x5b\\x69\\x4e\\x67\\x96\\\n\\xd0\\x7e\\x75\\x76\\x2d\\x85\\x27\\xd7\\x46\\x46\\x4e\\xfd\\x1a\\x5d\\x7e\\x99\\\n\\x90\\xf2\\x4e\\xb6\\x08\\x55\\x5c\\xdd\\xe4\\x2a\\x9b\\xaf\\x13\\x9a\\xc5\\xe8\\\n\\x99\\xf2\\xc7\\xc9\\x43\\x84\\x0a\\xc4\\xe8\\x77\\x86\\x9f\\x1a\\x6e\\xfb\\xb8\\\n\\xc6\\x9a\\x8f\\xd5\\x65\\x7f\\x14\\x1d\\xbf\\xb1\\xd0\\xf7\\x0f\\x6a\\xac\\xc2\\\n\\xfc\\x5d\\xe0\\x45\\xf9\\xa4\\x03\\x71\\x76\\x44\\xe4\\x1c\\x36\\x4d\\x0f\\x2d\\\n\\xde\\x9c\\xaa\\xbf\\x24\\x72\\xc3\\x63\\xd0\\x98\\x80\\x2e\\x5c\\xb7\\xf4\\x91\\\n\\x06\\x42\\xf5\\x3e\\x56\\xf2\\xfb\\x74\\x17\\x95\\xe9\\xe4\\x80\\xd1\\x7d\\x5f\\\n\\xe2\\xe8\\x67\\x9d\\x06\\xda\\x87\\x36\\xdc\\x6f\\x7d\\xa2\\x42\\xb5\\xb1\\x31\\\n\\xa1\\x4c\\x72\\x99\\x53\\xd9\\x7e\\x4c\\x2b\\xcd\\x13\\x33\\x95\\x67\\x33\\x7f\\\n\\x49\\xbf\\xcd\\xb3\\x96\\xdd\\x8b\\x03\\x40\\xc7\\xec\\x36\\x8a\\x27\\x7a\\x11\\\n\\x54\\x89\\x0e\\xcd\\xd9\\x45\\x9d\\xdd\\xe1\\x2b\\x9f\\xdc\\xca\\x2b\\x51\\x75\\\n\\x59\\x48\\x0c\\x68\\xfd\\x38\\xba\\x51\\x8c\\x7a\\xf9\\x1b\\xcc\\xd9\\x2b\\x81\\\n\\x3f\\xa8\\xa8\\x5c\\x4d\\x1b\\x50\\x81\\x29\\x63\\xea\\xcb\\x38\\xe2\\xc8\\x76\\\n\\x31\\xf2\\x57\\x86\\x63\\x8f\\xf2\\x70\\xa7\\x5d\\x35\\x01\\xb6\\xa0\\xc5\\x89\\\n\\x7b\\x35\\x7b\\x76\\x75\\xce\\x26\\x36\\x41\\xa9\\xb8\\x31\\x3d\\x40\\x03\\x4c\\\n\\x54\\xcd\\x5b\\xe8\\xba\\xcc\\x29\\x14\\xfa\\x04\\x86\\x96\\x78\\x86\\x35\\x0d\\\n\\xee\\x10\\xd1\\xc8\\xc8\\xf4\\xcb\\xbc\\x99\\x49\\x1e\\xab\\xb6\\x5e\\x63\\x20\\\n\\xf3\\xe6\\x6b\\x57\\xce\\xc0\\xfd\\xbc\\x92\\xbd\\xc8\\xef\\xac\\x68\\xa6\\xaa\\\n\\x88\\xd0\\x24\\xe4\\x96\\x29\\x9d\\xdd\\xec\\x3b\\x08\\x98\\x18\\x49\\x16\\x6c\\\n\\x17\\xda\\x11\\x73\\x3c\\x33\\xcc\\xa5\\x15\\x9c\\x9c\\xa4\\xc3\\x3d\\x66\\x20\\\n\\xdd\\x3c\\x5f\\x7d\\x8f\\x05\\x9b\\xcb\\xf3\\x98\\xea\\x96\\xd0\\xfa\\x92\\xf8\\\n\\x13\\xe7\\x82\\xaf\\x96\\x5a\\x8e\\xc5\\x21\\x1d\\x05\\x25\\x63\\xfc\\x8d\\x78\\\n\\xcd\\xa0\\xbd\\x88\\xbf\\x2e\\x3c\\xb2\\xc7\\xcd\\x1d\\xbe\\x71\\x77\\x8d\\xcf\\\n\\x42\\x0e\\xe9\\x7f\\x32\\xf3\\xe4\\xfb\\x15\\xa1\\x5d\\xc4\\x06\\x0a\\x4c\\xf8\\\n\\xd8\\xba\\x29\\xeb\\x09\\xe9\\x97\\x9c\\x4a\\x4e\\x15\\xfa\\x92\\x36\\xa2\\x97\\\n\\xdf\\x3f\\x78\\xf6\\x3d\\x26\\x55\\xa5\\x36\\xd2\\xd7\\x28\\x56\\x47\\xde\\xba\\\n\\x17\\xce\\xa5\\xfd\\x92\\x85\\x25\\x1e\\x5e\\xe9\\x6e\\xe0\\x38\\x35\\x0a\\x67\\\n\\x69\\xde\\xcc\\x1d\\xcb\\xe6\\x53\\x35\\xb7\\xb0\\xea\\x3d\\x25\\x39\\x81\\x1c\\\n\\xab\\x9c\\xe5\\xc7\\x34\\x37\\x68\\xde\\xac\\xfe\\xee\\xb6\\x83\\x98\\xe4\\xbd\\\n\\x13\\xe6\\x59\\x40\\x8a\\x2c\\x46\\xa4\\x93\\xea\\x17\\x3b\\x7b\\x5a\\xd9\\xab\\\n\\x18\\xa3\\x0c\\x16\\xe1\\x8c\\x2c\\x7a\\x2a\\x46\\x74\\x4e\\x64\\x50\\xe9\\xfd\\\n\\x05\\x74\\xcb\\xec\\x2c\\x7a\\x18\\x96\\xa4\\x7d\\xb3\\x8f\\xd6\\x07\\x61\\xba\\\n\\x9e\\x08\\x20\\x37\\xca\\x1c\\xbb\\x91\\x51\\xd0\\x8c\\x8d\\x9c\\x5e\\x66\\x93\\\n\\xdc\\x3b\\x58\\x25\\x10\\xf8\\xb2\\x68\\xe0\\xa3\\xca\\x04\\xe9\\x5a\\xad\\x7a\\\n\\xae\\x7d\\x4a\\x78\\xa9\\x3e\\x0b\\x66\\x92\\xba\\x52\\x25\\x17\\x5d\\x7b\\x29\\\n\\xf3\\x4b\\x01\\x1f\\x16\\xa8\\xd1\\xe7\\x74\\x61\\xbc\\x90\\xac\\x8c\\x34\\x6c\\\n\\xf7\\xb7\\x02\\x62\\xe1\\xc6\\xab\\x23\\xc6\\xd9\\x9f\\x2d\\xa8\\x7a\\x4b\\x25\\\n\\x58\\x09\\xad\\x0b\\x36\\x26\\x51\\x6d\\x41\\xd3\\xe9\\xae\\xb6\\xd5\\x3f\\xdc\\\n\\x90\\xc0\\xef\\xb8\\xad\\xca\\x82\\x56\\xc1\\xf5\\x99\\xc6\\xd7\\x58\\x97\\xe2\\\n\\x42\\x7e\\xea\\xc2\\x8b\\x3a\\xea\\x23\\x6a\\x6d\\xfe\\xbc\\xbb\\x3b\\x9e\\x69\\\n\\x81\\x97\\x89\\x71\\x4c\\x49\\x94\\xeb\\xf6\\xf0\\x87\\xf5\\x9e\\x00\\x89\\x60\\\n\\x01\\x4d\\x1b\\x3d\\xa9\\x35\\xea\\x35\\x82\\xff\\x00\\x3e\\x7a\\x22\\x7f\\x44\\\n\\x8f\\x7d\\x63\\xed\\x70\\x66\\x08\\xf1\\xb6\\xfa\\x9d\\x03\\xe9\\xeb\\x1d\\x2e\\\n\\xcd\\x37\\x42\\xad\\x41\\xa1\\xb8\\x39\\x66\\x1b\\x9d\\x74\\xc9\\x03\\xc0\\xe0\\\n\\x57\\x51\\x0f\\x64\\x36\\xc8\\x2e\\xc5\\xd3\\xe9\\x8d\\x76\\xb8\\x78\\x4d\\x56\\\n\\x34\\x40\\xba\\x22\\xf2\\x57\\xd8\\x01\\x7e\\x94\\xbd\\x6c\\xb7\\xc7\\x01\\x57\\\n\\xad\\x04\\x76\\x7a\\x5a\\x46\\x87\\x33\\xb1\\xbc\\xce\\xff\\x00\\x86\\x6b\\x7f\\\n\\xb4\\x54\\x78\\xec\\xd9\\xd9\\xff\\x00\\x50\\x00\\x09\\x14\\x03\\xb7\\xf1\\x92\\\n\\x30\\x34\\xef\\x2f\\xb6\\xc7\\x19\\x61\\x14\\x4c\\xa2\\xbb\\xd1\\xa2\\x21\\xe4\\\n\\xe8\\xec\\xb1\\xa9\\x0a\\x33\\x6b\\xd4\\x6d\\x56\\xe6\\x78\\x64\\x75\\x91\\xcf\\\n\\x08\\xd7\\x8b\\x6e\\x0b\\x34\\xe2\\x91\\x0e\\x98\\x94\\x3f\\xb1\\x79\\xc7\\x19\\\n\\x92\\xf1\\x42\\xbb\\xe6\\x0d\\x8f\\x81\\xcd\\x8f\\xf3\\x03\\xff\\x00\\xb5\\xe0\\\n\\x00\\x75\\x16\\xd5\\x8a\\x2a\\xbd\\x45\\x29\\x16\\x2e\\xe5\\xb1\\xaf\\x87\\x3a\\\n\\x73\\x5d\\xbe\\x28\\x90\\x21\\xb8\\xd7\\x9f\\xce\\x6b\\x83\\x7f\\xec\\x77\\x45\\\n\\x7a\\xe8\\x37\\xf4\\x61\\x48\\x75\\x35\\xf8\\xa3\\x5c\\xce\\xfa\\x2a\\x16\\xa6\\\n\\x01\\xa8\\xb3\\xd4\\xab\\xbc\\x02\\xba\\x60\\x2f\\x31\\x73\\x2a\\xa6\\x35\\x33\\\n\\x0d\\xe9\\xb9\\xa2\\x9d\\x31\\x96\\x47\\x39\\x13\\xdb\\xa3\\xbc\\x79\\xa1\\xb2\\\n\\x99\\x51\\xa3\\x73\\xf4\\x09\\x5f\\x39\\x9c\\xe4\\x87\\x50\\xa0\\xa9\\xcd\\x6e\\\n\\x8b\\x59\\x21\\xe2\\x62\\x58\\x42\\x7c\\x65\\xa5\\xd0\\xcb\\x63\\x70\\x3d\\x7a\\\n\\x25\\x8e\\x75\\xf7\\x85\\x21\\xb6\\xb3\\xea\\xc7\\xb7\\x55\\x31\\x00\\x01\\x0e\\\n\\x26\\xa0\\x0d\\xf1\\xfa\\xe0\\x20\\xf3\\x1e\\x0f\\x18\\xd0\\xb9\\x74\\x6b\\xee\\\n\\xf2\\x34\\x09\\x5b\\x69\\x00\\xc1\\x1c\\x40\\x2b\\x9e\\x5a\\x22\\xbd\\xab\\x1b\\\n\\xf1\\x75\\x0b\\x13\\x50\\x35\\x19\\x1d\\x10\\xfa\\x82\\x12\\x42\\xc8\\x26\\xe5\\\n\\xe6\\x8a\\x0f\\xaf\\x12\\xe3\\x34\\xd7\\x92\\x48\\x1d\\x6e\\x69\\x05\\xc8\\xc3\\\n\\xc9\\x56\\x04\\xcf\\xce\\xd9\\x86\\xd7\\x1a\\xad\\x5b\\x1b\\x4a\\x32\\x7f\\x66\\\n\\xaf\\x40\\xee\\xbc\\x8e\\x45\\x70\\x4e\\x0a\\x41\\x81\\xa8\\xb1\\x4b\\xbc\\x8d\\\n\\xcf\\xe5\\x91\\x79\\x62\\x6d\\xb2\\xfc\\xf8\\x5b\\x8e\\xf1\\xbd\\x73\\x84\\xe6\\\n\\x27\\x15\\x99\\xb5\\x1d\\x00\\x7b\\x3c\\x73\\xac\\x94\\xa3\\x27\\x3c\\x38\\x59\\\n\\x93\\x5e\\xb1\\xd9\\x12\\xdd\\x6e\\x9e\\xcd\\xf2\\x2e\\x75\\x25\\x4a\\xaf\\xd9\\\n\\xb6\\x12\\x65\\x93\\x48\\xb4\\xf0\\xb6\\xce\\x0d\\x1b\\xfa\\x28\\x5b\\x18\\xfa\\\n\\x87\\xbd\\xaa\\xf1\\x9b\\x75\\x2d\\x61\\xf9\\xbd\\x34\\x12\\x58\\x84\\xc0\\x7c\\\n\\x5b\\xd7\\xd3\\xda\\xff\\x00\\x65\\x0e\\x91\\xcf\\xf9\\xbd\\x9a\\x5b\\x56\\x5f\\\n\\x46\\xce\\x34\\xdf\\xed\\x6f\\x61\\xc0\\xd8\\xc8\\x8c\\xf3\\x34\\x61\\x10\\x1a\\\n\\xac\\x23\\xcb\\x74\\x74\\x7a\\xbe\\x37\\x26\\x32\\x1b\\x4f\\x0b\\x86\\x57\\x0e\\\n\\x42\\xab\\x45\\xbe\\x98\\x69\\x76\\x09\\xe0\\x52\\x59\\xb2\\x40\\x7c\\xa9\\xa8\\\n\\xe2\\x81\\x45\\x4a\\xfa\\x23\\x77\\x45\\xee\\xc6\\x2b\\xfa\\xf4\\x49\\x8d\\x74\\\n\\x97\\x59\\x18\\x9a\\x23\\x23\\x83\\x12\\x38\\x3c\\xd1\\x74\\x8e\\xb2\\xab\\x1a\\\n\\xa9\\x74\\xda\\xdd\\x49\\x97\\x4d\\x7c\\x06\\x8c\\x7f\\x5a\\xd6\\xd4\\x72\\xd4\\\n\\x3c\\xbf\\x03\\x7e\\xf7\\x37\\x95\\xc5\\xe9\\x67\\x64\\xfd\\x98\\xf5\\x9b\\x7d\\\n\\x93\\x9c\\xc7\\x63\\xa3\\xf7\\x0c\\x69\\xae\\x64\\xd7\\x8f\\x72\\x28\\xcc\\x43\\\n\\xe7\\xd3\\x53\\x57\\xa3\\x46\\xf5\\xad\\x6d\\x9d\\xae\\x5a\\x21\\x66\\x4e\\xd2\\\n\\x66\\x6c\\xb5\\x3a\\x18\\xef\\x5b\\x9e\\x8a\\x89\\xb4\\x97\\x29\\xce\\x62\\xd8\\\n\\x5f\\x1a\\x11\\xae\\x1b\\xd4\\xf4\\xdc\\xbc\\x26\\x9d\\x83\\xf9\\x47\\x87\\x72\\\n\\x5c\\x34\\xfd\\x07\\xd5\\xb9\\x12\\x9a\\xdd\\x38\\x3b\\xed\\x19\\x4a\\xfc\\xf5\\\n\\xd1\\xb3\\x03\\x4e\\xd8\\x0f\\x6e\\xe5\\x7d\\xe9\\x6d\\x41\\xf2\\x51\\x8e\\x11\\\n\\x9f\\xa8\\x6a\\xbb\\xd0\\x0f\\x4b\\xa0\\xd0\\x19\\x2d\\x18\\xaa\\xc5\\xdc\\x87\\\n\\xbd\\x3c\\xa8\\x63\\xe7\\xbe\\xf9\\x62\\xa2\\xb5\\x99\\x65\\xfb\\x23\\xaf\\x33\\\n\\x22\\xa6\\x29\\xd0\\x07\\xb4\\xb7\\x4f\\xf4\\x02\\xa2\\x51\\x5a\\x5c\\xe2\\xe2\\\n\\xe3\\x32\\x39\\xaf\\x30\\xc1\\x5b\\xb6\\x6d\\x30\\x48\\x1e\\xbd\\x17\\x58\\xdc\\\n\\x53\\xcb\\x20\\x0a\\x63\\x4e\\x6a\\xbd\\x16\\x36\\xeb\\x2a\\x12\\x6c\\x37\\xec\\\n\\xe7\\xc5\\x46\\x63\\x17\\x4b\\x0d\\xe6\\x67\\x73\\x97\\x29\\x63\\x87\\x0f\\x47\\\n\\xb0\\xd2\\xfc\\xb9\\x7c\\xf4\\x4b\\xd6\\xa1\\x46\\x87\\xac\\x6e\\x99\\x48\\x8a\\\n\\x50\\x6a\\x1a\\xd0\\x95\\x6b\\x1d\\x1c\\x65\\xb4\\x59\\x39\\xf1\\x75\\x81\\x30\\\n\\x14\\x00\\x53\\x74\\xfe\\x0d\\x31\\x18\\x21\\xf6\\x98\\xc2\\x91\\x98\\x7c\\x73\\\n\\x8c\\x8e\\xe1\\xad\\x8d\\x18\\x47\\x04\\xd7\\x5e\\xb7\\xc9\\xef\\x15\\x2f\\xee\\\n\\xb6\\x85\\x7d\\xdd\\x6f\\x10\\x71\\x0f\\x87\\x1a\\xf8\\x87\\xf3\\x59\\x8f\\x32\\\n\\x2c\\xbe\\xca\\x67\\xde\\xd2\\xba\\xf5\\xc6\\xe9\\xa9\\x3c\\xdc\\xc8\\x59\\x24\\\n\\x44\\x00\\x34\\xff\\x00\\xa5\\x2a\\xae\\x63\\x12\\x42\\xda\\x41\\xb0\\x08\\x7f\\\n\\x18\\xb9\\x9b\\xd8\\x79\\x54\\xac\\x80\\xcd\\xea\\xd2\\x81\\x12\\xaf\\x40\\x67\\\n\\x40\\x4c\\x14\\xfd\\x88\\x20\\x63\\xbd\\x11\\xa7\\xd3\\xed\\x9b\\xfb\\x4c\\xe9\\\n\\x19\\xec\\x1e\\x79\\xdf\\x3e\\x00\\xe8\\x09\\x47\\x90\\xba\\x5a\\x88\\x66\\x8d\\\n\\x71\\x4f\\x3d\\x4c\\xd6\\x5a\\x72\\x4a\\x7d\\x99\\x6d\\x2c\\x69\\xb2\\xe9\\x04\\\n\\x0c\\xd3\\x84\\xaf\\xc3\\x9b\\x18\\x4b\\x67\\x47\\xbf\\xfe\\xcb\\x18\\x0a\\xd1\\\n\\xd0\\xb3\\x5a\\xc9\\xd6\\x51\\x5b\\x55\\x46\\xd1\\x12\\xc7\\xdb\\x95\\xb4\\x30\\\n\\x54\\x11\\xa2\\x3f\\x05\\x14\\x47\\xe6\\x56\\xb0\\x19\\xa1\\xcc\\xb9\\x60\\xf6\\\n\\x38\\x6f\\xd5\\x03\\xfb\\x5c\\x41\\xef\\x42\\x8f\\x46\\x2b\\x62\\xaf\\x64\\x33\\\n\\x4f\\x97\\x6e\\xe2\\x37\\x97\\x18\\x7d\\x9c\\x26\\xe5\\x8b\\xb3\\x0a\\x65\\x3b\\\n\\x3a\\xab\\x1b\\x7b\\x13\\x23\\x5d\\xaa\\x61\\xf8\\x3c\\x8b\\x2f\\x49\\x68\\x1a\\\n\\x99\\x4b\\x66\\x7d\\xf1\\xa6\\x57\\x5c\\x1f\\x6a\\x43\\xe4\\xb1\\x78\\xd2\\x32\\\n\\x2f\\x99\\xfb\\x6e\\x6c\\xf8\\x0d\\x1a\\xed\\xa1\\x29\\xe2\\xa3\\x2d\\x7c\\x02\\\n\\x1d\\xb3\\xd0\\xd4\\x5d\\xa4\\xf5\\x3a\\x75\\xd2\\x9b\\x95\\x8b\\xc7\\x50\\x22\\\n\\x29\\x83\\x87\\xc3\\xd0\\x0d\\xea\\xe1\\x8a\\xd6\\x0f\\x4c\\xfa\\xea\\xc2\\x20\\\n\\x35\\x53\\x06\\xd1\\xbc\\x58\\x61\\x0e\\x41\\x80\\x05\\xf7\\x90\\xd7\\x68\\x1f\\\n\\xdb\\xdd\\x4e\\x3b\\x0a\\xc7\\x19\\x38\\x9e\\x7a\\x09\\x76\\x94\\x5c\\x52\\xee\\\n\\x6d\\x54\\xc8\\x72\\xeb\\xce\\x51\\x55\\x37\\xd3\\x81\\x5d\\xad\\x3e\\x45\\x95\\\n\\xb8\\x65\\x0f\\xed\\x08\\xf9\\xc1\\xb5\\x97\\x0a\\xf3\\xe3\\x4d\\x2d\\x96\\xba\\\n\\x65\\x89\\xc8\\x5c\\x11\\xf5\\xe6\\xee\\xd2\\x70\\x2d\\x02\\xcd\\x8f\\xe3\\x13\\\n\\x47\\xf5\\xab\\xac\\x74\\x24\\x99\\x3c\\x53\\x10\\x63\\xac\\x9c\\x92\\x51\\x4a\\\n\\x91\\x41\\x28\\x9f\\x55\\xbf\\xd4\\x19\\x64\\xaa\\x34\\x87\\x8b\\xd5\\x9d\\xbe\\\n\\x22\\x47\\x21\\x89\\xed\\x5c\\xf9\\x23\\x0e\\x5a\\xc2\\x06\\x75\\x14\\x98\\xea\\\n\\x8b\\xb5\\x82\\xe5\\xd1\\x63\\x11\\xea\\x63\\x41\\x9d\\x8d\\xc9\\xc7\\xf6\\x6a\\\n\\xda\\x30\\xad\\xab\\xda\\x99\\x69\\xcc\\xfd\\x87\\x94\\xca\\x86\\xea\\xd4\\x29\\\n\\x36\\x77\\xb6\\x5b\\xa6\\xe0\\x1b\\x50\\x04\\x85\\x96\\x68\\xd1\\x4c\\x6e\\x49\\\n\\x3e\\x58\\xf5\\xc4\\x86\\x33\\x11\\x8c\\xf3\\xb4\\x6c\\xca\\x0c\\x3e\\x56\\x36\\\n\\x7a\\x36\\xa3\\x75\\xda\\xe0\\x85\\x63\\xb0\\x35\\x48\\xda\\x71\\x09\\x78\\x84\\\n\\xba\\xd0\\xec\\x9f\\xe5\\x77\\xfc\\xe7\\x39\\x7a\\x1f\\xd0\\xfc\\x25\\x6d\\xae\\\n\\x2e\\xbc\\x95\\xf0\\x34\\xa8\\x80\\x12\\x1d\\x70\\xea\\xba\\xb9\\x3a\\x0f\\x74\\\n\\xcd\\x89\\xf0\\x56\\x6f\\x4a\\x16\\xe2\\x41\\xfb\\x12\\xbb\\x8d\\x88\\x1d\\x7e\\\n\\xa8\\x7c\\x47\\x07\\xce\\xd1\\xc3\\x14\\xee\\x8b\\x21\\xfa\\xbd\\x7d\\xb3\\x4b\\\n\\x81\\x6d\\x89\\x1a\\xa8\\x57\\x98\\x60\\xb9\\xaf\\xd8\\x2a\\x96\\x52\\xa6\\xfa\\\n\\xfb\\x3a\\x2d\\x84\\xbc\\xee\\xe4\\x2b\\x8d\\x00\\xe0\\xb2\\x31\\x7c\\x65\\x84\\\n\\x77\\x2f\\xe1\\xab\\x2f\\x95\\xf5\\x47\\x3a\\xeb\\xe6\\x82\\xeb\\x9c\\xe3\\x3a\\\n\\x0c\\xa1\\xea\\xb2\\x85\\x47\\x31\\x5c\\xb2\\x63\\x64\\x23\\xea\\x75\\x4e\\xd5\\\n\\xd2\\xa7\\x66\\x24\\xf9\\x5e\\x48\\xf4\\xe0\\xd7\\x03\\xe6\\xc5\\xaf\\x12\\x37\\\n\\xa4\\x72\\x26\\xa7\\x1a\\x13\\x21\\xf4\\x71\\x5f\\xa5\\xfe\\x1c\\x9c\\xe1\\xb4\\\n\\x9e\\x8d\\x78\\xc3\\x99\\xaf\\x71\\x70\\x62\\x65\\x29\\x04\\x5e\\xcc\\xb3\\x30\\\n\\x89\\x67\\x92\\x24\\x80\\x90\\xfa\\x76\\x69\\xd5\\xa8\\xf2\\x9b\\xa8\\x35\\x87\\\n\\xf7\\xc2\\x29\\xea\\x5d\\xb7\\x24\\x7d\\x7a\\xdb\\x6a\\xed\\x68\\xb7\\xf8\\xa7\\\n\\x9c\\x23\\x65\\xd7\\x08\\xba\\x9f\\x16\\xa8\\x0d\\x28\\x7e\\xd5\\x8d\\x4a\\x60\\\n\\xfc\\xe1\\x34\\x94\\xd9\\x52\\x7a\\x4e\\xe5\\x58\\x15\\x29\\xcf\\x84\\x0f\\x50\\\n\\x07\\x2d\\x41\\x3e\\x85\\x61\\x4b\\x92\\xbc\\x4d\\xd4\\x3d\\x6c\\x87\\xb3\\x0e\\\n\\xf0\\x66\\x10\\x99\\xed\\x76\\x15\\x07\\x72\\x65\\x37\\x5a\\x15\\x5d\\xdb\\x31\\\n\\xbb\\xbe\\x51\\xac\\xf8\\x5a\\x97\\xd6\\xeb\\x48\\x29\\x65\\xee\\x65\\xda\\x08\\\n\\xf8\\xc2\\x78\\xbd\\xba\\xab\\x61\\x0d\\x28\\xce\\x0c\\x1a\\xf8\\xba\\xb7\\x15\\\n\\xb3\\x4b\\x49\\x42\\xbb\\x66\\x7b\\x78\\xf4\\x98\\xf1\\x22\\x41\\xb5\\xc1\\x7f\\\n\\x52\\xf8\\xe5\\xc8\\x2b\\x4b\\xeb\\x56\\xd7\\xe7\\xf1\\xc1\\x65\\x38\\x5e\\x83\\\n\\x02\\xd4\\x00\\xde\\x4e\\xdb\\xb5\\xab\\x3d\\xf9\\x08\\xac\\x69\\xc2\\x1f\\xa3\\\n\\xf7\\x26\\x6b\\x18\\x16\\xae\\xcc\\x13\\x14\\x14\\x10\\x0a\\xaa\\xcb\\x21\\x86\\\n\\x58\\xec\\x05\\x70\\xda\\x3a\\xef\\x88\\xaa\\x85\\xdc\\x64\\x47\\x65\\x99\\xce\\\n\\x77\\xe4\\xb1\\x5e\\x9e\\x6b\\x51\\x2f\\x39\\xa3\\x11\\x1a\\xbe\\x6d\\x1f\\x9c\\\n\\x0b\\x66\\x6b\\x40\\xd2\\xd6\\x59\\x61\\x6c\\x62\\x09\\x77\\xd5\\x0d\\xcf\\x4f\\\n\\x45\\x8f\\x28\\x34\\xb2\\x58\\xda\\xd4\\xe1\\x8e\\xce\\xb7\\x58\\x50\\xb5\\x33\\\n\\x34\\xc1\\xe5\\xe4\\xc4\\x43\\xdd\\x58\\x61\\xa3\\xb6\\x83\\xd1\\xdc\\xf4\\xa9\\\n\\x94\\x0e\\x7c\\x3d\\x0d\\xf0\\xed\\xa7\\xd9\\x96\\x5a\\x86\\x85\\x06\\x71\\x96\\\n\\x89\\x90\\x7c\\x7c\\x5d\\x48\\xf9\\xf6\\xd0\\xc4\\xcd\\x50\\x4e\\x40\\xed\\x15\\\n\\xf4\\xdf\\x90\\x9d\\x0e\\x73\\xb3\\x84\\x82\\x8d\\x01\\x02\\x56\\x1e\\x6a\\x1e\\\n\\x13\\xb3\\x52\\x77\\x8c\\xca\\x66\\xc8\\x8c\\xb2\\x3e\\x53\\xb3\\x0c\\x13\\xa4\\\n\\x9b\\x5a\\xa1\\x15\\xf7\\xd8\\xd6\\x28\\x06\\xa9\\x8f\\xff\\xc4\\x00\\x2f\\x10\\\n\\x00\\x02\\x03\\x00\\x02\\x02\\x02\\x02\\x02\\x02\\x01\\x04\\x01\\x05\\x00\\x00\\\n\\x03\\x04\\x01\\x02\\x05\\x00\\x06\\x12\\x13\\x11\\x14\\x07\\x15\\x21\\x22\\x16\\\n\\x23\\x24\\x17\\x31\\x32\\x33\\x42\\x10\\x25\\x34\\x35\\x41\\xff\\xda\\x00\\x08\\\n\\x01\\x01\\x00\\x01\\x05\\x02\\xd5\\xdc\\x94\\x9e\\xcb\\xdb\\x75\\xbc\\xa1\\x0a\\\n\\xdc\\x23\\xc9\\x90\\x6f\\x62\\xda\\x34\\xf5\\xc5\\x94\\xf2\\x79\\x51\\x5c\\xce\\\n\\x6a\\x6c\\x11\\xce\\x7f\\x98\\x03\\x02\\x82\\x5b\\xba\\x6f\\xdc\\x2f\\x76\\x3c\\\n\\xb5\\xf1\\x76\\xd1\\x31\\xa9\\x78\\xf8\\x39\\xad\\xca\\x0e\\x7e\\x34\\x1e\\x06\\\n\\x50\\xbb\\xbe\\xd3\\x3b\\x7a\\xdf\\x8b\\x3a\\xe6\\xc6\\x7f\\x5d\\x26\\xce\\xb2\\\n\\xdb\\x57\\xd4\\x25\\xcd\\xf0\\x12\\x14\\x79\\xff\\x00\\x1c\\x25\\x6d\\x51\\xad\\\n\\xfc\\x54\\xe2\\x69\\x98\\x63\\xf1\\xde\\x9d\\xd5\\x24\\xdb\\x32\\xe2\\xdf\\x2d\\\n\\x6f\\x1d\\x90\\x93\\x46\\x74\\x8c\\x7e\\x65\\xd1\\xdd\\x33\\x50\\x67\\x5c\\x06\\\n\\x96\\x69\\x23\\xab\\x07\\xe2\\xeb\\xd9\\x7b\\x4b\\x36\\x8e\\x5d\\x8a\\x57\\x8c\\\n\\x5e\\x08\\x5a\\xa8\\x49\\x0f\\xd5\\xbd\\x79\\xec\\x52\\x79\\xf7\\x06\\x2a\\xba\\\n\\xed\\xa2\\xfa\\x24\\x38\\xea\\xfa\\x94\\x55\\x79\\xd2\\x60\\x70\\x9c\\xeb\\xea\\\n\\x18\\x86\\x55\\x52\\x87\\x6f\\x30\\x57\\x1f\\x60\\xcb\\x24\\x5b\\x7d\\x60\\xbd\\\n\\xfb\\xf5\\x4e\\x7a\\x6a\\xa2\\x7a\\x69\\x33\\x5a\\x43\\xe4\\xb5\\xb3\\x8d\\xfe\\\n\\xa5\\x00\\x4f\\x28\\x9f\\x2a\\xdf\\xc6\\x96\\xe7\\xaa\\x63\\x91\\x68\\xb8\\xbf\\\n\\x63\\x24\\xbf\\xb4\\xd7\\xe6\\xa8\\x11\\x63\\xb1\\xc1\\x8b\\x55\\xf5\\x34\\xcc\\\n\\x95\\x95\\xcb\\xd6\\x6f\\x43\\xb4\\x67\\xb6\\x9a\\xe5\\xd6\\x6f\\xcd\\x64\\xdf\\\n\\xb7\\x07\\x91\\x66\\x89\\xd5\\x7a\\x4e\\x36\\x62\\xa6\\xaf\\xae\\xa7\\xa4\\x1b\\\n\\x9a\\x59\\x0b\\x1b\\x9d\\x62\\x8c\\x02\\xaf\\xf6\\xc4\\x96\\x6b\\xa0\\x99\\x06\\\n\\x59\\xfc\\xb4\\x57\\x6b\\xb9\\x5a\\xd9\\xd7\\x3f\\x19\\x6a\\xd3\\x07\\x13\\xb5\\\n\\x75\\x9e\\xb0\\x45\\x4f\\x8e\\xfd\\x5b\\xff\\x00\\x1b\\x68\\x83\\x43\\x42\\x18\\\n\\xe1\\x49\\x5f\\x13\\xe8\\x31\\x72\\x67\\xb1\\x52\\x5d\\xae\\xd3\\xd6\\x15\\xc7\\\n\\xd1\\x2f\\x52\\xdb\\x79\\x9a\\x55\\x6b\\xfe\\xcf\\xd7\\xce\\xbc\\x1c\\xbd\\x5b\\\n\\xdf\\x3c\\x4b\\x2e\\x38\\xac\\x52\\x57\\x5e\\x63\\xc6\\x95\\xe4\\x8e\\xb3\\xc6\\\n\\x85\\xe5\\x0c\\x98\\x55\\xa9\\x1a\\xb5\\xee\\x94\\x34\\x30\\x9c\\x35\\x28\\x2c\\\n\\xb0\\xeb\\xc2\\x04\\x10\\x57\\x87\\x1e\\x4e\\x92\\x91\\x8f\\x2f\\x39\\xa9\\xca\\\n\\x20\\xdc\\xc1\\x9a\\x69\\x65\\xca\\xd1\\xc3\\x70\\x19\\xa2\\xd6\\xc0\\xf2\\xe7\\\n\\xa6\\x39\\x6a\\xfc\\x47\\xfe\\x30\\x1b\\x79\\x58\\x79\\xe4\\x6d\\x86\\xea\\x55\\\n\\xc9\\xe4\\x4e\\x16\\xdf\\x04\\xa4\\x7c\\x73\\xc2\\xdf\\x1a\\x13\\x3c\\x18\\x22\\\n\\xbc\\xad\\x7f\\x8c\\xbe\\x9e\\x1e\\x9a\\x91\\x52\\xec\\x1d\\x73\\x07\\xad\\x22\\\n\\xbc\\x27\\xbf\\xdb\\x51\\xc3\\xe6\\xbd\\x76\\xf6\\xc3\\x8d\\x58\\xf8\\xa5\\x26\\\n\\xdc\\xea\\xff\\x00\\x8c\\x9b\\x63\\x8d\\x74\\xb7\\x16\\xa3\\x01\\x38\\x42\\x41\\\n\\xff\\x00\\x0e\\x06\\xc4\\xa8\\xdd\\x6f\\x3e\\xb5\\xdf\\xcb\\xcc\\xb1\\xbb\\x59\\\n\\x7e\\xe7\\x68\\x61\\xfb\\x0f\\xa9\\xf5\\x0e\\xc2\\xe3\\x39\\x7f\\xb8\\x10\\x8e\\\n\\x52\\xda\\x85\\xaf\\x97\\x2c\\x69\\x8e\\x3e\\x19\\x2c\\x0a\\xd6\\x78\\x57\\xa4\\\n\\x7b\\x73\\x6d\\x70\\xd9\\xad\\x82\\x53\\x94\\x92\\x5e\\x1d\\x1d\\xe6\\x17\\xcd\\\n\\xbb\\xe4\\xc0\\xcb\\x06\\x79\\x56\\x24\\x16\\x23\\xd1\\xcf\\x2a\\xc7\\x0a\\x4a\\\n\\xd6\\x7d\\x3f\\xec\\xf1\\xf0\\xb9\\x94\\x81\\x5b\\x64\\x22\\x11\\x72\\x1d\\x15\\\n\\xa8\\x39\\x8b\\x5d\\xaf\\x88\\x93\\xcc\\x4d\\x9f\\xec\\x69\\xf9\\xe5\\x8c\\x2c\\\n\\xe7\\x94\\xea\\x26\\x4b\\xb8\\x1a\\xd1\\xdd\\x0c\\xea\\xd1\\xc7\\x90\\xbd\\xbf\\\n\\x8b\\xf2\\xc2\\xe4\\xff\\x00\\x1c\\xb4\\xcc\\x72\\x83\\x33\\x06\\xcc\\xc6\\x1a\\\n\\xf7\\x34\\x73\\x5f\\xfb\\x10\\x78\\xda\\x06\\x87\\x57\\x90\\x18\\x51\\xca\\x7f\\\n\\x13\\x5c\\xf1\\x41\\x6c\\x88\\xab\\xc8\\xcf\\xac\\xf3\\xf1\\xdf\\xe4\\x9c\\xaa\\\n\\x98\\x9d\\xdb\\x2b\\x70\\xda\\x7d\\x9d\\x93\\x33\\xd5\\xba\\x60\\xf3\\x49\\xf9\\\n\\x3f\\xd7\\xf5\\xf3\\xcb\\x65\\x86\\x8f\\x6c\\x2a\\xba\\xbd\\x33\\xf2\\x16\\x66\\\n\\xca\\x6b\\xba\\x93\\x31\\xbb\\xd6\\xe0\\xd6\\x70\\x17\\xa9\\x7b\\x0f\\x6a\\xc9\\\n\\xc4\\xb0\\x6d\\xbf\\xdc\\x1f\\xeb\\x80\\xe9\\x3d\\x1c\\x4d\\xb7\\x81\\xaf\\xdd\\\n\\xfb\\xb6\\xcc\\x9b\\x7f\\xf1\\x9f\\x61\\xc9\\x67\\x1c\\x26\\xe8\\xda\\x28\\x1b\\\n\\x40\\x11\\xcf\\xb5\\xf3\\xc3\\x5e\\xbc\\x33\\x51\\x5a\\x17\\x77\\x40\\xea\\x21\\\n\\xb2\\xbb\\x3c\\xb6\\x8a\\x87\\xcb\\xa9\\x6c\\x62\\x2b\\x4b\\x4d\\x4f\\x49\\x99\\\n\\x50\\x6b\\x2c\\xad\\x1d\\x4c\\x27\\x56\\xfe\\x5c\\x9b\\xdb\\xe2\\x4f\\x79\\xb8\\\n\\xbc\\xfd\\x97\\xfe\\x0d\\xac\\xcc\\x2d\\x7a\\x6e\\x2c\\x79\\x79\\xd9\\x70\\xee\\\n\\x91\\x9b\\x53\\x3f\\xb8\\x6b\\x65\\x53\\xfc\\x91\\x3a\\xf3\\xb7\\xfb\\x7f\\x59\\\n\\x99\\x90\\xcb\\x15\\xeb\\x32\\x3a\\x4e\\x96\\x13\\x0f\\x6b\\xb0\\xb7\\xfa\\xf5\\\n\\x97\\x2a\\xb5\\x5c\\x3e\\x67\\xf0\\xe4\\xcf\\x2f\\x78\\xe7\\x85\\xe6\\xf8\\xd5\\\n\\xf1\\x54\\x61\\xbc\\xda\\xb9\\xb7\\xad\\xd8\\x12\\xde\\xe0\\x0e\\x4f\\x46\\x73\\\n\\xd4\\x3f\\x0b\\xd7\\xd3\\x62\\xae\\x64\\x6b\\x0a\\x8c\\x2b\\xa7\\x9f\\x03\\x9a\\\n\\xc7\\x20\\x51\\x3c\\x8e\\x92\\x90\\xcd\\xa9\\xb6\\x30\\x87\\xa3\\xfa\\x28\\x06\\\n\\xfb\\x20\\x33\\x55\\xec\\x2d\\x4b\\xcb\\xba\\xad\\x84\\x9a\\xe0\\xa7\\x10\\x76\\\n\\xc8\\xf3\\xac\\xfe\\x49\\x7f\\x33\\x57\\x03\\xb1\\xe6\\xef\\x23\\xf9\\x9f\\xb7\\\n\\x52\\x3b\\x32\\xb9\\xb7\\x29\\xab\\xd8\\x44\\xa8\\xda\\x64\\xef\\x95\\xd4\\xda\\\n\\x1b\\x8b\\x29\\xef\\x36\\x36\\x1f\\x5f\\x5f\\xae\\x28\\xb0\\x45\\x35\\x98\\x8a\\\n\\x79\\x71\\x9b\\x47\\x01\\xff\\x00\\xb6\\x19\\x32\\x0c\\xef\\xab\\x6d\\x5e\\x64\\\n\\x78\\x0e\\xcb\\xf5\\xea\\xfc\\x8b\\x2a\\x07\\xcd\\x64\\x4a\\x22\\x4e\\x6c\\xab\\\n\\x26\\x05\\xab\\xcc\\x7a\\xff\\x00\\xf6\\xfb\\xda\\x38\\x21\\xd6\\x97\\x73\\x75\\\n\\x4c\\xee\\x31\\xbe\\xb0\\xc1\\xa3\\xb5\\x7d\\x01\\x1a\\xf5\\xad\\xca\\xd4\\x78\\\n\\xa8\\x5b\\x04\\xea\\xd3\\x37\\x4e\\x35\\x12\\xcf\\xb5\\x3e\\xea\\xd5\\x4b\\x77\\\n\\x61\\xb8\\x57\\xa0\\x12\\xe3\\x77\\x4b\\xbd\\x8b\\x3d\\x80\\x6e\\x23\\xa8\\x1d\\\n\\x22\\x08\\xa2\\x00\\xfd\\x27\\xf2\\xf9\\xb2\\xf8\\x0c\\xb3\\x26\\xeb\\x4b\\xd6\\\n\\x93\\xd7\\x74\\x28\\x3c\\x76\\x43\\x14\\x5d\\x7a\\xa6\\x37\\x6d\\x37\\x25\\xa2\\\n\\x59\\x2f\\x94\\x2d\\xc1\\x12\\xb5\\x9b\\x52\\xe6\\x18\\x53\\x5e\\x2f\\xe9\\xa5\\\n\\xe7\\x67\\xae\\xad\\xa4\\x13\\x65\\x77\\x55\\x6e\\xcf\\x62\\x7f\\x75\\x85\\x03\\\n\\xe4\\x1c\\x8d\\xba\\x2f\\x65\\x99\\x26\\x9e\\x87\\x6f\\x20\\x03\\x99\\xd6\\xaa\\\n\\x07\\x27\\x53\\x33\\xf5\\xae\\x8d\\x43\\x9a\\xf3\\x9e\\x68\\x9e\\xbe\\xce\\xe6\\\n\\x2a\\x78\\xc8\\x17\\x4f\\x47\\x53\\xaf\\xd7\\x1d\\x8b\\xac\\xb1\\x78\\xa7\\x5b\\\n\\x73\\x42\\x7b\\xa7\\x9e\\x29\\xba\\xd2\\x1e\\xaa\\xd3\\xfb\\x58\\x31\\x15\\x9f\\\n\\x3a\\xfc\\xb2\\xef\\xab\\x8b\\x5a\\xc4\\xe5\\x46\\x4b\\xd9\\x00\\xd2\\x63\\x78\\\n\\xd1\\xaf\\x34\\x40\\x75\\xa8\\x6a\\x6c\\xb9\\x5d\\xe1\\x30\\x2a\\x0e\\x18\\x69\\\n\\x95\\x06\\xd5\\x23\\x1a\\xff\\x00\\x68\\x87\\xa2\\x82\\x37\\x61\\x1c\\x49\\xb6\\\n\\x5c\\x35\\xd5\\x15\\x34\\x09\\xab\\xb7\\x44\\x9d\\x6b\\x57\\x40\\xd1\\xec\\x60\\\n\\x9c\\x1f\\xb6\\xb6\\x48\\xb2\\x7a\\xa8\\xd9\\x17\\xb6\\xbb\\x65\\x32\\x8b\\xfb\\\n\\x6d\\x75\\x75\\xd5\\x60\\xbd\\x76\\xb6\\x57\\x7f\\xb6\\x66\\xb4\\x4e\\xcb\\x9a\\\n\\xb8\\xf3\\xe8\\x76\\x2f\\x21\\x4a\\x6c\\x53\\xe6\\xe6\\x85\\x3a\\x47\\x94\\xc7\\\n\\x84\\x79\\x56\\xf5\\x98\\x28\\x41\\x56\\x2e\\x7f\\xf5\\x9e\\xf1\\x73\\x48\\x6d\\\n\\x00\\xcb\\x54\\xe3\\x0a\\x4a\\xc4\\xcf\\xd6\\x99\\xe5\\x00\\x11\\x72\\x6f\\x1c\\\n\\x25\\x3e\\xc4\\x6a\\x75\\x77\\xfe\\xdf\\x50\\xea\\x79\\x37\\xc5\\xc8\\xcf\\xc7\\\n\\xae\\x5f\\x6b\\x4e\\x31\\xf5\\x7a\\x76\\xd8\\x2a\\xff\\x00\\x7f\\x64\\x26\\x54\\\n\\x01\\x28\\x40\\x9d\\x33\\xb4\\x8b\\xa6\\x96\\x5e\\x61\\x8b\\xda\\xa8\\x9b\\x98\\\n\\xb1\\x9f\\xdc\\x52\\x3f\\x47\\x9e\\xb6\\xf6\\x96\\x7b\\x3a\\xbd\\x93\\xaf\\xff\\\n\\x00\\x83\\x67\\x03\\x5b\\xf2\\x68\\x22\\x86\\x4e\\xfa\\xfa\\x74\\x1d\\x29\\x09\\\n\\x86\\x6d\\x59\\x9a\\x53\\x87\\xd1\\xf2\\x24\\x88\\x30\\xa5\\x6b\\xe1\\x46\\xfb\\\n\\xa4\\x75\\x03\\x66\\x3b\\x5d\\x1c\\xfb\\xb0\\x40\\xf0\\x2d\\x58\\x9c\\x54\\x64\\\n\\x37\\x34\\xc1\\x66\\x9c\\x48\\x4c\\x23\\x59\\x74\\x04\\xa1\\x1d\\xfa\\x71\\xf6\\\n\\xb4\\x0d\\x71\\x0f\\xfd\\xac\\x86\\x11\\x5b\\x2a\\x6e\\x3d\\x7d\\x7a\\xda\\x74\\\n\\x3c\\x27\\x83\\x04\\xcf\\x13\\x5b\\xca\\x04\\xa5\\x45\\x15\\x5a\\xf7\\xe5\\x3f\\\n\\xb8\\x9b\\xc9\\x23\\xc1\\x77\\xab\\x68\\x08\\xb8\\xba\\x2b\\xb1\\x1d\\xad\\x41\\\n\\x08\\xbf\\x3c\\x41\\x36\\x1e\\x32\\x79\\x4a\\xa9\\xcf\\x4f\\x94\\xfa\\x26\\x38\\\n\\xee\\xde\\x6e\\x54\\x13\\xbf\\xe6\\x96\\x07\\xda\\x2d\\xaa\\x66\\x49\\xe2\\xa0\\\n\\x0d\\x5b\\xba\\x21\\xff\\x00\\x41\\xd2\\xb6\\x9a\\x8a\\xd5\\xe0\\xc8\\x38\\x8f\\\n\\x9f\\x3e\\x7c\\x5e\\x23\\xf9\\x9a\\xe8\\xf5\\xbb\\xb8\\xd6\\x16\\xd1\\x51\\x6e\\\n\\xf0\\x2d\\x4c\\x9d\\xbd\\x63\\x1e\\x9d\\x5b\\x1a\\xcc\\xf3\\x66\\xc1\\xb8\\x6e\\\n\\x88\\x4b\\x9b\\x7d\\x8a\\x0b\\x9d\\xa5\\x8f\\x48\\xfa\\xbf\\xe2\\xbb\\xd2\\xab\\\n\\x68\\x75\\x5e\\xbf\\x5d\\x8e\\xd2\\x9b\\xbc\\x58\\x1a\\x5b\\x4e\\x0b\\xa9\\xb5\\\n\\xec\\x66\\x2a\\x62\\x50\\x73\\xc1\\x86\\xb5\\xe7\\x94\\x8e\\xa5\\x64\\x8f\\x30\\\n\\xb8\\xab\\x76\\x45\\xf3\\x36\\xb9\\x93\\x56\\xfa\\x8c\\x87\\x49\\x91\\x96\\xf4\\\n\\xe5\\x4d\\xec\\xa8\\xa2\\xa3\\xe0\\x34\\xec\\x2b\\x1e\\xa5\\x1e\\xa2\\x91\\x52\\\n\\xdb\\x73\\x30\\x54\\x88\\xbd\\xe6\\xa2\\x18\\xe6\\xbd\\x77\\x33\\xec\\xb7\\xbd\\\n\\x16\\xac\\xa5\\x2a\\x65\\x0b\\x40\\xb0\\x57\\x3e\\x7f\\x90\\xfb\\x67\\x8a\\x82\\\n\\xdc\\xad\\x3e\\x2e\\x0b\\xf8\\x46\\x92\\xfe\\xce\\x57\\x4e\\x55\\xa8\\xbb\\x10\\\n\\x6d\\x4f\\x9a\\x4d\\xbb\\x0d\\x2e\\xce\\x4f\\xd8\\x98\\xaf\\x5b\\xcd\\x90\\x2b\\\n\\xe3\\x1f\\x06\\xdc\\xc7\\x58\\x9b\\xfd\\x87\\x4b\\x62\\x6f\\x94\\x2b\\x4a\\x79\\\n\\xb4\\xf8\\xc3\\x44\\x4b\\x15\\xb6\\x3f\\xd1\\xaa\\xe8\\x6b\\x4e\\xa9\\xd8\\x0d\\\n\\xe2\\x01\\xcc\\x5a\\x6a\\x29\\x99\\x0c\\x4c\\x40\\x7c\\x23\\xff\\x00\\x94\\x57\\\n\\xfa\\xdf\\xe7\\xc9\\x8f\\xb2\\x3b\\x7e\\x2d\\xdc\\x1c\\x35\\xf9\\x3f\\x3d\\x7f\\\n\\x52\\xa3\\x63\\x24\\x36\\x85\\xc6\\xca\\x7d\\x7f\\x47\\x52\\x7b\\x42\\x78\\x7d\\\n\\x4c\\x3d\\x5d\\x46\\x58\\xd3\\xb6\\x66\\xc6\\xb5\\x07\\x82\\xca\\x76\\xc7\\x06\\\n\\x5e\\x45\\x7f\\x66\\x05\\x6d\\x6e\\xc5\\x76\\x22\\x33\\x2c\\xff\\x00\\x62\\x07\\\n\\x81\\xcb\\x6a\\x40\\xea\\xcb\\x52\\xe4\\x88\\x33\\xe3\\x45\\xbc\\x25\\xdd\\x6f\\\n\\x47\\x0f\\x79\\xe0\\x3e\\x49\\xc8\\x5a\\xd3\\x14\\x52\\xdf\\x34\\x15\\xe3\\x9e\\\n\\x9f\\x9e\\x52\\x01\\xa7\\x85\\x9c\\x0b\\x5b\\x95\\xa8\\xf4\\x14\\x2b\\x73\\x8b\\\n\\xac\\x49\\x0a\\xa1\\xce\\x72\\xb9\\xaa\\x76\\x0d\\x5b\\x92\\x76\\xdd\\x8a\\xe7\\\n\\xd8\\x33\\x79\\xa8\\x7c\\xa7\\xc6\\x29\\xc4\\xd7\\x80\\x82\\xff\\x00\\x11\\x31\\\n\\x4f\\xf5\\x32\\x7a\\x5a\\x8d\\xff\\x00\\xae\\x95\\xff\\x00\\x6f\\x06\\xeb\\x23\\\n\\xa6\\x1b\\x93\\xa3\\x97\\x9d\\x9b\\x66\\x75\\x74\\xf7\\x13\\xcc\\x16\\x97\\x6e\\\n\\xd2\\x74\\x11\\x3c\\x9f\\x2e\\x2c\\x83\\x72\\x10\\xda\\x90\\x3c\\x66\\x3f\\xe5\\\n\\xec\\xb2\\x4b\\x5f\\x2b\\x10\\x5e\\x0c\\xcd\\x43\\x19\\x3d\\xa1\\x8c\\xea\\x5b\\\n\\x5f\\x62\\x8e\\x33\\xdd\\x3b\\x03\\x02\\x47\\xf2\\x10\\x87\\x9f\\x99\\xd9\\xf2\\\n\\xf4\\xc1\\x9f\\xaf\\x9b\\xa7\\x04\\xf6\\x4c\\xb9\\xd5\\xf1\\xff\\x00\\x20\\xf5\\\n\\x50\\xd7\\x4b\\xaa\\xf6\\x36\\x3b\\x66\\x71\\xd2\\xef\\x78\\xcb\\x9b\\x0d\\xf3\\\n\\xd5\\x57\\x4f\\xde\\xf6\\x59\\x8a\\x5a\\x74\\x4d\\x3a\\x0c\\xb1\\x7c\\x0e\\xfb\\\n\\xaf\\xd6\\x94\\x8e\\xeb\\xbb\\xa4\\x76\\x19\\x19\\x79\\x9c\\xff\\x00\\xd8\\xb9\\\n\\x90\\xf1\\x37\\x61\\xec\\x80\\xc7\\x07\\x59\\xc4\\x6d\\x65\\xf4\\xd9\\x3b\\x17\\\n\\x5f\\xc0\\x14\\x71\\xbb\\x02\\x9d\\x67\\x63\\x39\\xce\\x3e\\x09\\x13\\x5e\\x99\\\n\\x82\\x8a\\xb1\\xca\\x0e\\x67\\x90\\x0b\\xf2\\xff\\x00\\x02\\xe1\\x2e\\x5a\\x89\\\n\\x1d\\x02\\xa3\\x39\\x7a\\x3e\\x73\\x9d\\xbb\\x6a\\x8f\\xbb\\x65\\x2d\\xb1\\x89\\\n\\xd3\\x23\\xf6\\x3b\\x0d\\x68\\x7d\\x3e\\x34\\x5b\\x3a\\xd6\\xe6\\x95\\x7e\\xc8\\\n\\x59\\xa9\\x79\\x16\\xaf\\x8a\\xa1\\xf6\\x10\\x77\\xad\\x38\\xc8\\xfe\\x02\\xc3\\\n\\x60\\x54\\x1a\\x1b\\xb5\\xb9\\x6e\\xe1\\xdb\\xb0\\x49\\xe1\\x68\\x07\\x3a\\xeb\\\n\\x12\\xb3\\x2f\\xb1\\x7c\\xed\\x2b\\x16\\xc5\\xb9\\x03\\x17\\xe7\\xa7\\xfb\\x74\\\n\\x4c\\x3c\\xe6\\x2a\\xda\\xf5\\xa8\\xf4\\x70\\x17\\x6e\\xa0\\xea\\xff\\x00\\xac\\\n\\x12\\x59\\xec\\xb9\\x6f\\xaa\\xd5\\xec\\xc0\\x0d\\x1c\\x28\\xc9\\x5e\\x51\\x7e\\\n\\x01\\x28\\xbf\\x27\\xac\\x58\\xfc\\x3f\\xec\\x03\\xcf\\xf2\\x37\\x10\\x2a\\x9f\\\n\\x93\\xbb\\x2a\\xa0\\xc3\\xed\\x2e\\xf5\\x3a\\xf6\\x8d\\xe7\\x7b\\x13\\x66\\xd6\\\n\\x00\\xc5\\xd0\\xbb\\x09\\xfb\\x36\\x3e\\x8e\\x4b\\x19\\x0d\\x8b\\x3c\\xcc\\x9a\\\n\\x71\\x74\\xbd\\x5d\\x73\\xac\\x37\\xa1\\x0a\\xf5\\x7c\\xe1\\x9c\\xce\\x84\\x54\\\n\\x7d\\x25\\x1f\\x71\\x48\\x18\\x08\\xcb\\x9f\\x1c\\xe9\\x99\\xf5\\xd1\\xef\\x9b\\\n\\xce\\xd8\\xaf\\x90\\x2a\\x56\\xa4\\x0c\\x12\\xa4\\xfe\\x38\\xd2\\xdf\\x5c\\xf7\\\n\\x25\\x8f\\xcb\\x4c\\x8e\\xd4\\xa7\\xcf\\x06\\xc4\\x07\\x94\\x21\\x4f\\xca\\x0b\\\n\\xcc\\xae\\xb8\\xaa\\xc3\\xdb\\xec\\x45\\xd0\\xe7\\x4e\\xd2\\x82\\xac\\xd1\\xd3\\\n\\x58\\xe9\\xde\\x19\\xb7\\x52\\xeb\\x33\\xd7\\x34\\x9b\\xaf\\x05\\x26\\x80\\x36\\\n\\x12\\x59\\xda\\x02\\xa5\\x80\\x13\\xc7\\x99\\x4e\\x0b\\xec\\xaf\\xfe\\xd9\\xd0\\\n\\xd7\\xcb\\x02\\xef\\x3a\\x46\\x8d\\xe7\\x24\\xe2\\x95\\xb5\\x79\\x55\\xc8\\xc5\\\n\\xa8\\xcd\\x85\\x55\\x9c\\x0f\\xb3\\xb0\\x54\\x76\\x1c\\x5a\\x3c\\xa7\\xd6\\x2e\\\n\\x4d\\x57\\xf0\\xea\\x4a\\x4e\\x42\\xda\\xbf\\x90\\xb1\\xc1\\xcd\\x5e\\xd1\\xa3\\\n\\xb3\\x29\\x9d\\xa5\\xc1\\xd6\\xf7\\x63\\x2d\\x89\\x4e\\x96\\x1b\\x4a\\xd6\\xdc\\\n\\xb2\\x30\\x52\\x07\\x32\\x2b\\xc9\\x25\\x7d\\x9f\\x64\\x2a\\xc7\\x6d\\xef\\x6b\\\n\\x08\\x30\\x79\\xf3\\xf5\\xc5\\xb9\\xa1\\xf8\\xeb\\xb1\\xc8\\x0d\\xfe\\x49\\xa8\\\n\\xc8\\x70\\x74\\x08\\xf7\\xe3\\xbe\\x91\\xbb\\x88\\xf9\\x73\\xd0\\x33\\xbe\\xa0\\\n\\x7c\\xd2\\x07\\xf0\\xc2\\x2a\\x18\\x2d\\x24\\x64\\xac\\x5d\\x2a\\xfd\\xa8\\x14\\\n\\xf3\\xeb\\xc9\\x2f\\xb0\\xb1\\xa8\\x14\\x43\\x36\\xb5\\x62\\xfc\\x94\\xeb\\x79\\\n\\x3a\\xc5\\x0f\\x0d\\x33\\x04\\xd0\\xf3\\x68\\xbd\\x7c\\x32\\x71\\xf6\\xa2\\x04\\\n\\x6d\\x06\\x0b\\x7a\\x0d\\x52\\x7b\\x7d\\x82\\x14\\x37\\xb9\\x60\\xdb\\x52\\xe4\\\n\\x74\\x85\\x4c\\x9c\\xeb\\x7e\\x61\\x74\\x99\\xb1\\xaf\\x20\\xcd\\x60\\x06\\x6d\\\n\\x40\\x2c\\xd1\\x53\\xf7\\x13\\x4f\\xea\\x91\\x56\\x69\\x6f\\xb7\\xfa\\xbd\\x06\\\n\\x55\\xeb\\xfd\\x75\\xc2\\x96\\x7a\\x46\\x92\\x2d\\x6c\\x17\\xb3\\x2d\\x10\\x62\\\n\\x44\\xd6\\x7d\\x92\\x4a\\x56\\x38\\x98\\x26\\xfc\\xa5\\x02\\xa5\\xf7\\x40\\x0a\\\n\\xf3\\xed\\xff\\x00\\x29\\x5a\\x35\\x7a\\xf0\\xaf\\x59\\xa0\\x45\\x05\\x96\\x9b\\\n\\xf7\\x58\\x9a\\x36\\xaf\\x06\\x7a\\x1d\\x65\\x8d\\x32\\x74\\x75\\x0d\\x2a\\xb9\\\n\\x4d\\x08\\x06\\x17\\x7a\\xd9\\xc4\\x97\\x7f\\x25\\xff\\x00\\xc5\\xff\\x00\\x35\\\n\\xda\\x29\\x33\\xfb\\x7b\\xe9\\xc7\\xf9\\x08\\x9b\\x06\\xa1\\x1a\\xd3\\x29\\x71\\\n\\xd8\\xb1\\x43\\x84\\xbf\\xcd\\x33\\x55\\xad\\x76\\xb5\\xf6\\xba\\xd6\\x7d\\x3b\\\n\\xe8\\x65\\x55\\x49\\x8b\\x0c\\x3f\\xd9\\x72\\x33\\x8a\\x0e\\xd3\\x82\\xc1\\x1b\\\n\\xec\\x49\\x86\\xa9\\xf7\\x5b\\xb3\\xa2\\x42\\x4d\\xb9\\x6a\\xff\\x00\\x66\\xd3\\\n\\x56\\xc7\\x39\\x89\\x43\\xea\\x6c\\x9e\\x97\\x47\\xb8\\x80\\xbc\\x51\\x3a\\x13\\\n\\x96\\x44\\xd5\\x81\\x7c\\x47\\x09\\x6f\\x65\\x74\\xec\\x35\\xcb\\xa0\\xfc\\x83\\\n\\x98\\x4e\\xcf\\xb0\\x0a\\xa5\\x24\\xd3\\xa5\\x2b\\x3f\\x6e\\x6d\\x43\\xb1\\xea\\\n\\x86\\x0f\\xe7\\xcb\\x32\\x18\\x88\\x38\\xc9\\x08\\xe9\\xd1\\x37\\xbd\\xcb\\xaa\\\n\\xf3\\x1d\\xbb\\x07\\x1d\\x72\\x7b\\xfb\\x02\\x56\\xb2\\x0f\\x48\\xba\\x83\\x9c\\\n\\xb7\\x46\\x1c\\x30\\x24\\xc4\\xb0\\xfe\\x07\\x79\\xbf\\xae\\xb3\\x68\\x09\\xf9\\\n\\xd8\\x3a\\x12\\xfa\\x06\\x69\\x06\\x33\\x18\\xa0\\x88\\xc5\\x9e\\x4f\\x54\\xdc\\\n\\x88\\xd3\\x56\\xd8\\x7d\\x47\\xa8\\xb9\\x4b\\xf4\\x7e\\x9b\\x7e\\x0b\\xa7\\x60\\\n\\x06\\xac\\x7e\\x2a\\xcd\\xbd\\x9a\\xfc\\x66\\xdd\\x44\\xef\\x52\\xd5\\x4e\\xc7\\\n\\x53\\xe2\\xd4\\x4c\\x51\\x5d\\x42\\x0d\\x61\\x49\\xc2\\xaa\\x2d\\xdc\\xaf\\x4d\\\n\\xd1\\x54\\x56\\x24\\x0f\\xd5\\x6a\\x5b\\x94\\x34\\x8f\\x99\\x7b\\x75\\x51\\x7a\\\n\\xdc\\x5e\\x3e\\xce\\x7b\\x26\\x79\\x06\\xfe\\x3b\\xea\\xf7\\x67\\x25\\x5e\\xad\\\n\\x8c\\x05\\x6c\\x62\\x67\\x75\\x98\\xd7\\x69\\xfd\\x5c\\x75\\xf5\\xbe\\xfe\\x9f\\\n\\x59\\xec\\x5a\\x4f\\xe2\\x7e\\x3e\\x5d\\x22\\x55\\x12\\x79\\xfd\\x19\\xf9\\xba\\\n\\x74\\xf9\\x79\\x01\\xae\\xcb\\xbd\\x41\\x36\\x6e\\x0e\\x82\\x85\\x8f\\x6b\\x59\\\n\\x62\\x8b\\x5c\\x95\\x10\\x88\\xb3\\x10\\xca\\xff\\x00\\x5e\\xfd\\x83\\x39\\x4d\\\n\\x4c\\xfd\\x21\\xeb\\xe7\\x9b\\xa6\\xbc\\xba\\x16\\x47\\xb4\\xa7\\xa7\\xc7\\x59\\\n\\xc9\\xaf\\x35\\xfb\\x28\\x83\\x77\\xb4\\xce\\x60\\xd3\\x47\\x65\\xb2\\x2d\\x0e\\\n\\x5d\\x20\\xd0\\xbe\\x0a\\x0b\\xe0\\xda\\x99\\xda\\x1a\\x02\\x53\\x06\\x3e\\xcb\\\n\\x99\\x5d\\x83\\x4a\\x17\\xc9\\x1e\\x21\\x37\\xfb\\x29\\x19\\xce\\xc5\\xcb\\x80\\\n\\xd6\\x54\\xa9\\x05\\xf5\\x26\\x26\\x41\\x4e\\x19\\x41\\x47\\x3d\\x9f\\xd4\\xe9\\\n\\x20\\xfd\\x3b\\x17\\x57\\x1e\\x5c\\x67\\x1f\\xdd\\x3a\\x1a\\xaa\\xe7\\xa2\\x96\\\n\\x83\\x42\\xae\\x26\\x97\\x61\\xd5\\xa4\\xbd\\xdb\\x12\\xad\\x3b\\xa3\\xc1\\x94\\\n\\xfb\\xed\\x69\\x70\\x77\\x54\\x8b\\xc3\\xe8\\x63\\x6b\\x2b\\xb1\\x3f\\xe3\\x80\\\n\\x01\\x80\\xd0\\xc8\\x39\\xf3\\xad\\x6b\\xc2\\x06\\xa5\\xe3\\x19\\xe4\\x4e\\xe4\\\n\\xfe\\x26\\x7f\\x99\\xa4\\xff\\x00\\xa9\\x47\\x64\\x35\\xab\\x41\\x27\\x3d\\xe2\\\n\\x89\\xf1\\x82\\x47\\x79\\xda\\xa6\\xd6\\xb3\\x4f\\xea\\x75\\x7d\\x13\\x8f\\x67\\\n\\xb2\\x67\\xf5\\xee\\x8d\\x97\\x9b\\x45\\xe8\\x05\\xc5\\x5b\\x0b\\x82\\xb8\\xb9\\\n\\x5b\\x0f\\xe7\\xfa\\x4c\\x5e\\x55\\xb5\\x7b\\x44\\xfa\\x90\\x54\\x83\\x28\\x99\\\n\\xa7\\x9d\\x4f\\x7f\\x31\\xaf\\x3e\\xca\\xd4\\xd0\\x22\\x38\\x4a\\x5c\\xa7\\xa4\\\n\\x10\\x3a\\x51\\x1f\\x55\\xa9\\xa4\\x48\\xbb\\xac\\x2f\\xd5\\x90\\x69\\xa5\\xed\\\n\\xa6\\xb7\\xb7\\x40\\x10\\xba\\xf5\\xbc\\x7b\\x25\\x72\\x42\\xfc\\xbf\\xc4\\x90\\\n\\x71\\x3e\\xd6\\x87\\x65\\x72\\x3a\\x6e\\x40\\xca\\x1e\\xc4\\x85\\x33\\x2c\\xc2\\\n\\xeb\\xb9\\x26\\xea\\x19\\x70\\xc2\\x19\\xb7\\x49\\x9b\\x58\\xe1\\x87\\xa7\\xd9\\\n\\x9e\\x28\\x25\\xa1\\xb2\\xdf\\xe5\\x7f\\xb0\\xf1\\x53\\xc4\\xa8\\x38\\xd6\\x36\\\n\\x79\\xab\\x7e\\x99\\xd7\\x69\\xcd\\x6e\\x9b\\x99\\xa0\\x9f\\x56\\xea\\x23\\x31\\\n\\xd7\\x59\\x64\\x15\\xa5\\x66\\x60\\x81\\x0d\\xb8\\xce\\x16\\x13\\x11\\x1d\\x27\\\n\\x1f\\xc8\\x5d\\x64\\x0b\\xdf\\x4e\\x98\\xe4\\x46\\xd5\\x62\\xc4\\xb8\\x2d\\x3c\\\n\\xad\\x2f\\xca\\x0e\\x6d\\xcb\\x0a\\x2d\\xcd\\x6e\\xb3\\x04\\x17\\xf6\\x89\\x0c\\\n\\xff\\x00\\x1f\\xff\\x00\\x3e\\x79\\x58\\x9e\\x09\\xf8\\x0d\\x13\\xe8\\x3d\\xaf\\\n\\x71\\xad\\x3e\\x9b\\x91\\x92\\x05\\x99\\x05\\xe0\\x67\\x1c\\xf3\\xec\\x02\\x79\\\n\\x3a\\x41\\x8e\\x37\\xdf\\x15\\x44\\xc9\\xfe\\x4b\\x6a\\x0e\\xae\\xc5\\xb4\\xaf\\\n\\xf5\\x4b\\x03\\xaa\\xed\\xac\\x30\\x0e\\x52\\xa9\\x09\\xe3\\x0c\\x7c\\x4d\\x94\\\n\\x37\\x95\\xaf\\xfe\\xeb\\xd9\\x95\\xc3\\x46\\x75\\x85\\xf5\\xec\\x20\\x31\\x0e\\\n\\xe5\\x2c\\x90\\x5b\\xac\\xb9\\x21\\x14\\x8c\\x57\\xb5\\xae\\x49\\xf0\\x8e\\x0e\\\n\\x26\\xd6\\x5d\\x69\\x8e\\x36\\x75\\x28\\x34\\x2b\\x6b\\x9f\\x58\\xf5\\x95\\xdb\\\n\\xfc\\x83\\xa7\\xd3\\xf2\\x7a\\xbf\\x66\\x17\\xe4\\x8c\\x3d\\x8c\\x43\\x23\\x50\\\n\\x37\\x36\\x66\\x19\\x9e\\x32\\xb4\\x11\\x67\\xf5\\x59\\x5f\\x36\\x9a\\x2d\\xf0\\\n\\xf7\\x2c\\xc6\\x22\\x7f\\x49\\x49\\xb5\\xad\\xc6\\x7f\\xf5\\xd4\\x72\\x3a\\xea\\\n\\xe7\\xdb\\x45\\x6f\\xa5\\x39\\xb1\\x4f\\x65\\xb9\\x24\\x81\\xd0\\x86\\x21\\x38\\\n\\x1f\\x5c\\x0e\\x58\\xad\\xa4\\x7f\\x36\\xe3\\x76\\xb5\\x29\\xac\\xc0\\x4f\\xd8\\\n\\xac\\xbc\\x72\\xcb\\x45\\x2a\\x11\\xf9\\x5a\\xd4\\xf8\\x9f\\x9f\\x88\\xdb\\x0f\\\n\\x8e\\x94\\x04\\xd6\\x9b\\x04\\xf4\\x81\\xd6\\x7e\\x2d\\xf3\\x3c\\x91\\xc4\\x73\\\n\\x57\\xf2\\x6f\\x63\\xec\\xb7\\x43\\x69\\x7d\\x3d\\x6d\\x52\\x53\\x3f\\x6d\\xf7\\\n\\xec\\xb3\\xb4\\x5d\\x91\\xba\\x66\\x97\\x19\\xbf\\x53\\x5d\\x13\\xe4\\x64\\xe6\\\n\\xe7\\x2e\\xbf\\xf7\\x86\\x6c\\x10\\x0c\\xe4\\xb9\\xa5\\xf0\\xd9\\xd8\\x5d\\xa0\\\n\\xab\\xc3\\x83\\xdf\\x23\\x1c\\xa8\\xcd\\xdf\\xbc\\xf0\\x63\\xe5\\xa9\\xed\\xad\\\n\\x10\\x2c\\xf0\\xc0\\x53\\xea\\xe8\\x22\\x44\\x34\\x4e\\x58\\xe4\\x0c\\x85\\x81\\\n\\x67\\xf0\\x2b\\xda\\x92\\x5b\\x55\\x21\\xc8\\x4d\\x17\\x5e\\xf4\\xf2\\x79\\xea\\\n\\x7d\\x2f\\xcb\\xb8\\xd7\\x43\\xaf\\xfe\\x3a\\xee\\x07\\x57\\x5f\\xb4\\xf8\\xb3\\\n\\x9f\\x07\\x19\\x35\\x33\\x57\\xbd\\xc2\\x31\\xc0\\xa9\\xbd\\x83\\x63\\x5b\\x4b\\\n\\xb3\\xea\\x24\\xde\\x67\\x7a\\xd2\\xb6\\x8a\\x6f\\x20\\xed\\x7c\\x2e\\xc4\\xb7\\\n\\xe2\\x18\\x88\\xf6\\x56\\x29\\x35\\xb7\\xe4\\x5d\\xa3\\x61\\xe5\\x65\\x77\\x9d\\\n\\x0b\\xda\\xdd\\xbf\\x2b\\xc6\\x37\\x31\\x09\\xca\\xb4\\x83\\x95\\x1f\\x9c\\xcb\\\n\\x9a\\x42\\xc9\\x5f\\xfe\\xa8\\xac\\x66\\x3b\\xa5\\x41\\x9d\\xb8\\xa9\\x86\\xd8\\\n\\x3d\\x7e\\x71\\x1f\\xd0\\xc4\\xfe\\xd7\\xf8\\x88\\x8d\\xc4\\x3d\\x82\\x88\\xe4\\\n\\xc4\\xcc\\xdc\\x3c\\x91\\x4c\\x73\\xf8\\xe3\\x07\\x5d\\x52\\x35\\xa5\\x7d\\x67\\\n\\x2a\\xc9\\xfe\\xd3\\xde\\x1f\\xa8\\xc0\\xd4\\xd2\\xd2\\x57\\x34\\x2d\\xec\\xb2\\\n\\x86\\x50\\x93\\xa7\\xae\\x9f\\x1e\\xef\\x5d\\x6d\\x32\\x79\\xde\\xec\\x3f\\xa8\\\n\\xe6\\x33\\x37\\xab\\x0c\\x68\\xcc\\xb9\\x8b\\xd8\\x06\\x3e\\x41\\x15\\x3f\\x09\\\n\\x86\\x0b\\xcb\\x09\\xb6\\xac\\x8a\\xff\\x00\\xd2\\x9e\\x65\\x31\\x42\\x5f\\x9e\\\n\\xd5\\xe9\\xa3\\x0b\\x66\\x99\\xae\\x10\\x40\\xa7\\x28\\xe6\\x70\\xe8\\x6d\\xb1\\\n\\xf9\\x7b\\xa1\\x8e\\x36\\xc5\\xb9\\x9c\\x3a\\xfd\\xcf\\x6d\\x8c\\xe6\\xd6\\x59\\\n\\xbb\\xce\\x17\\x5e\\xfc\\x21\\x98\\xaf\\x0a\\x3f\\xf5\\xbf\\x89\\x55\\x8a\\xa9\\\n\\xee\\x10\\xaa\\xc5\\xcd\\x4d\\x0f\\xf5\\x73\\xb9\\xf5\\xc1\\xe8\\x96\\x9f\\x8f\\\n\\x83\\xe5\\xd5\\xf3\\x83\\x92\\xd4\\x5b\\xe2\\x08\\x2f\\x61\\x3e\\x23\\xe5\\x9b\\\n\\xae\\xa8\\x3b\\x4f\\x62\\xbf\\x63\\xd3\\x1c\\xfc\\x4a\\xb4\\x9b\\x71\\x8f\\xf7\\\n\\x72\\x26\\xf5\\x8a\\x76\\x0d\\x2c\\x79\\x7f\\x53\\x5b\\x78\\xb3\\x33\\x6e\\x33\\\n\\xe5\\xce\\xbd\\xa6\\x71\\x8d\\x68\\x99\\xe1\\x47\\xfd\\xc7\\x1e\\x50\\x51\\xcd\\\n\\xaa\\xcd\\xe0\\x61\\xf1\\xf1\\x9f\\xed\\xc8\\x8a\\xfc\\xcd\\x26\\x79\\x60\\x4f\\\n\\xcd\\x09\\x63\\xd2\\x0e\\x39\\xa6\\x68\\xa8\\x3e\\x67\\x18\\x2e\\xb1\\xd9\\x71\\\n\\x9f\\xea\\x1a\\x98\\xec\\xad\\x86\\x11\\x54\\x47\\xa1\\x63\\xc2\\x5b\\xec\\xb9\\\n\\x09\\xd9\\xbd\\x9d\\x9d\\x2e\\x4f\\x5c\\xd5\\xd0\\xb9\\x3a\\x0e\\x99\\x21\\xae\\\n\\xb1\\xbb\\x9b\\xc1\\x45\\x89\\x2a\\xe9\\x1f\\xd5\\x87\\xbf\\x21\\xe0\\xce\\xb3\\\n\\xd0\\x7c\\x61\\x92\\x21\\x73\\x2d\\x56\\x99\\x18\\xe5\\xbd\\x96\\x5d\\xd9\\xbe\\\n\\xde\\x9c\\x11\\x8d\\x5d\\x23\\xf0\\xba\\xec\\x40\\x50\\xd4\\x01\\x4d\\xff\\x00\\\n\\xac\\x71\\x5e\\x23\\x1e\\x6e\\x83\\x1d\\x61\\xe2\\xe5\\x15\\x5c\\xa4\\x0d\\xd8\\\n\\x2c\\xd1\\x3a\\x73\\x5f\\xd4\\xa9\\x58\\xbc\\x78\\xb6\\x51\\x8c\\xe2\\xcc\\xda\\\n\\xf4\\xfb\\x17\\xee\\x29\\x7d\\x24\\x20\\xf7\\xe7\\xdd\\xba\\xfc\\xc8\\x6d\\x81\\\n\\x6e\\x6b\\xee\\x0f\\x36\\x23\\xb9\\x6c\\x73\\x53\\x4d\\xed\\x50\\xd1\\x54\\xe9\\\n\\x05\\x0a\\xd3\\x2d\\x57\\xd4\\x3a\\x5a\\x49\\x59\\x1c\\x7c\\xbc\\xc8\\x58\\x78\\\n\\xc4\\x8f\\x9f\\x98\\x8e\\x7a\\xbd\\xbc\\x11\\x0a\\xa9\\xb0\\x1d\\x16\\x80\\x25\\\n\\x58\\xe1\\xbf\\xd3\\x54\\xce\\x23\\xce\\xfb\\x20\\x96\\x3c\\x3e\\x62\\x9e\\x3c\\\n\\xf0\\xf9\\xe7\\xaf\\x9e\\x1c\\xde\\x70\\x72\\x45\\x18\\x0c\\xd2\\xa5\\x96\\xf1\\\n\\xf0\\xbe\\xcf\\xc7\\x5b\\x68\\xe5\\xc3\\x36\\x06\\xde\\xf4\\x7e\\x3b\\xc2\\xd3\\\n\\xbb\\x0f\\x75\\xe5\\x31\\x71\\xd5\\xc1\\x0c\\x3c\\xb5\\x05\\x15\\x18\\xeb\\x1c\\\n\\x13\\xb4\\x1f\\x36\\xbb\\x49\\x91\\x05\\xf5\\xfe\\xdf\\x1e\\x2d\\x68\\xd0\\x6c\\\n\\x23\\xd5\\x87\\x4d\\x27\\x9e\\xd7\\xb4\\x97\\x2f\\xdd\\xf6\\x87\\x6e\\xb1\\xda\\\n\\xf2\\x3b\\x19\\x4d\\xd1\\xf4\\x84\\xec\\xf4\\x7d\\xf8\\x1e\\x57\\x55\\x79\\xc3\\\n\\x47\\x50\\xeb\\x65\\x4e\\xdf\\x8f\\xfa\\xd0\\x64\\xbd\\x61\\x7b\\x89\\x90\\xd9\\\n\\x39\\xe9\\x58\\xa7\\xda\\x67\\x6d\\xff\\x00\\x85\\x6a\\xe8\\xdf\\x4e\\x48\\x0a\\\n\\x5f\\xaa\\x99\\xb0\\x1f\\x4d\\xc5\\x08\\x25\\xf2\\xd6\\xa8\\xb5\\x13\\x43\\x1e\\\n\\x18\\xec\\x2a\\xd3\\x9d\\xa7\\x75\\x7f\\xf1\\x45\\x9c\\x27\\x84\\xd0\\xf2\\x7f\\\n\\x3a\\x2d\\x77\\x35\\x08\\xc5\\x97\\x28\\xf9\\x1f\\x3c\\xb5\\xff\\x00\\x8b\\xcc\\\n\\xf0\\xd3\\xfc\\x93\\xfa\\x73\\xb0\\x69\\x13\\x3e\\x99\\xee\\x5f\\xec\\xcf\\xcc\\\n\\xf2\\xff\\x00\\xcf\\x02\\x3f\\x91\\x51\\x08\\xb0\\x81\\x69\\x05\\xf3\\xfb\\x1d\\\n\\xa2\\x1d\\x7f\\x3c\\xdc\\x63\\x46\\x68\\xdf\\xf3\\x1c\\x88\\xe4\\x8e\\x23\\x95\\\n\\xa4\\xfc\\xf8\\x4f\\xcf\\xa7\\x8f\\xa8\\x33\\x73\\x0b\\xaf\\x5d\\xd3\\xf5\\x2f\\\n\\xc5\\xa0\\xd0\\x50\\x39\\x58\\x7d\\x1f\\x09\\x04\\xff\\x00\\xcd\\x74\\x16\\xcf\\\n\\xc6\\xc1\\x53\\xfc\\x9f\\x37\\x1a\\x9b\\x5d\\x9b\\x4b\\x60\\xf0\\x48\\xe2\\x67\\\n\\x98\\x82\\xb9\\xe9\\x83\\x12\\x6b\\x5d\\x8b\\xba\\xe9\\xe4\\xaf\\x56\\x6c\\xb4\\\n\\xae\\xa2\\x2e\\xfd\\x76\\xdc\\xc7\\x60\\x04\\x26\\x5e\\x93\\x63\\x5b\\xa4\\x06\\\n\\x58\\x49\\x01\\x2e\\x1b\\x1d\\x50\\xcb\\x20\\x23\\x06\\x00\\xbc\\xaf\\xec\\xe5\\\n\\x22\\x22\\x1b\\x2d\\x2e\\x1d\\x21\\xfb\\x9b\\xeb\\x6c\\x68\\xa0\\x36\\x5e\\x70\\\n\\x2e\\x26\\xe9\\x59\\x45\\x2f\\xa6\\xad\\xba\\xc3\\x0a\\xc5\\x4d\\xb5\\x0f\\x96\\\n\\x5e\\x81\\xc7\\xda\\xca\\xd2\\x17\\x6b\\xe8\\x60\\x40\\x3d\\xa7\\x18\\x95\\x41\\\n\\xb6\\x71\\xb3\\xe4\\xba\\xf5\\x8a\\x26\\x60\\x93\\x89\\x8d\\x73\\x07\\xe2\\x94\\\n\\xb5\\xad\\x3e\\x5e\\xd8\\xe5\\xad\\x49\\xe1\\x3f\\x99\\x60\\x9e\\x1c\\x64\\xb2\\\n\\xcb\\x6b\\xff\\x00\\xae\\xa2\\x76\\xa4\\x15\\x1a\\x5e\\xa5\\x57\\x47\\x36\\x21\\\n\\xed\\xf0\\x7a\\xc4\\xfd\\x85\\xc8\\xde\\x48\\x7c\\x7b\\xb3\\xd6\\xf1\\xd7\\x32\\\n\\xe9\\xb6\\xc5\\x26\\x09\\x58\\xaf\\x3c\\x3c\\xb9\\x5a\\x78\\x73\\xe3\\x9f\\xc5\\\n\\x78\\xa9\\x11\\xbd\\xba\\x41\\x02\\x94\\xe1\\xea\\x62\\xe2\\x25\\xb3\\xd9\\x56\\\n\\xd5\\x74\\x7a\\x02\\x0c\\xb7\\xac\\xc5\\x84\\xd1\\xc9\\x7e\\x2f\\x1f\\xcd\\xaf\\\n\\xfe\\xe0\\x35\\x45\\xc6\\xa9\\x6b\\x70\\x1d\\x86\\x6f\\x4b\\x4f\\xc4\\x5e\\x22\\\n\\xd5\\x35\\x6e\\x6a\\xbb\\xa3\\x7c\\xdb\\x60\\xf6\\xa7\\x3c\\x7f\\x6c\\xd9\\x0c\\\n\\x9e\\xc2\\xdf\\x1e\\xf4\\x49\\x5d\\x15\\x47\\x4d\\x76\\x8d\\x11\\x14\\xb5\\x68\\\n\\x28\\x6a\\xb5\\x8a\\xfd\\x96\\x39\\xfa\\xff\\x00\\xb1\\x4d\\x0f\\xa9\\x0e\\xe0\\\n\\xa2\\x04\\x73\\x34\\xb2\\x1b\\x3c\\x50\\xcd\\xa3\\x6b\\x69\\x7b\\x49\\x86\\xc9\\\n\\xca\\x76\\xa9\\x74\\x78\\x86\\xbf\\xb7\\x8d\\x38\\x2e\\x69\\xb8\\xc6\\x97\\x37\\\n\\x9f\\xb1\\x7a\\x9e\\x98\\x72\\xe4\\xcd\\x19\\x74\\xd3\\x1b\\xa5\\x01\\x2b\\xab\\\n\\x65\\x00\\xbf\\x72\\x0c\\xdc\\x3a\\x69\\x35\\xcb\\x53\\xcb\\x87\\xac\\x7c\\xb4\\\n\\xe2\\xab\\x56\\x77\\x90\\x29\\x18\\x94\\xc2\\xe8\\xa3\\xf8\\xac\\xcd\\x6f\\xf3\\\n\\x3e\\x54\\xaf\\xf1\\xe1\\xc2\\xc7\\xc4\\xfe\\xad\\xb6\\x14\\xe6\\x27\\xbb\\xef\\\n\\x75\\xdc\\x9a\\x3a\\xab\\x08\\x9d\\x3b\\xd4\\x7f\\x13\\x00\\xf3\\xe3\\x13\\x6a\\\n\\x40\\xeb\\xec\\xaa\\x18\\x43\\xcb\\xb4\\xad\\xec\\x63\\x4f\\x42\\xa4\\xe5\\x4b\\\n\\x15\\xe6\\x78\\xaf\\x70\\x92\\xd1\\x4e\\x1a\\xf3\\x1c\\x15\\x85\\x4a\\x10\\x3f\\\n\\x3c\\x12\\xde\\xeb\\x7f\\xda\\xb7\\xb7\\x2c\\x18\\x9e\\x59\\x39\\xe5\\x92\\xbd\\\n\\xb8\\xe6\\x04\\xbf\\x5d\\xe5\\x23\\xac\\xb2\\xb6\\xa5\\x59\\xa8\\x7e\\x62\\xc3\\\n\\xf6\\x18\\xd6\\x37\\xa9\\x91\\x97\\xdb\\x7f\\x5d\\x8d\\x34\\x18\\x47\\x4d\\xce\\\n\\xfd\\x89\\x99\\x53\\x76\\x4d\\x3d\\x7d\\xbc\\x6f\\xc7\\xb6\\x05\\x7c\\x46\\xaf\\\n\\x2f\\xf4\\xdc\\x03\\x18\\xb9\\x44\\xe3\\x3d\\x30\\x06\\xb6\\x76\\x22\\xd9\\x06\\\n\\x63\\x40\\x37\\xb9\\xb4\\x16\\x9b\\xb8\\x7a\\x9e\\x71\\xc6\\xbd\\xb9\\xd9\\x58\\\n\\x5e\\x18\\xd0\\x93\\xd9\\xd6\\xc1\\x46\\x05\\xec\\x8b\\x52\\x3d\\xde\\xec\\xe4\\\n\\xed\\x59\\xd2\\xd5\\x81\\x97\\xa7\\x2b\\x26\\x36\\xd6\\xab\\x7a\\xaf\\x9a\\x7e\\\n\\x2b\\xf3\\x76\\x08\\xca\\xb1\\xe8\\x5a\\x63\\xd3\\xff\\x00\\xd2\\xbc\\x2f\\xb3\\\n\\xc3\\x0f\\xa1\\xeb\\x6e\\x57\\x5d\\x3c\\xfc\\x8e\\xbf\\xea\\xb7\\x3a\\xdd\\x01\\\n\\x5d\\x5c\\xb5\\x14\\xcc\\xec\\x7b\\x8e\\x67\\xe7\\x2f\\xd6\\x70\\x67\\x5a\\xbb\\\n\\x19\\x09\\xa2\\x73\\x11\\x5b\\x92\\xa1\\xc8\\x88\\xd3\\xea\\xd9\\x94\\xce\\xc4\\\n\\xc0\\xda\\xd3\\x25\\x50\\x76\\xaf\\xf5\\xbc\\xa1\\x1e\\xf3\\x84\\x5c\\xe9\\x2d\\\n\\xce\\xd1\\x0a\\x16\\xa6\\x54\\x4f\\xc6\\x3f\\xd7\\x1c\\xf6\\x72\\x09\\xfd\\xae\\\n\\x59\\x9e\\x41\\x8b\\xe3\\x66\\xea\\x2a\\x0f\\xb3\\x82\\xf2\\xc7\\x61\\x75\\xb9\\\n\\x5f\\x79\\xbb\\x71\\xba\\xe7\\x2d\\x06\\xdf\\xec\\xc0\\xd0\\x5f\\xa0\\x6d\\x62\\\n\\x75\\xfe\\xcd\\xdb\\x7f\\x5f\\x75\\xbf\\x25\\xef\\x2d\\x43\\xfe\\x41\\xec\\x2e\\\n\\xdd\\x3e\\xc3\\x0f\\x05\\xae\\xb9\\xa9\\x91\\x6f\\xc3\\xfd\\x40\\xfa\\x7b\\x8c\\\n\\x7c\\x16\\x1c\\x78\\x8c\\xd3\\xb0\\x0e\\x66\\xea\\xea\\x3d\\x95\\xc6\\xbb\\x3e\\\n\\x89\\x98\\x2e\\x9b\\x45\\xe7\\xee\\x6a\\x42\\x7c\\xe8\\x5e\\xd4\\x6d\\xee\\x75\\\n\\xe2\\x31\\xf3\\xdf\\xa6\\xc9\\xea\\x3c\\x70\\xbb\\x77\\xcf\\xe5\\x22\\x82\\x7c\\\n\\xe7\\x21\\x13\\x7d\\xdd\\x69\\xa5\\x72\\xb3\\xed\\xa2\\xc3\\xfd\\xa4\\x07\\x9f\\\n\\xdd\\x50\\xb0\\x62\\x99\\x9b\\x89\\x61\\x8e\\xbe\\x3e\\x5c\\xc5\\xcb\\x55\\xdd\\\n\\x0f\\x1f\\xe7\\xe3\\x91\\xc5\\xff\\x00\\xf6\\x6d\\x76\\x96\\x83\\x06\\xb9\\x0b\\\n\\x7f\\x1f\\x9e\\x5b\\xe7\\x98\\xda\\x8c\\x67\\x31\\x8b\\xd7\\x29\\xa6\\x33\\x74\\\n\\x4b\\x2e\\xaf\\x6d\\xec\\xeb\\x72\\xb6\\xfe\\x27\\x9b\\x5d\\xa3\\x71\\xd8\\xfc\\\n\\x79\\xdd\\x77\\x90\\x7b\\xba\\xcd\\x7d\\xf4\\xd8\\xaf\\xea\\x8c\\x47\\x81\\x4d\\\n\\x3a\\xb8\\xc9\\x73\\xfb\\x06\\xca\\x9a\\x46\\x3e\\x8d\\xb9\\xd6\\x46\\xb1\\xe9\\\n\\xad\\x8d\\xd7\\xc0\\xaf\\xd2\\x8f\\x0d\\xc5\\x1b\\xa2\\x60\\x75\\xeb\\x05\\xd6\\\n\\x99\\x3d\\xeb\\xe5\\xcb\\xc5\\x23\\x85\\x8f\\x8a\\x91\\x79\\x27\\x17\\x92\\x1c\\\n\\x1a\\x1d\\x97\\x65\\x2e\\xbe\\xc3\\x16\\x83\\x0f\\xca\\xc7\\x38\\xc6\\x63\\xfa\\\n\\x0a\\x73\\xf4\\xbe\\x89\\xb5\\xb4\\x25\\x7a\\xf6\\x3e\\x4a\\x9a\\x14\\xa4\\x84\\\n\\xd2\\x04\\x56\\xda\\x3d\\x18\\xb3\\xeb\\x35\\x11\\x54\\x0f\\x71\\x8b\\xac\\x2d\\\n\\x16\\x7b\\x0a\\x88\\x90\\x4b\\x4d\\xac\\x45\\x18\\x15\\xb0\\x16\\xb0\\xc5\\xf9\\\n\\x17\\xae\\xd9\\x94\\x7d\\x77\\xa5\\x22\\x92\\x65\\x80\\x09\\x2f\\x1b\\x67\\xd2\\\n\\x35\\x73\\x9c\\xd3\\x7b\\x70\\x82\\x48\\x2a\\x75\\x1d\\x12\\xf0\\x3d\\x2d\\x79\\\n\\x8d\\x2e\\xb4\\x6c\\x3e\\x7f\\xdb\\x9f\\x1c\\xd0\\xb5\\xc6\\x4c\\xef\\xb2\\xc3\\\n\\x3b\\x5d\\x37\\xb0\\xf5\\xa8\\xb5\\x3c\\x2b\\x52\\xc4\\xc5\\xa3\\x96\\xa7\\x2d\\\n\\x5f\\x18\\xf8\\xe5\\x63\\xe2\\x7a\\x7f\\xe4\\x1f\\xd2\\x27\\xdc\\xff\\x00\\x20\\\n\\xea\\x6c\\x45\\x78\\x3e\\x56\\x9f\\xc0\\xfa\\x2d\\xbb\\x4d\\xf1\\xbf\\x1f\\x60\\\n\\x62\\x89\\xd4\\x46\\xc7\\x05\\xf6\\x55\\x63\\x7b\\xb2\\x97\\x5b\\x2b\\xaf\\x27\\\n\\x22\\x69\\xdc\\x34\\x71\\x9c\\x3e\\xa7\\x81\\xfa\\xe4\\x04\\xd7\\x65\\xf8\\xaf\\\n\\x0b\\xb3\\x41\\xd5\\xfd\\x9f\\x2a\\x31\\xd8\\xd9\\x9e\\x75\\xc3\\x9f\\x61\\xfb\\\n\\x0e\\x93\\xc6\\x16\\x10\\xf9\\x22\\x1d\\xb8\\xd4\\xd4\\x73\\x2c\\xb2\\x32\\xf6\\\n\\xa1\\x68\\x69\\x15\\xda\\x5e\\x87\\xa5\\x48\\x0e\\x75\\xec\\xdb\\xb7\\x1f\\x8e\\\n\\x31\\x67\\xb2\\xbb\\xfe\\xb8\\x1b\\x8d\\xaf\\x96\\x16\\xa8\\x8b\\x77\\x3a\\x8a\\\n\\xd2\\x4f\\x92\\x3a\\x6a\\x69\\xa0\\x54\\x18\\xd8\\x10\\x86\\xb3\\x58\\x45\\x88\\\n\\x61\\x20\\x14\\x69\\x64\\xfb\\x5b\\x3a\\x75\\xba\\x09\\x69\\xf8\\xe6\\xd9\\x74\\\n\\xf4\\x10\\xee\\x99\\x62\\xcf\\x79\\x64\\xa9\\x6e\\x3c\\xc4\\x2b\\xc2\\x5e\\xd3\\\n\\x28\\xe2\\xcf\\x4c\\xc0\\xcf\\xce\\x02\\x83\\x0d\\x3e\\x78\\xa0\\xa9\\x48\\x7a\\\n\\x2a\\xd2\\xef\\x2b\\xf5\\x1c\\x9a\\x56\\x39\\xa7\\x1f\\x2b\\x84\\xc4\\x5c\\x9a\\\n\\x7f\\x90\\x87\\xa7\\xd3\\xbf\\x67\\x17\\x12\\xe3\\xf8\\x0f\\x87\\x26\\x9c\\x2c\\\n\\x73\\xc3\\x91\\x5f\\xec\\x6c\\xe7\\xeb\\x0c\\x9e\\xae\\xd6\\xb4\\xf8\\xe5\\x47\\\n\\x3f\\x35\\xf1\\xaf\\x33\\x95\\x95\\x87\\x7b\\x44\\x5e\\x09\\xec\\xe6\\x89\\x0f\\\n\\x6a\\x65\\xa9\\x6b\\x71\\x63\\x04\\x25\\xd2\\x50\\x4f\\x0d\\x9c\\xd4\\xcd\\x43\\\n\\xaa\\xbe\\x30\\x5f\\x72\\x60\\xad\\xbe\\x30\\xcc\\xaa\\x76\\x79\\x19\\xcc\\xe9\\\n\\x18\\x3a\\x60\\xeb\\xfc\\x26\\xaa\\x09\\xac\\x6a\\x3b\\x26\\x8a\\xcf\\x2c\\x28\\\n\\xbf\\x25\\x5a\\xcf\\x00\\x3f\\xeb\\xd9\\xb2\\xed\\x56\\x32\\x92\\xa3\\x99\\x15\\\n\\xc6\\xc9\\x88\\xeb\\xb9\\xe8\\x75\\xdc\\x90\\x30\\x6c\\xf5\\x58\\x7c\\x73\\x21\\\n\\x13\\x1b\\x2d\\x33\\x2b\\x94\\xad\\x9a\\x15\\x35\\xde\\x25\\x0c\\x8e\\x73\\x2e\\\n\\x37\\x27\\x72\\x4f\\xbb\\x2d\\x7c\\x38\\xa5\\xaa\\x04\\xe4\\x4d\\x2b\\x09\\xad\\\n\\xc5\\xbc\\x84\\x5e\\xeb\\x85\\x52\\xb6\\x64\\xe0\\x51\\xa8\\x3f\\x64\\x74\\x5e\\\n\\xb8\\x14\\x56\\x7a\\xc4\\x64\\xe5\\x8f\\x39\\x2d\\x06\\x15\\xd4\\x19\\x99\\x2d\\\n\\x52\\x9a\\xcf\\x65\\xa7\\x8e\\xe7\\x8f\\x9f\\x35\\xab\\xf0\\x2f\\x8e\\x50\\xde\\\n\\x34\\x0f\\xfb\\x2e\\x3a\\xff\\x00\\x1f\\x11\\xcf\\x1f\\x8e\\x5a\\x3c\\xad\\xe1\\\n\\xcf\\x0e\\x33\\xa8\\xf8\\x93\\xa4\\xd8\\x76\\x15\\x23\\xd7\\x14\\xf8\\xe5\\x63\\\n\\xf8\\xb4\\x44\\xf0\\xe3\\xb8\\x2e\\x6b\\x7c\\x71\\xb5\\xed\\x78\\x0a\\x97\\xe3\\\n\\x89\\xb4\\x1b\\xe4\\x6a\\xfe\\xcd\\x7d\\x9f\\x52\\xe2\\x7b\\x68\\x54\\x29\\xb4\\\n\\xc0\\xf9\\x3a\\x96\\x47\\xec\\x37\\x5a\\xce\\xa2\\x7c\\xdd\\xd9\\x69\\x4c\\xb6\\\n\\x03\\xa0\\x5b\\xf5\\x72\\x9c\\x2e\\x52\\xc3\\x2d\\x2e\\x2f\\x2e\\x04\\x4c\\x92\\\n\\x6f\\x98\\x4f\\x82\\x8b\\xf8\\x12\\x5e\\x67\\xca\\x43\\x45\\x32\\x57\\xce\\x8c\\\n\\x04\\xe6\\x16\\x5c\\xd7\\xdc\\x76\\x7d\\x45\\x09\\xaa\\x79\\xe7\\xd2\\xb6\\x78\\\n\\xda\\x66\\xc3\\x58\\x8b\\xda\\x88\\xb5\\xf5\\x88\\x82\\x8c\\x44\\x49\\xa7\\xee\\\n\\x16\\x1a\\x03\\x4b\\x1b\\x1a\\x54\\x76\\x8a\\x8a\\xa1\\x28\\x26\\x82\\x65\\x5b\\\n\\x3f\\x8f\\xb7\\x9a\\xca\\x1a\\x0a\\x61\\x33\\xd8\\xf4\\x98\\xd4\\x2e\\xe9\\x99\\\n\\xf8\\xa9\\x7c\\x68\\x16\\x07\\x32\\xc1\\x51\\x88\\xb4\\xf8\\xd4\\x34\\x78\\x9f\\\n\\x6d\\x8f\\x5c\\xf3\\x66\\x3c\\x4b\\x15\\x99\\xa9\\x2d\\xfc\\x2c\\x2b\\xf8\\x86\\\n\\xb7\\xb0\\xa2\\xbc\\xbd\\x7f\\xad\\x45\\xc9\\x1c\\x73\\xd7\\x1c\\x62\\x9e\\x65\\\n\\x95\\x3e\\x63\\xa8\\x62\\x5b\\x73\\xb1\\x77\\x7f\\xc1\\x7d\\xb3\\xaa\\xcd\\xc5\\\n\\x4a\\x4b\\x23\\x2f\\x0a\\x4a\\x93\\x92\\x94\\x96\\xa1\\xa7\\x87\\x19\\xad\\x57\\\n\\xb4\\xfa\\x9b\\x17\\x95\\x72\\x9e\\xda\\xd0\\xd0\\xec\\x45\\xa6\\x04\\x10\\x09\\\n\\xe0\\xac\\xb7\\x3d\\xd6\\x0d\\x8e\\xc1\\x2f\\x42\\x5b\\xe2\\x1c\\x5e\\x69\\x32\\\n\\x11\\x0c\\x78\\x5d\\x63\\x66\\xf0\\x6c\\x02\\x86\\x02\\x2a\\x06\\x85\\xf8\\xf1\\\n\\x22\\xd5\\x99\\xad\\x69\\x6e\\x78\\xfc\\x45\\x3e\\x16\\xe6\\x3b\\x76\\x61\\x0b\\\n\\x94\\xe6\\xa5\\x1a\\xbd\\xc0\\x71\\x39\\x26\\xd4\\xa6\\x9b\\xa4\\xc7\\xcf\\x67\\\n\\x4b\\x6b\\xe8\\x09\\x95\\x20\\x57\\x54\\xcd\\x20\\x28\\xca\\xcd\\x3d\\xda\\xd3\\\n\\x60\\x6c\\xa4\\xd1\\xf5\\x10\\xd1\\xad\\x59\\xd0\\x50\\xb1\\xe0\\x74\\xc3\\x6a\\\n\\xfd\\x77\\xd3\\xd0\\xd6\\xdb\\xfc\\x83\\xaa\\xb8\\xf2\\x70\\xab\\x71\\x60\\x3f\\\n\\xe3\\xf7\\xea\\xab\\x7b\\xad\\xa5\\xd3\\x60\\x13\\x18\\x82\\x1d\\x7b\\xbb\\x4d\\\n\\x24\\x9c\\xfc\\xf8\\xb7\\xa4\\xaa\\x3c\\x6d\\x83\\xb8\\x55\\xe3\\xc6\\x16\\xeb\\\n\\x4b\\x52\\x00\\xb8\\x43\\x45\\xd9\\xba\\xfc\\x1d\\xb3\\xdc\\x9d\\x34\\xd5\\x5e\\\n\\x22\\xbf\\x13\\x35\\xe4\\xff\\x00\\x41\\xe5\\xaa\\xe1\\xcd\\x50\\x5f\\xd8\\x5c\\\n\\xdd\\x4c\\xb1\\xe0\\xfe\\x64\\xd7\\xec\\xdd\\x53\\x62\\x95\\xec\\xcd\\x14\\xc7\\\n\\x91\\x38\\x67\\xbe\\x7d\\xec\\xfb\\x1a\\x78\\xb4\\xb1\\x36\\x8e\\xed\\xc2\\x36\\\n\\xed\\xcd\\x9f\\x60\\xa3\\xd7\\x1f\\x0a\\x18\\xaa\\x90\\xd7\\xf8\\xb3\\x5c\\x99\\\n\\x9f\\x82\\x7c\\xdb\\x9a\\xd3\\x5f\\x8c\\xd7\\xfa\\xe7\\x5b\\x82\\x7e\\x45\\xca\\\n\\x1d\\x85\\xde\\xda\\xd4\\x6c\\x74\\xe4\\x86\\x49\\x27\\x5b\\xc6\\x05\\x1f\\xd6\\\n\\x26\\xd6\\x99\\x1c\\x78\\xf4\\xb6\\xe0\\xa7\\xd3\\x68\\x54\\xb2\\x5a\\x6c\\xb0\\\n\\xd9\\xdd\\x25\\x91\\xa4\\xb9\\xa0\\x5b\\x92\\x99\\x37\\xb1\\x4e\\xba\\xb6\\xd3\\\n\\x76\\xf5\\x3e\\xc7\\xfc\\x12\\x86\\xf6\\x2d\\x97\\x32\\xcb\\x00\\x42\\x0b\\xcb\\\n\\x69\\x5e\\xc1\\x01\\x97\\x6a\\x23\\xd4\\xb7\\x3b\\x37\\x5a\\xaf\\x66\\xce\\xed\\\n\\x78\\x4e\\x66\\xdf\\x25\\x99\\xae\\x4c\\x08\\xba\\xba\\x49\\xd1\\x5c\\x95\\xbc\\\n\\x99\\x27\\x0a\\xda\\xb9\\xe3\\x7b\\xbd\\xf5\\xcb\\xf3\\xbb\\x87\\x3e\\xcc\\x13\\\n\\x1f\\x44\\xd7\\xb6\\x4b\\xca\\xd3\\xac\\x21\\x69\\x8a\\x0f\\xe2\\x26\\xb3\\x3c\\\n\\x80\\xf9\\x73\\xeb\\xc4\\x72\\x99\\xc1\\xb8\\xdf\\xcf\\xba\\xd6\\x6b\\x59\\x45\\\n\\xe7\\x3b\\x50\\x7f\\x75\\x77\\x6d\\xa1\\xd8\\xf3\\x13\\x2a\\x2b\\x1e\\x4c\\xca\\\n\\xd8\\xcd\\xff\\x00\\x89\\x3a\\xf7\\xe4\\xb3\\xaa\\xd4\\xaa\\x48\\xe3\\x25\\x8f\\\n\\x2d\\x4d\\x05\\x93\\x85\\xa3\\x51\\xe9\\xa8\\xa8\\x2a\\xda\\xf3\\xcd\\x5a\\xfb\\\n\\x46\\x1f\\x9f\\x8f\\xf6\\x5e\\xe7\\xb4\\x5a\\x1c\\xb4\\xc0\\xa7\\xf9\\xe5\\xa9\\\n\\x4e\\x66\\x75\\x5c\\x8d\\x15\\x9d\\xe9\\xd8\\x2f\\xb7\\x1d\\x67\\x29\\x79\\x0e\\\n\\x32\\x60\\xe0\\x07\\x58\\xe1\\xa7\\xd5\\x0c\\x79\\xfc\\x8e\\xbc\\xb7\\x88\\xe3\\\n\\x53\\xb2\\x40\\x74\\xb3\\x3b\\x05\\x50\\xd3\\x75\\x73\\x1c\\x48\\xd5\\x70\\x9d\\\n\\xe3\\x56\\xab\\x05\\x7b\\x83\\x83\\xb8\\xec\\xce\\x8a\\xf7\\x72\\xae\\x8d\\x1a\\\n\\xb2\\xb6\\x40\\xc0\\x14\\x35\\xdd\\xd6\\x75\\x32\\x46\\x95\\x33\\xd2\\x58\\xfc\\\n\\xd5\\x44\\x81\\xd2\\xc7\\x82\\xd4\\xba\\x3b\\x4c\\xae\\x3e\\x94\\xe9\\x5d\\x4b\\\n\\xf2\\x5f\\x5c\\x59\\xc3\\x87\\xaa\\x31\\x41\\x47\\xb7\\x20\\x97\\xed\\x2f\\x2e\\\n\\x02\\xf6\\xbd\\x93\\xd1\\xc3\\x34\\x56\\x69\\xe5\\xc9\\x1f\\xc7\\x0d\\x9a\\xa1\\\n\\xa3\\xe9\\xb4\\x8e\\x85\\x23\\xfd\\x95\\xaf\\xf3\\x6e\\x45\\x2f\\x3c\\xa8\\xab\\\n\\xf2\\x29\\x17\\x8e\\xfe\\x6f\\xed\\xd7\\x64\\x07\\x41\\x80\\x9f\\xe2\\x52\\x76\\\n\\x55\\x7f\\xae\\x7e\\x42\\xeb\\x0f\\xa1\\xfe\\x67\\x81\\x83\\x99\\xbf\\xa2\\x0d\\\n\\x12\\xfc\\xd2\\x78\\xdb\\x12\\x11\\x6b\\xf6\\x1a\\x56\\x46\\xd2\\xb5\\xb2\\x8e\\\n\\x13\\xe3\\xfe\\x2b\\x60\\x2a\\x26\\xf1\\x94\\x28\\x3a\\x18\\x1f\\x48\\xe0\\x20\\\n\\xb8\\xd9\\x20\\x76\\x31\\xfc\\xe0\\x5e\\x1c\\xb0\\x2a\\x3a\\xe7\\x39\\x46\\x83\\\n\\x4f\\xb5\\x15\\x21\\xe2\\x38\\x40\\xd6\\x64\\xf0\\x41\\xf0\\xda\\x91\\x4a\\xba\\\n\\xcd\\x7c\\x0a\\xff\\x00\\xa0\\x1b\\x6e\\x68\\xe9\\xdd\\x18\\xa6\\x90\\x3a\\xe2\\\n\\x20\\xbe\\xab\\x04\\xf6\\xd5\\xcc\\xe1\\xb3\\xa0\\x92\\xe6\\x2b\\xed\\x88\\x0b\\\n\\xad\\xa5\\xf2\\x96\\x8e\\x94\\x4b\\x6b\\xa2\\x0a\\xce\\xa6\\x82\\xca\\xde\\xb9\\\n\\xf9\\x83\\x59\\xe0\\x93\\xe8\\x15\\x0b\\xb8\\x8d\\x7d\\xd7\\x2b\\x7a\\x35\\x18\\\n\\x6a\\x99\\x6b\\x7e\\x61\\x16\\x50\\x9e\\xc5\\x71\\x1f\\x38\\xb0\\x14\\xc3\\xb0\\\n\\xed\\x1d\\x7a\\xf3\\x6e\\x79\\xf8\\xf2\\x4f\\x9e\\xd9\\x49\\x1e\\xab\\x4c\\xfc\\\n\\xc4\\x44\\x73\\x65\\x7f\\x35\\xd1\\x2d\\x0c\\xaf\\xff\\x00\\x28\\xaf\\x97\\x2b\\\n\\x59\\xe0\\xfe\\x26\\x45\\xe3\\xe4\\x61\\x9c\\x85\\xed\\x9d\\x79\\xe5\\xda\\x05\\\n\\x3e\\xbd\\x6f\\x68\\xbf\\x13\\x8a\\x58\\xd1\\x26\\x33\\x7b\\x82\\xf8\\xbf\\xfb\\\n\\x2d\\xcd\\x0d\\x03\\x98\\xe5\\x3d\\xad\\xc0\\x06\\xb3\\x5d\\x1a\\xb0\\x1c\\xfe\\\n\\xb7\\xde\\x74\\x73\\xf4\\x81\\xdb\\x30\\xdb\\xac\\x6d\\x63\\x92\\x76\\xd2\\x86\\\n\\x16\\xfa\\x5f\\xc9\\x96\\x5b\\xc0\\x82\\x18\\xc9\\x4f\\xe3\\x9e\\x31\\x6e\\x66\\\n\\x80\\x21\\x1f\\xbb\\xca\\x09\\x22\\xac\\x6b\\xe9\\x14\\x14\\x49\\x9d\\x3d\\x0a\\\n\\x68\\xe9\\x01\\x5b\\x57\\x5a\\xe4\\xb5\\xdb\\xf6\\x0a\\x52\\x8b\\xda\\xc6\\x1a\\\n\\xa7\\xfc\\x74\\x35\\x0a\\xea\\x8d\\x7a\\x74\\xb3\\xd5\\x86\\xe4\\x0a\\x78\\x96\\\n\\xb1\\x63\\xda\\x60\\x2d\\x32\\xc4\\xd4\\xec\\x24\\xb0\\xf3\\x48\\xf3\\x47\\x51\\\n\\xaa\\x33\\x23\\xb5\\xc6\\x6f\\x3c\\x61\\x5d\\xc0\\xb0\\x12\\x89\\xbf\\xbc\\xbd\\\n\\x57\\xd2\\x5e\\x8b\\xb5\\x96\\xa9\\x64\\x1d\\xdb\\x49\\xbc\\xec\\xf6\\x75\\x8b\\\n\\xa1\\xc3\\xa2\\x22\\x72\\xd9\\xf7\\xe5\\xf3\\xd9\\xf5\\x89\\x41\\xc5\\xcb\\x98\\\n\\xb9\\xaa\\x65\\x09\\x13\\xeb\\xf1\\xa6\\x90\\xa4\\x99\\xfd\\x69\\x9a\\x9d\\x0a\\\n\\xcf\\x94\\xfa\\xed\\x1c\\x9a\\xcc\\x72\\x17\\xf1\\xe4\\xa9\\x5f\\x2f\\x82\\x53\\\n\\x8d\\xa9\\x1a\\x2a\\xed\\x62\\xb1\\x8a\\xdf\\xfe\\x31\\x59\\x8a\\xca\\xc7\\x25\\\n\\x6d\\x77\\x4d\\xed\\xfb\\x95\\xb7\\x15\\x6b\\xc8\\xac\\x21\\x70\\x3e\\x88\\xe4\\\n\\x85\\xd2\\x8f\\x8c\\x6f\\x9d\\xd6\\xee\\x96\\x4b\\x1f\\x4b\\x3b\\xaf\\xe8\\x30\\\n\\x4a\\x99\\x8c\\xb6\\x68\\xc9\\x0f\\x6a\\xc5\\x3d\\x9b\\x1e\\x1f\\x03\\x1d\\x6b\\\n\\x61\\x52\\x79\\x16\\xf5\\x50\\x8e\\x4c\\x70\\xc7\\x2c\\xf0\\xf3\\xf3\\xc7\\xf4\\\n\\x88\\xb8\\x2d\\x5b\\x4f\\x2b\\x42\\xf2\\xb0\\x4e\\x7a\\x44\\x69\\x02\\x8b\\x1d\\\n\\xdf\\xc6\\x63\\x84\\xf8\\x2a\\xf9\\xe9\\x67\\x7f\\x51\\xba\\xe2\\xe8\\xdf\\x43\\\n\\xb0\\x0d\\x5b\\x7d\\x96\\x0f\\x55\\x77\\xf4\\xd3\\xb3\\x4c\\x38\\x67\\x76\\x7c\\\n\\x7d\\x78\\x0a\\xff\\x00\\x05\\x46\\x2a\\xd5\\x1a\\x3a\\x2d\\x45\\x2b\\xa8\\x3e\\\n\\xd2\\x3b\\x89\\xe3\\x48\\x26\\x99\\x6f\\x11\\x91\\xf7\\x35\\x9a\\xb2\\x2f\\x12\\\n\\xd6\\xe0\\xe6\\xb1\\x1f\\x23\\x9b\\x7a\\xe3\\x96\\x52\\xb6\\xac\\x52\\xbc\\xba\\\n\\x61\\x62\\x0e\\xa1\\x95\\x2b\\x13\\x41\\x8a\\x59\\xfa\\x12\\x97\\x69\\x49\\xb8\\\n\\xa7\\x70\\x47\\xef\\x51\\xc5\\x26\\x06\\x5a\\x0f\\x81\\x38\\xcb\\x12\\xc2\\xbe\\\n\\x36\\xdc\\xc7\\xad\\x34\\x5c\\xeb\\xda\\x55\\xd5\\x50\\x39\\xe4\\xcb\\x59\\x47\\\n\\x2a\\xd9\\x85\\x6b\\x0f\\x3c\\xae\\x18\\x48\\xac\\x3a\\x37\\x9d\\x65\\xc6\\xfa\\\n\\x7f\\xb0\\xaa\\xcb\\x42\\xa0\\x9a\\x8e\\xc0\\x7f\\xad\\xf8\\x35\\xd4\\x87\\x98\\\n\\xa6\\x06\\x86\\xa4\\xcc\\x5f\\xeb\\xd6\\xa7\\x35\\x54\\xb2\\xac\\x56\\x79\\xb1\\\n\\x22\\xba\\x94\\xf0\\x58\\x46\\xed\\x03\\x55\\x41\\x77\\xb5\\xa3\\x93\\xdc\\x33\\\n\\x3d\\x26\\xec\\xf9\\x9e\\x15\\xd7\\x03\\x74\\x9a\\x45\\xad\\x7a\\x92\\x79\\xe1\\\n\\x6a\\xc9\\x66\\x66\\x17\\x8b\\x4d\\x45\\x0b\\x89\\xef\\xc7\\xd2\\x46\\x5f\\x35\\\n\\xa5\\x77\\xb2\\x1c\\x88\\x00\\x2c\\x42\\xb3\\xa0\\x95\\xaf\\x4a\\xca\\x42\\x86\\\n\\x33\\xd4\\xd3\\x75\\xe5\\xee\\xda\\x6c\\xc1\\x4d\\xb0\\x05\\x41\\x60\\xda\\x60\\\n\\x7c\\x61\\x52\\x8b\\x88\\x6b\\x57\\x31\\x8d\\xb3\\x85\\xb7\\x29\\x44\\x74\\x25\\\n\\x5c\\x81\\x2c\\x3e\\xc4\\x58\\x16\\x5b\\x71\\x16\\xac\\xc7\\xcc\\x2c\\x2a\\x17\\\n\\x97\\x4c\\xe2\\xe0\\xc3\\xe7\\x2c\\x2e\\x2a\\x1a\\xa3\\xad\\xb9\\xd9\\xc1\\x4a\\\n\\xd3\\x58\\x94\\x0e\\x7b\\x5f\\x26\\x82\\x8a\\x69\\xc0\\x52\\xdf\\x3e\\x6e\\x8e\\\n\\xe8\\xed\\x3d\\x55\\x9a\\x69\\xd5\\x87\\x0d\\xbe\\x42\\x52\\xdf\\x30\\x15\\xcf\\\n\\x7e\\x30\\xab\\x65\\x22\\x65\\x02\\x20\\x1d\\xab\\x73\\x86\\x9e\\xba\\xcc\\xc7\\\n\\xce\\xb8\\xc8\\xfc\\x26\\xa3\\xe9\\xd9\\x9a\\x96\\x2c\\xeb\\x1e\\xa1\\xad\\xd6\\\n\\x47\\xda\\x41\\x9c\\x9e\\x96\\x69\\xfd\\x9e\\x72\\x05\\xeb\\x32\\x54\\xd1\\xb7\\\n\\x2c\\xbc\\x44\\x33\\xec\\x10\\x7d\\x96\\xac\\x38\\xad\\xdb\\x5d\\x18\\x20\\xa7\\\n\\xdc\\x32\\x81\\x62\\x0a\\x79\\x91\\x7f\\x5e\\x85\\x69\\x3c\\x98\\x9a\\xf3\\xe2\\\n\\xd3\\xcf\\xeb\\x79\\xb9\\x96\\x46\\x02\\x4f\\x6d\\xbf\\x1c\\x68\\xd7\\xd9\\xb0\\\n\\x72\\x35\\xa4\\x56\\xec\\xb2\\x89\\xe9\\xae\\x9a\\x52\\xb9\\x1b\\xa0\\xc2\\xaa\\\n\\xe0\\xaa\\x7f\\x41\\x55\\x7a\\xfc\\xb4\\xba\\xd8\\x41\\x4c\\xc3\\xb8\\x8d\\x5d\\\n\\x05\\xd8\\x69\\x4a\\x19\\x56\\x72\\xb4\\xbd\\x4e\\xa6\\xa6\\x5d\\xcd\\xc1\\xe5\\\n\\xfc\\x72\\xde\\xd8\\x73\\x58\\x6c\\x99\\x12\\xab\\x7a\\x10\\xcb\\x5b\\xc9\\x41\\\n\\xcd\\x62\\x91\\x1c\\xb2\\x7f\\xd9\\x91\\xd6\\x2b\\xe9\\xf9\\x8d\\xe2\\x4d\\x8b\\\n\\xb0\\xcd\\x9c\\x32\\xb1\\x13\\xc7\\x11\\x17\\xd6\\xf4\\xf8\\x0a\\x2c\\x26\\x16\\\n\\x5e\\xb2\\x2a\\xf9\\x50\\xbc\\x38\\x6b\\xf3\\x31\\xe1\\x25\\x6c\\x89\\x56\\xe2\\\n\\x24\\x04\\xe1\\xa9\\xa3\\x31\\x50\\xd6\\xf3\\x5e\\x4d\\x67\\x82\\xa4\\x00\\xa5\\\n\\x14\\x5b\\x93\\x4a\\xd3\\x87\\x02\\xcc\\x71\\x55\\xf2\\xb1\\x85\\x7b\\x19\\xdb\\\n\\xaa\\xc5\\x66\\xac\\x9f\\x79\\x6b\\x2b\\xdb\\xe9\\x6a\\x45\\xfe\\xd5\\x6e\\x5a\\\n\\x0b\\x86\\x8a\\x1e\\xcc\\x22\\xf2\\xf2\\xc8\\xa6\\x2c\\xc0\\x26\\xcb\\x02\\x7c\\\n\\x4d\\x58\\xbc\\x98\\x1e\\xbb\\xc1\\xd8\\xaf\\x95\\x8d\\x7b\\xcb\\xbf\\x5c\\xd4\\\n\\x22\\x83\\xb4\\xde\\x84\\xb5\\xba\\xd6\\x94\\x23\\xa3\\x20\\xff\\x00\\x93\\xb2\\\n\\x1f\\xeb\\x2f\\xd5\\x19\\x4b\\x5e\\x48\\x50\\x35\\x3f\\xb1\\x5d\\x61\\x99\\x41\\\n\\x47\\xa5\\x62\\x7f\\xaa\\x73\\x41\\x15\\xa6\\x86\\x90\\x92\\xb6\\x93\\xbe\\xa6\\\n\\x4a\\x7b\\x50\\xb9\\x20\\x83\\x43\\x37\\xfa\\xc3\\x1e\\x8f\\xec\\x4f\\xb2\\xf0\\\n\\xe4\\x07\\x5c\\x27\\x15\\x92\\xfe\\x15\\x1c\\x7c\\xca\\xd6\\x1f\\x06\\xb5\\xa6\\\n\\x9a\\x47\\xa8\\xc1\\x4f\\xc8\\x19\\x62\\xd2\\xd2\\xec\\x16\\x96\\xce\\x41\\x8c\\\n\\xaa\\x4d\\x2f\\x24\\x20\\x0b\\x57\\x15\\x18\\xd5\\x40\\xf6\\x01\\x16\\x98\\x24\\\n\\x34\\x98\\x6e\\x26\\x97\\x28\\x86\\xbd\\x64\\xae\\x3b\\x08\\xc5\\xb3\\x56\\xfb\\\n\\x67\\x82\\xde\\x27\\x27\\xfa\\xb6\\x48\\x9e\\x5e\\x7f\\x9f\\xfa\\xb5\\x9f\\x5e\\\n\\x75\\x4e\\xd7\\x9f\\xdb\\xb3\\x8f\\xb8\\x88\\x8b\\x64\\x69\\x70\\xea\\x34\\xae\\\n\\x4d\\x5b\\xee\\x1a\\xfa\\x16\\x41\\xb2\\x25\\x65\\xd4\\x21\\x0a\\xc2\\x2b\\x9b\\\n\\x99\\x6c\\x01\\x35\\x6f\\x1e\\xeb\\xd6\\x22\\x9c\\x96\\x66\\x44\\xe2\\xeb\\x39\\\n\\x5f\\xf1\\xc0\\x5b\\x83\\xe8\\x4c\\xc3\\x04\\xcc\\x9a\\xb2\\x9d\\xfe\\xa0\\xb4\\\n\\x14\\x79\\x50\\xec\\xea\\xf6\\x43\\xf3\\xa7\\x64\\x7d\\xec\\xad\\xb5\\x25\\x61\\\n\\xe7\\xec\\x40\\xf9\\x87\\x75\\x6c\\xde\\x66\\xb8\\x1f\\x0e\\x82\\xfe\\xc5\\xde\\\n\\x5e\\xb5\\x6b\\x36\\x24\\x81\\xf6\\xda\\x85\\xeb\\x3a\\x51\\x33\\x58\\x8b\\x49\\\n\\xc1\\x11\\x5d\\xb7\\xea\\x80\\xf4\\x18\\x63\\xf5\\xc7\\x1f\\x90\\x62\\xb2\\x5e\\\n\\x67\\x23\\x71\\xa9\\x73\\xcf\\x8d\\x53\\x88\\x27\\x6b\\x2c\\xe4\\xe8\\xd0\\xe0\\\n\\x20\\xc9\\x6a\\xf0\\x22\\xf2\\xe1\\x59\\x1d\\x29\\xa5\\xd8\\xb3\\x71\\x16\\xd6\\\n\\xee\\x6f\\x6a\\xe8\\xe9\\x35\\x4a\\x48\\xfd\\x0d\\x8c\\xc9\\xdd\\x8a\\xac\\xa9\\\n\\x62\\xb4\\x09\\x04\\x4b\\x14\\xbf\\x2a\\x28\\xa9\\xa1\\x7b\\x4d\\x4d\\x70\\x9a\\\n\\xf6\\x98\\x99\\xe4\\x47\\x87\\x1a\\x66\\x93\\x29\\x69\\x59\\x63\\xed\\xaf\\x02\\\n\\x6c\\x37\\x2f\\xdc\\xeb\\x5f\\x8f\\xb5\\xbb\\x32\\x1b\\x7f\\x8d\\x36\\xf2\\x9e\\\n\\x36\\x3d\\x39\\xd7\\xb7\\x1d\\xeb\\x3a\\x9d\\x84\\x4a\\xf6\\xcc\\x75\\x9a\\xf7\\\n\\x65\\x76\\x14\\x6a\\xfa\\x01\\x6a\\xd4\\x36\\x6e\\x50\\xb3\\x2b\\x3f\\xd2\\x92\\\n\\x09\\xf0\\x57\\x28\\x97\\x15\\xe4\\x34\\xe7\\x85\\xaf\\x20\\xab\\x05\\xbd\\x71\\\n\\x6c\\x20\\x16\\xdf\\x03\\x57\\x51\\xf3\\xcd\\x4a\\x42\\x5a\\xb5\\x2c\\x5a\\xbd\\\n\\x83\\x4d\\x55\\x8d\\xde\\x0e\\x5e\\x03\\xb8\\xad\\x35\\x61\\xfc\\x9d\\x2a\\x5b\\\n\\x13\\x2a\\xd7\\xbe\\x38\\x08\\x5e\\xa4\\xff\\x00\\xd6\\x60\\x64\\xf7\\xd7\\x4d\\\n\\x61\\x2f\\x18\\x7e\\xb1\\x9a\\xab\\x4f\\xcf\\xd6\\x28\\x18\\xa6\\x97\\xc8\\x8e\\\n\\xfd\\x7c\\x18\\x24\\xb6\\xfb\\xe4\\x5a\\xb9\\xb1\\x4b\\xb5\\x0b\\x00\\xc4\\x94\\\n\\x0b\\x1e\\x99\\x1b\\x3e\\x61\\xf2\\x1c\\x7e\\x4b\\x4a\\xcc\\x64\\x17\\x6f\\x6f\\\n\\x09\\xac\\x2e\\xe1\\xd8\\x98\\x1f\\x5e\\xd4\\xf6\\x64\\x77\\x4e\\xf8\\x05\\x6e\\\n\\xde\\x93\\x2d\\x9b\\xff\\x00\\x33\\xef\\x23\\x6f\\x14\\x09\\x60\\x5a\\xcc\\x24\\\n\\x0b\\x84\\xca\\xde\\x80\\x66\\x95\\xe3\\x4c\\x2d\\x3c\\x45\\xca\\x31\\x6f\\xe2\\\n\\x25\\x7f\\x2f\\x4d\\x6d\\x71\\x1c\\xb6\\x9b\\x5d\\xca\\x45\\xc8\\x5a\\x96\\x21\\\n\\x3a\\x53\\x67\\x17\\x0f\\xa6\\xb9\\xbd\\xb9\\xf9\\x0b\\x6f\\x37\\xf1\\xbf\\x4a\\\n\\xea\\x5d\\xbf\\xab\\xf6\\x7c\\x31\\xe3\\xa2\\x41\\xb5\\xd0\\xb2\\x1f\\xa7\\x53\\\n\\xcd\\x1f\\x48\\xb1\\xb3\\xdb\\xc3\\x6f\\xc4\\x92\\x20\\xf5\\xf1\\xa9\\xbb\\x04\\\n\\xaf\\xc8\\xbd\\x87\\x21\\x2a\\x25\\xe8\\x2d\\x9d\\xbd\\x6d\\x04\\xa0\\x44\\xae\\\n\\x36\\x47\\xec\\x24\\x28\\x2c\\x9d\\x7b\\x4b\\x75\\xa0\\xe4\\x63\\xb4\\x1f\\x3f\\\n\\x24\\x94\\x2e\\x77\\xaf\\x95\\x1d\\x7e\\x41\\x14\\xa9\\x0d\\xac\\x8f\\x1c\\x1a\\\n\\x66\\x65\\xec\\xb6\\x91\\xb8\\x5c\\x62\\x96\\xc1\\x21\\x39\\x93\\xb2\\x45\\xb4\\\n\\x97\\x7b\\xd9\\x62\\xde\\x84\\xe5\\x62\\x15\\x67\\x3a\\x9f\\xda\\x80\\x1d\\xa3\\\n\\x7c\\xb7\\xce\\xd2\\xc5\\x6a\\x75\\x0a\\x5c\\xda\\x5c\\x5a\\xd9\\xe2\\x19\\xd8\\\n\\x97\\x94\\x60\\x26\\x15\\xc4\\x23\\x10\\x64\\xfd\\x85\\x39\\x47\\x63\\xe7\\x4f\\\n\\x5a\\xc2\\xe7\\x73\\x80\\x7e\\xdb\\x12\\xc3\\x0a\\x9b\\x7d\\x99\\xc7\\xd6\\x6b\\\n\\xce\\xb2\\x82\\xf4\\xf8\\x91\\xe7\\xc4\\x6c\\x19\\x8b\\x5f\\xeb\\x18\\x9c\\x2e\\\n\\x7a\\xf0\\x2b\\xff\\x00\\x17\\x0e\\x20\\x0c\\x36\\xb3\\x18\\x5e\\xd4\\xb7\\x85\\\n\\xc7\\xa5\\x53\\x56\\xa4\\xad\\xe2\\xf3\\x68\\xe1\\x2c\\x59\\xac\\x35\\x52\\x1b\\\n\\xc8\\x84\\xe6\\x5a\\x62\\xc5\\x37\\xe3\\x4c\\x24\\x3a\\xf2\\x3f\\x91\\x7b\\x0e\\\n\\x9f\\x65\\xec\\xcb\\xbc\\xe2\\xb4\\xcf\\xf4\\x7e\\xa2\\x23\\x8e\\xa6\\xf5\\xe9\\\n\\x99\\xa1\\x5b\\x2b\\x23\\xb2\\xc5\\xd7\\xbd\\x2a\\x50\\x2d\\x5b\\xf2\\x82\\x10\\\n\\x28\\xf3\\x0b\\xfd\\x59\\x9f\\x88\\xcc\\x39\\x82\\xce\\x08\\xdd\\x4d\\x61\\xbf\\\n\\x0e\\x18\\x5d\\x71\\x13\\xcf\\x6c\\xe9\\xe6\\x55\\x74\\x99\\xb1\\xa3\\xc6\\x6d\\\n\\x5a\\x8e\\x3c\\x9a\\x5e\\xc3\\x47\\x34\\x6f\\x3a\\x56\\x32\\x1c\\x09\\x8a\\x32\\\n\\x9b\\x94\\xc4\\x58\\x57\\x67\\x27\\x55\\x90\\x25\\x9b\\xa4\\x77\\xf2\\xa2\\x7e\\\n\\x91\\x45\\x7b\\xdf\\x41\\x5f\\xae\\x96\\x59\\xe4\\x82\\xfb\\x45\\xf2\\xef\\x43\\\n\\xf8\\xcc\\xe9\\x83\\xf0\\xc0\\xf3\\x20\\xc5\\xda\\xe9\\xe3\\xc5\\xc5\\x57\\xa5\\\n\\x85\\x07\\xc0\\x44\\x4c\\x5e\\x83\\xa5\\x86\\x3b\\x7a\\xd4\\xce\\xbb\\x07\\xef\\\n\\xaa\\x87\\xf6\\x71\\x46\\x87\\x77\\x24\\xc0\\xe1\\xd9\\xab\\x22\\x93\\xf9\\x8d\\\n\\x65\\x89\\x59\\x33\\x02\\x99\\xa3\\x5e\\x54\\x07\\x8d\\xa1\\xe5\\x84\\x6a\\x2b\\\n\\xa2\\x65\\xef\\x47\\x62\\xdc\\x32\\xe1\\x62\\x2e\\x97\\x87\\x30\\xbf\\xa3\\xba\\\n\\xb6\\x1f\\xb1\\x97\\x66\\x78\\x95\\x01\\x17\\x58\\x87\\xa2\\xff\\x00\\x8e\\x7a\\\n\\xc3\\xbd\\xa7\\xb0\\xf6\\xce\\xe1\\x1f\\xb1\\xd6\\xc5\\xc9\\xd6\\xbd\\xba\\x9a\\\n\\x80\\xe2\\x20\\xb4\\x00\\x42\\xa5\\x29\\x61\\x70\\x54\\x41\\x8b\\x91\\xc0\\xd8\\\n\\xaa\\x74\\x6b\\x1e\\xd1\\xd6\\xf3\\x28\\x0f\\xd1\\xa4\\x31\\x76\\x64\\x7f\\x5c\\\n\\xe8\\x3a\\xf6\\xbb\\x15\\xeb\\xb5\\xa6\\x37\\x64\\xbc\\x53\\xc2\\xd4\\x12\\xe6\\\n\\x5f\\xe6\\x78\\xc5\\xcb\\xf3\\xda\\xfa\\xab\\x0c\\x30\\xaa\\x40\\x5c\\x1b\\x43\\\n\\x2e\\x49\\x10\\xdd\\x29\\x08\\xc5\\x7e\\xb1\\xbe\\x6d\\x7e\\x11\\x90\\x8b\\x8b\\\n\\xe6\\xe8\\xb7\\x67\\x0d\\xa8\\x9d\\xf2\\xf7\\x04\\x08\\x45\\xa0\\x7a\\x56\\x56\\\n\\xdc\\x6c\\x32\\x4e\\x67\\x7b\\x7e\\x2b\\x6f\\x6c\\x77\\x38\\xb1\\x31\\xfa\\x98\\\n\\xfc\\x30\\x3e\\x08\\x3b\\x6f\\xaf\\xe6\\x25\\x43\\xf4\\xeb\\xff\\x00\\x98\\xad\\\n\\x10\\x2b\\x50\\x44\\xf3\\x38\\x4d\\x55\\xe8\\xd1\\x73\\x87\\xf9\\x03\\x2f\\xe9\\\n\\x68\\xff\\x00\\xa6\\xd7\\x61\\x55\\xce\\x2d\\x3c\\xf2\\x20\\xc7\\xd7\\x34\\x44\\\n\\x12\\xf7\\x0a\\x19\\xf7\\x1c\\x1f\\x24\\x93\\x31\\x93\\x34\\x0d\\xd3\\x24\\xcb\\\n\\x68\\x96\\x2d\\xee\\x2a\\xa5\\x4a\\xb7\\xb8\\xd3\\x06\\x53\\x57\\x77\\xab\\x2d\\\n\\xe4\\xe8\\xd9\\xbb\\x66\\xeb\\x64\\x6a\\xc0\\xeb\\xa0\\x15\\x91\\xd4\\xa2\\xb7\\\n\\x75\\xba\\xfe\\x3b\\xe9\\x40\\x5c\\x1f\\xe2\\xbd\\x77\\xaf\\xba\\xda\\xce\\x26\\\n\\xe2\\xe6\\x5b\\xe3\\xeb\\x85\\x82\\xd0\\xae\\x3b\\xa5\\xe4\\x35\\xa0\\xc5\\xc5\\\n\\xcb\\xcc\\x52\\x80\\xbc\\x00\\xbe\\xc9\\xf3\\x62\\xe3\\x8e\\x36\\x8a\\xba\\x7a\\\n\\x71\\x33\\xf2\\xce\\x3a\\x8f\\x5b\\x0f\\xb0\\xae\\xd1\\xd9\\xd1\\x5e\\x4f\\x47\\\n\\x22\\x2e\\xfe\\xea\\x88\\xc5\\xb7\\x42\\x4a\\x1c\\xe3\\xb7\\x36\\x43\\x56\\xf3\\\n\\x20\\x3e\\x56\\x33\\x77\\x05\\xa2\\xcd\\x37\\x2a\\x74\\xa5\\x2e\\x0c\\xd4\\x6a\\\n\\x8a\\xda\\x39\\xcb\\x6a\\xaf\\x87\\x86\\xb6\\x6c\\xae\\xb8\\xaf\\x65\\x20\\xd2\\\n\\x4a\\x86\\x38\\xa5\\x43\\x42\\x89\\x6a\\xfc\\xf6\\xbf\\x59\\x33\\x70\\x05\\x12\\\n\\x9b\\x91\\x14\\x9d\\x09\\x17\\xbc\\xb1\\xff\\x00\\x21\\x4f\\x18\\xab\\x34\\xa5\\\n\\x2c\\x36\\xfe\\xbb\\x76\\x78\\x63\\x1e\\x58\\x04\\xc4\\x7e\\x4b\\x28\\x8d\\xd7\\\n\\xba\\x1f\\x5d\\xaf\\x61\\x4f\\xb0\\x75\\xcd\\x8c\\x43\\xb6\\xa8\\x4e\\x0b\\xa5\\\n\\x0e\\x18\\x38\\xb4\\xaf\\x2d\\xe9\\x0c\\x54\\xa0\\x25\\x8e\\xc4\\x0e\\x83\\xcf\\\n\\x37\\xd2\\x21\\x29\\xe0\\xd9\\x0e\\xc1\\x85\\xff\\x00\\xe9\\xf3\\x5f\\x5e\\xda\\\n\\x8d\\xbc\\xb0\\x00\\x27\\xd6\\x0b\\x6f\\xf6\\x16\\x4e\\x2f\\x7f\\xaf\\x9f\\x8b\\\n\\x70\\x79\\xdb\\x5c\\x7f\\xb7\\x6c\\x6b\\xd4\\x78\\xb8\\xd9\\x9d\\x89\\x08\\x64\\\n\\xad\\x86\\x25\\x1b\\x7c\\x01\\x82\\xd1\\x6a\\x87\\x4b\\xed\\xd7\\xde\\x1b\\xf3\\\n\\xae\\xa4\\x01\\xbd\\xe2\\x26\\x46\\x81\\x42\\x70\\x36\\x1a\\x9e\\x65\\x16\\x15\\\n\\x22\\xd5\\x01\\xc7\\xe8\\x99\\xe7\\x67\\x3d\\x73\\x7b\\x0b\\x8d\\x6d\\x93\\x50\\\n\\x9d\\xac\\xb4\\x53\\x14\\xec\\x68\\xd6\\xbf\\xc7\\x2d\\x5f\\xe2\\xe0\\xad\\x84\\\n\\xf6\\x59\\x6e\\xa8\\x13\\x32\\xc7\\xeb\\xf8\\xa3\\x5b\\x9f\\xc0\\xe2\\x95\\x9b\\\n\\x72\\x60\\x82\\xad\\x6d\\x35\\xb6\\x13\\x11\\x2d\\x4d\\xeb\\x3c\\x8f\\xe2\\xe0\\\n\\x38\\x8c\\x75\\x57\\xbd\\xa3\\xb2\\x27\\x63\\x67\\x81\\x52\\xaa\\x37\\x8a\\x48\\\n\\x08\\xe0\\x26\\xb4\\x5a\\x90\\x41\\x07\\xd9\\x49\\xa5\\x1a\\xa5\\x10\\xf6\\x71\\\n\\x9c\\x7b\\x54\\xbe\\x8b\\x2e\\xe7\\x75\\x52\\x18\\xcd\\xfc\\x61\\x86\\xc6\\x6e\\\n\\x4b\\x09\\x85\\x91\\xf6\\x4f\\xc6\\x0b\\x7d\\x25\\x7a\\xee\\xe4\\x59\\x38\\x75\\\n\\xc6\\xb6\\x31\\x06\\x86\\xb8\\xf3\\xea\\x2a\\x20\\x0a\\x35\\x1a\\x51\\x3f\\xae\\\n\\xfd\\x4b\\x7a\\x35\\x37\\x50\\x22\\xa7\\x06\\x72\\x88\\x08\\x93\\x9d\\x9c\\x6d\\\n\\x16\\xcc\\x53\\x79\\x0d\\x73\\x94\\x36\\x88\\xeb\\x18\\x8f\\xee\\xe9\\x77\\x2d\\\n\\xfc\\xcc\\xb4\\x70\\x0b\\x76\\x35\\x7b\\xb3\\x37\\x79\\x3c\\xd6\\x7e\\xbb\\x54\\\n\\x73\\x43\\x4a\\x0a\\xbd\\x2a\\xb5\\xe2\\x3e\\x0d\\x7b\\x53\\x85\\x3c\\x1f\\x9d\\\n\\x50\\xa2\\xfb\\x3e\\xba\\xc7\\x37\\x7e\\x6a\\xaa\\xc6\\x03\\x8a\\xe9\\x6c\\xad\\\n\\xe7\\x5d\\x0d\\x4e\\xad\\x08\\x77\\x84\\x58\\x9e\\xfe\\xd1\\x15\\xd8\\x23\\xc6\\\n\\xb5\\xf4\\xed\\x26\\x0f\\x51\\x19\\x2f\\x9c\\x3a\\x58\\x51\\x6a\\x56\\x38\\x71\\\n\\xc4\\x89\\x30\\x58\\xe5\\x59\\x4b\\xfb\\x95\\x4a\\x7c\\x18\\x5c\\x26\\xb1\\x2f\\\n\\x7a\\x72\\x66\\xd6\\xe4\\x8a\\xb6\\x1e\\x37\\x8d\\x9d\\x5e\\x22\\xa1\\x0c\\x12\\\n\\x6f\\x9c\\x42\\x0b\\xb1\\x1c\\xd2\\x1a\\xeb\\x8e\\xb2\\x08\\xa4\\x16\\x93\\xe1\\\n\\x66\\x77\\x74\\xff\\x00\\x57\\x1f\\x6e\\xa0\\xba\\x4d\\xad\\x34\\x61\\x61\\xcd\\\n\\x83\\x72\\x03\\x84\\x6a\\xa3\\x13\\xf1\\xf7\\x29\\x66\\x2c\\x75\\xf2\\x33\\x68\\\n\\x80\\xe7\\xfa\\x70\\x86\\x10\\xb8\\xf8\\x16\\x79\\x3e\\x9d\\xd5\\x28\\x1d\\x4e\\\n\\xdd\\x6b\\x03\\x75\\x49\\x33\\xf7\\x54\\x23\\x4e\\x87\\xd5\\x4c\\xa1\\xc9\\x41\\\n\\x96\\x78\\xe6\\x77\\xf7\\x77\\x2d\\x91\\xb0\\xee\\x89\\xa1\\x61\\xfd\\xd6\\x6e\\\n\\xb6\\x75\\x4a\\x36\\xb3\\xab\\x31\\x84\\x88\\xba\\x47\\x53\\xda\\xc9\\x57\\xe7\\\n\\x25\\x31\\x61\\xe0\\xa0\\x66\\xf4\\x48\\x5e\\x84\\xeb\\xc2\\xaf\\xe3\\xeb\\xc4\\\n\\x7e\\xae\\xf7\\xc9\\x91\\xc8\\xd7\\xd6\\x7a\\x47\\x51\\x88\\x83\\x8c\\x3d\\x0b\\\n\\xa0\\xf5\\xed\\xf1\\x5d\\xb6\\x40\\xb2\\x76\\xd7\\xf0\\x32\\x6f\\xca\\xda\\x16\\\n\\xce\\xd3\\x25\\xb6\\x54\\x3a\\xe5\\x8b\\x11\\x8e\\x10\\x0b\\xcd\\xb6\\x55\\xd6\\\n\\x76\\xf8\\x0b\\x39\\x81\\xc1\\x94\\x25\\xa9\\x5b\\x1a\\x95\\x7f\\xb5\\x34\\xd1\\\n\\xf1\\x52\\x18\\x95\\x18\\x29\\x5e\\x10\\xb3\\x31\\x73\\xcd\\x66\\x2d\\x3e\\x43\\\n\\xac\\x5a\\x74\\x36\\xf3\\xf2\\x2d\\xf8\\xf6\\x81\\x61\\x45\\x48\\x4f\\x75\\x99\\\n\\xa5\\x63\\x78\\x76\\x08\\xf0\\x7b\\x2a\\xfa\\xfc\\x66\\xd4\\x28\\x85\\x1f\\x02\\\n\\xd7\\x7c\\x59\\xc7\\x65\\xc2\\xed\\x76\\x5b\\xa6\\x26\\xc8\\xc6\\x7b\\x59\\xd7\\\n\\x1e\\xab\\x03\\xa2\\x8c\\xd0\\xb5\\xad\\x09\\x4e\\x37\\xff\\x00\\x16\\x18\\x60\\\n\\x06\\xe6\\xb7\\x6f\\x8e\\xa6\\x9e\\x77\\x63\\xcc\\xd5\\xcf\\x82\\x13\\x51\\x9e\\\n\\xe0\\x6b\\xad\\xd6\\xba\\xf0\\x6e\\x86\\x0f\\x69\\x4d\\xf6\\x35\\x70\\x15\\xec\\\n\\x3a\\xd1\\xb6\\x0a\\x61\\x8b\\xab\\xf4\\x74\\x2f\\x9d\\xba\\xd8\\x71\\xd0\\x47\\\n\\x6a\\x4a\\x4d\\x62\\xae\\x1a\\xb5\\xa5\\x37\\x78\\xc9\\x6c\\x86\\xb9\\x2d\\x48\\\n\\x79\\xd5\\x32\\x43\\xa2\\xf7\\x76\\xec\\x0d\\x68\\xf6\\x24\\x3e\\xa7\\x62\\x3e\\\n\\xaa\\x56\\xa0\\x4d\\xd9\\xf3\\xb3\\x73\\xb4\\x3b\\x33\\x6d\\xa7\\x04\\x35\\x20\\\n\\xba\\x7e\\x39\\xce\\x1a\\xc3\\x25\\x02\\x56\\x0d\\x51\\x15\\x96\\x75\\x56\\x3e\\\n\\x73\\x3a\\xdd\\xa6\\x51\\x43\\x55\\xa3\\x84\\xd5\\xd1\\x28\\xac\\xa2\\x56\\xec\\\n\\x60\\x63\\x2b\\x33\\xae\\x5f\\x40\\xe0\\x35\\xa5\\x70\\x93\\x93\\x99\\xaf\\x6a\\\n\\x6d\\x14\\xc3\\xb7\\x5d\\x57\\xf6\\xd4\\xce\\xeb\\x89\\xa0\\x2a\\xe2\\x86\\x91\\\n\\x29\\x79\\xdd\\x66\\x45\\x47\\x29\\x5f\\x9e\\x7d\\x51\\x5e\\xb6\\x44\\x3c\\xfa\\\n\\x74\\x88\\xd0\\x75\\x1c\\x80\\xe9\\xea\\x0f\\xb3\\x6b\\x74\\xd5\\x4d\\x39\\x64\\\n\\x5a\\xd6\\x6d\\xa0\\x9a\\x8c\\x55\\xbb\\x4d\\xb7\\x42\\xef\\x5d\\x22\\x9f\\x91\\\n\\xa8\\xca\\x9a\\xdd\\xc9\\x6c\\xec\\xad\\x4e\\xe9\\x7d\\x46\\x70\\x45\\x19\\xf4\\\n\\x4c\\x9e\\x4e\\x3d\\xb5\\x2c\\x9a\\x99\\x67\\x2d\\x22\\xc4\\x5c\\xa2\\xd3\\x19\\\n\\xd6\\xf3\\x9f\\x57\\xd4\\xfd\\x91\\xff\\x00\\x27\\xa7\\x6d\\x60\\x23\\x9a\\x0c\\\n\\x5c\\xce\\xb4\\xea\\x4c\\x57\\xb3\\x88\\x8d\\xdf\\xd3\\x51\\xdb\\x27\\x10\\x73\\\n\\x3a\\xb7\\xfa\\x49\\x75\\x8e\\xb6\\x67\\x9f\\xf2\\xfa\\xc2\\xd0\\x2a\\x27\\x96\\\n\\x14\\xcb\\x4d\\x57\\x59\\xcd\\x8d\\x0b\\x9f\\x3f\\x4f\\x6b\\x4b\\x40\\x45\\x5b\\\n\\x3b\\x19\\x89\\x16\\xc0\\x87\\x85\\x9e\\xd2\\xca\\xb0\\x55\\x40\\xb7\\x4f\\xcd\\\n\\xd9\\x05\\xb5\\x4c\\xae\\x76\\x58\\xad\\x20\\x4a\\x2f\\x41\\x7c\\x40\\xff\\x00\\\n\\xd3\\x8e\\xfc\\x9a\\xd6\\x44\\x33\\x01\\xd3\\xb6\\x80\\x4d\\xd8\\x2d\\x79\\xd0\\\n\\x1d\\x3f\\x44\\x88\\x64\\xac\\x15\\x7c\\xcf\\x4f\\x3a\\xfe\\x93\\x1d\\x7d\\xbe\\\n\\xd5\\x8e\\x95\\xdb\\xb2\\x4c\\x1f\\x61\\x4c\\xb2\\x7d\\x4a\\x8e\\x62\\xd6\\xc9\\\n\\xaf\\xca\\xb8\\xb9\\xf1\\x71\\x7a\\xad\\xc8\\xf8\\xf1\\x80\\xf8\\xdb\\x6a\\xb2\\\n\\xb8\\x3f\\xcc\\xb2\\x41\\x72\\xf6\\x4c\\x4a\\x2b\\x95\\xb9\\x95\\xb7\\x7d\\xee\\\n\\xd3\\x4c\\xfe\\x69\\x6a\\x34\\xd5\\xd0\\x1d\\x3a\\xea\\x1f\\x8b\\x9d\\x39\\xf1\\\n\\x33\\xad\\x76\\x2c\\xda\\xde\\xd9\\xd8\\x86\\x22\\x99\\xe5\\xbc\\xa9\\x1d\\x43\\\n\\x15\\xdb\\xf6\\x2e\\xb5\\xab\\xa4\\xef\\x5a\\xe8\\xe3\\xce\\x2f\\xd5\\xf4\\xb6\\\n\\x11\\x96\\xb7\\xca\\xca\\xa8\\xf5\\x17\\x4e\\xb6\\x1b\\x78\\x69\\x3b\\x4d\\x14\\\n\\x1f\\xca\\x36\\x49\\x4c\\xff\\x00\\x3c\\xc8\\xaa\\x50\\x8c\\x39\\x7a\\x56\\x96\\\n\\x3e\\xcf\\x75\\xc6\\xc4\\x3b\\xb2\\x07\\xf6\\x12\\x1f\\xbc\\xbd\\x97\\x7c\\x38\\\n\\x79\\xc0\\xee\\x1b\\x6e\\x35\\xd3\\x11\\x81\\xa3\\xaa\\x6b\\x92\\x74\\xb4\\x33\\\n\\xf1\\x79\\xd9\\xbb\\x6f\\xed\\xed\\x9d\\x75\\xd9\\x56\\xf1\\x0b\\x40\\xec\\x57\\\n\\x6f\\xd6\\x33\\x50\\xc1\\x08\\xd8\\xcd\\xd2\\x64\\x9a\\xd8\\xf8\\xc5\\xca\\xdb\\\n\\x1e\\x92\\xaf\\xa9\\x9e\\xc4\\x0b\\x33\\x3c\\x36\\x8f\\xa1\\x7a\\x2a\\x14\\x44\\\n\\x28\\xdd\\x40\\x9d\\x6c\\xed\\x85\\xb8\\x2d\\xa0\\x60\\x68\\xe7\\xb5\\x42\\xad\\\n\\x26\\x9b\\x0f\\x1b\\x59\\xe4\\x17\\x17\\xd5\\xa0\\x67\\x96\\x56\\x6b\\xc5\\x8b\\\n\\xfd\\x65\\x57\\x16\\x73\\xc6\\xa1\\x28\\x5c\\x45\\x50\\x5b\\xcc\\xf5\\x05\\x09\\\n\\x32\\xc8\\x6b\\x3c\\x55\\x9a\\x1e\\x97\\x19\\x09\\xcd\\xb9\\xbd\\xd5\\xb7\\xf4\\\n\\x22\\xf9\\x59\\x27\\xb7\\x5e\\x45\\x75\\x34\\x6c\\x9d\\x8c\\x44\\x15\\x12\\xf4\\\n\\xd8\\xc0\\x26\\xd7\\x3f\\x16\\x9e\\x56\\xc7\\xc6\\x17\\x8a\\xbe\\x9a\\xcd\\x74\\\n\\x95\\x19\\x6b\\x50\\xfd\\x73\\xa4\\x4f\\x0a\\xa8\\x4a\\x9d\\xd1\\x56\\xb5\\x13\\\n\\x22\\x1f\\x17\\xbd\\xa8\\x4c\\x69\\x2d\\x34\\x07\\x69\\x8b\\x7f\\xde\\x34\\x00\\\n\\x32\\x81\\x53\\x7e\\x93\\x4b\\xb8\\xed\\x01\\x70\\x0b\\x44\\x12\\x86\\x87\\xde\\\n\\xd1\\x07\\xfd\\x3e\\xdd\\x7a\\xcf\\x64\\xb0\\xc9\\x36\\x76\\x4f\\xd7\\x40\\x74\\\n\\x59\\xd2\\x05\\x3a\\x90\\x74\\xc8\\xee\\x8d\\xd7\\xa2\\xac\\x5c\\xb2\\x5c\\x20\\\n\\x3d\\xcb\\xfe\\x3a\\x4d\\x9b\\xf6\\x1e\\xa1\\xb5\\xd7\\x93\\xea\\x59\\x7a\\x5b\\\n\\x02\\xae\\x42\\xab\\x58\\xf9\\x19\\x37\\xa4\\xf5\\x6b\\x69\\xcf\\xf8\\x46\\x2b\\\n\\xf9\\xfb\\xd8\\xcc\\xf5\\x63\\x57\\x6d\\x96\\xc7\\x5f\\xbb\\x71\\xb3\\x78\\x52\\\n\\xd6\\x62\\x29\\x3d\\x0f\\x28\\x68\\xe3\\x77\\x2c\\xbd\\x1c\\xd2\\xcb\\xa9\\x7a\\\n\\xf2\\xf3\\xad\\xa0\\xff\\x00\\x61\\x9a\\x9b\\x36\\x69\\x6a\\x70\\x8b\\x50\\x49\\\n\\x7c\\xff\\x00\\x6f\\xb3\\x9f\\x43\\x01\\x05\\x87\\x40\\x52\\x07\\x7a\\xe5\\xfc\\\n\\x0b\\xe9\\x32\\xbb\\x24\\x4b\\xd6\\x1d\\x4e\\xc7\\x4c\\xa5\\x76\\x3b\\x6f\\x61\\\n\\x66\\x8d\\xea\\xe8\\x82\\xb8\\x7f\\x94\\x8d\\x96\\xbf\\x6d\\xed\\x08\\xb8\\xb6\\\n\\xdd\\x69\\x07\\xcd\\x3d\\x2d\\x79\\xf5\\x23\\xd4\\x30\\xbd\\x7a\\x9c\\x98\\x58\\\n\\xe4\\x01\\x0c\\x28\\xeb\\xca\\x35\\x4e\\x75\\xe8\\xac\\x2e\\x6f\\x2a\\x53\\x40\\\n\\xbf\\x01\\xbb\\x24\\x23\\x3a\\xaf\\x15\\x5c\\xae\\xaf\\x49\\x54\\xad\\x1e\\x41\\\n\\x1f\\x65\\x86\\x84\\x3f\\x58\\x05\\xf6\\xc7\\x57\\x32\\x5d\\x61\\x6d\\x0d\\x1e\\\n\\xe0\\x8a\\x34\\x73\\xb7\\xb8\\xd1\\x2b\\xa7\\x2d\\x5f\\x70\\xa8\\x1e\\xe8\\xad\\\n\\xea\\x85\\x93\\x81\\xd7\\x44\\xbf\\x59\\x18\\x45\\xd7\\xed\\xad\\x7f\\xd9\\x87\\\n\\xac\\x81\\x54\\x63\\x5d\\xa2\\x51\\x76\\x56\\xf7\\xd5\\x25\\xfd\\x23\\x8b\\x18\\\n\\x5c\\xa3\\x73\\x23\\xd2\\xd8\\xc5\\x2d\\x36\\x02\\xef\\x65\\x69\\x5e\\xdb\\x7a\\\n\\x32\\x46\\x18\\x64\\x99\\x6a\\x24\\xec\\xdf\\x1d\\x20\\xd3\\xf5\\x49\\x48\\xe3\\\n\\xac\\x64\\x16\\xce\\xf5\\x70\\x9e\\x8d\\x75\\x87\\xff\\x00\\x5f\\x5c\\x5d\\x30\\\n\\xf1\\xc6\\x4d\\x18\\xd3\\xa2\\xdb\\x86\\x7f\\x29\\xce\\xd1\\xa0\\x00\\x35\\xd4\\\n\\xb0\\x42\\x7c\\x67\\x73\\x71\\xa9\\x4b\\xe9\\x6c\\xe9\\x1e\\x08\\xd4\\x3b\\xae\\\n\\xe7\\xe3\\xce\\xb8\\xf0\\x76\\x55\\x4f\\x84\\x5a\\x87\\xa2\\xf1\\xfe\\xb7\\xd0\\\n\\xab\\x82\\x75\\x97\\x80\\xb3\\x82\\xf7\\x84\\xe1\\x98\\xb6\\xee\\x5d\\x88\\x84\\\n\\xf8\\x4d\\xd6\\x3d\\xe1\\xb4\\x9a\\xbe\\x87\\x4c\\x28\\x92\\xeb\\xc4\\xec\\xa9\\\n\\x33\\xa3\\x6e\\xc3\\xaf\\xf4\\x15\\x57\\x43\\x49\\x51\\x89\\x96\\x8d\\x4e\\x97\\\n\\xba\\x09\\xd2\\xea\\xf3\\xff\\x00\\x01\\xbf\\xed\\xcd\\xa9\\xa0\\x57\\x11\\x64\\\n\\x8c\\xee\\x32\\x00\\x89\\x4f\\x13\\x1d\\x1b\\xfd\\xd5\\xda\\xad\\x68\\xb9\\xb6\\\n\\x59\\x69\\xc8\\xad\\x63\\x8d\\x3d\\x6b\\x4c\\xde\\x6d\\x02\\x14\\x96\\x43\\xe2\\\n\\x30\\xf6\\x34\\x3d\\xd7\\xe9\\xd4\\x6b\\xd5\\x58\\xf3\\xbf\\x61\\x37\\xb6\\xb8\\\n\\x0e\\x48\\xb8\\xcc\\x4b\\x77\\xcd\\x22\\x69\\x05\\x97\\x14\\xf1\\x8b\\xd2\\x6a\\\n\\x28\\x99\\xe5\\xa7\\xd1\\x6e\\xd9\\xd9\\x7b\\x09\\x75\\x58\\xeb\\xb9\\xe8\\x63\\\n\\x60\\x68\\xed\\x21\\x47\\xb7\\x16\\xcb\\x0e\\x47\\xe4\\x02\\x18\\x79\\xac\\xa7\\\n\\x44\\x31\\x1c\\x61\\x66\\xf5\\x3b\\xbe\\x52\\x7c\\xc1\\xef\\xb9\\x6e\\x90\\x7a\\\n\\x48\\xd0\\x43\\x81\\x1e\\xb2\\x98\\xad\\x39\\xdb\\x8c\\x3d\\x81\\xe7\\x60\\x66\\\n\\xf5\\xe4\\xc8\\x93\\x4d\\x33\\xb9\\x67\\xba\\x86\\xeb\\x4c\\x69\\xf8\\xc7\\xd9\\\n\\x06\\xe7\\x94\\xab\\x95\\xd6\\xb6\\xf9\\xd9\\x52\\xec\\x24\\x1f\\xe3\\xad\\x57\\\n\\x34\\x32\\x43\\x1f\\xd1\\xa5\\xe6\\x87\\xf6\\x0e\\xc0\\xb9\\xf7\\xd9\\xd3\\x3a\\\n\\xa6\\xb5\\x46\\x94\\x92\\xbd\\xad\\x83\\xe4\\x28\\x9b\\xd0\\x5e\\x67\\x64\\xe6\\\n\\x6d\\xb1\\x9b\\x29\\x0b\\x03\\x17\\xa9\\xd6\\x2f\\xd9\\xf6\\xa8\\xa4\\xc2\\xc4\\\n\\x34\\x7e\\xbb\\xd9\\x3f\\xe3\\xfb\\xb4\\x27\\x53\\xc8\\x67\\x35\\xbe\\xb4\\x49\\\n\\x2e\\x71\\x66\\x39\\xd8\\x43\\xe4\\xa2\\x88\\x80\\x62\\xbe\\x4d\\x7e\\x71\\xa8\\\n\\x25\\x74\\x88\\xf8\\x53\\x29\\x26\\xa5\\xcf\\xd3\\x1a\\x54\\x23\\x25\\x1f\\x3d\\\n\\x24\\xb5\\x44\\x9d\\x8b\\xca\\x54\\x54\\x10\\xbe\\x2d\\x4d\\x00\\xc4\\x22\\x01\\\n\\x88\\x75\\x36\\xc8\\x63\\x8e\\xcc\\xb0\\x6c\\x89\\xa5\\x6d\\xa2\\x25\\x41\\x62\\\n\\x5f\\xf9\\x83\\xc4\\x57\\x34\\x99\\x05\\x33\\xd5\\x02\\x70\\xd6\\x46\\xd6\\xd3\\\n\\xed\\xfe\\x37\\x6c\\x65\\xde\\xc1\\xd1\\x5a\\xcb\\xf5\\xfe\\xcc\\x71\\x3d\\xd5\\\n\\x35\\xa1\\xb5\\x3f\\x1c\\xb9\\x7a\\xc7\\x58\\xae\\x70\\xb2\\x54\\x9a\\x8a\\xb9\\\n\\x09\\x32\\x67\\x31\\x54\\x2e\\x68\\x56\\x51\\x20\\x85\\xd5\\x15\\x5b\\xde\\xc9\\\n\\xb9\\x94\\x9a\\x17\\xea\\xe1\\x51\\x1f\\x9d\\x4d\\x4f\\xd6\\x8d\\xbd\\x2d\\x93\\\n\\xd7\\xef\\x81\\x1d\\x1e\\xec\\x75\\xb3\\xb1\\x3a\\x77\\x5b\\xa7\\xd5\\xd7\\xd1\\\n\\x5c\\xbc\\xc1\\xb3\\x4c\\xdb\\xee\\x5a\\x93\\x8f\\xda\\xcd\\x9b\\x16\\x22\\xcc\\\n\\x43\\x7e\\xb1\\x9f\\xd6\\x19\\x61\\xb4\\x6a\\xa5\\x61\\x3a\\x1d\\x6d\\x0e\\xac\\\n\\x2d\\x83\\x83\\xa0\\x48\\x4c\\x5e\\xbe\\x26\\xd0\\xea\\xbd\\x71\\x0c\\xa5\\xd7\\\n\\x40\\x7f\\x5f\\xbe\\x60\\xec\\x5b\\x4b\\x33\\x4b\\xd5\\x57\\x37\\x09\\x24\\x5f\\\n\\x56\\xc3\\xbf\\x4e\\xd2\\xfb\\x6e\\x75\\x80\\x58\\x19\\x16\\x1c\\xf3\\x5e\\xbe\\\n\\xc1\\x1a\\x64\\x62\\xf3\\x6e\\xa6\\xd5\\x05\\xe0\\x08\\x41\\x0e\\x26\\x6a\\x78\\\n\\xe1\\xc9\\x30\\x6e\\xbc\\x9d\\x35\\xda\\xec\\x39\\x6b\\x65\\x0a\\xf1\\x13\\xc1\\\n\\x53\\xfd\\x80\\xf9\\xb1\\x34\\x15\\xaf\\xeb\\x14\\xb4\\x97\\x09\\x34\\xee\\x3b\\\n\\xc2\\x4b\\xf0\\x19\\xa1\\xd8\\x6e\\x31\\x45\\xe5\\x7e\\xba\\x94\\x70\\xbd\\x69\\\n\\x4f\\x5f\\xeb\\xcc\\xa5\\xc4\\x6d\\x45\\xf8\\x0d\\x5f\\xe0\\x45\\x5e\\x2c\\x66\\\n\\x16\\xb7\\x19\\x14\\x16\\x2f\\x75\\x92\\x9f\\x4b\\x3c\\xbe\\x6a\\x05\\x5d\\x6f\\\n\\xaa\\xaa\\x77\\x27\\xa7\\x9e\\xaa\\x12\\xe7\\x8a\\x8e\\x0e\\x11\\x1b\\x84\\x0b\\\n\\x74\\x20\\xf3\\xb3\\x80\\x9b\\xb4\\x45\\x35\\xd9\\x51\\xb6\\x9f\\xd4\\xeb\\x5a\\\n\\xc7\\x53\\x2f\\xf1\\xdd\\x45\\xa9\\xdf\\x50\\xa3\\xcf\\xe6\\x3d\\xb3\\xb0\\x04\\\n\\x3a\\x7e\\x62\\x3c\\x3b\\x79\\xeb\\x5c\\xac\\xae\\xc0\\x02\\xb1\\x05\\x02\\xd5\\\n\\x22\\xd8\\x79\\xd7\\x86\\x35\\xd4\\x2d\\x01\\xc3\\xf6\\x57\\x0f\\xdb\\x81\\x42\\\n\\x67\\x33\\xea\\x68\\xb4\\x8c\\xc2\\xe8\\x13\\x40\\x81\\x7a\\xd0\\x43\\x49\\x6b\\\n\\xe6\\xae\\x48\\xf4\\xe9\\x33\\xba\\x1c\\xad\\x0a\\xee\\xe4\\x67\\xa6\\xfa\\xb9\\\n\\x67\\x82\\x75\\x48\\xfa\\x2d\\x75\\x8d\\x19\\x6c\\x25\\xb7\\xf0\\xe0\\x62\\xd0\\\n\\xe8\\x2b\\xc2\\xe5\\x5f\\xc4\\xab\\x90\\x3c\\x26\\x49\\x97\\x76\\xec\\xfb\\x56\\\n\\xd0\\xac\\xf8\\xe3\\xb8\\xe2\\x0d\\xf6\\x16\\xbe\\xf6\\xa4\\x45\\x88\\x52\\xe5\\\n\\x07\\x3b\\x3c\\xda\\x1e\\xb5\\xdf\\xdd\\x0f\\x92\\x7b\\xe5\\x08\\x40\\x50\\xa4\\\n\\x17\\xdd\\xfb\\x45\\x5a\\x9f\\xad\\xc9\\x4e\\xf5\\x3d\\xd8\\x5c\\x68\\xa9\\xfa\\\n\\x02\\xb8\\xd8\\xfa\\xe2\\x65\\x10\\x30\\xd6\\xac\\x3b\\xf5\\xb2\\xf3\\x47\\x32\\\n\\xd4\\x38\\xc2\\x9e\\xa1\\x39\\x46\\xb8\\xd9\\x47\\x40\\xc6\\xad\\x2a\\x28\\x81\\\n\\x5a\\xbd\\x78\\x5e\\x46\\x23\\x0c\\xd6\\xcb\\x21\\x60\\x90\\xd1\\x3e\\xc6\\xa8\\\n\\x28\\x5c\\x73\\xf1\\x4d\\x77\\x15\\x18\\xd9\\x21\\x7b\\x2b\\xda\\x23\\x25\\x74\\\n\\x74\\x04\\xe2\\xbc\\xc7\\x0d\\xc7\\xae\\x1c\\x70\\x5b\\x31\\xa7\\x18\\x86\\x7d\\\n\\x9d\\xa6\\xcb\\xee\\x8f\\x53\\x2d\\xae\\xa1\\xa2\\x76\\x96\\xfd\\x8d\\xe7\\x6a\\\n\\xb7\\xbe\\x49\\xfa\\xd4\\x34\\xeb\\x8d\\xf5\\xe2\\x9c\\x20\\xea\\x9d\\x6f\\x46\\\n\\xfa\\x50\\xa6\\x90\\xc3\\xb8\\xba\\xd5\\x6c\\xab\\xf0\\xeb\\x0d\\x51\\x7e\\xf7\\\n\\xd5\\xdc\\xfb\\x16\\xf8\\xf1\\xb4\\x74\\x2e\\x26\\x95\\x02\\xf7\\x66\\x33\\xba\\\n\\x7a\\xdb\\x8d\\x23\\xd3\\xf0\\xfc\\x37\\xf1\\x11\\xcd\\x63\\xa8\\x33\\xe8\\xa7\\\n\\xda\\x9e\\x18\\x95\\xa0\\xf4\\xd8\\x9f\\x3b\\x2a\\xec\\x72\\x6c\\x49\\x8a\\x7a\\\n\\xaa\\x13\\x02\\x17\\x33\\x23\\x9b\\xf2\\xdf\\x15\\xa2\\x01\\x73\\x41\\x8c\\xe4\\\n\\x11\\xc0\\xe7\\x6e\\x37\\xd8\\xcd\\x0b\\xe1\\x9a\\x98\\x05\\x51\\xfc\\xbc\\xc2\\\n\\xd7\\x44\\x5d\\x65\\x76\\x57\\xd6\\x4d\\x0d\\x69\\xd4\\xf4\\x0d\\x83\\x32\\xf5\\\n\\x44\\x3e\\xc5\\xd8\\xb6\\x5b\\x5a\\xe3\\x4c\\x81\\x75\\x82\\x5c\\xab\\x0d\\x8a\\\n\\x5c\\xc6\\xf4\\xdc\\xd3\\xe9\\x22\\x7f\\xb2\\x3e\\xc6\\x6b\\x01\\x00\\xac\\xc9\\\n\\xc1\\x1a\\x1a\\xab\\x70\\x1b\\x09\\x32\\xd2\\xfa\\xc0\\xf2\\x35\\x17\\xfb\\xcb\\\n\\xd2\\x19\\x9a\\x91\\x9f\\xb7\\x4d\\x4f\\xb2\\xea\\xf9\\x1a\\x67\\xa6\\xd5\\x8a\\\n\\xcb\\xd9\\x6a\\x09\\x00\\x6e\\x27\\x24\\xcb\\xd2\\x59\\x89\\x7a\\xd8\\xb6\\xad\\\n\\xdb\\x08\\xd5\\x2e\\xe6\\xca\\x32\\xda\\xd9\\x6c\\x30\\x8e\\xbf\\x4f\\xc6\\x6c\\\n\\x45\\xe9\\xf9\\x18\\x79\\x99\\x89\\xe7\\xe8\\x3b\\x3d\\x77\\x2d\\x65\\xf7\\x73\\\n\\x97\\x70\\x22\\xec\\xc6\\x5a\\x18\\x41\\xe8\\x53\\xae\\x75\\xad\\xea\\x10\\x7d\\\n\\x31\\x4e\\xa7\\xd7\\xf1\\x76\\xeb\\x35\\x21\\xe1\\x96\\xab\\xd7\\x52\\x37\\x63\\\n\\xd2\\x4d\\x97\\x16\\x4f\\xad\\x2e\\x3a\\x69\\x5e\\x3d\\x7f\\x72\\x07\\x9d\\x9c\\\n\\x4d\\x11\\xb2\\x2c\\xf6\\xdc\\x8c\\xa1\\xfc\\x3b\\x57\\xa0\\x91\\x2d\\x5b\\xc5\\\n\\x90\\xfb\\x4a\\xa8\\xee\\x29\\xd9\\x20\\xe1\\xd2\\x68\\xfd\\x86\\x68\\x6a\\xc0\\\n\\x5b\\x20\\xf4\\x5d\\x71\\x63\\xaa\\x50\\x76\\x19\\xce\\x49\\x70\\x6b\\xea\\x13\\\n\\x54\\xd7\\x43\\x38\\xc5\\x4d\\xee\\x20\\x41\\xec\\xe2\\x60\\xf9\\x33\\x6c\\x7e\\\n\\xc1\\xd8\\xb2\\xb5\\x32\\xfb\\xbd\\xf5\\x28\\xdd\\x96\\x52\\xcb\\x76\\x00\\x1e\\\n\\xb9\\xaf\\x1d\\xa5\\x1f\\xad\\xe9\\x7a\\x3c\\x05\\xe8\\xa8\\xab\\x14\\x9b\\xf3\\\n\\xcf\\xce\\x42\\xaf\\xd7\\xac\\xc5\\x67\\x8f\\xb4\\xbe\\x64\\x95\\xf5\\x6a\\xe4\\\n\\x65\\x65\\xbd\\x41\\x50\\x22\\x15\\x6a\\xe9\\x2c\\x01\\x19\\x50\\xf6\\xbb\\x92\\\n\\x88\\xf5\\x5d\\x52\\xae\\x5c\\xa6\\x9b\\xd4\\x55\\x40\\xfb\\xd4\\x5c\\x1f\\x35\\\n\\x4e\\x95\\x35\\x13\\x7e\\xe1\\xa4\\x76\\x4b\\x17\\x45\\xb3\\xb6\\x1b\\x3e\\xb2\\\n\\x90\\x55\\x1a\\x6f\\xd7\\x47\\xda\\x29\\xf5\\x35\\x2d\\x4c\\xe5\\xbc\\x93\\x98\\\n\\xa9\\x18\\x4c\\xc6\\x1b\\x09\\x37\\x8c\\xbd\\x21\\x92\\xc3\\x73\\x98\\xf5\\xf3\\\n\\xd9\\xd5\\x09\\xbb\\x2d\\x89\\x89\\xfa\\xf5\\x7f\\xe0\\x12\\xce\\x1e\\x08\\x94\\\n\\xb3\\x02\\x05\\xf5\\x05\\xf4\\x2f\\xf3\\x54\\xd0\\xf6\\x97\\x31\\x64\\x33\\x26\\\n\\xc2\\x5e\\xb5\\xa6\\xb3\\x8c\\xbc\\xc6\\x65\\xe8\\x65\\x9c\\xbd\\xbe\\x53\\x3d\\\n\\x4d\\x13\\xa6\\x13\\x03\\x61\\xc3\\x35\\xa7\\x39\\xe7\\x1f\\x3e\\xb1\\xac\\x31\\\n\\x75\\xe5\\x8d\\x9e\\xc5\\x47\\xa6\\xd8\\x3a\\xf2\\xe9\\x12\\x2c\\x22\\x23\\x6f\\\n\\x5b\\xc3\\xd0\\xca\\x71\\x73\\x06\\x4a\\xb5\\x19\\x01\\x33\\x92\\x36\\xe2\\x28\\\n\\xae\\x23\\x91\\x7e\\xa0\\x9e\\xd6\\x73\\xb5\\x47\\x76\\x3e\\xde\\x7b\\x8a\\x9a\\\n\\x8f\\xd2\\xd6\\x09\\x81\\x0c\\xeb\\xb8\\xc8\\x43\\xcd\\x2e\\xdf\\x9e\\x0e\\x62\\\n\\x77\\xec\\x93\\x16\\xdf\\x93\\xfa\\xdc\\x41\\x3f\\x26\\xe6\\x36\\x4b\\xb2\\xf3\\\n\\xec\\xe7\\x2d\\x8b\\xf7\\x71\\x28\\x7b\\xb6\\xe8\\x42\\xbb\\x14\\xa4\\x79\\x0e\\\n\\xcc\\x86\\x75\\x3e\\x34\\x44\\x1c\\x82\\x65\\xa2\\x4d\\x6b\\x17\\x99\\x57\\xbf\\\n\\xad\\xf7\\x71\\x6b\\xc5\\x9c\\xad\\xaa\\xab\\x31\\xaa\\x38\\xfd\\x68\\x97\\x12\\\n\\x02\\xb4\\xba\\x1a\\x39\\x62\\xba\\x21\\x46\\x8b\\x00\\x51\\x89\\x35\\xad\\xc1\\\n\\x40\\x39\\x9c\\xd2\\xc2\\x01\\x54\\x12\\xc2\\x7f\\xec\\x4f\\x14\\x54\\x24\\x50\\\n\\x79\\x51\\xa3\\xcb\\x9a\\xcb\\x71\\x77\\x83\\x5e\\x69\\x14\\xcc\\x1b\\xed\\xdc\\\n\\xfc\\x15\\x7d\\xbc\\xba\\xd9\\xe0\\x1b\\x2c\\x8c\\x32\\x1a\\xb1\\x34\\x44\\x23\\\n\\x74\\xac\\xb4\\x06\\x05\\xbb\\x73\\x78\\x61\\x12\\x9f\\x4f\\x44\\x43\\xa5\\x12\\\n\\x3f\\xd5\\x24\\xc5\\x62\\x5d\\xa4\\x5f\\x7d\\xfd\\xc5\\xb3\\xa8\\x4e\\xd8\\x46\\\n\\xed\\xd6\\x1a\\x69\\x6a\\x6a\\xac\\xbb\\x0f\\x59\\xd3\\x20\\x66\\x22\\x47\\x31\\\n\\x6f\\xf6\\x98\\xeb\\xd3\\x8e\\x98\\x71\\x7e\\xa9\\xae\\xa6\\xd4\\xb7\\x92\\x40\\\n\\xbb\\xdb\\x81\\x5c\\xfe\\xa1\\x76\\xda\\x1d\\x33\\x13\\x8d\\x19\\x59\\xff\\x00\\\n\\xd3\\x5f\\x0b\\xb6\\x51\\xf5\\xe7\\xfe\\x3e\\x97\\x63\\x59\\xd2\\x00\\x57\\xae\\\n\\x9b\\x1d\\x17\\x34\\x9b\\xa7\\xd2\\xfc\\x5d\\x78\\x6f\\x1f\\x37\\x1f\\x2a\\x15\\\n\\x1b\\xd0\\xc3\\x11\\xbf\\xa1\\xa0\\xbe\\x6b\\x61\\x7e\\x81\\x15\\x22\\xec\\x02\\\n\\x9c\\x11\\x2d\\x3c\\xd1\\xb2\\xa1\\xa7\\x58\\xef\\xca\\xe4\\x58\\xda\\x29\\x8d\\\n\\x92\\x2f\\x61\\x8c\\x05\\x5a\\x90\\x46\\xc8\\x0e\\x08\\xd2\\xbb\\x19\\xcb\\x2f\\\n\\xae\\x5b\\xfb\\xbd\\x37\\xb3\\x8f\\x0f\\xea\\xfa\\xce\\xa2\\x3a\\x0a\\x18\\xab\\\n\\x7b\\x75\\x9e\\xcf\\xaa\\xe1\\xd3\\x54\\x85\\xa0\\x35\\x58\\x38\\x68\\xcf\\xdf\\\n\\xa1\\x5b\\x6c\\x63\\xb4\\x28\\x16\\xa8\\x0a\\xb8\\x21\\x7c\\xd4\\x96\\xb9\\x8a\\\n\\x17\\x2e\\x80\\x1f\\x8d\\x36\\x98\\xa9\\x09\\x2b\\xaa\\xa0\\x57\\x35\\x96\\x15\\\n\\x36\\x1a\\x39\\x90\\xcd\\x1e\\x83\\xc7\\x3d\\xa5\\x8d\\x2f\\x6e\\x51\\xa1\\x45\\\n\\x5e\\x0b\\xe6\\x1b\\x6c\\xb2\\x36\\xf4\\x1a\\x70\\x13\\xb5\\xb3\\x74\\x2f\\x45\\\n\\x3b\\x16\\x8c\\x89\\x1b\\x0a\\x73\\xfb\\xfb\\x99\\xac\\x75\\x87\\x7b\\xbe\\x9b\\\n\\xa4\\x4c\\x6b\\x1f\\xb0\\x4b\\x4b\\x98\\xec\\x10\\x53\\xf7\\x17\\x75\\x2a\\xbb\\\n\\x47\\x4e\\xe6\\x23\\xe0\\xce\\x5e\\xa7\\xd6\\x5f\\x77\\x10\\xdd\\xab\\xaa\\xe7\\\n\\xf5\\xf7\\x96\\x45\\xa3\\x1c\\x24\\x53\\x3b\\x49\\x96\\xab\\xa4\\x8d\\x04\\x6a\\\n\\x2c\\xc7\\x34\\x23\\xc0\\x79\\x0a\\xe5\\xc4\\xcf\\x55\\x5d\\x5e\\x35\\xa5\\xac\\\n\\x58\\xd1\\xb3\\x36\\x3a\\x3a\\xd3\\x37\\xd0\\xed\\x3a\\x9f\\xa9\\xe8\\x87\\xec\\\n\\x1d\\x85\\x5e\\xc2\\xc7\\x73\\xeb\\x34\\xbf\\xd8\\x7e\\xd3\\xba\\xf6\\x51\\xfb\\\n\\x4a\\xee\\xf6\\xa5\\xd1\\xeb\\x60\\x49\\xdd\\x17\\x7e\\x9b\\x0b\\x27\\x60\\x36\\\n\\x79\\x89\\x33\\x60\\xf4\\xf1\\x15\\x8d\\x71\\x86\\xb3\\x9b\\x34\\x63\\xe7\\x9a\\\n\\x4e\\x90\\x74\\xb6\\xc9\\x4e\\xee\\x83\\x6c\\x1a\\x00\\x5b\\x91\\xb6\\x08\\x75\\\n\\x03\\x3b\\x17\\x09\\x6b\\x69\\xa3\\xcb\\xad\\xa6\\xe1\\x24\\x85\\xcd\\x12\\x0a\\\n\\x1e\\xe5\\x09\\xec\\x1b\\x07\\x5c\\xa1\\x2b\\xb4\\x8b\\x37\\x55\\x56\\xa1\\x10\\\n\\xfa\\x19\\xea\\x3e\\xd6\\x60\\xa2\\xa5\\xa5\\x22\\x94\\x65\\xd6\\xb5\\xa1\\x74\\\n\\xe2\\xbd\\x65\\xc6\\xef\\xff\\x00\\xe2\\x58\\x3a\\x50\\x3b\\x31\\xad\\xb1\\xa7\\\n\\x0d\\x2c\\xf8\\xc6\\xe2\\xc5\\x8b\\x5b\\x67\\x5a\\xaf\\x14\\x5f\\x5c\\x00\\xcc\\\n\\x0f\\x6a\\xd0\\xc2\\xc7\\xea\\x98\\xf9\\xab\\x99\\xec\\xf6\\x74\\x58\\xbb\\x3a\\\n\\x94\\x27\\xdb\\x8b\\xa7\\xfd\\x8d\\x80\\x3a\\xc6\\x38\\x82\\x0d\\x8a\\x76\\x18\\\n\\x24\\x24\\xd8\\x8e\\xfe\\xc5\\xe4\\xad\\x81\\x65\\x62\\x06\\x24\\x75\\x28\\x61\\\n\\x28\\x98\\x7b\\x1d\\x14\\x95\\x80\\x72\\x0c\\x79\\x6b\\x81\\xf3\\x33\\xd1\\xc1\\\n\\xa0\\x93\\x37\\xd3\\x0d\\x3e\\x84\\x1a\\x93\\x4c\\xe8\\x6c\\x94\\xcb\\x1a\\x4a\\\n\\x88\\x65\\x75\\x33\\x19\\x66\\x41\\xbf\\xba\\xe3\\xfb\\x3b\\x4a\\x95\\x89\\x20\\\n\\x8f\\x66\\x58\\x6c\\x29\\xe4\\x01\\xef\\xdb\\x68\\x66\\x69\\x19\\x95\\xac\\xc4\\\n\\xb2\\xd3\\xe7\\x29\\x2e\\x62\\x5f\\x3d\\x23\\xba\\x4a\\xd7\\x45\\x5f\\x42\\x1a\\\n\\x63\\xf6\\xea\\xd4\\xaf\\x57\\x39\\x03\\xb1\\x4d\\x5a\\xaa\\x47\\x57\\xb8\\x7d\\\n\\xe1\\x74\\xf4\\x9f\\x6d\\x59\\x2b\\xb3\\x2f\\xca\\x0f\\xcf\\xea\\x48\\xa7\\xf3\\\n\\x7f\\x6a\\xec\\x18\\xcb\\x94\\xb0\\xe5\\xc5\\xca\\x01\\x28\\x4c\\xe0\\x01\\x38\\\n\\xb7\\xd2\\x17\\x15\\xbe\\x55\\x48\\xcc\\xd6\\x18\\x96\\x2c\\x3b\\x8d\\xcb\\xf2\\\n\\x94\\x53\\xcd\\x7c\\x8a\\x47\\x25\\x8c\\xdc\\xca\\x2a\\x43\\x5a\\xa5\\x03\\x96\\\n\\xae\\xde\\x7d\\x7d\\x59\\xfd\\x7f\\xf5\\x6b\\x57\\x3a\\xe1\\x77\\xab\\x7d\\x3a\\\n\\xf3\\x1d\\x64\\x57\\xe7\\x70\\xd9\\x0d\\x2d\\x98\\xd8\\xf3\\xa4\\x4e\\x13\\x4d\\\n\\xe5\\x6c\\x02\\x72\\x65\\xbb\\x52\\x22\\x94\\xd1\\x8d\\x01\\xd4\\xc0\\xd9\\x72\\\n\\x1a\\x29\\xc3\\xca\\xd8\\x76\\x12\\x46\\xb5\\xe6\\xd7\\x35\\x20\\xa1\\xf6\\x16\\\n\\xd8\\xef\\xd1\\x3b\\x38\\xe5\\x01\\x9f\\x81\\xb3\\x7c\\xa3\\x5d\\x80\\x59\\x21\\\n\\x95\\x91\\x3d\\x98\\xe8\\x21\\xb6\\x52\\xca\\x30\\x95\\xb2\\xce\\x1b\\x63\\x59\\\n\\xac\\xe2\\xaa\\x7a\\xad\\xa7\\xd4\\x96\\x7a\\x80\\xea\\x75\\x5d\\xb0\\x0f\\xc2\\\n\\x94\\x25\\x6c\\x58\\x77\\xe3\\x95\\xab\\x06\\x8a\\xe7\\x32\\x24\\x93\\x39\\xa2\\\n\\xb8\\x8b\\x5c\\xb7\\xf4\\xd2\\xca\\xb5\\xa7\\x37\\xe2\\xf7\\x73\\xc6\\x2f\\x07\\\n\\x92\\x69\\x5b\\x62\\xa2\\xa9\\x3e\\xbf\\xaa\\x7c\\x84\\x69\\x00\\xd5\\x17\\xb0\\\n\\x1e\\xc0\\x28\\xca\\x10\\x6f\\xb6\\x64\\x84\\xc0\\xd5\\x03\\x61\\x6b\\xfe\\x1f\\\n\\xb0\\xa4\\x38\\x18\\xd6\\xb4\\xaf\\x6f\\x6d\\x2a\\x48\\x22\\xd3\\xc2\\x3d\\x73\\\n\\xa6\\x77\\x0a\\x92\\x54\\xd0\\x1c\\x08\\x7f\\xb2\\x82\\xb0\\xd3\\xe1\\xac\\x4c\\\n\\xc9\\x60\\x8f\\x18\\x4c\\xd8\\x4d\\xd7\\x4d\\x78\\x23\\x4c\\x40\\x69\\xc2\\x59\\\n\\x19\\xaa\\xda\\x4b\\x29\\x7d\\x43\\xbc\\x5b\\x65\\x0d\\x36\\x98\\xd4\\xce\\xce\\\n\\x79\\xdc\\xbe\\xbd\\x91\\xfa\\x63\\x81\\x0e\\xb7\\x7d\\x6b\\x58\\xe2\\x69\\xfb\\\n\\x43\\x02\\xf0\\x9a\\xba\\x88\\xf4\\x52\\x8d\\xa2\\x0a\\xd3\\xa4\\xb4\\xd7\\x3d\\\n\\x63\\x54\\xe7\\xd2\\xcf\\xa1\\x02\\xc4\\x5a\\xe0\\x63\\xea\\x48\\x5c\\x05\\x8d\\\n\\xd5\\x77\\x75\\x0f\\xab\\xdb\\x49\\xf6\\x5c\\x6f\\xb1\\xb0\\x9a\\xb9\\xfb\\x19\\\n\\x8d\\x66\\x16\\x52\\x65\\xa1\\xd6\\x8d\\x53\\xe6\\xf9\\xeb\\xad\\x63\\x8d\\x8d\\\n\\x6a\\xb1\\xa0\\xac\\x9d\\x50\\x11\\x5d\\x41\\x8e\\xc6\\x35\\xeb\\x4f\\xaf\\x63\\\n\\x73\\x24\\xf9\\xf6\\x0f\\xf7\\x87\\xf5\\x71\\x14\\x49\\x4b\\x92\\xb5\\xb0\\x4a\\\n\\x06\\x2a\\xce\\x30\\x0c\\x76\\x5f\\xd2\\xa3\\x09\\xea\\x09\\x72\\xaa\\xce\\x43\\\n\\x62\\x65\\xa5\\x1a\\x09\\x2f\\xfc\\x34\\x5f\\x29\\xd9\\xd1\\x29\\x6a\\xaa\\xe6\\\n\\x76\\x94\\x29\\x28\\xa1\\x54\\xb4\\xd3\\xd6\\x74\\xc5\\x10\\x39\\x0a\\xa6\\x5f\\\n\\x86\\xed\\x03\\x10\\xd2\\x72\\x9b\\x0b\\x8e\\xeb\\x65\\xd9\\x85\\x98\\x2b\\x6b\\\n\\x36\\x64\\xaa\\x42\\xcc\\x99\\x6b\\xb0\\x4e\\x45\\x95\\xf8\\xcf\\x6a\\xaa\\x0c\\\n\\xbb\\x4e\\x5c\\x6c\\xec\\x9c\\x20\\xca\\x72\\x24\\x85\\xa8\\x59\\xb2\\xf2\\x43\\\n\\x5e\\xc9\\xd0\\xb7\\x62\\xd6\\x10\\x33\\xbe\\xa9\\xcb\\x99\\xd3\\xb1\\x4b\\x52\\\n\\xf5\\x8b\\xae\\xc7\\x6b\\x57\\x17\\x27\\x2b\\x07\\x59\\x1a\\xf3\\xb0\\xa6\\x4c\\\n\\xf3\\x83\\x45\\x83\\xd9\\x6a\\xfb\\xcc\\xee\\x2b\\x79\\x0f\\x13\\x3e\\x60\\x99\\\n\\xe7\\x61\\x66\\x17\\x67\\xda\\x72\\x1e\\xc6\\x2e\\x47\\xc9\\x39\\xb8\\x5c\\xbc\\\n\\xac\\x6c\\x36\\xfe\\x8b\\x0b\\x2b\\xad\\x3c\\xaf\\x4e\\x3e\\xce\\x61\\x15\\xca\\\n\\x5d\\x9c\\xd2\\x22\\xd4\\x64\\xce\\x5c\\xe6\\xe9\\xe9\\xe8\\xa7\\x98\\x2e\\xce\\\n\\xe8\\x12\\x23\\x46\\x28\\xc1\\x37\\x3b\\x6e\\x18\\x8b\\x04\\x5a\\x06\\xf6\\x59\\\n\\x8f\\x2e\\x64\\x59\\x32\\x06\\xcf\\x93\\xc9\\x6d\\x25\\x4a\\xd3\\x79\\x2f\\x98\\\n\\xee\\x1b\\xc9\\xb3\\x91\\x8a\\xd9\\x86\\x03\\xa8\\x55\\xba\\xf1\\x18\\xe2\\x9d\\\n\\x73\\x44\\x15\\xa6\\x7c\\xd6\\xe9\\x75\\x87\\x1e\\x53\\x4f\\x17\\x60\\x55\\xbd\\\n\\x6c\\x50\\x61\\xaa\\x29\\x67\\x4b\\x2f\\x41\\x1b\\x5d\\x64\\x8a\\x29\\xb9\\x3c\\\n\\x55\\x78\\xdb\\x15\\xd7\\xcf\\x2d\\x56\\x67\\x39\\x82\\x73\\x16\\x4b\\x4d\\x0f\\\n\\xd2\\xb1\\xe8\\x94\\x17\\xb4\\xf8\\x67\\xda\\xc6\\x69\\x91\\xd6\\xf7\\x21\\x88\\\n\\x75\\x35\\x63\\x8c\\x66\\x3b\\x60\\x86\\x4d\\x41\\x14\\x8d\\x5e\\xd4\\xab\\x26\\\n\\x02\\xa2\\xf1\\xe4\\x96\\x8b\\xc1\\x0b\\x9e\\x1b\\x23\\x6f\\x70\\x18\\x5b\\xd1\\\n\\x6c\\xdd\\xad\\xa5\\x5d\\x7f\\x7b\\xb0\\x3a\\xbd\\xf1\\xfa\\xe6\\x86\\x6b\\xbd\\\n\\x43\\x49\\x63\\xdf\\x04\\x5a\\xa8\\x65\\xe7\\x8f\\x39\\x4c\\xec\\xe6\\xaa\\x5d\\\n\\xd5\\x21\\xfe\\x2b\\x97\\xa1\\x67\\x21\\x3d\\x41\\xbc\\x64\\x67\\xe5\\xbc\\xf3\\\n\\x8e\\x31\\xc6\\x3c\\xb2\\xeb\\x64\\xe7\\x6d\\xec\\x33\\xd6\\x95\\x28\\xd6\\xfb\\\n\\xf8\\xcb\\xb7\\x2c\\xfc\\xf5\\x8c\\x20\\x76\\x5e\\x6e\\x75\\x6c\\x7c\\xa6\\xe6\\\n\\x66\\x05\\xad\\x60\\xd8\\x3f\\x30\\x5a\\xad\\x66\\x29\\xc4\\x95\\x02\\xc5\\x23\\\n\\x63\\xf6\\x53\\xeb\\x45\\x85\\x9a\\xb3\\x35\\xd0\\x1f\\xa1\\x95\\x72\\x17\\x8e\\\n\\x10\\x55\\x8a\\xb4\\xd3\\x1f\\x4a\\x72\\x81\\x36\\x7b\\x35\\x4f\\x0e\\xbe\\xa2\\\n\\xe6\\x32\\x4a\\x08\\x8d\\x66\\x63\\xa0\\xba\\x8d\\xe5\\x20\\x65\\x54\\x15\\x02\\\n\\x15\\xeb\\x5b\\x0f\\xbe\\x75\\xec\\xbb\\x23\\x6c\\x94\\x82\\xf1\\x2d\\x7d\\x3c\\\n\\x74\\x7e\\x6f\\x0e\\xbc\\x50\\x01\\x28\\x12\\x63\\xb3\\xe5\\xa8\\x02\\x05\\x97\\\n\\xe1\\x1c\\x24\\x6c\\x97\\xdc\\xd8\\xf2\\x04\\x33\\xd3\\x42\\xb4\\xb6\\x82\\x77\\\n\\x93\\x16\\xc5\\xb9\\x65\\x99\\xb9\\x73\\x30\\xd2\\xfb\\x0d\\x34\\xb8\\x69\\x4c\\\n\\x39\\xb3\\x19\\xd2\\xd9\\xaa\\xc0\\xff\\x00\\xd2\\x51\\x0a\\x85\\x19\\xa6\\x3f\\\n\\x56\\xbd\\xad\\x42\\xeb\\x34\\x65\\x96\\x09\\xee\\x11\\x69\\x5b\\xec\\x0a\\xb9\\\n\\xe0\\x7a\\xf6\\xa4\\xd1\\x33\\xde\\xdf\\x2f\\x26\\x1b\\xdb\\x50\\xc4\\x58\\x2c\\\n\\x18\\x96\\x84\\x34\\x1c\\xb6\\x86\\x96\\x93\\x63\\xae\\x3b\\xc7\\x68\\x0e\\x88\\\n\\x5e\\x63\\xcd\\x48\\xc2\\x15\\xac\\x3d\\x88\\xb7\\x8f\\x1c\\xf8\\xf0\\xa5\\x6b\\\n\\x61\\xf5\\xd5\\x84\\x9e\\x2e\\xd9\\xc9\\x76\\x3d\\xe5\\x9b\\x36\\xcd\\xfe\\x86\\\n\\x37\\xf7\\xa8\\xc0\\x38\\x0c\\x7f\\x45\\x99\\xaf\\xf5\\x9b\\x4c\\x49\\xdf\\x70\\\n\\x37\\xff\\xc4\\x00\\x48\\x11\\x00\\x01\\x02\\x03\\x04\\x07\\x05\\x08\\x01\\x02\\\n\\x04\\x05\\x04\\x01\\x05\\x01\\x01\\x02\\x11\\x00\\x03\\x21\\x04\\x12\\x31\\x41\\\n\\x05\\x13\\x22\\x51\\x61\\x71\\xf0\\x32\\x81\\x91\\xa1\\xb1\\x06\\x14\\x23\\x42\\\n\\xc1\\xd1\\xe1\\xf1\\x52\\x33\\x62\\x10\\x15\\x72\\x92\\x24\\x43\\x82\\xa2\\xb2\\\n\\x16\\x34\\x53\\xc2\\x07\\x20\\x25\\x44\\x63\\xd2\\x73\\xff\\xda\\x00\\x08\\x01\\\n\\x03\\x01\\x01\\x3f\\x01\\xb0\\x5a\\xa6\\x27\\x44\\x82\\xdb\\xbc\\xfe\\xd1\\x3a\\\n\\xd8\\xb3\\x24\\x25\\xb1\\x1d\\xf1\\x26\\x4c\\xc5\\x02\\xb5\\x0a\\x67\\xfb\\xfd\\\n\\x46\\xa8\\x6f\\xf3\\xfc\\x42\\x34\\x3d\\xbd\\x73\\xe5\\xcc\\x4c\\xc1\\x73\\xb4\\\n\\xd8\\xd0\\xd4\\x45\\xa0\\x69\\x29\\x02\\x42\\x25\\x17\\xf8\\x66\\xf7\\x8b\\x08\\\n\\x7d\\x25\\x3d\\x06\\x54\\xf0\\xf2\\xd7\\xb2\\xac\\x70\\xe8\\x42\\x6c\\x6a\\x46\\\n\\x00\\x8a\\x52\\x99\\x74\\xd1\\xee\\x72\\xa5\\x8d\\x62\\xc8\\xda\\xa9\\xe7\\x16\\\n\\x8b\\x4c\\xb9\\x77\\x75\\x44\\x16\\x7b\\xd5\\xe4\\xd1\\x2f\\x4b\\x21\\xc2\\x15\\\n\\x4a\\xb7\\xaf\\xd2\\x34\\xe8\\x4c\\xc2\\x66\\x4b\\xda\\xcc\\x75\\xd7\\x38\\x97\\\n\\x7a\\xe0\\x2a\\x0c\\x60\\x2a\\xef\\x78\\x6e\\xbf\\x11\\xa9\\xb4\\xcd\\x58\\xb8\\\n\\x87\\x72\\x07\\x9b\\x7d\\x78\\xc5\\x83\\xd9\\xd5\\x4d\\x9a\\x35\\xe0\\xa7\\x98\\\n\\xdf\\xd7\\x84\\x59\\x74\\x7a\\x74\\x5d\\x25\\x97\\x4d\\xd7\\xef\\x57\\x5d\\x63\\\n\\x1e\\xd1\\x7b\\xe9\\x52\\xad\\x52\\xa5\\x92\\x2f\\x01\\x4d\\xd1\\xa2\\xad\\x26\\\n\\x7e\\x89\\x29\\x9f\\xb2\\x5a\\xaf\\xca\\x26\\x6a\\x96\\xb5\\x87\\x1d\\xa5\\x72\\\n\\xa1\\x3d\\x3f\\x28\\xb8\\x94\\x25\\x92\\x5d\\xc9\\xc2\\x2e\\xb4\\xd7\\xe1\\xf4\\\n\\x30\\xa9\\x26\\x60\\x7c\\x07\\xee\\x00\\x09\\xa6\\xea\\x78\\x45\\x8a\\x44\\xb9\\\n\\xf3\\xd2\\x85\\x16\\x51\\xa7\\x75\\x3d\\x7a\\xdf\\x16\\x8d\\x14\\xb9\\x32\\x2f\\\n\\x4a\\x04\\x9b\\x9b\\x31\\x6c\\xb3\\xce\\xd7\\x9d\\x62\\x4b\\xbd\\x69\\xd5\\x39\\\n\\xc4\\xc4\\x32\\x8e\\x63\\x0e\\xa9\\x89\\x8e\\x5b\\xc5\\x7f\\x1f\\x98\\x94\\xee\\\n\\x09\\xc1\\x27\\x7d\\x3d\\x3a\\xa4\\x5a\\x67\\x95\\x92\\x12\\x5a\\x81\\xf7\\x03\\\n\\x97\\x7b\\x40\\x70\\xbb\\xcf\\xd7\\xee\\x25\\xdb\\x00\\x0d\\xbb\\x79\\x83\\x6b\\\n\\x17\\x55\\x41\\x81\\xf9\\xa1\\x13\\x94\\xbe\\xd3\\x87\\x6e\\x4f\\xd3\\xf5\\x48\\\n\\xf7\\x69\\x6b\\xda\\x04\\x6e\\xcb\\xae\\xe8\\x9d\\x66\\x42\\x52\\x48\\xda\\xa8\\\n\\xa0\\x85\\x59\\xc1\\x3d\\x93\\xd7\\x74\\x6a\\x14\\xd8\\xf9\\x7e\\x7a\\xca\\x25\\\n\\x58\\x82\\xdd\\x4b\\x22\\x8a\\xce\\x9e\\xb1\\x2d\\x16\\x70\\xc9\\xbf\\xe8\\x3a\\\n\\xf2\\x8b\\xb6\\x71\\xf3\\x8f\\xfb\\x61\\x46\\xea\\x99\\x21\\xc3\\x90\\xfb\\x86\\\n\\x51\\x64\\x95\\xad\\x57\\x17\\x09\\x7d\\xc0\\xd7\\xf7\\xdd\\x16\\xfb\\x14\\xb9\\\n\\x49\\x33\\x12\\x76\\x85\\x69\\x5b\\xd4\\xdd\\xdd\\xdd\\xcd\\xe0\\xdb\\xa7\\x59\\\n\\xdc\\x32\\x89\\x70\\x76\\x9f\\x78\\xe7\\xc7\\xea\\x22\\xc9\\xa4\\x2d\\x36\\xa5\\\n\\xb4\\xb9\\x42\\xe8\\x35\\x59\\xbc\\xd7\\x4a\\xb9\\x63\\x75\\xe9\\xbf\\x16\\x0d\\\n\\x08\\x40\\x9e\\x6e\\xcc\\x00\\xdd\\xae\\x04\\xbb\\xd3\\xe9\\x08\\xb2\\xca\\x07\\\n\\xb2\\x33\\xc1\\x3b\\xbb\\xbc\\xe1\\x56\\x70\\x67\\x01\\xd9\\x39\\x71\\xf5\\xeb\\\n\\x08\\xb6\\xc9\\x42\\x64\\x76\\x4c\\xc3\\x9d\\xdd\\xc1\\xfd\\x3d\\x1f\\x18\\x52\\\n\\x65\\xa2\\xca\\x85\\xae\\x52\\xcd\\xd9\\x80\\x25\\x24\\x39\\x45\\x15\\xb7\\x74\\\n\\xd7\\x0c\\xff\\x00\\x10\\x41\\x5b\\x6a\\xf1\\x7a\\xbf\\xe5\\xb1\\xdf\\x0b\\xb3\\\n\\x00\\x09\\xc4\\xdd\\x76\\xe4\\x30\\xe2\\x30\\x7c\\xf0\\x8b\\x2c\\x85\\x09\\x53\\\n\\x25\\x9a\\x13\\x28\\x39\\x38\\xd7\\x77\\xd3\\x8c\\x58\\xd3\\xa8\\x5c\\xd5\\xb7\\\n\\x65\\x45\\xdb\\x2a\\x01\\xc3\\x87\\x73\\x66\\xf1\\x67\\x9c\\x08\\x1b\\xb2\\xaf\\\n\\xeb\\xc7\\x7c\\x19\\xec\\x55\\xb8\\x57\\x0c\\x7c\\xe1\\x73\\xc1\\xad\\x05\\x33\\\n\\xfa\\x56\\x0c\\xd2\\x43\\x3a\\x43\\xee\\xa1\\xc5\\xf7\\xc4\\xe9\\x1e\\xf0\\x90\\\n\\x5c\\xec\\xe2\\x59\\xdb\\xf7\\xbf\\xb9\\xa1\\x16\\x29\\x6a\\x14\\x21\\x3b\\x35\\\n\\x2a\\x67\\xbc\\xfb\\x9d\\x9f\\x9d\\x3e\\xbf\\xe5\\xc8\\x55\\x75\\xa5\\x3c\\x13\\\n\\x75\\xa9\\x4c\\xde\\x0d\\x8d\\x12\\xec\\xde\\xed\\x67\\x72\\x8d\\xea\\xaa\\x8d\\\n\\x77\\xf8\\xfd\\xa2\\x64\\x9b\\x84\\x25\\x62\\xac\\x0e\\xea\\x79\\xfa\\xc1\\xb4\\\n\\x09\\x72\\x8c\\xb6\\x01\\x3e\\x79\\x67\\x0b\\x9e\\xab\\xcc\\x96\\xf5\\x8b\\x12\\\n\\xed\\xca\\x67\\x22\\xed\\x1a\\x8d\\x4c\\xbc\\xa2\\x64\\xd9\\x76\\x69\\x57\\xad\\\n\\x13\\x09\\x5e\\x29\\xa8\\x66\\xe4\\xd1\\xff\\x00\\xa9\\x2c\\xb2\\x89\\x54\\xc6\\\n\\xb8\\x8e\\xd0\\x18\\xb6\\x18\\xd7\\xd3\\x28\\x95\\xa6\\x24\\xe9\\x0f\\xfd\\xaa\\\n\\xa5\\xa4\\xff\\x00\\xfd\\x98\\xfd\\x3a\\xef\\x8b\\x62\\x26\\xa8\\xad\\xd4\\xe6\\\n\\xa3\\x67\\x03\\xcb\\xe9\\x13\\xa5\\x4c\\x93\\x79\\x4e\\x49\\xe3\\xbb\\x1c\\x21\\\n\\xd4\\xbb\\xc5\\x44\\x83\\xc0\\xd3\\x08\\xf7\\x89\\x97\\x2e\\x1b\\xaa\\x1b\\xd4\\\n\\x2b\\xe2\\xf0\\x46\\x3f\\xdc\\x7b\\x87\\x2e\\xb1\\x8b\\x16\\x8f\\x45\\xa9\\xef\\\n\\x5e\\x17\\x59\\x54\\xdf\\x1a\\x2e\\xc7\\x67\\x92\\xda\\xd0\\xe4\\x07\\x4e\\x18\\\n\\xe2\\x3a\\xdd\\x16\\x79\\xd3\\xed\\x36\\xc5\\x4b\\x5a\\x10\\x89\\x43\\x05\\x4b\\\n\\x49\\x05\\xfc\\x4e\\x51\\x3e\\x6c\\xa9\\x72\\xae\\x1b\\xea\\x52\\x5e\\xbf\\x42\\\n\\x5a\\x24\\x4e\\x36\\xa5\\x7b\\xa1\\x95\\x2c\\x4b\\x35\\x2a\\x5a\\x72\\xe6\\xed\\\n\\x9e\\xe8\\xd2\\xfa\\x2e\\xcd\\x62\\xb1\\x2f\\x51\\x3a\\xea\\x94\\x1c\\x8b\\xf4\\\n\\xaf\\x0c\\x47\\x55\\x8b\\xb3\\x25\\xda\\xae\\xde\\x24\\x28\\x97\\x2e\\x3f\\x91\\\n\\x76\\xf5\\xce\\x14\\x84\\x09\\x63\\x6b\\x68\\x56\\xa7\\x7e\\x5c\\x60\\xa9\\x05\\\n\\x4e\\xa3\\x51\\x88\\x07\\xbb\\xed\\x09\\xb4\\x25\\x23\\x65\\xbb\\xd5\\x13\\xad\\\n\\x4e\\xbf\\x86\\x2a\\x4e\\x78\\x57\\xc3\\xce\\x2c\\x81\\x69\\xb6\\xd9\\x66\\x92\\\n\\xc5\\xb0\\x18\\x62\\x3c\\x7a\\xa4\\x59\\xed\\x56\\x79\\x92\\x65\\x99\\xc5\\x21\\\n\\x21\\x29\\xbc\\xdd\\x52\\x34\\xb4\\xad\\x0b\\x31\\x4a\\x37\\xd6\\xe7\\x72\\x86\\\n\\x3f\\xed\\x8b\\x6a\\xe4\\x26\\x74\\xe4\\x4b\\x27\\x54\\x14\\x42\\x33\\x37\\x4e\\\n\\x0e\\x73\\x8d\\x7c\\x94\\x9f\\x99\\xf0\\xe5\\xe5\\xc6\\x2c\\xf3\\x24\\xac\\x33\\\n\\xb6\\x44\\x11\\xc6\\x2d\\x69\\x17\\x7e\\x1d\\x21\\x23\\x64\\x3c\\x5c\\x0e\\xec\\\n\\x62\\xef\\x55\\x85\\xa4\\x28\\x6e\\xff\\x00\\x4d\\x29\\x15\\x42\\x58\\x28\\x9c\\\n\\x4d\\x6b\\xd0\\x8f\\x7b\\x5a\\x17\\x46\\xdd\\x83\\xb0\\xdf\\x1e\\xf5\\x20\\xcb\\\n\\x49\\x24\\x85\\x28\\x60\\x31\\xe2\\xdd\\x1d\\xef\\x0b\\x9b\\x68\\x96\\x40\\x64\\\n\\x8b\\xc4\\x30\\xdc\\x39\\xef\\xeb\\x08\\x2e\\x65\\xb3\\xb3\\x87\\xa4\\x19\\x55\\\n\\xbd\\x79\\x6f\\x9d\\x7f\\x10\\x13\\xb4\\x36\\xd7\\x83\\x33\\x8f\\xb4\\x2e\\x70\\\n\\x4d\\xd4\\x22\\xa5\\x83\\xbe\\x59\\x1a\\xbf\\x5c\\xa2\\xcf\\x31\\x09\\xb3\\x89\\\n\\xa8\\xab\\x00\\x56\\x71\\x14\\x6a\\xd3\\x0e\\xb3\\xc4\\x5e\\xb5\\x80\\xa6\\x5b\\\n\\x07\\xba\\x1b\\x65\\x5b\\x81\\x1f\\x4a\\x6e\\x8b\\x55\\x96\\xd8\\xb3\\xf0\\xe5\\\n\\xcb\\x1b\\x40\\xed\\x22\\xa0\\xf3\\x73\\xc8\\xd1\\xeb\\xe3\\x64\\x4c\\xd9\\x4a\\\n\\x08\\x58\\x18\\x81\\x81\\xdf\\x86\\xe6\\x8b\\x2c\\xc9\\x32\\x92\\x55\\x3a\\xea\\\n\\x6f\\x61\\x95\\x5f\\x37\\x7a\\x7e\\xa1\\x76\\xd9\\x20\\x6c\\x14\\x9b\\xee\\x94\\\n\\xf8\\x54\\x86\\xc4\\xee\\xae\\x4c\\x60\\xa2\\x51\\x55\\xf2\\x4d\\xef\\x01\\xd6\\\n\\x34\\x3b\\xe1\\x2a\\x49\\x39\\x28\\x36\\x6e\\x77\\x63\\x51\\x5f\\x58\\x99\\x31\\\n\\x29\\x4b\\xb2\\x0e\\x4c\\xc4\\x87\\xe4\\xfb\\x9e\\x14\\xb9\\x2a\\xad\\xd4\\xf3\\\n\\x09\\xae\\x0d\\xd5\\x21\\x28\\xb1\\xc9\\x97\\x7e\\x74\\xc3\\x78\\x0f\\x98\\x8c\\\n\\x72\\xd9\\x61\\xb4\\x9c\\x05\\x39\\xc4\\xad\\x22\\x4c\\xd5\\x29\\x01\\x37\\x2a\\\n\\x82\\xa9\\x80\\x8c\\x30\\xba\\x92\\xc7\\x7b\\x9e\\xce\\xef\\x99\\xca\\xf5\\x66\\\n\\x65\\xd7\\x26\\x6a\\xaf\\x3b\\xbd\\x45\\x5b\\x16\\x19\\x0e\\x50\\x8b\\x4c\\xe4\\\n\\x60\\x13\\xbe\\xa0\\xd3\\x91\\xaf\\x58\\x41\\x5a\\x9d\\x26\\xf1\\xda\\x4b\\xf0\\\n\\xca\\x9e\\x71\\x32\\x62\\x92\\xcc\\x07\\x12\\x70\\x6a\\xd1\\xa9\\x5e\\x30\\xbb\\\n\\x54\\xd0\\x58\\x5c\\xe5\\x76\\xb8\\xf1\\xcf\\x7f\\x28\\x90\\x49\\x92\\x83\\x81\\\n\\x29\\x73\\x4d\\xfc\\x38\\x65\\xf7\\x85\\x58\\xe5\\xf6\\xc1\\x50\\x2b\\xda\\x2c\\\n\\x43\\x39\\x63\\x4a\\x3b\\x6e\\x0f\\x84\\x14\\x80\\x48\\x75\\xd0\\x91\\x97\\xff\\\n\\x00\\xe6\\x15\\x6d\\x4e\\x8f\\x95\\x76\\x7a\\xde\\x69\\xc2\\xe8\\x2b\\xaf\\x31\\\n\\x06\\x75\\xa6\\x63\\xcc\\x9b\\x2e\\xeb\\x9d\\x87\\xcd\\x1f\\x29\\xca\\x10\\x92\\\n\\xba\\x28\\x63\\x8c\\x4a\\xb1\\xca\\x67\\x55\\x39\\xf9\\x73\\x8b\\x1e\\x91\\x95\\\n\\x3a\\x71\\xb3\\x49\\x26\\xfa\\x09\\x4b\\x29\\x0a\\x48\\xd9\\x2d\\x89\\xa1\\xc3\\\n\\x11\\x1a\\x63\\xe2\\x24\\x05\\x96\\x52\\x10\\xa0\\xc2\\xbd\\xdd\\xd1\\x30\\xa2\\\n\\xcd\\xac\\x9e\\xa0\\x56\\x99\\x7f\\x2e\\x37\\xab\\x74\\x06\\xe7\\xba\\x34\\x5e\\\n\\x8f\\xd2\\x16\\xa5\\xfb\\xc5\\xdf\\x76\\x90\\xac\\x0a\\x17\\x97\\x2e\\x1d\\x71\\\n\\x1e\\xf2\\x83\\x71\\x95\\x31\\x28\\xd9\\xbe\\x41\\xaf\\x1c\\x22\\x6a\\x0a\\xd0\\\n\\x42\\x93\\x8e\\x19\\xfe\\xbb\\xe2\\xd1\\x29\\x52\\x66\\x5d\\x50\\x6b\\xe5\\x86\\\n\\x62\\xb4\\x18\\x60\\x21\\x49\\xad\\xdc\\xf2\\x02\\xb1\\x22\\xcd\\x68\\xb4\\x4c\\\n\\xd5\\xcb\\x97\\xde\\x76\\x7c\\xe3\\x46\\x58\\x3d\\xd9\\xb5\\xf7\\x11\\x4f\\xe4\\\n\\x3a\\x3e\\x02\\x35\\x56\\x22\\x91\\x71\\x60\\x91\\x5a\\x6f\\x8b\\x12\\x11\\x29\\\n\\x53\\x67\\xcc\\xa2\\x5b\\x16\\x73\\x87\\x8f\\x8c\\x5a\\xf4\\xed\\x92\\x5e\\xb2\\\n\\x52\\x5d\\x53\\x12\\x54\\x76\\x90\\x40\\x63\\x85\\x4e\\x31\\x3b\\xda\\x29\\xea\\\n\\x9c\\x65\\xa1\\x3a\\xaf\\x98\\x2c\\x70\\xc0\\x1e\\x71\\x68\\xb6\\x5a\\xed\\x41\\\n\\xa7\\x5a\\x4d\\xdd\\xd7\\xba\\xc2\\x27\\x24\\x95\\x85\\x27\\x22\\xd1\\x3a\\x7c\\\n\\xdb\\xe9\\x18\\x0b\\xac\\x79\\xfd\\x72\\x85\\x4e\\x40\\x4b\\xcc\\x24\\x57\\x14\\\n\\xa5\\xea\\x4d\\x30\\xde\\x69\\x41\\x87\\x8c\\x4b\\xd1\\xd3\\x66\\xc9\\x13\\x82\\\n\\x76\\x0b\\x1a\\x9b\\xa7\\x23\\x86\\x3e\\x31\\x3a\\xcb\\x31\\x13\\x2f\\x24\\x54\\\n\\x13\\x9f\\x58\\x50\\x72\\xf0\\x8b\\x09\\x9c\\xbf\\x88\\xa0\\x3e\\x15\\x31\\x19\\\n\\xd7\\x98\\x3e\\x9e\\x11\\x6e\\xd3\\x4b\\x93\\x25\\x48\\x42\\xcd\\xeb\\xa4\\x51\\\n\\xfb\\x5d\\x74\\xf1\\x69\\xd2\\x16\\xc9\\xa1\\x44\\x28\\xf2\\xbc\\x21\\xe7\\xaa\\\n\\x4a\\x14\\xbb\\x8e\\xc0\\x92\\xa5\\x66\\x7f\\xea\\xf5\\xf3\\x82\\x85\\x4c\\x20\\\n\\x7c\\x15\\x7f\\x75\\x0d\\xdd\\xff\\x00\\x31\\x67\\xa6\\xe8\\xb3\\x24\\xca\\x07\\\n\\xb0\\xa5\\x39\\x2e\\x1e\\x84\\xbe\\x0e\\x78\\xc0\\xbe\\xa1\\x51\\xe7\\x08\\x08\\\n\\xba\\x2f\\x12\\x0f\\x0c\\x3e\\xb0\\xd2\\xf7\\xab\\xae\\xe8\\x56\\xad\\xb1\\x53\\\n\\xb5\\x39\\xf8\\x43\\x42\\x98\\x50\\xfa\\x18\\x99\\x2f\\x57\\x7a\\x65\\x2e\\x95\\\n\\x6f\\xab\\x9a\\x61\\x1a\\x3a\\xc1\\x2e\\xd7\\x3a\\x5d\\xfb\\xc7\\x68\\xa9\\x38\\\n\\x81\\x81\\x07\\x06\\xca\\x8d\\xb8\\xd6\\x2d\\xda\\x3e\\x62\\x4d\\xed\\x58\\x64\\\n\\x9c\\x8e\\xec\\x3a\\xe5\\xdc\\x26\\x33\\x25\\x49\\x5b\\x8f\\xed\\x85\\x2d\\x2a\\\n\\x34\\xc7\\x06\\x89\\x72\\xd5\\x31\\x77\\x52\\x9b\\xca\\x11\\x22\\x5d\\x99\\x25\\\n\\x52\\xe7\\x76\\x94\\x54\\xec\\xc7\\x7b\\x8a\\x61\\xf4\\x63\\xc6\\x2c\\xd2\\xa4\\\n\\x48\\x05\\x03\\xb0\\xa6\\xbb\\x98\\xfb\\x42\\x66\\x4a\\x4e\\xca\\x4b\\x2e\\xeb\\\n\\x80\\xcd\\x4c\\x83\\xf4\\x21\\x33\\x87\\xfc\\xcb\\xbe\\xbf\\x58\\x54\\xeb\\x2a\\\n\\x54\\x56\\x55\\x57\\x0f\\x42\\xdd\\xc7\\x8c\\x4d\\xb5\\xd9\\x0a\\x50\\x92\\x1c\\\n\\x97\\x67\\x45\\xec\\x7e\\xb0\\xbd\\x52\\x9a\\x60\\x24\\x5d\\x50\\x50\\x00\\x16\\\n\\x17\\x7f\\x8d\\x28\\xec\\xef\\xc4\\xf0\\x8f\\x78\\x49\\xfd\\x3d\\x7f\\xdb\\x1e\\\n\\xf2\\xc0\\x50\\xf8\\xf1\\xe5\\x08\\x9a\\xa5\\x92\\x91\\x8b\\x5e\\xa9\\x4e\\x44\\\n\\x0e\\x03\\x3c\\x5f\\xba\\x17\\x6d\\x09\\x9b\\x70\\x95\\xd1\\xf0\\x45\\xe6\\x50\\\n\\x7f\\xb7\\x2a\\x8a\\x97\\x8d\\x2d\\x6d\\x97\\x31\\x65\\x72\\x4e\\xb3\\xf8\\x82\\\n\\x92\\x90\\x8a\\xbb\\xd4\\x55\\x4f\\x57\\x39\\x30\\xc9\\xe1\\x13\\xed\\x2b\\x32\\\n\\xcc\\xb0\\x9b\\xa5\\x55\\xda\\x26\\xa9\\x38\\xb6\\x15\\x34\\x77\\x11\\xef\\x08\\\n\\x96\\x25\\x05\\xa9\\x89\\xbd\\xfe\\xda\\x01\\x96\\xfc\\x8d\\x71\\x8d\\x60\\x9a\\\n\\x1d\\x2a\\xd5\\x8f\\xe4\\xa1\\x5e\\xe4\\xbf\\xae\\xf8\\x54\\xe9\\x48\\x32\\xc2\\\n\\x96\\xce\\x28\\x54\\x19\\xe8\\x38\\x6f\\x31\\x6b\\xb5\\x4a\\x4a\\xe5\\x8b\\xf4\\\n\\x52\\x09\\x70\\xe5\\xcb\\xd0\\x38\\xc2\\x13\\x69\\x46\\xb8\\x28\\xdf\\x55\\xd2\\\n\\x5c\\x26\\x5a\\xca\\x95\\x45\\x35\\xd0\\xd5\\x4f\\x1a\\xd0\\x3b\\xc5\\x88\\x23\\\n\\xdd\\xd2\\x48\\x3d\\x80\\xe4\\xa4\\x8c\\x1f\\xaa\\xd6\\x0a\\xe5\\xdc\\x6a\\xf6\\\n\\x77\\x1a\\x61\\x05\\x00\\x92\\x6f\\x67\\xbe\\x2c\\xa6\\x6c\\xc9\\xf7\\xed\\x63\\\n\\xb2\\x73\\xc3\\x9d\\x71\\xeb\\x94\\x4d\\x9d\\x2a\\xd1\\x31\\x1a\\xa0\\x2e\\xa5\\\n\\x01\\x0c\\x30\\xa1\\x3d\\x39\\xae\\x59\\x45\\xd4\\xc8\\x97\\xad\\x55\\x58\\xf0\\\n\\xa3\\xd0\\x79\\xc1\\x52\\xa6\\x17\\x4f\\x30\\xdf\\x48\\xb3\\x2d\\x28\\xd2\\x48\\\n\\x4a\\x3b\\x47\\x1e\\xb8\\xbc\\x5b\\xe4\\x28\\x4b\\x9a\\xb5\\x56\\xf0\\xbd\\xdc\\\n\\xd1\\x6c\\xd2\\x92\\xa4\\x4f\\x5a\\x66\\x8f\\x82\\x00\\x2b\\x53\\x1d\\x91\\x79\\\n\\x37\\x5f\\x7d\\x77\\x61\\x9d\\x23\\x42\\xe9\\xfb\\x22\\xe4\\xa5\\x02\\xed\\xd6\\\n\\x05\\x2d\\x98\\x3f\\x7e\\x9a\\x24\\x5b\\xec\\x16\\x94\\x84\\x4b\\x29\\xbc\\xcc\\\n\\x70\\x77\\x6c\\xfa\\x31\\x69\\xb2\\xa2\\x50\\xd6\\x64\\xae\\xbc\\xfc\\xe2\\x76\\\n\\x8f\\x45\\xb2\\x5a\\xca\\x00\\x2a\\xba\\xab\\xbc\\x15\\x94\\x48\\xd0\\xb3\\x11\\\n\\x39\\xe6\\x8c\\xeb\\xd7\\xd2\\x24\\xcb\\xb1\\xc8\\x42\\x10\\x12\\x9d\\x76\\x04\\\n\\xe6\\x37\\x3d\\x78\\xc1\\xd0\\xca\\xb4\\x80\\xb5\\x12\\x91\\x8b\\xc4\\x9d\\x13\\\n\\x22\\x4f\\x6a\\x6d\\x77\\x13\\xba\\x26\\xcb\\x4a\\xe5\\x99\\x72\\xf3\\x0d\\x4f\\\n\\xb4\\x4b\\xf6\\x6e\\xcb\\x31\\x6a\\x9b\\x69\\x56\\xd9\\xc7\\x96\\x5e\\x4f\\x1a\\\n\\x53\\xd9\\xcd\\x17\\xab\\x56\\xad\\x40\\x2c\\x57\\xb8\\x7d\\x23\\x48\\x0b\\x1d\\\n\\x9e\\xd2\\xa9\\x3e\\xf0\\xcc\\xa2\\xc1\\xf1\\xae\\x11\\xac\\xe7\\x0b\\x2f\\x5a\\\n\\xc5\\x8b\\x56\\xab\\x4a\\x13\\x35\\x8a\\x1c\\xd0\\xf2\\x71\\x12\\x44\\xa9\\xd6\\\n\\x41\\x2e\\x58\\x6a\\x51\\xba\\xca\\x25\\x58\\xa5\\x5a\\xf5\\xa8\\x03\\x6a\\x59\\\n\\x52\\x0f\\x30\\xef\\xf6\\x89\\xf2\\x7f\\xcb\\xb5\\xa8\\x27\\xfa\\x8e\\xaf\\x0f\\\n\\xdd\\x62\\xd7\\x37\\x5b\\x2e\\x62\\x90\\x1d\\x28\\x04\\x95\\x1e\\x26\\x8c\\xf8\\\n\\xe1\\xb8\\xc6\\xba\\x9d\\x51\\xf9\\x67\\xe4\\x37\\x56\\x24\\x58\\xed\\x93\\x80\\\n\\x21\\x44\\x22\\x60\\x74\\x06\\xf0\\xc6\\x25\\x68\\x69\\xd2\\x90\\x1d\\x43\\x6c\\\n\\xd5\\x40\\x62\\x4e\\x2a\\xef\\x78\\x3a\\x39\\x52\\xf6\\x89\\x51\\xbb\\x78\\xe1\\\n\\x88\\x48\\x7a\\x42\\x7f\\xc1\\xe3\\xa1\\xfe\\x12\\xe5\\x6b\\xe7\\x89\\x79\\xb7\\\n\\x5f\\x48\\x9f\\xa2\\x27\\xdf\\x0f\\xd8\\x71\\x9e\\xe2\\xe0\\xf9\\xc6\\x8f\\xb3\\\n\\xcb\\xb1\\x00\\xb5\\x0e\\xce\\x74\\xc2\\x8f\\x5f\\x58\\x50\\x42\\x92\\x4d\\xcb\\\n\\xce\\xf4\\xa6\\x7f\\xea\\xa1\\x6c\\xa3\\x48\\x22\\xc8\\x54\\x94\\xca\\x42\\x68\\\n\\x86\\x56\\xf7\\x73\\x5e\\x5c\\x22\\xd5\\x61\\xf7\\x71\\xaf\\x56\\xca\\x03\\x13\\\n\\x8b\\x0b\\xfb\\x21\\xf8\\x57\\x97\\x28\\xb0\\xce\\x93\\x25\\x6f\\x30\\x8b\\xa1\\\n\\x49\\x52\\x8e\\xe4\\xd7\\xa6\\xfc\\xc7\\xbb\\x25\\x73\\xa7\\x4d\\x42\\x36\\x15\\\n\\x3a\\x61\\x96\\x08\\x6d\\x9c\\x41\\xc9\\xbc\\x30\\x84\\x91\\x7a\\xe0\\x29\\x37\\\n\\x0d\\x5b\\x27\\x7c\\x61\\x52\\x54\\xb2\\x54\\xf7\\x46\\xa4\\x26\\x9d\\xa3\\xc3\\\n\\x0e\\x3d\\xfc\\x20\\xa6\\x69\\x0d\\xb5\\x0a\\x42\\xd2\\x90\\x0b\\xd7\\x13\\xc7\\\n\\x16\\x3c\\xf0\\x7c\\x21\\x61\\x96\\x95\\x56\\x80\\xb6\\x14\\x34\\xcb\\x33\\xbb\\\n\\x08\\xd6\\x17\\xba\\x43\\x64\\xd4\\xce\\x9e\\x51\\x87\\x3e\\x30\\x08\\xba\\x29\\\n\\x5a\\xd7\\xbe\\x01\\x5a\\x16\\x66\\x30\\x66\\x29\\xae\\xed\\xfc\\x4d\\x28\\xd8\\\n\\x07\\x70\\x71\\x89\\x93\\x48\\x96\\x9d\\xea\\x7e\\x21\\xdb\\x7b\\x44\\xc4\\x92\\\n\\x15\\x77\\x12\\x15\\xca\\xa3\\xef\\x16\\x64\\x2d\\x17\\xb5\\xaa\\x0d\\x7a\\x89\\\n\\x19\\x06\\x05\\xbb\\xd5\\x78\\x96\\xee\\x22\\xb0\\x3e\\x39\\xb8\\x94\\xed\\xe4\\\n\\x5b\\x0b\\xbb\\xff\\x00\\x14\\xac\\x2e\\x5d\\xa1\\x35\\x7c\\xfd\\x38\\xf5\\x8c\\\n\\x1b\\xea\\x08\\x2a\\xda\\x28\\xec\\x92\\x1d\\x9c\\x55\\x9f\\x7c\\x19\\x61\\x4a\\\n\\x0e\\x9b\\xa6\\xac\\x73\\xe4\\xc5\\xc7\\x4d\\x1a\\x3d\\x1e\\xef\\x32\\x54\\xe9\\\n\\xa5\\x05\\x08\\xaa\\xd4\\x5b\\xb3\\x75\\x40\\x06\\x63\\x5e\\xcb\\xab\\x0f\\xed\\\n\\x68\\x4e\\x99\\xb3\\xad\\x49\\x94\\x94\\x85\\x03\\xfc\\x05\\x45\\x40\\xc3\\xbf\\\n\\x27\\xa0\\x31\\xbf\\x8d\\x5b\\x9c\\x5d\\x10\\x8d\\x10\\x8b\\x39\\x04\\xaa\\xfb\\\n\\x7f\\x2a\\xfa\\xf0\\x85\\xce\\xb3\\x48\\xda\\xba\\x80\\xc0\\x0a\\x25\\x23\\xe9\\\n\\x13\\x2d\\xba\\xf9\\xac\\x3b\\x15\\xcf\\x66\\x9e\\x51\\x36\\xd6\\x99\\x35\\x27\\\n\\xbf\\xa6\\xeb\\xcb\\x43\\x15\\x4e\\xd2\\xf7\\x95\\xd9\\x24\\x31\\x3c\\x4e\\xf3\\\n\\xc2\\x3d\\xa1\\x05\\x12\\x8d\\xd5\\x1a\\xcb\\x39\\x9a\\x30\\x3c\\x60\\xca\\x41\\\n\\x5c\\xdd\\x60\\x0a\\xbd\\xda\\xbc\\x2f\\x03\\x40\\x37\\x17\\xf3\\xdf\\x12\\xec\\\n\\xca\\x94\\x6f\\x23\\x60\\x62\\xc9\\x37\\x40\\x19\\x33\\x30\\x89\\x56\\xc5\\xd9\\\n\\xa6\\x4a\\x9a\\x95\\x12\\x93\\x75\\xc8\\x24\\x57\\x1a\\xc6\\x8b\\xd3\\x32\\x74\\\n\\x8c\\x82\\x83\\x76\\xfc\\xb4\\x00\\x5d\\xaa\\xe3\\xf1\\xf8\\xc6\\x34\\x58\\x98\\\n\\x9d\\x21\\x68\\x1b\\x45\\x04\\x1c\\xdc\\x0c\\x70\\xab\\x42\\xac\\x06\\x6a\\xef\\\n\\xa8\\xdd\\x4e\\x3c\\x3a\\x3c\\xa1\\x28\\xd1\\xb6\\x24\\x09\\xd3\\x56\\x92\\xb6\\\n\\xab\\xb1\\xaf\\x7f\\xa3\\xe1\\x1a\\x4b\\xda\\xdb\\x3a\\x09\\x97\\x62\\x75\\xa9\\\n\\x26\\xb7\\x68\\x12\\x3a\\xeb\\x76\\x88\\xb4\\x2e\\xdc\\x8d\\x6a\\xaf\\x60\\x4b\\\n\\x17\\x3e\\xbd\\x56\\x24\\xd9\\xe4\\x7b\\xa1\\xb4\\xcd\\x58\\x42\\x82\\x5d\\x9d\\\n\\xb0\\xcb\\x18\\xf6\\x87\\x4f\\x68\\x6d\\x4c\\xd9\\x66\\xd8\\xa9\\x56\\xc0\\xe2\\\n\\xec\\xb9\\xaa\\x49\\xbb\\x5b\\x94\\x4a\\xb3\\x10\\xbd\\x2d\\x6d\\x99\\x31\\x72\\\n\\xc4\\xf9\\xc6\\x46\\x21\\x7a\\xd5\\xde\\x3d\\xf7\\xbb\\xfb\\xe2\\x72\\xc2\\x8d\\\n\\xe5\\xb2\\x94\\x6a\\xea\\x0e\\x5f\\x7b\\x9a\\xfd\\x61\\x4b\\xbf\\x40\\x4b\\x61\\\n\\x4f\\x28\\x96\\x95\\x0a\\xde\\x27\\x69\\xf1\\xe0\\x28\\xdb\\xb7\\x71\\x8b\\x0c\\\n\\xe9\\x68\\x98\\x2f\\x04\\xb8\\x0a\\x77\\x02\\x9d\\xf1\\xec\\xcd\\xad\\x08\\xb5\\\n\\xba\\xf6\\x92\\xee\\x01\\xa8\\xc7\\x71\\xe9\\xbb\\xe3\\x4e\\x49\\x45\\x9a\\xd8\\\n\\x89\\xd2\\x9a\\x58\\x9a\\x35\\x97\\x50\\x6e\\x02\\x15\\xb5\\xf2\\x90\\x2a\\xf4\\\n\\xdd\\x16\\xd5\\xa0\\xcd\\x51\\x53\\x2a\\xf0\\xf9\\xaa\\xc0\\xfa\\x0f\\x58\\xb5\\\n\\xd8\\xc4\\xd4\\xcc\\x60\\xc1\\x41\\x98\\x51\\xc6\\xea\\x77\\x78\\x40\\xd1\\x97\\\n\\x7e\\x4f\\x33\\xf7\\x8b\\x08\\xf7\\x64\\x25\\x2a\\x18\\xb0\\xad\\x5b\\xc5\\xf3\\\n\\xe1\\xe7\\x8c\\xd9\\xb7\\x66\\x28\\x95\\xaa\\xa6\\x95\\x24\\x06\\xdc\\x32\\xf5\\\n\\x8b\\x44\\xf2\\x64\\xcd\\x09\\x98\\xa7\\x32\\xd6\\x06\\x22\\xa5\\x26\\x25\\x76\\\n\\x13\\x8f\\x67\\x38\\x06\\x9e\\x3f\\x58\\x72\\x9c\\x06\\x34\\xf1\\xc4\\xf3\\x89\\\n\\x65\\x72\\x2f\\x2d\\x69\\xa1\\x04\\x87\\xae\\x7d\\x79\\x44\\xbb\\x32\\xed\\x86\\\n\\xfb\\x5c\\xe0\\x29\\x4e\\xbf\\x22\\x2c\\x96\\x01\\x2e\\x70\\x98\\x5d\\x80\\xa9\\\n\\xfb\\x3f\\xe6\\x26\\xca\\x42\\xd6\\x36\\xf0\\x6f\\x4c\\x78\\x77\\xc5\\xb2\\xd2\\\n\\x2c\\xe8\\x62\\x94\\x91\\xc8\\x1e\\x0d\\x0b\\xd2\\x73\\xe4\\x5a\\x36\\xd4\\xa6\\\n\\x2b\\xa0\\x25\\x46\\x99\\x01\\x56\\x01\\xb0\\xa6\\x5c\\xe2\\xcf\\x3d\\x16\\xc9\\\n\\x62\\x65\\xc6\\x6d\\x9a\\x8a\\xf5\\xd6\\xf8\\x50\\x41\\xed\\x07\\x4b\\x33\\x2a\\\n\\xa1\\xb2\\x0d\\x83\\x3d\\x62\\x6d\\x95\\x12\\xe5\\xdf\\x12\\xd0\\x90\\x46\\xcb\\\n\\x24\\x7d\\xa2\\x7c\\xf2\\x65\\x34\\xbb\\xa9\\xd9\\x62\\xac\\x08\\xfc\\xe3\\xf6\\\n\\x8b\\x23\\x09\\xd7\\x7f\\xb1\\x2f\\x87\\xca\\x69\\xff\\x00\\x97\\x90\\x84\\x9c\\\n\\x45\\xc5\\x12\\x93\\x77\\xb8\\x87\\xcb\\x87\\xda\\xad\\x13\\x58\\x02\\xdb\\x8e\\\n\\xff\\x00\\x28\\x52\\x92\\x65\\xf3\\x0d\\x13\\x50\\xb4\\xa9\\xdc\\x94\\xa5\\x2a\\\n\\x22\\xa5\\xf2\\x7c\\xda\\x98\\xef\\xdd\\x0b\\xd2\\x08\\x92\\x42\\x0b\\x2d\\x6c\\\n\\x58\\x00\\x6f\\x28\\x8a\\xb5\\x28\\x38\\x5e\\x67\\xdf\\x8c\\x2b\\x48\\x4e\\x9b\\\n\\x74\\xcd\\xbb\\x25\\x04\\x6d\\x09\\x7d\\xb0\\x4e\\x02\\xf5\\xd6\\xe2\\x48\\x6c\\\n\\x1b\\x37\\x81\\x6f\\x4e\\xad\\x83\\xbe\\x44\\xa8\\x93\\x4c\\x6a\\xc5\\xeb\\xbb\\\n\\x2c\\xa2\\x4d\\xba\\xd2\\x6f\\xdf\\x12\\x96\\x04\\xb2\\x52\\x03\\x85\\x5f\\x7c\\\n\\xc1\\x00\\x1a\\x72\\x72\\xd5\\x18\\xc7\\xbf\\xa2\\x69\\x4c\\x95\\x24\\xcb\\x98\\\n\\xac\\xb2\\x2a\\x7c\\x31\\x74\\x9a\\xb0\\x07\\x1a\\x0c\\xa0\\x49\\x5a\\x47\\x6a\\\n\\xf1\\xcf\\xb5\\xf6\\xc2\\x24\\xc9\\x76\\xa7\\xcd\\xfa\\xc6\\xaf\\xe4\\xf0\\xa7\\\n\\x94\\x9d\\x6a\\x51\\x81\\x03\\x2c\\xcd\\x5a\\x2e\\xeb\\x5a\\xf9\\x29\\x7e\\x27\\\n\\x1f\\x18\\x54\\xd0\\x9d\\x97\\xec\\x81\\x5f\\x21\\xcf\\xd6\\x26\\x29\\x53\\x0b\\\n\\x82\\x43\\x61\\x5a\\xf3\\xf1\\xae\\x50\\x90\\xac\\xd6\\xb6\\xdc\\x54\\x59\\xa1\\\n\\x2e\\x9e\\xca\\x94\\x93\\xfd\\xa4\\x8f\\x31\\x1a\\x3b\\x48\\x29\\x13\\x0a\\x16\\\n\\xb5\\xba\\x5c\\x24\\xac\\x95\\x0f\\xfb\\x8b\\x1c\\xb1\\xdd\\xce\\x13\\x6c\\x9c\\\n\\xb4\\x85\\x31\\xa8\\x1d\\x91\\x25\\x43\\x0d\\xea\\x29\\x3f\\xf6\\x88\\xd2\\x96\\\n\\xb4\\xd9\\x10\\xa2\\xa5\\xbd\\x2a\\x0d\\x3a\\x11\\x69\\xd2\\xc6\\xd6\\xbd\\x82\\\n\\x44\\xbe\\xc9\\x29\\x24\\x87\\x07\\x86\\x75\\xe8\\x56\\x2c\\x56\\xb9\\x44\\x6a\\\n\\x9c\\x5e\\x2f\\xb4\\x4d\\x68\\x22\\x72\\x4d\\xa2\\x71\\x42\\x89\\x4a\\x5f\\x11\\\n\\x8f\\x4d\\x1a\\x1a\\xce\\x26\\x5a\\x92\\x5a\\xe9\\x42\\x68\\x43\\x55\\x80\\xaf\\\n\\x33\\x8f\\x42\\x2d\\xb3\\x95\\x69\\x9d\\x3a\\x42\\xc0\\x64\\x6c\\x82\\x0d\\x48\\\n\\x6c\\x63\\x49\\x58\\x7d\\xd2\\x71\\xba\\x57\\x71\\x45\\xdc\\x8c\\x18\\x70\\xeb\\\n\\x38\\x96\\xd3\\x52\\x10\\x1d\\xee\\xb1\\xa6\\xe6\\xf2\\xf3\\x81\\x62\\x9f\\xab\\\n\\x96\\x89\\x72\\xca\\xe8\\x01\\x71\\xd7\\x9f\\xda\\x3d\\x9a\\xf6\\x72\\x72\\x94\\\n\\xa9\\x89\\xb4\\x2a\\x58\\x17\\x0c\\xc4\\x29\\xa9\\x79\\xf0\\x3f\\xb8\\x57\\xb8\\\n\\xe8\\x7b\\xc7\\x5b\\xae\\x9d\\x30\\x5d\\x09\\x20\\x01\\x78\\xe0\\x1c\\x56\\x27\\\n\\x69\\xc9\\xb3\\x7e\\x10\\x94\\x84\\x02\\x59\\xd0\\x54\\x54\\xe7\\xaf\\xac\\x5a\\\n\\x57\\x7d\\x05\\x13\\x8a\\xce\\x2e\\x68\\xf5\\x7e\\xbe\\xb0\\x9b\\x0a\\x16\\x9b\\\n\\xb2\\x24\\xdd\\x52\\x89\\x75\\xa8\\x31\\x56\\x34\\x77\\xdf\\x1a\\x02\\x41\\xb3\\\n\\xca\\xf8\\x80\\x24\\x21\\x2e\\x77\\x10\\xce\\x7b\\xba\\xc6\\x3d\\xb0\\xf6\\xa1\\\n\\x52\\xde\\x4d\\x8d\\x40\\x20\\xec\\xb2\\x54\\x79\\x72\\x68\\x9d\\x72\\x74\\xc5\\\n\\x4f\\x9f\\x28\\x4d\\x9e\\x7f\\xe6\\x28\\xed\\x70\\x1d\\xd9\\x42\\x57\\xb6\\x47\\\n\\x65\\x21\\xc0\\x03\\x9c\\x4d\\x52\\xa8\\x46\\xd6\\xfe\\x7d\\x78\\x44\\xbd\\x90\\\n\\x73\\x21\\xb1\\xef\\xc6\\x12\\xb5\\x13\\x86\\xc6\\x67\\x30\\x77\\x36\\x11\\x26\\\n\\x44\\xeb\\x42\\x9a\\xce\\xea\\x98\\xe5\\x93\\xbd\\x85\\x70\\xe0\\xfd\\x08\\xd1\\\n\\x42\\x7d\\x9d\\x7f\\x19\\x21\\x0a\\xc3\\x13\\xd6\\x5e\\x71\\xa6\\x6d\\xaa\\xd2\\\n\\x22\\x41\\x51\\x12\\xb5\\x28\\x4a\\x36\\x0b\\xde\\xba\\x02\\x6b\\x7b\\x7b\\x64\\\n\\xf0\\x90\\x6f\\x2e\\xf2\\x94\\xa0\\x48\\x67\\x63\\x86\\x38\\xc0\\x21\\x1b\\xee\\\n\\xe7\\xbc\\x72\\xa9\\x84\\xcb\\x5c\\xca\\xca\\x45\\xf1\\xbd\\xba\\xca\\x27\\x21\\\n\\x40\\xa8\\x28\\x5c\\x29\\x2d\\xdf\\xf9\\x85\\xc9\\x5a\\x9e\\xf2\\x8b\\x01\\x46\\\n\\xa6\\x1e\\x10\\xa9\\x4a\\xbe\\x10\\xe6\\xe9\\x21\\x38\\xe4\\x7f\\x70\\xb4\\x89\\\n\\x60\\xd7\\x0d\\xfc\\x5b\\xe9\\x0b\\x9e\\x50\\x94\\x6a\\xd3\\x7d\\xcd\\x7f\\xdd\\\n\\xf6\\xac\\x68\\x9d\\x19\\xef\\x57\\x26\\x4d\\x2b\\x48\\x50\\x76\\x09\\x0d\\xf7\\\n\\x8b\\x66\\x83\\xb2\\xa2\\x40\\x29\\x2a\\x26\\xee\\xe1\\xbb\\x36\\xf0\\xac\\x48\\\n\\x9f\\x26\\x4a\\xcc\\x9d\\x5b\\x35\\x2f\\x61\\x89\\x22\\x9b\\xee\\xb5\\x5b\\x23\\\n\\xbe\\x27\\x00\\x84\\x5c\\x13\\x54\\x41\\x65\\x02\\xcc\\xa0\\xf5\\xcb\\x76\\x1f\\\n\\x48\\x9e\\x2e\\x03\\x31\\x33\\xd7\\x79\\xfb\\x3b\\x2c\\x39\\xb8\\x27\\xcf\\x0e\\\n\\xe8\\xb7\\x4e\\x54\\xe6\\x4f\\x66\\x9d\\xb4\\xf2\\x23\\x79\\x19\\xd0\\x11\\xdd\\\n\\x9c\\x5a\\x65\\xcb\\x9c\\x2f\\x96\\x74\\xd4\\x6c\\x8c\\xa9\\x87\\x18\\xd1\\xb3\\\n\\xd4\\x94\\x29\\x04\\x01\\xb6\\x7f\\xf1\\x7e\\x5e\\x10\\x54\\xa5\\x24\\x14\\x87\\\n\\x3b\\xbf\\xea\\x89\\xc8\\x52\\xec\\x62\\xf2\\x40\\x55\\xc0\\x59\\x8e\\x5d\\x52\\\n\\x2c\\xb3\\x94\\x66\\x29\\x33\\x90\\x13\\x29\\x4a\\xb8\\x95\\x3b\\xf2\\xbc\\x9d\\\n\\xfc\\x71\\xc0\\x36\\x2a\\x87\\x92\\x2d\\x08\\x67\\x0b\\x4a\\x0a\\x4e\\xca\\x76\\\n\\x86\\xc9\\x77\\x77\\xca\\x97\\x9b\\x3a\\x92\\xed\\x24\\xa8\\xa6\\x6a\\x90\\x94\\\n\\xa9\\x41\\x00\\x80\\x68\\x93\\x75\\x2c\\x97\\x55\\x71\\x2f\\x80\\xa6\\x62\\xa2\\\n\\x2d\\xd3\\x2d\\x60\\x1d\\x5c\\x84\\x15\\x1c\\x76\\x95\\x8b\\x7e\\x4b\\x01\\xe5\\\n\\x16\\x64\\xda\\xd5\\x21\\x1a\\xf9\\x48\\x4a\\x8d\\x1d\\x2e\\xc0\\xde\\x61\\x8d\\\n\\x38\\xe3\\x13\\xe5\\xcb\\x94\\x83\\xf1\\x1d\\x4b\\x4a\\xc3\\x16\\x0d\\xd0\\xe3\\\n\\xf8\\x12\\xd0\\x95\\x2e\\x65\\x0c\\xca\\xba\\xab\\x82\\x43\\xdd\\x0e\\xf7\\x43\\\n\\x35\\xe6\\xc7\\x1a\\x51\\x94\\xab\\xe1\\x8c\\xbe\\x9f\\x89\\xfd\\x42\\x65\\xca\\\n\\x08\\x49\\xda\\x70\\x14\\x2e\\xd6\\xed\\x4e\\x26\\xb0\\x99\\x88\\xbc\\xa0\\x4d\\\n\\xc6\\x4b\\xa5\\x4e\\x6a\\x77\\x57\\xc3\\x7c\\x4b\\x97\\xaf\\x9f\\xae\\x54\\xb4\\\n\\xbc\\xba\\x85\\xbd\\x4e\\xe7\\x2c\\xc5\\x85\\x52\\xee\\xc6\\xb4\\x8b\\xe5\\x43\\\n\\x01\\x12\\x56\\xd3\\x75\\x44\\x6c\\x96\\x37\\xb3\\x0f\\xc3\\x93\\x44\\xe9\\xf7\\\n\\x41\\x97\\x2d\\x28\\x2e\\x0d\\xd2\\xa7\\x29\\x0a\\x1d\\x97\\x03\\x8f\\x26\\x83\\\n\\xad\\x08\\x52\\x8f\\xf5\\x54\\x4e\\x05\\xc0\\x0f\\x46\\x70\\x81\\x41\\x57\\xba\\\n\\x1f\\x8c\\x09\\x77\\xbb\\x4a\\x2e\\xd5\\x84\\xd9\\xc0\\x06\\xa6\\x0c\\xb0\\x94\\\n\\x95\\x6e\\xca\\x2f\\xf0\\x89\\x60\\x15\\x03\\x74\\x38\\x00\\xe7\\x5c\\x3f\\x31\\\n\\xfe\\x65\\x6b\\x92\\xc8\\x91\\x65\\xb3\\xa9\\x00\\x62\\xb9\\x93\\x41\\x7f\\xfa\\\n\\x50\\xa0\\xd1\\xa6\\xc8\\xb6\\xa8\\x25\\xdd\\x0a\\x67\\xdd\\xd6\\x39\\x44\\x9d\\\n\\x19\\x67\\x12\\x6e\\x4b\\xba\\x54\\x76\\xae\\x81\\xbf\\x85\\x05\\x5a\\x2d\\x52\\\n\\xd7\\x62\\xb7\\x21\\x29\\x0b\\x75\\x5e\\x09\\x48\\x07\\x27\\x7a\\x8d\\x91\\xc1\\\n\\xd9\\xf0\\x18\\x44\\x89\\x64\\xcb\\x13\\x56\\x96\\x53\\x3e\\xff\\x00\\x3e\\x51\\\n\\xa0\\x6e\\x2a\\x69\\x58\\x6b\\xa1\\x38\\xf7\\x57\\xa1\\x13\\x88\\x4d\\xbe\\x7b\\\n\\xd1\\x25\\x74\\x51\\xc1\\x5d\\x72\\x8b\\x55\\x9a\\x4d\\xa4\\x84\\xb0\\x53\\xf5\\\n\\xe1\\x1a\\x3b\\xd9\\xa9\\xcb\\xb4\\x38\\x90\\x75\\x6f\\x8d\\x3e\\xf1\\x23\\x41\\\n\\xd9\\x2c\\xb2\\x14\\xb9\\xd7\\x50\\x42\\x73\\x18\\x10\\x38\\x45\\xa2\\xd1\\x33\\\n\\xde\\xa6\\xcb\\xb3\\xdb\\x7d\\xd4\\x4b\\x3f\\x2d\\xe1\\xac\\x72\\x5b\\x01\\x93\\\n\\x67\\xbe\\x14\\xb9\\xeb\\x9b\\x2e\\xfa\\xd5\\x3c\\xde\\x0c\\x4e\\x45\\xe9\\x8c\\\n\\x58\\xd0\\xb9\\x96\\xd4\\x85\\xe5\\x82\\x78\\x9a\\x7e\\x47\\x84\\x4c\\xd1\\x35\\\n\\xd7\\xad\\x29\\x09\\x53\\x6d\\x16\\xc0\\x06\\xfa\\x44\\xa4\\xd9\\x84\\xe4\\xcb\\\n\\x42\\xd0\\xa5\\x3d\\x42\\x71\\x1c\\x79\\x77\\xc7\\xb4\\x5e\\xd2\\x4b\\xb1\\x5e\\\n\\xb0\\xd8\\xe6\\x05\\xda\\x8a\\x08\\x54\\xb4\\xd1\\x40\\x10\\x41\\x38\\x00\\xc3\\\n\\x9f\\xa4\\x4e\\x58\\x9c\\x6f\\xcc\\x9d\\x78\\xe2\\x1d\\xce\\x3d\\xd0\\x48\\x28\\\n\\xd6\\x1e\\xce\\x0f\\xca\\x90\\xa2\\x57\\x7b\\x52\\xea\\x53\\xe5\\x90\\x24\\xd6\\\n\\xb8\\xc1\\xbe\\x4d\\xc0\\x82\\xe3\\x1f\\xed\\xeb\\x7e\\x51\\x30\\xa2\\xe3\\x05\\\n\\x55\\x8f\\x8f\\xa6\\x30\\x27\\xcd\\x4a\\x6e\\xa4\\x62\\xac\\x80\\x7a\\xc7\\xb2\\\n\\xd6\\x7b\\x35\\x9e\\x4f\\xbe\\x5a\\x19\\x37\\x50\\xa7\\xbd\\x5e\\xd8\\x60\\x37\\\n\\x9c\\x72\\x7e\\xe8\\xd2\\x5a\\x46\\xca\\x8b\\x5a\\x94\\xa9\\x89\\x95\\x2a\\xf3\\\n\\xde\\x2e\\xcd\\xe0\\xf0\\x6d\\xf2\\xe6\\x76\\x66\\x6c\\x9a\\x83\\x56\\x29\\xc4\\\n\\x33\\xe5\\xb9\\xda\\x26\\x4d\\xec\\x5d\\x2e\\xef\\x81\\x68\\x41\\x5c\\xdd\\x87\\\n\\x2e\\xa6\\x00\\x3b\\xe7\\x1a\\x26\\xc2\\x84\\x59\\x1c\\xa4\\x12\\xc2\\x34\\xed\\\n\\x80\\x6a\\xcc\\xd9\\x09\\xbc\\xb3\\xb4\\xa0\\x06\\x07\\xa1\\x09\\xb5\\xa0\\x93\\\n\\x26\\x62\\x82\\x66\\x23\\xe5\\x38\\xd6\\x26\\x2a\\xe2\\xc2\\xce\\xf4\\xb6\\x75\\\n\\x71\\x5f\\xa4\\x4c\\x59\\x2a\\x55\\xe5\\x02\\x15\\x80\\x6c\\xa9\\xd7\\xee\\x2c\\\n\\xa3\\xde\\x2d\\x5a\\x99\\x5b\\x65\\x04\\x05\\x0d\\xcf\\x5d\\xcd\\x47\\xe7\\xe7\\\n\\x1a\\x3e\\xcf\\x2e\\x45\\x8a\\x50\\x2c\\x16\\x5a\\x9c\\x1b\\x86\\xe8\\x9e\\xa1\\\n\\x70\\xdf\\xc8\\x16\\x7e\\x47\\xaa\\xc4\\xeb\\x44\\x94\\xcf\\x2c\\xa4\\x5e\\xdc\\\n\\xd5\\xc7\\x96\\x7b\\xf1\\xc7\\x8c\\x4c\\xb7\\x0c\\x35\\x8f\\x41\\x44\\xd5\\xfb\\\n\\xf8\\x79\\x42\\xa7\\x4c\\x98\\xf5\\x60\\xce\\xa0\\xf4\\xff\\x00\\x57\\x7e\\x62\\\n\\x8f\\xba\\xa6\\x16\\xae\\x22\\xbe\\x9e\\x0d\\xbe\\x99\\x77\\xc5\\xce\\x6c\\x73\\\n\\x7a\\xe3\\xbf\\x1c\\x69\\xc2\\x24\\x20\\x20\\x8e\\xfe\\x18\\xb8\\xe8\\xf8\\xc4\\\n\\x95\\x94\\x5d\\x56\\x61\\xe9\\xce\\xf7\\xde\\x27\\x5b\\xd7\\x76\\xed\\xe0\\x86\\\n\\x6a\\x91\\x47\\xdd\\x8e\\x1d\\x3c\\x28\\x4e\\x2b\\x9a\\xf2\\xc2\\xa5\\x92\\x6e\\\n\\x2b\\x64\\x86\\x6c\\x92\\xf7\\xaf\\x65\\xb4\\xc0\\xe2\\xef\\x48\\x54\\xc4\\x5c\\\n\\x49\\x4d\\x54\\x3b\\x78\\x85\\x27\\x75\\xe7\\xae\\xf7\\x67\\x1e\\x51\\x64\\x98\\\n\\x85\\x80\\x52\\xa0\\xe1\\x86\\x75\\xcf\\x0c\\x32\\xcf\\xd2\\x1d\\x04\\x80\\x71\\\n\\xe5\\xdd\\x56\\x7e\\xe8\\xd2\\x53\\xc4\\x89\\x65\\x20\\x84\\x07\\xed\\x11\\xe8\\\n\\x38\\xfa\\xb3\\x8a\\xc0\\xb4\\xce\\x9a\\x66\\x9d\\x5e\\xc7\\xc9\\x32\\x9b\\x79\\\n\\x1c\\x2a\\x3b\\xfb\\xa2\\x48\\x50\\x52\\xcc\\xd0\\x53\\x42\\x71\\xe9\\xa9\\x12\\\n\\xec\\xba\\xdf\\xe9\\xa0\\xaf\\x93\\xfd\\xe2\\xcd\\xa1\\x27\\xae\\x5a\\x56\\xa9\\\n\\x25\\x8b\\xee\\x7c\\xf7\\xe2\\xdb\\xa0\\x68\\x14\\x2d\\x82\\xa5\\x2d\\x35\\xa1\\\n\\x21\\x2d\\xdd\\x9f\\x8f\\x18\\xd2\\x1a\\x2f\\xdd\\xe5\\xdd\\xb3\\xcb\\x27\\x67\\\n\\x17\\x18\\xba\\x5b\\x1e\\xf3\\x47\\x31\\x2e\\x58\\x29\\x17\\x6b\\x80\\xf1\\xa5\\\n\\x62\\xd0\\xa1\\x2c\\x0a\\xb4\\xc2\\xaa\\x0c\\xee\\x9c\\x3b\\x94\\x42\\xb3\\xab\\\n\\x40\\x9a\\xaa\\xdf\\xa2\\x9e\\x83\\x87\\x59\\x63\\x12\\xca\\x16\\xd7\\x8e\\x70\\\n\\xcc\\x4b\\x61\\x97\\x28\\x0a\\x0d\\xc6\\x14\\x09\\x42\\x9a\\xbb\\xa2\\xe9\\x0e\\\n\\xe2\\x25\\x03\\x42\\x45\\x0a\\x69\\xe5\\x13\\x24\\xdf\\x59\\x50\\xb4\\x4d\\x4b\\\n\\xfc\\xa1\\x45\\x87\\x2d\\xdc\\xa2\\xd7\\x45\\x8d\\xdf\\xb8\\xb1\\xa1\\xd9\\x67\\\n\\x97\\xd6\\x27\\x59\\x6c\\x76\\xa7\\x50\\x0f\\x35\\x14\\x72\\x9f\\xf7\\x1f\\x0e\\\n\\x11\\x65\\xb1\\x99\\x8a\\xd5\\xb5\\x07\\x4d\\xca\\xbd\\x56\\x34\\x1d\\x8b\\x54\\\n\\x99\\xd4\\xc1\\x4b\\xe1\\x99\\xe9\\xbf\\x11\\x69\\xd1\\xea\\xb4\\xda\\x2f\\xa5\\\n\\xc0\\x94\\x72\\x38\\xf5\\x58\\x45\\x9a\\x54\\x99\\x77\\x96\\xce\\x1b\\x8f\\x08\\\n\\xb2\\xcd\\xb8\\xda\\xb7\\x6e\\x1d\\x79\\x45\\xb2\\x7c\\xe5\\xa2\\xe3\\xd0\\xd3\\\n\\xe9\\xe3\\xd7\\x34\\xe8\\x77\\x33\\x26\\xab\\x15\\x31\\x1d\\x1f\\xd4\\x5a\\x47\\\n\\xbb\\xcc\\x71\\x4b\\x86\\xf3\\xf2\\x8b\\x35\\xb4\\xeb\\xb5\\xce\\xaf\\x48\\xb2\\\n\\xda\\xff\\x00\\xcc\\x81\\x94\\x67\\xdd\\xc8\\x07\\xa8\\xa5\\x69\\x91\\x8b\\x5d\\\n\\x89\\x3a\\x22\\x54\\xfb\\x60\\x99\\x7c\\xa5\\x04\\x92\\xa2\\xfc\\x6b\\x16\\x9b\\\n\\x7a\\xad\\xb6\\xb9\\x9a\\x47\\x17\\x26\\x5b\\xe3\\xbc\\x7e\\xde\\x16\\x86\\x11\\\n\\x3b\\x59\\x77\\x74\\xba\\x70\\xe6\\x79\\xc5\\x89\\x56\\x54\\x4a\\xbf\\x31\\x92\\\n\\x13\\xb3\\x56\\xc5\\x5e\\x98\\x37\\x7c\\x4f\\x9b\\x2a\\x64\\xd5\\x99\\x38\\x3f\\\n\\x27\\xe7\\xbd\\x85\\x20\\x54\\xc6\\x87\\x91\\x67\\xbd\\xef\\x36\\x86\\xd5\\x21\\\n\\x4d\\x5c\\x1c\\x37\\xe2\\x34\\x9e\\x96\\x50\\x98\\x99\\x3a\\x3c\\x8d\\x41\\x6b\\\n\\xe5\\xc3\\x67\\x90\\xc4\\xbe\\xee\\xfc\\xc4\\x07\\xb5\\x38\\x9c\\x01\\xc9\\xf1\\\n\\xf5\\xc3\\x1e\\x38\\x77\\x41\\x50\\x95\\x4c\\x42\\x0b\\x0a\\x73\\x15\\x84\\x5a\\\n\\x6f\\xe0\\xfb\\x34\\xa5\\x3a\\xef\\x89\\x76\\xcd\\x52\\x92\\xa3\\x7b\\x64\\x8e\\\n\\xb1\\x8d\\x11\\x6a\\xd6\\xd8\\xd2\\x5e\\x85\\x23\\xd2\\x2e\\xca\\x9c\\x95\\x4b\\\n\\x35\\x38\\x1f\\x4e\\x8c\\x69\\x7d\\x09\\x29\\x13\\x35\\xe9\\x4b\\x12\\x4b\\x9e\\\n\\xb8\\xe0\\xc6\\x17\\x2e\\xf9\\xba\\x7e\\x43\\xff\\x00\\x8d\\x62\\x64\\x90\\xd4\\\n\\xcb\\xcb\\xaf\\xc6\\x11\\xec\\xfe\\x89\\x0a\\x58\\xb5\\x33\\xde\\x35\\x60\\x1e\\\n\\x94\\xaf\\x87\\xd6\\x13\\x2e\\x89\\x47\\xf1\\xfb\\x46\\x92\\x98\\x25\\x4b\\x57\\\n\\x04\\x9f\\x21\\xd7\\x8c\\x2d\\x49\\x36\\x85\\x5e\\x72\\x5c\\x12\\xc1\\xc6\\x79\\\n\\xe1\\xc8\\x3e\\xfc\\x89\\x89\\x94\\x5e\\xc4\\xb1\\xd9\\xed\\x2c\\xfe\\xe1\\x26\\\n\\x61\\x0a\\x1b\\x22\\x8c\\xe3\\x73\\x78\\x44\\xc4\\x9c\\x89\\x76\\x1c\\x9a\\xf1\\\n\\xcb\\x07\\xfc\\x46\\xb5\\x40\\xb3\\x12\\xd8\\xed\\x9f\\xb4\\x1b\\x59\\x42\\x92\\\n\\x4e\\x07\\x8b\\xec\\xf1\\xe7\\xf6\\x84\\x5a\\x0c\\xc5\\x22\\xa4\\x26\\xae\\x37\\\n\\xee\\xf0\\x04\\x45\\xcb\\xec\\x05\\x5f\\x07\\xeb\\x1f\\xa4\\x4c\\xb2\\x4e\\x96\\\n\\x82\\x55\\x7c\\x0a\\x17\\xc9\\x9e\\x8a\\xa5\\x3d\\x22\\x62\\x26\\x21\\x2a\\x13\\\n\\x31\\x52\\x9d\\x27\\x80\\x7c\\xf3\\xc6\\x24\\xda\\x4d\\x9b\\x54\\x42\\x41\\x1a\\\n\\xc4\\x13\\x47\\xa3\\xdd\\x51\\x15\\x15\\x02\\xae\\x79\\xd6\\x05\\xaa\\xcb\\xee\\\n\\x9e\\xf0\\x59\\x20\\x26\\xae\\x2a\\xed\\x97\\x18\\xd2\\x33\\xd3\\x6a\\xbe\\x12\\\n\\xec\\xf4\\x07\\x73\\x53\\xbf\\xc5\\xa2\\x5c\\xa5\\x2c\\x04\\x23\\xe5\\x35\\xcb\\\n\\x1f\\xcc\\x49\\xd1\\xa6\\x62\\xc2\\x0a\\x83\\xa8\\x8a\\x0d\\xdd\\x75\\xba\\xc9\\\n\\xa3\\x44\\x99\\x9b\\x60\\x26\\x53\\xe1\\xf3\\x1e\\xd5\\x4a\\x85\\x6b\\x42\\x96\\\n\\x6c\\x3b\\xa1\\x53\\x65\\x4b\\x55\\xd9\\x00\\x04\\x00\\x19\\x92\\x90\\x5d\\x9c\\\n\\xd6\\xeb\\xf7\\x39\\xe6\\xf1\\x68\\x9c\\x00\\xbf\\xbd\\x62\\xf2\\x9e\\xb8\\x16\\\n\\xc4\\x57\\x77\\xea\\x34\\x85\\xa3\\x56\\x87\\xc4\\xdd\\xae\\x67\\xae\\x34\\xc0\\\n\\x61\\x16\\x69\\x79\\x51\\xf6\\x5f\\x1c\\x5f\\xcf\\xca\\x17\\x62\\x91\\x3a\\xce\\\n\\xf8\\x90\\x7b\\x43\\x85\\x68\\x72\\xc5\\xe9\\xbe\\x3d\\xda\\x52\\x92\\x45\\xd7\\\n\\x51\\x59\\x21\\x45\\xc8\\xc7\\xfb\\xab\\x86\\x4d\\x47\\x1c\\xa2\\x64\\xbd\\x51\\\n\\xac\\x6a\\x5f\\x06\\xc3\\x7c\\x6a\\x39\\x78\\x98\\x12\\x5b\\xaf\\xc4\\x4d\\x94\\\n\\xf4\\x3e\\x3d\\x79\\x40\\x4e\\xca\\x72\\xa0\\xf2\\x8e\\xe8\\x5a\\xe4\\xae\\x59\\\n\\x0b\\x92\\x9b\\xd8\\x39\\x03\\x3d\\xdc\\x9f\\xcf\\x9c\\x4a\\xb4\\xfb\\xb5\\xa0\\\n\\xd9\\xd4\\x4d\\xd0\\x94\\xcc\\x0f\\x83\\x2e\\xf0\\x6c\\x9d\\x9b\\x76\\xee\\x10\\\n\\xab\\x4b\\xad\\x26\\x5e\\xc8\\x2e\\xe5\\x34\\xc8\\xe2\\xdb\\xfc\\xab\\x9c\\x68\\\n\\xf3\\x9d\\xda\\xff\\x00\\x21\\x8f\\x8f\\x74\\x59\\x6f\\x4a\\x0b\\x60\\x6a\\x55\\\n\\xde\\xe5\\xfa\\xf1\\x81\\x68\\xbb\\x31\\x49\\x08\\x60\\xac\\x58\\x67\\xbe\\x13\\\n\\x65\\x4d\\xa9\\x21\\x2a\\x00\\x05\\x62\\x7c\\xff\\x00\\x31\\x3e\\xd3\\x63\\xd1\\\n\\xa9\\xb8\\xa1\\x2c\\x94\\xf2\\x77\\x8b\\x56\\x9e\\x9f\\x3a\\x62\\x85\\x9e\\xcd\\\n\\x79\\x17\\x8d\\xd5\\x04\\xd0\\x88\\x95\\xa6\\xad\\x17\\x0a\\x66\\xc8\\x6a\\x52\\\n\\x8c\\xfb\\xe2\\xdb\\x6b\\x4a\\xca\\x96\\xb4\\xb5\\x30\\x35\\x0d\\xf9\\x89\\x96\\\n\\xd4\\xa4\\x6c\\x8f\\x0d\\xdb\\xe3\\x44\\xcd\\x9b\\x3a\\xd9\\x67\\x32\\x94\\xa4\\\n\\xde\\x56\\xd5\\xd2\\xd7\\x86\\x01\\xf7\\xc6\\x97\\xb0\\xcd\\xb5\\x59\\x75\\x12\\\n\\x65\\x85\\x2d\\x48\\xf8\\x94\\xed\\x25\\xb0\\x3d\\xf1\\x6c\\xf6\\x77\\x48\\x58\\\n\\x26\\x4c\\x06\\x40\\x4c\\x87\\x52\\xb5\\x60\\x5d\\x40\\xa9\\x25\\x4d\\x85\\x23\\\n\\x01\\x5f\\x3f\\xcc\\x29\\x49\\x99\\x24\\x24\\x25\\xd2\\x54\\x6b\\xbc\\x57\\xca\\\n\\x91\\x31\\x05\\x52\\xcc\\xb0\\x58\\x15\\x0a\\x62\\x31\\xdd\\xbe\\x24\\xcb\\x5a\\\n\\xd5\\x72\\x44\\xa6\\x39\\x90\\x2b\\xcd\\xc0\\xca\\x36\\x12\\x48\\x08\\x49\\x55\\\n\\x2a\\xd8\\x13\\xfa\\x83\\x2d\\x57\\x2e\\x02\\xc8\\x25\\xcc\\xa0\\x1d\\x25\\x59\\\n\\xa8\\x87\\xe4\\x37\\x30\\xe7\\x12\\xac\\xf7\\x5a\\x81\\x83\\xd2\\xeb\\x63\\xcc\\\n\\xc5\\xde\\x50\\xa9\\x6e\\x54\\xf5\\xa9\\xf5\\x30\\x99\\x49\\x4e\\x09\\x48\\xdf\\\n\\x48\\xd5\\x3d\\x18\\x78\\x46\\x80\\xb6\\xa4\\x24\\x49\\x2a\\x66\\xa1\\x4f\\xd1\\\n\\xa1\\x32\\xc5\\xe2\\xb4\\xe0\\xad\\xa8\\xb4\\x48\\x44\\xd9\\x6a\\x4a\\x92\\x15\\\n\\x4c\\xc3\\xc5\\xae\\xc8\\x9b\\x3c\\xf2\\x0a\\x00\\xbc\\x76\\x76\\x5b\\x1e\\x5c\\\n\\xfc\\x23\\xdd\\x0a\\xe6\\x01\\x91\\x3d\\x9d\\xfc\\xbb\\xfe\\xf1\\xa2\\xac\\xa2\\\n\\x45\\x9a\\x52\\x6e\\x80\\xa0\\xee\\xc3\\xfb\\x89\\xeb\\x84\\x2a\\x5a\\x98\\x10\\\n\\xe1\\x8d\\x4f\\x06\\x3f\\x8f\\x08\\xf6\\x9e\\xd1\\x76\\x49\\x4a\\x09\\x0a\\x6c\\\n\\xb3\\xa6\\x5b\\xde\\x14\\x82\\xb3\\x78\\x93\\x8d\\x18\\xb0\\xa7\\xde\\x2f\\xd5\\\n\\x94\\xae\\x77\\xb1\\x34\\xa7\\x74\\x4d\\x9b\\x75\\x0c\\x85\\x0b\\xc6\\x82\\xef\\\n\\xaf\\x28\\x33\\x6e\\xa4\\x3a\\x8a\\x88\\x0e\\x54\\xfd\\xae\\xbc\\xe2\\x6a\\xa5\\\n\\x24\\x30\\x4b\\x15\\x07\\xff\\x00\\x76\\x7f\\x63\\xbe\\x14\\x12\\xb0\\xcc\\xf7\\\n\\x59\\x9e\\xac\\x68\\x7b\\xb2\\x31\\x63\\x4a\\xd5\\x6a\\x93\\x52\\x52\\xcb\\xbc\\\n\\x31\\x1d\\x93\\xf6\\xf1\\xef\\x8b\\x24\\x96\\x4a\\x42\\xb1\\x09\\x2c\\xe1\\xa8\\\n\\xf4\\xae\\x79\\x41\\x00\\xa1\\x2e\\x01\\xd9\\x03\\xd2\\x0c\\x99\\x2b\\x2b\\x4a\\\n\\xa5\\x4b\\x51\\x73\\x72\\xf2\\x46\\xf2\\x1b\\xd2\\x2d\\x72\\x1e\\xd3\\x24\\x35\\\n\\xc4\\xa6\\x70\\x74\\xa7\\x65\\x37\\x6a\\x3a\\xc0\\xbe\\xfc\\xf4\\xc2\\x25\\x23\\\n\\x46\\x59\\xa4\\x4a\\x42\\x01\\x5b\\x5e\\x6c\\x54\\x12\\xc4\\xd7\\x79\\x6c\\x69\\\n\\x8c\\x49\\xb0\\xcd\\x9a\\xb5\\x2a\\xbb\\x5b\\x41\\x15\\xe9\\x22\\x2c\\xfa\\x29\\\n\\x72\\x92\\x4a\\xd3\\x2d\\x06\\x68\\x65\\x00\\xea\\x56\\xc9\\x7b\\xaf\\xc8\\xb1\\\n\\x6c\\x71\\x0d\\x16\\x3b\\x15\\x9e\\x52\\x28\\x10\\x92\\xe4\\x8a\\x35\\x7d\\x43\\\n\\x7e\\x4c\\x4e\\x42\\x13\\xdb\\x50\\x38\\xd0\\xf5\\x5a\\x44\\xfb\\x54\\x84\\x05\\\n\\x25\\x08\\x28\\x96\\x94\\xde\\xbc\\x10\\x45\\x48\\x72\\x06\\x27\\x99\\x6e\\x15\\\n\\x8b\\x4d\\xa9\\x4b\\x43\\xa2\\x62\\xb6\\x4e\\xc8\\x52\\xb1\\x34\\xc5\\xdc\\xde\\\n\\xba\\x4b\\x9e\\x71\\x2e\\x72\\xe7\\x4d\\x54\\xa9\\x84\\xac\\x5d\\xa3\\xd5\\xd8\\\n\\x87\\x03\\x26\\xaf\\xac\\x58\\xa4\\x26\\x5a\\x14\\xa9\\xa8\\x4a\\x80\\x00\\xde\\\n\\x50\\xa7\\x0e\\xb8\\x45\\xaa\\xdd\\x2a\\x5a\\x0a\\x00\\x4a\\x19\\x54\\xbb\\x41\\\n\\xbb\\x76\\x54\\xa0\\xa9\\x0d\\x93\\x44\\xb0\\xb3\\x2c\\xcf\\x54\\xc5\\x16\\xd9\\\n\\x09\\x26\\x95\\xa0\\x27\\x96\\x3c\\x3d\\x25\\x68\\xe5\\x5a\\x52\\x54\\xa2\\xee\\\n\\x0d\\xde\\x79\\x52\\xaf\\xd7\\x21\\x3f\\x47\\xa5\\x09\\x0a\\x97\\x26\\x50\\x9d\\\n\\x71\\x29\\x5a\\x80\\x70\\x48\\x48\\x15\\xef\\xa3\\xfd\\x5a\\x13\\x64\\x9b\\x32\\\n\\x5b\\x14\\x26\\x5a\\xc5\\x4a\\x98\\x17\\x37\\x70\\x62\\x68\\x97\\xe3\\x94\\x4c\\\n\\xb0\\x4c\\x94\\xf3\\x09\\x52\\xee\\x57\\x56\\x9f\\x9b\\xc4\\xf1\\xc2\\x25\\xc9\\\n\\xd7\\x2c\\xe2\\x33\\x29\\x50\\xc3\\x86\\xee\\x71\\xee\\xee\\x66\\x14\\x00\\xa4\\\n\\xa4\\x91\\x4f\\x48\\x28\\xff\\x00\\xfa\\x87\\xfb\\x4c\\x09\\x28\\xb7\\xcb\\xd6\\\n\\xa0\\x6a\\xe8\\xe0\\x76\\xbe\\xc3\\xf5\\x06\\x4c\\xf5\\xcd\\x52\\x57\\x67\\x65\\\n\\xa4\\xdd\\x4c\\xcb\\xd7\\xaf\\x23\\x26\\xa7\\x3c\\x70\\x3e\\x31\\x66\\xb1\\x29\\\n\\x32\\xea\\x2e\\x9c\\x5c\\xf5\\x9e\\x11\\x21\\x6c\\x6e\\x84\\x60\\xec\\x7b\\xa2\\\n\\x4c\\x94\\xae\\x5a\\x05\\xd6\\x74\\x25\\xcf\\x31\\xd7\\x46\\x13\\xa3\\xa5\\xa6\\\n\\x66\\x37\\xc2\\xaa\\x54\\xcd\\x70\\xee\\xc6\\xbc\\xde\\x34\\xbd\\xb1\\x16\\x19\\\n\\x33\\x11\\x29\\x60\\xae\\xe5\\x08\\xa3\\x1f\\xc4\\x5b\\x2d\\x36\\x9b\\x6d\\xa0\\\n\\x85\\x4d\\x50\\x1b\\x80\\x3f\\x78\\xd0\\xf6\\x85\\x4b\\x4e\\xad\\x72\\x02\\xae\\\n\\x0b\\xa1\\x47\\xe6\\x02\\x8f\\x85\\x3a\\x0f\\x13\\xed\\xd2\\x82\\x82\\x0d\\x90\\\n\\x2d\\x4b\\x7b\\xac\\xa0\\x30\\xc7\\xe5\\xae\\x23\\xc2\\x27\\xe8\\xd9\\x13\\xe4\\\n\\xcc\\x9b\\x35\\x62\\xcc\\x6e\\x12\\x25\\x9a\\x95\\x16\\xa0\\x7a\\x63\\x86\\x11\\\n\\x3e\\x4a\\x53\\x30\\xa1\\x22\\xf0\\xf3\\x3d\\xd5\\x8f\\x66\\xac\\xca\\xff\\x00\\\n\\x30\\x0e\\x18\\x4b\\x22\\x9e\\x7d\\x63\\x0b\\x79\\x0f\\x68\\x51\\x12\\xd2\\x25\\\n\\xdd\\xa8\\x77\\xcd\\xa3\\xda\\x7d\\x2a\\xab\\x59\\x5a\\x25\\xb2\\x18\\x17\\x38\\\n\\xbd\\x3a\\xce\\x91\\x69\\xb4\\x2c\\x1b\\x88\\x43\\x86\\x25\\x6b\\xbc\\xcd\\x51\\\n\\x75\\x38\\x54\\x90\\xea\\x35\\x0c\\xc3\\x1b\\xd4\\x95\\x6b\\x01\\x02\\x59\\x95\\\n\\x9d\\xe7\\xbd\\x8f\\x97\\x1d\\xf1\\x34\\xdf\\x49\\xbb\\xb3\\x9b\\xf6\\x83\\x0f\\\n\\x0c\\x63\\xd9\\x49\\xb6\\x14\\x2d\\x46\\xd0\\x50\\xa5\\x6e\\x25\\xbc\\x62\\x7a\\\n\\x88\\xb5\\x4d\\x09\\x48\\xba\\x66\\xaa\\xed\\x7f\\xbc\\x91\\x96\\x40\\xb4\\x48\\\n\\x90\\x02\\x2f\\x28\\x39\\x35\\xc3\\x0c\\x9b\\xc9\\xfb\\xe1\\x61\\x3d\\x9b\\xad\\\n\\x9b\\xfd\\x20\\x23\\x8c\\x19\\x55\\x35\\xcc\\xe5\\x0b\\x17\\x08\\x07\\x30\\xfc\\\n\\x71\\x68\\x4a\\x58\\x5f\\x7c\\x00\\x2c\\xdb\\xe3\\x47\\xeb\\x2c\\xf3\\xf5\\xe5\\\n\\x77\\x93\\xda\\x29\\xc3\\x8e\\x3f\\x88\\xd1\\xb3\\x05\\xb2\\xc7\\x25\\x63\\x60\\\n\\x2e\\x50\\x2f\\xda\\xa1\\xf0\\xca\\x17\\x3d\\x32\\xa6\\x99\\x6c\\xf5\\x67\\x26\\\n\\x34\\xb5\\x8c\\x5a\\x42\\x54\\x07\\x64\\x85\\x38\\xc5\\x81\\x76\\xe1\\xf4\\x8d\\\n\\x1d\\x24\\x2a\\xdb\\x73\\x10\\x96\\xe6\\x1d\\x9b\\xc4\\xf5\\x48\\x4c\\x9b\\x8b\\\n\\x12\\xf7\\x35\\x70\\xc4\\x3c\\x19\\x40\\x4b\\x51\\x77\\xd9\\x31\\xa6\\xa5\\x0b\\\n\\x5d\\xa1\\x48\\x33\\x75\\x4d\\x79\\xb6\\x6f\\x8a\\x65\\x88\\xc6\\x8d\\xbb\\x18\\\n\\x54\\x9b\\x9f\\x3d\\xe1\\x78\\xa7\\xb3\\x76\\xa3\\x22\\x1c\\xed\\x7a\\xd6\\x26\\\n\\x04\\x97\\x56\\xb2\\xe3\\x50\\x25\\xaa\\xc2\\x8e\\x33\\xae\\x3c\\x39\\x42\\xc0\\\n\\x6e\\xde\\xb4\\xeb\\xaa\\xf8\\xdd\\xa9\\xc9\\xd9\\xa8\\x7a\\x10\\xce\\x4b\\x96\\\n\\xf3\\x8b\\x5b\\x80\\x05\\xdf\\xea\\x30\\x71\\xfc\\x4d\\x0d\\x31\\xa6\\x39\\x36\\\n\\x3c\\xa5\\xd8\\x66\\x20\\x09\\xa5\\x7b\\x21\\x2e\\x45\\xd6\\xe4\\x0e\\xd1\\x7a\\\n\\xe1\\xc5\\xa2\\x52\\x55\\x27\\x53\\x36\\xe2\\xda\\x5a\\x59\\x49\\x3b\\x37\\x8a\\\n\\xbb\\xb1\\x1b\\xf0\\xda\\x34\\x31\\x62\\x9a\\xa9\\xa9\\x7b\\xbb\\x3a\\xbc\\x1f\\\n\\x05\\x7f\\x1c\\x32\\xe5\\x0b\\x37\\x52\\x97\\x38\\x88\\x05\\xd5\\x7b\\x72\\x9f\\\n\\xc5\\xe2\\xdf\\x2d\\xd1\\x3e\\x62\\x4b\\x29\\x28\\xbc\\x97\\xab\\x29\\x39\\x65\\\n\\xdf\\x48\\xb2\\xbd\\xad\\x32\\xb5\\xca\\xda\\x96\\x80\\x12\\xf5\\x72\\x68\\x5b\\\n\\x8d\\x07\\x8c\\x20\\x4a\\x09\\x17\\x50\\x10\\x78\\xb3\\xe5\\xc3\\xeb\\x0b\\x52\\\n\\x9b\\xb5\\x7b\\xe8\\xd8\\x67\\x17\\xa6\\x85\\x76\\xa8\\xee\\xcc\\x7d\\x5f\\x3e\\\n\\x58\\x45\\xb2\\x72\\x94\\xe4\\xac\\x85\\x00\\xa1\\x75\\xdd\\xb8\\x8e\\x24\\x92\\\n\\x1f\\x74\\x09\\xd3\\x5b\\x6a\\xb8\\xd6\\xa1\\xea\\xc2\\x9d\\x63\\x0b\\xb3\\x22\\\n\\xd0\\x9d\\xbd\\x86\\xda\\x05\\xab\\x79\\xb0\\xf3\\x8b\\x26\\x8d\\x5e\\xb0\\x29\\\n\\xdc\\xa7\\x30\\x28\\xbd\\xee\\xf5\\xe2\\xee\\xd1\\x6c\\xb6\\x22\\x5a\\x35\\x29\\\n\\x00\\x86\\xed\\xbb\\x0c\\x33\\x4b\\x79\\x3e\\xe6\\x8b\\x52\\x6f\\xcc\\x08\\x0b\\\n\\x13\\x1d\\x95\\x79\\xee\\xdc\\x04\\x9a\\x66\\xf7\\x29\\x8b\\x3d\\x45\\x31\\x8b\\\n\\x15\\xe9\\x63\\x53\\x32\\x61\\x52\\x6a\\xa2\\x48\\x6d\\xcc\\x19\\xcd\\x1b\\x8d\\\n\\x78\\x44\\xb9\\xfa\\xb4\\x0b\\x8b\\x39\\xfc\\xaf\\x8f\\xfd\\x58\\xe0\\xfc\\x03\\\n\\xe1\\x48\\xd7\\x25\\x22\\xb3\\xc2\\x95\\x9f\\x7f\\xfd\\x51\\x36\\xd8\\xab\\xc9\\\n\\x32\\xdc\\x8b\\xb5\\xf3\\x6f\\x3e\\xf8\\x16\\xd9\\xb7\\xc1\\x54\\x92\\xb1\\x83\\\n\\x29\\x65\\x2f\\x8b\\x65\\xf9\\xe6\\x2b\\x16\\x04\\xaa\\xd2\\xb2\\xa5\\xa7\\x52\\\n\\xc2\\xa8\\x02\\xf5\\x29\\x50\\xba\\x3f\\x0e\\xf7\\xc6\\x15\\x61\\x94\\x64\\x81\\\n\\x2c\\x04\\xdf\\x42\\x41\\x22\\x87\\x07\\x7e\\x64\\x66\\x70\\xa3\\x08\\x3a\\x3c\\\n\\x8a\\x3b\\xb6\\x6c\\x22\\xc3\\x67\\xd4\\xcb\\x79\\x47\\x59\\x2f\\x7a\\x6a\\x9f\\\n\\x18\\x12\\x9d\\x41\\x5a\\x92\\xd4\\xf9\\x22\\x5d\\x99\\x33\\x10\\x52\\xa4\\xdc\\\n\\x1b\\xd4\\x28\\x33\\x03\\xca\\x2d\\x8b\\x16\\x39\\xe4\\x0c\\x06\\x79\\x75\\xd6\\\n\\x31\\xa3\\xad\\xb2\\x26\\xd9\\xd0\\x26\\xce\\x95\\x2c\\xdc\\x4b\\x5f\\x50\\x4b\\\n\\xd0\\x71\\x8b\\x56\\x90\\xb3\\x59\\x6c\\xd6\\x85\\x09\\xf2\\x8a\\x9f\\x63\\x6c\\\n\\x1c\\xb2\\xe1\\x16\\xed\\x27\\x32\\xd7\\x3a\\x62\\x8a\\xcd\\xd4\\x92\\xc3\\x1d\\\n\\xf8\\x7d\\x3b\\xa2\\xc3\\x2d\\x73\\xa6\\x95\\xde\\x4a\\x78\\x90\\xfe\\x15\\x1d\\\n\\x08\\xb4\\x69\\x44\\x59\\x01\\x48\\x29\\x51\\x4d\\x19\\x05\\xea\\x39\\x44\\xef\\\n\\x68\\x95\\xf0\\xe7\\x09\\x67\\xe1\\x5e\\x3e\\x2d\\xf6\\x8b\\x6f\\xb5\\x53\\x74\\\n\\x8a\\xd3\\xda\\x96\\x24\\xa8\\x51\\xee\\xde\\x00\\xe1\\x46\\x71\\xf4\\x8b\\x16\\\n\\x97\\xd6\\x5a\\x1d\\x7b\\x29\\x76\\x75\\x50\\x72\\x73\\x1a\\x12\\x6d\\x98\\x6a\\\n\\xed\\x12\\xe6\\xca\\x52\\x97\\x56\\x0a\\x07\\x36\\xcb\\x94\\x5a\\xa7\\x7b\\xfd\\\n\\x8f\\x56\\x08\\x1a\\xad\\xb3\\xca\\xe9\\x4f\\xd6\\x3d\\xa0\\x9d\\x32\\x4d\\xad\\\n\\x48\\x43\\x90\\xe5\\x34\\xe3\\xd7\\x76\\x71\\x39\\x29\\x03\\x73\\xbf\\x8d\\x29\\\n\\xe5\\x0b\\x3b\\x65\\x9b\\xef\\xc3\\x94\\x2a\\xd9\\xab\\x09\\x00\\x82\\xb2\\x46\\\n\\xc8\\xc8\\x1c\\xfb\\xba\\x61\\x1a\\x99\\xc2\\xe4\\xeb\\x3a\\xea\\x48\\x25\\x29\\\n\\x39\\x9c\\x5d\\x82\\x95\\x41\\x90\\xe3\\x8c\\x3a\\x96\\xb7\\xbb\\xcd\\x44\\x11\\\n\\x5a\\x61\\x84\\x4a\\x98\\x9d\\x52\\x76\\x93\\x81\\x18\\x8c\\x6a\\x61\\x6c\\xa5\\\n\\x00\\x0b\\x96\\xc8\\xc0\\x71\\x91\\xf0\\x8b\\xc4\\x93\\xb9\\xfe\\xbe\\x30\\xb4\\\n\\xad\\x73\\x1d\\x29\\x24\\x5d\\x6a\\x73\\xe9\\xa0\\xcc\\x4c\\xa9\\x6f\\x39\\x41\\\n\\x09\\x01\\x3d\\xad\\xfc\\x37\\xc7\\xbd\\x2a\\x72\\x40\\x42\\x4a\\x50\\x05\\x55\\\n\\x57\\x56\\x00\\x53\\x2c\\xdd\\x39\\x79\\x47\\xb2\\x9a\\x51\\x33\\xa4\\x22\\xcc\\\n\\xe1\\xe4\\xa4\\x4a\\x29\\x70\\x59\\x86\\x14\\x8b\\x6d\\x95\\x21\\x57\\xca\\x98\\\n\\x97\\x3c\\xfa\\xfd\\xc4\\xb9\\x8e\\x85\\x21\\x43\\x14\\x90\\x1f\\x88\\x31\\xa3\\\n\\xe4\\x04\\x5b\\x71\\xad\\xec\\x0e\\x50\\xa4\\x21\\xdf\\x36\\x1e\\x91\\x68\\x55\\\n\\xd9\\x2b\\xae\\x47\\x38\\xb6\\x4c\\x59\\xd2\\x6b\\xad\\x08\\x20\\xb3\\x96\\x0e\\\n\\x5b\\x3a\\xe7\\x96\\xf6\\xdc\\x27\\xa6\\xcf\\x3c\\x19\\x29\\x9b\\x2c\\xaf\\x3d\\\n\\xa0\\x48\\x39\\x16\\x7e\\x61\\xf7\\x16\\x26\\x06\\x89\\x9d\\x39\\xe6\\xaa\\x5c\\\n\\xdc\\x59\\x2d\\x82\\xb7\\x2f\\x70\\x70\\x72\\x31\\x3b\\x46\\xaa\\xc5\\xad\\x98\\\n\\xa4\\xac\\x0f\\x86\\x25\\xba\\x18\\x07\\x70\\x45\\xec\\xc9\\x57\\x1e\\x54\\x68\\\n\\x96\\x95\\x12\\x49\\x4a\\xb8\\x06\\x3e\\x38\\x79\\xc0\\xb1\\xcc\\x2a\\x0a\\x5c\\\n\\x89\\xc4\\x26\\xef\\xfc\\xb5\\x55\\xfb\\x37\\x4b\\x32\\xbe\\xf8\\x98\\x16\\x70\\\n\\x94\\xa5\\x4a\\x92\\xa5\\xa8\\xd6\\xe1\\x01\\xa9\\x40\\x09\\xa8\\x05\\x39\\x60\\\n\\xf4\\xa1\\xcd\\x4b\\x5c\\xc4\\x19\\x5a\\x85\\x00\\xb6\\x65\\x56\\x9b\\x40\\xb1\\\n\\xd9\\xe0\\xd1\\x60\\x40\\x94\\x8d\\xb5\\x5d\\x64\\xd4\\x28\\x8c\\x49\\xdc\\xc3\\\n\\x0c\\xbb\\xa2\\xd4\\x02\\xc2\\x4a\\x54\\x9b\\xa6\\xaa\\x38\\xf9\\x8c\\xe9\\xcd\\\n\\xf2\\x85\\x4e\\x12\\xd2\\x40\\x50\\xa3\\xbe\\x65\\x23\\x1f\\x1e\\x78\\x66\\x2a\\\n\\x0c\\x2a\\x68\\x98\\x4a\\x00\\xed\\x03\\x91\\xef\\xaf\\xd3\\x3c\\xa2\\x52\\xae\\\n\\x4e\\x4a\\x01\\xce\\xeb\\x0c\\x58\\x8f\\x21\\xd9\\x89\\x93\\x6e\\xcc\\x52\\x6f\\\n\\x10\\x41\\x01\\xb3\\x0f\\xc3\\x8c\\x21\\x4c\\x0a\\x94\\x4d\\xd6\\xcf\\x2d\\xfc\\\n\\xbb\\xe1\\x2a\\x42\\xc6\\xb0\\x28\\x19\\x69\\xa9\\x23\\x06\\x18\\xb9\\x3b\\x85\\\n\\x62\\xdc\\x8b\\x47\\xbc\\xaa\\x68\\x0a\\x54\\xb5\\xb3\\x04\\x5e\\x52\\x42\\x41\\\n\\x2d\\xc1\\xce\\x7c\\x79\\xb4\\x26\\x8c\\x04\\xa9\\xaa\\x50\\x49\\x25\\xd2\\xcc\\\n\\xdc\\xc6\\x6f\\x4d\\xe3\\x9b\\xc2\\xd1\\x3a\\xd5\\x75\\x0b\\x42\\xa5\\xa5\\xc7\\\n\\x65\\xc0\\xad\\x36\\x88\\x73\\x77\\x7f\\x07\\x67\\xa8\\x32\\x24\\x26\\xc5\\x25\\\n\\x7a\\xbb\\xd3\\x59\\x0e\\x7e\\x6a\\xee\\x4e\\xe1\\xc3\\xe9\\x13\\x2c\\x36\\x8d\\\n\\x4a\\xd4\\xa0\\xb9\\x9a\\xc3\\x78\\x14\\x25\\x4b\\xbb\\x93\\xa8\\x8a\\x31\\xa7\\\n\\x26\\x2d\\x9b\\x22\\x54\\xe9\\x65\\x5a\\xd0\\xab\\xc1\\x45\\xaf\\x06\\xa6\\x4d\\\n\\xe1\\xc6\\x25\\x4c\\xda\\x0c\\x41\\x63\\x83\\xd7\\xf5\\x99\\x0d\\x85\\x62\\x5a\\\n\\xd2\\xa5\\x07\\x60\\x5f\\x79\\x15\\x34\\xa7\\x0f\\x18\\x91\\x67\\xb4\\xad\\x66\\\n\\xf2\\x54\\xc5\\x66\\xe9\\xaf\\x66\\xb7\\x7e\\x94\\xe5\\x12\\x2c\\xab\\x48\\x37\\\n\\x92\\xa6\\xbd\\xda\\x29\\x6f\\x2d\\xc3\\xd6\\x11\\xa3\\x84\\xe4\\x51\\x2a\\x2e\\\n\\xd9\\x78\\xe1\\x86\\x14\\xf5\\x8d\\x1f\\xa3\\x12\\x9d\\x93\\x4d\\xe4\\xd2\\x9f\\\n\\x5e\\x42\\x17\\x65\\xb8\\x9b\\xa9\\x2f\\x75\\xeb\\x93\\x0d\\xd1\\xab\\xff\\x00\\\n\\x57\\x83\\xfd\\xa3\\x42\\xad\\xb4\\x60\\xcf\\xaa\\x52\\x25\\x5a\\x11\\xb2\\x95\\\n\\x38\\x37\\x5f\\xd6\\x34\\xaf\\xb4\\x12\\xec\\x69\\x32\\x52\\x5d\\x64\\xa5\\x92\\\n\\x19\\xcd\\x71\\xe4\\x2b\\x53\\x4c\\x62\\xd7\\xa4\\xe6\\xda\\x26\\x15\\x4c\\x29\\\n\\x09\\x2e\\xc9\\x0e\\x55\\x8e\\x67\\x01\\x85\\x45\\x63\\xde\\x2d\\xb4\\x69\\xf4\\\n\\xa8\\x15\\xad\\xdc\\x86\\x3b\\xba\\x10\\xbb\\x65\\xb4\\x01\\x29\\x4b\\xd6\\x5f\\\n\\xcc\\x1c\\x22\\x58\\x65\\x80\\xae\\xd2\\xb7\\xf2\\x3b\\xfa\\xf0\\x84\\xce\\xd4\\\n\\xf0\\x8b\\x46\\xbd\\x73\\xa6\\x2e\\xa4\\x29\\x4a\\x22\\x26\\x26\\x71\\x0a\\x45\\\n\\x5c\\x87\\xf0\\xc7\\xec\\xf9\\x77\\x45\\x97\\x46\\xcd\\x59\\x56\\x26\\xaf\\xd6\\\n\\x2f\\xeb\\x0b\\xb0\\x4d\\x41\\xa0\\x20\\xfe\\x39\\x0e\\xb0\\x8b\\x26\\x91\\xb7\\\n\\x58\\x16\\x25\\xa4\\x38\\x41\\x01\\xf7\\x03\\xb4\\x4e\\x55\\xc6\\x2d\\x7e\\xd7\\\n\\xe9\\x3d\\x59\\x97\\x67\\x98\\x65\\xac\\x9b\\xab\\xe2\\x96\\xfa\\x1e\\x30\\x26\\\n\\x5a\\xad\\x13\\x55\\x3a\\xd5\\x6b\\xc4\\xde\\x62\\x73\\xc7\\x7f\\x4f\\x0b\\x9b\\\n\\xad\\xa3\\xd7\\x87\\x94\\x2e\\x4a\\x92\\x01\\xe8\\x7d\\xe1\\x72\\x86\\xb2\\xf8\\\n\\xed\\x0a\\x0a\\x63\\xc3\\x8e\\x51\\x26\\xd0\\xa7\\x50\\x7b\\xa9\\x43\\x06\\xad\\\n\\x56\\x71\\xff\\x00\\xa6\\xb4\\xe2\\xec\\x71\\x8b\\x38\\x55\\xd3\\x7c\\x82\\xe7\\\n\\x66\\x8c\\xc9\\xcb\\x32\\xe7\\x8c\\x5a\\xed\\x89\\xb3\\x2e\\x52\\x2f\\x24\\x0a\\\n\\x92\\x31\\x5a\\xca\\x88\\x48\\x4c\\xb1\\x99\\xcc\\xb0\\x26\\xa2\\x91\\x2e\\x61\\\n\\x29\\xd6\\x87\\x1e\\x5c\\x2a\\xf1\\xaf\\x2e\\xf7\\x87\\xfb\\x93\\x17\\xb3\\xbc\\\n\\x18\\xd7\\x18\\x42\\xa6\\xac\\xab\\x54\\x29\\x41\\x78\\xe0\\xe4\\x79\\xc4\\xed\\\n\\x15\\x3e\\xd2\\x92\\xb2\\xb2\\xa5\\x25\\x1b\\x20\\x00\\xd9\\x3f\\x4e\\x1b\\xb9\\\n\\xa2\\x75\\x86\\xd1\\x64\\xb2\\x93\\xf2\\xa4\\x39\\x2f\\x53\\x9e\\x57\\x9b\\x33\\\n\\x46\\x7c\\xf7\\xc7\\xb2\\x76\\xdd\\x55\\xa9\\x78\\xed\\x11\\x9b\\xbf\\x5e\\x15\\\n\\x84\\x04\\x5a\\x65\\x21\\x4a\\x38\\x61\\xe5\\x06\\xcd\\x28\\x02\\xcd\\x9e\\xe8\\\n\\x93\\x63\\x69\\xda\\xc6\\x8b\\xb7\\xab\\xc0\\x67\\xba\\x2d\\x32\\xde\\x4a\\xc7\\\n\\xf6\\x93\\x16\\xe5\\x19\\x3a\\x51\\x64\\x9c\\x95\\xff\\x00\\x9d\\x29\\x8f\\x70\\\n\\x3e\\x30\\xa9\\xb2\\x95\\x31\\x5a\\xb4\\x12\\x0a\\x68\\x70\\xbc\\xed\\x51\\xbd\\\n\\x92\\xe3\\x27\\xc1\\x9a\\x25\\xda\\xca\\x12\\x50\\xab\\xc8\\x4d\\xd4\\x5c\\x05\\\n\\x9b\\x3c\\x0f\\x20\\x9a\\x3d\\x2b\\x16\\xb3\\x32\\xd0\\x12\\x8d\\x70\\x53\\x4c\\\n\\x42\\x88\\x56\\xcb\\xdd\\x5d\\xe6\\xa3\\xe4\\x6e\\x86\\x63\\xf3\\x57\\x08\\xb2\\\n\\x48\\xb3\\x14\\xab\\xde\\xc6\\xad\\x0c\\xce\\xe0\\x86\\xfe\\x45\\x4f\\x78\\x13\\\n\\x91\\x39\\x54\\x80\\x69\\x01\\x6c\\x4a\\x1f\\x67\\x04\\x1c\\xae\\xe5\\x5e\\x50\\\n\\x0d\\xe2\\xd9\\x0e\\xe7\\x82\\x91\\xcb\\xaf\\xbc\\x21\\x05\\x64\\x3f\\x64\\xfa\\\n\\xc4\\xd2\\x90\\xc8\\x4b\\x32\\x76\\x69\\xc2\\x95\\x8f\\x74\\x91\\xb7\\x32\\x62\\\n\\x82\\x49\\x23\\x36\\xbd\\x8e\\x3b\\xcf\\x2a\\xf8\\xb4\\x2e\\xcf\\x67\\x28\\x55\\\n\\xd2\\xca\\x50\\xd9\\xcb\\x69\\x9b\\x26\\x3f\\x7e\\x31\\x67\\x0d\\x3e\\xa5\\xd6\\\n\\x82\\xc6\\xeb\\x62\\x8a\\x8e\\x46\\xea\\x81\\xef\\x84\\xa6\\x4a\\x86\\xb5\\x4d\\\n\\x79\\x5b\\x4a\\x7c\\x41\\x14\\xcf\\x76\\x47\\x8c\\x6b\\x2c\\xeb\\xbc\\x9b\\xc9\\\n\\x20\\x3a\\x57\\x51\\x77\\x00\\x5b\\x9d\\x62\\x58\\xb2\\xc9\\x02\\xf9\\x48\\x44\\\n\\xc1\\x75\\xb2\\x62\\xe0\\xd7\\xd7\\x74\\x5a\\xa5\\xd9\\x52\\xda\\xa2\\x14\\x40\\\n\\xa0\\x06\\x8d\\xbc\\x00\\x4e\\xea\\x38\\x3d\\xcf\\x59\\x72\\xc4\\xc4\\x2c\\xad\\\n\\xc5\\x0b\\xbd\\x58\\x1d\\xf9\\x33\\x0c\\xb3\\xef\\x8b\\x34\\x81\\x32\\x6a\\x43\\\n\\x76\\xa8\\x49\\xa0\\xd9\\xa9\\xbb\\x91\\x60\\x2b\\xcf\\xc6\\x54\\x8b\\xa2\\x63\\\n\\xbd\\xdb\\xca\\xbb\\xd9\\xc3\\x24\\xf1\\x8b\\x24\\x89\\x5e\\xee\\xb4\\xb0\\x48\\\n\\x51\\x38\\x96\\x25\\xf9\\x65\\x5a\\x78\\xc5\\xa3\\x40\\x48\\x52\\xef\\x4b\\x48\\\n\\x0f\\xda\\x49\\xaa\\x0e\\xe6\\xc4\\x24\\xff\\x00\\xa4\\x37\\x91\\x8b\\x3f\\xb3\\\n\\xb2\\x53\\x35\\x2a\\xd5\\x27\\xe6\\x77\\x22\\x84\\xa7\\xcf\\xd6\\x0f\\xb3\\x96\\\n\\x5c\\x75\\x8a\\x34\\xda\\x62\\x00\\x7c\\xc5\\x3a\\x10\\x8d\\x1a\\xab\\x21\\x55\\\n\\x0a\\xd0\\xe4\\x25\\xcd\\x5a\\xad\\x8e\\xf1\\x93\\xe2\\x39\\x44\\xf2\\x02\\xe5\\\n\\xcb\\x63\\xb6\\x97\\x6c\\x30\\x89\\x4b\\x5c\\x81\\x89\\x4b\\xe1\\x7a\\x94\\xe0\\\n\\xd8\\xff\\x00\\x28\\x93\\x6b\\x7a\\x38\\xc3\\xb5\\x5a\\xef\\xa7\\x36\\xce\\x27\\\n\\x5b\\xa7\\x82\\xa0\\x0d\\x1f\\x65\\xbe\\xf8\\xe1\\x1e\\xf9\\x3c\\xd6\\xbd\\x73\\\n\\x31\\xa3\\x6d\\x93\\x6c\\xb2\\x2e\\x2c\\x93\\x2c\\x7c\\xb4\\xee\\x0e\\xdf\\x58\\\n\\xff\\x00\\x3d\\x96\\xa9\\x82\\x58\\x91\\x7a\\x63\\x30\\x20\\x97\\x18\\xb0\\x61\\\n\\xd7\\xd2\\xd5\\xa3\\xad\\x5a\\x42\\xd4\\x95\\x19\\x45\\x09\\x50\\x35\\xc3\\x7b\\\n\\x3d\\x60\\xfb\\x27\\x6a\\x6b\\xd5\\x67\\xeb\\xae\\x70\\xaf\\x67\\xed\\x36\\x55\\\n\\x84\\x4d\\x2a\\x55\\xf3\\xb2\\xff\\x00\\x2d\\xee\\x5d\\x08\\x4f\\xb2\\x96\\x8b\\\n\\xd2\\xe6\\x22\\x73\\x25\\x49\\x7b\\xb4\\x39\\xf8\\xf2\\xc3\\x94\\x69\\x0d\\x0e\\\n\\x6c\\xa9\\x2b\\x24\\x15\\x20\\x38\\x56\\x6f\\x86\\x1d\\xe6\\x27\\xae\\x68\\x98\\\n\\x52\\xa2\\xe1\\xf9\\x7e\\x60\\x2d\\x57\\xae\\xbd\\x1d\\xbb\\xb7\\x42\\x66\\x4a\\\n\\x49\\x1a\\xe4\\x05\\x15\\x61\\x93\\x6f\\x89\\x52\\x92\\xe1\\x52\\xf6\\x00\\x2f\\\n\\x93\\x11\\x8d\\x62\\xd1\\x26\\x5a\\x8d\\xe6\\x0a\\xfe\\x45\\xfe\\x8f\\x87\\x58\\\n\\x45\\xa2\\xc6\\x9f\\xeb\\x76\\x13\\x30\\xb2\\x19\\x88\\xa0\\x6a\\xf3\\x21\\xbe\\\n\\xa2\\x26\\x58\\x13\\x36\\x66\\x4f\\x5e\\x1c\\x2a\\x29\\xcf\\xf7\\x13\\xb4\\x1a\\\n\\x97\\xb6\\x49\\xd9\\xa8\\x0e\\x72\\x73\\x91\\x89\\x28\\x28\\xc5\\x04\\xd1\\xb3\\\n\\x7a\\x77\\xc5\\xeb\\xe3\\x0b\\xbc\\x37\\x78\\xc4\\xe9\\x7b\\x5a\\xb9\\x54\\x56\\\n\\x5b\\xcb\\x33\\xb5\\xee\\xef\\x18\\x54\\x89\\xf2\\xea\\xa4\\x29\\x60\\xa8\\x55\\\n\\x3d\\xa0\\x5f\\x64\\x80\\x18\\x10\\xf8\\x93\\x98\\x60\\x19\\xcc\\x59\\x10\\x52\\\n\\x96\\x98\\x2f\\x10\\x5b\\x6a\\x84\\x53\\x06\\xa5\\x5f\\x02\\xde\\x50\\xa9\\x08\\\n\\x54\\xcd\\x69\\x94\\x2f\\x80\\xc9\\x51\\x02\\xf0\\x1c\\x0e\\x2d\\x0b\\x52\\xd0\\\n\\x08\\x3d\\x8a\\xba\\x69\\x5c\\x77\\x57\\x1d\\xdc\\xa1\\x2b\\xd6\\x26\\x88\\x2d\\\n\\x83\\x8b\\xc7\\xd4\\x9f\\x28\\xd1\\x76\\x29\\xc4\\xbd\\xa9\\xe6\\x07\\x37\\x13\\\n\\x74\\xf6\\x5f\\x66\\x80\\xfa\\xc6\\xaa\\xcf\\x66\\x2a\\xbd\\x66\\x4a\\x41\\x01\\\n\\xbb\\x58\\x8d\\xd5\\xc7\\x1f\\xbd\\x23\\xfc\\xfa\\xc9\\x67\\x74\\xea\\x96\\x77\\\n\\x80\\x9c\\x1c\\xb0\\xf1\\x34\\x89\\xfa\\x5e\\xcb\\x6e\\x4a\\x90\\x43\\x39\\x02\\\n\\xea\\xb6\\x7d\\x18\\x78\\xd7\\x9e\\x06\\xc1\\xaa\\x93\\x69\\xb3\\x26\\x54\\xb4\\\n\\x80\\xa3\\x52\\x0f\\x26\\xab\\xd5\\xc3\\xf8\\x45\\x82\\x56\\xb6\\xcb\\x2d\\xb2\\\n\\x10\\x6c\\xea\\x0a\\x15\\x2c\\x31\\x1c\\x3a\\xeb\\x28\\x54\\xe4\\xa6\\x65\\xc4\\\n\\xd0\\x3f\\x08\\x4a\\xdc\\xdd\\x1d\\x53\\xac\\x62\\x79\\x79\\x4a\\x48\\xa2\\xae\\\n\\x9e\\xfe\\x8f\\xd2\\x34\\xfe\\x8e\\xb4\\xa2\\xd6\\xbb\\x46\\xb2\\x61\\x49\\x73\\\n\\x74\\x35\\xd6\\xcf\\x00\\xec\\x73\\xae\\xfa\\xc4\\xb9\\x92\\x6e\\x81\\xab\\xba\\\n\\xb4\\x86\\x06\\xb4\\xdd\\xe1\\xca\\x11\\x39\\x65\\x3f\\x11\\x59\\x9c\\x4a\\x70\\\n\\xc8\\x41\\x29\\x25\\xd2\\xd7\\xb9\\xfd\\x21\\xd5\\xfc\\x88\\xe1\\x12\\xad\\xa6\\\n\\x62\\xb6\\xa6\\x35\\xd4\\xdd\\x29\\x23\\x60\\xdd\\xa0\\x76\\x61\\xe4\\x77\\xc0\\\n\\xb6\\xc8\\x7b\\xa5\\x21\\x0b\\x40\\x00\\xb5\\xe6\\x56\\xe5\\x26\\xa5\\xc1\\xe3\\\n\\xc0\\x35\\x08\\x83\\x3c\\x14\\xeb\\x06\\xda\\x01\\x00\\x81\\x8d\\x4b\\x57\\x06\\\n\\x0d\\xb5\\xc9\\x8d\\x41\\x8d\\x7d\\x98\\x4a\\x42\\x8c\\x80\\xa0\\x13\\x52\\x54\\\n\\x45\\x72\\x27\\x68\\x53\\xb8\\xd6\\x2a\\xa2\\xa9\\x85\\x2d\\x2d\\x6b\\xd8\\x50\\\n\\x38\\xba\\x98\\x50\\x12\\xc1\\xf0\\xe0\\xce\\x2f\\x16\\x8b\\x7d\\xa3\\x51\\x34\\\n\\x27\\x5c\\x4a\\xd8\\xba\\x41\\x76\\xa8\\x21\\xd2\\x9c\\x01\\xf0\\x53\\x55\\xe0\\\n\\x5b\\xd6\\x70\\x57\\x2d\\x86\\x1f\\xf8\\xb4\\x09\\x8a\\xbc\\x66\\x03\\x75\\x4a\\\n\\xc4\\x86\\xae\\x5c\\xa3\\xde\\x66\\x19\\x41\\x3e\\xf1\\x30\\x7f\\x27\\xba\\x41\\\n\\x0e\\xe7\\x2c\\x5f\\x37\\x7d\\xe7\\x28\\x33\\x66\\x03\\x2e\\xea\\xdc\\x4b\\x5d\\\n\\xfc\\x76\\x94\\x72\\x73\\x5a\\x8d\\xd8\\x6e\\xdd\\x16\\x8d\\x35\\xa4\\x85\\xd4\\\n\\xaa\\x5a\\x96\\x9a\\x8b\\xc8\\xba\\xbd\\xf7\\x59\\xaa\\xf8\\x15\\x5e\\x4b\\x71\\\n\\x78\\xb1\\xe9\\x69\\xcb\\x50\\x4c\\xe5\\x2d\\x27\\x21\\x31\\x37\\x47\\x0c\\x52\\\n\\xc7\\xcf\\x02\\xc0\\x0a\\x09\\x76\\x85\\xac\\xa8\\x05\\x06\\xa0\\x66\\x0d\\x85\\\n\\x72\\x7c\\x72\\x89\\x0a\\x5a\\x01\\x00\\xd4\\xcb\\x20\\x16\\xa2\\x54\\x4a\\x6b\\\n\\x41\\x95\\x7a\\x78\\x13\\x55\\x76\\x58\\x0a\\xbc\\x5b\\x1b\\xb8\\xbe\\x19\\x63\\\n\\xf6\\x89\\x53\\xa4\\x03\\x7a\\x6d\\xdc\\x43\\x6d\\x1a\\x65\\xfc\\x80\\xac\\x0b\\\n\\x54\\x89\\x8a\\x64\\xac\\x06\\xa3\\x33\\xe1\\x8f\\xae\\x7f\\x88\\x09\\x1a\\xb2\\\n\\xa7\\x70\\x08\\x67\\xee\\xe8\\x42\\x14\\x2b\\x4c\\x71\\x7a\\xd1\\xf8\\xfd\\x20\\\n\\xa2\\xfe\\x40\\x24\\x0f\\x11\\xe3\\x58\\xb6\\xd8\\xca\\xa6\\x22\\x74\\xa0\\x7e\\\n\\x1c\\xb5\\x0e\\x2e\\x55\\x7b\\x3f\\x37\\x6c\\xa0\\xad\\x2e\\x99\\x33\\x59\\x5b\\\n\\x89\\xe5\\x93\\x34\\x03\\x74\\xec\\xd3\\xa3\\x0a\\x9f\\x30\\xa8\\xa6\\xf6\\x6d\\\n\\x96\\x00\\xf4\\x38\\x88\\x7d\\xff\\x00\\x6f\\xac\\x68\\xad\\x1e\\xab\\x74\\x92\\\n\\x7b\\x03\\x71\\x05\\xfc\\xbc\\x62\\xc5\\xa1\\xd1\\x65\\x52\\x8a\\x65\\x85\\x2a\\\n\\xf3\\xde\\x50\\x73\\x96\\x67\\xac\\x60\\x48\\xb5\\x1b\\xac\\x13\\x75\\xd3\\x40\\\n\\x0b\\xe3\\x97\\xe2\\x0a\\x44\\xbb\\x2a\\x75\\x97\\x52\\x5b\\x3f\\xd4\\x5b\\xad\\\n\\x5a\\x35\\x32\\x55\\xad\\xb4\\x4a\\x5c\\xc0\\x36\\x4a\\x3e\\x5f\\x1e\\x34\\xe7\\\n\\x16\\xdd\\x39\\xa5\\x24\\x5a\\x5a\\xcf\\x3e\\x54\\xd9\\x0a\\x06\\xe9\\xa8\\xd5\\\n\\x57\\x02\\x3e\\x67\\x15\\x1c\\xb2\\x85\\xe9\\x4b\\x44\\xf9\\x89\\x5c\\xf5\\xa9\\\n\\x68\\x1d\\xa4\\x0c\\xf8\\x81\\xbc\\x71\\x8b\\x4f\\xc6\\x99\\x7d\\x2e\\x06\\xe5\\\n\\x42\\x64\\xab\\x17\\x18\\xbe\\x10\\x65\\xdf\\x54\\xb7\\xca\\x25\\x9b\\x92\\x95\\\n\\x50\\x68\\x79\\x8e\\x02\\x2d\\x16\\x8b\\xc3\\xe7\\x4e\\xd3\\xec\\x91\\x56\\xae\\\n\\x6f\\x13\\x27\\xcc\\x5a\\x42\\x55\\x32\\x66\\xa5\\x18\\x4b\\xbc\\x03\\xbe\\x17\\\n\\x88\\x62\\x6a\\x70\\x7b\\xb9\\x98\\x9d\\x68\\x9b\\x79\\xd0\\x6e\\x56\\xbe\\x8c\\\n\\x2a\\xff\\x00\\x48\\xff\\x00\\x32\\x54\\xbe\\xd8\\x2a\\xa8\\x76\\xe2\\x1c\\xe3\\\n\\xe1\\x12\\x4d\\x96\\xd4\\x8b\\xe8\\x94\\x51\\xbc\\x2d\\x89\\xab\\x45\\xa2\\x45\\\n\\xc5\\x96\\x66\\x60\\x5b\\xae\\x9e\\x25\\xa2\\xce\\xa9\\x9f\\xf1\\x08\\x2a\\x4a\\\n\\x41\\x66\\x24\\x10\\xad\\xe0\\x86\\xfb\\x45\\x9e\\x5b\\x16\\x4a\\x82\\xa5\\xb6\\\n\\xc9\\x98\\xea\\xce\\x8e\\x43\\x92\\x46\\xf3\\x4a\\x51\\xb0\\x89\\x96\\x5b\\xd3\\\n\\x56\\x50\\xa9\\x64\\x10\\x91\\xf0\\xdd\\xdc\\x64\\xdb\\xfe\\xb4\\xca\\x13\\xa2\\\n\\x6d\\xd3\\x93\\xad\\x4d\\x8e\\x66\\xa4\\x53\\x5e\\x41\\x4a\\x5c\\x62\\x0d\\x41\\\n\\xa7\\x26\\x30\\x9d\\x0a\\x66\\xa9\\x96\\x50\\x94\\xe6\\xf7\\x8f\\x16\\x68\\x91\\\n\\xa3\\x25\\xdf\\xd5\\x03\\x2c\\x72\\x1c\\x37\\x37\\x4d\\x08\\x91\\x26\\x42\\x15\\\n\\x82\\x8a\\x00\\xae\\x15\\x1c\\x28\\x00\\x27\\x1a\\x93\\x17\\x25\\x4c\\x57\\xc5\\\n\\x5b\\xbe\\x01\\xc3\\x37\\x10\\xcd\\x96\\x3e\\x10\\xad\\x1b\\xa2\\x26\\x58\\xe6\\\n\\x83\\x28\\x28\\xa9\\x0f\\x4b\\xb5\\x27\\x37\\xe2\\xce\\x1b\\xba\\x2d\\x96\\x6b\\\n\\x0c\\xa5\\x19\\x48\\x90\\xb0\\xb7\\xa1\\x70\\x79\\x92\\x6a\\x4e\\x35\\x7a\\x3f\\\n\\x3a\\x59\\x54\\x24\\xdb\\xa4\\xa5\\x95\\xdb\\x55\\xda\\x50\\x81\\xe0\\xcd\\x91\\\n\\xc3\\x94\\x68\\x99\\xdf\\xf0\\xa9\\x02\\x86\\xe8\\x89\\xb3\\x54\\xc4\\x63\\x8c\\\n\\x7b\\xbc\\xd5\\x4c\\xbc\\x30\\xe3\\x12\\x25\\x2e\\x52\\x8c\\xc5\\xd4\\x1c\\xb3\\\n\\xa4\\x5b\\x27\\xa8\\x28\\x5c\\x76\\xbc\\xc7\\x88\\xae\\xee\\x5f\\x4c\\x21\\x76\\\n\\x19\\x56\\xe4\\x1b\\xc2\\xad\\xf3\\x08\\xd2\\x9e\\xcb\\xad\\x2f\\x32\\x42\\xe5\\\n\\x86\\xc5\\x2c\\xae\\xba\\x63\\x13\\x65\\xce\\x93\\x30\\xca\\x99\\x28\\x82\\x33\\\n\\x6a\\x7d\\x20\\x0b\\xbb\\x54\\x39\\x30\\x7c\\xf8\\x98\\x33\\x40\\xf9\\x4e\\x3d\\\n\\x1f\\xc4\\x4b\\x54\\x92\\x7b\\x2a\\xf1\\x7e\\xb8\\xc1\\x5a\\x76\\x43\\x05\\x20\\\n\\x64\\xa0\\xe7\\x85\\x48\\x3d\\x65\\x12\\x15\\x25\\x82\\x4b\\xa1\\x04\\xb9\\x24\\\n\\xec\\xa6\\x8e\\xe0\\x64\\x28\\xde\\x3c\\xe1\\x6a\\x97\\x3a\\x51\\x44\\xa2\\x0e\\\n\\xe2\\x1c\\x83\\x42\\xc7\\x0e\\x30\\x95\\x22\\xcf\\x67\\x08\\x26\\xf2\\x84\\xba\\\n\\x70\\x3b\\xcf\\x28\\xb4\\x58\\xd1\\x6a\\x26\\x78\\xda\\x5c\\x90\\x65\\x92\\xad\\\n\\xa2\\xa0\\xa2\\xe1\\x45\\xd8\\x92\\x6e\\xd7\\x3c\\x2b\\xb1\\x0b\\x5c\\xa4\\xeb\\\n\\x51\\x2e\\x4b\\xa8\\x60\\xb2\\xa4\\xa5\\x00\\xb3\\x87\\xa1\\xae\\x6d\\xb9\\x89\\\n\\xc6\\x13\\x35\\x62\\xf5\\xfb\\x3a\\x9a\\x95\\x42\\x82\\xfc\\x85\\xd5\\x3e\\xe6\\\n\\x11\\xad\\x26\\x62\\xef\\xa8\\x49\\x43\\xec\\x85\\x85\\x85\\x37\\x16\\x46\\x3d\\\n\\xfc\\xcb\\xc4\\xb9\\x17\\xff\\x00\\xa7\\x68\\x44\\xde\\x09\\x06\\xf0\\xe7\\x43\\\n\\xc8\\x1a\\x57\\x18\\x56\\xb5\\x2a\\x03\\x51\\x31\\x5c\\x40\\x17\\x47\\x1e\\x54\\\n\\x78\\x13\\xae\\x0b\\xaa\\x4b\\xd0\\xee\\xdd\\x91\\xfb\\xd2\\x34\\x34\\xd9\\x93\\\n\\xaf\\xca\\x52\\x54\\x99\\x80\\xae\\xea\\x94\\x1e\\xf0\\x0c\\xeb\\x20\\x64\\x0a\\\n\\xc0\\x51\\xc9\\x4c\\x96\\xc2\\x35\\x89\\x91\\xb1\\x8a\\x85\\x4a\\xaf\\x1a\\x92\\\n\\xcf\\x8b\\x78\\x51\\xb2\\x84\\xaa\\xa4\\xa7\\x06\\x14\\xbd\\x8b\\x8e\\x66\\x91\\\n\\x69\\xb6\\x28\\x03\\x76\\xf2\\x6e\\xde\\x25\\xdb\\xe5\\x35\\x67\\xcf\\x8c\\x58\\\n\\x34\\xae\\xad\\x42\\x5c\\xe4\\xa9\\x4a\\x52\\xfb\\x49\\x6a\\xbb\\x6f\\xae\\x54\\\n\\xf1\\x89\\x36\\xf9\\x6a\\x96\\x51\\x74\\xa4\\x12\\xf7\\x8b\\x10\\x29\\x57\\x6e\\\n\\xbc\\x21\\x05\\xd9\\x8f\\x5c\\xe0\\x50\\x10\\xe7\\xca\\x14\\x4d\\x53\\x91\\xc7\\\n\\xc2\\x27\\x59\\x10\\xa0\\xa9\\x80\\x32\\xc7\\x64\\xfd\\x20\\xd9\\x8e\\x6b\\x4e\\\n\\x0f\\x57\\xc7\\xac\\xfc\\xa1\\x56\\x15\\xa7\\xe2\\x6b\\x50\\x42\\xaa\\xd5\\x7a\\\n\\xd4\\x72\\x83\\x66\\x59\\xa8\\xda\\x0d\\x42\\x92\\xdd\\x18\\xd0\\x53\\x10\\x84\\\n\\x94\\xb7\\x73\\x65\\xd7\\x0e\\x30\\xb9\\xf2\\xa4\\x0d\\xb0\\x06\\x7b\\x54\\xeb\\\n\\x0f\\x38\\xb4\\x7b\\x43\\x65\\xb1\\xa1\\x53\\xbe\\x1a\\xae\\xb0\\x67\\x49\\x35\\\n\\xa4\\x69\\xcf\\x6d\\x97\\x3d\\xd3\\x29\\xc0\\xf2\\xcf\\xae\\x9e\\x3d\\xf1\\x0b\\\n\\x0f\\x36\\x62\\xc9\\x55\\x4d\\x4e\\x26\\xa7\\x3c\\x20\\x4c\\x91\\x33\\xfa\\x5f\\\n\\xf5\\x57\\x3e\\xb7\\x42\\x2e\\xb8\\x8b\\x88\\xdd\\xe7\\xf9\\x85\\x5d\\x04\\xf3\\\n\\x81\\x77\\x10\\x53\\x4a\\xe3\\x13\\x26\\x32\\x08\\x17\\xab\\x85\\x29\\x4d\\xf1\\\n\\x32\\xac\\xde\\x1d\\xdd\\x7a\\x42\\xa5\\xba\\x01\\xce\\xbc\\x33\\x6e\\xb8\\x45\\\n\\xa1\\x1b\\x14\\x15\\xe1\\xb9\\xfa\\xac\\x4c\\xa9\\x19\\xf6\\x70\\xff\\x00\\x4f\\\n\\xde\\x9c\\xe2\\xc9\\x38\\xca\\x98\\x94\\x33\\x03\\xd6\\x7d\\x73\\x8b\\x51\\x41\\\n\\x59\\x20\\x83\\xb0\\x9c\\x0b\\xf1\\x84\\x4b\\xd6\\xa9\\x49\\x7b\\xb4\\x51\\x7c\\\n\\x30\\xe2\\x5a\\x12\\x26\\xcb\\x43\\x3e\\x07\\x7d\\x5b\\x0a\\x37\\x58\\x45\\x82\\\n\\xdc\\xab\\x24\\xf4\\xcc\\x9d\\xf1\\xe5\\x95\\x12\\x0a\\x19\\x60\\x36\\x4e\\x97\\\n\\x4b\\x92\\xe4\\x02\\x5c\\x9c\\x2a\\x63\\x46\\x69\\xf9\\x16\\xed\\x1f\\xfe\\x59\\\n\\x26\\x58\\x4c\\xd9\\xdb\\x61\\x4a\\x4d\\xd6\\x0a\\x48\\x18\\x91\\x4c\\x30\\xf1\\\n\\x89\\xfe\\xce\\x69\\x3b\\x14\\xa9\\xb3\\x97\\x33\\x59\\x2d\\x4b\\x0a\\x17\\x03\\\n\\xdc\\x4a\\x88\\x61\\x89\\xcf\\x80\\xa7\\x9c\\xe5\\xff\\x00\\x97\\xaf\\x5c\\xa2\\\n\\x54\\x5b\\xb2\\x9d\\xa5\\x1e\\x0d\\x88\\x6c\\x5b\\xf5\\x12\\xb4\\x9a\\x55\\x79\\\n\\x57\\x4a\\x42\\x8a\\x94\\xea\\x04\\x3e\\xd1\\x35\\x07\\x9f\\x71\\x77\\x8b\\x41\\\n\\x55\\xa9\\x8a\\x66\\x84\\x01\\xb8\\x8f\\xb1\\x19\\x61\\xe1\\x12\\xad\\x2a\\xb3\\\n\\x10\\x89\\x93\\x82\\x92\\x68\\x6f\\x2d\\x2d\\x77\\x27\\x62\\x37\\x0e\\x07\\x8e\\\n\\x31\\x6c\\xb5\\x05\\x5a\\x92\\x52\\xa4\\xdd\\x2c\\xe5\\x2a\\x76\\xc1\\xc0\\x01\\\n\\xfc\\x30\\xe0\\x72\\xd6\\xac\\xe9\\x09\\x41\\x09\\x71\\x7b\\x14\\xb9\\x66\\xfe\\\n\\x44\\x6f\\xcb\\x9b\\x71\\x3a\\x1d\\x4a\\x16\\x61\\x8f\\x65\\x3e\\x3f\\x48\\x54\\\n\\xca\\xbe\\x3c\\x04\\x4b\\x9c\\x93\\xf2\\xf9\\x7e\\x21\\x76\\x84\\x91\\xab\\xcf\\\n\\xc0\\xd7\\xf7\\x0b\\xb3\\x39\\xbc\\x7b\\xba\\xce\\x25\\x0b\\xad\\xe1\\xdc\\x7f\\\n\\x7e\\x11\\x31\\x29\\x0a\\xba\\xa0\\xe0\\xf0\\x71\\x1e\\xd2\\xe8\\xe9\\x46\\x5a\\\n\\xad\\x12\\xd2\\x1e\\xe0\\xc0\\x3d\\x43\\xfe\\xe1\\x2a\\x51\\x24\\x17\\xa1\\x6c\\\n\\x3e\\xad\\xcb\\x74\\x2c\\x9a\\xbe\\x51\\x2e\\x62\\xca\\xc8\\x4d\\xe3\\x5a\\x96\\\n\\xa0\\xf4\\xeb\\x81\\x80\\x4d\\xe0\\xf5\\xa7\\x76\\x7b\\xf3\\xf2\\x83\\xb4\\x82\\\n\\x90\\x4e\\xd0\\xdf\\xd3\\x52\\x24\\x5a\\x93\\x65\\x64\\xb5\\x71\\x25\\xd4\\x78\\\n\\x66\\xfc\\xb0\\x83\\x6b\\x36\\x97\\x3b\\x58\\x16\\x29\\x77\\x4d\\x4e\\x7d\\xfb\\\n\\xf7\\xc4\\xed\\x22\\x24\\x80\\xca\\xbc\\x89\\xa9\\x5a\\x4a\\x50\\xfb\\x57\\x15\\\n\\x77\\x6d\\x2d\\x79\\x19\\xd6\\xf6\\xd6\\x40\\x00\\xc6\\xd5\\x39\\x73\\x94\\x6e\\\n\\xba\\x12\\x09\\x3f\\x35\\x6a\\xef\\xcc\\xe2\\xf8\\xbb\\xc4\\x8d\\x6b\\x56\\x66\\\n\\x27\\x7d\\x78\\x79\\xfe\\xa1\\x53\\x27\\x26\\x62\\x83\\xb8\\x76\\xde\\x1a\\x90\\\n\\x99\\xab\\x48\\x79\\x62\\x55\\xe5\\xf6\\xe8\\x90\\x71\\xa6\\x58\\xf1\\x89\\x36\\\n\\xc9\\xc8\\x4b\\x14\\xdd\\x4e\\x04\\x25\\x59\\x67\\x4e\\x3e\\x71\\x2a\\xdb\\x28\\\n\\x97\\xd5\\xab\\x8b\\xb9\\xdf\\xbf\\x0e\\xb0\\x89\\x16\\xa9\\x69\\x58\\x98\\x84\\\n\\x20\\x16\\xd9\\xbc\\x28\\x14\\x03\\x0a\\x79\\x3c\\x5b\\x2d\\x33\\x4c\\x83\\x35\\\n\\x25\\xce\\xb4\\x05\\x90\\x83\\xb0\\xe9\\xae\\xcd\\xdc\\x01\\x17\\x5d\\x8f\\x02\\\n\\x45\\x62\\x45\\xb1\\x6a\\x74\\xde\\x2f\\x81\\xc0\\x8a\\x64\\x2a\\x5a\\x87\\x36\\\n\\x1b\\xce\\x11\\x3b\\xb1\\x88\\x3b\\x33\\x28\\xee\\xa2\\xf8\\x16\\x4e\\xf7\\xa7\\\n\\x0c\\x04\\x21\\x22\\xfa\\x57\\x8d\\x51\\x5a\\x52\\xea\\x9c\\xd0\\x57\\xea\\xe2\\\n\\x3f\\xcc\\x8c\\x94\\x07\\x2e\\xe5\\x29\\xa3\\x17\\xcf\\x23\\xe6\\x79\\x98\\xd1\\\n\\xba\\x43\\x64\\x12\\x45\\xda\\x38\\x51\\x01\\x40\\x55\\xee\\x92\\x69\\xc8\\xe7\\\n\\x81\\x4d\\x60\\x5c\\x22\\x95\\x7a\\xbf\\x9b\\xf2\\x85\\xf5\\xe5\\x0d\\x43\\x8f\\\n\\x84\\x5c\\x49\\xfd\\x08\\x32\\x93\\x74\\x61\\x84\\x6a\\x7f\\x88\\xa7\\x17\\x1e\\\n\\x9f\\xb8\\xb3\\xce\\x9d\\x29\\x94\\x94\\xb1\\xf0\\xf2\\x7e\\xb7\\x46\\x96\\xb7\\\n\\x5a\\x67\\x4b\\x20\\x02\\x54\\x03\\x0c\\x78\\xc2\\xac\\x7a\\x66\\x65\\xe5\\x6a\\\n\\x55\\x31\\x18\\xb5\\xd7\\xe3\\xe5\\x96\\x39\\x46\\xa6\\xda\\xb9\\xda\\xb9\\xb6\\\n\\x49\\x81\\x8b\\x76\\x48\\x0f\\xd7\\x1f\\xb4\\x2a\\x54\\xc4\\xb5\\xfb\\x2a\\x98\\\n\\x70\\x38\\x61\\x5e\\xe8\\xbd\\xb6\\x11\\x29\\x05\\x1f\\xc8\\x11\\x89\\xfd\\x66\\\n\\xd1\\x67\\xb0\\xce\\x52\\x44\\xc2\\x92\\xc2\\xa5\\xf0\\xeb\\x7f\\x84\\x2d\\xe4\\\n\\x2b\\x6d\\x20\\x03\\x81\\x1d\\xfd\\x79\\x42\\xf6\\x94\\xac\\xc1\\x3c\\x45\\x38\\\n\\xc4\\xb4\\x5d\\x27\\x8b\\x74\\x61\\x06\\xeb\\x05\\xf6\\x73\\xe5\\x9f\\x94\\x4e\\\n\\xb2\\x13\\x2c\\xcd\\x95\\x50\\x06\\x5c\\xbe\\x9e\\x15\\xf0\\x37\\x82\\x45\\xfa\\\n\\x29\\xcb\\xf9\\xfd\\x21\\x5f\\x33\\x67\\x4f\\x38\\x5a\\x15\\x21\\x5a\\xc6\\xcd\\\n\\xbc\\x7c\\x9b\\x9d\\x44\\x24\\x99\\xe5\\x8a\\x8d\\x32\\xa4\\x21\\x29\\x42\\x2b\\\n\\xe5\\x02\\x68\\x4b\\xb3\\xd5\\xc4\\x4a\\x52\\x56\\x6e\\x97\\xc3\\xc7\\xf5\\x1e\\\n\\xca\\xfb\\x09\\x33\\xda\\x3b\\x47\\xf9\\x5d\\x8e\\x7e\\xa2\\xae\\xc9\\x53\\x55\\\n\\xdf\\xaf\\x4a\\x34\\x58\\x3f\\xfc\\x2b\\xa6\\x74\\x49\\x33\\xa7\\xe9\\x25\\xda\\\n\\x04\\xba\\xa5\\x2a\\x23\\x65\\x39\\x26\\x9b\\xab\\x52\\x73\\xe1\\x1e\\xd5\\xfb\\\n\\x43\\xfe\\x42\\x0e\\x89\\x56\\xd5\\xa2\\x66\\xca\\x38\\x99\\x7b\\x4a\\x6d\\xf4\\\n\\x07\\xa3\\x03\\x48\\x4f\\xb5\\xdb\\x84\\xf9\\xc8\\x52\\x43\\x9c\\x59\\x99\\x8b\\\n\\x90\\x41\\xe7\\xdf\\xe1\\x0b\\xb4\\x49\\x75\\x1b\\xc9\\x70\\xa2\\x58\\x05\\x67\\\n\\xd7\\xe6\\x15\\x68\\x94\\x28\\x05\\xea\\xd6\\x85\\xab\\xfe\\xaf\\xb3\\x71\\xac\\\n\\x5a\\x54\\x99\\x92\\xe6\\x4b\\x60\\x4a\\xd0\\xa4\\xa6\\xf6\\x6f\\xc2\\xaf\\xc7\\\n\\x8e\\xf8\\x93\\x2a\\x40\\x49\\x94\\x64\\xa0\\x10\\x30\\x48\\x6b\\xa5\\xb7\\x8a\\\n\\xbb\\x11\\x78\\x8a\\xb1\\x0c\\xe5\\xdb\\x44\\xd9\\xd7\\xef\\xab\\x24\\x32\\x75\\\n\\x89\\xba\\x28\\xcd\\x9b\\x66\\xdc\\x0b\\x17\\x8b\\x21\\xd5\\xd9\\x92\\x0f\\xce\\\n\\x00\\xf0\\x1f\\x9c\\x61\\x53\\x44\\x80\\xb5\\x9d\\xc4\\xc5\\x97\\x4b\\xa5\\x4b\\\n\\xb8\\x33\\xe3\\x0a\\x42\\x57\\xf1\\x73\\x2d\\xf4\\x81\\x7e\\xf3\\x2b\\xb3\\xdd\\\n\\x08\\xce\\x16\\x87\\x8d\\x35\\x2c\\xff\\x00\\x97\\xad\\xb1\\xaf\\xe3\\xaf\\xb4\\\n\\x25\\x06\\xf4\\xcc\\x3b\\x5c\\x47\\xde\\x27\\xca\\xbd\\xc0\\xee\\xaf\\xd3\\x9c\\\n\\x21\\x17\\x46\\x0c\\x7f\\xc2\\x58\\xdb\\x4f\\x7f\\xfe\\x26\\x26\\x86\\x35\\xe3\\\n\\x12\\x57\\xaa\\x96\\xa0\\x0d\\xcb\\xd5\\x71\\x9b\\xd5\\xab\\xfb\\x8b\\x44\\xa5\\\n\\xeb\\x54\\x65\\x21\\xb1\\x24\\x24\\x06\\xee\\xa6\\xfa\\xe1\\x89\\x78\\x32\\x2d\\\n\\x0c\\x41\\x19\\x7a\\xf7\\x46\\xa2\\x78\\x18\\x60\\x47\\x58\\x46\\xa5\\x4c\\x02\\\n\\xd8\\x1c\\xeb\\x5f\\x2f\\xa4\\x7b\\xb2\\x40\\x18\\x78\\x93\\x02\\x59\\xba\\xe3\\\n\\x20\\x7d\\x29\\xd7\\x27\\xce\\x24\\xbf\\x99\\xf4\\x85\\x3d\\xfe\\xb7\\x42\\x56\\\n\\x04\\x89\\x98\\x6d\\x6a\\xdb\\x8b\\x03\\x7b\\x0c\\x4f\\xda\\x2c\\x8b\\x1a\\xf9\\\n\\x94\\x1e\\x1c\\x77\\xf6\\xbc\\x46\\xfc\\x28\\x23\\x57\\x74\\x30\\x02\\x8d\\x85\\\n\\x2a\\x3b\\xbe\\xb0\\x12\\xea\\xc1\\xaf\\x00\\x58\\x1f\\x9b\\x3a\\xd3\\xa7\\x8b\\\n\\xbb\\x62\\x98\\x3f\\xa7\\x8b\\xd6\\x09\\xba\\x08\\xe1\\xd7\\x94\\x68\\xd9\\xc8\\\n\\xf7\\x74\\x87\\x6b\\xa9\\xba\\x39\\x30\\x2d\\xff\\x00\\x71\\x6c\\x04\\x19\\xf2\\\n\\x92\\x08\\xbe\\x54\\x77\\x33\\x79\\xd7\\xac\\xc4\\x09\\xe9\\x5e\\xc9\\x25\\xcf\\\n\\x84\\x29\\x9f\\x87\\xf8\\x5e\\x3c\\x23\\xd9\\xc9\\x6b\\xd3\\x13\\x57\\x68\\x1f\\\n\\xfb\\x01\\xd8\\x74\\xb2\\x94\\xd9\\xde\\x35\\x6d\\xfb\\xc8\\x31\\x68\\x91\\x64\\\n\\x42\\xd6\\x0a\\x36\\x92\\xb2\\x07\\x01\\xcb\\xbc\\xd7\\x94\\x58\\x55\\x67\\x97\\\n\\x25\\xd3\\x2d\\x05\\x78\\x0b\\xc9\\x04\\x36\\x06\\x86\\x2d\\xd6\\x79\\x00\\xeb\\\n\\x53\\x26\\x5d\\xec\\x49\\xb8\\x1b\\xc1\\xa1\\x7a\\x3c\\x5a\\x12\\xea\\x95\\x28\\\n\\xb8\\xc9\\x09\\x1e\\x82\\x34\\xd6\\x8e\\x55\\x9e\\xd5\\x20\\xca\\x40\\x4e\\xc2\\\n\\x8e\\x1f\\xdd\\x4c\\x40\\x89\\x53\\xb5\\x5a\\x32\\x7a\\xd6\\x52\\xe9\\x96\\xf8\\\n\\x0e\\x11\\x68\\xd2\\x73\\x0a\\xee\\x8b\\x97\\x3f\\xd0\\xff\\x00\\x6c\\x29\\xf4\\\n\\x81\\x34\\xad\\x20\\xe4\\x46\\xe8\\x5d\\x05\\xed\\xd0\\x6d\\x72\\xd9\\x5b\\x24\\\n\\x80\\x0b\\x80\\x4d\\x44\\x68\\xad\\x19\\x6e\\xb6\\x58\\xb5\\xf2\\x8d\\xcb\\x33\\\n\\x3b\\x29\\x37\\x94\\x46\\x62\\xf1\\xa8\\x7c\\xce\\x31\\x6e\\xb2\\x25\\x13\\x57\\\n\\x4a\\xbe\\xf3\\x45\\x65\\xdd\\x84\\x1b\\x32\\xef\\x1a\\x53\\x28\\xb4\\x48\\x2b\\\n\\x27\\x59\\x83\\x16\\x6d\\x91\\x85\\x30\\xe4\\x3e\\xbb\\xa2\\x5c\\xb2\\x92\\xc9\\\n\\x70\\x08\\xcc\\xba\\xb2\\xf2\\xcf\\x7c\\x00\\x47\\x08\\x48\\x0a\\x35\\xc2\\x13\\\n\\xb3\\x85\\x23\\xd9\\xbf\\x69\\xad\\xfe\\xce\\x69\\x59\\x36\\xfb\\x2c\\xf0\\x85\\\n\\x4c\\x5a\\x13\\x32\\xf2\\x42\\x92\\xce\\xd8\\x1a\\x0e\\x71\\x67\\xf6\\xa5\\x56\\\n\\xdf\\x67\\xd7\\xa4\\x44\\xfb\\xd3\\x4a\\x0d\\xf2\\xfb\\x37\\xee\\x02\\x76\\x79\\\n\\x1f\\x18\\xd3\\xfa\\x6d\\x5a\\x73\\x4f\\x5a\\xe6\\xda\\x2e\\xcc\\x55\\x82\\x6a\\\n\\xd3\\x2d\\x69\\x48\\x01\\xd4\\x2e\\x14\\x90\\x3b\\x5d\\xab\\xb5\\xcd\\xa2\\x62\\\n\\x55\\x39\\x20\\x50\\x7f\\x70\\x17\\x69\\xbf\\x65\\xaa\\x63\\x54\\x10\\x9a\\x28\\\n\\x1d\\x9c\\x58\\x12\\x72\\x24\\xe1\\xfb\\x3d\\xf0\\xbb\\x6a\\x24\\xac\\x4a\\x9a\\\n\\x02\\x96\\xbb\\xd7\\x4a\\x41\\x18\\x2a\\xee\\xd6\\x3c\\x38\\x71\\x89\\x12\\x57\\\n\\x32\\x74\\xb5\\x9e\\xc2\\x8f\\x60\\x00\\xe1\\x35\\x00\\x93\\x95\\x30\\xde\\x78\\\n\\x03\\x0b\\xb3\\x09\\x0a\\x25\\x08\\xa1\\x20\\x93\\x45\\x1a\\xbe\\x58\\x37\\xdc\\\n\\xc6\\x8e\\x2f\\x6a\\xa2\\x81\\x37\\xc3\\xf9\\xe2\\x3a\\x31\\x64\\x93\\xac\\xb3\\\n\\xa0\\xaf\\xe5\\x0e\\x96\\xa6\\x22\\xbc\\xe2\\xdf\\x27\\x58\\x95\\xa4\\xbd\\x52\\\n\\xa0\\xd5\\xc4\\xa5\\xb1\\x8b\\x26\\x8c\\x08\\x52\\x56\\xca\\x0b\\x06\\x8e\\xa3\\\n\\x97\\x2f\\x18\\xb2\\xcc\\x5e\\xb7\\x56\\xb2\\xe0\\x35\\x3b\\xa9\\x13\\x7b\\x20\\\n\\x0d\\xff\\x00\\x78\\x96\\x0b\\x78\\x43\\x05\\x3b\\xf5\\x8c\\x69\\x2b\\x11\\x9f\\\n\\x66\\x52\\x10\\xed\\xe7\\xe3\\x16\\xbd\\x15\\x32\\x42\\x95\\x75\\x15\\xbc\\x31\\\n\\x55\\x08\\x38\\xb1\\xe4\\x1b\\xc2\\xb9\\xc6\\x91\\xb1\\x6a\\x65\\xcb\\x5c\\xa1\\\n\\xb4\\x54\\x90\\xb7\\x25\\x42\\xeb\\x80\\x46\\x2c\\x19\\xdd\\xfc\\x9a\\xb0\\xa2\\\n\\x97\\x37\\x58\\xb0\\xc8\\xbe\\xfe\\x7d\\x78\\xc0\\x2a\\x51\\xe0\\xf1\\xd8\\x17\\\n\\xb3\\x05\\x87\\x22\\xdd\\xd9\\xc1\\x37\\xf1\\xdd\\x05\\x27\\x06\\xa0\\xc2\\x10\\\n\\x90\\x94\\x97\\x67\\xbc\\x00\\xbd\\x85\\x2b\\x9e\\x58\\x24\\x97\\xc5\\x49\\xce\\\n\\x26\\x2e\\x4b\\x80\\x25\\x5d\\x41\\x15\\x2f\\x5a\\x36\\x14\\x1f\\x68\\x9d\\x3e\\\n\\xcb\\x2f\\x02\\x5f\\x6a\\x8c\\x54\\xd7\\x40\\x72\\x5b\\x06\\xc6\\xb0\\x11\\x63\\\n\\x98\\x90\\xb5\\x28\\x3a\\x9b\\x15\\x94\\xd7\\x01\\x47\\xce\\x0d\\x9a\\xcc\\x52\\\n\\x2e\\x6d\\x62\\xdb\\x64\\x8f\\xae\\x78\\xc1\\x97\\x31\\x3d\\x90\\xe9\\xce\\x8f\\\n\\x4c\\xff\\x00\\x11\\x64\\xb2\\x4c\\x99\\x32\\x80\\xa6\\x53\\x8e\\x75\\xcb\\x99\\\n\\xc9\\xa2\\xdb\\x62\\x32\\x92\\x17\\x2e\\x49\\xc5\\x8a\\xca\\xdf\\x36\\x70\\x96\\\n\\x39\\x6d\\x54\\xa5\\xd3\\x83\\xd2\\x24\\x58\\x14\\xa9\\x5f\\x1f\\x68\\x6a\\xcc\\\n\\xd4\\x04\\x9b\\x84\\x28\\x5d\\x15\\x60\\x36\\x45\\x4b\\x97\\xbd\\x78\\xa4\\xe5\\\n\\x02\\x54\\xd9\\x56\\xc9\\x97\\x14\\xd2\\xca\\x9a\\xe2\\xc5\\xe6\\x66\\xfb\\x1c\\\n\\x0f\\x7c\\x49\\x9a\\xb9\\x80\\x15\\x36\\x2d\\x87\\x8c\\x02\\x44\\xca\\xe0\\x71\\\n\\xc1\\x86\\x79\\x45\\x4a\\xdf\\x73\\xfa\\x67\\xc3\\xd6\\x25\\x4a\\x41\\x4b\\xab\\\n\\x1c\\xf1\\xae\\x31\\x26\\x62\\xa5\\xa1\\x05\\x0d\\x80\\x7d\\x97\\x70\\xc4\\x7a\\\n\\xe3\\xf7\\x89\\xb3\\x76\\x81\\x04\\x87\\x0f\\x42\\x43\\xf9\\xc4\\x89\\xea\\x13\\\n\\x12\\x6f\\x97\\xc8\\x28\\xbf\\xac\\x1b\\x4c\\xec\\xdb\\x93\\x44\\xa9\\xc1\\x74\\\n\\x38\\xb2\\x7c\\x77\\x53\\xcf\\x38\\x06\\x59\\xc8\\xf8\\xb7\\xd0\\xc4\\x9b\\x2c\\\n\\xad\\x13\\x61\\x4d\\x92\\xc6\\x65\\x85\\x50\\x50\\xb0\\xbb\\xc0\\x8f\\xb4\\x5a\\\n\\x6c\\xc2\\x64\\xc9\\x6a\\x0c\\xd7\\x06\\xb3\\x8a\\xdc\\x9a\\x70\\xc2\\x02\\x6e\\\n\\x0b\\xa9\\x77\\xf0\\xa7\\x58\\x44\\xed\\xa4\\x31\\xdd\\x16\\x34\\x2d\\x49\\x55\\\n\\x65\\xd2\\xf0\\x67\\xc8\\x61\\x94\\x7b\\x4a\\x3f\\xe6\\x02\\x91\\xaa\\x4a\\x92\\\n\\x5f\\x13\\x5c\\x86\\x63\\x7f\\xda\\x3d\\xf6\\x64\\xeb\\x3c\\xf9\\x49\\x56\\xc5\\\n\\xd6\\x50\\x38\\x9a\\xe5\\x8e\\xe8\\xd5\\xd9\\xcc\\xb6\\x37\\xaf\\x30\\x1e\\x1c\\\n\\x60\\x6c\\x80\\x96\\x20\\x01\\x42\\xac\\x1b\\x7b\\xc1\\xba\\xa0\\x51\\xad\\x96\\\n\\xa5\\x4c\\x60\\x90\\x0b\\x90\\xcf\\x8b\\x0e\\x31\\xa0\\x3d\\x9e\\x94\\xb4\\xeb\\\n\\x6d\\x86\\x5e\\xa8\\x6d\\x2c\\x3b\\x92\\x8c\\xd8\\x11\\x8b\\x65\\x06\\xd5\\xa3\\\n\\xec\\x7a\\x38\\xc9\\xb2\\xb0\\x94\\x06\\xe0\\x0d\\x47\\x03\\x16\\xfb\\x4c\\xa5\\\n\\xda\\xa6\\xa8\\x17\\x04\\xe4\\xc7\\xeb\\x94\\x27\\x55\\x30\\x5d\\x46\\x23\\x7d\\\n\\x07\\x5e\\x7f\\x49\\xa9\\x45\\xeb\\xaa\\x15\\x76\\x76\\xa7\\xaf\\x9f\\xe2\\x27\\\n\\x58\\xe5\\xe2\\x90\\x1f\\x0c\\x3b\\xe2\\x6c\\x95\\xa5\\x5b\\xc6\\xf1\\x0c\\xa6\\\n\\xdd\\x58\\x65\\x13\\xf9\\x30\\x25\\x5f\\x94\\x89\\x4a\\xfe\\xb8\\x50\\xae\\x20\\\n\\xd7\\x17\\xef\\x8f\\x66\\x34\\x84\\xb9\\x3e\\xc6\\xda\\xa4\\x4e\\x5a\\xb5\\xba\\\n\\xf5\\x84\\xe0\\xd7\\x75\\x48\\x6a\\xbf\\x38\\xb3\\x58\\xb5\\x33\\x74\\xb2\\xe7\\\n\\xa4\\xad\\x76\\x8b\\x42\\x97\\x2d\\xb3\\x48\\x9a\\x4e\\xd2\\x8b\\x52\\xee\\x01\\\n\\x58\\x37\\x18\\x51\\x18\\x6a\\xd7\\x8b\\x39\\x01\\x9b\\x7e\\x2d\\xd6\\x10\\x1a\\\n\\x63\\x89\\x64\\x9d\\xa6\\xa5\\xe6\\xc7\\xbd\\xbe\\xd1\\xee\\x5a\\xa0\\xa9\\xf6\\\n\\x99\\x0b\\x21\\x0a\\x1a\\xb5\\x4b\\x4e\\xb1\\x57\\x58\\x5e\\x0d\\xb2\\xc4\\x9c\\\n\\x31\\x0e\\xc6\\x2c\\x4b\\xb3\\x4e\\xb3\\xad\\x72\\x52\\xa4\\xdd\\x04\\xed\\xa6\\\n\\xea\\xa9\\x8e\\xfe\\x9e\\x2d\\x76\\x84\\xe0\\x1f\\x0a\\xab\\x70\\x18\\xfa\\xc6\\\n\\x82\\x52\\x0e\\x95\\xd4\\xbb\\xeb\\x8a\\x57\\x2c\\x90\\x70\\x20\\x3b\\xf9\\x35\\\n\\x3b\\xde\\x24\\x04\\xa2\\x4a\\x65\\xfc\\xc1\\x35\\x89\\xf2\\xc9\\x51\\x23\\xc3\\\n\\x7c\\x2c\\x4d\\x18\\x06\\xeb\\xae\\x84\\x48\\x97\\x35\\x2a\\xd6\\xa9\\x9b\\x9d\\\n\\x69\\x4a\\xf7\\xc2\\x67\\xa1\\x4b\\x63\\x5a\\x73\\xac\\x4b\\x65\\x61\\xba\\x02\\\n\\x4f\\x0c\\xba\\x30\\x2a\\x85\\x0c\\xab\\x1a\\x75\\xe5\\xde\\x50\\xa6\\xd0\\x76\\\n\\xe8\\x75\\xe7\\x3a\\x62\\xe7\\xa8\\xa0\\x2c\\x94\\xbe\\x0a\\x4d\\x6a\\x32\\x37\\\n\\x99\\xce\\xf6\\xf2\\x83\\x62\\x54\\x95\\x15\\x25\\xae\\xa9\\xdc\\x3b\\xa8\\x92\\\n\\x71\\x2a\\x35\\x3d\\xe6\\x12\\x82\\x72\\x6f\\xc4\\x29\\x49\\x48\\x20\\xbb\\x62\\\n\\xe3\\x08\\x4a\\x82\\x99\\xb3\\x8d\\x52\\x48\\x72\\xa4\\x86\\x0e\\x49\\x53\\x08\\\n\\xb6\\x4c\\x6b\\xca\\xd7\\x20\\x06\\x58\\x90\\x02\\x89\\xa8\\x60\\x4b\\x80\\x36\\\n\\xd4\\xe9\\x22\\xb4\\xa5\\x28\\x54\\x6c\\x73\\x75\\x7a\\xdf\\x78\\x9b\\x7c\\xdd\\\n\\xf8\\x69\\xbd\\x7c\\xb8\\x04\\xe6\\x48\\x72\\xe2\\x89\\x2f\\xbd\\xa1\\x32\\xf5\\\n\\xc0\\xcc\\xfe\\x41\\x57\\x6f\\x64\\x16\\x05\\x33\\xef\\xe5\\xc2\\x16\\x92\\x65\\\n\\xb1\\xec\\xcb\\x76\\x6e\\x0e\\x5c\\x03\\xbf\\x08\\xbc\\x65\\x87\\x75\\x21\\x0e\\\n\\x36\\x52\\x4a\\x54\\x72\\x22\\x84\\x62\\x38\\x98\\xd1\\x8a\\xd7\\x29\\xa5\\x16\\\n\\x48\\xf9\\x56\\x29\\x8b\\x92\\xef\\x5d\\x97\\x18\\xe3\\x5a\\x3c\\x20\\x59\\xd1\\\n\\x2e\\xf1\\x0b\\xbc\\x80\\x6e\\xec\\x86\\x3d\\xe0\\x82\\x68\\xe3\\x8b\\xb4\\x4b\\\n\\xb4\\xaa\\x72\\x00\\x98\\xc4\\xd5\\xdb\\xb2\\x2b\\x40\\x41\\x3b\\x84\\x4b\\x5e\\\n\\xa9\\x43\\x59\\xb6\\x14\\x82\\x00\\x4f\\x12\\x29\\xb8\\x50\\x1f\\xa4\\x69\\x29\\\n\\x0b\\x92\\x93\\x31\\x32\\xdc\\x29\\xd6\\xd8\\x2f\\xbb\\x22\\xf4\\xa3\\xbf\\xd2\\\n\\x5c\\xd1\\x67\\x22\\x5c\\xc4\\xae\\x87\\x10\\xc5\\xf0\\xcd\\xde\\x9d\\x67\\x1a\\\n\\xe4\\x28\\xd2\\xf7\\x86\\x5c\\x0b\\xc4\\xb5\\x02\\x1d\\x8b\\x71\\xc7\\xbf\\x8f\\\n\\x94\\x49\\x37\\x90\\xd5\\x7a\\xf3\\xcc\\xe5\\xe5\\x12\\x09\\x09\\x20\\x9a\\x0b\\\n\\xc2\\xa4\\xee\\x7f\\x2c\\xab\\xe1\\x04\\x96\\x4b\\xf3\\xc7\\x18\\x07\\xf1\\x0e\\\n\\x78\\x42\\x66\\x29\\x3f\\xca\\x85\\xf1\\xa7\\xac\\x26\\xda\\x1a\\xa1\\x7d\\xc7\\\n\\xf5\\x16\\x51\\x6d\\x5c\\xd1\\xad\\x51\\x23\\x99\\xfc\\xf0\\xe7\\x84\\x29\\x37\\\n\\x14\\x84\\x9c\\xd2\\x0f\\xac\\x09\\x61\\x29\\xd6\\x1c\\x07\\xd7\\x74\\x59\\x6c\\\n\\xfe\\xf9\\x38\\x81\\xbe\\x2d\\xf6\\x19\\xba\\x31\\xcd\\x59\\x4a\\x27\\xc5\\xe3\\\n\\x4b\\x68\\x99\\x9a\\x4a\\xca\\xa9\\xa8\\x38\\x24\\x85\\x0d\\xfd\\x3c\\x4c\\xb0\\\n\\xcc\\xb0\\x4e\\x32\\xd5\\x81\\x25\\xdf\\xbf\\xed\\x16\\x2d\\x1f\\x36\\xdf\\x68\\\n\\x32\\xd2\\x14\\xcf\\xc7\\x7f\\xd2\\x2c\\xde\\xc4\\xe9\\x39\\x8a\\x6b\\x45\\x2c\\\n\\xbf\\xf2\\xf2\\xd8\\xe3\\xdd\\x12\\x7d\\x99\\xf6\\x67\\x43\\xcb\\x5d\\xa2\\xdc\\\n\\xb4\\x95\\xb0\\x28\\x72\\x0d\\x52\\xf7\\xb3\\x8f\\x68\\x74\\xcc\\xfb\\x6c\\xf4\\\n\\xc8\\xf6\\x7e\\x76\\xa6\\xcd\\x2a\\x67\\xc6\\x55\\xdb\\xd7\\xe5\\x0e\\xd0\\xc4\\\n\\x01\\x4c\\xfc\\x30\\x78\\x99\\x6a\\xd2\\xf3\\x64\\xaa\\x4a\\x2d\\x6c\\xa3\\x99\\\n\\x49\\x27\\xd6\\x9d\\x38\\x31\\x2b\\xdf\\xec\\xd2\\x92\\x2d\\x00\\xcd\\x5a\\x6f\\\n\\x5e\\x5a\\x1c\\x82\\xe4\\x91\\x4e\\xd6\\x0c\\x28\\x9e\\xe1\\x12\\xb4\\x92\\xb5\\\n\\x88\\x43\\x2d\\x25\\x4a\\xb8\\xea\\x4a\\x93\\x5c\\x68\\xf5\\xa4\\x5b\\x56\\x51\\\n\\x28\\x2e\\x97\\xa8\\x4f\\x4f\\x47\\x8b\\x3d\\xb4\\xcc\\x70\\xa3\\x80\\x70\\x71\\\n\\xa1\\x30\\x65\\xa1\\x67\\x1f\\xcc\\x4c\\xb3\\x02\\x29\\x8f\\x1a\\xc6\\xa4\\xa7\\\n\\x20\\x78\\xf4\\x22\\xc6\\x91\\x36\\xd2\\x91\\xb9\\x43\\xf3\\xce\\x14\\xab\\x44\\\n\\xab\\x39\\xb3\\x49\\x24\\x25\\x62\\xfb\\x62\\x03\\xec\\xbe\\xe3\\x83\\xc2\\x2c\\\n\\xab\\x0c\\x14\\xb5\\x5e\\x9a\\x5e\\xbc\\x8e\\xf1\\x4a\\xbb\\x50\\xbd\\x21\\x5a\\\n\\x3d\\x67\\xb5\\x32\\x9b\\xe8\\x90\\xe2\\xaf\\xd9\\xaf\\x4d\\x1a\\x32\\xc3\\x2a\\\n\\x52\\xc9\\x5d\\xd5\\x07\\xbc\\x1a\\xef\\x86\\x1c\\x7c\\xcc\\x69\\x0f\\x70\\x16\\\n\\x25\\x3a\\x25\\x83\\x77\\x86\\x79\\x77\\xfe\\xf3\\x8d\\x70\\x97\\xef\\x01\\x04\\\n\\x25\\x2d\\x87\\xcb\\x5d\\xe7\\xaf\\x48\\xb4\\x4f\\xc4\\xab\\x0c\\x46\\x64\\xb3\\\n\\x91\\x4d\\xfb\\x83\\xef\\x15\\x8f\\x67\\x09\\x99\\xa6\\x6c\\x8b\\x66\\xf8\\x60\\\n\\x28\\x7f\\x12\\x12\\x9c\\x7e\\xbc\\x61\\x4b\\xba\\x47\\x11\\x09\\x4d\\xe3\\x5c\\\n\\x21\\x69\\x97\\xb8\\x67\\x13\\xd8\\x22\\x90\\x8b\\x41\\x13\\x8e\\xee\\xbd\\x22\\\n\\xc0\\xab\\xe1\\x2e\\x71\\xeb\\xce\\x26\\x4b\\xba\\x20\\x2e\\xa4\\x77\\xf2\\x8d\\\n\\x2f\\x24\\x4c\\x42\\x89\\xe0\\x7b\\xff\\x00\\x71\\x68\\x4e\\xa6\\x7a\\x80\\xc1\\\n\\xf9\\xf3\\xeb\\xbe\\x26\\x1b\\xd4\\x38\\xab\\x0d\\xc3\\xaf\\x0d\\xf1\\x3d\\x1e\\\n\\xee\\xcb\\x0b\\x2b\\x05\\x44\\x14\\x9c\\x8f\\x0f\\x0f\\x48\\x4c\\xd0\\xb4\\x2a\\\n\\xbb\\x41\\xcf\\x2a\\xe2\\x7a\\xf2\\x89\\x96\\xb5\\xca\\x05\\x80\\x2c\\x72\\x39\\\n\\x1c\\xff\\x00\\x11\\x38\\xce\\x54\\xbd\\xb2\\xe9\\x5a\\x7b\\x23\\x64\\x17\\xe4\\\n\\x5f\\xcd\\xb9\\xe3\\x08\\x79\\xae\\x35\\x60\\x5c\\x64\\x97\\x15\\xfa\\x9d\\xdb\\\n\\x59\\xef\\x2d\\x12\\xe5\\x7c\\x74\\x13\\x2d\\x35\\x58\\x72\\xdf\\x8f\\x1d\\xf8\\\n\\x18\\x9b\\xb1\\x2c\\xa5\\x14\\x1b\\x80\\x72\\xdf\\xc7\\x11\\x8e\\xf8\\x94\\xb3\\\n\\x31\\x2c\\x5d\\xf7\\x61\\x80\\xe1\\x96\\x1d\\xd1\\x36\\x5a\\x75\\xd2\\x12\\xe9\\\n\\xdb\\x99\\x51\\x5c\\x00\\x7e\\xb3\\x2f\\x12\\x2c\\x89\\xb1\\x58\\xcc\\xe4\\xa0\\\n\\x04\\xb1\\x48\\xbb\\x42\\xf7\\x0a\\x96\\xa7\\xcc\\xb2\\x4a\\x79\\x92\\x6a\\xd4\\\n\\xb3\\xda\\xd5\\x35\\x49\\x17\\x6e\\x36\\x7c\\x1f\\xcb\\x67\\x66\\x26\\x4e\\x32\\\n\\xed\\x2a\\x0d\\x88\\x4b\\xf7\\x84\\xb5\\x73\\x18\\x53\\xf9\\x44\\xb9\\xe8\\x3b\\\n\\x53\\x3b\\xb1\\x7c\\x0e\\x34\\x25\\x99\\xcb\\xb0\\xf3\\x10\\xab\\x54\\xab\\x4a\\\n\\x2e\\xb0\\xbc\\x8c\\x30\\xdc\\xc1\\xdd\\x9d\\xf0\\xe0\\x7b\\xa3\\x48\\xc8\\x41\\\n\\x26\\xef\\xf5\\x00\\x73\\xc4\\xe6\\xcf\\x8e\\x58\\x60\\x4d\\x72\\x11\\x2d\\x01\\\n\\xeb\\x90\\x3f\\x4e\\xb7\\x40\\x37\\x53\\x5c\\x9c\\xf8\\x40\\xb4\\xa4\\x54\\x57\\\n\\xe9\\xd7\\x9b\\xc2\\x16\\x0d\\x31\\x25\\x2e\\xf9\\x3d\\xce\\x9f\\xc2\\x15\\x82\\\n\\x78\\x08\\x99\\x44\\x2b\\x96\\xee\\xb3\\xfd\\xc6\\xb0\\x80\\xd8\\x6f\\x3d\\x61\\\n\\x06\\x7e\\x5b\\x3c\\x4e\\xfe\\x51\\xae\\xe2\\xd1\\x66\\x9a\\x95\\xa0\\xb3\\x75\\\n\\xd7\\x94\\x49\\x94\\x54\\xbb\\xdb\\x88\\xf0\\x89\\x85\\x09\\xb2\\x4c\\xbc\\x28\\\n\\xdd\\x79\\xc6\\x88\\x9d\\x2a\\x42\\x27\\x2d\\x32\\xd4\\xd7\\x95\\x56\\x26\\x15\\\n\\x69\\x9d\\x6f\\xb3\\x10\\xa4\\xec\\xde\\x39\\x3b\\x0b\\xd4\\x89\\xa8\\x97\\x22\\\n\\x4c\\x84\\xdd\\x2a\\xbc\\x1d\\x4d\\xcf\\xae\\xee\\x51\\xed\\x76\\x8e\\x16\\xf9\\\n\\x96\\x5b\\x3c\\xa9\\x6c\\xb9\\xa4\\x24\\x10\\x1b\\x89\\x38\\x73\\xeb\\x0d\\x09\\\n\\xa3\\xb4\\x7e\\x83\\xd1\\xc2\\x64\\xe5\\x4b\\x13\\x42\\x41\\x37\\x9a\\xf5\\x39\\\n\\xfe\\x23\\x4e\\xfb\\x64\\xa9\\xb3\\x6d\\x36\\x79\\x5d\\x84\\x2d\\x48\\x96\\x52\\\n\\x68\\x52\\x29\\x48\\x9d\\x68\\x99\\x6a\\x5a\\x94\\xa5\\x2c\\x8a\\xe2\\x4e\\x7c\\\n\\x1f\\x84\\x5c\\x00\\x2b\\x97\\x5d\\xf0\\x99\\xc9\\x92\\xc0\\xe5\\xe1\\x9c\\x2b\\\n\\x48\\xa9\\x29\\x74\\xa4\\x1a\\xb2\\x78\\xfe\\x07\\x7c\\x4d\\x9d\\x67\\xb5\\x00\\\n\\x2d\\xf2\\x90\\x50\\x83\\x7d\\x07\\xfb\\xeb\\x86\\x62\\x99\\x83\\xe6\\xd0\\x99\\\n\\x9a\\x25\\x29\\x37\\x47\\xfc\\xb2\\x96\\x72\\x4d\\x70\\x03\\x17\\x63\\xdf\\x12\\\n\\xec\\x57\\x40\\x56\\xf1\\xd3\\x44\\xf4\\x15\\x4c\\x7b\\xcb\\x49\\xec\\x04\\x85\\\n\\x5d\\xa7\\x84\\x2a\\x7d\\xa2\\xce\\x51\\xaa\\xbd\\x39\\x6a\\x29\\x49\\x0c\\x0b\\\n\\x03\\xf3\\x65\\x86\\xe8\\x98\\xbb\\x5c\\xa4\\x89\\x93\\x6e\\xa1\\x2a\\x14\\xd9\\\n\\x72\\x69\\xf2\\x80\\x4e\\x3d\\xe6\\x2c\\xab\\x91\\x21\\x44\\xb1\\x74\\xb6\\xdb\\\n\\x33\\xe2\\xef\\xb8\\xb8\\x20\\x82\\x05\\x47\\x18\\x91\\xa5\\xe6\\xfc\\x50\\x92\\\n\\x0d\\xea\\x24\\x95\\x62\\xc4\\xb6\\x45\\xae\\xa4\\xf8\\x8e\\x20\\x03\\x69\\xb5\\\n\\x4e\\x00\\x11\\x81\\xec\\xde\\xc5\\xb3\\x18\\x8c\\x06\\x77\\x5d\\xc8\\xa4\\x69\\\n\\x6d\\x3f\\x39\\x12\\x13\\x25\\x60\\x84\\xa6\\x85\\xa8\\xa5\\x35\\x36\\x9c\\x5e\\\n\\x6c\\x77\\x36\\x35\\xc6\\x2c\\xda\\x5b\\x4a\\x09\\xaa\\x5a\\x06\\xcd\\xf2\\xa4\\\n\\x1b\\xea\\xbd\\x74\\xbb\\x39\\x77\\xc0\\x9a\\x5e\\x68\\x9f\\xed\\x05\\xad\\x08\\\n\\xbb\\x3c\\x28\\xa8\\x8a\\x0b\\xc4\\x53\\x03\\x50\\xaa\\xf8\\x77\\xc1\\xd2\\xd3\\\n\\x66\\xda\\x25\\x19\\x97\\xe5\\x24\\x28\\x76\\x0b\\x4b\\xb8\\x05\\x2f\\xe4\\x1a\\\n\\x80\\x61\\x86\\x62\\x2c\\xc3\\x5b\\x27\\x58\\xb2\\x9c\\x03\\x84\\x8b\\xc9\\x27\\\n\\x36\\x14\\xa6\\xe1\\x58\\xf6\\x3a\\xca\\x9d\\x6d\\xa2\\x7e\\x25\\x6b\\x0c\\x4b\\\n\\x0a\\x35\\x28\\xe7\\x02\\xf9\\x9e\\x3b\\xa1\\x2b\\x56\\xb1\\x4f\\x80\\x6e\\x9e\\\n\\x24\\xda\\x82\\x76\\x49\\xeb\\x74\\x4f\\xb5\\xa7\\x7e\\xf8\\x9f\\x69\\xbe\\xf0\\\n\\x13\\x79\\x45\\xb9\\x96\\xee\\x8b\\x32\\xee\\x01\\x93\\x0d\\xed\\xc6\\x13\\xa5\\\n\\x81\\x4d\\xc5\\xd3\\xed\\x08\\x98\\x14\\x4b\\x17\\x7f\\xac\\x69\\x24\\xb2\\x54\\\n\\xae\\x11\\x6b\\x53\\x5a\\x48\\xa7\\x68\\x7a\\x8f\\x2a\\xc4\\xc5\\x19\\x85\\x9b\\\n\\xc2\\xb8\\xd1\\x9a\\x26\\x24\\x22\\x8a\\xc5\\xa8\\x0e\\xf1\\xba\\x2d\\x52\\x94\\\n\\xa2\\x66\\x39\\x4b\\x1e\\xcb\\x30\\x2c\\x1b\\x10\\xcf\\xbd\\xb0\\x7c\\xe9\\x12\\\n\\xe4\\x66\\x18\\x93\\xc3\\xf3\\x02\\x42\\x9a\\xa0\\x53\\xca\\x26\\x4b\\x21\\xb2\\\n\\xe5\\xd0\\x80\\x82\\x16\\x93\\x7b\\xe6\\x1f\\xac\\x62\\x4e\\x07\\x90\\xfa\\xe3\\\n\\x1a\\x4e\\x5a\\x8c\\xb4\\x89\\x34\\x51\\xc8\\x60\\x2b\\x55\\x52\\xbb\\x2d\\x8a\\\n\\x6a\\x1f\\x85\\x3d\\x99\\xd0\\x13\\x2d\\x13\\x0a\\xed\\x8e\\x25\\xc8\\x1a\\xc4\\\n\\x27\\xfb\\xe6\\x51\\x40\\x93\\x42\\x6e\\x87\\x24\\x55\\x2e\\x18\\xe7\\x1a\\x42\\\n\\xca\\x89\\x72\\x42\\x50\\x01\\xba\\xfb\\x23\\x06\\x62\\xee\\xe0\\xbf\\x33\\xe3\\\n\\x0c\\x28\\xab\\xa0\\x53\\x86\\x71\\x6a\\xa4\\xb4\\x9c\\x36\\x87\\x78\\xda\\xcf\\\n\\x70\\x89\\xf6\\xd1\\x77\\x56\\x4b\\x5d\\x53\\xd7\\xbc\\x53\\x16\\xed\\x0e\\x7d\\\n\\xd1\\x63\\x9f\\x79\\x25\\x4a\\x3b\\x2d\\x8a\\x57\\x56\\x24\\x10\\x0b\\x96\\xee\\\n\\xa3\\xb5\\x61\\x32\\x11\\x6c\\xf9\\x8a\\x32\\x70\\xac\\x8b\\x3b\\x1a\\x31\\xfb\\\n\\x45\\xab\\x42\\x84\\xda\\x01\\x4e\\xd7\\xc2\\x00\\xa9\\xdb\\x07\\x0d\\x4c\\x77\\\n\\xf8\\xc4\\x8b\\x29\\x33\\x53\\x2a\\xe9\\xd5\\xef\\x63\\x4b\\xac\\x43\\x7d\\x39\\\n\\xd6\\x2d\\x9a\\x39\\x69\\x40\\x60\\x4a\\x32\\x48\\x0d\\x42\\x78\\x01\\xf3\\x62\\\n\\xd5\\xc8\\x9c\\xa0\\x2d\\xb6\\x59\\x38\\x36\\x18\\x36\\xea\\xd2\\x15\\x30\\xf8\\\n\\x50\\x63\\xf7\\xe3\\x02\\x60\\x54\\xbc\\x7c\\xfc\\xf8\\xbf\\x58\\x55\\x4b\\xe0\\\n\\xef\\x06\\x62\\x43\\xd0\\x3b\\xf5\\xc2\\x3d\\xe0\\x45\\x8e\\x4d\\xa2\\x5e\\xc8\\\n\\x19\\xe7\\x53\\xeb\\xd3\\xc5\\x8a\\x4c\\xc5\\x9d\\x53\\x0d\\x69\\x2e\\xd9\\x37\\\n\\x4f\\xfa\\x84\\xe8\\xf9\\x4c\\x25\\x5a\\x6f\\x3a\\xf2\\x0c\\x07\\xa7\\x4d\\x13\\\n\\x86\\x8f\\xd1\\x12\\x0d\\xe1\\x2f\\x56\\xaa\\xba\\x99\\xda\\x3f\\xcd\\xb4\\x6a\\\n\\x25\\xa9\\x02\\x64\\xa4\\xa1\\x6e\\xac\\x45\\xea\\xd6\\x2c\\xbe\\xd0\\x7b\\x3f\\\n\\x2a\\x6a\\x24\\x5a\\x66\\xdf\\x4a\\xaa\\xf7\\x83\\x8c\\xb8\\x8c\\xa3\\xda\\x3f\\\n\\x69\\x3d\\x99\\x92\\x13\\x3a\\xc8\\x42\\xad\\x32\\x43\\xc9\\x0b\\x29\\x29\\x2a\\\n\\xc2\\xac\\x03\\x86\\x27\\x31\\x58\\xd3\\x9a\\x7a\\x7e\\x95\\x9a\\xa4\\xa6\\x76\\\n\\xad\\x1f\\xc6\\x51\\xbb\\x43\\xc0\\x93\\x4e\\x30\\x66\\xdd\\xd9\\x35\\xbb\\x4b\\\n\\xea\\xed\\x1e\\x6c\\xd8\\xc1\\x99\\x85\\x00\\x7d\\xcf\\xf7\\x83\\x34\\xb6\\x5c\\\n\\x7a\\x78\\x9e\\xca\\xab\\xd0\\x6e\\x3e\\x7d\\x72\\x89\\x53\\xe5\\x5d\\x42\\x4e\\\n\\x29\\x71\\x8d\\x77\\xf4\\xff\\x00\\x78\\xb2\\x4a\\xb1\\x5b\\x35\\x9a\\xeb\\xff\\\n\\x00\\x0d\\x17\\xc5\\x53\\x8d\\xe6\\xdc\\x72\\x89\\xe9\\x95\\x22\\x60\\x28\\x08\\\n\\x64\\xa8\\x06\\x22\\xa4\\xb8\\xf1\\xf0\\xf2\\x84\\x2c\\xcd\\x57\\x66\\x84\\xd4\\\n\\x20\\x7f\\xdd\\xf4\\x3d\\xd1\\x3e\\xca\\xa9\\x53\\x4a\\x95\\x78\\xcb\\xa1\\x48\\\n\\x4a\\x76\\xaa\\xef\\xbd\\xe8\\xd9\\x50\\xf3\\x61\\xee\\xf3\\x16\\xca\\x49\\x12\\\n\\xd0\\x2a\\xcc\\xeb\\x3b\\x9c\\xb3\\x0c\\xdc\\x35\\x4e\\x0a\\x0d\\x5b\\x54\\xf9\\\n\\xcb\\x4a\\x65\\xcd\\x12\\x94\\x94\\x00\\xd7\\x65\\x94\\x1d\\xc5\\xcd\\xf2\\xee\\\n\\x37\\x5d\\xfa\\x41\\x17\\x92\\xd8\\x25\\x99\\x93\\x41\\xb8\\x79\\x40\\x97\\x2a\\\n\\x4c\\xbb\\xe0\\x97\\x0a\\x24\\x0e\\xb9\\x67\\x12\\xb4\\xcc\\xb4\\xd3\\x62\\xfa\\\n\\x2f\\x5d\\xc5\\xb7\\x57\\xf3\\xc7\\x94\\x69\\x2b\\x4a\\x2d\\x8b\\xbd\\x30\\x81\\\n\\xfe\\x9c\\x39\\x1c\\x7c\\xff\\x00\\x30\\x15\\x31\\x34\\x49\\x3c\\x39\\x7d\\xfc\\\n\\xe3\\xe2\\x2b\\xb6\\x42\\x8f\\x1f\\x1e\\x11\\x6a\\xb1\\x4f\\xb4\\x4a\\x98\\x84\\\n\\xa4\\x25\\x0b\\x43\\x15\\x24\\x6d\\xb3\\xd5\\x8e\\x0d\\xdd\\x9f\\x8e\\x8c\\x48\\\n\\xb2\\xd8\\x40\\x5a\\xaf\\xdd\\x46\\xe0\\x1a\\x9b\\xc0\\xc1\\xf7\\x53\\x84\\x7b\\\n\\x16\\x99\\x4a\\x91\\x3a\\xd0\\xab\\xe0\\x95\\x93\\x77\\xe5\\xc0\\x10\\x06\\x34\\\n\\x00\\xef\\x60\\x5c\\x64\\x21\\x4b\\x44\\xd4\\x5f\\x14\\x21\\xc5\\x33\\x6e\\xbb\\\n\\xa2\\x62\\xe6\\x25\\x42\\xee\\xf1\\xe1\\xf5\\xee\\xfa\\xc2\\x96\\xa5\\xe2\\xfd\\\n\\xd0\\x52\\x1c\\xe3\\xd7\\x74\\x48\\x00\\x93\\x5c\\xbe\\xb0\\x08\\x18\\x11\\x4c\\\n\\x2b\\xe5\\x13\\x54\\xa5\\x29\\xfb\\x3d\\x74\\xf1\\x63\\xb6\\x4f\\x96\\xa0\\x8d\\\n\\x82\\x9d\\xea\\x77\\x8d\\x25\\x6a\\x06\\xce\\x70\\x77\\x03\\xc7\\xad\\xfe\\xb1\\\n\\x6e\\x20\\x4d\\xbe\\x08\\xbc\\x54\\x29\\x89\\x35\\x60\\x58\\x64\\xed\\xc2\\x2c\\\n\\x4b\\xbe\\xad\\xb4\\x94\\x8b\\xc7\\x0e\\x1c\\xf8\\xf1\\xe1\\xca\\xd3\\x22\\xcc\\\n\\x54\\x99\\x97\\xa6\\x39\\x4e\\x03\\x89\\xdc\\x47\\x1a\\x8a\\x7a\\xb2\\x84\\xbb\\\n\\x86\\xe8\\x2a\\xaf\\x36\\xad\\x72\\xf3\\xaf\\x7c\\x6b\\x10\\x9c\\x69\\xe5\\xf4\\\n\\x8b\\xa9\\x3b\\x55\\xda\\x18\\x65\\xe0\\xd4\\x83\\x2d\\x06\\x8e\\xaf\\x2f\\xb4\\\n\\x2a\\x44\\xb6\\x25\\xd4\\xfb\\xa8\\x70\\xee\\xcf\\xf5\\x12\\x65\\xd0\\xd0\\xfd\\\n\\x78\\x53\\xd7\\xba\\x2c\\xb2\\xef\\xda\\x36\\x82\\x59\\x2a\\x14\\xc7\\x2f\\xdf\\\n\\x97\\x38\\xb2\\x4b\\xf8\\x03\\xe1\\xa5\\x02\\xeb\\xba\\x73\\x2d\\x50\\xf8\\x91\\\n\\xce\\xbe\\x91\\x69\\x98\\x76\\x90\\xc1\\x94\\x82\\x9a\\xb9\\xa1\\xa6\\x4d\\x1a\\\n\\x80\\xcc\\xcb\\xd9\\x04\\x3b\\x63\\xba\\xad\\xf5\\xc6\\x2d\\x16\\x33\\x32\\x58\\\n\\x7b\\xd7\\x4b\\x9c\\x18\\x8c\\x5d\\xc1\\xaf\\x1a\\x0a\\x63\\x16\\x9d\\x07\\x39\\\n\\x45\\xd3\\x7a\\xf5\\xf0\\xe0\\x82\\x53\\x74\\xfc\\xdb\\x04\\x17\\xc3\\x65\\xf7\\\n\\xf0\\x8b\\x36\\x8a\\x96\\x99\\x21\\x33\\x42\\x86\\x18\\x32\\x5e\\xe9\\x18\\x86\\\n\\xa7\\x3b\\xce\\xf1\\x2a\\xca\\x01\\x64\\x38\\x0e\\xec\\x15\\xe6\\x33\\x78\\x93\\\n\\x65\\x38\\x11\\x35\\x46\\x98\\x8f\\xac\\x4b\\xb2\\xcb\\x1f\\x29\\x07\\x17\\xa1\\\n\\x73\\xfb\\xf0\\xe7\\x16\\xc0\\xa5\\x21\\x52\\xe5\\xb7\\x64\\xd4\\x8c\\x55\\x8b\\\n\\x3f\\x1e\\x1e\\x11\\x3a\\x5c\\xd4\\x2d\\x4e\\x82\\x19\\x45\\xe9\\x9b\\xbd\\x21\\\n\\x4b\\xab\\x17\\xc4\\xd3\\x1f\\xdc\\x6b\\x6e\\x7d\\x5b\\x2d\\xc3\\x8c\\x2a\\x7d\\\n\\xec\\x18\\x30\\xce\\xbd\\xf8\\xe5\\x04\\x95\\x17\\xf2\\x1d\\x1a\\x74\\xf1\\xb4\\\n\\x6b\\x87\\x0a\\x88\\xb3\\xd6\\x80\\x67\\xca\\x12\\x55\\x66\\x57\\xbc\\x01\\xb4\\\n\\x28\\x06\\x34\\x8b\\x56\\x94\\x97\\xa8\\x5d\\xaa\\x7a\\xf5\\x66\\x58\\x61\\x43\\\n\\x89\\xa0\\xc3\\xd7\\xeb\\x1e\\xd3\\x7b\\x5d\\x6f\\xb4\\xda\\xcd\\x97\\x6b\\xdd\\\n\\x6f\\x35\\xf4\\x9c\\xb9\\x63\\x85\\x60\\xda\\xe7\\x4e\\x25\\x29\\xb6\\x4e\\xc4\\\n\\x81\\xdb\\xf0\\xc3\\x74\\x49\\x54\\xdb\\x38\\x53\\xce\\x5c\\xe5\\x12\\xe9\\x24\\\n\\x91\\x77\\x80\\x76\\xce\\xbc\\x2b\\x13\\x26\\xaa\\xd7\\xb0\\xb2\\x52\\xb5\\x50\\\n\\x17\\x7e\\x78\\x72\\x8d\\x5c\\x99\\x32\\xf6\\x54\\xf3\\x38\\xbb\\x1e\\x17\\xba\\\n\\xf3\\x85\\x25\\x74\\x2a\\x18\\x8b\\xc7\\x0a\\xbd\\x7a\\xf4\\x82\\xab\\xa0\\x6f\\\n\\xdd\\xe9\\x1a\\xd4\\xdc\\x35\\x2e\\xc7\\x2f\\xbc\\x4d\\x52\\xc8\\x64\\xb9\\xf0\\\n\\x10\\x90\\x02\\xb6\\xd4\\xa0\\xa2\\xa0\\x58\\x39\\xad\\x38\\x1a\\x67\\xe7\\x12\\\n\\xe7\\x19\\x09\\x55\\xc2\\x4a\\x96\\x2e\\xd5\\xf3\\x73\\x5f\\xbf\\xa4\\x4a\\xbe\\\n\\xb2\\xf6\\x92\\x52\\x02\\x55\\xb4\\x87\\x51\\x48\\x15\\x27\\x3c\\x86\\x60\\xed\\\n\\x16\\x0f\\x8c\\x68\\xa6\\x98\\x89\\x53\\x12\\x12\\x99\\x6b\\x60\\x95\\x4d\\x50\\\n\\x44\\xc5\\x1c\\x1d\\x48\\x53\\x28\\x72\\xc5\\xe8\\xd1\\xa6\\x2c\\xb3\\xa4\\x4b\\\n\\x0b\\xb8\\x0d\\xf0\\x9b\\xaa\\x0a\\x04\\x17\\xc9\\xc6\\x15\\xeb\\x38\\x54\\xc1\\\n\\x2a\\x4a\\x65\\xcc\\xd9\\x9c\\xa6\\x20\\x63\\x40\\x19\\x55\\xef\\x1c\\x62\\x62\\\n\\x92\\xaf\\x4f\\x5d\\xf0\\xb2\\x84\\x76\\xcb\\x53\\x9f\\xa4\\x5b\\xa6\\x22\\x64\\\n\\xc9\\x46\\xcf\\x3a\\x89\\x2a\\xd6\\x21\\xca\\x42\\xaf\\x25\\xb8\\x07\\x14\\x35\\\n\\xcc\\x06\\x22\\x27\\x4a\\x93\\x2d\\x0a\\x59\\x59\\x4c\\xc7\\x0c\\x31\\x2c\\x54\\\n\\xc7\\x0c\\xa1\\x12\\xa4\\xa9\\x20\\x85\\xab\\xcd\\xbf\\xf1\\xac\\x49\\x92\\xb9\\\n\\x89\\xf8\\x17\\x56\\xd4\\x72\\x42\\x70\\xe7\\xe7\\xe5\\x08\\xb3\\xcd\\xda\\x33\\\n\\x5a\\x98\\x04\\x91\\xf4\\xfc\\xbd\\x30\\x84\\x6b\\xe6\\x11\\x2e\\xe1\\xb8\\x5c\\\n\\x62\\xde\\x27\\x71\\xc6\\x2c\\x5a\\xbb\\x45\\xa4\\xd8\\x92\\x5d\\x29\\x4a\\x52\\\n\\xc2\\xa3\\xe6\\x4a\\x83\\x83\\x82\\x72\\xa0\\xcc\\xd5\\xa9\\xa2\\x74\\x67\\xba\\\n\\x58\\x42\\x42\\x6e\\xde\\x4d\\xe4\\xee\\xfc\\x67\\x12\\x8a\\x25\\xc9\\x4a\\x09\\\n\\xdb\\x73\\x78\\x65\\x97\\xe6\\x2e\\xa4\\x82\\x5f\\x01\\x48\\x08\\x49\\xcb\\x1c\\\n\\xdf\\xf3\\x13\\x65\\xa8\\x2c\\xe0\\xdc\\xc4\\x21\\x57\\x54\\x6b\\x80\\xfb\\x46\\\n\\xb4\\x6f\\xf2\\x3f\\x68\\x37\\x55\\x85\\x7a\\xe3\\x12\\xc0\\x96\\x4d\\xe1\\x56\\\n\\xe3\\x1a\\x46\\xd6\\x54\\xf2\\xd2\\x5c\\x92\\x9a\\x36\\xed\\xdd\\xd1\\x29\\x36\\\n\\x65\\x30\\x9c\\xc1\\x47\\x30\\xef\\x4a\\xb9\\x6f\\x23\\x12\\xf4\\x5d\\x9c\\x0d\\\n\\x95\\x06\\x26\\x99\\x1e\\x1e\\xb8\\xb4\\x4f\\xd1\\xd2\\xd0\\xcb\\x2d\\x75\\x00\\\n\\xe5\\x93\\x61\\xd3\\xc4\\xbd\\x13\\x2e\\x69\\x06\\x57\\x64\\x97\\x2e\\xe0\\x1d\\\n\\xa0\\x73\\x63\\x81\\x3e\\x43\\x21\\x16\\x9f\\x67\\xad\\x20\\x5e\\x12\\x92\\x50\\\n\\x43\\xd2\\x62\\x71\\xe4\\xef\\x06\\xce\\xb4\\x13\\x2e\\xed\\x65\\xec\\xdd\\x05\\\n\\xf0\\xa4\\x6a\\x56\\x7e\\x52\\xf0\\x6c\\xb3\\x59\\xca\\x0d\\xd6\\x73\\x16\\x7b\\\n\\x3a\\x95\\x4b\\xbc\\x1b\\x02\\x7c\\x2b\\x48\\xb0\\xe8\\xdb\\x4e\\xb6\\xf9\\x96\\\n\\x02\\x14\\x6f\\x39\\x50\\x7f\\x0a\\x30\\xdc\\x2a\\x71\\x26\\x10\\x4a\\x64\\x04\\\n\\x16\\xa0\\xd9\\x39\\xe0\\x41\\xc2\\x8d\\x81\\xfb\\xc5\\xa0\\x82\\xb6\\xff\\x00\\\n\\x48\\xeb\\x86\\xe8\\xb8\\x1f\\xb3\\x87\\x5b\\xe1\\x4a\\xb8\\x59\\xa9\\xd1\\xfb\\\n\\xc4\\xd9\\xa1\\x29\\x17\\x6e\\xb9\\xc5\\xc6\\x5c\\xc8\\x63\\x58\\x48\\x5c\\xc3\\\n\\x4a\\x12\\xed\\x51\\x53\\xe4\\xc3\\xa1\\x16\\x19\\x13\\x02\\x9e\\x62\\x72\\x07\\\n\\xbf\\x3e\\xfe\\x1b\\xf9\\xc3\\x87\\x37\\x7b\\x22\\xed\\xec\\x81\\x39\\x53\\x3b\\\n\\xb8\\xf7\\xb6\\x30\\x19\\x83\\x62\\x78\\x61\\xcb\\xf7\\xdd\\x06\\x53\\xa8\\x02\\\n\\xf5\\x7c\\xc7\\xee\\x2d\\x96\\x02\\xa4\\x4c\\xba\\x91\\x78\\xb8\\xde\\x2a\\x31\\\n\\x6f\\x23\\x40\\x5b\\x28\\xb5\\x59\\xa7\\x4b\\x98\\xd7\\x14\\xf5\\xc4\\x38\\xa7\\\n\\xf1\\x3e\\x19\\x42\\xd2\\x40\\x65\\x05\\x02\\x72\\x50\\x22\\xaf\\xdc\\xee\\x7c\\\n\\x61\\x32\\xaf\\x81\\x75\\x86\\xf3\\x80\\xff\\x00\\xb8\\xd6\\xbb\\xa2\\xc9\\x67\\\n\\x5a\\xe7\\x30\\x4f\\x9f\\x16\\xdf\\xe1\\xbe\\x25\\xe8\\x69\\x85\\x09\\xf8\\x40\\\n\\xd3\\x11\\x30\\x73\\xfe\\x51\\x2a\\xcd\\x77\\x2f\\xa7\\xa7\\x74\\x5a\\x2d\\x52\\\n\\xec\\x6a\\xbd\\x3f\\xfa\\x77\\x1f\\xd7\\xaa\\x47\\xb4\\x7a\\x69\\x56\\xa9\\xc6\\\n\\x5d\\x91\\x5f\\x08\\x96\\x2c\\x69\\x8f\\x58\\x44\\xdb\\x0a\\x55\\xf1\\x66\\xd4\\\n\\x9c\\xcb\\x44\\xdb\\x3c\\x99\\x00\\xa8\\x0e\\x34\\xc3\\x7f\\x5c\\xa2\\x6d\\xa9\\\n\\x2a\\x50\\x4a\\x5f\\x38\\x4a\\x59\\x1a\\xdc\\x36\\x41\\x77\\x3d\\xff\\x00\\x7a\\\n\\x44\\xeb\\x40\\xcc\\xd1\\xfa\\xc3\\xcb\\xce\\x15\\x30\\x99\\x68\\xc9\\x80\\x38\\\n\\x17\\x21\\xb3\\x63\\x1b\\x4a\\xe0\\x2a\\x1b\\x3c\\x33\\x27\\xe9\\xc7\\x84\\x2a\\\n\\x65\\x42\\x79\\x06\\xef\\xeb\\xed\\x1e\\x30\\x24\\x02\\xab\\xcc\\xff\\x00\\x66\\\n\\x6f\\xbc\\x1b\\x2d\\x12\\x47\\x5c\\xde\\x8c\\xd9\\xe3\\xdf\\x12\\xac\\xd4\\x1b\\\n\\x2e\\xc1\\xf9\\xfe\\xf2\\xde\\x2a\\x73\\x89\\x36\\x39\\x56\\x8b\\x6d\\x84\\xdb\\\n\\xa6\\xaa\\xcf\\x66\\x97\\x35\\x05\\x92\\xab\\xaf\\x5c\\x0f\\x5b\\xab\\x1e\\xd4\\\n\\x7f\\x93\\xa2\\xc5\\x66\\x4d\\x89\\x42\\x6c\\x91\\x2e\\x4b\\x2c\\x17\\xf8\\x94\\\n\\xbd\\xcd\\x8c\\x69\\x60\\x91\\x36\\x5a\\xc0\\xa3\\x14\\x81\\x87\\x46\\x9b\\xe0\\\n\\x6f\\xab\\xfa\\x75\\xd7\\x0b\\x63\\xa8\\x86\\x3c\\x4f\\x82\\xff\\x00\\x11\\x30\\\n\\xce\\x16\\xb2\\x84\\x1d\\x92\\xdf\\xc6\\x8a\\x63\\xcd\\x54\\x6a\\xd1\\xaa\\x1b\\\n\\x38\\x95\\x61\\x9b\\x37\\x6e\\x68\\x2a\\xf0\\xc0\\xbd\\xd7\\x34\\xee\\x6e\\xf1\\\n\\x12\\xb4\\x65\\xf2\\x1c\\x1a\\x60\\x1e\\x82\\xbb\\x9e\\xeb\\x9f\\x1e\\x70\\x8b\\\n\\x21\\x49\\xb9\\x2e\\x82\\xaf\\x90\\xe2\\xfc\\x7f\\x71\\x60\\xf6\\x62\\xd5\\x36\\\n\\x72\\x54\\x1d\\x41\\x7b\\xde\\xe3\\xe5\\xcf\\x90\\xf1\\x11\\x6e\\xf6\\x6e\\x54\\\n\\xbb\\x12\\xa4\\xd0\\x4e\\x52\\x2e\\x25\\x4c\\x3b\\x6b\\x15\\x2d\\xc3\\x27\\xc3\\\n\\xc2\\x34\\x0f\\xb2\\x09\\xb1\\xcc\\xd7\\x14\\xed\\x3e\\x3e\\x67\\x96\\x03\\xc0\\\n\\x44\\xd9\\x89\\x42\\x75\\x22\\x86\\x5e\\xcf\\x87\\x42\\x16\\x89\\xa0\\x93\\x5a\\\n\\x9f\\xcf\\x5c\\x61\\x56\\x89\\xb2\\xc3\\x39\\xfc\\x44\\xbb\\x67\\x1e\\xe8\\x5a\\\n\\xe6\\x4c\\x59\\x20\\xd0\\xf4\\x7c\\x22\\x55\\x9e\\x62\\xb9\\x75\\xdf\\x1e\\xe9\\\n\\x32\\x95\\x89\\x72\\x32\\x67\\xcb\\xc6\\x26\\xca\\x65\\x11\\xfd\\xb1\\xa4\\x12\\\n\\x13\\x68\\x7e\\x20\\x6e\\xaa\\xb0\\x73\\xe5\\x12\\xdc\\xcc\\x37\\xce\\xd0\\x52\\\n\\x92\\xdd\\xc0\\xa5\\x83\\xf5\\xba\\x25\\xcc\\xbd\\xf3\\x31\\x4f\\xab\\x67\\xc0\\\n\\xf8\\xf2\\xa1\\x8f\\xeb\\xca\\xf4\\xdc\\xe3\\x7f\\x0a\\x3e\\x71\\x65\\xb0\\xa5\\\n\\x36\\x75\\x4d\\x6e\\xc8\\x1c\\x73\\xae\\x1c\\x62\\x65\\xa6\\xf2\\xb5\\x64\\xe1\\\n\\x40\\x37\\x01\\xd0\\x7f\\x38\\x5e\\x8e\\x90\\xa4\\xa9\\x57\\x32\\x2a\\x51\\xa5\\\n\\x4b\\xb9\\xaf\\x37\\xa9\\xcf\\x2a\\x44\\xab\\x05\\x9e\\xf5\\xe2\\x0d\\xd4\\xe0\\\n\\x37\\x91\\xe1\\x98\\x73\\xe1\\x5c\\x95\\x63\\x90\\xb4\\x2a\\xf6\\x2a\\x4b\\x0c\\\n\\xb7\\xe5\\xdf\\x51\\xde\\x40\\x89\\x36\\x6b\\x2c\\x96\\x66\\x51\\x2f\\xc4\\xb9\\\n\\xae\\x09\\x76\\xfb\\x77\\xc3\\x26\\x48\\xbc\\xaa\\x3d\\x10\\x80\\x7c\\x37\\xe3\\\n\\xb8\\x61\\x09\\x9a\\xe9\\xe4\\xe4\\xf7\\xe7\\x58\\xb5\\xd2\\x62\\x8f\\x14\\x9f\\\n\\x05\\x0f\\xcc\\x7b\\xce\\x6e\\x7c\\x07\\xda\\x16\\xbb\\xe4\\x93\\x57\\x6c\\xd9\\\n\\x9b\\xcb\\x1e\\x11\\x37\\xb3\\x16\\x7a\\x2a\\x58\\x50\\xa1\\x56\\x58\\xd5\\x86\\\n\\xe8\\x5c\\xa2\\x90\\xef\\x71\\xfc\\x7c\\x28\\xd0\\x82\\x0a\\x19\\xc3\\x60\\x37\\\n\\xbe\\x47\\x9b\\xc2\\x3b\\x40\\x73\\x82\\x9b\\xe6\\x84\\x86\\x77\\x6e\\x3e\\x9f\\\n\\xb8\\xb2\\xcb\\x4a\\x75\\xa9\\x98\\x5d\\x2e\\x6e\\xb9\\x7a\\x36\\x1e\\xa3\\xba\\\n\\xb1\\x32\\x4d\\x88\\xba\\xd4\\x03\\x91\\x74\\x0e\\x38\\x8e\\xfa\\x73\\xf0\\x89\\\n\\xba\\x2e\\x5c\\xd9\\x86\\xf8\\x4b\\x1e\\xca\\x46\\x43\\x89\\xe3\\xd1\\xca\\x2d\\\n\\xbe\\xcf\\xad\\x7b\\x36\\x65\\x10\\xe1\\x96\\x32\\x62\\xec\\xdb\\xb8\\x81\\x8f\\\n\\x0a\\xc5\\x9a\\xcc\\x89\\x13\\x0a\\x26\\x76\\xd1\\xb2\\xb3\\x43\\x79\\x49\\xc5\\\n\\xf3\\xa7\\x81\\x2e\\x61\\x13\\x90\\x94\\x86\\x53\\x0c\\x69\\x87\\x38\\xb2\\xeb\\\n\\xc4\\xb2\\x14\\x12\\xae\\x6c\\x4c\\x69\\x39\\x73\\x17\\x30\\xc9\\x98\\x90\\x5d\\\n\\x2f\\xbc\\x35\\x7b\\xbc\\x8c\\x0d\\x1f\\x64\\x44\\xb6\\x54\\x89\\x37\\x95\\x4f\\\n\\xe9\\xa1\\xc5\\xea\\x6e\\x89\\xf6\\x0b\\x1c\\x8d\\x18\\xa9\\x4b\\x91\\x22\\xfa\\\n\\xc1\\xda\\x32\\xd0\\x4d\\x46\\x44\\xa5\\xe3\\x4d\\xe8\\x34\\xcc\\x90\\xd2\\x50\\\n\\x97\\xb9\\x80\\x40\\xae\\xcc\\x27\\x40\\x69\\x3b\\x34\\xcb\\x49\\xd5\\x15\\x25\\\n\\x73\\x02\\x92\\xe9\\xbc\\x59\\x21\\xb3\\x7b\\xb9\\x30\\xe0\\xf1\\x38\\x69\\x69\\\n\\x6b\\xd5\\x6a\\x14\\x5d\\x25\\x20\\x04\\xd0\\x9d\\xfc\\xb8\\x6e\\xc0\\xc2\\x34\\\n\\x4d\\xbd\\x52\\xf5\\x93\\x25\\xdd\\xcc\\xbb\\xe3\\xb9\\xb0\\xf5\\x81\\x67\\xb2\\\n\\x24\\x5d\\x98\\x57\\xac\\x03\\x6a\\xa7\\x1f\\x9a\\x8f\\x86\\x30\\xa9\\x32\\x7f\\\n\\xe4\\xde\\xfe\\xe7\\xaf\\xfe\\x4f\\x06\\xce\\xe7\\x0a\\x9c\\xf6\\x4d\\x5f\\xd6\\\n\\x17\\x7e\\xcf\\xf2\\x5f\\xde\\x19\\xf9\\x65\\x12\\x0c\\xf9\\xad\\x33\\x54\\xc1\\\n\\x7f\\x2b\\x01\\x85\\x3e\\x8f\\x42\\xdc\\x5a\\x11\\x25\\x64\\xa5\\x4a\\xd9\\x12\\\n\\xf6\\xb8\\x2a\\x98\\x36\\x74\\x7f\\xb4\\x7b\\x25\\x67\\x91\\xa7\\xb4\\x94\\xe9\\\n\\x53\\x86\\xa6\\x5c\\x92\\xc5\\xd9\\x29\\x57\\x10\\xdc\\xb8\\x11\\x48\\xd3\\xb3\\\n\\xbd\\x9c\\xd0\\xeb\\x4d\\x8d\\x66\\x4c\\xdb\\xd4\\x49\\x52\\x50\\xb2\\x38\\xb9\\\n\\x04\\x81\\xc7\\xef\\x0a\\x5d\\x98\\x48\\x44\\xb9\\x2b\\xd6\\xca\\x7b\\xc9\\x72\\\n\\xed\\x79\\x8e\\xc8\\xc2\\x94\\x6f\\x18\\x91\\x63\\xb3\\xce\\x4b\\x28\\x85\\x5e\\\n\\x6a\\xa9\\x94\\xa1\\x9d\\x09\\x7f\\x42\\xdc\\xa1\\x1e\\xce\\x4a\\x9d\\xd8\\x28\\\n\\xff\\x00\\x64\\xbf\\xff\\x00\\xcc\\x7b\\x61\\xec\\x24\\xad\\x11\\xec\\xe2\\xf4\\\n\\xed\\x9e\\x64\\xc9\\xd6\\xb4\\x4a\\x24\\x48\\x76\\x42\\xc9\\x07\\x64\\x27\\x07\\\n\\xef\\x2c\\xe9\\xab\\xd4\\x7b\\x37\\xec\\x34\\x8d\\x5d\\x9f\\x48\\x5b\\xa6\\xad\\\n\\x56\\x8b\\x6a\\x3d\\xe1\\x77\\x89\\x28\\x45\\xff\\x00\\xf9\\x69\\x45\\x50\\x19\\\n\\xae\\xbd\\x54\\x77\\xe0\\x22\\x77\\xb3\\x16\\x07\\x45\\xc9\\x9b\\x22\\x85\\x39\\\n\\x79\\x75\\xc6\\x13\\xec\\xfd\\x85\\x17\\x6f\\x2e\\x99\\xb5\\x06\\x0c\\xc4\\x98\\\n\\x99\\xa1\\x65\\xc9\\x98\\x56\\x94\\x25\\x48\\x72\\xa0\\x6e\\x8c\\x1e\\x94\\xe5\\\n\\x16\\x4b\\x4a\\x66\\x3a\\x54\\x35\\x4a\\x96\\x58\\x14\\x00\\x97\\xbd\\xb8\\x8c\\\n\\x7d\\x47\\xa9\\x42\\x15\\xb6\\xa3\\x7c\\xa7\\x02\\xaa\\x9e\\xe7\\xce\\x0c\\xc2\\\n\\x30\\x3e\\x14\\x1e\\x50\\xd7\\xb6\\x8d\\x5e\\xaf\\x8f\\x8e\\x70\\x52\\x93\\x8c\\\n\\x1b\\x2a\\x16\\xa1\\x81\\x04\\xf0\\xc1\\xe3\\xdc\\x65\\x8f\\x95\\x11\\x2a\\xc7\\\n\\x2c\\x00\\x19\\x1c\\x4b\\x42\\x24\\xcb\\x96\\x1e\\xea\\x70\\x6c\\x04\\x2a\\x58\\\n\\x57\\xca\\x19\\xe3\\x54\\x3f\\x88\\x1d\\xdf\\x88\\x55\\x94\\x4c\\x27\\x07\\x66\\\n\\xa7\\x5f\\xa8\\xd3\\x1a\\x3c\\xcb\\x9a\\xb9\\xfd\\xa1\\x74\\xa6\\xe9\\xc3\\x6a\\\n\\x80\\xd4\\x65\\x8f\\x83\\x08\\xb3\\x4a\\xbf\\x3d\\x37\\x9e\\xf2\\x4e\\xd3\\xe0\\\n\\x45\\xd7\\x72\\x32\\x53\\xe5\\xce\\xb4\\x8b\\x4a\\xc2\\xa6\\x25\\x08\\x64\\x85\\\n\\x10\\xe4\\x16\\x3b\\xb8\\x71\\xcc\\xe1\\x1a\\x3e\\xcc\\x3d\\xd8\\xad\\x67\\x03\\\n\\x82\\xb9\\x3d\\x7d\\x22\\xd1\\x6d\\x2c\\xab\\x32\\x49\\x17\\xa8\\x96\\x2d\\x40\\\n\\x5f\\x11\\xbd\\xb3\\xe4\\x22\\xcf\\x28\\x29\\x7b\\x58\\x31\\x2f\\x57\\x2a\\x70\\\n\\x03\\x6e\\xce\\x24\\x59\\x93\\x30\\x5d\\x77\\x4b\\x35\\x71\\xe5\\x1e\\xe4\\x80\\\n\\x4f\\x65\\xa8\\xd8\\x0f\\x06\\x8b\\x4d\\x9d\\x20\\x13\\xfc\\x70\\x0f\\x08\\x12\\\n\\xa5\\x87\\x21\\x37\\xb1\\x00\\x31\\xae\\x4c\\xdb\\xb7\\xc1\\x63\\x5c\\x4e\\x5c\\\n\\x09\\xad\\x3f\\x02\\x0a\\x8a\\x54\\x9c\\x59\\x44\\x8c\\x61\\x3a\\x3c\\x4f\\x96\\\n\\xa5\\x29\\x63\\xb0\\x4e\\xf7\\xa5\\x1f\\xbe\\xa0\\x70\\x11\\x3a\\xcc\\xb9\\x63\\\n\\x1a\\x0a\\x73\\xe5\\x4c\\xbf\\x30\\xb3\\x9e\\x18\\x0d\\xd8\\x0f\\xab\\x39\\xe2\\\n\\x60\\x96\\x35\\xaf\\x0c\\x62\\xcd\\x34\\x3a\\x33\\x37\\x85\\x77\\x57\\x3d\\xd8\\\n\\x78\\x77\\x44\\xfb\\x5c\\x95\\x25\\x94\\xa1\\x79\\x86\\x19\\xd3\\x17\\xdd\\xc2\\\n\\x04\\xed\\xb7\\x49\\xe5\\xe3\\xd5\\x61\\x13\\x2f\\x07\\x75\\x5e\\xe7\\x87\\x9f\\\n\\xa4\\x5e\\x57\\xf2\\x23\\x8b\\xc4\\x95\\x85\\x1e\\xd6\\xfa\\x65\\xde\\x3b\\xf7\\\n\\x7d\\xa2\\x62\\x12\\x08\\x64\\x85\\x15\\x07\\x76\\x0c\\x2a\\xcd\\xd6\\x39\\x42\\\n\\x6c\\x69\\xfe\\xaa\\x8b\\x91\\x56\\x7a\\x71\\xa7\\xed\\xe2\\x71\\x6d\\x94\\x10\\\n\\x03\\xb1\\x23\\xbe\\x81\\xbc\\xe2\\xd0\\x90\\xea\\x21\\x9c\\xad\\xef\\x35\\x48\\\n\\x62\\xfc\\xdf\\xf7\\x1b\\x45\\xd9\\xf1\\x39\\xc2\\x2d\\x36\\xc1\\xf3\\x91\\x58\\\n\\xd6\\xa9\\x65\\x2b\\x9a\\x50\\xa5\\x12\\x12\\xea\\x53\\x74\\xd1\\xa4\\xa5\\xa9\\\n\\x13\\xa4\\x89\\x53\\x52\\xca\\x50\\x53\\x12\\x00\\xa1\\xa8\\x11\\xa4\\xa6\\x89\\\n\\xa6\\x42\\x56\\xb2\\x86\\x48\\x0d\\x2b\\x69\\xfa\\xe1\\x12\\xe4\\x12\\x41\\x5d\\\n\\x53\\x93\\xee\\xca\\x26\\xa6\\xc4\\x84\\xdc\\x54\\x89\\x6a\\x2a\\x19\\xe3\\xbb\\\n\\x01\\x08\\xf6\\x76\\xc1\\x6a\\x5e\\xbc\\x8b\\x80\\x54\\xb2\\x46\\xee\\x31\\xa4\\\n\\x74\\x72\\x0b\\xd9\\xa4\\xd9\\xd3\\x75\\x9a\\xf8\\x15\\xe6\\xd8\\x42\\x7d\\x9a\\\n\\xd1\\x49\\x73\\x6b\\x56\\xac\\xe6\\x6e\\xa7\\x1e\\xfe\\xb9\\x46\\x96\\xd1\\xba\\\n\\x12\\x52\\x5e\\xcb\\x69\\x37\\x92\\xef\\xb2\\x8a\\xf0\\x80\\x52\\x44\\xe2\\x90\\\n\\x3e\\x10\\x2a\\x4b\\x0c\\x58\\x38\\xf4\\xcb\\x07\\xe1\\x16\\x4b\\x3c\\x89\\xfa\\\n\\x91\\x39\\x5a\\xab\\xea\\x0e\\xcc\\x69\\xbb\\x68\\x57\\xed\\xdd\\x1a\\x1b\\xff\\\n\\x00\\xc4\\x96\\x4d\\x25\\xa1\\x95\\xa5\\x91\\x6f\\x98\\x84\\x19\\x4a\\x99\\x2a\\\n\\x58\\x44\\x9d\\xa6\\x71\\x5c\\xfb\\x40\\xc6\\x92\\xd0\\xab\\xb1\\xad\\x5a\\xd0\\\n\\x12\\x24\\xda\\x14\\x29\\xff\\x00\\x36\\x84\\x07\\x7a\\x8d\\xe4\\x08\\x13\\x66\\\n\\xca\\xb5\\xcf\\x9d\\x65\\x98\\x6c\\xca\\x52\\x14\\x0e\\xac\\x3b\\xba\\x46\\x7c\\\n\\x9f\\x85\\x22\\x64\\xa1\\x39\\x41\\x76\\xc5\\x1b\\x5c\\xd4\\xd4\\x2d\\x46\\xea\\\n\\xb2\\x06\\x89\\x22\\x8e\\xe7\\x84\\x4e\\x54\\xcd\\x93\\x2e\\x62\\xa4\\xa4\\x54\\\n\\x25\\x04\\xb2\\x88\\x6c\\x73\\xc8\\xf2\\xee\\x8b\\x05\\xbe\\xd0\\xa6\\xb3\\xd3\\\n\\x84\\xe7\\x37\\xd4\\x41\\x6c\\x37\\xb1\\x77\\xae\\x07\\x08\\xd1\\x96\\xb9\\xb2\\\n\\x2c\\xe8\\xbc\\xad\\x62\\x80\\x0e\\x55\\x42\\x48\\xe5\\xdf\\x48\\xb5\\x5b\\xed\\\n\\x3a\\x59\\x22\\x44\\xf5\\x1f\\x77\\xa0\\x12\\x6a\\x53\\x86\\x24\\x2b\\x08\\x97\\\n\\x2d\\x32\\x50\\x99\\x21\\x09\\x29\\x96\\x00\\x0f\\x4b\\xa3\\x73\\x0c\\xbe\\xfb\\\n\\xa2\\x5a\\x91\\x78\\x0d\\x50\\x35\\x3b\\xf7\\x7a\\x44\\xdd\\x4b\\xb1\\x94\\x9a\\\n\\x71\\x34\\x89\\x93\\x65\\x25\\xd3\\xda\\x72\\x71\\xf9\\x71\\xc3\\x97\\x90\\xe7\\\n\\x0a\\xb3\\x21\\x4b\\xbc\\x85\\x90\\x31\\x21\\x83\\x70\\x84\\xa9\\x49\\x0c\\xef\\\n\\xce\\x14\\xa2\\xa8\\x42\\xcf\\x65\\xb2\\x89\\xc8\\x5a\\xae\\xdd\\x2c\\xc7\\x28\\\n\\x40\\x9c\\x96\\xf5\\xdd\\xc6\\x35\\xaa\\xdf\\x12\\xe6\\x2a\\x9b\\x47\\x18\\xd6\\\n\\x1d\\x90\\x49\\x35\\xcf\\xae\\xb1\\x80\\xa0\\x80\\x0e\\x34\\x18\\xc5\\xf0\\x77\\\n\\xf5\\xdf\\x13\\x67\\x04\\xac\\xb1\\x3d\\x91\\x4e\\xba\\x68\\xd2\\x52\\xc4\\xf9\\\n\\x2b\\x62\\x6f\\x72\\x1e\\x5e\\x14\\xe3\\x58\\x94\\x4c\\x9b\\x44\\xc6\\x0e\\x45\\\n\\xc1\\x53\\x9e\\x78\\x75\\xe3\\x16\\x24\\x2a\\xd5\\x36\\xb4\\xbb\\x32\\xf5\\x2a\\\n\\x2a\\x5f\\xd4\\x3f\\xfd\\x4d\\xba\\x16\\xad\\x4c\\xb4\\xa0\\x2a\\x97\\x5e\\xb4\\\n\\x73\\xd7\\x2e\\xf8\\x9d\\x68\\x6b\\x42\\x19\\x20\\xe3\\x57\\xc0\\x5d\\x3f\\x61\\\n\\xe3\\x12\\x66\\x20\\xa5\\x34\\x08\\x55\\xd0\\xfc\\x69\\xbc\\xb7\\xe7\\x18\\xf7\\\n\\xd4\\x59\\x41\\x2a\\x58\\x09\\x6c\\x54\\x59\\xdf\\x21\\x99\\x2f\\x90\\x72\\xef\\\n\\x16\\xcf\\x68\\xa5\\x24\\x7c\\x22\\x85\\x51\\x4e\\xea\\x29\\x6a\\xb6\\x01\\x2a\\\n\\x3e\\x9f\\x6b\\x57\\xb5\\x69\\x4d\\xea\\x4b\\x53\\x33\\xed\\xaf\\x0c\\x5d\\x99\\\n\\xfc\\x9a\\x2c\\x3a\\x74\\x5b\\x16\\x12\\x44\\xbb\\xaa\\x20\\x24\\xa5\\x47\\x0e\\\n\\x45\\x8f\\x1c\\x1b\\x88\\x8c\\x0f\\x6a\\x9c\\x7a\\xc6\\x15\\x76\\x98\\x3d\\x5b\\\n\\xeb\\xe5\\x12\\x2f\\x63\\xad\\x5f\\x0a\\x5d\\x0d\\xb4\\xec\\xc3\\x90\\xaf\\x3c\\\n\\xe2\\x65\\x9b\\xde\\x4e\\xad\\x2f\\x79\\x54\\x0d\\x96\\xfc\\x46\\xef\\x3e\\x71\\\n\\xa5\\x34\\x4d\\xaa\\xc4\\x0a\\x82\\x0c\\xc9\\x49\\x0f\\x7b\\x3c\\x30\\x61\\x46\\\n\\xae\\x35\\xe5\\x08\\x99\\xad\\x5b\\x0a\\x11\\x53\\xc1\\xa9\\xf5\\x81\\x2c\\xcb\\\n\\xa1\\x74\\xe0\\x79\\xf5\\x93\\xc0\\x5f\\xf7\\x1a\\x73\\xfa\\xc4\\xa5\\x07\\x15\\\n\\xe1\\xf8\\xf3\\x84\\x2f\\x57\\x5a\\xa9\\xfb\\x81\\xe7\\xf4\\xe7\\xba\\x3d\\xe7\\\n\\xfb\\x47\\x8c\\x5e\\x12\\xd6\\x80\\x15\\xda\\xa9\\x7a\\x33\\x8e\\x19\\x3b\\x33\\\n\\xfd\\x29\\x2c\\x15\\x04\\x84\\xa4\\x2d\\xc3\\xb9\\xc4\\x1d\\xd1\\x6a\\x33\\xe5\\\n\\x2d\\x21\\xb6\\x6a\\x55\\xc3\\x70\\x11\\x32\\x60\\x19\\x66\\xe0\\x39\\xf0\\x89\\\n\\xe5\\xc7\\x0b\\xdf\\x7f\\x58\\x52\\x8b\\xd0\\xb7\\x28\\xf6\\x8b\\xda\\x49\\x36\\\n\\x09\\x64\\x4a\\x9c\\x8b\\xf9\\x01\\x5f\\xa5\\x62\\xdd\\xed\\x7e\\x93\\x9e\\x90\\\n\\xa9\\x73\\x16\\x85\\x05\\xb0\\x4b\\xd4\\xa4\\x7c\\xf9\\x0a\\xc5\\xbf\\xda\\x5d\\\n\\x33\\x68\\x55\\x9b\\x57\\x6a\\x52\\x6e\\x90\\x56\\xa7\\x3b\\x20\\x1c\\x0c\\x68\\\n\\xdf\\x6d\\xed\\x72\\x6d\\xb2\\x51\\x68\\x94\\xab\\x54\\xb4\\x81\\x7a\\x6b\\xd0\\\n\\x6f\\xc4\\xbf\\x96\\x1c\\x62\\xc5\\xa7\\xd1\\xa4\\x05\\xe9\\x2a\\x04\\x1c\\x92\\\n\\x7b\\x24\\xe4\\x79\\x44\\xc9\\xc9\\x5a\\x87\\xc4\\x65\\x0f\\x96\\xb1\\x63\\xb5\\\n\\x94\\xca\\x28\\x24\\x24\\x10\\x2b\\xc2\\x2f\\x24\\x7c\\x4d\\x93\\x9b\\xba\\x7e\\\n\\xb1\\xed\\xa6\\x92\\x29\\x33\\x04\\x99\\x8d\\xb4\\xa0\\x58\\xb7\\x5d\\x3c\\x22\\\n\\x51\\x54\\xa1\\x31\\x76\\x87\\x33\\x31\\x04\\x9a\\x33\\x7d\\xe3\\xfa\\x29\\x52\\\n\\x65\\x83\\x30\\xa9\\xc5\\x1f\\x30\\x47\\x98\\x8b\\x1d\\x82\\x75\\xad\\x56\\x55\\\n\\x04\\xac\\x5c\\x52\\x4a\\xc0\\xa3\\x73\\xaf\\x3f\\x08\\xd1\\xb6\\xad\\x37\\x64\\\n\\x91\\x2e\\xcd\\x67\\xb7\\x11\\x63\\xbb\\x77\\x52\\xea\\xd8\\x15\\xbc\\x37\\x63\\\n\\x5e\\x9e\\x3d\\xa2\\x91\\x6a\\xb4\\x4a\\x56\\xad\\x0a\\x9b\\xab\\x26\\x6c\\xe5\\\n\\x25\\xb6\\x43\\x54\\xd4\\xef\\x39\\x42\\x56\\x26\\x4c\\x99\\x71\\xd5\\x75\\x45\\\n\\x2a\\xd9\\x21\\x8f\\x7a\\x43\\xd6\\x99\\x87\\x89\\x92\\x6e\\x55\\x43\\x1f\\x47\\\n\\xfb\\xb4\\x19\\x77\\x85\\xe7\\x2d\\x95\\x1c\\x53\\xcb\\x76\\x50\\x67\\x09\\x33\\\n\\x91\\x77\\x69\\x8b\\xed\\x0c\\x9c\\x1a\\x35\\xd6\\xc3\\x2d\\xd1\\x23\\x4b\\xd9\\\n\\xb5\\x08\\x1e\\xf3\\x2d\\x2b\\x74\\xde\\x4b\\x9e\\x19\\xf0\\x26\\xaa\\xc1\\x98\\\n\\x9d\\xf1\\x67\\x9e\\x84\\x28\\x2d\\x73\\x00\\x05\\xb3\\xfb\\x42\\x26\\xca\\x98\\\n\\x35\\x88\\x58\\x52\\x70\\xa1\\xdc\\x1b\\xaf\\xcc\\x4b\\x9f\\x27\\x5b\\xdb\\x4e\\\n\\x2d\\x74\\x17\\xc7\\x85\\x4d\\x62\\xd4\\xa2\\xb2\\xf2\\x99\\x43\\x81\\xdd\\xe1\\\n\\xc3\\xce\\x16\\x81\\x82\\x8b\\x13\\x8f\\x3e\\x8d\\x44\\x25\\x1a\\xbe\\xd7\\xcd\\\n\\x54\\xf7\\x45\\xd2\\xdc\\xbf\\xc0\\x10\\x0d\\x61\\x53\\xd2\\x9c\\x0b\\xbc\\x2a\\\n\\xd5\\x42\\x22\\xf8\\xfe\\x43\\xae\\xbf\\x31\\x28\\x92\\x07\\x7f\\x5c\\xe0\\x5e\\\n\\x2c\\xcf\\x42\\xfd\\xc0\\x33\\xf2\\x8d\\x68\\x52\\x42\\x41\\x72\\xd8\\x72\\x8d\\\n\\x6a\\xe0\\xa4\\x4d\\x37\\x94\\x6b\\x41\\x57\\x89\\xb2\\x05\\xd5\\x35\\x7c\\x63\\\n\\x4a\\xa8\\x4a\\x9e\\x58\\x9e\\xd5\\x79\\x3e\\x34\\x0e\\x4c\\x68\\xcd\\x26\\xb0\\\n\\xb5\\x0b\\xaa\\x01\\xcd\\x58\\x3e\\x27\\x32\\x5f\\xec\\x06\\x26\\x26\\xe9\\x35\\\n\\xce\\xd9\\x62\\x08\\x0c\\xef\\x4e\\x07\\x89\\x81\\xb6\\xb2\\xa5\\x97\\x24\\x39\\\n\\xdd\\xba\\xad\\x85\\x2b\\xdd\\x16\\xdd\\x27\\x2e\\xcb\\x2c\\xb4\\xd4\\xa5\\x6a\\\n\\x00\\x07\\xf9\\x10\\x77\\xb7\\xcc\\x77\\x65\\x4c\\x59\\xd5\\x6b\\xd2\\x53\\xa7\\\n\\xa4\\xba\\xda\\x59\\x76\\x56\\x00\\xa0\\x90\\xc4\\x36\\x09\\xc2\\xe8\\x6c\\xe2\\\n\\xf0\\x96\\x27\\x4c\\x9b\\x6a\\x74\\xcd\\xc0\\x19\\x8b\\x6a\\x50\\x9a\\xa4\\x70\\\n\\x4d\\xe7\\xad\\xd0\\xd4\\x8f\\x74\\x33\\x6f\\x25\\x65\\xc4\\xe2\\xcb\\x2c\\xd4\\\n\\x66\\x6e\\xd3\\xe1\\x8d\\x3c\\x1e\\x9a\\x38\\xcc\\xb0\\xae\\xed\\x4c\\xba\\x6d\\\n\\xab\\xc1\\x8e\\x2a\\xa6\\x35\\xc7\\xba\\x2c\\x73\\xcc\\xf9\\x48\\x29\\x50\\x52\\\n\\x88\\xbd\\xc5\\x89\\xa5\\x4d\\x4d\\x1a\\xbb\\xf1\\xac\\x2d\\x77\\x0e\\xd9\\x62\\\n\\x07\\x06\\x1d\\x36\\x51\\x60\\x9b\\xac\\x01\\x89\\x50\\x73\\xe1\\x77\\xb2\\x7a\\\n\\xc2\\x25\\x4c\\x32\\xa6\\xa5\\x69\\xa9\\x4b\\x50\\xbf\\xd6\\x2d\\x13\\x45\\xb2\\\n\\xc6\\x13\\x71\\xd4\\x41\\xdc\\xfb\\xa3\\xff\\x00\\x4e\\x4a\\x93\\x7e\\x7c\\xb1\\\n\\x7a\\x62\\xa8\\xa4\\xd3\\xb2\\x6a\\x4e\\x42\\x8d\\xdd\\xdd\\x16\\xe5\\xa3\\x58\\\n\\x40\\x56\\xd0\\x2d\\x74\\x64\\x03\\xc0\\x99\\xf8\\xfc\\xc4\\xa5\\xf9\\x96\\xef\\\n\\xfa\\xc2\\x27\\x2a\\xed\\x7d\\x5f\\xcb\\x3e\\x66\\x35\\xc7\\xbb\\x3c\\x22\\x64\\\n\\xff\\x00\\x88\\x8c\\x9a\\xe7\\x06\\xcb\\x3c\\x32\\x27\\xed\\x16\\x09\\xec\\x8b\\\n\\xfd\\xa4\\x66\\x7f\\x8d\\x2b\\x8e\\x51\\xa4\\xed\\x28\\x5a\\x76\\x18\\xb5\\x7a\\\n\\xf5\\x89\\x93\\x1e\\xf5\\x7a\\xef\\xf4\\x85\\xad\\x25\\x20\\x3e\\xd3\\x87\\xcb\\\n\\x23\\xf5\\xca\\x0b\\x12\\x68\\x31\\x8b\\x7d\\xb2\\xd7\\x6e\\x58\\x54\\xc2\\x48\\\n\\x7e\\x24\\xf5\\xc6\\x14\\xa0\\xe1\\xb0\\x09\\x6f\\x33\\x0e\\xef\\x16\\x55\\x28\\\n\\xce\\x6e\\x26\\xbb\\xa9\\x1e\\xca\\xe9\\x25\\xe8\\xf9\\x93\\x13\\x68\\x3b\\x37\\\n\\xd4\\x41\\x27\\x22\\x49\\xeb\\x38\\x56\\x9e\\xb0\\x4c\\x45\\xe9\\x6b\\x4d\\xe0\\\n\\x2b\\x51\\x8e\\x31\\xa4\\x74\\xdd\\xad\\x69\\x5c\\xb9\\x0b\\x29\\x7a\\x05\\x0c\\\n\\xb3\\x71\\xd6\\x7b\\xa3\\xfc\\xef\\x4b\\x1f\\x83\\xef\\x6a\\xdd\\xda\\x3f\\x78\\\n\\xb2\\xc8\\x9f\\xa6\\x15\\xa9\\x59\\x2a\\x52\\x28\\xa5\\x17\\x2e\\xa1\\xeb\\xfa\\\n\\xa4\\x5a\\x3d\\x93\\xb4\\xfc\\x04\\xa0\\x16\\x41\\x24\\xb6\\x19\\x33\\xe1\\xb9\\\n\\xbb\\xe2\\xc1\\xec\\xd2\\x65\\x94\\x19\\xc9\\x76\\x21\\x45\\xf0\\xa7\\xd3\\x87\\\n\\xee\\x2c\\xd6\\x5b\\x25\\x97\\x04\\x8f\\x08\\x9b\\xa4\\x25\\x4a\\xa4\\xbe\\x5e\\\n\\x50\\x93\\x3e\\xd3\\xae\\x3f\\x22\\xd0\\xcb\\xc7\\xb0\\xfd\\x34\\x69\\x7b\\x0e\\\n\\x8b\\xb1\\xe8\\xe2\\xb9\\x49\\x96\\x99\\xea\\x77\\x2c\\x9e\\xd1\\xdf\\xde\\xd1\\\n\\x6a\\xd7\\xbd\\x48\\x53\\xd6\\x8e\\xdf\\x2d\\x2a\\x5f\\x7e\\xfe\\x31\\xad\\xb8\\\n\\x96\\x34\\x3b\\xc5\\x18\\x71\\xfb\\xc4\\xcb\\x42\\x6f\\x9b\\xe3\\x10\\x40\\x0a\\\n\\x15\\xde\\x15\\xc0\\x16\\xd9\\x48\\x7c\\xea\\x1a\\x3d\\xf1\\x0f\\xb3\\x88\\xce\\\n\\xf8\\x63\\xdc\\xdd\\xf8\\xc6\\x89\\xd2\\x96\\xab\\x74\\xa2\\x55\\x82\\x4b\\x02\\\n\\x33\\x20\\x5e\\xc1\\xa8\\xd8\\x66\\xf5\\xe5\\x1a\\x12\\xdd\\x31\\x68\\x9b\\x25\\\n\\x64\\xde\\xd7\\x2a\\xe8\\x0e\\xdd\\x94\\xe5\\x51\\x93\\x1d\\xf1\\xed\\x2d\\xb7\\\n\\x49\\x59\\x2d\\x09\\x32\\x92\\x54\\x5f\\x2d\\xd5\\x14\\xdd\\xd7\\x13\\x1a\\x3f\\\n\\xda\\x0b\\x5d\\x35\\xc4\\xde\\xdc\\xf4\\x0f\\x4f\\x2d\\xe1\\xa2\\xce\\x7d\\xe1\\\n\\x28\\x59\\xfe\\x21\\x47\\xc3\\xf3\\x0a\\x17\\xd9\\xbe\\x5a\\x7d\\x7f\\x70\\x66\\\n\\x5d\\x0d\\x1a\\xce\\xa9\\x0f\\x9c\\x14\\x85\\x77\\x41\\x97\\x43\\xcb\\xfc\\x25\\\n\\x2c\\x80\\x07\\x59\\xc4\\xa9\\x98\\xff\\x00\\xa7\\xea\\x22\\x4c\\xcd\\xb5\\x77\\\n\\xe5\\x9c\\x5f\\x3d\\x13\\x02\\x6b\\x63\\xeb\\x09\\x99\\x78\\x91\\xc0\\xe7\\xe5\\\n\\x1a\\x72\\xca\\x05\\xe9\\xb5\\xcf\\x8b\\x98\\x5a\\x3d\\xdd\\xd6\\x85\\x5d\\xba\\\n\\xe6\\xe3\\x5d\\xef\\x6a\\x3b\\x3b\\xbc\\x58\\x2d\\xa6\\x7a\\xcb\\xa7\\xb2\\x6e\\\n\\x7f\\xf6\\x7c\\x88\\xcf\\x7d\\x4e\\x35\\x0f\\x68\\x9f\\xee\\xd2\\x57\\x3c\\xf6\\\n\\x76\\x59\\x3b\\xc8\\x38\\x97\\xc9\\x2e\\xe9\\xde\\x76\\xbf\\x8c\\x5b\\x2d\\x86\\\n\\xd3\\x81\\x05\\x5d\\xa5\\x39\\xcb\\xf7\\xd6\\x46\\x74\\xe2\\xa4\\x49\\x93\\x50\\\n\\x54\\x03\\x9b\\xdf\\x20\\x4f\\xaf\\x91\\x21\\xf8\\x42\\xe5\\xcb\\x99\\x27\\xff\\\n\\x00\\xf9\\xa9\\x22\\xb5\\x51\\x02\\xb7\\x00\\x7a\\x28\\xdc\\xdf\\x48\\x45\\xa2\\\n\\x72\\xe7\\xde\\x22\\xe0\\xec\\xa1\\xea\\x52\\x01\\xcb\\xb2\\xd5\\x62\\xa2\\xc4\\\n\\xe0\\xc3\\x70\\x98\\xaf\\xfe\\x42\\xe6\\x9d\\xa8\\xd0\\x93\\xb6\\x25\\x82\\xa2\\\n\\xad\\x84\\x87\\x7d\\xc1\\xb1\\xdd\\x47\\x57\\x33\\xc6\\x26\\x2b\\x5a\\xa9\\x8e\\\n\\xfd\\x97\\x1b\\x9a\\xbd\\x1f\\x1c\\xe3\\x44\\x86\\x49\\x6c\\x1d\\x7f\\x4f\\xac\\\n\\x24\\xd7\\xbf\\xaa\\xfe\\x4c\\x59\\xcf\\xc1\\x1d\\xfe\\xb1\\x6c\\x9b\\xa9\\xb3\\\n\\xcc\\x5f\\xf6\\x91\\xca\\x27\\x2f\\x5d\\x69\\x59\\x63\\xb5\\x31\\x4f\\xe3\\x0f\\\n\\x09\\x53\\x60\\x07\\x10\\xff\\x00\\x8f\\x57\\x68\\xd7\\x51\\xce\\x2a\\xae\\xe1\\\n\\xfb\\x8d\\x75\\x3c\\xf1\\x85\\xcd\\xf8\\x82\\xbf\\xc7\\x1a\\xe4\\x38\\xd7\\xbb\\\n\\xe9\\x16\\x1b\\x4a\\x93\\x67\\x08\\x07\\x65\\x40\\x7a\\x79\\xf7\\x18\\x9a\\x04\\\n\\xc7\\xc6\\xbd\\x7e\\xe2\\xdc\\xd2\\x9a\\xb5\\xaf\\x3c\\x29\\xf8\\xf0\\xc8\\xc1\\\n\\x9c\\x5f\\x73\\x9d\\xfd\\x3c\\x19\\xea\\x18\\x1f\\xfb\\x88\\x89\\x98\\x77\\x18\\\n\\x9c\\xe8\\x56\\xee\\x5c\\xa2\\x62\\x94\\x10\\x48\\x51\\xcb\\xd6\\x11\\xac\\x06\\\n\\xf2\\x16\\x52\\xad\\xe3\\xaf\\x38\\x92\\x66\\x92\\xc6\\x62\\x88\\xe2\\x7a\\xe3\\\n\\x0a\\x9d\\x3a\\xcd\\x35\\x37\\x09\\x08\\x55\\x55\\xb8\\x97\\x02\\xbd\\x77\\xb4\\\n\\x59\\x94\\x6d\\xa8\\x4a\\x90\\x4b\\xe0\\x50\\x33\\x38\\x75\\x94\\x5a\\x2c\\x33\\\n\\x12\\xea\\x12\\xf6\\xb8\\x0a\\xe7\\xd7\\x7d\\x23\\xd9\\xd9\\x93\\x2c\\x0b\\x99\\\n\\x36\\x61\\x52\\x02\\x94\\xef\\x83\\xb9\\xe5\\xcb\\x36\\x6a\\xef\\x89\\x1a\\x7d\\\n\\x0a\\xb4\\x10\\xb9\\xc4\\xa5\\xc5\\x09\\x0d\\xeb\\xd3\\x45\\xa7\\x4d\\x4a\\x5c\\\n\\xc9\\x48\\x94\\xbb\\xa9\\x51\\x01\\x57\\x48\\x0e\\x38\\x8f\\xa7\\x08\\x5d\\xae\\\n\\x46\\xa8\\xba\\x83\\xef\\x27\\xbb\\x1e\\xbe\\xc8\\xd2\\x36\\x57\\x65\\x84\\xad\\\n\\x8b\\x39\\xaf\\x5d\\x56\\x24\\xe9\\x29\\x09\\x48\\x4a\\x08\\x48\\x5d\\x0a\\x45\\\n\\x29\\x8f\\x87\\x46\\x34\\xc5\\x95\\x36\\xb4\\x32\\x50\\x95\\x24\\x8c\\x32\\xc2\\\n\\x86\\x2d\\xb6\\x35\\xc8\\x4b\\xa9\\xcb\\x54\\xf0\\xa5\\x7b\\xb8\\xe7\\x13\\x49\\\n\\x98\\x49\\x05\\x4c\\x1c\\x76\\xa8\\x7e\\x84\\x3e\\xff\\x00\\x48\\x52\\x26\\xcc\\\n\\x48\\x4a\\x65\\x02\\xab\\xd7\\x8a\\xd9\\x41\\x9d\\xf1\\x56\\xcd\\xea\\x3e\\x25\\\n\\x4c\\xf8\\x42\\xf4\\x72\\x8d\\xd3\\x7c\\x20\\x8a\\x96\\x94\\x55\\x5f\\xf7\\x07\\\n\\x8d\\x16\\x55\\x24\\x14\\xa0\\xdd\\x45\\xfa\\xdd\\xa0\\xad\\x4b\\x8a\\x8f\\x3c\\\n\\x21\\x36\\xef\\x73\\xb7\\xcb\\x09\\x74\\x85\\x4a\\xbe\\xab\\xb4\\x49\\x5b\\x90\\\n\\xee\\x5e\\xa4\\x6f\\xcb\\x8e\\x3a\\x56\\xdd\\x3a\\xd5\\x69\\x17\\x56\\x56\\x8c\\\n\\xdd\\x9c\\x1e\\x7c\\x1a\\x95\\x20\\xf0\\x6a\\xd9\\xc3\\xa9\\x2e\\x3b\\xbf\\xe9\\\n\\xa6\\x1c\\x63\\x44\\xa8\\x6a\\x12\\xf9\\x20\\x79\\x08\\x5c\\xc5\\x02\\xbb\\xaa\\\n\\x6a\\x8c\\x39\\x18\\xbc\\x6f\\xa5\\xcd\\x1f\\x08\\xd8\\xe1\\xe0\\x21\\xd2\\xd8\\\n\\x79\\x40\\x23\\x97\\x74\\x4c\\x99\\x88\\x1d\\x52\\x2b\\xbc\\xf8\\xc4\\xb3\\x87\\\n\\x7f\\xd6\\x01\\x23\\x38\\x75\\x26\\xa0\\x9e\\x3e\\x10\\x99\\xed\\xda\\x4f\\x8f\\\n\\x42\\x12\\xbb\\xf5\\x02\\x8f\\x80\\x89\\x74\\x3d\\x63\\x1a\\x4a\\x4e\\xb1\\x06\\\n\\x8e\\xec\\x62\\xdc\\x9d\\x5c\\xc2\\xec\\x49\\x25\\xaa\\x37\\xf1\\x7e\\x4d\\xdf\\\n\\x1a\\x22\\xc7\\x7e\\x61\\x52\\xd3\\xb0\\x93\\x7d\\xc0\\xd9\\xbc\\x58\\x17\\xd9\\\n\\xdc\\x0d\\x05\\x5c\\x82\\x68\\xf1\\xed\\x45\\xaa\\x62\\xed\\x52\\xe4\\x4b\\x37\\\n\\x6c\\xea\\x74\\x5c\\x02\\xe8\\x37\\x42\\x8b\\xef\\x21\\xc0\\x6a\\x0f\\x01\\x5a\\\n\\x09\\xd2\\x91\\x9a\\xa9\\xe1\\x7b\\x0c\\x99\\x83\\x42\\x24\\x94\\x5a\\x17\\x32\\\n\\x62\\x95\\xab\\x97\\x29\\xc5\\xe1\\x4d\\xa5\\x11\\x40\\x9a\\x1c\\x1d\\xb7\\x90\\\n\\x00\\xc1\\x8a\\x55\\x79\\x53\\x4b\\xa1\\x05\\x3b\\x23\\x7a\\x4d\\x2f\\x06\\x7c\\\n\\x45\\x7f\\xea\\x61\\x04\\xde\\x98\\x18\\x50\\x1f\\x1a\\x97\\x6c\\xb2\\x1c\\xe3\\\n\\x47\\xca\\x33\\xad\\xbb\\x46\\xf4\\xbf\\xe2\\x70\\xa1\\x35\\x23\\x93\\x50\\xfd\\\n\\xe2\\xc5\\x26\\x5c\\xbb\\x3c\\xbb\\x92\\xc4\\xbb\\xc0\\x96\\x01\\x98\\x15\\x28\\\n\\xdd\\xdd\\x81\\xab\\x63\\xe7\\x0a\\x0a\\x2a\\x43\\x52\\xbb\\x5c\\x41\\xc8\\xf7\\\n\\xd7\\x9d\\x33\\x8b\\x14\\x92\\x84\\x0a\\x55\\x49\\xad\\x19\\xf3\\xf0\\xe7\\x90\\\n\\x6a\\xc4\\x99\\x26\\xf0\\xa5\\x3a\\x6e\\xbc\\x21\\x09\\xba\\x81\\xb4\\x46\\x34\\\n\\xeb\\xa1\\xe9\\xa4\\x2d\\x28\\xb8\\x50\\xa9\\x94\\xcc\\x13\\x4c\\xff\\x00\\x31\\\n\\x3e\\x96\\x89\\x81\\x1f\\xcb\\xe5\\xcb\\xed\\x04\\xf1\\x30\\x91\\x4b\\xc6\\xb5\\\n\\x63\\xbf\\x08\\x52\\xce\\x39\\x72\\xfa\\x46\\xb1\\x86\\x3e\\x58\\x57\\x9f\\x9f\\\n\\x76\\x51\\x31\\x33\\x92\\xa4\\xed\\x5e\\x76\\x6c\\xfb\\x58\\x0d\\xfe\\x11\\x2e\\\n\\x6c\\xd0\\x84\\x25\\xc8\\xbb\\xe7\\xbf\\x20\\xd1\\x26\\xd0\\x36\\x43\\xb9\\xe7\\\n\\x51\\x43\\xd7\\x08\\xb7\\xc9\\x4c\\xe0\\x94\\xd0\\x13\\x5b\\xc1\\x9f\\x0c\\x8f\\\n\\x43\\x3e\\x11\\x3e\\xc1\\x6b\\x97\\xb5\\xa9\\xf8\\x37\\x43\\x2c\\x50\\xdd\\xfe\\\n\\x47\\x32\\x79\\x63\\x42\\x5e\\xa2\\x12\\x9d\\x1c\\x52\\x1e\\xd5\\x31\\xda\\xbb\\\n\\x26\\x87\\x77\\x64\\xb7\\x27\\x31\\x39\\x07\\x23\\x94\\x4e\\x96\\xeb\\x15\\xdc\\\n\\x30\\xe5\\x13\\x2c\\x6b\\x32\\xc9\\x41\\xbc\\x69\\xb2\\xde\\x3e\\x1c\\xa2\\x5c\\\n\\x99\\x89\\xa2\\xe5\\x91\\x46\\xdf\\x0b\\x97\\xa9\\xdb\\x77\\xa0\\xa6\\x1b\\x8c\\\n\\x22\\x72\\x6d\\x28\\x50\\xd5\\xd5\\x26\\xeb\\x93\\xf8\\xef\\x68\\xd0\\x93\\x7d\\\n\\xce\\xdf\\x67\\x2b\\xda\\x94\\x56\\x75\\x81\\xd9\\xdd\\x05\\xb7\\xe0\\x77\\xfa\\\n\\xc2\\xa6\\xd8\\x66\\xcb\\x2b\\xba\\x94\\xd0\\xd1\\xc6\\x5d\\x6e\\x31\\x6f\\xb5\\\n\\x4a\\x56\\xb2\\x5c\\xa9\\x1b\\xd2\\x14\\x15\\x4a\\x6c\\xb8\\x61\\x4d\\xdc\\x6a\\\n\\x20\\xce\\x32\\x0d\\xe7\\x52\\x94\\xac\\x2f\\x2b\\xb0\\xde\\xbd\\xe4\\xb6\\x01\\\n\\x81\\x62\\x9d\\x23\\x3d\\x53\\x91\\xb4\\x46\\xda\\x46\\x25\\xc5\\x62\\x6d\\xba\\\n\\xd0\\x65\\x94\\x09\\xa4\\x71\\x6f\\x1d\\xd8\\xc4\\xab\\x54\\xe9\\x08\\x45\\xe9\\\n\\x8a\\x9a\\x49\\x53\\xab\\xb2\\xf5\\x2d\\xbf\\xb3\\x41\\xbc\\xe3\\x58\\xd1\\xa8\\\n\\xb5\\xdb\\x4c\\xb3\\x26\\xa5\\xaf\\xa8\\x39\\x64\\x87\\x03\\x8e\\xee\\x15\\xac\\\n\\x3a\\x2c\\xf2\\x7e\\x39\\x4b\\x81\\x50\\x48\\xc1\\xab\\x1a\\x7e\\xdf\\x65\\x9d\\\n\\xb1\\x21\\x49\\x00\\x8d\\xe3\\x17\\xdc\\x41\\xc8\\x7f\\x20\\xcf\\x02\\xce\\x8d\\\n\\xaf\\x8a\\x05\\xe2\\xec\\xd9\\x28\\xfa\\x63\\x94\\x09\\x48\\x94\\x97\\x04\\x28\\\n\\x51\\x87\\x3e\\xa9\\x0a\\x52\\x1a\\xb2\\xc3\\x73\\xfc\\x43\\x20\\x31\\xad\\x0d\\\n\\xef\\xdc\\x2d\\x52\\xd5\\x8b\\x3b\\x36\\x23\\x0f\\x58\\x9f\\x2a\\x5e\\xad\\x44\\\n\\x11\\x78\\x54\\x3d\\x7c\\x18\\x3d\\x70\\xdd\\xc0\\xc5\\x8a\\xd0\\xcb\\x08\\x29\\\n\\xa8\\xc1\\xcf\\x70\\x25\\x85\\x3c\\x5e\\x34\\x44\\xe1\\xab\\x67\\x77\\x4d\\x0e\\\n\\x10\\xa0\\xc5\\x45\\xde\\xa3\\xd2\\x0f\\x68\\x73\\x30\\xe6\\x31\\x6f\\x18\\x76\\\n\\xef\\x8a\\x96\\xff\\x00\\x04\\xab\\x0e\\x1d\\x7d\\x60\\x2a\\x82\\x02\\xab\\x85\\\n\\x22\\x66\\xaf\\x21\\x94\\x4b\\x53\\x51\\xb3\\x89\\x55\\x50\\xcb\\x38\\x9e\\x41\\\n\\x17\\x4a\\x5f\\x3e\\xbc\\x23\\x49\\x68\\xeb\\x45\\xae\\xd2\\x9b\\xa4\\x49\\x42\\\n\\x56\\x6f\\x3a\\x42\\xc1\\x4b\\xe3\\x93\\x38\\xa6\\x74\\xf1\\x0a\\x5a\\x34\\x6d\\\n\\x8c\\xcb\\x28\\xbf\\x78\\x5f\\x24\\x52\\x98\\x1a\\x31\\x7a\\x8e\\x31\\xa5\\xad\\\n\\x13\\x2d\\x16\\xa9\\x53\\xee\\x14\\x82\\xb9\\x86\\xe5\\xe7\\x26\\xf1\\x51\\x7c\\\n\\x3e\\x5c\\x7c\\x72\\x76\\x0d\\x32\\xdb\\x2b\\x65\\xb5\\x72\\x8c\\xca\\xf1\\x71\\\n\\xc3\\x79\\x27\\x2f\\x23\\x13\\x92\\x99\\xaa\\x1a\\xb5\\x05\\x5d\\x4a\\x35\\xa7\\\n\\x25\\x57\\xb1\\x78\\xfc\\xa9\\xa9\\x01\\x83\\xe2\\x05\\x44\\x4c\\xb8\\xb6\\xbc\\\n\\x9a\\xa4\\x31\\x29\\x38\\xf9\\x79\\x42\\xec\\xc9\\xaa\\x82\\x98\\x50\\xfa\\xc5\\\n\\x9a\\xca\\x2c\\xeb\\x0b\\x13\\x1c\\x2f\\xb5\\xb2\\xc1\\x9f\\xb2\\x08\\x26\\xa7\\\n\\x13\\x41\\x4c\\x1e\\xb1\\x2a\\x7a\\xe6\\xa1\\x1a\\x99\\x37\\xf0\\x60\\x0d\\x06\\\n\\x15\\x25\\xbc\\x83\\x96\\xa8\\x78\\xd1\\xf6\\x09\\xd3\\xd4\\x4c\\xd4\\x99\\x25\\\n\\x2c\\x47\\xcc\\x09\\x2f\\x47\\xd9\\x6e\\xfe\\xe8\\xb3\\x49\\x97\\x66\\x40\\x45\\\n\\xd2\\xb5\\x31\\xbc\\xa3\\x81\\x3c\\x39\\x9c\\x37\\x71\\x82\\xb9\\x32\\x11\\xad\\\n\\x98\\xa0\\x93\\x52\\xdd\\x7d\\xb0\\x8d\\x23\\xed\\x0d\\xd9\\xca\\x97\\x25\\x3b\\\n\\x2c\\x13\\x79\\x2a\\x4b\\x54\\x57\\xe5\\xc7\\x2a\\x40\\xb5\\xce\\x98\\xa5\\x15\\\n\\x2a\\x84\\x1a\\x3b\\xed\\x3f\\x68\\x93\\xdf\\x4e\\x38\\xc4\\xa0\\xa9\\x73\\x14\\\n\\xb5\\x2d\\x25\\x19\\x25\\x99\\x9c\\xbe\\x2f\\x95\\x06\\x6f\\x89\\xac\\x25\\x52\\\n\\xa6\\x62\\x90\\x72\\xec\\xd6\\x16\\x99\\x72\\xd3\\x47\\x72\\xae\\xcd\\xef\\x1d\\\n\\xed\\x41\\xe7\\xca\\x08\\xbe\\x0a\\x30\\x7a\\xd4\\xee\\xae\\x10\\x42\\x50\\xaa\\\n\\xac\\xd0\\x54\\x04\\xfe\\x78\\x83\\xdf\\x1a\\x16\\xc1\\x32\\xd6\\xbd\\x6c\\xd5\\\n\\x90\\x84\\x76\\x12\\xa0\\x6b\\xc7\\x1a\\x3e\\x1c\\xbb\\x84\\x5a\\x34\\x60\\x32\\\n\\xa5\\x89\\x6a\\x1b\\x28\\xc0\\x27\\x3d\\xf8\\xf9\\x7d\\x22\\x62\\x27\\xc8\\xb6\\\n\\x35\\xd5\\x5d\\x72\\x5d\\x9b\\x7b\\x91\\x53\\x99\\x14\\x67\\xae\\x50\\x11\\xef\\\n\\x72\\xd2\\xca\\xd5\\xad\\x2c\\x5c\\xed\\x16\\xc0\\xba\\x68\\x59\\xb1\\xc3\\xbb\\\n\\x18\\x99\\x26\\xdb\\x79\\x52\\x55\\x30\\x4d\\x94\\x95\\x14\\x04\\x84\\x10\\x2e\\\n\\x07\\x0c\\xef\\x8b\\x61\\x1f\\xfa\\x7b\\x46\\x4e\\x65\\xce\\xb2\\xde\\x98\\x45\\\n\\x4b\\x24\\xfa\\xa0\\xfa\\xc4\\xd9\\x8f\\x81\\x06\\x9c\\x1e\\x2d\\x06\\x6e\\xb1\\\n\\x04\\x0a\\x67\\x47\\xcc\\x55\\xe2\\x45\\xab\\x57\\x31\\x2a\\xbc\\x14\\x03\\xec\\\n\\xd0\\xb9\\x3d\\x65\\x12\\x95\\x22\\x78\\x04\\xa9\\x09\\x7c\\x94\\x40\\x23\\x0e\\\n\\x9a\\x27\\xd8\\x64\\x4c\\x0c\\x89\\xc9\\x24\\x64\\x0a\\x4d\\x0e\\x04\\xf3\\xdf\\\n\\x09\\xb0\\x99\\x45\\x85\\x41\\xfe\\x3c\\x37\\xf7\\x18\\x54\\xab\\x81\\x26\\xf1\\\n\\x43\\x7a\\xfe\\x20\\x05\\x6a\\x76\\x67\\x93\\x4a\\x80\\x77\\xf2\\xeb\\xc4\\xc4\\\n\\xe3\\x32\\xce\\x25\\x62\\xa0\\xb4\\x26\\xf1\\xcc\\x28\\xd3\\xba\\x8e\\xfd\\xdc\\\n\\x1a\\x74\\xc1\\xac\\x25\\x44\\x00\\xec\\x1c\\xe6\\x4b\\x67\\x9c\\x38\\x4a\\xd0\\\n\\xac\\x00\\x50\\x24\\xbe\\x0d\\x9e\\xea\\x62\\x78\\x41\\xb4\\xa8\\xf6\\x48\\x38\\\n\\x60\\x42\\xb1\\xe4\\x0e\\x30\\x9b\\xd3\\x25\\xc9\\x3c\\x4b\\xef\\xed\\x1f\\x4c\\\n\\x3d\\x63\\x42\\x5a\\xb5\\x52\\x96\\x25\\x4e\\x96\\x85\\xea\\x1c\\xde\\x50\\x74\\\n\\xb2\\xc6\\x4e\\xff\\x00\\x98\\x9b\\x2a\\xdb\\x6f\\x98\\x40\\xb6\\x8c\\xdc\\x5f\\\n\\x0f\\x77\\x0c\\x1e\\x9c\\xbd\\x2b\\x0b\\xf6\\x7c\\x09\\xe2\\xfc\\xc2\\xbc\\xdd\\\n\\xdc\\x78\\xbf\\x5c\\x22\\xd7\\xa3\\x2c\\xe8\\xec\\xcd\\x92\\x0b\\x07\\x4a\\x97\\\n\\xb6\\xdb\\xc0\\x18\\x70\\xcf\\x00\\xc0\\x41\\x25\\x33\\x4c\\xac\\x45\\x54\\x08\\\n\\x86\\x78\\x52\\x97\\xfd\\xdf\\xae\\xe8\\x54\\xd5\\xb8\\xd9\\x59\\xeb\\x0c\\x3e\\\n\\xdd\\xf0\\xa9\\x8a\\xba\\x6f\\x24\\xa5\\x2c\\xa7\\x59\\xc0\\x1c\\x86\\x19\\xbe\\\n\\x3b\\xe2\\xc6\\x8f\\x8b\\x8b\\x86\\xc4\\x55\\xeb\\xe7\\xf4\\x8d\\x10\\xb5\\x5d\\\n\\x01\\x88\\x00\\x52\\x9d\\x73\\x8d\\xaa\\xb8\\x20\\x38\\xc7\\x91\\xfb\\xc1\\x2e\\\n\\x69\\xfe\\x00\\xd3\\x16\\x83\\x94\\x75\\xe3\\x0c\\x77\\x40\\xc6\\x14\\xa6\\x48\\\n\\x6a\\xc6\\xb0\\xc2\\x66\\x15\\x33\\x88\\x4b\\x52\\xa3\\x1d\\xf0\\x9b\\xc0\\x38\\\n\\xe1\\xfa\\x84\\x0b\\xf5\\x57\\x42\\x2d\\xf2\\x40\\xec\\x20\\x9c\\x3b\\x22\\x3d\\\n\\xa0\\xd7\\xa9\\x09\\xbb\\x2d\\x7f\\xd3\\x29\\x20\\x06\\x2d\\x78\\x70\\xa8\\xc6\\\n\\x2d\\x12\\xe6\\x26\\x4a\\x56\\xa4\\x2c\\xb2\\xd4\\x9e\\xc1\\xbd\\x74\\xae\\x99\\\n\\x78\\xef\\x15\\xce\\x2c\\x88\\x33\\xa7\\xea\\xd3\\x78\\x5e\\x48\\x0a\\xa7\\xf4\\\n\\xd0\\x09\\x75\\x10\\xc0\\x82\\x70\\x48\\xde\\xa1\\x5c\\x04\\x1b\\x1a\\x93\\x79\\\n\\x32\\xd2\\x52\\x87\\x3c\\x4e\\x39\\xf5\\xca\\x3d\\xce\\x64\\xb3\\x81\\x37\\xb8\\\n\\x3c\\x0b\\x24\\xc2\\xc1\\x40\\x80\\xaa\\x39\\x49\\x03\\xc6\\x25\\x49\\x92\\x93\\\n\\x74\\x05\\x91\\x81\\x25\\x04\\x27\\xfe\\xe0\\x01\\xc3\\xd3\\x13\\x1a\\x02\\xcf\\\n\\x64\\x96\\x84\\x3a\\x90\\x94\\xdd\\xf9\\x8d\\x73\\x39\\xd4\\xf1\\xae\\x02\\x25\\\n\\xda\\x2c\\xee\\x50\\x84\\x9d\\x9a\\x92\\x90\\x9b\\x8a\\xe4\\x5e\\xbe\\x10\\x66\\\n\\x0b\\xce\\xa5\\x04\\x27\\xb5\\x5d\\xcf\\xb8\\x47\\xb4\\x36\\xb4\\xda\\x01\\x93\\\n\\x66\\xb4\\x20\\x80\\x9e\\xd2\\x14\\x0e\\xd2\\xb0\\x25\\x40\\xd5\\x92\\x69\\x51\\\n\\x89\\x0f\\x12\\x50\\x24\\x22\\xe4\\xd9\\xa9\\x2b\\x24\\xab\\x69\\x60\\xd4\\xe2\\\n\\xce\\x5c\\xd5\\xcb\\xf3\\x2c\\x0c\\x4e\\x99\\x75\\x29\\xd5\\xa9\\x04\\xde\\x62\\\n\\xe6\\xf0\\x6d\\xfb\\x27\\x7b\\x00\\xe6\\x35\\xca\\x23\\x68\\xcb\\xdc\\x45\\x7e\\\n\\xaa\\x23\\xc5\\xc4\\x5c\\x6c\\x0b\\x29\\x4a\\xed\\x39\\x7e\\xfd\\xaa\\xc5\\x98\\\n\\x4b\\x12\\xf5\\x73\\x08\\xbe\\x4b\\xbb\\x31\\xca\\xb5\\xde\\xd8\\x9c\\x5a\\x17\\\n\\x67\\x9e\\xaf\\xe8\\xcb\\x54\\xdc\\x02\\x42\\x52\\x54\\x7c\\x37\\x63\\x51\\x84\\\n\\x59\\x7d\\x98\\x55\\xb1\\x37\\xa7\\xcb\\x9a\\x83\\xbc\\x82\\x91\\xe6\\x2b\\x80\\\n\\xa5\\x70\\x27\\x38\\xb1\\x68\\xb9\\x76\\x64\\x30\\x6a\\x21\\x23\\x77\\x64\\x36\\\n\\x1d\\xc2\\x14\\x4c\\xb4\\x2f\\x63\\xb4\\x69\\xc0\\x33\\x7a\\xc5\\xad\\x48\\x54\\\n\\xe5\\x6d\\x21\\x2a\\xab\\x3e\\xfc\\x0f\\xd7\\xc2\\x24\\x2e\\x5c\\xb5\\x05\\x3a\\\n\\x54\\x73\\x65\\x7d\\x62\\x5a\\x51\\xa9\\x4c\\xc9\\xa8\\x29\\x17\\x12\\x52\\xa5\\\n\\x06\\x70\\xd4\\x2e\\x71\\x7c\\xb8\\x45\\xa2\\xdf\\x3a\\x5c\\xd5\\x26\\x5a\\x4a\\\n\\x93\\x91\\x09\\x8b\\xa6\\x2d\\x26\\x61\\xb4\\x26\\x5a\\x43\\xa4\\xa0\\x65\\x9b\\\n\\x9c\\x38\\xd3\\x38\\xb2\\x68\\xe3\\xad\\x4a\\xd6\\x36\\x48\\x57\\x16\\x2d\\x4c\\\n\\x3c\\x39\\xf8\\xc2\\x6c\\x49\\x4e\\x21\\x93\\xf7\\xf3\\xe1\\xc8\\x41\\x98\\x94\\\n\\xba\\x77\\x53\\x11\\x97\\x08\\xd7\\x0e\\x5d\\xf0\\xb9\\xa0\\xe1\\x88\\xa8\\xac\\\n\\x49\\x9a\\xd5\\x48\\x06\\x9d\\x75\\x94\\x5b\\x66\\x29\\x41\\x2d\\x46\\x48\\x3c\\\n\\x5b\\x21\\xc7\\x16\\xe3\\x16\\xb5\\xdf\\x51\\x48\\xc4\\x57\\xc7\\x0f\\x2c\\x38\\\n\\x44\\xd2\\xa1\\x22\\x63\\x62\\xca\\x6e\\xf0\\xdf\\x58\\x91\\x55\\x00\\x32\\xb8\\\n\\xff\\x00\\xee\\x81\\x35\\x08\\x48\\x41\\xa1\\x0f\\xf3\\x01\\x89\\x27\\x0e\\xf8\\\n\\xb2\\x5a\\x35\\x08\\x52\\x93\\xda\\x9a\\x9b\\x84\\x05\\x96\\x52\\x5c\\xa9\\x20\\\n\\xa4\\x16\\x20\\x39\\x35\\x1b\\xe2\\xc7\\x6c\\x9b\\x29\\x6b\\x5e\\xd6\\xd0\\x34\\\n\\x73\\x77\\x36\\x3c\\xeb\\x4e\\x7c\\x22\\x76\\x92\\xb6\\x0c\\x12\\x7a\\x1c\\x87\\\n\\xe8\\x56\\xad\\x08\\xb5\\x19\\xb2\\xca\\xa7\\x16\\x98\\x49\\xa1\\xc7\\x84\\x28\\\n\\xdd\\xda\\x15\\xae\\xfd\\xf5\\xfb\\x41\\x9e\\x78\\xf9\\x7d\\xa1\\x73\\xcf\\x1e\\\n\\xbb\\xa1\\x76\\x8a\\x06\\xa1\\x22\\x9b\\xcf\\x2c\\xbc\\x72\\x8f\\x76\\xb7\\x5a\\\n\\x96\\x99\\x62\\xf0\\x92\\xaa\\xab\\x90\\x65\\x57\\x2a\\xd3\\x3e\\x78\\xd7\\x47\\\n\\x68\\x21\\x22\\x52\\x26\\x4d\\x4b\\x24\\x01\\xb4\\x45\\x49\\xad\\x5b\\x3c\\x85\\\n\\x7c\\xe2\\x42\\x44\\x95\\x00\\x1d\\x8e\\x14\\x2c\\x37\\x55\\xb7\\x79\\xc6\\xb2\\\n\\xf8\\xbb\\xbf\\xce\\x18\\x4b\\x37\\x77\\xfd\\x7f\\xfd\\x07\\x7c\\x6b\\x78\\x8f\\\n\\x11\\x00\\xba\\xb7\\xbc\\x2b\\x0e\\xff\\x00\\xb7\\xf8\\x23\\x28\\x1d\\xa3\\xff\\\n\\x00\\x4c\\x4b\\x0e\\x1b\\xaa\\x01\\xfb\\x89\\x72\\xf7\\x88\\x9f\\x2e\\x91\\xa5\\\n\\xe4\\xbf\\xfb\\x5b\\xce\\x16\\x84\\x26\\x76\\xaa\\x62\\xbe\\x11\\x52\\x94\\x5e\\\n\\xb8\\xbd\\x2b\\x4a\\x1a\\xe1\\xca\\x15\\xaa\\xb3\\x15\\x09\\x0a\\xad\\xe7\\x99\\\n\\x30\\x92\\x54\\xa3\\x90\\x09\\x6e\\xca\\x52\\xc0\\x5d\\xc9\\x9d\\xeb\\x0a\\xb4\\\n\\xda\\xee\\x05\\xa2\\x58\\x55\\xea\\x80\\x69\\xb2\\x73\\x26\\xf0\\xf4\\x89\\x33\\\n\\xad\\x4b\\x0b\\xd6\\x84\\x23\\x00\\x8b\\x98\\xe0\\x5c\\x9c\\x46\\xef\\x3a\\x52\\\n\\xa8\\x26\\xf1\\x13\\x54\\xa2\\xa2\\x7e\\x1a\\x89\\x7d\\xd8\\x64\\x3b\\x83\\xc2\\\n\\x5f\\x0a\\x31\\xf1\\x84\\xda\\x2d\\x12\\x00\\x6d\\xa4\\x00\\x6e\\x86\\xa9\\xef\\\n\\xde\\xfe\\x71\\x23\\x4f\\xac\\x4c\\x4a\\x0a\\x14\\x9b\\xca\\x61\\x8d\\xc4\\xd6\\\n\\x80\\xb3\\x31\\x38\\x16\\x38\\xf8\\x89\\x56\\xb9\\x36\\x8b\\x2c\\xf2\\xa4\\xdc\\\n\\x3a\\x85\\xba\\x41\\x2c\\xe5\\x25\\x38\\xf1\\xe3\\x4c\\x47\\x39\\xef\\x79\\x45\\\n\\x34\\xec\\xff\\x00\\xf5\\x7e\\xfe\\x31\\x30\\x7c\\x45\\x13\\x5c\\x38\\x7c\\xa0\\\n\\x57\\xf9\\x77\\xe1\\x13\\x15\\x44\\xb0\\x72\\x48\\x71\\xba\\x86\\xb1\\xb5\\x9f\\\n\\xac\\x04\\x25\\xeb\\x5c\\xfb\\xe1\\xd2\\x16\\x0e\\x65\\xaa\\xdb\\x8f\\xd2\\x34\\\n\\x6e\\x91\\xd5\\xcf\\x96\\x5d\\x2a\\x67\\x17\\x48\\x06\\x94\\xdf\\x54\\xaa\\x8d\\\n\\x78\\x31\\xcb\\x08\\xb2\\x4f\\x4c\\xe9\\x01\\x49\\x25\\x88\\xc0\\x8a\\xa7\\xfb\\\n\\x4f\\xa3\\xd6\\x91\\xba\\x26\\xb2\\xd2\\x51\\xbc\\x63\\x16\\xab\\x10\\x37\\xcd\\\n\\xda\\xb7\\x6b\\x37\\xeb\\xf3\\x16\\x5b\\x26\\xc8\\x17\\x58\\xe0\\x69\\x8f\\xec\\\n\\x75\\xba\\x7c\\xa3\\xee\\x52\\x25\\xe6\\x99\\x12\\xd3\\xe0\\x20\\x68\\xe2\\xaa\\\n\\x87\\x02\\x08\\x53\\x53\\x18\\xb3\\x49\\x4a\\xe6\\x6d\\x80\\xa5\\x3b\\x05\\x1d\\\n\\xcf\\x80\\xc0\\x78\\xc4\\xd9\\x93\\x24\\x94\\xca\\x94\\x5b\\x83\\x02\\xdd\\xe4\\\n\\x1e\\xa9\\x07\\xde\\x16\\x36\\x89\\xff\\x00\\xb7\\xae\\xe8\\x9e\\x08\\x22\\xe0\\\n\\x38\\xd4\\x35\\x1f\\x3c\\x72\\x10\\x58\\x84\\xb0\\x66\\x15\\xa9\\x35\\xf0\\x80\\\n\\x18\\xc4\\xb4\\x89\\x6e\\x46\\x04\\x3e\\x39\\x96\\x7f\\x3f\\xb0\\x89\\xfa\\xc5\\\n\\x5e\\x00\\x96\\x34\\x49\\x6d\\xd9\\x07\\xaf\\x2e\\x43\\x9c\\x7b\\x84\\xc5\\xcc\\\n\\x5e\\xd3\\x97\\x4f\\x02\\xc4\\x9e\\x1b\\xc9\\xc7\\xf0\\x3f\\xcb\\xe7\\x28\\x39\\\n\\x06\\xe6\\x2a\\x04\\x3b\\x80\\x6b\\x83\\x6e\\xad\\x61\\x16\\x79\\x69\\x3b\\x32\\\n\\xab\\xc1\\x42\\xa7\\x8b\\x1c\\xa2\\x75\\x9d\\x29\\x0a\\x98\\x52\\x4b\\x6d\\x11\\\n\\x89\\xa0\\xc1\\x2f\\x4d\\xdb\\xcb\\x3d\\x60\\x29\\x6b\\x08\\x54\\xb5\\x28\\x0a\\\n\\x10\\x28\\xe9\\x7c\\x88\\xf4\\x38\\x36\\x67\\x18\\x94\\xa9\\xec\\x1d\\x55\\xe5\\\n\\xf8\\x68\\x52\\xe7\\x1c\\x49\\xaf\\xf6\\xfe\\x21\\x69\\x0f\\x54\\x97\\xa6\\x47\\\n\\x2c\\x37\\x42\\xd1\\xac\\x17\\x08\\x50\\x14\\x39\\x8c\\x37\\x11\\xd3\\x42\\x92\\\n\\x94\\x87\\x50\\xba\\xcd\\x52\\x14\\x00\\xe1\\xdf\\x13\\x51\\x3c\\xdc\\x65\\x1d\\\n\\xa5\\x96\\x66\\xdd\\x85\\x46\\x7e\\x9c\\x62\\xcb\\x62\\x52\\x96\\x85\\x2c\\x15\\\n\\x30\\x4b\\xde\\xc3\\x79\\x1b\\xcf\\x1f\\x56\\xc7\\x47\\x58\\xa5\\x25\\x09\\x9b\\\n\\x30\\x22\\xf0\\x49\\x63\\x77\\x65\\x18\\xe0\\x15\\x7a\\xbb\\xd4\\x38\\x57\\x08\\\n\\xb7\\xdb\\x52\\x8b\\x36\\xac\\x12\\x02\\x40\\xc3\\x3b\\xa7\\x22\\x6b\\x56\\xaf\\\n\\x0e\\xe8\\xb3\\xda\\x26\\x5a\\x14\\x9d\\x52\\xcb\\x10\\x1c\\x30\\x66\\xe5\\x52\\\n\\xee\\xd9\\xc2\\x10\\x00\\x49\\x3d\\xa6\\x89\\x80\\x2c\\x82\\xaa\\x91\\x9f\\x5c\\\n\\xff\\x00\\xc3\\x2f\\xf0\\xe0\\x7c\\x23\\x56\\x8a\\x52\\x1c\\x23\\x84\\x15\\xbd\\\n\\x01\\xf4\\x84\\x00\\x5b\\x8b\\xc0\\xa6\\x11\\x2c\\x3b\\x13\\x52\\xed\\x12\\x4e\\\n\\xd2\\x5f\\x03\\x06\\x88\\x74\\xd0\\xef\\xc6\\x06\\xda\\x36\\xab\\x94\\x69\\x40\\\n\\xf2\\xa6\\x30\\xda\\x0e\\xd1\\x6a\\x95\\x3a\\x64\\xe3\\x7c\\x92\\x87\\x39\\x33\\\n\\x35\\x7b\\xfa\\xa4\\x20\\x4a\\x06\\x65\\xf4\\x35\\x47\\x69\\xc3\\x84\\xf3\\xf4\\\n\\xcc\\x65\\x17\\x8b\\x0a\\xf2\\x04\\x0c\\x37\\x54\\x45\\xe2\\xe1\\xc8\\x7c\\x46\\\n\\x5b\\x81\\xae\\x19\\x8c\\x77\\xc2\\x2c\\x4b\\x5a\\x44\\xe9\\x93\\x88\\x97\\x2c\\\n\\xdf\\xa5\\x01\\x48\\xaa\\xb6\\xd9\\xb0\\xcc\\x71\\xad\\x22\\xd1\\x3d\\x28\\x2c\\\n\\x86\\x49\\x1b\\x54\\xc0\\x8e\\x0e\\xf4\\x3f\\x2e\\x24\\x55\\xe3\\xde\\xad\\x05\\\n\\x0c\\xb5\\xe0\\x1a\\x80\\x60\\x77\\x71\\x63\\xbb\\x84\\x49\\x23\\xe2\\xcd\\x58\\\n\\xbc\\xc9\\x0a\\x4e\\xf7\\x76\\xa3\\x30\\x7c\\x1b\\xc3\\x3a\\xe8\\x89\\xfa\\xf4\\\n\\x31\\x24\\xa1\\x7f\\x0d\\x49\\x07\\xe5\\xc2\\xa4\\x7f\\xb8\\x1c\\x77\\x18\\xd2\\\n\\x24\\xc8\\x5a\\x43\\x94\\xbe\\xca\\x85\\xdc\\xd3\\x43\\x46\\xa6\\x00\\x3f\\xde\\\n\\x26\\xcd\\x26\\x6e\\xc9\\x60\\xc2\\x98\\xd5\\x87\\x7c\\x02\\x57\\xda\\x39\\x3e\\\n\\x00\\x57\\x87\\x4f\\x00\\x71\\xc9\\xb9\\x42\\x0b\\xd0\\xa6\\xaf\\xdc\\x5a\\x99\\\n\\xc2\\x6e\\x5f\\x00\\xb1\\x23\\xd0\\x9f\\x0c\\xa1\\x09\\x92\\x85\\xa2\\x6d\\xd4\\\n\\xec\\xb3\\xf6\\xaf\\x3b\\xd0\\x0a\\xdd\\x6c\\xca\\xab\\x50\\x06\\x71\\xa0\\xf4\\\n\\x8c\\x99\\xb2\\x93\\x25\\x24\\x53\\xe6\\xa5\\x73\\xda\\xdc\\x70\\x62\\xd7\\x5a\\\n\\x8c\\x03\\x3a\\x26\\x12\\xa3\\x50\\xd9\\x78\\xc3\\x03\\x8f\\x74\\x2d\\x09\\xad\\\n\\x3c\\xcf\\x7c\\x49\\x96\\x8f\\xe2\\xd1\\x6b\\x51\\x08\\x00\\x1c\\x12\\x3d\\x21\\\n\\x07\\x64\\x50\\xf7\\x44\\x94\\x54\\x5e\\x62\\x9e\\x14\\x2e\\x06\\x10\\x85\\x4b\\\n\\x49\\x4a\\xd2\\xf7\\x5f\\x07\\xfe\\x3f\\x47\\x85\\xcc\\x96\\xa5\\x85\\x5c\\x38\\\n\\x70\\xca\\x25\\xa0\\x4f\\x0d\\x2d\\x45\\x2a\\xe3\\x83\\x44\\xbd\\x05\\x68\\x12\\\n\\x8a\\x95\\x24\\xa9\\x05\\x25\\x57\\x8e\\xf6\\x77\\x03\\x8f\\x55\\x85\\x59\\xce\\\n\\xb6\\x6a\\x52\\x92\\x2e\\x2d\\x88\\x23\\xd2\\x95\\xe7\\x58\\xf7\\x75\\xa7\\x69\\\n\\x41\\x80\\xa9\\x25\\xfe\\xd0\\x00\\xa1\\xa3\\x0a\\x3e\\xfd\\xfe\\x8f\\x1a\\xa0\\\n\\x4b\\x96\\x20\\xd4\\x44\\xb9\\x29\\x2e\\xcc\\x30\\xbc\\xe3\\xc1\\x9b\\x73\\x47\\\n\\x65\\x25\\x2a\\xbb\\xfe\\xda\\x34\\x38\\x48\\xf9\\x1b\\xb9\\xe2\\x64\\xe9\\x75\\\n\\x05\\x25\\xf9\\x0e\\xed\\xd1\\x2c\\x25\\x5d\\x94\\x14\\xe6\\x47\\x5d\\x57\\x74\\\n\\x21\\x40\\x30\\xba\\xad\\xce\\x1e\\x0a\\x46\\xf8\\x4a\\x10\\x65\\xbd\\xcb\\xcb\\\n\\xae\\x27\\x16\\x38\\x44\\xc9\\x60\\xa1\\xee\\x6a\\xd4\\xe3\\x71\\x0c\\x3a\\xce\\\n\\x27\\xcd\\x44\\x92\\xc3\\xe2\\xab\\xc8\\x55\\x8c\\x4a\\x9a\\x82\\xa1\\x7a\\x4a\\\n\\x76\\x0b\\x86\\x38\\x15\\x53\\xc7\\x1d\\xaf\\xcc\\x2e\\xd4\\x13\\x31\\x09\\x97\\\n\\xf0\\xc9\\x05\\x83\\x8a\\x91\\x89\\xf0\\xe0\\x78\\xd2\\x24\\x4d\\xb4\\x4f\\x94\\\n\\x25\\x24\\xea\\x94\\x5a\\xa5\\xae\\xdd\\x05\\xd5\\x85\\x6a\\x13\\xbf\\x3c\\xa2\\\n\\xd1\\x64\\x59\\x91\\x2e\\xfb\\x2c\\x2b\\x12\\x97\\x7a\\xd3\\xeb\\x8b\\xc6\\x85\\\n\\x93\\xa9\\x51\\x0a\\x49\\x29\\xbc\\x5a\\x9c\\x4b\\x0d\\xf8\\x72\\xc1\\xcb\\x44\\\n\\xd6\\xd9\\x6f\\x2c\\xb7\\x41\\x80\\x33\\x83\\x48\\xd6\\xa6\\x1c\\x1a\\xff\\x00\\\n\\x84\\xc5\\x32\\xc8\\xe9\\xa3\\x58\\x11\\x52\\x38\\x52\\x11\\x68\\x45\\x0b\\x1a\\\n\\x72\\x84\\xed\\x78\\x44\\xa4\\x1a\\x61\\x42\\xe7\\xbe\\x13\\x29\\x54\\x20\\x8f\\\n\\x38\\x96\\xd7\\x2e\\x9f\\x58\\xd6\\x04\\x02\\x2e\\x9c\\x4c\\x5b\\xc3\\xc9\\x98\\\n\\x78\\x98\\xb4\\xcc\\x94\\xf3\\x12\\xa9\\x65\\xf2\\xcb\\xbf\\xf5\\x16\\xd1\\x78\\\n\\x1b\\x8a\\x29\\xa5\\x30\\x39\\xd1\\xf3\\xdd\\xc5\\xb3\\x89\\x49\\xf8\\x48\\x75\\\n\\x26\\x92\\xd1\\x80\\x3b\\xb2\\xa4\\x2d\\x0b\\x09\\x0a\\x2a\\xd6\\x25\\xc9\\xd8\\\n\\xa1\\x6c\\x70\\xa1\\x38\\x0c\\x2b\\x0a\\xd2\\x33\\x90\\x99\\xb2\\x31\\x96\\xb0\\\n\\xa4\\x15\\x82\\x1c\\x39\\xad\\x1b\\x27\\xcf\\x16\\xdc\\xc6\\x13\\x3a\\xce\\xce\\\n\\x05\\xd5\\x00\\xd4\\x23\\x01\\xcf\\xad\\xe4\\xd1\\xa4\\x2d\\x16\\xc9\\xab\\x43\\\n\\x2a\\x42\\x12\\x48\\x05\\x64\\x10\\x7e\\xa7\\x22\\x08\\x26\\xbc\\xa2\\xd1\\x28\\\n\\xd9\\xd0\\x52\\x15\\x78\\x9a\\x38\\xec\\xdd\\xca\\xf0\\x3d\\x0c\\x8e\\x71\\xa1\\\n\\x26\\x7b\\xbe\\xa7\\x58\\x2f\\x8d\\x6a\\x01\\x03\\x3b\\xca\\x45\\x31\\xe2\\xc4\\\n\\xee\\x18\\x47\\xb4\\x16\\x09\\xb3\\x6f\\xce\\x43\\x94\\xa4\\xdf\\x01\\x29\\x65\\\n\\x29\\xee\\xad\\x41\\xdf\\x7b\\x8c\\xa2\\x49\\xbe\\x80\\xa9\\x9f\\x04\\xd4\\x14\\\n\\xcc\\x06\\xf0\\x62\\x40\\x7a\\x0d\\xde\\x4f\\xc6\\x2e\\x04\\x97\\xd6\\x24\\x00\\\n\\x31\\xa8\\xc2\\xb0\\xa3\\x75\\x88\\xda\\x7d\\xd5\\xfb\\x45\\xc6\\xaf\\x8c\\x2e\\\n\\x41\\x54\\xc4\\xcd\\x4a\\xae\\xb0\\xe3\\xdf\\x4c\\x2b\\xbf\\x10\\xe4\\x86\\x6a\\\n\\x83\\x75\\x24\\x4c\\x2e\\x2e\\xb3\\xf1\\xc8\\xc5\\x8a\\xd7\\x3a\\xc5\\x3d\\x4b\\\n\\xd7\\x0d\\x56\\x21\\x29\\x7b\\xdc\\x1f\\x7b\\xb8\\xbc\\x39\\xef\\xa6\\x8c\\xb6\\\n\\x26\\xda\\x11\\x74\\x14\\x92\\x84\\xe2\\x53\\x5a\\x0a\\xec\\xc1\\x49\\x46\\x34\\\n\\xa3\\x8f\\x48\\x20\\xbd\\x33\\x8b\\x86\\x5a\\x6f\\x16\\x63\\x90\\x7e\\x71\\x3c\\\n\\xeb\\x12\\x18\\x35\\x06\\x30\\x2d\\x49\\x40\\xba\\x52\\xa2\\xdb\\x9b\\xef\\x12\\\n\\xcf\\xcb\\xbc\\xd3\\xbe\\x26\\x6c\\x2d\\x9f\\x64\\x27\\x0a\\x37\\x2e\\xfc\\x78\\\n\\xbc\\x6b\\xc2\\x96\\x48\\x58\\x64\\x83\\xf3\\x0d\\xce\\xd8\\xe3\\xd3\\xc7\\xb2\\\n\\xf3\\x95\\x68\\xb5\\xa9\\x05\\xc8\\x05\\xb8\\x63\\xde\\x3f\\x10\\x99\\x36\\xb9\\\n\\x96\\x55\\x24\\x24\\x27\\x61\\x87\\x26\\xeb\\xbb\\xcb\\x4c\\x68\\x7d\\x2f\\x2a\\\n\\xd2\\xf2\\x99\\x5a\\xcb\\xc4\\xe3\\x88\\x39\\x45\\x9f\\x45\\xe9\\x65\\xcd\\x42\\\n\\x2d\\x23\\xe1\\x13\\xb7\\xda\\xf0\\x6f\\x58\\xb5\\xe8\\x5d\\x45\\x99\\x4a\\x49\\\n\\xc8\\x50\\x0c\\xf1\\xc3\\xaf\\x18\\x43\\x84\\x80\\xa2\\xcd\\x42\\x33\\xfc\\x42\\\n\\x4b\\x3b\\x75\\xc2\\x27\\x4c\\x21\\x2e\\x5d\\xab\\x99\\xdd\\xce\\xb1\\x36\\x65\\\n\\x76\\x54\\x6b\\xb9\\xbc\\xb8\\xf8\\x01\\x8f\\x18\\x4c\\xc2\\xa9\\xe4\\x1d\\xfe\\\n\\x99\\xbe\\x2e\\x73\\xac\\x4b\\x48\\x09\\x07\\x86\\xff\\x00\\xa7\\x59\\x41\\xbb\\\n\\xc3\\x7e\\x30\\x60\\x2d\\x49\\x14\\xf5\\x31\\x6e\\xb6\\x2e\\x54\\xbb\\xa9\\x72\\\n\\xb5\\x1e\\x64\\x0d\\xf0\\xa9\\xd3\\x0b\\x2a\\xe4\\xc2\\x6f\\x0a\\xaa\\x52\\x48\\\n\\xad\\x40\\x2c\\x29\\x93\\x73\\xe3\\x08\\x4c\\xcc\\x5d\\x3c\\x7a\\x2e\\x04\\x29\\\n\\x2b\\x36\\x89\\x74\\x0d\\xb5\\x56\\xa8\\x17\\x53\\xea\\x7a\\xc2\\x2c\\x20\\x3c\\\n\\xbb\\xc5\\xc5\\x78\\x27\\x15\\x1c\\xf8\\xc4\\x89\\x29\\x9b\\x21\\x06\\x98\\x78\\\n\\x72\\xe8\\xf7\\x08\\x45\\x9d\\x09\\x0c\\x90\\xc7\\x07\\xc1\\xfa\\xe1\\x13\\x65\\\n\\xea\\xda\\xaf\\x7a\\xb1\\xba\\x27\\x2c\\xa0\\x53\\x8f\\x3e\\xba\\xe4\\xa9\\xce\\\n\\x97\\xe1\\xd0\\xfc\\x41\\x98\\x5f\\x1e\\x3d\\x1c\\x6b\\x08\\x9b\\xb3\\x8e\\xfd\\\n\\xcf\\x1a\\xc3\\xbf\\xcb\\xf1\\x13\\x4d\\x09\\x7a\\x9e\\xe3\\xdd\\x09\\x9c\\xa5\\\n\\x28\\x82\\xe5\\xab\\xe8\\xf0\\x85\\xb1\\xe0\\xdd\\x1f\\xc4\\x22\\x63\\xe0\\x70\\\n\\xdd\\xf8\\x8b\\x39\\x74\\xbf\\x1f\\xbc\\x59\\xc0\\x53\\x0a\\x60\\x7e\\x90\\xa3\\\n\\x77\\x0a\\xc2\\xe5\\xb8\\x76\\xca\\x2d\\xb2\\xfe\\x02\\xe9\\xbf\\x2e\\x11\\xa4\\\n\\x25\\xd6\\x63\\xd3\\x9e\\x3c\\x7c\\x70\\x89\\xcc\\xc1\\xf7\\x78\\xb1\\x10\\x6d\\\n\\xa5\\x26\\xe6\\xdb\\xa7\\x67\\xe5\\x62\\xd1\\x67\\x9c\\x67\\x25\\x58\\xde\\x4a\\\n\\x93\\xb9\\xc3\\x83\\xb8\\xc4\\xf0\\x6e\\xac\\x91\\xb5\\xf1\\x05\\x28\\x92\\x97\\\n\\xff\\x00\\xc8\\x0c\\x70\\xcf\\x9c\\x3e\\xec\\x29\\x5e\\x30\\x99\\xe2\\x49\\x49\\\n\\xc9\\x5b\\x39\\x16\\x2a\\xe3\\xdc\\x0f\\x0d\\xd0\\x2f\\xae\\x52\\x2f\\x56\\xae\\\n\\xd4\\x2e\\x92\\xd5\\x2d\\x87\\x8f\\x08\\xd1\\x8d\\xad\\xb3\\x9c\\x40\\xb4\\xca\\\n\\x7b\\xa2\\xf7\\xcc\\x8f\\xe3\\xca\\x3d\\xda\\x4d\\xa2\\x49\\x0a\\x45\\x4f\\x06\\\n\\xeb\\xca\\x34\\xef\\xb2\\xc2\\x7d\\xe9\\xa8\\x0a\\x97\\x78\\xa4\\xec\\x24\\x9a\\\n\\x8c\\xd4\\x90\\xf8\\xf9\\x63\\x8c\\x7f\\xe9\\x39\\x9e\\xe7\\x2c\\xa8\\xa8\\x8d\\\n\\x9c\\x6f\\x5e\\x6b\\xaa\\x4b\\x9c\\xeb\\x56\\xc9\\xaa\\x31\\x89\\xda\\x39\\x76\\\n\\x3b\\xb2\\xee\\xac\\xd0\\x25\\x37\\x50\\xb3\\x80\\xe4\\x40\\x14\\xc4\\x90\\xe6\\\n\\x90\\x12\\xaf\\xe2\\xbf\\xf6\\x98\\x12\\xe6\\x7f\\xf1\\xcc\\x62\\xdf\\xf2\\xd7\\\n\\x51\\xbf\\x08\\x5d\\x9a\\x6c\\xf4\\x14\\xa6\\x5c\\xd2\\xc6\\xb7\\x50\\xb2\\x45\\\n\\xde\\x49\\xfd\\xc5\\x97\\x42\\x2e\\x6b\\x29\\x52\\xe6\\x61\\x89\\x96\\xb7\\x7c\\\n\\xef\\x24\\x81\\x87\\x96\\xf8\\xd1\\xf6\\x0d\\x3b\\x60\\x9e\\x00\\x5a\\xd5\\x2d\\\n\\x4a\\x74\\x6c\\xf6\\x52\\xf4\\xa8\\x19\\x02\\xc1\\x26\\x2c\\x86\\xd2\\xab\\x35\\\n\\xeb\\x51\\x05\\x61\\x82\\x4f\\x0b\\xb5\\x71\\x96\\xd7\\xdf\\x95\\x82\\xce\\x99\\\n\\xc8\\x2a\\x53\\x53\\x7c\\x5a\\x43\\x2c\\xa0\\x54\\x7e\\xc4\\x69\\x0d\\x25\\x2e\\\n\\xc8\\x85\\x82\\x2a\\x9a\\x00\\x4b\\x3b\\x63\\xe3\\x96\\xf8\\x5e\\x9c\\x9c\\xa5\\\n\\x12\\x25\\xb8\\x26\\x8c\\x48\\xa6\\xea\\x03\\xeb\\x0a\\x05\\xaf\\x71\\x8b\\x5c\\\n\\xbd\\x62\\x49\\xcc\\xa1\\x8f\\x3a\\xf9\\xc2\\x24\\xa2\\x41\\x00\\x06\\xed\\xb0\\\n\\xfe\\xe2\\x9f\\x3c\\xfe\\xef\\x1a\\x27\\x49\\x4d\\xd1\\x73\\x89\\x1d\\x97\\xc7\\\n\\xcf\\xc6\\xa3\\x98\\x8b\\x16\\x9f\\x9d\\x6d\\x90\\x8b\\xae\\xe2\\x5a\\x1f\\xbd\\\n\\x39\\xf5\\xca\\x27\\x5b\\x55\\xdb\\x99\\x4b\\xa0\\x8a\\xfe\\x78\\xc5\\xb3\\x4f\\\n\\x4b\\x4a\\xdd\\x2a\\x1b\\x3f\\xae\\xba\\x31\\x33\\x4f\\x2a\\x6d\\x07\\x4f\\x13\\\n\\x26\\x5e\\x98\\xa5\\xb7\\xf5\\x16\\x4b\\x73\\xeb\\xac\\x61\\x0a\\x09\\x77\\xeb\\\n\\x7b\\xc5\\xa5\\x42\\x63\\x23\\x1b\\xca\\x03\\xc6\\x94\\x6c\\xeb\\xf9\\x84\\xd8\\\n\\x6e\\xd4\\x87\\xa5\\x00\\x27\\x1d\\xd1\\x27\\x47\\x2a\\x74\\xc5\\x2f\\x56\\xca\\\n\\x70\\x02\\x71\\xdc\\x97\\x51\\x6a\\x80\\x70\\xe1\\xc6\\x06\\x84\\x9c\\x89\\x41\\\n\\x69\\x96\\xa2\\xa3\\x8b\\x01\\x5e\\x2c\\x3e\\xb1\\x3f\\x44\\xda\\x12\\x02\\x94\\\n\\x85\\x8c\\xcb\\x02\\x5b\\x7f\\xd5\\xfc\\xa2\\x5d\\x91\\x06\\xaf\\x96\\x40\\xbf\\\n\\x3e\\x71\\x68\\xb0\\xea\\xac\\x66\\xd2\\xcc\\x2b\\x96\\x0d\\x8c\\x2a\\x6a\\x14\\\n\\xb5\\xa9\\xd4\\x08\\x37\\x76\\x70\\xde\\x4a\\x6b\\xc0\\x03\\x85\\x79\\x42\\xa7\\\n\\xab\\xe5\\xbe\\xd9\\xb9\\xc7\\xbe\\xf7\\x4d\\x05\\x05\\x25\\xfc\\x58\\x61\\xb9\\\n\\xeb\\x58\\x72\\xc5\\x85\\x12\\x5d\\xab\\xb4\\x42\\x69\\x57\\x73\\x56\\x71\\xba\\\n\\x13\\x6e\\x08\\x01\\x04\\x9b\\xc5\\x61\\xa9\\x56\\xbc\\xe0\\x78\\x00\\xe7\\x8b\\\n\\x6e\\x8d\\x1f\\x6b\\x4e\\xa0\\x6d\\x56\\xe8\\x27\\x76\\x5f\\x78\\x44\\xd0\\x40\\\n\\xe4\\x0f\\x94\\x2b\\xe2\\x26\\x99\\x73\\xdd\\x0b\\x4b\\x2f\\xbf\\xaf\\xb4\\x4f\\\n\\xcb\\xbe\\x04\\x2f\\x2e\\xb9\\xbc\\x01\\x51\\xc2\\x25\\x0f\\xfc\\xbe\\x91\\x6d\\\n\\x14\\xe4\\xdf\\x48\\x93\\xd8\\xff\\x00\\x0b\\x24\\xb6\\xeb\\xd7\\xaf\\x18\\x93\\\n\\x20\\x90\\x08\\xdf\\x16\\x79\\x17\\x14\\x14\\x4e\\x44\\x7f\\x85\\xf1\\x16\\xb2\\\n\\xf2\\xcf\\x0f\\xcc\\x69\\x71\\xf1\\x4d\\x01\\xed\\x44\\xfc\\x98\\x35\\x1f\\xcc\\\n\\x61\\xce\\x2f\\xa1\\x6b\\x2c\\x31\\x51\\x39\\xef\\x2d\\x90\\xdf\\x12\\x66\\x2a\\\n\\x40\\x55\\xca\\xba\\x82\\x95\\x9a\\xb9\\x07\\xc7\\x80\\xa4\\x1b\\x5e\\xb1\\x25\\\n\\x35\\x75\\x0d\\xc3\\xe9\\x13\\x52\\x93\\xe0\\x93\\xea\\xfe\\x63\\xd6\\x27\\xa0\\\n\\x28\\x20\\x0d\\xe0\\xf9\\xa7\\xae\\x31\\x24\\x04\\xd9\\xd6\\xaf\\xed\\x29\\xff\\\n\\x00\\xa7\\xbb\\xac\\x23\\xd8\\xeb\\x2f\\xce\\x6a\\xad\\x65\\xec\\xc5\\x02\\x9f\\\n\\xc0\\x0e\\xf3\\x8e\\x71\\xad\\x1c\\x3c\\xfe\\xd1\\x7d\\xc9\\x14\\xfd\\x57\\xaa\\\n\\x47\\x68\\xdd\\xc6\\x8f\\x13\\xac\\x68\\x5a\\x48\\xb8\\xef\\x8a\\x8f\\x0f\\x31\\\n\\x12\\xf4\\x0d\\x94\\x9d\\x63\\xe1\\xbc\\xd0\\x75\\x84\\x5a\\x74\\x6c\\x85\\x25\\\n\\x2a\\xc4\\x24\\x01\\x4e\\x1c\\xb9\\xc2\\x64\\x59\\xe5\\x23\\xe1\\x01\\x7a\\x81\\\n\\xeb\\x57\\xcc\\xf3\\xc6\\x24\\xd0\\x46\\xac\\xf5\\xfb\\x83\\x2d\\xcd\\xdc\\xe3\\\n\\x59\\xa8\\x94\\xb4\\xe6\\x47\\xe6\\x2d\\x56\\xc1\\x22\\x51\\x9c\\xad\\xd8\\xc6\\\n\\x97\\xb6\\x8b\\x6c\\xeb\\xc0\\x3a\\x42\\x8d\\x1a\\xae\\x7e\\x9d\\x6e\\x89\\x77\\\n\\xae\\xd1\\xfb\\x9e\\x34\\x84\\xe9\\x94\\x16\\x45\\xa5\\x38\\xd5\\x42\\xf5\\x77\\\n\\x17\\xf1\\xa0\\x89\\x0a\\x9d\\x7a\\xec\\xe5\\x25\\x49\\x23\\x21\\x75\\xb1\\x7d\\\n\\xf8\\xf7\\x7d\\xad\\xc8\\x99\\xad\\x97\\xaa\\x00\\x84\\x92\\x4b\\xe4\\xe1\\xbf\\\n\\x6f\\x12\\xcc\\x9b\\x87\\x5f\\x40\\x2a\\xe2\\x9d\\x75\\x86\\x5e\\xcd\\xcb\\xb3\\\n\\xff\\x00\\x96\\x0b\\x4c\\xb9\\xc8\\x72\\x91\\x52\\xc4\\x06\\x0c\\xdd\\xdc\\x5a\\\n\\x3d\\xa0\\xd2\\x29\\x94\\x65\\x4b\\x13\\x12\\xa1\\x3a\\x5c\\xc2\\xab\\xb9\\x10\\\n\\xa0\\x1a\\x98\\x3b\\xf9\\x46\\xad\\x33\\x66\\xba\\x35\\x84\\x12\\x7e\\x62\\x43\\\n\\xe3\\xbe\\x8d\\x9c\\x4a\\xb3\\xa9\\x35\\xbb\\x4a\\x6f\\x60\\x3c\\x22\\xfc\\x9b\\\n\\xd7\\x6e\\xb2\\xc5\\x0f\\x31\\x8b\\x72\\xdd\\x0d\\x7a\\xaf\\x87\\x94\\x6a\\x50\\\n\\x92\\x0b\\x3b\\x10\\xcc\\x78\\xc0\\xb9\\xaa\\xcb\\x58\\x1d\\xb0\\xa8\\xeb\\x18\\\n\\xd1\\xd3\\x66\\x26\\x73\\x2e\\xee\\x24\\x76\\x71\\xc2\\xbe\\x1d\\x03\\x12\\xad\\\n\\xb2\\xc4\\xb4\\x80\\x50\\xa3\\x75\\x34\\xe2\\xd5\\xef\\x11\\x36\\xd4\\x95\\x02\\\n\\x36\\x18\\xd0\\x80\\x06\\x06\\x9e\\x91\\x2e\\xca\\x04\\xc2\\x12\\x9d\\x8a\\xe2\\\n\\xc4\\xe3\\x4a\\xb3\\xf7\\xee\\x6c\\xe3\\x4f\\x49\\xd5\\xe8\\x4b\\xb2\\x43\\x28\\\n\\x5f\\x35\\xad\\x4d\\x4e\\x5b\\xf7\\xc4\\xbd\\x69\\x44\\xc1\\x3d\\x8a\\xc4\\xc2\\\n\\x28\\xec\\x19\\xea\\x5c\\x0c\\xd9\\xcf\\x11\\x0a\\x48\\x4f\\x0c\\x71\\xca\\x24\\\n\\xcf\\xb5\\xad\\xd4\\xba\\x07\\x01\\x32\\xee\\xa7\\x1d\\xe4\\x9c\\xce\\x14\\xa0\\\n\\xe3\\x84\\x0f\\x78\\x9a\\xf2\\x65\\x2a\\x59\\x98\\xa2\\xfd\\x9e\\xce\\x45\\x23\\\n\\x7a\\x98\\x07\\x66\\xcb\\x0e\\xd1\\x93\\xa3\\x67\\x4a\\x9e\\x8f\\x7a\\x58\\x58\\\n\\x63\\xb0\\x94\\xdc\\x24\\x86\\xba\\xa2\\x5c\\x8d\\x9e\\x00\\x53\\x7c\\x48\\x9d\\\n\\x35\\x09\\x64\\xa0\\xdc\\x07\\x12\\xea\\x27\\x3b\\xa9\\xa8\\x24\\xf1\\x34\\x48\\\n\\x72\\x4b\\x52\\x2c\\x4b\\x13\\x25\\xcb\\xbd\\x8d\\xc4\\xb8\\x1f\\x29\\x61\\x48\\\n\\x08\\x40\\x96\\x5b\\x17\\x1b\\xf1\\xfa\\x40\\xb3\\x09\\xa9\\x52\\xab\\x40\\x48\\\n\\xef\\x8b\\x45\\x90\\x8f\\x94\\xc2\\xe5\\x25\\x2e\\x2e\\x90\\x41\\x6c\\x61\\x55\\\n\\xc0\\x61\\x00\\x54\\x71\\x50\\xf5\\x80\\x2e\\xe1\\xcf\\xe9\\x13\\x85\\xf2\\x42\\\n\\xaa\\x3a\\xfb\\x42\\x40\\x14\\x10\\x89\\x77\\xaa\\x7c\\xba\\xca\\x2c\\xb5\\x5d\\\n\\x13\\xb3\\x16\\x69\\x58\\x30\\xd9\\xa1\\xef\\xe7\\xba\\x14\\x02\\x4b\\x0c\\x38\\\n\\xc5\\xe1\\xbe\\x08\\x4b\\x7e\\x78\\x45\\xa5\\x43\\x56\\x63\\x4c\\x4c\\x50\\x9a\\\n\\xa2\\x92\\x97\\x7c\\xc5\\x31\\x30\\xbb\\xea\\x20\\xfa\\x0e\\xbe\\xd1\\x30\\x14\\\n\\x3b\\x53\\x6c\\xbe\\x79\\xa8\\xb7\\x8f\\x86\\x10\\x99\\xab\\xab\\x1d\\xd5\\xf1\\\n\\xc7\\xc2\\x09\\x98\\x14\\x54\\x15\\x50\\x41\\xe1\\xe1\\x85\\x7a\\xac\\x49\\x5a\\\n\\xe6\\x00\\xec\\xee\\x41\\x61\\x46\\x67\\x0d\\x13\\xa5\\x6d\\x04\\xdd\\x34\\x50\\\n\\xf5\\x1f\\x68\\xb1\\xc8\\xd6\\xae\\x4d\\x9c\\x05\\xdd\\x99\\x7b\\x5a\\x1d\\x85\\\n\\xd5\\x61\\xe4\\xf5\\x03\\x8e\\x51\\xa0\\xf4\\x55\\x9e\\xc1\\x20\\x6a\\xc2\\xc5\\\n\\xe0\\x3b\\x4b\\x2a\\x15\\xdc\\xfb\\xf8\\x45\\xc1\\xd1\\x30\\x68\\xa2\\x9e\\x10\\\n\\x9e\\x1b\\xbe\\xd1\\x7d\\x43\\xae\\xbe\\xf0\\x9d\\x91\\x74\\x12\\xdc\\xeb\\x0c\\\n\\xd2\\xca\\x2a\\xd5\\x35\\xa9\\x73\\xc7\\xba\\x2e\\x04\\x28\\xb6\\xfc\\xc9\\x84\\\n\\xa9\\x55\\x39\\x27\\x95\\x7a\\xe1\\x02\\x62\\x98\\x42\\x17\\xf3\\x1e\\xd0\\xc2\\\n\\x27\\x28\\xcc\\xc7\\xca\\x91\\xed\\x04\\xe2\\x9b\\x32\\x92\\x08\\x61\\x5f\\x3c\\\n\\x07\\x98\\x84\\xad\\xcb\\xef\\xeb\\x18\\x4c\\xc4\\x81\\x8a\\xbc\\x4c\\x4a\\x2c\\\n\\x0d\\xf2\\xe7\\x86\\x1c\\x38\\xd7\\xee\\x22\\x50\\x5a\\x66\\x15\\x28\\xa7\\x57\\\n\\x8d\\x31\\xc7\\xd5\\xbb\\xe2\\x74\\xa0\\xa9\\x66\\x72\\x54\\x82\\x28\\x19\\xf6\\\n\\x99\\xf9\\x74\\x21\\xb5\\xc7\\x54\\x84\\x5e\\x77\\x15\\x1b\\x38\\x79\\xbc\\x6a\\\n\\xa5\\xfb\\x3f\\xa2\\x8c\\xb9\\xd3\\xa6\\x27\\x5a\\x9d\\x68\\xd5\\x9b\\xc9\\x01\\\n\\x42\\xf6\\x25\\x99\\x83\\x0f\\x2c\\xa2\\x4c\\xb9\\xd6\\xc9\\xb2\\x49\\x54\\xc9\\\n\\x88\\x98\\x0a\\xd2\\xa5\\x27\\xe5\\x26\\x89\\x77\\xcd\\xf2\\x11\\xa3\\xf4\\x34\\\n\\xb4\\xa5\\x05\\x68\\x18\\x0c\\xab\\x87\\x2e\\x51\\x2f\\x44\\x48\\x35\\xd9\\xff\\\n\\x00\\xa8\\xb4\\x69\\x0d\\x09\\x2e\\x5e\\xb2\\x62\\x4c\\xb7\\x24\\x9a\\x2b\\xf1\\\n\\xe4\\xd1\\xee\\xd3\\x42\\xa6\\x25\\x83\\x06\\x62\\xf4\\xcd\\xfe\\x9e\\x06\\x1c\\\n\\x21\\x42\\xf3\\x96\\x20\\x9e\\x4f\\xf8\\x8b\\x3c\\xe7\\x9c\\x14\\xab\\xd7\\x5f\\\n\\xc1\\xab\\xd7\\x18\\x98\\x89\\x9e\\xf8\\xab\\x4c\\xa1\\xf0\\xe9\\x74\\x2b\\xb5\\\n\\x44\\xb6\\x03\\x0a\\x8f\\x0e\\x30\\x9b\\x64\\xcc\\x0b\\xa3\\x78\\x76\\xde\\xe4\\\n\\x1a\\x53\\xbb\\x3e\\xf8\\xb2\\x5a\\x81\\xd5\\x85\\x5e\\x3b\\x49\\x6c\\xc5\\x54\\\n\\xd8\\xbd\\x01\\xf4\\xa4\\x49\\x42\\x25\\x8c\\x2a\\x45\\x1a\\xbc\\xab\\x8e\\x11\\\n\\xa4\\x24\\x2e\\xd1\\x60\\x28\\x02\\xbb\\x4a\\x0f\\xcd\\xc7\\x97\\x84\\x69\\x2b\\\n\\x31\\xb1\\xda\\xd4\\x14\\x05\\xd7\\x2e\\xd5\\xa9\\xe6\\xd9\\x82\\xfc\\xc4\\x5a\\\n\\x2d\\xf2\\xd2\\xa5\\x21\\x94\\x6e\\x96\\xa0\\x15\\xdf\\x9e\\x54\\x07\\x32\\x70\\\n\\xa4\\x58\\x97\\x32\\xd3\\x3d\\x32\\xa5\\xc8\\x9d\\x79\\x6d\\xda\\x40\\x09\\x48\\\n\\xe7\\x56\\x07\\x7e\\x79\\x46\\x80\\xf6\\x68\\x26\\x4a\\xa6\\x5a\\x91\\x28\\xac\\\n\\xad\\xdd\\xdc\\xb5\\xd0\\xc3\\x0e\\xe8\\xd3\\x3a\\x36\\x60\\xb5\\xa0\\x20\\x20\\\n\\x48\\xad\\xf6\\x3b\\x4e\\xd4\\xcb\\x9f\\xaf\\x02\\xb9\\x17\\x5b\\x65\\x6d\\xd9\\\n\\x17\\x72\\xe3\\x95\\x77\\x9f\\x28\\xb1\\x4e\\x4b\\x84\\x80\\x45\\xd1\\x75\\x8b\\\n\\xe5\\xcf\\x33\\x89\\xe8\\xc4\\xb9\\xc0\\xa6\\xed\\x72\\xf2\\xeb\\xc2\\x2c\\x48\\\n\\x4d\\xcd\\xac\\xfa\\xeb\\x9c\\x4e\\xb0\\xde\\x17\\x80\\x4f\\xd6\\x2d\\x16\\x00\\\n\\x95\\x28\\xa8\\x76\\x8b\\xc4\\xfb\\x10\\x42\\x01\\x03\\x17\\xe7\\x40\\x22\\x6c\\\n\\x95\\x5f\\xdc\\x1c\\x79\\x43\\x44\\xd4\\x94\\x9b\\xd9\\x18\\x90\\x82\\xb7\\x3c\\\n\\x33\\xa4\\x59\\xac\\x93\\x26\\xd1\\x00\\x77\\xe1\\xe8\\x7b\\xa2\\xc3\\x61\\x42\\\n\\x06\\xda\\x36\\xf7\\xf4\\xd1\\x67\\x90\\x13\\x80\\xeb\\xce\\x2d\\x40\\x85\\x6e\\\n\\x8a\\xff\\x00\\x21\\xe3\\x05\\x6e\\x29\\x16\\xe5\\xea\\xa4\\xa9\\x4a\\x2c\\x1b\\\n\\xbe\\x34\\x89\\x13\\xaf\\x4d\\x07\\x61\\x35\\xfe\\xee\\x1c\\xe2\\xfa\\x77\\x2f\\\n\\xc3\\xaa\\xc5\\xa6\\x74\\xb4\\x28\\x85\\x05\\x76\\x9c\\x53\\x26\\xfc\\xf5\\x48\\\n\\x44\\xa5\\x5c\\x33\\x03\\x00\\x6b\\xc5\\xab\\xd7\\xac\\x26\\x51\\x98\\x82\\xa0\\\n\\xa0\\xc0\\x1c\\x69\\x1a\\x2e\\xcb\\x3a\\x71\\x4a\\x44\\xa5\\x37\\xf2\\x6d\\x8a\\\n\\x66\\xfb\\x95\\xe5\\x9c\\x7f\\xe9\\x9b\\x4a\\xb5\\x73\\x4a\\x64\\xdc\\x98\\xc6\\\n\\xf5\\xf2\\xe2\\x85\\xa9\\x77\\x96\\x71\\x63\\xf6\\x6a\\x6c\\xb5\\xc9\\x9a\\x81\\\n\\x2c\\x5c\\x53\\xcc\\x2a\\x3f\\xdc\\xaa\\x26\\x9d\\x9b\\xb7\\x58\\x78\\xb9\\x73\\\n\\x13\\x8a\\x13\\x2a\\x5a\\x11\\x42\\x90\\x1e\\x9b\\xa2\\xf4\\x27\\x17\\xde\\x20\\\n\\x2c\\x06\\xc7\\xca\\x14\\xa1\\x43\\x5a\\xfd\\xa2\\xf0\\x80\\x92\\xb4\\x92\\x21\\\n\\x72\\xcb\\x93\\x4c\\x60\\xb0\\x43\\x02\\x38\\xc3\\x30\\x0f\\xba\\x2f\\x6e\\x85\\\n\\x5f\\x24\\xd4\\x47\\xb4\\x92\\xd5\\xee\\xaa\\x35\\xc0\\x95\\x78\\x60\\x1b\\xeb\\\n\\x47\\x68\\x4a\\x75\\x61\\x05\\x4a\\x1b\\x60\\x16\\x05\\xcb\\x7f\\x75\\x28\\x4c\\\n\\x4b\\x94\\x56\\x80\\x5d\\x23\\x9a\\x80\\x31\\x2b\\xd8\\xe9\\xd8\\x5d\\x54\\x5b\\\n\\xf4\\x0a\\xac\\x8a\\x4c\\x83\\xb2\\xa5\\x25\\x2a\\xba\\x71\\x65\\x12\\x37\\xe6\\\n\\xcd\\xb9\\xf1\\x89\\x5e\\xce\\xcf\\xd4\\x99\\x8e\\x6e\\x6e\\xdf\\xe3\\xcf\\xaa\\\n\\xc6\\x8d\\xd1\\x12\\xe5\\xac\\xeb\\x03\\xf5\\xd7\\xeb\\x09\\xf6\\x54\\xe9\\x39\\\n\\xe9\\x90\\xa1\\x79\\x28\\x21\\x00\\x1f\\xed\\x37\\x45\\x33\\xc3\\xaa\\xc5\\x9b\\\n\\xd9\\xcb\\x3c\\x91\\x25\\x45\\x29\\xa2\\x29\\x86\\xf7\\x6e\\xbf\\x56\\xd9\\xd6\\\n\\x7b\\x0a\\x5d\\xbb\\x21\\xfb\\xb0\\xeb\\xa7\\xb6\\x69\\xc2\\x54\\xd2\\x0b\\xaf\\\n\\x1a\\x1c\\x38\\x9f\\xd5\\x72\\x83\\xa5\\x2d\\x0a\\x2a\\xf7\\x81\\xb2\\xfc\\x79\\\n\\xbb\\xe6\\x3b\\xc7\\xd2\\x15\\x3e\\x5a\\xe5\\xa0\\xa3\\x8b\\xfe\\xfa\\xa4\\x4c\\\n\\x72\\x78\\x37\\xde\\x24\\x86\\x55\\x5f\\x3f\\x48\\x33\\x9a\\x9b\\xb8\\xfe\\x22\\\n\\xd3\\x38\\x5d\\x0e\\xdd\\xaf\\x98\\xfa\\x66\\x0f\\x7d\\x7c\\xa2\\xc2\\x52\\x54\\\n\\x9a\\xb1\\xbc\\x08\\x0e\\xf5\\x7a\\x78\\x7a\\x88\\xb3\\xe9\\x2d\\x48\\xdb\\x22\\\n\\x9b\\xab\\xf5\\xf4\\x85\\xfb\\x51\\x64\\x54\\xd5\\xd9\\x6f\\x26\\xf8\\x48\\xa7\\\n\\x31\\xd6\\x7e\\xb1\\xa5\\x64\\x26\\x7c\\xfd\\x70\\x72\\x16\\xae\\x19\\xe4\\xf9\\\n\\x0e\\xff\\x00\\x4a\\x59\\xfd\\x9c\\x96\\xb1\\x7c\\xa1\\x13\\x09\\xa9\\xbd\\x80\\\n\\xc0\\x71\\x7c\\x3a\\x26\\x2c\\x16\\x0b\\x15\\xd0\\xb2\\x10\\x86\\xf9\\x6e\\x80\\\n\\x97\\xc0\\xd4\\x86\\xe6\\xdf\\x48\\xf7\\xc4\\x00\\x75\\x24\\x5d\\x41\\x29\\x74\\\n\\xf6\\x54\\xd9\\x8e\\xec\\xf7\\xc6\\xa1\\x36\\xbd\\xb3\\xe9\\xd7\\x7f\\xe6\\x26\\\n\\x68\\xc4\\x05\\x55\\x22\\x8f\\xd7\\x5b\\xab\\x13\\xac\\x69\\x90\\x2f\\x8a\\x1a\\\n\\x9c\\xb8\\xe3\\xf8\\x6a\\xd4\\xbc\\x58\\xd7\\x7e\\xff\\x00\\xf6\\x90\\x1b\\xce\\\n\\x2c\\xd3\\xae\\xa9\\x22\\xb5\\xfb\\x44\\x9d\\xb9\\x55\\xdd\\xfb\\x8b\\x4d\\x94\\\n\\x10\\x0b\\x75\\xd7\\x58\\x42\\xec\\x41\\x69\\x40\\xc7\\x18\\xd2\\xf6\\x31\\x67\\\n\\x55\\x07\\xf8\\x2a\\x5d\\xf0\\x06\\xfc\\x23\\x47\\xe8\\xe3\\x39\\x92\\x3f\\x8b\\\n\\xfa\\x75\\xe7\\x16\\x7b\\x02\\x2c\\x88\\x0e\\x32\\x89\\x28\\x95\\xbb\\x74\\x14\\\n\\x00\\xea\\x4e\\x17\\x77\\x45\\xba\\x63\\x4c\\x23\\x8c\\x6b\\x06\\x5d\\x79\\xc6\\\n\\xb6\\x34\\x94\\xa5\\x4e\\xb0\\x4d\\x5a\\x4e\\x0e\\x9d\\xd9\\x3b\\xf7\\x42\\x91\\\n\\x34\\x2a\\x62\\x54\\xa2\\x52\\x49\\xde\\x3e\\x6c\\x37\\x77\\x46\\xa8\\x74\\x7f\\\n\\x11\\x6b\\x93\\x79\\x58\\x3d\\x71\\x1d\\x74\\x38\\xe1\\x31\\x42\\x5c\\xa4\\xa3\\\n\\x35\\x0a\\x0c\\xdf\\x0f\\xaf\\x4d\\x1a\\x0f\\xd9\\xc9\\xd6\\xe5\\x20\\x25\\xc0\\\n\\x98\\xa6\\x6a\\xd5\\xeb\\xc7\\xc4\\xc6\\x8c\\xd1\\x56\\x4b\\x15\\x93\\xdd\\xe6\\\n\\xcb\\x41\\x9e\\xcc\\xed\\xc2\\x82\\xbd\\x16\\x8d\\x52\\x11\\x26\\x5c\\xa6\\x7d\\\n\\x5f\\x0e\\xfe\\xbc\\xe0\\x5d\\xb8\\x00\\x0c\\x41\\x22\\x15\\xdb\\x14\\x1d\\x18\\\n\\x28\\x4f\\x1f\\x18\\x12\\xc3\\x7d\\xc5\\x63\\x56\\x37\\x79\\x75\\xd7\\x38\\xb9\\\n\\xd3\\x7e\\x62\\xe0\\xe1\\xe1\\x08\\x0c\\x83\\xdf\\xe9\\x0b\\xab\\x88\\xd5\\x8e\\\n\\x1e\\x10\\xae\\xcf\\x5b\\xbf\\xc0\\xd2\\x34\\xb4\\x84\\xce\\xb3\\x2c\\x10\\xee\\\n\\x92\\x2b\\xf6\\x8b\\x3e\\x88\\x9b\\x68\\x9f\\x3c\\x5e\\x29\\x97\\x2e\\x6a\\x90\\\n\\x8d\\xe4\\x03\\x43\\xf9\\xfa\\x47\\xf9\\x44\\xd4\\x32\\x6f\\x5e\\xa6\\x35\\x1e\\\n\\x8f\\x1f\\x13\\xff\\x00\\x95\\x3d\\x77\\xc6\\x94\\xd1\\xe8\\xb7\\xcb\\xda\\x5a\\\n\\x4c\\xf4\\x83\\x74\\xf0\\xdc\\x73\\x63\\xf4\\x78\\xb2\\xcf\\xf7\\x50\\x6c\\x8a\\\n\\xc7\\x68\\x07\\x6f\\x97\\xeb\\x91\\x1d\\xf0\\x55\\x72\\x7d\\xee\\x27\\x96\\x2f\\\n\\x84\\x68\\xe4\\x0d\\x71\\x99\\xbd\\x44\\x8f\\x17\\xeb\\x18\\x5d\\xa1\\x12\\xe5\\\n\\x5f\\x5a\\xb0\\x14\\x0f\\x89\\xeb\\xba\\x34\\xe6\\x93\\x33\\xed\\x3b\\x20\\x94\\\n\\xa1\\x4c\\xa5\\x03\\x43\\x90\\x1b\\x85\\x4f\\x58\\x44\\xc1\\xf0\\xff\\x00\\xbe\\\n\\x60\\x6a\\x63\\x5f\\xa8\\xe8\\x44\\xc4\\x19\\x32\\xca\\x52\\xb3\\x78\\x02\\x5d\\\n\\x55\\x20\\x9a\\xb1\\xca\\x94\\xa4\\x4b\\xb5\\xe9\\x09\\xc9\\x96\\x15\\x28\\xcb\\\n\\x4c\\xb7\\x18\\xe4\\xe1\\x9d\\xa8\\x49\\x48\\xc8\\x9c\\xc5\\x71\\x84\\xa8\\x00\\\n\\xeb\\xc8\\xe1\\xcb\\x9b\\xe3\\xe1\\x1a\\xd4\\xe3\\xff\\x00\\xd8\\x34\\x4c\\x9b\\\n\\x89\\xc7\\x26\\x07\\xae\\xb1\\x8b\\xc2\\xf1\\x52\\xf2\\xab\\x3f\\x5e\\x58\\xc5\\\n\\x96\\x68\\x52\\xe5\\x0c\\x2f\\x29\\x22\\x9f\\xdc\\xa0\\x93\\xdd\\x5e\\xec\\x37\\\n\\xc6\\x90\\x08\\xb1\\x59\\xd4\\x9b\\xff\\x00\\x29\\x03\\x7d\\xe3\\x83\\x75\\xe9\\\n\\x0b\\x44\\xd5\\x5a\\x15\\x35\\x29\\x28\\x38\\x8d\\x9a\\xa5\\x39\\x6d\\x36\\x2c\\\n\\x2a\\x09\\xf1\\xc4\\xd9\\x6d\\xaa\\x90\\x55\\x78\\xbe\\xcd\\xd2\\xa5\\xa8\\x2a\\\n\\xa3\\x83\\x52\\xb8\\x3e\\x19\\x88\\xd0\\x8b\\x4d\\xad\\xef\\xcc\\xcd\\xb1\\xa7\\\n\\xa5\\x2b\\x87\\x2c\\xe9\\x08\\xb3\\xa9\\xdb\\x69\\x9e\\x9f\\x7e\\xb9\\x52\\x3d\\\n\\xd4\\x8d\\xa6\\x20\\x8e\\xb8\\xc4\\xbb\\x5c\\xd9\\x4a\\x09\\x09\\x2d\\xd6\\x5d\\\n\\xd1\\x33\\x48\\x4d\\x25\\x98\\xe1\\x90\\xc7\\xa6\\x85\\xda\\x54\\x13\\xb4\\x2a\\\n\\xbd\\xe1\\xfa\\xe3\\x16\\x70\\xa0\\x66\\x29\\x41\\xaf\\x97\\xfa\\x42\\x71\\xef\\\n\\x8d\\x1f\\x6a\\x4d\\xc0\\x8e\\xb7\\x45\\xa3\\xb0\\x39\\x0f\\xa4\\x48\\x00\\x87\\\n\\x27\\x0c\\x22\\xdf\\x65\\x45\\xa6\\x54\\xd6\\x62\\x75\\x6a\\xe7\\x83\\x67\\x13\\\n\\x25\\x7b\\xb2\\xae\\x11\\x5c\\x3a\\xeb\\x84\\x4b\\xbd\\x36\\x6a\\x64\\xb6\\x07\\\n\\xf3\\x1a\\x3a\\xcc\\x9b\\x35\\x99\\x2a\\x6d\\xa2\\x00\\x3e\\xbf\\x4e\\xf8\\x09\\\n\\xbf\\xf9\\x10\\x53\\x73\\xee\\xd1\\x68\\xb5\\x84\\xcb\\x28\\x3b\\xa2\\xd3\\x38\\\n\\x2a\\x69\\xdd\\x12\\xd6\\x19\\xa1\\xf1\\xe7\\x08\\x9a\\xa9\\x65\\xa8\\x52\\x71\\\n\\xcc\\x45\\xaf\\x46\\x59\\x2d\\xa8\\x52\\xa6\\xa5\\x90\\x6e\\xbe\\xad\\x92\\x71\\\n\\xff\\x00\\x49\\xa5\\x6a\\x3f\\x30\\xbf\\x67\\xb4\\x5e\\xa7\\x15\\x1a\\x77\\xfa\\\n\\x46\\x91\\x97\\x69\\xb0\\xdb\\x27\\xcb\\xb0\\xca\\x2b\\x96\\xab\\x44\\xc4\\x8d\\\n\\x97\\x00\\x5f\\xde\\x30\\xfc\\x60\\x63\\x40\\xfb\\x30\\x6d\\x12\\xd5\\x68\\x9c\\\n\\x1a\\x62\\xb5\\x67\\x07\\x6a\\x1c\\x01\\xa7\\x23\\x5e\\x31\\x63\\xb2\\xa6\\xc6\\\n\\x11\\x2d\\x21\\xff\\x00\\xb9\\x87\\xaf\\xf8\\x4c\\x50\\x43\\x15\\x60\\xdf\\x7c\\\n\\x78\\x42\\xd4\\xe0\\x14\\x9e\\x9a\\x00\\xc1\\x81\\xc4\\x7f\\x80\\x58\\x01\\xa9\\\n\\xe3\\x0a\\x5d\\x29\\xbf\\x23\\x09\\x57\\xf8\\x4b\\x50\\xd5\\xdd\\xe2\\x60\\xa4\\\n\\x85\\x3b\\x53\\xcb\\xae\\xb9\\xff\\x00\\x82\\x91\\x7a\\xbc\\x3c\\xe1\\x2b\\xba\\\n\\xa0\\x93\\x91\\xfa\\x3d\\x22\\xdd\\x34\\x4c\\x4e\\xad\\x25\\x8e\\xfc\\xfa\\x11\\\n\\x2e\\xc8\\xad\\x58\\xba\\x30\\x19\\x41\\x55\\xc3\\x75\\xc8\\x6e\\x22\\x15\\xa6\\\n\\x2d\\xc0\\x7f\\xee\\x56\\x77\\xd4\\xfe\\x62\\xc9\\xed\\x0d\\xa2\\x4a\\x2f\\xcc\\\n\\x9a\\x14\\xbb\\xed\\xb6\\x49\\xd9\\x6a\\x6e\\x31\\xfe\\x62\\x2d\\x53\\x45\\xa9\\\n\\x4a\\x4e\\xb3\\x0b\\xa9\\xa2\\x00\\x38\\x96\\xa9\\xbd\\xb5\\xdf\\xba\\x82\\x35\\\n\\x72\\xa7\\xc9\\xbe\\xa5\\x10\\x59\\x98\\x37\\xd7\\x0e\\xb9\\xc5\\x9c\\x25\\x29\\\n\\x1a\\xb5\\x3b\\x01\\x8f\\xe2\\x34\\xb5\\xb1\\x65\\x1a\\xb4\\x90\\x13\\x71\\x58\\\n\\x76\\xaf\\x13\\xe4\\xde\\x3e\\x11\\x30\\x21\\x52\\x15\\x2e\\x63\\x01\\x9a\\xfe\\\n\\x7c\\x5f\\x1c\\x2b\\xc9\\x86\\x30\\x17\\xb4\\x2e\\x94\\x80\\xcc\\x1c\\xbd\\x37\\\n\\xd1\\xab\\x48\\x95\\x29\\x16\\x9b\\x60\\x0a\\x37\\x90\\xe0\\xcc\\x6c\\xbe\\x99\\\n\\x60\\x5e\\x26\\xd8\\xf4\\x75\\x9a\\xca\\x99\\x88\\x2a\\x2b\\x5a\\x6a\\x14\\x43\\\n\\x3a\\x78\\x01\\x9e\\x15\\xe3\\xbe\\x26\\xae\\x44\\xc5\\x4d\\x56\\x75\\xba\\x01\\\n\\x18\\xee\\x61\\xc4\\xfa\\xf0\\x70\\x5f\\x20\\xdd\\xf8\\xef\\xc7\\x28\\x98\\x4b\\\n\\x94\\xb0\\x0e\\xd8\\x78\\xf2\\x8b\\x51\\x20\\x25\\x29\\x0e\\xa5\\x10\\x6b\\x90\\\n\\x49\\x05\\xbb\\xc0\\xa0\\xe1\\x16\\x59\\x6b\\xd9\\x2d\\xf3\\x25\\x55\\x19\\x02\\\n\\x31\\x1f\\x5f\\x28\\xb4\\xb5\\xa8\\xbc\\xd7\\x2d\\x93\\xfa\\x67\\xe0\\x62\\xd7\\\n\\x78\\xf6\\x42\\x40\\x00\\x06\\xda\\x76\\x1c\\x41\\xf1\\x70\\xf0\\xc2\\x64\\xc2\\\n\\xe2\\xe5\\xdb\\xcf\\x74\\x35\\x1e\\xae\\x48\\x21\\x8e\\xe6\\xf4\\x8d\\x08\\xa4\\\n\\xfb\\xcd\\xd4\\x4c\\x98\\x2e\\xaa\\xa3\\x8d\\x31\\xa0\\xc3\\x2a\\x31\\x77\\x89\\\n\\x32\\x12\\x52\\x96\\x72\\xe9\\x1e\\x90\\x2c\\xca\\x2b\\xba\\x40\\xa8\\x7a\\x3f\\\n\\x1e\\xba\\x78\\x9b\\xa3\\xd2\\x9a\\xdc\\x1c\\xf8\\xe3\\x13\\x2c\\x72\\xb1\\x66\\\n\\x6f\\xd4\\x4c\\x90\\x26\\x29\\xee\\xd1\\x34\\xf0\\xdf\\x0a\\x4a\\x14\\x00\\x0e\\\n\\xe9\\xc6\\x2e\\x04\\x9a\\x3c\\x59\\xe6\\x19\\x4a\\xbe\\x2a\\x77\\x1c\\x3c\\x9a\\\n\\x10\\xb1\\x68\\x93\\x2c\\xab\\xb4\\x52\\x1c\\x0d\\xe7\\x2f\\x48\\x98\\xc9\\x48\\\n\\x09\\x38\\xe3\\x09\\x98\\x50\\x77\\xbe\\xf8\\xd2\\x76\\x74\\xad\\x7a\\xca\\x83\\\n\\xb8\\x61\\xbf\\x9e\\x6d\\xd5\\x34\\x6c\\x90\\x66\\x05\\x66\\xfd\\x77\\xf5\\xcf\\\n\\x5c\\xa4\\xa1\\x29\\xc8\\x7d\\xa2\\xcd\\x30\\x90\\x30\\xa8\\x1f\\x48\\x9e\\x94\\\n\\x6a\\xc9\\x24\\x83\\xf5\\x8d\\x21\\x38\\xeb\\xca\\x12\\x68\\xc3\\xd6\\x0a\\x41\\\n\\xad\\x62\\x5a\\x7e\\xbe\\x90\\x90\\xfd\\xc4\\xc6\\xad\\x37\\x6e\\x9c\\xea\\xf9\\\n\\xc2\\x65\\x84\\x8b\\xae\\x48\\x39\\x16\\xde\\x3a\\xf5\\x82\\xca\\x45\\xdb\\x89\\\n\\xdc\\xf9\\xf3\\x89\\x5a\\x1a\\xc5\\x2a\\x6a\\xe7\\x14\\x99\\x85\\x6b\\x33\\x2e\\\n\\xad\\x8a\\x42\\x94\\x5c\\xe0\\x06\\xf8\\x4b\\x06\\x08\\x01\\x03\\x72\\x44\\x01\\\n\\x47\\xcc\\x7d\\x21\\x2e\\x7a\\xeb\\xba\\x2d\\x12\\x16\\x50\\x28\\x58\\xe1\\x4c\\\n\\xf8\\xf5\\xdd\\x08\\xb2\\xcd\\xb8\\x9a\\x1e\\xe8\\x4d\\x83\\x64\\xa8\\x95\\x02\\\n\\x01\\x3d\\xe0\\x3f\\xd3\\xaa\\xc0\\x4a\\x9b\\x6b\\xeb\\xd5\\x22\\xed\\x1c\\x38\\\n\\x3c\\x87\\xda\\x05\\x5d\\x2a\\x4f\\x78\\x1c\\xab\\xce\\x2e\\x30\\xc4\\xf8\\xc5\\\n\\xe3\\xc2\\x25\\xd4\\x3f\\x1c\\xbb\\xa0\\x87\\xa4\\x5c\\x1c\\x7c\\xbe\\xd0\\xd5\\\n\\x31\\xb6\\xd4\\x11\\x35\\x25\\x07\\x58\\x7b\\x43\\x0d\\xd5\\xa7\\x3c\\x38\\xc1\\\n\\xfe\\xa9\\x51\\x7e\\xbe\\x9f\\xb8\\x91\\xb3\\x2c\\x35\\x6f\\x07\\x89\\xfa\\x25\\\n\\x33\\xa6\\x19\\x84\\xcc\\x73\\xfc\\x48\\x6e\\xb2\\x8d\\x68\\x32\\xd6\\xd8\\xb8\\\n\\xc8\\xbe\\x3c\\x63\\x56\\xa9\\x92\\x88\\xcd\\xfc\\xd8\\x75\\x9f\\x28\\x92\\x99\\\n\\x92\\x51\\xb2\\x76\\xdd\\xd8\\xaa\\x9c\\x6a\\xde\\x5c\\xe2\\xcd\\x6e\\x4a\\xa5\\\n\\x25\\x35\\xbe\\x3b\\x41\\x8d\\x78\\x83\\x87\\x3e\\x84\\x58\\x67\\xb2\\x14\\x66\\\n\\x38\\xa1\\x6a\\x45\\xaa\\xd0\\x66\\xae\\x6e\\x3b\\x13\\x1b\\xbb\\x13\\xdd\\xe3\\\n\\x16\\x99\\xb2\\x75\\x2b\\x05\\x5b\\x65\\x34\\x0c\\x68\\x3e\\xbc\\xce\\xec\\x21\\\n\\x33\\x65\\x21\\x3f\\xd5\\x1b\\xea\\x13\\xcd\\xb0\\x6a\\x44\\x99\\xd2\\xec\\x97\\\n\\xe7\\xcc\\xa2\\x66\\x10\\x52\\x52\\x9b\\xc5\\x57\\x8d\\x28\\x97\\xa3\\x9a\\x53\\\n\\x3d\\xd1\\x2a\\xd1\\x6a\\xb6\\xad\\x45\\x6a\\x50\\xb2\\x20\\x86\\xc8\\xb3\\x0c\\\n\\x52\\x0b\\xe5\\xdc\\x3c\\x22\\xd0\\x99\\x52\\x66\\x27\\xdd\\xef\\xcc\\xbe\\x5d\\\n\\x72\\xd8\\xe4\\xf5\\x4b\\x84\\xd5\\xd2\\x5d\\xe8\\x73\\xdf\\x09\\x4a\\xc6\\x29\\\n\\x6e\\xf1\\x87\\x8f\\x5b\\xe1\\x65\\xd6\\x45\\x43\\x6f\\xc3\\x0d\\xf9\\xfa\\x46\\\n\\xad\\x25\\x82\\x80\\x55\\x6a\\xa2\\xcf\\xc3\\xd6\\x2c\\xb3\\xac\\x52\\x64\\x94\\\n\\x93\\xb7\\x75\\x90\\x90\\x95\\x13\\x7c\\xd0\\x00\\x70\\x01\\xf9\\x77\\x42\\x6c\\\n\\xf6\\x82\\x8b\\xca\\x96\\xc3\\xfd\\x49\\xc4\\x77\\xd3\\xc2\\x2d\\x3f\\x0d\\x2b\\\n\\x52\\xa8\\x00\\xa9\\xe5\\x8f\\xee\\x24\\xcd\\x95\\x30\\xce\\x50\\x2a\\x6b\\x8b\\\n\\x62\\x41\\x1c\\x5c\\x3f\\x76\\xef\\xb7\\xb2\\xd7\\xbf\\xcc\\x2d\\x2b\\x52\\xc6\\\n\\xab\\x59\\xb2\\xea\\x4b\\x8d\\x90\\x59\\x9c\\x94\\xf6\\x88\\x62\\x2a\\xc1\\x59\\\n\\x87\\xb5\\x5b\\x65\\xd8\\x10\\x85\\x29\\x4c\\x6e\\x8e\\x39\\x70\\x8b\\x07\\xb4\\\n\\x36\\x79\\x93\\x86\\xb1\\x75\\x76\\x1b\\x0b\\xc1\\xf9\\x67\\x88\\x83\\x6a\\x93\\\n\\x32\\x56\\xb2\\xf8\\xb9\\x99\\x63\\xe9\\x16\\x82\\x89\\x8f\\xab\\x20\\xf8\\x0f\\\n\\x58\\x45\\x95\\x69\\x94\\xb5\\xac\\x1c\\x14\\xcd\\xd5\\x62\\xcf\\x3c\\x6b\\x6d\\\n\\x49\\x52\\xb0\\x5a\\x42\\x43\\x6e\\x05\\xc3\\xf3\\x82\\xc7\\x08\\x49\\x19\\xc6\\\n\\x8e\\xb6\\x23\\x5c\\x65\\x29\\x47\\x1d\\x9a\\x1c\\x22\\x63\\xeb\\x14\\x0f\\x74\\\n\\x10\\x62\\xd0\\x82\\x43\\xa8\\x52\\x2c\\x28\\x40\\x01\\x63\\x03\\x04\\xb9\\xe1\\\n\\xf8\\x8b\\x32\\xd2\\xc2\\xb9\\x01\\xd7\\x08\\xd2\\x96\\xe9\\x36\\x64\\x14\\x4c\\\n\\x59\\x4a\\x9a\\x94\\x3f\\x4c\\x79\\xc2\\xad\\x08\\x9a\\xb2\\xa7\\x77\\xc2\\x99\\\n\\x65\\x0c\\x4c\\x22\\x98\\xf5\\x48\\x43\\x5e\\x7e\\x27\\xd2\\x14\\xa4\\xa4\\x57\\\n\\x84\\x21\\x26\\x62\\x5d\\x38\\x46\\xad\\x7b\\xa0\\x82\\x0d\\x77\\xf9\\xf0\\x80\\\n\\x48\\x34\\xdc\\x47\\x5b\\xe1\\x0c\\x68\\xf8\\x98\\x44\\x92\\x05\\xe2\\x38\\xe3\\\n\\x13\\x26\\x26\\xe0\\x48\\xc4\\x40\\xb4\\xcb\\x4a\\x00\\x26\\xbc\\x8c\\x26\\x69\\\n\\x58\\xd9\\x1b\\x26\\x9d\\xd9\\xf1\\x89\\xc8\\x96\\xae\\xc6\\x3c\\xa3\\x05\\x14\\\n\\xaa\\x91\\x2d\\x12\\xf1\\xa1\\xa4\\x4f\\x4d\\x76\\x72\\x8b\\xc3\\xa7\\x89\\x6a\\\n\\x48\\x49\\x0f\\x9c\\x38\\x01\\xf2\\x8d\\x62\\x37\\xc1\\x07\\x1d\\xe7\\x78\\x89\\\n\\x93\\xc4\\xa4\\x10\\x4d\\x4d\\x62\\x65\\xa6\\x64\\xd9\\x9a\\xb0\\x3b\\x54\\x6f\\\n\\x03\\x0a\\x41\\xbb\\xb9\\x7d\\xd8\\xfa\\x44\\x89\\x96\\x9a\\x00\\x28\\x9c\\x2a\\\n\\x3d\\x37\\x47\\xbe\\xdd\\x60\\x45\\x5a\\x11\\x82\\xbf\\xe9\\xa7\\x7c\\x25\\x57\\\n\\x03\\x50\\x67\\x13\\x56\\xb5\\x25\\x90\\x6b\\x79\\x3b\\xf0\\x7a\\xc6\\x8f\\x94\\\n\\x89\\x36\\x71\\x32\\x6e\\xea\\xf5\\x9c\\x0d\\x29\\x20\\x5e\\x00\\x82\\xce\\xcd\\\n\\xc0\\x12\\x44\\x5a\\x6d\\x4b\\x9b\\x34\\xad\\x13\\x14\\x12\\x5d\\xd0\\x9a\\x07\\\n\\x3f\\xca\\xb5\\x20\\x53\\xbe\\x17\\xac\\x58\\xcc\\xf7\\x79\\xc5\\xc9\\xa9\\x06\\\n\\x84\\x83\\xbf\\xe9\\x02\\xd1\\x67\\x54\\xa9\\x32\\x16\\x01\\x52\\x65\\x86\\x4e\\\n\\x69\\x62\\x01\\x07\\x07\\x72\\x43\\x70\\xbd\\x12\\xf4\\x8e\\xae\\xf4\\xb4\\x49\\\n\\xbb\\x81\\xda\\xba\\x87\\xe0\\x42\\xaa\\xe7\\x37\\x4e\\xe8\\xf7\\xa9\\x1a\\xdd\\\n\\xa4\\x1d\\x61\\x41\\x09\\xc0\\xb5\\xe1\\xda\\xed\\x53\\xb0\\xc6\\x8f\\xf4\\x33\\\n\\x53\\xbc\\x79\\xc0\\x40\\x5e\\xd6\\xf8\\x98\\x90\\x13\\x4d\\xf0\\xe4\\x10\\xad\\\n\\xd5\\xf0\\x89\\x3a\\x59\\x28\\x96\\x54\\xaa\\xbf\\x69\\xce\\x5f\\xca\\xbd\\xcf\\\n\\x9c\\x69\\x3b\\x7f\\xbd\\x4e\\x52\\xe4\\x91\\xee\\xea\\x01\\x34\\x34\\x25\\x34\\\n\\x57\\x9f\\x47\\x08\\xd1\\x72\\xec\\x2b\\x4e\\xaa\\xd2\\x50\\x89\\x6b\\x41\\x37\\\n\\xf0\\x17\\x9f\\xb3\\xcf\\x2a\\xee\\xe1\\x1a\\x33\\xd9\\x8d\\x1e\\x16\\x66\\xc9\\\n\\x9a\\x00\\x53\\x1a\\x1e\\xb8\\x51\\xab\\xe7\\x1a\\x5d\\x76\\xa0\\xa0\\x14\\x76\\\n\\x47\\xd2\\x83\\xcb\\x7c\\x58\\xec\\xd3\\x26\\x29\\x13\\x53\\x95\\x0b\\x6f\\xf5\\\n\\xee\\xca\\x2c\\xb3\\x9d\\x02\\x4c\\xd5\\x5d\\x96\\x45\\x7f\\xe9\\xae\\x3c\\x4c\\\n\\x4d\\xd2\\x3a\\x2e\\xc6\\xfa\\xcb\\x40\\xa6\\xf3\\x87\\x4f\\x12\\x34\\xc5\\x96\\\n\\xd9\\x25\\x49\\x94\\xa7\\x0c\\x58\\xf0\\x62\\xde\\x3f\\x58\\x95\\x65\\xff\\x00\\\n\\xdd\\xcd\\x23\\x05\\x82\\x3b\\xc1\\xfd\\x75\\x59\\x4a\\x74\\x2c\\xff\\x00\\x11\\\n\\xf5\\x8d\\x61\\xe9\\xa2\\xcf\\x3d\\x12\\xad\\x76\\x72\\x71\\x53\\x7a\\xc4\\xe5\\\n\\x25\\x65\\x2a\\x19\\xa6\\xbf\\xe1\\x69\\x97\\xf0\\xcf\\x11\\x16\\x55\\x5c\\x42\\\n\\x53\\xb9\\xfd\\x61\\x2a\\x7e\\xb8\\x44\\x8c\\x1f\\x72\\x5e\\x3d\\xa0\\xb4\\x95\\\n\\xcd\\xa9\\xa7\\x54\\x89\\x73\\x18\\xe3\\x46\\x1d\\x7e\\xa2\\x52\\xaf\\x0e\\xba\\\n\\xeb\\x9f\\xf8\\x4b\\xed\\x77\\x9f\\x48\\x9f\\xd9\\x11\\x63\\x0f\\x2d\\xb9\\xfa\\\n\\xc6\\xab\\xa7\\x30\\xb9\\x69\\x58\\xba\\x9e\\xd0\\x15\\x85\\xcb\\x5c\\x92\\x02\\\n\\xc1\\x21\\x43\\x1e\\x14\\x77\\x1f\\x58\\x49\\x50\\x75\\x11\\xb2\\x30\\xa3\\x61\\\n\\xbf\\x7c\\x7b\\xc9\\xd5\\xf4\\x21\\x2a\\x0a\\x48\\x3b\\xe1\\x59\\x42\\x27\\x94\\\n\\x6c\\xef\\xa7\\x8f\\x5e\\x71\\xac\\xe7\\x0b\\x15\\xbf\\xbf\\xf5\\x1a\\xc2\\x97\\\n\\x63\\xc0\\x8a\\x45\\xeb\\xd0\\x62\\xf3\\x29\\xa1\\x4b\\xd8\\xc7\\x38\\xd6\\xf0\\\n\\x3e\\x03\\xed\\x0b\\x33\\x5b\\x86\\x47\\x81\\xeb\\xaa\\xc2\\xef\\xea\\xd4\\x57\\\n\\x91\\xf2\\xc6\\x2c\\xf2\\xaf\\xfc\\x51\\xf2\\xe3\\x96\\x3d\\x73\\x89\\xb9\\xf3\\\n\\x31\\x64\\x95\\xb2\\xf4\\x72\\x38\\xc4\\xd9\\x7b\\x67\\x0e\\xb9\\x42\\x14\\x6e\\\n\\xac\\xde\\x2f\\xb2\\xed\\xce\\x90\\x95\\xcc\\xd6\\x02\\x56\\xab\\xb4\\x0c\\x79\\\n\\x97\\x3d\\x6e\\xf1\\xb3\\xdb\\x25\\xcb\\x52\\x2f\\x4b\\x96\\x52\\xc4\\x29\\x4a\\\n\\x01\\xc5\\x18\\x11\\x42\\x37\\x62\\x43\\x45\\xba\\xd4\\xb9\\xfb\\x12\\x26\\xaa\\\n\\x58\\x62\\xec\\xb2\\x00\\xfa\\x53\\xeb\\xba\\x25\\x80\\x84\\xd0\\xba\\x88\\x01\\\n\\x4a\\x7a\\xab\\x9e\\xea\\x93\\x12\\x80\\x0e\\x0b\\x70\\xa7\\x94\\x10\\x54\\x2e\\\n\\x80\\xce\\x29\\x56\\xee\\x83\\x26\\x65\\x5d\\x45\\xdb\\x79\\xc3\\xed\\x13\\x5f\\\n\\x5a\\x95\\x11\\xfd\\x20\\xc9\\x60\\x46\\xdb\\xbe\\xb1\\x47\\x15\\x60\\x2e\\xe4\\\n\\xe4\\xbc\\x25\\x45\\x65\\x65\\x43\\x93\\xe3\\x57\\x89\\x68\\x4a\\xe6\\xa6\\xfe\\\n\\x24\\xa4\\x15\\x66\\xc3\\x8f\\x0a\\xf8\\xf1\\x8d\\x23\\xa3\\x26\\x22\\xcb\\x22\\\n\\xd1\\x2d\\xc8\\x61\\x51\\x47\\x1d\\x7e\\x31\\x8d\\x07\\x60\\x33\\x50\\x99\\xeb\\\n\\x40\\x29\\x58\\xa0\\x21\\xf0\\x37\\x4f\\xa4\\x5b\\xf4\\x02\\xa7\\x2a\\xf2\\x05\\\n\\xc0\\x0b\\xb2\\x69\\xe4\\x3a\\xa4\\x5a\\x74\\x61\\xb3\\x76\\x94\\x68\\xf4\\x24\\\n\\x9e\\xbc\\xe2\\x7a\\x83\\x76\\x4e\\x23\\x76\\xe3\\x8b\\x46\\xc8\\x0c\\x12\\xdb\\\n\\x4a\\x61\\x93\\x9c\\xdb\\x7c\\x4b\\x48\\x98\\x95\\xa2\\xf0\\x4a\\x52\\x85\\x29\\\n\\xcf\\x64\\x10\\x3b\\x4d\\xbc\\x79\\x18\\xf6\\x5f\\x48\\x4c\\x42\\x8a\\x0a\\x4a\\\n\\xc0\\x66\\xc5\\x54\\x20\\x50\\x3e\\x0d\\x40\\x5b\\xbf\\x8d\\xb2\\x4a\\x2d\\x2c\\\n\\xa0\\x80\\x45\\x0b\\x5d\\x1b\\xa2\\xdb\\x6b\\x93\\xa3\\x24\\x15\\x14\\xa5\\x2d\\\n\\x5b\\xa9\\x4d\\x4d\\x72\\x03\\x1e\\x31\\x6a\\xf6\\xa8\\x28\\x91\\x7d\\x77\\x73\\\n\\x09\\x70\\xd5\\xdc\\x18\\xd0\\x74\\x6b\\x13\\xf4\\x89\\xb6\\xa5\\xaf\\x1d\\xce\\\n\\xa7\\x73\\xcc\\xd3\\x28\\xb2\\x5b\\xa6\\x59\\x12\\x9b\\xb3\\x66\\x0d\\x9f\\x95\\\n\\x6a\\x0d\\x4e\\x07\\x2c\\x21\\x5a\\x72\\xd1\\x68\\xb8\\x35\\xf3\\x50\\xa6\\x21\\\n\\x61\\x13\\x16\\x94\\xab\\x9a\\x5d\\xb0\\xdf\\xc6\\x34\\x44\\xe2\\xbb\\x39\\x75\\\n\\x15\\x38\\xcc\\xbb\\xf3\\xee\\x89\\x9c\\xf2\\xf3\\xce\\x25\\xb9\\x9a\\x82\\x5c\\\n\\x90\\x69\\xe3\\x12\\xd5\\xf0\\x50\\x49\\xa9\\x6a\\xf7\\x74\\x7a\\x68\\x2a\\xa1\\\n\\xda\\xf5\\x84\\x56\\x55\\x6b\\x8e\\x3c\\xe0\\x00\\x00\\x61\\x91\\xc3\\xfd\\x46\\\n\\x24\\xa8\\xeb\\x08\\x73\\xca\\x25\\x2f\\x64\\xd7\\xe5\\x3e\\x0d\\x1a\\x4e\\x62\\\n\\x57\\x32\\xad\\xeb\\xd3\\x61\\x12\\xf6\\x59\\xea\\xdb\\xe2\\x4a\\x9c\\x86\\x3b\\\n\\xe1\\xcc\\x5f\\x01\\xb0\\xf0\\x85\\xaa\\xf9\\xc7\\x28\\xb0\\xab\\xe3\\x4b\\xc6\\\n\\xeb\\x9a\\x64\\xc5\\x3f\\x78\\xf6\\x93\\x4f\\x8d\\x1f\\x6c\\x92\\x90\\x48\\x14\\\n\\xa0\\xc3\\xaf\\xcc\\x68\\x6d\\x2f\\x64\\xd2\\x6d\\x7d\\x48\\x94\\xa0\\x06\\x0c\\\n\\x2f\\x53\\xce\\x26\\xc9\\x95\\x36\\x5a\\xf6\\x81\\x08\\x0c\\x0b\\xbe\\x3f\\xa1\\\n\\x17\\x14\\x95\\x90\\x09\\x52\\x1f\\x7d\\x38\\xd2\\x38\\x65\\xe5\\xe1\\x09\\x20\\\n\\x01\\xf8\\xfb\\xc1\\x2f\\x87\\xf8\\x4c\\x24\\x0c\\x4f\\x8f\\x11\\x09\\x5d\\x2a\\\n\\x4f\\x9f\\x18\\x17\\x49\\xc8\\x9e\\x5f\\x88\\xe5\\x4e\\x51\\x32\\x68\\x6e\\xba\\\n\\xfa\\xc2\\x54\\xfb\\x4e\\xf5\\x6f\\x48\\x58\\x2b\\x4b\\x5e\\x22\\xa0\\xe2\\x77\\\n\\xf0\\x84\\x59\\x95\\x47\\x59\\xdf\\xda\\x31\\x34\\x99\\x63\\x32\\x38\\x9e\\xba\\\n\\xc2\\x14\\x6f\\xac\\x10\\xa3\\x74\\x0a\\xa5\\xe8\\xfc\\x47\\x94\\x4b\\x52\\x51\\\n\\x24\\xd0\\x0d\\x9c\\x80\\x80\\xeb\\x98\\xdb\\xfc\\x31\\xfb\\xc0\\x96\\xb4\\xa8\\\n\\xb3\\xb3\\xe0\\xfe\\x4d\\x1b\\x27\\x11\\xe5\\x09\\x95\\x36\\x5a\\x66\\xa5\\xaf\\\n\\x35\\xd6\\xe6\\xe5\\xc7\\x2c\\x39\\xe1\\x16\\x3b\\x1d\\xba\\xd7\\x68\\xb8\\x25\\\n\\xcb\\x44\\x80\\xc0\\xcd\\xbf\\xb5\\x7b\\xe6\\x4d\\xdc\\x28\\x19\\x89\\x35\\x27\\\n\\xc6\\xd5\\xa0\\x96\\x86\\x49\\xb4\\xa8\\x24\\xf6\\x88\\xba\\xe9\\x38\\xd0\\x6f\\\n\\xe7\\x5a\\xc4\\xbd\\x1e\\x84\\x0b\\xab\\x9c\\xb9\\x9f\\xea\\x03\\xe8\\x62\\x74\\\n\\x91\\x65\\x99\\x79\\x26\\xf8\\x29\\x01\\x20\\x92\\x37\\x39\\xdd\\x98\\x6a\\x53\\\n\\xc0\\x44\\xb9\\x85\\x49\\xa8\\x67\\x0f\\x43\\x87\\x28\\xb3\\x32\\xd4\\x9b\\xd4\\\n\\x34\\x27\\xfd\\xaf\\xe1\\x13\\x02\\x46\\xef\\x08\\x50\\x45\\x6f\\xa0\\x07\\xcf\\\n\\x17\\x6c\\xf0\\x89\\x92\\xe4\\xec\\xad\\x05\\x9f\\x70\\xa1\\x83\\x26\\x84\\x5e\\\n\\x6a\\x1a\\xe6\\x39\\x65\\x48\\xd1\\xd6\\xa9\\x16\\xbd\\x1d\\x2e\\xc9\\x39\\xb6\\\n\\x12\\x3e\\x26\\x2f\\x4d\\xd8\\x75\\xba\\x2c\\xb3\\x2c\\xb6\\x3b\\x3c\\x99\\x48\\\n\\x29\\x5b\\x3b\\x3d\\x33\\x27\\x96\\x70\\x95\\x4b\\xb4\\x4a\\xa3\\x0c\\xdc\\x56\\\n\\x3d\\xa4\\x41\\x94\\xa7\\xd6\\x12\\xe5\\x54\\x20\\x6e\\x3d\\x77\\x9e\\xe9\\xdf\\\n\\xfd\\x87\\xfe\\x26\\x12\\x80\\xa4\\xbb\\xb6\\xd2\\x84\\x49\\x94\\x52\\xbc\\x2f\\\n\\xba\\x58\\xa4\\xe0\\xc7\\x17\\xfa\\xc6\\x84\\xb6\\x49\\xb1\\x0d\\xa9\\x32\\xf7\\\n\\x80\\x4b\\x63\\xb9\\x86\\x0f\\x4f\\xdc\\x2b\\xda\\x19\\x16\\x60\\x40\\x4a\\x66\\\n\\x9c\\x85\\xe6\\x21\\xf7\\x75\\xf4\\x8d\\x3f\\xa5\\x8d\\xb9\\x60\\x21\\x37\\x2f\\\n\\x4a\\x6a\\x28\\x96\\xda\\x56\\x46\\x8e\\x73\\xe8\\xc4\\xb9\\x08\\x92\\x85\\x5e\\\n\\x17\\xd4\\x4b\\xba\\xb1\\xc6\\x9e\\x10\\x52\\x0f\\x65\\x37\\x77\\x36\\x5c\\x61\\\n\\x28\\x64\\xa4\\xa8\\xde\\xa3\\x90\\x43\\x65\\x4e\\x50\\xa0\\x9a\\x29\\xae\\x01\\\n\\x90\\x14\\xae\\x27\\x9c\\x68\\x2b\\x43\\xcb\\x08\\xe0\\x3c\\xe1\\x6a\\xa3\\xb6\\\n\\x46\\x02\\xf5\\x6b\\x41\\x6c\\x4f\\x85\\x60\\x2c\\x9b\\x3c\\x92\\x9e\\xfc\\x77\\\n\\x08\\x0a\\xc8\\x96\\x3b\\xa3\\x5f\\x71\\x25\\x2c\\xfd\\x3c\\x09\\x8e\\x3c\\x43\\\n\\x77\\xc4\\xa4\\x92\\xb2\\x4d\\x29\\xf6\\x8d\\x61\\x42\\x54\\xd5\\xd9\\x38\\xf5\\\n\\x8c\\x5b\\x26\\x1d\\x63\\x77\\xbf\\x8f\\xe6\\x25\\x9b\\xd5\\xf2\\x8b\\x3e\\xca\\\n\\x9d\\xde\\x86\\x9e\\x15\\x8d\\x71\\xfe\\x30\\x16\\x4e\\x5d\\x78\\x47\\xda\\x24\\\n\\x1b\\xa4\\x29\\xd9\\x9c\\xf9\\x47\\xb5\\x20\\x5a\\xed\\x21\\x64\\xb1\\x41\\xa7\\\n\\x16\\xe7\\xba\\xbe\\x10\\x27\\x5a\\x64\\xcc\\x0b\\x91\\x3d\\x52\\x42\\x7e\\x54\\\n\\xe6\\x05\\x2b\\xce\\x34\\x67\\xb5\\x73\\x54\\x91\\x66\\x9a\\x94\\xa7\\xb2\\x9b\\\n\\xe5\\x6a\\x25\\x54\\xc4\\xd0\\x7d\\x61\\x3a\\x5e\\xcb\\x79\\x32\\xd2\\xb1\\x31\\\n\\x6b\\x21\\x24\\x9a\\x5d\\x51\\x62\\xc1\\x9e\\xbb\\xb8\\x44\\xd2\\x89\\x72\\x15\\\n\\x36\\xf3\\x90\\x1d\\xa2\\x4c\\xfd\\x6a\\x12\\xb6\\x01\\xc3\\xd0\\xf1\\x89\\x6a\\\n\\xbc\\xf4\\xff\\x00\\x05\\x84\\xac\\x6c\\x97\\xa4\\x19\\x2a\\x67\\x72\\x21\\x37\\\n\\xa5\\xab\\x6b\\xb2\\xdd\\x7a\\x40\\x29\\x39\\x9d\\xf0\\xa9\\x53\\x55\\x46\\xeb\\\n\\xa1\\x12\\xe4\\x94\\xa4\\x87\\xcf\\x84\\x19\\x64\\xf6\\x4d\\x77\\xf5\\xc2\\x13\\\n\\x2e\\x62\\x7e\\x6e\\xba\\xe1\\x16\\xb5\\xde\\x17\\x40\\xc7\\x1e\\x1d\\x56\\x24\\\n\\x4a\\x0c\\x76\\xb3\\xdd\\xdd\\x0b\\x7d\\x59\\xac\\x59\\xd1\\x75\\x57\\xc9\\x24\\\n\\xee\\xdc\\xef\\x87\\x28\\x50\\x74\\x3b\\x0a\\x87\\x82\\x95\\xbe\\x0d\\xdf\\xf8\\\n\\x89\\x76\\xcd\\x62\\x55\\x30\\x02\\xa0\\x9b\\xbc\\x46\\xd1\\x63\\x8e\\xea\\x98\\\n\\x99\\x6f\\xb4\\x4b\\x58\\x16\\x55\\xa5\\x29\\x29\\x66\\x14\\xdb\\x3c\\x87\\x28\\\n\\x93\\x3b\\x48\\xcd\\xb4\\x21\\x53\\x26\\xeb\\x1c\\x97\\x96\\x0d\\x4d\\x31\\xcb\\\n\\xb2\\x6b\\xdc\\xe2\\x25\\x06\\x42\\x55\\x3b\\x60\\x55\\xd4\\xae\\x19\\x72\\x11\\\n\\x6b\\x12\\x96\\xa6\\x4a\\xaf\\xe6\\xe3\\x00\\x9a\\x00\\x3c\\x61\\x80\\x60\\x32\\\n\\x4f\\xd7\\xed\\xdd\\x08\\x37\\x59\\x58\\x30\\x0f\\xc9\\xba\\x6d\\xd0\\xb9\\x97\\\n\\xf0\\xfd\\xbf\\xe7\\xce\\x24\\x59\\x27\\xdb\\x55\\x2e\\x54\\xb9\\x6b\\x56\\xc8\\\n\\x75\\x25\\xa8\\xf9\\x63\\xd7\\x36\\x89\\x3e\\xc9\\xd9\\xd3\\x64\\x4f\\xca\\xa0\\\n\\x1c\\xa0\\xe4\\x4d\\x4d\\x23\\x48\\xd8\\xfd\\xd8\\xae\\x58\\x4d\\x0b\\x80\\x58\\\n\\x53\\xac\\xb7\\xc5\\x8d\\x2a\\x90\\x1a\\xfb\\x12\\x87\\x48\\x3b\\xeb\\xe4\\xfc\\\n\\xf9\\x44\\xbb\\x42\\x9e\\x5c\\xb5\\xcd\\x01\\x77\\x88\\x29\\x7a\\xe3\\xbb\\x32\\\n\\x52\\xc7\\xaa\\x68\\xe4\\x84\\xc8\\x77\\xf9\\x5b\\xeb\\xf5\\x8f\\x6a\\xa6\\xcb\\\n\\x49\\x01\\x4a\\x48\\xa9\\x48\\xc7\\x13\\x4c\\xb8\\xc4\\xf4\\x2d\\x22\\xa0\\xe2\\\n\\x93\\xdc\\xcd\\xea\\x62\\x5a\\xe5\\x84\\xd5\\x42\\x8a\\x27\\x3d\\xf1\\x22\\x68\\\n\\x0b\\xbc\\x09\\x26\\xe9\\x0c\\x06\\xfc\\x1b\\xca\\x36\\xbb\\x4a\\x79\\x62\\xee\\\n\\x27\\xaf\\x2f\\x08\\x4d\\xa6\\x62\\xd4\\xbd\\x64\\xc6\\xba\\xb6\\x43\\x1c\\x5b\\\n\\x05\\x50\\x60\\xdc\\x4b\\x0c\\x61\\x5b\\x45\\xef\\x05\\x6c\\xfd\\x4c\\x19\\x65\\\n\\x5b\\xc0\\xdf\\x06\\x5f\\xf7\\x79\\x43\\xa4\\x06\\x24\\x71\\x7f\\xb4\\x4d\\x52\\\n\\x56\\xc8\\x49\\x73\\xb8\\x63\\xf4\\xaf\\x1e\\xe8\\xf6\\x7e\\x4c\\xe4\\x04\\x5f\\\n\\x41\\x00\\x62\\x7e\\xf5\\xdd\\x0a\\xc3\\x8d\\x7e\\x91\\x34\\xbd\\xd0\\x2a\\x52\\\n\\xce\\x37\\x75\\x4f\\xdc\\x59\\x2d\\x2d\\x2a\\xe9\\x38\\x63\\xc2\\x99\\xc2\\x10\\\n\\x26\\xba\\xd2\\x5d\\xaa\\x78\\x34\\x2d\\x44\\xf1\\x89\\x44\\x95\\x31\\x71\\x04\\\n\\x32\\x12\\x40\\xc4\\xf7\\xc2\\x4a\\x0a\\x54\\xe7\\xe5\\x3e\\x9f\\xb8\\xb6\\xda\\\n\\x65\\x26\\x6b\\x95\\x00\\x37\\xe5\\x47\\x89\\x56\\xc9\\x25\\xae\\xcc\\x04\\x73\\\n\\x38\\xc4\\x85\\x02\\x42\\xbe\\x5d\\xf9\\x56\\x05\\x70\\xaf\\x2e\\xbc\\x21\\x14\\\n\\x35\\x87\\x0f\\x5d\\xdf\\x58\\x9a\\x4a\\x2c\\xeb\\x58\\xc8\\x06\\xf4\\x8d\\x2f\\\n\\x3c\\x9b\\x42\\xaf\\x29\\x89\\x3c\\x63\\x00\\xf9\\x64\\x61\\x83\\x85\\x5f\\xb8\\\n\\x53\\x84\\x68\\xf9\\xcb\\x36\\xcb\\x2a\\x95\\x33\\x09\\xc8\\x61\\x5a\\xc5\\xb3\\\n\\x49\\x7f\\xc2\\x2a\\x5a\\x54\\x0a\\xee\\x96\\x40\\x77\\x7c\\x1b\\xef\\xc9\\xe3\\\n\\x44\\xa2\\x72\\xec\\x12\\x55\\x74\\xec\\xcb\\xdb\\xc3\\x66\\xa7\\x1a\\xc4\\xb5\\\n\\x80\\xea\\x76\\x18\\x39\\xc1\\xe3\\x5d\\x25\\x40\\x81\\x31\\x39\\xc6\\xbe\\x54\\\n\\xac\\x16\\x0f\\x23\\x16\\x8f\\x68\\x6c\\x72\\x27\\x09\\x73\\xad\\x12\\xe5\\xa9\\\n\\x4c\\x12\\x09\\x35\\x2d\\xca\\x25\\xad\\x36\\xa9\\x61\\x47\\xb0\\x6a\\x95\\x64\\\n\\x77\\x34\\x4b\\xb3\\xcb\\x1f\\x30\\xef\\xae\\x7c\\xb2\\xe1\\x13\\x57\\xfc\\x53\\\n\\xe1\\xd6\\x50\\xa3\\x31\\xf0\\x3e\\x31\\x7a\\x62\\x76\\x99\\x47\\xae\\xbe\\xf0\\\n\\x6d\\x4a\\x4f\\x69\\x2d\\xcd\\xb0\\xfb\\x44\\x90\\xa9\\x97\\xaf\\x26\\xa4\\x93\\\n\\xe7\\x17\\x35\\x65\\x94\\x2e\\xb9\\x74\\x83\\xbb\\xf7\\x0e\\x92\\x5b\\x1c\\x61\\\n\\x40\\x8e\\xc8\\xf0\\xa3\\xf5\\xdf\\x09\\xb5\\xce\\x06\\xed\\xd2\\xc3\\x67\\xc3\\\n\\xad\\xdb\\xa3\\xde\\x16\\x7e\\x43\\xe1\\x16\\x2b\\x08\\xf7\\x75\\xa7\\x00\\x43\\\n\\x1e\\x4c\\x7e\\xf8\\xc2\\x6c\\x57\\x41\\x75\\x00\\xca\\x63\\x4a\\xb0\\xd9\\xf3\\\n\\x02\\x8f\\x84\\x4b\\x92\\xa9\\x4a\\x4d\\xc2\\xe4\\x85\\x85\\x1a\\xec\\x0c\\x89\\\n\\x19\\x93\\x41\\x88\\xa1\\xc6\\x2d\\x28\\xff\\x00\\x83\\x40\\xcc\\x85\\x6f\\xdc\\\n\\x4e\\xf7\\xef\\x82\\x75\\x77\\x6a\\xc0\\x84\\x05\\x50\\xd6\\xa0\\x53\\x3c\\x5a\\\n\\x0f\\x68\\xf2\\xfb\\x44\\xbc\\x12\\x0e\\x65\\x34\\xcf\\xc2\\x35\\x60\\x12\\x13\\\n\\x75\\xf2\\xd9\\xd9\\x7f\\x18\\xd0\\x4b\\x95\\x66\\x4a\\x4a\\xca\\x4c\\xdb\\xa2\\\n\\xfa\\xb0\\x72\\x0f\\x90\\xfc\\x9e\\x01\\x5a\\x59\\x0a\\x3a\\xb4\\x2b\\xb5\\x4e\\\n\\xbf\\x51\\xa6\\xe4\\x5e\\x50\\xdc\\xb2\\x12\\xfb\\xc1\\x70\\x5c\\x61\\x5e\\x30\\\n\\x06\\xa0\\x00\\x4f\\x64\\x6c\\xee\\x6e\\x1c\\x37\\xd7\\x7c\\x24\\xcb\\x2b\\x97\\\n\\x38\\x62\\xb6\\x2e\\xe4\\x8c\\x6e\\xf7\\xe0\\xd9\\x63\\x1a\\x2a\\xda\\x9d\\x52\\\n\\x42\\xb0\\x29\\x6f\\x38\\xd3\\x7a\\x2a\\x55\\xb2\\xf2\\xc0\\x07\\x64\\xb5\\x33\\\n\\xc4\\x11\\xc5\\xfb\\xfe\\x96\\x8d\\x17\\x68\\x96\\x3e\\x21\\x2d\\x89\\x7e\\xba\\\n\\x31\\x26\\xce\\x84\\xcc\\xda\\x6b\\x8d\\xc3\\x23\\x5e\\x5d\\xd0\\xaf\\x73\\x44\\\n\\x80\\xa4\\x80\\x15\\x79\\x22\\xb7\\x5d\\x9d\\x89\\x1b\\xe9\\x56\\x6c\\x22\\xd5\\\n\\x39\\x53\\x76\\x24\\xaa\\xfb\\xe2\\xa0\\x3c\\x00\\xc8\\x0d\\xc2\\x1b\\xad\\xd0\\\n\\x93\\x12\\xf6\\x99\\x3b\\xfe\\x83\\xaf\\x58\\xd4\\x87\\xed\\x7f\\xdb\\xf9\\x89\\\n\\x92\\x5d\\xdf\\xbb\\xae\\xbc\\xab\\x65\\xd1\\x73\\xad\\x96\\xa9\\x66\\x5b\\xb4\\\n\\xb2\\x52\\x58\\x66\\x58\\xa5\\xfb\\x85\\x22\\x42\\x3d\\xc6\\x52\\x65\\xcc\\xa2\\\n\\x95\\x43\\xc7\\xac\\xab\\x12\\x86\\xb3\\xca\\x26\\x22\\xe2\\xd4\\x78\\xbd\\x04\\\n\\x59\\xa7\\x76\\x86\\x64\\x01\\x8c\\x25\\x73\\xe5\\x61\\xd9\\x38\\xe5\\x43\\x8b\\\n\\xc6\\xbf\\xfb\\xa2\\x49\\x70\\x17\\x8b\\xc2\\xe7\\x28\\x80\\x84\\xff\\x00\\x2d\\\n\\xfd\\x67\\x16\\xc9\\x93\\x64\\x4b\\x77\\x35\\x49\\xeb\\xaf\\xcc\\x4e\\x95\\xae\\\n\\x0c\\x78\\xf9\\xc5\\xaa\\xc9\\x3a\\x42\\x2f\\xa1\\xc8\\x05\\xc1\\x07\\xc7\\xcf\\\n\\xeb\\x1a\\x3f\\x4b\\xae\\x5e\\xcc\\xe3\\xb0\\x28\\x5f\\x7d\\x3a\\xe9\\xe2\\xc5\\\n\\x6e\\x93\\x39\\x2e\\x08\\xc8\\xbe\\x3d\\x74\\x63\\x88\\x81\\xdb\\xee\\x1e\\xb1\\\n\\x24\\xcb\\x08\\x06\\x77\\xf4\\xd8\\xde\\x7e\\xb7\\xc6\\x98\\xd1\\x72\\xed\\x93\\\n\\x9e\\xcc\\x9b\\xdb\\x54\\xbb\\x90\\xaf\\xa7\\x08\\x56\\x8d\\xb4\\x48\\x5c\\xc0\\\n\\xb7\\x21\\x0b\\x52\\x73\\xc8\\xe7\\xbb\\x94\\x2c\\x25\\x08\\x55\\xfe\\xee\\x43\\\n\\x11\\x1a\\x1c\\x19\\x96\\xfb\\x34\\xd3\\xfd\\x29\\x53\\xd0\\xa5\\xee\\xb9\\x51\\\n\\xd7\\xd2\\x34\\x84\\xc9\\x73\\x16\\xa1\\x24\\x8b\\xa9\\x15\\x6f\\xfa\\x89\\xfb\\\n\\x18\\xd0\\x49\\xff\\x00\\xf6\\x64\\x2b\\x7c\\xaf\\xa9\\x89\\x96\\xd4\\x49\\x96\\\n\\x42\\xb0\\x54\\xc2\\x3e\\xfe\\x18\\xe5\\x4e\\x71\\x67\\x2b\\x9a\\x26\\x4e\\x1f\\\n\\xd3\\x42\\x55\\x31\\x59\\xb0\\x48\\x73\\xe8\\x4b\\x73\\x8f\\x69\\x7d\\xa6\\x52\\\n\\x55\\xaa\\xb3\\xa8\\x9b\\xdd\\x9b\\xa4\\x83\\x4a\\xb5\\x3c\\x0f\\x99\\x68\\xd1\\\n\\xa6\\xd7\\xa4\\xe7\\x58\\xa6\\x5a\\x5e\\xf9\\x99\\xd9\\xc4\\xec\\xcc\\xd9\\x1c\\\n\\xc8\\xae\\xe0\\x2a\\x4c\\x48\\x5c\\x99\\x09\\x93\\x66\\x24\\x5e\\x4c\\xa0\\x5b\\\n\\x93\\x0f\\xac\\x22\\x64\\xa6\\xeb\\xae\\xe8\\xd6\\x8f\\x38\\x4e\\xd8\\xbd\\x17\\\n\\x3d\\x22\\x62\\xef\\xcd\\x28\\xcc\\x53\\xae\\xf8\\x96\\x93\\x2c\\x83\\x5e\\x51\\\n\\x35\\xa6\\x10\\x4f\\xca\\x1a\\xa3\\xf3\\x17\\x00\\xa8\\x61\\xdd\\x0f\\x12\\xd1\\\n\\x2c\\xb3\\xe3\\x9f\\x5e\\xb1\\xab\\x97\\x97\\xd2\\x25\\xcf\\x95\\x2c\\x14\\x26\\\n\\x72\\x81\\x25\\x21\\x87\\x17\\x6e\\xb9\\x61\\x02\\x52\\xd3\\x2d\\x65\\x09\\x54\\\n\\xe2\\xa2\\x26\\x25\\x4a\\x4d\\x5c\\x84\\x8b\\xb9\\x50\\x5d\\x0a\\xef\\x2f\\x94\\\n\\x7b\\xc4\\xc9\\x16\\x72\\x99\\xf2\\x46\\xb5\\x4a\\x00\\xa9\\x8b\\x54\\x87\\xae\\\n\\x42\\xeb\\x9e\\x11\\xac\\xb4\\xcc\\x4d\\xe3\\x2c\\xaa\\x5f\\xc8\\x96\\xf0\\xa1\\\n\\x6c\\xb1\\xac\\x69\\x2b\\x22\\xec\\xb2\\x52\\xa5\\x6d\\x2e\\x68\\x40\\x96\\x8a\\\n\\x0d\\xb2\\xc4\\x7f\\xb4\\xd4\\xf2\\x77\\x84\\x4e\\x1a\\xb1\\xf0\\xd2\\xb9\\xb3\\\n\\x83\\xca\\xc7\\x02\\x09\\x05\\x86\\x21\\x4c\\xc9\\x19\\xe4\\xec\\xf1\\x26\\x49\\\n\\x45\\xaa\\x58\\x59\\xbc\\xa5\\x1b\\xd3\\x08\\x41\\x08\\xec\\x9b\\x92\\xd2\\xc7\\\n\\x22\\x1c\\xd7\\x86\\x74\\x29\\x97\\x42\\x52\\x92\\x69\\xdd\\xca\\x34\\x5a\\x2c\\\n\\xb6\\x85\\x4d\\xf8\\xf5\\x06\\xe2\\xe5\\xe4\\x85\\x0e\\xab\\x90\\xa8\\xa1\\x05\\\n\\x91\\xa2\\xa4\\x49\\x52\\xe6\\xca\\xb4\\xaa\\x62\\x89\\x18\\xa9\\xee\\xff\\x00\\\n\\xa4\\xe3\\x5d\\xd1\\x6a\\x98\\xdb\\x33\\x0e\\xb2\\xe9\\xa1\\x5d\\x5a\\x94\\xdc\\\n\\xd1\\x3e\\x6c\\x85\\xff\\x00\\xcb\\x06\\x87\\x7f\\xd3\\x17\\x7e\\x59\\xb1\\x8b\\\n\\x4d\\xaa\\xf4\\x89\\x52\\x24\\x4b\\x44\\xa5\\xa6\\x85\\x41\\x82\\x9a\\xf5\\x46\\\n\\x2e\\xf7\\x4d\\x3c\\x29\\x8c\\x68\\x03\\x22\\xe8\\xd7\\xcc\\x04\\x84\\x3b\\x28\\\n\\x8c\\x4f\\xa6\\x60\\x70\\x8d\\x2d\\xa4\\x24\\xd9\\xd2\\x75\\x6a\\x14\\x14\\x03\\\n\\x02\\xbb\\xa4\\x81\\x9e\\x00\\x13\\x1a\\x43\\x4d\\x7b\\xdc\\xc1\\x2c\\x15\\x57\\\n\\x1f\\xbb\\x1a\\xf4\\xdb\\xa1\\xf5\\x58\\x1c\\x43\\xd1\\x58\\xbd\\x7f\\x70\\x26\\\n\\xaa\\x61\\x6b\\xf4\\xe0\\x41\\xa7\\x5f\\x98\\x4d\\xc4\\x4c\\x21\\x28\\xba\\xa6\\\n\\x77\\xfa\\xc1\\x02\\xf6\\x19\\xfd\\x61\\x49\\x1b\\xdb\\xcb\\x7c\\x4b\\x9a\\x65\\\n\\x10\\xa2\\xe4\\x0e\\x3b\\xe9\\x1e\\xf8\\xb5\\x1a\\x03\\xc2\\xbf\\x8e\\xb9\\xc5\\\n\\x9e\\xc9\\x36\\xd3\\x35\\x09\\xbe\\x43\\xb1\\xba\\x3f\\x35\\x8d\\x1d\\xa0\\xd3\\\n\\xa3\\x24\\x2a\\xd4\\x76\\x6f\\x04\\x92\\x1e\\xab\\x60\\x59\\xc6\\xfa\\xf3\\x89\\\n\\xd3\\x13\\x6f\\x55\\xfb\\x97\\x44\\xaa\\xee\\x76\\x89\\x69\\x38\\x26\\x9d\\x74\\\n\\xd0\\xb1\\x53\\x7a\\xb9\\x18\\x98\\x75\\x4c\\x50\\x00\\x27\\x77\\x0a\\xe3\\x16\\\n\\x2b\\x5a\\x66\\x21\\x52\\xe6\\x07\\x51\\x05\\x20\\x9f\\x94\\x90\\xc3\\xaf\\x28\\\n\\x55\\x91\\xf0\\x58\\x1c\\x8f\\x84\\x4b\\x93\\x39\\x84\\xb0\\xb5\\x38\\xe3\\x12\\\n\\xa4\\x4b\\xb2\\xc9\\xd6\\xcf\\x65\\xa8\\xa5\\x83\\xd5\\x95\\x8b\\x8f\\x08\\xb7\\\n\\xda\\xd7\\x35\\x6a\\x4d\\xf5\\x5d\\x7e\\xcb\\xd1\\xab\\x0d\\x78\\xd3\\xc6\\x2c\\\n\\xd6\\x2d\\x77\\xf5\\x76\\xd1\\x5d\\x93\\xd9\\x7e\\xf8\\xd2\\xda\\x05\\x2b\\x7d\\\n\\x42\\x44\\xbc\\xf6\\x43\\x08\\x57\\xbf\\x68\\xd5\\x32\\x66\\x4c\\x67\\xfe\\x5d\\\n\\x7a\\x7d\\x63\\x45\\xe9\\x44\\x5a\\x12\\x94\\xac\\xed\\x5d\\x18\\xf2\\xac\\x06\\\n\\x0a\\x67\\x7b\\xd5\\x1b\\xc4\\x69\\x4b\\x68\\xb3\\xd9\\x27\\x02\\x7e\\x5a\\x78\\\n\\x8e\\xbf\\x51\\xec\\xdd\\xb1\\x61\\x33\\xad\\x13\\x5d\\x49\\x04\\xb5\\xea\\xdd\\\n\\xdd\\xd7\\x85\\x22\\xd9\\x3f\\xde\\x26\\xcf\\xbc\\xad\\x95\\xcc\\x5a\\x92\\xfc\\\n\\x54\\xec\\xf1\\x6e\\xb2\\x2c\\x17\\xd7\\xa8\\x8a\\xba\\x5f\\x07\\x6c\\x38\\x7a\\\n\\xf1\\x8d\\x1a\\xad\\x5a\\x6e\\x25\\x34\\x38\\x96\\xdc\\xc4\\x78\\x1a\\xf7\\x43\\\n\\xa4\\x3b\\x06\\xbc\\x5c\\xf1\\x27\\x38\\x3e\\xd3\\xcc\\xb2\\xd9\\x25\\xd8\\xa5\\\n\\x4c\\x5a\\x0a\\x05\\xc2\\x10\\x58\\xe6\\xdd\\x73\\x8d\\x0d\\xa3\\x2d\\x9a\\x72\\\n\\x60\\x5c\\xc9\\xb3\\x04\\xa9\\x4d\\x35\\x94\\x4d\\xd5\\x5e\\xa7\\x07\\xeb\\x28\\\n\\xf6\\xb6\\xd0\\x34\\x2d\\x89\\x76\\x7b\\x2a\\xcc\\x95\\x2e\\x52\\xd2\\x4a\\x0b\\\n\\x12\\x4a\\x48\\xe3\\x8f\\xea\\x25\\x05\\x4d\\x21\\x73\\x89\\x9a\\xbc\\x02\\x8e\\\n\\xd2\\x9c\\x67\\x16\\x2d\\x26\\x9b\\x0d\\xd5\\x6d\\x5f\\x4d\\x02\\xff\\x00\\x8e\\\n\\x38\\x3d\\x22\\xcb\\xa6\\x74\\x9e\\x97\\xd2\\x12\\xd1\\x26\\x7d\\xa2\\x58\\x96\\\n\\x90\\xb5\\x2c\\x1e\\xd4\\xb0\\x6e\\x99\\x66\\x83\\x66\\xae\\xc7\\x30\\x22\\x4e\\\n\\xc5\\x8e\\x5d\\xfe\\xdb\\x07\\x56\\x7d\\xff\\x00\\xaf\\xf0\\x97\\x30\\x25\\x3d\\\n\\xf1\\x3e\\x71\\x12\\xcd\\xc5\\x32\\xb0\\x04\\x71\\x89\\x32\\xce\\xb2\\xf9\\x73\\\n\\x5a\\x92\\xfd\\x63\\x04\\x9d\\xf1\\x78\\x8c\\xcc\\x00\\xa5\\x90\\x97\\x35\\xe7\\\n\\x0b\\xb2\\xac\\x60\\xb5\\x37\\x5d\\xd0\\x97\\x49\\x21\\x5c\\xaa\\x71\\x6d\\xd1\\\n\\xaf\\x4e\\xe1\\xe3\\x0b\\xf6\\x77\\x47\\x4b\\xd2\\x22\\x46\\xab\\xe6\\x49\\x7a\\\n\\x65\\xdd\\xc6\\x11\\xa2\\x6c\\x69\\x98\\x99\\x49\\x92\\x12\\x8d\\x58\\x75\\x1a\\\n\\xd6\\xbc\\x23\\x49\\x68\\xeb\\x2c\\xcb\\x7a\\x2c\\x69\\x03\\x6c\\x93\\x7c\\x0a\\\n\\x0b\\x9b\\x46\\x98\\xd4\\x30\\x8b\\x5d\\x86\\xc9\\x64\\xb1\\xa5\\x3a\\xa0\\xae\\\n\\x21\\x86\\x1c\\xe3\\x4c\\xac\\xce\\x4c\\xc5\\x94\\x94\\x26\\x55\\x25\\x9c\\x48\\\n\\xbc\\x90\\xe7\\x26\\x64\\x92\\x13\\xc4\\x98\\x54\\xc9\\x21\\x12\\xa6\\xca\\x96\\\n\\xd3\\x25\\xca\\xd5\\x21\\x25\\x8b\\xa9\\xbb\\x44\\x52\\xe9\\x08\\xa9\\x4b\\xbb\\\n\\x38\\x0d\\x16\\x59\\xc3\\x56\\xca\\x00\\xad\\x20\\x36\\xd3\\x12\\x4b\\x87\\xc3\\\n\\x7b\\x85\\x71\\x81\\x35\\x85\\x52\\xe5\\xb8\\x63\\xe1\\xe7\\x16\\x4f\\x77\\x91\\\n\\x32\\x6c\\xc4\\x21\\x57\\xa6\\xa8\\xa9\\x7b\\x40\\x0b\\xc4\\xba\\x9b\\x8c\\x4c\\\n\\xb4\\xaa\\x52\\x9c\\x4c\\x64\\xcc\\x22\\x84\\xbe\\x1c\\x72\\xeb\\x9c\\x4d\\x99\\\n\\xae\\xbd\\x7e\\x60\\x21\\x52\\x96\\xb4\\x80\\x19\\xc8\\x01\\xc1\\x72\\x6b\\xf7\\\n\\xe1\\x13\\x16\\xa6\\xca\\x9c\\x5b\\x91\\xf1\\xa7\\xd4\\x43\\xed\\x92\\x05\\x5d\\\n\\xdd\\xfa\\xfc\\x72\\x81\\x69\\xb6\\x4a\\x50\\x28\\x9a\\x10\\x1e\\xa9\\x6c\\x47\\\n\\xd4\\xc4\\xcb\\x5a\\xe7\\xdd\\xd6\\x39\\xb8\\xea\\xdd\\x52\\x08\\x25\\xb7\\x94\\\n\\x92\\x3b\\xde\\x16\\x99\\x6b\\x5d\\xf4\\x02\\x86\\x38\\x1c\\x5c\\x3e\\x3d\\x64\\\n\\x0c\\x28\\x95\\x57\\x80\\x15\\xae\\x1d\\xe3\\x18\\x95\\xb0\\x49\\xdc\\x93\\xdf\\\n\\xeb\\x1a\\xd3\\x34\\x3a\\x10\\x02\\x92\\xa4\\x07\\xc6\\x8a\\x53\\x2b\\xfe\\xd7\\\n\\x89\\x1a\\x2a\\xd7\\x3a\\xea\\xae\\x29\\x37\\x9c\\x96\\x05\\x41\\x2d\\x5a\\x9a\\\n\\x6f\\xa1\\xa3\\xb4\\x4c\\xd0\\xd6\\xb7\\xbc\\x03\\x80\\xce\\x47\\xe3\\x3a\\xc7\\\n\\xf9\\x3d\\xa4\\x83\\xac\\x48\\x4a\\x5f\\x69\\x4d\\xc4\\x37\\xda\\x2c\\xd6\\x50\\\n\\x26\\x19\\x21\\x26\\xf0\\xa6\\xb1\\x49\\xd8\\x0c\\x48\\xcf\\x73\\x70\\x7c\\x63\\\n\\x47\\x59\\xe5\\xa2\\x66\\xb3\\x5a\\x9b\\xd2\\x93\\x75\\xee\\xd1\\xd3\\x8b\\x37\\\n\\x2c\\x09\\x2c\\xcd\\x9d\\x53\\x69\\x9d\\xa4\\xb5\\x68\\x43\\xa2\\x5c\\x84\\xdd\\\n\\x98\\x83\\x5b\\xe1\\x4c\\xca\\xca\\xed\\x07\\x8b\\xc5\\xa2\\x4a\\x25\\x5d\\x44\\\n\\xa0\\x13\\x56\\x3c\\x70\\xfa\\xc7\\xf4\\xf8\\xfd\\xe1\\x66\\xf2\\x89\\xe3\\x02\\\n\\xea\\xb6\\x4a\\x5d\\xd9\\x8e\\x43\\xba\\x0c\\x9d\\x43\\xdd\\x55\\x4e\\xe1\\x81\\\n\\x6f\\x41\\x8c\\x0b\\x44\\xe9\\x6e\\xeb\\xbc\\xcd\\x58\\xb1\\xe9\\x24\\x4b\\x94\\\n\\x95\\x29\\x05\\x4a\\xa9\\xc4\\x0c\\xe9\\xe9\\x16\\xcd\\x28\\xa9\\xe2\\xea\\x68\\\n\\x1d\\xda\\xf7\\x0c\\x61\\x8d\\xe5\\x28\\xab\\xaf\\xdc\\x59\\xd4\\xcb\\x09\\x20\\\n\\xb1\\xeb\\x08\\x48\\x32\\xe5\\xec\\xf3\\x85\\xcd\\x3f\\x30\\x78\\xb4\\x59\\x64\\\n\\xda\\x3b\\x49\\x11\\x3a\\xc5\\x3a\\xcb\\x30\\x4c\\x94\\x59\\x20\\xe4\\x37\\x1d\\\n\\xf8\\x78\\xc6\\x8d\\xb6\\x99\\xa5\\x37\\xaa\\x53\\x4c\\x78\\x47\\xb4\\x33\\xc9\\\n\\x37\\x42\\x4d\\x69\\x8f\\x1f\\x08\\xb2\\xda\\xa5\\x59\\xb4\\x5a\\xe5\\xea\\x9d\\\n\\x4b\\x4f\\x68\\x16\\xc3\\x78\\x68\\xb4\\x5a\\x13\\x38\\x4b\\x4c\\xa9\\x97\\x66\\\n\\x5d\\x48\\x2c\\x09\\xda\\xa3\\xd3\\xae\\x31\\xfe\\x53\\x6e\\xb4\\xc9\\xbe\\x66\\\n\\x51\\x2c\\x1b\\x54\\xa7\\x65\\x77\\xd3\\x0a\\xfd\\xa2\\x44\\x91\\x2a\\xf4\\xb9\\\n\\x89\\x37\\xd3\\x2b\\xb5\\x80\\x49\\x59\\x29\\x0a\\x6c\\xfb\\x27\\x94\\x4c\\x06\\\n\\x5f\\x65\\x25\\x7c\\xb9\\xc6\\x8d\\xd1\\x33\\x74\\x9d\\xac\\x15\\x20\\xc9\\x48\\\n\\x53\\xb9\\x05\\x57\\xb0\\x6c\\x18\\x73\\x78\\x91\\x36\\x5e\\x8f\\x91\\x22\\xcf\\\n\\x29\\x21\\x0a\\xa8\\x9b\\x3c\\x16\\x0c\\x05\\x36\\x78\\x97\\xc4\\xc7\\xb6\\x9a\\\n\\x49\\x56\\xfd\\x27\\xee\\x52\\x17\\xad\\xba\\x6f\\x2a\\x60\\x34\\x60\\x5f\\xb3\\\n\\xc7\\xa7\\x81\\x22\\x78\\x5a\\x65\\xa6\\x51\\x59\\xc0\\x11\\xb8\\x9a\\x9d\\xef\\\n\\x16\\x3d\\x07\\x6a\\xb4\\x14\\x25\\x56\\x75\\xa2\\x5f\\xff\\x00\\x2b\\x5e\\x77\\\n\\x35\\xd9\\x01\\xdb\\x8b\\x8c\\xfb\\xb4\\x36\\x80\\xb3\\x68\\xe4\\x26\\x73\\x85\\\n\\x2c\\xa6\\xed\\xcb\\x97\\x4d\\x6a\\xef\\x53\\x97\\x9c\\x4d\\x69\\x82\\xe8\\x21\\\n\\x00\\x77\\xf7\\x75\\x8c\\x4b\\x17\\x8b\\x0f\\xbc\\x4d\\xb2\\xcc\\x09\\xbe\\x93\\\n\\xdc\\x07\\xee\\x11\\x22\\x6c\\xca\\x17\\x47\\x9e\\x1e\\x18\\xc7\\xba\\xa6\\xed\\\n\\xd3\\x30\\x24\\xef\\x22\\xb1\\x36\\x49\\x93\\x89\\x7c\\x20\\xa0\\x06\\x65\\x5e\\\n\\x71\\xba\\x06\\xc9\\x0a\\xdd\\x0a\\x9a\\x55\\xc2\\x16\\xea\\xc8\\xe7\\x94\\x19\\\n\\x4b\\xe8\\x18\\x9e\\x41\\xd3\\x21\\xa3\\x48\\xda\\x0c\\x8b\\x1a\\xa6\\x4b\\x04\\\n\\xab\\x07\\x4d\\x72\\x8d\\x1b\\x67\\x36\\x89\\xbe\\xfd\\x35\\xdd\\x0e\\x1d\\x5f\\\n\\xdd\\x42\\xdc\\x23\\xda\\x35\\x2a\\x5d\\x8d\\x45\\x21\\xf9\\x53\\x73\\x65\\xcb\\\n\\xf7\\x02\\x72\\xad\\x37\\x6f\\x56\\x5a\\x65\\x94\\x1d\\x92\\x01\\x5a\\x16\\x52\\\n\\xa5\\x12\\x71\\x02\\xe8\\xba\\xd4\\x53\\xde\\x75\\x6c\\xc0\\xb2\\x5d\\xd6\\x95\\\n\\x28\\x6d\\x14\\xad\\x29\\xcd\\xb0\\x18\\xbe\\x2e\\xe4\\x80\\x3b\\x9a\\x13\\xb2\\\n\\x9d\\x8d\\xa5\\x19\\x81\\x2b\\x3b\\x4c\\xc0\\x9c\\x3c\\x19\\xfe\\x62\\x4a\\x9e\\\n\\xb1\\x78\\x8d\\xc3\\xae\\x30\\x9b\\xf9\\x8a\\x1c\\xc0\\x3d\\x75\\x58\\x5f\\xc4\\\n\\xba\\x16\\x42\\x50\\xef\\x78\\xd1\\x8e\\x46\\xbe\\x78\\x01\\x43\\x83\\xc1\\x4c\\\n\\xa4\\xcb\\x53\\x4f\\x45\\xf0\\x95\\x10\\x90\\xb4\\xba\\xb8\\x06\\xad\\x5b\\xac\\\n\\x62\\x72\\x96\\x31\\x05\\xce\\x20\\x64\\x5a\\x99\\x74\\x77\\xc4\\xb5\\x0b\\x80\\\n\\x91\\x53\\x41\\xe7\\x53\\xc1\\x9b\\x9c\\x1d\\xea\\xa3\\xef\\xa4\\x3a\\x7f\\x92\\\n\\x70\\xae\\xd0\\x86\\xbd\\x44\\xed\\x1c\\x9b\\xae\\x50\\x90\\xa2\\x2a\\x85\\x25\\\n\\xb1\\x04\\x54\\x73\\x67\\x81\\xf3\\x0c\\xee\\x98\\xb3\\x85\\x13\\x75\\x34\\x2a\\\n\\x5c\\xb1\\x5d\\xd7\\xb6\\x9b\\x88\\x15\\x8d\\x1d\\x6a\\xb6\\x5c\\x5a\\x0c\\xf9\\\n\\x4a\\xb9\\xb3\\x88\\xbc\\x08\\x70\\xca\\x0e\\x70\\x1e\\xad\\x90\\x85\\xe9\\x0b\\\n\\x4c\\xb9\\xaa\\x96\\x15\\x2c\\xaa\\x8a\\x64\\x97\\xe0\\x1e\\xbf\\xdb\\x4e\\x5d\\\n\\xf0\\xbd\\x2b\\x3c\\x85\\x09\\xaa\\x4b\\x21\\x06\\x61\\x96\\x08\\xbe\\x42\\x03\\\n\\xf6\\x5f\\x01\\x8e\\x11\\x67\\xb4\\xcb\\x44\\x91\\x35\\x6e\\x56\\x59\\x4a\\x0b\\\n\\x0c\\x41\\x35\\xec\\xe4\\xc7\\x01\\x8c\\x2e\\xde\\xb4\\x56\\x5d\\x52\\xa2\\x48\\\n\\x00\\x3d\\xe2\\x6a\\xdc\\x86\\x64\\x8f\\xce\\x8c\\xd2\\xea\\xb2\\xac\\xa6\\xe3\\\n\\xaa\\xd0\\xc5\\x45\\x9d\\xae\\x86\\x09\\x27\\x2c\\x4b\\x03\\xcc\\x34\\x5f\\xf7\\\n\\x84\\x89\\x9d\\xe7\\x3c\\xba\\xca\\x26\\x41\\x89\\x43\\x69\\xfd\\x70\\x8b\\x48\\\n\\x05\\x2e\\x14\\x15\\x4c\\xb1\\xf2\\xeb\\x38\\x58\\x35\\x0d\\x8b\\x34\\x09\\x6a\\\n\\x28\\xc6\\xef\\x08\\x4c\\xb5\\x05\\x13\\x58\\x63\\x83\\x1f\\x38\\x94\\x10\\x99\\\n\\xb5\\x2d\\xcc\\xf1\\xeb\\xc2\\x26\\x30\\x4b\\x83\\x4b\\xb8\\xe5\\xca\\x15\\x52\\\n\\x5a\\xb5\\x8b\\xaa\\xdc\\x60\\x49\\x95\\x68\\x90\\xa0\\xb0\\x12\\x5b\\x96\\x4d\\\n\\x12\\x6c\\xeb\\xb1\\xdb\\x4c\\xb0\\xf7\\x54\\x6f\\x02\\xcc\\x31\\x68\\xd2\\xc8\\\n\\x0b\\x98\\x87\\xcd\\xfe\\xfe\\x91\\x3a\\x61\\x4a\\x75\\x5f\\x28\\x0c\\xf8\\x38\\\n\\xfb\\x6f\\x8b\\x3d\\xa2\\xc1\\x65\\x52\\x16\\xa9\\x2a\\x56\\x05\\x64\\x24\\x9a\\\n\\xe3\\xc8\\x73\\xf0\\x85\\xfb\\x51\\x61\\x55\\x8e\\xe5\\x9d\\x08\\x42\\x80\\x62\\\n\\x0b\\x62\\xde\\x3f\\x88\\x9f\\x6e\\x33\\x8a\\xe6\\x21\\x90\\x9f\\x98\\xb5\\x03\\\n\\x71\\xc3\\x13\\x9e\\x51\\xa1\\x6c\\x88\\xb6\\x84\\x92\\xca\\x77\\xa8\\xaf\\xdc\\\n\\x3f\\x4f\\x12\\x2c\\x88\\xb2\\x4a\\x48\\x97\\x24\\x96\\x18\\x84\\xc7\\xb4\\x36\\\n\\xe4\\x48\\xb0\\xcf\\x06\\x70\\x97\\x32\\x72\\x4a\\x10\\x92\\xa6\\x5b\\xe7\\x74\\\n\\x62\\x4b\\x6e\\x8d\\x13\\xa1\\x26\\x28\\x1b\\x72\\xaf\\x4e\\x9b\\x3a\\x63\\x10\\\n\\x05\\xe5\\x25\\x04\\xe7\\x42\\xcc\\x33\\xdd\\xe7\\xa2\\x7d\\x97\\x4c\\xc9\\xa2\\\n\\x64\\xc9\\x24\\x0f\\xe4\\xa4\\x96\\xfb\\x44\\xbd\\x1f\\x66\\x91\\x25\\x32\\x65\\\n\\xcb\\x4a\\xae\\x8e\\xd0\\x0f\\x52\\x5f\\x1e\\xb7\\x47\\xf9\\x7b\\xac\\xe5\\x4c\\\n\\x2b\\xe1\\x16\\x8b\\x09\\x45\\x08\\x50\\xce\\x24\\xea\\x81\\x62\\xb4\\xbd\\x31\\\n\\x57\\xe6\\x25\\x29\\x2a\\x37\\x7b\\x49\\xc5\\xc5\\x43\\xfd\\xc7\\xda\\x17\\x25\\\n\\x83\\x21\\x06\\xad\\x50\\x3e\\xd0\\xab\\x0a\\x95\\x8b\\xa7\\x8a\\xa9\\x0a\\xb3\\\n\\xca\\x9e\\x8b\\xa5\\x69\\x74\\x86\\xc4\\x65\\xdf\\x13\\x6c\\x8a\\x90\\xa2\\x12\\\n\\x0a\\x81\\x73\\x4a\\xb7\\x38\\x98\\xb4\\xa1\\xef\\xa8\\x27\\x99\\x6c\\xe0\\x4c\\\n\\x41\\xc1\\x69\\x3d\\xf1\\x46\\x06\\x9e\\x39\\xf8\\xc3\\xa3\\xf9\\x27\\xfd\\xc3\\\n\\xef\\x16\\x89\\x52\\x91\\xa5\\x9d\\xa2\\xdb\\x30\\x2a\\x52\\xa5\\x26\\xa0\\x92\\\n\\xed\\xcb\\x9c\\x58\\xa4\\xb5\\x96\\xe7\\x2f\\x22\\xf1\\xed\\x1d\\xa7\\xe1\\x6a\\\n\\x9f\\x0c\\x7e\\xdd\\x73\\x85\\xd8\\xed\\x21\\x09\\x52\\x02\\xbb\\x40\\xe0\\x0a\\\n\\x6a\\x1d\\x3c\\xc0\\xce\\xb5\\xac\\x01\\x35\\x0e\\x26\\xe3\\xf2\\x9a\\xd4\\x0c\\\n\\x7e\\xa3\\x18\\x9a\\x93\\x74\\x04\\x50\\xba\\x18\\x0e\\x0d\\xf4\\x10\\x8b\\x05\\\n\\xa2\\x76\\xfc\\x77\\x37\\xd0\\xbf\\x46\\xb1\\x32\\xcb\\x69\\xb3\\x04\\x89\\x98\\\n\\x36\\xcf\\xf7\\x00\\x2b\\x4f\\x33\\xc2\\xb1\\x31\\x60\\xec\\xe2\\x70\\x50\\xe7\\\n\\xf5\\x6c\\x21\\x36\\x5d\\xb4\\x91\\x95\\xda\\xf0\\x1d\\x74\\xd4\\x9b\\x20\\x97\\\n\\xa7\\x5d\\x78\\x72\\x85\\x49\\xb4\\x05\\xb5\\x6e\\xfc\\xa7\\x16\\xdf\\x91\\x89\\\n\\x72\\x66\\x12\\x2f\\x83\\x76\\xad\\xe7\\x16\\x4d\\x08\\x67\\xcb\\x0a\\xba\\xee\\\n\\x97\\xa8\\xa7\\x79\\xdf\\x9e\\x7b\\xa2\\xcf\\xec\\xbc\\xc3\\x40\\xc8\\xa1\\xc1\\\n\\x35\\x7c\\x8b\\x9c\\x39\\x36\\x79\\x42\\xfd\\x94\\x37\\xcd\\xf2\\xbd\\xa9\\x61\\\n\\x25\\x89\\x63\\x8b\\x9e\\xe2\\x71\\xc6\\x2d\\x7e\\xcb\\xdc\\xb3\\x7f\\xc3\\xa4\\\n\\xae\\x68\\x52\\x46\\xcd\\x57\\x73\\x69\\xc9\\xdf\\x93\\x9c\\xe2\\x4e\\x86\\x9b\\\n\\x25\\x42\\xf2\\x7f\\x91\\x14\\xf0\\x24\\xe2\\x00\\x6e\\x8c\\x58\\x52\\x90\\xa9\\\n\\xcb\\x47\\x62\\x6a\\xb5\\x82\\xa7\\x12\\x18\\xe3\\x93\\x8e\\xe7\\x85\\x4b\\x72\\\n\\xa9\\xf9\\x8d\\x9e\\xf0\\xe7\\x3d\\xcf\\xeb\\x16\\x69\\x02\\x74\\xf3\\x35\\xc8\\\n\\xd6\\xbc\\xb0\\x73\\x29\\x4c\\xb5\\x13\\x71\\xf3\\xaa\\xb2\\xaf\\x6b\\x08\\x4d\\\n\\x92\\xf3\\x80\\x14\\xc9\\xa6\\x47\\x83\\x12\\xcc\\xe7\\x36\\xec\\xc2\\xe4\\xdd\\\n\\x2e\\x5c\\x8c\\x80\\x60\\x91\\xf9\\x78\\x4d\\xa2\\x6a\\x66\\xa0\\x4b\\xec\\xb9\\\n\\x76\\xa3\\x17\\xc3\\x7f\\x7e\\x06\\x34\\x4c\\xe9\\xaa\\x4a\\x42\\xea\\x14\\x41\\\n\\x3d\\xe2\\x2d\\x1e\\x90\\x22\\x55\\x55\\x77\\x79\\x02\\x27\\xca\\x32\\x83\\x90\\\n\\xce\\x1b\\xc6\\x15\\xfd\\x51\\xd6\\xf8\\x38\\xf7\\x7f\\x8a\\x50\\x81\\xf1\\x26\\\n\\x50\\x0a\\xb9\\x8b\\x6e\\x9c\\xb1\\x4a\\xb3\\x19\\x69\\x5a\\x42\\x86\\x54\\x7a\\\n\\xfe\\xb9\\x45\\x8b\\x4b\\xcf\\x99\\x6b\\x65\\x1f\\x82\\x52\\xba\\x9c\\x01\\xa3\\\n\\x75\\x84\\x27\\x49\\xa0\\x60\\xa0\\x4c\\x4e\\xd2\\x93\\x91\\x50\\xec\\xf4\\xf0\\\n\\x89\\xda\\x70\\x89\\xa8\\x52\\xcd\\x5b\\xeb\\x02\\xdc\\x9b\\x6a\\xa5\\xed\\x6f\\\n\\xa7\\x76\\x5b\\xcd\\x62\\xdb\\x33\\x57\\x79\\xdc\\xee\\xe1\\xd1\\x78\\x55\\xa8\\\n\\x28\\x33\\xe0\\x9c\\x07\\x5f\\x48\\x91\\x2f\\x5a\\xad\\x5b\\xee\\x7e\\x9b\\xf3\\\n\\x13\\x91\\xee\\xa9\\x4a\\x88\\x2a\\x4a\\x46\\xd4\\xa1\\xff\\x00\\x30\\x62\\xdc\\\n\\xc9\\xcf\\x8c\\x68\\x1b\\x67\\xbe\\x01\\x2e\\x48\\x36\\x43\\x85\\xd2\\x0a\\x7b\\\n\\xfa\\xa5\\x3c\\x34\\xb2\\xf4\\x8e\\x87\\x96\\x67\\x8d\\x21\\x79\\x04\\x5e\\x08\\\n\\xbe\\xe7\\x0c\\x2a\\x73\\xdc\\xf1\\x6d\\xd3\\x13\\x74\\x99\\x06\\xd3\\x2c\\x81\\\n\\x29\\x57\\xd2\\xb3\\x81\\x7a\\x10\\x1f\\x1a\\x74\\x33\\xb2\\xfb\\x4e\\x74\\x73\\\n\\x00\\x15\\x74\\x1e\\x6e\\xd8\\x81\\x9f\\x2c\\x49\\xca\\x34\\x5f\\xff\\x00\\x93\\\n\\x2c\\x82\\x4d\\xc9\\xa8\\xb8\\x68\\xe0\\x86\\xc4\\x3e\\x06\\xa3\\x91\\x68\\xd0\\\n\\x3e\\xd2\\x49\\xd2\\xca\\x0a\\x92\\x45\\xc5\\x12\\xc0\\x1d\\xc5\\x8c\\x2b\\x66\\\n\\x61\\x3f\\xda\\xfe\\x62\\x2d\\x76\\x8d\\x61\\x29\\xdd\\x8f\\x5d\\x7a\\xc4\\x8b\\\n\\x0d\\xf1\\x7f\\x18\\x33\\x95\\x66\\x55\\xc1\\xf5\\xcf\\x8b\\x67\\xdd\\x08\\xd2\\\n\\xc5\\x00\\x39\\xa4\\x4c\\xd2\\x41\\x72\\xc4\\x22\\x6b\\x9a\\xc4\\xc9\\x80\\x4a\\\n\\x26\\x11\\x62\\x4d\\xab\\x6d\\x7d\\x8c\\xdf\\x71\\xea\\xbe\\x90\\xad\\x1b\\x2c\\\n\\x7f\\x4e\\x26\\x58\\x66\\x35\\x1e\\x98\\x53\\x7c\\x1b\\x04\\xe7\\xa0\\xa7\\x5c\\\n\\x22\\xda\\x01\\xd3\\x0c\\x70\\x8f\\x69\\x67\\x23\\x46\\x58\\xc5\\xa2\\x51\\xba\\\n\\xab\\xec\\x46\\x2f\\x86\\x45\\xd9\\xf8\\x67\\x1a\\x2b\\x48\\x26\\x66\\x88\\x45\\\n\\xbd\\x47\\x64\\xa5\\x2f\\xc4\\xcc\\xa0\\xeb\\xa3\\x36\\xc3\\x37\\x49\\xda\\x14\\\n\\xa5\\x20\\xae\\x49\\x53\\xd5\\xda\\xae\\x4e\\x07\\x00\\x18\\x08\\xb4\\xe8\\xdb\\\n\\x54\\xbf\\x84\\xe5\\x32\\xcd\\x05\\xd4\\xa5\\xc2\\x46\\x00\\x38\\x7e\\xcf\\x8b\\\n\\x6f\\x68\\xb6\\xe8\\xdf\\x75\\xb3\\xd2\\xc8\\x6d\\x13\\xa6\\xed\\x22\\x71\\x2b\\\n\\xf8\\x52\\xc6\\x21\\xaf\\x00\\x77\\xe1\\x9b\\xf3\\xd1\\x56\\x14\\x4d\\x9a\\xf6\\\n\\xb9\\x8c\\xb0\\xa7\\x44\\xb5\\x30\\x76\\xcb\\x2d\\xfe\\x59\\xd6\\x24\\x58\\x24\\\n\\x26\\xa1\\x9f\\x1a\\xab\\x0c\\xb6\\x7e\\xb4\\xfc\\xe9\\x89\\xe1\\x52\\xcc\\x89\\\n\\x09\\x00\\xca\\xd8\\x59\\x01\\xca\\x88\\x0c\\xef\\xcb\\xc4\\xbb\\xc0\\x96\\x35\\\n\\xa4\\x94\\xb2\\x9c\\x05\\x57\\x10\\xfb\\x8e\\x19\\xe1\\xbe\\x13\\x85\\x37\\xd2\\\n\\x16\\x48\\x07\\x7b\\x13\\x13\\x4a\\x8c\\xa1\\x74\\xb2\\x8e\\x6c\\x31\\xbc\\x44\\\n\\x68\\xb0\\x83\\x31\\x1e\\xfa\\x8d\\x62\\x7e\\x5f\\x94\\x5e\\xe6\\x9e\\x11\\x66\\\n\\xb1\\xd9\\x75\\x08\\x36\\x54\\x09\\x74\\x05\\x81\\x27\\xc1\\xcc\\x0d\\x93\\x46\\\n\\x1e\\x10\\x25\\xaa\\x6c\\xab\\xe7\\x1a\\xf7\\xc0\\xd6\\xc8\\x9c\\x48\\x56\\xca\\\n\\x92\\x45\\x47\\x8f\\xe7\\x18\\xb6\\x4a\\x42\\xc5\\xf5\\x00\\x56\\xac\\xb0\\x24\\\n\\x66\\x76\\x70\\xeb\\x94\\x2a\\xcc\\x9b\\x25\\xb0\\x48\\x48\\x22\\x52\\x66\\x2d\\\n\\x26\\x58\\x18\\xdf\\x17\\xc7\\x1a\\x28\\xd1\\xb8\\xe3\\x84\\x2a\\xc4\\xb2\\xab\\\n\\x42\\xdf\\xe1\\xa0\\x93\\x2e\\xce\\xec\\x94\\xae\\xe3\\xdf\\x98\\xaa\\x92\\xe2\\\n\\xa0\\x60\\x90\\xea\\x2f\\x96\\x8f\\xd5\\x19\\x73\\x13\\x31\\x2f\\x3e\\x41\\x4d\\\n\\xd9\\x89\\xbc\\x0e\\xb2\\x67\\x6d\\x12\\xc1\\xa5\\x50\\x6e\\xd4\\x16\\x04\\xe1\\\n\\x74\\x98\\x43\\xf6\\x4f\\x6b\\x0d\\x97\\x48\\x48\\x3c\\xbe\\x63\\x91\\xc4\\x25\\\n\\xce\\x71\\x68\\xb3\\x49\\xd5\\x14\\xa0\\x07\\x23\\x07\\x5d\\x1c\\x31\\x6a\\xba\\\n\\x5b\\x00\\x01\\xa6\\x59\\x98\\x3a\\x34\\xa6\\x74\\xb3\\x2d\\x33\\x12\\x96\\x20\\\n\\xbc\\xc5\\x2a\\x94\\x03\\x12\\x6a\\x47\\x22\\xf8\\xc6\\x8c\\xa0\\x08\\x18\\x24\\\n\\x0a\\xef\\x39\\xb6\\x7d\\xf9\\xc4\\xf5\\x18\\x73\\x16\\x09\\x66\\x6c\\xf4\\xf0\\\n\\x6f\\x3a\\x46\\x98\\x97\\x72\\x5a\\x02\\x4b\\x18\\x28\\x20\\xba\\xe6\\x57\\x7d\\\n\\x3e\\xc7\\xac\\xa3\\x89\\x20\\xf8\\x75\\xf9\\x83\\x3a\\xb7\\x45\\x3a\\xc3\\xa6\\\n\\x84\\x12\\xa2\\x38\\x87\\xef\\xa4\\x5b\\x65\\x28\\xd9\\x56\\x01\\x65\\x33\\x08\\\n\\x9d\\xa3\\x2d\\x46\\xd2\\xbd\\x64\\xc5\\xa9\\x37\\xa8\\x0e\\xee\\xbf\\x3b\\xe2\\\n\\xc7\\x66\\x32\\xc0\\x2b\\xfe\\x98\\x4e\\x1c\\x68\\xd5\\xc7\\x2d\\xf0\\xb9\\xd6\\\n\\x79\\x7c\\x2a\\x03\\xba\\xb3\\xe6\\x62\\xd5\\xa4\\xed\\x2a\\x0a\\x08\\x9b\\x83\\\n\\xe4\\x9a\\x0e\\x34\\xfc\\x44\\xcb\\x44\\xc9\\x81\\x66\\x72\\xef\\x31\\x60\\x59\\\n\\xb6\\x68\\x68\\xdc\\x5c\\x72\\x8d\\x0a\\x94\\x5e\\x96\\xef\\x4b\\xde\\x69\\x2d\\\n\\xf4\\x3c\\xc4\\x69\\x29\\xa9\\x51\\x5a\\x52\\x2a\\xed\\xe7\\xf7\\xcb\\x08\\x44\\\n\\xb2\\x55\\xb4\\xfe\\x3c\\x70\\xfa\\x9e\\xec\\x63\\x44\\xcb\\x4a\\xa7\\x2e\\xf0\\\n\\xfe\\x27\\x1f\\x1a\\x78\\x46\\x91\\x71\\x32\\x55\\xc6\\xbf\\xf2\\x93\\x50\\xf4\\\n\\xf1\\xc6\\x24\\x84\\x22\\x4e\\xb4\\xbe\\xbd\\xbb\\x49\\xd9\\x2f\\xfe\\x91\\x4f\\\n\\x28\\xd2\\x72\\x74\\x85\\xb0\\x99\\x93\\x67\\x4c\\x5c\\x9b\\xcf\\x2d\\x05\\x4c\\\n\\xc0\\x65\\x93\\xb9\\xdf\\x0a\\x4d\\xae\\x72\\x05\\x9c\\x1d\\x89\\x45\\xfb\\x20\\\n\\x1a\\xd0\\xb9\\x67\\xe4\\xe7\\x18\\xff\\x00\\x2f\\x9c\\x1a\\xf2\\x9c\\xd4\\x87\\\n\\x6a\\x66\\x3e\\xdf\\x78\\xf7\\x19\\xa7\\xb4\\x2f\\x72\\x0c\\x7c\\x43\\x78\\x47\\\n\\xb3\\x7a\\x53\\x48\\xe8\\xbb\\x4a\\x2c\\xf6\\x69\\x2b\\x4a\\x05\\x41\\xba\\xfd\\\n\\xa2\\x54\\x77\\xf5\\xdd\\x16\\x2d\\x27\\x6b\\xb4\\xc9\\x0a\\x9c\\x08\\x5d\\xd0\\\n\\xea\\x20\\x07\\xe1\\xba\\x04\\xe2\\x66\\x12\\x4b\\xd7\\xeb\\x02\\xdc\\xa9\\x69\\\n\\x29\\x96\\x58\\x72\\x07\\x9e\\xf8\\x58\\x9d\\x68\\x26\\x60\\x27\\x77\\x83\\xf0\\\n\\xfd\\xc0\\xb1\\x4c\\x98\\xe9\\x51\\xa5\\x4e\\xec\\x2a\\xf1\\xf1\\x25\\xab\\x56\\\n\\x54\\xe9\\x07\\xae\\x30\\xab\\x40\\x96\\x52\\x09\\xa5\\x3d\\x22\\x75\\xb6\\xcf\\\n\\xee\\xec\\xe2\\xf7\\x3a\\xf5\\xe5\\x16\\x1b\\x7c\\xa5\\x4a\\x5c\\xbb\\xe2\\xb4\\\n\\xe3\\xd7\\x28\\x4c\\xd9\\x09\\x43\\xb8\\xf1\\xfd\\xc6\\xb9\\x13\\x13\\xb0\\xb4\\\n\\xe1\\xc2\\x14\\xb0\\xf5\\x98\\x3c\\xbe\\xd1\\x6a\\x29\\x56\\x9c\\x52\\x2f\\x8d\\\n\\x94\\x87\\x39\\x75\\x48\\xf6\\x82\\x7f\\xf9\\x9e\\x95\\x4d\\x85\\x27\\xfe\\x1e\\\n\\x54\\xb9\\x66\\x65\\xee\\xca\\x95\\x79\\x4f\\x75\\xbb\\xb1\\x8b\\x3c\\xf9\\x53\\\n\\x51\\x2f\\x46\\xd9\\xd0\\xa4\\x49\\x94\\xc8\\x58\\x20\\x6d\\x6a\\xea\\x19\\xbe\\\n\\x5a\\x0d\\xd9\\x72\\x8b\\x1c\\xbb\\x24\\xbb\\x32\\x13\\x75\\x96\\xd5\\x76\\xdd\\\n\\xe3\\x1a\\x6e\\x52\\x42\\x11\\x68\\x41\\x48\\x48\\x67\\x1f\\x36\\x5d\\x74\\xd0\\\n\\x85\\x26\\x6c\\x89\\x29\\xf8\\x77\\x57\\x2f\\x68\\x2b\\x1d\\xd4\\xa4\\x69\\xbd\\\n\\x0d\\x25\\x24\\xda\\xac\\x87\\x57\\x68\\x94\\xea\\x96\\xe5\\xa5\\xdf\\x62\\x36\\\n\\x98\\x2a\\x84\\x1f\\xe2\\x71\\xc2\\x26\\xdb\\x6d\\xf6\\x62\\xcb\\x75\\x11\\x74\\\n\\x9d\\x5b\\xdd\\xdc\\x19\\x54\\x76\\xe4\\xed\\x74\\xb3\\x10\\x63\\x44\\xe9\\x49\\\n\\x33\\x67\\x4f\\x16\\xbb\\x3d\\xa0\\xaa\\xfa\\xbf\\xf8\\xc8\\xbd\\xbf\\xb7\\x5c\\\n\\x30\\xca\\x2d\\xb6\\x64\\x6b\\x15\\x3a\\x52\\x83\\x5e\\x3b\\x15\\xbe\\x43\\xb8\\\n\\xe1\\x9f\\x76\\xec\\xa2\\x52\\xd4\\xa7\\x06\\x5a\\xe5\\xb1\\xa5\\xfa\\x3f\\x28\\\n\\x9b\\x33\\x6e\\xe8\\x05\\xf0\\x38\\x35\\x7c\\xe2\\x6d\\xe4\\x1b\\x3a\\x12\\x93\\\n\\x35\\x53\\x4d\\x02\\x32\\x72\\x71\\x7e\\xb3\\xe1\\x12\\xfd\\x9f\\xb5\\x8b\\x24\\\n\\xa9\\xe4\\xa3\\xf9\\x84\\x80\\xad\\x60\\xa6\\x67\\x06\\xc7\\x2d\\xdc\\x63\\x46\\\n\\x5b\\x55\\x2b\\xe1\\x2d\\x2b\\xa5\\x38\\x6e\\xdf\\x01\\xd4\\x1d\\x20\\x9e\\x9e\\\n\\x35\\xca\\x44\\x92\\x90\\x93\\x9d\\x39\\xc4\\xdb\\x4c\\xd4\\xad\\xf5\\x4a\\x98\\\n\\x30\\xba\\x90\\x1c\\x57\\x1a\\x9c\\x06\\x27\\xeb\\x9d\\xbf\\x48\\xd9\\xec\\xe1\\\n\\xd6\\x09\\x53\\x55\\x09\\x21\\xd3\\xfe\\xac\\x87\\x54\\x82\\x0d\\xab\\x49\\x59\\\n\\x6d\\x60\\x94\\x4a\\xb6\\x2d\\x01\\x2e\\x36\\xbb\\x41\\x24\\x97\\x0c\\xc5\\x38\\\n\\xa9\\x39\\x61\\x80\\x31\\xa5\\x24\\x4a\\xb1\\xeb\\x10\\x86\\x50\\x28\\xb8\\xb0\\\n\\x2b\\x78\\xe6\\x7f\\x93\\x28\\x10\\x2a\\x7b\\xa3\\x47\\x59\\x0a\\x65\\xda\\xa7\\\n\\xab\\xb5\\x35\\x44\\xcb\\x0c\\x76\\x45\\xea\\xe0\\x1d\\xce\\x78\\x81\\xb2\\x91\\\n\\x5a\\xa9\\x13\\x65\\xcb\\x56\\xad\\x6a\\x2f\\x42\\xe7\\xbb\\xac\\xb9\\x42\\x5a\\\n\\x7a\\xcb\\x39\\xa9\\xc3\\x0e\\xe8\\x97\\xa3\\xd6\\x15\\x7a\\xed\\x29\\x4b\\xdc\\\n\\xdf\\x3e\\x51\\x67\\x91\\xaa\\xc1\\x37\\x45\\x22\\x76\\x03\\xbf\\xfc\\x2c\\x0a\\\n\\xb9\\x34\\xaf\\x70\\x0f\\x1e\\xd1\\xe9\\x94\\x80\\x12\\x95\\x17\\x1c\\x46\\x3d\\\n\\x7a\\xc5\\xa3\\x48\\xdb\\x54\\x8b\\xe9\\x5b\\x70\\x56\\x2f\\x1a\\x1f\\x4d\\x6b\\\n\\x5a\\x4c\\xf5\\x90\\xb0\\x49\\x2f\\x83\\x13\\x46\\xeb\\x84\\x26\\x75\\x9d\\x74\\\n\\x42\\x85\\xfc\\x49\\xa3\\x37\\x74\\x21\\x49\\x0d\\xb4\\x30\\xe2\\xf9\\x36\\x51\\\n\\x6a\\xb7\\x99\\x54\\x50\\x51\\x1b\\x87\\x08\\x99\\x3a\\x5d\\xa9\\x45\\x68\\x21\\\n\\x0d\\x4b\\x8b\\xc6\\x9c\\xb2\\x31\\x3a\\xda\\x10\\xf2\\xd9\\x45\\xb3\\x0c\\xd4\\\n\\xf3\\xaf\\xde\\x2d\\x73\\x66\\x4c\\x53\\xa3\\x66\\xb9\\xf0\\xe1\\x83\\xd7\\x1a\\\n\\xc3\\x90\\x2a\\x4d\\x78\\x9a\\xef\\xc7\\x18\\x28\\x54\\xcb\\xc1\\x26\\xe3\\xef\\\n\\xc2\\x9c\\x9e\\x9f\\xa6\\x8d\\x18\\x45\\x9d\\x29\\xbc\\xa0\\xa3\\x5e\\xce\\xec\\\n\\x33\\xfb\\xc4\\xf4\\xcc\\x55\\xac\\xaa\\xf0\\xb8\\x5e\\x83\\xd6\\x26\\x2b\\x56\\\n\\x6a\\x83\\xb4\\x71\\x6c\\xb7\\xf1\\x8d\\x1f\\x32\\x5a\\x16\\x56\\xe9\\x66\\x14\\\n\\x18\\xe5\\xf8\\xeb\\x1b\\x5a\\xc4\\xf6\\x5c\\xb3\\x74\\xcb\\x72\\xca\\xc4\\xe1\\\n\\x87\\x5f\\x78\\xb1\\x29\\xe9\\x31\\xcd\\x05\\x39\\xee\\x85\\xa5\\x2b\\x17\\x13\\\n\\x2d\\x45\\x38\\x02\\x5b\\x0f\\x1f\\xc4\\x4d\\xd1\\xf7\\x50\\x4c\\xa9\\x46\\xf1\\\n\\x26\\xf1\\xe1\\x88\\xf5\\xe5\\xf5\\xb5\\x48\\x9c\\x92\\x4e\\xa9\\x4c\\x3e\\x61\\\n\\x80\\x61\\xd1\\xef\\x78\\xd1\\x32\\xe5\\x16\\xd7\\x55\\xf1\\xf1\\x6c\\xfc\\xba\\\n\\x30\\x8f\\x71\\xb2\\xa5\\x2b\\x4a\\x51\\x41\\xb8\\x5e\\xa7\\x5b\\xcc\\x59\\xf4\\\n\\xe0\\x20\\xa1\\x48\\x21\\x0c\\xc1\\x9b\\x1c\\x9f\\xce\\x9e\\x50\\x8b\\x6a\\x2f\\\n\\x95\\x39\\x23\\x1f\\xbf\\xa3\\x56\\x24\\x5a\\xec\\xcb\\x67\\x04\\x65\\x56\\x7f\\\n\\x27\\x8f\\x7a\\x91\\x2d\\x2e\\x92\\x1b\\x16\\xe2\\x62\\x76\\x98\\x96\\x90\\x75\\\n\\x61\\x57\\xc6\\x74\\xc3\\x3d\\xfd\\x73\\x83\\xa4\\xc0\\x5d\\xf5\\x85\\x1a\\xbd\\\n\\x19\\xfe\\x82\\x2d\\x96\\xd3\\x68\\x0f\\x2a\\xf2\\x29\\xf3\\x37\\xd2\\x15\\x3e\\\n\\xd0\\x96\\x05\\x4f\\xca\\xf7\\x28\\x4d\\xae\\x7c\\xb6\\x52\\x49\\x0c\\x5c\\x81\\\n\\x8b\\x61\\x0b\\xd3\\x16\\xa5\\x22\\xea\\x4a\\x93\\x4f\\x98\\xe7\\x91\\xfc\\xf7\\\n\\xc5\\x87\\x49\\xdb\\xe5\\xa9\\x7a\\xc9\\xa0\\x87\\x25\\x2c\\x4d\\x03\\xf7\\x44\\\n\\xcb\\x5e\\x91\\x5a\\x8a\\x91\\x35\\x2c\\x78\\x9f\\xb4\\x21\\x73\\x66\\xe9\\x79\\\n\\xf3\\x0a\\x8b\\x5d\\xc7\\xe5\\xc3\\x00\\x70\\x8b\\x25\\xe5\\x5b\\xad\\xb3\\xe6\\\n\\x3b\\x89\\x8a\\x96\\x0f\\xf6\\xa4\\x03\\x8e\\x19\\x9c\\xe3\\x43\\xda\\x5a\\xd9\\\n\\x35\\x75\\x29\\x0a\\x50\\x48\\x1f\\x6d\\xe4\\xf7\\x34\\x59\\xed\\x53\\x67\\xa8\\\n\\x24\\x05\\x24\\x6f\\xba\\x44\\x69\\x2b\\x54\\xd3\\x60\\x58\\x65\\x12\\x85\\x33\\\n\\x04\\x92\\xf7\\x4e\\xec\\xb9\\xe5\\x16\\x0b\\x4c\\xe9\\xf2\\xc2\\x98\\xa4\\x48\\\n\\x37\\x0f\\xab\\x8f\\x42\\x23\\x49\\xe9\\x35\\x2d\\x4a\\x90\\x90\\x49\\x56\\xcb\\\n\\x8c\\x32\\x2e\\xe1\\xcb\\x51\\x9f\\x84\\x59\\xec\\x72\\x55\\x65\\xd6\\x4f\\x09\\\n\\x98\\xa6\\xc0\\x87\\x71\\x88\\x24\\x17\\xf3\\x72\\x49\\xab\\xc4\\xbd\\x09\\x29\\\n\\x45\\x53\\x50\\x8b\\x97\\xc9\\x50\\x00\\x5d\\x67\\xcf\\x7f\\x3e\\x84\\x27\\x44\\\n\\x2c\\x4e\\x33\\x16\\xa7\\x4c\\xb6\\xa3\\xe5\\x9c\\x5a\\x2c\\x12\\xad\\x52\\x57\\\n\\x36\\x5b\\x27\\xdd\\xd0\\xa5\\xa9\\xa8\\x59\\x22\\xf7\\x5c\\xe0\\xcb\\x0a\\x9a\\\n\\x1a\\xb5\\xca\\xb1\\x65\\xb1\\xa6\\xc9\\x3a\\xc7\\x6d\\x9a\\x9b\\xf2\\xe6\\xa8\\\n\\x52\\xe9\\x37\\x36\\x88\\xaf\\xf1\\x76\\xe1\\x8c\\x48\\x54\\x89\\xb6\\x71\\x34\\\n\\x24\\x6a\\xd5\\x2c\\x24\\x37\\x65\\xd9\\xf9\\x61\\x1a\\x56\\xe4\\x89\\xd7\\xe5\\\n\\xd0\\x5e\\x7d\\xd8\\x35\\x23\\x41\\xce\\x97\\x69\\xb2\\xde\\x2c\\xf7\\x70\\x3c\\\n\\xba\\xf1\\x8b\\x74\\xf4\\x49\\x98\\xa4\\x53\\x0e\\x19\\xf5\\xd5\\x62\\x7c\\xf9\\\n\\xf3\\xdd\\x16\\x31\\xf1\\x0f\\xcc\\xd4\\xbb\\x9d\\x6a\\x37\\x74\\xcd\\x66\\xd0\\\n\\x56\\x79\\x44\\xcd\\xd2\\xbf\\x19\\xf6\\xb5\\x69\\x37\\x83\\xe3\\x50\\x0d\\x7b\\\n\\xe3\\x4e\\x26\\x54\\x99\\xfa\\x11\\x32\\x40\\x48\\xd7\\x0a\\x0c\\x85\\xe4\\x91\\\n\\x7b\\x77\\x7b\\x67\\x16\\xc0\\x57\\xa5\\x7d\\xdd\\xef\\x25\\x68\\x42\\xf7\\x8a\\\n\\xd3\\x1e\\xe8\\x3a\\x34\\x48\\x95\\x44\\x1d\\xa4\\x64\\x1f\\xad\\xef\\xbf\\xca\\\n\\xd1\\xa1\\xa7\\x4f\\x9e\\xa7\\xbc\\x13\\xb4\\xca\\x62\\x93\\x8e\\x74\\xee\\x11\\\n\\x62\\xd1\\x22\\xcc\\x10\\xb2\\xa7\\x64\\x0c\\xc6\\x34\\x77\\xc4\\xf8\\xf9\\x44\\\n\\xe9\\xd2\\xa5\\xdc\\x4b\\x35\\x2b\\x1a\\xe4\\x2a\\x82\\x27\\x60\\x3f\\xc2\\x5f\\\n\\x66\\x63\\x16\\x60\\x22\\x76\\x82\\x9b\\x6e\\x9c\\x99\\xaa\\x51\\xba\\x85\\x85\\\n\\x91\\xfe\\x93\\xdd\\xe3\\x1a\\x52\\xc7\\xa9\\x5d\\xc4\\xe1\\x87\\x8f\\x5e\\xb1\\\n\\x6b\\xb0\\x4f\\x96\\xa5\\x4f\\xb3\\x16\\x99\\x46\\x4d\\xec\\x58\\x60\\x71\\x60\\\n\\x7f\\x7b\\xa2\\xc0\\xab\\x54\\x89\\x5a\\xe9\\x8a\\x55\\xe5\\xa2\\xe9\\x4f\\xf1\\\n\\x3f\\x88\\xb4\\xe9\\xb9\\xb2\\x54\\x2a\\x68\\xd8\\xf0\\x30\\x9d\\x32\\x8b\\x41\\\n\\x05\\x46\\x84\\x53\\xc3\\xb5\\x58\\xb0\\xe8\\x81\\x6d\\x47\\xbd\\xa2\\x6a\\x58\\\n\\xec\\xdc\\x0b\\x63\\xb3\\xfd\\xaf\\x9f\\x2f\\xc6\\x9e\\x94\\x2c\\x25\\xef\\x0b\\\n\\xd7\\xd2\\x08\\x70\\xec\\x4b\\x50\\x1a\\x9e\\x9e\\x02\\xb5\\xbb\\xeb\\x97\\x5c\\\n\\xa2\\xcd\\x2f\\x5a\\xb6\\xba\\xef\\xc0\\x90\\x2a\\xdc\\x72\\x89\\xda\\x39\\x22\\\n\\xce\\x56\\x9b\\xa9\\x58\\xca\\x89\\x51\\x66\\xab\\x50\\xf5\\xe1\\xa1\\xac\\x13\\\n\\xa7\\x10\\x08\\x51\\x48\\xbe\\x1e\\xe9\\x6c\\x0e\\x27\\x0c\\x7a\\xc6\\x2c\\xfa\\\n\\x0a\\xfa\\xef\\x2b\\x12\\x31\\x35\\xfd\\x46\\x98\\x90\\x89\\x5f\\x08\\x33\\xa3\\\n\\x67\\xfd\\xb4\\xf3\\xe1\\x12\\xd1\\x31\\x0a\\x0c\\xb7\\x0a\\x19\\x17\\xee\\xa7\\\n\\x8d\\x62\\xcd\\x66\\x54\\xc1\\xb4\\x6a\\xce\\xc4\\xb6\\xfc\\xb8\\xc1\\xf8\\x18\\\n\\x12\\xfc\\x3c\\x22\\x5a\\xf4\\x84\\xc3\\x7a\\x51\\xd8\\x24\\x30\\x60\\xed\\xd6\\\n\\x5e\\x71\\xad\\xd2\\x72\\x52\\x0a\\x90\\xa5\\x05\\xd3\\xb0\\x5d\\xfb\\x84\\x13\\\n\\x6c\\x52\\x54\\xe9\\x43\\x10\\x5e\\x95\\x01\\xb0\\x6e\\x1f\\xb8\\x95\\x65\\x99\\\n\\x82\\x69\\xe5\\xca\\x26\\xca\\xb4\\x22\\x8a\\x24\\x86\\xca\\xa3\\xeb\\x12\\xd0\\\n\\xad\\x42\\x00\\x2c\\xa0\\x43\\xef\\x84\\x25\\x6c\\xcf\\x96\\x65\\xa0\\x6b\\x51\\\n\\xf3\\x9f\\x18\\xd7\\xce\\x34\\x2a\\x6e\\xfe\\x50\\x02\\xde\\xf1\\x55\\x18\\x8c\\\n\\x77\\x8f\\x5d\\xd0\\xb6\\xcf\\x87\\xac\\x5e\\x61\\x40\\xd8\\x75\\xc6\\x08\\xbd\\\n\\xd1\\x82\\x8b\\xa0\\xac\\x8a\\x24\\x71\\x3d\\x63\\x12\\xac\\xa9\\xb4\\xe1\\x4c\\\n\\xe3\\x48\\x25\\x56\\x62\\x12\\x9a\\xb5\\x0b\\x70\\xe5\\xd6\\x22\\x25\\x4d\\x51\\\n\\x40\\x24\\x90\\x62\\xd5\\x6b\\x4c\\xb4\\xb3\\x00\\x48\\xc2\\x17\\x6a\\x9d\\x75\\\n\\x52\\x50\\x0d\\xd5\\x28\\xac\\xb6\\xe5\\x7e\\xa3\\x44\\x59\\x55\\x2e\\xd1\\x2d\\\n\\x4a\\xc5\\x41\\x54\\xdd\\x41\\xf4\\x78\\x93\\x30\\x4b\\x92\\x97\\x8d\\x23\\x3c\\\n\\xcb\\x92\\x6e\\x87\\xbe\\x9c\\xba\\xcf\\x03\\xce\\x2c\\x33\\xe7\\xa2\\x55\\xa2\\\n\\x4a\\x81\\xf8\\xd3\\x2f\\x77\\x56\\xf1\\xef\\x76\\xdf\\x09\\xb2\\x21\\x06\\xfc\\\n\\xcb\\x97\\xcf\\x40\\x6f\\x2c\\x18\\x61\\x16\\x6b\\x24\\xb1\\x2c\\x2e\\x9f\\x48\\\n\\x97\\x65\\xd6\\x23\\x66\\xa0\\x88\\x9d\\x66\\xf7\\x6b\\x6c\\x90\\xb1\\xb3\\x3a\\\n\\xf0\\x51\\x3f\\xda\\xd9\\x77\\xc6\\x96\\xb4\\xfb\\xbd\\xb5\\x56\\x7b\\x2e\\xd4\\\n\\xbb\\x48\\xd4\\xcc\\x6c\\xaf\\xba\\x4f\\x80\\xc6\\x2c\\xb6\\x14\\x4a\\x9a\\x37\\\n\\xbb\\x45\\xa5\\x32\\xe4\\x68\\xf4\\x04\\xd5\\x53\\x92\\x69\\x9e\\x2a\\x11\\xa2\\\n\\x74\\xb4\\xeb\\x34\\xb1\\xa3\\xe7\\x06\\x0f\\x7d\\x27\\x7b\\xd3\\xeb\\x1a\\x5a\\\n\\x4e\\xb0\\x22\\x66\\x29\\x2d\\xcf\\x1e\\xbb\\xa2\\xcb\\x68\\x45\\x8e\\x5b\\xa4\\\n\\xe0\\x22\\x7d\\xb6\\x45\\xb5\\x5b\\x6a\\x01\\x58\\x37\\x01\\x41\\x1a\\xfb\\x3d\\\n\\x8a\\xc4\\x56\\x92\\x1d\\xd2\\x96\\x7d\\xef\\x12\\x2d\\xf3\\x8c\\xf2\\xa4\\x60\\\n\\x4e\\x31\\xa5\\xac\\xc8\\x5c\\xf4\\x4c\\xdc\\x41\\xf4\\x78\\xb1\\xa0\\x2e\\xd5\\\n\\x22\\x6a\\x76\\x84\\xb4\\x25\\x3e\\x04\\x9f\\xac\\x27\\x6a\\x52\\x4e\\x24\\x53\\\n\\xe9\\xe9\\xd5\\x20\\x58\\xa5\\x5a\\x3b\\x7e\\x7e\\x71\\x6f\\x91\\x67\\xb1\\x13\\\n\\x75\\xaf\\x3d\\x2b\\xc3\\xac\\x3e\\xa2\\x26\\xdd\\x99\\x71\\x53\\x37\\x6c\\xf4\\\n\\xf1\\x72\\x5d\\xd2\\x12\\x6b\\xd7\\x13\\x13\\x36\\x23\\x59\\xca\\x12\\xbb\\xcb\\\n\\x48\\xdf\\xdd\\xfb\\x84\\x28\\x4a\\x09\\x41\\xa0\\x59\\xba\\xff\\x00\\xea\\xa3\\\n\\xfd\\xe3\\x49\\xe8\\xe9\\x73\\x26\\x36\\xbd\\x3e\\x3f\\x5e\\xb2\\x8b\\x4e\\x8c\\\n\\x44\\x95\\x12\\x14\\x14\\x69\\x5c\\x5e\\x94\\x80\\xb5\\xa2\\x6a\\x83\\x9b\\x8c\\\n\\x71\\x7d\\xfe\\x8c\\xfe\\x99\\x98\\xb6\\x24\\xce\\x18\\x60\\xaf\\xd9\\xf3\\x85\\\n\\xcb\\xd5\\xe0\\x1f\\x2e\\x04\\x0c\\xb3\\x2d\\xbe\\x34\\x3e\\x97\\xf7\\x4b\\x56\\\n\\xdd\\x12\\x52\\x9a\\xbd\\x0a\\xaa\\x4d\\x0e\\xea\\x11\\x4a\\x8a\\x96\\x8d\\x34\\\n\\xda\\x42\\xd9\\xaf\\x05\\xd2\\x84\\x28\\xfa\\x72\\x6f\\xbf\\x28\\x93\\x2e\\xd7\\\n\\x3e\\x6e\\xaa\\x5a\\x4a\\xaa\\xcc\\xc7\\x95\\x04\\x68\\x6d\\x04\\x89\\x52\\xc1\\\n\\x38\\xb0\\x24\\x71\\x6a\\xbc\\x27\\x46\\x68\\xc3\\xa5\\x25\\x8b\\x62\\x53\\xff\\\n\\x00\\xb7\\xc6\\x94\\x17\\x8b\\x63\\xc7\\xce\\x15\\x6f\\xb0\\xd9\\xad\\x33\\x34\\\n\\x75\\x82\\x59\\x22\\x63\\xed\\x01\\x41\\x76\\xb8\\xd3\\x73\\x45\\xb7\\x49\\xdb\\\n\\x24\\x1b\\xb2\\xe5\\x95\\x62\\x1f\\x1d\\xfe\\xad\\x97\\xd0\\xc4\\xeb\\x2d\\xb3\\\n\\x48\\x1d\\xb4\\x10\\xee\\xac\\xf3\\x2f\\xe3\\x58\\x91\\xa3\\x13\\x64\\x49\\x5a\\\n\\xf6\\x6e\\xb6\\x39\\x75\\xdf\\x84\\x59\\x64\\xcc\\xb6\\x2d\\x06\\x55\\x59\\x41\\\n\\x9b\\xae\\x9e\\x24\\x7b\\x3b\\x68\\xb4\\x4e\\xf8\\x89\\x2c\\xfd\\x7d\\x7b\\xb9\\\n\\x40\\xf6\\x73\\xdc\\xd0\\x26\\x33\\x1c\\x62\\x75\\xb2\\x63\\x6a\\x1b\\x0a\\x61\\\n\\xd6\\x71\\xee\\x60\\xa8\\xcc\\x5b\\x02\\xaf\\x1e\\x11\\xee\\x84\\xc0\\xb1\\x4b\\\n\\xbb\\xb5\\x8f\\x5e\\x42\\x0d\\x9e\\x54\\xad\\xae\\x43\\x87\\x38\\x4d\\x9e\\x54\\\n\\xca\\xf2\\x7f\\xc4\\x5a\\xe4\\x89\\x63\\x63\\x77\\x5f\\x8f\\xcc\\x4a\\x93\\xad\\\n\\x75\\x4d\\xc5\\xdb\\xbb\\xbc\\x61\\x13\\xec\\xe8\\x44\\x92\\xa4\\xf6\\x81\\x4e\\\n\\x5b\\xc8\\x11\\xc0\\x45\\xba\\x5d\\x9d\\x28\\x94\\x50\\x45\\xeb\\x89\\xf1\\x60\\\n\\xfc\\xfa\\x68\\x72\\x40\\x3b\\xa9\\xc7\\x18\\x54\\xeb\\xc8\\x28\\xcc\\xfa\\x74\\\n\\x22\\x44\\xcd\\x58\\xee\\x85\\x25\\x0a\\x2a\\x51\\x57\\x6a\\xb8\\x6f\\x8d\\x54\\\n\\xbd\\xfe\\x51\\xa5\\xc4\\xb3\\x33\\x64\\x9b\\xb8\\x1a\\xe1\\x4a\\x98\\xb1\\xc9\\\n\\xbf\\x39\\x22\\x4a\\x41\\x96\\x12\\x31\\x0e\\x71\\x7a\\x1d\\xc6\\x9b\\xf9\\xc4\\\n\\xfb\\x50\\xb2\\xcc\\x94\\x68\\x26\\xeb\\x52\\x91\\xba\\xea\\x8b\\x2a\\x9c\\x12\\\n\\xed\\x5e\\x30\\x8b\\x4c\\xb9\\xa6\\x53\\x7f\\x48\\x81\\xac\\xdf\\xe3\\x94\\x69\\\n\\x8b\\x7d\\x9e\\x52\\x90\\x91\\xd9\\x0c\\xd5\\xcb\\x9e\\x78\\x30\\xdf\\x06\\xd5\\\n\\xae\\x54\\x83\\x25\\x29\\x0c\\x86\\x55\\x31\\x51\\x2f\\xd7\\xe6\\x2d\\xc6\\x74\\\n\\xb4\\x89\\xf3\\xbf\\xa3\\x2d\\x8a\\xae\\xd0\\xd5\\x41\\x21\\xbb\\xc8\\xfd\\x56\\\n\\x2c\\x9a\\x6a\\xec\\xb1\\xae\\xff\\x00\\xdb\\xb7\\x22\\x06\\x4e\\xac\\x5c\\xf0\\\n\\x14\\xae\\xe8\\xd1\\xba\\x62\\xcd\\x32\\x5a\\x75\\x54\\x4d\\xd0\\x52\\x14\\x5c\\\n\\xdd\\x38\\x3b\\xfa\\xe7\\xe3\\x1e\\xd6\\x69\\x43\\x26\\x5c\\xa9\\x92\\xee\\xdf\\\n\\x05\\x61\\x34\\xdf\\x77\\xf7\\x16\\x6f\\x76\\xd4\\x7b\\xea\\xef\\xaa\\xd3\\x74\\\n\\xad\\xca\\x89\\x4e\\x75\\x09\\xc0\\x57\\xec\\x21\\x61\\xc4\\xb9\\xb2\\x4d\\x54\\\n\\xd7\\x9e\\xa3\\x8f\\x2e\\x9e\\x34\\x85\\xbe\\x4c\\xb4\\x59\\xe5\\x24\\xbd\\xa6\\\n\\xce\\x2a\\x1e\\x8e\\x76\\xbb\\x3d\\xf0\\x8b\\xb6\\xd4\\xa2\\xd3\\x3c\\x01\\x36\\\n\\x5d\\x53\\x73\\x60\\x77\\x81\\x8d\\x22\\x7e\\x9a\\x95\\xab\\x54\\x99\\xa5\\x3f\\\n\\x0c\\x1a\\x26\\x86\\x83\\xd6\\x24\\x69\\x65\\x5a\\x8e\\xae\\x54\\xb5\\xdd\\x25\\\n\\xb6\\x83\\x9f\\xc4\\x1d\\x1e\\x53\\x38\\xcf\\x9c\\x57\\x2f\\x65\\x25\\xaf\\x91\\\n\\x97\\x2e\\xf6\\x89\\xc9\\x5e\\x90\\x5a\\x6c\\x56\\x55\\x1b\\xc1\\x49\\x9a\\x5c\\\n\\xb8\\xd5\\xa3\\xb5\\xe3\\x94\\x2c\\xd8\\xf4\\x55\\x99\\x37\\xff\\x00\\xab\\x81\\\n\\x72\\xfd\\xed\\xf6\\x8d\\x32\\xb9\\x7e\\xea\\x89\\xf2\\x71\\x56\\x64\\xbe\\x4e\\\n\\x18\\x46\\x82\\x9e\\xc1\\x32\\xee\\xa9\\x65\\xc2\\x94\\xae\\x65\\x9b\\x3d\\xcf\\\n\\xfa\\x89\\x16\\x84\\x00\\x25\\x5d\\x29\\x25\\xc8\\x27\\x80\\xbc\\x71\\xae\\x51\\\n\\x2e\\xd8\\xd3\\xae\\x4d\\x50\\xba\\xf9\\x52\\x3d\\xac\\xd2\\x52\\xd2\\xa3\\xee\\\n\\xcb\\xaa\\x49\\xc4\\xdf\\xad\\x5a\\x86\\x9f\\x71\\x8e\\xf8\\x99\\xa7\\x6d\\x4a\\\n\\x95\\x29\\xd6\\x8b\\xc0\\x62\\x25\\xb0\\x2e\\x70\\x67\\xc3\\xac\\xe3\\x42\\xda\\\n\\x55\\x6b\\x29\\x33\\x7b\\x58\\xec\\xd0\\x78\\x7d\\xe2\\xdc\\xc1\\xfa\\xce\\x12\\\n\\xa5\\x52\\x25\\x95\\x5f\\x49\\x6c\\x38\\x78\\xc5\\xb6\\x72\\xe7\\x22\\xe8\\x39\\\n\\x51\\xb1\\x19\\x08\\xd2\\x16\\x4d\\x27\\xad\\x79\\x33\\xe6\\x11\\xc4\\xa8\\xf3\\\n\\xfc\\x42\\x6d\\x76\\xe9\\x2d\\x2a\\x66\\xd3\\x50\\x92\\x97\\xe3\\x5f\\x4f\\xc3\\\n\\x44\\xe9\\xd3\\x0a\\x5c\\xa7\\x8d\\x03\\x77\\x3c\\x2a\\x70\\x18\\x82\\x28\\x5b\\\n\\xf7\\xf4\\x84\\x59\\x66\\x5a\\x65\\xba\\xce\\xd1\\x19\\x53\\x2c\\xb1\\xfc\\xf9\\\n\\xc6\\x90\\x90\\xa9\\x33\\xb5\\x69\\x0a\\x13\\x36\\x54\\x0b\\xff\\x00\\x22\\x7c\\\n\\xe9\\xea\\xcc\\x23\\x45\\x58\\x27\\xcf\\x94\\x2f\\x60\\x58\\xa8\\xe1\\xbb\\x0d\\\n\\xdc\\xb7\\xc5\\x8e\\xc5\\x60\\xd1\\xc2\\xfa\\x52\\x4c\\xc2\\xce\\x54\\xab\\xc3\\\n\\xf1\\xd6\\xf8\\xb0\\x4c\\x4c\\xd9\\x6a\\xb9\\xda\\xab\\x6e\\x89\\x96\\x0b\\x75\\\n\\xa2\\xd6\\x6d\\x13\\x2e\\xea\\x13\\x2c\\xcb\\x37\\x53\\x75\\x58\\xb9\\xda\\xfd\\\n\\x46\\x8c\\xd1\\xf6\\x3d\\x5d\\xaa\\x6c\\xb4\\x92\\xb4\\x9a\\x95\\xaa\\xf1\\xc4\\\n\\x07\\x0f\\x1a\\xa7\\x9f\\x76\\xe8\\x23\\x97\\x01\\xbb\\x8b\\xf8\\xc4\\xab\\x0a\\\n\\xd3\\x54\\xaa\\x58\\x0a\\x0f\\x54\\x87\\x0f\\xdf\\x41\\xd5\\x63\\x49\\xe8\\xc9\\\n\\x4a\\xb3\\xad\\x53\\x15\\x7a\\x9f\\x21\\xbb\\x5c\\xf0\\xc5\\xe9\\x1a\\x02\\xdf\\\n\\x64\\xd1\\x6a\\x51\\x50\\xbc\\x99\\x35\\x29\\x2c\\x4b\\x74\\x22\\xcf\\xed\\xd5\\\n\\x90\\xda\\x59\\x32\\x59\\x2f\\xfc\\x63\\x4f\\x7b\\x5b\\x29\\x16\\x21\\x32\\xcc\\\n\\x8d\\xb5\\x26\\xa1\\x41\\xc7\\x73\\xc5\\x97\\xda\\xd3\\x3a\\xd4\\xb4\\xcf\\x42\\\n\\x52\\x5f\\x64\\xdc\\xba\\x0b\\xd6\\x87\\x93\\xd3\\xeb\\x48\\x4d\\xa5\\x16\\xb4\\\n\\x25\\x68\\x38\\x00\\xaa\\x61\\x4c\\x44\\x5a\\x6d\\xba\\x94\\x12\\x9b\\xb7\\xf8\\\n\\x80\\x7c\\xa9\\x0a\\xd3\\xd3\\x41\\x65\\x94\\x5e\\x0f\\x82\\x1b\\x97\\xea\\x27\\\n\\xe9\\xc5\\xad\\x29\\x0e\\x91\\x50\\x68\\x1b\\x23\\x16\\x4d\\x2f\\x34\\x87\\x49\\\n\\x06\\x98\\x37\\x5e\\x51\\x65\\xd2\\x66\\x6a\\x9a\\x7b\\x11\\xc0\\x78\\xc5\\xa0\\\n\\xcb\\x98\\x02\\xe4\\x6e\\xdf\\x9c\\x49\\x44\\xc9\\x82\\xe4\\xc2\\xce\\x61\\x5a\\\n\\x3e\\x50\\x96\\x14\\x1d\\xf7\\xbc\\x4f\\x90\\xaa\\xdf\\x52\\x8b\\x64\\xf9\\x60\\\n\\x39\\xc2\\x4a\\x2e\\x91\\x5e\\x1d\\xd1\\xa9\\x0f\\xac\\xea\\xbb\\xfa\\x10\\x89\\\n\\x4a\\x98\\x76\\x41\\x31\\x68\\xb2\\x4e\\x92\\x84\\x29\\x95\\xb4\\x97\\x84\\xdc\\\n\\x6d\\xa7\\x7f\\xf5\\x37\\xdf\\xd6\\x27\\x09\\xcb\\x3b\\x67\\x79\\x59\\x77\\x6e\\\n\\x03\\x8c\\x68\\xe9\\xa6\\xcf\\x3c\\x2d\\x44\\x09\\x2c\\x06\\x35\\x7c\\xe9\\xcb\\\n\\xeb\\x1a\\x41\\x56\\x69\\xc7\\x5c\\x2a\\x94\\xa4\\xd1\\xab\\x79\\xa8\\x71\\xdf\\\n\\x9e\\x43\\x84\\x68\\x45\\x4a\\x99\\x64\\x5c\\xa5\\x2b\\xfe\\x20\\xf6\\x1f\\x01\\\n\\xbb\\x6b\\x2c\\xb9\\x56\\x2d\\x36\\x4d\\x65\\xbe\\x55\\x8a\\x6a\\x81\\x9a\\x58\\\n\\xd1\\x5b\\x0d\\x43\\xda\\xc2\\x27\\xa6\\xc9\\x64\\x52\\x50\\x87\\x26\\x4a\\x6e\\\n\\xcc\\x2d\\x40\\xae\\x1b\\xe2\\x62\\xfd\\xe8\\x84\\x4c\\x63\\x65\\x3f\\xd5\\x1f\\\n\\x3d\\xdf\\x95\\x93\\xcd\\xb3\\xc2\\x34\\x76\\x83\\x45\\xaa\\x68\\x4a\\xae\\x0b\\\n\\x26\\x41\\xf6\\xab\\xfd\\xad\\xf5\\xdf\\x1a\\x9d\\x1d\\x61\\x54\\xc9\\x72\\x9f\\\n\\xe1\\xfc\\x3e\\xcd\\x76\\x63\\x4b\\x4a\\x4e\\x92\\x97\\x38\\x48\\x34\\xb3\\xd4\\\n\\xeb\\x36\\x68\\x77\\x78\\x56\\x2c\\xd3\\x2c\\xab\\xb0\\x4c\\xb2\\xba\\xf5\\xb2\\\n\\xd2\\xa7\\xa3\\x26\\x83\\x7e\\x7d\\xf1\\x75\\x23\\x46\\xcb\\x54\\xbc\\x65\\x87\\\n\\x27\\xac\\x4c\\x5d\\x4d\\xa6\\xd7\\x32\\xd3\\x31\\x5b\\x0b\\x66\\xdf\\x46\\x49\\\n\\xa6\\x55\\x11\\x68\\xb6\\xa6\\xcf\\x2c\\x25\\x2a\\x2c\\xa3\\x75\\x23\\x32\\x6e\\\n\\x93\\xbf\\xa1\\x12\\xac\\x86\\x7a\\xb5\\xea\\xc3\\xb4\\xdf\\xda\\x2a\\x79\\x18\\\n\\xb1\\xcc\\x4c\\x95\\x6b\\xa4\\xa1\\x37\\x77\\x28\\x5d\\x20\\x3d\\x37\\xf5\\xe1\\\n\\x1a\\x47\\x49\\xce\\xb5\\xcd\\x55\\xc0\\x90\\x02\\x10\\x19\\xf7\\x0f\\x0e\\x3e\\\n\\x51\\x65\\xb6\\x4a\\xb0\\xbc\\xc4\\x5e\\x36\\xc2\\x92\\x92\\x1b\\x65\\x8b\\x5e\\\n\\x75\\x73\\x6f\\xcc\\x5a\\x17\\x68\\xb7\\xcc\\x26\\xd2\\x76\\x4d\\x42\\x42\\xb0\\\n\\xeb\\xbe\\x26\\x5b\\x00\\xb3\\xa6\\xcb\\x3e\\xfd\\xf0\\x4d\\xd0\\x03\\xa5\\xb0\\\n\\x15\\xc7\\xac\\xe3\\x43\\x5b\\x26\\xd8\\x94\\x87\\x4a\\x55\\x2b\\xb4\\xf8\\x97\\\n\\x34\\xdd\\x1a\\x53\\xda\\x3b\\x44\\xb5\\x89\\x88\\x43\\x4b\\x4f\\x68\\x8e\\xd0\\\n\\x7d\\xc9\\xc7\\x30\\xfc\\x21\\x3a\\x5e\\x74\\xd4\\x5f\\x76\\xcf\\x8f\\x8c\\x5a\\\n\\xd1\\x3a\\xd2\\xa5\\x29\\x75\\x49\\x24\\xef\\x7c\\x7a\\xf4\\x89\\x76\\x10\\x52\\\n\\x24\\xa5\\x2a\\x2a\\x41\\x35\\x28\\x25\\xaf\\x17\\x15\\x24\\xd0\\x3d\\x39\\x46\\\n\\x84\\xd1\\xe6\\xcd\\x28\\x95\\x86\\x2d\\x43\\x97\\x7f\\x5f\\x68\\xb7\\xaa\\xf2\\\n\\xca\\x45\\x4d\\x30\\xc2\\x11\\x25\\x41\\x21\\xc2\\x5c\\x36\\x70\\x45\\xd4\\xa9\\\n\\xd9\\xce\\x0d\\xde\\xf1\\x28\\xb1\\x52\\x57\\x8b\\xec\\xee\\x72\\xd8\\xf5\\x48\\\n\\x52\\x12\\x65\\xb1\\x6b\\xfd\\x67\\x1e\\xeb\\x21\\x6b\\x37\\xc3\\x29\\xf1\\x6a\\\n\\x7d\\xf0\\xee\\x8b\\x4c\\x9b\\x0a\\x25\\x80\\x54\\x97\\xbd\\x80\\xae\\x46\\x27\\\n\\xe8\\xf9\\x53\\x01\\x54\\xb5\\x23\\x0c\\xd5\\xcf\\xae\\x9a\\x2c\\x76\\x85\\x4a\\\n\\x5a\\x64\\xcc\\xda\\x2b\\xa7\\xc3\\xaa\\x68\\x7f\\x93\\x60\\xe1\\xbf\\xf1\\x8b\\\n\\x7d\\x9e\\xcf\\x7d\\xe7\\x85\\x6b\\x6e\\xa5\\x54\\x4d\\xf0\\x11\\x93\\x9f\\x1f\\\n\\xd5\\x60\\xe9\\x35\\x58\\xec\\xa1\\x32\\x65\\xad\\x4a\\x51\\x4a\\x45\\xd4\\x3f\\\n\\x6a\\x98\\x0c\\x87\\x3c\\x31\\x78\\xb3\\xca\\xd3\\x96\\x95\\x99\\xd3\\x84\\xb4\\\n\\x49\\x2a\\x74\\xfc\\x43\\x7a\\xeb\\xd2\\x97\\x43\\x1c\\x73\\x6c\\x23\\x46\\xaa\\\n\\x58\\x08\\x12\\x94\\x1c\\x04\\xde\\xe6\\xcc\\x6b\\x8e\\x31\\x29\\x33\\x5a\\xf2\\\n\\xd2\\x3d\\xd8\\x82\\x95\\xd7\\x6e\\xff\\x00\\x04\\xb5\\x43\\x35\\x5f\\xd2\\x2d\\\n\\x97\\xb4\\x6d\\xa1\\x4c\\x0f\\xba\\xce\\xad\\x2a\\xae\\x1b\\x3c\\xe2\\xc9\\x75\\\n\\x7f\\x14\\xbd\\xd3\\x85\\x2b\\xe1\\x09\\xb3\\xc8\\x9a\\x1d\\x33\\x16\\x9a\\x3e\\\n\\xd0\\xba\\x3c\\x63\\xda\\x07\\x90\\xa9\\x32\\x64\\x4d\\x4c\\xed\\x6a\\x66\\x15\\\n\\x5d\\x55\\xe2\\x2e\\x90\\xcf\\xcd\\xcd\\x23\\x45\\x58\\xa6\\x5a\\x2d\\x1b\\x69\\\n\\x74\\x85\\xbc\\xd7\\xa6\\xce\\x7c\\xfe\\xb1\\x6e\\xd0\\xe9\\xb2\\xca\\x36\\x94\\\n\\x49\\x96\\xc2\\xb8\\x8b\\xdb\\xf0\\x6d\\xf1\\x3f\\x49\\x4d\\x9a\\x8b\\x86\\x58\\\n\\xd5\\x82\\xc8\\x73\\x5a\\x6f\\xe1\\x0b\\x40\\x9b\\x39\\x21\\x69\\x09\\xc6\\xe5\\\n\\xdc\\xda\\xa5\\xf0\\xc0\\x47\\xb3\\xc8\\x54\\xcd\\x1b\\x3a\\xda\\x92\\x3d\\xde\\\n\\x45\\xf4\\x29\\xe8\\xb7\\x0e\\x28\\x9d\\xdd\\xf1\\xa4\\x6d\\x8e\\xa6\\x49\\x2c\\\n\\x5f\\x1d\\xdd\\x75\\xbd\\x4a\\x7d\\xa2\\x71\\xfb\\x44\\x94\\xa6\\x6c\\xc0\\x87\\\n\\x27\\x36\\x03\\xaa\\x56\\x24\\xc8\\x45\\x9d\\x15\\x0a\\xc3\\x21\\xd7\\x58\\xc1\\\n\\x40\\x4e\\x0f\\xdd\\x1e\\xcf\\xd9\\xe7\\x5b\\x14\\xa4\\xa6\\xac\\xa3\\xdb\\x2d\\\n\\x46\\x8b\\x6d\\x92\\x6c\\x89\\x6a\\x98\\x8b\\xae\\x85\\x24\\x10\\x95\\x6f\\x2d\\\n\\x83\\x56\\x17\\x36\\xd0\\xa9\\x77\\x42\\x6b\\xc6\\x17\\x68\\x12\\x4b\\x5a\\x4e\\\n\\x3f\\xc7\\x6b\\xa3\\x13\\xb4\\x86\\x8b\\x96\\x12\\x9f\\x8b\\x79\\x41\\xc3\\x4b\\\n\\x7f\\x37\\xe1\\x1e\\xf8\\x26\\x9b\\xb2\\xde\\xe9\\xa5\\x43\\x46\\x87\\x32\\x56\\\n\\x42\\x57\\xda\\xe3\\xd7\\x42\\x34\\x82\\xe5\\x4d\\x3a\\x84\\x17\\x29\\xd9\\x0f\\\n\\x41\\x4a\\x50\\xf5\\x94\\x27\\x41\\x4c\\x58\\xbc\\x17\\x21\\x8d\\x7f\\xa9\\xf8\\\n\\x31\\x32\\xa2\\x99\\x85\\x13\\xc6\\x26\\x5f\\x33\\x18\\x29\\x83\\x00\\xc3\\xbf\\\n\\xca\\x25\\x6b\\x18\\xdf\\xec\\x87\\xdf\\x4a\\x73\\xe2\\xdf\\x56\\xa4\\x59\\xad\\\n\\xb6\\x99\\x33\\xae\\x24\\x91\\x83\\xb6\\x2d\\x8b\\x61\\x5a\\xc2\\x15\\x3a\\x6c\\\n\\xc1\\xa4\\x4a\\x8b\\xa1\\x21\\x3e\\x10\\xad\\x24\\x46\\xb8\\xcc\\x35\\x9a\\xa7\\\n\\x1d\\xdb\\x34\\xef\\xfb\\xc4\\x85\\x29\\x52\\x55\\x30\\x16\\x4e\\x2a\\x1b\\xdd\\\n\\x80\\xf2\\xe7\\x12\\xf4\\xe2\\xac\\x61\\x9c\\xec\\xe3\\xfb\\xc8\\xc4\\xfd\\x2d\\\n\\x35\\x44\\xcf\\x2a\\xd9\\x9d\\xf1\\x31\\xa6\\xd5\\x7f\\x71\\x3f\\x49\\x84\\x59\\\n\\xd5\\x74\\xd6\\x6f\\x6b\\xbb\\x0f\\x58\\xb2\\x4f\\x21\\x73\\x05\\x59\\x6a\\x6f\\\n\\xbf\\x5e\\x91\\x33\\x4a\\x14\\x27\\xdd\\xdc\\xdd\\x34\\x3b\\xba\\xee\\x31\\x71\\\n\\x77\\x02\\xd2\\x4d\\x4e\\x7f\\x8c\\xa0\\x59\\xd5\\x69\\x50\\x04\\x97\\x94\\x6f\\\n\\x8a\\xf7\\x3f\\x9f\\xe6\\x24\\xda\\x13\\x67\\x01\\x0a\\xc8\\x5d\\xfb\\xf5\\x9c\\\n\\x5a\\x2d\\x60\\x2b\\x56\\x82\\xc3\\xae\\x8f\\x46\\x25\\x5e\\xf7\\xab\\xa4\\x9e\\\n\\xc8\\x2d\\xc1\\x4e\\x47\\x0f\\x5c\\xb9\\xc4\\xf9\\x2c\\x2f\\x6f\\xf3\\x78\\x97\\\n\\x46\\xca\\x91\\x39\\x08\\xb5\\x1b\\xd2\\xc5\\x5e\\x83\\x3a\\x57\\xec\\x7a\\x02\\\n\\x25\\xad\\x72\\x26\\x25\\x0b\\x72\\xe0\\x78\\x1a\\x45\\xa6\\xea\\xde\\xff\\x00\\\n\\x66\\x87\\xae\\xff\\x00\\x48\\xb3\\xa0\\xcf\\x69\\x68\\xa6\\x51\\x25\\x09\\x24\\\n\\x4b\\x50\\x72\\x9d\\x93\\xdd\\xc3\\xac\\x23\\x45\\x59\\xac\\x89\\x95\\x39\\x6b\\\n\\x42\\x5d\\xd2\\xc4\\x8a\\xe0\\x62\\xdd\\xa5\\x6c\\xe8\\x97\\x36\\xcf\\x2d\\x82\\\n\\x96\\x2e\\xa3\\x9c\\x4a\\x4d\\x35\\x93\\x2b\\xbb\\x87\\xac\\x28\\x82\\xa2\\x46\\\n\\x07\\xeb\\x0b\\x0e\\x1a\\x17\\x2a\\xb4\\xc7\\x2c\\xba\\xac\\x4c\\xb4\\x1b\\x35\\\n\\x56\\x7c\\x62\\xd1\\xa4\\xd1\\x3a\\x59\\x12\\xa8\\xb2\\x08\\x15\\xaf\\x87\\xda\\\n\\x2d\\x9f\\xe6\\x82\\xd6\\xb2\\x27\\x2b\\x56\\xa1\\x41\\xbc\\xef\\xc4\\x65\\xd6\\\n\\xf9\\x2b\\xb7\\x90\\x01\\x59\\xab\\x3b\\xf5\\xd7\\x28\\xd1\\x9a\\x31\\x22\\x47\\\n\\xbc\\x4d\\x0e\\xa0\\x01\\xe4\\xdd\\x77\\xc1\\x4c\\xbb\\x74\\xf2\\x46\\x00\\x89\\\n\\x66\\x9f\\xc0\\xe5\\x16\\x7d\\x15\\x22\\x5d\\xd5\\x2d\\x20\\xa7\\x8d\\x6a\\x59\\\n\\xba\\xfd\\x44\\xdb\\x1c\\xbd\\x53\\x20\\x0a\\xf4\\xdc\\x79\\x44\\xbb\\x54\\xfd\\\n\\x11\\x6b\\xf8\\xc4\\xdc\\xd6\\x13\\x8b\\x51\\xdf\\xd3\\x3e\\x51\\x66\\xf6\\x82\\\n\\x55\\xa7\\x53\\x28\\x35\\x6e\\xbb\\x66\\xf1\\xed\\x26\\xa4\\x59\\xe4\\xad\\x87\\\n\\x64\\x17\\xe7\\xeb\\xc8\\x46\\x8e\\xb7\\x4a\\x2d\\x2f\\x26\\x71\\xf9\\xeb\\x08\\\n\\x93\\x63\\xd2\\x76\\x94\\x4e\\x33\\x05\\xc9\\x1b\\x5a\\xb3\\xbe\\x5f\\xc9\\xe5\\\n\\xe5\\x94\\x4b\\xb0\\x23\\xfc\\xe1\\x08\\xd7\\x2a\\x61\\x55\\xe4\\xa8\\x13\\x44\\\n\\xd4\\x50\\x6e\\x77\\xf2\\x84\\x59\\xac\\xf6\\x35\\xcd\\x42\\x50\\x9b\\xeb\\x43\\\n\\x02\\xd5\\x8b\\x44\\xa1\\x68\\xb3\\x19\\x64\\x51\\x9a\\x34\\x9c\\xa1\\x67\\xb6\\\n\\xda\\x24\\x81\\x44\\x4c\\x50\\xf4\\x34\\x8f\\xff\\x00\\x91\\x67\\x4e\\x4a\\x33\\\n\\x6b\\xbb\\x61\\xfc\\xf0\\x8d\\x13\\x37\\xdd\\x7d\\x97\\xb6\\xe3\\x5b\\x42\\x83\\\n\\x70\\xbc\\x07\\x5b\\xe1\\x16\\x65\\xe9\\x19\\xc1\\x28\\x7e\\x7f\\x9e\\xbd\\x22\\\n\\xcf\\xec\\x84\\xf9\\x89\\x0e\\x71\\x1d\\x75\\x8c\\x23\\xd8\\x9b\\x4c\\xa4\\xeb\\\n\\x24\\xa5\\xe6\\x35\\x73\\xa7\\xed\\xa1\\x1e\\xcc\\xe9\\x69\\x86\\xed\\xcc\\x38\\\n\\x60\\xdb\\xa1\\x3a\\x17\\x56\\xda\\xc1\\x83\\x3c\\x68\\xb9\\x72\\x6c\\xa6\\x65\\\n\\xc0\\xd4\\x7a\\x7d\\x3c\\x38\\xc4\\xbf\\x8c\\xb9\\xc5\\x7d\\x80\\x5d\\xbd\\x22\\\n\\x6e\\xad\\x14\\xa4\\x69\\x95\\x2f\\x58\\xa2\\x15\\xf3\\x2f\\x3c\\x9e\\x83\\xcf\\\n\\xd2\\x10\\x54\\xa2\\x92\\xaa\\xe3\\x4e\\xef\\xb9\\x78\\x94\\xb3\\x2d\\x37\\xb7\\\n\\x01\\x16\\x5b\\x64\\xe3\\x3b\\xe1\\x96\\x6c\\x3a\\xeb\\xef\\x64\\xb2\\x4e\\xb5\\\n\\x00\\x6f\\x1b\\xcc\\x2b\\xc6\\x0e\\x8e\\xb7\\x8a\\x05\\x16\\x1c\\xfe\\xf1\\x28\\\n\\xd4\\x1a\\xd4\\x86\\x7c\\x86\\xef\\xbf\\x38\\x9a\\x53\\x7b\\x8d\\xdf\\x1a\\x98\\\n\\x92\\xbb\\xab\\xde\\xe0\\x8a\\xf2\\xa7\\x89\\xf3\\x85\\x06\\x5e\\xb1\\x9a\\xbb\\\n\\x3f\\x5e\\xb7\\xbc\\x22\\x6b\\x86\\xaf\\x20\\x4b\\x57\\x26\\xa0\\x38\\xe7\\x12\\\n\\x24\\xa4\\x1d\\x6c\\xc6\\xef\\xf4\\x85\\xcc\\xd7\\x01\\x29\\x34\\x41\\xd9\\x24\\\n\\x52\\x95\\xdd\\xca\\x2d\\x89\\x32\\x2f\\x84\\xd7\\x76\\x6f\\xd6\\x3f\\x7c\\x62\\\n\\x4c\\xc5\\xac\\xed\\x50\\x1b\\xa3\\x70\\x1b\\x98\\xe1\\xe4\\xd1\\x69\\xb8\\x89\\\n\\x68\\x1f\\xc9\\xf7\\x51\\xb3\\xf3\\x8b\\x1c\\xa1\\x30\\x9e\\x75\\x1b\\x9e\\xbb\\\n\\xba\\xac\\x2e\\xc1\\x2e\\x64\\xd2\\x1f\\x1a\\xe3\\x96\\x10\\x34\\x6c\\xb9\\x72\\\n\\x92\\x6f\\x10\\xaa\\xd1\\xf0\\xee\\xeb\\xd6\\x2c\\xc2\\x42\\x67\\x2f\\xde\\x0b\\\n\\x21\\x29\\xd9\\xae\\x79\\xf5\\xf5\\x89\\xf6\\xdb\\x02\\xc6\\xae\\x58\\xbc\\xac\\\n\\x07\\x33\\x4f\\x56\\x81\\x26\\x6a\\x50\\x50\\x52\\xcf\\x85\\x2a\\x7f\\x4f\\x12\\\n\\x6c\\xcb\\x92\\x44\\xd5\\xbe\\x39\\xee\\xe7\\x16\\x2d\\x55\\xa6\\x5d\\xd5\\x5d\\\n\\x60\\x1f\\x01\\x97\\x97\\x5d\\xd1\\xa5\\x42\\x24\\x95\\x14\\x55\\xa8\\xc0\\x0c\\\n\\xe3\\x46\\xce\\x52\\x48\\x4c\\xc2\\xc5\\x44\\x9a\\x67\\x78\\x9d\\xe3\\xf3\\xc2\\\n\\x27\\x59\\xa5\\x8f\\x8d\\x7b\\x86\\x59\\x57\\xf3\\x09\\xd4\\xaf\\xe7\\xa3\\xd4\\\n\\x75\\xe3\\x06\\xd7\\xa8\\xfe\\x9b\\x11\\xe6\\x4f\\x77\\x4d\\xe7\\x62\\xb4\\x22\\\n\\x4c\\xbb\\xe5\\xaf\\x4c\\x17\\xab\\xbc\\xd5\\xab\\xc6\\x17\\xa4\\xaf\\x22\\xd0\\\n\\x1c\\x8d\\xac\\x89\\x1b\\xfa\\xf5\\x8d\\x0f\\x2c\\x5a\\x14\\xeb\\xc0\\x97\\xda\\\n\\xcb\\xc7\\xeb\\x94\\x2c\\xca\\xb3\\x4e\\x67\\x04\\x3e\\x14\\xc4\\xf5\\x58\\x9c\\\n\\xb0\\xa9\\xab\\x58\\xc1\\x45\\xe9\\x87\\x4f\\x06\\x7e\\xd2\\x42\\x43\\xd6\\xbd\\\n\\xd1\\x6f\\xb5\\xaa\\x5a\\x0a\\xc0\\xec\\x82\\x69\\x4c\\x03\\xc6\\x91\\xd2\\x56\\\n\\xab\\x4c\\xf6\\x4c\\xb5\\x1e\\x4e\\xde\\xb0\\x64\\x5a\\xde\\xc4\\xbd\\x5a\\x80\\\n\\x29\\x9c\\xa5\\x62\\xcf\\x82\\x5d\\x8f\\xf7\\x16\\x7c\\xc3\\xe5\\x16\\x2d\\x0b\\\n\\x3a\\xd8\\xa2\\xa5\\x85\\x33\\x38\\x72\\x71\\x71\\xd7\\x18\\xb2\\xe8\\x0d\\x5c\\\n\\xa2\\x48\\x1b\\x28\\x51\\xc1\\xea\\x03\\xf8\\x70\\xdf\\x16\\x3d\\x27\\x69\\x13\\\n\\x04\\xa9\\x92\\xc8\\xc2\\x9b\\xf7\\xd3\\x77\\x4d\\x08\\x42\\x14\\xb1\\x31\\x82\\\n\\x4b\\x07\\x01\\x87\\x2e\\x1d\\xfc\\x22\\x52\\x90\\x69\\x8a\\x9e\\x26\\x4a\\x28\\\n\\x45\\xed\\xe2\\x34\\xe2\\x3d\\xe6\\xf3\\x7c\\xbd\\x1e\\xb2\\xa4\\x48\\xb5\\x2a\\\n\\xc7\\x70\\x39\\xba\\x67\\x24\\x67\\x47\\x66\\xe4\\xfd\\x34\\x5e\\x45\\xb2\\x45\\\n\\x92\\xf2\\xdc\\x6c\\xe2\\x5e\\x86\\x9d\\xfc\\x3b\\xa3\\x49\\x58\\xa5\\x68\\xa9\\\n\\xd2\\x2d\\x92\\x54\\x16\\xbd\\x95\\xdc\\x77\\xab\\x6e\\x1c\\xda\\x2c\\xba\\x56\\\n\\x4a\\xb4\\x7a\\x66\\x15\\xb4\\xc9\\x92\\x52\\xb5\\x25\\xfb\\x2a\\x52\\x41\\x52\\\n\\x59\\xf7\\xc5\\x8e\\x42\\xad\\x7a\\x46\\x72\\xd1\\x80\\x98\\x92\\x54\\x38\\xb9\\\n\\x1d\\x7e\\xe2\\x74\\xb9\\x12\\x82\\x35\\x8b\\x0e\\x2b\\x53\\xd1\\x8b\\x46\\x98\\\n\\xb3\\x59\\xb0\\x52\\x4f\\x87\\x5e\\x91\\xa5\\x57\\xfe\\x79\\x7d\\x36\\x44\\xa7\\\n\\x5d\\x53\\x40\\x18\\xab\\x89\\x6d\\xd4\\x7f\\xb4\\x5a\\xf4\\x1e\\x91\\xd1\\xd6\\\n\\x4d\\x6d\\xb9\\x48\\x65\\x76\\x2e\\x7c\\xaa\\x01\\xd5\\x51\\xc0\\xe3\\x48\\x13\\\n\\x9f\\x47\\xc9\\x42\\x4d\\x2f\\x25\\xf7\\x1a\\xbe\\x1e\\x55\\x8d\\x05\\x69\\x96\\\n\\x99\\xa1\\x04\\x25\\xde\\x94\\x48\\xcd\\xb7\\x3c\\x5b\\xad\\x06\\x59\\x01\\x2f\\\n\\x82\\x70\\xa6\\x35\\xea\\xb8\\xd2\\x24\\xe9\\x4f\\x75\\xd1\\xaa\\x9c\\xb0\\xee\\\n\\x8b\\xbb\\xeb\\xcf\\xaa\\xc2\\xbd\\xb1\\x44\\xab\\x34\\xcd\\x85\\x5e\\x72\\x33\\\n\\x77\\x7a\\x7e\\xa1\\x76\\xfd\\x2b\\x6e\\x9a\\x26\\xda\\x92\\xad\\x58\\x57\\xcb\\\n\\x4a\\x77\\x1e\\x5d\\x56\\x2c\\x76\\xd9\\x6a\\x40\\x4a\\x1d\\x29\\xc0\\xde\\x25\\\n\\xef\\x67\\x08\\xd5\\x30\\x50\\x56\\xd3\\x8a\\x66\\x7e\\x9f\\xa8\\xd3\\x36\\xe5\\\n\\xc9\\xb6\\x4a\\x08\\x43\\x8d\\xf9\\x57\\x2e\\x71\\x6b\\x9b\\x2a\\xd2\\xa2\\x75\\\n\\x6a\\x70\\xa2\\xec\\x0e\\x3f\\xb8\\x45\\x9a\\x64\\xe4\\x95\\xc8\\x96\\x6e\\xa3\\\n\\x65\\x4e\\x33\\xc7\\xff\\x00\\x1f\\x48\\x1a\\xe0\\xbd\\x5a\\xd0\\xc9\\x38\\x92\\\n\\x3d\\x7c\\x22\\xcf\\x2a\\x6e\\xbb\\xe1\\x87\\xae\\x43\\xaa\\x75\\x58\\xb3\\xd9\\\n\\x26\\x7b\\xb5\\x95\\x55\\x07\\x55\\x2c\\x9c\\x71\\x68\\x91\\x3d\\x32\\xe5\\x25\\\n\\x25\\x9c\\x62\\xed\\x0a\\x91\\x2a\\x5f\\x65\\x6b\\x53\\x64\\x48\\xcb\\x0c\\x00\\\n\\xc6\\x16\\x4b\\xd4\\x0d\\xd8\\x11\\x00\\x39\\x00\\xef\\xc8\\xd6\\x95\\x7f\\xdc\\\n\\x6a\\x93\\x34\\x25\\x0a\\x70\\x0d\\xe6\\x6e\\x1f\\x77\\x27\\xf5\\x12\\x91\\x71\\\n\\x6f\\x53\\x75\\x44\\x07\\xe0\\xf8\\xd3\\x1c\\xff\\x00\\x50\\xa9\\xe9\\x5a\\x92\\\n\\x95\\x1b\\xa9\\x63\\x81\\xae\\x2c\\xdf\\x88\\xf7\\x84\\x4b\\x97\\x72\\x53\\xaa\\\n\\xf5\\x2f\\x2b\\xb4\\x0e\\x27\\x08\\x9a\\x76\\x2f\\x9d\\xa2\\x6b\\x5e\\x59\\x73\\\n\\xdd\\x84\\x6b\\xc0\\x42\\x76\\x52\\x95\\x16\\x72\\x31\\xc2\\xad\\xf9\\xe3\\x13\\\n\\x27\\xbc\\xcd\\xa3\\x43\\x5a\\x9f\\x2d\\xf1\\x26\\x74\\xb9\\x52\\x94\\x65\\x90\\\n\\xa5\\x29\\x25\\x81\\xde\\xdc\\x3e\\x98\\x44\\x89\\x8b\\x2a\\x0a\\x59\\x65\\x02\\\n\\xf9\\x8e\\xb8\\xbc\\x29\\x6a\\x5a\\x8a\\xaf\\x28\\x70\\xf9\\x69\\x48\\x5b\\xa9\\\n\\x06\\xea\\x42\\xb1\\x7b\\xcf\\x86\\x79\\xd6\\x2c\\x53\\x12\\x89\\xa2\\xf4\\xa9\\\n\\x6f\\x79\\xc5\\x09\\x38\\xef\\x7d\\xfb\\xf8\\xbc\\x4d\\xb6\\xed\\x05\\xdc\\x96\\\n\\xe3\\x73\\xfd\\xf0\\xfd\\x45\\xa7\\x49\\x09\\xd2\\x8c\\xb2\\x94\\x24\\x8f\\xe2\\\n\\xff\\x00\\x5e\\xf8\\x95\\xa6\\x27\\xca\\x3a\\xa9\\x29\\x45\\x48\\xa9\\x7b\\xc0\\\n\\x66\\x68\\x5b\\xef\\x16\\xdb\\x42\\x95\\x28\\x4c\\x70\\x54\\x6a\\xc6\\xa3\\xfb\\\n\\xa0\\x34\\xf3\\xad\\x50\\x12\\xee\\xe4\\x8a\\x57\\xbf\\x2e\\xa9\\x13\\x67\\xce\\\n\\x9b\\x20\\xc9\\x14\\x49\\x3d\\xac\\xff\\x00\\x5d\\x3c\\x21\\x46\\x59\\xd4\\x26\\\n\\x61\\xbc\\xac\\x2f\\x1a\\x96\\xad\\x30\\x6d\\xd9\\x9c\\xb0\\xac\\x4b\\xd7\\x0a\\\n\\x9d\\x52\\xbf\\xd4\\x70\\x3d\\xc7\\x01\\xba\\x24\\x4d\\x27\\xb6\\xaa\\x8c\\x81\\\n\\xd9\\x7a\\xd3\\x7b\\x45\\xa2\\xd2\\x54\\xb4\\xc9\\x00\\x0c\\x5a\\xe6\\x2a\\xad\\\n\\x5e\\x34\\x7f\\xf9\\x94\\x9b\\x3a\\x93\\x26\\x52\\x36\\x85\\x14\\xa0\\xa7\\xf1\\\n\\x7c\\x60\\xcd\\x94\\x54\\xd3\\xa7\\x2b\\xde\\x4e\\x28\\x04\\x14\\xbf\\x78\\xc7\\\n\\x95\\x61\\x55\\x40\\x03\\x16\\x63\\xce\\x2c\\xb6\\x79\\xc1\\x6b\\x52\\xae\\xb5\\\n\\x1a\\xf7\\x5d\\x08\\xb4\\x4a\\xb3\\x4d\\x4a\\x93\\x39\\x69\\x1b\\x2c\\xc9\\x23\\\n\\x31\\xdf\\xdd\\x13\\xec\\x36\\x59\\x53\\xbf\\xe1\\xdd\\x46\\xa0\\x3d\\xd2\\x7b\\\n\\xb2\\x7f\\x28\\x95\\x26\\xcf\\x39\\x28\\x95\\x68\\x1a\\xa2\\x97\\xec\\xe3\\xbf\\\n\\x12\\x1a\\xbd\\x34\\x7b\\xc5\\x96\\xc3\\x2c\\x21\\x01\\xd3\\x43\\x79\\x58\\xbf\\\n\\x73\\x1f\\x07\\xae\\xfc\\xec\\xda\\x65\\x33\\xca\\x90\\x25\\x2c\\x86\\x3b\\x77\\\n\\x0a\\x52\\x4e\\x0c\\x02\\xaa\\x6b\\x8d\\x04\\x4c\\xd1\\x73\\xa6\\x2d\\x33\\x95\\\n\\x24\\x4b\\xdf\\x70\\x50\\x77\\x17\\x3f\\x7e\\x10\\xbb\\x11\\x58\\x70\\x54\\x18\\\n\\x5d\\x2c\\xcd\\x4f\\xcd\\x4c\\x05\\x0b\\x1c\\xd0\\xa5\\x2d\\x44\\xbb\\x31\\xc1\\\n\\x8d\\x01\\xee\\x68\\xd2\\x7a\\x7a\\xe5\\x90\\x6a\\xd3\\x2c\\x96\\xcd\\xf0\\xee\\\n\\xe7\\x12\\xad\\xc6\\xd2\\xe1\\x83\\xa9\\x47\\x9b\\xee\\xf2\\x6e\\x5d\\xf1\\x6b\\\n\\xd1\\x73\\x26\\x5d\\x42\\x1f\\x56\\x4e\\xb9\\x45\\xd9\\x69\\x58\\x3d\\x90\\xd4\\\n\\x29\\x6c\\xaa\\xf1\\x21\\x5a\\x8b\\x2a\\x14\\xb5\\xa8\\x6a\\x1a\\xee\\xed\\xdb\\\n\\x54\\x1f\\xbe\\x71\\x66\\xb5\\x7f\\x99\\x5a\\xa5\\x8b\\x44\\xc2\\x25\\xca\\x3d\\\n\\x91\\xf3\\x01\\x4a\\xbf\\x9f\\x94\\x5b\\xa6\\x2e\\xcb\\x68\\x52\\x64\\x4c\\x26\\\n\\x54\\xc5\\x9a\\x1f\\x95\\x37\\xa8\\xc0\\x36\\x1b\\x9b\\x08\\xf6\\x72\\x44\\xb4\\\n\\x59\\xe6\\x4d\\x41\\x79\\xf3\\xae\\x28\\x05\\xb3\\x38\\x49\\xc3\\x85\\x7f\\x51\\\n\\xed\\x55\\xaf\\x4d\\x49\\x9e\\x89\\x46\\x5c\\xa1\\xac\\x55\\xc4\\xdd\\xbf\\x81\\\n\\x34\\xf9\\x8b\\xe2\\xfc\\x5a\\x27\\xda\\x2d\\xea\\x99\\x72\\x7c\\xb9\\xa2\\x58\\\n\\xed\\x2c\\x38\\x3d\\xce\\x0b\\x8e\\xfc\\x23\\x47\\xe9\\x1d\\x1f\\x67\\xb1\\xc9\\\n\\x97\\x66\\xd6\\x7b\\xcd\\xc6\\x59\\x5b\\x0d\\xaa\\xe3\\x41\\xbc\\x78\\xd6\\x27\\\n\\xc9\\xd2\\xf3\\xd5\\x3d\\x53\\xa7\\x6b\\xa4\\x4e\\x17\\x50\\x83\\x5d\\x56\\xf2\\\n\\x9e\\x24\\x52\\xb1\\xee\\x96\\x84\\x23\\x56\\x18\\x84\\x31\\x38\\x83\\xb2\\x6b\\\n\\x85\\x28\\x38\\x45\\x9a\\xd1\\x3a\\xcb\\x6c\\x0b\\x40\\x05\\x8d\\x2f\\x61\\xbf\\\n\\x23\\x09\\xb4\\x69\\x5d\\x21\\x25\\x53\\x53\\x22\\x46\\xc2\\x46\\x4b\\xc8\\x7f\\\n\\xaa\\x34\\x7e\\x9e\\x9a\\xb9\\x46\\xc7\\x3e\\xcd\\x21\\x53\\x5e\\xea\\x92\\x42\\\n\\xd9\\x29\\x14\\x2a\\x1b\\x58\\xe1\\xc2\\x26\\xe8\\xab\\x2c\\xeb\\x36\\xcc\\x84\\\n\\x3a\\x85\\xe7\\x6a\\x82\\xd9\\x46\\x81\\xb0\\x26\\x54\\xb2\\x89\\xa9\\xd7\\x0d\\\n\\xf3\\x6b\\xe8\\xd1\\xa6\\xf4\\x4a\\x42\\xb5\\xb6\\x54\\xdc\\x37\\x00\\xb8\\x81\\\n\\xb2\\xf5\\xae\\x65\\xfa\\x68\\xd1\\x96\\x09\\xea\\x9a\\x0c\\xf5\\xa9\\x20\\x05\\\n\\x13\\x50\\x07\\x5c\\x22\\xd3\\x60\\x97\\x3a\\x78\\x52\\x96\\x95\\x14\\xe0\\x1c\\\n\\x73\\x8d\\x1f\\xa1\\xf4\\x5a\\xd0\\xa2\\xb4\\xed\\xd7\\x06\\x67\\xef\\xca\\x13\\\n\\x26\\x45\\x98\\xce\\x93\\x2e\\x4c\\xb6\\x5a\\xdc\\x52\\xa6\\x8c\\xef\\x13\\x7d\\\n\\x9c\\x93\\x6a\\xb3\\x4d\\x9b\\xb6\\x99\\x8c\\xe2\\xeb\\x62\\xe3\\x22\\x29\\x1a\\\n\\x3f\\x45\\xc8\\xb1\\xcd\\xda\\xbc\\xae\\x0a\\x6f\\xc4\\x4e\\xb4\\xdc\\x4a\\x42\\\n\\x52\\x96\\x6a\\x74\\xf0\\x15\\x78\\x3b\\x9e\\xe8\\x94\\xb3\\x7b\\xb5\\x47\\x72\\\n\\xe0\\xe0\\xfc\\x47\\xa4\\x4c\\x41\\x5d\\x51\\x51\\x83\\xf1\\x73\\xbe\\x12\\x93\\\n\\x7d\\x3b\\xd8\\xe0\\xdb\\xa2\\x50\\x66\\x73\\xbe\\xb8\\xb3\\xbf\\xde\\x26\\xd9\\\n\\x97\\x8a\\x52\\xef\\xc4\\x78\\xc4\\xc9\\x33\\x10\\x14\\xb9\\xbb\\x2a\\xf9\\x76\\\n\\x85\\x47\\x76\\x60\\xd3\\x7f\\x3a\\xc5\\x9d\\x94\\x80\\xe4\\x95\\x55\\xa9\\x8e\\\n\\x3e\\xb1\\x36\\x68\\x09\\x08\\xf9\\x80\\x1b\\x3c\\xb1\\xe7\\x88\\xae\\x1b\\x9e\\\n\\x90\\x9b\\x3d\\xf1\\xb4\\xe0\\x90\\xf9\\xd1\\xff\\x00\\x71\\x3e\\xc1\\x29\\xe5\\\n\\x17\\x72\\x1f\\x1a\\x6e\\xdf\\x8e\\x15\\xfa\\xbc\\x6a\\x44\\xab\\xa4\\x6f\\xdf\\\n\\xe9\\xd7\\x84\\x5e\\x50\\x56\\xc8\\x71\\xc3\\x79\\xe7\\xd7\\x1c\\x04\\x4b\\x2a\\\n\\xa2\\x54\\x09\\xed\\x3e\\x18\\xe3\\xe6\\x30\\xca\\x27\\xda\\xb5\\x6e\\x94\\xd4\\\n\\x92\\x50\\x71\\x19\\x3e\\x3d\\x34\\x68\\xeb\\x01\\x9a\\x95\\xce\\x50\\x1d\\x82\\\n\\x5c\\xb6\\x55\\xdf\\x4a\\xf0\\x85\\xcd\\x75\\x5c\\x4d\\x54\\x7a\\x1d\\x18\\x5c\\\n\\x85\\x05\\xfc\\x40\\x41\\x60\\x71\\xa7\\x0c\\x20\\x21\\x12\\xb6\\xcf\\x21\\x8f\\\n\\x1e\\xab\\xcb\\x3a\\xae\\x62\\x54\\x58\\xae\\x94\\x6d\\xde\\x43\\xa3\\x07\\x56\\\n\\x99\\x6c\\x93\\x88\\xc3\\xbb\\xed\\x04\\xda\\x25\\x5e\\x48\\x49\\xb8\\xf7\\xaf\\\n\\x38\\xa3\\x93\\xc7\\x38\\x36\\x2d\\x7b\\xcc\\xda\\x49\\x6e\\xd0\\xf9\\x47\\xda\\\n\\x2c\\x5a\\x1f\\x58\\xc9\\xd7\\x90\\x46\\xf7\\xdd\\xc6\\x2d\\x82\\x65\\x9e\\x76\\\n\\xa9\\xfb\\x2b\\xbb\\xfe\\xab\\xb4\\xfc\\xc5\\x9e\\x5d\\x99\\x13\\x64\\xcc\\xb4\\\n\\xaa\\xee\\xc9\\x22\\x85\\x44\\xd4\\x57\\x65\\xf3\\xc8\\xc5\\xab\\x4d\\x26\\x4c\\\n\\xab\\xb6\\x43\\x7e\\x8d\\x83\\x1a\\x7f\\xab\\xc2\\x2f\\xa6\\x72\\x95\\x69\\x2b\\\n\\x4a\\x66\\xb0\\xd8\\x0f\\x79\\x4a\\xc5\\xca\\xf0\\xe0\\x1b\\x73\\x93\\x56\\x8f\\\n\\x7f\\x64\\x25\\xab\\x31\\xb6\\x83\\x60\\x79\\xe1\\xde\\x20\\xdb\\x2d\\x36\\x95\\\n\\x26\\x5d\\xf3\\x26\\xb4\\x2f\\xda\\x7c\\x8b\\x78\\x79\\xc2\\xb4\\x5c\\xe4\\xdd\\\n\\x9b\\x36\\xd2\\xa1\\x5b\\xdd\\xad\\xd9\\x36\\x4f\\xc9\\xe0\\x91\\x2e\\xd2\\x14\\\n\\x14\\x54\\x0a\\x99\\x98\\x9a\\x87\\x27\\x90\\xde\\x54\\xe1\\xe8\\x2a\\x52\\x0c\\\n\\xb3\\x67\\x4a\\x04\\xe9\\xca\\x12\\xf5\\x80\\x9c\\x09\\x22\\xe8\\x6c\\x13\\x80\\\n\\xf0\\xaf\\x37\\x8d\\x62\\x27\\xcc\\x98\\x6c\\xc9\\xf7\\x8d\\x87\\x29\\x20\\xa0\\\n\\xb0\\x3b\\x4a\\xdb\\x6c\\xda\\x83\\x0c\\x63\\x45\\x5a\\x11\\x2d\\x45\\x53\\xac\\\n\\xa2\\x5a\\xaa\\xcf\\x75\\x4d\\xfe\\xd2\\x7b\\x8f\\x94\\x22\\x7f\\xbc\\x53\\xe9\\\n\\x12\\x6c\\xb7\\x8a\\x90\\x06\\xd3\\x3b\\x3e\\xf8\\xd3\\xf6\\x5b\\x4a\\x2d\\xd7\\\n\\x4a\\x14\\x12\\x4d\\x2e\\x6d\\x55\\xe9\\x87\\xd9\\x83\\xe3\\x13\\x74\\x75\\xac\\\n\\x4a\\xbf\\x3a\\x5c\\xc1\\x29\\xb9\\xf9\\x0a\\xe4\\x29\\x09\\xb3\\xae\\x41\\xbd\\\n\\x20\\x3d\\x49\\x1f\\x6c\\xb0\\xf0\\xf4\\x8b\\x14\\xdb\\x4a\\xd2\\x6f\\x4b\\x63\\\n\\x79\\xab\\x5c\\xb8\\xe1\\x58\\x9f\\x2d\\x4b\\xb2\\xcd\\x13\\x38\\x1f\\x94\\x7c\\\n\\xc0\\xb6\\x59\\xe1\\x16\\x49\\x69\\x96\\xca\\x49\\x00\\xe3\\x55\\xa7\\xef\\x1a\\\n\\x64\\x29\\x3a\\x89\\x87\\xb2\\x12\\x97\\x20\\x82\\xee\\xdd\\x79\\xc4\\xaf\\x68\\\n\\x17\\xa3\\xd1\\x67\\x5c\\x8d\\xad\\x92\\xe2\\xae\\x48\\x6e\\xe6\\x6e\\xb7\\xda\\\n\\x7d\\xa5\\x45\\xbe\\x7c\\x89\\xf6\\x90\\xda\\xa5\\x85\\x31\\x06\\xad\\x97\\x0e\\\n\\xb9\\x42\\xf4\\xa6\\x8d\\xb5\\xcb\\x74\\x4b\\x49\\x53\\x53\\x62\\xbe\\x90\\xa4\\\n\\xa6\\xd3\\x38\\x4a\\x91\\x20\\x21\\x40\\xd5\\x40\\x80\\xf8\\x67\\xd7\\x1c\\x22\\\n\\x7c\\x91\\xa2\\x34\\x72\\x26\\xce\\x99\\x7d\\x73\\x9d\\x09\\x49\\x37\\x98\\x84\\\n\\xbb\\x0c\\xb7\\x88\\x46\\x95\\x9d\\x31\\x53\\xc2\\xa5\\xb2\\x4d\\xe0\\x08\\xab\\\n\\x86\\xaf\\xa6\\x7c\\x23\\x45\\xd9\\x17\\x6b\\x9c\\x16\\x10\\xa2\\x97\\x6a\\xee\\\n\\xa6\\x11\\x66\\xb5\\xcd\\xd1\\xe9\\x5d\\x9f\\x57\\x8a\\x58\\x38\\x7c\\x7a\\x31\\\n\\xa3\\xf4\\x5d\\x95\\x77\\xad\\x93\\x4d\\xdb\\x44\\xca\\x5d\\x63\\x9d\\x5e\\x9d\\\n\\x56\\x15\\x3d\\x16\\x64\\xb1\\x55\\x30\\xc3\\xba\\x2c\\xf3\\xcc\\xb4\\x28\\xa7\\\n\\x9c\\x2e\\xd5\\x68\\x9a\\xfb\\x37\\x92\\x0e\\x2e\\x32\\xc7\\x1e\\x1f\\xa8\\x52\\\n\\x96\\xb4\\xdc\\x51\\xd5\\x24\\xd6\\xff\\x00\\x11\\xcb\\x94\\x4b\\xd1\\xcb\\x5c\\\n\\xcb\\xde\\xf0\\x4a\\x5f\\x17\\xeb\\xd1\\xa2\\xda\\xa5\\xd8\\xca\\x65\\xc9\\x75\\\n\\xad\\x57\\x45\\x1e\\xbf\\x4a\\xd6\\x34\\x7d\\x9a\\x62\\xda\\x65\\xad\\x37\\x54\\\n\\x48\\x29\\x0e\\xf7\\x86\\x66\\x98\\x57\\x7c\\x2d\\x5a\\x99\\x44\\x81\\xf0\\x40\\\n\\xda\\x34\\xa0\\xe2\\x33\\xdd\\x05\\x56\\x79\\xb3\\xbb\\x63\\xd2\\x27\\xa6\\xca\\\n\\x25\\xa5\\xe6\\xa5\\xc0\\x1e\\x50\\x26\\xd8\\x00\\x6d\\x7a\\x44\\x2b\\x44\\xad\\\n\\x4f\\x71\\xde\\x84\\x37\\x7b\\xe1\\x0a\\xb3\\x4d\\xb2\\x83\\x2e\\x69\\xa9\\x25\\\n\\x41\\xf1\\x6e\\x84\\x27\\xfa\\x89\\x6e\\x2d\\xfe\\xd8\\x49\\x55\\x49\\xee\\xf0\\\n\\xeb\\xba\\x26\\x2e\\x68\\x18\\xb8\\x18\\x37\\x1c\\x22\\x6c\\xd2\\xc6\\xf8\\x62\\\n\\x0d\\x1f\\x3e\\xf8\\xb1\\xd9\\xaf\\xc9\\x54\\xcc\\x18\\x50\\x0c\\x3c\\x7a\\x68\\\n\\x5d\\x9d\\xcb\\x96\\xc7\\x37\\xf5\\xc7\\xaa\\xd6\\x00\\x17\\x99\\xd9\\x83\\x37\\\n\\x26\\xdd\\x16\\xeb\\xcf\\x28\\x27\\x3b\\xc7\\x2e\\x19\\xf5\\x9c\\x49\\xb2\\xcf\\\n\\x52\\x6f\\xab\\x6a\\xed\\x6b\\x80\\xc3\\x0e\\x9e\\x25\\x4a\\x04\\x82\\x06\\x7d\\\n\\x75\\xe1\\x58\\x42\\x2f\\x4f\\x98\\x97\\xf0\\xe5\\x8c\\x5a\\x24\\xa2\\x5d\\x54\\\n\\xc4\\xf1\\xdf\\x12\\xed\\x8b\\x94\\x2e\\xa1\\x54\\x62\\x37\\x05\\x3d\\x2b\\xfa\\\n\\x83\\x29\\x5f\\xd5\\x2c\\x06\\x3d\\xdf\\xaf\\xab\\xf1\\x54\\xfd\\x61\\xbc\\xe7\\\n\\x75\\x2b\\xd9\\xa4\\x5e\\xbd\\xb2\\x6a\\xf5\\x6a\\x75\\x8e\\xf8\\xd5\\xa1\\xa2\\\n\\x52\\x0a\\x0f\\xc4\\x2e\\x87\\xf2\\xea\\xb0\\x7d\\xdc\\xa1\\xc0\\x0d\\x87\\x80\\\n\\xe3\\xf8\\x8b\\x1e\\xa0\\x4a\\x39\\xb3\\xe3\\xf5\\xeb\\xca\\x35\\xeb\\x13\\xda\\\n\\x56\\xfc\\x3a\\x68\\xb7\\x84\\xda\\x30\\xa2\\xc6\\x27\\x37\\x18\\xf9\\xc0\\x4c\\\n\\xda\\x24\\xfc\\xa3\\xbf\\xc7\\xac\\xa1\\x32\\x02\\x81\\x48\\xed\\x2c\\x00\\xe2\\\n\\xa6\\x98\\x57\\xae\\x22\\x05\\x92\\x64\\xaf\\x9c\\xe2\\x3b\\x4d\\x9e\\x58\\x77\\\n\\x43\\x84\\x8c\\x5d\\x4d\\x5f\\xac\\x5f\\xd5\\xa9\\x2a\\x76\\x2f\\x4a\\x44\\xd9\\\n\\xd6\\xbb\\x42\\x43\\x2b\\x65\\x38\\xf7\\x78\\xc2\\x25\\x19\\x69\\x13\\xa6\\xd4\\\n\\x26\\xa7\\x0a\\xee\\x07\\xaa\\xd0\\xf0\\x84\\xe9\\x14\\x4d\\xb4\\x2a\\x4e\\x29\\\n\\xa3\\x6e\\x7b\\xa1\\xdf\\x2c\\x72\\x84\\x4d\\x94\\x80\\x44\\x9d\\xa9\\xe1\\x04\\\n\\xa8\\xb3\\x6c\\x66\\x91\\x9b\\x3d\\x70\\xda\\x35\\x31\\x60\\xb6\\x21\\xda\\x61\\\n\\xda\\x51\\x2d\\xd6\\x7e\\x51\\x67\\x4e\\xaf\\x0c\\x3a\\x31\\x36\\xdf\\xee\\xf3\\\n\\x2f\\x6f\\x4b\\x63\\xfb\\x80\\x05\\xa6\\x72\\x6d\\x4b\\x40\\x99\\xc0\\xe4\\xfd\\\n\\x75\\x9e\\x90\\xb6\\xcb\\x16\\x7d\\x5f\\xbb\\x0c\\x1b\\x0e\\xba\\x68\\x4d\\x96\\\n\\x54\\xb2\\x55\\x30\\x06\\x2a\\x27\\x93\\x97\\xa0\\xdd\\x8f\\x55\\x83\\x3e\\xcc\\\n\\x29\\x2d\\x9f\\xbb\\x1c\\x8f\\x07\\xcb\\xc2\\x2d\\x29\\x5c\\xe4\\xad\\x2b\\x59\\\n\\x4c\\x95\\x76\\x95\\x80\\x01\\xc7\\xd7\\xd7\\x93\\x48\\xb1\\xd9\\x40\\x0d\\x3b\\\n\\x0c\\x09\\x59\\xc7\\x7c\\x5b\\x0e\\xb5\\x08\\x96\\x4d\\xe4\\xcb\\x17\\x1d\\xe8\\\n\\x40\\x0c\\x0d\\x77\\xb7\\x9c\\x4d\\x32\\xe5\\xa5\\x09\\x50\\xde\\xd9\\xee\\x7f\\\n\\x48\\xbd\\x21\\x65\\x93\\xda\\x34\\x03\\x0a\\xe6\\xe6\\x25\\x3c\\xa1\\x81\\x49\\\n\\x0d\\x4e\\x58\\xb1\\xce\\x24\\xdb\\x11\\x2d\\x57\\x92\\xd7\\x87\\x73\\x9e\\xfe\\\n\\x1f\\x4a\\xc5\\xbf\\x48\\xcd\\xb6\\x4a\\x95\\x2d\\x5d\\x94\\x92\\xa0\\x1f\\x0c\\\n\\x8f\\x97\\xa7\\x7c\\x68\\xbd\\x16\\x99\\x83\\x58\\x52\\x18\\xd4\\xf2\\xcd\\xfc\\\n\\xe3\\x44\\x59\\x6c\\x72\\x88\\xd9\\x48\\xfc\\xc5\\xb9\\x20\\xa9\\x5a\\x99\\x21\\\n\\x41\\x83\\x16\\xe1\\xf7\\x89\\xfa\\x4e\\xd5\\x29\\x7a\\xa5\\x4b\\x28\\x4a\\x76\\\n\\x9f\\x0c\\x29\\x12\\x74\\xb8\\x9f\\xb2\\xb5\\x5e\\xe3\\x16\\x55\\x5f\\x41\\x1c\\\n\\xbc\\x22\\x5c\\xa6\\x96\\x4f\\xf7\\x1c\\x3e\\xb1\\x3d\\xa6\\x9d\\x52\\x95\\x74\\\n\\x5e\\x04\\xf7\\x74\\xcd\\x12\\xa5\\x58\\xac\\xd2\\x42\\xd7\\x3f\\x2f\\xe5\\xdd\\\n\\x9c\\x48\\xb7\\x59\\x9e\\x67\\xbc\\xb1\\x37\\x95\\xab\\x26\\xae\\x1f\\x67\\xe9\\\n\\x03\\x48\\x14\\xa8\\xb1\\xa7\\xcb\\xcb\\xaf\\x18\\x9b\\xa5\\xca\\xa4\\x4c\\x41\\\n\\x34\\x29\\xdf\\xc7\\x08\\x36\\xb9\\xea\\x9d\\xf0\\xf7\\xd1\\x89\\xfc\\x44\\xc9\\\n\\xca\\x55\\xe4\\xae\\xd0\\x42\\xaa\\x08\\xbd\\x81\\xcc\\x6f\\xeb\\xba\\x2e\\x3d\\\n\\x7d\\xe0\\xf8\\x9f\\xb4\\x4b\\xb7\\x6a\\x92\\x41\\xed\\x75\\xd6\\x51\\x6e\\x9f\\\n\\x39\\x76\\xc7\\x51\\x25\\x37\\x10\\xc1\\xcf\\xf2\\x2e\\x18\\xc2\\x6e\\xcb\\x02\\\n\\x7d\\x0d\\xdd\\x96\\x0d\\xf3\\x53\\x0e\\xab\\x48\\x42\\x91\\x68\\xf9\\x82\\x4b\\\n\\xf2\\x3c\\xb2\\xa0\\x84\\xda\\xa4\\xb2\\xa5\\xb2\\x49\\xec\\xb9\\x01\\xe8\\xe3\\\n\\x9e\\x31\\x65\\xb3\\x22\\x62\\xe6\\x2d\\x72\\xd2\\xa4\\x95\\x38\\xbc\\x1c\\x1a\\\n\\x64\\x0e\\x5c\\x22\\xd4\\xb5\\x23\\xe1\\x4b\\x48\\x42\\x4f\\xf1\\x0d\\x9b\\xbd\\\n\\x1a\\x98\\x3c\\x21\\x01\\x52\\xc1\\x60\\x4b\\x73\\x80\\x94\\xe2\\x50\\x9a\\xff\\\n\\x00\\x68\\xea\\xb1\\x68\\x45\\xf9\\x4e\\x99\\x60\\x2d\\x20\\x80\\x28\\x59\\xf0\\\n\\x3c\\xb6\\x46\\xee\\x31\\xef\\x93\\x51\\xf0\\xd4\\x8b\\xaf\\x4c\\x18\\x7a\\x00\\\n\\x06\\xff\\x00\\xdc\\x76\\xa4\\xb8\\xa2\\xb1\\x70\\x1b\\x16\\xcf\\xc6\\x13\\x3a\\\n\\x62\\x66\\xad\\x0e\\xab\\xc2\\x60\\xda\\x72\\xe4\\x30\\x2e\\xfe\\x58\\xe5\\x5a\\\n\\x42\\x64\\xcc\\xb4\\xa8\\x5e\\x25\\x92\\x2f\\x12\\xae\\xe1\\xdf\\xfa\\x89\\x96\\\n\\x8b\\x3c\\x94\\x94\\x09\\x68\\x51\\x4a\\x59\\xca\\x53\\xda\\x3c\\x5b\\x2d\\xf0\\\n\\x6d\\x0b\\x29\\x6a\\xf8\\xd3\\xc2\\x04\\xc5\\x82\\x7e\\x18\\x6c\\xb0\\xf4\\x68\\\n\\x95\\x30\\x15\\x9d\\x90\\x0b\\x54\\xd2\\x9d\\xe3\\x38\\x91\\x29\\x48\\x5b\\x9a\\\n\\x85\\x64\\x6a\\x3a\\x2f\\xe5\\x13\\x94\\xa3\\x87\\x12\\x71\\xeb\\xf5\\x48\\x51\\\n\\x5a\\x93\\x70\\x12\\x2a\\xf7\\x85\\x3c\\xfd\\x39\\x45\\x95\\x4b\\x93\\x45\\x2c\\\n\\xab\\xb4\\x59\\xc9\\x77\\x14\\xf0\\x80\\xb5\\xa5\\x42\\x61\\x4e\\x74\\xfb\\xfe\\\n\\x22\\xe0\\x9b\\x56\\xbb\\x7c\\x92\\xf8\\x6f\\xc5\\xb0\\x78\\x3a\\x26\\xf4\\xa2\\\n\\xb4\\xcd\\x55\\x06\\x17\\xbb\\xf7\\xd7\\xeb\\x12\\x92\\xb9\\x41\\x49\\x7a\\xa4\\\n\\x51\\x4f\\xba\\x86\\xbd\\xfd\\x61\\x12\\xca\\x88\\x37\\x94\\xf8\\xe3\\x57\\x85\\\n\\x49\\x49\\x59\\x51\\x53\\x02\\x7b\\x21\\xba\\x73\\xdd\\x12\\x51\\x25\\x28\\x99\\\n\\xac\\xba\\xab\\xc3\\x66\\xf3\\x53\\x17\\x6e\\x3b\\xe2\\x6d\\xac\\xd9\\xef\\xa1\\\n\\x3f\\x30\\x37\\x58\\x3f\\x0e\\x87\\x18\\x36\\xd9\\xda\\xb0\\x85\\x4b\\x2d\\x8a\\\n\\xaf\\x55\\x92\\xc5\\x95\\x9d\\x09\\x02\\x80\\xd0\\x6e\\x68\\x93\\x3e\\x4a\\xa5\\\n\\x89\\x97\\x10\\x26\\x54\\x12\\x94\\xa5\\x19\\xf8\\xd3\\x9c\\x09\\xcb\\x4a\\x8a\\\n\\xd2\\x15\\xb5\\x47\\xcf\\x1c\\x39\\x53\\x3f\\x58\\x91\\x35\\x42\\xa1\\x35\\x03\\\n\\x16\\x18\\xfe\\xdf\\xe9\\x08\\xb4\\x69\\x55\\xd0\\x85\\x27\\xbd\\xbd\\x1a\\x2c\\\n\\xd3\\xac\\xa8\\x47\\xfc\\x7c\\xc1\\xaf\\x05\\xc8\\x51\\x7d\\x9f\\x94\\xf2\\xea\\\n\\x95\\x85\\xe9\\x8b\\x0a\\x50\\x25\\x59\\xc8\\x0b\\x25\\x29\\xd9\\x6c\\x0f\\x2e\\\n\\x1d\\x18\\xb5\\x49\\x12\\xa4\\x0b\\x49\\x9a\\x66\\x5e\\x0f\\x71\\x4a\\x24\\x57\\\n\\x81\\x78\\xb5\\xcc\\xa1\\xe3\\x97\\xaf\\x20\\xd4\\x78\\xf7\\x99\\x72\\x2f\\x29\\\n\\x41\\x25\\x03\\x69\\xd8\\x11\\x4a\\x97\\xe4\\x6b\\xca\\xb4\\xab\\x0d\\x29\\x2a\\\n\\x7c\\xa1\\x76\\x5a\\x15\\x2e\\x61\\x08\\x0c\\x01\\x4e\\x45\\xf9\\x06\\xdd\\xe1\\\n\\x13\\x67\\x14\\xcf\\x21\\x28\\xba\\x91\\x90\\x0c\\xff\\x00\\xa8\\xb1\\xac\\x29\\\n\\x2a\\xd6\\x62\\x47\\xcd\\x93\\xe4\\x42\\xa9\\xc3\\x94\\x4f\\xb0\\xeb\\x85\\xfb\\\n\\xa0\\x8b\\xaf\\x75\\xb7\\xd5\\x85\\x32\\x18\\xc5\\xa0\\x7b\\xb4\\xc4\\x9d\\x5d\\\n\\xd3\\x7a\\x80\\x81\\x53\\x90\\xe7\\x9b\\x0d\\xd1\\xa3\\xe4\\x4d\\xb5\\xce\\xbc\\\n\\xba\\x3a\\xb0\\x73\\x74\\x0c\\x1b\\x93\\x7a\\x45\\xbf\\x43\\x6a\\x96\\x56\\x26\\\n\\x14\\x97\\x72\\x01\\x3b\\xb0\\xa6\\x01\\xa2\\x5d\\x92\\x60\\x96\\x80\\x0c\\xc2\\\n\\x02\\x89\\xbc\\xa5\\x12\\x4b\\x92\\x71\\xc5\\x83\\xd0\\x6e\\x00\\x6e\\x8b\\x3c\\\n\\xc9\\x92\\x14\\x81\\xac\\x5a\\x43\\xd4\\x05\\x1b\\xad\\xd3\\x40\\xb6\\x99\\x52\\\n\\x89\\x4d\\xe3\\x47\\x70\\x4b\\xfd\\xfc\\xf8\\x46\\x87\\xd2\\x13\\x27\\xa8\\xeb\\\n\\x26\\x4c\\x62\\x4d\\x14\\xa2\\x78\\x67\\xbe\\x34\\xdd\\x8c\\xcc\\x58\\x52\\x66\\\n\\x2b\\x69\\x58\\x05\\x1c\\x2b\\x90\\x8b\\x36\\x8c\\x4c\\x94\\xde\\x5e\\x75\\x24\\\n\\xf2\\xeb\\x76\\x42\\x34\\x3f\\xb8\\x19\\x6c\\xbb\\x41\\x7d\\xe5\\x55\\x8d\\x2d\\\n\\x3e\\xc9\\x62\\x74\\x26\\xd4\\xb6\\xba\\x17\\x49\\x8a\\xcf\\x75\\x78\\x44\\xbd\\\n\\x2b\\x62\\x5a\\x4a\\x4a\\x89\\xe2\\x5c\\xe1\\x93\\xf5\\xce\\x15\\xa4\\xac\\xaa\\\n\\x99\\x75\\x53\\x54\\xa4\\xee\\x51\\x24\\x0e\\x2d\\x13\\x27\\xe8\\xeb\\xa1\\xe6\\\n\\x0e\\xbe\\x91\\x65\\xb7\\xd9\\xb6\\x91\\x2c\\x89\\xa1\\xfe\\x6a\\x91\\x4e\\xc8\\\n\\x78\\xb6\\xda\\xc2\\x25\\x2f\\x64\\x07\\x1b\\x86\\xfe\\xba\\xc0\\xdb\\x16\\xfb\\\n\\x01\\x40\\xf0\\xa1\\x7e\\xe8\\x08\\x98\\x76\\xd4\\x49\\x2a\\xa9\\x72\\x4e\\x3c\\\n\\xcc\\x6c\\x8a\\x32\\x7a\\xee\\x31\\x31\\x32\\x26\\x28\\x28\\xaa\\xe6\\x14\\xa6\\\n\\xfe\\x71\\xa4\\x66\\x4a\\x4a\\x76\\x12\\x0a\\xae\\xd0\\xe7\\x47\\xeb\\x99\\x8b\\\n\\x3a\\xe6\\x2c\\xea\\x96\\x28\\xa7\\xce\\xae\\x2a\\x3b\\xdf\\x2e\\x31\\xee\\x16\\\n\\xa5\\x97\\x41\\x20\\x62\\xcd\\xc2\\x94\\xf5\\x8f\\xf2\\xbb\\x7a\\x14\\x95\\x07\\\n\\x37\\x54\\xe2\\xa6\\xb8\\xf6\\x87\\xec\\x61\\x16\\x4b\\x6a\\xa4\\x29\\x32\\xed\\\n\\x72\\x11\\x2b\\x75\\xc5\\x15\\x38\\xc0\\xa8\\xb8\\x0d\\x57\\xfb\\xc5\\xaa\\x6d\\\n\\x8a\\x7c\\xb2\\x25\\x2b\\xe2\\x94\\xec\\x06\\x02\\xb8\\xf3\\xc1\\xfb\\xf1\\x89\\\n\\x4a\\xb4\\x95\\x6a\\x84\\x8a\\x00\\xd7\\x9f\\xe8\\xc7\\xd6\\x0c\\xa5\\x24\\x32\\\n\\xd3\\x51\\x45\\x57\\x0e\\xbd\\x61\\xd2\\xe4\\x2c\\x84\\x39\\x01\\x19\\xde\\x20\\\n\\xf1\\x6c\\x3d\\x22\\x74\\xb9\\x6a\\x95\\x35\\xa5\\x8a\\xa0\\xed\\x1e\\xd0\\x2d\\\n\\x8f\\x74\\x20\\x99\\x68\\x09\\xa2\\xb0\\xbc\\xfc\\x3c\\x60\\x48\\x0a\\x9a\\x56\\\n\\xa1\\x89\\xcb\\x70\\xc3\\xaf\\x28\\x40\\x41\\x94\\x65\\xa4\\x5d\\x37\\x72\\x89\\\n\\x96\\x7b\\xab\\x01\\x4a\\x2b\\x25\\x4d\\x50\\xc0\\x71\\xe6\\x60\\xd8\\x65\\xe4\\\n\\x5b\\xef\\xe3\\x87\\x08\\xf7\\x44\\x02\\xa1\\x88\\xba\\x2b\\xd1\\x85\\xa5\\xe6\\\n\\x6a\\xe5\\xca\\xc0\\x5f\\xbc\\x0e\\xec\\xbe\\x9f\\x98\\x16\\xa9\\x93\\x5d\\x02\\\n\\x42\\x5d\\x0f\\xb4\\x09\\x77\\xdd\\xd6\\x1b\\x84\\x5d\\x5a\\xd9\\x37\\x6e\\x12\\\n\\x59\\xd5\\x9d\\x2a\\xdc\\xbf\\x10\\xb9\\x26\\x49\\x0a\\x22\\xf5\\x3b\\x27\\xb2\\\n\\x43\\xfa\\xef\\xee\\x8b\\x14\\x89\\x56\\x89\\xc0\\xde\\xd5\\xa7\\xb8\\x8c\\x38\\\n\\xfe\\x61\\x56\\x2b\\x32\\xd2\\x13\\xac\\x00\\xd5\\x8d\\x39\\x42\\xec\\xc0\\x12\\\n\\x94\\xcd\\x34\\x34\\xa6\\x42\\x91\\x26\\x54\\xc4\\x05\\xcb\\xd7\\x28\\x89\\x95\\\n\\xc3\\xb2\\xd4\\xc1\\xf8\\xc4\\xdb\\x3a\\xa5\\x29\\x82\\x8a\\xef\\x50\\x92\\x32\\\n\\x7c\\x43\\x16\\x19\\x1e\\xf8\\x96\\x9b\\xae\\xff\\x00\\x9a\\xc6\\xa5\\x4b\\x9b\\\n\\x36\\xec\\xc5\\x76\\xbb\\x2d\\x9e\\xec\\x7c\\x7b\\xe1\\x56\\x7b\\x62\\xe6\\x55\\\n\\x6a\\x40\\x96\\xac\\x85\\x16\\xf9\\x1c\\xc3\\x36\\xf8\\xd5\\xa3\\x64\\xcd\\x5d\\\n\\xdb\\x8a\\x04\\x86\\x1b\\x4d\\x56\\xab\\x50\\xe7\\xbb\\x9c\\x4d\\x9d\\x65\\x52\\\n\\x0a\\x75\\x42\\xf1\\xc3\\x96\\x5c\\x1b\\x86\\x1c\\xc6\\x12\\x93\\x67\\x4a\\x8e\\\n\\xc2\\x46\\xf5\\x0c\\xd9\\xf9\\x60\\xe4\\xb6\\xf7\\x89\\xb6\\x8b\\x20\\x96\\x91\\\n\\x26\\xec\\xd9\\xaf\\xb4\\x1d\\x98\\x7e\\xfd\\x79\\x42\\x34\\x8d\\xc1\\xff\\x00\\\n\\xb7\\x41\\x23\\x1d\\xa3\\x97\\x77\\x7c\\x4c\\xd3\\xb3\\xa6\\xff\\x00\\x4c\\x04\\\n\\x11\\x98\\x73\\x41\\xc1\\xbd\\x33\\x61\\x00\\x4c\\xb5\\xda\\x12\\xb9\\xd7\\xf6\\\n\\x82\\x76\\xdd\\x9c\\x35\\x07\\x16\\x0f\\x09\\x95\\x67\\x94\\xad\\x94\\xd7\\xf9\\\n\\x39\\x77\\xc3\\x08\\x93\\x3d\\x78\\x2e\\x62\\xa6\\xa3\\x24\\x91\\xf5\\x78\\x55\\\n\\x8e\\x7d\\xa1\\x2a\\x20\\x14\\xee\\x38\\xef\\xcb\\x97\\x8c\\x7f\\x95\\x4e\\x5c\\\n\\x99\\xb2\\xee\\xbc\\xb2\\xb5\\x07\\x6a\\x87\\xc7\\x9e\\x78\\x46\\x8d\\xd1\\xbe\\\n\\xea\\x51\\x65\\x59\\xbc\\x96\\x51\\xbc\\xa6\\x04\\x0b\\xa5\\xcd\\xdc\\x3c\\xe9\\\n\\xc6\\x27\\xd8\\xd2\\x6d\\x62\\xe9\\xd9\\x67\\x3b\\x21\\xaf\\x73\\xcc\\x53\\xc5\\\n\\xb9\\x42\\x6c\\x2b\\x42\\xf5\\x85\\x4a\\xba\\xf8\\x35\\x1b\\xa1\\x41\\x12\\x66\\\n\\x26\\x6c\\xbb\\xa9\\x61\\xaa\\x60\\x48\\xf9\\xaf\\x57\\xbb\\x02\\xff\\x00\\xb6\\\n\\x55\\x8e\\x55\\xa4\\x29\\x25\\x35\\xa8\\x05\\xaa\\xe6\\x86\\x24\\xd9\\x05\\x85\\\n\\x77\\x8a\\x89\\xc6\\x8c\\x00\\x7e\\xb0\\x89\\xaa\\x9f\\x6a\\x9a\\xe8\\xb8\\x41\\\n\\x53\\xdd\\x7c\\xb0\\xe4\\xfe\\x3c\\x21\\x5a\\x3a\\x72\\x6c\\xc8\\x51\\x40\\x75\\\n\\x12\\x29\\x5c\\xbf\\x7d\\x52\\x26\\x23\\x54\\xe2\\x69\\x28\\xe7\\x56\\x6c\\xc1\\\n\\x24\\x6e\\x8d\\x1d\\x35\\x73\\xd6\\x24\\xa6\\x50\\x99\\x27\\x39\\xae\\x45\\x1e\\\n\\xb4\\xfc\\xc4\\xdb\\x1a\\xac\\x93\\x14\\xab\\x3e\\xda\\x08\\x04\\x51\\x98\\xb5\\\n\\x45\\x1e\\x1a\\x64\\xe2\\x82\\xb5\\x9e\\xd0\\xd9\\x6d\\xd0\\xab\\x10\\x9f\\x21\\\n\\x29\\xd6\\x14\\x53\\x20\\x0e\\xed\\xf0\\x34\\x34\\xb4\\xd6\\x4c\\xd5\\x8c\\xd8\\\n\\x0a\\x79\\x18\\xb4\\xe8\\x7d\\x69\\x69\\xc4\\xab\\x64\\x6d\\x1d\\xdb\\x9b\\xc4\\\n\\xc0\\xd1\\xf6\\x19\\x6a\\xd4\\x21\\x20\\xa8\\xb9\\xbd\\xca\\xbc\\x7b\\xfe\\xb1\\\n\\x67\\xf6\\x76\\xcf\\x3e\\x63\\x95\\x10\\x5d\\xe8\\x9f\\xcf\\xe6\\x27\\xe8\\x09\\\n\\x49\\x71\\xad\\x56\\x63\\xb2\\x32\\xef\\x8b\\x1e\\x8d\\x45\\x9e\\x70\\x65\\xe2\\\n\\x5d\\x98\\x56\\xb1\\xa4\\xac\\x21\\x72\\x4a\\xcd\\x00\\x4d\\x68\\x0e\\xe8\\x4d\\\n\\x9e\\x52\\x77\\x9f\\xfa\\x47\\xde\\x35\\x08\\xba\\x0d\\xe6\\x71\\xb8\\x7a\\xbf\\\n\\xe3\\x94\\x1b\\x38\\x73\\xb6\\xaf\\x04\\xfd\\xe3\\x49\\x58\\xa7\\x22\\x60\\x4c\\\n\\xa4\\x92\\x1d\\x9d\\x3b\\xa2\\x46\\x8d\\x54\\xd9\\x88\\x33\\x42\\x82\\x5b\\x12\\\n\\x33\\x85\\x68\\x6b\\x3c\\x94\\xeb\\x50\\xc4\\xb8\\xae\\xe7\\x31\\x6b\\x9b\\x2a\\\n\\xcb\\x67\\xf8\\x4c\\xb5\\xe6\\x13\\x55\\x72\\xef\\xf2\\x89\\x36\\x3b\\x6c\\xe4\\\n\\xa5\\x44\\x90\\x95\\x0b\\xdb\\x99\\xeb\\x5c\\xf0\\xfd\\xb4\\x0b\\x15\\x98\\x4b\\\n\\x57\\xbc\\x01\\x32\\x60\\x3b\\x15\\xda\\x09\\xcc\\x77\\x98\\xb9\\x26\\xfe\\xd5\\\n\\x98\\xa7\\x56\\x1d\\x33\\x17\\x80\\x77\\xaf\\xd3\\xc2\\x2c\\xd6\\xd9\\x92\\xa6\\\n\\xb8\\x95\\x7b\\x95\\x43\\x65\\xe5\\xdf\\x16\\x9d\\x20\\x85\\x4c\\x99\\xb4\\x84\\\n\\xa8\\xa8\\xbb\\xe4\\x77\\x10\\xdd\\xd1\\x68\\x9a\\x99\\xc5\\x3b\\x77\\x6e\\x39\\\n\\x73\\x9f\\x08\\x33\\xe6\\x5c\\x5c\\xb1\\xb5\\x78\\x14\\xde\\xf1\\xdf\\xc7\\x9c\\\n\\x49\\x49\\x7d\\xb6\\x4f\\x3f\\xac\\x49\\x0b\\x99\\x3a\\xe2\\x50\\xa5\\x4b\\x14\\\n\\x0b\\xc9\\x47\\x1a\\x72\\x2f\\xe5\\x16\\xab\\x0a\\xa4\\x48\\x97\\x30\\x24\\xde\\\n\\x5a\\xdb\\xca\\xf4\\x28\\x25\\x53\\x6e\\x0d\\xa9\\x89\\xaa\\x93\\x9f\\xef\\xbe\\\n\\x12\\x92\\xad\\x80\\x1c\\xc5\\xa6\\x4a\\xe5\\x49\\x49\\x52\\x4a\\x66\\x2c\\xb2\\\n\\x52\\x5a\\xbc\\x22\\x7f\\xfc\\x2b\\x09\\xbf\\x0e\\x7c\\xc0\\xe9\\x42\\x8e\\xd2\\\n\\x81\\xed\\x11\\xbc\\x0e\\x3c\\x0d\\x62\\xc0\\x5f\\xe5\\x64\\xa5\\xc9\\x71\\x52\\\n\\x49\\x24\\xf9\\xd7\\xce\\x04\\xe9\\xb2\\xd4\\xd3\\x10\\x52\\x0a\\xa8\\x0e\\x63\\\n\\x3d\\xdf\\x68\\xb5\\xcd\\x96\\x50\\x0c\\xc2\\x94\\x76\\x92\\x90\\xf5\\xe1\\x87\\\n\\x5d\\xf1\\x21\\x66\\x40\\x4d\\x58\\x91\\xb2\\xe5\\x82\\x85\\x32\\xe5\\xd0\\x8f\\\n\\x7d\\x9a\\x78\\xef\\x62\\xf1\\x66\\x13\\x67\\x17\\xb8\\xa3\\xb2\\xf5\\x6e\\x9b\\\n\\xca\\x2d\\x02\\xe2\\x05\\xde\\xd0\\x15\\x03\\xeb\\xf7\\xe1\\x16\\x71\\x2d\\x43\\\n\\xe2\\x90\\x85\\x63\\x5e\\xfc\\xcf\\xea\\x27\\x2e\\x5a\\xef\\x26\\xcc\\xb9\\x6b\\\n\\x52\\x0e\\xd0\\x00\\xa9\\x86\\xe2\\xcc\\x5f\\xa6\\x8b\\x2c\\x8b\\x2a\\x06\\xb5\\\n\\x73\\x52\\x16\\xb4\\xd5\\x24\\x9c\\x5c\\x9c\\xe8\\x31\\xef\\x89\\x93\\x51\\x7a\\\n\\xec\\xb1\\x7a\\xf6\\x17\\x73\\xfb\\x9f\\x48\\x9b\\xa3\\x97\\x37\\x6b\\x69\\x2d\\\n\\x56\\x6a\\xaa\\x98\\x3e\\x41\\xeb\\x83\\xfd\\x53\\x62\\x4a\\x69\\x36\\x60\\x4a\\\n\\xbf\\xbb\\x1e\\x9a\\x2d\\x36\\x09\\x7b\\x48\\x13\\x3e\\x5c\\x5c\\xe6\\x3a\\xa4\\\n\\x4a\\xd1\\xc8\\xb3\\x4d\\x33\\x2f\\x5f\\x74\\xb3\\x1a\\xe7\\x8e\\xe7\\x18\\x42\\\n\\x6c\\x97\\x9d\\x29\\x94\\x91\\x78\\xb9\\x21\\x2c\\xe5\\x59\\xe0\\xfd\\xf0\\x6c\\\n\\x7e\\xec\\x1d\\x02\\xfd\\x3e\\x56\\xea\\xbc\\xb3\\x89\\x1a\\xf9\\xca\\xb8\\x99\\\n\\x2b\\x52\\xff\\x00\\x83\\x0c\\x37\\xf2\\xe1\\x07\\x47\\x89\\x32\\x2f\\xda\\x3e\\\n\\x0a\\xdd\\x22\\xea\\xe8\\x6a\\xfd\\xdc\\x1b\\xd6\\x2c\\xd6\\x34\\x4f\\xa4\\xb5\\\n\\x05\\x97\\xf9\\x7f\\x43\\x94\\x4b\\xb4\\x4e\\x90\\x16\\x26\\x48\\x5a\\x00\\x51\\\n\\x1b\\x43\\x16\\xa7\\x5c\\xe1\\x1a\\x54\\xcb\\x0b\\x48\\x40\\x65\\xaf\\x8f\\x7b\\\n\\xf7\\x6e\\x84\\x4e\\xd7\\x2c\\x2e\\xed\\x03\\xed\\x8c\\x83\\x54\\x42\\x25\\xfc\\\n\\x4a\\xd5\\x04\\x92\\xfc\\x72\\xf0\\xfd\\xc5\\xa9\\x48\\x32\\xc2\\x70\\xa7\\x8d\\\n\\x32\\xeb\\x38\\xb1\\xc9\\x5c\\xb4\\x4f\\x53\\x29\\x94\\x50\\x70\\xe0\\xaf\\xb8\\\n\\xdd\\x16\\x79\\x81\\x17\\x89\\x38\\x07\\xe6\\xd5\\xdd\\x16\\x83\\xae\\xa5\\x3b\\\n\\xb7\\xf5\\x48\\xf7\\x59\\xc9\\xb4\\x92\\x8b\\x4d\\x2f\\x0d\\x8c\\x2e\\xf0\\xf3\\\n\\x8b\\x1c\\xf5\\x25\\x08\\x44\\xf9\\x81\\x43\\x89\\xc2\\x34\\xbd\\x8e\\xcf\\x69\\\n\\x48\\xb8\\xb4\\x9b\\xc9\\x63\\x75\\xe8\\x0e\\x3e\\x03\\xa3\\x16\\x56\\xd1\\x92\\\n\\x93\\x2e\\xed\\xe4\\x96\\x02\\x66\\xfe\\x5d\\x7e\\x64\\x5b\\x59\\x02\\x54\\xca\\\n\\x0c\\x41\\x38\\x6d\\x57\\x1e\\xf6\\xdd\\xe0\\x62\\x4a\\x91\\x32\\xd2\\xc8\\x50\\\n\\x55\\x09\\x61\\xcd\\xba\\xf0\\x85\\x5a\\x64\\xa4\\xa6\\x40\\x98\\x9d\\x65\\x36\\\n\\x5e\\xbd\\x6f\\xfb\\x46\\xac\\x48\\x17\\xa9\\x87\\x5d\\x71\\x8b\\x6d\\xbe\\x59\\\n\\x94\\x43\\xa6\\xfe\\x00\\x45\\xf9\\x82\\x7e\\xbf\\x30\\x08\\x6d\\xe0\\xe7\\x1a\\\n\\x3a\\xdb\\x38\\xcc\\xec\\x9e\\xba\\xdf\\x16\\xcb\\x7a\\xd0\\x4b\\xa4\\x87\\x2a\\\n\\xf2\\xe4\\xf1\\x66\\xb4\\xaa\\x6a\\xf5\\x84\\xf6\\x68\\xc7\\x8d\\x69\\x16\\xcd\\\n\\x2a\\xa5\\x27\\xdd\\xd8\\xb2\\xc3\\x3b\\xf5\\xba\\x02\\x94\\x70\\x7f\\x18\\x99\\\n\\x68\\xbb\\x45\\x2a\\xa3\\x22\\x7a\\xeb\\x28\\x0a\\x9c\\xaa\\x84\\x92\\x0e\\x71\\\n\\x67\\x96\\x89\\xca\\xf8\\x81\\xea\\x3c\\xff\\x00\\x51\\x6b\\x91\\x2a\\x58\\xd8\\\n\\x4b\\x32\\x7e\\xf1\\x68\\x9a\\xb0\\xa2\\x97\\xa4\\x28\\x05\\x0a\\xc4\\xb9\\xf3\\\n\\x53\\x2c\\x80\\xac\\x03\\x78\\x50\\x45\\xa6\\xd3\\x3b\\x58\\x76\\xb7\\x8f\\x18\\\n\\x36\\x89\\xaa\\x4a\\x81\\x55\\x02\\x5b\\x01\\x80\\xeb\\x94\\x49\\x9f\\x32\\xf1\\\n\\x17\\xba\\xdd\\xd7\\xa4\\x2e\\xab\\x51\\x38\\x95\\x3f\\x8c\\x30\\x30\\x32\\xff\\\n\\x00\\x0b\\x3c\\xc5\\xa6\\x60\\x62\\xcd\\x13\\xe7\\x2d\\x72\\xa5\\x05\\x17\\x65\\\n\\x3f\\xfd\\xa6\\x2c\\x29\\x0b\\xd2\\x53\\x0a\\x83\\xf6\\x87\\xd3\\x08\\x9e\\x35\\\n\\x53\\xf6\\x28\\xc2\\x9e\\x31\\x3e\\x62\\xa6\\x89\\x57\\xf6\\xae\\xcc\\x50\\x1d\\\n\\xd1\\xa5\\xd4\\x66\\x5a\\x10\\x55\\x52\\x94\\x06\\x3c\\xdf\\xa1\\x1a\\x38\\x0b\\\n\\x9b\\xea\\x31\\xe4\\xf1\\x6b\\x42\\x6f\\x0d\\x91\\x16\\x99\\x32\\xd5\\x65\\x41\\\n\\x29\\x0e\\x66\\x62\\x39\\x7e\\x23\\x48\\xca\\x48\\xf7\\x6c\\x76\\x69\\x8f\\xf6\\\n\\x1d\\xd9\\xc5\\x9c\\x0f\\x10\\x5f\\xc7\\x1e\\x71\\x66\\xa5\\xd0\\x29\\x40\\x3c\\\n\\x9f\\xd6\\x13\\x2d\\x2a\\x25\\xfe\\x90\\x2c\\xb2\\x48\\xaa\\x72\\x8d\\x1d\\x22\\\n\\x51\\x9f\\x68\\xd9\\xf9\\x94\\x3d\\x62\\x5d\\x8a\\x43\\xa8\\x14\\x92\\x38\\x9c\\\n\\x29\\x96\\xe8\\xb1\\x59\\x24\\x2a\\x6a\\xc1\\x45\\x11\\x76\\xe8\\xdc\\xe4\\xbf\\\n\\xa4\\x5b\\xd2\\x25\\xb8\\x45\\x00\\x7f\\x26\\xfb\\xc5\\xa2\\xb3\\x43\\xff\\x00\\\n\\x17\\xf2\\x89\\xbf\\x31\\xe0\\x9f\\xa4\\x2b\\x3e\\xb7\\xc5\\x84\\x3a\\x01\\x3c\\\n\\x07\\x9c\\x4c\\x91\\x2f\\x76\\xe1\\xe4\\x7e\\xd1\\xa1\\xec\\x92\\x35\\xf7\\xee\\\n\\x07\\x27\\xef\\xf6\\x8f\\x69\\x36\\x09\\x09\\xc8\\x8f\\xac\\x68\\x00\\x0a\\x87\\\n\\x31\\xf4\\x8f\\x75\\x91\\x35\\xc2\\xe5\\x25\\x4d\\xc3\\x7c\\x69\\x6d\\x1d\\x64\\\n\\x49\\x17\\x65\\x04\\xec\\xe5\\x4c\\xe2\\x44\\xa4\\x09\\xd7\\x00\\xd9\\x72\\x1b\\\n\\xae\\x50\\x2c\\xf2\\xa9\\xb3\\xf2\\x98\\x9d\\x22\\x56\\xce\\xc8\\xc0\\x7d\\x22\\\n\\x45\\x9e\\x57\\xbb\\xab\\x67\\x14\\xa7\\xcc\\x3c\\x7b\\xb4\\x9d\\x54\\xe5\\x5d\\\n\\xad\\xd3\\x12\\x24\\x4b\\x38\\x8c\\xc7\\xd2\\x0d\\x9e\\x57\\xbc\\xab\\x67\\x13\\\n\\xf6\\x11\\xa4\\x8e\\xa9\\x12\\xae\\x51\\xd4\\x7c\\x84\\x7b\\xc4\\xdb\\xd7\\x6f\\\n\\x51\\xc0\\xf1\\x6f\\xbc\\x5a\\x83\\xd8\\xa4\\x1c\\xdc\\x7f\\xf6\\x3f\\x48\\x98\\\n\\x4d\\x38\\x25\\x3f\\x41\\x16\\x39\\xab\\x4d\\xa0\\xdd\\x2d\\x46\\xee\\x71\\x06\\\n\\xd1\\x34\\xe9\\x64\\x8b\\xdb\\xbd\\x62\\x74\\xf9\\xba\\x85\\x1b\\xdb\\xa1\\x73\\\n\\x14\\x66\\x90\\x4b\\x8b\\xd1\\x36\\x8b\\xa7\\x0f\\xac\\x68\\xbf\\xea\\x77\\xfd\\\n\\xa3\\x49\\x49\\x97\\xb2\\x5a\\x0a\\x42\\x16\\x02\\x69\\x43\\xe8\\x4c\\x5a\\x89\\\n\\xd7\\xa3\\x99\\xff\\x00\\xed\\x12\\xd4\\x5b\\xbb\\xd2\\x27\\x80\\x56\\xe4\\x66\\\n\\xf1\\x24\\x0d\\x5a\\x79\\x0f\\x48\\xff\\xc4\\x00\\x46\\x11\\x00\\x01\\x02\\x04\\\n\\x03\\x05\\x05\\x06\\x05\\x03\\x03\\x03\\x03\\x04\\x03\\x01\\x01\\x02\\x03\\x00\\\n\\x04\\x11\\x21\\x05\\x12\\x31\\x13\\x22\\x41\\x51\\x61\\x06\\x71\\x81\\x91\\xf0\\\n\\x14\\x32\\x42\\xa1\\xb1\\xc1\\x23\\x52\\xd1\\xe1\\xf1\\x15\\x33\\x62\\x07\\x24\\\n\\x72\\x43\\x82\\x92\\x10\\x16\\x53\\x34\\xa2\\xc2\\xd2\\x25\\x44\\x63\\xb2\\xff\\\n\\xda\\x00\\x08\\x01\\x02\\x01\\x01\\x3f\\x01\\xc1\\xf0\\x49\\x99\\x5c\\x2d\\x4f\\\n\\x3c\\x72\\xa9\\x22\\xbe\\x50\\x8c\\x45\\xc7\\x36\\x88\\x5f\\xbc\\x9d\\xdf\\xfb\\\n\\x78\\x44\\x92\\x56\\xe2\\x9c\\x3d\\x62\\x60\\xb7\\x4c\\xaa\\x50\\x89\\x1d\\xaa\\\n\\x83\\x75\\x75\\x21\\x21\\x29\\xa5\\xf8\\x52\\x24\\xe5\\x65\\x26\\x41\\x71\\xe9\\\n\\x96\\xea\\xd0\\xcb\\x4c\\xc3\\x8d\\xf9\\xc3\\x8f\\xe0\\x52\\xaf\\xba\\x1d\\x01\\\n\\xf0\\x93\\x74\\x03\\x5c\\xf7\\x85\\x76\\x86\\x61\\xf4\\xfb\\x3e\\x11\\x87\\x14\\\n\\xa3\\x40\\x68\\x7f\\x48\\x26\\x69\\x90\\xa7\\x31\\x75\\xa5\\x08\\xd4\\xa2\\xba\\\n\\x74\\x87\\x7b\\x49\\x85\\x4a\\xba\\xa5\\x4a\\x4a\\x29\\xf5\\x24\\xef\\x9e\\xbc\\\n\\x29\\xdf\\x78\\x94\\xed\\x74\\xa4\\xfa\\x92\\x97\\xe4\\x76\\x57\\x03\\x39\\xb6\\\n\\x5e\\xb7\\x1c\\x23\\xb5\\x8d\\xb1\\x32\\x10\\xe3\\x0a\\xcd\\xa6\\x90\\x5b\\x71\\\n\\x37\\x22\\x1c\\x9a\\x71\\x09\\xca\\x90\\x6a\\x6d\\x01\\x87\\x5c\\x35\\x50\\x3b\\\n\\xd1\\x85\\xe1\\x86\\xa3\\x38\\x89\\x66\\x5b\\x43\\x41\\x9a\\xee\\xb4\\x4a\\xeb\\\n\\x6a\\x6f\\x5c\\xc7\\x68\\x7d\\xb1\\xe9\\xed\\xb3\\x0d\\x95\\x34\\xdd\\xaa\\x2e\\\n\\x2d\\x0d\\x62\\x9b\\x7c\\x33\\xd9\\x9d\\xb1\\x09\\xa5\\xfb\\xa1\\x2d\\x3d\\x24\\\n\\xfa\\xf2\\x27\\x36\\x65\\xa8\\xd3\\xbd\\x47\\xd5\\xa1\\xf7\\x66\\x5f\\x71\\x86\\\n\\xdc\\x49\\x19\\x8a\\x40\\xb5\\xe9\\x5a\\xd6\\x25\\x64\\x52\\x99\\x46\\x8f\\xc7\\\n\\x41\\x68\\x6d\\xf5\\x4b\\x68\\x20\\x24\\x2d\\x45\\x44\\xfb\\xe4\\xa8\\xf8\\x9a\\\n\\xc6\\x20\\xe0\\x65\\x9c\\xa0\\x66\\xcd\\x4d\\x3a\\x5a\\x31\\x4c\\x21\\xdc\\x49\\\n\\x0d\\x14\\xb4\\x75\\xa8\\x55\\x34\\xa7\\xdb\\xef\\x0c\\xb1\\x9f\\x66\\xc2\\xbd\\\n\\xe6\\x35\\xf0\\x89\\x69\\x06\\xf3\\xed\\x09\\xf7\\x8d\\x60\\x6c\\xd9\\x40\\xcb\\\n\\x72\\x6b\\x58\\x71\\xf0\\x01\\xee\\x3f\\x28\\x6e\\x60\\x2e\\x1c\\x35\\xaf\\x87\\\n\\xda\\x10\\x80\\x54\\x6a\\x79\\xfd\\x63\\x66\\x8e\\x7e\\xbc\\xe1\\xb6\\x12\\x8e\\\n\\x30\\xa5\\x53\\x4e\\xe8\\x33\\x34\\x85\\xce\\x2b\\xe7\\x02\\x6c\\x29\\x3c\\x23\\\n\\x3a\\x54\\x4f\\x0b\\xc0\\x02\\x12\\xe2\\x4a\\x72\\x56\\x18\\x93\\xc9\\x57\\x07\\\n\\xc5\\xbd\\xf7\\xb4\\x4e\\xbc\\xe8\\x71\\xb4\\x24\\x7e\\x6a\\x98\\xec\\x63\\xab\\\n\\xda\\x2d\\x97\\x81\\xd9\\xb9\\x65\\x74\\x07\\x5b\\xc4\\xd6\\x09\\x86\\x4d\\x7b\\\n\\xc6\\x9d\\xd1\\x8d\\x60\\x98\\x14\\x8a\\x5c\\x26\\xeb\\x15\\xad\\x28\\x6f\\x48\\\n\\x77\\x12\\xc3\\xda\\x79\\x69\\x6a\\x5c\\xac\\x03\\x4a\\x8c\\xa1\\x35\\xe8\\x4d\\\n\\x2b\\xd4\\x81\\xaf\\x71\\x89\\x5c\\x7a\\x55\\xad\\x65\\x16\\x0f\\x0a\\x14\\x9e\\\n\\xe3\\xef\\x53\\xca\\x25\\x31\\x79\\x59\\x86\\x33\\x15\\x81\\xd0\\x9a\\x53\\xc2\\\n\\xd4\\x89\\x4c\\x6a\\x4e\\x45\\xe5\\xba\\x84\\xa9\\x6b\\x50\\xb9\\xa5\\x88\\xe1\\\n\\x73\\x4f\\x97\\x38\\x33\\x58\\x5c\\xde\\x2b\\xed\\x93\\x68\\x56\\xf3\\x64\\x0e\\\n\\x23\\x31\\x20\\xf0\\xad\\xc7\\xca\\x18\\x98\\x91\\x75\\xa0\\x25\\x94\\x02\\x7b\\\n\\xc7\\x0f\\xd2\\x1e\\x79\\xbc\\xda\\xd2\\xff\\x00\\x5f\\xe2\\x13\\x32\\x90\\xa6\\\n\\x80\\xa7\\xbd\\xce\\x31\\x83\\xb5\\x0d\\x81\\xc5\\x35\\xd6\\x26\\x18\\x35\\x3e\\\n\\xbe\\x5e\\xb5\\x8d\\x89\\xf4\\x60\\x31\\x7f\\x5f\\x58\\x4b\\x79\\x05\\x6f\\x61\\\n\\xeb\\xf8\\x8c\\xb9\\xbd\\x6b\\xeb\\x94\\x30\\x95\\x56\\x12\\x2d\\x78\\xed\\x0a\\\n\\xd7\\x25\\x87\\xec\\x5d\\x73\\xf1\\x55\\x6c\\xac\\x9a\\x57\\xc2\\xf1\\x2f\\xb1\\\n\\x4a\\xf2\\x2f\\x69\\xb6\\x52\\x73\\xdc\\xda\\x87\\xc3\\xa1\\x81\\x8a\\xa3\\x0f\\\n\\x4b\\xb5\\xc8\\xa5\\x56\\x99\\x00\\xde\\xbd\\xb8\\x75\\x82\\xf6\\x2b\\x8a\\xcf\\\n\\x86\\xe5\\xc3\\x68\\x68\\x9d\\x4a\\x0e\\x6f\\x3c\\xdf\\x68\\x6f\\xb3\\xb8\\xd3\\\n\\xa8\\x09\\x0f\\x2d\\xb0\\x05\\x09\\xd3\\x4e\\x5d\\x39\\x43\\xf8\\x5b\\xb8\\x50\\\n\\x52\\x97\\x88\\xce\\x29\\xc5\\x5f\\x28\\x78\\x64\\xb7\\x02\\x32\\xfc\\xab\\x0c\\\n\\xe2\\x2d\\xb2\\xea\\x94\\xf3\\x8a\\x5d\\xf5\\x51\\xbf\\x87\\xf1\\x12\\x9d\\xa8\\\n\\x5b\\x57\\x6a\\x61\\xa5\\xa3\\xff\\x00\\x89\\x81\\x95\\xff\\x00\\xfc\\x89\\x57\\\n\\xff\\x00\\xf3\\x18\\x93\\xaf\\x62\\x95\\x75\\x4f\\x4c\\x00\\xa3\\x9b\\x66\\xa5\\\n\\xef\\x26\\xbf\\x0a\\xec\\x2f\\xe1\\x05\\x2b\\x6c\\x25\\x20\\x04\\x52\\xb7\\x4f\\\n\\xbc\\xbf\\xf9\\x1b\\xd6\\x90\\xe0\\x52\\xc1\\x4e\\xd1\\xc4\\xd6\\xdb\\xa4\\x0f\\\n\\xb4\\x34\\xf2\\x90\\xda\\x5b\\x52\\xb3\\x84\\xe8\\x57\\x73\\xe7\\x0b\\x3b\\x63\\\n\\x4a\\x00\\x0f\\x1a\\x5b\\x41\\x18\\x76\\x05\\x25\\x34\\xee\\x57\\xa7\\x99\\x97\\\n\\x51\\x1b\\x9b\\x45\\x0a\\x29\\x55\\xf7\\x45\\xc5\\x4d\\x21\\xde\\xcc\\xa9\\x87\\\n\\x4e\\x69\\x86\\x9d\\x40\\x19\\x91\\xb2\\x1a\\xd2\\xe0\\x7b\\xc6\\xb7\\xf3\\x86\\\n\\xfd\\xaf\\x30\\x0b\\x67\\x66\\x0d\\xb4\\x29\\x87\\xf3\\x35\\x2a\\xe1\\x0a\\xae\\\n\\x64\\xdb\\x9c\\x60\\x8e\\xb4\\x65\\x5d\\x6a\\x6e\\x5d\\x46\\xbf\\x16\\x5b\\x9f\\\n\\x12\\x08\\xf4\\x0c\\x4f\\x60\\x12\\xeb\\x69\\x6f\\x4a\\x2d\\xc4\\x12\\x49\\xa2\\\n\\x94\\x29\\xe5\\x0a\\xc3\\x1c\\x4b\\xc0\\xa9\\x00\\xdf\\x97\\x28\\x57\\x67\\x3d\\\n\\xb6\\x4c\\x62\\x0d\\xe4\\x43\\x92\\xea\\xd9\\x84\\xf7\\x0c\\xda\\x78\\xc6\\x1e\\\n\\x94\\xb9\\x95\\xb9\\x82\\x43\\xc8\\xb2\\x42\\x2c\\x8e\\xb5\\x14\\x3d\\x61\\xcc\\\n\\x24\\x2d\\xbc\\xed\\x55\\x4a\\xeb\\x7f\\xa4\\x2f\\x09\\x99\\x4a\\x4a\\xa9\\xa7\\\n\\x48\\x96\\x48\\x75\\xc2\\xcc\\xca\\x53\\xb3\\x0a\\x19\\x8e\\x87\\xc3\\x87\\xae\\\n\\x10\\xec\\xce\\x0b\\x2b\\x26\\xa6\\xe8\\x9f\\xed\\x91\\xc3\\x35\\x7b\\xff\\x00\\\n\\x68\\x79\\xd9\\x34\\xce\\x3a\\xa9\\x70\\xe6\\x57\\x09\\xad\\x7e\\xd6\\x84\\xa9\\\n\\x29\\x40\\xca\\x55\\xa7\\x13\\x78\\x33\\x64\\x58\\x91\\x73\\xc6\\x28\\x5d\\xaf\\\n\\x51\\xc3\\xba\\x19\\x94\\x29\\xd2\\xb0\\x5b\\xa5\\x89\\xbc\\x6c\\x87\\x38\\xd9\\\n\\x0e\\x67\\xd7\\x8c\\x3a\\xb5\\x35\\x1e\\xd8\\xb2\\x29\\x41\\xe5\\x0a\\x7b\\xe2\\\n\\x86\\x5a\\x7e\\x61\\x5f\\x02\\x51\\xce\\x90\\x89\\x74\\xb7\\x54\\xad\\x4a\\xcd\\\n\\x5b\\x50\\xda\\x0c\\x9a\\x82\\x54\\xbb\\xd7\\x87\\xda\\x12\\xa2\\x9a\\x83\\xaf\\\n\\x08\\x95\\x2a\\x5b\\xd4\\x3a\\x56\\x25\\x59\\xcc\\xd6\\xf5\\x6c\\x98\\xf6\\x70\\\n\\xa9\\xaa\\x1a\\x01\\x5f\\x1b\\xf2\\x89\\x41\\x27\\x87\\xef\\x25\\x69\\x2a\\x57\\\n\\xbd\\x70\\x69\\xdd\\x48\\x38\\xe3\\x41\\xdc\\xa4\\xee\\x69\\xc6\\xff\\x00\\x38\\\n\\xc5\\x66\\x25\\x66\\x50\\xbe\\x35\\x07\\x8e\\xb6\\x87\\x70\\xe6\\x4a\\xca\\x76\\\n\\x74\\xbd\\x88\\x3f\\x0f\\x21\\xc2\\xc3\\xa4\\x4d\\x4a\\xcb\\x33\\x44\\x21\\xb5\\\n\\xa6\\xf5\\x2b\\x2a\\xae\\x9d\\x48\\xa0\\x07\\x8d\\x04\\x25\\xf2\\x9b\\x27\\x74\\\n\\x69\\xa5\\x4f\\x78\\xad\\x7c\\xe3\\x6c\\x46\\xa7\\xa5\\xe9\\xf6\\xfd\\x21\\x07\\\n\\x31\\xf8\\xba\\x8d\\x6d\\xc6\\xf4\\xe7\\x48\\x96\\xda\\x26\\xe9\\x5a\\xd3\\xc6\\\n\\x89\\x34\\x07\\xe4\\x6d\\x0d\\xcc\\x3d\\x31\\x30\\x94\\x28\\xd1\\x1c\\x72\\xf2\\\n\\xef\\xf0\\x89\\xa3\\x2d\\x28\\x5b\\x39\\x94\\x48\\x09\\x5d\\xc8\\x37\\xe3\\x5f\\\n\\xb5\\xf9\\xc3\\x73\\x8d\\x4f\\x36\\x95\\x93\\xbc\\x81\\x41\\x4b\\x0a\\x7a\\xbc\\\n\\x3b\\x2f\\x9e\\xff\\x00\\x38\\x5b\\x28\\xaa\\xa9\\x5a\\x83\\x08\\x6c\\x93\\xa1\\\n\\x81\\x2b\\x56\\xef\\x9b\\x48\\x4b\\x69\\xda\\x65\\x35\\xa5\\xe1\\xba\\x24\\xd0\\\n\\x70\\x34\\x1e\\xbe\\xf0\\x95\\x5a\\x1e\\xc5\\x5b\\x6f\\x3a\\xf1\\x97\\x54\\xa9\\\n\\x8a\\x7e\\x1b\\x68\\x42\\x9e\\xbf\\x0b\\x22\\xb4\\xef\\x31\\x33\\x8d\\xcf\\xa5\\\n\\xc7\\xa6\\x1e\\x95\\xd8\\xa0\\x92\\x86\\x16\\x6a\\x33\\x37\\xf0\\xeb\\xf1\\x5c\\\n\\xda\\x30\\x2c\\x3b\\xfa\\x8f\\xfb\\xc5\\xe7\\x5b\\xe4\\xd9\\x85\\x82\\x33\\x03\\\n\\xad\\x2b\\xa8\\x4e\\xb6\\x8c\\x3f\\x03\\x66\\x48\\x26\\x7a\\x73\\x24\\xbb\\x29\\\n\\xa1\\x37\\x0a\\x73\\xc1\\xa1\\xbc\\x7c\\xa3\\x12\\xed\\x29\\x75\\x66\\x56\\x46\\\n\\xa0\\x1b\\x05\\x14\\xe4\\xdc\\xe0\\xa3\\x5d\\x2a\\x29\\x0e\\xb5\\xb4\\x62\\x60\\\n\\xad\\xd5\\x3a\\xed\\x6a\\xab\\x1d\\xd3\\x4d\\x07\\x31\\x0f\\x51\\x0e\\x3a\\xe1\\\n\\xba\\x1a\\x3b\\xe1\\x56\\xe9\\xf7\\x11\\x27\\x85\\xe2\\x98\\x93\\x8a\\x75\\x89\\\n\\x43\\x86\\xb0\\x34\\x9b\\x2e\\x5c\\xf5\\x08\\xb5\\x79\\xdb\\xe9\\x12\\x12\\xd8\\\n\\x9b\\x35\\x69\\xc2\\xa9\\x84\\x35\\xb8\\x26\\x0d\\xb6\\xa0\\x7c\\x64\\x1d\\x2b\\\n\\xad\\x21\\xd7\\x83\\x4b\\xff\\x00\\x72\\x0a\\x41\\x36\\x55\\x2a\\x91\\xff\\x00\\\n\\x25\\x0b\\x27\\xa5\\x75\\x85\\xa4\\xd0\\x38\\x37\\x9b\\x34\\xdf\\x45\\xd2\\x78\\\n\\xd8\\x8b\\x57\\xa4\\x10\\xa2\\x9a\\x80\\x69\\x4e\\x36\\x86\\x96\\xe3\\xa9\\xd9\\\n\\x64\\x23\\x80\\x20\\x5d\\x55\\xfc\\xa3\\x53\\xe1\\xca\\x0f\\x67\\x82\\x5e\\x6a\\\n\\x7b\\x12\\x9f\\xf6\\x66\\x1a\\x5e\\xd1\\x08\\x5b\\xc1\\x0e\\x95\\x69\\xfd\\x9a\\\n\\x85\\x52\\x9d\\x21\\x9c\\x7e\\x52\\x4e\\x55\\x0f\\x32\\xca\\x27\\x18\\x48\\x09\\\n\\x4b\\x99\\xc2\\x95\\x9b\\x41\\x54\\xeb\\xaf\\xab\\xc2\\xf1\\xe3\\x89\\xaa\\x9e\\\n\\xce\\x1b\\x1c\\x68\\x34\\x87\\xe6\\x18\\x5a\\x10\\x96\\x1c\\x52\\x94\\x85\\x12\\\n\\xe2\\x56\\x92\\x8a\\x77\\x66\\xd7\\xc2\\x11\\x8b\\x20\\xb5\\xb3\\x69\\x94\\x50\\\n\\x26\\xea\\xd3\\x7b\\x84\\x2d\\xe5\\xb8\\xd2\\x92\\x55\\xb3\\x27\\x40\\x08\\x8c\\\n\\xa1\\x5e\\xfd\\x3e\\xb0\\x91\\x44\\x94\\x6d\\x94\\x86\\xce\\xa9\\x1a\\x57\\xc2\\\n\\x26\\x1b\\x75\\xb5\\x67\\x97\\xa1\\x23\\x89\\x50\\x1d\\xfe\\xba\\xc6\\x1d\\x8b\\\n\\xcc\\x85\\x6c\\xd5\\x4a\\xf5\\x22\\x9e\\x7a\\x7a\\xe7\\x12\\xb3\\xad\\x2d\\x2e\\\n\\x34\\xf2\\x93\\x9d\\x55\\xa0\\x04\\x1d\\x63\\x1c\\x53\\xd2\\x6f\\xb8\\x52\\x2c\\\n\\xbc\\xca\\x04\\x5f\\x4d\\x34\\xd3\\x5b\\x43\\x73\\x6f\\x3e\\xb3\\x9c\\xa8\\x84\\\n\\x9d\\x35\\xad\\xe2\\x55\\xa6\\x94\\x80\\xa0\\xd0\\x2a\\xeb\\x0b\\x63\\x8e\\x55\\\n\\x0a\\xf0\\x48\\xaf\\xd0\\x43\\xd2\\xc2\\xc6\\xe3\\xd7\\x51\\x0c\\xed\\x2a\\x9c\\\n\\xb7\\x15\\x1a\\x9a\\x42\\x49\\x17\\xa4\\x51\\x4a\\xde\\xa6\\xb1\\x94\\x9a\\x8a\\\n\\x69\\xdd\\x0a\\x39\\x75\\xd7\\xef\\x0e\\x25\\x6b\\xae\\x70\\x07\\x8c\\x16\\x90\\\n\\x8b\\x9b\\x08\\x6d\\x96\\x96\\x45\\x6b\\x42\\x68\\x2d\\xc7\\x86\\x91\\xda\\x4c\\\n\\x62\\x6f\\x09\\x98\\x12\\x92\\xca\\x08\\x5e\\x5c\\xea\\x56\\xb4\\x4d\\x6d\\xe6\\\n\\x6b\\xdd\\x4e\\xb1\\xd9\\xbc\\x79\\xbc\\x49\\x4a\\x6e\\x75\\x79\\x5f\\x4e\\x9b\\\n\\xa6\\x8a\\x1f\\x99\\x37\\x3d\\xd4\\xad\\x47\\x1d\\x41\\x29\\x56\\x75\\x65\\x03\\\n\\x73\\x81\\x89\\xc6\\x02\\x6a\\xb1\\xac\\x61\\x8d\\x55\\xea\\x9a\\x7a\\x30\\xd2\\\n\\x82\\x11\\xa8\\xb0\\xe1\\x73\\xe4\\x21\\xea\\xcc\\x3d\\xb8\\x54\\x92\\x0f\\x10\\\n\\x53\\x5a\\xf7\\xfd\\x61\\x38\\x6c\\xdd\\x33\\x95\\x54\\x0b\\xfb\\xd5\\x06\\x1c\\\n\\x91\\x7b\\x5e\\x31\\xec\\x0f\\x16\\xc1\\x23\\x5e\\x15\\x11\\x3d\\x2c\\xf3\\x40\\\n\\x2b\\x66\\x35\\x3c\\x47\\xf2\\x61\\x43\\x6d\\xba\\xe0\\xe9\\x6e\\xa2\\xb0\\x30\\\n\\xf6\\xce\\x8b\\x50\\xe9\\x4f\\x94\\x37\\x87\\x35\\x6e\\x2a\\xe7\\x4f\\x5a\\x7a\\\n\\xbc\\x22\\x4d\\x2d\\xdc\\x08\\xa5\\x34\\xb5\\xbf\\x4f\\x54\\x89\\x44\\xd2\\xfc\\\n\\x7d\\x71\\xb7\\x74\\x62\\x09\\xda\\x37\\xbe\\x77\\xc6\\x94\\xe5\\xc2\\xf1\\x83\\\n\\x04\\xa1\\x82\\x54\\xa1\\x5e\\xfe\\x1c\\x62\\x7b\\x16\\x69\\x09\\xd9\\xb4\\x4a\\\n\\x96\\x3f\\xc4\\xfd\\x61\\x95\\xa9\\xcb\\xf3\\xbd\\x3b\\xee\\x75\\xf2\\xe9\\x12\\\n\\x92\\xf5\\x15\\xb5\\x73\\x0e\\x5e\\xad\\x0a\\x60\\x06\\x14\\x69\\xf0\\x8e\\x23\\\n\\x98\\x87\\x07\\xe3\\x1a\\x73\\x84\\xb6\\xe5\\x6b\\x4d\\x7a\\xfd\\x60\\x57\\x94\\\n\\x19\\xdc\\x4a\\x5b\\xb5\\x8e\\x4f\\x62\\x40\\x7f\\x4b\\x37\\x6c\\x2f\\x4b\\x1d\\\n\\xea\\xd4\\xf2\\xca\\x6b\\xa5\\x09\\xd6\\x95\\x22\\x7a\\x57\\xb4\\x6f\\xec\\x65\\\n\\xd8\\x4b\\xf2\\xe4\\xe5\\x4b\\x6d\\x80\\x4a\\x14\\x35\\x5d\\xb8\\x69\\xe5\\x12\\\n\\x68\\xc3\\xfb\\x32\\xc0\\x54\\xc2\\xd2\\xfc\\xc8\\x1f\\x80\\x91\\x4a\\x34\\x55\\\n\\x60\\x85\\x7d\\x2f\\x0a\\x99\\x9c\\xc5\\xe6\\x7d\\xa6\\x75\\x65\\x80\\x9f\\xec\\\n\\xb1\\xa2\\x56\\x9e\\x16\\xad\\xe2\\x6e\\x51\\x29\\x6f\\xda\\x40\\xa1\\x11\\x23\\\n\\x2a\\x94\\xcb\\x29\\xf7\\x6e\\x1c\\x05\\x46\\xbd\\xd1\\x8c\\x4a\\x09\\xc9\\xb9\\\n\\x94\\x30\\x72\\xb5\\x5d\\xfa\\x5a\\xe9\\x56\\x64\\x8f\\x31\\xf3\\x8c\\x2b\\xb4\\\n\\x2b\\x4b\\x29\\x92\\xc6\\x65\\x84\\x9b\\x2c\\xee\\xb2\\xba\\x64\\xda\\x81\\x60\\\n\\x6b\\xd6\\x91\\x21\\x3f\\x86\\x4d\\x23\\x23\\x39\\x74\\xa0\\x3c\\xe3\\x14\\xc1\\\n\\xd0\\xe3\\x2f\\x1c\\xb9\\xd9\\x57\\xf7\\x11\\xf1\\x1f\\xf8\\xf7\\x46\\x2c\\xce\\\n\\x35\\x85\\x4b\\x83\\x85\\xb7\\xed\\x72\\x9f\\x13\\x1a\\xae\\x59\\x3c\\x56\\xae\\\n\\x3b\\xba\\xc7\\x67\\x9b\\x9e\\x98\\x64\\x4d\\x62\\x28\\xc8\\xd6\\xa7\\x90\\x8c\\\n\\x4f\\xb7\\x38\\x16\\x1d\\x8c\\x4a\\xe1\\x32\\x2d\\x09\\xb9\\xe7\\x1c\\x0d\\x9a\\\n\\x24\\x94\\xca\\xaa\\x85\\x55\\x5f\\x0e\\x5a\\xfe\\x7a\\x46\\x30\\xfa\\x3d\\xad\\\n\\x46\\x76\\x5d\\xcc\\x41\\xe9\\xa6\\x52\\x11\\xb1\\xad\\x1a\\xad\\x08\\xb2\\x74\\\n\\xe0\\x23\\x06\\xc3\\xe6\\x17\\x46\\x76\\x2e\\x4b\\xb4\\x54\\x0e\\x57\\x2b\\xa5\\\n\\x74\\xbf\\xda\\x1b\\x93\\x6d\\x87\\x9c\\x14\\xe0\\x61\\x12\\x8d\\x3a\\xfb\\xc7\\\n\\x35\\x3a\\x70\\xa7\\xef\\xe7\\x12\\xd8\\x63\\x41\\xa5\\xab\\x3f\\x1e\\x70\\xb4\\\n\\x36\\x1c\\x29\\xcf\\xa4\\x64\\x72\\x0a\\x57\\x96\\xa6\\x1d\\x59\\x16\\x59\\x21\\\n\\x35\\xde\\x3a\\x53\\x8c\\x4c\\xe2\\x52\\x29\\x1b\\x36\\x9c\\xa3\\xbc\\xeb\\xeb\\\n\\xd5\\x23\\x07\\xc4\\x83\\xd3\\xe5\\x0a\\x7c\\xd8\\xdc\\x66\\xe5\\x68\\xc4\\xcc\\\n\\xb1\\x69\\xc5\\x12\\x16\\x69\\xc7\\x84\\x37\\x38\\xd1\\x9d\\xd9\\x20\\x6a\\xaf\\\n\\xd6\\x24\\x4a\\x36\\x7a\\x5a\\x31\\x0e\\xd2\\x61\\xf8\\x40\\xa4\\xc8\\x15\\x26\\\n\\x82\\xc4\\x93\\xe0\\x2a\\x7d\\x75\\x85\\x76\\x9e\\x4a\\x65\\x25\\xe4\\x29\\x21\\\n\\x0a\\xd2\\xf4\\xa1\\xe5\\x43\\x78\\x94\\xc4\\x50\\xf2\\xc6\\x43\\x62\\x47\\xe9\\\n\\x51\\x0c\\x9c\\xd4\\xe3\\x78\\x22\\x82\\x90\\x49\\x04\\xf9\\x41\\x19\\xb5\\x85\\\n\\xa2\\xb1\\xda\\x0c\\x40\\x61\\x92\\xbb\\x53\\x5a\\xf0\\x1c\\xc9\\xb0\\x03\\xbc\\\n\\xc6\\x1d\\xda\\xe9\\x5f\\x65\\x52\\x9f\\x4e\\xcd\\xd4\\x00\\xac\\xa6\\x95\\x26\\\n\\xf4\\xcb\\x4a\\xe6\\xe2\\x39\\xf4\\x8c\\x67\\x11\\x73\\x16\\x9e\\x54\\xd2\\x81\\\n\\x19\\x86\\x54\\xa3\\x88\\x40\\x26\\x95\\xff\\x00\\x23\\x53\\x5d\\x46\\x80\\x73\\\n\\x3d\\x9c\\xc2\\x66\\xe7\\x66\\x53\\xb0\\x0e\\x7e\\x11\\x4a\\x94\\xb4\\x05\\x56\\\n\\x9f\\x96\\xa9\\x16\\xcd\\xff\\x00\\x2f\\x94\\x61\\x92\\x53\\x48\\x95\\x5f\\xb5\\\n\\x02\\x16\\x85\\xe5\\x4e\\x6d\\x72\\x50\\x6b\\x7e\\x71\\xb2\\xdb\\x2b\\x21\\xbe\\\n\\xbf\\x21\\x58\\x62\\x4d\\xe5\\x4d\\x64\\x6a\\xa3\\x7b\\x84\\x2d\\x84\\x4a\\x80\\\n\\x12\\xe6\\x67\\x28\\x33\\x8a\\xd7\\x7f\\x52\\x3c\\xe3\\x2b\\xee\\x38\\xd9\\x5a\\\n\\x32\\x0b\\xd2\\xd4\\xcd\\xa7\\x9d\\x21\\xa7\\x12\\x96\\xc2\\x4d\\x2b\\x01\\x0d\\\n\\x2b\\x80\\x87\\x1b\\x14\\xdd\\xd3\\xa4\\x62\\x68\\xab\\x63\\xfe\\x47\\xe9\\x1b\\\n\\x2d\\xe5\\x78\\xf1\\x86\\xdb\\xbc\\x21\\x9d\\xcc\\xd0\\x07\\x0f\\x18\\x58\\xbc\\\n\\x36\\x72\\x1f\\x2f\\x5e\\x3f\\xc4\\x62\\x13\\x35\\x14\\x1f\\x97\\xf5\\xfd\\xa1\\\n\\xec\\x6d\\xe9\\x1b\\x95\\x28\\x22\\xa0\\x5a\\xbf\\x11\\xa7\\xaf\\xd2\\x30\\xa7\\\n\\x53\\x38\\xda\\x5d\\x5d\\xf3\\x08\\x09\\x52\\x49\\xcb\\x6f\\xd3\\xd7\\xae\\x30\\\n\\x99\\xd5\\xb0\\xaa\\x13\\x6d\\x69\\xc2\\x3f\\xae\\xb5\\x97\\x66\\x78\\x8a\\x78\\\n\\xfa\\xe1\\x08\\x79\\xb7\\xd7\\x50\\x35\\x8c\\x82\\x32\\x44\\xdf\\x66\\xbf\\xaf\\\n\\x06\\xdb\\x70\\x65\\x4a\\x15\\x55\\x52\\xc3\\xb8\\xf4\\xef\\xf2\\x84\\xb5\\x21\\\n\\xd9\\x99\\x30\\xdc\\xba\\x19\\x0e\\xa5\\x15\\x2a\\x42\\x10\\x15\\xa5\\x28\\x48\\\n\\x15\\xe1\\x13\\xb8\\x9a\\xe7\\x71\\x20\\xf2\\x8a\\xb2\\xd5\\x5b\\xa4\\xd8\\x9e\\\n\\x16\\xd2\\xda\\x8b\\x75\\x8c\\x36\\x6d\\x05\\xb4\\x95\\xd0\\xd3\\x42\\x6f\\x4f\\\n\\x3d\\x22\\x76\\x71\\x2b\\x96\\x21\\x2a\\xf8\\xbd\\x7a\\xee\\x85\\x38\\xb3\\x86\\\n\\x04\\x82\\xab\\xa7\\x9f\\x84\\x4a\\xc9\\x82\\x17\\x9b\\x55\\x74\\xff\\x00\\x2a\\\n\\xc6\\x27\\x86\\xb1\\x3f\\x2b\\xb0\\x39\\x4a\\xc0\\xa2\\x49\\xa1\\x20\\xf4\\x3a\\\n\\x8f\\x08\\x6b\\xb1\\xd8\\xc6\\x0d\\x89\\xfb\\x6e\\x17\\x3d\\x37\\x30\\x87\\x5c\\\n\\xce\\xfb\\x0e\\x4c\\x3a\\xa4\\x34\\x4a\\xaa\\x42\\x12\\x55\\x40\\x91\\x5c\\xa0\\\n\\x00\\x29\\x41\\xaf\\x0c\\x1e\\x6d\\xb9\\xc9\\x44\\x32\\xb5\\x1f\\x6a\\x69\\x14\\\n\\x78\\x1d\\x6a\\x40\\xfd\\x0c\\x4b\\xa1\\x32\\xd3\\xb3\\xa8\\x74\\xd5\\xb5\\xa1\\\n\\x59\\x81\\xb8\\xca\\x45\\xfa\\x7c\\xa3\\x1e\\x5c\\xfe\\x20\\xc2\\xb0\\xd6\\xa9\\\n\\x2f\\x86\\x28\\x14\\xa9\\xe6\\xce\\xc9\\x41\\x3c\\xf3\\x22\\x8a\\x14\\x1e\\x51\\\n\\x85\\xf6\\x5f\\x06\\xec\\xfa\\x9d\\xc4\\x53\\x32\\xdc\\xdb\\x8d\\x66\\x5a\\xa6\\\n\\x1e\\x52\\x5d\\x71\\x46\\x95\\x35\\x59\\xae\\x9a\\x5b\\x97\\x8c\\x63\\x5d\\xb3\\\n\\x9d\\x9d\\x71\\x5e\\xc8\\x04\\xa2\\x01\\x29\\x0e\\x25\\x20\\x3a\\xa4\\x8b\\x0e\\\n\\x1b\\xba\\x77\\xf7\\x71\\xec\\x36\\x2c\\xf4\\xf6\\x1e\\xb4\\x4d\\xb8\\xa7\\x16\\\n\\xda\\x80\\x4b\\x8a\\x35\\x59\\xb5\\x45\\x49\\xe3\\x7f\\x2a\\x71\\xac\\x4d\\x4c\\\n\\x21\\x90\\x73\\x2a\\xfc\\xeb\\x73\\xe3\\xac\\x4e\\xbe\\x57\\x2f\\x91\\xa2\\x42\\\n\\x89\\x3b\\xc9\\x34\\x55\\xf9\\x91\\xfa\\xc4\\xa8\\x7d\\x2d\\xe5\\x53\\xae\\xd6\\\n\\xb7\\xfc\\x45\\x7e\\xb1\\x2e\\xc9\\x22\\xa6\\xe7\\xad\\xfe\\x70\\xc4\\x91\\x5d\\\n\\xd6\\x68\\x22\\x75\\xd9\\x79\\x44\\x96\\xc2\\x92\\x49\\x4e\\x6b\\xd0\\xf4\\xe7\\\n\\x06\\x65\\xb9\\x89\\xd4\\xb2\\xe1\\xa3\\x4b\\x37\\x3d\\xd7\\xf9\\xe9\\x18\\xfc\\\n\\xee\\x19\\x82\\xe2\\x72\\xae\\x28\\x25\\x41\\x44\\x0a\\x65\\xad\\x78\\x9f\\x5f\\\n\\x3d\\x23\\x10\\x98\\x92\\x38\\xd4\\xaa\\xf0\\xf2\\xb4\\xad\\xf6\\xfd\\xa1\\x7b\\\n\\x30\\x45\\x94\\x12\\x6b\\x96\\x82\\xb7\\x55\\x93\\xba\\x48\\xa8\\x06\\xd1\\x33\\\n\\x2f\\x36\\x81\\x99\\x6a\\x73\\xf1\\xd2\\x09\\x19\\xd4\\x40\\xa0\\xd3\\x5e\\xb1\\\n\\x23\\x86\\x7e\\x32\\x54\\x4d\\x37\\xab\\x0c\\x37\\xb1\\x40\\xa1\\xac\\x76\\xca\\\n\\x4d\\xc7\\xe7\\xa5\\x9d\\x68\\x29\\x79\\x92\\xa4\\xe5\\x17\\x39\\xc9\\x49\\x4d\\\n\\x00\\xd2\\xb9\\x4d\\x4e\\x83\\x53\\x40\\x2b\\x18\\x6f\\x66\\x9c\\x69\\xb4\\xba\\\n\\xf8\\x4d\\x56\\x9b\\x20\\x0f\\x77\\x4a\\x92\\x7e\\x25\\x9e\\x7c\\x2e\\x07\\x18\\\n\\x96\\x90\\x43\\x39\\x40\\x09\\x14\\x22\\x96\\x03\\x8c\\x4a\\xb7\\x95\\x17\\xfa\\\n\\x43\\xae\\xd2\\xa9\\xa4\\x15\\xac\\x11\\xbb\\x5a\\xdb\\x9f\\xa3\\xd6\\x26\\x54\\\n\\xf3\\x29\\xcc\\x50\\x72\\xf7\\x46\\x21\\xda\\x49\\x09\\x09\\x75\\x66\\x5e\\x67\\\n\\x48\\xdd\\x6f\\x55\\xa8\\xf4\\x1a\\xf8\\xe9\\xd6\\x91\\x8a\\xe3\\xb3\\x38\\xb2\\\n\\x03\\x6b\\x6d\\x08\\x6d\\x2b\\xce\\x28\\xac\\xe4\\xd3\\x40\\x41\\x48\\xa5\\x38\\\n\\xd0\\xd6\\xa0\\x70\\x86\\x1b\\x5a\\x91\\xee\\x11\\x5e\\xfa\\x9b\\xfc\\xef\\xe7\\\n\\x18\\x56\\x0c\\xfe\\x21\\x38\\xd4\\xba\\x53\\x95\\x6e\\x2a\\x80\\xac\\x1b\\x27\\\n\\x8a\\x88\\xa0\\xd2\\x96\\xeb\\x68\\xc0\\x70\\x19\\x7c\\x1e\\x48\\x32\\xca\\x1b\\\n\\xcc\\x5b\\x19\\x96\\x10\\x8c\\xc5\\x59\\x05\\x54\\x4d\\x2a\\x49\\x3a\\xd6\\x27\\\n\\x64\\xd7\\x2e\\xa7\\x06\\x65\\x1d\\xa1\\xcf\\xa9\\xb7\\x0f\\xb4\\x21\\x25\\xbf\\\n\\xc4\\x15\\x34\\xfb\\xc1\\x4e\\x65\\x15\\xb4\\xa2\\x1c\\x3c\\x01\\xbf\\xca\\x30\\\n\\x59\\x60\\xeb\\x8a\\x54\\xce\\xa1\\x5f\\x15\\xea\\x7a\\xd6\\x31\\xa3\\xba\\xd0\\\n\\x45\\x12\\x1b\\x2a\\x15\\x4d\\x89\\xcd\\x4d\\x48\\xee\\xf9\\xc3\\x2c\\x25\\xd9\\\n\\x64\\x2f\\x35\\xc5\\xfa\\xf8\\xc2\\x7f\\x0b\\xaf\\xce\\x36\\x81\\x49\\xe1\\x18\\\n\\x90\\xab\\x69\\xb0\\xba\\xbe\\xd0\\x89\\x72\\xa2\\xab\\x58\\xfa\\xaf\\x38\\x6e\\\n\\x46\\x9a\\x02\\x7b\\xfd\\x56\\x3d\\x8d\\x5d\\x69\\xdf\\x61\\x06\\x5b\\x65\\x43\\\n\\x7b\\xdb\\x81\\xb7\\xeb\\x6f\\x0f\\xa2\\xa5\\xf3\\x5f\\x97\\xf3\\xeb\\x84\\x3e\\\n\\xb4\\xa7\\x80\\xf2\\x11\\x89\\xcc\\xd1\\xda\\x83\\xa3\\x42\\xde\\x71\\x3b\\x38\\\n\\xe4\\xfc\\xe8\\x93\\x6f\\xdd\\x2b\\xe1\\xc4\\x22\\xe4\\xf4\\x1e\\xb9\\x46\\x01\\\n\\x2c\\x65\\xe5\\x9b\\xcf\\x6a\\x24\\x6b\\xca\\x2b\\x98\\xd0\\x18\\xf6\\x6c\\xe4\\\n\\x56\\x9e\\x30\\x99\\x24\\x5b\\x75\\x3c\\x7e\\x11\\x02\\x5c\\x27\\x4a\\x0e\\xef\\\n\\xe6\\x12\\xea\\x98\\x59\\x37\\x50\\xaf\\x1b\\xf1\\x81\\x8e\\x84\\x8a\\x6c\\x5a\\\n\\x3d\\x4a\\x47\\xe8\\x7e\\xb1\\x3b\\x8a\\xcb\\x61\\xbb\\x4d\\x9e\\x43\\x98\\x52\\\n\\xe6\\x94\\xeb\\x68\\x9e\\xc4\\x59\\x5c\\xc2\\xb3\\x4d\\x29\\xd7\\x5d\\x56\\x60\\\n\\xd2\\xa9\\x94\\x25\\x5a\\x53\\x8c\\x4f\\xe1\\xca\\x6f\\x2c\\xc0\\x04\\x03\\x43\\\n\\x41\\xa5\\xe3\\x0e\\x9b\\xa6\\xe1\\x34\\xa7\\x58\\x5c\\xc6\\xfe\\xc1\\x6a\\xb2\\\n\\x8d\\x6b\\x5b\\xdc\\xf2\\xd2\\x30\\xc5\\xfb\\x43\\x7e\\xca\\xe2\\x40\\x48\\x1b\\\n\\xaa\\x1a\\x91\\x4e\\x47\\x4b\\xc3\\xed\\xa6\\x5e\\x61\\x48\\xcc\\xbc\\xa3\\x8d\\\n\\x3b\\xff\\x00\\x98\\x2b\\x52\\x66\\xf3\\x25\\xd5\\x11\\x5f\\x76\\xd0\\xdc\\xd2\\\n\\x10\\x97\\x96\\x15\\x45\\x54\\xe6\\x1c\\xcf\\x8c\\x48\\xba\\x86\\x9c\\x54\\xd3\\\n\\x64\\x05\\x1f\\x78\\x69\\x9b\\xbe\\x3b\\x45\\xda\\x76\\xb0\\xe5\\x15\\x86\\xd2\\\n\\xe3\\xaf\\x8c\\x99\\x09\\x34\\x25\\x56\\xa0\\xa5\\xcd\\x7c\\xa3\\x1b\\xed\\xec\\\n\\xce\\x22\\x87\\xf0\\xc9\\x74\\xbb\\x2a\\xea\\x1a\\x2a\\x51\\x45\\x90\\x84\\xdc\\\n\\x02\\x4a\\xab\\xc9\\x50\\xdc\\xec\\xd3\\x32\\x47\\xfd\\xea\\xd6\\xb7\\x89\\xcb\\\n\\x2b\\x99\\xc5\\x68\\x75\\x5d\\x55\\x61\\xc7\\x42\\x6b\\xa0\\xe1\\x18\\x64\\xa6\\\n\\x37\\x8b\\xba\\x19\\x94\\xc3\\x9f\\x98\\x52\\x88\\xdf\\x6d\\x27\\x26\\xa0\\x7f\\\n\\x71\\x54\\x6c\\x6b\\xa1\\x58\\x3c\\x40\\x8e\\xc5\\xe0\\x33\\x78\\x2c\\xaa\\xd8\\\n\\xc4\\x92\\x5b\\x9a\\x59\\x2f\\x29\\x07\\xfb\\x68\\x48\\x16\\x01\\x7c\\x54\\x94\\\n\\x24\\x7f\\xdd\\xa7\\x08\\xc5\\x71\\x34\\x39\\x33\\x95\\x85\\x6d\\x01\\x34\\x06\\\n\\xbf\\x3b\\x43\\x5b\\x52\\x45\\xcd\\x08\\x16\\xfa\\xc4\\xbc\\xb1\\x5d\\x2d\\xac\\\n\\x4b\\xc8\\x65\\x4e\\x63\\x51\\xe5\\x18\\xae\\x24\\x25\\x99\\x50\\x64\\x24\\x9a\\\n\\x73\\xfd\\x20\\xce\\xb9\\x36\\xe3\\x85\\xc7\\x14\\x9a\\x69\\x43\\x51\\x4f\\x18\\\n\\x69\\x6a\\x71\\xe3\\x44\\x93\\x95\\x56\\x52\\x6a\\x54\\x6f\\x18\\xd7\\x64\\x4e\\\n\\x3e\\x19\\x98\\x75\\x4e\\xb4\\x5a\\xa1\\x48\\x4d\\x28\\x6d\\x4b\\xd7\\xbe\\x19\\\n\\xc2\\x25\\x5b\\x5c\\xb3\\xa6\\x5d\\xb2\\xec\\xb3\\x29\\x68\\x28\\xeb\\xba\\x94\\\n\\x82\\x6b\\xd4\\x8a\\x91\\xa7\\x7c\\x2d\\x82\\xe1\\x39\\xb4\\x56\\x9a\\x6e\\x8e\\\n\\x43\\xbe\\x1d\\x94\\x5c\\xb6\\xfa\\x2a\\x52\\x2e\\x74\\xa8\\xee\\xa4\\x49\\xb6\\\n\\xf3\\xed\\xee\\xa1\\x6a\\xe5\\x63\\x08\\x90\\x77\\xdb\\x14\\xa7\\xda\\xcc\\x10\\\n\\xbd\\xdc\\xc3\\x4f\\xd2\\x1e\\x49\\x2a\\xfc\\x34\\xf4\\x29\\xe0\\x9a\\x72\\xe3\\\n\\x09\\x97\\x59\\x5a\\x09\\xb6\\xf0\\xac\\x66\\x09\\x4e\\x51\\x78\\x93\\xc3\\xc4\\\n\\xd8\\x52\\xd4\\xa2\\x9a\\x72\\xa7\\xde\\x24\\xb0\\x60\\xb7\\x09\\x35\\xa2\\x74\\\n\\xdd\\x1c\\xe3\\x15\\xc0\\x99\\x54\\x88\\x5d\\xc1\\xa7\\xe5\\x11\\x8e\\xf6\\x63\\\n\\x36\\x24\\xe9\\xce\\x42\\x0e\\x5a\\xa0\\x8e\\x03\\x91\\x1a\\x24\\xe8\\x0f\\x3c\\\n\\xd1\\x29\\x83\\xe1\\xac\\x10\\xa4\\xcb\\x21\\x4b\\x09\\xca\\x4a\\xb7\\xbb\\xf5\\\n\\xe7\\xe7\\x0d\\x49\\x4b\\x9a\\x25\\x32\\xed\\x24\\x24\\xee\\xee\\xde\\x83\\xaf\\\n\\x58\\x92\\x95\\x4c\\xbb\\xa8\\x98\\x42\\x77\\xd1\\xc2\\xd4\\xeb\\xa0\\x8c\\x33\\\n\\x14\\x72\\x99\\x5d\\x15\\xe1\\x73\\x7a\\xc4\\xd6\\x59\\x8a\\xaf\\x31\\xb2\\x4c\\\n\\x4a\\xa4\\x38\\xa7\\x52\\x46\\x95\\xa7\\x23\\x6e\\x31\\x20\\xca\\xd8\\xc5\\x96\\\n\\xb7\\x54\\x4b\\x79\\xac\\x82\\x37\\x75\\xd2\\xbd\\xd1\\x88\\xcb\\x3a\\x84\\x7b\\\n\\x44\\xa1\\x3a\\xe6\\x23\\x87\\xeb\\x13\\x4f\\xed\\x64\\x9b\\xfc\\xfa\\xaf\\x5d\\\n\\xd8\\xfe\\xb3\\x2f\\x22\\x86\\x9a\\x75\\xec\\xb9\\xc8\\x1e\\x7a\\x9f\\x08\\x97\\\n\\xc6\\x30\\xc7\\xe9\\xfe\\xe0\\x1f\\x11\\x0f\\x3f\\x2e\\x37\\xd8\\x78\\x28\\x1b\\\n\\xd0\\x91\\xf6\\x89\\x87\\x4b\\xc8\\x19\\x80\\x00\\x1a\\xee\\x9b\\xfa\\xac\\x37\\\n\\x4c\\xc2\\xf6\\xe5\\x01\\xc4\\x26\\x12\\xf6\\x65\\x90\\x52\\x90\\x9b\\x6f\\x56\\\n\\xf0\\xad\\x9a\\xe8\\x94\\xd0\\xf1\\x35\\xfd\\xbd\\x5e\\x27\\xeb\\x2e\\xd8\\xca\\\n\\xa0\\x6b\\xc2\\xb4\\xfb\\xff\\x00\\x31\\x32\\xbc\\xe8\\x27\\x48\\x9a\\x46\\xd5\\\n\\xff\\x00\\x78\\xd7\\x2e\\x5a\\x74\\xbc\\x49\\x60\\x4c\\xb5\\x34\\x89\\xc2\\x48\\\n\\x58\\x05\\x34\\xa2\\x69\\x45\\xf8\\x41\\x75\\x08\\x96\\x4a\\x13\\x6a\\x0a\\x54\\\n\\x7a\\x31\\x2e\\xe0\\x34\\xa5\\xcd\\xa1\\x35\\x34\\xe1\\xdd\\x02\\xb4\\xd7\\x48\\\n\\x4b\\x59\\xbe\\x23\\xf2\\x87\\x5b\\x4a\\x47\\x38\\x52\\x10\\x49\\x27\\xe9\\x5f\\\n\\xbc\\x63\\x1d\\xa0\\x9e\\x7d\\x46\\x9b\\x4c\\x99\\xd4\\x2a\\x4e\\xa0\\x28\\x80\\\n\\x2b\\xdc\\x38\\x56\\xde\\x11\\xed\\x8a\\x75\\x68\\x99\\x43\\x95\\x7d\\xaa\\x67\\\n\\x6b\\x35\\x0a\\x50\\x34\\x26\\xb6\\x3e\\x7c\\x23\\xb3\\xf8\\xc4\\x8e\\x3b\\x20\\\n\\xb6\\xb6\\xcd\\xa9\\x72\\xe0\\x25\\xd1\\xa9\\x42\\x87\\x03\\xfb\\x56\\x00\\x69\\\n\\xa9\\x97\\x15\\x9c\\x06\\xc1\\x3b\\xdc\\x29\\xd0\\x44\\xc9\\x40\\x42\\xdf\\x5a\\\n\\xb2\\xa9\\x09\\xcc\\x8e\\xa3\\x54\\xf8\\x1f\\x08\\xc1\\x3f\\xd4\\x89\\x89\\x3c\\\n\\x60\\xb7\\x34\\x13\\xec\\xa5\\xed\\x9d\\x77\\x8a\\x9b\\x15\\x29\\xb8\\xa1\\x34\\\n\\xa8\\xbf\\x11\\x5e\\x30\\xc4\\xec\\xa6\\x2a\\xa4\\xa3\\x77\\x68\\xea\\x02\\xad\\\n\\xa8\\x04\\x56\\xb6\\xf0\\x89\\x8c\\x35\\x29\\x78\\x96\\xef\\x4d\\x4c\\x4d\\x30\\\n\\xdb\\x0c\\x2d\\x45\\x44\\x2d\\x77\\x02\\x86\\xff\\x00\\x28\\xc3\\xdb\\x44\\xd8\\\n\\x0d\\x97\\x72\\x28\\x53\\x74\\xe6\\x19\\xbe\\x51\\xdb\\xdc\\x32\\x61\\x06\\x50\\\n\\x49\\x30\\x1e\\x9a\\x2e\\x36\\x96\\x86\\x64\\xfb\\xe5\\x42\\x87\\x5e\\x1c\\xa9\\\n\\xe7\\x1d\\x9b\\xec\\x2f\\x68\\x26\\xb1\\x67\\x46\\x29\\x2f\\xb1\\x7d\\xf7\\x43\\\n\\x8a\\x59\\xa6\\x5d\\x82\\x0e\\x64\\x25\\x03\\xaf\\xc4\\x08\\xfc\\xc6\\x9e\\xec\\\n\\x61\\x3f\\xe9\\xf7\\x64\\x17\\x36\\xe7\\xf5\\x87\\x19\\x4b\\xa1\\x40\\xfe\\x27\\\n\\xf6\\x56\\xb0\\x06\\x88\\xf7\\x46\\x97\\xdd\\xd6\\xb4\\xd4\\xd5\\x18\\xe7\\x66\\\n\\xb0\\x60\\x9c\\x1b\\x0e\\x6e\\x4d\\xc5\\xa7\\xdd\\x5b\\x4d\\xdd\\x09\\xd0\\x2d\\\n\\x44\\x24\\x5b\\x86\\xb5\\x8e\\xd7\\x76\\x89\\x4f\\xa7\\xd8\\xe5\\x53\\x47\\x48\\\n\\xde\\x99\\x4f\\xe5\\x3a\\x8e\\x7a\\x18\\x90\\x93\\xaa\\x82\\xb3\\x15\\x1e\\xbd\\\n\\xf5\\x8c\\x3e\\x58\\xa9\\x29\\xaa\\x6f\\x53\\x6e\\x3e\\xbc\\x62\\x52\\x56\\x83\\\n\\x39\\x4d\\x92\\x9a\\xc6\\x37\\xda\\x36\\x25\\x86\\xc6\\x59\\xd0\\xb7\\x53\\x6c\\\n\\x82\\xb5\\xfa\\x6b\\x01\\xd5\\xbe\\x83\\xb6\\xb1\\x3c\\xfa\\xc7\\xb2\\x84\\x87\\\n\\x15\\x5b\\x5f\\x8d\\x3f\\x4b\\x47\\x64\\x5b\\x94\\x71\\xc5\\xb8\\xac\\xaf\\x14\\\n\\x1b\\xa4\\x75\\xdd\\xf5\\xc6\\x26\\xe4\\xe4\\xa6\\x25\\x02\\x18\\x5a\\x1a\\x72\\\n\\x96\\x48\\xe0\\x7c\\xa1\\xf6\\x9d\\x97\\x5a\\x92\\xa4\\x9a\\x05\\x10\\x0d\\xaf\\\n\\x43\\x4a\\xf8\\xc2\\x5c\\x27\\x85\\x7c\\x22\\x55\\xa6\\xdd\\xa2\\x5d\\x48\\xa2\\\n\\x8d\\x08\\xa6\\xba\\x7a\\xf0\\x8c\\x33\\x0f\\x96\\x97\\x95\\x4a\\xbd\\x9c\\x5c\\\n\\x5a\\xc2\\xf1\\x35\\x85\\x30\\xe9\\x53\\x81\\x09\\x4a\\x96\\x6a\\x45\\xad\\x13\\\n\\x98\\x63\\x72\\xe0\\x2d\\x00\\x1a\\x93\\x9b\\xa0\\xe1\\x0a\\x6a\\xbe\\xea\\x6c\\\n\\x6b\\x71\\xce\\x11\\x2a\\x38\\xc4\\x80\\x53\\x25\\x48\\x00\\xd0\\xe9\\xe3\\x18\\\n\\x73\\x48\\x4b\\x24\\xa8\\x51\\x47\\x40\\x7d\\x7a\\xa4\\x62\\x4b\\x1e\\xc7\\x90\\\n\\x6a\\x01\\xb7\\xab\\x47\\x68\\x8a\\x8c\\xd0\\x59\\x4a\\x80\\x20\\x82\\x45\\xb4\\\n\\xd2\\xb0\\xd3\\x65\\xca\\x1f\\x0b\\xfe\\x9d\\x62\\x56\\x5c\\x26\\x9e\\xbd\\x78\\\n\\x43\\x6c\\xa4\\x70\\x85\\x04\\x24\\x8d\\x9a\\x81\\xee\\xb7\\x7c\\x36\\xfa\\x13\\\n\\xba\\xb5\\xea\\x9e\\xa7\\xed\\x09\\x98\\xf6\\x75\\xb8\\xbe\\x04\\xdb\\xad\\x4c\\\n\\x3c\\xe0\\xcc\\x1c\\xd1\\x4a\\xb8\\xd6\\xf5\\x89\\xbc\\x6f\\x67\\x87\\x86\\x59\\\n\\x56\\x77\\x72\\x00\\xa4\\xa6\\xb9\\xab\\xde\\x6d\\x4e\\xe8\\x90\\x75\\xf7\\xd2\\\n\\xb0\\xea\\x54\\x92\\xa5\\x0b\\x1a\\x1e\\x7a\\x78\\x47\\x69\\x25\\x0c\\xbb\\xac\\\n\\x38\\x2a\\x42\\xd2\\x52\\xa0\\x3b\\xac\\x7e\\x67\\x4d\\x6a\\x2b\\xa4\\x69\\x5a\\\n\\x7e\\xfd\\x29\\xa5\\x22\\x43\\xda\\x9e\\x79\\x08\\x6d\\xd5\\xdb\\x51\\x9c\\x90\\\n\\x13\\xad\\x48\\xad\\x38\\x69\\x7a\\xf7\\x43\\x69\\x2d\\xa3\\x2e\\xd7\\x3a\\xa9\\\n\\x70\\x6b\\xbb\\x19\\x94\\x38\\x71\\xb4\\x2d\\xf5\\xa0\\xd1\\x46\\x87\\xcf\\xe9\\\n\\x06\\x69\\xf5\\x9c\\xad\\x21\\x6b\\xee\\x06\\xfe\\x16\\x8c\\xb3\\x81\\x29\\x25\\\n\\x2a\\x41\\x2a\\x1c\\x47\\x1e\\x1a\\xc6\\x22\\x97\\x02\\x06\\xd9\\xec\\x9a\\x71\\\n\\xaf\\x96\\xa7\\xa7\\xf1\\x0f\\xe7\\xd8\\x95\\x7c\\x34\\xd6\\xd1\\x87\\x2b\\xda\\\n\\xb1\\x45\\x36\\x37\\x92\\x2d\\x6e\\x04\\x6b\\xdf\\xad\\xfb\\xba\\xc3\\xd2\\xcd\\\n\\xa5\\x21\\x1a\\x2a\\xc6\\x90\\x58\\x51\\x14\\xa5\\xa1\\x84\\x16\\x88\\x3c\\xb9\\\n\\xc3\\x4f\\xa0\\x8a\\x29\\x54\\x23\\x41\\xe5\\x09\\x35\\x06\\x9d\\x21\\xb8\\x7a\\\n\\xb5\\x20\\xf3\\xfd\\xa3\\x73\\x88\\x11\\xda\\x6c\\x0e\\x54\\x4b\\x2d\\x72\\xc9\\\n\\x02\\x83\\x80\\x8c\\x47\\x0e\\x74\\xb6\\xb7\\x50\\xfa\\x9b\\x7d\\x97\\x0a\\x96\\\n\\x80\\xb5\\x00\\xb6\\x06\\xa0\\xd0\\xf1\\x19\\xa8\\x79\\xd0\\xde\\x91\\xd9\\x0d\\\n\\x96\\x1a\\x5a\\x72\\x59\\xd4\\xb8\\xdb\\xe8\\x52\\x8b\\x61\\xe4\\xad\\x65\\x4e\\\n\\x26\\x80\\x1a\\xaa\\xf4\\x35\\x37\\x3f\\x4b\\x62\\xb8\\xa6\\x7c\\x5a\\x5b\\x0e\\\n\\x61\\x44\\xad\\xf7\\x00\\x34\\xb0\\xad\\x0a\\x94\\x3f\\xcb\\xdd\\xa7\\xf3\\x12\\\n\\x38\\x9c\\xca\\xda\\x7b\\xda\\x59\\x39\\x5a\\x75\\xc9\\x7b\\x8e\\x0d\\xab\\x20\\\n\\x3d\\xc7\\x2d\\x6b\\x0f\\xff\\x00\\xa7\\xd3\\x38\\xfc\\xda\\xa7\\x30\\xc2\\xdb\\\n\\x0d\\xa9\\x39\\xdf\\x41\\x41\\x3b\\xd5\\xae\\x71\\x42\\x35\\x06\\x87\\x9e\\xbc\\\n\\xe2\\x41\\xb9\\x4e\\xc9\\x61\\x72\\xf3\\x53\\xf3\\x59\\x9f\\x4a\\x50\\xca\\x4a\\\n\\xd5\\x75\\x1b\\x27\\x9f\\x4a\\xc3\\xab\\xcc\\xdc\\xbc\\xe0\\x3f\\x84\\xfd\\x0f\\\n\\x4b\\x8a\\xfd\\xe1\\x78\\x06\\x33\\x8b\\x38\\x0b\\x4f\\x36\\xdc\\xaf\\xfd\\x3b\\\n\\x0a\\x86\\xf8\\x66\\x3d\\xd0\\x30\\x1c\\x3b\\x0b\\x96\\xac\\xdc\\xe3\\x2a\\x98\\\n\\x29\\xdd\\xca\\x45\\x42\\x80\\xbd\\x78\\xf2\\x8e\\xda\\x62\\xd2\\xf2\\x58\\x93\\\n\\x13\\x3e\\xdb\\x79\\x59\\x84\\x3c\\xd2\\x42\\xaa\\x55\\xb3\\x50\\x34\\xa1\\x50\\\n\\x1e\\x76\\xe2\\x48\\x89\\x6e\\xd9\\x4e\\xe2\\x58\\xe8\\x2c\\xe2\\x0f\\x32\\xd8\\\n\\x96\\x3e\\xea\\x01\\x01\\x5d\\x4a\\x54\\x79\\xda\\xf7\\xd7\\x4b\\x99\\x69\\xac\\\n\\x6b\\x1e\\x9d\\x9d\\xc3\\x9c\\x9f\\x98\\x48\\x43\\x8b\\xd9\\x4c\\xba\\x92\\x94\\\n\\xb8\\x73\\xd5\\xb0\\x0d\\x77\\xc2\\x93\\x54\\xac\\x24\\xf8\\x88\\xc2\\x70\\x33\\\n\\x81\\x61\\x0a\\x76\\x6e\\x60\\x3f\\x3c\\xb5\\xab\\x7a\\xf4\\x4a\\x75\\x01\\x15\\\n\\x24\\x81\\x6e\\x77\\x35\\x36\\xac\\x21\\xb9\\x99\\x87\\x95\\x30\\xe9\\x39\\x0d\\\n\\x93\\xf4\\x89\\x39\\x4c\\x87\\xd7\\xaf\\x5c\\x22\\x50\\xb6\\xcb\\x21\\x4a\\xd6\\\n\\xa7\\xe5\\x13\\x5d\\xa0\\x69\\xb6\\xd6\\xd3\\x67\\x7e\\x94\\xeb\\x4a\\x42\\xff\\\n\\x00\\xdd\\xcd\\xad\\xd3\\x7b\\xfd\\xcc\\x21\\x39\\xad\\xaf\\x0b\\xc6\\x2d\\x22\\\n\\xf3\\xec\\xe5\\x65\\x65\\x0a\\x56\\xed\\x07\\x1f\\x5f\\x68\\xec\\xce\\x10\\xbc\\\n\\x1a\\x4d\\x41\\xe5\\x9d\\xbb\\xdb\\xc9\\x04\\x9a\\xf5\\xf9\\x56\\x3d\\xa2\\x61\\\n\\x3a\\x13\\xe6\\x62\\x63\\x3a\\xcd\\x57\\xc4\\xd7\\xce\\x3d\\x99\\x3b\\xb4\\xa4\\\n\\x34\\x32\\x29\\x1d\\x08\\x89\\x33\\x9a\\x49\\x9f\\xf8\\x88\\x79\\xb2\\xa4\\x1c\\\n\\xb1\\x8b\\x07\\xda\\x42\\xeb\\x5a\\x1f\\xb4\\x09\\x94\\xa5\\xa4\\xd7\\x52\\x45\\\n\\x3c\\x61\\x85\\x67\\xe7\\x12\\x6c\\x54\\xa0\\xfa\\xf5\\xc2\\x25\\x90\\x10\\x94\\\n\\xd7\\xa4\\x63\\x33\\x28\\x42\\x48\\xe9\\x18\\xd2\\x9a\\x5a\\xc5\\x63\\x2a\\x50\\\n\\x46\\x41\\x6a\\x03\\x0d\\x3c\\x49\\xca\\x35\\xd7\\x96\\x90\\xd2\\xd7\\xf3\\xfd\\\n\\x21\\x0d\\xfe\\xba\\x42\\x58\\x41\\xd7\\x5e\\x10\\xec\\xb8\\x4b\\xa9\\x2a\\x1f\\\n\\x87\\x9a\\xfd\\xde\\x84\\x4e\\x4b\\xa1\\x7b\\x2c\\x9c\\x84\\x2d\\x94\\xed\\x14\\\n\\x2d\\x5c\\xc6\\x19\\x40\\x6c\\x8a\\x7e\\x61\\x18\\xfe\\x19\\xed\\x72\\x41\\x77\\\n\\xaa\\x53\\x9a\\xc6\\x87\\x81\\xa7\\x8e\\x94\\xd0\\xe8\\x61\\x72\\x45\\x2e\\x94\\\n\\x0a\\x9f\\x91\\x4f\\x43\\xf5\\xe9\\x18\\x54\\x9a\\x65\\x50\\x97\\x14\\x37\\xd6\\\n\\x2a\\xaf\\xd3\\xb8\\x0f\\x9c\\x3c\\xea\\x46\\xf0\\xe3\\xf6\\x87\\x67\\x12\\x2b\\\n\\x7a\\x6b\\xa5\\xfb\\xbf\\x61\\xcf\\x48\\x63\\x10\\x2c\\x29\\x2b\\x79\\x1b\\x5a\\\n\\xfc\\x1c\\x89\\xa6\\x5a\\x9e\\x95\\xdf\\x00\\x74\\xe7\\x0c\\xe3\\x79\\x88\\x1e\\\n\\xc4\\x11\\xfe\\x43\\x87\\xcb\\xc7\\x58\\x7e\\x71\\x2f\\x13\\x95\\x5b\\xf4\\xb2\\\n\\x79\\x18\\x79\\xa9\\xd2\\xe1\\x54\\xc1\\x3b\\x2e\\x1e\\x8c\\x4f\\xbb\\x30\\xa4\\\n\\xec\\x1a\\xad\\x57\\xba\\x3b\\x8f\\x5b\\xd2\\x3b\\x3d\\x83\\x3b\\x28\\xf8\\x7d\\\n\\xdf\\x7d\\x4a\\xa9\\x34\\xe1\\x41\\x4f\\xbf\\x7c\\x4d\\xad\\xb5\\x29\\x29\\x1e\\\n\\xf5\\x04\\x21\\x35\\xd2\\x0a\\x7a\\x7d\\x21\\x28\\xbc\\x21\\x76\\xa4\\x36\\xe5\\\n\\x21\\xc1\\x51\\x5e\\x70\\x53\\x7e\\x11\\xda\\x76\\xde\\x97\\x99\\x4b\\x25\\xd7\\\n\\xb6\\x2b\\x49\\xa0\\xce\\xa0\\x82\\x7a\\x8a\\x80\\x79\\x80\\x6b\\xc6\\x27\\x65\\\n\\x9b\\x97\\xc5\\xd9\\x53\\xa0\\xa9\\x89\\xd4\\x96\\xd5\\x53\\x99\\x09\\x52\\x2f\\\n\\x94\\x8b\\x80\\x16\\x95\\x28\\xf5\\xa7\\x38\\x98\\x97\\x93\\xc2\\xb1\\xb9\\x65\\\n\\x48\\xa1\\x12\\xcc\\xa9\\x97\\x56\\xa4\\x34\\x32\\x34\\xb7\\x06\\x5a\\x1c\\xa0\\\n\\x84\\xe6\\xde\\x3d\\x4d\\xc4\\x60\\x4f\\x2f\\x17\\xc7\\x10\\x65\\xe5\\x52\\xf4\\\n\\xca\\x54\\x12\\x1c\\x2d\\xd4\\xb6\\x91\\x50\\x4a\\x55\\xff\\x00\\x4d\\x40\\xdb\\\n\\xaf\\xbb\\x4e\\x58\\x17\\x63\\xdc\\x95\\x52\\x8c\\xf1\\x0f\\x6d\\x54\\x56\\x5b\\\n\\x58\\xaa\\x6a\\xa3\\x9a\\xa5\\x24\\x9a\\xa8\\xd6\\xe7\\xe4\\x22\\x4b\\x08\\x12\\\n\\xe7\\x2b\\x00\\x30\\x95\\x8a\\x51\\xb1\\x96\\xa3\\x95\\xb8\\x79\\x46\\x2f\\xd9\\\n\\x79\\x27\\xcb\\x6e\\x62\\x08\\x65\\xf6\\x19\\x3b\\x4c\\x8f\\x00\\xa4\\x24\\xde\\\n\\xe0\\x1d\\x0d\\xf5\\x8f\\xeb\\xd8\\x7b\\x2e\\x27\\x0f\\xdd\\x53\\x2d\\x6e\\xa1\\\n\\x3f\\xf4\\xd1\\x4d\\x32\\x8e\\x14\\x87\\x7b\\x47\\xf8\\x4b\\x6a\\x4e\\x61\\x6d\\\n\\xe4\\x05\\x34\\x6d\\x27\\x87\\x0b\\x6b\\xeb\\xbe\\x26\\xf1\\x4c\\x4e\\x62\\x61\\\n\\xd4\\xa3\\x69\\x30\\x6f\\x98\\xa9\\x2a\\xaa\\x2b\\xa7\\x9c\\x3a\\xc3\\x47\\x10\\\n\\x5b\\xb8\\x8b\\x61\\x4e\\x85\\x66\\x46\\xd5\\x39\\xb2\\x91\\xf9\\x6b\\xa7\\x84\\\n\\x4a\\x61\\x68\\x77\\xfd\\xea\\x1d\\x29\\x34\\xa5\\x8d\\x2d\\xcb\\xbb\\xa4\\x61\\\n\\xf2\\x1b\\x49\\xa6\\x9c\\x48\\x05\\x0d\\xaa\\xfe\\x77\\xfd\\xfa\\xc4\\xfa\\x13\\\n\\x37\\x27\\x91\\x96\\x92\\x54\\x11\\x4a\\x81\\xc6\\x9f\\xc7\\xaa\\xc4\\xb3\\x13\\\n\\x01\\xbf\\x66\\x58\\x25\\x41\\x5e\\x57\\x80\\xdf\\xb3\\x23\\x32\\xaf\\x6e\\x37\\\n\\x89\\xec\\x69\\x60\\x16\\x1b\\x0a\\xe7\\x51\\xd7\\x87\\xae\\x51\\x2e\\x5c\\x76\\\n\\xe5\\x15\\x5a\\xad\\x71\\x7b\\xc6\\xc5\\xc6\\x8e\\xcc\\x80\\x97\\x15\\x7a\\x81\\\n\\x43\\x12\\xac\\xe4\\xb2\\xef\\x7d\\x4f\\xaf\\x9c\\x25\\x90\\xa5\\x02\\x52\\x09\\\n\\x1a\\x12\\x2e\\x29\\xca\\x01\\xcc\\x52\\x55\\xbc\\x53\\xee\\xa8\\xea\\x9e\\xee\\\n\\x5c\\xbb\\xa2\\xa7\\xac\\x28\\x66\\xd4\\x56\\x02\\x2b\\xd2\\x12\\x8c\\xa4\\x12\\\n\\x6c\\x2e\\x63\\x03\\xc4\\x98\\xdd\\x69\\xc5\\x05\\x01\\x6a\\x28\\xd4\\x43\\xf3\\\n\\x0d\\xa5\\x4a\\xca\\x12\\x12\\x4d\\xa3\\x11\\x96\\x13\\x6d\\x53\\x2f\\x38\\xc6\\\n\\xa4\\xdf\\x94\\x59\\x50\\xce\\x10\\x8a\\xae\\xda\\x6e\\xdf\\x4f\\x08\\xc1\\xa7\\\n\\xc3\\xe0\\x24\\xa7\\x7a\\xd7\\xa5\\xe3\\x0e\\x96\\x3b\\x26\\xd4\\xa1\\xad\\x4f\\\n\\xce\\x32\\xa0\\x25\\x3d\\x0f\\xda\\x3b\\x49\\x88\\xa5\\x13\\x65\\xaa\\xda\\xf6\\\n\\xac\\x3b\\x47\\x7d\\xe1\\x98\\xf3\\x55\\xfc\\x21\\x0c\\xf3\\x1f\\x28\\x61\\x94\\\n\\x05\\xe6\\xc8\\x05\\x8d\\xe9\\x0d\\xa0\\x72\\x1f\\xa5\\x61\\x22\\x94\\x8e\\xb0\\\n\\xba\\x29\\x24\\x1b\\xe9\\xaf\\x43\\xf6\\x8c\\x46\\x65\\x6c\\xb6\\x4a\\x56\\xa4\\\n\\x94\\x8b\\x50\\xc6\\x14\\xf6\\xde\\xa5\\xcd\\xf5\\x56\\xf9\\xae\\x6b\\xd7\\xac\\\n\\x64\\x19\\xb4\\xb0\\xa7\\xa1\\x01\\x0a\\x72\\x5d\\x6d\\x92\\x4d\\x51\\x40\\x0f\\\n\\x0b\\x70\\xd7\\xd5\\x22\\x62\\x4c\\x36\\xf9\\xaa\\x41\\x22\\xb7\\x34\\xfb\\xc6\\\n\\x45\\x21\\x05\\x4a\\x04\\x8e\\x03\\x97\\xaf\\x5c\\x21\\xc7\\x56\\xe1\\x34\\x1b\\\n\\x80\\xd2\\xd6\\xad\\x74\\xf0\\xe7\\xa7\\x23\\x0a\\x04\\x9a\\x52\\x86\\x9c\\x29\\\n\\x7e\\xfe\\x7c\\xe1\\x39\\x07\\xbc\\x6c\\x2f\\x5f\\xcb\\x6f\\x95\\xe1\\xec\\x59\\\n\\x08\\x6d\\x12\\xfb\\x41\\x9e\\xb4\\x2b\\x0a\\xe6\\x6d\\xbf\\xee\\x8e\\x49\\xbf\\\n\\x94\\x61\\x12\\x72\\xf3\\x05\\x2e\\xe6\\x4a\\x94\\x75\\x36\\xb7\\x95\\xb5\\xfb\\\n\\x47\\x68\\x25\\xf6\\x4c\\x8c\\xaa\\xd3\\xac\\x61\\x92\\x08\\x71\\xd5\\x4f\\xbf\\\n\\x42\\xd2\\x45\\x72\\xab\\xdd\\xb7\\x48\\x99\\xc6\\x90\\x54\\xb4\\xb5\\xb9\\x45\\\n\\x14\\xa7\\x27\\x21\\x1e\\xdc\\xb0\\x82\\xea\\xd6\\x4a\\xaa\\x2e\\x4d\\xef\\xc2\\\n\\x0e\\x39\\x94\\x00\\x90\\xa2\\x7c\\x07\\x2d\\x49\\xe1\\xd7\\xf6\\x86\\xb1\\x77\\\n\\x89\\xa9\\x72\\xa9\\xea\\x91\\xd6\\xa4\\x5c\\xf9\\x7c\\xf8\\xc2\\x31\\xa5\\x85\\\n\\x6f\\x16\\x48\\x1c\\x00\\x37\\xea\\x69\\x5a\\x5b\\x51\\x43\\x7d\\x4f\\x08\\x92\\\n\\x99\\x6a\\x75\\x09\\x71\\x34\\x48\\xe2\\x3a\\xfe\\xd0\\xa4\\x72\\x3e\\x22\\x06\\\n\\xd1\\x29\\x4d\\x73\\x2a\\xdd\\xf1\\xb4\\x3f\\xfc\\x5f\\xfd\\xa2\\x26\\xb0\\x19\\\n\\x1c\\x6a\\x49\\x64\\xcb\\x24\\xb9\\x94\\xd0\\xea\\x41\\xe0\\x45\\xb5\\x8e\\xd1\\\n\\x76\\x3d\\xd6\\x1b\\x2d\\xec\\x56\\xb7\\xd0\\xfe\\x76\\xc0\\xfc\\x95\\xdd\\xe7\\\n\\x7d\\x41\\x20\\xdf\\x91\\xe2\\xc7\\x61\\x1a\\xc4\\xa4\\xc2\\xe7\\x1a\\xfc\\x46\\\n\\x88\\x58\\x42\\x91\\x98\\x9c\\xb7\\xe3\\xa5\\x47\\x1e\\xb1\\xd9\\x4c\\x2f\\x0b\\\n\\x91\\x0a\\x4c\\xbc\\x93\\x72\\x4f\\xa2\\xa0\\xbb\\x62\\x56\\x79\\x9a\\x25\\x3a\\\n\\xf3\\xa9\\xfb\\xc4\\xca\\x96\\x95\\xa1\\x61\\xdc\\xc2\\xd5\\x14\\xa5\\x7e\\x7f\\\n\\xac\\x1c\\x5f\\x75\\xba\\x33\\x97\\x22\\x68\\x55\\x9b\\x5f\\x97\\x28\\xed\\x26\\\n\\x3a\\xf3\\x81\\x6c\\x05\\x51\\x2b\\x14\\xf7\\xa9\\xca\\x1f\\x9a\\x94\\x69\\x5b\\\n\\x49\\xa6\\xdd\\x6f\\xff\\x00\\xf4\\x4e\\xf7\\x1f\\x0a\\xf9\\x93\\x1d\\x99\\xed\\\n\\x4b\\x68\\xc3\\x66\\x66\\xd9\\x66\\x5a\\x6d\\xb9\\x52\\xb4\\x25\\x0e\\xb4\\x1a\\\n\\x5a\\xd2\\x8a\\x80\\x73\\x15\\x2a\\xe7\\x89\\x8c\\x23\\xb6\\x72\\x98\\xfb\\xca\\\n\\x2c\\x60\\xf4\\x78\\x10\\x14\\xd3\\x6d\\xd1\\x23\\x31\\xdd\\xab\\xa0\\x10\\x6b\\\n\\x4e\\x55\\x1c\\x44\\x4c\\x76\\x21\\xac\\x51\\xd4\\xcd\\xce\\xb0\\xd6\\x1e\\xda\\\n\\xa8\\xa5\\x29\\x4a\\x0b\\x29\\x4f\\x15\\x65\\xa2\\x6b\\x4d\\x69\\xf3\\x87\\xb0\\\n\\x19\\x19\\x77\\x17\\x2d\\x23\\x36\\x26\\x52\\x9b\\x59\\x19\\x2b\\x4f\\xfb\\x8c\\\n\\x49\\x49\\xfb\\x1b\\xae\\xa5\\x49\\xf7\\xcd\\x93\\xf9\\x3c\\x78\\xf3\\x85\\xaf\\\n\\xd8\\xa4\\x9c\\x99\\x24\\x64\\x97\\x0a\\x79\\xc2\\x7f\\x27\\x21\\xe3\\x18\\x1e\\\n\\x3d\\x31\\x8e\\x62\\x6f\\x3c\\xcc\\x9a\\x9a\\x93\\x4a\\x8a\\x43\\xaa\\x57\\xbc\\\n\\x01\\xb9\\xcb\\x90\\x52\\xb4\\xe7\\x13\\x0d\\x97\\x41\\x40\\xe3\\x6a\\xfa\\xf5\\\n\\x78\\x46\\x08\\x84\\xef\\x2f\\x79\\x5c\\x77\\x78\\x70\\xe7\\x13\\x32\\x85\\x96\\\n\\xd2\\xa6\\x53\\x45\\xa5\\xc4\\x9b\\x0d\\x40\\xd4\\x78\\xc6\\xc2\\x77\\x15\\xc6\\\n\\x00\\xf6\\x93\\x24\\x94\\x5a\\x85\\x1b\\x4c\\xdf\\xfd\\xc9\\x87\\xd0\\xa6\\x54\\\n\\x91\\x92\\xb4\\xa0\\xae\\x95\\xe1\\x5f\\xbc\\x25\\xd4\\xe5\\x1f\\xac\\x21\\xdb\\\n\\x8e\\x11\\x9e\\xba\\x08\\xad\\x05\\xd3\\x0b\\x58\\x02\\xb5\\x02\\x26\\xb1\\x10\\\n\\xcb\\x6e\\x13\\xf0\\x82\\x6b\\x5e\\x11\\x84\\xe3\\x33\\x0a\\x9e\\xfc\\x34\\xa8\\\n\\xa4\\x2b\\xf3\\x7a\\xf0\\x89\\x49\\x94\\xcc\\xb0\\xc6\\x71\\x95\\x79\\x13\\x98\\\n\\x13\\x53\\x58\\x4c\\xb1\\x5a\\x10\\x13\\xc2\\xb5\\xeb\\x58\\xc7\\x64\\x92\\x50\\\n\\xb4\\x96\\xea\\x54\\x85\\x27\\xcc\\x7e\\xf1\\x86\\x61\\x5b\\x09\\x94\\xaa\\x94\\\n\\x15\\x16\\xa4\\x36\\xa4\\xa5\\xa4\\x80\\x69\\x6f\\xe6\\x1e\\x99\\xd9\\xa0\\x9c\\\n\\xfa\\x03\\x6e\\x71\\xda\\x19\\xb7\\x57\\x3e\\x54\\x84\\x6d\\x32\\xd6\\xa3\\x35\\\n\\x29\\xc3\\x91\\xac\\x4b\\xcc\\x95\\x39\\x91\\x68\\xca\\xaa\\x03\\xef\\x66\\x04\\\n\\x1e\\x35\\xa4\\x24\\x69\\x6a\\xf5\\xe5\\x08\\x14\\x1a\\x52\\xd0\\x88\\x42\\xc7\\\n\\x4b\\x0e\\x74\\x8d\\xb2\\x49\\xcb\\x4b\\xf7\\xc1\\x52\\x28\\x49\\x58\\xd7\\xcb\\\n\\x87\\x38\\xc6\\xd3\\xb8\\x95\\x25\\x55\\x19\\x87\\x0e\\xb6\\xe3\\xfc\\x46\\x1b\\\n\\x36\\x25\\xdd\\xde\\x1b\\x8b\\xb5\\x6b\\xa1\\xe7\\xa5\\x0f\\x53\\x08\\x4a\\x56\\\n\\x94\\xad\\x07\\x36\\x61\\x71\\xcb\\xf5\\xac\\x33\\x6a\\x5b\\xd7\\xda\\x27\\x25\\\n\\x81\\x74\\xb9\\x5a\\xd4\\xe9\\x48\\xc8\\x9b\\x8c\\x95\\x10\\x30\\xf6\\x33\\xa9\\\n\\x65\\x1a\\xf8\\x7e\\xd0\\x65\\x25\\xd3\\x6d\\x90\\xf9\\x7f\\xfa\\xc6\\x3e\\xea\\\n\\x59\\xce\\x86\\x51\\x92\\xbf\\x15\\x79\\x71\\xa7\\x38\\x7c\\x4c\\xec\\x83\\x8b\\\n\\x98\\xdd\\x25\\x54\\x5d\\x2b\\x5b\\xe9\\x4a\\xf0\\xd3\\xf4\\x8c\\x07\\x19\\x9d\\\n\\x96\\x70\\x6c\\xf3\\x4c\\x24\\x26\\x86\\x95\\x42\\x69\\x51\\x7f\\x8b\\x97\\xce\\\n\\x27\\xbb\\x50\\x66\\x54\\x18\\x7d\\x82\\xde\\x80\\xaf\\x3e\\x6b\\x69\\x61\\x94\\\n\\x56\\xde\\x31\\x8c\\x62\\xcd\\xa6\\x47\\xd8\\xa4\\x1c\\xcc\\xaa\\x53\\x38\\xdd\\\n\\xf3\\x17\\x89\\x06\\xde\\x2b\\xcc\\xf8\\x20\\x8e\\x77\\xaf\\x03\\xdd\\x5e\\xff\\\n\\x00\\x0a\\x69\\x3d\\x30\\xd3\\x2d\\x73\\xcc\\xb4\\x0d\\x69\\xc7\\xd1\\x84\\xbe\\\n\\xcb\\xa6\\xc4\\x24\\x71\\xbf\\x2f\\xdf\\x8f\\x1e\\x50\\xb9\\x91\\x40\\x41\\xca\\\n\\x2e\\x2c\\x4f\\xe9\\x0e\\x4d\\xac\\xac\\x34\\x85\\xd5\\x65\\x43\\x2d\\x2a\\x4d\\\n\\xed\\xa7\\x1a\\x46\\x06\\x56\\xd3\\x09\\x68\\x95\\x05\\x2f\\x9f\\x13\\xa9\\xf5\\\n\\xe5\\x1b\\x52\\x91\\x42\\x6b\\xe8\\xc4\\xa6\\xc9\\x4c\\x32\\x56\\x9b\\xe4\\x49\\\n\\x20\\xf3\\x22\\x32\\x4a\\x7f\\xf1\\x88\\xec\\xf4\\xe4\\xdc\\x92\\x32\\x4d\\x2b\\\n\\x2d\\x75\\x0e\\x5b\\xeb\\x13\\xa9\\x66\\x71\\xdf\\x6a\\xc8\\x97\\x40\\x48\\x49\\\n\\xcb\\x71\\xbb\\x53\\xf7\\x82\\x65\\x9b\\x4a\\x97\\x44\\xa2\\xc5\\x39\\x74\\x3b\\\n\\xd6\\x89\\xd9\\xa5\\x35\\x8b\\x6c\\xdb\\x05\\x0d\\xa8\\xd7\\x36\\x89\\xbf\\x58\\\n\\x33\\x3e\\xe6\\x65\\x0a\\x50\\x5e\\xb6\\xef\\x8c\\x4e\\x7d\\x0d\\x32\\x36\\x4e\\\n\\x25\\x47\\x29\\xae\\x52\\x0d\\xeb\\x13\\x29\\x72\\x79\\x4a\\x2b\\xcc\\x35\\xa1\\\n\\xa5\\xcf\\x87\\xce\\x19\\xec\\xb7\\x6a\\xf1\\xf0\\xa6\\x70\\xb4\\xa5\\x4c\\x22\\\n\\xd9\\xd6\\xe6\\xcd\\x22\\x87\\x55\\x10\\xda\\x8f\\x7e\\xf0\\xf2\\x8e\\xcd\\xf6\\\n\\x05\\xac\\x1a\\x48\\x23\\xb4\\xb3\\x2d\\xba\\xb5\\x26\\xae\\x36\\xc2\\xc2\\x86\\\n\\x6f\\xcb\\x6f\\x7b\\x95\\x48\\xbf\\x8c\\x37\\x89\\xe1\\x58\\x2c\\xba\\xe5\\xb0\\\n\\x8c\\x29\\xa1\\xb4\\xb0\\x7d\\x4d\\x8a\\x8c\\xba\\x1a\\xd2\\x26\\xf1\\x39\\xd9\\\n\\x87\\x15\\xed\\xae\\xba\\xb4\\xb9\\x50\\x94\\xb3\\x52\\x81\\x5d\\x2b\\x4a\\xd0\\\n\\x73\\x89\\x54\\x2d\\x0f\\xb8\\xa6\\xd4\\x52\\xa3\\x5a\\x02\\x7e\\x91\\x31\\x34\\\n\\xe3\\x44\\x6d\\x7f\\xb9\\x5b\\xfd\\xbe\\x51\\x33\\x9b\\x10\\x97\\x65\\x22\\x61\\\n\\x08\\x6d\\x97\\x33\\xcc\\x35\\x98\\x66\\x98\\x6e\\x94\\x0d\\xa4\\x56\\xe6\\xa4\\\n\\x1e\\x76\\x89\\x09\\x76\\x99\\x39\\xa5\\x65\\x95\\x2a\\xc6\\x85\\x0e\\x23\\x21\\\n\\x51\\xe6\\x2b\\x12\\xb2\\xed\\x9f\\x88\\x28\\xf0\\x15\\x81\\x27\\x99\\xbf\\xed\\\n\\x9a\\xdf\\x85\\xfc\\xa1\\xe9\\x25\\x05\\x6f\\x36\\xaa\\x57\\xf2\\xc3\\xd2\\x89\\\n\\x97\\x9c\\x0e\\xe5\\xca\\x3f\\x31\\x16\\xe7\\xdd\\x0f\\xcc\\xa1\\xe1\\xc2\\x33\\\n\\x9c\\xf9\\x75\\xac\\x36\\x82\\x46\\xf6\\xed\\x79\\xda\\x10\\xf3\\x4d\\x1a\\x67\\\n\\x4d\\x45\\xae\\xa1\\x0f\\xcf\\xeb\\x94\\x83\\xaf\\xaf\\x01\\x0f\\x62\\x0b\\x55\\\n\\x85\\x60\\xb3\\x35\\x3c\\x4b\\x21\\x97\\x54\\x97\\x2c\\x48\\x49\\x34\\xaf\\x74\\\n\\x60\\xd8\\x3b\\x32\\x74\\x52\\xca\\x76\\xa2\\xf9\\x4e\\xb5\\x1d\\xf7\\x89\\x67\\\n\\x02\\x1d\\x14\\x55\\xeb\\x5c\\xbc\\x47\\x4f\\x08\\xc3\\x26\\x94\\x45\\x0a\\x09\\\n\\x14\\x17\\xd6\\x91\\x8a\\xb0\\x97\\x90\\xa5\\x81\\x5c\\xa9\\x2a\\xa7\\x85\\x61\\\n\\x15\\x2f\\x0a\\xa0\\xa7\\xc2\\x17\\xd0\\xda\\x26\\x6a\\x5b\\x5d\\xf8\\x18\\xc5\\\n\\x9e\\xcb\\x34\\xf2\\x4f\\x3e\\x71\\x2c\\xb5\\x19\\x84\\xaa\\xe9\\x49\\xf0\\x14\\\n\\xeb\\xca\\x18\\x71\\x04\\x00\\x95\\x05\\x78\\xf7\\x69\\xe8\\xc1\\x35\\x48\\xf9\\\n\\xfe\\xd0\\x08\\x40\\xde\\x34\\xef\\x82\\xfa\\x00\\xf7\\xd1\\xe6\\x21\\x4f\\x83\\\n\\x5d\\xf4\\xd3\\x9c\\x29\\xd2\\x6c\\x55\\x41\\x5d\\x7d\\x18\\xc5\\x1c\\x21\\x28\\\n\\x6c\\x9a\\xe6\\xd3\\xfc\\x86\\xbe\\x3a\\x6b\\x58\\x96\\x43\\x8e\\xab\\x62\\x86\\\n\\xd6\\xa5\\x85\\x51\\x21\\x22\\xc8\\x07\\x8a\\xb9\\x80\\x34\\xe0\\x78\\x46\\x17\\\n\\x87\\x29\\x99\\x64\\x66\\xad\\x4a\\x53\\x63\\xd2\\x1d\\x65\\x68\\x4a\\x8e\\x55\\\n\\x58\\x1e\\x1f\\xa4\\x28\\x15\\xf7\\xf2\\x85\\x23\\x27\\xbc\\x29\\xdf\\x13\\x13\\\n\\x8c\\x32\\x91\\xf8\\x8d\\xd4\\x9a\\x7b\\xc3\\xf5\\x87\\x27\\xd4\\xa5\\x0c\\x9b\\\n\\xc9\\xaf\\xc3\\xbd\\x7f\\x08\\x9a\\xc3\\x7d\\xbc\\x15\\xe4\\x39\\x8f\\x4b\\xf9\\\n\\x43\\x7d\\x88\\x5c\\xd3\\x69\\x53\\xab\\x0d\\x33\\x53\\x67\\x37\\x7b\\xed\\x68\\\n\\x6a\\x4f\\x0c\\xc1\\xdb\\x2d\\x25\\xb4\\x3c\\xe2\\x45\\xd5\\x6a\\x53\\xbf\\x4a\\\n\\xdb\\xf7\\xd2\\x1b\\x66\\x4a\\x77\\x12\\x0e\\xad\\x90\\x94\\x66\\x3b\\xc0\\x53\\\n\\x28\\xa8\\xa6\\x63\\x4e\\x37\\xca\\x6b\\xcc\\x0e\\x31\\x3d\\x82\\x61\\xae\\x0a\\\n\\xc9\\x32\\x41\\xee\\xd4\\xf0\\xfb\\xc3\\xf8\\x4a\\xa5\\xdb\\x2a\\x5a\\x14\\x0f\\\n\\x02\\x45\\x2d\\x18\\x84\\xba\\x5c\\x97\\x5e\\x72\\x68\\x14\\x34\\xb5\\xc4\\x05\\\n\\xba\\x1c\\x53\\x32\\xe1\\x6e\\x5f\\x28\\xdd\\xad\\x87\\x15\\x78\\xfc\\xa9\\x48\\\n\\x91\\xc3\\xa6\\xa7\\x97\\x47\\x10\\xea\\x46\\x94\\x03\\xce\\xe3\\x4f\\x31\\x18\\\n\\x3f\\x66\\x65\\x18\\x57\\xb4\\x3a\\xdd\\x56\\x95\\x0a\\x66\\xb9\\xa6\\xa7\\x58\\\n\\xd8\\x30\\xa0\\x16\\xdb\\x25\\x2a\\x46\\x9b\\xbe\\x11\\x29\\x87\\xb9\\x30\\xba\\\n\\xb8\\x92\\x84\\x73\\x55\\xbc\\xbe\\xf5\\xef\\x83\\x2e\\x12\\x9a\\x21\\x55\\x22\\\n\\xb7\\x1a\\x1a\\x7d\\x23\\x74\\x6a\\xb4\\x8e\\xf2\\x01\\x89\\x64\\x2a\\x85\\xc5\\\n\\x27\\x6c\\x13\\xe3\\x09\\xc4\\x94\\xee\\x76\\x92\\xc9\\x66\\x84\\x82\\x92\\x29\\\n\\x52\\x38\\xc6\\x2b\\x8b\\xb8\\xcc\\xc8\\x64\\xf1\\x22\\xbd\\xe2\\x26\\x9f\\x2f\\\n\\x4e\\xa1\\x67\\x5a\\x7f\\x1e\\xbe\\x50\\xb5\\x3c\\x74\\x5e\\x96\\xee\\xbc\\x25\\\n\\x2a\\xf7\\x5c\\x35\\xaf\\x3e\\x42\\x1a\\x65\\x84\\x28\\x15\\x52\\x30\\xdc\\x59\\\n\\xcc\\x19\\xa7\\x53\\x2e\\x7f\\xb9\\x5d\\x20\\x62\\xee\\x4c\\x95\\x19\\xa7\\xa9\\\n\\x5b\\x81\\x5f\\x5f\\x2e\\xb0\\xe3\\xe3\\x38\\xfc\\x71\\x92\\xf4\\xbf\\xae\\x11\\\n\\x89\\x76\\x9f\\x06\\xc3\\x12\\x4c\\xc4\\xdb\\x41\\x60\\x58\\x29\\x69\\x15\\x57\\\n\\x01\\x7e\\x7f\\xa7\\x18\\xc2\\xfb\\x51\\x82\\x63\\x6e\\x6c\\x58\\x9b\\x69\\x2f\\\n\\xf2\\x0b\\x4d\\x47\\xcf\\xe7\\xd2\\x27\\xb0\\xef\\xc1\\x00\\x2f\\x68\\x7f\\x3e\\\n\\xb9\\xbd\\x0f\\xa4\\x60\\xd8\\x3a\\x9d\\x57\\xe2\\x0d\\xd4\\x0c\\xc3\\xce\\x90\\\n\\x30\\xe6\\x36\\x69\\x4e\\x5b\\xda\\x17\\x28\\x18\\x5e\\xe4\\x35\\x31\\xb3\\x20\\\n\\x2f\\xe7\\x0a\\x4b\\x2f\\xb5\\x51\\x4a\\xf1\\x8c\\x43\\x0c\\x33\\x16\\x40\\xad\\\n\\x6b\\xeb\\xd7\\x08\\xc4\\x51\\xec\\x8f\\xa5\\xbe\\x70\\xc4\\xa2\\x4b\\x1b\\x73\\\n\\xa8\\xf2\\xa0\\x15\\xa9\\x89\\xa9\\xe7\\x10\\x48\\x4f\\x0b\\x5a\\x16\\xb7\\xc9\\\n\\xda\\x50\\xf1\\xe1\\xeb\\xe7\\x08\\x71\\xc5\\x24\\xf3\\xee\\x85\\x29\\xb6\\x8a\\\n\\x9c\\x79\\xd0\\xdd\\x34\\x49\\xd5\\x5c\\xe8\\x38\\xde\\x30\\xfe\\xd7\\xcb\\x49\\\n\\x34\\x50\\x99\\x65\\x38\\x74\\x0b\\x23\\x2d\\x48\\xb7\\xc4\\x41\\xf9\\x44\\x8f\\\n\\x68\\x70\\xec\\x5d\\x7b\\x31\\xfe\\xda\\x64\\xd8\\x25\\x54\\x07\\xbf\\x5a\\x1d\\\n\\x78\\x56\\x19\\x60\\x23\\x25\\xc2\\x95\\xf9\\xf9\\xfa\\xfb\\x44\\xac\\xe2\\xa5\\\n\\x81\\x07\\x45\\x50\\x0f\\x0f\\xe6\\x15\\x3d\\x9d\\xb5\\x8e\\x69\\x23\\xe5\\x08\\\n\\x41\\x3b\\xde\\xad\\x0e\\xab\\x58\\x98\\x7b\\x2a\\x1c\\xee\\x31\\x8c\\x25\\x4e\\\n\\x3e\\xe9\\x48\\xd4\\xde\\x9a\\xfa\\xe1\\xe1\\x12\\xee\\x04\\x3e\\x82\\xad\\x2a\\\n\\x9a\\xdb\\xe1\\x0a\\xa9\\xef\\xad\\x38\\x57\\x5e\\x71\\x8a\\x4e\\x6c\\xdb\\x4a\\\n\\xa4\\xaa\\x85\\x9d\\xe2\\x40\\x22\\xa6\\xba\\x52\\xd4\\xfb\\xf3\\x14\\x89\\x1c\\\n\\x69\\xcd\\x89\\xdb\\xd9\\x7f\\x96\\xf6\\x14\\xbd\\xcd\\xf5\\xbf\\xcb\\x91\\x84\\\n\\x62\\xec\\xbd\\x44\\x66\\x15\\xf2\\x35\\xb7\\x1f\\x77\\x5e\\xb5\\x83\\x42\\x33\\\n\\x26\\xf5\\xd4\\x71\\xaf\\xd6\\xfa\\x47\\xaf\\xda\\x16\\x2d\\x6f\\xd6\\xdc\\x61\\\n\\xe0\\xa9\\xa7\\xdb\\x65\\x3e\\xf9\\xa2\\x6b\\x4d\\x13\\xd3\\xa9\\xfd\\xe1\\xb9\\\n\\x34\\xe1\\xea\\x4a\\xfe\\x33\\xef\\x1e\\x6a\\xd6\\x25\\x71\\x35\\x84\\xa4\\x2b\\\n\\x4e\\xb0\\xd4\\xfb\\x0b\\x4e\\x55\\xa8\\x1a\\x8d\\x3f\\x6f\\xd6\\x27\\xd3\\x40\\\n\\x56\\xc7\\x52\\x29\\xcb\\x8f\\xd2\\x27\\x71\\x09\\xed\\xb3\\xad\\x9a\\xe5\\x4a\\\n\\xa9\\x4e\\x9e\\xad\\x1f\\x88\\xe9\\xdf\\xad\\xcf\\xaa\\x75\\xad\\x87\\x58\\x6b\\\n\\x3a\\x3d\\xd1\\xee\\xdc\\xf7\\x72\\xb7\\x13\\x5f\\x13\\x18\\x6c\\xc2\\x49\\xde\\\n\\xfa\\x18\\x9c\\x76\\xa8\\x21\\x0e\\xe5\\x4d\\x2c\\x07\\x3e\\x34\\xe3\\x78\\x9b\\\n\\x64\\x6c\\x1e\\xcc\\xf0\\x05\\x16\\x0d\\xa4\\x82\\xe2\\x94\\xe1\\xc8\\x8a\\xea\\\n\\x7d\\xe2\\x2d\\xca\\x1d\\x95\\x44\\x9c\\xcc\\xac\\xbb\\x44\\x17\\x1d\\x65\\xb5\\\n\\x3e\\x9e\\x09\\x55\\x48\\xce\\x79\\x00\\x45\\x08\\xe3\\x18\\x64\\xcc\\xbb\\x8b\\\n\\xc9\\xb4\\x0b\\x50\\xb2\\xa9\\x4a\\x0a\\x7c\\x3f\\xf2\\x1a\\x91\\xc3\\x4b\\xd2\\\n\\x31\\x19\\x76\\x26\\x65\\x94\\xcd\\x8a\\xce\\x8b\\xe5\\x5e\\xa3\\x5a\\x79\\xf8\\\n\\x40\\xec\\x2b\\xf3\\x53\\xdf\\x8b\\x3a\\xa6\\xe5\\xee\\x4b\\x69\\xde\\xce\\x7b\\\n\\x8d\\x28\\x29\\xcf\\x89\\x1a\\x81\\x43\\x2f\\xd9\\x1c\\x1a\\x49\\xaa\\xa1\\x94\\\n\\xb8\\xba\\x0d\\x4d\\x4d\\x40\\xd4\\x92\\x75\\x3e\\x5f\\x61\\x87\\x48\\x4a\\xff\\\n\\x00\\x69\\x90\\x09\\xe4\\x34\\x27\\xd5\\x20\\xb3\\xf8\\x6a\\x5e\\x4c\\xa0\\x78\\\n\\x7a\\xf2\\x84\\x4c\\x04\\xe6\\x49\\xa1\\xd4\\x52\\x13\\x3a\\x10\\xd0\\xa8\\xe1\\\n\\xc4\\xc7\\xf5\\x37\\x55\\xba\\x85\\x50\\x74\\x1f\\x7a\\x41\\x79\\x6a\\x35\\x35\\\n\\x27\\xa9\\xfd\\x62\\x5b\\xb4\\x93\\x18\\x70\\xde\\x49\\x52\\x78\\xa6\\x80\\xd7\\\n\\xcc\\x43\\x7d\\xa5\\x91\\x9b\\x55\\xa4\\x80\\x7f\\x8a\\xb7\\x81\\xf2\\x07\\x2f\\\n\\x3e\\x11\\x3f\\x86\\xbf\\x8b\\x3f\\xb4\\x97\\x64\\xa4\\x71\\xb7\\x2b\\xc3\\xf8\\\n\\x0c\\xd3\\x54\\x56\\xcc\\xe7\\x1f\\x15\\xed\\xf6\\x89\\xd9\\x27\\x70\\xe6\\xd3\\\n\\xb7\\x7e\\xab\\x76\\xe0\\xda\\xd9\\xaf\\x4f\\x0a\\xc4\\x97\\x66\\x9f\\x9b\\x69\\\n\\xa7\\x04\\xfe\\x55\\x38\\x9a\\x81\\xbb\\xa7\\xaf\\xd2\\x27\\xf0\\x45\\xe1\\xcd\\\n\\x2d\\x4f\\xab\\x6f\\x94\\x03\\x9b\\xc4\\x7e\\x5a\\x46\\xd0\\x2c\\x0b\\x52\\x91\\\n\\xec\\xad\\xbf\\x9b\\x3d\\xcf\\x03\\x53\\x6e\\xea\\x18\\x9c\\x94\\x9c\\x45\\x42\\\n\\x0a\\x9c\\x6c\\x03\\x40\\x3e\\x1f\\xe6\\x31\\xb6\\x83\\xb8\\x9c\\xd8\\x98\\x5e\\\n\\xd1\\x49\\x71\\x40\\x20\\x92\\x16\\x80\\x29\\x40\\x93\\x7a\\xd8\\xe6\\xa4\\x60\\\n\\x58\\x4a\\x1b\\xc9\\x32\\x16\\xa6\\x96\\x95\\x55\\xba\\x54\\x11\\x4e\\x20\\xf3\\\n\\x89\\x1e\\xd3\\xe2\\x12\\xa8\\x08\\x7f\\xfd\\xe3\\x0c\\x26\\xe6\\xc9\\x50\\x40\\\n\\x37\\x39\\x69\\xbd\\x44\\xdc\\xd1\\x55\\x34\\x39\\x52\\x74\\x8c\\x17\\xb5\\x09\\\n\\x29\\xda\\x7b\\x3d\\x10\\xb4\\x00\\x05\\x0d\\xaf\\xe7\\x0c\\x63\\x32\\x6e\\x65\\\n\\xce\\xf0\\x67\\x31\\xe3\\x4e\\x36\\xe3\\x0f\\x2d\\xa3\\x76\\x9c\\x0f\\x1e\\x94\\\n\\xfb\\x42\\x92\\xa5\\xd5\\x6a\\x4d\\x29\\xc3\\x4d\\x3f\\x58\\x33\\xef\\x4b\\x38\\\n\\x46\\x73\\x93\\x4a\\x5a\\x97\\xe7\\x0c\\xe2\\xc8\\xfc\\xc0\\x1e\\xa3\\x5e\\x7d\\\n\\xd1\\xda\\x14\\x21\\xe9\\x84\\x38\\xdf\\x3a\\xdb\\xcf\\xef\\x12\\xea\\x53\\x92\\\n\\xe1\\xb2\\xad\\xc1\\x62\\x9b\\x0e\\x1a\\xc4\\xdc\\xbb\\x69\\x55\\x92\\x35\\x04\\\n\\xf9\\xc2\\x59\\x68\\xa3\\x7a\\x9a\\x46\\x31\\x8a\\x7b\\x1c\\xc0\\x96\\x92\\x42\\\n\\x56\\x69\\x55\\xa8\\x9d\\xd4\\x54\\x71\\xe2\\x49\\xd6\\x83\\x86\\xb4\\x84\\xca\\\n\\xe2\\xd8\\x8a\\xc3\\x9b\\x27\\xdd\\x22\\xc0\\xec\\xc8\\x42\\x41\\xbd\\x06\\xe8\\\n\\x4e\\x5f\\x13\\xd6\\x24\\xfb\\x1b\\x8a\\xbe\\x90\\xb7\\x1c\\x69\\x81\\xad\\x17\\\n\\xbc\\xae\\xee\\x03\\xcb\\xcf\\x8c\\x4a\\x76\\x25\\xf6\\x96\\x1c\\x33\\xc1\\x2b\\\n\\x49\\x0a\\x0a\\x40\\x00\\x83\\xcf\\x7b\\x37\\xda\\x9d\\x63\\x0e\\x6d\\xe6\\x06\\\n\\x47\\x5f\\x53\\xdb\\x20\\x13\\x9c\\xd3\\x7b\\xa9\\xa0\\x1f\\x6e\\x90\\xb9\\xb0\\\n\\x77\\x76\\x7b\\x4a\\x69\\xd2\\xbd\\xdc\\xe2\\x51\\xb7\\xa6\\x37\\x40\\xc8\\x0d\\\n\\xab\\xf9\\x41\\xb5\\x61\\x69\\xf6\\x6f\\xc1\\x4f\\xe3\\xab\\x9f\\xf1\\x0e\\xcb\\\n\\x3a\\x96\\xb6\\xae\\x27\\x25\\x7e\\x13\\xc0\\x56\\x1c\\x4e\\xd0\\x94\\x65\\xae\\\n\\x6b\\x0e\\x87\\x9f\\x94\\x62\\x58\\x03\\x92\\xd9\\xde\\x71\\x19\\x82\\x92\\xaa\\\n\\x03\\xdc\\x7f\\x5f\\xda\\x3f\\xa7\\xad\\x6a\\xcd\\x90\\xf8\\x56\\x17\\x26\\xf0\\\n\\xd6\\xf6\\x16\\xa7\\xed\\x06\\x41\\x35\\x35\\x6e\\xfd\\xe7\\xf6\\x84\\x61\\x83\\\n\\x54\\x0c\\xa7\\xbc\\x98\\xf6\\xd7\\x24\\x57\\xb3\\x98\\x39\\xea\\x6c\\x69\\x74\\\n\\xf0\\xdd\\x50\\xba\\x7e\\x75\\xe9\\x78\\x6f\\xfd\\xc2\\x36\\xcd\\xaf\\x2a\\x6b\\\n\\xa7\\x1a\\xeb\\x7b\\x0b\\xf3\\xa6\\xb0\\x52\\xa4\\xa4\\xac\\xef\\x25\\x23\\xf8\\\n\\xd0\\x73\\x8c\\x2d\\x09\\x67\\x3c\\xec\\xd0\\x2b\\x52\\x0f\\xe1\\xd4\\x0a\\x04\\\n\\xf9\\x8b\\xf2\\x37\\x89\\xe9\\xf6\\x27\\x24\\xde\\x9c\\x2e\\x7b\\x1b\\x72\\xc8\\\n\\x5b\\x81\\x56\\xab\\xe5\\x09\\x2b\\x52\\x37\\xab\\xc0\\x1a\\xd2\\x9c\\xeb\\x18\\\n\\x6e\\x37\\x3f\\x8b\\x4b\\x2e\\x71\\x2a\\x72\\x4d\\xac\\xd4\\x69\\xb2\\x91\\x4a\\\n\\x0a\\x8d\\xa0\\xcc\\x0d\\x73\\x6b\\x5a\\xf2\\x89\\x55\\xe2\\x4b\\xaa\\x8e\\x22\\\n\\xa2\\x46\\x83\\xf0\\xeb\\xf2\\x4c\\x31\\x33\\x88\\x16\\xf2\\x2e\\x6d\\x4a\\xf0\\\n\\x47\\xff\\x00\\xac\\x3d\\x2a\\xf2\\xb3\\x2d\\x5b\\xe5\\x57\\x26\\x82\\xa7\\xed\\\n\\xd3\\xe9\\x48\\x72\\x5d\\xda\\xe9\\x92\\x95\\xd0\\x0b\\xd6\\xd0\\x5b\\x15\\x01\\\n\\x60\\xab\\xe5\\xe7\\x4a\\x08\\x7d\\xd7\\xa5\\x8d\\x5a\\xaa\\x51\\xc6\\x94\\xfb\\\n\\x88\\x9f\\xc4\\x66\\x43\\x61\\x6a\\x79\\x59\\x57\\x40\\x10\\x29\\x54\\xe5\\xe3\\\n\\x61\\x63\\x6d\\x63\\x0a\\x96\\x7a\\x61\\xf4\\xcf\\x3c\\xb3\\xb1\\x68\\xed\\xb6\\\n\\x7e\\xf1\\x5e\\x4a\\x90\\x95\\x12\\x75\\x35\\xee\\x14\\xee\\x30\\x25\\x9e\\xc4\\\n\\x27\\xa6\\x9d\\x39\\xda\\x71\\x44\\x34\\x08\\x3b\\xd9\\x50\\x6a\\x68\\x2b\\x4a\\\n\\x54\\x1b\\xe9\\x55\\x1d\\x22\\x42\\x59\\xa9\\x06\\xff\\x00\\x09\\x25\\x2a\\xb9\\\n\\x2a\\x3e\\xfa\\x8f\\xc4\\x49\\x35\\x27\\x8f\\x18\\x44\\xf4\\xdb\\xa9\\x04\\x34\\\n\\x95\\x5c\\x81\\x4d\\xd5\\x50\\x73\\x03\\xf4\\x86\\x94\\xe8\\x75\\xb5\\xba\\x02\\\n\\x54\\x6c\\x69\\xa7\\x2b\\x72\\x84\\x38\\x91\\xa9\\xbf\\xce\\x9e\\x3a\\x42\\x9b\\\n\\xda\\x5e\\x80\\x52\\xf5\\x87\\xcb\\x8a\\x6c\\xa6\\xb7\\x1a\\x58\\x69\\xe5\\xfb\\\n\\xc6\\xcf\\x2a\\xe8\\xa1\\xaf\\x7c\\x38\\x7e\\x1e\\x1c\\xa1\\xbb\\x11\\x4b\\x40\\\n\\x51\\xa0\\xf5\\xf6\\x84\\x32\\x5f\\x50\\x43\\x99\\x6f\\xc6\\x91\\x86\\x61\\x52\\\n\\x12\\x59\\x9f\\x73\\x66\\xb5\\x29\\x34\\x19\\x75\\x1d\\xf5\\xef\\x89\\x2c\\xb2\\\n\\xcc\\x3e\\xb4\\x16\\xf3\\x29\\x43\\x28\\xe2\\x07\\x11\\x0e\\x4d\\x4c\\x3c\\xf1\\\n\\x4e\\xe6\\xbd\\x23\\x1f\\x76\\x42\\x65\\xb5\\x25\\xd7\\x82\\xde\\x42\\x88\\x05\\\n\\x07\\xdd\\x50\\x34\\x23\\xc0\\x88\\xc3\\x71\\xb6\\xe5\\x25\\x9e\\x0f\\x29\\xe7\\\n\\x1c\\x42\\x92\\x18\\x2d\\x28\\x04\\xa5\\x19\\x6e\\x0d\\x4d\\x6b\\x5b\\xda\\x0f\\\n\\x68\\x1e\\x9d\\xcc\\x97\\x4a\\xd4\\xcf\\xc4\\x93\\x73\\x4f\\xda\\x15\\x30\\xd2\\\n\\xbf\\xb6\\x95\\xa7\\xbe\\x36\\xab\\x1e\\xe9\\xe1\\x1e\\xd1\\x32\\x2b\\x42\\x08\\\n\\x57\\xbf\\x51\\x53\\xd2\\x91\\x8c\\x76\\x66\\x5a\\x6b\\x16\\x13\\x0a\\x5a\\x90\\\n\\xb9\\xa7\\x12\\x93\\x90\\xd8\\x28\\x73\\x49\\x05\\x2a\\x04\\x0a\\x5c\\x58\\xe9\\\n\\x43\\x58\\x92\\xec\\xc2\\x5a\\x69\\x00\\x3a\\xa5\\x04\\x8a\\x6f\\x04\\xd6\\x9e\\\n\\x09\\x4f\\xdf\\xa4\\x61\\xbd\\x9d\\x97\\x3b\\xeb\\x20\\xa1\\x42\\x99\\x14\\x37\\\n\\xb9\\x1a\\xdb\\x8d\\xfc\\x2d\\x12\\x52\\x12\\xac\\x38\\x11\\xb2\\x05\\xba\\x00\\\n\\x9a\\x73\\xf1\\xe9\\x13\\x7d\\x9e\\x94\\x99\\x46\\x64\\x15\\x21\\x54\\xdd\\xbf\\\n\\x1d\\x46\\x90\\xb4\\xce\\xe1\\x2b\\xca\\x5c\\xda\\x9e\\x63\\x35\\x3e\\x7a\\x44\\\n\\x8c\\xfb\\x93\\x2d\\x85\\x3a\\x2e\\x49\\x04\\x74\\x11\\x89\\x20\\x29\\xa2\\x51\\\n\\x63\\x98\\x57\\xba\\xf5\\x85\\x87\\x03\\x6a\\x70\\x28\\x5a\\xbb\\xbc\\x7d\\x7a\\\n\\xeb\\x0c\\x6d\\xff\\x00\\xfe\\xc2\\x14\\xbe\\x54\\xfd\\x39\\x42\\x94\\x5a\\x20\\\n\\x00\\x50\\x08\\xad\\xf4\\xaf\\xd2\\x26\\x03\\xea\\x5e\\x62\\x0e\\xcf\\x8a\\xfe\\\n\\x11\\xe5\\xe5\\x13\\xce\\xcd\\x7f\\x6e\\x59\\x55\\x35\\xbf\\x0a\\x0e\\xff\\x00\\\n\\x76\\xbe\\x67\\xa1\\x89\\x3c\\x3d\\x1e\\xd6\\xca\\xa6\\x46\\x65\\xba\\xa3\\x5e\\\n\\x3a\\x9b\\x9a\\x90\\xa2\\x48\\xd3\\xe1\\x14\\xe0\\x21\\x73\\xf2\\x98\\x74\\xba\\\n\\x0a\\x95\\x2e\\x02\\xa9\\x95\\x09\\x4f\\xe2\\x12\\x3e\\xfd\\xd1\\x27\\x3f\\x29\\\n\\x88\\x21\\x6a\\x4b\\xc1\\xb2\\x8d\\x50\\x4e\\xf0\\x3c\\xa9\\xcf\\xa1\\x85\\xa5\\\n\\x1a\\xa5\\xc5\\x28\\x53\\x81\\xfe\\x2f\\x12\\x99\\x88\\x57\\x21\\x4d\\x75\\x89\\\n\\x65\\xa1\\xb5\\x3b\\x54\\xd4\\x90\\x9a\\x56\\x25\\x26\\x1c\\x56\\xe8\\xa2\\x50\\\n\\x6c\\xa2\\x78\\x03\\xaf\\xca\\x19\\x98\\xc3\\xe5\\x93\\x9c\\x82\\xe2\\xc7\\x1b\\\n\\x53\\xe7\\x13\\x93\\xc8\\xc4\\x41\\x43\\x42\\x8a\\xd2\\x9f\\x4d\\x23\\x0b\\xc3\\\n\\xca\\x5e\\x5a\\xa6\\x65\\xd7\\x90\\x36\\x54\\x95\\x9a\\x50\\xaa\\xa2\\xd7\\xe9\\\n\\x58\\xc6\\x76\\x73\\x35\\x68\\x34\\x40\\x1c\\xe9\\x4e\\x3c\\xa1\\x78\\x63\\x69\\\n\\x16\\x6e\\x90\\xf4\\x9f\\x1c\\xbd\\x29\\x4f\\xbc\\x1c\\x35\\x4a\\xde\\xaa\\x45\\\n\\x7b\\xe1\\xc9\\x67\\x5a\\xd0\\x8b\\x74\\x31\\x30\\xc2\\x1c\\xbb\\xcd\\x95\\x1a\\\n\\xd8\\x8e\\x10\\xb7\\x9d\\x97\\x6c\\xa5\\x0a\\xa2\\x6b\\x5a\\x5e\\x30\\x89\\xb4\\\n\\xcd\\xd2\\x55\\x55\\x05\\xca\\x8c\\xca\\x3b\\xa0\\x80\\x4f\\x79\\xd2\\xdd\\x7a\\\n\\x40\\x96\\x75\\x94\\xb8\\xd3\\xc0\\x2d\\xb5\\x68\\xa4\\xd8\\x7c\\xfc\\xe1\\x18\\\n\\x7b\\xf8\\xe6\\x29\\xfd\\x12\\x64\\xa8\\xe1\\x89\\x78\\x94\\x36\\xde\\x64\\xa8\\\n\\xae\\xa4\\xfe\\x21\\xa8\\xcc\\x85\\x26\\xd9\\x6f\\x6f\\x7b\\x58\\xfe\\x86\\xd3\\\n\\x48\\xfe\\x9c\\x59\\x4c\\xb9\\x6c\\x04\\xb6\\xe2\\x53\\x95\\xa2\\x9e\\x80\\x72\\\n\\xe5\\xc3\\x84\\x4d\\x76\\x6f\\x11\\x90\\x7d\\x0a\\x44\\xeb\\x2b\\x41\\x50\\x39\\\n\\x02\\x5c\\x82\\xc6\\x28\\x85\\x57\\x6a\\xd1\\x1c\\x80\\x55\\x7e\\x76\\x84\\x4e\\\n\\xcf\\x21\\x29\\x42\\x9b\\x2a\\xa5\\xbd\\xd3\\x4f\\xd2\\x17\\x3f\\x61\\xb7\\x69\\\n\\x49\\xbd\\x8e\\x95\\x30\\x71\\x19\\x0d\\x08\\xa1\\x3a\\x5d\\x3a\\xd3\\x5f\\x9c\\\n\\x39\\x31\\x20\\xf0\\xd9\\x87\\x9b\\x0a\\x22\\x80\\x1f\\xd2\\x1b\\xc1\\x1e\\x99\\\n\\x9a\\x52\\x36\\x89\\x53\\x14\\x04\\x1a\\x2c\\x8b\\xfb\\xc6\\x94\\xb7\\x2d\\x75\\\n\\xe2\\x2b\\x0f\\x4a\\xcc\\xca\\x0d\\x98\\x79\\x1b\\x30\\x90\\x9c\\xa9\\x19\\x48\\\n\\x48\\x1b\\xa9\\xd2\\x94\\xe6\\x4d\\x75\\x89\\x47\\xca\\x0a\\x54\\x3f\\xb9\\x98\\\n\\xdc\\x0e\\x66\\xf5\\xa5\\x2b\\x09\\x6d\\x4e\\x58\\xf4\\xf9\\xc3\\xcc\\x3a\\xcb\\\n\\xc1\\x68\\xb3\\x61\\x20\\x90\\x35\\xcd\\x53\\x5f\\xb7\\xce\\xd0\\x89\\xd6\\xdf\\\n\\xca\\x95\\x2b\\x23\\xa8\\x20\\x64\\x26\\x99\\xf9\\x14\\xf3\\xeb\\xf4\\x86\\xee\\\n\\x04\\x0b\\x03\\x7f\\xa4\\x2c\\x7e\\x28\\xea\\x93\\xae\\x95\\xb4\\x3c\\xc0\\x5d\\\n\\x72\\x00\\x0c\\x3d\\x2c\\xe2\\x4f\\x3d\\x4d\\xab\\x09\\x6d\\xc1\\x4d\\xc5\\x5b\\\n\\x5b\\x40\\x26\\x9e\\xea\\xa3\\x0f\\x61\\xb9\\x94\\x66\\x0e\\x23\\x30\\xe0\\x14\\\n\\x3f\\x58\\xda\\x09\\x55\\x16\\xe6\\x73\\x01\\xa8\\x51\\xa8\\x4e\\x5e\\xf3\\x6e\\\n\\x11\\x88\\x76\\xaa\\x4e\\x49\\xb5\\xa5\\xa5\\xa5\\xc2\\x2d\\x44\\xa8\\x2b\\x5b\\\n\\x70\\x3c\\xe1\\x7d\\xa0\\xc5\\x26\\x9f\\x2a\\x94\\x73\\x2d\\x4f\\xc5\\xba\\x3e\\\n\\x70\\x89\\x37\\x56\\xb2\\xa7\\x9c\\x52\\x8a\\x94\\xa5\\x2c\\x02\\x69\\x99\\x46\\\n\\xa7\\xa6\\xb0\\x89\\x59\\x66\\xd3\\x95\\x7c\\x6f\\x08\\xf6\\x36\\x85\\x36\\x67\\\n\\xa9\\xa4\\x36\\xf4\\x99\\xb6\\x43\\xe4\\x7f\\x48\\x49\\x92\\xca\\x2a\\x8b\\xd3\\\n\\x95\\x21\\xc6\\xe5\\xdc\\x41\\xd9\\xa7\\x2f\\x32\\x45\\x07\\xce\\x17\\x83\\xa5\\\n\\xd5\\x87\\xea\\x93\\xb1\\x50\\x72\\xc4\\x7c\\x06\\xb1\\x28\\xa4\\x95\\x04\\xd2\\\n\\x9d\\x23\\x2e\\xc9\\x55\\x4d\\x69\\xc8\\x77\\x44\\xb3\\xa9\\x5a\\x9b\\x16\\xad\\\n\\x47\\xaf\\x5f\\xc0\\xfe\\xd8\\xee\\xfb\\x44\\xf4\\xb2\\x1e\\x68\\xb8\\x53\\xbc\\\n\\x38\\x11\\x78\\x92\\x48\\x09\\xb8\\xa1\\xcc\\xa1\\x43\\x63\\xaf\\x87\\x84\\x3f\\\n\\xbc\\x16\\x0e\\x99\\x49\\xf1\\x8c\\xc3\\x23\\x88\\xea\\x69\\x1b\\x59\\xa4\\x20\\\n\\x93\\x44\\x94\\xf0\\x26\\x95\\xf3\\xe9\\xd2\\x17\\x8c\\xa9\\xc6\\x0b\\x0a\\x69\\\n\\x45\\xf2\\xa2\\x94\\x2c\\x24\\x94\\xf4\\x15\\x1e\\x35\\x86\\x13\\x88\\x94\\x96\\\n\\x9e\\x20\\x4b\\xa9\\x24\\xac\\xa9\\x43\\xde\\x17\\x14\\xd2\\xd5\\xfe\\x61\\xd9\\\n\\x83\\x2f\\xb5\\x64\\x65\\x53\\x85\\xc5\\x1c\\xc6\\xe0\\x0a\\xee\\x9e\\x46\\xd6\\\n\\xe8\\x07\\x8c\\x2d\\xe9\\xa7\\x16\\x14\\x57\\x99\\x40\\x0a\\x72\\x48\\xe8\\x07\\\n\\xa3\\x05\\xf5\\x9a\\x17\\x54\\xb7\\x16\\x06\\x51\\xc2\\x83\\x92\\x40\\xeb\\xe7\\\n\\xc7\\x84\\x33\\x32\\xf3\\x4e\\x15\\x33\\xc4\\x00\\x69\\x98\\x03\\xe1\\xc7\\xba\\\n\\x30\\x4c\\xcf\\x4a\\x85\\x3a\\x68\\xba\\x5c\\x2a\\xdf\\x5a\\x18\\x92\\x68\\x64\\\n\\x2a\\xf5\\xe8\\x42\\x58\\xcc\\xa3\\x4a\\x6b\\x1f\\xd9\\x45\\x39\\xdb\\xbe\\x19\\\n\\x4b\\x2e\\xa4\\x8b\\x93\\x4b\\x8e\\x30\\x96\\x36\\x27\\x68\\xc8\\x51\\x3d\\xd5\\\n\\xd2\\x1a\\xc4\\x66\\xf2\\xe4\\x78\\x6e\\x68\\x29\\xa8\\x3d\\x78\\xc4\\xd2\\xd2\\\n\\xab\\xd3\\x5a\\x7c\\xe3\\xd9\\xda\\x52\\x2f\\x48\\xc4\\x5a\\x43\\x45\\x42\\x9c\\\n\\x2b\\xe7\\x0a\\x98\\x02\\xa0\\x79\\xeb\\x0b\\x75\\x0a\\xae\\x95\\x89\\xb2\\x84\\\n\\x83\\xa5\\x7b\\xc5\\x62\\x61\\xa2\\xf2\\xb9\\x08\\x43\\x0e\\xb0\\x42\\xda\\x34\\\n\\x58\\xb8\\xbd\\x3d\\x5a\\x26\\xb1\\xb9\\xdd\\x8f\\xb3\\xde\\xa2\\xd5\\xfd\\xe9\\\n\\x18\\x44\\xd4\\xdc\\xa4\\xda\\x27\\x3d\\xe5\\x82\\x09\\xcb\\x73\\xe5\\x7f\\x5d\\\n\\xd1\\xfd\\x4d\\xc9\\xe6\\x99\\x7d\\x56\\x5a\\x47\\x8d\\xe8\\x7e\\xdc\\xa0\\x10\\\n\\xfe\\xf3\\x9c\\x39\\xfc\\xa9\\xf6\\xee\\x81\\x2e\\xda\\xbe\\x1f\\x94\\x27\\x0d\\\n\\x68\\xa1\\x2a\\x29\\x02\\xbc\\xe8\\x22\\x63\\x0e\\x93\\xca\\x36\\xa9\\x0a\\x1f\\\n\\x0e\\x87\\x87\\x4d\\x22\\x6b\\xb3\\xd8\\x7b\\xab\\x04\\x37\\xc7\\x91\\x10\\xbe\\\n\\xc6\\x32\\x89\\xb1\\x34\\x95\\xa8\\x04\\x9a\\xe5\\xa9\\xa1\\xbd\\x6f\\x5f\\xd7\\\n\\xba\\x0b\\x2c\\xcb\\xb4\\x32\\x01\\x6e\\x74\\xe1\\x0b\\x68\\x3b\\x99\\xc2\\xa0\\\n\\x45\\x29\\x4a\\x8d\\x79\\x78\\x78\\x71\\xf1\\x61\\x84\\xa5\\x77\\x22\\x9a\\xf2\\\n\\xeb\\xd3\\xc6\\x19\\x99\\x15\\x1d\\xe2\\x1d\\x70\\x2d\\x14\\xca\\x6b\\xdd\\x6b\\\n\\xfa\\xf9\\xc2\\xe4\\x56\\xb7\\x33\\x24\\xe5\\x23\\x78\\x11\\x6a\\x52\\xf6\\x31\\\n\\x86\\xe2\\x2e\\xb0\\xad\\x94\\xc6\\x65\\x80\\x7d\\xf5\\x27\\x78\\x27\\xca\\xff\\\n\\x00\\x5e\\x46\\xf1\\xba\\x40\\xa5\\xeb\\x7a\\xf4\\xfd\\x21\\xe1\\x74\\x11\\xc1\\\n\\x57\\xee\\x36\\x81\\x62\\xab\\x7c\\x5f\\x48\\x3d\\x45\\x61\\x45\\x37\\xb7\\x4f\\\n\\x42\\x36\\x75\\xbe\\xcc\\xdf\\xd7\\x38\\xec\\x96\\x3d\\x31\\xb6\\x0e\\x37\\x99\\\n\\xe4\\x03\\xbc\\xa5\\x03\\x96\\xc6\\xfb\\xf9\\x6e\\x78\\x91\\x7a\\x69\\x68\\xc6\\\n\\x3b\\x4b\\xfd\\x41\\x26\\x5d\\xa4\\x66\\x7b\\x62\\x06\\x51\\xe3\\x12\\xf2\\x53\\\n\\x7b\\x47\\x8b\\xcc\\x28\\x29\\x4b\\xa8\\xb7\\x5e\\x1e\\x11\\x27\\x87\\x3e\\xa4\\\n\\x8f\\xc1\\x57\\x94\\x09\\x19\\x94\\x5c\\xd6\\x94\\x8d\\x85\\x48\\x0b\\x17\\xa5\\\n\\x95\\x1f\\xd3\\xc0\\x49\\x71\\x53\\x09\\xc8\\x9d\\x51\\x5d\\x7a\\x42\\x94\\x89\\\n\\x73\\x9d\\x3e\\xbd\\x5a\\x30\\xdc\\x52\\x56\\x62\\x65\\xd4\\x3e\\x9f\\xed\\xac\\\n\\xa4\\x57\\x43\\x4e\\xf8\\x7a\\x6a\\x5d\\xda\\x36\\x80\\x03\\x62\\xb5\\xe5\\xd2\\\n\\x31\\xdc\\x65\\xbc\\x2e\\xa2\\x5c\\xd7\\x35\\x45\\x05\\xf5\\xb4\\x60\\xf8\\xd3\\\n\\xcf\\xbc\\x95\\xab\\xdd\\x34\\xf0\\xbe\\x86\\x25\\xa6\\xd0\\xed\\x2a\\x6e\\x44\\\n\\x29\\x45\\x95\\x87\\x11\\xad\\x77\\xbb\\xa3\\x0a\\x9d\\x33\\x6d\\xe4\\xad\\xc0\\\n\\xb7\\x84\\x3c\\xca\\x92\\x82\\xb7\\x5c\\x03\\xd7\\x58\\x9d\\xc5\\xf0\\xf9\\x55\\\n\\x29\\x2a\\x29\\x53\\x89\\x00\\x93\\x6f\\x56\\xa4\\x4e\\xf6\\xc5\\x84\\x05\\x25\\\n\\x29\\xb5\\x6d\\x68\\xff\\x00\\xdd\\x8d\\xed\\x4a\\xb6\\x6a\\xd6\\xba\\x5b\\x5f\\\n\\x5f\\xc4\\x7f\\x52\\x13\\x29\\xda\\xd0\\x2e\\xb6\\xe6\\x34\\xf5\\xe8\\xc3\\x73\\\n\\x74\\xae\\xea\\x51\\xbd\\xc3\\xef\\x78\\x9a\\xc4\\x9f\\x79\\x0a\\x6c\\x5d\\x16\\\n\\x06\\xbd\\x39\\x79\\x42\\x80\\x55\\xc9\\x05\\x47\\xc8\\x1f\\x2f\\x97\\xf3\\x00\\\n\\x2f\\x91\\xa1\\x00\\x57\\x74\\x03\\x4e\\x9c\\x07\\x2e\\x51\\x9d\\x96\\x86\\x67\\\n\\xaf\\x51\\xbb\\xbd\\x4a\\x50\\xf4\\xfa\\x98\\x95\\xc4\\xe5\\xd1\\x34\\xce\\x46\\\n\\x89\\x56\\x7a\\x03\\xad\\x0e\\x97\\xf5\\xfa\\x46\\x16\\xfa\\x56\\x90\\xe2\\xdb\\\n\\x3c\\xee\\x2b\\xeb\\xf9\\x86\\x26\\x52\\x59\\x5e\\x5d\\x2f\\x18\\x7a\\xb6\\xa9\\\n\\xc8\\x3d\\x72\\x8c\\x22\\x41\\x9c\\x46\\x63\\xd9\\xd5\\x4f\\xc3\\x20\\x9e\\x80\\\n\\x5c\\xc6\\x25\\x81\\x39\\x85\\x3c\\xa7\\x99\\x15\\x69\\xcf\\x88\\x69\\x78\\x69\\\n\\xed\\x9a\\xb2\\x1e\\xff\\x00\\x38\\x52\\x10\\x53\\x9d\\x3a\\x98\\x79\\x17\\xeb\\\n\\xaf\\xaf\\xd2\\x12\\xb3\\xb4\\xdf\\x8c\\x59\\x90\\xe2\\x1c\\x74\\x69\\xb3\\x03\\\n\\xc8\\x18\\x43\\xe9\\x49\\x75\\x0a\\xfc\\xff\\x00\\x78\\xfc\\x35\\x5e\\x26\\x9a\\\n\\xda\\xa8\\x11\\xc3\\xed\\x0a\\x65\\x56\\x03\\x94\\x2a\\x59\\xc0\\x33\\x94\\x93\\\n\\xd2\\x91\\xec\\xe8\\x57\\xbe\\xc9\\xf2\\x82\\x86\\xe5\\x54\\xd9\\x65\\xa3\\x7a\\\n\\x15\\x50\\x44\\x84\\xcc\\xa3\\x88\\x41\\x55\\x12\\xae\\x20\\xfa\\xfa\\xc6\\x79\\\n\\x35\\x29\\x29\\x0b\\x00\\xa8\\x8a\\x1a\\x88\\x6d\\x0d\\x27\\xdd\\x75\\x3e\\x70\\\n\\xf2\\x9c\\x56\\xe0\\x70\\x65\\xe1\\x7f\\x5e\\xb8\\x40\\x96\\x4a\\x53\\x9d\\x6b\\\n\\x07\\x94\\x4c\\x4c\\x26\\xb4\\x49\\xd2\\xf0\\xe3\\xea\\x5c\\x4e\\x67\\x2d\\xb8\\\n\\x3a\\x46\\x1e\\xc2\\xcb\\x0a\\xcd\\xa6\\x71\\xf4\\x22\\x9f\\x58\\x7a\\x5f\\x76\\\n\\x1a\\x5f\\xe2\\x08\\x67\\xf1\\x10\\x07\\x84\\x3e\\x32\\x2a\\x90\\xb5\\xc6\\x18\\\n\\xfb\\x6e\\x4a\\xa4\\x95\\x69\\x99\\x20\\x93\\xf9\\x4f\\xda\\xf6\\xd2\\x91\\x9d\\\n\\xba\\x54\\x12\\xaf\\x0a\\x57\\xd7\\x2f\\x9c\\x55\\x1c\\x6d\\x7d\\x78\\x7a\\xef\\\n\\xf3\\x87\\x56\\x2a\\x42\\x3b\\xbd\\x6b\\x09\\x20\\x52\\xd7\\xa5\\xcd\\x38\\xd6\\\n\\xa6\\x03\\x84\\xe8\\x2d\\xe1\\xfa\\xc6\\x1f\\x80\\xb1\\x25\\x2a\\xa4\\x14\\xa1\\\n\\x2b\\xa7\\x0a\\x5b\\xd7\\x48\\xc0\\xb0\\xc4\\x23\\x1b\\xdb\\x38\\x90\\xa1\\x94\\\n\\x01\\x5b\\x8d\\x4e\\xbd\\x6f\\xe5\\x18\\x96\\x1e\\xc2\\x9f\\x41\\x6d\\x96\\xe8\\\n\\x75\\xa2\\x44\\x30\\xd3\\x32\\xee\\x21\\x05\\xa4\\x50\\xd2\\xb6\\x1e\\xba\\x46\\\n\\x2d\\x22\\x84\\xa0\\xb8\\xda\\x75\\xde\\xb7\\x58\\xaa\\x3f\\x11\\xb5\\x0e\\x36\\\n\\x3c\\xbd\\x7d\\x63\\x12\\x97\\x9d\\x6f\\x13\\x69\\xe4\\x3e\\xbf\\x64\\x4a\\x89\\\n\\x71\\xb2\\xa5\\x50\\x8f\\xe7\\xef\\x08\\x98\\x4b\\x88\\xcb\\xd2\\x10\\xca\\x14\\\n\\xba\\xa4\\x50\\xd6\\x26\\xdf\\x12\\xec\\x52\\xb7\\x22\\xde\\x51\\x34\\xd1\\x9d\\\n\\x75\\x45\\x4a\\xbd\\x6c\\xa3\\xa2\\x4f\\x02\\x7b\\xa3\\xb0\\x5d\\x9c\\x63\\x19\\\n\\x44\\xc2\\x5f\\xfc\\x15\\xb1\\x52\\x85\\xe6\\x28\\x4b\\xb4\\xd2\\x80\\x70\\x3e\\\n\\xb5\\x89\\xf9\\x57\\xb0\\x57\\xb7\\x8d\\x11\\x9b\\x2d\\x0d\\xed\\x52\\x04\\x22\\\n\\x7d\\x66\\xa4\\x28\\x64\\x52\\x34\\xa0\\x8c\\x1b\\x16\\x62\\x57\\x32\\xd6\\xa1\\\n\\x6a\\x93\\xa7\\x8f\\xdf\\xba\\x3b\\x43\\xdb\\x81\\x30\\xad\\x84\\x93\\xb4\\x49\\\n\\x34\\xa5\\x2b\\x6e\\xfd\\x61\\xc9\\x87\\xdc\\x59\\x2a\\x5d\\x6a\\x01\\xbd\\xe1\\\n\\x4d\\xed\\x05\\xc0\\x3a\\x78\\x47\\xb3\\x8d\\x32\\x0e\\x30\\x67\\x7d\\x91\\x90\\\n\\x96\\xac\\x2b\\x7a\\x8a\\xf2\\xe7\\x0d\\x16\\x9c\\x93\\xdb\\x0a\\x97\\x2a\\x2a\\\n\\x7b\\xc5\\x7d\\xdd\\x21\\xb6\\xd2\\xb6\\xf3\\x56\\xaa\\x56\\x9d\\xc3\\xa7\\xab\\\n\\x43\\xee\\x25\\x85\\x12\\xbb\\xf2\\x48\\xe2\\x7b\\xb8\\x08\\x73\\x10\\xcc\\x69\\\n\\x94\\x8b\\xfb\\xb7\\xb7\\x77\\xca\\xb5\\x82\\xd3\\xb3\\x2a\\x48\\x40\\x5d\\xf9\\\n\\xef\\x53\\xd7\\xae\\x11\\x81\\xf6\\x7c\\xa5\\x6d\\x3e\\xf2\\x2b\\x94\\x82\\x78\\\n\\x7f\\x3d\\x7e\\x50\\xc2\\x4a\\x51\\x91\\x09\\x4e\\x5a\\x53\\xdd\\x15\\xf3\\xd7\\\n\\x48\\x6d\\x95\\x25\\x97\\x4d\\x08\\xf5\\xf3\\x8c\\x31\\xd5\\x36\\x33\\x0d\\x47\\\n\\x8c\\x76\\x51\\xd6\\xc4\\xd4\\xc3\\xa6\\xb9\\xd4\\x85\\x56\\xfa\\xd8\\xe8\\x39\\\n\\xc4\\xd4\\xe7\\xb7\\x4a\\x38\\xc2\\x90\\x14\\x94\\x27\\x76\\xd4\\x35\\x1d\\x75\\\n\\x89\\xa6\\xa8\\xa5\\x66\\x49\\x0a\\xaf\\xed\\xf4\\x86\\x1c\\x29\\x48\\x89\\x85\\\n\\xa4\\x0a\\xf1\\xbc\\x3a\\xe2\\x96\\x6f\\x0a\\x98\\x0a\\x65\\x4c\\xae\\xe9\\x3e\\\n\\x06\\xf1\\x35\\x84\\x34\\x1d\\x2a\\x42\\x56\\x12\\xa5\\x5f\\x78\\xf1\\x87\\x30\\\n\\x70\\x1a\\xab\\x15\\xcd\\xd5\\x44\\xf0\\xe4\\x61\\x01\\xd4\\x28\\xa5\\xc6\\xc9\\\n\\xbd\\x3e\\x70\\xdc\\xba\\xdd\\x50\\x29\\x46\\x54\\x0d\\x41\\xd4\\x9f\\xe2\\x14\\\n\\x86\\xda\\xb1\\x45\\xfa\\x8b\\x43\\xad\\xa1\\x69\\xa8\\x40\\x07\\xba\\x36\\x79\\\n\\x41\\xcc\\x94\\xf9\\x46\\x1f\\x24\\xa9\\xa9\\xaa\\x29\\x59\\x1b\\x07\\x78\\x0b\\\n\\x57\\xcb\\xed\\x18\\x8c\\x88\\x69\\xc5\\x21\\x97\\x49\\xca\\x34\\x0a\\xa9\\xaf\\\n\\x9c\\x4b\\xb3\\x88\\x95\\x0c\\xab\\x56\\x5b\\x7c\\xe1\\x67\\x13\\x6e\\xbe\\xf9\\\n\\x02\\xc0\\x84\\xff\\x00\\x30\\x71\\x0c\\x40\\x0c\\xb4\\x55\\x3a\\xa7\\xd5\\xe0\\\n\\xe2\\x2e\\xa0\\xd5\\x4d\\x9a\\xdc\\x9b\\x7a\\xf4\\x61\\x18\\x9b\\xce\\x90\\x10\\\n\\xdf\\x1a\\x7b\\xbe\\xbf\\x78\\x48\\x53\\xa8\\xfc\\x5b\\x56\\xa0\\x8a\\x0e\\x1d\\\n\\x47\\x3e\\x90\\xd2\\x90\\x8a\\xb2\\x91\\xb9\\x63\\x43\\x73\\x9a\\xe0\\x6b\\xcc\\\n\\x70\\xb6\\x9c\\x62\\x62\\x99\\x2c\\x3c\\x7d\\x75\\x84\\xb2\\x02\\xaa\\x2b\\xc3\\\n\\xd7\\xe9\\x12\\x4f\\x04\\x1c\\xaa\\xd7\\xed\\x13\\x68\\x2b\\x73\\x3f\\xc3\\x43\\\n\\x13\\x4a\\x28\\x24\\x0e\\xba\\xdf\\x80\\x8c\\x28\\xaa\\x85\\x35\\x34\\x52\\x8d\\\n\\x45\\x79\\x93\\x7f\\x94\\x30\\x48\\x49\\x03\\x40\\x78\\xde\\x1c\\xcc\\x52\\x47\\\n\\x0a\\x70\\x80\\x0f\\x58\\xcc\\x78\\x8d\\x2b\\x15\\x3c\\xab\\x1e\\xce\\x87\\x5d\\\n\\xae\\x65\\x64\\xad\\x4f\\x74\\x3a\\x96\\xd9\\x99\\x40\\x96\\x4a\\xbd\\xc0\\x4a\\\n\\x8a\\x69\\xbd\\x53\\xca\\x36\\xab\\xca\\x33\\xfb\\xd5\\x14\\xf3\\x8c\\xbb\\x55\\\n\\x21\\xcf\\x84\\x6b\\xeb\\xd0\\x87\\xdd\\x53\\xd9\\x98\\xa8\\x27\\x2d\\x8d\\x6d\\\n\\x4a\\x5b\\xc6\\x31\\x27\\x84\\xb3\\xaf\\x02\\x17\\x54\\xaa\\x84\\x81\\x63\\xdd\\\n\\x0f\\x99\\x99\\x95\\x25\\x20\\xa4\\x21\\xcf\\xcc\\x48\\x3c\\xfc\\x21\\xa6\\x8b\\\n\\x4b\\xca\\xbe\\x1c\\x78\\x42\\xa6\\x9b\\x96\\xcc\\x4d\\x7a\\x1e\\x7f\\x38\\x7e\\\n\\x65\\xc9\\x85\\xe5\\x27\\x38\\x55\\x72\\xe5\\xbe\\x5f\\xf9\\x72\\xac\\x49\\x76\\\n\\x7d\\x4e\\xa0\\xad\\xd7\\x19\\x0c\\x9b\\xbb\\xbf\\xf8\\x9b\\x3f\\x8b\\x2a\\x72\\\n\\xfb\\xd4\\xd0\\x54\\x57\\x9c\\x48\\xbd\\x23\\x22\\xca\\x10\\xc2\\xdc\\x6f\\x65\\\n\\x4c\\xaa\\x4a\\x6e\\xba\\x7e\\x7b\\x8e\\x5d\\x63\\xb4\\x18\\x8b\\xb8\\x9b\\xc1\\\n\\x4a\\xf7\\x6d\\x6e\\xe0\\x06\\x9d\\x75\\x87\\x57\\x38\\xd5\\xc7\\xf6\\x4d\\x12\\\n\\x8b\\xde\\xba\\xd0\\x8a\\x7c\\xe1\\xa9\\xb5\\xb9\\x56\\xea\\xad\\x0a\\x54\\x7a\\\n\\x1b\\x1a\\x1e\\xe8\\xfe\\x95\\x2f\\x9f\\x3b\\x55\\xaf\\x5b\\x7a\\xe1\\x1e\\xc6\\\n\\xe5\\x78\\x70\\x84\\xb0\\xa1\\xac\\x6c\\x0f\\x4f\\x28\\x9f\\x68\\x25\\xb2\\x9a\\\n\\x80\\xaa\\xd6\\xfa\\xf8\\x44\\x8b\\xf9\\x30\\xb5\\x66\\x0a\\x14\\x75\\x49\\x48\\\n\\xa5\\xce\\xea\\x69\\xe7\\x5d\\x61\\xec\\x41\\x48\\x42\\x52\\xc2\\x5d\\x59\\x03\\\n\\xde\\x42\\x4a\\x90\\x9a\\xd3\\x30\\xa8\\x06\\x94\\xa1\\xb8\\xa9\\xa9\\xa5\\x23\\\n\\x6f\\x33\\x30\\xa2\\x41\\xbd\\x0e\\xe0\\xa9\\x35\\x1f\\x0f\\x7f\\x5f\\x77\\x5b\\\n\\xc4\\x97\\x67\\x71\\x07\\x54\\x97\\x9d\\x6c\\x00\\xa0\\x16\\x91\\xa7\\xbd\\x4d\\\n\\x77\\x75\\xbf\\xeb\\x18\\x56\\x03\\x45\\x6f\\x84\\x03\\x6a\\x54\\xf0\\xe7\\x71\\\n\\x02\\x54\\xb3\\x95\\xa4\\xa4\\x6f\\x5a\\xbc\\x22\\x5a\\x57\\x2f\\xbd\\x4f\\x08\\\n\\x75\\xb0\\x18\\x58\\xa6\\xa7\\xc2\\x19\\xdd\\xa2\\x34\\x2a\\x27\\x8d\\xa3\\x05\\\n\\x9c\\x12\\x2f\\x38\\x5d\\x24\\xd9\\x5e\\xed\\xff\\x00\\x48\\x63\\x1c\\x28\\x49\\\n\\x5e\\x5d\\xc7\\x05\\x87\\x1b\\xf3\\x89\\xd7\\x43\\xc4\\x28\\x8a\\x17\\x20\\xb4\\\n\\xe3\\x60\\x69\\xce\\xd5\\x30\\xf2\\xea\\x29\\x0b\\x23\\xef\\x0a\\x19\\xd7\\x41\\\n\\xad\\xba\\x08\\x9d\\xfc\\x29\\x45\\x1d\\x54\\x08\\x55\\xaf\\x61\\xac\\x23\\x1a\\\n\\x77\\x3a\\xa9\\x9f\\x2a\\x0e\\x84\\x0e\\x1d\\x2f\\x02\\x6c\\x3c\\xb4\\x6e\\x27\\\n\\x87\\x21\\x4f\\x28\\x41\\x67\\x76\\x89\\x15\\xa7\\x99\\x85\\x49\\x25\\xd7\\x12\\\n\\x74\\x1c\\x6b\\xdd\\x0f\\xb2\\xdb\\x63\\x28\\xbd\\x39\\x69\\x0f\\x34\\xa7\\x2c\\\n\\x84\\x9e\\x57\\x89\\x76\\x1c\\x61\\x61\\x44\\x1e\\xb9\\x7b\\xf5\\x35\\xf5\\xe7\\\n\\x48\\x53\\x04\\xba\\xa7\\x15\\x9e\\xfa\\x5b\\xeb\\xd2\\x24\\xd9\\x40\\x68\\x12\\\n\\x05\\xbe\\xd0\\xa5\\xd0\\x90\\x10\\x92\\x9e\\x67\\x5a\\x75\\xeb\\x0a\\x09\\x72\\\n\\xb4\\x6d\\xba\\x8d\\x49\\x03\\x4e\\x91\\x30\\xd3\\x23\\xfb\\x8d\\x8b\\x9e\\x03\\\n\\x9d\\xb9\\x45\\x1a\\x68\\x6e\\x36\\x9a\\xe9\\x19\\xd4\\xaf\\x78\\x74\\xb7\\x28\\\n\\x52\\x40\\xba\\x6b\\x52\\x45\\x6d\\xc3\\x5a\\xeb\\xf7\\x85\\xa8\\x3a\\x90\\x84\\\n\\xeb\\xa6\\x63\\xa7\\x8e\\xb0\\x89\\x75\\x2f\\x79\\x39\\x7b\\xbd\\x73\\x82\\x9d\\\n\\x99\\xcc\\x75\\xe9\\xd2\\x36\\xb9\\xd0\\x46\\xb5\\x89\\xfa\\xa2\\xaa\\x20\\xd3\\\n\\xa7\\x70\\x8c\\x28\\x0b\\x53\\x9d\\x69\\xdf\\xfc\\xc3\\x28\\xd7\\x4d\\x60\\xa6\\\n\\x9d\\xdc\\x62\\x88\\xeb\\x05\\x03\\xa7\\x48\\xc9\\xdd\\x12\\xcb\\x0a\\xd2\\x0a\\\n\\x1b\\x4b\\x45\\x4a\\x03\\x37\\x3e\\x90\\x95\\x67\\x5f\\x48\\xc4\\x5f\\xf6\\x59\\\n\\x70\\x44\\x49\\x4e\\x2c\\xb6\\xa7\\xd4\\x6b\\x72\\x3e\\xdd\\xf1\\x89\\xc8\\xa1\\\n\\xec\\x3d\\xc9\\xaa\\x6f\\x12\\x0f\\x5d\\x23\\x63\\x9b\\x20\\x16\\x57\\x0e\\x10\\\n\\xe7\\xe3\\x1f\\x66\\x40\\xfc\\x4e\\x70\\x8e\\xcd\\x4f\\xac\\x66\\x78\\xd1\\xad\\\n\\x41\\xe9\\xe3\\x1e\\xc5\\x23\\x86\\x21\\xc0\\xba\\x15\\xaf\\x43\\xcb\\x2e\\xbd\\\n\\xd0\\xd4\\xdb\\x6a\\x52\\xd2\\x14\\xa1\\x98\\x14\\x20\\x03\\xc4\\xd6\\x95\\x89\\\n\\x39\\x45\\xb8\\x9a\\xa8\\x93\\xd2\\x11\\x84\\x25\\x7b\\xc6\\xdd\\x0f\\x08\\x98\\\n\\xc3\\xdb\\x71\\x0b\\x6b\\x77\\xf0\\xd3\\x9a\\xd4\\xb7\\x08\\x66\\x44\\x07\\x56\\\n\\x38\\xdf\\x5f\\xac\\x21\\x93\\x2f\\xef\\xe9\\xd6\\x12\\xe2\\x14\\x2b\\x4f\\x94\\\n\\x1c\\xaa\\x16\\x87\\x16\\x51\\x13\\x52\\x4e\\x62\\x13\\xed\\x64\\x27\\x26\\x61\\\n\\x54\\xc6\\x33\\x20\\xcc\\xbc\\x8c\\xa4\\xa6\\x8a\\x7d\\x68\\x51\\x23\\x5e\\x03\\\n\\x28\\xa7\\x33\\xaf\\x4a\\xf4\\x89\\x3c\\x16\\x4e\\x46\\x52\\x4d\\x2e\\xb6\\x92\\\n\\x5f\\x49\\x3a\\x77\\x9b\\xd7\\xf9\\x84\\xe1\\x98\\x6a\\x15\\x9f\\x62\\x9d\\x6b\\\n\\xee\\x8b\\xfd\\x23\\x69\\x5c\\xa8\\x6d\\xb0\\x90\\x00\\x48\\x39\\x74\\x1a\\x70\\\n\\xfb\\x43\\x61\\xd0\\xfa\\x73\\x69\\x5a\\x02\\x01\\x15\\xef\\x1c\\x21\\x0c\\xd7\\\n\\x66\\xad\\x61\\xa6\\xf8\\x0f\\xa7\\xaf\\xde\\x26\\x06\\x54\\x28\\x7f\\x94\\x34\\\n\\xd9\\x5b\\x89\\xa7\\x0a\\xc6\\x55\\x87\\xd6\\x9a\\xf0\\x86\\xdc\\x2d\\xa5\\xa4\\\n\\x93\\xca\\x1f\\x39\\x94\\xc1\\xe1\\x6f\\xa5\\x21\\x6d\\x0c\\xa0\\xd3\\xe1\\x89\\\n\\xf4\\x1a\\xdb\\x8d\\xfc\\x61\\x4e\\x9e\\xb0\\x17\\xbb\\x9f\\xaf\\xd2\\x28\\x1f\\\n\\x65\\xc0\\xaf\\xc8\\xa3\\x7e\\xe8\\x79\\x2d\\xb6\\xb7\\x80\\xfc\\xc6\\x1d\\x9d\\\n\\xd8\\xa8\\x5e\\x30\\xac\\x4c\\xbf\\x34\\xdb\\x64\\xda\\x91\\x37\\x38\\x36\\xad\\\n\\xcb\\x23\\xde\\x72\\xd6\\xe8\\x2b\\xf6\\x84\\x49\\x55\\xac\\xcb\\xe5\\xc7\\x9c\\\n\\x6c\\x5a\\x4e\\x83\\x4e\\x30\\xf0\\x46\\xed\\x0c\\x10\\x92\\x92\\x2b\\xa8\\xa4\\\n\\x25\\xf2\\xd8\\xcb\\x09\\x73\\x35\\x0f\\xab\\xfd\\xed\\x1e\\xea\\x49\\xe9\\x0e\\\n\\xa3\\x6a\\xbf\\x99\\x3f\\x6f\\xb9\\x87\\x93\\x41\\xeb\\xac\\x20\\x55\\xb1\\xe3\\\n\\xf5\\x84\\xb6\\x55\\x51\\xd2\\x1a\\x64\\x85\\xf3\\xa7\\xeb\\x7e\\xfe\\xf8\\x94\\\n\\x97\\xdc\\xe5\\x58\\x9c\\x63\\x2a\\x49\\xa4\\x35\\x34\\x96\\x5c\\xde\\xd2\\xb4\\\n\\xfa\\x08\\x5b\\x08\\x9c\\x40\\xa7\\x18\\xc3\\xb0\\xe7\\x1a\\x71\\x4a\\xad\\x82\\\n\\xbe\\xf0\\x81\\x4b\\x42\\x6e\\x40\\x8d\\x94\\x6c\\xbd\\x7e\\xb1\\xb2\\x3d\\xf1\\\n\\x24\\xf6\\x1c\\xa1\\x49\\x3a\\xd6\\x14\\xb3\\xb0\\x3b\\x53\\x7c\\xd6\\xff\\x00\\\n\\x8f\\x08\\x92\\x48\\x72\\x60\\x25\\x0b\\x00\\xd1\\x57\\x24\\x70\\x11\\x88\\x7b\\\n\\x27\\xb8\\xfa\\xb3\\x11\\xca\\xff\\x00\\xac\\x34\\xd3\\x6d\\x9a\\xfc\\x1a\\xa4\\\n\\x1e\\x5c\\x3e\\x51\\x30\\xec\\xf5\\x95\\x28\\x53\\xb0\\x4a\\x4e\\xd4\\x6b\\xbd\\\n\\xc2\\xda\\x69\\x0f\\x33\\xed\\x2e\\x15\\x54\\x09\\x81\\xee\\xf0\\x15\\xf5\\x58\\\n\\x6a\\x52\\x57\\x0e\\x47\\xb4\\xcc\\x94\\xa9\\x62\\xe7\\x48\\xc5\\x7b\\x44\\xfc\\\n\\xeb\\xae\\xb0\\xda\\x48\\x69\\x0b\\x28\\x6f\\x2d\\x7d\\xcd\\x05\\x7c\\x21\\x99\\\n\\x47\\x26\\x28\\x5c\\xcd\\x6b\\xdc\\xf3\\x89\\x6c\\x31\\x94\\x27\\x3a\\xa9\\x54\\\n\\x0a\\x81\\xdd\\x02\\x7f\\x62\\x32\\x8a\\x7c\\xa0\\x4f\\xbc\\xe2\\xd4\\x9a\\x5b\\\n\\xf6\\x82\\xdc\\xd6\\xd0\\xa9\\xaa\\xd5\\x42\\x87\\xbb\\xf9\\x87\\x5a\\xc4\\xd3\\\n\\xf8\\x80\\x59\\x15\\x52\\x85\\xaa\\x69\\x7e\\x5c\\xaf\\xea\\xce\\xcc\\xa2\\x66\\\n\\x59\\xa5\\xba\\x72\\x2c\\xd0\\x8e\\x17\\xe5\\xc3\\xe7\\xe5\\x0d\\x38\\x85\\x36\\\n\\x9a\\xd2\\xb4\\xf9\\x68\\x21\\xfd\\xd4\\xd5\\x1a\\xd6\\x25\\x30\\xf4\\x4d\\xfb\\\n\\xea\\xa1\\xf0\\x8f\\xe9\\xf2\\x92\\xae\\x25\\xc7\\x5e\\x42\\x80\\xa1\\xdd\\x23\\\n\\xd7\\x2e\\x3c\\x63\\x18\\x9f\\xc3\\x14\\xe3\\x39\\x29\\x44\\xa1\\x23\\xb9\\x59\\\n\\xaa\\x4f\\x4d\\x07\\x77\\x84\\x2f\\xb5\\x18\\x6b\\x46\\x5a\\x5d\\x45\\x29\\x51\\\n\\xa5\\x33\\x28\\x70\\xe5\\xfb\\x42\\xa7\\x93\\x36\\xb6\\x55\\x2d\\xbc\\x28\\x29\\\n\\x4f\\xdb\\xd5\\x38\\x47\\xb3\\x36\\x65\\x91\\xc1\\x65\\xb4\\x92\\x29\\x4a\\x28\\\n\\xa6\\xbc\\x21\\xc9\\x19\\xb9\\x85\\xd1\\x92\\xac\\xa9\\x34\\x37\\x3a\\xf0\\xf9\\\n\\x46\\x15\\x87\\x4c\\x37\\x2c\\xb4\\xba\\x42\\x81\\x46\\xf5\\x75\\x1d\\xd1\\x34\\\n\\xf3\\x72\\xc3\\x22\\x4d\\x7b\\xf5\\xfe\\x63\\x6c\\x5d\\x58\\x1c\\x3f\\x78\\x42\\\n\\x10\\x1a\\x56\\x95\\x50\\xa4\\x6c\\x16\\x97\\x2a\\x06\\xa6\\x25\\xa5\\xca\\xdc\\\n\\xde\\xf5\\xfc\\x40\\x96\\x4a\\x5a\\x40\\xe2\\x21\\x94\\x86\\xd2\\x4f\\xf8\\xc4\\\n\\xf2\\x76\\xeb\\x34\\x85\\x48\\x2d\\x7e\\xe2\\x6b\\x06\\x4d\\xd6\\x3d\\xf4\\x91\\\n\\xc6\\xf0\\xdb\\x68\\x5e\\xd2\\xa6\\xdb\\x27\\x3e\\x91\\x89\\x3c\\x96\\x5c\\x98\\\n\\xa1\\xad\\xcc\\x4d\\x25\\xd7\\x9d\\x4a\\x9b\\x27\\x51\\xfc\\x7a\\xe1\\x18\\x73\\\n\\x4f\\x29\\xd6\\xc9\\xb6\\x5b\\x1f\\x5e\\xbf\\x46\\x14\\xc4\\xba\\x03\\xa4\\x82\\\n\\xb4\\xe9\\x52\\x2b\\xcb\\x8f\\x18\\xfe\\xa6\\x95\\x0d\\x60\\xb9\\x9a\\xe0\\xeb\\\n\\x78\\x41\\xad\\x75\\x8a\\xd8\\xf7\\x43\\x90\\xc4\\xc2\\x5a\\xa6\\x6a\\x7a\\xfa\\\n\\xf7\\x42\\xdd\\x4b\\x89\\x19\\x4d\\x33\\x6a\\x7e\\x94\\x1c\\x3c\\x7f\\x68\\x75\\\n\\xb0\\x84\\xaa\\xfa\\xa5\\x5f\\x4f\\xaf\\xfe\\x99\\xaa\\x42\\x3d\\x73\\x89\\x49\\\n\\x7c\\xed\\xe9\\xef\\x26\\x91\\xfd\\x3c\\xb4\\x6b\\x4e\\xba\\x40\\x9b\\x53\\x3c\\\n\\x2b\\xde\\x39\\x7e\\x91\\xfd\\x40\\x39\\x2c\\xa0\\x68\\x09\\x51\\x8c\\x41\\x04\\\n\\x2f\\x6a\\x0f\\xc4\\x3a\\xfb\\xc6\\x30\\x99\\x52\\x65\\xd2\\xa5\\x12\\x2a\\x2a\\\n\\x09\\xfd\\xfc\\xa3\\x65\\x48\\xc9\\xfb\\xc6\\xce\\x8b\\xaf\\x7c\\x36\\x3e\\x91\\\n\\x90\\x9e\\x74\\xee\\x8d\\x89\\xeb\\xe5\\x09\\x90\\x91\\x96\\x1f\\xed\\x52\\x47\\\n\\x58\\x9f\\x74\\x25\\x06\\xa7\\x78\\x0f\\x95\\xe0\\xcd\\xcc\\x55\\x49\\x68\\x94\\\n\\xdf\\x54\\xd6\\xbd\\x62\\x54\\x38\\xbb\\xba\\x4a\\xcf\\x1c\\xd7\\x87\\x9c\\x75\\\n\\xc7\\x02\\x25\\xd0\\x75\\x09\\x35\\x07\\xba\\xd1\\x88\\x4b\\xe2\\x72\\x92\\x2a\\\n\\x5b\\x36\\x0a\\x4d\\x54\\x15\\xcc\\x72\\xf4\\x61\\xbc\\x5d\\xf6\\xf6\\xbb\\x42\\\n\\x36\\xd7\\xcb\\x4a\\xeb\\x5e\\xa4\\xf0\\x84\\xcf\\x4c\\x4c\\x59\\xc3\\x9c\\x71\\\n\\x06\\xbf\\xac\\x65\\x65\\xbd\\xfc\\x89\\xa9\\xb9\\x04\\x5a\\xbe\\xba\\xc3\\x53\\\n\\x2a\\x51\\xf7\\x50\\x13\\x6d\\x01\\xee\\xe7\\x05\\xd5\\x52\\xc6\\xbc\\xe1\\x89\\\n\\x65\\xbe\\xe0\\xb1\\xa6\\xb0\\xce\\x1a\\xda\\x00\\x2a\\x06\\xa7\\x5d\\x3f\\x48\\\n\\x99\\x97\\x43\\x69\\x0a\\x41\\x35\\xef\\xfd\\xa1\\xc6\\x50\\x99\\x42\\xe9\\x71\\\n\\x79\\xb2\\xaa\\xd5\\x19\\x74\\xe3\\x68\\x9e\\x4a\\x56\\xe2\\x1c\\x71\\xdc\\x89\\\n\\x49\\xa8\\x42\\x08\\x48\\xad\\xef\\x4e\\x3c\\xbb\\xcd\\x35\\x89\\x72\\xec\\xc3\\\n\\xb5\\xaf\\xe1\\xa6\\x89\\x4e\\x5b\\x58\\x5a\\xfd\\x7e\\x5d\\x04\\x25\\x96\\x92\\\n\\x3d\\xe3\\x9b\\xad\\x3c\\x7d\\x7a\\x13\\x73\\x33\\x32\\x63\\xfd\\xb2\\x52\\x6e\\\n\\x7d\\xe0\\xa3\\xe1\\x65\\x78\\xf1\\x27\\xc2\\xed\\x09\\xd1\\xfd\\xd7\\x9e\\x5d\\\n\\x4d\\x77\\x8d\\xb5\\xd3\\xc2\\x1b\\x93\\x76\\x79\\xe4\\xb6\\x9d\\x3c\\x6b\\x13\\\n\\xbf\\xe9\\xec\\xcc\\xda\\xd2\\xf1\\x75\\xd0\\x92\\x12\\x2d\\x97\\x41\\x7b\\x54\\\n\\x5a\\xe6\\xf7\\xbd\\x63\\xb2\\xf8\\x03\\xd8\\x70\\x69\\x2e\\x2c\\xb9\\xb3\\x00\\\n\\x05\\x3d\\x72\\x69\\xcf\\x41\\xea\\xb0\\x09\\xa9\\x16\\xd4\\xfa\\x1e\\xb4\\x89\\\n\\x62\\xd3\\x45\\x45\\xcd\\xda\\x90\\x6d\\xf3\\x87\\xb1\\x79\\x16\\x10\\xac\\x8f\\\n\\x28\\xae\\x86\\x83\\x30\\xa5\\x7a\\xd8\\x7d\\x7c\\x61\\xec\\x41\\x53\\x93\\x99\\\n\\x3e\\x1c\\xda\\x8e\\xa7\\xaf\\x18\\x96\\x69\\x2a\\x4d\\x0f\\xfd\\x30\\x00\\x23\\\n\\x8f\\x7c\\x06\\x93\\x95\\x07\\x32\\xae\\x4d\\xab\\x68\\x6f\\x25\\x38\\x5b\\x9c\\\n\\x32\\x77\\xc6\\x80\\x56\\x0b\\x97\\xc9\\x5b\\x0f\\xd3\\xd7\\x84\\x28\\xd1\\xb3\\\n\\x43\\xa8\\xf5\\xeb\\xbe\\x1a\\x4f\\xe2\\x2a\\xbf\\x3f\\x18\\x97\\x49\\x68\\xd5\\\n\\x20\\x1f\\xf9\\x0a\\xc4\\xf2\\x5a\\x99\\x65\\x79\\x80\\x4b\\xe9\\x4e\\x89\\xf7\\\n\\x69\\x4b\\x57\\x8f\\x38\\x7d\\xd5\\x34\\xdc\\xc0\\xd1\\xd4\\x85\\x00\\x38\\x52\\\n\\xf5\\x8f\\xe9\\xf3\\x58\\x83\\xaf\\xd7\\x42\\xa3\\xee\\xeb\\xc7\\x9c\\x35\\xd9\\\n\\xd6\\x30\\xf6\\xb3\\xce\\x29\\xc0\\xbc\\xb5\\x03\\x30\\xa7\\x3b\\xd8\\xc3\\x73\\\n\\x0e\\xb6\\xe2\\x9b\\x69\\x0d\\x94\\x15\\x12\\x92\\x53\\xbd\\xcb\\x5a\\xc3\\x89\\\n\\x79\\xc5\\x0c\\xca\\x29\\xf9\\x26\\x10\\x1d\\x46\\x8b\\x49\\xef\\xbf\\xde\\x1b\\\n\\x98\\x55\\x00\\x39\\x6a\\x00\\x15\\xeb\\x08\\x99\\xcb\\xad\\x2f\\x09\\x7d\\x04\\\n\\x6a\\x2b\\x48\\x53\\x89\\x3f\\x10\\xfd\\xe2\\x65\\x47\\x35\\x13\\xfb\\x43\\x21\\\n\\x4d\\xcb\\xa5\\x4a\\xd0\\x25\\x20\\x9e\\x64\\xf2\\xf3\\xe7\\x0a\\x5e\\x72\\xb4\\\n\\xf0\\xba\\x7e\\x50\\xfa\\x32\\x7b\\xbf\\x38\\x96\\x65\\x4b\\x58\\x71\\x7f\\x2e\\\n\\x91\\x26\\xf3\\x28\\x00\\x57\\xe1\\x87\\x1f\\xcf\\x5f\\x76\\x97\\xd3\\xc7\\xce\\\n\\x1f\\x95\\x4d\\xf2\\x54\\x9f\\x3f\\xb4\\x7b\\x1b\\xa4\\xd0\\x0b\\x74\\x8f\\xe8\\\n\\xed\\xbc\\x28\\xee\\x61\\x4a\\x1a\\x05\\x0e\\x1e\\x1e\\xb4\\x89\\xd9\\x95\\x48\\\n\\x32\\x84\\x32\\x90\\x52\\x94\\xd2\\xe3\\x7b\\x77\\x5a\\x68\\x2b\\x43\\x0c\\xa9\\\n\\x2e\\xb4\\x82\\x06\\xf6\\x44\\xe7\\x1f\\xe5\\x41\\x9a\\x9e\\x30\\x49\\xae\\x50\\\n\\x9a\\x5b\\x8f\\x38\\x4b\\x59\\xc8\\xad\\x61\\x2d\\x04\\xf3\\x3e\\xbb\\xa2\\x81\\\n\\x29\\x17\\xe0\\x3c\\x23\\x32\\x07\\x1f\\x5e\\x50\\xb7\\x91\\x2e\\xda\\x82\\xcd\\\n\\x15\\xc0\\x6b\\xc3\\x9c\\x4c\\xbb\\x9d\\x25\\x4e\\x1d\\x4d\\x07\\x1a\\xc2\\x52\\\n\\xc3\\x14\\x71\\xd3\\x40\\x7a\\x5e\\xf0\\xd3\\xf2\\x74\\xaa\\x1d\\xa9\\xff\\x00\\\n\\x89\\x1f\\x5b\\x47\\xf5\\x39\\x79\\x11\\xb4\\x28\\x41\\x3a\\xf3\\xaf\\x94\\x63\\\n\\x5d\\xb4\\x76\\x72\\x92\\xcc\\xa0\\x53\\x29\\x14\\x1c\\x6f\\x01\\x82\\xb7\\x76\\\n\\xaf\\x6e\\xa8\\x92\\x69\\x5a\\xeb\\xf4\\x80\\xea\\x50\\xac\\xad\\x9c\\xc4\\xfa\\\n\\xf2\\x89\\xa9\\x85\\x15\\x25\\x29\\xd7\\xe2\\x1e\\x3e\\x46\\x25\\xd5\\x46\\xc5\\\n\\x7d\\xe3\\xc3\\xd7\\x08\\x92\\x95\\x7d\\xc5\\x27\\x32\\x37\\x4a\\xaf\\x71\\xa7\\\n\\x9c\\x4a\\x4b\\xb2\\xc2\\x6f\\xef\\x77\\x18\\x70\\xd5\\x35\\x4f\\x5a\\x43\\xe0\\\n\\x90\\xa0\\x62\\x6d\\x45\\x52\\xc1\\x94\\x7b\\xc6\\xc7\\x86\\xbc\\x7c\\x20\\xf6\\\n\\x6d\\x97\\x85\\x03\\x8a\\xaa\\x78\\xeb\\xde\\x6b\\xe8\\x42\\x99\\xfe\\x8b\\x31\\\n\\xb1\\x5a\\xc9\\x97\\x34\\xc8\\xe1\\xa9\\x39\\xce\\xa0\\xf1\\xa5\\x4d\\x89\\xfd\\\n\\x21\\x99\\xa9\\xb7\\x71\\x50\\x80\\x9a\\xcb\\xa9\\x95\\xa8\\x1e\\x77\\x4d\\x0f\\\n\\x4d\\x74\\x30\\xa9\\x6c\\xc8\\xaa\\xc0\\xf1\\x22\\x25\\xe4\\x18\\x99\\x58\\x6d\\\n\\x34\\x27\\x95\\x29\\xfb\\x44\\xb6\\x06\\xdc\\xb4\\xc8\\x59\\xdd\\x21\\x36\\xa5\\\n\\xc6\\xb5\\x87\\x0a\\x80\\x08\\x49\\xa8\\xf5\\xce\\x0a\\xb6\\x69\\x04\\xb9\\x48\\\n\\x7f\\x19\\x43\\x75\\x4a\\x16\\x4a\\x85\\xb4\\xe3\\xdf\\xea\\xd0\\xfe\\x33\\x32\\\n\\xbe\\x24\\x0e\\xfa\\xc4\\x99\\x4c\\xc9\\x0b\\x71\\x6b\\xf1\\x4a\\xa2\\x52\\x41\\\n\\xb4\\x10\\xf0\\xaf\\x3b\\xfc\\xad\\x48\\x94\\x51\\xcc\\xe8\\xe6\\xad\\xdf\\x5f\\\n\\x48\\xa2\\xf2\\x24\\x52\\xe0\\xd7\\xce\\x06\\x6a\\x1b\\x7a\\xa4\\x25\\xc4\\xa1\\\n\\x3b\\xc4\\xd7\\xb8\\xc2\\x1c\\x24\\x05\\x1a\\xd2\\xbe\\x3e\\x5a\\xc2\\x16\\x5c\\\n\\x14\\x1c\\xb8\\xda\\x1c\\xa3\\x67\\xae\\xb0\\x27\\x02\\x75\\x31\\x33\\x88\\xb6\\\n\\x82\\xe3\\x99\\xee\\x5b\\x09\\x02\\xfd\\x78\\xc4\\xd4\\xe3\\x24\\xbc\\xb5\\xa8\\\n\\x85\\xaa\\xa1\\x20\\x02\\x6b\\x5e\\xe8\\x69\\xf9\\xe6\\xb3\\xfb\\x3b\\x39\\x8a\\\n\\x8d\\x46\\xf2\\x45\\x8f\\x7d\\x3d\\x73\\x89\\x8c\\x4f\\x11\\xc5\\x9c\\x0d\\x2d\\\n\\x3b\\xc9\\x14\\x20\\x74\\xb6\\xba\\x68\\x2b\\x12\\xf9\\x10\\x52\\x87\\x13\\x47\\\n\\x01\\x35\\x3a\\xdb\\xba\\x9c\\xf8\\xe6\\xbc\\x38\\xc7\\xb4\\x23\\x23\\x55\\x05\\\n\\x54\\xf5\\xfc\\x73\\x85\\x61\\x4e\\x32\\x8c\\xee\\xaf\\x2a\\x79\\xe6\\xfb\\x43\\\n\\x5b\\xc4\\x84\\x1c\\xc0\\x5a\\xbc\\xe0\\x24\\xe8\\xaa\\x83\\xdd\\xeb\\xd5\\xe0\\\n\\x9c\\xbd\\xf0\\x0b\\xae\\x1a\\x24\\x5f\\xbf\\xc6\\x15\\x29\\x34\\x42\\x08\\x6c\\\n\\x57\\x88\\xcc\\x9f\\x5c\\xa1\\xa0\\xf3\\x92\\xbb\\x37\\xd0\\x84\\x11\\x96\\x94\\\n\\xb9\\xa7\\x13\\x40\\x48\\xfa\\x5e\\xb4\\x84\\x7b\\xcb\\xb7\\x15\\x7e\\x9f\\xbc\\\n\\x2d\\xac\\xfa\\x88\\x6d\\x05\\x00\\x26\\x96\\x1d\\x63\\x29\\xa5\\x51\\xef\\x0d\\\n\\x47\\x4e\\x30\\xca\\xed\\x45\\x78\\xfd\\xfd\\x54\\xc4\\xc2\\xf2\\x8d\\xc3\\x5e\\\n\\xef\\x5f\\x38\\xfe\\xa9\\x2e\\xd4\\xdb\\x12\\x2a\\x3f\\xee\\x1e\\xb8\\x47\\xf8\\\n\\xfc\\x2a\\x57\\x79\\x07\\x2f\\x3c\\xaa\\x31\\x5f\\x54\\xf9\\xc6\\x34\\xb6\\x93\\\n\\x26\\xb7\\x1c\\x34\\x42\\x54\\x2e\\x7a\\xda\\x83\\x9e\\xa2\\xbc\\x23\\x1c\\xed\\\n\\x64\\xe6\\x09\\x33\\x2a\\x1b\\x6c\\x16\\x5e\\xca\\x4e\\x95\\x14\\xa1\\x22\\xd6\\\n\\x24\\xa6\\xe2\\xfc\\x15\\xc4\\x18\\xc1\\xb1\\xfc\\x3f\\x1c\\x61\\xb7\\x18\\x7d\\\n\\xbd\\xb2\\x45\\x1c\\x68\\x9d\\x9b\\xa5\\x54\\xa9\\x21\\xb5\\x51\\x4a\\x1c\\x2a\\\n\\x2a\\x2b\\xc6\\x1a\\x1a\\xd8\\xa7\\x2e\\xb9\\xb7\\x4f\\x85\\x75\\xf0\\x8b\\x72\\\n\\x3f\\x38\\x9c\\x5e\\xcd\\xb2\\x4d\\x85\\x2b\\xe1\\x0e\\x62\\x88\\x0b\\x23\\x69\\\n\\x97\\xa1\\x49\\xfd\\x22\\x71\\x4e\\x29\\x5a\\xf7\\x44\\xc7\\xe0\\x32\\x1f\\x73\\\n\\xdc\\xcd\\x7f\\x97\\xeb\\xf3\\x8c\\x73\\x14\\xda\\x84\\xec\\x0d\\x05\\xb4\\x89\\\n\\x69\\xc9\\x9a\\x6b\\xf3\\xfd\\xcc\\x4c\\xe2\\x33\\xb3\\x6a\\x2d\\x05\\x9f\\x78\\\n\\xa4\\x01\\x5a\\xd8\\xd3\\xd7\\x94\\x31\\x85\\xbf\\x2a\\xca\\x9d\\x98\\x24\\xa9\\\n\\x7b\\xe0\\x9b\\xda\\x1f\\x7d\\x6e\\x55\\xa4\\x1a\\x2c\\x9a\\x23\\x5f\\xb4\\x4b\\\n\\x4a\\x2d\\xa4\\x85\\xb9\\x52\\x68\\x2a\\x7d\\x7a\\xd2\\x3d\\x9b\\x6e\\xe0\\xca\\\n\\x35\\x3a\\xc4\\x8e\\x02\\xb2\\x90\\xa5\\x69\\xbb\\xfb\\xf2\\x89\\x59\\x34\\x32\\\n\\x9a\\x11\\x7f\\xbc\\x6c\\x7a\\x43\\x9b\\xa3\\x2f\\x2e\\x10\\xb5\\x00\\x4d\\x61\\\n\\xe7\\x11\\x58\\x62\\x61\\x2d\\xb4\\xac\\xa0\\x54\\xa4\\xf5\\xa0\\x89\\xbc\\x31\\\n\\xcc\\x6d\\x0e\\x21\\x91\\xf8\\xa8\\x4a\\x89\\x34\\xb8\\x14\\x23\\xe5\\x5b\\x72\\\n\\xd6\\x30\\xc9\\x13\\x2e\\xa5\\xed\\xc5\\x5c\\x45\\x53\\xdc\\x39\\x7c\\xa1\\xf7\\\n\\x54\\xa2\\x52\\x88\\xc0\\x33\\xaa\\x7b\\x8f\\xaa\\x42\\xcb\\x4c\\x9f\\xc4\\xf7\\\n\\xb5\\xe3\\xa4\\x62\\x18\\xd3\\x0c\\x83\\x97\\x51\\x13\\xb8\\xe3\\xf3\\x0a\\x28\\\n\\x65\\x5a\\xfa\\xf2\\x89\\x09\\x59\\x89\\xc5\\x01\\x52\\x49\\xd6\\x24\\x3b\\x32\\\n\\xe9\\x21\\xd7\\x85\\x5b\\x4d\\x01\\x84\\x61\\x32\\xa9\\x64\\xb8\\xda\\x45\\x1b\\\n\\x19\\x8d\\x07\\x2a\\x71\\xef\\xfd\\xe1\\x28\\x2e\\x38\\x1b\\x4e\\x9c\\x07\\xd2\\\n\\x25\\xb0\\xed\\x98\\x0a\\xa5\\xe9\\x78\\x4b\\x55\\x52\\x87\\x2a\\x46\\xc0\\x71\\\n\\x85\\xb6\\xdc\\x3a\\xeb\\x68\\x01\\x03\\x84\\x39\\x3a\\x96\\x5a\\x19\\x78\\x9a\\\n\\x5b\\xba\\x1d\\xc4\\x4a\\xab\\x7e\\x10\\xe6\\x20\\xe7\\xe6\\x30\\xe4\\xd3\\x8e\\\n\\x0d\\x4d\\xe2\\x61\\x25\\x3b\\xeb\\xd3\\x30\\x1e\\x70\\xda\\x50\\x96\\xb3\\x73\\\n\\x1a\\xfa\\xeb\\xc2\\x25\\x89\\x97\\x9f\\x21\\x20\\x6f\\x15\\x5c\\xfe\\x55\\x8e\\\n\\x5e\\x7e\\x70\\x59\\xca\\xf9\\x35\\x14\\x3a\\x8e\\x24\\x13\\x5b\\x72\\xa7\\xeb\\\n\\x12\\xea\\x97\\x4a\\x06\\x51\\xa0\\xe3\\xae\\x9c\\xfe\\xf1\\x89\\xce\\x97\\x55\\\n\\xb0\\x6f\\xa8\\xd7\\xd6\\x9e\\xba\\xe1\\xb8\\x7e\\x56\\xd0\\xe2\\xfe\\x24\\x24\\\n\\x8f\\xb9\\x87\\x7d\\x9d\\x29\\x53\\x54\\x1b\\x45\\x8d\\xde\\x76\\xb4\\x39\\x9d\\\n\\x97\\x48\\x70\\x6b\\xa7\\xaf\\x5e\\x31\\x28\\x7f\\x16\\x94\\xe3\\x51\\xdd\\xeb\\\n\\x94\\x2c\\xa1\\x94\\x17\\x16\\x34\\x15\\x09\\xeb\\xf3\\xd6\\x25\\xa7\\x8e\\xde\\\n\\x8a\\x36\\x72\\xc2\\x9a\\x27\\x90\\x3d\\xc3\\x48\\xcb\\x72\\xae\\xa6\\xfd\\xf1\\\n\\x4f\\xfd\\x12\\x68\\x61\\xf5\\x86\\x6e\\x4d\\x07\\x13\\xc8\\x71\\xee\\x02\\x3b\\\n\\x47\\xfe\\xa3\\xe1\\x18\\x13\\x9e\\xca\\xc2\\x0c\\xec\\xc1\\xa8\\x05\\x2b\\xfc\\\n\\x24\\xa8\\x9f\\x8c\\xfc\\x42\\xfc\\x29\\x18\\x16\\x21\\x8b\\x63\\x38\\xfb\\x38\\\n\\x92\\xd9\\x79\\x05\\x2e\\xa1\\x5f\\xdb\\x21\\xa2\\xc8\\x55\\x42\\x6a\\x7e\\x10\\\n\\x33\\x00\\xae\\x44\\x83\\xad\\xf6\\x80\\x5a\\xf5\\xd7\\xd0\\xbc\\x62\\xed\\xae\\\n\\x7a\\x5b\\xd9\\xd8\\x40\\x71\\x6a\\x29\\x50\\x0a\\x15\\x48\\x52\\x54\\x0a\\x49\\\n\\x4d\\x6a\\xa0\\x37\\x8e\\x5d\\x09\\xcb\\xc2\\xa9\\x3d\\xb3\\x4b\\xe7\\x0c\\x94\\\n\\x98\\x74\\x7e\\x33\\x0b\\x2d\\xbc\\x52\\x00\\x4a\\x94\\x16\\xa4\\x13\\x40\\x00\\\n\\x15\\x4e\\x45\\x1a\\x59\\x39\\xb2\\x27\\x99\\xec\\xc3\\x18\\xac\\xde\\x20\\xc3\\\n\\xd2\\x64\\xb0\\x89\\x65\\x07\\x16\\xfd\\x68\\xca\\x07\\xc5\\x98\\xe9\\xa7\\x0f\\\n\\xd6\\x27\\x3f\\xd4\\x64\\xc9\\x62\\x0c\\xe1\\xeb\\x3e\\xd6\\xd9\\x21\\xa5\\xcf\\\n\\x0c\\xa9\\x4b\\x6e\\x65\\x27\\x35\\xa9\\xb8\\x48\\xcb\\x5e\\x67\\x94\\x61\\x5d\\\n\\xb0\\x95\\x98\\xa5\\x48\\x57\\x1a\\xff\\x00\\x3a\\xc4\\xf4\\xcf\\xb5\\xb4\\x4b\\\n\\x7e\\xea\\xee\\x38\\xd8\\xf2\\x87\\xa4\\x67\\x16\\xba\\xe7\\x3a\\x50\\x66\\x09\\\n\\x26\\x83\\x85\\x4d\\xed\\x01\\x82\\xa1\\x98\\xd7\\xd7\\xab\\xc2\\x64\\x65\\xf1\\\n\\x16\\x95\\x2c\\xe9\\xa5\\xf4\\x83\\xd8\\xc9\\x4f\\x6c\\x4b\\x05\\x64\\xb7\\x77\\\n\\x0d\\x6f\\x4c\\x9b\\xd4\\xaf\\x2f\\x94\\x27\\x06\\x92\\x7a\\x75\\x2d\\xa5\\x09\\\n\\x08\\x68\\x80\\x48\\x4d\\x2b\\x48\\x73\\xb2\\x4d\\xcb\\x4d\\x97\\xda\\x4a\\x48\\\n\\x35\\x50\\x19\\x45\\x2f\\x7e\\x51\\xda\\x03\\x37\\xb7\\x4b\\x0d\\x36\\x68\\x94\\\n\\xa9\\x36\\x16\\xf7\\xb9\\x44\\xa4\\x8b\\xd9\\x81\\x71\\xbd\\xee\\x79\\x6f\\x03\\\n\\x0f\\x99\\x50\\xdd\\x6d\\x4a\\x1d\\xd6\\xf5\\xf4\\x89\\x49\\x47\\xd8\\xa1\\x53\\\n\\x34\\x34\\xe2\\x9f\\xda\\x03\\xd3\\x08\\x1a\\x28\\x0e\\x96\\x8f\\x6e\\x74\\x1e\\\n\\x3a\\xf5\\xfa\\x42\\xa6\\xdd\\x3c\\x55\\xe7\\xfb\\xc2\\xa6\\xdc\\x05\\x55\\x2a\\\n\\x34\\xd2\\xa4\\xc2\\x66\\x1f\\x9c\\x79\\x6d\\x37\\x9a\\xa0\\x57\\x5e\\xb0\\xf6\\\n\\x09\\x38\\x94\\xa1\\x6a\\x5a\\xb2\\xaa\\x95\\xb9\\xb0\\x3a\\xf1\\xe5\\x12\\xcc\\\n\\x32\\xca\\x0b\\x20\\x97\\x2b\\x6c\\xf4\\xaf\\xcf\\xd7\\x58\\x12\\x0b\\x65\\xd5\\\n\\xbf\\x87\\xba\\xe2\\xe6\\xd4\\x2e\\xd6\\x75\\x04\\x84\\xf0\\xb6\\x97\\x89\\xe7\\\n\\x71\\x39\\x79\\xbd\\xa4\\xe2\\x29\\x7a\\xac\\x01\\x41\\x96\\xbc\\x4a\\x75\\x27\\\n\\x87\\x88\\xd6\\x25\\x18\\xc2\\xe7\\x64\\x53\\x36\\x82\\x8c\\xc9\\x4e\\xf0\\x01\\\n\\x3a\\xd3\\x8d\\x22\\x43\\x18\\x44\\xb4\\xe8\\x25\\x96\\xd2\\x85\\xab\\x27\\xba\\\n\\x92\\x47\\x0a\\xd4\\x25\\x26\\xfa\\xe9\\xd2\\x03\\x0f\\xe2\\x8e\\x29\\xdf\\x71\\\n\\x8a\\x94\\x0d\\x74\\xd7\\xef\\xf7\\x87\\xfb\\x25\\x21\\x30\\x6a\\x5f\\x56\\xd3\\\n\\x95\\x4d\\x3a\\xf4\\x86\\x7b\\x29\\x87\\xb6\\x9c\\xb5\\x45\\x7f\\xe2\\x2b\\xf4\\\n\\x89\\xec\\x15\\x78\\x1b\\x88\\x7d\\x9a\\xad\\x2b\\x39\\xad\\xc2\\xbb\\xc3\\xc3\\\n\\xf8\\x8c\\x26\\x7f\\xfa\\x8a\\x5b\\x4a\\xb7\\x36\\x54\\x42\\x93\\xa0\\x55\\x6f\\\n\\x71\\xc4\\xf7\\xc4\\xfe\\x54\\x34\\xa6\\x51\\xbb\\xb4\\x4d\\x37\\x6d\\x5f\\x28\\\n\\x91\\x97\\xcb\\x45\\x11\\x7e\\x70\\x73\\xa5\\x46\\xe6\\x80\\xf3\\xe1\\x0d\\xba\\\n\\x12\\x49\\xd7\\xc2\\x1c\\x99\\x0a\\xdd\\x48\\x03\\x85\\x87\\xce\\x1e\\x79\\x08\\\n\\x6a\\xd7\\x55\\x39\\x44\\xc3\\xab\\x23\\x43\\xc6\\xff\\x00\\xbc\\x3a\\x95\\xa9\\\n\\x09\\xa9\\x3a\\xf3\\xef\\xeb\\xdd\\x09\\x19\\x75\\x15\\x85\\x84\\xf2\\x10\\xea\\\n\\x00\\x67\\x38\\xb1\\xa9\\xd2\\xd5\\x80\\x9f\\x69\\x64\\xb3\\x94\\x54\\xa8\\x2e\\\n\\xbc\\x77\\x7a\\xf2\\x89\\xd0\\xe3\\x02\\x80\\xab\\xba\\xf4\\x8c\\x32\\x54\\x25\\\n\\x25\\x6e\\x20\\x29\\x64\\x54\\x29\\x42\\xaa\\xb8\\xe6\\x45\\x7e\\x71\\xec\\xe0\\\n\\xb8\\x54\\x74\\x49\\x3c\\xa2\\x69\\xea\\x24\\xb4\\x8b\\x1f\\xf1\\xd7\\x5e\\x91\\\n\\x86\\xc8\\x25\\x6a\\x2e\\x3c\\x9a\\x8a\\x5a\\xa2\\xb5\\x35\\xe7\\x43\\xa4\\x4d\\\n\\x3e\\x25\\x10\\x84\\x24\\x66\\x2a\\x14\\x14\\xd1\\x23\\xd6\\x90\\xcc\\x91\\x3f\\\n\\x8a\\xaa\\xd5\\x7a\\x57\\x54\\x53\\xbf\\x48\\x9f\\xc2\\xcb\\x8a\\x24\\x2e\\x8b\\\n\\xa6\\xe9\\x57\\x0e\\x9c\\x7d\\x75\\x86\\x1a\\x62\\x55\\xb4\\xe6\\xca\\x57\\x4f\\\n\\x78\\x90\\x4a\\x88\\xe5\\x7f\\xbc\\x3f\\x36\\xa7\\x54\\x45\\x4e\\x5a\\x9b\\x70\\\n\\x03\\x8d\\xff\\x00\\x7a\\x46\\x7c\\xb4\\x23\\x50\\x41\\xa8\\xa8\\xd3\\x4a\\xc3\\\n\\x73\\x13\\x8e\\xb6\\x8d\\x82\\x73\\x66\\x51\\xda\\x2a\\xd9\\x52\\x80\\x7a\\x82\\\n\\x49\\xf1\\x1e\\x3a\\xc2\\x01\\x1a\\x93\\xe2\\x6b\\xf5\\x81\\x73\\xd2\\x00\\x19\\\n\\x57\\x6d\\x05\\x45\\xa3\\x15\\x97\\x72\\x62\\x41\\x61\\xba\\xe6\\xca\\xac\\xb4\\\n\\x37\\xa9\\x1a\\x6b\\x1d\\x9f\\xff\\x00\\x4f\\xe4\\x9c\\x9a\\x5c\\xee\\x3c\\x84\\\n\\x21\\xc0\\xac\\xcc\\xb4\\xf2\\x42\\xb2\\xd1\\x46\\x80\\x8a\\x94\\x13\\xa5\\xeb\\\n\\x0d\\xc9\\x31\\x2c\\x03\\x6c\\x21\\x01\\x09\\xb2\\x4a\\x52\\x12\\x29\\x06\\xa9\\\n\\xbf\\xef\\x08\\x34\\xa9\\xd0\\xd3\\x85\\xb4\\x3c\\xf8\\x46\\x33\\x82\\x4b\\x63\\\n\\x32\\xaa\\x97\\x70\\x84\\xa0\\xab\\x7f\\x2f\\xbc\\x6a\\x6a\\x54\\x34\\xde\\xa8\\\n\\xaf\\x53\\xae\\xb1\\x88\\x76\\x63\\x15\\x6a\\x41\\x9c\\x37\\x05\\x09\\x62\\x5d\\\n\\xc4\\x7e\\x2a\\xd0\\x28\\xe1\\xbd\\x37\\xdd\\xd6\\xe2\\xa6\\xda\\x56\\x95\\x34\\\n\\xa9\\x57\\x63\\xce\\x13\\x2e\\x8f\\x68\\x29\\xce\\x40\\xcf\\xbb\\x9d\\x67\\x4b\\\n\\x6d\\x15\\x53\\x6f\\xf0\\x09\\x31\\x83\\xf6\\x66\\x59\\x97\\xcc\\xea\\x96\\xf1\\\n\\xcc\\x2a\\x10\\xb5\\xaf\\x21\\x3c\\xca\\x54\\x48\\x29\\x03\\x44\\xe9\\xe5\\x08\\\n\\x00\\x25\\x21\\x3e\\xe8\\x16\\xf0\\x83\\x09\\x97\\xa2\\x0a\\x0f\\x9f\\x18\\x79\\\n\\xaf\\x62\\x3b\\x44\\x6f\\x95\\x28\\x6b\\x6a\\x79\\x7a\\xbc\\x25\\xe6\\x76\\x25\\\n\\xc7\\x2c\\xb2\\x82\\x01\\xe2\\x2a\\x34\\x1f\\x48\\xc3\\xdb\\x64\\xb0\\xf2\\xc2\\\n\\x41\\x5a\\xab\\x42\\x6d\\x0d\\x85\\xa7\\x7d\\x63\\x30\\xa6\\x9c\\x3e\\x42\\x3d\\\n\\x8e\\x56\\x66\\x72\\xed\\x24\\xe6\\xb9\\x3c\\x52\\x6b\\xa4\\x4f\\xc9\\xcb\\x21\\\n\\xc5\\xb6\\xc8\\x05\\x42\\xc0\\x53\\xac\\x61\\x32\\x72\\x68\\x95\\x4a\\x9d\\x42\\\n\\x4a\\xa9\\xa1\\x03\\xf9\\x89\\xd9\\x56\\x8a\\xd6\\xa0\\x80\\x94\\x95\\x1c\\xb4\\\n\\xe5\\x0f\\x25\\xb0\\x28\\x13\\x5e\\xf8\\x0c\\xa1\\x4a\\x06\\x94\\xbc\\x19\\x56\\\n\\x0a\\x49\\x5a\\xb2\\xf8\\x57\\xef\\x13\\x93\\xf2\\xcd\\x3e\\xe4\\xb2\\x06\\x75\\\n\\xa0\\xd2\\xe2\\x9f\\x0d\\x7e\\xf0\\xce\\xdd\\x87\\xcb\\xe9\\x48\\x4a\\x56\\x32\\\n\\xdb\\x8d\\xeb\\xeb\\xbe\\x0e\\x20\\xeb\\xcd\\xa5\\xb5\\x1a\\x68\\x3c\\x39\\x7d\\\n\\x22\\x5b\\x20\\x4e\\x5c\\x83\\x4d\\x4c\\x04\\x65\\x4f\\xe0\\x80\\xdb\\xa6\\xbf\\\n\\x8c\\x9b\\xaf\\xba\\x86\\xd6\\x85\\xcb\\x25\\xe0\\xb1\\x34\\x44\\xc2\\x96\\x9c\\\n\\xa1\\x4b\\x00\\x65\\x27\\x45\\x5b\\x97\\x28\\x6d\\xd5\\x60\\xb3\\x4f\\x49\\xb8\\\n\\x91\\xec\\x8f\\xa9\\x4b\\xda\\x12\\x46\\x40\\x7e\\x14\\xa7\\x43\\x7b\\xde\\x19\\\n\\x95\\x4e\\x21\\x89\\xb5\\x29\\x2e\\x2a\\xc2\\x08\\x51\\x98\\x04\\x66\\x37\\x05\\\n\\x54\\xa5\\x53\\x71\\x60\\xaa\\xeb\\x7d\\x05\\x4b\\x4d\\x64\\x6d\\x0c\\xa3\\x70\\\n\\x34\\x32\\x1a\\x7c\\x5d\\x4f\\x58\\x52\\x40\\x6c\\xa5\\x35\\xae\\xa0\\xf5\\x86\\\n\\x8a\\x92\\xe5\\xd4\\x7c\\x60\\xcb\\xaa\\x69\\x01\\x25\\x01\\xd4\\x94\\x8b\\xab\\\n\\xe1\\x14\\xe1\\xdd\\xf6\\x86\\xf0\\x96\\x64\\x1e\\x0e\\x32\\xfb\\x95\\x55\\xd4\\\n\\xdd\\x12\\x00\\x23\\xbb\\xef\\x0b\\x4a\\xde\\x5a\\x15\\xf9\\x4f\\x0b\\xfd\\x61\\\n\\x94\\x11\\xc2\\xf0\\xf2\\x55\\x53\\x6d\\x4c\\x32\\xd0\\x09\\x59\\x59\\xa5\\x69\\\n\\x48\\x43\\x4d\\x12\\x41\\x59\\x15\\xb5\\x68\\x2d\\x5f\\x97\\xae\\xf8\\xf6\\x64\\\n\\x15\\x28\\x07\\x54\\xbc\\xb5\\xe0\\x2f\\x13\\x54\\x43\\x40\\x06\\xd3\\xc4\\x5e\\\n\\xbc\\xe3\\x26\\x74\\x56\\x94\\xe9\\x0b\\x62\\xe7\\xc6\\x12\\xd6\\x71\\x53\\x63\\\n\\x0e\\xb0\\x4a\\x72\\x54\\xf9\\x6b\\x12\\xec\\xa9\\x2a\\x08\\x45\\x09\\xb9\\xbf\\\n\\x2e\\x31\\x3a\\xd9\\x5b\\xe1\\x84\\x84\\x95\\x1d\\x6f\\x71\\x1b\\x30\\x84\\x8a\\\n\\x0d\\x13\\x4f\\x95\\x0f\\xae\\x91\\x37\\x39\\xec\\xeb\\x4a\\x40\\x04\\xa9\\x35\\\n\\xe5\\xc4\\x8f\\xb5\\xa2\\x5d\\x1e\\xd0\\xb4\\xbc\\xa1\\x4a\\x1f\\x74\\x68\\x6b\\\n\\xf3\\xb6\\xb0\\x86\\xc2\\x5a\\x05\\x34\\x1c\\x2d\\x1f\\x86\\xd9\\x53\\xb3\\xcb\\\n\\x4a\\x10\\x93\\x54\\x9b\\x5c\\x0f\\x77\\x53\\xad\\x3c\\x62\\x73\\xb5\\x32\\x72\\\n\\xf4\\x43\\x55\\x73\\x5a\\x7c\\x35\\xfb\\x9b\\xc2\\x31\\xa9\\xb9\\xe7\\x13\\xb2\\\n\\x6b\\x2a\\x54\\xa1\\xc0\\x91\\xe6\\x78\\x71\\xb5\\xe2\\x6d\\x0f\\x94\\x25\\xc7\\\n\\x0e\\x5c\\xb6\\xdd\\x16\\x17\\xef\\x3e\\x24\\x46\\xa0\\x9d\\x4d\\xaf\\xd7\\x89\\\n\\xee\\xe3\\x00\\xeb\\x5f\\x3f\\xde\\x30\\x95\\xfe\\x1a\\x80\\x72\\x8a\\xaf\\xf6\\\n\\xf3\\x57\\x76\\x82\\xb5\\xb7\\x12\\x61\\xcc\\xa3\\x4a\\x57\\x97\\x5e\\x50\\x9c\\\n\\xc2\\x84\\x8d\\x7c\\xa0\\x8c\\xac\\x93\\xf9\\xf7\\x7d\\x79\\x43\\x7f\\xdb\\x28\\\n\\xa5\\x7a\\xf2\\xf5\\xf3\\x85\\x21\\x0e\\x5d\\xf4\\x6d\\x55\\xf9\\xcd\\x8f\\xff\\\n\\x00\\x6c\\x64\\x09\\x1d\\xe4\\xf8\\x43\\x97\\x14\\xa0\\x8c\\xb0\\x6e\\x2d\\x6e\\\n\\xe3\\x0e\\x62\\x13\\x01\\xa4\\x25\\x94\\x04\\x86\\xc5\\x09\\x17\\xcc\\x79\\x9e\\\n\\x50\\xf6\\x69\\xf5\\x21\\x73\\x22\\xa1\\xb3\\xee\\x70\\x59\\xeb\\x5e\\x00\\x5e\\\n\\x9c\\xc7\\x4b\\xd2\\xbc\\x3b\\xeb\\xc6\\xe7\\x96\\xb0\\x82\\x74\\xa6\\x90\\x13\\\n\\x0e\\xce\\xcb\\x93\\x44\\xb8\\x9a\\xf0\\xa5\\x7f\\x4f\\x5f\\x57\\x01\\x75\\x20\\\n\\x65\\x24\\x56\\xb0\\xec\\xb8\\x5a\\x52\\x9a\\x12\\x2d\\x58\\x9d\\x98\\x38\\x69\\\n\\x4e\\x55\\x65\\x67\\xe2\\x3c\\x23\\x03\\x9f\\x97\\xc5\\x82\\x9b\\x69\\xc4\\xb8\\\n\\x40\\xa5\\x07\\xef\\x48\\x12\\xa9\\x97\\x9a\\x52\\x78\\x91\\x7e\\x86\\x1e\\x93\\\n\\x02\\x61\\x4e\\x2b\\x5a\\xd5\\x20\\xf1\\x30\\xc3\\xaa\\x2b\\xd9\\x5f\\x97\\xe9\\\n\\x13\\xcb\\x39\\x02\\x07\\xc2\\x29\\xe2\\x21\\xe5\\xe4\\x17\\xd4\\xd6\\xd0\\x97\\\n\\x82\\x4d\\x49\\xa5\\x34\\x14\\x86\\x14\\xa9\\x95\\x65\\x26\\x89\\xd3\\x8c\\x3d\\\n\\x83\\x4b\\x2d\\x4a\\x3b\\x3d\\xfe\\x2e\\x73\\x89\\x89\\x26\\xa5\\xca\\x33\\x3f\\\n\\x9b\\x3a\\xa8\\x96\\xc0\\x51\\x22\\xda\\x9b\\x1a\\x42\\x65\\x12\\x84\\xa5\\x4a\\\n\\xb0\\xb1\\x1f\\x68\\xa8\\x4e\\x86\\x15\\x30\\xa4\\xd8\\x5e\\x0b\\xce\\x10\\x4e\\\n\\x53\\x60\\x48\\xa5\\x2e\\xaa\\x58\\x46\\x20\\xdb\\x38\\x8c\\x92\\xfd\\xa4\\x64\\\n\\x79\\x29\\x56\\x44\\xfc\\x59\\xa8\\x72\\xf2\\xb7\\x8d\\x63\\xb1\\xd8\\x9c\\xbc\\\n\\x91\\x52\\x1f\\x58\\x33\\x19\\xe8\\x92\\xba\\xe7\\x52\\x74\\x15\\x24\\x79\\x77\\\n\\x9e\\x30\\xda\\x82\\xc6\\xd3\\xf3\\xef\\x46\\xd5\\x0a\\xae\\x45\\x05\\x11\\x6a\\\n\\x03\\xc6\\x25\\xe5\\x94\\xe2\\xf3\\x28\\x5b\\x9f\\xf3\\xd6\\x14\\xa5\\x48\\xb6\\\n\\x90\\x84\\x66\\xcc\\x91\\xf4\\x80\\x90\\xe9\\xce\\xb3\\x42\\x78\\x43\\x69\\xa5\\\n\\x82\\x49\\xe5\\xa4\\x02\\xb0\\x68\\x94\\x9a\\xf8\\x43\\xa5\\x40\\x0c\\xc9\\xa1\\\n\\x8a\\x85\\x04\\x82\\x69\\x73\\x0a\\x97\\xad\\x0a\\x4d\\x53\\x5a\\x9a\\x69\\x4e\\\n\\x30\\xc3\\x01\\xb5\\x38\\xb2\\x77\\x4d\\x68\\x61\\xe4\\x25\\x75\\xe5\\x58\\x0d\\\n\\x8a\\x91\\xc8\\x42\\x9b\\x17\\xe3\\x19\\x0a\\x55\\x4a\\x46\\xc4\\x15\\xd2\\x9f\\\n\\x08\\x89\\xa4\\x3e\\xdb\\xbf\\x82\\x93\\xde\\x29\\x60\\x75\\x89\\xe9\\x39\\x96\\\n\\xa6\\x93\\x34\\xcb\\xa5\\x6a\\x1a\\xa7\\xaf\\xcb\\xd5\\x61\\xb9\\x87\\x43\\x7f\\\n\\x8a\\x08\\x34\\xd0\\xc2\\x65\\x95\\x38\\xee\\xd9\\xcd\\xd4\\xa0\\xe5\\x15\\xe5\\\n\\xad\\x75\\x89\\x39\\x60\\x95\\x23\\x28\\xaa\\x2f\\x55\\x77\\x0a\\xc6\\x2f\\x8b\\\n\\x37\\x28\\xd9\\x69\\xb5\\x85\\x38\\x2b\\xb8\\x35\\xf5\\xf3\\x89\\x87\\xe6\\xe7\\\n\\x97\\x59\\x87\\x68\\x9a\\xd9\\xb1\\x6b\\x6b\\x4a\\x7a\\xd3\\xc6\\x1a\\x95\\x6e\\\n\\x60\\x24\\x2a\\x5a\\x85\\xaa\\x51\\x54\\x1b\\xf9\\xb9\\x5f\\xa6\\x96\\xe9\\x12\\\n\\x1b\\x19\\x76\\xea\\x18\\xa6\\x51\\x50\\xab\\x1a\\x46\\x2d\\x88\\xa8\\xa5\\x41\\\n\\x02\\xba\\xfb\\xbf\\x6e\\xf8\\x65\\x4e\\x2d\\x96\\xd6\\x41\\x19\\x92\\x3e\\x56\\\n\\xd3\\x80\\x34\\xb8\\xd3\\x84\\x02\\xbc\\xa7\\x86\\x9c\\xef\\xe5\\xdf\\x18\\x4d\\\n\\x44\\xc1\\x14\\xa0\\xc8\\x7b\\x89\\xb5\\x68\\x39\\x1d\\x4c\\x14\\x85\\x5b\\xa5\\\n\\xb5\\xb1\\xe7\\xe1\\x0a\\x7a\\x67\\x6b\\xb2\\xd9\\xee\\x83\\x42\\xb3\\xee\\xdb\\\n\\x52\\x38\\xf7\\x5b\\xbf\\x8c\\x21\\x6b\\x53\\x49\\x4a\\xbb\\xe1\\xa4\\x51\\x3a\\\n\\x70\\xf5\\xfb\\x46\\x41\\xca\\x1c\\x4e\\x9d\\xde\\xbd\\x08\\x29\\xde\\xfa\\xc6\\\n\\x51\\xce\\x32\\x1b\\x8a\\x73\\xfd\\x61\\x18\\xb6\\x1e\\x99\\x81\\x20\\xa9\\x96\\\n\\xd3\\x32\\xe1\\xdc\\x42\\x8d\\x0a\\x95\\xa0\\x4d\\x4d\\x05\\x6c\\x78\\xc2\\x93\\\n\\xbf\\x41\\xf1\\x53\\x97\\xcb\\xd7\\xda\\x12\\xdd\\x35\\x14\\xaf\\x8c\\x25\\xab\\\n\\xe9\\x6e\\xe1\\xa4\\x00\\x29\\xfb\\x44\\xa1\\x5a\\xd6\\x0a\\xab\\x6f\\x5e\\xbe\\\n\\xf1\\x9a\\xc3\\xb8\\x46\\x7c\\xba\\xf2\\x8e\\xd3\\xba\\xeb\\xa8\\x53\\x6d\\x98\\\n\\xec\\x9c\\xdc\\xc3\\x13\\x89\\x0d\\x13\\x94\\x59\\x74\\xe7\\xa1\\x85\\xe2\\x4d\\\n\\x29\\xea\\x93\\xbf\\xc7\\xbe\\x12\\xa4\\xcc\\x38\\x85\\x6a\\x21\\x12\\xe8\\x42\\\n\\xf6\\x94\\x8c\\x55\\x1b\\xa5\\x49\\xd5\\x57\\x80\\xcb\\xab\\x2a\\xcf\\x5e\\x90\\\n\\x25\\x51\\x51\\x9a\\x18\\x91\\x46\\x4c\\xe8\\xa7\\x84\\x35\\x2e\\xb5\\xac\\xd7\\\n\\xdd\\xd2\\x0b\\x72\\xb2\\xb9\\xd4\\xe3\\x01\\xe5\\x29\\x39\\x51\\x51\\x5a\\x2f\\\n\\xf3\\x44\\xd3\\xe0\\xba\\xad\\xa8\\xd9\\xa6\\x87\\x2f\\x0f\\x08\\x66\\x60\\x2c\\\n\\xf1\\xf3\\x84\\x6f\\x18\\x44\\x9e\\x71\\x41\\xae\\xbe\\x22\\x17\\x86\\xd6\\xb6\\\n\\xd6\\x9c\\x23\\x12\\xc2\\x9b\\xc2\\xe6\\xd0\\xb4\\x56\\xa4\\x8f\\x0b\\xf3\\xf5\\\n\\x68\\xc1\\xa7\\x54\\xfa\\x76\\x64\\xd7\\x77\\x4f\\x5e\\xad\\x15\\x71\\xb9\\x97\\\n\\x13\\x5a\\x03\\x58\\x93\\x9a\\x7b\\x3e\\x50\\x63\\xda\\x14\\xee\\x40\\xa3\\xa0\\\n\\xa7\\x97\\xef\\x01\\x19\\xc2\\x72\\x70\\xd7\\xed\\x08\\x65\\xca\\x5b\\x5e\\x10\\\n\\xbc\\x88\\x62\\x9f\\xf5\\x60\\xa5\\x65\\x29\\x2b\\xad\\xc5\\x4c\\x29\\x29\\xca\\\n\\x8a\\x73\\x35\\x84\\x2b\\xe1\\xe0\\x60\\xa9\\x01\\x19\\x7b\\xe1\\xd6\\xc5\\xe9\\\n\\xa4\\x32\\x84\\xe7\\x5d\\x7f\\x29\\xfa\\xde\\x02\\x11\\x53\\xdd\\xeb\\xd5\\xa1\\\n\\xe6\\x32\\xae\\x14\\x8a\\x51\\x5d\\x21\\xc4\\xd4\\x67\\xf5\\x78\\x79\\x9c\\xe7\\\n\\xd7\\x8c\\x2d\\x15\\xeb\\xd6\\x25\\x65\\x94\\x4e\\x41\\x4c\\xa5\\x55\\x3e\\x54\\\n\\x89\\xb7\\xbd\\x91\\x95\\x21\\x1f\\xdc\\x22\\x83\\xcc\\x57\\xe4\\x3e\\xd1\\x36\\\n\\xda\\xde\\x70\\xb8\\xe5\\x78\\xc3\\x72\\xa1\\x4b\\x06\\x95\\xe5\\xeb\\xc6\\x03\\\n\\x62\\x58\\x22\\xba\\xac\\x12\\x3e\\x43\\xef\\x00\\x15\\x8c\\x88\\xe3\\xf3\\xaf\\\n\\xad\\x20\\xe1\\xc1\\x7e\\xfa\\x7c\\xe1\\xe6\\x83\\x5f\\x86\\x91\\x64\\xda\\x08\\\n\\xa2\\x63\\x0a\\xfe\\xe2\\xed\\x5d\\xdb\\x9e\\x22\\x9c\\xbb\\xed\\x5e\\xe8\\x06\\\n\\x97\\xf5\\xf2\\xfd\\x61\\x4c\\x95\\x28\\x11\\xa9\\x15\\x3e\\x26\\x32\\x65\\xca\\\n\\x9a\\xf0\\xd2\\x05\\x87\\x70\\xff\\x00\\xd1\\x49\\x07\\x5f\\xa7\\xaa\\xc1\\x6b\\\n\\x78\\xe9\\x68\\xd9\\xf4\\xf9\\x08\\xca\\x36\\xf9\\x7a\\x1f\\xa4\\x3b\\x82\\x4a\\\n\\x7f\\x54\\xf6\\xe7\\xda\\x0a\\x79\\xa2\\x36\\x44\\xe8\\x37\\xb3\\x56\\x95\\xd4\\\n\\x2a\\xe3\\x30\\x34\\x3c\\xa9\\x04\\x85\\x51\\x57\\xa8\\xbd\\x79\\x9e\\x37\\x14\\\n\\x86\\x53\\xb5\\xf9\\x40\\x67\\xf4\\xb5\\x7f\\x48\\xd8\\xc2\\x1a\\x08\\xe1\\x48\\\n\\x46\\xf2\\x7a\\xe9\\x78\\x52\\x54\\x39\\xd3\\x97\\x7c\\x4c\\xc9\\xed\\xce\\x83\\\n\\x5b\\x46\\x1f\\x20\\xd4\\x9a\\xb7\\x50\\x94\\x2d\\x47\\xde\\x48\\x00\\xf7\\xc4\\\n\\xe6\\x1a\\xe9\\x65\\x53\\x29\\x26\\xa9\\xb9\\xa6\\xa7\\xd7\\x18\\xc1\\xa7\\x14\\\n\\xaa\\xb2\\xba\\x85\\xe8\\x92\\x75\\xf0\\x83\\x3a\\x18\\xf7\\xee\\x22\\x73\\x13\\\n\\x61\\x49\\xb8\\x4f\\x97\\xd2\\x1e\\xc5\\x99\\x4b\\xac\\xa5\\x09\\x00\\x28\\x9c\\\n\\xd4\\xe3\\x4a\\x6b\\x13\\x2e\\x6d\\x72\\xad\\x1b\\x89\\xd5\\x59\\x79\\x71\\xf5\\\n\\xd6\\x25\\xa7\\x65\\xd3\\x2f\\x90\\xbd\\x45\\x77\\xfa\\xe5\\x12\\xf8\\xa4\\xa3\\\n\\x7f\\x86\\xe3\\xb5\\x22\\xb7\\x26\\xf7\\xfe\\x63\\x6f\\x2e\\xe2\\x82\\x9b\\x74\\\n\\x2a\\xf7\\x1a\\xdb\\xd7\\x91\\x8e\\xd0\\x4b\\x26\\x65\\x28\\x2d\\x81\\x98\\x6b\\\n\\x4b\\x56\\x94\\xf5\\xe3\\x0d\\x32\\xb6\\xb5\\x10\\xda\\x8f\\xbc\\x6d\\xfb\\x43\\\n\\x58\\x93\\x6c\\x1a\\xad\\x55\\x14\\xcb\\x4f\\xdb\\x86\\x90\\x71\\xd6\\x89\\xf7\\\n\\x3d\\x79\\x46\\x29\\x8a\\xcb\\xce\\x36\\x49\\x69\\x25\\x60\\x58\\x94\\xd4\\x8e\\\n\\x1a\\xf8\\x46\\x07\\x8a\\x09\\x77\\x15\\xb6\\x78\\xa1\\x7b\\x4d\\xdb\\xd2\\x8d\\\n\\x90\\x28\\x29\\xca\\xb5\\xf1\\x84\\xcd\\x4a\\xcc\\x80\\x43\\x80\\xb8\\x74\\x3c\\\n\\xf9\\xfa\\xfb\\x69\\x2f\\x65\\xee\\x9b\\xf4\\x89\\x65\\x6f\\x0c\\xd7\\xe7\\xe7\\\n\\x0d\\x01\\x92\\x89\\xb5\\x6f\\x0c\\x95\\xa7\\xde\\x52\\xa0\\x94\\x93\\x52\\x80\\\n\\x4f\\x51\\x0b\\x72\\xa4\\xa6\\x9a\\x42\\x1b\\x53\\x95\\xa5\\x82\\x7e\\xf0\\x86\\\n\\x02\\xad\\x1e\\xcf\\xbf\\x7b\\xde\\x26\\x98\\xa6\\x94\\x02\\xdf\\x48\\x0c\\x84\\\n\\x26\\xba\\xd6\\xd5\\x3a\\xc6\\xc9\\x41\\x59\\xaf\\x48\\x4a\\x58\\x75\\xbb\\xa1\\\n\\x0a\\x55\\x35\\x22\\x1d\\x62\\x95\\x14\\xb6\\xb4\\x85\\x81\\x42\\x98\\x09\\xaa\\\n\\xa2\\x62\\x5a\\xaa\\x05\\x16\\x1c\\x69\\x12\\xca\\x43\\x03\\x20\\x4a\\x73\\xaa\\\n\\xf9\\xb8\\xd2\\x9c\\x0f\\x3f\\x94\\x62\\x4a\\xcc\\xed\\xc1\\xcd\\x6c\\xa7\\xc7\\\n\\xd7\\xa3\\x13\\x8d\\xaf\\x33\\x74\\xd3\\x8f\\x5d\\x3d\\x7a\\x30\\x18\\x43\\x2d\\\n\\x25\\x74\\x4e\\x65\\x79\\x8b\\x03\\xeb\\xba\\x14\\xf6\\xd9\\xe4\\x02\\xb2\\x52\\\n\\xd9\\xa5\\x0f\\x0a\\x9f\\xd8\\x44\\xaa\\x10\\x52\\x95\\x0a\\x56\\xc6\\xd0\\xfe\\\n\\x54\\xb4\\x4d\\x05\\x79\\xd2\\x1e\\x39\\xdc\\x59\\xd6\\xff\\x00\\xa0\\xfb\\x42\\\n\\xd4\\x94\\x0a\\x14\\x85\\x66\\xd2\\xde\\x31\\x86\\xa5\\x41\\x2e\\x6e\\xd3\\x31\\\n\\x06\\xbc\\xc7\\xe5\\xa7\\xd4\\xf1\\xe3\\x05\\x41\\x2a\\x09\\x3a\\x71\\xe1\\x5e\\\n\\x3a\\x7c\\xa1\\xa4\\xde\\xa7\\x88\\xdd\\xe4\\x21\\xf7\\xa8\\xe7\\xbd\\x4e\\x1a\\\n\\xdc\\x9e\\x36\\xe5\\x08\\x98\\x6b\\x66\\x92\\xa5\\x0e\\x1e\\x30\\x0b\\x4a\\xd1\\\n\\x43\\xca\\x17\\x40\\x68\\x0d\\x47\\xeb\\x19\\x41\\xe1\\x19\\x3b\\xa0\\x21\\x24\\\n\\xe6\\xa0\\xcc\\x38\\xf7\\x43\\xed\\x05\\x9a\\x90\\x0f\\xce\\x16\\xd9\\x4d\\x69\\\n\\x6f\\x3a\\x1a\\x47\\xb7\\x09\\x3d\\xf5\\xf3\\xd3\\xe7\\x0d\\x62\\x79\\x90\\x85\\\n\\xad\\xa4\\x04\\x2c\\x05\\x05\\x52\\xf4\\x55\\xc7\\xaf\\xe6\\x04\\xcc\\xb1\\xb9\\\n\\x5a\\x47\\x4a\\x8f\\xd6\\x33\\x25\\x7d\\x21\\xb4\\x5a\\xc6\\xa2\\x13\\x94\\xfb\\\n\\xe4\\x53\\xbe\\x14\\xdb\\x64\\xee\\xa9\\x22\\xf0\\xfa\\x08\\x71\\x25\\x2b\\x14\\\n\\x17\\xa0\\x11\\x2f\\x32\\xda\\x99\\xca\\xe8\\x00\\x01\\x4a\\x57\\xde\\xeb\\x13\\\n\\xb3\\x52\\x92\\xb3\\x68\\x98\\x4d\\x1b\\x43\\x6a\\xaa\\xae\\x34\\xd3\\xef\\x18\\\n\\x8f\\x6a\\x30\\x56\\xd9\\x2e\\x09\\xd6\\xd6\\xbf\\xfe\\x20\\x45\\x6b\\xcb\\x5a\\\n\\xf2\\xe1\\x08\\xc7\\xe5\\xa7\\x53\\xf8\\x17\\x5d\\x89\\x6f\\x36\\xf2\\x6b\\xcc\\\n\\x6b\\xe7\\xc2\\x25\\xa5\\x0b\\x99\\x1c\\x55\\x8e\\xb9\\x69\\xa7\\x8f\\xed\\x0d\\\n\\xcb\\xa7\\x66\\x73\\x5c\\x01\\x71\\xcc\\x53\\x48\\x9a\\x97\\x4e\\x6c\\xc9\\xaa\\\n\\x47\\xe5\\xaf\\xdf\\xd0\\x87\\x90\\x9a\\xe6\\x15\\x07\\x8d\\xe3\\x0b\\xda\\xac\\\n\\xa8\\x36\\x09\\x21\\x35\\xd7\\x80\\x3f\\x2f\\x38\\x4b\\x4b\\x17\\x75\\x5a\\x6b\\\n\\xe1\\xac\\x4d\\x3b\\x2c\\x46\\xe2\\x07\\xaf\\x55\\xd3\\xc2\\x1c\\x71\\x3b\\x32\\\n\\x74\\xd7\\xd6\\x90\\xe3\\x8a\\x5b\\xa4\\x5e\\x9e\\x7a\\x42\\x29\\xf7\\x85\\xb4\\\n\\x90\\x92\\x32\\xfa\\xbc\\x7b\\x1a\\x0a\\xb3\\xd0\\xd7\\x81\\xe4\\x22\\x5f\\x3b\\\n\\x25\\x2a\\x49\\x35\\x16\\xd7\\xc2\\x30\\xdc\\x43\\x22\\xbf\\x16\\xfd\\xe6\\x24\\\n\\x1e\\x0f\\xae\\xa2\\xc0\\xc3\\x06\\x99\\x78\\xc2\\x8d\\x28\\x69\\x61\\xac\\x00\\\n\\x82\\x9a\\xd6\\xfc\\xa3\\x2a\\x4e\\x75\\xd3\\x43\\x08\\x52\\x76\\x66\\x89\\xcb\\\n\\x9a\\xde\\x50\\x85\\xad\\xa5\\x71\\x50\\xaf\\xae\\x70\\x68\\xbd\\xec\\xf9\\x4f\\\n\\x28\\x51\\xda\\xac\\xb7\\x9a\\x94\\xe3\\xa8\\xe1\\x0f\\xb3\\xb2\\x42\\x7f\\x10\\\n\\x2f\\x7b\\x40\\x29\\xc0\\xf5\\x85\\x51\\x49\\xa5\\x28\\x69\\x0c\\xa1\\x6d\\x9d\\\n\\xed\\x3d\\x73\\x87\\x50\\xdb\\x8d\\x95\\x67\\x09\\x3c\\xb5\\xf1\\xd6\\x1d\\x40\\\n\\x0b\\x55\\xea\\x2f\\xc2\\x14\\x9c\\x87\\x36\\xb0\\xf8\\x2c\\x83\\xf1\\xd7\\xc2\\\n\\x9e\\xbe\\xd0\\xdb\\xf9\\x5c\\xda\\x2b\\x51\\x60\\x9d\\x2b\\xc7\\x58\\x99\\x71\\\n\\x33\\x0e\\xa4\\x84\\x64\\xa7\\x5a\\x8b\\x44\\xd0\\x2a\\x09\\x39\\x74\\x20\\x77\\\n\\xd2\\x27\\xa7\\xdd\\x35\\x42\\x45\\x02\\x2a\\x9d\\x78\\xe9\\x4f\\x5d\\xd1\\xfd\\\n\\x48\\xb6\\x7d\\xda\\x9e\\x75\\xa7\\xaf\\x5d\\x22\\x43\\xb5\\x05\\x85\\x21\\x2b\\\n\\x97\\x52\\x93\\x98\\x02\\xad\\xa5\\x28\\x39\\xfb\\xb0\\x31\\x56\\x67\\xd8\\xfc\\\n\\x1a\\x67\\xa5\\x91\\x9c\\x7e\\x9f\\x68\\x42\\x77\\x57\\x9c\\xe5\\x71\\x1e\\xf2\\\n\\x35\\xbe\\xba\\x8f\\xad\\x21\\x89\\x47\\x26\\x8b\\x6a\\x4a\\x6c\\x15\\x7a\\xd8\\\n\\x0e\\xa4\\x98\\x61\\x94\\x30\\x8c\\xb9\\x2a\\x69\\x73\\xc0\\xdb\\xd5\\x22\\x65\\\n\\x17\\x2e\\xab\\x76\\x9c\\x29\\xf2\\x85\\x62\\x4b\\xad\\x00\\xa2\\x40\\xa6\\xed\\\n\\x2e\\x3d\\x79\\x43\\xeb\\x5a\\xce\\x60\\x48\\xb8\\xaf\\x18\\x5b\\xaf\\x29\\x34\\\n\\xcc\\x47\\x9c\\x22\\x62\\x61\\xbf\\xfa\\xa4\\xf9\\x88\\xc2\\xe6\\x1d\\x7d\\xaf\\\n\\xc4\\x49\\xa8\\x5a\\x86\\x63\\xea\\xf1\\x42\\x93\\xa1\\x3d\\x61\\x29\\xcc\\x3c\\\n\\x63\\x13\\x9e\\x63\\x0f\\x4b\\x99\\xd4\\x0e\\x40\\x0f\\x2a\\xd6\\x9f\\x4a\\xc4\\\n\\xd7\\x68\\xb0\\xc9\\x69\\x49\\x39\\xc5\\xbc\\xa2\\x27\\x1c\\x2d\\xa0\\x25\\x35\\\n\\x48\\x21\\x45\\x34\\xcf\\x5f\\x11\\x68\\x5e\\x25\\x87\\x9c\\xf9\\xe6\\x98\\x6d\\\n\\x29\\x6f\\x68\\x4a\\x96\\x90\\xaa\\x1a\\x1f\\x77\\xc7\\x9c\\x3f\\xda\\x3c\\x0b\\\n\\x13\\xc4\\x93\\x84\\x31\\x39\\x99\\xe7\\x92\\xa4\\x85\\xa4\\x65\\x1b\\x4d\\x53\\\n\\x95\\x57\\x19\\x8a\\x93\\x44\\x83\\xa9\\xd4\\x52\\xb0\\xe2\\xf1\\xb6\\xdf\\x32\\\n\\x45\\xc3\\x44\\x90\\xdc\\xb6\\xe9\\xa3\\xc9\\x1e\\xed\\x0d\\x6d\\x51\\xdf\\x48\\\n\\x6d\\xe9\\x69\\x44\\x25\\x9c\\x57\\x10\\x12\\x13\\xa0\\x55\\xc9\\x73\\xbe\\x52\\\n\\x0e\\x84\\xab\\x32\\x75\\xee\\xe1\\x05\\xf5\\x81\\x6a\\xf9\\x43\\xd3\\x93\\x49\\\n\\xba\\x09\\x02\\x9c\\x61\\x53\\x98\\x8b\\x96\\xcc\\x52\\x9d\\x4a\\xbb\\xa3\\x10\\\n\\xc4\\x71\\x29\\x56\\x73\\xb6\\xa5\\x39\\x41\\xf0\\xdf\\xe7\\x12\\xdd\\xb6\\x9c\\\n\\x24\\x07\\x59\\x73\\x95\\x6c\\x68\\x46\\xb5\\x15\\xa8\\xa7\\xc5\\x54\\xd0\\x57\\\n\\x52\\x48\\x04\\x76\\xb5\\xe7\\x4d\\x8e\\x5e\\x1a\\xc6\\x35\\x8d\\x3e\\xeb\\x4b\\\n\\x4e\\xf1\\xda\\x27\\x2d\\xab\\x7b\\x8e\\x22\\x36\\x8a\\xae\\xfd\\xbb\\xcf\\xeb\\\n\\xaf\\x4f\\x94\\x61\\x53\\x3b\\x1c\\x4a\\x59\\xc4\\x2e\\xe1\\xc4\\x85\\x27\\x50\\\n\\xa6\\xd4\\xa0\\x0d\\x49\\xd4\\x68\\x53\\xc8\\x8e\\x55\\x06\\x59\\x84\\xad\\xb4\\\n\\x38\\x8b\\x85\\x21\\x26\\xdc\\xe3\\x67\\xb8\\xa0\\x01\\xd2\\x26\\x5a\\xe9\\xf6\\\n\\xfa\\xc4\\xca\\x08\\x59\\xb1\\xa5\\xa3\\x07\\xda\\xb6\\xb5\\xe5\\x49\\x19\\x9b\\\n\\xa1\\xb1\\xfc\\xd5\\x89\\x84\\x4c\\x39\\xc4\\x80\\x6d\\x6e\\xb1\\xfd\\x3d\\x49\\\n\\x1f\\x88\\x69\\xff\\x00\\x28\\x9e\\x6d\\x96\\xd9\\xdd\\x79\\x19\\xff\\x00\\x20\\\n\\x50\\xaf\\x96\\xb4\\x30\\x91\\x52\\x78\\x98\\x40\\x36\\x85\\x34\\x92\\x2d\\x1b\\\n\\x01\\x5d\\x23\\x61\\x44\\xd8\\x12\\x6a\\x2d\\x0f\\xb3\\x95\\x36\\x55\\x16\\x7e\\\n\\x1e\\x3e\\x51\\x80\\xb8\\xa1\\x90\\x28\\x50\\x00\\x01\\x26\\xb1\\x2c\\xa0\\xa5\\\n\\x22\\x86\\xb5\\x1f\\x78\\x28\\x49\\x6e\\x84\\x80\\x48\\xb0\\x3f\\xa4\\x21\\x23\\\n\\x3e\\x5c\\xdc\\xa0\\x8c\\xbb\\x64\\xf1\\xcd\\x0d\\xa3\\x33\\x62\\xb6\\xa5\\xef\\\n\\xe3\\x02\\x99\\x82\\x35\\xa9\\x02\\xa3\\xaf\\x18\\x75\\xbc\\xaa\\xca\\x0c\\x6c\\\n\\x0a\\x4e\\x73\\x51\\x5e\\x30\\xb2\\x73\\x1a\\xfb\\xbe\\xb4\\xf0\\x86\\xf2\\x1d\\\n\\x08\\x34\\xe5\\x0e\\xa0\\x1e\\x90\\xf3\\x74\\xae\\xf8\\x1a\\x5a\\xb0\\xfe\\xe8\\\n\\xaf\\x33\\xaf\\x7f\\x08\\x34\\x57\\x10\\x21\\x28\\x4b\\xa3\\x7e\\xdd\\xfd\\x22\\\n\\x7d\\x80\\xd2\\xd2\\xa0\\x40\\x19\\x7c\\x2b\\x5f\\xe2\\x1e\\x9b\\x4b\\x6a\\xa1\\\n\\x29\\x15\\xd2\\xfc\\x63\\x1a\\xed\\x13\\x72\\x4c\\x57\\x68\\xdd\\x6b\\xc5\\x42\\\n\\xdc\\xf4\\xe4\\x2f\\x13\\x3d\\xaf\\x96\\x51\\x52\\x8c\\xc3\\x60\\xa8\\xd6\\x99\\\n\\xc5\\x6b\\xcb\\xbe\\x07\\x68\\x50\\xfa\\x80\\x6d\\x68\\x5d\\x7f\\x2a\\xc1\\xa7\\\n\\x43\\x48\\x94\\x76\\x65\\xe2\\xdf\\xe0\\x3a\\xa0\\xa2\\x3d\\xd4\\x13\\x5e\\xea\\\n\\x74\\x89\\x2c\\x22\\x78\\xa4\\x3e\\xd3\\xdb\\x03\\xae\\x45\\x9c\\x8a\\xff\\x00\\\n\\xc4\\xd0\\xf9\\xde\\xd1\\x85\\x3c\\x1b\\xda\\x37\\x38\\x85\\x2d\\xd1\\x65\\x2c\\\n\\x8d\\xd5\\x9e\\x87\\x43\\xf4\\x86\\xf1\\x19\\x26\\x5a\\x48\\xfe\\xd7\\x0b\\xa4\\\n\\x0a\\xf7\\x5e\\xf0\\x9c\\x49\\x87\\x1c\\xbb\\xa9\\x42\\x2a\\x29\\x9e\\xd5\\xbd\\\n\\xb8\\x46\\x25\\x32\\x95\\x1c\\xad\\x90\\xa1\\xfe\\x37\\x1c\\x78\\x8d\\x7e\\xd1\\\n\\xaf\\xcf\\xef\\x0d\\xa3\\x31\\x35\\x07\\x4e\\x5d\\xdc\\xe3\\x64\\x39\\x1f\\x28\\\n\\x0d\\x25\\x1d\\x60\\x4f\\xaa\\x58\\xd1\\x08\\x39\\x75\\xd2\\xde\\x87\\x28\\xc3\\\n\\xf1\\x04\\xcd\\x80\\x95\\x53\\x89\\xf2\\x10\\xe4\\xce\\xce\\xa1\\x24\\x10\\x23\\\n\\xb4\\xb2\\x13\\x38\\x8b\\x33\\x01\\x92\\xa0\\x54\\x9b\\x29\\x35\\x35\\xad\\x2d\\\n\\x6f\\xb4\\x4d\\x61\\x83\\x08\\xec\\x94\\xaa\\x26\\x68\\xfa\\xe5\\xdc\\x71\\xda\\\n\\xaa\\xee\\xa2\\x85\\x4b\\xf7\\x6b\\x54\\x83\\xcc\\x88\\xc5\\xa7\\x9a\\xc4\\x26\\\n\\xd6\\xe8\\x98\\x7d\\x00\\xdb\\x22\\x5c\\xa0\\xf2\\x06\\xe3\\x85\\xe2\\x5c\\x31\\\n\\x2b\\x34\\xdb\\xed\\x4e\\x29\\xb7\\x90\\xb0\\xa4\\x57\\xf3\\x03\\x51\\xa1\\xd6\\\n\\xb1\\x85\\xe2\\x12\\xf8\\x86\\x08\\xc4\\xf1\\xd9\\xbf\\x3e\\x89\\x54\\xa5\\x9c\\\n\\x84\\x54\\xcc\\x52\\xee\\x53\\x5a\\x66\\xb1\\xee\\x23\\x58\\x7f\\xb1\\xd3\\xb8\\\n\\xbb\\xab\\x9e\\xc6\\x1e\\x7c\\xcf\\x3a\\xa5\\x67\\xc8\\xf2\\x92\\x9c\\x81\\x47\\\n\\x66\\x32\\x83\\x41\\x44\\x9a\\x7e\\xf1\\xec\\xd0\\xd4\\xab\\x19\\x4a\\xa6\\x2c\\\n\\x91\\xce\\x3b\\x47\\x8b\\x4b\\xe1\\xc8\\x70\\xca\\xa4\\x3b\\xc0\\x24\\x71\\x24\\\n\\x80\\x09\\xe4\\x07\\x3d\\x61\\x91\\x8d\\xe2\\x8c\\x3a\\xa7\\x15\\xec\\xcc\\x1d\\\n\\x37\\x55\\xf2\\xcc\\x45\\xba\\x90\\x21\\x52\\xb9\\x6d\\x5a\\x94\\x8a\\x13\\xce\\\n\\x9c\\x61\\x2c\\x90\\x62\\x62\\x58\\xba\\xca\\xd1\\xc6\\x9f\\x43\\xf2\\xe9\\xd6\\\n\\x26\\x53\\x91\\x65\\x2b\\x56\\x5d\\xea\\x0a\\xfa\\xe5\\xe7\\x18\\x43\\x01\\xd9\\\n\\xe9\\x64\\x20\\x66\\x53\\x8e\\xa2\\x94\\xaf\\x05\\x54\\x9f\\x20\\x4f\\x28\\xc3\\\n\\x18\\x53\\x72\\xcd\\x05\\x0f\\x81\\x3f\\x4f\\x55\\x8c\\x96\\x24\\xf2\\x27\\xef\\\n\\x13\\x7a\\x13\\xd0\\xfc\\xe1\\xc4\\x95\\xd6\\x0c\\xe2\\xe5\\xec\\xde\\xa2\\xde\\\n\\x1f\\xc8\\x1e\\x50\\xee\\x2d\\x32\\xae\\x7f\\x3f\\x3f\\x08\\x5c\\xf4\\xe3\\x9e\\\n\\xfb\\xc6\\x14\\xb2\\x55\\xbc\\x73\\x2b\\xf3\\x43\\x3e\\xff\\x00\\x84\\x32\\xce\\\n\\x68\\x53\\x39\\x6b\\x78\\x48\\xb8\\xef\\x11\\x4c\\xc8\\x21\\x1e\\xf8\\xaa\\xad\\\n\\xfe\\x35\\x27\\xe5\\x0c\\x86\\xf1\\x26\\xdd\\x2d\\x1a\\xba\\xc9\\xa5\\x8f\\x11\\\n\\xaf\\x94\\x60\\xf2\\xef\\xa1\\x95\\x17\\x39\\xfa\\xf2\\x89\\x25\\xe4\\xd9\\x1e\\\n\\x51\\x9b\\x3b\\x7b\\x41\\xaa\\x47\\xed\\x0d\\x67\\xda\\x66\\xbe\\xb0\\x4d\\x56\\\n\\x49\\xe2\\xaf\\xd2\\x17\\x98\\x24\\x65\\x86\\x68\\x12\\xa3\\xf1\\x00\\x48\\xef\\\n\\xa5\\xbe\\x70\\xd6\\xd1\\x5b\\xeb\\x87\\x16\\xb7\\x0e\\xcc\\x68\\x21\\x4c\\x10\\\n\\x28\\xbe\\x3f\\xbc\\x06\\xd0\\xd5\\x3d\\x72\\x89\\x85\\x50\\x41\\xd9\\x29\\xa2\\\n\\xb2\\x45\\x6a\\x7c\\x84\\x4e\\x3b\\x65\\x0e\\x15\\xe3\\x0c\\x2f\\x6a\\xac\\xb1\\\n\\x4c\\xb1\\xda\\x29\\xd5\\xcb\\x4b\\xe6\\x4a\\x33\\x50\\x57\\xf6\\xb4\\x62\\xd8\\\n\\xfb\\xee\\x2d\\x09\\x4a\\x32\\x5e\\x99\\x8d\\x7e\\x7a\\x18\\x46\\x0b\\x88\\x63\\\n\\x5b\\xef\\xb4\\xa1\\x2e\\x2c\\x91\\x7a\\x01\\x44\\xe6\\x59\\x35\\x05\\x4a\\x5a\\\n\\x81\\x27\\x44\\xf7\\x50\\x44\\xbf\\xfa\\x75\\x21\\xaa\\xd2\\x8b\\xef\\x13\\x90\\\n\\x7c\\x57\\xe5\\x12\\xfd\\x8b\\xc2\\x25\\x08\\x3b\\x34\\xa8\\x9b\\xd8\\x0e\\x1d\\\n\\xd1\\x2f\\x2b\\x21\\x2c\\x8c\\xad\\x36\\x33\\x50\\x04\\x9a\\x68\\x78\\x7f\\xe9\\\n\\xbc\\x14\\x48\\xe2\\x61\\x2e\\xe5\\xa6\\x7a\\xa9\\x23\\x87\\x0e\\xb6\\xe5\\xfc\\\n\\xc2\\x5c\\x93\\x98\\x65\\xe5\\xec\\x52\\x16\\x96\\xed\\x44\\xe8\\xaa\\x58\\x8f\\\n\\x1a\\x5e\\x14\\xeb\\x94\\xf3\\xf5\\xfb\\xc3\\x6e\\x58\\x56\\xc6\\xfa\\xc3\\x4b\\\n\\xbf\\x84\\x6d\\x07\\xa3\\xff\\x00\\xa3\\xc9\\x2b\\x45\\x22\\x55\\xef\\x65\\x20\\\n\\xf8\\x79\\x98\\x4e\\x57\\xdb\\x0b\\x41\\xd6\\x96\\xe4\\x79\\x7a\\xfb\\xc2\\x90\\\n\\x47\\x84\\x62\\x38\\x78\\xc5\\x65\\x17\\x20\\x48\\x49\\x75\\x54\\x0a\\x56\\x83\\\n\\x74\\x8b\\xf4\\xf1\\xbc\\x76\\xc3\\xfd\\x2d\\xc5\\x70\\x42\\xe3\\xb2\\x2f\\x3f\\\n\\x3a\\xf9\\x75\\x2a\\x6b\\x22\\x8a\\x9b\\x6d\\x2a\\x79\\x25\\x69\\xcb\\x61\\x66\\\n\\x8a\\x93\\x7a\\xde\\xfe\\xf4\\x61\\x1d\\x91\\x99\\xc7\\x1f\\x9b\\xc3\\xdd\\x93\\\n\\x7d\\x13\\x74\\x4a\\x9b\\x99\\x39\\x81\\x62\\x94\\x06\\x84\\x9a\\x24\\x85\\x5e\\\n\\xa3\\xdf\\x0a\\xcb\\x70\\x23\\xb3\\x58\\x2b\\xd8\\x3c\\x9c\\xac\\x9a\\x8a\\x94\\\n\\xa9\\x76\\x10\\xca\\x94\\xab\\x95\\x29\\x23\\x78\\xf8\\x9a\\x9e\\xef\\x91\\x96\\\n\\x70\\xde\\x90\\xe1\\x61\\x86\\x89\\x5b\\xc1\\x44\\x77\\x44\\xf4\\xe3\\xd3\\x44\\\n\\xb1\\x2e\\xf6\\xe9\\xe5\\x4f\\x1e\\x1c\\xa1\\x9c\\x36\\x4d\\xb3\\x9e\\x69\\xa0\\\n\\xeb\\xb5\\xf7\\xd6\\xa5\\x1b\\xf7\\x56\\x9f\\x28\\x75\\xa9\\x75\\xcb\\xec\\x52\\\n\\x84\\xa5\\xba\\x7b\\xa2\\xa3\\xe7\\xfb\\xc4\\xc3\\x0c\\x32\\x54\\x85\\x1a\\xd5\\\n\\x44\\x27\\x98\\xbd\\xbc\\xba\\xc1\\x95\\x5a\\x2f\\xb4\\xce\\x17\\xbc\\x9d\\x37\\\n\\x47\\x2f\\xe6\\x15\\x99\\x00\\x92\\x6c\\x2e\\x45\\xb4\\x8c\\x6c\\x21\\x53\\x88\\\n\\x43\\x63\\xdf\\xde\\x50\\x03\\x5a\\xd6\\xbc\\x6c\\x40\\xad\\x29\\x1d\\x8e\\xc0\\\n\\x24\\xda\\x32\\xf3\\xaf\\xa8\\x17\\x0b\\x68\\x5a\\x73\\x12\\x32\\x66\\xbd\\x00\\\n\\xad\\x2f\\xe7\\xc3\\x48\\x7f\\x1b\\x95\\x90\\x6d\\xb0\\x68\\xf5\\x41\\x02\\x9f\\\n\\x0d\\x00\\xe4\\x78\\xc6\\x27\\xdb\\x8d\\x9d\\x53\\x2c\\x92\\x9a\\xd4\\x0a\\x0a\\\n\\xde\\x9d\\x6b\\xf3\\xb4\\x1e\\xd7\\x4d\\x3b\\x65\\x25\\x66\\xff\\x00\\x97\\x87\\\n\\x80\\x8c\\x3f\\x1e\\x44\\xc2\\xb2\\x3a\\x28\\xab\\x83\\x5b\\x7d\\x3f\\x88\\x59\\\n\\x6c\\xa9\\x4b\\x14\\xa1\\x14\\xf5\\xfa\\x43\\x8a\\x47\\x48\\x39\\x4e\\xb7\\x81\\\n\\xb3\\x49\\xa5\\x3e\\xb0\\xca\\xf2\\xaa\\xbd\\x22\\x52\\x76\\x8a\\xca\\x4d\\xaa\\\n\\x39\\x44\\xf3\\xb2\\x94\\xdc\\x58\\x4e\\xe8\\xeb\\x05\\xda\\x02\\xa4\\xaf\\x30\\\n\\xa9\\xe5\\xfa\\x44\\xbe\\x23\\x45\\xee\\xa6\\xfb\\xc8\\xa9\\xa9\\xb2\\x86\\xf5\\\n\\x81\\x1a\\x8a\\xf1\\xe3\\x12\\xf3\\x0f\\xe1\\x73\\x8e\\x2a\\x59\\x61\\x08\\x7c\\\n\\xe7\\x55\\x12\\x08\\x25\\x5c\\x29\\x7c\\xba\\xf0\\xfd\\x63\\x0d\\xc5\\x26\\x1f\\\n\\xa3\\x61\\x67\\x22\\xb5\\x19\\x52\\x3a\\xf2\\x1c\\xe1\\x8b\\x25\\x15\\xe5\\x0d\\\n\\x38\\x76\\x45\\x20\\xea\\x05\\xa3\\x31\\x0d\\xd4\\x74\\x84\\x15\\x13\\x53\\xc6\\\n\\xf0\\x94\\x05\\xa5\\x54\\xf8\\x6f\\x09\\x29\\x4a\\xf2\\xf3\\x34\\x87\\x08\\x4b\\\n\\x27\\x9c\\x30\\xb5\\x03\\x9b\\x8f\\x3a\\x43\\xce\\x85\\x21\\x39\\xb8\\x1f\\xb1\\\n\\x87\\x17\\x98\\x8b\\x5a\\xa3\\xe4\\x62\\x61\\x4d\\xb8\\x28\\x07\\x0e\\x70\\xfa\\\n\\x72\\x02\\x3c\\x78\\xc4\\xc8\\xcf\\x50\\x35\\x89\\x72\\x59\\x59\\xe7\\xeb\\xeb\\\n\\x15\\x2b\\x06\\xb1\\x8d\\x00\\x65\\x56\\x85\\x00\\x6c\\x4e\\x91\\x31\\x86\\x3b\\\n\\x3a\\xfe\\xc5\\xb4\\x5c\\xaf\\x76\\xda\\x50\\xd7\\xed\\x18\\x6c\\xa3\\xd2\\xb8\\\n\\x72\\x19\\x71\\xb0\\x68\\x9a\\x52\\x97\\xaf\\x87\\xd6\\x0a\\x37\\x40\\xd0\\x53\\\n\\x4e\\x5d\\x21\\x48\\x4a\\x6d\\x4a\\xd6\\x14\\x87\\x05\\x54\\x9e\\x1d\\x3d\\x77\\\n\\x43\\x04\\x1f\\x7c\\x66\\xe8\\x7f\\x68\\x29\\x45\\x77\\x45\\xa1\\xd0\\x68\\x02\\\n\\x79\\xdf\\xd5\\xed\\x12\\x7f\\x90\\xfc\\x76\\x3d\\x6b\\xcf\\xd5\\xa2\\x61\\xac\\\n\\xb3\\x2e\\x36\\x05\\x10\\x9a\\xd3\\xd7\\xaf\\xd5\\x29\\xb5\\xf5\\xa9\\xfa\\xdb\\\n\\xe5\\x09\\xb4\\x54\\xf3\\x84\\xa8\\x1e\\x30\\x69\\x48\\x52\\x12\\xe1\\xa7\\x8f\\\n\\x94\\x61\\xb8\\x8b\\x06\\xb2\\xc6\\x88\\x52\\x6b\\x4a\\x8b\\x2a\\x83\\x9f\\x03\\\n\\xcb\\x9e\\x9d\\xee\\x2f\\x3a\\xad\\x60\\x2b\\x48\\xfc\\xc3\\x98\\xe5\\x78\\x9f\\\n\\x75\\xc9\\x76\\x56\\xe2\\x51\\xb6\\x48\\xb1\\x69\\x49\\x0a\\xcd\\x53\\x4a\\x55\\\n\\x57\\x11\\x23\\x2f\\x2a\\xf2\\x13\\x30\\xcc\\xa2\\x25\\x5e\\x75\\x3b\\xeb\\x4a\\\n\\x72\\xa9\\x27\\x8a\\x48\\x3c\\x89\\xb4\\x32\\x92\\x95\\x90\\xb3\\x9a\\x87\\x5a\\\n\\x5c\\xd2\\x12\\xa4\\x81\\xa0\\x82\\xb5\\x3a\\xde\\x77\\x56\\x52\\x0f\\xc2\\xa3\\\n\\xbd\\x0a\\x6c\\x4b\\xb1\\xf8\\x00\\x85\\xa8\\xe6\\x05\\x5c\\x8f\\x9e\\xb0\\xc9\\\n\\x5b\\x8d\\x7e\\x31\\xaa\\xea\\x2e\\x2c\\x21\\xe5\\x38\\x54\\x96\\x59\\xae\\x63\\\n\\xc7\\x87\\xd6\\xb1\\xff\\x00\\xb5\\x4c\\xcb\\x45\\xd5\\xad\\x39\\xa9\\x5a\\x51\\\n\\x5a\\xeb\\x6b\\x44\\xc6\\x15\\x3a\\xdb\\x8a\\x6d\\xb6\\xd4\\xe2\\x52\\x69\\x50\\\n\\x09\\xa7\\xde\\x15\\x83\\xcf\\xa8\\x1c\\xcd\\x94\\xa7\\x8d\\x41\\x89\\xac\\x05\\\n\\xd5\\xcd\\xb4\\xf2\\xb2\\xe5\\x6d\\x43\\x32\\x68\\x6a\\x40\\x3e\\x5e\\x7c\\x2b\\\n\\x0d\\x6d\\x1b\\xa0\\x6f\\x32\\x40\\xb0\\x1d\\x21\\x6a\\x74\\xa2\\x85\\x55\\xff\\\n\\x00\\x94\\x28\\x28\\x2f\\x7f\\x21\\xbf\\x2f\\xd6\\x12\\x85\\x9d\\x02\\x75\\x80\\\n\\xc6\\x53\\x9c\\x26\\x8e\\x71\\x50\\x16\\xaf\\xaa\\x43\\x4a\\x74\\x0a\\x28\\xf0\\\n\\xb4\\x38\\xb3\\x0a\\x7c\\x0e\\x04\\xf7\\x44\\xa5\\x66\\x57\\x44\\xa4\\xa3\\xaa\\\n\\xf4\\xf9\\x7a\\xf3\\x87\\x1b\\x0c\\xee\\x7b\\xca\\xff\\x00\\x18\\x66\\x45\\x67\\\n\\x7c\\x59\\x3d\\x6b\\x58\\x73\\x0d\\xda\\xd0\\xed\\x0f\\x8d\\x78\\x6b\\xe8\\xd2\\\n\\x1a\\xc3\\xb6\\x6d\\x14\\xd4\\x53\\x89\\x3f\\xc4\\x2e\\x53\\x64\\xba\\xa4\\xa9\\\n\\x42\\xbe\\xe2\\x49\\xad\\xcd\\x38\\xda\\xd5\\xef\\x87\\x70\\x00\\x64\\xc3\\xe8\\\n\\xc9\\x9b\\x2d\\x72\\x9a\\x95\\xf9\\xc6\\x0d\\x26\\x94\\x52\\xc3\\x32\\x75\\x1d\\\n\\x61\\x35\\x14\\xe9\\x0c\\xae\\xb4\\x1c\\xe0\\x1a\\xa3\\x2c\\x26\\x89\\x4a\\x78\\\n\\x98\\x15\\x69\\xb5\\x28\\xa8\\x51\\x56\\xfb\\xc7\\xe1\\x24\\x07\\x54\\xb4\\x9b\\\n\\xd8\\x5e\\xbc\\x21\\xd5\\x6d\\x05\\x45\\xbb\\xe2\\x4d\\xa4\\xba\\xd9\\x4d\\x37\\\n\\x91\\x5a\\xf2\\x3e\\xba\\xc2\\x98\\x0e\\x0c\\xa2\\xd4\\xe7\\x0a\\x97\\x09\\xd4\\\n\\x0e\\x50\\xfa\\xb6\\x56\\xac\\x4c\\xac\\xe4\\x2a\\x26\\xb6\\x85\\xa8\\x95\\x92\\\n\\x21\\x9a\\x67\\xde\\x4d\\x7b\\xa1\\xbb\\x54\\x18\\xc4\\x9a\\x43\\xc9\\xcb\\x61\\\n\\xbb\\xc7\\xbe\\x26\\x56\\xd6\\x1a\\xa5\\x3a\\x94\\xe7\\x75\\x27\\x77\\x2f\\x5b\\\n\\x71\\xbc\\x4b\\x76\\xa1\\xcf\\xfa\\x8d\\xa9\\x43\\x90\\xa6\\x91\\x39\\xdb\\x29\\\n\\x76\\x5d\\x29\\x5c\\xb4\\xcd\\x54\\xa3\\x71\\xb3\\xa5\\xcf\\x7f\\x94\\x49\\xe3\\\n\\x92\\xd3\\xa4\\x51\\x5b\\x2a\\xe8\\x1c\\x29\\xad\\x78\\xe8\\x4d\\x29\\xa7\\x7c\\\n\\x34\\xc9\\x5e\\x55\\x67\\x4a\\x92\\x68\\x48\\x15\\xb8\\xfe\\x21\\x4c\\x84\\x9f\\\n\\x76\\x15\\xba\\x79\\xc0\\xbe\\xbd\\xde\\x30\\xc9\\xca\\xfb\\x67\\x86\\xd1\\x35\\\n\\xff\\x00\\xca\\x26\\xd8\\xfc\\x55\\x3c\\x29\\x43\\x5b\\x71\\x1d\\xfc\\x20\\xa6\\\n\\xe4\\x54\\x40\\x17\\xd7\\xa4\\x29\\x19\\x40\\xb8\\x30\\x92\\x44\\x6d\\x77\\x69\\\n\\x4f\\x5e\\xb8\\x40\\x0a\\x2a\\xb1\\x09\\xaf\\x3e\\x5e\\xbd\\x6b\\x05\\x28\\x6e\\\n\\x8a\\x6b\\xfb\\xa0\\x8a\\x9d\\x52\\x68\\x7e\\x63\\xeb\\x0c\\x4d\\x22\\x61\\x23\\\n\\x40\\xb4\\xa4\\x56\\x80\\x50\\x9e\\x24\\x01\\x4d\\x79\\x1a\\xc6\\xaa\\xe6\\x3c\\\n\\xbe\\x71\\x97\\x36\\x80\\x12\\x2f\\x42\\x2a\\x29\\x4e\\x31\\x5d\\xf0\\x8a\\x50\\\n\\xf1\\xca\\x28\\x01\\xe4\\x2f\\x7f\\x5e\\x09\\x67\\xae\\x95\\xbf\\x8c\\x6c\\xd5\\\n\\xf9\\x87\\x91\\x8c\\x59\\xa2\\x42\\x16\\xd5\\x92\\x0d\\xc0\\xe5\\x0d\\x11\\x32\\\n\\xdb\\x55\\x1e\\xea\\x12\\x83\\x5e\\x63\\x9f\\x08\\x5c\\xb7\\xc2\\x91\\xc6\\xba\\\n\\x72\\x8c\\x3e\\x5d\\x26\\x7d\\xb0\\xa1\\x51\\x68\\x7d\\xe6\\x58\\x41\\x40\\x00\\\n\\xda\\x96\\xfe\\x61\\x86\\xd0\\xe0\\x70\\xb4\\x94\\xd0\\xaa\\xf5\\xa6\\xb4\\xeb\\\n\\xd2\\x13\\x84\\xb8\\xf9\\xa2\\x92\\x36\\x67\\xde\\x34\\x14\\xa7\\x7f\\x7c\\x62\\\n\\xf8\\x13\\x2c\\x55\\x60\\x01\\x4e\\x50\\xe2\\x5b\\x6d\\x4a\\x16\\xa8\\x24\\x46\\\n\\xea\\xf4\\xe1\\x0b\\x95\\x0a\\xbd\\x21\\xa6\\x12\\x38\\x01\\x78\\x5a\\x12\\x84\\\n\\x7b\\xb7\\xa7\\xaf\\x08\\x5b\\x97\\xca\\x01\\xf2\\x80\\x85\\x2c\\x68\\x6f\\xd0\\\n\\xc3\\x52\\x81\\x27\\x7a\\xf1\\x2e\\xdb\\x6d\\x9b\\x01\\x58\\x66\\x58\\xb9\\x35\\\n\\x9d\\x40\\xe4\\xca\\x75\\xad\\x3d\\x5a\\x32\\x36\\x94\\x50\\x65\\xd3\\x84\\x25\\\n\\x09\\xe5\\x0a\\xa0\\x6d\\x51\\x35\\x36\\xa6\\x5c\\xaa\\x05\\x4e\\x61\\xf3\\x39\\\n\\x7f\\x7e\\x91\\x86\\x4b\\x4e\\x4c\\x30\\x1d\\x2a\\x19\\x69\\xee\\xd4\\x69\\xdd\\\n\\x58\\x69\\xb2\\xcb\\x97\\xb5\\xef\\xc2\\xf0\\x3d\\xd4\\x1f\\xf1\\x86\\x75\\x4f\\\n\\x84\\x4b\\xa3\\x35\\xc8\\xf5\\xdf\\x08\\x92\\xcc\\x4a\\xaa\\x29\\xc2\\xf0\\xa4\\\n\\x35\\x91\\xc4\\x39\\xc0\\x0a\\x43\\x92\\x4d\\x16\\x92\\x51\\x5a\\x83\\x5f\\x23\\\n\\x5f\\x55\\x84\\xa3\\x72\\x94\\xbf\\xae\\x11\\x85\\x24\\x67\\x76\\xba\\x5f\\xe9\\\n\\x0a\\x64\\x25\\x15\\xff\\x00\\x2f\\xd6\\x1d\\x47\\xce\\x26\\xe4\\xf7\\x49\\xac\\\n\\x4c\\xd5\\x29\\x28\\xd7\\x58\\xcb\\xa9\\x22\\x18\\x6e\\xaa\\xd3\\xca\\x1c\\x34\\\n\\xd2\\x27\\xd4\\xa2\\xd9\\x50\\x37\\x02\\x27\\x12\\xb7\\x9d\\xa2\\xaa\\x47\\xe9\\\n\\xeb\\xd7\\x06\\x65\\x47\\x21\\xeb\\x84\\x62\\x58\\x4a\\x5f\\x4e\\x6c\\xb7\\xe7\\\n\\xd6\\x26\\x64\\xa6\\xa5\\x14\\x1c\\x65\\xc5\\x0d\\x9d\\x49\\x48\\x3c\\xef\\x6a\\\n\\xf8\\xdb\\xce\\x3b\\x21\\xda\\x32\\xfa\\xd9\\x94\\x98\\x34\\x52\\x96\\x96\\xea\\\n\\xbd\\xdf\\x1d\\xe3\\x6f\\xe0\\xf4\\x85\\x34\\x08\\xad\\x8d\\x74\\xe5\\x0b\\x63\\\n\\x5b\\x69\\x78\\x58\\xa1\\xe3\\xfa\\x42\\x6b\\xb4\\x47\\x78\\xfa\\xc2\\x5a\\xdb\\\n\\x27\\x7a\\x1f\\xc3\\x94\\x09\\x52\\x45\\xb4\\xb7\\xaf\\xdf\\xaf\\x08\\xfe\\x9a\\\n\\xb0\\xde\\x7a\\x50\\x9b\\xd3\\x9f\\xaf\\x9f\\xd7\\x62\\xaa\\x90\\x52\\xa3\\x4a\\\n\\x9d\\x3e\\x90\\x52\\x6b\\xa1\\xf1\\x11\\x94\\xf2\\x30\\x12\\xb2\\x40\\x00\\xd7\\\n\\xb8\\xc7\\xb3\\xb8\\x78\\x2b\\xc0\\x18\\x6d\\xb5\\x30\\x41\\xca\\xbf\\x25\\x44\\\n\\xb9\\x53\\xab\\x4d\\xb4\\x15\\x3c\\x22\\x71\\xe5\\x30\\xaa\\x20\\xe5\\xcd\\x5d\\\n\\x22\\x59\\x39\\x93\\x9c\\xea\\x46\\xa7\\xd7\\xda\\x10\\x9d\\xdb\\x71\\xbd\\x7c\\\n\\x23\\x4e\\x30\\xdc\\xfb\\x8e\\x20\\xe6\\xe3\\x18\\x53\\xbb\\x45\\xec\\x39\\xaf\\\n\\x37\\x9d\\x21\\xf9\\x75\\x32\\xd9\\x50\\x17\\xb7\\xce\\xd1\\x86\\xb4\\x10\\xf6\\\n\\xd5\\x76\\x85\\x61\\xcc\\x38\\xd0\\x52\\x48\\xdf\\x4e\\x6f\\x31\\x58\\x96\\x92\\\n\\x62\\x55\\x0f\\x6d\\x4d\\x12\\x57\\x5b\\xf7\\x46\\x23\\xda\\x44\\x48\\xb4\\xeb\\\n\\x72\\xaa\\x04\\x52\\x87\\x8c\\x62\\xbd\\xad\\x98\\x78\\x64\\xb9\\x3a\\x44\\x88\\\n\\x72\\x79\\xd2\\x54\\x0d\\x54\\x6a\\x41\\xe7\\x03\\x0e\\xd9\\x81\\x4d\\x4e\\xbf\\\n\\x78\\x32\\x64\\x36\\xb5\\x7e\\x54\\x93\\xe5\\xeb\\xc6\\x1b\\x60\\xad\\xc1\\x4f\\\n\\xe2\\x18\\xc2\\x1d\\x7c\\xd9\\x54\\x0a\\xfd\\x39\\x42\\xfb\\x2b\\x30\\x0e\\x6c\\\n\\xdf\\x38\\x5e\\x0b\\x3c\\xd7\\xba\\x6d\\xf5\\x81\\x85\\x4d\\x29\\x25\\x59\\x15\\\n\\xe5\\x0d\\x4a\\x4c\\x07\\xa8\\x52\\x69\\x08\\x61\\x49\\x40\\x1d\\xd1\\xb3\\x30\\\n\\x46\\x58\\x7d\\x7c\\x2b\\xa8\\x87\\xa5\\xd6\\xa3\\x98\\x0b\\xdb\\x4e\\x76\\xac\\\n\\x60\\xee\\x86\\x65\\xd3\\x9c\\xd2\\x83\\x8c\\x4c\\xec\\x9d\\xc8\\xa4\\x9b\\xd0\\\n\\x18\\x40\\xaa\\x51\\xd0\\x42\\x0d\\xb2\\xf3\\xa0\\x89\\x77\\x3f\\x0f\\x27\\x48\\\n\\x96\\x55\\xb2\\xf7\\x08\\x52\\x2a\\xaa\\x7e\\x68\\x08\\xf6\\x74\\xff\\x00\\xcc\\\n\\x53\\xce\\xd0\\x94\\xd1\\xc7\\x7b\\x8c\\x4a\\x32\\x36\\x29\\x5f\\xc4\\x4a\\xbe\\\n\\xa6\\x03\\x84\\x12\\x0d\\x69\\xc2\\x16\\x9a\\xd7\\xce\\x27\\x97\\x63\\xeb\\xac\\\n\\x4c\\x9a\\xba\\x7b\\x84\\x2e\\x85\\x30\\x85\\xb8\\xc1\\xaa\\x60\\xfb\\xa4\\xf3\\\n\\x35\\xfa\\x44\\xdf\\xc5\\xeb\\x84\\x3f\\xef\\xf9\\xfd\\xe1\\x9f\\xee\\x0f\\x5c\\\n\\x0c\\x3c\\xca\\x9c\\xa8\\x22\\xd1\\x3d\\x84\\xed\\x13\\x54\\xeb\\x7a\\xc3\\x18\\\n\\x6e\\xc2\\x61\\x2e\\x52\\xe9\\x58\\x55\\x78\\xd3\\xd7\\x7c\\x60\\xaf\\xfb\\x64\\\n\\x9a\\x00\\xbe\\xc8\\x7d\\x04\\x04\\x07\\x2a\\xaa\\x88\\x9d\\x5e\\x55\\x04\\x23\\\n\\x81\\x86\\x1b\\x71\\xc7\\x50\\x69\\xf1\\xa7\\xeb\\x1b\\x38\\x1a\\x52\\x9c\\x21\\\n\\x74\\x22\\x86\\x28\\xdf\\x08\\x9a\\x95\\x0b\\x58\\x30\\xdb\\x4c\\x02\\x12\\xb1\\\n\\x7e\\x66\\x36\\x6c\\x24\\x55\\x09\\x19\\xf9\\x88\\x22\\xe7\\x8c\\x2d\\x60\\x08\\\n\\x6d\\xc4\\xfe\\xbc\\xff\\x00\\x88\\x7d\\x83\\x30\\xf0\\x50\\x16\\x4d\\xe3\\x64\\\n\\x52\\x80\\x21\\xa1\\x44\\x0e\\x74\\x8a\\xc6\\x0c\\xd3\\x53\\x03\\x2c\\xda\\x4d\\\n\\x78\\x04\\x9c\\x9f\\x48\\x6f\\x0d\\x4c\\x89\\x4c\\xe4\\xb8\\x50\\xa2\\xe8\\x73\\\n\\x2b\\x38\\xa5\\xb9\\xc2\\x9f\\x44\\xf3\\x29\\xc8\\x45\\x68\\x33\\x75\\x22\\x16\\\n\\xcb\\xa2\\xc3\\xe9\\x18\\x56\\x28\\xb9\\x80\\xb4\\xd6\\xcc\\x92\\x83\\x5f\\xf0\\\n\\xdd\\xfb\\x47\\x69\\x7b\\x4b\\x95\\xd4\\xc9\\x30\\x2b\\x9d\\x0a\\xce\\xa1\\x7a\\\n\\x1c\\xd4\\xb9\\xe1\\xeb\\x58\\x5c\\xca\\x9a\\x4a\\xcb\\x8e\\xa7\\x7c\\x59\\x27\\\n\\x5d\\x62\\x51\\x2b\\x98\\x7a\\xaa\\x96\\x5b\\xa9\\xe6\\x90\\x44\\x49\\x30\\xd4\\\n\\xb9\\xce\\x86\\x54\\x82\\x6e\\x42\\x89\\xb7\\x4b\\xfd\\x23\\x30\\x34\\xa7\\x8c\\\n\\x1a\\x29\\x0a\\x41\\xf8\\x92\\x44\\x06\\xd6\\xd3\\xfb\\xbe\\xe5\\x7d\\x5f\\xc2\\\n\\x25\\xe6\\x12\\xdc\\xc3\\x74\\x51\\xde\\xcb\\x5b\\xdb\\x5a\\x5b\\x91\\x85\\xcc\\\n\\xb6\\x12\\x05\\x4e\\x95\\xe3\\xdd\\x09\\x98\\x65\\x75\\xcd\\xc8\\xf9\\xde\\x18\\\n\\x70\\x2d\\x39\\x02\\x53\\x4a\\x7e\\x51\\xeb\\x48\\x99\\x60\\x36\\xb2\\x42\\x46\\\n\\x82\\xf4\\x1c\\x61\\xc2\\x33\\x5b\\xd7\\x0f\\xe2\\x15\\x90\\x27\\xa9\\x87\\xca\\\n\\x69\\x63\\xc3\\x58\\x56\\x52\\xe0\\x17\\xe0\\x68\\x39\\x54\\xfd\\xf4\\xf4\\x20\\\n\\xa1\\x93\\x42\\xd8\\x22\\x9e\\xf5\\x55\\x5b\\xf7\\x7e\\xb0\\x15\\x54\\xe5\\xad\\\n\\xb9\\x0b\\x7f\\x10\\xdb\\xc1\\x05\\x20\\x13\\xc3\\x5f\\x5f\\x28\\x97\\x78\\x16\\\n\\x89\\xb5\\x45\\x21\\x13\\x54\\x50\\x24\\x88\\x96\\x9c\\x1f\\x98\\x44\\xac\\xc2\\\n\\x4a\\x56\\xaa\\x8a\\x88\\x0f\\x66\\x0d\\x2c\\x9d\\xea\\x9e\\x82\\x1d\\x77\\x6b\\\n\\x93\\x37\\xc2\\x45\\x29\\x6e\\xb0\\xb5\\xe5\\x70\\xd3\\xe2\\xd7\\xe7\\x0c\\xb8\\\n\\x94\\xb6\\x94\\x8a\\xd6\\xfa\\xf5\\x35\\xd2\\x17\\x5a\\x55\\x5a\\x70\\xb5\\x20\\\n\\x38\\x91\\x50\\xbe\\xbf\\xb4\\x4f\\x1d\\xd3\\x71\\x13\\x2b\\x21\\xc3\\x71\\xc2\\\n\\x33\\x95\\x71\\x8d\\xaa\\xa9\\x4b\\x79\\x46\\x63\\x94\\xfa\\xe5\\x13\\x15\\x39\\\n\\xa2\\x60\\x6f\\x75\\xbf\\xde\\x19\\x41\\xad\\x78\\xde\\x32\\x24\\xa0\\x54\\x7c\\\n\\x23\\xed\\x0f\\xb6\\x94\\x8a\\x01\\x65\\x6b\\xc6\\x26\\x25\\xd1\\x45\\x10\\x2f\\\n\\x73\\xfa\\x47\\x67\\x5f\\xf6\\x44\\x29\\x01\\x54\\x4a\\xf5\\xad\\xcf\\x9f\\x08\\\n\\x64\\x8a\\x29\\x48\\x56\\xe9\\xa9\\x1f\\x3f\\xbc\\x4c\\x67\\x13\\x2a\\x3a\\xde\\\n\\xdc\\x78\\xc4\\x82\\x2a\\x8a\\xa8\\x5e\\x96\\xb5\\x23\\x7b\\xfc\\x7d\\x78\\x45\\\n\\x4c\\x1d\\xfb\\x1f\\x0e\\x1f\\x38\\x5a\\x0a\\x7f\\x93\\x04\\xd6\\x11\\x6e\\x03\\\n\\x8c\\x58\\x8d\\x05\\xb9\\x08\\x09\\xa9\\x39\\xb4\\xd3\\xd7\\x1f\\x57\\x84\\xb4\\\n\\x95\\xe6\\xaf\\x0a\\xfc\\xb4\\x8c\\xa1\\x24\\xa4\\x68\\x7a\\xc3\\x69\\xa6\\x91\\\n\\x4c\\xe6\\x86\\x03\\x60\\x24\\x0e\\x42\\x0b\\x63\\xd5\\x63\\x10\\x6b\\xd9\\x1e\\\n\\x0e\\xb1\\x66\\x87\\xbd\\xdd\\x18\\x3c\\xf3\\x38\\xa4\\xbb\\xc8\\x49\\xfc\\x36\\\n\\x50\\x73\\xe6\\xf7\\xb3\\x52\\xf4\\xb9\\xae\\x91\\x2c\\xe2\\xa4\\xde\\x42\\x45\\\n\\x54\\x87\\xd4\\xac\\x8a\\x4d\\xd2\\x9a\\x7e\\x73\\xf0\\xf4\\x84\\x03\\x9d\\x09\\\n\\x5d\\x33\\x2b\\x4a\\x7d\\xcf\\x08\\x79\\x2d\\x49\\x34\\xf2\\xda\\x1b\\x2a\\x95\\\n\\x66\\xcf\\xbb\\x55\\x54\\xd4\\x8e\\x75\\x37\\x89\\xd9\\xc4\\xbb\\x30\\xe6\\xcb\\\n\\x23\\x8e\\x2d\\x47\\x7a\\xb5\\x09\\xbf\\x38\\xc2\\x7b\\x34\\xcc\\xf3\\x61\\xd9\\\n\\xc3\\xf8\\x9a\\x80\\x93\\x51\\xf6\\x8c\\x3f\\x0d\\xc3\\xf0\\xe6\\x40\\x6d\\xa4\\\n\\x2d\\x60\\x7c\\x60\\x7e\\xf1\\x33\\x86\\xb0\\xf2\\xea\\x8d\\x98\\x75\\xed\\xfc\\\n\\xa0\\x8a\\x24\\x9e\\x11\\x31\\x2c\\xb9\\x65\\xba\\x92\\x83\\xb9\\x72\\x45\\xc1\\\n\\xd6\\x94\\x8d\\xb9\\x51\\x39\\x52\\xb1\\x4f\\xcc\\x9a\\x52\\x26\\x5d\\x50\\x15\\\n\\x1a\\xeb\\xe1\\x12\\x6f\\xb6\\x4b\\x21\\xc5\\xd1\\xc4\\x28\\xe6\\xf3\\xaf\\xd2\\\n\\x14\\xa6\\xdd\\x4e\\x64\\x3a\\x82\\x02\\x45\\xaa\\x2b\\xc3\\x85\\xfa\\xc3\\x5f\\\n\\xdc\\x3a\\xd2\\xbe\\x11\\x2e\\x29\\x74\\xfe\\x91\\x32\\x73\\xa3\\x9a\\xa9\\xc2\\\n\\xf0\\x6b\\x9a\\x86\\xd7\\xd2\\x26\\x81\\x42\\x2a\\x16\\x9a\\xd3\\x40\\x6a\\x61\\\n\\xf9\\x87\\xcd\\x93\\xce\\xda\\xdf\\xe9\\xf3\\x8c\\x3a\\x5d\\xd2\\xb5\\xbc\\xf8\\\n\\xb6\\x52\\x94\\x01\\x73\\x5b\\x9d\\x3c\\x61\\xa4\\xcc\\xcb\\xbf\\x32\\x1e\\x4a\\\n\\x8a\\x56\\xaa\\xb4\\x53\\x7a\\x0a\\xf1\\xd2\\x96\\xe5\\x09\\x5a\\xa9\\x5a\\x1e\\\n\\xea\\x1a\\xc4\\xba\\x36\\xc3\\x38\\x0a\\x00\\x6b\\x98\\x52\\xfc\\x69\\x09\\xaa\\\n\\x59\\xdd\\xe3\\x0e\\xb8\\xb4\\x66\\x26\\x25\\x66\\xd5\\xd6\\x24\\xe7\\x32\\xa0\\\n\\xa4\\x93\\xbd\\xa7\\x28\\x6e\\x69\\x25\\x0d\\xa4\\x13\\x50\\x4f\\xda\\x36\\x96\\\n\\x49\\xd4\\x56\\xb0\\xa5\\x55\\x55\\x10\\xca\\x92\\x79\\xd7\\xac\\x4c\\x3a\\x42\\\n\\x52\\x3f\\xcb\\xec\\x62\\x72\\x63\\x66\\x2b\\x5f\\x5e\\xbd\\x73\\x9c\\xc4\\x73\\\n\\x8d\\xd2\\x7c\\x7d\\x5e\\x16\\xe9\\x59\\xa9\\x37\\x86\\xd5\\x7e\\x30\\x01\\x31\\\n\\x90\\xe5\\x31\\x38\\xa0\\xdd\\x73\\x77\\xd7\\x84\\x2e\\x8e\\x2a\\xa2\\xe0\\x6a\\\n\\x61\\xa2\\x84\\xeb\\xf4\\x8c\\xa4\\xa0\\x11\\xa1\\x10\\xe8\\x14\\xb9\\x48\\xe8\\\n\\x4d\\xfc\\x04\\x2c\\x54\\x9b\\x58\\x6b\\xc6\\xd0\\x86\\xdf\\x57\\xf6\\x5b\\x5f\\\n\\xd2\\x19\\x13\\xf2\\xec\\xb4\\xa7\\x72\\xe4\\x50\\x14\\xa2\\xaa\\xa1\\xde\\x29\\\n\\x68\\x2c\\x29\\xd0\\xd3\\x96\\xf7\\x89\\x37\\xf5\\x78\\x64\\x04\\xb6\\x02\\x78\\\n\\x6b\\x09\\x19\\xb4\\x85\\xa0\\x85\\x40\\x3b\\xc3\\xbe\\x26\\x13\\x99\\xbd\\xda\\\n\\x56\\x32\\xf7\\x45\\x28\\x7c\\x21\\x37\\x14\\x1d\\x21\\x49\\x39\\x61\\x2a\\xa5\\\n\\x45\\xf5\\x3e\\xab\\x1b\\x35\\x13\\x9a\\xd4\\xfd\\xa1\\x0b\\x08\\x23\\x35\\x6d\\\n\\xc8\\x78\\x5a\\x11\\x43\\xbd\\xfc\\xc1\\xae\\xb0\\x48\\x89\\x8c\\x2b\\x11\\x7e\\\n\\x55\\x6d\\x14\\x6f\\xa8\\x11\\xe7\\x58\\x9b\\xc6\\xf1\\x6f\\xf4\\xdb\\xb4\\x92\\\n\\xa9\\xc6\\x90\\xe2\\xb0\\x5c\\x57\\x2a\\x0b\\xc9\\x0a\\x2d\\xa1\\xc2\\xa3\\x9a\\\n\\xa4\\x81\\xf0\\x29\\x26\\x94\\x0a\\x14\\x26\\x85\\x26\\xb0\\xe3\\xed\\x2e\\x5d\\\n\\xa9\\xa9\\x2a\\x2e\\x4d\\xd4\\x36\\xe8\\x5f\\x2c\\xd7\\x1f\\x38\\xc1\\x07\\xb6\\\n\\xb2\\x5e\\x3a\\xa3\\xed\\x1d\\xad\\x98\\xc4\\x27\\x71\\x76\\x70\\xd6\\x81\\x4b\\\n\\x2b\\xb2\\x8a\\x6a\\x2d\\xa7\\xce\\x30\\xee\\xc8\\x4a\\xcb\\x2c\\x6d\\x55\\x53\\\n\\x62\\x6c\\x39\\x44\\xc6\\x21\\x85\\x60\\x2c\\x29\\xc7\\x4d\\x10\\xd2\\x6b\\x4d\\\n\\x49\\xad\\x85\\xbc\\x44\\x63\\x5d\\xbc\\x9a\\x7d\\xf5\\x7f\\x4f\\xab\\x4c\\xd6\\\n\\xc5\\x75\\xaa\\xba\\x27\\x2f\\x10\\x2f\\xf5\\x10\\xc7\\x6c\\x31\\xa6\\xa6\\x12\\\n\\xe7\\xb4\\x15\\x91\\xaa\\x54\\x08\\x1f\\xf1\\xd6\\xa2\\x25\\x3b\\x44\\xe6\\x25\\\n\\x87\\x32\\xfa\\x9b\\x1b\\x47\\x2a\\x17\\x5e\\x63\\x5f\\x9c\\x29\\xc7\\x8a\\xcd\\\n\\x12\\x32\\x93\\x7a\\x72\\x89\\x8f\\x76\\x36\\x28\\x51\\xcf\\x98\\x85\\x1f\\x94\\\n\\x33\\xb5\\x68\\x95\\x21\\xc5\\x10\\x91\\x55\\x77\\x47\\x67\\xdd\\x46\\x2b\\xb8\\\n\\x06\\xf2\\x35\\xe7\\x0e\\x61\\x5b\\x29\\x62\\xb1\\xad\\x38\\xc4\\xd4\\xff\\x00\\\n\\xf4\\xe5\\x2d\\xc7\\xbd\\xc1\\xe5\\x07\\x1b\\x4c\\xe4\\xcd\\x5a\\xd1\\x7b\\x83\\\n\\xbe\\x24\\x3b\\x37\\x33\\x32\\xd8\\x98\\x5a\\xce\\x45\\x40\\xec\\xd2\\x10\\x33\\\n\\x14\\x83\\x48\\x4e\\x1c\\xda\\x56\\x28\\x9a\\x24\\x0b\\x83\\xce\\x26\\x19\\x93\\\n\\x09\\x29\\xc8\\x33\\x11\\xac\\x65\\x6e\\x4d\\xe2\\xeb\\xa3\\xf0\\xc9\\xd2\\x82\\\n\\x90\\x80\\xc2\\xa4\\xd4\\xe2\\x00\\xdf\\x19\\xc7\\xfd\\xd7\\xfb\\xc3\\x4a\\xcc\\\n\\x9a\\x79\\x43\\xec\\xd5\\xb5\\x9e\\x90\\xde\\xed\\xa2\\x5d\\xe3\\x6e\\x9c\\x60\\\n\\x4d\\x14\\xe5\\x31\\x23\\x31\\xb6\\x4d\\xcf\\xfe\\x8d\\xae\\x84\\xf4\\x89\\xf9\\\n\\xed\\x90\\xa9\\xe7\\x4f\\x94\\x3f\\x3a\\xa9\\x95\\x1a\\x1b\\x6b\\x0f\\xae\\x02\\\n\\xea\\xaa\\x44\\xbb\\x75\\x3e\\x11\\x97\\x2e\\x9f\\x38\\xf8\\x7d\\x73\\x89\\xe9\\\n\\x7d\\xbc\\xbb\\x88\\x48\\xde\\x3a\\x79\\x42\\x96\\xb9\\x15\\x29\\xa7\\x2b\\x52\\\n\\x6d\\x1f\\xd4\\x04\\x49\\xcd\\xa5\\xc6\\x53\\xd1\\x03\\xe9\\x13\\xb3\\x92\\xc9\\\n\\xce\\xe3\\xcb\\xa6\\xcf\\xdd\\x15\\xf5\\xca\\x24\\x57\\x37\\x8c\\x38\\x3d\\x91\\\n\\x3f\\x82\\x15\\x45\\x5b\\x84\\x48\\xb6\\x25\\x65\\xf6\\x6b\\x69\\x25\\x74\\xa5\\\n\\x69\\xd3\\xd7\\x18\\x2c\\xfb\\x40\\xa1\\x1a\\x70\\xe0\\x3d\\x79\\xc2\\xc1\\x68\\\n\\xec\\xf4\\x00\\xc3\\x0a\\xb0\\xf2\\x82\\xbc\\x91\\xb4\\xce\\x62\\x9c\\x62\\x61\\\n\\xd2\\x91\\x40\\x69\\x19\\xfb\\xa1\\x06\\xa6\\x01\\x20\\x78\\x88\\x5a\\xff\\x00\\\n\\x0c\\x42\\x51\\x7e\\xf8\\x22\\x82\\x2c\\x1c\\x04\\xf5\\x89\\x46\\xfd\\xa5\\x61\\\n\\x29\\xf5\\x58\\x9b\\x90\\xd9\\x32\\x8e\\x79\\x41\\xee\\x34\\x85\\xb6\\x73\\x1e\\\n\\xfe\\x17\\x86\\xdc\\x75\\x56\\xa8\\xf9\\x47\\x6b\\x7b\\x21\\x2b\\xdb\\x1c\\x11\\\n\\xfc\\x26\\x74\\x05\\xa9\\xec\\xc5\\x97\\x12\\x06\\x79\\x57\\x52\\x2a\\xd3\\xe9\\\n\\x57\\x02\\x15\\xc0\\x90\\x14\\x33\\x24\\xeb\\x1d\\x82\\xed\\x0e\\x2b\\xd9\\x6c\\\n\\x5a\\x6f\\xfd\\x38\\xed\\x5d\\x7f\\x05\\x4e\\x7f\\x47\\x9c\\x50\\x55\\x26\\x59\\\n\\x19\\xd6\\x9d\\xe5\\x56\\xa8\\xd9\\xa4\\xa9\\xb3\\x5b\\x0d\\xc5\\x6f\\x0b\\xc8\\\n\\x4d\\x1c\\x35\\xc4\\xdc\\xec\\x9c\\xa1\\x17\\xb1\\x06\\x30\\xc4\\xb3\\x88\\xcd\\\n\\xae\\x75\\x74\\xfc\\x35\\xa8\\x02\\x69\\xc0\\x9a\\x5f\\xac\\x62\\x73\\xad\\xc8\\\n\\x22\\x62\\x6d\\xca\\x25\\x96\\x50\\xa5\\xe6\\x55\\x80\\x09\\x1a\\x9f\\x57\\x8c\\\n\\x77\\xb4\\x13\\x5d\\xa0\\x98\\x52\\xdd\\x5e\\x56\\x90\\x4e\\xc5\\xb0\\x29\\x44\\\n\\xf3\\x57\\x32\\x52\\x23\\x22\\xb3\\xa4\\xa8\\x51\\xb0\\x33\\x26\\xa3\\x54\\xd6\\\n\\xc7\\x98\\xa9\\x1e\\x5c\\x60\\x3e\\x0b\\x9b\\x52\\x9a\\x04\\xa8\\x00\\x91\\x6a\\\n\\x84\\x9d\\x6a\\x3d\\x72\\x8c\\x17\\x10\\x99\\x54\\xbb\\x6d\\xb6\\xdf\\xe0\\x15\\\n\\x2b\\x7a\\x87\\x43\\x4e\\x7d\\x6b\\xe5\\xce\\x2a\\x52\\x94\\x94\\xd4\\x93\\x4a\\\n\\xf1\\xa4\\x19\\x74\\xa9\\x59\\xd4\\x7b\\xe1\\xc5\\x22\\x58\\x17\\x0a\\xd3\\x90\\\n\\xe8\\x2d\\x5f\\x2f\\x08\\x6f\\x12\\x96\\x9c\\x99\\x4b\\x72\\xff\\x00\\xdc\\x06\\\n\\xab\\x1c\\x08\\xd3\\xeb\\xdf\\x12\\x6e\\xae\\x5a\\x6d\\x04\\x6e\\xdd\\x24\\xe5\\\n\\xb7\\x10\\x78\\x70\\x8c\\x77\\xb4\\x6f\\xa2\\x4d\\x28\\x41\\x15\\x34\\x10\\x66\\\n\\x57\\x36\\xdf\\xe3\\x1a\\xac\\xf0\\xd6\\xdc\\x2c\\x7d\\x79\\xc3\\x1b\\x36\\xea\\\n\\x08\\x48\\xdd\\x24\\x6e\\xd2\\xf1\\xd9\\xbe\\xd4\\x84\\xa5\\x58\\x73\\xbb\\xa7\\\n\\x40\\x55\\xcb\\xc7\\xed\\x1e\\xda\\xdf\\x48\\x72\\x71\\x04\\xe5\\xdd\\xa7\\x77\\\n\\x7c\\x2d\\x96\\x9c\\x49\\x35\\x4f\\x48\\x73\\x08\\x97\\x9b\\x19\\x49\\x10\\xa9\\\n\\x13\\x24\\x56\\x83\\xee\\x82\\x42\\x6e\\x69\\x4a\\xc2\\x06\\x52\\xa3\\xf9\\x8f\\\n\\xd2\\x29\\x54\\xaa\\x1d\\x6e\\x19\\xd0\\x41\\x59\\x4a\\x7b\\xe3\\x0f\\x9a\\x2c\\\n\\xb8\\x33\\x68\\x4f\\xdf\\xd7\\xf1\\x0d\\x3b\\xb4\\x4e\\x61\\x05\\x69\\x42\\x14\\\n\\xef\\x38\\xc4\\xa6\\xcb\\xce\\x94\\xf0\\x07\\x9c\\x0d\\xcb\\xd4\\xc2\\xd7\\x0d\\\n\\xa7\\x32\\xeb\\xe1\\xe2\\x21\\x84\\xd0\\x08\\x3e\\x10\\xf6\\x91\\x2e\\x1c\\x53\\\n\\xd4\\x49\\x19\\x2d\\x9a\\xbc\\xe2\\x6b\\x08\\xc3\\xe6\\x08\\x0b\\xfe\\xe9\\xe3\\\n\\x41\\xe3\\x13\\x7d\\x9e\\x90\\xd9\\xe5\\x04\\x57\\xc3\\xac\\x30\\xd3\\x12\\xdb\\\n\\x56\\x64\\xea\\xa7\\x01\\x52\\x4f\\x78\\x89\\x7e\\xca\\x3b\\x89\\x62\\x3e\\xd5\\\n\\x89\\x85\\x00\\xca\\x81\\x64\\x5c\\x02\\x17\\x75\\xd7\\x81\\xd0\\x77\\x78\\xc3\\\n\\x52\\xd2\\x52\\x4c\\xa5\\xa6\\x80\\x0b\\xa0\\x16\\x14\\xbf\\x3b\\x42\\xfd\\xcf\\\n\\x5d\\x62\\x5c\\xd3\\xc6\\x14\\x8c\\xc3\\x48\\x28\\xe9\\x06\\xda\\xc6\\x4a\\xfa\\\n\\xe5\\x19\\x0f\\x5f\\x38\\x75\\xa3\\xa9\\xac\\x77\\xc0\\xf7\\x87\\x78\\xfa\\xc2\\\n\\x1e\\x01\\x34\\x34\\x82\\xac\\xd0\\x0d\\x21\\x16\\x35\\xfe\\x21\\x68\\xa8\\xda\\\n\\x81\\xa0\\xfa\\xda\\x3b\\x36\\xde\\xc1\\x2e\\x4c\\xb8\\x2d\\xc2\\xba\\x5f\\xbe\\\n\\x31\\x2c\\x4c\\x4c\\x4f\\x06\\xc1\\xb1\\x59\\x16\\xb5\\xab\\x0a\\xc3\\xc2\\xb7\\\n\\xb9\\x88\\x63\\x32\\x45\\x73\\xab\\xba\\x19\\x9f\\x7d\\x3f\\x87\\x61\\x52\\x2a\\\n\\xb0\\x0e\\x62\\x9f\\xca\\x7a\\x7c\\xe3\\xb7\\xbd\\x97\\x94\\xed\\x1b\\x92\\x78\\\n\\xc3\\x69\\xd8\\x62\\xd8\\x41\\x0e\\x4b\\xaa\\x5f\\x2a\\x36\\xad\\x8a\\xed\\xdb\\\n\\x5d\\xb3\\xaf\\x3a\\x33\\x25\\x23\\x35\\x33\\x1d\\x2b\\x12\\x93\\x5f\\xd5\\xb0\\\n\\x50\\x48\\x2d\\xcc\\x49\\xa7\\x67\\xb2\\x16\\x79\\x25\\x36\\xcc\\xe8\\x3c\\x3b\\\n\\xa9\\xdf\\x18\\x0a\\x55\\xec\\xfb\\x24\\xa8\\xe6\\xd4\\xd3\\x8d\\x75\\xf0\\xac\\\n\\x7f\\xa8\\xf8\\x9b\\xc9\\x96\\x90\\xc1\\xd3\\x40\\x1e\\xab\\xae\\xa8\\x57\\x39\\\n\\xd9\\xae\\x99\\x4d\\x0d\\xd2\\x49\\xb8\\x22\\x84\\xd2\\x0b\\x6b\\xcb\\x54\\x0e\\\n\\xeb\\x72\\x14\\xbc\\x4e\\x3c\\x94\\xb6\\xd8\\x50\\xcc\\xa4\\x25\\x09\\xdd\\x19\\\n\\x52\\x72\\x8b\\x03\\x5a\\x93\\x4a\\xf0\\xe6\\x62\\x49\\xb9\\x8c\\x46\\x65\\xa9\\\n\\x64\\x20\\xa7\\x6c\\xe6\\x4d\\xde\\x55\\xde\\x22\\xbc\\x00\\xa9\\xad\\xa2\\x53\\\n\\x0e\\x94\\xc1\\x30\\xe6\\xe5\\x41\\xda\\xa8\\xa1\\x3b\\xce\\x10\\x56\\x0f\\x1b\\\n\\x80\\x9b\\xf8\\x5f\\xca\\x25\\x51\\x52\\xac\\xbb\\xd9\\x89\\xa5\\x78\\x57\\x94\\\n\\x63\\x98\\xba\\x64\\x41\\x61\\x05\\x3b\\x5d\\x28\\xae\\x7e\\x14\\x87\\xf1\\x09\\\n\\xb7\\x9d\\xfc\\x77\\x56\\x8c\\xe6\\xcd\\xa2\\xc9\\x1e\\x75\\xd7\\x58\\xec\\xa6\\\n\\x14\\xa5\\x38\\xec\\xd2\\xc0\\x4a\\x52\\xc8\\x5a\\x55\\xc5\\x4a\\xcd\\xa1\\xaf\\\n\\x0e\\xee\\xf8\\x9d\\x75\\x2d\\x20\\x3a\\x10\\xa5\\x39\\xee\\x8c\\xbe\\xe8\\xeb\\\n\\xe8\\xfe\\x91\\x32\\xb7\\x66\\x72\\xed\\x56\\xb1\\x97\\x4a\\x5b\\xeb\\x5a\\xc3\\\n\\x6a\\x28\\x20\\x8b\\xd8\\x26\\xfd\\x34\\x85\\xac\\xa8\\xa5\\x44\\xd2\\x85\\x26\\\n\\xdf\\x48\\x43\\xae\\x8c\\x49\\xb5\\x04\\x84\\x69\\x74\\xd4\\x71\\xf1\\xfb\\x40\\\n\\x9a\\x56\\x50\\x3a\\x0d\\x7b\\x87\\xae\\x70\\x66\\x1d\\xad\\x68\\x29\\xce\\xff\\\n\\x00\\x5a\\xc3\\x73\\x46\\xd5\\x56\\xf7\\x2a\\xdb\\xd6\\x90\\xcb\\xeb\\x4a\\xb3\\\n\\x6d\\x0f\\xda\\x27\\xe6\\x12\\xf2\\x52\\x0d\\x05\\x00\\xba\\x7b\\xbc\\x60\\x06\\\n\\x8a\\x2a\\x09\\xdd\\xf5\\xdf\\x09\\x73\\x85\\xa0\\x84\\xab\\x53\\xf3\\x10\\x95\\\n\\x14\\xb8\\x53\\xf0\\x83\\x68\\x14\\xef\\x8c\\x80\\x8e\\x51\\x20\\xef\\xe1\\x04\\\n\\x74\\x8c\\x45\\xed\\x93\\x34\\x49\\xbf\\xeb\\x0a\\x05\\xcd\\xe3\\xad\\x7c\\xe1\\\n\\xca\\x91\\xdd\\x08\\x4e\\x71\\x7d\\x47\\x28\\x94\\x60\\x65\\xaa\\xab\\xaf\\xca\\\n\\x02\\x02\\x53\\x0a\\x24\\x5a\\xd0\\xf1\\xb5\\xa1\\x65\\x69\\x71\\x2e\\x85\\x29\\\n\\x34\\x34\\xa0\\x3b\\xa7\\xbf\\xf9\\x84\\x2c\\x51\\x97\\x29\\x55\\x52\\xf5\\xee\\\n\\x87\\x77\\xbd\\x7e\\xf1\\x27\\x24\\xcc\\xab\\xae\\x3c\\x94\\xe6\\x53\\x8a\\x2b\\\n\\x39\\xf4\\x05\\x46\\xb6\\x83\\x4d\\x40\\xad\\x78\\x72\\xee\\xa4\\x3a\\x41\\x35\\\n\\x29\\x1c\\x7e\\x5e\\x30\\x5e\\x51\\x14\\xa0\\x86\\x8b\\x20\\x02\\x4e\\xf7\\x1b\\\n\\xda\\x17\\x34\\x80\\x93\\x4f\\x33\\x1e\\xdb\\x9d\\x47\\x4f\\x0d\\x79\\x42\\x68\\\n\\x41\\x35\\x0a\\x34\\xac\\x17\\x82\\x55\\x4b\\x79\\x40\\x75\\xb5\\x71\\x85\\x00\\\n\\x45\\x8d\\x79\\x8a\\xc2\\xd9\\x28\\xad\\x6b\\x0a\\x52\\x92\\xaa\\x53\\x77\\xc6\\\n\\x02\\xf9\\xe9\\xcc\\x42\\x5f\\x4a\\x60\\x21\\x54\\xad\\x35\\x10\\x02\\x93\\x63\\\n\\x6a\\xde\\x18\\x4a\\x9e\\x4e\\xc5\\x91\\x99\\x4b\\xa5\\x2b\\x7e\\xa7\\xe5\\x58\\\n\\x9f\\x7d\\xb9\\x19\\x34\\x4b\\xb2\\x6a\\xe2\\xd3\\x45\\xd7\\x81\\xe9\\x4a\\x69\\\n\\x0d\\x80\\xa9\\x90\\xb5\\x93\\x54\\x1f\\x5e\\xbe\\x90\\x8c\\x40\\x04\\x81\\x4a\\\n\\xdb\\xac\\x21\\xb3\\x9c\\x5a\\xd0\\xe0\\x65\\x0b\\x04\\x9a\\x6e\\x8e\\x06\\x27\\\n\\x1e\\x35\\x25\\xab\\xd2\\xe3\\xa7\\x5b\\xeb\\x4e\\x5c\\x74\\xa4\\x15\\xb6\\x1d\\\n\\x33\\x72\\x8a\\x29\\x7d\\x3f\\xfd\\x4b\\x41\\x2a\\x08\\x9a\\x03\\x54\\xd3\\xdd\\\n\\x15\\xd2\\xa6\\x91\\x80\\x4e\\xa5\\x73\\x2e\\x3a\\x28\\x86\\xc0\\x51\\x52\\x4e\\\n\\xa8\\x3c\\x53\\x43\\x73\\x97\\x4a\\x81\\x7e\\x11\\xda\\xa9\\xef\\xea\\x58\\xf3\\\n\\xb5\\x35\\x6e\\x59\\xb5\\x21\\x04\\xda\\x84\\xaa\\xba\\x1e\\x3a\\x44\\xc4\\xda\\\n\\xdb\\x29\\x43\\x47\\x70\\x59\\x4a\\x34\\xaa\\x95\\xa7\\x80\\xaf\\x00\\x21\\x09\\\n\\x9a\\xc4\\x1e\\xc8\\xd2\\x14\\xbe\\x14\\xb8\\xe8\\xa3\\x5a\\x8d\\x78\\x7e\\xf1\\\n\\xd9\\x7e\\xcd\\xbb\\x2c\\x44\\xd3\\xf5\\xf6\\x80\\x9b\\x24\\xd8\\x24\\x72\\x17\\\n\\x22\\xba\\x02\\xaa\\xde\\x90\\xf3\\x5b\\x4a\\x95\\x2c\\x95\\x27\\xde\\x06\\xc0\\\n\\x72\\xa7\\x3e\\xb4\\xac\\x36\\xb4\\x49\\xb7\\xb6\\x71\\x49\\x43\\x4d\\xef\\x15\\\n\\x54\\x56\\x83\\x5b\\x57\\x31\\xb7\\x01\\x1d\\xa1\\x9a\\x95\\x9f\\xc4\\x76\\x92\\\n\\xef\\x66\\x39\\xad\\xa8\\x1f\\x3a\\x08\\xf6\\x34\\x84\\x36\\xf4\\xce\\x54\\x54\\\n\\x55\\x24\\x28\\x2a\\xb4\\xee\\xaf\\x11\\xc4\\x43\\x18\\xf4\\xec\\xb8\\x54\\xb4\\\n\\xbf\\xf6\\xd2\\x9b\\x2a\\xb4\\xad\\xe3\\x08\\xed\\x43\\x4a\\x96\\xd8\\x4d\\x34\\\n\\x95\\x38\\xad\\xc1\\x98\\x56\\x85\\x5b\\xba\\xf4\\x26\\xbf\\xcc\\x2d\\x9c\\xe4\\\n\\xa5\\xaa\\x2c\\xa7\\x5c\\xa6\\xb4\\xf2\\xa8\\x84\\x83\\xee\\x91\\x45\\x72\\x30\\\n\\xdb\\x0a\\x25\\xb2\\xa1\\x44\\xe6\\x15\\xbc\\x23\\x0e\\x6d\\xe7\\x99\\xd9\\x04\\\n\\xa9\\x74\\x15\\xb8\\x1c\\x6f\\xad\\x04\\x4d\\x84\\xc9\\xee\\xac\\xe5\\x3e\\x7f\\\n\\xac\\x09\\xe6\\xc2\\x37\\x95\\xc7\\x91\\xd2\\x1a\\x3b\\x55\\x05\\x36\\x49\\xef\\\n\\xb0\\xf9\\xc2\\x52\\xea\\x05\\x55\\x4f\\x31\\x0f\\xad\\xbd\\x9e\\x62\\xb1\\xe1\\\n\\x72\\x3c\\xa3\\x0f\\x97\\x53\\xad\\x3c\\x78\\x12\\x9c\\xbd\\x75\\x87\\x19\\x0c\\\n\\xd4\\x2a\\xc7\\x87\\xef\\x1a\\xc6\\xcc\\xeb\\xe3\\xa8\\x84\\x2b\\x9c\\x25\\x43\\\n\\xd7\\x28\\x94\\x72\\x8b\\x09\\x1c\\xe3\\x11\\x52\\x8b\\xeb\\x1f\\x0e\\xed\\x3c\\\n\\x52\\x3e\\xf1\\x97\\xa4\\x2e\\x97\\x11\\x2f\\x2e\\xea\\x9c\\xb0\\xaa\\x7b\\xc7\\\n\\xf3\\x02\\x5c\\xa1\\x22\\xdd\\x78\\x45\\x78\\x42\\x8c\\x2c\\xd0\\x9c\\xd0\\xf2\\\n\\x73\\xb5\\x44\\x7b\\xd5\\xf5\\xac\\x36\\xee\\x56\\xd0\\x95\\x59\\x42\\xd0\\x97\\\n\\x9b\\xf8\\x95\\x78\\xda\\xb4\\x68\\x12\\xab\\xfd\\xe1\\x21\\x77\\xb4\\x38\\x95\\\n\\x7d\\x7e\\x70\\xb5\\xa4\\x2b\\x2e\\x87\\xce\\x03\\x4a\\x50\\xcd\\x7b\\xc2\\x9a\\\n\\x20\\x1a\\xde\\x12\\xd6\\x55\\x77\\xc2\\x14\\x53\\xdd\\x0a\\x64\\x29\\x39\\xd2\\\n\\x6b\\x51\\xfb\\x71\\x85\\xe6\\x41\\xb7\\x77\\xaf\\x57\\x89\\x77\\x33\\x5a\\xf5\\\n\\x85\\xf5\\xbc\\x3e\\x90\\x5b\\xcc\\x91\\x7a\\xfa\\xfa\\xc3\\x17\\x49\\x4a\\xf5\\\n\\xfd\\x20\\x32\\x35\\x15\\xe7\\xea\\xdd\\xd0\\x97\\x8d\\x07\\x41\\xeb\\x87\\xf3\\\n\\x05\\x2b\\x5a\\x33\\x91\\xba\\x15\\x94\\xff\\x00\\x11\\x24\\xcb\\x52\\x12\\x7e\\\n\\xda\\xe1\\x09\\x5a\\x53\\x56\\xeb\\x7a\\xe6\\x19\\x7e\\xf0\\x06\\xd9\\xd5\\xbb\\\n\\x34\\x69\\x98\\xd5\\xb1\\xef\\x56\\xbd\\xd5\\xa7\\x8c\\x16\\x1a\\xa9\\x3c\\x7b\\\n\\xa3\\x67\\xea\\xb0\\xa9\\xc6\\xcf\\xb9\\xeb\\xd7\\xce\\x16\\xe6\\x73\\x53\\x5f\\\n\\x5e\\x8c\\x06\\x0b\\xa4\\x8e\\x25\\x27\\xe9\\x18\\x56\\x14\\xc2\\x5b\\x71\\x4e\\\n\\xa4\\x6b\\x18\\xcc\\xab\\xf8\\x5c\\xf7\\xf5\\x26\\x2d\\x21\\x42\\x17\\xca\\xbc\\\n\\x6b\\xc2\\x1d\\x97\\x6e\\x65\\xf7\\xe6\\xf2\\xe6\\x44\\xd2\\x82\\xd3\\x40\\x01\\\n\\xa5\\x29\\x4a\\xeb\\xaf\\xaa\\x40\\x92\\x63\\xdd\\x12\\xc8\\x27\\x41\\x54\\x27\\\n\\xf9\\x89\\x66\\x84\\xa2\\xb3\\xa5\\x84\\x8a\\x1e\\x09\\x86\\xb1\\x26\\x1f\\x61\\\n\\xb4\\xb3\\x40\\xea\\x10\\x03\\xa0\\x73\\x1a\\xfe\\xf0\\xfe\\x23\\x2b\\x64\\xad\\\n\\x59\\x48\\x34\\x5f\\x0a\\xd4\\xfd\\xa3\\xb4\\xd2\\xab\\x9d\\xc3\\x54\\xe4\\x93\\\n\\xca\\xc8\\x1a\\x56\\x6c\\xa6\\x9c\\x3e\\x90\\x58\\x4b\\x7f\\x86\\xa7\\x8e\\xdb\\\n\\x4a\\x95\\x5e\\xbe\\xbc\\x63\\x0e\\xc3\\x71\\x1c\\x51\\x87\\x58\\x43\\x8a\\x57\\\n\\xb1\\x83\\x53\\xce\\xbb\\xff\\x00\\x78\\x97\\x1b\\x14\\x96\\x1c\\x3f\\x8c\\x95\\\n\\x65\\x51\\x8d\\x9b\\xe9\\xde\\x41\\x22\\xbc\\x79\\x75\\xf0\\x8e\\xcb\\xe2\\xc8\\\n\\x91\\x71\\xc4\\x3a\\xbd\\xbb\\xa4\\x50\\xe6\\x35\\xa9\\x1d\\xfc\\x62\\x6e\\x61\\\n\\xc7\\x5f\\x33\\x59\\x72\\x25\\x46\\x80\\x0d\\x2d\\x68\\x94\\x28\\x9b\\x97\\x42\\\n\\x2b\\x45\\x85\\x20\\xd7\\xa0\\xfd\\xe3\\x0c\\x42\\x53\\x38\\x90\\x5c\\xf5\\xeb\\\n\\xbe\\x31\\xe2\\x14\\xb0\\x21\\xa9\\x65\\x38\\x53\\x6d\\xde\\x3e\\xbc\\xe1\\x0d\\\n\\xb4\\xcb\\x79\\x4d\\xba\\xc3\\xb8\\x9c\\xb3\\x7b\\x8a\\x73\\x8f\\x38\\xac\\x93\\\n\\x8c\\xad\\x6d\\xcc\\x66\\x51\\x25\\x59\\x73\\x56\\x84\\xf0\\xf0\\x36\\x8c\\x32\\\n\\x7d\\x2d\\x4b\\xa9\\x2e\\x0a\\x69\\x94\\xf8\\x43\\x8b\\x13\\x2b\\xa8\\xd2\\x10\\\n\\xc8\\x87\\x18\\x5e\\x4a\\x8a\\xc2\\x73\\x24\\x90\\xae\\x7f\\xcc\\x21\\x7c\\x22\\\n\\x51\\x7f\\x8a\\x3d\\x5a\\x26\\xf7\\xa6\\x15\\xff\\x00\\x68\\xf9\\x42\\xdb\\xca\\\n\\x2b\\xce\\xd0\\xee\\xa6\\x30\\xd6\\xb3\\x23\\x34\\x14\\xd5\\x3f\\x28\\x5a\\x69\\\n\\x53\\xd0\\xc1\\x87\\x06\\x65\\x41\\x6f\\x2d\\x3b\\xa1\\xd4\\xd8\\xd2\\x16\\xa5\\\n\\xa3\\x9f\\xed\\x01\\xe5\\xb6\\x52\\xa5\\x93\\x43\\x4f\\x5f\\x58\\x94\\x98\\x13\\\n\\x08\\xdd\\xd5\\x34\\xaf\\x8c\\x2a\\xf5\\x1c\\xc5\\xa0\\x4a\\xe5\\xdf\\x5f\\xcf\\\n\\xd6\\xb0\\x67\\x19\\x41\\xcb\\xbb\\xba\\x60\\x4e\\x30\\xab\\x50\\x43\\x89\\x4a\\\n\\xf7\\x93\\xff\\x00\\xa3\\x4a\\xdd\\x03\\xbf\\xeb\\x68\\x32\\xe9\\x58\\x36\\xa1\\\n\\x22\\xbc\\xe1\\xb6\\xb2\\x29\\x50\\xb8\\x57\\xb9\\x4e\\xb0\\xc3\\x20\\xde\\x90\\\n\\x1a\\xa6\\x90\\x80\\xd5\\xab\\xe3\\xf7\\x89\\x36\\x03\\xcf\\xa1\\x3f\\xf4\\xc0\\\n\\x2a\\x50\\xea\\x23\\x12\\x9b\\xdb\\xb8\\x24\\xd9\\xf7\\x13\\xba\\x45\\x6d\\x6b\\\n\\xc3\\xd9\\xd2\\xa6\\x91\\x7e\\x10\\xe1\\xcb\\x06\\x62\\x18\\x5a\\x4a\\x6c\\x6a\\\n\\x44\\x02\\x72\\x93\\xa6\\xf7\\xd2\\x25\\xdd\\x0d\\xa7\\x3d\\x01\\x3a\\x73\\xd6\\\n\\xd0\\xb7\\xc4\\xb3\\x5b\\x60\\x33\\x54\\x57\\x2d\\x2d\\xe5\\x18\\xd4\\xfc\\xcc\\\n\\xde\\x66\\x56\\x95\\x25\\x95\\x29\\x5f\\x86\\x7d\\xcb\\x9f\\xcb\\xa7\\xca\\x12\\\n\\xde\\xc1\\x29\\x4d\\x77\\x69\\x60\\x0d\\x87\\x70\\xe1\\x0a\\x7f\\x2f\\x3f\\xbc\\\n\\x09\\xb4\\x7c\\x6b\\xf3\\x30\\xa9\\xf6\\x2e\\x96\\x9c\\xca\\x74\\x25\\x07\\x29\\\n\\x3c\\xee\\x35\\x87\\x94\\x57\\x7c\\xe5\\x59\\xba\\xc4\\x9e\\x22\\xeb\\x25\\x2d\\\n\\x5d\\x41\\x4a\\xcb\\x91\\x46\\xa8\\x39\\xbe\\x12\\x93\\x62\\x0f\\x10\\x75\\x8c\\\n\\x6f\\xb1\\xcb\\xc2\\xda\\xfe\\xb8\\xe8\\x0b\\x13\\x62\\xa1\\x00\\x55\\x2d\\x83\\\n\\xa6\\x54\\xfc\\x34\\xaf\\x0e\\x3c\\xa3\\xfd\\x36\\xc3\\xe5\\xd2\\xdb\\x8f\\x3b\\\n\\x5c\\xaf\\x82\\x4e\\x7b\\xd6\\xbc\\xeb\\xdd\\x4e\\xe8\\xc6\\xfb\\x17\\x2b\\x3c\\\n\\xb2\\xec\\x8a\\x5b\\x4a\\xf3\\xa8\\xab\\x22\\x52\\x9b\\x50\\xf2\\xeb\\x0f\\xf6\\\n\\x3e\\x7a\\x54\\x9c\\xcb\\x51\\x4f\\x22\\x4f\\xeb\\x0d\\xe0\\xbb\\x27\\x73\\x24\\\n\\xef\\xf3\\x16\\x3e\\x70\\x96\\x16\\x94\\x84\\xaa\\xaa\\xe3\\xbd\\x7f\\xd7\\xd1\\\n\\x89\\x17\\x36\\x4f\\xa3\\x80\\xd2\\x83\\x4d\\x44\\x07\\x3f\\xdc\\xb6\\x5b\\x17\\\n\\xa0\\xa9\\x02\\x9c\\x75\\xb7\\x38\\x7d\\x82\\xe2\\xd2\\x54\\xaa\\xe8\\x6f\\xeb\\\n\\xc2\\x26\\x1d\\x44\\xaa\\x35\\x09\\x39\\x7d\\x7e\\x90\\xfe\\x30\\xa2\\xa2\\x2e\\\n\\x45\\xc4\\x3e\\xa5\\xb8\\xb2\\xaa\\x9d\\x7d\\x69\\x12\\x0e\\xec\\x54\\x6b\\x71\\\n\\x52\\x69\\xe3\\x13\\x18\\x91\\x75\\xc6\\x42\\x14\\x52\\x11\\x51\\x40\\x68\\x2e\\\n\\x47\\x00\\x69\\x18\\x43\\x81\\xc6\\x6f\\x72\\x40\\xb9\\xe7\\x08\\x44\\x53\\xf0\\\n\\xe9\\x4e\\x10\\xb4\\x82\\xe2\\xad\\xea\\xf0\\x86\\xfa\\x71\\x89\\x54\\x7e\\x2b\\\n\\x9e\\x3e\\x10\\x9b\\xba\\xac\\xd7\\xbf\\x1b\\xc2\\xd3\\x5c\\xdd\\x2b\\x0b\\x4e\\\n\\xfd\\x3a\\xc4\\x8b\\x44\\x26\\x82\\xd0\\x5b\\xa2\\x7c\\x4c\\x3a\\x83\\x1b\\x38\\\n\\x5b\\x0a\\x2e\\x03\\x7a\\x7a\\xe5\\x0e\\x22\\xa9\\x4d\\x85\\x93\\x48\\xc9\\x9d\\\n\\xd0\\xde\\x95\\x54\\x63\\x23\\xd9\\xe6\\x99\\x03\\x43\\x4b\\x58\\x03\\xe1\\x1e\\\n\\xce\\xd4\\xc8\\x35\\x56\\x5e\\x42\\x25\\xd4\\xb9\\x77\\x54\\x91\\x5a\\x5b\\x98\\\n\\xad\\x23\\x6d\\xee\\xdb\\xe5\\x0f\\x4d\\x2a\\xfa\\x8f\\x1f\\xb4\\x16\\x8b\\xaa\\\n\\x2b\\x1f\\x15\\xe0\\x49\\xaf\\x5b\\xfa\\x10\\x86\\xd6\\x28\\x9a\\x9f\\x33\\x0c\\\n\\xb3\\x45\\x8a\\x9f\\x08\\x52\\x12\\x0e\\xea\\x46\\x9c\\x84\\x0a\\xd1\\x5f\\xf1\\\n\\xfb\\x88\\x57\\xbe\\x61\\xb6\\xea\\x83\\x5b\\xf7\\xdf\\x84\\x38\\x8d\\x7b\\xfd\\\n\\x18\\x95\\x44\\x2c\\x18\\x62\\x5d\\x41\\x69\\x48\\x19\\xb3\\x6b\\xc6\\x95\\xf3\\\n\\x87\\xd0\\x89\\x19\\x7d\\x9a\\x48\\xda\\x3e\\x36\\x81\\x43\\xde\\x16\\xcb\\x41\\\n\\x12\\xe9\\x28\\x78\\xad\\x7a\\x9e\\x27\\x5f\\x3d\\x61\\x4a\\x3b\\x6c\\xc4\\x9a\\\n\\x0e\\x7d\\xfc\\x21\\x2b\\xcf\\x5e\\x3f\\x38\\x5b\\x47\\x31\\xb4\\x61\\xf9\\xda\\\n\\x58\\x0e\\x54\\x8e\\xb6\\xa4\\x3a\\x84\\x96\\xc2\\xdb\\xbf\\x48\\x44\\xc3\\xcd\\\n\\xd9\\x4d\\x27\\x27\\x32\\xa3\\xe1\\xc2\\x06\\x2a\\x11\\xef\\xa1\\x2a\\x17\\xdd\\\n\\x26\\xdf\\x78\\xc6\\xb1\\x46\\x1f\\x40\\x4a\\x25\\x9b\\x47\\xf9\\x02\\x49\\xfa\\\n\\x41\\xde\\xb2\\x8d\\x33\\x0b\\x74\\x87\\xd1\\x96\\xb7\\xef\\xf0\\x89\\xd9\\xa7\\\n\\xdd\\x71\\xc4\\x27\\x73\\x26\\x84\\x54\\xd7\\xbf\\xd7\\x38\\x62\\x5f\\x14\\x66\\\n\\x61\\xa5\\x97\\x36\\xc9\\x7e\\x8b\\x51\\xad\\x32\\x03\\x7b\\x27\\x4a\\xd3\\xbb\\\n\\x87\\x8b\\x3b\\x44\\xe5\\xce\\x93\\xa0\\x23\\x35\\xab\\xeb\\xe9\\x1e\\xf8\\x0a\\\n\\x40\\x01\\x49\\xb8\\x23\\x98\\x8c\\x1d\\xc6\\x71\\x2c\\x21\\x12\\xf8\\x9a\\xb6\\\n\\x89\\x42\\x6c\\x14\\x06\\xec\\x61\\xe9\\xc2\\xa4\\xd9\\xf6\\x79\\x65\\x01\\xef\\\n\\x0a\\xd8\\x1d\\x4f\\x5e\\x11\\xb2\\x2c\\xb2\\x95\\xb6\\xf2\\x80\\x51\\xa6\\x6a\\\n\\x6b\\x6a\\xc6\\x35\\x8c\\x3c\\x99\\x83\\x2d\\x5a\\x8f\\x77\\x35\\x6f\\xca\\x25\\\n\\xc5\\x54\\x09\\x51\\x26\\x9d\\x39\\x8d\\x61\\xd5\\x8a\\x69\\xc0\\x0a\\xf8\\x42\\\n\\xde\\x4b\\x64\\x2c\\x9a\\x51\\x56\\xa7\\x13\\xca\\x30\\xec\\x66\\x58\\xb8\\x95\\\n\\x38\\x05\\xad\\xeb\\xac\\x1c\\x5a\\x57\\x22\\x97\\xb4\\xb8\\xe1\\xf6\\x8c\\x43\\\n\\x17\\xf6\\xa7\\x77\\x4d\\x12\\x00\\x4d\\x8d\\x74\\x24\\xc0\\x50\\x29\\xde\\x02\\\n\\xe7\\xde\\x87\\xa6\\x82\\x05\\x02\\x53\\xe7\\x0b\\xc5\\x36\\x5f\\xf4\\xd2\\x6b\\\n\\xd4\\xc2\\x71\\x15\\x95\\x85\\xec\\xc7\\x75\\x4c\\x76\\x66\\x69\\xb7\\x9b\\x4d\\\n\\x4d\\x15\\x6a\\x27\\x9f\\x9c\\x35\\x78\\x57\\xba\\x7b\\xa1\\x2d\\xfe\\x29\\xad\\\n\\xaa\\x63\\x62\\x06\\x5a\\x1a\\xdc\\x44\\xac\\xb8\\xce\\xe1\\xa9\\xe3\\xc2\\x36\\\n\\x54\\x71\\x4a\\xaf\\x1d\\x3d\\x77\\x46\\x5f\\x7a\\xbc\\x61\\xd4\\xe5\\x72\\xba\\\n\\xd4\\x8f\\xac\\x49\\x04\\xe4\\xe3\\xe5\\x05\\x07\\x86\\x9f\\x38\\x5b\\x06\\xbd\\\n\\x20\\xa0\\x08\\xc8\\x21\\x63\\x2a\\x0d\\x2f\\x08\\x42\\x76\\xa9\\x5a\\xd4\\x52\\\n\\x01\\xe1\\x1d\\xa0\\x79\\x93\\x32\\xd1\\xcc\\xa3\\x4a\\x41\\x71\\xc0\\xac\\xe9\\\n\\x71\\x40\\x56\\xb4\\x86\\x71\\x56\\x8b\\xf2\\xcd\\x3e\\xda\\x5b\\x49\\xad\\x5c\\\n\\x06\\xa7\\x80\\xd0\\xc6\\x29\\x8e\\x61\\x92\\x4f\\x4b\\x4b\\x4b\\xb9\\xb7\\x5b\\\n\\xeb\\x4b\\x77\\xdd\\xa2\\x95\\x41\\xc3\\x8f\\xf3\\xa4\\x62\\x0e\\x4b\\xc9\\xca\\\n\\x62\\x53\\x73\\x2a\\x2d\\x35\\x23\\x2f\\xb7\\x49\\xe0\\xe9\\xca\\xa3\\x94\\xd7\\\n\\x41\\x6a\\x47\\x65\\x27\\x51\\x8f\\xe1\\x12\\xb8\\xa0\\x48\\x69\\x33\\x0d\\x97\\\n\\x12\\x84\\x9c\\xc0\\x00\\xb5\\x27\\x53\\x43\\xf0\\xc6\\x51\\x96\\xe0\\x0a\\x43\\\n\\xaa\\xca\\x6c\\x9e\\xef\\x38\\xda\\xb9\\x5c\\xca\\x14\\xf3\\x86\\xa7\\x10\\x4d\\\n\\x17\\x51\\xd6\\x36\\xed\\x92\\x42\\x0d\\x6c\\x6f\\x0a\\xf7\\xb3\\x40\\x7d\\xb4\\\n\\x8a\\x0a\\x18\\x5a\\xb3\\x7b\\xa2\\xd0\\xc3\\x85\\x0a\\xa1\\x1b\\xb7\\xbf\\x18\\\n\\x53\\x89\\x3c\\x23\\x0d\\xd9\\xb6\\xca\\xdc\\x76\\x85\\x54\\xb5\\x7e\\x50\\xe3\\\n\\xce\\x4d\\xcc\\x95\\x2b\\x74\\x34\\x72\\xa4\\x0b\\x82\\x35\\xac\\x4c\\x29\\x2d\\\n\\xa0\\xaa\\xb7\\x02\\x06\\x67\\xbd\\xd1\\x6e\\x70\\x8c\\xec\\xaa\\x84\\x57\\x41\\\n\\x09\\x64\\x28\\x54\\x9a\\x57\\xa0\\x30\\xb9\\x52\\xa5\\x0c\\xa8\\xb1\\xe3\\x05\\\n\\x2b\\x49\\xc8\\x15\\xd4\\xeb\\x13\\x24\\xa1\\xb2\\x14\\xab\\xd4\\x5b\\x9d\\xe0\\\n\\x4b\\xa9\\xdb\\x9b\\x0e\\x1e\\xbe\\xd1\\x88\\x4a\\x6c\\xa8\\x6b\\xcb\\xa4\\x28\\\n\\x24\\xe5\\x35\\x15\\x48\\x22\\x26\\x9d\\x51\\x74\\x36\\x9b\\x85\\x66\\x04\\xf4\\\n\\xbc\\x25\\xb4\\x97\\xdd\\x06\\xc4\\x9b\\x03\\xeb\\xd5\\x23\\x01\\xc0\\x9e\\x7a\\\n\\x75\\xa5\\x94\\x29\\xc6\\xc6\\x53\\x4e\\x09\\xff\\x00\\x1d\\x78\\x71\\xb7\\xde\\\n\\x98\\x8f\\x65\\xa4\\xf1\\x19\\x74\\xec\\xc2\\x65\\x9c\\x97\\x49\\xad\\xa9\\x9c\\\n\\xa8\\x74\\xe5\\x97\\xe7\\x0e\\x76\\x7a\\x6e\\x59\\x4e\\x14\\x66\\x5a\\x1b\\xaa\\\n\\xac\\x6a\\x08\\x1f\\xc4\\x61\\x95\\xf6\\x7d\\x9a\\xd7\\xb3\\x24\\x69\\xeb\\xd5\\\n\\xe0\\x30\\xb6\\x5f\\x49\\x43\\xc5\\x5b\\xc2\\xd0\\xd9\\xda\\x48\\x32\\x15\\x6a\\\n\\x1c\\xd5\\xe9\\x92\\x31\\xd4\\x25\\x33\\xe5\\x79\\xb7\\x6b\\x63\\xe3\\x4a\\x7a\\\n\\xeb\\x12\\xe4\\xfb\\xdd\\x35\\x87\\x16\\x55\\xa7\\x74\\x3c\\xac\\xb7\\x29\\xcc\\\n\\x2b\\xa5\\xbc\\xe1\\x33\\x72\\xda\\x23\\xdf\\xe2\\x3d\\x08\\x1b\\x5d\\x33\\x9a\\\n\\x1e\\xff\\x00\\x5d\\x21\\x2d\\x84\\x5f\\x35\\x6f\\xcf\\xd5\\xa1\\xc9\\xdc\\x89\\\n\\x29\\xaf\\xaf\\xde\\x17\\x32\\x5c\\xe2\\x23\\x62\\x1e\\x22\\x86\\xbc\\xc7\\xd7\\\n\\xca\\x25\\xe4\\x53\\xb2\\x39\\xad\\x71\\xdf\\xa7\\xaf\\x94\\x76\\x6f\\x0a\\x71\\\n\\xa4\\xa5\\xec\\xaa\\xc8\\x2e\\x0f\\xa3\\x0c\\xeb\\x4e\\x30\\x13\\x51\\x43\\x13\\\n\\x4d\\x65\\xa2\\x92\\x38\\xf0\\x89\\x62\\x93\\xef\\x6b\\xc3\\xd7\\x38\\x97\\x19\\\n\\x36\\x85\\x56\\x04\\x1a\\x56\\x0a\\x75\\xe1\\x73\\x0e\\x9c\\xa9\\xe5\\xe8\\xc3\\\n\\x89\\x2a\\x35\\xa5\\x69\\x71\\xe1\\x07\\xb4\\x22\\x51\\x41\\x2f\\xb5\\xb2\\xff\\\n\\x00\\x90\\xa4\\x4b\\x63\\x72\\x93\\x94\\xc8\\xeb\\x79\\xff\\x00\\x20\\x37\\xef\\\n\\xbf\\x38\\x5b\\x89\\x58\\xca\\x29\\x9b\\x5e\\x1a\\x08\\x59\\x15\\xa7\\x1f\\xbc\\\n\\x54\\x93\\x41\\x78\\x09\\x57\\xc6\\x29\\x13\\x44\\x22\\xa5\\x03\\x3f\\xf8\\x8f\\\n\\x9c\\x62\\x73\\x8d\\x2e\\x69\\x08\\x28\\xde\\xfc\\xbc\\x6b\\x0e\\x28\\x23\\xde\\\n\\xdd\\xe9\\x13\\xf3\\x0d\\xb2\\x80\\xe1\\xb9\\x00\\xd0\\x8d\\x62\\x45\\x22\\x6e\\\n\\x69\\x89\\xc7\\x12\\x54\\x58\\x75\\x0e\\x36\\x0f\\x12\\x93\\x60\\x38\\xc7\\xfa\\\n\\xad\\xdb\\x84\\x2b\\x06\\x7b\\x0a\\x95\\x29\\x13\\x13\\x0e\\xb3\\x2d\\x30\\x94\\\n\\x94\\xe7\\x43\\x67\\x35\\x73\\x27\\x5d\\x02\\xa9\\xa8\\xad\\xa3\\xfd\\x32\\x7c\\\n\\xb5\\xd9\\x4c\\x29\\x14\\x39\\x4c\\x9a\\x72\\xd7\\xe2\\xcc\\xa5\\x28\\xf7\\x5c\\\n\\xdc\\x5a\\x0b\\xaa\\x52\\x00\\x22\\x86\\xa6\\x02\\x0b\\x8b\\xa2\\x41\\x52\\x81\\\n\\xd3\\xc7\\xd7\\x18\\xf6\\x37\\x9c\\xa8\\xd9\\x11\\x4d\\x74\\xfd\\x62\\x7a\\x62\\\n\\x5a\\x4d\\x21\\xad\\xdd\\xb0\\xd4\\x71\\xbe\\x91\\x2e\\xe6\\x66\\x42\\xf6\\x65\\\n\\x24\\xd2\\x87\\x98\\x87\\x0a\\xb8\\x0f\\x5e\\xb8\\x43\\x0d\\x95\\x1a\\xd4\\xc2\\\n\\x12\\x80\\x72\\xd4\\x1f\\x9c\\x6c\\x50\\xa4\\xda\\x9c\\x22\\x5e\\x4d\\x2e\\x1a\\\n\\x26\\xe7\\x94\\x62\\x73\\x3b\\x25\\x84\\x4b\\x1c\\xe0\\x51\\x2a\\xcb\\xc0\\x8b\\\n\\x1f\\x28\\x94\\xca\\xb5\\x22\\x84\\x29\\x45\\x35\\x58\\x1c\\x0f\\x58\\xc4\\x0a\\\n\\x9f\\x98\\x0c\\xb0\\x0a\\xce\\x8a\\x09\\xe1\\xf4\\x89\\x46\\x43\\x0d\\x6f\\xd9\\\n\\x54\\xd0\\xeb\\xc6\\x1c\\x0d\\x1d\\xe0\\x45\\x78\\xf7\\xc2\\x5c\\x60\\x01\\x55\\\n\\x08\\x0f\\x22\\x86\\x27\\xe7\\x99\\x60\\xde\\x99\\xa8\\x38\\xf3\\xfd\\xe2\\x55\\\n\\xb5\\x4e\\x9d\\xb9\\xfe\\xd0\\xfa\\xf0\\x89\\x66\\x1b\\x51\\xcb\\x18\\x8e\\x1c\\\n\\xdb\\xac\\x15\\x53\\xdd\\x07\\xe4\\x22\\x64\\xb6\\xd8\\x75\\x23\\xde\\x06\\x82\\\n\\x06\\x1f\\x37\\x32\\xe6\\xd1\\xaa\\xd9\\x55\\xb7\\x7c\\x31\\x82\\x89\\x67\\x4b\\\n\\xd3\\x1c\\xf3\\x5f\\x9f\\x11\\xcb\\xf7\\x89\\x39\\xc4\\x4a\\x86\\x4c\\xb3\\x7a\\\n\\xa1\\x35\\x20\\x6b\\xe2\\x3e\\x70\\x31\\x66\\x9d\\x60\\x27\\x2e\\x45\\x91\\xbd\\\n\\x0e\\xa4\\xa8\\x38\\x7e\\x0c\\xa7\\x37\\xfc\\x6e\\x60\\x6c\\x87\\xf6\\xe3\\xda\\\n\\x1a\\x65\\x69\\x53\\x9c\\xfd\\x70\\x89\\x3c\\x5e\\x51\\x72\\xc9\\x6e\\xde\\x85\\\n\\x3a\\x46\\x2d\\x2b\\x2b\\x31\\x99\\x62\\x84\\xd0\\x91\\xce\\xb4\\xac\\x67\\x5b\\\n\\x1b\\xaa\\x86\\x9d\\x53\\xca\\xd9\\x9b\\x20\\x9f\\x7b\\xbf\\x58\\x7f\\x06\\x61\\\n\\xb9\\x7f\\x69\\x4c\\xc0\\x71\\x64\\x84\\xec\\xf5\\xb2\\xb5\\x55\\x3a\\x11\\x1e\\\n\\xce\\xd3\\x4b\\x26\\x97\\xe3\\xfa\\x7e\\xd1\\x9d\\xbf\\x54\\x87\\x96\\x3e\\x1e\\\n\\x51\\x32\\xe6\\xbd\\x48\\xf2\\xac\\x34\\xab\\xf9\\xe9\\xdd\\x12\\x67\\xf1\\x07\\\n\\xfd\\xdf\\x58\\x91\\x93\\x76\\x6f\\x2e\\xcc\\x6e\\xa5\\x49\\xcd\\xe3\\xa4\\x4a\\\n\\xb6\\x24\\xe4\\x5a\\x6c\\xfb\\xca\\x4d\\x07\\x7c\\x34\\x16\\x37\\xa1\\xa3\\x54\\\n\\x82\\x79\\x08\\x71\\xbd\\xa0\\x02\\x14\\xde\\xc4\\xc3\\x7b\\xc8\\x85\\x0a\\x28\\\n\\x88\\x7a\\x99\\x45\\x79\\xc3\\x0d\\xb6\\xab\\x8e\\x17\\x89\\xdc\\x25\\x8c\\x49\\\n\\x85\\x67\\x6c\\x36\\xe5\\x0f\\xde\\x31\\x5c\\x07\\x12\\xc2\\x0a\\xa6\\x65\\x9f\\\n\\x51\\x09\\x35\\x00\\x13\\xa4\\x61\\xdd\\xb1\\x98\\x42\\x03\\x33\\x29\\x21\\x69\\\n\\x3e\\xf9\\xb5\\x86\\xb1\\x2b\\x8d\\xcb\\x4f\\xb7\\x95\\xa2\\x0b\\x9d\\x2e\\x61\\\n\\x1b\\xb4\\x30\\xb5\\xa9\\x69\\xb6\\x82\\xd6\\xe7\\x0e\\x95\\x24\\xa8\\x9a\\xd8\\\n\\x28\\xf9\\x26\\xf1\\xb0\\x5e\\x2e\\xfb\\xc6\\x50\\x55\\xd6\\xd4\\x45\\xaf\\xa4\\\n\\x62\\xfd\\xa3\\x63\\x02\\x4a\\xda\\xc4\\xd6\\x10\\xe0\\x25\\xb1\\x9b\\x5c\\xe2\\\n\\xd4\\xa7\\x38\\xc2\\xa6\\x26\\xf1\\xa9\\xb2\\xb3\\x53\\x26\\xba\\x29\\xbe\\x45\\\n\\x3a\\xfe\\x9e\\x71\\x22\\xb6\\xa5\\xe7\\xdb\\xad\\x3d\\x9a\\x55\\xc4\\xae\\x63\\\n\\x90\\x6d\\x1a\\xc7\\x6b\\xdc\\x38\\x87\\x6a\\xf1\\x59\\xb6\\xb3\\x29\\xb4\\xcd\\\n\\x95\\x21\\x21\\x1f\\x00\\x01\\x29\\xef\\x08\\xa2\\x94\\x15\\xa1\\x0b\\xb1\\x14\\\n\\x8e\\xc2\\xca\\x96\\xf0\\x2c\\x24\\xa9\\xca\\x23\\xd8\\xda\\xb7\\x01\\x6b\\xfc\\\n\\xe3\\x10\\xc6\\x70\\xcc\\x1d\\x91\\x35\\x32\\xea\\x54\\xc2\\x2b\\xb6\\x47\\xc6\\\n\\xb1\\x4b\\x04\\x71\\xad\\x7d\\x72\\xc0\\xb1\\x49\\xde\\xd1\\xcd\\x19\\xdd\\x81\\\n\\x96\\xc0\\x92\\xaa\\xcb\\x1a\\x65\\x5a\\x96\\x93\\xbb\\x5e\\x24\\x13\\xf2\\xf3\\\n\\x89\\xc9\\xd7\\x9b\\x71\\xe0\\xd9\\xa6\\xb0\\xfc\\xbb\\xb3\\x93\\x21\\x6e\\x38\\\n\\x6a\\x57\\xa5\\x78\\x56\\x10\\x86\\xe5\\x5a\\x42\\x0a\\xf3\\x1a\\x0b\\x57\\xe7\\\n\\xc6\\x14\\x54\\xb3\\xbb\\xf2\\xf5\\xfb\\x44\\xab\\x7b\\xb0\\x4a\\x50\\x68\\x7d\\\n\\xed\\x60\\x29\\xd2\\x46\\x5e\\x63\\xca\\xb7\\xf9\\x43\\xaf\\x25\\x89\\x50\\x5b\\\n\\xb3\\xb9\\x60\\xb6\\xea\\xc9\\x55\\xf7\\x8d\\x7e\\xf0\\x95\\x39\\x29\\xf8\\xd7\\\n\\xa7\\xba\\x61\\xb2\\x94\\xad\\x2f\\x7c\\x4e\\x13\\x48\\xcc\\xb5\\xc2\\xab\\x94\\\n\\x78\\x79\\xff\\x00\\xe8\\xec\\xd9\\x43\\x27\\x2a\\x2f\\xce\\x18\\x66\\x63\\x11\\\n\\x9b\\xda\\x3c\\x55\\xb3\\x04\\x24\\x21\\x5a\\x58\\x9a\\xfd\\x7e\\x50\\xdb\\x48\\\n\\x95\\x96\\x21\\x2a\\xc8\\xdd\\x2e\\x05\\xbd\\x5e\\x25\\x9c\\x69\\xb6\\x56\\xea\\\n\\x9d\\x35\\xfc\\xdf\\xbc\\x7b\\x58\\x71\\x13\\x2e\\xe7\\xab\\x0a\\x63\\x2a\\x06\\\n\\xa0\\x2f\\x2d\\x09\\x03\\x9d\\x6b\\x12\\x98\\x37\\xb4\\x2d\\x73\\x53\\x8a\\xc9\\\n\\x2c\\xd2\\xd4\\x1c\\x52\\xbe\\x25\\x93\\x54\\xa7\\xca\\x1c\\x6d\\x2d\\xa4\\xad\\\n\\xb6\\xc4\\xa3\\x48\\xfe\\xc1\\x45\\xbd\\xa0\\xd7\\xe2\\x3c\\x6d\\x78\\x9b\\x6d\\\n\\x53\\x0c\\xef\\x2a\\xbd\\xf1\\x80\\xbf\\xec\\xde\\xd1\\xed\\x29\\xce\\x84\\xad\\\n\\x49\\x40\\x55\\xc0\\x48\\xae\\x5c\\xa3\\x80\\xfb\\xd7\\x51\\x43\\x1b\\x59\\x77\\\n\\xd3\\x9d\\x09\\x42\\x72\\xea\\x52\\x29\\x5f\\xd6\\x9d\\x22\\x73\\x16\\x5b\\x59\\\n\\xd8\\x6d\\x25\\x65\\x63\\x66\\x07\\x0d\\xe0\\x40\\xaf\\xa3\\x0c\\xa9\\x4a\\xa6\\\n\\xd5\\x4a\\x97\\xa6\\xb9\\x4e\\x5f\\xaf\\xae\\xb0\\xda\\x65\\x5c\\x58\\x4b\\x8f\\\n\\xe7\\x1c\\xc9\\xd6\\x30\\xdc\\x3f\\x0e\\x6d\\x6d\\x9c\\xc8\\x58\\x73\\x74\\x85\\\n\\x70\\xe3\\x5d\\x6d\\xdf\\x18\\xd0\\x96\\x94\\x7e\\x8d\\x65\\x52\\x6d\\xba\\x93\\\n\\x6f\\xe2\\x97\\xf0\\xf2\\xc4\\x76\\x4f\\xae\\xa9\\x6d\\x23\\xb8\\x50\\x7c\\xa1\\\n\\x45\\x4d\\x6e\\xa6\\xa2\\xdc\\x3a\\xc1\\x99\\x98\\xad\\x03\\xab\\x4f\\x8f\\xeb\\\n\\x13\\x2f\\xaf\\x8d\\x54\\x79\\xfa\\xf5\\x78\\x68\\x93\\xaf\\x31\\x01\\xa0\\xae\\\n\\x1d\\x29\\x0e\\x48\\xb2\\x5b\\xa9\\x6d\\x27\\xc3\\xaf\\x08\\xf6\\x36\\x47\\xc0\\\n\\x07\\x84\\x04\\x13\\x30\\x10\\xd9\\x2d\\xef\\x52\\x89\\xd4\\xdf\\x94\\x60\\x2d\\\n\\x27\\x0a\\x97\\xdb\\x4e\\x2f\\x2b\\x2e\\x04\\xac\\xad\\x46\\xf9\\x80\\xb0\\xf1\\\n\\xac\\x61\\xb3\\x6a\\xc5\\x56\\xb5\\xba\\x9c\\x8c\\x33\\xbd\\x2c\\x4e\\x8e\\xf2\\\n\\x1c\\x23\\x75\\x2d\\xd8\\x0f\\x28\\x00\\xa9\\x08\\xcb\\xc8\\x57\\xf5\\x84\\xa8\\\n\\xa6\\x80\\xd4\\x9e\\x26\\x0b\\x41\\xda\\x66\\xf9\\xc3\\x0d\\x29\\xb5\\x39\\x55\\\n\\x12\\x90\\x2c\\x38\\x08\\xda\\x85\\x38\\xb2\\x45\\x45\\xe9\\xe1\\x13\\x09\\x71\\\n\\xd7\\x28\\x9a\\x84\\x6b\\x12\\xad\\x14\\x8e\\x22\\x16\\xe1\\xe2\\x6b\\x13\\x52\\\n\\xe8\\x99\\x68\\x85\\x80\\xae\\x14\\x31\\x8a\\x76\\x58\\xab\\x3b\\x8d\\x36\\x00\\\n\\xe4\\x91\\x0c\\xaa\\x6f\\x04\\x98\\x27\\x2a\\xc0\\xae\\xa2\\xb1\\x83\\x63\\x72\\\n\\x73\\xc9\\xa1\\x78\\x29\\xca\\x5d\\x2a\\x3c\\x69\\xa5\\x20\\xa1\\xd5\\x23\\x77\\\n\\x73\\x7a\\xd9\\x74\\x23\\x9c\\x76\\x8e\\x68\\xe1\\xd2\\x85\\x7f\\x1e\\x50\\x29\\\n\\xf9\\xb3\\x90\\x93\\xf5\\xf5\\x58\\xec\\xbc\\xfc\\xce\\x17\\x33\\x8b\\xe2\\x2e\\\n\\x03\\xb0\\x08\\x2b\\x4a\\x3e\\x11\\xdd\\xd6\\x31\\x8c\\x46\\x7b\\xb6\\x5d\\xab\\\n\\x98\\xab\\xae\\xb8\\xc0\\x9d\\x7f\\x66\\x95\\x12\\x50\\xd8\\x2f\\x10\\xb5\\x53\\\n\\x28\\x1a\\x66\\x4a\\x33\\x56\\xc0\\x53\\x53\\x18\\x5e\\x18\\x30\\x39\\x29\\x6a\\\n\\x2b\\x71\\x4d\\x8c\\x89\\xad\\x90\\x12\\x00\\xa0\\xe5\\xc2\\x31\\xe7\\xd4\\xce\\\n\\x1d\\x88\\xec\\xaa\\xd2\\xe6\\xa5\\x9d\\x48\\x75\\x1a\\xe6\\x3a\\x42\\x25\\x9e\\\n\\xf6\\x96\\x54\\xb5\\x15\\x29\\xe4\\xa5\\xa7\\x16\\x75\\x71\\xbe\\x29\\x36\\xbf\\\n\\x0b\\xfb\\xd6\\xb9\\xa5\\x28\\x3b\\x48\\xb9\\x2c\\x32\\x5b\\x0f\\x96\\xcc\\xd3\\\n\\x8c\\x37\\xb2\\xfc\\x33\\x4e\\x26\\x94\\xf0\\x31\\x85\\x61\\xb3\\xdd\\xa3\\x9b\\\n\\x68\\xe2\\x53\\x8f\\x99\\x76\\x94\\x1c\\x4b\\x6e\\xae\\xa8\\x5e\\x6b\\x1a\\x8e\\\n\\x34\\x1c\\x3e\\xb0\\xc9\\x6b\\x0b\\xc3\\x58\\x92\\x94\\x09\\x0d\\xe5\\x09\\xdd\\\n\\x00\\x01\\x5f\\x8a\\xdc\\x46\\xb1\\x3f\\x32\\x96\\x1b\\x51\\xae\\xfd\\xef\\xc6\\\n\\x26\\xf1\\x55\\x87\\x12\\xa4\\xa9\\x43\\x2a\\xae\\x47\\x7c\\x26\\x77\\x11\\xc4\\\n\\xa6\\x91\\xec\\xef\\xbe\\x94\\x24\\x5f\\x29\\x34\\xd4\\x46\\x1c\\xcb\\xa9\\x97\\\n\\x4e\\xd4\\x95\\x2f\\x28\\xa9\\x3a\\x98\\x67\\xf0\\xc1\\x07\\x94\\x2d\\xb5\\x38\\\n\\xe6\\x61\\xd3\\xd1\\x89\\x46\\x09\\x58\\xcc\\x6d\\x95\\x46\\xfd\\x34\\x85\\x2d\\\n\\x2f\\xaf\\x60\\x28\\x0e\\x95\\x85\\x32\\x1a\\x48\\xbd\\x68\\x29\\xdf\\x13\\x09\\\n\\xda\\xd1\\x22\\xe8\\xa5\\xd3\\xa8\\xad\\x75\\x82\\xda\\x50\\xdd\\x72\\x8a\\xa2\\\n\\xe9\\xe8\\x74\\xb7\\x84\\x36\\xf1\\xe5\\xfa\\xc5\\x16\\xa2\\x4d\\x4f\\x38\\xd8\\\n\\xf4\\xf9\\x42\\x70\\xd4\\x87\\xa5\\x59\\x5a\\x82\\xbd\\xa9\\xad\\xa5\\x72\\xd3\\\n\\x2f\\x4e\\xbd\\xf1\\x34\\xc3\\x72\\xd3\\x41\\xb4\\x0c\\xa3\\x20\\x57\\x4a\\xd4\\\n\\xd7\\xe9\\x09\\x70\\xba\\xf2\\x58\\xca\\x56\\x95\\x6b\\x4e\\x9c\\x62\\x75\\x89\\\n\\x36\\xb0\\xfc\\x89\\xfe\\xe1\\xe5\\xc2\\x30\\xa9\\x8f\\x6a\\x90\\x32\\xd2\\xee\\\n\\x6d\\x90\\xd4\\xe2\\xcc\\xcb\\xfa\\x06\\x50\\x16\\x49\\x41\\x1c\\x72\\x83\\x73\\\n\\x58\\x99\\x79\\x18\\x9a\\x95\\x23\\x24\\xee\\x69\\x34\\xa9\\x25\\xe5\\x27\\x45\\\n\\xba\\x06\\xa0\\xf4\\xd2\\x31\\x6d\\xd6\\x25\\x58\\x59\\x0a\\x4c\\xbd\\x36\\x74\\\n\\xb1\\xb0\\xca\\x2b\\xdc\\x09\\x87\\x9d\\x2a\\x46\\x54\\x9a\\x75\\x89\\xa5\\xbc\\\n\\x89\\x62\\x50\\x6f\\x41\\x98\\xf1\\x50\\x1a\\xdb\\x9d\\x34\\x89\\x0c\\x59\\x69\\\n\\xda\\x34\\xba\\xa0\\x23\\x2e\\x55\\x15\\x7f\\x77\\x3e\\x60\\xa4\\x0d\\x32\\x94\\\n\\x81\\xe2\\x0d\\x29\\x68\\xd8\\xb2\\xb9\\x07\\x26\\x54\\x00\\x7b\\x66\\xa2\\xd1\\\n\\x37\\x21\\x74\\x39\\x4f\\x9d\\x3c\\xb5\\x80\\x97\\x5f\\xfe\\xea\\xeb\\xce\\xd9\\\n\\x7e\\xf0\\x99\\x53\\x5c\\x8d\\x82\\x32\\xfc\\x7a\\xd7\\xaf\\xcf\\x9f\\x74\\x29\\\n\\xf9\\x99\\x60\\x9c\\x8e\\xab\\x35\\x6d\\xd2\\xda\\xc4\\xbc\\xd4\\xce\\xd8\\xb9\\\n\\x34\\xe6\\xdc\\x1a\\xd1\\x37\\x14\\x27\\x8d\\x4d\\x60\\x04\\x29\\x35\\xaf\\x08\\\n\\x50\\x4d\\x69\\xf3\\x85\\xb2\\x14\\x37\\x4d\\x0d\\x6b\\x0c\\xb2\\xd3\\xfb\\x8a\\\n\\x48\\xa8\\xa8\\xaf\\x5f\\xaf\\xa3\\x08\\xc3\\x5c\\x15\\xca\\xa0\\x68\\x74\\xd3\\\n\\xbb\\x8f\\xd2\\x11\\x23\\x3c\\xa5\\x6e\\x30\\x69\\xce\\xb0\\xb9\\x39\\xd6\\xbf\\\n\\xba\\xc9\\x0d\\xd8\\x15\\xf5\\x26\\x82\\xdd\\xf1\\x33\\x2a\\xe3\\x21\\x35\\x1e\\\n\\xfe\\x8a\\xa5\\x87\\x7f\\xab\\xc4\\x83\\x12\\xeb\\x99\\x4b\\x93\\x33\\x09\\x96\\\n\\x42\\x4d\\x73\\xa8\\x56\\xb4\\x34\\x1b\\xb9\\x81\\x4d\\x6b\\x6f\\xbc\\x21\\xe7\\\n\\x3b\\x43\\x3a\\xce\\x1f\\x2e\\xaa\\xe1\\xf2\\x87\\x66\\xe3\\xc3\\x79\\x0f\\x92\\\n\\x52\\x43\\x82\\x96\\x14\\x4d\\x68\\x2a\\xaa\\xe6\\xcc\\x0c\\x33\\x2e\\xdc\\xbb\\\n\\x72\\xd2\\x8d\\x91\\x91\\x9a\\x52\\x82\\x97\\x03\\x8f\\x38\\x24\\x81\\x97\\x58\\\n\\x97\\xb2\\x13\\x5b\\xda\\x2c\\x9a\\x93\\x7a\\xfd\\xa1\\x4e\\x12\\x77\\x4d\\x34\\\n\\xfd\\xa1\\x0a\\x29\\x42\\xeb\\xbd\\x98\\x18\\x6d\\xb0\\x94\\xde\\xf7\\x26\\xbf\\\n\\xf7\\x75\\x84\\xec\\xcd\\xb2\\x5c\\x71\\xb4\\x00\\x32\\x9e\\x16\\xf3\\x87\\xc9\\\n\\x48\\xae\\xb0\\x1f\\xae\\xe5\\x3c\\x61\\xa4\\x0c\\x9b\\xf4\\x50\\xe5\\x13\\xf8\\\n\\x2c\\x9c\\xee\\xad\\x84\\x9e\\x74\\xaf\\xe9\\x1d\\xa8\\xc0\\xb1\\x5e\\xcd\\xbd\\\n\\xed\\xd8\\x5b\\x8a\\x71\\x01\\xcc\\xca\\x64\\x25\\x49\\xa8\\xcd\\xf9\\xab\\xca\\\n\\x3b\\x19\\x8e\\xbd\\x8b\\xc8\\xa0\\xcc\\x82\\x97\\x50\\xa0\\x82\\x09\\xa9\\x1b\\\n\\xa0\\x90\\x7c\\x63\\xb7\\x2f\\x28\\xba\\x96\\xd2\\x77\\x6d\\x5e\\x3a\\x5f\\xed\\\n\\xf7\\x89\\xcc\\x45\\xc6\\xb0\\x99\\xf4\\x24\\x8f\\xc7\\x65\\x48\\x14\\xf8\\x2d\\\n\\x4f\\x1b\\xc6\\x05\\x2f\\x2b\\x83\\xb0\\x90\\xee\\xf4\\xd4\\xc7\\xe2\\x6d\\x72\\\n\\xdd\\x6b\\x5f\\xc5\\x4d\\x6a\\x6b\\xfb\\xc6\\x17\\x25\\x8d\\xe3\\x0c\\x64\\x53\\\n\\x6b\\x6d\\x86\\xa8\\xa4\\x3c\\x41\\x52\\x4a\\x68\\x4e\\x96\\xa5\\x40\\xe7\\xca\\\n\\x3b\\x46\\xa6\\x87\\x67\\x24\\xde\\x2c\\xe6\\x75\\xe7\\xdc\\x95\\xcb\\x5b\\xa0\\\n\\xa7\\x2a\\x4b\\x86\\xd7\\x1b\\xda\\x5b\\xbe\\x1c\\x69\\xb0\\xe4\\xa5\\x0e\\x67\\\n\\x2a\\x9d\\xc1\\xaa\\x63\\x07\\xec\\xe8\\xc4\\x9d\\x46\\x74\\x6c\\x85\\x8e\\x62\\\n\\x92\\xa0\\xad\\x22\\x47\\xb3\\xf2\\x4c\\xb2\\xd3\\x54\\x05\\x4d\\x5c\\xac\\x0a\\\n\\x70\\xa6\\x9f\\xcc\\x4f\\x4e\\x32\\xcb\\x8a\\x60\\x10\\x03\\x75\\xa1\\x26\\xb5\\\n\\xa7\\xeb\\xa4\\x62\\x78\\x8a\\x1e\\xdd\\x0b\\xaa\\x8e\\x89\\xac\\x4b\\x61\\x53\\\n\\xd3\\x85\\x44\\x4a\\xab\\x64\\xe5\\x83\\xb5\\xae\\x9a\\xda\\x9c\\x3b\\xe3\\x00\\\n\\xc0\\x13\\x87\\xb3\\x99\\xd4\\x87\\x1c\\x23\\xf2\\xd2\\x9e\\x75\\xac\\x65\\xb5\\\n\\x02\\x69\\x0f\\xa0\\x1d\\xe0\\x7a\\x7a\\x31\\x2c\\xe3\\x5a\\x38\\x42\\x29\\xc4\\\n\\xc4\\xe6\\x26\\x94\\x0d\\x93\\x23\\x52\\x3f\\x18\\x28\\x53\\xa8\\xa5\\x38\\xf7\\\n\\xc1\\x9a\\x58\\x19\\xd0\\x83\\x9b\\x98\\x30\\xcc\\xd3\\x8f\\x52\\xb5\\xaf\\x7f\\\n\\x48\\x6d\\x25\\x28\\x25\\x62\\xf5\\xd3\\xc3\\x58\\xca\\x16\\x0d\\xa9\\xce\\x12\\\n\\x84\\x0e\\x5e\\xbe\\x70\\x0a\\x47\\xf3\\x1b\\x44\\x74\\xf3\\x85\\x90\\x99\\xec\\\n\\x24\\x28\\xe5\\x3e\\xca\\x6c\\x7f\\xc7\\x5f\\x2a\\xdf\\x94\\x63\\x2c\\xd4\\x97\\\n\\x74\\x29\\x4d\\xff\\x00\\xc5\\x20\\xea\\x7a\\x75\\x8c\\x1e\\x5f\\x70\\x4d\\x11\\\n\\x9c\\x50\\x80\\x69\\x5a\\xd4\\x52\\xb6\\x8c\\x46\\x5a\\x83\\x6f\\x9f\\x73\\x8d\\\n\\xec\\x3b\\xe1\\x13\\xce\\x4a\\x99\\x8c\\x3f\\x0c\\x69\\x61\\x18\\x93\\x8b\\x6d\\\n\\xc5\\x04\\x9d\\xc2\\x54\\x42\\x96\\x4f\\x01\\x6d\\x7b\\xa3\\x0d\\x97\\x97\\xc2\\\n\\xa5\\x18\\x94\\x69\\x0a\\x2f\\x36\\x85\\x17\\xdc\\xa1\\xfc\\x45\\xa8\\xe6\\xa8\\\n\\x3c\\x40\\xd2\\x31\\x79\\xac\\xea\\x3b\\xc0\\x65\\xe1\\x51\\xcf\\xcf\\xf6\\x85\\\n\\x3a\\x4f\\x1f\\x28\\x54\\xd0\\x50\\x52\\x14\\x45\\x52\\x4a\\x7c\\xbd\\x69\\x18\\\n\\x82\\x1d\\x49\\x2e\\x32\\x97\\x02\\x42\\xb3\\xee\\x8a\\xef\\x57\\x5f\\xa5\\xac\\\n\\x15\\x7a\\x6f\\x50\\x1c\\x26\\x6d\\xd9\\xe9\\x06\\xd2\\xef\\xe1\\xa9\\xb1\\xbc\\\n\\x83\\x50\\x6c\\x3a\\xc2\\xb6\\x69\\xb6\\x61\\xe6\\x21\\xb9\\x86\\x50\\x8c\\xaa\\\n\\x52\\x01\\x1c\\xc8\\x10\\xe0\\x0e\\x2c\\xd0\\xd4\\x0b\\xd4\\x53\\x9f\\x48\\x6d\\\n\\xa4\\xab\\x4b\\xf3\\xa1\\xad\\x3d\\x6b\\x07\\x20\\x56\\x50\\xe2\\x69\\xd0\\x88\\\n\\x70\\x04\\x1d\\x77\\x69\\xef\\x70\\xf3\\x8c\\xe9\\x23\\xde\\x07\\xb8\\xc4\\x9a\\\n\\x48\\x59\\x24\\x10\\x09\\x37\\x87\\xd4\\xf4\\x9a\\x81\\x46\\xf8\\xaf\\x0b\\xfd\\\n\\x3e\\x7e\\x8c\\x7f\\x58\\x99\\x14\\x2d\\xa7\\x2d\\x35\\xa8\\xa5\\xfd\\x52\\x1a\\\n\\x9a\\x98\\xc4\\x1a\\xd9\\xb9\\x42\\x09\\x4a\\xa8\\x07\\xe5\\x21\\x5f\\x68\\xc7\\\n\\x71\\x35\\xe6\\x44\\xb8\\x61\\xc0\\xda\\x2c\\xb7\\xc2\\x48\\x6d\\x36\\xa6\\xf2\\\n\\xe9\\x41\\xd6\\xa6\\x27\\x1e\\x6e\\x65\\x3f\\xd3\\x58\\x4a\\xc8\\x77\\x59\\x86\\\n\\xf3\\x14\\xe6\\xe3\\x55\\x8e\\x09\\xe3\\x7f\\xa1\\x8e\\xc7\\xcf\\x31\\x82\\xba\\\n\\xce\\x19\\x9b\\x39\\x5d\\xd4\\xf1\\x3b\\xb9\\xac\\x93\\x43\\xa0\\xaf\\x4e\\x42\\\n\\x12\\xb0\\x1e\\x42\\xb3\\x03\\xb4\\xf7\\x6e\\x2f\\xdd\\xeb\\x84\\x24\\xd6\\xc7\\\n\\xca\\x1b\\xd0\\x44\\xca\\xf2\\x81\\x4e\\xb0\\x95\\x92\\xb0\\x07\\x38\\x1e\\xe7\\\n\\x58\\xd1\\x1e\\x77\\xff\\x00\\xb8\\xc0\\xd6\\xbd\\x3f\\x48\\x4a\\xa2\\x67\\xdd\\\n\\xf5\\xd6\\x11\\xef\\x83\\xc3\\x9f\\xd6\\x1a\\x21\\x48\\x01\\x34\\x57\\x75\\xe0\\\n\\xad\\x00\\xd0\\xa8\\x03\\xdf\\x18\\x8a\\x25\\x67\\x50\\xe3\\x0e\\xa5\\x0a\\x4e\\\n\\x53\\xbc\\x68\\x47\\x9e\\x91\\x85\\xe5\\xc1\\xf1\\x37\\x65\\x92\\xb4\\xa5\\x2e\\\n\\xb8\\x5c\\x4d\\xc0\\xa8\\xd2\\xdd\\x23\\xb7\\x13\\x05\\x08\\x2f\\xdd\\x5b\\xb6\\\n\\xa5\\xeb\\xfc\\x6b\\x13\\xbd\\xa1\\x02\\x5d\\xe6\\xd6\\x48\\xa5\\x53\\x94\\xea\\\n\\x75\\xa5\\xba\\xf9\\x47\\x65\\x3b\\x4b\\x86\\xa2\\x79\\x96\\xb1\\x89\\x45\\x3a\\\n\\x73\\x00\\xd5\\x13\\x9c\\x04\\x0f\\x76\\xb9\\x6a\\x45\\x06\\xa4\\x81\\xdf\\x09\\\n\\xed\\x66\\x15\\x27\\x86\\x34\\xdc\\xb3\\x6c\\xa5\\x33\\x14\\x14\\xdd\\xab\\x69\\\n\\xc8\\xa1\\xbd\\xc4\\x6a\\x35\\x8c\\x47\\x10\\x5c\\xd2\\x91\\x2c\\x9f\\xec\\x21\\\n\\xc9\\x87\\xf3\\x0b\\xa5\\x2a\\xaa\\x32\\xf4\\x15\\xbf\\x5b\\x1a\\x47\\x62\\xbb\\\n\\x31\\xfd\\x66\\x65\\x73\\x0e\\x52\\xad\\xa8\\xdb\\x85\\x8f\\x0d\\x75\\x1f\\x78\\\n\\x97\\x90\\x6a\\x45\\xb6\\xdb\\x4a\\x2e\\xda\\x72\\x93\\x4e\\x55\\xd6\\x26\\xa7\\\n\\x59\\x94\\x92\\x99\\x78\\x3a\\xd9\\x73\\x67\\xba\\x9c\\xc3\\x35\\xba\\x56\\x31\\\n\\x4c\\x6a\\x7a\\x6a\\x61\\x46\\x5d\\xa7\\x9d\\x56\\xd7\\x29\\x08\\x4a\\x95\\xaa\\\n\\xaf\\x61\\x18\\x3e\\x0b\\x33\\x30\\xe0\\x99\\x9a\\x4b\\x8d\\xf1\\xc8\\xe8\\x29\\\n\\xf9\\x11\\x0d\\x4d\\x3b\\x24\\x12\\xdb\\x65\\x1b\\x14\\x53\\x2e\\x95\\xbe\\xbf\\\n\\xbc\\x1e\\xd1\\x51\\x00\\x06\\xcd\\x41\\xde\\x20\\x5a\\x9d\\xf1\\x25\\x89\\x7b\\\n\\x5e\\x94\\x27\\x90\\x89\\xfc\\xcd\\x26\\xa9\\xde\\xb5\\x6d\\x7f\\xa7\\xae\\x51\\\n\\x33\\x30\\xf3\\xa0\\x81\\x99\\x14\\xad\\xcd\\x47\\xaf\\x5e\\x08\\x99\\x58\\x1b\\\n\\x23\\x99\\x57\\x04\\xab\\xbb\\xac\\x31\\x38\\x80\\x90\\x9a\\xa5\\x47\\x95\\x41\\\n\\x3f\\xac\\x1c\\x45\\xc6\\x1c\\xaa\\x12\\x4d\\xf8\\x54\\xf1\\xaf\\x08\\x95\\xc4\\\n\\xfd\\xa8\\x23\\x35\\x13\\x4b\\x10\\x6d\\xd6\\x0b\\x8d\\x81\\xef\\x26\\xfd\\x47\\\n\\xaf\\x5c\\x20\\x1e\\x50\\xa5\\x53\\x4d\\x7d\\x6b\\x05\\xc7\\x6b\\xee\\xab\\xff\\\n\\x00\\x13\\x18\\x8b\\xca\\x56\\x23\\x84\\xa9\\x3c\\x24\\xa6\\xe9\\x4f\\xf8\\xb7\\\n\\x19\\x90\\xf3\\x53\\xbe\\xd3\\xa0\\x6e\\x97\\xe4\\x04\\x4a\\x2d\\x08\\x94\\x94\\\n\\x0c\\x9f\\xc2\\x39\\xc1\\xa7\\x74\\x76\\xcb\\x17\\x66\\x4a\\x4d\\x52\\xac\\xa8\\\n\\x6d\\x5c\\x1e\\x35\\x31\\xd9\\xf9\\x39\\xa6\\xe6\\x90\\xec\\xe8\\x29\\x0a\\x01\\\n\\x48\\xaf\\xe5\\x52\\x73\\x0d\\x75\\xd6\\x16\\xbf\\xc5\\x52\\xb8\\x25\\x34\\x4f\\\n\\x75\\xe2\\x75\\xe4\\xed\\x66\\x1d\\x50\\xce\\x10\\x6e\\x07\\x1d\\xe1\\xfc\\xc4\\\n\\xc2\\xe6\\x4a\\x33\\xcb\\x4b\\x93\\xc6\\x15\\x29\\x3b\\xb3\\x4b\\xae\\xcb\\xa9\\\n\\xbc\\xe1\\x2a\\x52\\xf2\\xaa\\x9b\\xe6\\x95\\xae\\x82\\xf6\\xa9\\x8f\\x66\\x0c\\\n\\xe4\\x2a\\x73\\x3a\\x5c\\xf7\\x85\\x7d\\xda\\x7e\\xb5\\x31\\x33\\x32\\x65\\xd0\\\n\\x44\\xa7\\xe5\\x35\\xa7\\x4f\\x42\\x24\\xe7\\xa6\\x5c\\x73\\x7f\\x9c\\x39\\xbc\\\n\\xd8\\x52\\xb5\\xa5\\x7b\\xe1\\x87\\x72\\x8c\\xa0\\x13\\x98\\x65\\xee\\x89\\x1c\\\n\\x19\\xd7\\xc1\\x77\\x6f\\xb3\\xa8\\xcd\\x96\\xb4\\xd2\\xe4\\x78\\xc2\\x64\\x10\\\n\\x1c\\x19\\xa9\\xe3\\x0c\\xe1\\xb2\\xef\\x3d\\xb3\\x5d\\x36\\x59\\x45\\x3b\\xf8\\\n\\xde\\x27\\x3b\\x34\\xa0\\x49\\x96\\x4d\\x53\\x42\\x47\\x7f\\xc8\\x46\\x13\\x86\\\n\\x4c\\x25\\xe2\\x99\\xb1\\x46\\xc5\\x75\\x14\\x87\\xd3\\x99\\x4a\\x4f\\x00\\x48\\\n\\xef\\xb9\\x87\\x18\\x29\\x75\\x2a\\x58\\xfc\\x2a\\x0a\\xf7\\xfa\\xf5\\xca\\x43\\\n\\x71\\x68\\x71\\xa1\\x56\\x80\\x50\\x3d\\x33\\x27\\x2d\\xfb\\xaa\\x23\\xb6\\xd8\\\n\\xa2\\x70\\x7d\\xc6\\x1c\\x13\\x4e\\x4c\\xaa\\xec\\x54\\x1d\\xdd\\x55\\xbb\\x5a\\\n\\xf1\\x14\\xca\\x0d\\x6b\\x41\\x72\\x04\\x60\\xcd\\x4f\\x92\\x97\\x56\\xd2\\x9b\\\n\\x0b\\x05\\x59\\x6e\\x29\\x9c\\xd6\\xe0\\xe8\\x05\\x69\\x4a\\x56\\xf5\\x26\\xf1\\\n\\x24\\xd3\\x8d\\x7e\\x2a\\x91\\x99\\xcc\\xc9\\x29\\xb7\\x9f\\xcf\\x85\\x7e\\xf1\\\n\\x85\\x3c\\x1c\\x95\\x97\\x2f\\x36\\x52\\xe2\\x40\\xc9\\x5e\\x06\\x19\\xdf\\x5c\\\n\\x34\\x8d\\x69\\x13\\xbb\\xbf\\x31\\x12\\xe9\\xae\\x9a\\xc4\\xba\\x6b\\x4c\\xf0\\\n\\xfa\\x06\\x5b\\x69\\x0d\\x37\\x51\\x4f\\x5f\\xc4\\x28\\x65\\x89\\x95\\xda\\xd0\\\n\\x73\\xff\\x00\\xdb\\xfc\\xf5\\x85\\xe2\\x8d\\x4b\\x0c\\xbb\\x40\\xda\\x81\\x15\\\n\\x35\\xa7\\x7d\\x63\\x1e\\xed\\xee\\x19\\x85\\x34\\x54\\x16\\x97\\x16\\x35\\xa1\\\n\\x06\\x31\\x6f\\xf5\\x3a\\x6f\\x11\\x58\\x6b\\x0a\\x42\\xf7\\xed\\x50\\x93\\x41\\\n\\x7e\\xee\\x3c\\xe2\\x46\\x6f\\x13\\x52\\xda\\x9c\\x9b\\x51\\x53\\x95\\x14\\xbe\\\n\\x83\\x5a\\x7a\\xd6\\x31\\xe9\\xf7\\x26\\x99\\x6b\\x30\\xcd\\xbb\\x4a\\x73\\xb7\\\n\\x08\\x91\\xc0\\x59\\x9f\\x0f\\xed\\xd8\\x2a\\x05\\x44\\x8c\\xc0\\xd8\\x70\\xe7\\\n\\xea\\xf1\\x29\\xd8\\xa9\\x39\\x55\\xed\\xd0\\x9d\\xe3\\x7a\\x92\\x54\\x79\\xd2\\\n\\xaa\\xaf\\x1e\\xba\\xd6\\x31\\x10\\xdc\\xbb\\x29\\x41\\x3e\\xe8\\x3a\\xf2\\x89\\\n\\x16\\xda\\x75\\x2b\\x78\\x68\\x01\\x24\\x0e\\x20\\x54\\xc7\\x67\\xf1\\xf7\\xb0\\\n\\xe9\\xef\\x63\\x67\\xf0\\x54\\xf2\\x80\\x47\\x0a\\x8e\\x34\\xfb\\xff\\x00\\x10\\\n\\xeb\\xf3\\xe8\\xdf\\x5b\\xf5\\x52\\xae\\x53\\x9a\\xbe\\x11\\x3f\\x39\\x34\\xf2\\\n\\x14\\x82\\x35\\xaf\\x8d\\x63\\x0f\\x95\\x53\\x2e\\x97\\x0e\\xa5\\x40\\xfa\\xf2\\\n\\x89\\x79\\x85\\x94\\xef\\x98\\x79\\xcc\\xe4\\x81\\x01\\xcd\\x95\\xb2\\x67\\xcd\\\n\\xbb\\x4d\\x69\\x5e\\x31\\x85\\x61\\xd3\\x24\\xed\\x50\\x76\\x40\\xf3\\xb4\\x3c\\\n\\xff\\x00\\xb1\\x3a\\x10\\xfb\\x81\\xca\\xda\\x9c\\xe1\\x72\\xf2\\xb3\\xcd\\x07\\\n\\x50\\x90\\x81\\xa5\\x3a\\xf3\\x8f\\xe9\\x2d\\x36\\x92\\xe0\\x4e\\x63\\xa5\\x3b\\\n\\xfb\\xa0\\x4a\\x21\\xa7\\x33\\x16\\xb8\\xf2\\x87\\x1c\\x61\\x3f\\xf4\\xfb\\xe1\\\n\\xc9\\xd0\\x85\\x02\\xda\\x72\\xd3\\x5e\\xff\\x00\\x5e\\x30\\x31\\x47\\xd4\\xa0\\\n\\x6f\\x94\\x44\\xae\\x2e\\x03\\x7b\\xe7\\x84\\x33\\x89\\xcb\\xad\\x47\\x78\\x5f\\\n\\xd7\\xae\\x70\\x27\\x25\\xa8\\x37\\x86\\x90\\xee\\xec\\xfe\\x10\\x0f\\x19\\x57\\\n\\x07\\xfe\\x60\\x05\\x79\\xd0\\x7d\\xa3\\x19\\x2e\\x09\\x6a\\x36\\xa2\\x92\\xea\\\n\\xf2\\xac\\xfe\\x64\\xc4\\xbc\\xfc\\xa6\\x1b\\x87\\xb6\\x66\\x88\\x4b\\x6d\\x24\\\n\\xb8\\x73\\x28\\xdc\\x8e\\x15\\xd6\\xf1\\x83\\xbb\\x3b\\xdb\\x6e\\xd7\\xce\\x4c\\\n\\x3a\\xd9\\x46\\x02\\xc2\\x94\\x86\\x82\\x86\\x56\\x86\\x4a\\x36\\x0a\\x57\\xef\\\n\\xad\\x64\\xa5\\x4a\\x51\\x27\\x29\\x0a\\x49\\x17\\xa8\\x18\\x8b\\x22\\x55\\xec\\\n\\x28\\x97\\x03\\x8c\\x85\\x16\\xdd\\x00\\x0d\\xe4\\x20\\x94\\x34\\x2a\\x28\\x6c\\\n\\x90\\x91\\xad\\x4c\\x62\\xaf\\xb8\\xc0\\x5a\\x83\\x45\\x08\\x06\\x89\\x34\\x3e\\\n\\xea\\xcd\\xae\\x7f\\xc6\\xa4\\x6a\\x6a\\x3c\\x42\\x30\\xe6\\x67\\x32\\x3c\\x87\\\n\\x92\\x84\\xa8\\xe6\\x75\\x06\\xf9\\xfa\\x5e\\xbc\\x79\\x43\\x32\\x12\\x32\\xd2\\\n\\x00\\x89\\x54\\xbe\\x72\\xf5\\x3c\\x3b\\xfe\\x91\\xdb\\x3e\\xd3\\x49\\x2d\\xa9\\\n\\x3c\\x1b\\x0e\\x29\\x6e\\x71\\x0d\\xa1\\x6f\\x36\\x84\\xa4\\x94\\xe5\\x05\\x25\\\n\\xb2\\x0d\\xc1\\x15\\x50\\xcd\\xaf\\x0a\\xf2\\x93\\x09\\x99\\x68\\xba\\x1a\\x53\\\n\\x69\\x58\\x09\\x29\\x51\\x57\\xbc\\x9f\\x78\\xdc\\xf5\\xe1\\x48\\x12\\x6d\\xd1\\\n\\x48\\x4a\\x69\\x9e\\xd7\\x35\\xb9\\xef\\x30\\x89\\x14\\xb0\\x6a\\xa0\\x2b\\x0a\\\n\\x49\\x75\\x19\\x41\\xa5\\x04\\x4b\\xe2\\x68\\x93\\x9a\\x2d\\x4c\\x36\\x4a\\x4e\\\n\\xea\\x14\\x74\\xcd\\x51\\xf3\\xd7\\xe7\\x12\\xce\\xb4\\xe3\\x49\\x5b\\x6a\\xf0\\\n\\x0a\\x36\\xf9\\xfc\\xa1\\x44\\xa8\\xd5\\x5a\\xc6\\x1c\\xf3\\x7b\\x60\\xcb\\x83\\\n\\x30\\xb1\\xd4\\xf1\\x84\\x29\\x01\\x29\\x4b\\x49\\x14\\xe5\\xad\\xbc\\x7a\\x44\\\n\\xf2\\x33\\x36\\x4a\\x5b\\x09\\x57\\x4f\\xda\\x1f\\x94\\x6d\\xb9\\x95\\x6d\\x55\\\n\\xb0\\xa5\\xc3\\x24\\xd4\\xa8\\xf2\\xa9\\x24\\xfc\\xe2\\x59\\x99\\xdc\\x6e\\x74\\\n\\x4a\\x04\\x19\\x49\\x21\\x30\\x96\\x54\\xe1\\xb8\\x56\\x62\\x2f\\x53\\xc0\\x03\\\n\\xd4\\xd7\\xf2\\x80\\x42\\xb1\\xdc\\x70\\x60\\x18\\x7c\\xd4\\x86\\x1c\\xa4\\xb9\\\n\\x34\\xe4\\xc3\\xa1\\xb9\\xa5\\x6f\\xa1\\x89\\x76\\xd3\\xb3\\x52\\x9c\\xa1\\x03\\\n\\x2a\\x5e\\x4a\\x97\\x5f\\xcc\\x50\\x81\\x9b\\x32\\x50\\x7b\\x21\\x83\\x39\\x3f\\\n\\x38\\xee\\x33\\x88\\xe7\\x9a\\x56\\x7c\\xcd\\x3d\\x31\\xbc\\xa7\\x08\\x22\\x94\\\n\\x45\\x82\\x5a\\x42\\x4a\\x89\\x40\\x01\\x05\\xc2\\x94\\x84\\xe5\\x6f\\x71\\x4d\\\n\\xa4\\xaf\\x36\\x40\\x0a\\x8d\\x68\\x94\\xa4\\x0a\\x9b\\xf0\\x4e\\xa4\\xea\\x45\\\n\\x2b\\x12\\xbb\\x04\\x65\\xce\\xda\\x49\\x24\\x70\\x89\\x47\\x36\\x89\\x45\\x69\\\n\\x95\\x3a\\x58\\x0a\\x79\\x44\\xaf\\xbf\\x6e\\x62\\x1a\\xe3\\xeb\\x84\\x62\\x6a\\\n\\xdd\\xeb\\x7a\\x46\\x16\\xa5\\xa8\\xab\\x32\\xfb\\xb4\\x84\\x83\\xf9\\xa1\\x28\\\n\\x52\\xce\\x52\\x6a\\x98\\x0d\\xec\\xc9\\xe5\\x4d\\x21\\x69\\x07\\xc6\\xb0\\xfb\\\n\\x65\\x2d\\x92\\xa6\\xf7\\xa9\\xd7\\xe9\\x18\\x86\\x2e\\xde\\x1b\\x2a\\xe3\\xcf\\\n\\x65\\x4a\\x46\\x6d\\xd3\\x4a\\xf7\\xfa\\xf9\\x47\\x6a\\x3b\\x66\\xfc\\xf2\\xde\\\n\\x4c\\x83\\xc7\\x2e\\x6a\\x51\\x20\\x6a\\x0f\\x3a\\x75\\xe3\\x12\\x72\\x18\\xae\\\n\\x2c\\xf6\\x79\\x87\\x56\\xb4\\x10\\x41\\x06\\xfa\\xf2\\x1a\\x78\\x88\\xc1\\xbb\\\n\\x30\\xc4\\x92\\x2a\\xb6\\x41\\x26\\x86\\xa6\\xb5\\xf3\\xfb\\x69\\x1e\\xc6\\x32\\\n\\x94\\xa4\\x51\\x00\\xe9\\xfe\\x50\\xf2\\xd6\\x1c\\x43\\x67\\x40\\x69\\xa7\\x42\\\n\\x38\\xc6\\x1c\\xd6\\x54\\x58\\x01\\x9b\\x5b\\x43\\x94\\x6d\\x0b\\xad\\x38\\xc6\\\n\\x3e\\xf6\\x60\\x47\\x33\\xc2\\xd6\\xe3\\xf2\\x11\\x80\\x38\\x82\\xdb\\xa7\\x2d\\\n\\x40\\xfb\\x24\\x42\\xf1\\x3d\\x86\\x38\\x97\\xe6\\x77\\x5a\\x65\\x63\\x22\\xa8\\\n\\x00\\x45\\x4d\\x33\\x5b\\xc2\\xbc\\x21\\x1d\\xad\\xc3\\x26\\x1c\\x0a\\x33\\x6d\\\n\\x82\\xaa\\x6a\\xb1\\x4d\\x00\\xe2\\x61\\xdc\\x52\\x41\\x6c\\xb6\\xa4\\x38\\xda\\\n\\xd4\\x4f\\x02\\x2d\\x68\\x44\\xf4\\xbb\\x87\\x78\\x03\\x7b\\x5e\\x9e\\xbd\\x5a\\\n\\x04\\xd0\\x02\\x89\\x34\\x87\\x66\\xf6\\x49\\x42\\xd8\\x3e\\xd0\\xf2\\x8d\\xd8\\\n\\x02\\xe9\\xbf\\x9d\\xe3\\x03\\x93\\x4b\\xcc\\x22\\x6a\\x66\\x53\\x2a\\xcd\\x06\\\n\\x45\\x66\\xe3\\x7a\\xd2\\xbd\\x21\\xc0\\x32\\x84\\xb4\\xd6\\x51\\xd2\\xbe\\xba\\\n\\xc4\\xce\\x17\\x2e\\x5d\\x0e\\x3a\\x9c\\xea\\x17\\xba\\x95\\xfa\\xc0\\x71\\x86\\\n\\x50\\x1b\\xa5\\x06\\xa0\\x56\\x1b\\x9d\\x40\\x55\\x13\\x7d\\x6d\\xac\\x6d\\x52\\\n\\xfd\\x83\\x62\\xbd\\xd1\\x3d\\x28\\x80\\x92\\x6c\\x93\\x13\\xf2\\xd3\\x09\\xa6\\\n\\xcf\\x78\\x28\\x81\\x98\\x0f\\x76\\xfa\\x43\\x78\\x6a\\xbd\\x9d\\x24\\x3e\\x0a\\\n\\x95\\xff\\x00\\x4a\\xd5\\x51\\xe5\\xcc\\x78\\x42\\x99\\x98\\x0b\\xd9\\xf0\\xe5\\\n\\x0d\\xb4\\x94\\x11\\xbd\\x45\\x8d\\x77\\x8e\\xbc\\xa2\\xab\\xe0\\xbf\\x9c\\x3e\\\n\\xcb\\x8e\\xe3\\x78\\x4b\\x08\\x1e\\xec\\xab\\x84\\x9e\\x1f\\x87\\x4a\\x8f\\x1c\\\n\\xd6\\xf1\\x8c\\x6a\\x59\\xf5\\x29\\xc6\\x53\\x4a\\xcb\\x36\\x1e\\x5f\\xf9\\x0a\\\n\\x9f\\x77\\xad\\x8e\\xb6\\x8c\\x48\\xb3\\x8a\\x4a\\xb1\\x28\\xe0\\x71\\xb2\\xf2\\\n\\xb2\\x11\\xfe\\x48\\x3a\\x9a\\x7c\\x31\\x23\\x86\\xb1\\x86\\x4b\\x61\\xd8\\x6c\\\n\\xb2\\x5b\\x6d\\x04\\xa4\\xcd\\x38\\x94\\xd0\\xad\\x3d\\x3f\\x78\\xed\\x3c\\xb6\\\n\\xcb\\x0c\\x7e\\x66\\x5d\\x45\\x1e\\xcb\\x3e\\xc2\\x52\\x1d\\x0a\\xaa\\x90\\xa5\\\n\\x22\\xab\\x4d\\x3e\\x1a\\xaa\\x86\\x3f\\xda\\xe2\\x32\\x72\\x82\\x69\\x6d\\x95\\\n\\x4d\\x21\\xa4\\x34\\xd0\\xb3\\xb6\\x6f\\x79\\x54\\x20\\x58\\x91\\x6a\\x73\\x8c\\\n\\x5f\\x0b\\x6e\\x51\\x29\\x53\\x05\\x4c\\x04\\xbd\\xb2\\xa3\\x95\\x00\\xaa\\xf4\\\n\\x23\\x2d\\x77\\x6a\\x28\\x3b\\xe3\\x15\\xed\\x1b\\xf8\\x52\\x18\\xc3\\x03\\xed\\\n\\x1c\\x42\\x67\\x28\\x66\\x52\\xb9\\xdd\\x21\\x5a\\x28\\xe5\\xa8\\x42\\x4f\\x0c\\\n\\xc4\\x69\\x6d\\x0c\\x76\\x67\\x03\\xc0\\x55\\x3e\\xfe\\x21\\xda\\x19\\x57\\xdb\\\n\\xc5\\x54\\xe1\\x2b\\x71\\x79\\x4b\\x3d\\x76\\x7b\\xd5\\xa7\\x2b\\x01\\xf3\\x8e\\\n\\xd1\\x4b\\x4b\\x4a\\xce\\xd6\\x45\\x14\\x91\\x76\\xa5\\x81\\x6a\\x85\\x0f\\x7e\\\n\\xb4\\x34\\xfc\\xb4\\xa1\\x30\\x29\\x62\\x92\\x2b\\x62\\x21\\xe0\\xe1\\x19\\x8d\\\n\\xfb\\xbd\\x7d\\x63\\x6c\\x56\\x52\\x86\\x6a\\x14\\x0e\\xf5\\x6b\\xcf\\xa4\\x4e\\\n\\xe0\\x92\\xf3\\x38\\x4a\\x16\\x90\\x91\\x37\\x9a\\xb5\\x23\\xfc\\x2d\\x5a\\x5f\\\n\\x5e\\xef\\x9c\\x60\\xaf\\xcc\\xe1\\xf3\\x05\\xa9\\xec\\xca\\x42\\x95\\x91\\x19\\\n\\x34\\x15\\x34\\x1e\\xf5\\x39\\xf0\\x8e\\xe3\\x5e\\xe8\\xc3\\x24\\xb3\\xb8\\x1d\\\n\\xd2\\xa6\\x95\\x3d\\x3d\\x7a\\xbc\\x3c\\xa2\\xc6\\x5c\\x8f\\xb4\\x17\\xee\\x84\\\n\\x9c\\xdb\\xc4\\xe8\\x91\\x41\\xa9\\x8c\\x43\\x1a\\x98\\xc3\\x91\\x9a\\x66\\x99\\\n\\x8f\\xba\\xd2\\x4d\\x5c\\x23\\xe9\\x48\\xd8\\xb9\\x3f\\x3c\\xc4\\xfe\\x27\\x9d\\\n\\x28\\x73\\x2e\\x44\\x26\\xd4\\x1d\\x41\\xef\\x8c\\x7f\\x16\\x66\\x41\\x28\\x4c\\\n\\x9e\\x50\\xc3\\x22\\x60\\xb8\\x1b\\xa0\\x74\\xbc\\xb6\\x68\\xd2\\x87\\x0d\\xc5\\\n\\x80\\x4d\\xeb\\xca\\x30\\xcc\\x36\\x63\\x17\\x73\\xf1\\x9a\\x52\\xa5\\x8b\\xae\\\n\\xa9\\x6a\\x7c\\x15\\x11\\x99\\x6a\\x72\\x83\\x54\\x8d\\xf3\\x61\\xef\\x0d\\x09\\\n\\x20\\x6e\\xcb\\xc9\\xb7\\x2e\\xd2\\x58\\x60\\x25\\xb4\\x80\\x01\\xb5\\x2c\\x3d\\\n\\x71\\x81\\x2d\\x9d\\x41\\x22\\x96\\xb7\\x1e\\xe8\\x66\\x53\\x28\\xaa\\x81\\x55\\\n\\x29\\xa4\\x4a\\x24\\xd2\\xd6\\x03\\x81\\x89\\x11\\x45\\x54\\xc3\\x62\\xb9\\x88\\\n\\xe3\\x18\\xa5\\x92\\x38\\xfb\\xd0\\x89\\xb5\\xb4\\xed\\x8d\\x06\\x6f\\x90\\xd7\\\n\\xef\\xeb\\x46\\x31\\x02\\xaf\\x88\\xf9\\xc4\\xbc\\xc8\\x08\\x4a\\x96\\xb1\\x78\\\n\\x4c\\xc2\\x16\\x7f\\xb8\\x95\\x5b\\x41\\xac\\x3a\\xe8\\x40\\xae\\xb4\\xbd\\xa3\\\n\\x18\\xed\\x19\\x97\\x41\\x2a\\x19\\x7c\\xa3\\xb4\\xd8\\xf3\\x98\\xb2\\x55\\x2e\\\n\\xc2\\x1c\\x5e\\x64\\xd3\\x76\\x94\\xaf\\x84\\x61\\xbd\\x92\\x7b\\x64\\x56\\xa6\\\n\\xf2\\xe6\\x55\\x48\\x5e\\x6a\\x9a\\xf8\\x46\\x13\\x85\\xa2\\x5c\\x04\\x94\\xa4\\\n\\x11\\xd3\\xf6\\x87\\x53\\x90\\xdc\\x0a\\x77\\x41\\x1c\\x85\\x8e\\xb0\\x64\\xc3\\\n\\x8e\\x03\\x4a\\x9f\\x9c\\x59\\x91\\x95\\x1e\\xf0\\xe0\\x35\\x85\\x34\\xfb\\xb9\\\n\\x53\\x50\\x33\\x8a\\xdf\\xef\\x18\\xb6\\x0e\\xe3\\x83\\x28\\x01\\x44\\x57\\x31\\\n\\xbe\\x87\\x80\\x8c\\x22\\x4b\\xd9\\x8e\\xcd\\xc6\\x88\\x0a\\x50\\xaa\\x86\\x80\\\n\\x73\\x3a\\x47\\x6c\\xda\\x97\\x43\\xad\\x6c\\x90\\xa4\\xaf\\x35\\x54\\xbf\\x83\\\n\\x22\\x4d\\x68\\x7b\\xcd\\x29\\xdc\\x7a\\x88\\x69\\x16\\xcc\\x48\\x1a\\x6e\\xd3\\\n\\xd5\\xbe\\xd1\\x2c\\xf4\\xc4\\xb3\\xa1\\x48\\x77\\xf0\\xe8\\x3f\\x0b\\x31\\x00\\\n\\xfd\\x93\\xdf\\x18\\x36\\x27\\x21\\x34\\x94\\x20\\xab\\x66\\xe8\\xa5\\x50\\xe5\\\n\\x33\\x78\\x52\\xa0\\xdf\\xbf\\xe7\\x0e\\x25\\x34\\xaa\\x6f\\xdc\\x62\\x46\\x62\\\n\\x46\\x45\\x1e\\xdc\\x5a\\x70\\xcd\\x0a\\xe7\\xcd\\x94\\xa2\\x80\\xd1\\x34\\x04\\\n\\xfe\\x5e\\x91\\x2f\\xfe\\xa3\\xc9\\x90\\xad\\xa2\\x14\\xde\\x51\\x4f\\xfa\\x61\\\n\\x36\\xf1\\xd4\\xc6\\x17\\xdb\\x99\\x19\\xd5\\x91\\xb5\\x0d\\x0a\\x7b\\xce\\x94\\\n\\x81\\xf2\\xac\\x3f\\xda\\x69\\x22\\xbd\\xf9\\x84\\xf4\\xb8\\x85\\x63\\x78\\x5b\\\n\\xd5\\x22\\x6d\\xb1\\x95\\x3e\\xe9\\x37\\xb4\\x3b\\xda\\xcc\\x39\\xa5\\xa9\\x2d\\\n\\x28\\xa9\\xc4\\xda\\xb5\\x4d\\x0f\\xce\\xb0\\x8e\\xd7\\xb8\\x95\\xe6\\x41\\x24\\\n\\x13\\xa0\\xd7\\x48\\xc4\\x71\\x69\\xd9\\xa6\\xc2\\xda\\xcc\\xde\\xe8\\x3b\\xfd\\\n\\x45\\x78\\x43\\x98\\xe6\\x22\\x86\\x96\\xc6\\x74\\xd4\\xab\\x36\\x65\\x56\\x82\\\n\\x83\\x85\\xa2\\x57\\x1e\\x75\\x97\\xe5\\xdd\\x75\\xd2\\x4b\\x6a\\x25\\x49\\x06\\\n\\xa0\\xd5\\x24\\x7d\\xeb\\xea\\xcb\\xc7\\x26\\x54\\xf6\\xd9\\x2b\\x40\\x41\\xbd\\\n\\x2f\\x5f\\x5f\\x58\\x5f\\x68\\x1e\\x54\\xd3\\xdb\\xc4\\x55\\xc5\\x5f\\x86\\xbf\\\n\\x48\\x46\\x32\\xe1\\x48\\xfc\\x51\\xe2\\x69\\x18\\x7c\\xd4\\xeb\\x98\\xe6\\x1c\\\n\\xa7\\x12\\xa4\\x11\\x23\\x39\\x65\\x82\\x92\\x2a\\x1b\\xa5\\x6a\\x01\\x8c\\x42\\\n\\x69\\x4c\\xad\\xc9\\x97\\xc7\\xf7\\x9d\\x53\\x1a\\x58\\xa5\\x20\\x78\\x7c\\x46\\\n\\x3b\\x3c\\x1a\\xc5\\xbb\\x42\\xee\\x7f\\xec\\x4a\\x67\\xa0\\xeb\\x4f\\xff\\x00\\\n\\x6f\\xa4\\x4c\\xb7\\x26\\x86\\xd2\\xe8\\x15\\x2d\\x8b\\x01\\xad\\xb8\\xc6\\x37\\\n\\x31\\x8c\\xe2\\x12\\xc5\\x86\\xb0\\xf6\\xf6\\x3e\\xce\\xf2\\x4a\\x96\\x52\\x81\\\n\\xb8\\x56\\xe3\\x6e\\x2e\\xbd\\x32\\xdf\\x85\\xeb\\x5e\\x1f\\xe9\\xee\\x23\\x8c\\\n\\x76\\xa7\\x1d\\x7e\\x6e\\x6b\\x66\\xcc\\xaf\\x67\\xc0\\x97\\x1b\\x33\\xf8\\x6b\\\n\\x52\\x16\\x52\\x52\\x17\\x52\\x87\\x08\\xc9\\x5c\\xc8\\x24\\x65\\x29\\xe2\\x4c\\\n\\x76\\xfb\\xb6\\x06\\x6e\\x75\\x78\\x3e\\x16\\x94\\xae\\x73\\x60\\x14\\xd2\\x53\\\n\\x91\\x55\\x7a\\xad\\x8a\\x01\\xc5\\xc4\\xa5\\x45\\x59\\x4d\\xc0\\xbe\\x91\\xd8\\\n\\x9e\\xc1\\xcf\\xb0\\x5d\\xc7\\x71\\xf5\\x2e\\x6b\\x1b\\x99\\x05\\x4d\\x07\\x9c\\\n\\xda\\xfb\\x32\\x17\\x52\\xa5\\x05\\x1f\\x8d\\x55\\xa2\\xa9\\x40\\x10\\x02\\x12\\\n\\x94\\x24\\x28\\x2a\\x63\\x08\\x13\\x0d\\x95\\x4e\\x15\\x15\\x24\\x7e\\x1a\\xc0\\\n\\x21\\x4a\\xa7\\x13\\x4e\\x27\\xac\\x3a\\xc4\\xc3\\x8e\\x38\\xc3\\xb5\\x2d\\x35\\\n\\xff\\x00\\xd3\\xf3\\x15\\xf7\\xaa\\x3c\\x04\\x3b\\x26\\xe3\\x00\\xa8\\xdc\\x22\\\n\\xaa\\xaf\\x41\\x7f\\xb4\\x25\\x48\\x5c\\xb1\\x36\\xad\\x3c\\x7c\\x04\\x30\\xd8\\\n\\x69\\xf5\\x3c\\x41\\x29\\x5a\\x85\\xa9\\xee\\xf3\\xee\\xe7\\x0d\\x1c\\xed\\x25\\\n\\xc1\\x76\\xf9\\x6b\\xf2\\xee\\x89\\xf9\\x36\\xa6\\x86\\x66\\x92\\x12\\x53\\xbd\\\n\\x5e\\xa9\\xbf\\xce\\x30\\xd5\\xa8\\xa7\\x32\\xbe\\x7e\\x31\\x29\\x3f\\xec\\xeb\\\n\\xaa\\x8f\\xe1\\x0f\\x0f\\xbc\\x62\\x1d\\xa1\\x95\\x99\\x1e\\xcd\\x21\\x2e\\xa7\\\n\\x27\\x0d\\x32\\xa8\\x8d\\xd4\\xd3\\x55\\x85\\x69\\x51\\x6b\\xc4\\xbc\\x87\\xb3\\\n\\xba\\x67\\x31\\x39\\x85\\x4f\\xcf\\xfb\\xcd\\x4b\\x28\\xe6\\x6d\\x1c\\x81\\xd4\\\n\\x54\\x70\\x3c\\x22\\x77\\x14\\x71\\xc4\\xc9\\xa1\\xc1\\x41\\x5a\\x1c\\xb7\\xca\\\n\\x2b\\xa5\\xb9\\x44\\xf4\\x9a\\x67\\x1f\\x5a\\xda\\x51\\xd9\\xd4\\x05\\x0b\\xdd\\\n\\x5d\\x3a\\x69\\x18\\x24\\xac\\x9b\\x52\\x0a\\x63\\x22\\x43\\x84\\x26\\x8a\\xb5\\\n\\x6d\\xaf\\x9c\\x3b\\x25\\x55\\x9c\\x9f\\x2e\\xee\\x90\\x99\\x32\\xd5\\x15\\x4d\\\n\\x78\\x43\\x0f\\xa2\\xb9\\x08\\xa5\\x61\\xb4\\x81\\x97\\x2e\\x87\\x5f\\x28\\x93\\\n\\x4f\\xd2\\x1b\\xb5\\x62\\x75\\x19\\xd2\\x6b\\x13\\x12\\x64\\xb8\\x68\\x69\\x7f\\\n\\x94\\x66\\x5c\\xbb\\x94\\xad\\xbc\\xf4\\x86\\xa7\\xd9\\x2d\\x00\\xe1\\xe7\\x53\\\n\\xdf\\xf5\\x84\\xe2\\x08\\x6d\\xef\\xc3\\x5f\\x4a\\x66\\xe1\\xdd\\x09\\x99\\xda\\\n\\x22\\xa5\\x5c\\x39\\xf4\\x8e\\xd2\\xb6\\xec\\xf3\\xa5\\xa6\\xf3\\x00\\xab\\x68\\\n\\x7f\\x88\\xec\\xef\\x65\\x1b\\x96\\xa3\\xb3\\x14\\x72\\xaa\\x26\\x86\\xfa\\xd3\\\n\\xd7\\x9c\\x4f\\x61\\xf2\\x8d\\xca\\xe7\\x43\\x69\\x14\\x29\\x4d\\x85\\x2e\\x74\\\n\\x87\\x10\\x12\\xb3\\x40\\x00\\xae\\xba\\x7c\\xe2\\x60\\xed\\x28\\x12\\x0f\\x5a\\\n\\x02\\x61\\x0c\\x65\\x1b\\xd7\\x84\\x8c\\x8f\\xa4\\xe5\\xb5\\xf8\\x5b\\xdd\\x22\\\n\\x24\\xf0\\x9d\\xac\\xc1\\x7c\\x90\\x51\\x5a\\xd2\\xb5\\x8c\\x4c\\xa2\\x5a\\x61\\\n\\x34\\x02\\x9d\\x3e\\xf1\\x31\\x32\\xa5\\xa9\\x5b\\x30\\x38\\x78\\xfe\\xd0\\xde\\\n\\xd5\\x79\\x85\\x07\\x1a\\xf8\\xfc\\xff\\x00\\x58\\x9e\\xc0\\xda\\x9c\\x1f\\x8e\\\n\\x8c\\xc9\\xea\\x3d\\x7e\\xd1\\x3b\\x80\\xe1\\x32\\xc0\\x7b\\xe9\\x5f\\xc5\\x95\\\n\\xc3\\xfa\\x98\\x67\\xb3\\xf2\\x33\\x69\\x01\\xa5\\xbe\\x95\\x73\\xba\\x85\\xff\\\n\\x00\\xe4\\x08\\xeb\\x0e\\x76\\x7b\\xfa\\x3b\\xa8\\x78\\xcc\\x29\\x6a\\x36\\x40\\\n\\xa5\\x28\\x49\\x07\\x4a\\x9e\\x3d\\xdd\\xd1\\xfd\\x6d\\x52\\x4d\\xfe\\x31\\x0a\\\n\\x23\\xfc\\x85\\x4f\\x75\\xe2\\x57\\xb4\\xb2\\x53\\xb2\\xce\\x66\\xdd\\xaa\\x54\\\n\\x2e\\x29\\xd3\\x53\\xdd\\x0f\\xcc\\xc8\\x12\\xaa\\xae\\xc1\\xcc\\xd4\\x06\\xfc\\\n\\x75\\x1a\\xc3\\x33\\x32\\x53\\x3b\\x92\\xce\\xa9\\x0a\\x45\\x2b\\xbc\\x53\\xdd\\\n\\xe1\\x13\\x8e\\x4c\\xba\\xbd\\xd7\\xdc\\x14\\x36\\xa5\\x7a\\x71\\xef\\x89\\x79\\\n\\x69\\xd3\\x30\\x54\\x26\\xdc\\x0d\\x86\\x80\\xa6\\x72\\x41\\x37\\x1d\\x45\\x6f\\\n\\xea\\xb0\\xcc\\xb3\\xb2\\xee\\x38\\xb7\\x1c\\x71\\x79\\x97\\x4d\\xe3\\xee\\x83\\\n\\x41\\xdf\\xc3\\x5b\\xc6\\x1b\\x88\\xc9\\x36\\x28\\xb1\\x98\\x8d\\x78\\xc6\\x23\\\n\\xda\\x76\\x5b\\x69\\x29\\x00\\x22\\xa0\\x0b\\xdb\\x87\\x5d\\x62\\x73\\x14\\x2e\\\n\\x24\\xa9\\x35\\xcc\\x52\\x68\\x29\\xad\\xf5\\xeb\\xde\\x22\\x55\\xb9\\x89\\x91\\\n\\x9a\\xaa\\x4a\\xba\\xdb\\xd5\\x3f\\x5f\\x06\\x64\\x9d\\x53\\x63\\xf1\\x38\\x7e\\\n\\x6e\\xe8\\x6f\\x0e\\x52\\xd6\\xef\\x30\\x4f\\x71\\xa7\\x18\\x98\\x62\\x61\\xb7\\\n\\x54\\x90\\xf5\\x3a\\x54\\x42\\xa6\\x53\\x3d\\x89\\x35\\x88\\x3d\\x63\\xec\\x8a\\\n\\xa7\\x08\\xc6\\xe6\\x9c\\x99\\x93\\x43\\x09\\x1b\\x8d\\x15\\x3e\\x7b\\x89\\x3e\\\n\\x5e\\xec\\x76\\x4a\\x44\\x4b\\x4c\\xae\\x65\\x55\\xac\\xe0\\x26\\xfd\\x07\\x0f\\\n\\x28\\x4b\\x48\\x52\\x23\\xfd\\x45\\xc7\\x46\\x05\\xd9\\xbc\\x62\\x63\\x3e\\xcc\\\n\\xcc\\xc9\\x39\\x22\\x85\\x8b\\x51\\x6e\\xb7\\xb3\\x45\\x08\\xb8\\x39\\x88\\xa5\\\n\\x39\\x88\\xff\\x00\\x4b\\xb3\\xe1\\xdd\\x89\\x54\\x8a\\x9a\\x29\\xc4\\x67\\xa6\\\n\\x4a\\xe5\\x52\\x45\\xd0\\x1d\\xcd\\x91\\x64\\x1a\\xda\\x85\\x3c\\xc1\\xaf\\x53\\\n\\x0c\\xf6\\x12\\x4b\\x04\\x9d\\x97\\xc5\\xa7\\xdd\\x53\\xf8\\xda\\x56\\x26\\x0a\\\n\\xd4\\xb2\\x52\\x36\\x83\\x7a\\x89\\xcd\\x94\\x1a\\xab\\xa9\\xa6\\xa4\\x9b\\x91\\\n\\x3a\\xda\\x25\\xd9\\x55\\x78\\x08\\x5e\\x20\\x95\\xb8\\x06\\xb9\\x84\\x4c\\xba\\\n\\x96\\x71\\x41\\x9c\\xee\\xbc\\x69\\xff\\x00\\x8f\\xf3\\x18\\xdb\\xa9\\x0e\\x14\\\n\\x4b\\xef\\x6d\\x12\\x53\\x41\\xcd\\x51\\x2d\\x2c\\xdb\\x6c\\xe7\\x76\\xce\\xfe\\\n\\x53\\xaf\\x48\\x44\\xb2\\x16\\xde\\x6d\\x54\\xf5\\x7c\\x48\\xb7\\xda\\x25\\x76\\\n\\x92\\xaa\\xf6\\x65\\x8d\\xd5\\x11\\x5f\\x38\\x77\\x04\\x47\\xf4\\xd4\\xbc\\xd0\\\n\\xad\\x53\\x55\\x7d\\x4f\\xaf\\xd6\\x33\\xcb\\xb0\\x9b\\xa3\\xd7\\x94\\x21\\x28\\\n\\x9e\\x3b\\xb6\\x4e\\x90\\x25\\x98\\xc3\\xe5\\xd6\\xbb\\x66\\xcb\\x41\\xde\\x62\\\n\\x4e\\x7a\\x75\\xe9\\xf7\\x13\\x90\\xec\\xeb\\x65\\x73\\xe1\\xe5\\x6f\\xac\\x38\\\n\\xde\\x47\\x00\\x6a\\xe9\\x26\\xf4\\xe1\\xcf\\xca\\x03\\x09\\x4e\\x50\\x8e\\x20\\\n\\x15\\x77\\xc3\\x48\\x28\\x00\\xf2\\x86\\x66\\x16\\x91\\xc8\\xfa\\xe3\\x1f\\x88\\\n\\xf8\\xe7\\x0c\\x61\\xa5\\x79\\xb3\\x0b\\xc2\\x25\\x84\\xba\\x08\\xe9\\x12\\x1c\\\n\\x3c\\x3e\\xdf\\xfa\\x4c\\xa7\\x32\\x29\\xdf\\x0f\\xb1\\x95\\x64\\x2b\\x45\\x5b\\\n\\xce\\x3d\\x81\\x85\\x44\\xe6\\x16\\xe2\\x1a\\xda\\x30\\xa0\\x52\\x6b\\xb8\\x21\\\n\\xd6\\x52\\x8c\\xaa\\x4b\\x65\\x33\\x19\\xb7\\xcd\\x3e\\x1f\\xe7\\xd5\\xa2\\x52\\\n\\x64\\xe5\\xca\\xa3\\xc2\\x15\\xb3\\x79\\x7a\\xc3\\x0d\\x86\\x51\\x6e\\x15\\x3e\\\n\\x71\\x3f\\x89\\x25\\x52\\xea\\x60\\x9d\\x54\\x93\\xe2\\x2b\\x12\\xf8\\x73\\xd3\\\n\\x8a\\xfc\\x44\\x9d\\x9f\\x02\\x60\\x61\\x2d\\x30\\x92\\x06\\xb0\\xfc\\xbe\\xcd\\\n\\xd0\\x8d\\x33\\x6f\\x7d\\x44\\x38\\xc8\\x44\\xb9\\x51\\x22\\xb9\\x4c\\x61\\xd8\\\n\\xb6\\xcd\\xe7\\x9b\\x1c\\x14\\x47\\xce\\x31\\x89\\xe5\\x07\\x14\\xb3\\xa1\\x52\\\n\\x8f\\xce\\x25\\xa7\\x03\\xaf\\xb2\\x80\\x6f\\x94\\xd6\\xdd\\xd0\\xd4\\xb9\\x5b\\\n\\x8b\\xa5\\x8d\\x35\\x89\\x94\\x62\\x2e\\x1f\\x67\\x07\\xf0\\xf4\\xb7\\x2f\\x28\\\n\\x9b\\xc0\\xd6\\xd2\\x36\\x8e\\x7e\\x26\\x5d\\xea\\x7c\\xfc\\x60\\x63\\x62\\x5d\\\n\\x2f\\xb3\\x2e\\xc3\\x81\\xd6\\x41\\x52\\x8d\\x39\\xf0\\xe4\\x7e\\x7e\\x30\\x99\\\n\\xac\\x47\\x15\\x53\\x8f\\x3e\\xee\\xc9\\x0c\\xfe\\x26\\x55\\x1a\\x13\\xb2\\xdf\\\n\\x03\\x5b\\xe9\\x0c\\x4a\\x35\\x8b\\xbf\\xb4\\x70\\x5e\\xba\\xd4\\xe9\\xad\\x07\\\n\\x4e\\xe8\\x92\\xc0\\x30\\xc6\\xe4\\x26\\x1b\\x75\\x00\\xa9\\x28\\x3b\\x1a\\xf1\\\n\\x55\\x2b\\x4a\\xf7\\xc4\\xa6\\x06\\x8c\\xaf\\xb8\\xa9\\x7d\\x9b\\xbb\\x52\\x02\\\n\\x8f\\xff\\x00\\x1d\\xc7\\x79\\xb5\\x20\\xe1\\x24\\x15\\x65\\x49\\x09\\x49\\xf0\\\n\\x50\\x17\\xb9\\xf8\\xbd\\x52\\x1d\\xc4\\x1a\\x2d\\x29\\x29\\x6c\\x9c\\xa2\\xc4\\\n\\x56\\x87\\x2d\\x2b\\x4e\\x74\\xcc\\x28\\x38\\xdf\\xbe\\x30\\x27\\x1d\\x99\\x75\\\n\\x79\\xc1\\x65\\x9d\\xa5\\x00\\x5d\\x8e\\x82\\xfd\\xc7\\x5b\\xde\\x31\\x19\\x17\\\n\\x5e\\x3b\\x39\\x57\\x7a\\xa8\\x83\\xc1\\x37\\x50\\xf2\\x86\\x92\\xb7\\x56\\x64\\\n\\xd8\\x64\\xb2\\xf8\\xb1\\x76\\x94\\x15\\xfc\\xd5\\xea\\x7d\\x08\\xed\\x2e\\x17\\\n\\x2b\\x34\\xcc\\xb1\\x41\\x0a\\x71\\xa6\\x9a\\x06\\x9f\\xfc\\x81\\x29\\x0a\\xff\\\n\\x00\\xee\\x10\\x44\\xd0\\x53\\x45\\x22\\xcc\\x27\\x21\\xf1\\xd3\\xc6\\xd7\\xe1\\\n\\x0d\\xce\\x4c\\x68\\x9a\\xe6\\xae\\xa7\\x80\\xad\\x38\\x74\\x86\\x5a\\x22\\x51\\\n\\x2e\\x07\\x46\\xd2\\x95\\xd6\\x3f\\xa8\\xcd\\xb4\\xa7\\x50\\xa5\\xe5\\xcc\\x4d\\\n\\xeb\\xea\\x9d\\xd0\\xfb\\x73\\x0f\\x3a\\xa7\\x36\\x9a\\xf3\\x89\\xd9\\x86\\xda\\\n\\x74\\x36\\x83\\x46\\xdb\\x46\\xcc\\x5e\\xf9\\x4f\\x58\\xc3\\x5c\\x4e\\x24\\xf3\\\n\\xf2\\xcc\\xe5\\x5b\\x61\\x90\\xd1\\xe7\\x6c\\xc7\\x5e\\x7b\\xd0\\x89\\xd4\\xc8\\\n\\xba\\x18\\x73\\xde\\x96\\x52\\x83\\x59\\x6d\\xba\\xab\\x2b\\x37\\xe6\\xa0\\xe3\\\n\\xc3\\xc2\\x24\\x31\\x69\\x77\\x5b\\x0a\\x29\\x56\\x51\\xef\\x50\\xc7\\xfa\\xe1\\\n\\x32\\xfc\\xe4\\x9e\\x19\\x86\\xc8\\xde\\x56\\x66\\x71\\xa5\\x3a\\x9a\\x15\\xaf\\\n\\x30\\x55\\x41\\xcd\\xa8\\x09\\x50\\xa9\\x14\\x24\\xe8\\x2f\\x48\\xc0\\x1b\\x46\\\n\\x1e\\xdc\\x9b\\x85\\x20\\x3c\\x99\\x44\\x21\\x09\\x50\\x04\\x00\\x10\\x00\\x34\\\n\\xd3\\x69\\xfe\\x43\\x8d\\xc4\\x4d\\xbc\\xe4\\xca\\xde\\x72\\x61\\xd5\\x10\\xd1\\\n\\xcf\\x9c\\x9d\\x05\\x6b\\x4a\\xeb\\x4a\\x7c\\xe9\\x4e\\x30\\xd7\\x68\\x59\\x9a\\\n\\x6b\\x6d\\xbc\\xdc\\x8b\\x43\\x67\\x95\\x47\\x7d\\x6e\\x0b\\x59\\xce\\xb4\\xe0\\\n\\x23\\x05\\x7d\\x18\\x91\\xda\\xa5\\x87\\x43\\x6d\\xfe\\x10\\x46\\x63\\x9a\\xa2\\\n\\xd9\\xeb\\xae\\x53\\x1d\\xb3\\x53\\x92\\x13\\x92\\x6d\\xa1\\x41\\x6e\\x90\\xfa\\\n\\xb3\\x24\\x58\\x59\\x04\\x0f\\xfb\\x78\\xf7\\x88\\xc2\\x7f\\x17\\x0f\\x18\\x93\\\n\\xf5\\x71\\xc6\\x1d\\xad\\xac\\x95\\x04\\xd0\\x9d\\xdb\\xde\\xff\\x00\\x31\\x13\\\n\\x72\\xea\\x99\\xa6\\xcc\\xec\\xa7\\x1c\\x09\\x5a\\x2b\\xfd\\xbd\\x9e\\xb7\\x47\\\n\\x3f\\x7b\\x9f\\x03\\x08\\x99\\x62\\x5c\\x24\\xba\\x49\\xf6\\x41\\x47\\xe8\\x6c\\\n\\x55\\xa9\\xa7\\xf3\\x18\\x7c\\xfb\\x3d\\xa0\\x9c\\x9a\\xf6\\x77\\x9b\\x65\\xb6\\\n\\x98\\xab\\x25\\x54\\xa9\\x73\\x38\\x14\\x26\\xd5\\xb4\\x3f\\xda\\xa7\\x30\\xf9\\\n\\x34\\xe1\\xad\\x38\\xca\\xe7\\x01\\x09\\x76\\xa8\\x0b\\x4e\\x4f\\x8e\\x89\\xaf\\\n\\xe5\\xe3\\xe3\\x0a\\x7d\\x99\\xa4\\x1a\\xbc\\xde\\x53\\xee\\xd1\\xb1\\xfa\\xf4\\\n\\xfb\\xc3\\x25\\xe9\\x07\\x0a\\x8a\\xd0\\x5b\\xd4\\x1c\\xb4\\xad\\x7d\\x5e\\x26\\\n\\xe7\\x17\\x3c\\x12\\xd2\\x0d\\x77\\x82\\x8d\\x3f\\x28\\xd6\\x1b\\x0d\\xcb\\x37\\\n\\x56\\xd2\\x9d\\xa5\\x2f\\x5b\\x9a\\xd2\\x13\\x86\\xa9\\xbc\\x11\\xfc\\x5d\\x1e\\\n\\xe2\\x1f\\x08\\xde\\xbd\\x8e\\xbf\\x58\\x65\\x84\\xba\\xc4\\xab\\x92\\xee\\xa7\\\n\\x33\\xd3\\xa5\\x95\\xa1\\x66\\xa7\\x20\\x69\\xa5\\x6e\\xf2\\xba\\x8c\\x25\\x2e\\\n\\x67\\x2d\\x64\\x27\\x2b\\x8a\\x15\\xe8\\x13\\x6f\\x9c\\x06\\xdc\\xad\\xd3\\x68\\\n\\x33\\x69\\x92\\x63\\x68\\xa4\\x5c\\x26\\xb7\\xee\\xf9\\xc4\\x87\\x6c\\x4c\\xc4\\\n\\xcb\\xac\\xee\\x24\\x21\\x59\\x46\\xe5\\x22\\x52\\x68\\xce\\xe7\\x5a\\xd4\\x32\\\n\\xa7\\xf2\\x8a\\x71\\x89\\x57\\x10\\xd8\\x04\\x69\\xe7\\x0c\\xcc\\xed\\x56\\x53\\\n\\x68\\x52\\x15\\x42\\x4f\\x84\\x4d\\x37\\xb5\\x24\\x0e\\xb0\\x1a\\x79\\x0a\\xa0\\\n\\x1f\\x2a\\xc3\\xaa\\x98\\x95\\xfc\\x4c\\xaa\\x23\\xe2\\x06\\xa5\\x3e\\x09\\xe1\\\n\\x0b\\x7b\\xda\\x89\\x50\\x66\\x9c\\xc8\\x4d\\x04\\x2d\\xbc\\xa6\\xa0\\x1e\\x50\\\n\\x85\\xa1\\x87\\x01\\x5d\\x75\\xe2\\x7d\\x7a\\x30\\xe6\\x21\\x2e\\x59\\x01\\x93\\\n\\xf8\\x84\\x52\\xf7\\x1e\\xbd\\x77\\x4b\\xe1\\x5e\\xd6\\xb0\\xf4\\xc9\\x39\\x75\\\n\\xa2\\x15\\x96\\xfa\\x8f\\x9e\\xb0\\xd9\\x69\\x96\\x43\\x69\\xca\\x00\\xd0\\xd8\\\n\\x9f\\x3d\\x61\\xc4\\xa1\\xca\\xe5\\x26\\xbd\\xf1\\x3f\\x2c\\xb2\\x95\\xb8\\x8f\\\n\\xfe\\xa5\\xa4\\x55\\xbf\\xcb\\x94\\x1e\\x29\\xe2\\x75\\x89\\x87\\x44\\xd6\\x1c\\\n\\xd2\\x99\\xaf\\xb4\\x35\\x98\\x4e\\x8f\\x86\\x9a\\x0c\\xa9\\xf8\\x6f\\x48\\xc3\\\n\\xd8\\x29\\xc4\\x9c\\xda\\x03\\x94\\xab\\x87\\x55\\x13\\xeb\\xba\\x31\\xac\\x08\\\n\\xce\\x32\\x0c\\x9b\\x89\\x4a\\xc0\\xbe\\x6d\\xeb\\xf1\\x1c\\x22\\x5b\\x0a\\x9e\\\n\\x93\\x9e\\x67\\x6e\\xa4\\x2d\\x1b\\xde\\xea\\x29\\x4a\\x53\\xeb\\x09\\x2b\\x43\\\n\\x8b\\x07\\xdc\\x22\\x9e\\x7d\\x60\\x4c\\xa1\\x27\\x2a\\x88\\x3f\\x5e\\x1c\\x60\\\n\\x4b\\x25\\x6c\\x6d\\x69\\xba\\xb1\\x5d\\xeb\\xfc\\xa2\\x7e\\x51\\x96\\xbd\\xa5\\\n\\x7b\\x16\\xea\\xa4\\xea\\x12\\x3e\\x7c\\xe3\\x1a\\x99\\x9c\\x6a\\x69\\xcd\\x9e\\\n\\x6c\\xa1\\x77\\x4a\\x06\\x5a\\xa4\\x9b\\xf1\\xe0\\x9e\\x7a\\xc7\\x65\\x12\\xfc\\\n\\xd3\\xe8\\xff\\x00\\xe3\\xad\\xc5\\x2e\\x29\\xd7\\xa4\\x7b\\x03\\x19\\x18\\x42\\\n\\xf3\\xfe\\x16\\xf0\\xde\\xd4\\x9b\\x9c\\xdc\\xc6\\xb6\\x89\\xc9\\x69\\x37\\x80\\\n\\x52\\xd3\\x42\\x05\\x06\\xcc\\xe4\\x1e\\x3c\\xf4\\xbc\\x4a\\x61\\x6d\\xb8\\xb3\\\n\\x44\\x92\\x2f\\xa9\\xe0\\x6d\\xc6\\x07\\x64\\x19\\xaa\\x93\\x94\\x5a\\xa4\\x44\\\n\\xdf\\x67\\xa7\\x93\\x30\\xe3\\x4d\\x1c\\xa9\\xe1\\x90\\x14\\x1f\\x12\\x2f\\x5d\\\n\\x38\\x44\\x86\\x11\\xec\\xab\\x42\\x5e\\x2f\\xd7\\x4c\\xca\\x79\\x47\\xc3\\x99\\\n\\xac\\x4d\\x61\\x12\\x8e\\x49\\x24\\xa5\\xb4\\xa1\\x54\\xfe\\xe2\\x37\\x57\\xff\\\n\\x00\\x96\\xb0\\xe4\\x9b\\xac\\x95\\x0d\\xb0\\x22\\xaa\\x00\\x2a\\xe7\\x53\\x4f\\\n\\x5f\\x78\\xd9\\x29\\x0c\\x38\\x55\\x97\\x31\\x55\\xad\\xc2\\x9a\\x43\\x0c\\x34\\\n\\xe3\\x2e\\x29\\x6a\\x09\\x58\\xd0\\xd6\\x80\\x5e\\x10\\x1f\\x97\\x39\\x89\\x5b\\\n\\x8d\\x52\\xb4\\x49\\x87\\x30\\x69\\xa9\\xf0\\x1c\\x49\\x52\\x10\\xe7\\xe2\\x24\\\n\\x1d\\x68\\x45\\x42\\x4f\\x77\\xd6\\x07\\x66\\x71\\x41\\xa3\\xe3\\xc5\\x35\\xff\\\n\\x00\\xf2\\x89\\x99\\xa9\\x96\\xa5\\x4c\\xfc\\xc9\\xa3\\x2a\\x04\\x50\\x1c\\xcf\\\n\\x8e\\xf6\\xf5\\xf9\\xc7\\x64\\x66\\x0c\\xae\\xd6\\x6d\\x47\\x71\\xe2\\xa5\\x24\\\n\\x7c\\x59\\x48\\xf8\\x87\\x02\\x75\\xa4\\x2f\\x65\\x3a\\xe4\\xc3\\xe8\\x23\\x6d\\\n\\x7c\\xa1\\x56\\x1e\\x7f\\x48\\xc2\\x71\\x36\\x59\\x65\\xd9\\x57\\x2e\\xf9\\x24\\\n\\x26\\x82\\xa9\\xff\\x00\\xca\\x31\\x6c\\x39\\xbc\\x51\\x12\\xcb\\x39\\x09\\x96\\\n\\x7b\\x3a\\xc2\\xc8\\x1a\\x2b\\xe1\\xae\\xb1\\x8b\\x4f\\x34\\xc2\\xdb\\x79\\x04\\\n\\xec\\x59\\x40\\x65\\x54\\x17\\xcd\\xc2\\x83\\x88\\xeb\\xa4\\x4c\\x4d\\x7e\\x01\\\n\\x4b\\xc4\\x86\\x67\\x05\\x01\\x45\\xd7\\x96\\xca\\xb8\\xb6\\x5f\\x38\\xc2\\xb0\\\n\\xc9\\x7c\\x43\\x28\\x7a\\xa8\\x90\\x97\\xa2\\xd9\\x08\\xf7\\x96\\xb1\\xf9\\xd1\\\n\\xc8\\xf8\\xc3\\x58\\xab\\xd8\\x7a\\x56\\xec\\xab\\x4c\\x8a\\x27\\x65\\x96\\xa0\\\n\\x6e\\x0b\\x67\\x36\\xf7\\xfa\\x46\\x24\\xa1\\x36\\xb4\\xbc\\xb5\\x15\\xe5\\x0f\\\n\\x10\\xa5\\x7b\\xd9\\x9c\\xa6\\x61\\xdd\\x5a\\x5e\\x30\\xd7\\xc4\\xbc\\x89\\x95\\\n\\x3a\\xed\\xb6\\x85\\x20\\xd5\\x25\\x15\\xe7\\xcf\\xa4\\x4c\\xbe\\xec\\xcb\\x29\\\n\\x74\\x51\\xb7\\xdb\\xdc\\x4d\\x0d\\x06\\xcf\\x4d\\x79\\xd2\\xb0\\xec\\xb3\\x5b\\\n\\x15\\xd4\\xa8\\xb4\\xf0\\x3b\\x53\\xf1\\x57\\x45\\x50\\x79\\xc4\\xdb\\xf3\\x58\\\n\\x76\\x28\\x1a\\xc2\\xb6\\xa9\\x96\\x0a\\x0a\\xce\\x49\\x49\\x51\\x35\\xce\\x92\\\n\\x2f\\xa2\\x68\\x40\\xe3\\xd3\\xde\\x89\\x15\\x82\\xe2\\x27\\x9c\\x25\\x53\\x0a\\\n\\x00\\x38\\x1d\\xb0\\xca\\x7d\\xeb\\xfa\\xf9\\x43\\x33\\xd8\\x6a\\xa5\\x59\\x4b\\\n\\x12\\x48\\xce\\x82\\x33\\xd6\\xde\\x46\\x91\\xda\\x49\\x94\\xcf\\xaf\\x67\\x20\\\n\\xc8\\x6a\\x8c\\x34\\x0a\\x08\\xca\\x8c\\xc1\\x3b\\xd7\\xeb\\xc6\\x24\\x66\\x9a\\\n\\xc3\\xc1\\x13\\x79\\xb6\\xe5\\x24\\x6e\\x8c\\xe0\\x13\\xd7\\xe5\\x0c\\xe2\\x69\\\n\\x53\\xc5\\x4b\\x5e\\xe5\\x6d\\xce\\xe6\\x9a\\x42\\xe7\\xdc\\x38\\x54\\xcc\\x83\\\n\\x64\\x7b\\x0a\\xdc\\x4b\\xa2\\xbe\\xf5\\x80\\x3e\\xec\\x4b\\xe3\\x26\\x5b\\x17\\\n\\x69\\x4e\\x3c\\xa4\\xcb\\x4b\\xce\\x17\\x02\\x53\\x52\\x4a\\x32\\x21\\x35\\xa5\\\n\\x75\\xcc\\x15\\x6e\\x95\\xe3\\x12\\x3d\\xa0\\x5a\\xfd\\xa1\\xc4\\x64\\x52\\x5c\\\n\\x74\\xa9\\xba\\x9d\\xfa\\x1b\\x5c\\x70\\xee\\x8c\\x57\\xb5\\x6f\\x4b\\x90\\x8c\\\n\\x9b\\xea\\xd2\\x82\\xa2\\x1f\\xed\\x53\\x6f\\x4a\\x23\\x6c\\xa4\\x81\\x94\\x25\\\n\\x5c\\xc1\\xa5\\x08\\xa4\\x32\\xcb\\x65\\xd6\\xe7\\x1b\\x53\\x7b\\x37\\x01\\x51\\\n\\xcb\\x75\\x70\\xa6\\x6a\\x69\\x18\\x56\\x28\\x96\\x89\\x63\\x7c\\xed\\x77\\x53\\\n\\x95\\x35\\x1e\\x26\\xba\\x41\\x9c\\x09\\x4a\\x1b\\x19\\x94\\xb5\\xd2\\x99\\x41\\\n\\x50\\x07\\xa9\\xe1\\x4f\\x56\\x8c\\x39\\x25\\x19\\x4a\\xfd\\xeb\\x66\\xbd\\x6f\\\n\\xd2\\x14\\xfa\\x54\\x95\\x0e\\x42\\xd0\\xd3\\x25\\x45\\x4a\\x34\\xe3\\xc7\\xa4\\\n\\x06\\x46\\x7a\\xe5\\xb4\\x62\\xeb\\x62\\x5e\\x49\\x5b\\x40\\x91\\xb5\\x14\\x6f\\\n\\x4d\\x7a\\xd7\\x48\\xc2\\x25\\xe5\\xbd\\x86\\x8f\\xe4\\xce\\xa5\\xe6\\x05\\x24\\\n\\x28\\x65\\xa1\\xe3\\x0f\\xe1\\xf2\\xca\\xa9\\x49\\x46\\x87\\xa4\\x62\\x72\\xe4\\\n\\x3b\\xb3\\x00\\xe6\\xad\\x88\\x8f\\x64\\x7e\\x4d\\xd0\\xf3\\xb7\\x6f\\x28\\x3b\\\n\\xa7\\x31\\xf2\\x86\\x71\\x52\\xb0\\x1b\\x6e\\xa0\\x75\\xb1\\xb4\\x6d\\xdc\\x42\\\n\\x76\\x8b\\x24\\x83\\xcb\\x58\\x93\\x71\\x0e\\x0c\\xc9\\x58\\xb7\\x33\\x13\\x0b\\\n\\xfc\\x46\\xe9\\xae\\x6c\\xab\\xae\\x9b\\x3e\\x37\\xe7\\x18\\x8a\\xd1\\x87\\x4e\\\n\\xbe\\x1b\\xa9\\x95\\x9b\\x03\\x41\\x70\\x6a\\x38\\x72\\xa8\\x8c\\x3e\\x55\\x83\\\n\\x34\\x95\\xac\\x57\\x68\\x6a\\x28\\x9a\\xf9\\xde\\xd1\\x88\\x61\\x01\\x29\\xac\\\n\\xa3\\x8a\\x4a\\x95\\xef\\x6d\\x2a\\x84\\xd4\\xeb\\x4b\\xde\\x1f\\x93\\x71\\x80\\\n\\x76\\x8a\\x42\\xdc\\x51\\xaa\\x72\\xab\\x30\\x00\\x75\\xb4\\x39\\x27\\x9e\\x55\\\n\\xbc\\xa3\\xf1\\x54\\x07\\x9c\\x37\\x85\\xcc\\x22\\x62\\xb3\\x19\\x72\\x57\\x82\\\n\\xab\\x0f\\x2d\\x41\\x3b\\x16\\x8e\\xe2\\x06\\x54\\xd6\\xd1\\x88\\x32\\x43\\x39\\\n\\xd5\\x4a\\x02\\x76\\x9d\\xc7\\x97\\x38\\xff\\x00\\xdb\\x92\\xb8\\x9a\\x54\\xa4\\\n\\xa4\\x54\\x82\\x6a\\xaa\\x27\\x51\\xad\\x69\\xfc\\x46\\x1d\\x84\\x4a\\xe1\\x6d\\\n\\xd1\\x20\\x17\\x39\\xb7\\xbc\\x2b\\xdf\\x0f\\x4c\\x94\\x8a\\xaa\\xb5\\xe7\\x09\\\n\\x71\\x4f\\xaa\\x80\\xd4\\x6b\\xd7\\xbe\\x24\\x13\\x94\\x75\\xa5\\xe1\\x2d\\xfe\\\n\\x22\\x9c\\x52\\x88\\x49\\x1e\\x30\\xc8\\x96\\x0f\\x29\\x4a\\x49\\x52\\x4f\\xc4\\\n\\x13\\x58\\xed\\x0c\\xb2\\xd4\\x36\\xb2\\x89\\xde\\x4a\\xd1\\x4a\\xee\\xd8\\xab\\\n\\x7b\\x4e\\x62\\x1d\\x7b\\x15\\x54\\xa8\\x69\\xb4\\x0c\\xc0\\x71\\x55\\xaa\\x3b\\\n\\x84\\x4b\\x61\\xd8\\x94\\xc4\\xda\\x5b\\x78\\x1a\\x95\\x5e\\xe6\\x9a\\xf3\\x8f\\\n\\xfd\\xb0\\x82\\xc0\\xce\\x6f\\x4b\\xf7\\xf4\\x83\\xd9\\x46\\xb6\\x6b\\x42\\x4d\\\n\\x33\\x75\\xe5\\xfb\\xc4\\xae\\x10\\xf4\\xb3\\xdb\\x25\\xa5\\x0b\\x66\\xb4\\xde\\\n\\x55\\xe9\\xdd\\x48\\x32\\x42\\xfb\\x21\\x4a\\x68\\x34\\x03\\xd7\\xad\\x20\\xcb\\\n\\xcc\\xd4\\xdd\\x1a\\xf1\\x57\\xed\\x13\\xd8\\x8a\\x31\\x1c\\x43\\x3c\\xb8\\xff\\\n\\x00\\xf8\\xf2\\x33\\x91\\xf0\\x1b\\x8a\\x53\\xd7\\x08\\xc3\\xe7\\xcb\\x6b\\x79\\\n\\x80\\x6c\\x4e\\x64\\x0e\\x01\\x24\\x50\\x78\\x5a\\x25\\xa6\\x5f\\x0b\\x76\\x86\\\n\\x97\\xa0\\xbe\\x80\\xfd\\xab\\x07\\x12\\x5c\\x8b\\x81\\x6e\\xaa\\xf1\\x25\\x3c\\\n\\xfe\\x26\\x95\\x2d\\x85\\x6e\\xf4\\x3c\\x23\\x10\\x4b\\xaf\\x34\\xb6\\xc2\\xbf\\\n\\xb4\\x77\\xeb\\xd2\\xfe\\x35\\xf0\\xfb\\x40\\x9c\\x4b\\xf2\\x8a\\x6a\\x80\\x96\\\n\\xad\\xf3\\xb7\\x7f\\x1e\\xe8\\xc1\\x71\\x41\\x2d\\x28\\xba\\xfc\\x29\\xf5\\xeb\\\n\\xbe\\x1c\\xc7\\x16\\xa4\\xcc\\xab\\x36\\xe9\\x5a\\x88\\xe9\\xca\\x0e\\x31\\xb4\\\n\\x43\\x68\\x1a\\x95\\x2b\\x4f\\x08\\x42\\x1d\\xaa\\x57\\x5d\\xda\\xd4\\xc2\\x5f\\\n\\x39\\x29\\x5b\\x7d\\xbd\\x18\\x65\\x41\\x4c\\x80\\x7a\\xfd\\x62\\x61\\x32\\x4c\\\n\\xba\\xa5\\xb8\\x80\\x4a\\xaa\\x91\\x51\\xc7\\x98\\xf2\\x87\\x25\\xd4\\xf9\\x0a\\\n\\x60\\x90\\x81\\x45\\x53\\xa8\\x35\\xf2\\xe9\\xc6\\x24\\xb1\\x05\\xcb\\x3e\\x96\\\n\\xdc\\x36\\x26\\x3d\\xa9\\x85\\x00\\x68\\x33\\x14\\x8b\\xf8\\x58\\xc4\\xfc\\x8a\\\n\\xde\\x73\\x3a\\x4d\\x07\\xd6\\x1e\\x97\\x75\\xa2\\x9d\\xea\\x50\\xe9\\x12\\x8b\\\n\\x54\\xc4\\x92\\x92\\x2b\\xee\\x53\\xa8\\xa0\\xa4\\x39\\x85\\x35\\x57\\x56\\xf1\\\n\\xdf\\xda\\x1a\\x77\\x52\\x25\\x80\\x95\\x45\\x52\\xa3\\x62\\x38\\xf5\\xf9\\xc4\\\n\\xea\\x7d\\xa1\\xd6\\x8a\\xaf\\xa4\\x4e\\xe1\\xea\\x33\\x48\\x97\\xda\\x9a\\x38\\\n\\xac\\xc7\\xfe\\xe3\\x98\\x57\\xba\\xa6\\x25\\x87\\xb1\\xcb\\x19\\x60\\xa2\\xa5\\\n\\x5a\\x87\\x95\\x07\\xab\\x46\\x11\\x34\\x99\\x56\\x94\\xa7\\xae\\xaa\\x6e\\x9e\\\n\\xa7\\x48\\xc0\\x26\\xd3\\x2e\\xb5\\x99\\xcd\\xed\\xbf\\xf6\\x6b\\x7c\\xb5\\xd2\\\n\\x25\\x55\\xf6\\x87\\x9e\\xc9\\x4a\\x71\\x89\\x25\\xe7\\x14\\xe7\\x0b\\x5a\\x59\\\n\\xd6\\x3b\\x59\\x38\\xd4\\xeb\\x2c\\xca\\xb6\\xaa\\x38\\x85\\x6f\\x78\\x9a\\xc4\\\n\\x93\\x8d\\x31\\x2c\\x86\\x94\\xb3\\x98\\x5e\\xb5\\x83\\x32\\xd7\\x07\\x0d\\x78\\\n\\x44\\xcc\\xeb\\x2c\\x3e\\x1b\\x74\\x55\\x55\\xa7\\x9c\\x6c\\x5b\\x9b\\xa2\\x39\\\n\\x8a\\x8e\\xe3\\x0b\\xc2\\x44\\xaa\\xf3\\x52\\x83\\x97\\x7c\\x3c\\xa4\\xec\\xf2\\\n\\xf2\\x10\\xdc\\xf4\\xc6\\x1d\\x33\\x95\\x64\\xe4\\x52\\xcd\\xba\\x66\\xfd\\x21\\\n\\xfc\\x45\\xb7\\xd9\\x6d\\x29\\xf7\\xd4\\x2b\\x5f\\x94\\x62\\xca\\x01\\x01\\x2e\\\n\\x5d\\x66\\xe9\\x27\\x5e\\x7f\\x48\\xc1\\x67\\xdb\\xc9\\xb4\\x50\\xfe\\xd7\\xdb\\\n\\x94\\x2b\\x12\\x98\\xc5\\x54\\xb0\\x91\\x95\\xb4\\x12\\x01\\xd3\\x74\\x71\\x85\\\n\\x29\\xa7\\x67\\x65\\xe5\\xd0\\x6a\\x46\\x7d\\xa7\\x7d\\x53\\x4f\\xbc\\x26\\x6d\\\n\\xb4\\x3e\\xb6\\x4f\\xfd\\x2b\\xf9\\x43\\xf9\\x1d\\x6f\\x3a\\x60\\xbb\\xf8\\xab\\\n\\x4f\\x5d\\x63\\x10\\x6c\\xbb\\x28\\xe5\\x38\\x7e\\xb1\\x24\\xb4\\xb2\\xca\\x9b\\\n\\x55\\xb3\\x21\\x49\\xa8\\xe1\\x50\\x41\\x31\\x3f\\x8c\\x35\\x24\\x82\\xc4\\xb9\\\n\\xce\\xe6\\x83\\xd7\\x94\\x49\\x9e\\xd1\\x4f\\x3b\\x98\\xb5\\x59\\x65\\x1d\\xd2\\\n\\x34\\xa7\\x7f\\xa1\\x12\\x72\\x0e\\x36\\x01\\xa7\\xe2\\x91\\x71\\x08\\x95\\x9e\\\n\\xa6\\xe2\\x4d\\xc7\\x58\\x97\\x6e\\x69\\xa5\\x01\\x3d\\x54\\xa6\\xbd\\xd6\\x89\\\n\\x69\\x69\\x35\\x20\\x6c\\x68\\xb1\\x5b\\x9f\\xf2\\xe3\\x13\\x18\\x73\\x4a\\x37\\\n\\x03\\x2c\\x31\\x83\\xcb\\xae\\x9b\\xa9\\x89\\xb9\\x49\\x16\\xa6\\x93\\x91\\x09\\\n\\x04\\x01\\x5e\\xf8\\x75\\x20\\x85\\x52\\x10\\x32\\xd4\\x9d\\x2f\\x0f\\x4b\\x05\\\n\\x1c\\xe9\\xe7\\xeb\\xba\\x1b\\xc2\\xe7\\x9c\\x6d\\x45\\x02\\xc4\\x5b\\xba\\x26\\\n\\x70\\xec\\x5c\\x3c\\xb0\\x90\\xaa\\x0d\\x28\\x22\\x6c\\x4b\\x30\\x8f\\xf6\\x1c\\\n\\xb7\\x46\\x80\\x0a\\x72\\xee\\xac\\x37\\x39\\x36\\xe1\\x53\\x4e\\xe4\\x41\\xf8\\\n\\x0e\\xe8\\x24\\x7c\\x23\\xd7\\x38\\x38\\x84\\xcc\\x92\\xc3\\x64\\x2d\\xc4\\x28\\\n\\x9c\\xc4\\x27\\xe2\\xa6\\xe8\\xad\\x85\\x0a\\xbe\\x64\\x5b\\x5a\\x33\\x32\\x8c\\\n\\x41\\x5b\\xf6\\x50\\x3b\\xb7\\xad\\x8d\\xb4\\x3d\\x2b\\xc3\\x84\\x61\\x93\\x89\\\n\\xc2\\x9a\\xd9\\x36\\x02\\xb3\\x8a\\xe8\\x35\\x34\\xb7\\xad\\x29\\x13\\x2f\\x4d\\\n\\x2c\\x39\\xb1\\x48\\x2d\\xbd\\x55\\x3b\\x61\\xa9\\xb7\\xd2\\xb1\\x87\\x31\\x2a\\\n\\x81\\x32\\xb5\\x9f\\xc7\\x04\\x94\\xd4\\xfc\\x57\\xe1\\xd0\\x56\\x30\\xf9\\xa0\\\n\\xdb\\x8f\\x67\\xa6\\x5d\\x47\\x5a\\xf4\\x30\\xec\\xba\\x31\\x55\\x3a\\x9a\\xe5\\\n\\x48\\x55\\xb2\\xee\\xd6\\x9a\\x52\\x9d\\x62\\x43\\x0f\\x12\\xb3\\x9b\\x25\\x82\\\n\\xa4\\xd6\\xa0\\xdf\\x99\\xf1\\xd2\\xc3\\xc7\\x9c\\x55\\xa6\\xdd\\x56\\xb6\\x16\\\n\\x17\\xa5\\x6e\\x7b\\xad\\x12\\x2f\\x04\\xed\\x94\\x7a\\xd2\\xb0\\xcb\\xed\\xa9\\\n\\xa0\\xba\\xfb\\xd5\\xb7\\x89\\x89\\xd7\\xd8\\x70\\x94\\xbb\\xee\\x8b\\x8e\\xff\\\n\\x00\\xd2\\x91\\x83\\x3d\\x27\\x91\\x69\\x1c\\x42\\x87\\x3d\\x78\\x88\\xc4\\x98\\\n\\x96\\xf6\\x74\\x90\\x9d\\x6d\\xdf\\xaf\\x8c\\x09\\xc5\\x02\\x86\\xc0\\x39\\x28\\\n\\x39\\xfd\\x4d\\xe9\\x12\\xca\\x61\\xc6\\xa8\\xb5\\x81\\xc7\\xae\\x9e\\xad\\x13\\\n\\x52\\xcd\\x28\\x92\\x95\\x56\\x9c\\x2b\\xac\\x61\\xf8\\x93\\x4c\\xa9\\x4d\\xd4\\\n\\x57\\x2c\\x2c\\xa1\\xf7\\xdd\\x59\\x57\\xc6\\x47\\xaf\\x38\\x99\\x52\\x90\\xe0\\\n\\x4b\\x57\\x24\\xfa\\xb4\\x4b\\x33\\x88\\x3d\\xdd\\x0d\\xe1\\xaf\\xa4\\xa7\\x74\\\n\\xa8\\xab\\xde\\x34\\xa9\\x15\\xbf\\x1d\\x3c\\x21\\xa9\\x06\\x98\\x6d\\x49\\x51\\\n\\x05\\x6e\\xd1\\x46\\xba\\x8a\\x5b\\xd5\\x21\\x18\\x79\\x4d\\x56\\xd7\\xbe\\x37\\\n\\x90\\x0d\\xc5\\x7f\\x88\\xc1\\xa6\\x76\\x33\\xe9\\x13\\xb7\\xa1\\xd3\\x87\\xed\\\n\\xe1\\x12\\x93\\x48\\x75\\x44\\xb7\\xfd\\xbf\\x87\\xbb\\xd7\\xaa\\x44\\xeb\\xec\\\n\\x82\\x9c\\xe7\\x42\\x61\\x38\\xc2\\x58\\xf7\\x02\\xad\\xa4\\x4d\\x62\\xee\\xbd\\\n\\xbc\\x6a\\x07\\x79\\x87\\xb1\\x64\\x37\\x99\\x46\\x85\\x66\\x82\\xf7\\x36\\xea\\\n\\x79\\xd3\\xe7\\x0c\\xcd\\x3d\\x3a\\x00\\x09\\xa2\\x79\\x8f\\xd6\\x24\\x64\\x12\\\n\\x94\\x97\\x1c\\x37\\x48\\x2a\\xbf\\x30\\x2b\\x18\\xaa\\xc4\\xda\\xf6\\xaa\\xb2\\\n\\x86\\x82\\x94\\x3f\\xac\\x33\\x8b\\xaf\\x0d\\xa3\\xdc\\x8e\\x5d\\x78\\x0d\\x22\\\n\\x47\\x13\\x6f\\x19\\x6f\\x39\\x20\\x2b\\x5a\\x56\\x31\\x06\\xa8\\x9d\\xd8\\x99\\\n\\x9e\\x7b\\x6f\\x47\\x12\\x40\\xcc\\x45\\xfa\\x1a\\x44\\x82\\x5c\\x9a\\x75\\x1b\\\n\\x25\\x58\\x26\\xe2\\xbc\\x75\\x8c\\x65\\x0f\\x21\\xd4\\xb6\\xe2\\xac\\x56\\x91\\\n\\x5a\\xf5\\x1d\\x62\\x6d\\x94\\x49\\xa6\\x59\\xd6\\xcd\\xca\\x41\\xa0\\xd0\\xf7\\\n\\x88\\x90\\x7d\\xa7\\x5a\\x4b\\xe2\\x80\\xa5\\xa0\\x14\\x00\\xa6\\xf5\\x37\\xa1\\\n\\xd2\\xe7\\xb6\\x3c\\xb6\\x53\\xfd\\xc5\\x0b\\xf2\\xa5\\x74\\xf3\\x86\\xe5\\xc9\\\n\\x14\\x57\\xbc\\xbb\\x7a\\x3f\\x78\\xf6\\x75\\xb5\\xa1\\x26\\x17\\x2b\\xb5\\x4f\\\n\\xe4\\x57\\xc5\\xc2\\xf1\\x88\\x4b\\x16\\x18\\x52\\x54\\xe5\\x76\\x96\\x48\\xaf\\\n\\x11\\xce\\xf1\\x8e\\x63\\x6a\\x93\\x92\\xf6\\x64\\x0d\\xe1\\xe7\\xe7\\x4a\\xf5\\\n\\x8e\\xcb\\x62\\x49\\x9f\\x70\\x34\\xf5\\x0d\\x48\\x00\\x14\\x26\\xbf\\x3a\\x98\\\n\\x99\\xc3\\xda\\x96\\x96\\x94\\x43\\x64\\x56\\x64\\x90\\xe6\\x5b\\x65\\x04\\xeb\\\n\\xd2\\xd1\\x38\\xcc\\xb6\\x0a\\xca\\x10\\xd9\\xce\\x95\\x80\\xa2\\x6b\\x9a\\x8a\\\n\\x22\\xb4\\xac\\x0e\\xd4\\xe4\\x97\\xc8\\x86\\xeb\\x7d\\x40\\x89\\xe9\\xa9\\xc9\\\n\\xa9\\x94\\x07\\x41\\x2d\\x1a\\x5e\\xff\\x00\\x68\\x94\\xfc\\x16\\xd0\\xd4\\xa9\\\n\\x39\\x0d\\x14\\xaa\\x9b\\x85\\x9d\\x7e\\x90\\xde\\x60\\xdf\\xe2\\xaa\\xdd\\x4f\\\n\\x1e\\x10\\xa9\\xef\\x65\\x24\\xa4\\xc7\\xf5\\x05\\xad\\x65\\x5c\\xd4\\x4f\\x99\\\n\\xeb\\x02\\x69\\xcc\\xd9\\x88\\x34\\xfe\\x60\\xad\\xa7\\x06\\x6c\\xc3\\x30\\xe0\\\n\\x0c\\x22\\x64\\x87\\x32\\x22\\xff\\x00\\x38\\x6f\\x11\\x3b\\x16\\xd0\\x53\\x4a\\\n\\x20\\x0d\\x29\\x0a\\x99\\x41\\x27\\x48\\x77\\x17\\x44\\xca\\x40\\x65\\xb5\\xd1\\\n\\x55\\x09\\x55\\x48\\xfd\\xe9\\xd7\\xbe\\x15\\x3d\\x34\\xca\\x5a\\x6d\\x41\\xa0\\\n\\x5c\\x55\\x0a\\xd2\\x48\\x71\\x19\\xcd\\x38\\xe6\\xd2\\xe4\\x6a\\x3a\\x5a\\x1e\\\n\\x69\\x22\\x51\\x35\\x5a\\xdd\\x2a\\xb8\\x05\\x43\\x35\\x6b\\x5b\\x1a\\x5b\\xc6\\\n\\x11\\x34\\xf4\\x9c\\xc9\\x53\\x48\\x4e\\xbe\\xea\\x81\\xae\\x55\\x15\\xfc\\x55\\\n\\xde\\x35\\x46\\x41\\x5d\\x4d\\x00\\x00\\x11\\x18\\x41\\xdb\\xa1\\x2b\\x7c\\x6a\\\n\\x01\\xa7\\xe5\\xa8\\x16\\xef\\x10\\x19\\x6c\\xb6\\xbd\\x9a\\xd5\\xca\\x96\\xa6\\\n\\x9d\\xdc\\xa2\\x62\\x47\\x62\\xcc\\xc3\\xe2\\xa1\\x57\\x3d\\xd5\\x34\\x3f\\x58\\\n\\x94\\x95\\x9d\\x7e\\x61\\xc4\\x84\\xee\\x2d\\x23\\x7a\\xf5\\xb9\\xd0\\x0a\\xd3\\\n\\xfe\\x27\\x84\\x4a\\x61\\x4a\\x96\\x6d\\xb4\\x66\\x50\\x52\\x42\\x42\\x8f\\x13\\\n\\xce\\xaa\\x3a\\x9f\\xe7\\xa4\\x49\\x49\\x30\\x1d\\xda\\x2f\\x7a\\x94\\xa9\\x51\\\n\\x15\\xf9\\x44\\xdc\\x94\\xab\\x99\\x94\\xc7\\xbc\\xa4\\x10\\x7a\\x57\\x97\\x5a\\\n\\x43\\x81\\x6c\\x2d\\x52\\xf6\\xa2\\xbe\\x2e\\x20\\xe9\\x0e\\x87\\x18\\xce\\x96\\\n\\xb6\\x85\\xb0\\x6c\\x55\\xa7\\x33\\x71\\x4d\\x09\\x3e\\x51\\x32\\xb9\\x87\\x72\\\n\\xed\\x0a\\x02\\x0a\\x8a\\x4e\\x5c\\xd9\\x81\\xb0\\x14\\xad\\xc8\\xcb\\x5a\\x9b\\\n\\x70\\x8c\\x39\\xf6\\xe5\\x9b\\xaa\\x68\\xa2\\x05\\x77\\xbd\\x77\\xc3\\x53\\xbe\\\n\\xdb\\x2e\\x14\\xa6\\x5a\\xc8\\x9f\\xcb\\x98\\x9f\\x99\\x87\\x5c\\x44\\xca\\xf2\\\n\\xb4\\x94\\x8a\\x50\\x55\\x3c\\xc5\\xbc\\x2b\\x07\\x0f\\x98\\x4a\\x33\\xa5\\x6a\\\n\\x02\\xa3\\xc2\\x04\\xc2\\x58\\xb3\\xce\\x91\\x5b\\x52\\xba\\xfc\\xb5\\x87\\x26\\\n\\x0b\\x73\\x1b\\x54\\x1a\\x82\\x4d\\x41\\x26\\x94\\xe1\\x4a\\x73\\xad\\xeb\\xdf\\\n\\xc2\\xf2\\x92\\xf3\\x33\\x03\\x68\\x90\\x45\\x4d\\x08\\x15\\xef\\xfa\\x41\\xc1\\\n\\xdc\\x20\\x38\\xac\\xd9\\x87\\x2a\\x71\\xef\\xf5\\xf3\\x89\\x06\\x1c\\x68\\xe5\\\n\\x55\\x6d\\xcf\\xf6\\x86\\x0a\\x5a\\x64\\xee\\xa5\\x64\\xa6\\xbb\\xe3\\xe9\\xf6\\\n\\x89\\x8c\\xea\\x79\\x4e\\x51\\x67\\x29\\xb3\\x68\\xb5\\x7c\\xc1\\x87\\x27\\x27\\\n\\x10\\xd2\\xd4\\xcb\\x27\\x3a\\x06\\xec\\xaf\\xbd\\x30\\xf7\\x0c\\x8d\\x28\\x6e\\\n\\x85\\x71\\xb8\\xd0\\x73\\x89\\x09\\x79\\x6a\\xb7\\x31\\x38\\xf2\\x99\\x79\\x54\\\n\\x26\\x5d\\xd2\\x33\\x83\\xcb\\x84\\x31\\x36\\xdc\\xbb\\x69\\xd9\\x65\\xa1\\x1b\\\n\\xb5\\xe5\\xeb\\xd7\\x08\\xcd\\xb7\\x74\\xad\\x45\\x34\\xeb\\xa7\\x84\\x7b\\x46\\\n\\x16\\xd3\\x4b\\xdb\\x14\\xd4\\x20\\xd6\\x94\\x27\\x43\\xa7\\xda\\x31\\x6e\\xd0\\\n\\xe1\\x8c\\x36\\xa0\\xc9\\xcd\\xff\\x00\\x2f\\xda\\x30\\xe7\\xa4\\xb1\\x59\\x8d\\\n\\xa4\\xde\\x20\\xcc\\x93\\x1a\\x8c\\xca\\x15\\xa0\\x34\\x3c\\x7d\\x78\\x41\\xed\\\n\\x1e\\x03\\x84\\x36\\x86\\x1a\\x74\\x4e\\x15\\x90\\x86\\x5e\\x6c\\x82\\x95\\x2e\\\n\\x95\\x15\\x23\\x85\\x01\\x36\\xe9\\x13\\x1d\\xb1\\x78\\x10\\xd3\\x4d\\x37\\x38\\\n\\xf2\\xbd\\xd9\\x49\\x10\\xa5\\x3c\\x2b\\xa6\\x7b\\xaf\\xa5\\x68\\x07\\x84\\x37\\\n\\xd9\\xcc\\x5f\\x12\\xc3\\xdb\\xc4\\xe6\\x9b\\x4e\\x1f\\x52\\x0a\\xda\\x5d\\x52\\\n\\x00\\xe3\\x40\\xab\\xfa\\xef\\x89\\xce\\xc8\\xc8\\xce\\x61\\xe1\\xd6\\x27\\x54\\\n\\xe3\\x80\\x14\\xa9\\x21\\x48\\xcb\\x99\\x3a\\xf0\\xac\\x4b\\xa5\\xcc\\x09\\xec\\\n\\x8b\\x2a\\x09\\xba\\x6f\\xa5\\xfb\\xa3\\xda\\x44\\xc3\\x41\\x4d\\x9c\\xc4\\x8d\\\n\\x0c\\x62\\x18\\x2a\\x26\\x90\\x5c\\xdd\\x4a\\xf5\\xdc\\xa0\\x1f\\x7f\\x56\\x86\\\n\\x9e\\x9b\\xc2\\x26\\x6a\\xa2\\x9d\\x9f\\x3e\\x9e\\x7a\\xfa\\xd2\\xb1\\x35\\x3e\\\n\\xbc\\x5e\\x75\\x95\\x36\\xbf\\xc3\\x04\\x95\\x50\\xda\\xb4\\xe3\\x5e\\xba\\x44\\\n\\xbb\\xad\\x3e\\xe3\\x6d\\xcd\\xad\\x59\\x1b\\xa5\\x36\\x47\\x5a\\x7f\\xca\\xb1\\\n\\x2c\\xb1\\x22\\x66\\x50\\xe2\\xff\\x00\\x01\\xe7\\x16\\xa6\\xaf\\xbf\\x91\\x44\\\n\\xe5\\xe9\\xa6\\xb6\\xe9\\x18\\x74\\xcb\\x01\\xc2\\x14\\x82\\xa4\\x28\\xd9\\x44\\\n\\x5e\\xdf\\xcc\\x25\\xb6\\x26\\x1d\\xce\\x9d\\xa0\\xd9\\x1c\\xc3\\x4a\\x5b\\x9d\\\n\\xb4\\x8f\\x64\\x6d\\x4d\\xe7\\xcd\\xbd\\xcb\\x87\\xf3\\xe1\\x18\\xb9\\x65\\xa9\\\n\\x6a\\x21\\x59\\x5e\\xa1\\xcd\\x4a\\x6b\\x0a\\x13\\xaa\\x7d\\x6b\\xda\\x3a\\xe8\\\n\\x06\\xb9\\x57\\x74\\x8e\\xef\\xbc\\x62\\x18\\x73\\xd3\\x4e\\x29\\x4b\\x68\\xd4\\\n\\x8a\\x69\\x61\\x5a\\xde\\x30\\x4c\\x1d\\xf9\\x3c\\x45\\x2e\\xb6\\x17\\x97\\x30\\\n\\xb1\\x35\\x14\\xaf\\x48\\x79\\xd9\\xd2\\x85\\x3b\\x94\\x2b\\x2a\\x13\\x94\\x51\\\n\\x54\\x14\\x14\\xb7\\x53\\xf7\\x8f\\xea\\x13\\xaf\\xa4\\x32\\xfb\\x69\\x52\\x4b\\\n\\x9c\\x73\\x67\\x1a\\xe9\\x53\\xeb\\xce\\x30\\xe9\\x29\\x52\\x90\\xda\\xd0\\x0e\\\n\\x64\\x9b\\xf1\\xac\\x33\\x2c\\xcb\\x6d\\x2a\\xdb\\x45\\x70\\x2e\\x50\\x9f\\xb4\\\n\\x4d\\x3b\\x37\\x29\\x95\\x52\\xe9\\x07\\x33\\x94\\x29\\x35\\xa0\\xeb\\xfc\\xc2\\\n\\xd7\\x30\\xe9\\x97\\x6c\\x38\\x41\\x78\\x02\\xba\\xe8\\x3b\\xbe\\xd5\\x87\\x30\\\n\\x96\\x03\\x68\\x0e\\x4c\\x1a\\xa9\\x22\\xbb\\xc9\\x81\\x86\\xca\\x17\\xb2\\xb0\\\n\\xf2\\x94\\x80\\x37\\x8a\\x8a\\x6b\\x5e\\x86\\x9c\\xf4\\x87\\xd4\\x96\\xcb\\x8c\\\n\\xee\\x90\\x0d\\x95\\xc7\\xe5\\x05\\xb9\\x8d\\xa8\\xd9\\x12\\x6b\\x5a\\x27\\x87\\\n\\xae\\x31\\x2a\\xa6\\x25\\x96\\x16\\xa2\\x4b\\xff\\x00\\x91\\x54\\xcb\\xfa\\xf7\\\n\\xc3\\x6b\\x54\\xcd\\xf2\\x84\\xd6\\xfb\\xb0\\xa9\\x57\\xeb\\x6f\\xb7\\xde\\x27\\\n\\xfb\\x2f\\x2c\\xb5\\x03\\x2c\\xda\\x5b\\x00\\xea\\x29\\x6f\\xdb\\xa7\\x2b\\x47\\\n\\x69\\x30\\xd4\\xe1\\xc1\\xb6\\xc6\\xfa\\xc9\\x0e\\x67\\x20\\xd6\\xb5\\xa5\\x33\\\n\\x0d\\x28\\x01\\xa0\\xe3\\xe7\\x46\\xca\\xc3\\x2c\\x38\\xea\\x8e\\x42\\xdd\\x03\\\n\\x89\\xb5\\xc8\\xb5\\x53\\x7b\\x9d\\x07\\xd6\\xf0\\xc4\\x9a\\xde\\x78\\x38\\x96\\\n\\xc0\\x49\\x55\\x2a\\x14\\x6d\\x40\\xaa\\xe6\\x4e\\x6a\\xdf\\x80\\x49\\xad\\x4a\\\n\\x88\\x35\\x35\\x89\\x05\\x3a\\x8d\\xcc\\x8a\\x00\\x0c\\xbc\\x4d\\x69\\x6a\\xf1\\\n\\xd7\\x53\\xc6\\xb0\\xca\\xe6\\x11\\x55\\xa5\\x2a\\x2d\\x57\\x7c\\x9b\\x5e\\x9c\\\n\\xb5\\xd3\\x94\\x4c\\xb9\\xb4\\x6b\\x21\\x1b\\xae\\x5b\\xef\\x7e\\x51\\x2e\\xfe\\\n\\xc1\\xd2\\x96\\x92\\x14\\xb0\\x13\\xbb\\x4d\\x05\\xf5\\x3c\\xf5\\xf2\\x3e\\x13\\\n\\xf8\\x84\\xcb\\x4d\\x95\\x64\\x52\\x54\\xa1\\x5b\\x0e\\x3e\\xbe\\x71\\x87\\x63\\\n\\x93\\x8e\\xce\\x06\\x9c\\x49\\x43\\x6a\\x34\\x2a\\xe3\\xd0\\xf2\\xe3\\xa0\\x27\\\n\\x5e\\x14\\x89\\xc9\\x87\\x25\\xda\\x4a\\xa5\\xaa\\xe1\\x22\\xff\\x00\\x7d\\x7d\\\n\\x78\\x46\\x23\\x3f\\x8a\\x19\\xdc\\xe5\\x39\\x52\\x2f\\x95\\x56\\xaa\\x40\\xa9\\\n\\x56\\x6e\\x79\\x85\\x38\\xea\\x37\\x6c\\x54\\x06\\x2d\\x3a\\xfc\\xab\\x72\\x9e\\\n\\xcc\\x92\\xbb\\x24\\xaa\\xa9\\x05\\x65\\x64\\x95\\x28\\x2a\\xb4\\xa2\\x6a\\x05\\\n\\x09\\x4a\\x8e\\xa0\\x10\\x0d\\x1b\\xc1\\xa6\\x48\\xdb\\xba\\xba\\xd4\\x7f\\x6e\\\n\\xb6\\x06\\x97\\x55\\x40\\xe9\\x41\\x48\\x6b\\x0f\\x99\\x55\\x52\\xcb\\x65\\x75\\\n\\x19\\x15\\xbc\\x3d\\xd1\\x7e\\x3d\\x6b\\x0a\\x54\\xc4\\x95\\x65\\x1a\\x45\\x88\\\n\\x00\\xdf\\x41\\xeb\\xc7\\xe9\\x09\\x9d\\x54\\x9c\\xcd\\x16\\xa0\\x13\\x5a\\xdf\\\n\\x99\\xb9\\xf2\\x89\\x6c\\x40\\xbe\\xc2\\x41\\x03\\x2a\\xa9\\x7e\\xb1\\x8a\\x61\\\n\\xea\\x76\\xae\\x1a\\x84\\xeb\\x62\\x3e\\x9c\\x7d\\x08\\x90\\x42\\x1c\\x75\\x3c\\\n\\x93\\x6e\\x95\\x16\\xe3\\x7e\\xed\\x7c\\xe3\\x09\\x2c\\x22\\x8d\\x0a\\x13\\xef\\\n\\x52\\x9a\\x5b\\xf9\\x87\\x66\\x91\\xb5\\x08\\x40\\x06\\x95\\xaf\\xa3\\x12\\xe9\\\n\\xbe\\x65\\xa0\\x04\\xf3\\xa8\\xfd\\x61\\x2a\\xda\\x15\\x04\\x54\\xa6\\xa4\\x68\\\n\\x7e\\xf0\\x99\\x30\\xfb\\x9b\\xd3\\x68\\x96\\x97\\x1f\\xdf\\x46\\x42\\x5c\\x59\\\n\\xe1\\x91\\x41\\x26\\x94\\x15\\x1d\\x7c\\xe2\\x6a\\x77\\x09\\xc3\\x10\\x53\\x87\\\n\\xde\\x62\\x96\\x9b\\x98\\x05\\x65\\xa5\\x7e\\x74\\x8a\\x1f\\xa7\\xda\\x31\\x9e\\\n\\xd0\\xe1\\xa5\\x28\\x5a\\x91\\xb7\\x9a\\x4e\\xaf\\x20\\x14\\x27\\x37\\x76\\xef\\\n\\xd2\\x11\\xda\\x19\\xb7\\xc3\\x7b\\x10\\xac\\xb4\\x1a\\x9a\\x00\\x3c\\x48\\x84\\\n\\xe3\\x13\\x2e\\x21\\x09\\x4b\\x99\\x57\\xf1\\x8e\\x5c\\xb4\\xfb\\x42\\x50\\x5e\\\n\\x15\\x71\\xf5\\x5f\\x85\\xef\\xd3\\xc6\\x31\\x5c\\x19\\xf5\\x28\\xba\\x86\\x56\\\n\\xb6\\x85\\xe8\\x08\\xd3\\xb8\\x91\\xeb\\xac\\x61\\xbd\\x94\\xc2\\x66\\xe4\\x91\\\n\\x3d\\x8b\\xac\\xec\\xdc\\x0b\\x02\\x59\\x2a\\x2d\\x94\\x65\\x5a\\x85\\x2b\\x54\\\n\\xd6\\xa4\\x6b\\xae\\x97\\xb0\\x11\\xfd\\x19\\xa7\\xa6\\x1c\\x93\\xc1\\x99\\x70\\\n\\x31\\x92\\xce\\x38\\xa3\\xfe\\xdc\\x54\\x7e\\x32\\x4b\\x96\\x52\\xbe\\x1a\\x02\\\n\\xa2\\x42\\x89\\x23\\x58\\xec\\x7c\\xac\\x97\\x66\\xb7\\x5b\\x95\\x4c\\xce\\x22\\\n\\x7d\\xec\\x51\\xea\\x2c\\x0f\\xf1\\x08\\x51\\xa8\\xbd\\xab\\x96\\x27\\x31\\x2c\\\n\\x47\\x11\\x49\\xf6\\xb7\\xf2\\xb4\\x34\\x65\\xbb\\x03\\xd2\\xd1\\xb5\\x75\\x9a\\\n\\xba\\xd1\\x5c\\xba\\x2e\\x36\\x15\\x27\\x31\\x1a\\xae\\xd5\\x1b\\xd1\\x37\\x97\\\n\\x11\\x69\\x49\\x70\\x50\\xd4\\x2b\\x37\\xfc\\x6f\\xf3\\x85\\x4e\\x3d\\x20\\xac\\\n\\xa9\\xa9\\x48\\xf5\\xf7\\x87\\x31\\x79\\xaa\\x59\\xc3\\x43\\x5d\\x6a\\x23\\x10\\\n\\x9b\\x76\\x65\\xb2\\x85\\x28\\xd0\\x82\\x0a\\xc7\\x02\\x7f\\x4d\\x63\\x0d\\x4b\\\n\\x4c\\xb6\\xe3\\x25\\xd2\\x95\\x1a\\x1c\\xd4\\x3c\\x3f\\x81\\xe7\\x12\\x13\\x21\\\n\\x0e\\xee\\x55\\xe5\\x57\\x8d\\x47\\xcd\\x51\\x33\\x20\\xb5\\xa1\\xa9\\xa7\\x56\\\n\\x32\\x94\\xa5\\x59\\x33\\x83\\x96\\xa2\\xb4\\xa0\\x3c\\x34\\x8c\\x30\\x30\\xeb\\\n\\x43\\x33\\x41\\x3b\\x31\\x44\\x1f\\xcd\\x58\\x2f\\x4c\\x30\\xa7\\x90\\x86\\x6c\\\n\\xe0\\xca\\x83\\x98\\x6a\\x7c\\x60\\xcc\\xce\\xa1\\x1b\\xc9\\xa7\\x88\\xfd\\x62\\\n\\x6d\\xf5\\x2e\\x65\\x5b\\x65\\x91\\x9d\\x56\\x4d\\xfa\\x40\\x5b\\x52\\xad\\x12\\\n\\x1b\\x0b\\x5a\\xc5\\x23\\x6e\\x5d\\xcc\\x9f\\x66\\x48\\xcc\\x08\\xad\\x85\\x09\\\n\\x89\\x09\\x76\\x34\\xdd\\xda\\x27\\x51\\x4f\\xbc\\x4a\\x99\\x7c\\x8a\\x4b\\xe4\\\n\\x00\\x6a\\x13\\x5d\\x6d\\x68\\x9a\\x69\\xa4\\xce\\x6c\\xd0\\x46\\xb9\\xc7\\x2a\\\n\\x73\\x89\\x25\\x84\\x3e\\x0a\\x8e\\xee\\x95\\xb4\\x3e\\x1b\\x4f\\xf6\\xcd\\x6d\\\n\\xdd\\x1b\\x27\\x1c\\x5e\\x65\\xa4\\x6c\\xb8\\x1c\\xc9\\xf7\\xb9\\x73\\xe5\\x13\\\n\\x80\\x21\\x09\\x2a\\x5e\\xc9\\x41\\x68\\xc8\\x40\\xad\\x05\\x7a\\x69\\xdd\\x0f\\\n\\x49\\x4e\\xcd\\x6c\\xd6\\xcc\\xc2\\x8a\\x00\\xfc\\xd4\\x87\\x98\\x7e\\x4d\\x9d\\\n\\x94\\xbb\\xaa\\x72\\x65\\x77\\xcb\\x7e\\x3a\\xdf\\x4f\\x9c\\x37\\x25\\x34\\x02\\\n\\x76\\xe9\\x51\\x75\\x63\\x31\\x1a\\xd2\\xfc\\x48\\x34\\x86\\x52\\xe3\\x4b\\xcc\\\n\\x11\\x5c\\x95\\x2a\\x27\\x41\\xe3\\xa7\\x99\\x8d\\xac\\x8b\\xd3\\x2a\\x25\\xf4\\\n\\x87\\x12\\xaa\\xa9\\x37\\xa5\\x7e\\x90\\x8c\\x46\\x4e\\x49\\x09\\x53\\x8f\\x24\\\n\\x03\\x61\\x4a\\x9f\\xa5\\x69\\x0d\\xcc\\xae\\x61\\x01\\xd6\\x72\\x2d\\xb5\\x68\\\n\\xac\\xc9\\x1f\\x22\\x6b\\x0a\\x2e\\x71\\x3d\\xf1\\xda\\x69\\x5f\\x68\\x43\\x6b\\\n\\x51\\xdd\\x0a\\x48\\x36\\xad\\x29\\x53\\x5f\\x0b\\x74\\xae\\xb0\\xfc\\x9a\\x8c\\\n\\x82\\x12\\x91\\x55\\x00\\x14\\x39\\xee\\x9a\\xf1\\xf2\\xaf\\xed\\x18\\x63\\xf4\\\n\\x9a\\x53\\x6b\\x57\\x0a\\xa8\\x92\\x3d\\xea\\x9e\\x1c\\x32\\xa6\\x89\\x57\\x0a\\\n\\xa6\\x30\\xf6\\xca\\x45\\x4b\\x75\\x1a\\xe9\\x63\\x5d\\x3e\\xbe\\xb8\\xbf\\x35\\\n\\x2c\\x86\\x54\\x95\\xa0\\x20\\x95\\x54\\x77\\x73\\xf3\\x89\\xe4\\x87\\x64\\xf3\\\n\\xb2\\x37\\xc2\\x6a\\x9f\\x5c\\x63\\x05\\x92\\xa1\\x0e\\x4c\\x6f\\x13\\x7b\\xd2\\\n\\xb7\\xbe\\xbf\\x6e\\x91\\x89\\x31\\x28\\xf2\\x32\\x00\\x2b\\xa4\\x3b\\x24\\xc4\\\n\\xa9\\x0e\\x53\\x5c\\xc4\\x1e\\xa2\\x9e\\xa9\\x12\\x53\\x0c\\x4c\\x22\\xa7\\xdd\\\n\\x46\\xb5\\xe9\\x5a\\xc6\\x3f\\xb1\\x79\\xc4\\x89\\x70\\x01\\xcf\\x51\\x51\\xf9\\\n\\x4f\\xde\\x25\\x65\\x9d\\x5b\\x41\\x4a\\x55\\x0a\\x8e\\x6b\\x0d\\x28\\xa2\\x53\\\n\\x7f\\x5c\\xa3\\x0a\\x19\\xd2\\xa4\\x3b\\xc1\\xbd\\x3a\\xd6\\x94\\xf5\\xac\\x21\\\n\\x2c\\x4b\\xd4\\xfc\\x54\\x34\\xd2\\xe6\\x9f\\xac\\x3c\\x89\\xe9\\x99\\xc7\\x14\\\n\\x94\\x50\\x7f\\xc6\\xfe\\xbc\\x22\\x6f\\x02\\x98\\x74\\xfb\\x42\\xc2\\x92\\xe5\\\n\\x48\\x1d\\xdf\\x4b\\x8e\\x91\\x87\\x4a\\x3d\\x2e\\xca\\x42\\xc9\\x20\\x50\\x5f\\\n\\x5e\\x70\\x9d\\x93\\xa8\\x08\\x5d\\xe2\\x7a\\x41\\xb9\\x4f\\xed\\x8c\\xb5\\xbf\\\n\\x9c\\x60\\xb9\\xb7\\x94\\xaa\\xda\\xc0\\xf4\\x8a\\x95\\x29\\xd5\\x0d\\x41\\x84\\\n\\x4e\\x2c\\x6e\\x12\\x7e\\x70\\xee\\x3c\\xe4\\xb6\\xe8\\x6e\\xf7\\x15\\xe7\\xeb\\\n\\x8c\\x3f\\x8d\\xcd\\xbb\\x74\\xd5\\x23\\x8d\\x2c\\x3d\\x53\\x94\\x39\\x89\\x15\\\n\\x2c\\xa5\\xe7\\x08\\x49\\x3b\\xc7\\xa4\\x4a\\x31\\x86\\xcc\\x53\\x3a\\xc2\\xab\\\n\\xcc\\xc3\\xa9\\x96\\x65\\x3b\\x36\\x29\\x6b\\x27\\xba\\x25\\xe5\\xe6\\x0b\\xa1\\\n\\x55\\x34\\x26\\xde\\xbd\\x71\\x89\\x54\\xec\\x92\\x95\\x28\\x56\\x97\\xf2\\x89\\\n\\x9c\\x4d\\x25\\xb2\\xd8\\x68\\x72\\x89\\x59\\x59\\x6c\\x41\\x61\\x99\\xb7\\xfd\\\n\\x9d\\x94\\x1a\\xa5\\x35\\xca\\x2e\\x73\\x1b\\x75\\x89\\x97\\xe5\\xa5\\x58\\x4c\\\n\\x8c\\x82\\x01\\xd9\\x9c\\xc6\\x60\\x01\\x55\\xa4\\x0a\\x65\\x2a\\x1f\\x48\\xc3\\\n\\xdc\\x51\\x56\\xf6\\xb0\\xda\\x88\\x46\\xfe\\x91\\x3b\\x34\\xa1\\x56\\xdb\\x45\\\n\\x74\\x35\\xa7\\x38\\x4a\\x67\\x0a\\x6c\\xde\\xa4\\x5e\\x91\\x8c\\xbe\\xb9\\x46\\\n\\xb3\\x3a\\xdf\\x5b\\xd8\\x79\\xc2\\xb1\\x85\\x07\\x32\\xcd\\xa3\\x66\\xd9\\x3e\\\n\\xf6\\x96\\x26\\xc7\\xba\\x9e\\x11\\x88\\xcf\\xa0\\xad\\x94\\xe1\\xf4\\x79\\xb5\\\n\\x20\\x97\\x54\\x0d\\x68\\xbc\\xda\\x7f\\xe3\\x78\\xc3\\x30\\xd9\\xd9\\xdf\\xee\\\n\\x36\\x52\\x95\\xea\\xae\\x95\\xa8\\xe4\\x3a\\x53\\xe6\\x4c\\x49\\xe0\\x52\\x4d\\\n\\xcb\\x8b\\x8d\\xad\\x35\\xe3\\x0f\\x61\\xad\\x09\\x7d\\xd9\\x82\\xa5\\x03\\xee\\\n\\x57\\x4b\\xe9\\xe1\\xd2\\x30\\xd4\\x2d\\x0c\\xa4\\x11\\x4e\\x5d\\x62\\x62\\xa1\\\n\\x60\\xf5\\x10\\xf3\\x5f\\xed\\xca\\xfa\\x57\\xd5\\xa1\\xc9\\x62\\xec\\xd2\\x55\\\n\\xfe\\x51\\x34\\x8a\\x38\\x11\\x06\\x52\\x94\\xa0\\xb9\\xd3\\xc6\\x24\\x9b\\x53\\\n\\x0f\\x39\\x9e\\x1d\\x98\\x42\\xa7\\x02\\x36\\xb4\\xaa\\x85\\x81\\x87\\xf0\\xb6\\\n\\x6a\\x89\\x9d\\xa5\\xd4\\x9c\\xba\\xf3\\xbc\\x22\\x45\\xa1\\x7d\\xaf\\x5d\\x62\\\n\\x6d\\xe1\\x4a\\x26\\x25\\x83\\xce\\x25\\xcb\\x9a\\x20\\x15\\x44\\x8b\\x69\\xc4\\\n\\x43\\xa1\\xe3\\xfd\\xb5\\x8a\\xf8\\x75\\x80\\xfc\\x8c\\x9a\\x36\\x65\\x62\\xd1\\\n\\xff\\x00\\xb9\\x64\\x98\\x9c\\x56\\xde\\x86\\x85\\x41\\x35\\xe4\\x0d\\xb5\\x86\\\n\\xbb\\x58\\x99\\x93\\x30\\x99\\x56\\xc3\\x8a\\x0b\\xca\\x0f\\x2b\\x69\\x07\\x10\\\n\\x9d\\x56\\x19\\x89\\x07\\x9a\\xd9\\x92\\xdd\\x97\\x4a\\x11\\xbe\\x2e\\x0f\\xca\\\n\\x12\\xa9\\xcf\\x69\\x7d\\xc4\\xbe\\xaa\\x57\\x40\\x7a\\x98\\x92\\x98\\x99\\x5b\\\n\\x6e\\x7b\\x4b\\xa5\\x49\\x0a\\x39\\x6a\\x79\\x69\\x12\\xb8\\x94\\xca\\x19\\x4a\\\n\\x5b\\x7c\\xe5\\x15\\xa5\\xcc\\x7e\\x1b\\x6d\\x17\\x1c\\x5d\\x14\\x05\\x93\\x5e\\\n\\x90\\xcb\\xad\\xcf\\xba\\x6a\\xda\\x14\\xd8\\x39\\x29\\x96\\xa9\\xa8\\xa5\\x4d\\\n\\x0d\\xb8\\xc3\\xb8\\x43\\x45\\x01\\x60\\x20\\x01\\xc0\\x25\\x20\\x72\\xd3\\xd7\\\n\\xeb\\x33\\xd9\\xd9\\x35\\xa2\\xad\\xa1\\xa4\\x2c\\xfc\\x69\\x42\\x52\\xab\\x9e\\\n\\x60\\x56\\x26\\x9e\\xc4\\x30\\xf4\\x86\\x5a\\x46\\x6a\\xd1\\x29\\x56\\xb4\\x03\\\n\\x88\\xef\\x8c\\x3e\\x55\\x13\\x27\\x3e\\x20\\xa5\\x05\\xa9\\x49\\x2d\\x24\\xa8\\\n\\x90\\x40\\xd6\\xdc\\x28\\x74\\x1e\\x30\\x8e\\xcf\\xa2\\x62\\x54\\x86\\x08\\xa6\\\n\\x51\\x4d\\x38\\x42\\xf0\\x99\\xa6\\xc6\\xc5\\x28\\x16\\xb6\\x60\\x2f\\xe7\\x13\\\n\\x12\\xf3\\x78\\x64\\xd6\\x79\\x84\\xa9\\xc6\\x89\\xe3\\x55\\x0e\\x7c\\x78\\x1f\\\n\\xaf\\x43\\x1d\\xa7\\xc6\\x43\\xee\\xa0\\x48\\x66\\xd9\\xb0\\x14\\x67\\x46\\xf2\\\n\\x00\\x07\\x26\\x40\\x8d\\x00\\x39\\x76\\x95\\xe2\\x69\\x6a\\xc7\\x65\\x67\\x7d\\\n\\xa1\\x2b\\x69\\xe5\\x5a\\xa9\\xca\\x48\\xb9\\x26\\xbb\\xab\\x22\\xc7\\x97\\x50\\\n\\x6f\\x58\\x7b\\x07\\x4b\\xcf\\x6d\\x38\\x05\\x66\\xf1\\xd0\\xf4\\xd2\\x25\\xf0\\\n\\xe6\\x83\\x29\\x48\\x4a\\x77\\x7a\\x0a\\xc3\\xa1\\x32\\x9e\\xee\\xa6\\xc7\\xed\\\n\\x0d\\x34\\xd3\\xf2\\x69\\x59\\x4a\\x6b\\x62\\x4d\\x05\\x7a\\xd6\\xd0\\xe2\\xa5\\\n\\x51\\x55\\x27\\x74\\xf3\\x16\\xf5\\xdf\\x04\\x21\\xca\\xaa\\xb9\\x93\\xd4\\xf2\\\n\\xd6\\x09\\x6c\\x0a\\x0c\\xbd\\xd0\\xaf\\xc1\\xdf\\x3a\\x43\\x61\\xfc\\x40\\x97\\\n\\x14\\xa5\\x00\\x82\\x77\\x49\\x26\\xbf\\x3f\\x2f\\xd2\\x25\\xa6\\x1e\\xcd\\xb2\\\n\\x6d\\x36\\x06\\x84\\x8e\\x30\\x96\\xde\\x27\\x7f\\xf0\\xd0\\x6b\\x99\\x42\\xdd\\\n\\xda\\x75\\x8d\\x93\\x68\\x35\\x2b\\x59\\xf1\\x3f\\xae\\x91\\x33\\x87\\x87\\x86\\\n\\x60\\xe1\\xa6\\xb6\\x51\\xe3\\x7b\\xde\\x11\\x83\\x67\\x69\\x6e\\x6d\\x94\\x36\\\n\\x54\\x19\\x73\\x1a\\x1a\\x8a\\xd4\\xde\\xa7\\x48\\x9d\\xc2\\x0b\\xa9\\x53\\x9b\\\n\\x42\\x80\\xd0\\xad\\x13\\x60\\xab\\xf1\\x10\\xf3\\x4b\\x61\\xc6\\x32\\x3a\\xa0\\\n\\x2b\\x52\\x13\\x4d\\xe1\\x6b\\x18\\x91\\x6b\\x6a\\xba\\x95\\x56\\xbf\\x09\\x3e\\\n\\xbd\\x77\\xc3\\x0c\\x25\\xb4\\x38\\x54\\x7e\\x11\\x96\\xfa\\x6b\\x0d\\xcd\\x4f\\\n\\x24\\x2f\\x66\\xca\\x5c\\x48\\x07\\xde\\x19\\x8d\\x3c\\x46\\x91\\x85\\x48\\x97\\\n\\x5d\\x54\\xde\\x20\\xe1\\x6d\\x0b\\xa9\\x08\\x27\\x77\\xc0\\x69\\x0c\\xa3\\x0e\\\n\\x69\\x05\\x62\\x4d\\x13\\x09\\xbe\\x55\\xa9\\x49\\x35\\xd7\\x81\\x3e\\x11\\x3b\\\n\\x9e\\x75\\xe5\\x35\\x2b\\x2c\\x65\\x40\\xbd\\x52\\xbb\\x11\\x5a\\x65\\xa0\\x3d\\\n\\x7e\\x51\\x86\\x48\\xce\\x4a\\xef\\xb8\\x33\\x8a\\x57\\x7a\\xfa\\x5e\\x1c\\xc5\\\n\\x52\\xe2\\x72\\x84\\x50\\xf7\\x53\\xed\\x12\\xcb\\x59\\x59\\x25\\x04\\x8a\\xf1\\\n\\x15\\xf5\\xc6\\x3d\\xa9\\xe4\\xee\\xb2\\xca\\x4a\\xcf\\x02\\x91\\x4e\\xa4\\x56\\\n\\x3b\\x4e\\xe3\\xec\\xcd\\x66\\x99\\x19\\xd0\\x6f\\xb2\\x3b\\xc8\\xff\\x00\\xc3\\\n\\xdd\\xf9\\x42\\xfb\\x3d\\x88\\x76\\xa1\\x83\\xb6\\x47\\xb3\\x84\\x2b\\x30\\x0d\\\n\\x9c\\x8a\\x52\\x12\\x6d\\x5c\\xb4\\xd4\\x01\\x1d\\x9e\\xc1\\x25\\x25\\x1d\\x44\\\n\\xbb\\xad\\x35\\xf8\\x43\\x66\\x73\\xa1\\x24\\xa9\\x43\\xe2\\x35\\x06\\xa7\\xad\\\n\\xcc\\x2a\\x48\\x4a\\x3a\\x72\\xee\\xa5\\x57\\x09\\x16\\x03\\xb8\\x69\\xeb\\xcd\\\n\\x8c\\x8b\\x40\\xa0\\x4d\\x79\\xd2\\x27\\x1b\\x0d\\x24\\x94\\xa4\\x71\\x26\\x9c\\\n\\x4f\\xef\\x08\\xc6\\xdc\\x97\\x70\\x34\\x42\\x8e\\x6d\\x35\\x21\\x3c\\xe9\\xcb\\\n\\xe5\\x0c\\x39\\xed\\x2d\\x17\\x15\\xc0\\x57\\xbb\\x9c\\x4e\\xbe\\xd2\\x25\\x1b\\\n\\x48\\x4a\\x74\\x1c\\x2e\\x4d\\xb5\\x85\\xad\\xbd\\xa1\\xd1\\x3c\\x8e\\x94\\x83\\\n\\x26\\x97\\x6a\\xbd\\xa5\\x49\\xeb\\xa7\\xef\\xce\\x1c\\x91\\x78\\x9d\\xd7\\x17\\\n\\xd2\\x8a\\x3c\\xe1\\x89\\x1a\\x8c\\x8e\\x28\\xe6\\x3c\\x54\\x6a\\x7c\\xe2\\x77\\\n\\x06\\x96\\x61\\xa0\\xbb\\x17\\x81\\x24\\x9a\\x0c\\xc3\\x95\\xf5\\xd2\\x0e\\x34\\\n\\xc3\\x2d\\x89\\x77\\x75\\x4a\\xb5\\x37\\xd2\\xbc\\x4f\\x08\\x97\\x9b\\x94\\x98\\\n\\x15\\x0e\\x44\\xf4\\xf2\\x42\\xb7\\x4d\\x3a\\x7d\\xe2\\x6b\\x12\\x75\\x52\\xc5\\\n\\x96\\x16\\xb4\\xa9\\x55\\xa9\\x6d\\x4a\\x4a\\xaf\\x4b\\x55\\x37\\x8e\\xce\\x34\\\n\\xb4\\xc8\\xa8\\x2a\\xb9\\xd6\\x2a\\x54\\x75\\x3d\\x4d\\x6f\\xf3\\x87\\x30\\x27\\\n\\x9e\\x78\\xac\\xad\\x54\\x27\\x42\\x6d\\xe0\\x3f\\x68\\xc4\\x7b\\x20\\xc1\\xab\\\n\\x9b\\x43\\x5f\\xa6\\xb6\\x8c\\x26\\x55\\xac\\x1d\\xf5\\x51\\x29\\x5a\\x54\\x2a\\\n\\x49\\x15\\xde\\xd0\\x78\\xf8\\x44\\xfe\\x20\\xa7\\xa5\\x71\\x16\\x81\\x56\\x57\\\n\\x93\\xba\\x2b\\x61\\x45\\x83\\x6f\\xda\\x16\\x4c\\xaa\\x94\\xa2\\x68\\x0f\\x33\\\n\\x4f\\x5e\\x3a\\xc2\\xf1\\x76\\x93\\xc4\\x11\\x5f\\x76\\x06\\x38\\xaf\\x87\\xdd\\\n\\xe1\\x72\\x3e\\x55\\x8e\\xd1\\xcb\\xe2\\x9b\\x64\\xe4\\x19\\x1a\\xae\\xf6\\x55\\\n\\x13\\x6a\\xf2\\x8c\\x22\\x66\\x5e\\x5d\\x1b\\x1a\\xe6\\x71\\x4a\\x2a\\x51\\xa5\\\n\\x08\\xa8\\x02\\x9f\\x2a\\xf9\\xc2\\xde\\x71\\x68\\xca\\xde\\x63\\x6a\\xf9\\x5e\\\n\\x0b\\xd8\\x93\\xaf\\x6c\\xd9\\x6b\\x37\\x8a\\x87\\xd0\\x53\\xc6\\x11\\x2c\\xa7\\\n\\x9c\\x43\\x4e\\x24\\x12\\x12\\x9a\\xab\\xf2\\xaa\\x97\\x1e\\x76\\x80\\x96\\x18\\\n\\x71\\x6d\\xcd\\x30\\x14\\x42\\x86\\xc9\\xd1\\x62\\x11\\xc6\\xdd\\xf7\\xd6\\x19\\\n\\x9c\\x97\\x69\\x95\\x16\\xe7\\x1e\\x45\\x05\\x76\\x61\\xb0\\x49\\xee\\xde\\x10\\\n\\x8c\\x5d\\xd7\\xce\\xcf\\xd9\\xde\\x09\\xff\\x00\\xe7\\xcb\\xbd\\xe5\\xa7\\xce\\\n\\x19\\x97\\x97\\x98\\x00\\x4f\\x34\\x14\\x82\\x8b\\x29\\x62\\x87\\x4d\\x48\\xfb\\\n\\x47\\x6a\\x24\\x98\\x95\\x9f\\x9b\\xfe\\x9f\\x2a\\x8d\\x92\\xff\\x00\\xbc\\x78\\\n\\x28\\x0c\\xc9\\x4f\\x02\\x01\\xaa\\xf7\\x79\\xaa\\x94\\xe1\\x18\\x44\\xb8\\x9c\\\n\\x6f\\xf0\\x5a\\x43\\x1b\\x35\\x05\\x55\\xa3\\x52\\x48\\xd6\\xbb\\xa9\\xa0\\x89\\\n\\x76\\xdd\\x48\\x0d\\xac\\xd3\\x81\\x5f\\xed\\x0e\\x4d\\x33\\x26\\xe2\\x9a\\x2e\\\n\\x15\\xa8\\x5b\\x4e\\x95\\xb6\\xbc\\xe1\\x08\\xf6\\xe5\\xac\\x0c\\xd4\\xcb\\x5a\\\n\\x11\\xee\\x8a\\xd8\\xf9\\xfe\\xb0\\xc3\\x5b\\x36\\x03\\x2a\\x51\\x1f\\x73\\xc0\\\n\\x78\\xf9\\xc3\\xac\\x84\\x9f\\xc6\\x69\\x28\\x1c\\x48\\x55\\x7e\\xd1\\x39\\xb3\\\n\\x65\\x24\\xb2\\xe2\\xb6\\x74\\xe2\\x9d\\x0f\\x1f\\x9c\\x4a\\xe6\\x79\\xe4\\xec\\\n\\xd4\\x54\\x49\\xb2\\x34\\xf1\\x89\\xe6\\x1e\\x70\\x25\\x84\\xa3\\xf1\\xe9\\x66\\\n\\xef\\x7e\\x5e\\xbb\\xe1\\x0c\\xe5\\x6e\\x88\\x46\\x43\\xa2\\x86\\xb5\\x3c\\x7e\\\n\\x70\\xf9\\x54\\xab\\x81\\xe0\\x48\\xa1\\xa1\\x46\\x5b\\x1f\\xf2\\xaf\\x38\\x46\\\n\\x30\\xdb\\xce\\x34\\xc2\\xea\\x12\\xb1\\x75\\x70\\xb0\\xa8\\xbe\\x86\\xb4\\xf0\\\n\\xd6\\x03\\xad\\x1b\\x16\\x93\\x4f\\xcf\\x9b\\xd5\\x35\\x85\\xcd\\xa5\\xa5\\x2f\\\n\\xf1\\x08\\x15\\x55\\x36\\x94\\x4a\\x40\\xad\\xa8\\xaa\\xe9\\xca\\x26\\xbb\\x42\\\n\\xc4\\x83\\x88\\xf6\\x99\\xa4\\x25\\xb7\\x2b\\x66\\x55\\xb4\\x1f\\xf7\\xe9\\x4b\\\n\\x56\\x80\\x56\\xb1\\x89\\x76\\xbe\\x51\\xf5\\x06\\xa4\\xd6\\xa7\\x12\\xbb\\x2d\\\n\\x60\\x1f\\x2d\\x38\\x68\\x7a\\xe8\\x4f\\x19\\x49\\xc6\\xe7\\x4a\\x1c\\x56\\xd4\\\n\\x52\\xe0\\x01\\x52\\x49\\xe1\\xd3\\xf7\\x89\\x6c\\x5d\\xb9\\x77\\xc8\\xdf\\x34\\\n\\x51\\x14\\x23\\xdd\\xa7\\x74\\x1e\\xd1\\xb7\\xb3\\xa6\\xce\\xa5\\x5d\\xe3\\x2f\\\n\\x51\\x4a\\xd6\\x25\\xb1\\xb0\\x09\\x48\\x78\\xa3\\x39\\xc9\\x94\\xa7\\x5c\\xde\\\n\\x3a\\x5e\\x27\\x71\\x09\\xa7\\x90\\x84\\x0b\\x65\\xe0\\x95\\x6b\\x4d\\x2b\\xdf\\\n\\x12\\x0b\\x76\\x7d\\x41\\xb7\\x14\\xec\\xba\\x45\\xb7\\x1e\\x51\\x1d\\x4d\\x2c\\\n\\x2f\\x02\\x45\\xb9\\x34\\x6d\\x58\\x7d\\xc5\\x3b\\xc7\\x39\\x24\\x2b\\x8d\\x35\\\n\\x3d\\x23\\xfa\\xd4\\xda\\x19\\x1b\\x59\\x74\\x25\\x3a\\x66\\x0b\\x37\\x1a\\x71\\\n\\x11\\x28\\x65\\x26\\x48\\x55\\x92\\x7f\\x28\\x87\\x5e\\x97\\x95\\x6c\\xe5\\x42\\\n\\x54\\xa1\\xf0\\xfe\\xf4\\x31\\x31\\x8c\\x38\\x09\\x5e\\xcf\\xd9\\xc0\\x3e\\xfa\\\n\\x6f\\xe1\\x43\\xcf\\x8c\\x4e\\x4e\\xb7\\x35\\x31\\xb4\\x79\\x25\\xf0\\x38\\x28\\\n\\x46\\x00\\xe6\\x2b\\x37\\x39\\xed\\x2d\\xb0\\x1b\\xc3\\x52\\x72\\xa8\\xd4\\x85\\\n\\x5a\\xde\\xe5\\x23\\xb4\\x4c\\x16\\xf2\\xcf\\xc8\\x15\\x17\\x5b\\x50\\x06\\x5e\\\n\\x94\\x0b\\x00\\xdd\\xc5\\x28\\x5c\\x1e\\x14\\x03\\x84\\x22\\x74\\x62\\x12\\x72\\\n\\xee\\x92\\x50\\xeb\\x49\\xfc\\x66\\xd3\\xbd\\x94\\xd0\\x8a\\x57\\x5d\\x7a\\x7d\\\n\\x23\\x0f\\x52\\xea\\x6a\\x2f\\x5d\\xd0\\x6c\\x4e\\xb1\\x37\\x32\\x04\\xb3\\xee\\\n\\xb8\\x9a\\x16\\xd4\\x46\\x5e\\x06\\x96\\xad\\x75\\x86\\x19\\x97\\x9a\\x68\\x4c\\\n\\xa5\\x3b\\xdf\\x12\\x72\\x8d\\xde\\x80\\xf5\\x86\\xa6\\x42\\x0e\\xc8\\x0c\\xa0\\\n\\x9a\\x56\\x1e\\x5b\\xb3\\x19\\x1b\\x09\\xdd\\x4d\\x2f\\x5a\\xd7\\xbe\\xb1\\x3f\\\n\\x86\\x4e\\x29\\x29\\x54\\xbd\\x4d\\x75\\xe1\\xf4\\x89\\x79\\x37\\x1b\\x6c\\x6d\\\n\\x66\\x54\\x97\\x7f\\x26\\x51\\xaf\\x2a\\xd7\\x94\\x48\\x30\\xad\\x5f\\x39\\x42\\\n\\x6e\\x3a\\xc7\\xb2\\xbd\\x30\\xfa\\xd4\\x93\\xb3\\x42\\x2e\\x08\\xbd\\x61\\x49\\\n\\x4b\\x80\\x85\\xd5\\xd7\\x2e\\x0a\\x7b\\xb8\\xc6\\x33\\x87\\xc9\\x3a\\x10\\x92\\\n\\x0b\\x2e\\x97\\x45\\x68\\x2b\\xc1\\x50\\x89\\x46\\xa4\\xa8\\x86\\xd4\\xa7\\x6a\\\n\\x35\\x22\\x9f\\x21\\x1f\\xd1\\x26\\xa7\\x92\\x16\\x14\\x52\\x49\\xa5\\x3e\\xf0\\\n\\xae\\xcf\\x3d\\x87\\xec\\xb6\\x87\\x3a\\x9c\\x21\\x44\\x1b\\x50\\x1f\\x54\\x86\\\n\\xa9\\x29\\x31\\x2d\\x2f\\x9c\\x64\\x75\\x27\\x32\\xf4\\xca\\x47\\x0a\\x71\\xaf\\\n\\x18\\x9f\\x58\\x97\\x6d\\x1b\\x25\\x87\\x33\\x0e\\xef\\xa5\\x61\\xcc\\x41\\xe2\\\n\\xa5\\xb6\\xb6\\xd3\\xaa\\xaf\\x9c\\xfe\\x9e\\xbe\\x71\\x37\\x8c\\x21\\x1b\\x56\\\n\\x94\\xd2\\x02\\x8b\\x9b\\xa7\\x39\\xad\\x29\\xdd\\x13\\x33\\x54\\x68\\x65\\x6d\\\n\\x1b\\xe2\\xe7\\x31\\xb7\\x90\\xf0\\x8c\\x42\\x55\\x53\\xcd\\x94\\x85\\x64\\x3a\\\n\\x6e\\x51\\x44\\xf4\\xde\\xa7\\xda\\x1d\\xec\\xa3\\x8d\\xe4\\x73\\x6e\\xac\\xc6\\\n\\xea\\xa8\\x07\\x31\\xea\\x2a\\x7b\\xcd\\xcc\\x27\\x00\\x52\\x92\\x9f\\xc2\\x1a\\\n\\x73\\xea\\x75\\xeb\\xc6\\x31\\x39\\x49\\xb9\\x61\\x95\\x4a\\xf6\\x80\\x78\\x81\\\n\\x58\\x94\\x93\\xd9\\x4c\\x25\\x6f\\xcb\\xa9\\xba\\xef\\x6f\\x0f\\x87\\x98\\xd6\\\n\\x30\\xdc\\x3d\\xa9\\xb6\\x02\\xd9\\x64\\xad\\x34\\x00\\xac\\x01\\x44\\xd7\\x9c\\\n\\x4f\\xcb\\xc9\\x61\\x29\\xdb\\x32\\x50\\xe3\\xda\\x96\\xc7\\xbd\\xe5\\xe5\\x12\\\n\\x78\\x7c\\xc1\\x69\\x73\\x4b\\xab\\x6b\\x71\\x45\\xc0\\x93\\xae\\x55\\xab\\x37\\\n\\xd0\\xfa\\xd2\\x11\\x2b\\x2c\\xe4\\xb9\\xce\\x90\\xf3\\xc6\\xd4\\x14\\xcc\\x0d\\\n\\x34\\x3d\\x61\\x72\\x42\\x5b\\xf1\\x1c\\x97\\xf6\\x70\\x2e\\x85\\xba\\x00\\x47\\\n\\x8e\\xba\\xf7\\x6a\\x61\\x9c\\x7a\\x69\\xa7\\x84\\xba\\x19\\x60\\xa7\\x40\\xa0\\\n\\x90\\x6b\\x0e\\x4d\\xa6\\x66\\x59\\xfd\\xb2\\x90\\xd3\\xe2\\xa0\\x23\\x4a\\x9e\\\n\\x90\\xee\\x1d\\x31\\x37\\xed\\x08\\x71\\x2a\\x46\\xd3\\x45\\xab\\x8e\\xb7\\x4f\\\n\\x75\\x63\\x0a\\xc0\\x17\\x86\\x9c\\x88\\x73\\x30\\x70\\xef\\x1e\\xf3\\x72\\x63\\\n\\xfa\\x48\\x70\\x5a\\x60\\x67\\xd3\\xad\\xe1\\xcc\\x31\\xf1\\x3e\\xe3\\x3b\\x07\\\n\\x1d\\xcb\\x43\\x9c\\x0a\\xe6\\x14\\xd4\\x5f\\x86\\x9a\\x70\\x89\\x29\\x34\\x34\\\n\\x95\\x3a\\x19\\x29\\x09\\xdd\\x71\\x5c\\x13\\x4e\\x07\\xbb\\x8c\\x62\\x2d\\x12\\\n\\xce\\xda\\x5e\\xe2\\x86\\x85\\x3a\\x54\\x0b\\x7c\\xe2\\x5d\\xe9\\x95\\x92\\xdb\\\n\\xe9\\x2e\\x2f\\xf2\\xea\\x7e\\x71\\x3a\\x12\\xea\\x92\\xc5\\xd9\\x7d\\x5a\\x32\\\n\\x68\\x16\\x52\\x38\\x81\\xa4\\x4a\\x61\\xff\\x00\\xd3\\x65\\xd3\\x3a\\xe7\\xf7\\\n\\x29\\xf8\\x69\\xfc\\xe7\\xfc\\x7d\\x08\\x44\\xc9\\x5b\\x67\\x14\\xcb\\xfe\\xed\\\n\\x1e\\xec\\xb7\\xc6\\xa1\\xcc\\x26\\xd1\\x23\\x9d\\xda\\x95\\xa0\\x8c\\xd7\\xa1\\\n\\x1c\\xef\\x4f\\x3a\\xc6\\x30\\xda\\x51\\x2e\\x06\\xc3\\x31\\x26\\xb6\\x00\\xc2\\\n\\x65\\x25\\xde\\x43\\x7f\\xf4\\x9c\\x00\\x94\\x9e\\xeb\\x90\\x47\\x1f\\xde\\x1e\\\n\\x7b\\x10\\x2f\\x16\\x1b\\x97\\x75\\x4d\\x0b\\x66\\x1a\\x44\\xde\\x1d\\x8a\\xcd\\\n\\x21\\x49\\x99\\x70\\x6c\\x80\\x19\\x52\\x8d\\xc5\\x24\\x26\\xe9\\xaa\\x86\\xf0\\\n\\x50\\xb5\\x4f\\x3e\\x10\\xff\\x00\\x67\\x98\\x68\\xa8\\x10\\xf3\\xc1\\xd3\\x57\\\n\\x0a\\xf3\\xb8\\x1b\\x50\\xae\\x54\\x85\\x28\\x93\\xbd\\x52\\x79\\x1e\\x22\\x25\\\n\\x70\\x79\\x59\\x40\\x97\\x5f\\x95\\x5b\\xa9\\x4a\\x41\\x24\\xa5\\x29\\x46\\xa4\\\n\\x01\\x40\\x07\\x89\\xd6\\x9c\\xc4\\x61\\xae\\x60\\xcd\\xd2\\xb2\\xa8\\x6f\\xfe\\\n\\xc0\\x3c\\xc8\\x17\\xf5\\xc6\\x0b\\xf8\\x42\\xb1\\x19\\x9f\\xc0\\x45\\x02\\xc8\\\n\\x45\\xa9\\x9a\\xb7\\x3f\\x0d\\xfe\\x95\\xd2\\x0c\\x9c\\xab\\xe1\\x34\\x96\\x52\\\n\\x53\\xf0\\x91\\xa2\\xbf\\xe3\\x7b\\xd3\\xac\\x0c\\x25\\xb7\\x16\\x32\\xa0\\x85\\\n\\x26\\xf5\\xb5\\x47\\x5d\\x74\\xaf\\xae\\x30\\xfc\\x90\\x68\\xe5\\x33\\xa9\\x0a\\\n\\xae\\x84\\xde\\x25\\x1e\\x12\\x61\\xb4\\x67\\x0a\\x57\\xc2\\xaf\\xcc\\x2b\\xe7\\\n\\x0d\\xb8\\xf4\\xda\\x08\\xcc\\x53\\x91\\x1b\\x4f\\x0a\\x81\\x12\\xd2\\x68\\xc4\\\n\\x25\\x43\\x6e\\xcc\\xa1\\x05\\x1c\\xd5\\xca\\xf0\\xa9\\x1f\\x67\\x3f\\xed\\xd5\\\n\\xb5\\x15\\xf8\\x2f\\x08\\x52\\x16\\xaa\\x4c\\xba\\x1a\\x5d\\x3d\\xc5\\xeb\\x4e\\\n\\x06\\x26\\xde\\xc3\\x19\\x07\\x6a\\xeb\\x45\\x1c\\xab\\xc7\\xcb\\xed\\x0c\\x4c\\\n\\x61\\x4e\\xab\\xf0\\xd9\\x4b\\x97\\xb6\\x5b\\xf5\\x8c\\x2d\\xf9\\x89\\x89\\xcf\\\n\\x68\\x66\\x59\\x52\\x92\\x29\\xdd\\x54\\xa9\\x00\\x66\\xa1\\xa6\\x6a\\x0b\\x5e\\\n\\x19\\x95\\xc3\\x5f\\x53\\xaf\\x2d\\x4d\\xa4\\xe5\\x28\\x0c\\x9e\\x16\\xd6\\x9e\\\n\\x30\\xf8\\x67\\x05\\x9d\\x75\\xd6\\xa8\\xfc\\xb2\\x95\\x57\\x69\\x70\\x84\\x93\\\n\\xc7\\xba\\x27\\x27\\x11\\x32\\xec\\xa3\\x92\\xce\\x25\\x96\\x1c\\x46\\x72\\xba\\\n\\xd0\\x65\\x02\\xa4\\xf8\\x46\\x2b\\x8e\\x48\\xa1\\xb0\\xd0\\x75\\xb7\\x11\\x94\\\n\\x55\\xd0\\x6c\\xbb\\x7b\\xdd\\x73\\x6b\\xa4\\x33\\xda\\x84\\xc8\\xa5\\x69\\x6d\\\n\\xb2\\xb6\\x54\\x45\\x57\\xf0\\xa6\\x9a\\x79\\xc4\\xb6\\x37\\x23\\x34\\xca\\x94\\\n\\x54\\x84\\x38\\xa1\\xb9\\x5e\\x67\\x94\\x4b\\xe2\\xb2\\x01\\x92\\x11\\x32\\xd2\\\n\\xdd\\x1a\\xa4\\x1d\\xe8\\x97\\xc6\\x5a\\x09\\x39\\x9f\\x6c\\x13\\x5d\\xd2\\x6e\\\n\\x21\\xd9\\x89\\x65\\x4c\\x07\\x95\\x36\\xde\\xb5\\xc9\\x9a\\x27\\x71\\xa4\\xec\\\n\\x4e\\xc9\\x40\\xe4\\x41\\x35\\x49\\xfc\\xa2\\xb1\\x88\\xf6\\xee\\x66\\x4e\\x59\\\n\\x28\\x97\\x6d\\x4e\\xa9\\x5e\\xfe\\x41\\x52\\x2b\\xc4\\xc6\\x19\\xdb\\x3c\\x80\\\n\\x3e\\xf3\\x7e\\xf6\\xa5\\x5f\\x38\\xfe\\xb9\\x27\\x88\\xcd\\x85\\x66\\x47\\x3a\\\n\\x7d\\x0c\\x4c\\x62\\x28\\x13\\x21\\x21\\xaa\\x8a\\x6b\\x13\\x3d\\xa7\\x18\\x73\\\n\\x7b\\x26\\xe6\\x5b\\x53\\xc9\\xb9\\x6c\\x2b\\x7c\\x7e\\x9c\\xa2\\x5b\\xb4\\xcf\\\n\\xe3\\x12\\xde\\xd0\\xe3\\xa1\\x25\\xb5\\x96\\x45\\x79\\xa2\\x86\\x9d\\xfb\\xd1\\\n\\x3f\\x8b\\xcc\\x87\\x93\\x9a\\x64\\x21\\xc4\\xa8\\x6c\\xd2\\x55\\x72\\x3a\\x43\\\n\\x18\\xdc\\xf3\\xaf\\xb6\\x82\\xf1\\x50\\xb0\\xd6\\x26\\x27\\x66\\x55\\x34\\x46\\\n\\xda\\x80\\xa9\\x42\\xb5\\x3a\\xc4\\xf4\\xac\\xc9\\x7b\\x6a\\x16\\x5c\\xcc\\xa0\\\n\\x40\\x4f\\x2f\\xe6\\x91\\x34\\xe3\\xee\\x30\\x89\\x64\\xa5\\x49\\x2b\\x14\\x52\\\n\\xc7\\xc3\\x4b\\xdf\\xd7\\x18\\x6d\\xa9\\x94\\xdd\\x2f\\x67\\xcb\\xaf\\xa2\\x61\\\n\\x4e\\x4d\\xa8\\xd4\\xab\\x75\\x36\\xcd\\xc3\\xc6\\x19\\xcc\\xb6\\xc2\\xb6\\xa0\\\n\\xc4\\xac\\xab\\x13\\x38\\x7e\\xd1\\xe6\\x92\\xa5\\x0e\\x34\\xe9\\x13\\x12\\xb2\\\n\\xea\\x6d\\x55\\x6d\\x35\\x02\\x80\\xd2\\xe0\\x03\\x18\\x43\\xee\\xb0\\x1e\\x4b\\\n\\x6b\\x21\\x35\\x50\\xa7\\x0b\\x43\\x80\\x3e\\xb3\\xb5\\xde\\xbc\\x4e\\x4c\\xbc\\\n\\xda\\x0a\\x52\\xba\\x04\\xd8\\x77\\x0b\\x0f\\x94\\x19\\xe9\\xa4\\xba\\x28\\xea\\\n\\x85\\x55\\xcc\\xf0\\x8c\\x5e\\x76\\x65\\x6d\\x34\\x95\\x3a\\xa2\\x28\\x2b\\xd7\\\n\\x48\\x97\\x75\\x7e\\xd2\\xd1\\xad\\xec\\x7c\\xe9\\x09\\xdf\\x24\\xaa\\x1c\\x1f\\\n\\x78\\x47\\xbc\\x9e\\xf1\\x0b\\x59\\x42\\xc6\\x5e\\x7f\\x78\\x6d\\x4a\\xf6\\x94\\\n\\xae\\xbb\\xc5\\xb5\\x02\\x7c\\xc4\\x61\\x0f\\xb8\\xb1\\x3a\\x85\\x1a\\xa4\\xbc\\\n\\xab\\x1e\\xf8\\x62\\x5d\\x95\\x4a\\x14\\x14\\x26\\x94\\xae\\x9d\\x2b\\xf7\\x87\\\n\\x92\\x1a\\xc5\\x94\\x94\\x58\\x57\\xf7\\x87\\x12\\x95\\xe3\\x8c\\x15\\x0b\\x86\\\n\\x96\\x07\\x92\\x4c\\x62\\x0a\\x2a\\x95\\x93\\x49\\xf7\\x77\\xbf\\xfc\\x63\\x0a\\\n\\x97\\x69\\x68\\x4e\\x64\\xd6\\x27\\xd0\\x96\\xc6\\xe0\\x08\\xff\\x00\\x8d\\x8c\\\n\\x4e\\x27\\x33\\x44\\x95\\x28\\xef\\x91\\x73\\xc8\\x03\\xf7\\x8c\\xa9\\xf6\\x60\\\n\\x28\\x34\\x17\\xe3\\xe7\\x12\\xcd\\x22\\xb5\\xa5\\xeb\\x13\\x2d\\xa3\\x29\\xb7\\\n\\x0a\\xfc\\xa2\\x70\\x00\\x54\\x05\\x81\\xa2\\xbc\\x61\\x1f\\x89\\x2c\\xd2\\x55\\\n\\x71\\x51\\x6e\\xe2\\x29\\x18\\x54\\x94\\xb3\\xb9\\x73\\xb4\\x93\\xa7\\x0e\\x71\\\n\\x8a\\x61\\x18\\x7a\\x25\\xd0\\xb4\\xcb\\x36\\x14\\x53\\x5c\\xd4\\x15\\xad\\xef\\\n\\x18\\x73\\x0d\\x29\\x79\\x4a\\x6c\\x8b\\x27\\xa4\\x3f\\xf8\\x53\\x0b\\xc9\\x6b\\\n\\x2b\\xef\\x18\\xa4\\xcb\\xa2\\x71\\x02\\xbe\\xf7\\xef\\xa7\\x94\\x29\\xe7\\x36\\\n\\xcc\\x5f\\x5f\\xd6\\x90\\x5e\\x71\\x0d\\xee\\xa8\\x8c\\xc8\\xca\\x7b\\xa3\\x0b\\\n\\x9b\\x98\\xdb\\xa9\\x1b\\x45\\x65\\x11\\x85\\xa8\\xb8\\x8d\\xe3\\x58\\xc4\\x5b\\\n\\x48\\x70\\xae\\x9b\\xd9\\x13\\xf4\\x8c\\x59\\xc5\\x6f\\x8a\\xd8\\x46\\x04\\x6a\\\n\\xba\\xf2\\x3f\\xfe\\x31\\x86\\xcc\\x3a\\x90\\xe5\\x14\\x7d\\xe5\\xfd\\x4c\\x7b\\\n\\x6c\\xc2\\x1c\\x56\\x55\\x9b\\xa6\\xb0\\xa7\\xdc\\x7d\\x53\\x28\\x74\\xe6\\x4a\\\n\\x90\\xe5\\x47\\x70\\x24\\x79\\x44\\x84\\xdb\\xee\\x3a\\x96\\xd4\\xbd\\xc4\\x36\\\n\\xe2\\x12\\x9e\\x00\\x52\\x26\\x10\\x95\\xa4\\x24\\xe8\\x28\\x3c\\xad\\x1e\\xcc\\\n\\xc9\\x94\\x76\\xa9\\xaf\\xba\\x3e\\x46\\x14\\xca\\x1a\\x90\\x5a\\x90\\x32\\x94\\\n\\xb6\\x68\\x47\\x0a\\x08\\xc2\\xe6\\x1e\\x2f\\xbc\\x33\\xab\\xcf\\xfe\\x5f\\xa4\\\n\\x7b\\x64\\xc0\\x79\\xd0\\x1c\\x3b\\xaa\\xa0\\xf2\\xac\\x4c\\xcf\\xcd\\x05\\xd9\\\n\\xd5\\x6b\\xce\\x18\\x9e\\x9a\\x56\\x50\\x5d\\x55\\x15\\xa8\\xa9\\xe2\\x68\\x46\\\n\\xbc\\xa3\\x12\\x6d\\x21\\x84\\xa8\\x0b\\x9c\\xb5\\xf9\\x0f\\xbc\\x4c\\xad\\x4d\\\n\\xb7\\x95\\x36\\x14\\x06\\x9d\\xe0\\x1f\\xa9\\x89\\x79\\x97\\x92\\xaa\\xa5\\x54\\\n\\x35\\x02\\xa3\\xc0\\x43\\xb3\\x73\\x1e\\xd3\\x4d\\xa2\\xbd\\xde\\x67\\xa4\\x62\\\n\\xd8\\xf6\\x29\\xff\\x00\\xbd\\x9b\\x91\\xf6\\x85\\x7b\\x39\\x04\\x94\\xde\\xb6\\\n\\x70\\x0d\\x6b\\xc8\\xde\\x30\\x97\\x16\\xd4\\xa2\\x52\\x85\\x1a\\x29\\xc2\\xb3\\\n\\xff\\x00\\x22\\x05\\x7e\\x91\\x88\\x92\\x66\\x99\\x51\\xd6\\x9f\\x51\\x18\\x69\\\n\\xff\\x00\\x78\\xd7\\xfd\\xbf\\x58\\x9a\\x65\\xb1\\xbd\\x96\\xe7\\x31\\xfa\\xc1\\\n\\xf7\\xc0\\xe5\\x58\\x74\\x6f\\x78\\x57\\xe5\\x0d\\xfb\\x8f\\x74\\xcd\\xf5\\x10\\\n\\xd5\\xdb\\x5d\\x78\\x91\\x5f\\x5e\\x31\\x21\\x23\\x2e\\x65\\x9b\\x25\\x1a\\xf5\\\n\\x8f\\xff\\xc4\\x00\\x4a\\x10\\x00\\x02\\x01\\x02\\x04\\x04\\x03\\x05\\x05\\x05\\\n\\x07\\x02\\x05\\x03\\x04\\x03\\x01\\x02\\x03\\x11\\x12\\x00\\x04\\x21\\x31\\x13\\\n\\x22\\x41\\x51\\x05\\x32\\x61\\x14\\x23\\x42\\x71\\x81\\x52\\x62\\x91\\xa1\\xb1\\\n\\x33\\x72\\xc1\\xd1\\xf0\\x06\\x15\\x24\\x43\\x82\\xe1\\xf1\\x53\\x92\\x10\\x34\\\n\\x63\\x73\\xa2\\x83\\xb2\\xe2\\x25\\x93\\xc2\\xd2\\x16\\x44\\xb3\\xff\\xda\\x00\\\n\\x08\\x01\\x01\\x00\\x06\\x3f\\x02\\xc9\\x36\\x58\\xa6\\x5c\\xc4\\xda\\xdb\\xbd\\\n\\xf7\\x8e\\x63\\xde\\xbd\\x31\\x96\\x96\\x48\\xd3\\xde\\x65\\x96\\xbc\\x45\\xb9\\\n\\xdf\\x97\\xcd\\x43\\x4d\\x0f\\xcf\\x12\\x4d\\xc0\\x49\\x48\\xa9\\x75\\xe6\\xa4\\\n\\x75\\xea\\xab\\xb5\\x7b\\xe3\\xfb\\xbe\\xf8\\x12\\xc9\\x17\\x8e\\xa5\\xf5\\x08\\\n\\x49\\xe9\\xd0\\x77\\xfc\\x30\\xf3\\xe4\\xfc\\x73\\x29\\x90\\xca\\x2b\\x5e\\xa8\\\n\\xed\\x3e\\xa3\\xb0\\x5a\\x01\\x4a\\xed\\xd0\\x63\\x2f\\xec\\x19\\xff\\x00\\x68\\\n\\xcf\\xc7\\x12\\xa4\\xae\\x5b\\xaa\\x8d\\x4d\\x43\\xf9\\x6b\\xb6\\x27\\x93\\xc4\\\n\\xa4\\x39\\x99\\x7f\\xc9\\x8d\\xa6\\xf7\\x09\\xdb\\x42\\x4e\\xbf\\xa0\\xc3\\x47\\\n\\x2f\\x88\\x52\\x23\\xa2\\xc1\\x93\\x55\\xaa\\xaf\\xd9\\xe2\\x52\\x9f\\x91\\xc3\\\n\\xe4\\xbc\\x27\\x21\\x1f\\x12\\x66\\x3c\\x49\\x64\\x2d\\x2e\\x62\\x56\\xdb\\x9b\\\n\\x96\\xad\\x5e\\x83\\x6a\\xe2\\x0c\\xc4\\x39\\x7f\\xee\\xe4\\x8c\\x5c\\x92\\x4a\\\n\\xef\\x10\\xef\\xe4\\x5d\\x4f\\xe5\\xbe\\x2c\\xf1\\x4c\\xbe\\x5f\\xc5\\xd0\\x2d\\\n\\xbc\\x82\\xae\\xbe\\xb4\\x7d\\xf4\\xc3\\xc2\\x23\\x19\\x49\\x9c\\xb3\\x98\\x5d\\\n\\x78\\x47\\xf7\\x75\\xa6\\x3b\\xe9\\xff\\x00\\x68\\xf9\\xed\\x8e\\x1a\\x9d\\xf4\\\n\\xaf\\x6c\\x7c\\xba\\x9d\\xb1\\xc5\\xcc\\xa3\\xf9\\x09\\x5a\\x8b\\x54\\x8a\\x1e\\\n\\xa7\\x5a\\x7a\\x75\\xc4\\xb3\\x4b\\x2b\\x48\\x2e\\x6e\\x1a\\x13\\xc9\\x1a\\x1d\\\n\\x95\\x57\\x60\\x29\\x4c\\x7f\\xfe\\x44\\x72\\x53\\x26\\x57\\x3a\\xed\\xc2\\x9d\\\n\\x75\\x06\\x24\\xa8\\xbe\\x4a\\x1a\\xa2\\x13\\xb3\\xb8\\x0a\\x47\\x5c\\x5c\\x92\\\n\\x3a\\x65\\x0a\\x85\\x20\\x02\\x6e\\x27\\x4b\\x7b\\x53\\xbd\\xda\\x62\\x52\\xca\\\n\\x1e\\x37\\x2d\\x74\\x7f\\x5d\\xd3\\xa2\\x1f\\x96\\x23\\x8e\\x29\\x54\\x9c\\xc3\\\n\\x84\\x11\\xfc\\x69\\x4e\\x79\\x2e\\x1d\\x87\\x2e\\xb8\\x57\\xd2\\xf0\\x3a\\x6f\\\n\\x8b\\x8d\\x74\\xde\\xb8\\x15\\xad\\x08\\x34\\x1d\\x3d\\x71\\x0e\\x53\\x20\\x89\\\n\\xc5\\x95\\x80\\x77\\x76\\xb4\\x2c\\x7f\\x11\\xe8\\x6b\\xf9\\x61\\x1a\\x17\\x8b\\\n\\x89\\x3b\\xb0\\x46\\x90\\xda\\xb1\\x4a\\x05\\x4f\\x11\\xaa\\x47\\x09\\xb6\\x1d\\\n\\x03\\xd4\\xe1\\xa3\\x3a\\xe6\\x2f\\x65\\x96\\xd3\\x72\\xf2\\x33\\x54\\x82\\x37\\\n\\x5b\\xae\\xb7\\x7c\\x79\\x63\\x65\\xed\\x41\\xb7\\xcf\\x0f\\x6c\\x31\\x0a\\xec\\\n\\x7f\\xdb\\x0d\\x24\\x8d\\xb6\\xc8\\x84\\xdb\\x5d\\xa9\\x4f\\xeb\\x5c\\x18\\xb2\\\n\\xf2\\x32\\x2c\\x62\\xf9\\x09\\xbb\\x83\\x19\\x3a\\xd0\\x95\\x6f\\x31\\x1f\\x0e\\\n\\x2c\\x12\\x96\\xb4\\x50\\x93\\xa1\\xaf\\xa5\\x36\\xfd\\x69\\xbe\\xb8\\xbc\\x34\\\n\\xb2\\x0e\\xd7\\xb3\\x7c\\xf1\\x59\\x10\\xd0\\x8f\\x33\\x9f\\xe1\\x5c\\x33\\x21\\\n\\x90\\x97\\xd4\\x82\\xe6\\xca\\xfd\\xd1\\xd2\\x98\\xf7\\x88\\xb4\\xfe\\xbf\\x3c\\\n\\x79\\x2e\\x06\\xb5\\xb7\\x03\\x86\\xa1\\xa9\\x5a\\xd3\\x70\\x4f\\x94\\x7f\\x5e\\\n\\xb8\\x5a\\x32\\x96\\x1b\\xea\\x7e\\x76\\xf5\\xc3\\x3e\\x62\\xd5\\x5b\\xc9\\x15\\\n\\xab\\x2a\\x9e\\xe4\\x69\\x5a\\x74\\xf9\\xe0\\x28\\x72\\xdc\\xbd\\xc8\\xfc\\x07\\\n\\xf3\\xc0\\x08\\x91\\xd4\\xd7\\x52\\x6a\\xda\\x7d\\x35\\xc0\\x0a\\x8a\\x6f\\x66\\\n\\x59\\x68\\x69\\x60\\xa7\\x6d\\xae\\xc4\\x1c\\x1a\\x7b\\xd9\\x15\\x0b\\x95\\xba\\\n\\xd5\\x3d\\x7f\\x78\\x53\\x5e\\xfa\\x63\\x8e\\x92\\xd5\\xaa\\x0b\\x9f\\xb4\\xc7\\\n\\x53\\x82\\x12\\x46\\x6d\\xbc\\xda\\xd3\\x5f\\xd3\\x7c\\x32\\xe5\\xe3\\x05\\x01\\\n\\xab\\xce\\xea\\xc2\\x25\\x5a\\xeb\\xdb\\x98\\x0e\\xd8\\xb2\\x78\\xe1\\xcc\\xb4\\\n\\x54\\x07\\x83\\x75\\x8e\\x7e\\x22\\x6b\\x5d\\x70\\x6b\\xe1\\x68\\x17\\x46\\x04\\\n\\x52\\xb5\\x1b\\xef\\x82\\xa4\\xae\\x57\\x4f\\x8a\\xdd\\xfa\\x0a\\x0c\\x67\\xf3\\\n\\x2b\\x1c\\x93\\x99\\xe6\\x0a\\xa4\\x50\\x7b\\xa8\\xc3\\x0f\\xd7\\x5c\\x09\\xf3\\\n\\x79\\x79\\x5d\\x62\\x01\\x61\\x43\\x46\\x58\\xcf\\xc5\\x23\\x75\\x35\\xfe\\x03\\\n\\x16\\xc1\\x25\\x0d\\x35\\xba\\x98\\x66\\xaf\\x4e\\xac\\x2b\\xfe\\xf8\\x58\\x49\\\n\\x0b\\xc5\\x11\\x56\\xa7\\x5f\\x35\\x7f\\x31\\x8c\\xb0\\x51\\x42\\x90\\xaa\\xb3\\\n\\x0d\\xc0\\xb1\\x45\\xbf\\x88\\xc3\\x0d\\x83\\x2d\\x3e\\x98\\x95\\x5b\\x65\\x17\\\n\\x82\\x69\\xaf\\x6c\\x5d\\x4e\\x95\\xf5\\xd7\\x17\\x06\\xb0\\xf4\\xa6\\x9e\\xb8\\\n\\xe2\\x3b\\x5a\\x14\\x73\\x16\\x3b\\x53\\xb5\\x70\\x56\\x05\\x16\\x0d\\x2f\\x6f\\\n\\x31\\xa9\\xa6\\xdb\\x0a\\x60\\x37\\x11\\xc6\\x83\\xc9\\x40\\xba\\x0a\\x62\\x1c\\\n\\xa6\\x5a\\x4c\\xce\\x64\\x7b\\x4c\\x6a\\x24\\x81\\x44\\xbc\\x70\\xac\\x00\\xa4\\\n\\x74\\xa8\\x63\\xf1\\x01\\x4e\\xf8\\xc8\\xe5\\x20\\x82\\xaf\\x1c\\x28\\x2a\\x58\\\n\\x05\\x8c\\x5a\\x05\\x1a\\xdd\\xc8\\xea\\x3a\\x1d\\x31\\x1e\\x52\\x39\\x5e\\x4c\\\n\\xc6\\x64\\x8e\\x26\\x5b\\x2a\\x40\\xe5\\xec\\xf4\\xad\\x17\\xbb\\x76\\xc3\\x85\\\n\\x0b\\x93\\x5f\\x8a\\xd4\\xa2\\x90\\x3a\\x97\\x3a\\x93\\xf3\\x27\\x11\\x3b\\xe7\\\n\\x52\\x52\\xb5\\x0c\\x93\\x15\\x65\\x29\\x4d\\xd4\\x8d\\xa9\\xf6\\x58\\x61\\x72\\\n\\xde\\x15\\x25\\xd2\\x92\\x44\\xae\\x83\\x87\\x02\\x8f\\x46\\x51\\xad\\x3b\\x62\\\n\\x49\\x3c\\x4a\\x61\\x99\\xbb\\xe0\\x62\\xec\\xab\\xfb\\x8d\\x76\\x87\\xd4\\x0a\\\n\\xe1\\xe3\\xca\\xcb\\x3c\\x32\\x95\\x3c\\x3e\\x24\\xa5\\xd1\\xdb\\xa2\\x87\\x6e\\\n\\x6f\\xfb\\xb6\\xe9\\x88\\xb3\\x99\\xf5\\x12\\xf8\\xab\\xeb\\x24\\xd9\\x90\\x24\\\n\\x0a\\xff\\x00\\x62\\x3d\\xc2\\x8f\\xcf\\xe5\\x8e\\x45\\x1f\\x4a\\x6b\\xf2\\xf4\\\n\\xc7\\xae\\x2b\\x22\\x2d\\xe0\\xe8\\xf4\\xa4\\x83\\xe4\\xe2\\x8c\\x31\\x9b\\xcb\\\n\\xcd\\x98\\x97\\x33\\x0a\\x01\\x2c\\x66\\x66\\xb9\\x93\\xe0\\xb5\\x5b\\xaa\\xe9\\\n\\xd7\\x5a\\xed\\x87\\xca\\x04\\x99\\x58\\x1a\\x36\\x69\\xa3\\x3c\\x10\\xda\\xdc\\\n\\x13\\xed\\x5b\\xde\\xb4\\xc6\\x63\\x33\\xe2\\x5e\\x2e\\xd9\\xa6\\xd3\\xd9\\x61\\\n\\x74\\x41\\x1c\\x29\\xd5\\xca\\x6c\\xed\\xda\\x83\\xe6\\x2b\\x89\\x78\\x39\\x8e\\\n\\x3f\\x86\\xcd\\x12\\x88\\xa5\\x34\\x5b\\x64\\xd6\\xe8\\xfe\\x62\\x95\\x1d\\x08\\\n\\xc1\\xcb\\xaf\\x3b\\xbb\\x70\\x41\\xeb\\x71\\x6b\\x77\\x1b\\xe8\\x31\\x92\\xf0\\\n\\x0f\\x13\\x84\\x98\\x57\\x2d\\x1a\\xac\\xa5\\x2e\\x4d\\x54\\x55\\x5a\\xa2\\x9d\\\n\\x4f\\x98\\x9c\\x4d\\x9c\\xf0\\xf5\\x19\\x5c\\xd4\\xb5\\x31\\x08\\xa4\\x22\\x2b\\\n\\xc9\\xaf\\x92\\xa5\\x54\\x7a\\x00\\x05\\x71\\xc1\\x8d\\x15\\xf8\\x87\\x46\\xe2\\\n\\x28\\x5d\\x4f\\x52\\x69\\x8f\\x68\\xba\\x18\\x3c\\x43\\x20\\xe5\\xa2\\x2a\\xe0\\\n\\xa3\\xc7\\xa6\\x9c\\xbe\\x7d\\x6a\\x08\\xeb\\x5f\\x4c\\x18\\xb3\\x09\\xc2\\xcd\\\n\\xc4\\x29\\x2c\\x3b\\x7f\\xae\\x3d\\xae\\x5f\\x96\\xd8\\x36\\xef\\xf6\\x4e\\xda\\\n\\x77\\x18\\xe1\\xc7\\x1d\\xaf\\x1f\\x98\\x8f\\xd9\\xb2\\xeb\\xb6\\xba\\x10\\x3a\\\n\\x62\\x12\\x4d\\x69\\x6d\\xda\\xf4\\xa8\\xb8\\x7e\\x18\\xf7\\xf2\\xc1\\x6b\\x65\\\n\\x68\\x72\\xaa\\x03\\x38\\xaa\\x6a\\xa5\\x46\\xd4\\x3b\\xe3\\xc4\\x5b\\xd9\\xdb\\\n\\x23\\x93\\x95\\x2b\\x18\\xcb\\x94\\x53\\x1e\\x71\\x56\\xde\\x2a\\x71\\x01\\xb5\\\n\\x1b\\x92\\xf8\\xba\\xd0\\xdb\\x4c\\x48\\xb5\\xa8\\x57\\x36\\x9d\\xae\\x15\\xdf\\\n\\xeb\\x8b\\x44\\x7f\\x53\\xfe\\xd8\\xb7\\x39\\x98\\x39\\x66\\x07\\x96\\x1a\\x0a\\\n\\x4f\\x5f\\x82\\xff\\x00\\x86\\xbf\\x2e\\xbb\\x8c\\x24\\x5e\\x16\\xb1\\xe5\\x01\\\n\\xd5\\xc5\\x9a\\xb5\\x3b\\xd3\\xaf\\x72\\x6b\\x85\\x49\\x55\\x59\\xce\\xed\\xdc\\\n\\xfa\\x8c\\x56\\xcd\\x76\\xd3\\x14\\x50\\x47\\x65\\xa5\\x46\\x35\\x5e\\x9f\\x2f\\\n\\xe5\\x80\\x47\\x92\\xb5\\xe8\\x76\\xd6\\x9f\\x2e\\xfd\\xb0\\x79\\xf6\\x07\\xa6\\\n\\xa0\\x53\\x4a\\xd3\\x40\\x49\\xef\\x88\\xf8\\x4c\\x22\\x49\\x10\\xd5\\x17\\xf6\\\n\\x86\\x41\\xe6\\xb4\\xf4\\xa8\\xa6\\xf5\\xd3\\x11\\x89\\x28\\xac\\xd6\\xf0\\xe1\\\n\\x06\\xb6\\x29\\xda\\xf6\\xea\\xd4\\xd6\\x98\\x74\\x2d\\x46\\x65\\xd7\\xf7\\xbd\\\n\\x3a\\x74\\xc3\\x0a\\x1e\\x2e\\xcf\\x6f\\xf4\\x71\\x18\\xbf\\x9f\\x60\\xa7\\x6d\\\n\\x3e\\x40\\x1f\\xcf\\x0f\\xc3\\x6b\\x8f\\x98\\x13\\xa0\\x17\\x76\\x3d\\x7b\\xe3\\\n\\xda\\x5f\\x98\\x41\\x63\\xb1\\xd0\\xd6\\xd6\\xb4\\xeb\\xdf\\x1c\\x91\\x4b\\xc0\\\n\\x1b\\x51\\x1a\\x95\\xe9\\xe8\\x70\\xae\\x90\\xba\\x8a\\xfc\\x6a\\x2e\\x04\\x77\\\n\\x3d\\x3f\\x0d\\x70\\xd1\\xa3\\x34\\x75\\xfb\\x3a\\x7d\\x3f\\x1e\\xb8\\x37\\x36\\\n\\xe4\\xf2\\x91\\xd7\\xf5\\xfc\\xf1\\xc4\\x91\\x94\\xa9\\xf2\\x0b\\x68\\x0f\\x7a\\\n\\x75\\x34\\xf9\\xf4\\xc5\\x4e\\xa7\\xe7\\xa7\\xcb\\xfd\\xb1\\xa0\\xf5\\xeb\\xfc\\\n\\x71\\xa0\\x1f\\xd7\\xd7\\xb5\\x71\\x51\\xf8\\x83\\x43\\xf9\\xe0\\x71\\x9c\\xb2\\\n\\xec\\x3d\\x49\\xda\\x80\\x0c\\x24\\x96\\x37\\x01\\x37\\x92\\x51\\xa5\\xca\\x28\\\n\\x2d\\x07\\x52\\x7e\\x96\\x8e\\xdb\\xe0\\xa3\\x33\\x9b\\xbc\\xad\\x5d\\x08\\xff\\\n\\x00\\x9f\\xcb\\xf1\\xc7\\x6e\\xff\\x00\\xd6\\xf8\\x5d\\x7c\\xc9\\xaf\\x6d\\x18\\\n\\x0a\\x6d\\xeb\\x81\\x68\\xeb\\xfd\\x57\\x6c\\x7f\\xb6\\x12\\x15\\x24\\x6a\\x4b\\\n\\x0d\\xb7\\xd3\\xe9\\xbe\\x95\\xaf\\xcb\\x14\\x00\\x69\\xda\\x9f\\x3e\\xd5\\xfc\\\n\\xf1\\xa3\\x53\\x12\\xe7\\x60\\x49\\x7c\\x4f\\xc7\\x65\\x8c\\xd7\\x35\\x27\\x3a\\\n\\xe4\\xbe\\xe6\\x58\\x74\\x7e\\x86\\x5a\\x12\\xd8\\x8f\\x35\\xe2\\x6b\\x5c\\xc6\\\n\\x7c\\x85\\xca\\xaa\\xb0\\x69\\x99\\xe5\\x4b\\xc2\\x91\\x4d\\x6c\\xdc\\xfd\\x70\\\n\\x73\\x79\\xc8\\xee\\xf1\\x29\\x1c\\x9c\\xc4\\x93\\x52\\xe0\\x4f\\x44\\x23\\x64\\\n\\xed\\xeb\\xe9\\x83\\x14\\x4e\\x66\\xcc\\xca\\xd6\\x2c\\x6b\\xcd\\x21\\x7f\\x85\\\n\\x42\\xae\\xa7\\x5e\\x9b\\xe3\\x39\\xe2\\x1e\\x29\\x3b\\xe4\\x63\\x8b\\x9b\\x2f\\\n\\x91\\x2b\\x63\\x1f\\xfd\\xc2\\x75\\x15\\xfd\\x77\\xc6\\x5e\\x87\\x6b\\xbc\\xbf\\\n\\xd6\\xb8\\x14\\x1a\\xe8\\x2d\\xa6\\xe4\\x9a\\x52\\x83\\xd7\\xb6\\x17\\x3d\\xe2\\\n\\xe8\\xb0\\xe5\\xdd\\x01\\x58\\x90\\xfb\\xda\\x9d\\xae\\x14\\x14\\xd0\\xf7\\x24\\\n\\x60\\xb6\\x4d\\x5e\\x7c\\xac\\x55\\xff\\x00\\x0a\\xcd\\x57\\xa0\\xf8\\xa3\\x66\\\n\\xad\\x4d\\x3e\\x1d\\x2b\\x8e\\x32\\x0e\\x36\\x57\\x66\\x5f\\xf3\\x72\\xac\\x37\\\n\\x0c\\xba\\x11\\x4e\\xba\\x74\\xc5\\xcb\\xf1\\x6c\\xc3\\x5c\\x1a\\x1d\\x7b\\xe3\\\n\\x33\\x10\\x45\\xac\\xea\\x17\\x8a\\xfa\\x5a\\x2b\\xbe\\x2d\\x78\\xe2\\xf1\\x3c\\\n\\xfc\\xdc\\xab\\x0c\\x68\\x73\\x27\\x9a\\xbf\\xe5\\xad\\x43\\xf7\\x24\\x29\\xc3\\\n\\xe4\\xa2\\xcb\\x8f\\x0d\\xcc\\xf1\\x34\\x45\\x53\\x03\\xc2\\x1b\\x5b\\x6c\\xb5\\\n\\x58\\x57\\xec\\xd0\\x7f\\x1c\\x7b\\xec\\xd4\\x93\\x9b\\x03\\x55\\xee\\xe4\\xa9\\\n\\x14\\xa2\\xb1\\x3d\\xfb\\x57\\x11\\xe7\\xe0\\xf0\\xf9\\x52\\x35\\x94\\x37\\x1f\\\n\\x33\\x1f\\x09\\x08\\xa8\\x6b\\x80\\x75\\x32\\x30\\x34\\x3e\\x54\\x38\\x48\\xf3\\\n\\xf9\\xa0\\xc6\\x80\\xdb\\x1a\\x5a\\xbf\\x8d\\x49\\xd3\\x7f\\xa6\\x00\\x32\\x55\\\n\\x40\\xe5\\xd4\\xe9\\xfd\\x6f\\xf5\\xc5\\x76\\x2b\\xb6\\x28\\xda\\x61\\x67\\x8c\\\n\\xf0\\xf3\\x11\\x1a\\xc5\\x30\\x03\\x7f\\xb0\\xdf\\x70\\xec\\x7e\\x78\\x48\\x73\\\n\\x69\\x26\\x5f\\x30\\x4a\\xc8\\x40\\xaa\\xf1\\x92\\x37\\x06\\xf8\\x9b\\xe2\\x43\\\n\\x4a\\xb2\\xf4\\xeb\\x8a\\x1f\\x37\\x73\\xdc\\x8a\\x53\\xf8\\x63\\x35\\x23\\x54\\\n\\x47\\x10\\x63\\xae\\x96\\x9d\\x7e\\xb5\\xf4\\xc3\\xe5\\xd2\\x42\\xf4\\x63\\x59\\\n\\x18\\xde\\xd5\\x26\\xa4\\x57\\xec\\xd3\\xf9\\x62\\xab\\x8e\\x6f\\x9d\\x7a\\x7f\\\n\\xce\\x04\\x51\\x84\\x63\\xf6\\x8e\\xc9\\xd4\\xd4\\xf4\\xad\\x07\\xe1\\xe9\\x8e\\\n\\x3e\\x65\\x16\\x79\\x51\\xef\\x14\\xf2\\xa1\\xd7\\xca\\x77\\xf5\\xdb\\x7c\\x29\\\n\\x64\\x2b\\xa0\\x6f\\x36\\xde\\x98\\xd1\\x2b\\xf4\\xae\\x34\\x4f\\xcb\\x03\\x97\\\n\\x98\\xec\\xbf\\xd6\\xd8\\x3c\\x53\\x53\\x4d\\x28\\x79\\x55\\x4f\\x6a\\xfe\\x78\\\n\\x31\\xb5\\x2d\\xd6\\x95\\xd3\\x4c\\x4a\\x2d\\xaa\\xb1\\x2f\\x4f\\x53\\x8c\\xbf\\\n\\x0c\\x30\\x6b\\x8c\\xc2\\x8d\\xb7\\xc0\\x56\\x9a\\x1a\\x9f\\xde\\xfa\\x60\\x7b\\\n\\x43\\x24\\x6d\\x13\\x0e\\xb4\\xa8\\x3e\\x4a\\x57\\xb7\\x94\\xfc\\xf0\\x3a\\xa8\\\n\\xab\\x57\\xe5\\xb7\\xd3\\x0d\\x38\\x5a\\x6b\\xc3\\xa7\\x7a\\x7c\\x47\\xb9\\x1f\\\n\\xa6\\x0b\\x34\\x5e\\x55\\x2c\\x25\\xae\\xdf\\x43\\xa0\\xdf\\x07\\x2b\\x08\\x79\\\n\\x6e\\x24\\x4a\\xfb\\x29\\x20\\xd3\\x4d\\x7a\\x7c\\xbd\\x71\\xc1\\xb2\\x37\\x8a\\\n\\xca\\x59\\x50\\xc9\\x5d\\xf5\\xdc\\x5d\\xdf\\x1e\\xc7\\x48\\xe2\\x92\\xd1\\x20\\\n\\x4d\\x07\\x29\\xae\\xbf\\x96\\x0b\\x35\\x2d\\xef\\xbd\\x70\\x5d\\xa3\\xbb\\xa5\\\n\\x76\\xfe\\x3f\\xc3\\x0b\\xc2\\xf0\\xe8\\x9a\\x46\\x34\\x56\\x90\\x16\\xd7\\x17\\\n\\x58\\x13\\x5d\\x15\\x05\\x10\\x7a\\x2f\\xa1\\xf3\\x7d\\x71\\x5f\\x4a\\xf7\\xc0\\\n\\xad\\x70\\x47\\x7f\\x41\\x5f\\xcf\\xfe\\x71\\xc3\\x8d\\x1c\\x9f\\xba\\x2b\\x46\\\n\\xff\\x00\\x7c\\x71\\x33\\x48\\x24\\x92\\x9c\\x82\\x9c\\xb1\\xeb\\xbd\\x69\\x52\\\n\\xff\\x00\\x79\\xb0\\x81\\x34\\x1a\\xd7\\xfd\\x27\\x7f\\xe1\\x8c\\xb4\\x6a\\xbc\\\n\\xc5\\x59\\x80\\x04\\xdc\\x54\\x9d\\x05\\x3e\\x7d\\xf0\\x18\\xc6\\xd9\\x78\\xfa\\\n\\xc9\\x26\\xf6\\x8f\\xb2\\x9b\\xb1\\xf4\\x23\\x08\\x8c\\x1c\\x0e\\x7b\\x1d\\xd7\\\n\\x86\\x5c\\x68\\x2e\\xa7\\x6b\\xa9\\x4f\\x5c\\x0a\\xed\\xff\\x00\\xdd\\xfc\\xb0\\\n\\x1b\\x72\\xa7\\xb1\\xe9\\xb7\\xcf\\x6c\\x33\\xcc\\x81\\x98\\xd7\\x5f\\x99\\x3b\\\n\\x7c\\x8e\\x09\\x0b\\xa1\\xea\\x37\\x4c\\x68\\xed\\xf8\\x8c\\x66\\xc7\\x8d\\x88\\\n\\xef\\x3b\\x09\\x3e\\xc9\\x26\\xb4\\xb8\\x50\\x9f\\x4c\\x4b\\xe2\\x7c\\x38\\xa4\\\n\\xcb\\x65\\x32\\xf2\\x65\\x72\\x10\\x35\\xa4\\x06\\x7f\\x3c\\xa1\\x4e\\xcc\\xc2\\\n\\xd0\\x1b\\x70\\xa2\\x80\\xe0\\x78\\x57\\x84\\x46\\x67\\xcd\\x4d\\x76\\x8b\\x45\\\n\\x86\\x0a\\xe9\\x56\\x7d\\x84\\x6b\\xf6\\xab\\x56\\xe8\\x31\\xfd\\xeb\\xe2\\x94\\\n\\xf1\\x1f\\x14\\x7a\\xb1\\x96\\x55\\xaa\\xc1\\x5d\\xd7\\x2f\\xa9\\x08\\xa3\\x6b\\\n\\xbc\\xc7\\x17\\xe5\\xd8\\x02\\xa8\\xfc\\x58\\xd7\\xb1\\xdb\\xe7\\xe9\\xa6\\x32\\\n\\xf5\\x70\\x2d\\x4e\\x23\\x69\\xe4\\xd3\\x6f\\x5c\\x43\\x2b\\xaf\\x12\\x28\\x1e\\\n\\xa6\\x9e\\x84\\x53\\xe7\\x88\\x44\\x92\\x5a\\xd6\\xf9\\x4e\\x94\\xfd\\x29\\xfc\\\n\\x71\\x48\\x64\\x46\\xf9\\x11\\x5c\\x36\\x7f\\xc3\\xec\\x8b\\x39\\x69\\xe2\\x46\\\n\\x7f\\x61\\x9b\\x1b\\xd9\\x32\\xed\\x79\\xf8\\x5f\\xe8\\xda\\x62\\x46\\x9d\\x53\\\n\\x2a\\xb5\\x3c\\x58\\xee\\x0b\\xc1\\x7f\\x54\\x3b\\x2b\\xfc\\x2c\\xba\\x1e\\xc3\\\n\\x1a\\x66\\x23\\x95\\xda\\x81\\x55\\x79\\xc0\\x63\\xfc\\x3f\\xdb\\x0a\\xb2\\x48\\\n\\x7c\\x3f\\xc2\\xd9\\xf5\\xcc\\x5b\\x6b\\xf0\\x7a\\xf0\\xa3\\x26\\xb7\\x7d\\xe6\\\n\\x36\\xd7\\xa5\\x31\\x2b\\x64\\xd9\\x25\\xcc\\x4d\\x1f\\xbd\\xf1\\x1c\\xf5\\x26\\\n\\xcf\\x31\\xa7\\x94\\x31\\xf2\\x25\\x28\\x42\\xc5\\x6a\\xe1\\x33\\x31\\x7b\\x3a\\\n\\x4d\\x9b\\x95\\x78\\xd9\\xa9\\x15\\x2e\\x11\\xc5\\x5d\\x54\\x1d\\xbd\\x0e\\x94\\\n\\x14\\xc6\\x68\\x65\\x64\\xba\\x28\\xb3\\x2c\\xb1\\xf5\\xaa\\xc5\\xa0\\x26\\x9a\\\n\\x36\\xa3\\x4c\\x49\\x99\\xfe\\xd4\\x78\\xa7\\xf8\\x90\\x44\\x79\\x58\\x9e\\x66\\\n\\x89\\x21\\x89\\x28\\x34\\x44\\x22\\xa5\\x8e\\xf5\\xaf\\xa5\\x30\\xf2\\xe5\\xbc\\\n\\x5e\\x38\\x67\\x5b\\xa8\\xfc\\x7e\\x25\\xcd\\xea\\x8e\\x76\\x3d\\x29\\x43\\x86\\\n\\x11\\xcb\\x7d\\xac\\x46\\xd4\\x0f\\x4e\\xab\\xf3\\xc0\\xd6\\x95\\xf4\\xd7\\xeb\\\n\\x82\\x6e\\xa7\\xe1\\xa9\\xc3\\x85\\x92\\xaf\\xad\\xa9\\xf7\\xba\\x7d\\xad\\xce\\\n\\x22\\xca\\x4b\\x96\\xe1\\xb4\\x0c\\x65\\xcb\\x66\\x23\\x64\\x0f\\x0b\\xf6\\x06\\\n\\xa0\\xda\\xda\\x86\\x5d\\x8f\\x51\\x89\\x86\\x66\\xee\\x22\\xa5\\x1a\\x28\\xdc\\\n\\x69\\x20\\xde\\x45\\x1b\\x1f\\x5a\\x54\\xef\\xae\\x33\\xc6\\x29\\x03\\xcd\\x12\\\n\\x17\\x3d\\xf9\\x79\\x6e\\x3f\\x7a\\x9b\\xd4\\x60\\xf0\\xd6\\xab\\x5a\\x96\\x3f\\\n\\xcc\\xf4\\xf9\\x0c\\x6d\\xd3\\xa8\\xef\\xf2\\xff\\x00\\x7c\\x73\\x48\\x82\\xbb\\\n\\x5c\\x09\\xfe\\x86\\x0d\\x33\\x99\\x68\\xcb\\x37\\x3e\\x8e\\x09\\x27\\xa8\\xea\\\n\\x46\\x22\\x52\\xf3\\x4c\\x01\\xab\\x58\\xa1\\x59\\xfb\\x58\\xb5\\xda\\xbd\\xf5\\\n\\xf4\\xc2\\xb0\\x8a\\xaa\\xc3\\x73\\xd3\\x41\\xfa\\x6d\\x8d\\x19\\x63\\x1f\\xd7\\\n\\x6c\\x51\\x4d\\xfa\\x6a\\x46\\xc3\\xf9\\xe1\\xf8\\x96\\xef\\xc8\\x7a\\xdb\\xeb\\\n\\xbe\\xb5\\xdb\\xd3\\xa6\\x14\\xf4\\xb7\\x5f\\xfb\\xb4\\xc0\\x94\\xec\\xb1\\xb1\\\n\\xd2\\x9d\\x0e\\x9b\\xf5\\x38\\x97\\x31\\x31\\xe1\\xd8\\xbc\\xc9\\xf6\\x8d\\xd5\\\n\\x4b\\x07\\x5a\\x8d\\xff\\x00\\x86\\x1e\\x66\\xe5\\x41\\xa4\\x62\\x9e\\x55\\xdf\\\n\\x5c\\x3f\\xb1\\xc3\\x24\\xf2\\xd0\\xe9\\x11\\x15\\x5a\\xfc\\x5a\\xb0\\xad\\x3e\\\n\\x58\\x19\\x39\\x52\\xee\\x1c\\xab\\x70\\x9f\\xf6\\x8a\\xbf\\x12\\x57\\xa8\\x7e\\\n\\xbf\\xc3\\x19\\x65\\xce\\xd6\\x16\\xcc\\xc1\\x97\\xcc\\x69\\xcc\\x89\\xed\\x21\\\n\\x94\\x06\\xf4\\x14\\xd4\\xe1\\xfd\\x9a\\x73\\xc1\\x32\\xc5\\x33\\x34\\x6d\\xa7\\\n\\x04\\xd7\\x97\\xb9\\x3a\\xd6\\x9a\\xf4\\xc5\\xe2\\x16\\x65\\xbd\\xad\\x25\\x6d\\\n\\x1a\\x6e\\xd5\\x34\\xe5\\xad\\x7e\\x63\\x13\\x65\\x92\\x48\\xe4\\x39\\x79\\x45\\\n\\xf6\\x35\\xe1\\x6e\\xad\\x57\\x4d\\x3a\\x69\\x86\\xcd\\x3b\\xf0\\xb2\\xbc\\x24\\\n\\x4a\\xa9\\xf7\\xaf\\x6d\\x49\\x4a\\x01\\xca\\x2a\\x48\\xbb\\xb6\\xc3\\x1c\\x10\\\n\\x45\\x82\\x8b\\x42\\x2b\\x40\\x3d\\x71\\x61\\xd6\\x36\\x6a\\x82\\x3f\\x4a\\x7f\\\n\\x1d\\xb1\\x71\\xf8\\x16\\xa3\\xd0\\xd4\\x0a\\xd3\\xbd\\x0d\\x05\\x3f\\x0c\\x79\\\n\\x69\\x6f\\x4f\\x42\\x05\\x3f\\x0c\\x7a\\xfd\\x3f\\x86\\x29\\x42\\x1b\\xa3\\x6f\\\n\\xf9\\x7f\\x3c\\x17\\xb7\\x94\\x7a\\xfa\\x6f\\xeb\\xfc\\x3a\\xe2\\x3a\\x0e\\x66\\\n\\x6d\\x4e\\x9a\\x53\\x53\\xad\\x3f\\x2c\\x10\\x8b\\x53\\xe8\\x0d\\x05\\x74\\xd7\\\n\\x73\\x4a\\xe1\\x8e\\x68\\x80\\x3e\\x14\\x1b\\xe9\\xad\\xa4\\xfa\\xb5\\x49\\xa7\\\n\\xa7\\xae\\x38\\xbc\\x21\\x7c\\x61\\x68\\xd4\\xae\\xd8\\x59\\x0d\\x2d\\x35\\xa5\\\n\\x77\\xa5\\x76\\xfd\\x70\\xad\\x2e\\x5e\\x39\\x1d\\x34\\x56\\x65\\x06\\xc1\\xd7\\\n\\x7e\\xf8\\x2c\\x91\\x88\\x75\\x6a\\x32\\xf5\\x20\\x6d\\xdb\\x0f\\x0e\\x50\\xe5\\\n\\xd1\\xde\\xa0\\x66\\x1c\\xdd\\x6a\\xeb\\xca\\x23\\x50\\xd5\\x63\\xa5\\x5a\\xa2\\\n\\x87\\x4b\\x7a\\xe3\\x2a\\xb9\\xd8\\x4e\\x68\\xcf\\x50\\xb2\\x65\\x21\\x95\\x99\\\n\\x6d\\x0a\\x58\\xc8\\x80\\x1b\\x56\\xad\\xa6\\xb8\\x2a\\xdf\\xf6\\xb6\\x84\\x7c\\\n\\xc1\\xd7\\xe7\\xb7\\xd3\\x1f\\xec\\x70\\x25\\x3e\\x25\\x1c\\xa9\\x0c\\x77\\xcd\\\n\\x9a\\xe0\\xf0\\x41\\x04\\x56\\xc8\\xa3\\xa9\\x66\\x3f\\x7e\\xb4\\xc7\\xf7\\x7f\\\n\\x81\\xdc\\xc8\\xba\\x4d\\x99\\x02\\x9b\\x69\\xbe\\xa7\\xeb\\xb6\\x23\\x9a\\x44\\\n\\xa4\\xa5\\xbd\\xec\\x8d\\xfb\\x47\\x6e\\xe5\\xfa\\x9e\\xdb\\x0e\\xd8\\x37\\x10\\\n\\xee\\x45\\x23\\xad\\x3a\\x8d\\xc8\\xc6\\x73\\x35\\x34\\xbe\\x70\\x4a\\xc7\\xae\\\n\\xbf\\x2a\\xe9\\x4a\\xe3\\x2d\\x22\\x7f\\x9b\\x00\\x35\\x5d\\xab\\xa9\\x6a\\x77\\\n\\x34\\xdf\\xa7\\x6c\\x73\\x52\\xa6\\x95\\xea\\x3f\\x9e\\x07\\x0a\\x72\\x9f\\x26\\\n\\xa7\\xcb\\x41\\xfc\\x71\\x07\\xb4\\x66\\x59\\xb2\\x55\\xa4\\x95\\x27\\x97\\x6d\\\n\\x7e\\x83\\x7c\\x2c\\xf9\\x5c\\xc2\\x38\\xb4\\x57\\x9b\\xbe\\x1f\\xc3\\x3c\\x2e\\\n\\x66\\x93\\x81\\x1f\\xf8\\x9f\\x67\\xd6\\xe9\\x09\\xd2\\x21\\x41\\xa9\\xf9\\x69\\\n\\xeb\\x84\\xf1\\x0f\\x17\\x51\\xdd\\x20\\xcc\\x37\\x22\\x8e\\x8c\\xc9\\xad\\xc7\\\n\\xf0\\x18\\x1e\\xc7\\x11\\x94\\xd2\\xde\\x21\\x03\\x87\\xb6\\xcb\\x4f\\x84\\x6d\\\n\\xa7\\x6e\\xf8\\xe2\\xe6\\x1e\\xbf\\x65\\x14\\xf2\\x53\\xe5\\xe9\\x89\\x33\\xd9\\\n\\x7b\\x82\\xc2\\x96\\x96\\xad\\x28\\xcc\\x74\\xfe\\x5f\\x9e\\x24\\x9a\\x62\\x64\\\n\\x73\\xa2\\xaa\\x9a\\xb3\\x39\\x23\\xa0\\xd5\\x98\\xf4\\x02\\xb8\\x80\\x67\\x55\\\n\\xd7\\xc6\\x28\\x3f\\xc3\\xb3\\x0a\\xc6\\xf7\\x0b\\x8c\\xe3\\x5f\\xfb\\x77\\xf4\\\n\\xc3\\x70\\x91\\x16\\xa0\\x68\\x12\\x83\\x4e\\xc7\\xbf\\xe5\\x81\\xcb\\xaf\\xf2\\\n\\xc5\\x69\\x80\\x3a\\x9d\\x85\\x41\\x6a\\xfa\\x8e\\x83\\x12\\x5c\\x55\\x6d\\x52\\\n\\x49\\xa7\\xc7\\x43\\x4e\\xbb\\x7e\\x75\\xc0\\xce\\x22\\x7b\\x49\\x46\\x2f\\x46\\\n\\xe6\\x53\\xaf\\xd9\\x7a\\x8a\\xd3\\xd3\\x0f\\xe2\\x7e\\x0d\\x95\\x8f\\x2b\\x98\\\n\\x87\\xc3\\xe4\\xf1\\x3c\\xcc\\x44\\x70\\x59\\xb8\\x56\\xf1\\xac\\x5d\\x39\\xe4\\\n\\x06\\xe5\\x16\\xeb\\xad\\x05\\x71\\xc6\\xf1\\x18\\x44\\x1e\\xd9\\x09\\x49\\xda\\\n\\x3f\\x23\\x99\\x56\\x94\\x9b\\xec\\xda\\x7a\\x81\\xb8\\xf9\\x61\\x88\\x68\\x9a\\\n\\x23\\x5b\\x78\\x67\\x74\\xf8\\x7f\\x2a\\x63\\xe1\\xa0\\xd6\\x9e\\xbd\\xb1\\x12\\\n\\xa2\\x5d\\x24\\xf2\\x32\\xa2\\x0d\\x49\\xa8\\xaf\\xca\\x83\\xa9\\xfa\\x61\\xbd\\\n\\xad\\x5c\\xc8\\xd4\\x15\\x15\\x0a\\x80\\xfd\\x8d\\x3f\\xdf\\x1e\\xe6\\x43\\xa7\\\n\\xda\\x14\\x3a\\xf6\\x6f\\xe7\\x4c\\x65\\x08\\x57\\x1e\\xe1\\x34\\x6d\\xfe\\x6d\\\n\\xea\\xdb\\xfe\\xba\\xe2\\xc5\\xd0\\x9d\\x09\\xe8\\xbf\\xc6\\xbf\\xa6\\x00\\x1b\\\n\\x28\\xe6\\xf5\\x63\\xab\\x62\\x47\\x91\\xee\\x92\\xb5\\x58\\xd7\\xcc\\x40\\xd2\\\n\\x87\\xb7\\xfa\\xa9\\x81\\x9a\\x77\\x0a\\xf2\\x0e\\x4c\\xb8\\xa3\\x35\\x3a\\x5e\\\n\\x07\\x43\\xf9\\x6c\\x69\\x85\\x8d\\xe3\\x58\\xc8\\x63\\x73\\x2f\\x55\\xad\\x42\\\n\\xfa\\x6b\\xf8\\xed\\x8f\\x37\\xfb\\x7f\\x2c\\x5a\\x84\\x37\\xca\\x9f\\xae\\x38\\\n\\x9a\\x97\\x07\\xae\\xe7\\xd2\\x87\\x0d\\x34\\xd9\\x34\\xbc\\x1a\\x1b\\x94\\x55\\\n\\xbc\\xbc\\xf5\\xf9\\xfa\\xd7\\x02\\x67\\x86\\x3e\\x4c\\xaa\\x44\\x9f\\xb8\\x09\\\n\\x0a\\x3e\\x40\\x9d\\x3b\\x61\\xb2\\xbc\\x9c\\xc1\\x78\\x4a\\x79\\x8d\\xd5\\xe8\\\n\\x37\\xc7\\xb3\\xe5\\x15\\x32\\xf1\\xba\\x10\\xf2\\x2e\\x86\\xbd\\x57\\xd3\\x19\\\n\\xe8\\x98\\xd2\\xe8\\xd1\\xf7\\xea\\xa5\\x81\\xeb\\xf7\\x86\\xd8\\x97\\x26\\xd9\\\n\\x56\\x79\\x61\\x9d\\xa3\\x7a\\x9a\\x2f\\x0c\\x73\\x2b\\x0a\\x50\\xd6\\xda\\x1d\\\n\\x6b\\xbd\\x05\\x71\\x74\\x0a\\x50\\xea\\x0a\\xf5\\xfa\\x50\\xeb\\xd7\\x06\\x36\\\n\\xaf\\x61\\x5f\\x37\\xd3\\xe9\\xf5\\xc3\\x7c\\x42\\xc3\\x61\\xeb\\xbf\\x5f\\xea\\\n\\xb8\\x0a\\x39\\x99\\xb4\\x00\\x0d\\x49\\xae\\xdf\\xcb\\x0b\\xed\\x0e\\x32\\xf1\\\n\\x1d\\x68\\xbf\\xb4\\xf4\\xe6\\x3a\\x60\\xaa\\x71\\x38\\x9a\\x10\\xcc\\xfa\\xd0\\\n\\x6f\\xaf\\xc5\\xf2\\x18\\x67\\x55\\x49\\x42\\x8d\\x14\\x54\\x31\\xd7\\xb7\\x5a\\\n\\x75\\xef\\xdf\\x03\\xc3\\xe6\\x89\\xa2\\xcc\\x86\\xd8\\x8b\\x43\\xc9\\xdb\\x5e\\\n\\xb8\\xa1\\xa3\\xca\\xe0\\x5e\\xdd\\xb4\\xd9\\x4f\\xcf\\xa5\\x70\\xb4\\xd9\\x45\\\n\\x7f\\x3f\\xeb\\x53\\x8d\\xaa\\x95\\xa7\\xcf\\xd6\\xbf\\xa6\\x23\\x86\\xa3\\xcb\\\n\\xa0\\x15\\xdd\\xf5\\x01\\xbd\\x46\\xe6\\x9d\\xe9\\xe6\\xa8\\xc3\\x54\\xd5\\xa8\\\n\\x09\\xf4\\x27\\xca\\x00\\xfe\\x18\\x5a\\x72\\x01\\xad\\x36\\x2d\\x5e\\xa7\\xf5\\\n\\xa7\\xe5\\x8e\\x2b\\x8a\\xb6\\x96\\x02\\x74\\x5e\\x9a\\xd7\\xad\\x29\\xfa\\x60\\\n\\xad\\x0a\\x81\\xd1\\x47\\x98\\x77\\xbb\\x6e\\xbb\\x6f\\x86\\x60\\xcf\\x94\\x9e\\\n\\x34\\x3c\\x29\\x91\\x8a\\xd0\\x91\\xa1\\x62\\xda\\x30\\xd9\\x4f\\xca\\xa0\\x01\\\n\\x8e\\x0c\\x73\\xe4\\xb3\\x08\\xa0\\x5b\\x28\\xcc\\x65\\x05\\xc3\\xff\\x00\\xa8\\\n\\x55\\xab\\xdf\\x19\\x88\\xb2\\xcc\\xd9\\x5c\\x84\\x7c\\x86\\xde\\x56\\x71\\xda\\\n\\xb5\\xed\\x80\\xe9\\x14\\x85\\x10\\x73\\xba\\xa1\\x2a\\xa4\\x77\\x65\\xea\\x70\\\n\\x72\\xe4\\x95\\x4f\\x87\\x5d\\xd8\\x6d\\x8e\\x1e\\x60\\xb3\\xa5\\xe4\\xdb\\xd6\\\n\\xda\\xe9\\xf9\\x62\\x48\\x16\\x15\\x8c\\x58\\x02\\x1d\\x9d\\x5b\\xf5\\x38\\xcb\\\n\\x65\\xb3\\xa4\\x08\\x96\\x13\\xcc\\xc7\\x6b\\x96\\x9a\\x57\\xae\\x27\\x85\\x2e\\\n\\xe1\\xde\\x78\\x4d\\xbd\\xc3\\xd1\\xab\\xae\\x28\\x2b\\x6d\\x3f\\x1d\\x36\\xc2\\\n\\x88\\xe3\\x66\\x3b\\x50\\x03\\x5d\\xff\\x00\\xa1\\x8c\\xc2\\x0f\\x12\\x7f\\x0f\\\n\\x82\\x4d\\x5e\\x3e\\x63\\x2d\\x48\\xf8\\x09\\x22\\xc3\\xbd\\x37\\xfc\\xb1\\x98\\\n\\x8b\\x20\\xb1\\xb6\\x62\\x56\\x2f\\x37\\x88\\x67\\xbd\\xe4\\xad\\xc4\\x34\\xdb\\\n\\x77\\xfa\\x1a\\x61\\x4e\\x76\\x5f\\x6f\\x76\\x16\\x8b\\xbc\\x81\\xce\\x9c\\xb1\\\n\\xf6\\xc7\\x39\\x2a\\x13\\xe1\\x14\\xe9\\xdf\\xa0\\xf9\\x75\\x1d\\x70\\xbf\\xdd\\\n\\xf9\\x6c\\xc4\\xf5\\xd2\\xe1\\x11\\x11\\x7d\\x65\\x34\\x4f\\xc0\\x9d\\x31\\xfd\\\n\\xce\\xf6\\xfb\\x44\\x4f\\x7e\\x6d\\x63\\x37\\x0a\\x90\\x0a\\xa3\\x11\\xe6\\xdf\\\n\\x1f\\xde\\x19\\x88\\x11\\x64\\x94\\x86\\xcb\\xaf\\xfd\\x15\\xa5\\x39\\x90\\x8f\\\n\\x31\\xde\\xbb\\x8d\\xba\\xe2\\xe3\\xce\\xc4\\xf4\\xc0\\x24\\xee\\x71\\xdf\\xa6\\\n\\x9d\\x0f\\xcb\\x12\\x70\\xb9\\x9a\\x35\\x27\\x5f\\x28\\xed\\xf3\\x38\\xe2\\x49\\\n\\xb9\\xae\\xbb\\xeb\\xf6\\x7d\\x30\\xdc\\x3b\\xaa\\x59\\x8f\\x2d\\x49\\xa2\\x8e\\\n\\x6d\\x06\\xb4\\x1d\\x4e\\xd4\\xc5\\x73\\x3c\\x96\\xb5\\x46\\xbc\\xac\\xa2\\x84\\\n\\x9e\\xb5\\xa7\\xe2\\x71\\x96\\x30\\xc8\\xb9\\x43\\x06\\x58\\x65\\x24\\x28\\xab\\\n\\x59\\x22\\x14\\x05\\x09\\xe5\\xdd\\x45\\xa7\\x16\\x19\\x8b\\x54\\x50\\xd5\\x6a\\\n\\x0f\\xe6\\x71\\x74\\x2c\\xd3\\xe5\\xb7\\x30\\xfc\\x51\\xfa\\xa1\\x3f\\x0d\\x3a\\\n\\x63\\x88\\x1b\\x92\\xa0\\x16\\x3a\\x5a\\xc7\\x65\\x6a\\xf5\\xef\\x87\\x9c\\x85\\\n\\x2b\\x00\\xe0\\xc4\\x7d\\x5b\\x9a\\x42\\x3e\\x7b\\x57\\x16\\xcd\\xd3\\xd7\\xfa\\\n\\xff\\x00\\x6c\\x43\\x08\\xa3\\x47\\x2c\\x81\\x6b\\xbd\\x17\\x77\\xaf\\xc8\\x7e\\\n\\x78\\x20\\x30\\x55\\x8d\\x40\\x63\\xd8\\x53\\x40\\xa3\\xaf\\xd3\\x10\\xfb\\x2a\\\n\\xf1\\x29\\xac\\xb5\\xf5\\xdc\\x50\\xf5\\x22\\x9f\\x4c\\x56\\x36\\x70\\x58\\x3d\\\n\\x90\\x25\\x28\\x15\\xb9\\x59\\xdc\\xfd\\x91\\xb0\\x27\\xe9\\x87\\xca\\x66\\x57\\\n\\x89\\x9a\\x9b\\x89\\x1e\\x5a\\x58\\xf4\\xae\\x60\\x35\\x07\\x17\\xed\\x0b\\x43\\\n\\x53\\xbb\\x0c\\x4f\\x96\\x48\\x9e\\xe8\\x09\\x88\\x97\\xd2\\x92\\x29\\x21\\x80\\\n\\x07\\x7b\\x48\\xc5\\xad\\x98\\x70\\x95\\xa8\\xb7\\x97\\xf4\\xc1\\x6f\\x68\\x7a\\\n\\x9f\\x30\\xaf\\x5c\\x02\\x19\\xab\\xdc\\x57\\xfa\\xfa\\x62\\xb2\\x50\\x10\\xda\\\n\\x1a\\x52\\xb8\\xa0\\x21\\x45\\x79\\xab\\xa8\\xa6\\x22\\x29\\xaf\\xbb\\x65\\x60\\\n\\xa7\\xd4\\x5b\\xf8\\x60\\x71\\x86\\xa2\\x27\\x92\\x23\\xfb\\xab\\xaa\\xff\\x00\\\n\\x2c\\x1c\\xa6\\x65\\x02\\xa4\\xf5\\x02\\x4a\\xfe\\xcd\\xb6\\x52\\x7e\\xbd\\x46\\\n\\xf8\\x93\\x2f\\x24\\x65\\x1b\\x84\\x55\\x5a\\x9c\\x92\\x46\\x7c\\xb2\\x06\\xed\\\n\\xa7\\xcf\\x19\\xa1\\x1a\\x01\\x1c\\xc3\\x2f\\x2f\\x19\\xc8\\xb2\\x9c\\x20\\x09\\\n\\xfa\\x11\\xb0\\xc5\\x20\\x91\\x5e\\x52\\x9c\\xce\\x5f\\x7f\\x51\\x5d\\x97\\x53\\\n\\x41\\x8a\\x4a\\xa8\\xce\\xd5\\xa3\\x8f\\x9d\\x30\\xd1\\x69\\x57\\x47\\xa7\\xcf\\\n\\xd7\\x1c\\x46\\x02\\x49\\xdb\\xcc\\xe7\\xa0\\xde\\x91\\x83\\xe5\\xf5\\xee\\x6b\\\n\\x8a\\x15\\xaf\\xcf\\x4c\\x23\\x1e\\x27\\x2a\\xb0\\x2a\\x35\\x5e\\x6d\\x9c\\xf7\\\n\\xb7\\x61\\x82\\x0d\\x01\\x1e\\x5a\\xf2\\x9c\\x26\\x74\\xc6\\xa6\\x48\\x5a\\xe4\\\n\\x3a\\x56\\xfa\\xa8\\x1f\\x3d\\xf0\\xae\\x7f\\xa1\\x4d\\x30\\xa9\\x76\\x8e\\xbb\\\n\\x8e\\xd5\\x35\\xc3\\x1c\\x9b\\x08\\xe6\\xe1\\xb0\\x84\\x91\\x72\\x86\\xa6\\x8c\\\n\\x47\\x5d\\x70\\x64\\xce\\xfb\\xef\\x10\\x62\\xf7\\x4b\\xad\\x80\\x7c\\x21\\x01\\\n\\xd0\\x50\\x6b\\x5d\\xcd\\xd8\\xe2\\x36\\xaf\\xaf\\x36\\xc3\\xeb\\x5f\\xd7\\x1c\\\n\\xc4\\x05\\xa7\\x4f\\xe7\\x8a\\xd2\\xe3\\xd6\\xa6\\xb8\\xa0\\x4a\\x2e\\xfa\\x6e\\\n\\x70\\x56\\x54\\xf7\\x7b\\x5b\\xe8\\x35\\xd4\\xfe\\xb8\\x73\\x91\\x94\\x2c\\x0d\\\n\\xcd\\x6b\\x89\\x0d\\xac\\x49\\xa8\\x1a\\x79\\x69\\x4a\\x63\\x29\\x2c\\xec\\x5f\\\n\\x35\\x27\\xf8\\x89\\x83\\x52\\xc9\\x59\\x8d\\x78\\x40\\x52\\xa7\\x4e\\x5f\\x96\\\n\\x26\\xca\\x9c\\xbc\\x19\\x57\\x90\\x31\\x6c\\xad\\x02\\xe8\\x56\\xde\\x5a\\xea\\\n\\x76\\x18\\x9d\\x60\\xaf\\x04\\xb3\\x34\\x44\\x7c\\x3a\\xb1\\xb6\\xbb\\x69\\xa5\\\n\\x0d\\x7d\\x30\\xaf\\x9a\\xa5\\xe4\\xd2\\xe6\\xea\\x2a\\x7f\\x3f\\x41\\x88\\x8c\\\n\\x06\\xab\\x2c\\xaa\\x09\\x1d\\x36\\x3f\\x5d\\xb1\\x94\\x31\\xf9\\xa1\\xb1\\x85\\\n\\xd4\\x20\\xe8\\x2a\\xad\\xa5\\x4a\\x9e\\xdd\\x31\\x14\\x79\\xfc\\xb4\\x75\\x09\\\n\\x5f\\x29\\x3a\\x69\\x53\\x70\\xed\\xbe\\xb8\\x25\\x25\\x8f\\x82\\xd5\\x61\\x4f\\\n\\x87\\xd3\\x53\\xf2\\xa5\\x30\\xab\\x91\\xcb\\xa4\\x8f\\xc4\\x16\\x68\\x19\\x98\\\n\\xf4\\x34\\xd4\\x52\\xbf\\x86\\x04\\x1e\\x2f\\x94\\x8a\\x1c\\xdc\\x48\\x1c\\x94\\\n\\x5e\\x63\\xea\\xac\\x28\\xca\\xdf\\x2c\\x26\\x7b\\xc2\\x73\\xad\\x3f\\xb4\\x3a\\\n\\xc5\\xec\\x8f\\x41\\x2a\\x16\\x3a\\x15\\x93\\x4d\\x0e\\xc6\\xe1\\xb6\\x17\\x25\\\n\\xe2\\x19\\x81\\x91\\x5c\\x9c\\x5c\\x69\\xe4\\x5f\\x7d\\x4e\\x5b\\x82\\xc7\\x6e\\\n\\xed\\xf3\\xa5\\x31\\x36\\x6f\\xc4\\xca\\x78\\x86\\x7d\\x66\\x64\\x43\\x29\\x2d\\\n\\x11\\x09\\xe4\\x61\\x00\\x36\\x06\\x20\\x55\\xbe\\xf6\\x0e\\x5b\\xc2\\x72\\xeb\\\n\\x0c\\x60\\x10\\x08\\x41\\x1c\\x68\\x83\\x4a\\xd0\\x0d\\xa9\\x8c\\xcf\\x88\\xe7\\\n\\xd5\\xa4\\xe2\\xbf\\x11\\x09\\x24\\x5e\\x6b\\x50\\xd4\\xea\\x83\\xe1\\x1f\\x51\\\n\\x8d\\x36\\x0a\\x34\\xfe\\xb5\\xe9\\x82\\xd4\\x01\\x47\\xd4\\xd3\\xeb\\xfc\\x06\\\n\\x3b\\x7f\\xab\\xe6\\x7a\\xe9\\xb0\\xc7\\xb2\\xc1\\xb8\\xfd\\xa3\\x2d\\x6a\\xa0\\\n\\x8d\\x94\\xf5\\xaf\\x53\\xf2\\xc7\\x0d\\x74\\x2f\\xa7\\xd4\\xf3\\x1f\\xae\\x3e\\\n\\x11\\xf2\\xa7\\x5c\\x4b\\xc2\\xc8\\xcb\\x9c\\x9b\\x31\\x92\\x9e\\x26\\x9a\\x34\\\n\\x67\\x58\\x3d\\xa3\\x92\\xd0\\xc0\\x1a\\xb1\\x56\\x35\\x0b\\xe5\\xdb\\xbe\\x21\\\n\\xb8\\x36\\x5e\\x41\\x56\\x21\\xae\\x4d\\x8f\\x2f\\xae\\xb5\\xa6\\x28\\x49\\x41\\\n\\xf6\\xbe\\x0d\\x3d\\x7d\\x7d\\x71\\x41\\x2f\\xe1\\xfd\\x57\\xf0\\xc5\\x8d\\x21\\\n\\xa9\\xd0\\x0a\\x68\\x6b\\x87\\xf0\\xcc\\xb0\\x11\\xe5\\xfc\\x38\\xff\\x00\\x88\\\n\\x23\\x94\\xcf\\x34\\xb6\\x86\\x91\\xe9\\xb9\\x56\\xe5\\x4f\\xb3\\x6f\\xae\\x04\\\n\\x61\\xbd\\xa5\\x00\\x2c\\xc2\\xd2\\x5a\\x30\\x0f\\x2b\\x54\\xeb\\xea\\x6b\\x8a\\\n\\x86\\x0a\\xc3\\xe1\\x6d\\x0d\\x70\\x73\\xd7\\x5f\\xee\\xda\\x08\\x21\\x03\\xfc\\\n\\xf7\\x20\\x99\\x19\\xc7\\x32\\xad\\xa2\\xca\\x77\\xd7\\x1f\\xe2\\xdc\\x4b\\x19\\\n\\xad\\x8a\\xab\\x6d\\x80\\xea\\x14\\x5b\\xa3\\x01\\xdc\\xe3\\xdd\\xf3\\x69\\xaa\\\n\\x92\\x3f\\x43\\x81\\x00\\x41\\xc6\\x99\\x17\\x8c\\xca\\x41\\x31\\xad\\xc4\\x88\\\n\\xab\\xf6\\x55\\x19\\x3d\\x4b\\x57\\x11\\xb4\\x4d\\x73\\x24\\xd1\\xb2\\x2d\\x6b\\\n\\x6f\\x0d\\x26\\x99\\xda\\xbd\\x2d\\x54\\x37\\x6f\\xe7\\x3f\\x6b\\x19\\x89\\x25\\\n\\xa7\\x15\\xe5\\x90\\xbd\\x46\\xb5\\x2d\\x77\\xcf\\x52\\x4e\\x3b\\x8f\\x41\\xf9\\\n\\x63\\x4d\\x0e\\xe7\\x6a\\x63\\x50\\x3f\\xaf\\xe5\\x8a\\x83\\xa1\\xa5\\x45\\x75\\\n\\xdf\\xbe\\xf8\\x3e\\xec\\xbd\\x9a\\xf4\\x5f\\x5a\\x7f\\xbf\\x5e\\xb8\\x8e\\xbe\\\n\\xed\\x86\\xac\\xac\\xcb\\xa2\\xea\\x37\\xea\\x7e\\x5d\\xb0\\xbc\\x09\\x16\\x26\\\n\\x57\\xac\\x6e\\x75\\x03\\xba\\xe8\\x74\\x56\\x1f\\x4c\\x19\\x29\\x7c\\x28\\x6a\\\n\\x5e\\x12\\x2e\\x3e\\x96\\xd7\\xbe\\xd8\\x8e\\x09\\x10\\x47\\x9a\\x88\\xaa\\xc6\\\n\\x64\\x1e\\xf0\\x2e\\xde\\x63\\xcd\\xd0\\xd4\\x0c\\x43\\x3d\\x47\\x11\\xeb\\x1f\\\n\\x5a\\x35\\xa6\\xef\\x95\\x70\\x3f\\xaf\\xc7\\x7c\\x08\\x62\\x24\\x20\\xa1\\x91\\\n\\xc9\\xd1\\x17\\xad\\x14\\xee\\x48\\xda\\x83\\x7d\\xe9\\x8a\\xc5\\x00\\xe2\\x75\\\n\\x9a\\x97\\x48\\xda\\x6b\\xa9\\xc6\\xa1\\xb0\\x49\\xda\\x95\\xd7\\x15\\xcd\\x66\\\n\\xe2\\x46\\x1a\\xda\\x5c\\x31\\x1f\\x34\\x1a\\x93\\x4d\\x86\\x82\\x98\\x6f\\x67\\\n\\x86\\x69\\xda\\xfd\\x34\\x54\\x8e\\x9d\\x29\\x5d\\x75\\xa1\\xc0\\xca\\xc7\\x97\\\n\\xb2\\xa3\\x43\\x70\\x34\\x72\\xcb\\x4f\\xd0\\xed\\x88\\xa8\\xdf\\x64\\x6d\\xe9\\\n\\x4d\\x70\\x97\\xbe\\xf2\\x04\\x5e\\x86\\xde\\x83\\xfd\\x66\\xea\\xe2\\xb6\\xa8\\\n\\xa1\\x21\\x4f\\xdd\\xf8\\x69\\xf3\\x18\\x2b\\xa6\\x9b\\xff\\x00\\xbe\\x08\\x53\\\n\\x6f\\xe2\\x3f\\x4d\\x7f\\x0c\\x73\\xf9\\x87\\xcc\\x83\\xf8\\xe3\\x91\\x6a\\x0d\\\n\\x7e\\x7f\\x5c\\x73\\x28\\x3e\\x83\\xf2\\xc7\\x32\\xd3\\xe4\\x29\\x87\\x9d\\x7c\\\n\\x5b\\xc4\\x32\\xf7\\x53\\xdd\\xc7\\x98\\x70\\x80\\xfd\\xd1\\xd0\\x62\\x30\\x59\\\n\\xb8\\x2b\\x40\\x8a\\x41\\xa2\\xea\\x3a\\x1f\\x96\\x1b\\x37\\x96\\x76\\x19\\xa8\\\n\\xa2\\x2f\\x7a\\x3b\\x0f\\x86\\xba\\x50\\xfe\\x5a\\xe3\\x31\\x0e\\x7a\\x19\\x4b\\\n\\x21\\x65\\x12\\x98\\xc8\\xfa\\xd6\\x98\\x49\\xe4\\x14\\x17\\x77\\xd6\\x83\\x51\\\n\\xd3\\x4c\\x26\\x52\\xa0\\xb8\\xcc\\xa0\\x55\\xaf\\x94\\x2b\\x75\\xa8\\xdb\\xb6\\\n\\x22\\xce\\x43\\x34\\x51\\x15\\x45\\x59\\x11\\x88\\x50\\x68\\x29\\x7a\\x9f\\x2f\\\n\\xcf\\x06\\x3c\\x84\\xbc\\x7c\\xc5\\xd6\\x3c\\x85\\x80\\x8a\\x3a\\xfa\\xf5\\xfa\\\n\\x63\\x2a\\x8b\\x9e\\x93\\x3f\\xe2\\x19\\x90\\x15\\xa2\\x41\\xca\\xa5\\xbc\\xb1\\\n\\xa2\\xf7\\xaf\\x28\\x3d\\xf1\\x0f\\x8a\\x78\\xff\\x00\\x8a\\xae\\x51\\xe4\\x02\\\n\\x41\\x94\\xcb\\xaa\\xbc\\xf1\\xa9\\xa1\\xb6\\x49\\x9c\\xda\\xac\\x76\\x21\\x57\\\n\\x7c\\x32\\xe5\\x6b\\x2e\\x62\\x96\\x99\\x5e\\x43\\x3c\\xf4\\x1b\\xe8\\xbc\\xab\\\n\\xf9\\x7e\\x58\\x59\\xb2\\x0f\\x23\\x4d\\x13\\xd5\\x50\\xf9\\xbd\\x74\\x1b\\xff\\\n\\x00\\x43\\x19\\x8c\\xdb\\x2e\\x6d\\x96\\x43\\x49\\x4c\\x37\\x47\\x5d\\x36\\x26\\\n\\xbd\\x3b\\x57\\x19\\x85\\x9e\\x1c\\xc2\\xe5\\xd9\\x2b\\x1b\\x92\\x2a\\x8f\\xf7\\\n\\x80\\x3a\\xfa\\xf7\\xc7\\xf7\\x6e\\x4c\\xf3\\x99\\x82\\x4f\\x2f\\xc5\\x6a\\x31\\\n\\x32\\x01\\xdb\\x41\\x4a\\x7a\\xe0\\x6c\\x15\\x54\\x22\\x8d\\x4e\\x80\\x50\\x53\\\n\\xb6\\x3b\\x9f\\xeb\\xf8\\x91\\x8d\\x45\\xa0\\x6f\\xf2\\xeb\\x43\\x8e\\x1a\\x5d\\\n\\x1c\\x11\\xff\\x00\\x99\\x5f\\x33\\x13\\xa9\\xa7\\x4d\\x2b\\xa1\\xef\\x89\\x9d\\\n\\x76\\xba\\x9e\\x9a\\x69\\x5c\\x2a\\x37\\xc2\\x36\\xb6\\x9b\\xe1\\x64\\xcc\\xc9\\\n\\xee\\x50\\x96\\x64\\x52\\x2e\\x3d\\x87\\xd4\\x8a\\x62\\x49\\x72\\xd1\\x70\\x60\\\n\\x24\\x50\\x3b\\x07\\x6b\\x47\\x53\\xb6\\xbf\\xbb\\x4f\\xc3\\x05\\x68\\x29\\x4a\\\n\\x06\\xeb\\xa7\\xcf\\x6c\\x59\\x32\\xf1\\x55\\x69\\x4b\\xc5\\x7e\\xa7\\xa1\\x3e\\\n\\xb4\\xc5\\xd1\\x2d\\x87\\xd3\\x97\\xf4\\xc2\\xde\\x9c\\xd7\\x0b\\x5d\\x74\\xb4\\\n\\x7f\\xfc\\xb0\\xb2\\x06\\xb2\\x3f\\x13\\xb6\\x7c\\xbc\\x85\\x79\\x66\\xd2\\x92\\\n\\x42\\xe7\\xed\\x24\\x94\\x27\\xb0\\x71\\xa6\\x01\\x59\\x00\\x93\\x2c\\x55\\x27\\\n\\x88\\x50\\x97\\x84\\x6b\\x53\\xb5\\x40\\x22\\xdd\\x7e\\x78\\xf6\\xb8\\x38\\xa9\\\n\\x04\\x94\\x35\\xd8\\xc5\\x23\\x7f\\x96\\xeb\\xf3\\xf2\\x9d\\x8f\\xa6\\x1e\\x29\\\n\\x0b\\xba\\xd7\\x5a\\xee\\x0a\\x76\\xfe\\x78\\x50\\xa4\\x8a\\x69\\xbe\\xd8\\x33\\\n\\x30\\xbe\\x1c\\xa9\\x52\\xd4\\x1e\\x79\\x77\\x11\\x93\\xfb\\xb4\\x62\\x3f\\x9e\\\n\\x25\\x90\\xe9\\xc4\\x2e\\x62\\x15\\x37\\x16\\xd4\\x2d\\x47\\xee\\x81\\x6f\\xcf\\\n\\x13\\x67\\xf3\\x0e\\x67\\x99\\x32\\xaf\\x48\\x74\\x00\\xe6\\x67\\x01\\x59\\x03\\\n\\x74\\xfb\\x2c\\x4f\\x41\\x4a\\x6b\\x89\\xe5\\x94\\x96\\x69\\x24\\x32\\x35\\x82\\\n\\xe4\\xe7\\x24\\xf9\\xb6\\xd3\\x60\\x3a\\x63\\xdd\\x44\\x29\\xf6\\x9c\\xe1\\x86\\\n\\x8a\\x3c\\xa4\\xf7\\x1e\\x95\\xc7\\x2d\\xc5\\xce\\x84\\xd6\\xa0\\x0e\\xbe\\x95\\\n\\xfd\\x31\\x4a\\x13\\x4f\\x36\\xbd\\xb5\\xc2\\xca\\x47\\x2b\\x37\\x94\\xfd\\x8d\\\n\\x87\\xf3\\xc0\\x98\\x35\\x89\\x10\\x35\\x4d\\x45\\xfc\\xd5\\xfc\\x07\\xd7\\x1c\\\n\\x34\\xd6\\xf5\\xaa\\x16\\xd8\\x76\\x2b\\xf2\\xc4\\x89\\x9b\\x94\\xf1\\x6e\\x02\\\n\\xb6\\xf9\\xb5\\xd1\\xc1\\x5a\\x0a\\x7d\\xaa\\x8d\\x31\\x16\\x63\\x96\\xf5\\x7a\\\n\\xac\\x8a\\x07\\x97\\xa1\\xd3\\xe1\\x3f\\x3c\\x24\\xf1\\x44\\x92\\xc9\\x19\\x57\\\n\\x17\\x0a\\xd3\\xe0\\x62\\x94\\x3b\\x85\\xdb\\x1e\\xf1\\x6c\\x61\\xa1\\x04\\x6e\\\n\\x7d\\x3d\\x6b\\xa6\\x06\\x62\\x55\\xb6\\x5c\\xc7\\x35\\x1a\\x95\\x45\\xd2\\xca\\\n\\x76\\x27\\x7c\\x6b\\xd3\\x5f\\xa7\\x5a\\xe1\\xa2\\x93\\x3b\\x15\\xe1\\x59\\xf9\\\n\\x5a\\xea\\x5b\\x53\\x6d\\x46\\x97\\x69\\xa0\\xc4\\xb0\\x64\\xf3\\x0d\\x90\\xca\\\n\\x03\\xca\\xb1\\x9a\\x34\\x88\\xb7\\x54\\xb9\\xdc\\x97\\xdc\\x6c\\x31\\x59\\x26\\\n\\x9e\\x62\\x7e\\xdb\\xf5\\xde\\xa7\\x16\\xc6\\xbc\\x28\\x86\\x8d\\x27\\xf2\\xee\\\n\\x71\\x78\\x15\\x60\\x05\\x49\\xf3\\x7f\\xb6\\x38\\x55\\xe6\\x25\\x45\\x4e\\xca\\\n\\x6b\\xab\\x1f\\x97\\x7c\\x43\\x1e\\x4e\\x61\\x23\\x8a\\x3c\\xb2\\x2f\\xc3\\x4d\\\n\\x6d\\x0c\\x69\\xcd\\x5c\\x0c\\xbe\\x6a\\x29\\x27\\xe2\\xcd\\xc9\\x3b\\x93\\x64\\\n\\x7a\\x53\\xe2\\x3f\\xfc\\x7a\\x77\\xc5\\xec\\xc1\\xcc\\xbf\\x64\\x72\\xaf\\xa5\\\n\\x76\\x38\\xb4\\x3a\\x5e\\xaa\\x19\\x96\\xe0\\x58\\x03\\xe5\\xaa\\x6e\\xb7\\x74\\\n\\xae\\x39\\x69\\xfd\\x7a\\x62\\xe4\\x62\\x3f\\x4c\\x5b\\x25\\x47\\xad\\x77\\xc0\\\n\\x20\\xff\\x00\\xdd\\xae\\x36\\xfc\\x29\\x8b\\x9c\\x32\\x5d\\xcd\\xa8\\x2b\\x55\\\n\\xae\\xeb\\xa6\\xaa\\x7b\\xed\\x8f\\x65\\xcd\\xb5\\xc8\\xb4\\x0a\\x8f\\xb1\\x0d\\\n\\x50\\x74\\x3d\\xbe\\x58\\x47\\xcb\\xe5\\xe2\\x09\\x39\\xa5\\xf1\\xa0\\x1d\\x89\\\n\\xe9\\xfd\\x6f\\x85\\x58\\xb9\\xe3\\x90\\x73\\x21\\x3a\\x8b\\xbe\\x25\\x6e\\x9d\\\n\\xfd\\x70\\x25\\x95\\x9b\\x33\\x99\\x69\\x3d\\xdc\\x43\\xcb\\x71\\x35\\x5a\\xeb\\\n\\x88\\x5b\\xc5\\x5c\\xc5\\x95\\xe5\\xb3\\x27\\x19\\x31\\x45\\x4f\\xbe\\x41\\xe7\\\n\\xd3\\xe1\\xdb\\x1e\\xd8\\x9c\\x19\\xf3\\xd9\\xa8\\xcc\\x23\\x2e\\xa1\\x1e\\x20\\\n\\x2d\\xe5\\x94\\x47\\xb8\\x91\\x3a\\x16\\x24\\xfd\\xd5\\xc0\\xf1\\x09\\xa0\\xe2\\\n\\xb0\\x92\\xe8\\xde\\x61\\xee\\xa1\\xd6\\xb7\\x5a\\x7b\\x0d\\x86\\x1a\\x99\\xbc\\\n\\xcc\\x8a\\x05\\x23\\x19\\x78\\x9f\\x84\\x3e\\x61\\x41\\xdb\\xa5\\x4f\\xd7\\x05\\\n\\x65\\xcd\\x2d\\xde\\x52\\x92\\x42\\xc1\\xee\\x3d\\xd4\\x7c\\xb5\\x3e\\xb8\\x67\\\n\\x99\\x22\\xe3\\xc9\\xe6\\x92\\x44\\xd3\\xe9\\x76\\xdf\\x2c\\x4d\\x2e\\x4e\\x8c\\\n\\x8d\\x56\\x75\\x5d\\xaa\\x7c\\xd4\\xc0\\x8c\\xd1\\x23\\x95\\x42\\xb5\\xba\\x10\\\n\\xb5\\xa6\\x84\\xec\\x74\\xa9\\x3e\\xb8\\x93\\x37\\xe1\\x51\\x2a\\x64\\x32\\xe5\\\n\\xb8\\xd2\\x49\\x50\\x09\\xa7\\x30\\xb8\\x79\\xe4\\x63\\xb9\\x07\\x0d\\x0a\\xb4\\\n\\x7c\\x48\\xeb\\x7c\\x77\\x73\\x0a\\x6f\\x45\\xea\\x3d\\x69\\xb7\\xae\\x0e\\x94\\\n\\xee\\x7f\\x3d\\xfd\\x37\\xaf\\xa6\\x38\\x49\\xa4\\x55\\x3a\\xae\\xed\\xf8\\x6d\\\n\\x8b\\x47\\x5a\\x54\\xfd\\x74\\xd3\\xbe\\x0b\\x46\\xb4\\xd2\\xac\\x00\\xeb\\xdf\\\n\\x4c\\x15\\xcb\\x80\\xf2\\xb2\\x8a\\x3f\\x48\\xeb\\xd0\\x7d\\xa3\\xfa\\x6f\\x8b\\\n\\x9d\\x8c\\x92\\x33\\x5d\\xc3\\x27\\xf3\\xef\\xff\\x00\\x18\\x00\\xa8\\xd3\\xd2\\\n\\x94\\xa8\\xc6\\x94\\xfc\\xb1\\x5a\\xe3\\x65\\xfc\\x31\\xe5\\xd4\\x10\\x7f\\x8e\\\n\\xc7\\x12\\x65\\x5b\\x97\\x3d\\x90\\xac\\xd9\\x46\\x07\\x5d\\x05\\x59\\x2b\\x42\\\n\\x45\\x57\\xec\\xd2\\x86\\x98\\x8a\\x5c\\xbc\\xbf\\xe2\\x2d\\x5b\\x6e\\xaf\\xbc\\\n\\x35\\xa3\\x45\\x28\\x3b\\x82\\x41\\xd7\\xe6\\x71\\x98\\xcb\\x4e\\xbe\\xea\\x75\\\n\\x28\\xe1\\x74\\x65\\x7d\\x4b\\x2e\\x86\\xe0\\xe2\\xde\\x4e\\xb5\\xa0\\xeb\\x86\\\n\\xf0\\xbf\\x13\\x62\\xd6\\xb7\\xb8\\xcc\\x95\\x2b\\xc4\\x88\\x92\\xaa\\xcd\\xd2\\\n\\x40\\x69\\xaf\\xd9\\xf9\\xe3\\x8d\\xc7\\x05\\x5d\\x81\\x8c\\x52\\xe2\\xe4\\xea\\\n\\x11\\x28\\x68\\x6a\\x68\\xbd\\xc6\\x12\\x31\\xcf\\x22\\x44\\x0c\\xaa\\x9c\\x97\\\n\\x66\\xe5\\x1c\\x47\\xd7\\xec\\xa1\\xa4\\x35\\xde\\xd0\\x47\\x5c\\x48\\xf2\\xa9\\\n\\xb9\\x0b\\x33\\x04\\xd0\\x1f\\xb2\\x13\\xb5\\xab\\xa0\\x23\\xad\\x31\\x95\\x4f\\\n\\x8f\\x30\\xa6\\x6d\\xf9\\x54\\x52\\xdb\\x47\\xaf\\xea\\x75\\xc1\\x76\\xfa\\x01\\\n\\xd3\\xfe\\x71\\x41\\xe5\\xeb\\xeb\\xf2\\xf4\\xc0\\x55\\xa5\\xdb\\x2f\\xa1\\xfb\\\n\\x44\\x76\\xed\\x84\\xba\\xa4\\x85\\xba\\xee\\xa6\\xb8\\x29\\xcc\\xae\\xe4\\x74\\\n\\xf8\\x4f\\x5f\\x41\\x4d\\xb1\\x6f\\x41\\x42\\x07\\x6f\\xf8\\xc7\\x0f\\xce\\x4a\\\n\\x94\\xde\\xb4\\xa8\\xfe\\xbe\\xb8\\x64\\x72\\x78\\xb0\\x29\\x11\\x1d\\x81\\x07\\\n\\x63\\xeb\\x4e\\xf8\\x66\\x23\\xb0\\xfe\\xb4\\xfe\\x38\\x08\\x8f\\xa2\\xd6\\x95\\\n\\xa9\\xf4\\xa6\\xff\\x00\\x5f\\x4c\\x4b\\x1b\\xd0\\x48\\x97\\x29\\x03\\x6d\\x46\\\n\\x9f\\x9e\\x22\\xc9\\xe6\\x16\\x8b\\xc7\\x76\\x92\\xea\\xd0\\x88\\xcd\\xe6\\xde\\\n\\xe4\\x81\\x87\\x5a\\x89\\x26\\x58\\xfd\\xde\\x59\\x1b\\x56\\x23\\x95\\x41\\xd7\\\n\\xdd\\xf4\\xa9\\x3c\\xd8\\x6c\\xb7\\x26\\x55\\x64\\x2c\\x64\\xe1\\x7e\\xd0\\xa5\\\n\\x74\\x8a\\xfe\\x81\\x46\\x86\\x9e\\x7d\\xce\\x2b\\x5f\\xc7\\xfa\\xfa\\x63\\x4d\\\n\\xce\\x94\\xef\\xfc\\xf4\\xdb\\x1c\\x67\\xcb\\xcd\\x1e\\x54\\x73\\x19\\x4c\\x4f\\\n\\x56\\xfb\\xab\\xa1\\xd7\\xef\\x50\\x69\\xa6\\x28\\x82\\xd0\\x9e\\x55\\x63\\xbf\\\n\\xab\\x57\\x5b\\xb5\\xdf\\x12\\xc4\\x4e\\xd1\\x57\\xd6\\xa3\\x7a\\x7d\\x30\\xd9\\\n\\x78\\xf6\\xf8\\xdf\\xe1\\x03\\xb5\\x0e\\x9f\\x3e\\xf8\\x19\\xac\\xee\\x82\\xa0\\\n\\xc7\\x08\\xd1\\x59\\x75\\xd5\\xeb\\xdb\\x4a\\x22\\xf4\\xaf\\x7c\\x56\\x31\\xc3\\\n\\x41\\xb0\\x1d\\x3e\\x78\\x9e\\x29\\xaf\\x9d\\x2c\\x63\\x00\\x35\\xe4\\x9b\\x5b\\\n\\x3a\\xec\\x49\\xe6\\xef\\x4d\\x71\\x36\\x7a\\x3c\\xd3\\xae\\x6a\\x7a\\xde\\xca\\\n\\xcd\\x4d\\x69\\xcb\\x4e\\xdd\\x3f\\x3c\\x64\\xe3\\x46\\xe0\\x9c\\xb3\\x5d\\x24\\\n\\x89\\xa3\\x66\\x1c\\x0d\\x38\\x95\\x3a\\xaf\\xa6\\xba\\xeb\\xd7\\x0e\\x73\\x90\\\n\\xb4\\x99\\xe8\\xec\\x41\\x1a\\x9a\\x2c\\xc5\\xbc\\xcf\\x53\\xe5\\xb4\\x6f\\xd6\\\n\\xea\\x5b\\xcb\\x86\\x90\\xb1\\x81\\xa3\\x8f\\x88\\xeb\\x2e\\xeb\\x40\\x6f\\xb7\\\n\\xed\\xa8\\xeb\\xdf\\x12\\x7b\\x06\\x72\\x1c\\xc1\\x86\\x86\\x50\\x0e\\xdf\\x0d\\\n\\x3a\\x6c\\x77\\xdf\\x5c\\x7b\\xbb\\x55\\x68\\x34\\x60\\xec\\x6b\\xf3\\xc4\\x12\\\n\\x47\\x97\\xcb\\x43\\xe2\\x31\\xe4\\xd4\\x65\\xb3\\x10\\x84\\x0f\\x13\\x84\\xd0\\\n\\x1b\\x77\\x8c\\x75\\x43\\xa6\\xe4\\x50\\xe2\\x4c\\x86\\x76\\x33\\x1e\\x6b\\x27\\\n\\x3d\\xbc\\x95\\x29\\x2c\\x55\\xd1\\xd3\\xba\\x30\\xda\\xba\\x8c\\x65\\x06\\x7a\\\n\\xc5\\x58\\x8c\\x6c\\x56\\x42\\x18\\xcb\\xa6\\xc5\\x7d\\x76\\x34\\xa6\\x32\\x1e\\\n\\x3b\\xe0\\x7e\\xe7\\x28\\x8a\\xab\\x9b\\x09\\xd2\\x03\\xa2\\x39\\xed\\xc3\\xd9\\\n\\x8d\\x0e\\x84\\x63\\x27\\x2e\\x5e\\xac\\xab\\xef\\x59\\xeb\\xe6\\x2b\\xf8\\xd7\\\n\\xf0\\xc2\\xaa\\xc8\\xd1\\x46\\x82\\x8b\\xdf\\xb6\\x9d\\x3f\\x2a\\xe0\\x67\\xfc\\\n\\x4e\\x77\\x91\\x21\\xf2\\x46\\xcd\\x57\\x90\\xf7\\xe6\\xd9\\x6a\\x35\\xef\\xb6\\\n\\x04\\x70\\x9e\\x04\\x23\\x44\\x8d\\x05\\x00\\x1d\\xcd\\x3b\\xf7\\xa9\\xf9\\x61\\\n\\x32\\xb1\\xa0\\x97\\x88\\xdc\\xb7\\x9e\\x9b\\x54\\xed\\xfe\\xd8\\x2d\\x97\\xca\\\n\\x19\\xa4\\x6f\\x8c\\x46\\xb4\\x1f\\x39\\x1b\\x4f\\xc3\\x12\\x9f\\x1a\\xce\\xfb\\\n\\x3c\\xaa\\x03\\x70\\x63\\x00\\x92\\x46\\xa0\\x00\\xc3\\x53\\xdc\\xe8\\x3d\\x70\\\n\\xd1\\xc5\\x17\\xf8\\x5d\\xae\\x90\\xfb\\xc6\\x07\\x7e\\x5d\\xad\\xc0\\x01\\xa9\\\n\\x97\\x96\\x80\\x3d\\x74\\x00\\xd6\\xab\\x5e\\xeb\\xf3\\xf2\\xd3\\x0b\\xe1\\x3e\\\n\\x18\\x80\\x31\\xa2\\x93\\x1f\\x56\\x63\\xb6\\x9b\\xb7\\xae\\xa5\\xbd\\x31\\x37\\\n\\x88\\xe6\\x9c\\xc3\\x99\\xcc\\x8d\\x9d\\x79\\x98\\x36\\xe9\\x73\\x8d\\x00\\xf4\\\n\\xc7\\xb1\\xe5\\xd6\\xa1\\x3f\\xf3\\x53\\x56\\x81\\x6b\\xfe\\x52\\xd2\\xbc\\xed\\\n\\x4b\\x98\\x57\\x40\\x17\\x7b\\xb1\\x67\\x02\\x3d\\xfc\\xc6\\xa0\\xd3\\x15\\x82\\\n\\x3e\\xb5\\x24\\xf3\\x77\\xe9\\x8c\\xdc\\x3e\\x20\\xcb\\x96\\x9e\\x58\\x78\\x70\\\n\\xbf\\xc0\\x74\\x6a\\x83\\xd8\\x9f\\xe5\\x89\\x23\\x42\\xac\\xa8\\xe5\\x55\\x85\\\n\\x68\\xc4\\x1d\\x08\\xf4\\xc5\\xce\\x0d\\xfd\\xfa\\x7f\\x1f\\xd7\\x00\\x53\\xeb\\\n\\xf8\\xe2\\xdf\\xa7\\xfc\\xf7\\xc6\\x8c\\x3b\\x63\\x99\\xb5\\xe8\\xab\\xab\\xfe\\\n\\x1d\\x07\\xaf\\xe5\\x89\\x1f\\x63\\x6d\\x05\\x3e\\xf7\\x7e\\xe7\\xe8\\x35\\xc7\\\n\\x1a\\xe2\\x15\\x45\\xf2\\x5d\\x5b\\x02\\x0d\\x58\\xb9\\x3d\\x34\\xf4\\xc4\\xd3\\\n\\xe5\\x1a\\xb1\\x4b\\x1c\\xb3\\xe5\\x89\\x34\\x00\\x56\\xe2\\x14\\xfd\\xa0\\xe1\\\n\\xc7\\xdd\\x42\\x37\\xc3\\xa6\\x61\\x4a\\x49\\x36\\xa6\\x4e\\x9c\\x74\\x35\\x0e\\\n\\x28\\x7e\\x2b\\x8a\\x9d\\x7a\\x7d\\x31\\x26\\x7c\\xf2\\x66\\xbc\\x29\\x63\\xcc\\\n\\x2c\\x89\\xb9\\xcb\\x4b\\x20\\xe3\\x20\\x34\\x24\\x80\\xc4\\x3d\\x74\\xb4\\xae\\\n\\x22\\x86\\x49\\x1a\\x6c\\xbe\\x46\\x26\\xcd\\xda\\x6a\\xc5\\x78\\x0b\\x7a\\xd3\\\n\\xd1\\xa4\\xb6\\xbf\\x86\\xb8\\x57\\xa5\\x64\\xe2\\x34\\xa1\\x6d\\xee\\x74\\x0d\\\n\\xdc\\x0d\\xfa\\x57\\xd3\\x15\\x51\\x50\\x8b\\xc5\\x71\\xb0\\x1a\\x5e\\x53\\xd4\\\n\\xf3\\x56\\xdd\\xcd\\xb4\\xf5\\x02\\x03\\xc9\\xc0\\x16\\x81\\xbd\\xbd\\x68\\x40\\\n\\x34\\x15\\xdf\\x0a\\x09\\xd2\\xeb\\x47\\xc3\\xf4\\x6f\\x5f\\xd7\\x00\\x03\\x4f\\\n\\x4a\\x6b\\xf4\\xde\\xb8\\x8c\\xd2\\xe3\\xc5\\xab\\x57\\x5e\\x4f\\xcb\\x1c\\xf5\\\n\\x1f\\x4d\\xa9\\xd2\\xbe\\xbd\\x86\\xb8\\x6c\\xc3\\x56\\xe9\\x0a\\xda\\x07\\xd9\\\n\\x1d\\x2b\\xdb\\xe9\\xa6\\xf8\\x33\\x4b\\x2a\\x84\\x48\\x89\\x65\\xa8\\xbe\\xac\\\n\\x28\\xa2\\x9f\\x3d\\x06\\x20\\x68\\x15\\xd1\\x63\\x8a\\x8d\\xad\\x86\\xf3\\x5d\\\n\\xe9\\xb9\\x14\\xdf\\xd7\\x04\\x9d\\x50\\x47\\xab\\x57\\x6d\\x76\\xdb\\x5f\\x97\\\n\\xe7\\x8b\\x4f\\x94\\xef\\xe9\\x8a\\x2f\\x5d\\x41\\x35\\xa1\\x1d\\x75\\xc4\\xb0\\\n\\xfc\\x32\\x2d\\x05\\x76\\xba\\x9d\\x31\\x9a\\xcc\\xa7\\x34\\xd2\\xe5\\x98\\x65\\\n\\x5c\\xb5\\x56\\x26\\x92\\x88\\xcc\\x07\\x46\\xa0\\xaf\\xd7\\x0c\\xee\\x49\\x66\\\n\\x62\\xcc\\x58\\x9b\\x89\\xad\\x69\\x77\\xa9\\xd3\\x0c\\x78\\x62\\xef\\x4a\\x74\\\n\\xc5\\xac\\x28\\xb5\\xab\\x74\\xfe\\xbf\\x96\\x26\\xcf\\x4d\\x1a\\xcb\\x3a\\x72\\\n\\x43\\x04\\x9c\\xcb\\x1a\\xdb\\xac\\x96\\x9d\\x0b\\x16\\xa8\\x07\\xa5\\x3d\\x74\\\n\\x28\\xd1\\xa9\\x5a\\x1e\\x5b\\x47\\xc8\\x50\\x54\\xec\\x30\\x5b\\x87\\x1e\\x5d\\\n\\xbf\\xea\\xe8\\x8a\\x34\\xf8\\x9b\\x63\\xa7\\xcb\\x12\\x78\\x93\\x67\\x92\\x69\\\n\\x14\\x35\\x23\\x5b\\x6c\\x75\\x7d\\x2c\\x1a\\x92\\xcd\\xd7\\xa7\\xcb\\x06\\x69\\\n\\x10\\x15\\x57\\x27\\x5d\\x0d\\xd5\\xa8\\xb9\\x3b\\x53\\x6d\\x71\\xa9\\x2d\\x67\\\n\\x43\\xa5\\x3e\\x5f\\x21\\x82\\x1e\\xad\\xd4\\xff\\x00\\x20\\x31\\xa4\\x7f\\x2e\\\n\\xa7\\x5e\\xa7\\xe9\\xff\\x00\\x38\\x3a\\x54\\xfa\\x8f\\xf7\\xc0\\xe4\\x34\\x3e\\\n\\x98\\xe3\\x65\\x48\\x32\\x11\\xfb\\x37\\x24\\x02\\x75\\x1b\\x8d\\xb1\\x34\\x13\\\n\\xc4\\xf0\\x2c\\x57\\xc7\\x37\\x0d\\x74\\x20\\x79\\xbd\\xe2\\x79\\x96\\x9e\\xbf\\\n\\x4c\\x4e\\x9e\\x1f\\x3b\\x65\\xe3\\x6a\\xc7\\x58\\x4f\\x0c\\x95\\xa8\\xfb\\x34\\\n\\x63\\xaa\\xeb\\x53\\xf8\\x61\\x20\\x19\\xc2\\xea\\x82\\x8a\\xd2\\x73\\x3d\\x3d\\\n\\x49\\xa9\\x38\\x45\\x5c\\xcb\\x18\\x00\\xe7\\x85\\x9b\\xf2\\xff\\x00\\x8d\\x70\\\n\\xfe\\x2a\\xb9\\x38\\xa2\\x8e\\x25\\xb4\\x4e\\xeb\\x6b\\x30\\xec\\xb5\\xd5\\xfe\\\n\\x67\\xe5\\x8e\\x24\\xf7\\x4d\\x98\\xd7\\xcc\\xd4\\x45\\xfb\\xa0\\x0a\\x7e\\x14\\\n\\xc7\\x88\\xff\\x00\\x67\\x0d\\x14\\xb6\\x56\\x55\\x85\\xe5\\x36\\xc4\\xb7\\xe8\\\n\\x80\\x9e\\xa2\\xbf\\x86\\x98\\x3e\\x19\\xe2\\x11\\xaf\\xb5\\x40\\x94\\x08\\x0d\\\n\\xc1\\xc5\\x3c\\xd1\\x9f\\x89\\x5f\\xbf\\xf2\\xc3\\x1e\\x0b\\x85\\x5e\\x6a\\x05\\\n\\x23\\x4e\\x81\\x4d\\x35\\xfd\\xe1\\xbe\\x38\\x9e\\xc3\\x9a\\x10\\xff\\x00\\xd4\\\n\\xf6\\x79\\x2d\\xef\\xdb\\x6e\\xc7\\x0d\\x2d\\xf1\\x65\\xd2\\x3d\\x8c\\xd7\\x55\\\n\\xbf\\x70\\x53\\xf5\\xed\\x85\\xcc\\x78\\x94\\xcf\\x9b\\x68\\xfc\\xb0\\x8a\\x24\\\n\\x1b\\xd7\\xb5\\xc7\\xeb\\xa6\\x11\\x32\\xb1\\x47\\x97\\x0b\\xe5\\xb0\\x2a\\x8d\\\n\\x3a\\x6d\\xaf\\xae\\x24\\xcf\\x4e\\x85\\xe7\\x25\\x75\\xab\\x53\\x4f\\x4f\\x9e\\\n\\xfa\\x6d\\xbe\\x18\\x58\\x54\\x56\\x86\\x87\\x60\\x70\\x32\\x72\\xb1\\x11\\xcc\\\n\\x08\\x86\\x5f\\x85\\x24\\x3e\\x5a\\xd3\\x45\\x6e\\x9a\\xef\\x87\\x5f\\x17\\x47\\\n\\x95\\x3c\\x29\\xdd\\xd6\\x20\\x34\\x9a\\x7d\\x4c\\x2d\\x56\\xd0\\xa0\\x04\\x11\\\n\\x8b\\x59\\x12\\x08\\x21\\x16\\x2c\\x6b\\xe5\\xd3\\x73\\x51\\xbd\\x71\\x58\\xa8\\\n\\x0b\\xb9\\x77\\xb7\\x76\\x63\\xd7\\xd7\\x07\\xb8\\x3d\\xe9\\xf8\\x1c\\x70\\xdb\\\n\\x56\\xaf\\x6e\\x9d\\xf0\\x8e\\x3c\\xa5\\xab\\xbd\\xba\\xd7\\x5d\\xb5\\xdb\\xf8\\\n\\xe1\\xad\\x4a\\xe9\\xe6\\x20\\x8d\\x7d\\x31\\x63\\x6c\\x75\\xab\\x7f\\xbf\\x6f\\\n\\xe2\\x31\\xa1\\x1f\\xc3\\x02\\xe6\\xd7\\x60\\xa3\\x56\\x3f\\xd7\\x7c\\x69\\x58\\\n\\xe3\\xa9\\xf9\\x9f\\xaf\\xf2\\xc3\\xc9\\xb8\\xf2\\xef\\xaf\\x2f\\xf1\\xc1\\x33\\\n\\xcf\\x1c\\x48\\xba\\xd0\\x9f\\x78\\xf4\\xd1\\x68\\xa3\\x53\\xfd\\x54\\xe3\\x83\\\n\\x1a\\x7b\\x3c\\x0a\\xc4\\x55\\x49\\xba\\x51\\x4a\\x06\\x6d\\x69\\xaf\\xd9\\xd5\\\n\\x45\\x71\\x1f\\x87\\xd2\\x92\\xc5\\x73\\x8f\\x2b\\x2b\\x29\\xa0\\x61\\xe8\\x40\\\n\\x17\\x53\\xaf\\x6c\\x0f\\x0f\\xd4\\x4b\\x68\\x28\\x5b\\x96\\xb7\\x73\\xea\\x0d\\\n\\x29\\x6e\\xd8\\x8b\\x29\\x36\\xb9\\x6c\\xf4\\x6f\\x93\\x95\\x5b\\x6e\\x1c\\xaa\\\n\\x45\\x7e\\x9a\\x15\\xf4\\xd4\\x63\\xfb\\x46\\x38\\xc2\\x59\\x21\\x8d\\xa0\\x41\\\n\\x51\\x51\\x13\\x48\\x19\\x79\\x46\\xb5\\x31\\x58\\x4f\\x5b\\xab\\x8b\\x88\\x15\\\n\\xda\\xe3\\xf7\\x81\\xdb\\xb1\\xae\\x33\\xb9\\x8e\\x15\\x82\\x59\\xd6\\x14\\x73\\\n\\x75\\xd4\\x1c\\x84\\x2e\\x95\\x3e\\x5d\\x4f\\x4d\\x46\\x27\\x77\\x3a\\x99\\x1c\\\n\\xf5\\x6f\\x88\\xd3\\x5e\\xba\\x63\\x85\\x70\\x04\\x0b\\xae\\xa8\\xd0\\xaf\\x5f\\\n\\x97\\xae\\x2b\\x25\\x6b\\x5b\\x57\\x5d\\x1b\\xef\\x57\\x60\\x3d\\x71\\x3c\\x05\\\n\\xb9\\x82\\x23\\x46\\xa0\\x1d\\xbe\\x2e\\x6d\\xab\\x5d\\xbd\\x31\\x73\\x8f\\x26\\\n\\x8a\\x0e\\xc3\\xd7\\xb5\\x77\\xd7\\xf9\\x62\\x54\\x96\\x61\\x21\\xcb\\x5a\\x1e\\\n\\x34\\x3c\\xc5\\x8f\\x95\\x12\\x82\\x8d\\xf7\\x9b\\xa7\\xcf\\x12\\x4a\\xd7\\x73\\\n\\x31\\x6b\\x6b\\xca\\x05\\x4d\\xa3\\xb5\\x40\\xa5\\x3f\\x1c\\x1a\\x8f\\x91\\xfa\\\n\\xe1\\xb9\\xa8\\xaa\\x35\\x5f\\xde\\xeb\\xf4\\xc0\\xe1\\x0a\\x86\\x15\\x62\\x05\\\n\\x7c\\xbb\\xd3\\xb1\\xfa\\xd7\\xa6\\x2c\\xe8\\x9b\\xd7\\x52\\x80\\x74\\x6d\\x4d\\\n\\x0f\\xce\\x94\\xeb\\xbe\\x10\\xa3\\x52\\x40\\x6a\\x01\\xef\\xd7\\x5f\\xe1\\x88\\\n\\xf3\\x5f\\x0d\\x28\\x7d\\x2e\\x5a\\xe9\\xe8\\x4d\\x3f\\x0c\\x2d\\x74\\xad\\xab\\\n\\xaf\\xd3\\x15\\x67\\x5a\\x30\\x24\\x2f\\x99\\xbf\\x23\\xa6\\x06\\x6a\\x66\\x0b\\\n\\x96\\x8c\\xd6\\x9d\\x67\\x7a\\x69\\x18\\xeb\\x6d\\x3c\\xdb\\xf5\\xc4\\x9e\\x39\\\n\\xe3\\x39\\xb8\\x72\\x31\\x67\\xe3\\x43\\x95\\xcb\\xb4\\x83\\xdd\\xe5\\x45\\x4a\\\n\\x9e\\x18\\xab\\x34\\x92\\x79\\x88\\xa0\\x64\\xd8\\xf9\\xb1\\x67\\x87\\x41\\x2e\\\n\\x76\\x40\\xac\\x5a\\x59\\x7d\\xdc\\x42\\x9a\\x0f\\xbc\\x45\\x76\\xd5\\x3e\\xb8\\\n\\xae\\x61\\xcd\\x86\\xbc\\x38\\x22\\xac\\x71\\x8b\\xba\\x90\\xbf\\x85\\x69\\x71\\\n\\xe9\\xa5\\x71\\x3f\\xbc\\x90\\xd2\\x0a\\x91\\x52\\x47\\x13\\xe1\\xb4\\xd7\\x4a\\\n\\x7e\\x27\\x0d\\x97\\xf1\\x09\\x2b\\x1e\\x6d\\xc6\\xfc\\xcc\\x8e\\x4d\\x2f\\x27\\\n\\xa0\\x23\\xf0\\xc7\\xb4\\xc7\\x6c\\x88\\x45\\x43\\x29\\x14\\x65\\x3a\\xe9\\x8a\\\n\\xad\\xa4\\x0f\\x5d\\x7d\\x6b\\xf2\\xc5\\x17\\x9b\\xf1\\x1f\\xd0\\xc1\\xe2\\xd1\\\n\\x69\\x4d\\x49\\x1e\\xb8\\x68\\x21\\x4a\\x59\\xbb\\x9e\\xb5\\xec\\x07\\x7e\\xf8\\\n\\x43\\x36\\x61\\x60\\xbb\\x63\\x23\\xd8\\x29\\xd7\\xd1\\xb4\\xf4\\x3d\\xb7\\xc4\\\n\\xde\\x1b\\xe1\\x81\\x67\\x92\\x54\\x78\\xe6\\xcc\\x15\\xa0\\x4b\\xb7\\x31\\x9f\\\n\\x8a\\xa3\\xa9\\x03\\x1c\\xe2\\x83\\xb1\\xdc\\x6b\\x8a\\xa3\\x69\\xeb\\x89\\x7c\\\n\\x6b\\x2f\\xe1\\x99\\x9f\\x17\\x86\\x47\\x69\\x23\\x8b\\x2e\\xf1\\xb3\\xc5\\x4f\\\n\\xb5\\x01\\x71\\x23\\x7a\\x50\\x31\\x3d\\x06\\x26\\xf0\\x7f\\xee\\xdc\\xd7\\x87\\\n\\xbc\\x68\\x6e\\x19\\xac\\xb4\\xd9\\x71\\x12\\x83\\xab\\x37\\x11\\x16\\xa3\\x4f\\\n\\x87\\x4c\\x3e\\x45\\x55\\xb3\\x99\\xb1\\x21\\x40\\xb0\\x8e\\x25\\xed\\xb5\\x54\\\n\\x69\\xa7\\xde\\x3a\\x75\\xc7\\xf7\\x8f\\x8a\\x0c\\xbe\\x5e\\x06\\x8a\\xdf\\x66\\\n\\x57\\x2f\\x31\\x3d\\x38\\x96\\x8b\\x12\\x9d\\x56\\xe3\\x81\\xe2\\x12\\x65\\x72\\\n\\xcf\\x9b\\x58\\xf8\\x29\\x3b\\x44\\x8c\\xeb\\x17\\xd8\\x05\\xab\\x4f\\xa6\\x2b\\\n\\xc1\\x8e\\xba\\x6b\\x62\\xd4\\x53\\x6f\\x87\\x14\\xef\\xa1\\xaf\\xfb\\xff\\x00\\\n\\x2c\\x18\\xe8\\x21\\xa8\\x3e\\xf2\\x3a\\x46\\x57\\xd6\\xba\\x60\\x01\\x98\\x19\\\n\\xb4\\x7a\\xda\\xe0\\xd6\\x4d\\x05\\x68\\xc9\\xda\\xde\\xb8\\x4c\\x93\\x9f\\x79\\\n\\x20\\xaa\\x8f\\x29\\xa0\\xea\\x07\\x5d\\xf0\\x56\\xaa\\x05\\x6b\\x53\\xfa\\x77\\\n\\xc0\\x48\\xca\\xdf\\xe5\\x7d\\xb4\\xae\\xe7\\xf9\\x60\\x65\\xd1\\x22\\x91\\x99\\\n\\x94\\x16\\x91\\x6e\\xa2\\x1f\\x31\\xb6\\xb4\\x27\\x4c\\x09\\x54\\x98\\x66\\x40\\\n\\x23\\x95\\xe2\\xe5\\x77\\xe5\\xa7\\x33\\xf9\\x8e\\x9a\\x0e\\xdb\\x0c\\x73\\xb9\\\n\\x61\\xf7\\xb9\\x89\\xa7\\xa9\\xd4\\xe2\\xaa\\xc5\\x1a\\xa4\\xf7\\xf9\\x0a\\x74\\\n\\x1d\\x70\\xa4\\x8d\\x29\\x5b\\xc7\\xc3\\x4f\\xae\\x03\\x0b\\x6f\\x5e\\xfa\\x61\\\n\\x89\\xb9\\x23\\x83\\x64\\xea\\xee\\x7a\\xd7\\x7b\\x7a\\x61\\xce\\x66\\x45\\x7e\\\n\\x62\\xb1\\x0a\\x50\\x88\\xfa\\x12\\x6b\\xcc\\x7e\\x78\\xca\\xc3\\x18\\x01\\x72\\\n\\xd1\\xbf\\x10\\x81\\xef\\x26\\x96\\x5b\\x69\\x12\\x0e\\xb6\\x01\\x75\\x77\\xe6\\\n\\xc0\\x36\\x14\\xf4\\xdb\\x17\\xb8\\xa0\\x0b\\xb9\\xec\\x3e\\x7b\\x57\\x00\\xbc\\\n\\xd1\\x84\\xe8\\x95\\xd7\\x4f\\x41\\xfa\\x62\\x41\\x97\\x8d\\x78\\x7f\\xf5\\xa4\\\n\\x14\\xa9\\x3d\\x54\\x77\\xf4\\xd7\\x17\\xcb\\x3f\\x11\\xd5\\x45\\x08\\x5d\\x29\\\n\\xd4\\x7c\\xab\\xf4\\xc5\\x6a\\x0c\\x7b\\xfa\\xfe\\x1a\\xd3\\xe9\\x84\\xb5\\x8a\\\n\\x5c\\x6d\\xd3\\xad\\x74\\xa1\\x03\\xb7\\x7d\\xf0\\x93\\x21\\x3e\\xdd\\x04\\x81\\\n\\x19\\x01\\x35\\x3a\\xaa\\xf5\\xf8\\x29\\x5d\\x7b\\xe9\\xd7\\x10\\xc6\\x62\\x63\\\n\\xc2\\x90\\x28\\xa6\\xf7\\x6b\\xcb\\xa7\\xd9\\xdd\\xab\\xa0\\xee\\x71\\xed\\x86\\\n\\xde\\x27\\x88\\x44\\x52\\x6a\\x7d\\xa5\\x50\\x54\\xfa\\xed\\x4c\\x32\\xcb\\x2a\\\n\\x04\\x50\\xd2\\x38\\x34\\xe4\\x8f\\x4a\\x9f\\x98\\xbb\\x6f\\x5c\\x45\\x96\\x81\\\n\\xae\\x68\\x64\\x95\\x19\\x34\\xee\\xee\\x75\\xe8\\x54\\x50\\x9e\\xdb\\xe1\\xd8\\\n\\xd6\\xb5\\x72\\x6b\\xd3\\x98\\xd0\\x53\\xd0\\x62\\x67\\xcb\\xe5\\xa5\\x70\\x63\\\n\\x6b\\x1e\\x84\\x06\\xd0\\x6a\\x9d\\xf4\\xeb\\x87\\xcb\\xf8\\xb1\\xcc\\xe4\\xd1\\\n\\xac\\xf6\\x6b\\xd3\\x91\\xeb\\xbf\\xbc\\x6d\\x01\\xec\\x09\\x18\\x8b\\x35\\x92\\\n\\xce\\x26\\x66\\xd1\\x49\\x63\\x95\\x5a\\x36\\x65\\xa9\\x20\\x54\\x5d\\x4e\\xd5\\\n\\xa6\\x24\\x8f\\x31\\x97\\x97\\x2b\\x97\\xb5\\xa3\\xba\\x1e\\x74\\xdf\\xcc\\x65\\\n\\x5a\\x9a\\xfa\\x9d\\x40\\xe9\\x86\\x57\\x35\\x27\\xe2\\x62\\x4f\\xe7\\xf2\\xef\\\n\\x8a\\x52\\xa0\\x7d\\x2e\\xf5\\xf9\\x63\\xb6\\x9d\\xe9\\xf9\\xfc\\xf0\\x19\\xc9\\\n\\x58\\xda\\x8a\\x1b\\xb9\\x26\\x94\\xdf\\xa7\\x7c\\x40\\xb1\\x1e\\x4b\\x04\\x67\\\n\\x5d\\xeb\\xd4\\xff\\x00\\x1c\\x7b\\x54\\x52\\xac\\x6c\\x3f\\x68\\xb5\\xa0\\x90\\\n\\xed\\xdf\\x9b\\xe8\\x30\\x77\\xaf\\xa0\\xeb\\x4d\\x7b\\x62\\xd2\\x6b\\x32\\xc6\\\n\\xcb\\x4e\\xb7\\x43\\xe4\\xfc\\x47\\xf0\\xc5\\x3e\\x20\\x4d\\x74\\xe6\\xb9\\x4d\\\n\\xb4\\xfc\\x70\\xee\\xed\\x6c\\x10\\x2d\\xd3\\xc9\\xf6\\x57\\x70\\xa3\\x5d\\x5d\\\n\\xfe\\xce\\x17\\xe1\\x85\\x39\\x61\\x8b\\x60\\x07\\x76\\xee\\x49\\xad\\x4f\\x4c\\\n\\x03\\x98\\x95\\xe5\\xb1\\x6d\\x4b\\xe4\\x2c\\x02\\x9d\\xad\\x5a\\x91\\xcb\\xb0\\\n\\xd3\\x6c\\x4e\\x41\\xb4\\x28\\xa3\\x1a\\xd6\\x81\\x80\\x07\\xb0\\x1e\\x94\\xeb\\\n\\xae\\x22\\xa4\\x6c\\x43\\xef\\x23\\x03\\x62\\xa4\\x62\\xe6\\xa7\\xc9\\x46\\x33\\\n\\x92\\x38\\x26\\x01\\x2b\\x88\\x7e\\xf1\\x51\\xca\\x08\\xf8\\xb4\\x35\\xd7\\x12\\\n\\x67\\x1b\\xdd\\xc6\\x5b\\xcc\\xed\\x49\\x1e\\xe3\\xfe\\x58\\x3f\\x02\\x83\\xa1\\\n\\x03\\x16\\x09\\x9b\\x33\\x95\\xa5\\x0e\\x5a\\x56\\x2c\\x9c\\xc0\\x79\\x7a\\xa9\\\n\\xa0\\x1a\\x8c\\x09\\x32\\xd9\\x20\\x26\\x35\\xbc\\x3b\\xd5\\x16\\xab\\x6d\\x7a\\\n\\x77\\xad\\x3a\\xed\\x8a\\xcb\\x9c\\x95\\x55\\x98\\x9b\\x23\\x25\\x05\\x0f\\x60\\\n\\xa0\\x7c\\xbf\\x8e\\x2f\\xe2\\x1c\\xcc\\x4e\\x75\\xe2\\x12\\x48\\x14\\x35\\xf5\\\n\\xc2\\x66\\x72\\xe8\\xe8\\xce\\x9c\\xd4\\xfb\\x40\\x75\\xed\\x82\\xef\\x9b\\x90\\\n\\xad\\xe4\\xc7\\x19\\x6e\\x44\\x03\\x4d\\x07\\xcb\\x73\\xd7\\x05\\xc3\\xad\\x1a\\\n\\x9a\\xfa\\x7d\\x2b\\x8b\\xa5\\xab\\xb6\\xbd\\xe9\\x5f\\xeb\\xfe\\x31\\x45\\x40\\\n\\xa3\\xb6\\x9f\\xff\\x00\\x26\\xae\\x32\\xd3\\xf8\\x73\\x3e\\x61\\xc4\\xd1\\x47\\\n\\xec\\xb4\\xbb\\x8b\\x7d\\x39\\x23\\x1a\\x73\\x54\\xd0\\x7e\\x24\\xe2\\xdf\\xed\\\n\\x1f\\xf7\\x66\\x42\\x79\\x92\\xcf\\x67\\x92\\x68\\xb3\\x19\\xb3\\x78\\xa5\\xb6\\\n\\x20\\x7e\\x17\\x6a\\x56\\xbe\\xb8\\x57\\xf0\\xcf\\x0d\\x8e\\x37\\xcc\\x28\\xba\\\n\\x7c\\xae\\x51\\x23\\x14\\x5f\\xb7\\x27\\x2e\\xa7\\xf3\\xc0\\x8b\\x33\\x98\\x64\\\n\\x7e\\xca\\x97\\x5b\\xff\\x00\\x6e\\x9f\\x4e\\xff\\x00\\x3c\\x24\\x50\\xe7\\xc3\\\n\\xcd\\x22\\x5c\\xb1\\xd0\\x86\\xa9\\xd8\\x7d\\x76\\xc2\\xf0\\x65\\x8d\\xe4\\x20\\\n\\xdf\\x1c\\xa5\\xe3\\x0a\\xd4\\xf2\\x55\\x41\\x35\\x07\\xd3\\x03\\x27\\x3b\\x64\\\n\\x61\\x53\\x5b\\x4c\\x12\\xbc\\xbc\\x43\\xd3\\x99\\xc2\\xda\\x7d\\x08\\xfa\\xe3\\\n\\x99\\xc9\\xfa\\xe9\\x8a\\x83\\xd8\\xd7\\xb7\\xa7\\xf5\\xd3\\x11\\x67\\xa4\\xca\\\n\\xf1\\x33\\x10\\xfe\\xcd\\xe3\\xa0\\x34\\x62\\x03\\xd5\\x4e\\xe1\\x57\\x5a\\x0d\\\n\\x6b\\xb6\\x24\\x11\\xe8\\xa1\\xe8\\x8f\\xe6\\x46\\x4d\\xc5\\xdd\\x8f\\x43\\x5d\\\n\\x8e\\x98\\xb6\\x33\\xaa\\xd0\\xde\\xbb\\xd7\\xa6\\x20\\x83\\xc5\\xa1\\x75\\x91\\\n\\xdc\\x46\\x33\\x31\\xd3\\xe2\\xd8\\xc8\\x9f\\x3d\\x34\\x34\\xa5\\x31\\xc4\\xcb\\\n\\x4a\\x8e\\x08\\x21\\x90\\x8b\\x5f\\xa5\\x2a\\x0f\\xcf\\x7c\\x12\\xea\\x45\\x3b\\\n\\x6b\\x8d\\xaa\\x7f\\x3c\\x32\\xec\\x48\\xb3\\xa1\\xa0\\xf9\\x52\\x98\\x31\\x2b\\\n\\x36\\xf4\\x0c\\xe2\\xdb\\xc8\\x00\\xb0\\x5a\\x8d\\x69\\xe9\\xae\\x0e\\x97\\xa3\\\n\\x1d\\xc1\\xe6\\x1d\\x88\\xee\\x30\\x38\\x3c\\xcb\\xc5\\x01\\xaa\\x68\\xcb\\x51\\\n\\xb5\\xbd\\xab\\xd7\\x07\\x34\\xf9\\x74\\xe3\\xb6\\x97\\xc8\\x01\\x61\\xfb\\xa6\\\n\\x95\\x1f\\x4a\\x61\\xa8\\xd6\\x1d\\xc7\\xaf\\xe9\\x8b\\x35\\x71\\xe5\\xa8\\xa9\\\n\\xfe\\x86\\x17\\x8f\\xac\\x82\\xa6\\xca\\x53\\x43\\xe5\\xbb\\xb1\\x07\\xa1\\xd7\\\n\\xeb\\x82\\x64\\x1d\\x06\\x94\\x20\\x0e\\xd4\\xf5\\xf5\\xdf\\x0d\\xca\\x74\\xdf\\\n\\xd3\\xe7\\xad\\x7f\\x86\\x0d\\xdf\\x4f\\x87\\xfe\\x71\\x93\\xb5\\x11\\x81\\x95\\\n\\x0c\\x95\\xa1\\x36\\x5c\\x3a\\xfa\\xad\\x69\\xd7\\x0d\\x99\\x59\\xc4\\x62\\x58\\\n\\x8d\\xb5\\xe5\\x04\\xc8\\x97\\x5d\\xa7\\xd9\\xe5\\xb4\\x50\\xd4\\xfe\\x71\\xb3\\\n\\xe6\\x17\\x35\\x98\\x75\\x73\\x99\\xe1\\xd7\\x89\\xcc\\xb4\\x40\\x1b\\x6d\\x5b\\\n\\x7a\\x77\\xef\\x88\\xfc\\x5c\\x3c\\x7e\\x15\\xe1\\x90\\xca\\xe6\\x21\\x3e\\x8d\\\n\\x24\\x41\\x34\\x3f\\x22\\x55\\x91\\x08\\xe6\\x72\\x1a\\x95\\x23\\x4f\\xfc\\xeb\\\n\\x43\\x34\\x9e\\x4e\\x02\\x24\\xd1\\x4c\\xbe\\x57\\x52\\x5d\\x81\\x1c\\xe3\\x50\\\n\\x75\\x5d\\x34\\x6e\\x83\\x3b\\xed\\xd1\\x24\\x30\\xb3\\x19\\x38\\xd0\\x9e\\x65\\\n\\x90\\x1e\\x23\\xb4\\x88\\x48\\xec\\x0f\\xcb\\xb6\\x26\\xcd\\x4f\\x98\\xf6\\xb8\\\n\\x65\\x91\\xad\\x93\\x2f\\x2a\\xf0\\x87\\x35\\x7e\\x0e\\x6f\\x4e\\x6d\\x70\\x91\\\n\\x45\\x19\\xb6\\x34\\x54\\x15\\xf4\\x14\\xea\\x30\\xc6\\x55\\xd0\\x9f\\x36\\xe1\\\n\\x6d\\x1d\\xbf\\x96\\xd8\\xbd\\x64\\x0d\\x5e\\xdf\\xc4\\x62\\x95\\x0c\\xae\\x6d\\\n\\x28\\xfa\\xad\\x3e\\xbd\\x70\\xd9\\xac\\x84\\x89\\x92\\x72\\xbc\\xd1\\x59\\xfe\\\n\\x1a\\x46\\xe8\\x48\\x04\\x18\\xeb\\xf7\\x43\\x0e\\xb4\\xc3\\x65\\x73\\x71\\x98\\\n\\xe7\\x8c\\xd2\\x9a\\xda\\xe3\\xa4\\x91\\x36\\xcf\\x1b\\x74\\x3f\\x3d\\xb6\\x14\\\n\\xa1\\x6d\\x40\\xa2\\xef\\xa9\\xea\\x7a\\x77\\xa9\\xf9\\xe3\\x2b\\x96\\xc9\\xc3\\\n\\xee\\xd1\\x39\\xee\\x70\\xb4\\x90\\xe9\\x53\\x5d\\x7f\\xad\\x31\\x94\\x87\\x37\\\n\\x19\\xbe\\x57\\x10\\xa9\\x4a\\xb2\\xb1\\x26\\xc4\\xad\\x36\\xae\\xe3\\x6d\\x30\\\n\\x3f\\xbc\\xe6\\xf6\\xaf\\x11\\xcb\\x53\\x8d\\x97\\x7c\\xcb\\x58\\xb7\\x6a\\x8e\\\n\\x60\\x5b\\x45\\x0e\\xa3\\x52\\x6a\\x00\\xbb\\x71\\x8a\\xaf\\x86\\xe4\\xf6\\xe8\\\n\\x9f\\xd7\\xeb\\xf5\\xc3\\xc7\\x94\\x84\\x65\\xd6\\x51\\xcd\\xc2\\x76\\x5f\\x9d\\\n\\x35\\xa7\\x5c\\x39\\xc9\\x78\\x96\\x63\\x2f\\x73\\x13\\x6c\\x96\\x4c\\xba\\x9a\\\n\\x9a\\x56\\xd6\\x3f\\x8e\\x22\\x86\\x09\\x63\\xcc\\x41\\x09\\xe2\\x34\\x7f\\xb3\\\n\\x92\\x79\\x3e\\xd4\\x87\\x50\\x4f\\x65\\xf2\\x8c\\x02\\xde\\x13\\x2b\\xaa\\xd4\\\n\\x5d\\x1a\\xac\\xd4\\xff\\x00\\xb4\\xd7\\xf1\\x53\\xf3\\xc1\\x59\\xb2\\xc5\\x0a\\\n\\xec\\xb3\\x47\\x6d\\xa7\\x6a\\x50\\x8d\\xcf\\xe3\\xdb\\x0d\\x1f\\x0e\\x3b\\x9a\\\n\\x9c\\x84\\x0a\\x2f\\xef\\x0e\\xad\\xe9\\xf9\\x61\\xb2\\x51\\x20\\x69\\x5d\\x78\\\n\\x5c\\x41\\xa2\\xc6\\x64\\x0b\\xb5\\x07\\xc1\\x4e\\x6f\\xe5\\x5c\\x64\\x72\\xf1\\\n\\xa2\\xcb\\x40\\xf2\\x3e\\x95\\x0c\\xd2\\x72\\xa0\\x3a\\x74\\x5a\\x69\\xdb\\x5c\\\n\\x13\\x31\\xd2\\xb4\\x54\\x1e\\x55\\x1d\\x02\\xae\\x18\\x34\\xae\\x94\\xdc\\x32\\\n\\xd5\\x6b\\xf3\\x38\\x91\\x62\\x25\\x80\\x1d\\x77\\xfa\\xf7\\xc5\\x47\\x4f\\xd7\\\n\\xe9\\x8d\\xcb\\x16\\xd0\\x83\\xb6\\x1e\\x36\\x5b\\x83\\xd4\\x2f\\xdd\\x63\\xb9\\\n\\xf5\\xa7\\xe1\\x4c\\x02\\x29\\xe9\\x53\\xdf\\x1f\\x0e\\x9d\\x4d\\x30\\x06\\xda\\\n\\x92\\x7f\\x1e\\xdf\\xc3\\x1f\\xfe\\x56\\xfe\\x57\\x61\\xb2\\xf1\\xcc\\xb0\\x19\\\n\\x18\\x56\\x42\\xc4\\x32\\x80\\x45\\x4a\\x53\\x5b\\xb4\\xd3\\x0d\\x20\\x19\\x9f\\\n\\x13\\xcf\\x36\\xcf\\x2b\\xdc\\x15\\xce\\x95\\x04\\x93\\x4e\\xfa\\x9c\\x34\\x46\\\n\\x51\\x0e\\x73\\x2c\\x97\\x2b\\x21\\x17\\x1f\\x88\\xd5\\x88\\xfc\\xf1\\x33\\xcc\\\n\\xcf\\x22\\xd1\\xb5\\x6a\\xb0\\x50\\x7a\\xed\\x41\\xb7\\xf1\\xc1\\xf1\\x18\\x72\\\n\\xd9\\xb9\\xe1\\x8e\\x5e\\x1c\\x52\\xc1\\x0c\\x8f\\x1b\\x0b\\xa8\\xc4\\x3a\\xad\\\n\\x39\\x4d\\x46\\xfd\\x31\\x1c\\xb9\\x18\\xfd\\x9e\\x2c\\xcc\\x11\\xc9\\x98\\x92\\\n\\x79\\x38\\x31\\xc3\\x2d\\xbc\\xe2\\xd0\\x78\\x8c\\x7d\\x14\\x6f\\xbe\\x23\\xce\\\n\\x67\\xb3\\x33\\x67\\x33\\x91\\xad\\xc0\\x1e\\x4c\\xb2\\xcb\\xd1\\xac\\x1c\\xcd\\\n\\x66\\xdc\\xec\\x41\\x1f\\x0d\\x71\\x5f\\x69\\x72\\x3e\\xc1\\x45\\xa7\\xae\\xde\\\n\\xbf\\x95\\x31\\xe6\\x14\\xf9\\x62\\xda\\xea\\x41\\x3d\\x81\\xf9\\x1e\\xb8\\x8e\\\n\\x12\\x95\\x83\\xc4\\x1e\\xc4\\x96\\xe6\\x0d\\x96\\x9d\\x41\\x66\\x08\\x36\\x26\\\n\\x60\\x28\\x01\\xeb\\x82\\xf1\\xcd\\x99\\x87\\x53\\x77\\x32\\xb8\\x34\\xeb\\xad\\\n\\x7f\\x2c\\x09\\x33\\x59\\xac\\xcc\\x90\\xa6\\xbc\\x0b\\x84\\x66\\x46\\xe9\\x73\\\n\\xa5\\x18\\x28\\x3d\\x17\\x7c\\x2d\\x84\\xa2\\xe8\\x83\\x53\\xd0\\x00\\xba\\x92\\\n\\x49\\xd0\\x75\\x3a\\xe0\\x5f\\xef\\x0f\\xc5\\x51\\x42\\xbd\\x3e\\xb8\\x04\\xa5\\\n\\x09\\x1a\\xf7\\x07\\x1a\\xb0\\x70\\xdc\\xc0\\x7c\\x54\\xd6\\x9f\\xa6\\x1e\\x39\\\n\\xd1\\xae\\x80\\x99\\xa1\\x65\\xaa\\xb2\\x49\\x4a\\x16\\x56\\x5a\\x5b\\xa5\\x7a\\\n\\x91\\x86\\x8c\\x39\\xcd\\xe5\\x8d\\x4c\\x52\\x4a\\xa5\\xaa\\xbd\\x89\\xd6\\xac\\\n\\x06\\x33\\xbe\\x21\\xe2\\x7c\\x28\\xe1\\x0a\\xa8\\x13\\xcd\\x23\\xc9\\xbd\\x63\\\n\\x8f\\xd0\\x68\\x49\\xa5\\x0e\\x98\\x2f\\x16\\x57\\x33\\x16\\x44\\x12\\xa3\\x39\\\n\\x24\\x4d\\xc1\\x0c\\x0d\\x28\\xe4\\x56\\xdd\\x7e\\x98\\xf7\\xb9\\x88\\xe5\\x7b\\\n\\x4b\\x08\\xd0\\x17\\x62\\x3a\\x6d\\xdf\\xa6\\x1a\\x1c\\xba\\xa6\\x5d\\x69\\xcb\\\n\\x51\\x74\\x8c\\xa4\\x6f\\x6e\\xcb\\xe9\\xae\\x27\\x74\\x91\\x89\\x5d\\x4b\\xb1\\\n\\xd4\\x91\\xb6\\x80\\xa8\\x03\\xad\\x35\\xc0\\x11\\xcd\\x21\\xb7\\xcf\\xbd\\x80\\\n\\x7a\\xee\\x3f\\x11\\x87\\x56\\x0b\\xcc\\xa5\\x98\\x80\\x1a\\xa7\\xa1\\xad\\x83\\\n\\x7f\\xa6\\x08\\x99\\x68\\xd5\\xd2\\xde\\xc3\\x4a\\xfe\\x98\\x53\\xcc\\x4d\\x68\\\n\\x0e\\xfa\\x0f\\xeb\\x7c\\x65\\x1c\\x2a\\x2e\\x55\\x72\\xf1\\x34\\x87\\x66\\x62\\\n\\x22\\x52\\x07\\xde\\x2b\\x43\\xb6\\x17\\x31\\x27\\x13\\x30\\xb7\\xc2\\xeb\\x13\\\n\\x0b\\x8b\\x69\\xcb\\x78\\xdd\\x54\\x9d\\x17\\x4e\\xd8\\x30\\x66\\xda\\x4c\\xa6\\\n\\x4e\\x10\\xb6\\x65\\xf6\\x05\\x7d\\xe1\\x8f\\xdd\\xae\\x9b\\x19\\x0e\\xb8\\xc9\\\n\\xe7\\xf3\\x51\\x4f\\x3a\\x47\\x41\\x22\\xab\\x1b\\xe3\\x62\\xfa\\x48\\x07\\xa0\\\n\\x00\\x58\\x74\\x20\\x7a\\xe3\\x2d\\x96\\xf0\\xef\\x10\\x59\\x46\\x72\\x8b\\x99\\\n\\x8d\\x17\\x84\\xf0\\xbd\\x02\\xd9\\x28\\xd7\\xcf\\x42\\x4d\\xa4\\x28\\xd3\\x96\\\n\\xa7\\x4b\\x66\\x98\\x89\\x82\\xbd\\xd6\\x49\\x58\\x8d\\x6d\\xdc\\x50\\x86\\x2a\\\n\\x45\\x3a\\x62\\xb1\\x10\\x5e\\x35\\xa9\\x0c\\x35\\x93\\xef\\x45\\x4f\\x37\\xae\\\n\\x38\\x72\\x86\\x14\\xd5\\x81\\x34\\xa5\\x75\\x03\\xea\\x30\\x42\\x0a\\xfd\\x31\\\n\\xaa\\xda\\x6a\\x58\\x37\\x5a\\xff\\x00\\x5d\\x30\\x14\\x9b\\x80\\xd3\\x5d\\xcf\\\n\\xe2\\x29\\x4c\\x70\\xb3\\xb9\\x58\\x73\\x2a\\x2b\\x6f\\x11\\x01\\x64\\xed\\x46\\\n\\xde\\xbf\\x5f\\xa6\\x0e\\x7b\\x25\\xc5\\x87\\x2e\\x1b\\x8a\\xcb\\xcc\\xdc\\x20\\\n\\xc2\\x81\\xd0\\x1d\\xe3\\xfb\\x5f\\x64\\xed\\xa6\\xb8\\x70\\x59\\x44\\xdf\\x6c\\\n\\x68\\xb2\\x53\\x5a\\x86\\xfb\\x54\\xd4\\xe1\\xa4\\x89\\x24\\x6f\\x12\\x11\\x18\\\n\\xe1\\xe2\\x27\\xec\\xe4\\x3b\\xe6\\x7d\\x59\\x50\\x8b\\x3e\\x55\\xdf\\x1e\\xdb\\\n\\x96\\x76\\x6c\\xc2\\x02\\x93\\x96\\xb9\\x9d\\xd0\\x9a\\x86\\x6d\\x8d\\x41\\xf9\\\n\\xd2\\xb4\\xd8\\x6a\\xcd\\x94\\x8c\\xb2\\x26\\x8d\\x33\\xb1\\x58\\x90\\xfc\\x2a\\\n\\xcf\\x43\\xcc\\x7b\\x0a\\xfa\\xe2\\xe9\\x7c\\x3e\\x69\\x14\\x7c\\x50\\xb0\\x94\\\n\\x7e\\x45\\x5b\\xf2\\xc5\\xb9\\xdc\\xbc\\xf1\\xad\\x7f\\xcc\\x8a\\x44\\x23\\xd6\\\n\\xe0\\xba\\x1f\\xae\\x2d\\x6c\\xcd\\xc9\\xf0\\xfd\\xa1\\x5e\\x8d\\xb9\\xdf\\x00\\\n\\x17\\x06\\xbd\\x08\\xd0\\xf7\\xda\\x98\\x97\\x2f\\x24\\x70\\x71\\x25\\x89\\x91\\\n\\x64\\x2a\\x09\\x52\\x47\\x2b\\x29\\xa6\\x94\\x34\\x38\\x9d\\xb3\\x1e\\xf6\\x46\\\n\\x95\\xe1\\xca\\xb6\\xdc\\x59\\x34\\x26\\x4e\\x70\\x47\\x25\\xd5\\x6f\\x5d\\x06\\\n\\x1a\\x6e\\x0f\\x3d\\xd5\\xe2\\x3c\\x97\\x55\\xd8\\x29\\x63\\xa5\\x3e\\x40\\x57\\\n\\xbe\\x98\\xa0\\x15\\x5a\\x0e\\x52\\x69\\x5d\\x3a\\x6f\\x4c\\x6d\\x4f\\x98\\xec\\\n\\xdf\\xed\\x82\\x1d\\x2b\\x76\\xe6\\x9d\\xfe\\x9b\\xe1\\xe8\\x0b\\xc4\\xd5\\xa3\\\n\\xd2\\xb6\\x81\\xb8\\x6a\\x7f\\xc6\\x0f\\xfe\\x07\\xd1\\x87\\xe7\\x8a\\x49\\x52\\\n\\x0e\\xde\\x94\\xd3\\x4c\\x7e\\xd0\\x7f\\xaa\\xa3\\x15\\x32\\xaf\\xe3\\x53\\x80\\\n\\xd5\\x73\\xa6\\xea\\x7f\\x5f\\x5c\\x27\\x87\\x64\\x73\\xed\\x18\\x8b\\xdd\\xa2\\\n\\xa8\\xa8\\x96\\x53\\xb9\\x62\\x4e\\x88\\x30\\xbe\\x1b\\x9b\\x91\\x27\\x12\\x01\\\n\\x22\\xcb\\x1b\\x93\\x1b\\x83\\xb7\\x5d\\x08\\x35\\x04\\x62\\x28\\xb2\\xa9\\x24\\\n\\x2a\\xad\\xcd\\x98\\x95\\x9a\\x28\\x4a\\x37\\xde\\x6d\\x24\\x5a\\xf4\\x17\\xf6\\\n\\xa6\\x0b\\xf8\\x81\\xfe\\xf4\\xcd\\x4a\\x6e\\x72\\xca\\xd1\\x65\\xd3\\xb4\\x68\\\n\\x80\\xde\\xe3\\xb9\\x93\\xcd\\xf6\\x40\\xdd\\x20\\x82\\x34\\x86\\x18\\xc5\\x12\\\n\\x38\\xa3\\x58\\xe3\\x51\\xe8\\x00\\xa0\\xfc\\x3f\\x5c\\x0d\\xff\\x00\\x1c\\x53\\\n\\x98\\x7e\\x18\\xeb\\x4a\\x6e\\x77\\xfa\\x74\\xf9\\xd7\\xd2\\x98\\x20\\x49\\x6f\\\n\\xcb\\xfa\\xd3\\x1c\\xf3\\x47\\xa6\\xd5\\x60\\x0a\\xf6\\x23\\x14\\xbf\\xde\\x2b\\\n\\x2e\\x63\\x2d\\x22\\x2d\\xc1\\xda\\x16\\xba\\xdb\\xb6\\x52\\x76\\x27\\xb1\\xc4\\\n\\x72\\x42\\x41\\x47\\x55\\x92\\xdd\\xed\\xb8\\x55\\x97\\x5e\\xb5\\xdf\\x0a\\xd1\\\n\\x50\\x38\\xfe\\xa9\\x86\\x56\\xfd\\xa0\\xd8\\x69\\xa1\\x07\\xf1\\xfa\\xe2\\x20\\\n\\xd4\\xad\\x2e\\x60\\x3b\\xff\\x00\\xce\\x13\\xe1\\x02\\x95\\xf5\\xe9\\x80\\x41\\\n\\xb8\\xaa\\x2a\\xd4\\x6d\\x51\\xcd\\xfc\\x71\\x32\\x9e\\x51\\xc2\\x92\\xa4\\x76\\\n\\xb4\\xe1\\x6e\\x88\\x38\\x46\\xf3\\x1f\\xc1\\x40\\x03\\xbe\\x0d\\x35\\x1d\\x42\\\n\\x81\\xf5\\xf4\\xd7\\xd7\\x73\\xae\\xf8\\x5f\\x02\\xca\\xc5\\x1a\\xc8\\xc0\\xab\\\n\\xb5\\xb4\\x21\\x0b\\xf2\\x87\\x26\\x8b\\x76\\xbd\\x05\\x7a\\xd6\\xa7\\x1f\\xe3\\\n\\xac\\x78\\x18\\x51\\x5c\\x73\\x18\\xc1\\xd8\\xf5\\xae\\xbf\\xae\\x26\\x95\\x98\\\n\\x98\\xab\\xcb\\x46\\xf3\\x2f\\x41\\xa6\\xa2\\x9d\\xb0\\x69\\x0a\\x10\\xdb\\xde\\\n\\xb7\\x54\\xf7\\xd7\\x6c\\x68\\x23\\x45\\xad\\x68\\xaa\\xa0\\x7d\\x74\\xc1\\xbc\\\n\\x5e\\x1b\\x4b\\x49\\x1f\\x9e\\x03\\x05\\x08\\xac\\x05\\x15\\x76\\x1d\\xd4\\x75\\\n\\xc2\\xa8\\x03\\xaf\\xd3\\xd0\\xe3\\xc3\\x21\\x03\\xde\\x7b\\x2c\\x0f\\x21\\x35\\\n\\xa8\\x36\\x03\\xdf\\xad\\xdf\\xc3\\x0f\\x9b\\x91\\x16\\x4c\\xe3\\xb5\\xa9\\x7f\\\n\\x30\\x44\\xa6\\xb4\\x5e\\xe1\\x7a\\xfc\\x23\\x6a\\x62\\x21\\xce\\x62\\x75\\x13\\\n\\x5c\\x7e\\x26\\x8c\\x92\\x63\\x66\\xf3\\x1b\\xaa\\xc0\\x1a\\xe8\\x30\\x72\\xf3\\\n\\xdb\\xc3\\xe0\\x8b\\xc3\\x8d\\xc8\\x6a\\xd5\\x45\\x6e\\xe2\\x24\\x4f\\xf2\\x3b\\\n\\xf4\\x18\\xae\\x5e\\x56\\x51\\x2e\\xb1\\x47\\x70\\xa5\\xfb\\x0d\\x7f\\x79\\x94\\\n\\xef\\x43\\x89\\x9a\\x7e\\x27\\x09\\x61\\x3a\\x03\\x7a\\xc8\\xe9\\xe9\\xf6\\x6e\\\n\\xe5\\x3e\\xa3\\x4c\\x24\\xa2\\x43\\x12\\xb3\\xcc\\x60\\x04\\x86\\x4e\\x29\\x60\\\n\\x55\\x4e\\xba\\x21\\xa9\\x41\\x85\\xcd\\x22\\x93\\x9c\\xe3\\x45\\x1e\\x62\\xe6\\\n\\xb6\\x32\\x59\\x58\\xb8\\x14\\x3b\\x8b\\x79\\x4f\\xa6\\x14\\x11\\x6f\\x71\\x5e\\\n\\xbd\\xb6\\xfc\\xf0\\xdf\\x66\\x3d\\x48\\xec\\xc3\\x42\\x09\\xf9\\xe0\\xe5\\xf2\\\n\\xca\\xce\\xc5\\xaa\\xed\\xb4\\x71\\xfa\\xbb\\x74\\x1e\\x80\\x62\\xf9\\x64\\x32\\\n\\x49\\x6d\\x39\\x7c\\x83\\xf7\\x6b\\xfa\\xef\\x89\\xb8\\xd1\\xbc\\xdc\\x75\\x2b\\\n\\x20\\x92\\x47\\x21\\x85\\x2d\\xa5\\xbe\\x51\\xcb\\xa6\\x80\\x53\\xa6\\x2d\\x87\\\n\\x20\\x22\\xeb\\x55\\x96\\x6f\\xc7\\xcc\\x46\\x18\\x59\\xc3\\x96\\x38\\x82\\xac\\\n\\xe0\\xea\\xbc\\x30\\xc0\\x5e\\xc4\\x6b\\x51\\xa3\\x12\\x75\\xdf\\xa6\\x25\\x9b\\\n\\x31\\x39\\xcc\\x78\\x6b\\xf1\\x11\\x63\\x4a\\xa1\\xcc\\x32\\x39\\x46\\xbd\\xa9\\\n\\xcb\\x12\\xd0\\xd2\\xdb\\x4b\\xf7\\xa6\\x13\\x25\\x94\\x85\\x72\\xf9\\x68\\x45\\\n\\x11\\x23\\xa8\\x1e\\xa4\\xf7\\x63\\xb9\\x63\\x56\\xf5\\xc0\\xaf\\x97\\x05\\x5a\\\n\\x34\\x65\\xa7\\xc4\\xaa\\x7f\\x86\\x24\\xe2\\xe4\\x32\\x85\\xdb\\x76\\x11\\xaa\\\n\\xbf\\xe2\\x80\\x1f\\xd7\\x05\\xa1\\x8e\\x68\\x06\\x9e\\x49\\xdf\\xd3\\xbe\\xba\\\n\\xfc\\xb1\\x74\\x39\\x89\\xa8\\x3a\\x48\\x78\\x9f\\x4a\\x1e\\x6d\\x7e\\x98\\x36\\\n\\x78\\x07\\x86\\x66\\x73\\x90\\x46\\x64\\x81\\xbc\\x42\\x05\\xcd\\x46\\xb3\\xd8\\\n\\x45\\x42\\x3e\\x95\\x72\\x28\\x75\\xd3\\xae\\xb5\\xc6\\x76\\x4c\\xc4\\x51\\xc1\\\n\\x99\\x7c\\xf6\\x60\\xe6\\x61\\x8e\\x25\\x8e\\x38\\x25\\x67\\xb8\\x84\\x8d\\x39\\\n\\x52\\x2d\\xb8\\x6a\\xbb\\x0d\\xb4\\xc6\\x9f\\x8e\\x2b\\x4a\\xee\\x29\\xf1\\x1d\\\n\\x7d\\x31\\xa7\\x30\\xfe\\xbf\\xad\\x70\\x56\\x4a\\x51\\xb4\\xb4\\xf5\\xae\\x1b\\\n\\x33\\x93\\xd0\\xaa\\x96\\x68\\x75\\xa3\\x75\\xaa\\xfa\\xe8\\x74\\xf9\\x63\\x5d\\\n\\x29\\xa6\\x1c\\x1e\\xab\\xa7\\xcc\\x6b\\x81\\xfb\\xbf\\xae\\x29\\xaf\\xe5\\xfd\\\n\\x74\\xc7\\xf5\\xfa\\x9c\\x59\\xc5\\xdb\\xd1\\xbb\\x0e\\xc4\\x61\\x73\\x1e\\x15\\\n\\x90\\x73\\x63\\x55\\xb3\\xf9\\x83\\xec\\xd9\\x54\\x15\\xad\\x5b\\x31\\x29\\x0a\\\n\\x69\\xd6\\xcb\\x9b\\xd3\\x19\\x5c\\xf7\\xf6\\x8b\\xc6\\xb2\\x3e\\x25\\xe2\\xd9\\\n\\x77\\x5f\\x71\\x93\\x40\\x32\\x19\\x73\\x4d\\x4c\\xf9\\xb7\\xac\\xb3\\x9b\\xad\\\n\\x50\\x23\\x58\\x95\\x88\\xd4\\x30\\xc0\\xb2\\x68\\x64\\xad\\x28\\x23\\x2a\\x54\\\n\\x7d\\xd0\\x01\\x34\\xa6\\x0f\\x3a\\x0a\\x6f\\x42\\xba\\x7e\\x78\\x16\\xcf\\x0b\\\n\\x9a\\x68\\x04\\xaa\\x4d\\x36\\xda\\xba\\x7c\\xbf\\xe7\\x04\\x09\\x28\\x57\\x70\\\n\\x05\\x75\\xed\\xa5\\x70\\xd0\\xf0\\x5e\\x47\\x46\\x90\\x5e\\xd1\\xba\\x41\\x5f\\\n\\x85\\x6e\\x1a\\x97\\x1b\\x33\\x69\\xae\\x08\\xcc\\x65\\xe1\\x30\\xb9\\xa2\\x34\\\n\\x75\\xe4\\x1d\\xab\\xad\\x69\\xa7\\xa9\\x38\\x92\\x92\\x49\\xce\\x00\\x44\\x45\\\n\\x65\\x16\\xfe\\x1d\\xf7\\xc3\\x09\\x28\\x1a\\x4e\\x55\\x40\\x6e\\x6d\\xba\\xd3\\\n\\xf9\\xe2\\x48\\xfc\\x4a\\x48\\xe7\\xcb\\x38\\x36\\xe5\\xc5\\xcc\\xfd\\x68\\x41\\\n\\x3c\\xb1\\x5b\\xf6\\xb5\\x6c\\x5c\\x81\\x5b\\xc3\\xfe\\xe6\\x8f\\x93\\x66\\xdc\\\n\\x4a\\x37\\x64\\xaf\\xc6\\x2b\\xeb\\x4c\\x5d\\x5a\\xad\\x3f\\x2e\\xfe\\xb8\\xbd\\\n\\x3f\\x68\\x75\\xa6\\x15\\xc6\\xf1\\xbd\\x92\\x0d\\xbc\\xdb\\x1e\\xd4\\x2d\\x5f\\\n\\x96\\x17\\xb8\\x3e\\x5f\\xe7\\xfd\\x1c\\x31\\x91\\xd6\\xab\\x4a\\x85\\x37\\xb7\\\n\\xe1\\x89\\x04\\x7c\\x4b\\xdc\\x98\\xe9\\x41\\xe5\\xd8\\x9a\\x1e\\xe3\\x0d\\x0b\\\n\\x17\\xa0\\x3d\\xb4\\x60\\x76\\x3a\\x69\\xcb\\xd7\\xf8\\xe1\\xe6\\xb0\\xb4\\x61\\\n\\x8a\\x87\\x5d\\x22\\x77\\x1b\\xd1\\xba\\xe0\\xac\\x85\\x56\\x20\\x6a\\x23\\x14\\\n\\x14\\xa6\\xc7\\x4a\\x54\\xfa\\xb5\\x71\\x51\\x2d\\xc9\\xb0\\x89\\xcd\\x49\\x34\\\n\\x26\\xe1\\x5f\\x96\\xc3\\xad\\x31\\xd4\\x77\\xfe\\x3f\\x2c\\x74\\xaa\\x93\\xa6\\\n\\xba\\x7f\\x5f\\x9e\\x28\\xab\\x51\\xd7\\x4e\\xff\\x00\\x33\\xdb\\x1a\\xc6\\xac\\\n\\x69\\xa5\\xd4\\xeb\\xd8\\x7f\\x5f\\x5c\\x36\\x59\\xf2\\xe3\\x8e\\x06\\xeb\\xa7\\\n\\x0d\\xa9\\xe9\\xb9\\x00\\x8a\\xd3\\x6f\\x9d\\x69\\x18\\xad\\x2b\\x2c\\x6a\\x3e\\\n\\xac\\x35\\xc2\\x28\\x37\\xf0\\xe1\\x86\\x2a\\x8d\\x40\\xb5\\x45\\x6b\\xa9\\xff\\\n\\x00\\xe3\\x5c\\x1c\\xde\\x5b\\xd9\\xf8\\x4f\\x9e\\x10\\x46\\x25\\x25\\xa5\\x66\\\n\\x74\\xbd\\xac\\x5d\\x01\\xb4\\x05\\xee\\x45\\x7a\\x60\\x65\\xf3\\x11\\x0c\\x9f\\\n\\x8b\\x2a\\xac\\x9c\\x17\\x20\\x71\\xa2\\xe4\\xe6\\x86\\xbb\\x12\\x2b\\x54\\xdc\\\n\\x62\\x57\\x5a\\x86\\xe1\\xf0\\x5f\\x76\\xb0\\x8b\\x43\\xc8\\x9f\\x4a\\x0f\\x5e\\\n\\xd8\\x82\\x37\\xfd\\xa4\\x02\\x48\\x29\\x5e\\x5e\\x45\\x47\\x42\\xc3\\xa3\\xfc\\\n\\xab\\x4a\\xd3\\xae\\x0f\\x0c\\x29\\x60\\x8c\\xac\\xad\\xb3\\xad\\x6f\\xe1\\x92\\\n\\x74\\x2c\\xd7\\xdd\\x76\\x94\\xda\\xb8\\x52\\x59\\x1c\\x88\\xeb\\xc8\\xba\\x19\\\n\\x58\\x16\\x5a\\x74\\x5b\\x54\\x8d\\x7e\\xd0\\x38\\x9f\\x27\\x57\\x13\\x0c\\xee\\\n\\x56\\x48\\xdb\\xe2\\xbd\\x66\\x08\\x45\\x69\\xaa\\xba\\xb9\\x1b\\x6f\\xe9\\xae\\\n\\x0a\\x31\\xb8\\x7d\\xa4\\x36\\xb5\\x3a\\x61\\xb9\\x8f\\x31\\x15\\x0b\\xa9\\x22\\\n\\xbd\\x7f\\xd5\\xf4\\xc5\\xd2\\x22\\xa4\\x93\\xb5\\xec\\xa0\\x6b\\xd9\\x6e\\x6f\\\n\\xe1\\x5c\\x6f\\x4f\\x97\\xf1\\xc3\\x00\\xdc\\xcc\\x0d\\x1b\\x53\\x43\\x43\\x4f\\\n\\xcf\\x0b\\x72\\xf4\\x1c\\xdd\\xb4\\xeb\\xe9\\x85\\xca\\xc7\\x98\\x93\\x26\\x0b\\\n\\x2b\\x3b\\xc4\\x01\\xe2\\x0e\\xb1\\xb8\\x6d\\x0a\\x91\\xf9\\x9a\\xe0\\x65\\xe3\\\n\\x82\\xd1\\x18\\x0a\\x82\\x15\\x02\\x3b\\x7f\\x21\\x4e\\xa4\\xd2\\xb5\\x63\\x86\\\n\\xb8\\x31\\x3d\\xb7\\xa7\\xe1\\x5c\\x73\\x57\\xa5\\x34\\xdf\\xf4\\xc0\\xab\\x70\\\n\\xd7\\x62\\x36\\xd0\\xff\\x00\\xb6\\x2e\\x63\\xf1\\x6f\\x5e\\xd8\\x02\\x30\\x76\\\n\\xdf\\xa6\\x9f\\xd7\\x6c\\x54\\x9f\\x41\\xdb\\x0c\\x41\\x27\\xfa\\xfc\\x31\\xe2\\\n\\x51\\x2d\\x3f\\xc8\\x6d\\x28\\xa0\\xb0\\x81\\x4c\\xba\\x2d\\x6e\\x23\\x4a\\x9d\\\n\\xcd\\x0f\\xa6\\x0f\\x2f\\x4d\\xe9\\xd3\\xa7\\xaf\\xe5\\x8d\\x16\\xb4\\x00\\xe9\\\n\\xcb\\x5a\\x7e\\x3f\\xae\\x09\\xb6\\xdb\\xb5\\xa0\\xe8\\xdf\\x17\\x40\\x3d\\x7f\\\n\\x1c\\x6a\\x36\\xfe\\xb4\\xeb\\xf9\\x61\\x87\\xa6\\xc4\\x8d\\x7b\\xe9\\x8c\\xc7\\\n\\x05\\x79\\x19\\xc3\\x85\\xb6\\x9e\\x61\\xad\\x00\\xa8\\xa5\\x71\\xa2\\x53\\xeb\\\n\\xfc\\xff\\x00\\x5c\\x56\\x9a\\x53\\xd0\\x9c\\x55\\xf1\\xbe\\x9d\\xbd\\x29\\x4c\\\n\\x6b\\x89\\x38\\x59\\x96\\xf0\\xef\\x09\\x86\\xab\\xc1\\xcb\\xd6\\x25\\x6a\\x0e\\\n\\x54\\x14\\xf2\\x80\\x34\\xd2\\x98\\xc9\\x65\\x73\\x55\\x6c\\x8c\\x26\\xe9\\x38\\\n\\x8f\\x71\\x9a\\x6d\\xb8\\x92\\x13\\xf1\\x2d\\x79\\x01\\x38\\x73\\xe1\\x72\\xff\\\n\\x00\\x87\\xa8\\x65\\x28\\xda\\x25\\x77\\x14\\xdb\\x10\\x4a\\xae\\xc1\\x27\\x45\\\n\\x26\\x5a\\x12\\x88\\xcd\\xe6\\xbb\\xa5\\xa7\\xe5\\x5c\\x43\\xe2\\xaa\\xe2\\x5f\\\n\\x0f\\x49\\x55\\x1c\\x2b\\xf9\\xd9\\x86\\x96\\xae\\x85\\xd0\\x57\\xa9\\xdf\\x7c\\\n\\x34\\x76\\xb5\\xe5\\x55\\xa2\\x34\\x02\\xb7\\xeb\\x6b\\x6a\\x76\\xe9\\x89\\x12\\\n\\xd2\\x55\\xd8\\xbb\\xd4\\x51\\x85\\x47\\xa7\\xe1\\x5f\\xae\\x23\\x8a\\x1c\\xa4\\\n\\x1c\\x89\\xbc\\xb1\\xa4\\xb2\\x54\\xf9\\xb7\\x5a\\x0e\\x9b\\x63\\x5b\\x23\\x03\\\n\\x65\\x45\\x0b\\x5a\\xef\\x5d\\x34\\x1d\\xa9\\xbe\\x38\\x83\\xcc\\x1b\\x93\\x4f\\\n\\x37\\xa7\\xcb\\xa9\\x3d\\x3e\\xb8\\x2e\\x4f\\xd3\\xbf\\x6a\\x7f\\x0c\\x2e\\x4a\\\n\\x3c\\xc1\\xca\\x8d\\x73\\x39\\x8b\\x56\\xbc\\x58\\x23\\x3a\\x44\\xc3\\x43\\x64\\\n\\xda\\x86\\x23\\x6b\\x6b\\x85\\x89\\x8b\\x49\\x96\\xa0\\x50\\xf2\\x6f\\x97\\x76\\\n\\xf8\\x1b\\x99\\x89\\x87\\xec\\xbf\\xc1\\xa0\\x6e\\x98\\xf7\\x62\\x95\\x1a\\x38\\\n\\x3a\\x50\\xf6\\xf4\\x3b\\xe0\\xf1\\x34\\x57\\xe5\\x63\\xb7\\xc9\\x98\\x7d\\xdd\\\n\\xfd\\x6b\\x87\\x48\\x03\\x28\\x26\\x85\\xfe\\x36\\x1f\\xff\\x00\\x15\\xed\\xf1\\\n\\x61\\x89\\xa8\\x2d\\xa9\\xea\\x5b\\xe7\\x8e\\x55\\x3b\\xd2\\x80\\x6c\\x3e\\x7e\\\n\\xb8\\xa1\\xe5\\x53\\xa7\\xeb\\x87\\xc9\\xe6\\x47\\xb4\\xc7\\x28\\x29\\xc3\\x15\\\n\\xe5\\x67\\xd3\\x8a\\xb4\\xd9\\x86\\xe3\\x0f\\x92\\xf3\\x25\\x51\\xe2\\x97\\x72\\\n\\xf0\\x4a\\x2e\\x56\\x61\\x53\\xcc\\x16\\xaa\\xc3\\xb8\\xdb\\x1d\\xc4\\x02\\x88\\\n\\x74\\xdf\\xca\\x07\\xe2\\x69\\x81\\x4d\\x2e\\xd6\\xfe\\x94\\xef\\xf3\\xf4\\xc7\\\n\\x9a\\xea\\x8d\\xe9\\x5f\\xc7\\x16\\x50\\x54\\xfd\\x90\\x7f\\x3c\\x5c\\x4f\\xf8\\\n\\x96\\x1e\\xee\\x35\\xa7\\x2d\\x74\\x12\\x3d\\x7c\\xa3\\xaa\\xd7\\x56\\x6a\\xdb\\\n\\xa6\\x1a\\x46\\x52\\xd7\\x35\\xcc\\xfb\\x93\\x76\\xa7\\x4f\\x9d\\x7f\\x1c\\x03\\\n\\x7a\\x9a\\x30\\xd3\\x63\\xf2\\xa7\\x7c\\x65\\x98\\xda\\x2e\\x58\\xd1\\x2d\\xd6\\\n\\xdd\\x15\\x79\\xc0\\xe6\\x56\\x37\\x6e\\x3b\\x63\\xfb\\x1d\\x9a\\x4e\\x7c\\xb5\\\n\\xd9\\xe7\\xcd\\x05\\xd6\\xb9\\x97\\xf6\\x77\\x8d\\x8f\\xde\\x2b\\x55\\xa9\\xd9\\\n\\x79\\x76\\xc7\\xf6\\x7c\\xb7\\x20\\xfe\\xf2\\x51\\xbd\\xa5\\x91\\xeb\\x19\\x56\\\n\\xa7\\x43\\xdb\\x62\\x71\\xed\\x09\\xa9\\x74\\x57\\xa7\\xda\\xa8\\xf2\\xf7\\xf9\\\n\\xe3\\x31\\x99\\xa2\\xd7\\x8a\\x21\\x45\\x0c\\x50\\x2b\\x44\\x78\\x32\\x71\\x07\\\n\\xda\\xb6\\x94\\xef\\x6e\\xb8\\x48\\xaa\\xaf\\x14\\xaa\\xd4\\x25\\xb9\\xa8\\x1a\\\n\\x92\\xf5\\x0d\\x70\\xb6\\xa3\\xd3\\x0d\\x55\\xbd\\x88\\xa0\\x07\\xca\\x6a\\x68\\\n\\x08\\x1b\\x75\\xfc\\x30\\x8e\\x80\\x12\\x8f\\x7b\\x05\\xd6\\xa1\\x6a\\xe4\\xa5\\\n\\x7b\\x11\\xf8\\xe3\\x31\\x95\\x10\\x22\\x4b\\x96\\xaf\\x2c\\xdb\\x3a\\x6e\\x1c\\\n\\xfd\\x31\\x95\\x33\\xf0\\x7d\\x98\\xe6\\x62\\x39\\x8b\\x94\\x5b\\x1c\\x45\\xc2\\\n\\x91\\x71\\xe8\\x2e\\xa8\\x1f\\x5c\\x33\\x65\\x73\\x30\\xcf\\x6a\\xa9\\x22\\x29\\\n\\x15\\xec\\xbf\\x55\\xad\\x0e\\x2d\\x5e\\x58\\x86\\xe7\\xab\\x61\\x28\\x14\\xd1\\\n\\x95\\x29\\x4e\\xe7\\x42\\x7b\\xd0\\x54\\xe0\\xab\\xef\\xe8\\x29\\xf2\\xc5\\xa4\\\n\\x7a\\xad\\x71\\x04\\xb9\\x67\\x0b\\x9d\\x9b\\x37\\x1a\\x42\\x29\\x75\\x63\\x45\\\n\\x2f\\x3f\\x2d\\x2a\\x40\\x40\\x2b\\xda\\xa3\\xd3\\x00\\xf8\\x9e\\x4e\\x31\\x1d\\\n\\x0d\\x24\\x89\\x8a\\x48\\xdf\\xe9\\xa8\\xd3\\xe9\\x88\\xf9\\xe7\\x67\\x6d\\xd6\\\n\\xd2\\x78\\x43\\xad\\x4f\\xa6\\x14\\xff\\x00\\x78\\x47\\x1f\\x3a\\xaf\\xbd\\x36\\\n\\x95\\xae\\xd5\\xaf\\x4a\\xed\\x8a\\xc1\\x9a\\x82\\x65\\xe6\\x3c\\xae\\xb5\\x00\\\n\\x1d\\xf5\\xa6\\x98\\x26\\x26\\x59\\x53\\x4a\\x14\\x20\\x9e\\xb5\\x1a\\x37\\xcb\\\n\\x6d\\xb0\\xf9\\xdf\\x10\\x95\\x32\\xf9\\x68\\xf9\\x8b\\x48\\x7a\\x7d\\x90\\xb5\\\n\\x05\\xdd\\x8e\\x8a\\xab\\xcc\\xcd\\xa6\\x16\\x23\\xe1\\xae\\x99\\x09\\x1a\\xce\\\n\\x3c\\x8e\\x38\\x85\\x49\\xd2\\x66\\x8f\\xe0\\xa8\\xf8\\x3a\\x0d\\xf5\\xc4\\x5e\\\n\\x25\\x90\\x9a\\x29\\x61\\xcf\\xc0\\xb9\\x84\\x11\\xb0\\xf7\\x6c\\x94\\x8d\\x83\\\n\\x05\\xf2\\xa9\\x5b\\x69\\x5f\\x31\\x0c\\x0e\\x16\\x68\\x5a\\xe5\\x93\\xa3\\x0e\\\n\\xb6\\x8a\\xe9\\xbe\\xf8\\xe9\\xe5\\xf9\\x53\\x0a\\x29\\xca\\x77\\xdb\\x43\\xd0\\\n\\xe3\\xe5\\xf8\\xfd\\x7d\\x3b\\x1c\\x1d\\x75\\x35\\xe9\\xd3\\x6c\\x0c\\xd2\\x2f\\\n\\x32\\x35\\xaf\\x41\\xf0\\xf4\\x27\\xea\\x71\\xd3\\xe9\\x81\\xfd\\x7f\\x55\\xc6\\\n\\xc6\\xa7\\x5f\\xa6\\x3f\\x0d\\x7e\\x7d\\x31\\xbd\\x30\\x91\\xe4\\xe2\\x0f\\x96\\\n\\xcb\\xc9\\x79\\x8c\\x80\\xc1\\xf5\\xea\\x3e\\x2f\\x5a\\xef\\x84\\xcc\\x08\\x22\\\n\\xcb\\x47\\x18\\xd7\\x83\\x0c\\x71\\x03\\x6f\\xc3\\xc8\\x35\\x35\\xa6\\xb5\\xfa\\\n\\xe3\\x93\\x6d\\x09\\xdc\\xf2\\xfe\\xb5\\xfe\\xab\\x8b\\xef\\x1e\\xd0\\x39\\xff\\\n\\x00\\x75\\x69\\xb6\\xbd\\xfa\\x9f\\x4c\\x37\\x87\\x5c\\xb5\\x82\\xa6\\x3f\\x2d\\\n\\x1b\\xe5\\x4d\\x58\\xb7\\x73\\x84\\x42\\xab\\x1c\\x90\\xf2\\xca\\xe7\\x4a\\x5b\\\n\\xa1\\xe5\\xf8\\xbb\\x60\\x85\\x37\\x31\\xd4\\xbb\\x6f\\xae\\xe0\\x6f\\xa6\\x05\\\n\\x0d\\xa4\\x76\\xeb\\xe9\\xf2\\xc5\\x07\\xe5\\xbe\\x2a\\xed\\x71\\x3e\\x50\\x35\\\n\\xa7\\xa0\\x1b\\xe0\\x65\\xb2\\xb0\\x2e\\x73\\x38\\xc2\\xac\\x2e\\xf7\\x30\\x73\\\n\\x7f\\x9d\\x4a\\x54\\xd3\\x50\\xa1\\xba\\x6b\\x5d\\xb1\\x9d\\xcf\\xf8\\x8e\\x71\\\n\\x38\\x92\\x46\\xa1\\x81\\x70\\x0b\\x5a\\x94\\x58\\xd5\\x46\\x81\\x00\\xd3\\x41\\\n\\x89\\x27\\x59\\x28\\x0d\\x50\\x46\\xba\\xad\\x87\\x6d\\x0e\\x9e\\xbd\\xeb\\x83\\\n\\x93\\xcc\\xf1\\x6a\\xe5\\x57\\x24\\xf5\\x16\\xd4\\xff\\x00\\x95\\x31\\x3f\\x06\\\n\\xf6\\x91\\x5d\\x34\\xc4\\x50\\xe6\\x63\\x49\\x25\\x3d\\x68\\x0a\\x92\\x36\\xb5\\\n\\xff\\x00\\xdf\\xf0\\xdb\\x1c\\x4c\\xba\\xf0\\xcd\\x08\\xee\\x07\\xfa\\x4e\\x01\\\n\\x68\\x8c\\x8a\\x37\\x65\\xe9\\x5e\\xe3\\x71\\xf4\\xae\\x14\\x81\\xb9\\xa9\\xf4\\\n\\xd0\\x9d\\x6b\\xf2\\xc1\\x50\\x2a\\xca\\xa1\\xa9\\xb6\\x8d\\xd7\\xf1\\xfd\\x30\\\n\\x6b\\x18\\xab\\x91\\xeb\\x5a\\x9a\\x63\\x20\\xc4\\xc5\\x1c\\x9e\\xc7\\x99\\xa2\\\n\\x2e\\xb2\\x50\\x49\\x6a\\x19\\x69\\xd0\\x9a\\xf0\\xfa\\x6e\\x70\\xf2\\x4c\\x8e\\\n\\x61\\x0d\\x75\\xa3\\x42\\xda\\xd7\\x56\\x3f\\x0d\\x36\\x1b\\x60\\x72\\x05\\xd6\\\n\\x95\\xe9\\x4e\\xf5\\x3e\\x9f\\x5f\\x4c\\x5c\\xf3\\x1a\\x53\\x4b\\x41\\xfc\\x2b\\\n\\x4d\\x3f\\x2c\\x7f\\x82\\x00\\x0b\\xd6\\xd9\\x1a\\x86\\x4b\\x7e\\x20\\x16\\xb4\\\n\\xad\\x7a\\xeb\\x86\\x7d\\x4b\\x93\\x52\\xc4\\xeb\\xae\\xff\\x00\\xd7\\xe5\\x8e\\\n\\x0a\\x76\\xe7\\x61\\xfa\\x7d\\x35\\xc4\\x6a\\x75\\x05\\xd7\\x7a\\xed\\x51\\x5c\\\n\\x54\\x48\\xc9\\x97\\x12\\x5e\\xd7\\x1e\\x5a\\x2e\\xc9\\xcb\\xd1\\xab\\xd7\\x50\\\n\\x46\\x3c\\x2f\\xc3\\x20\\x98\\x40\\x32\\x93\\xb3\\xdc\\x23\\x32\\xd2\\xd4\\x31\\\n\\xbb\\x33\\x37\\x20\\x46\\x5d\\x2d\\xda\\xba\\x9a\\x0c\\x45\\x9d\\xf1\\x0f\\x1c\\\n\\x9a\\x6c\\xd4\\x25\\x24\\x8d\\x23\\x44\\xcb\\xc5\\x0b\\x21\\x0c\\x9b\\xee\\x45\\\n\\x3b\\xda\\x71\\xec\\x30\\xe6\\x4e\\x67\\x85\\x12\\x91\\x50\\x77\\xda\\xcd\\x7a\\\n\\x75\\xfa\\xe9\\x51\\x85\\xcc\\x70\\xa6\\x57\\x95\\xc9\\x97\\x86\\x54\\xd1\\x8d\\\n\\x45\\xe7\\x70\\x29\\xf1\\xe8\\x79\\x76\\xd7\\x0a\\x81\\x00\\x29\\x68\\x2d\\x42\\\n\\x0f\\x29\\xad\\x48\\xaf\\xc7\\x1b\\x30\\xeb\\xd3\\x0e\\x1b\\x43\\x5b\\x40\\xea\\\n\\x00\\xd6\\x83\\xe8\\x7f\\x2c\\x06\\xf3\\x20\\xf3\\x81\\x5b\\x87\\xaf\\xcb\\xbf\\\n\\x5f\\x4c\\x41\\xe2\\x99\\x37\\x10\\x8c\\xe3\\xf0\\x66\\x76\\xd4\\x7c\\x4c\\x11\\\n\\x15\\x75\\x2c\\x17\\xce\\x6a\\x16\\xbb\\x02\\x37\\x4b\\xf3\\xee\\x22\\x59\\x2e\\\n\\x68\\xd5\\x10\\x5c\\x34\\xae\\xb5\\xa9\\x90\\xed\\x56\\xd0\\x0f\\x28\\x03\\x4c\\\n\\x2a\\xe5\\x65\\xb3\\x2f\\x22\\x95\\x78\\x74\\xf7\\x8d\\x41\\x61\\x24\\xee\\x56\\\n\\x9d\\x70\\xab\\xca\\xb7\\x72\\xa9\\x62\\xba\\x9a\\x6b\\x6f\\x73\\x4f\\xae\\x11\\\n\\x3e\\x15\\xab\\x12\\x77\\xaf\\x4f\\xcf\\x09\\x4d\\xf6\\xfa\\x62\\x4c\\xc6\\x66\\\n\\x44\\x8a\\x28\\x54\\xc8\\xf2\\xb3\\x00\\xaa\\xab\\xeb\\xf2\\x1a\\x0d\\xce\\xd8\\\n\\x6c\\xcf\\xec\\xf2\\x79\\x5e\\x24\\x59\\x08\\x6b\\x71\\xb3\\x40\\x67\\x62\\x36\\\n\\x96\\x60\\x15\\xf7\\x25\\x56\\xc1\\x8e\\x6a\\x9e\\x52\\x42\\x93\\xe9\\x83\\x21\\\n\\xed\\xa5\\x7a\\x02\\x30\\x49\\xf2\\x8a\\xda\\x3e\\x5d\\x47\\xcf\\x6c\\x1b\\x59\\\n\\x91\\x7d\\x18\\x82\\x7d\\x0e\\xdb\\xfd\\x71\\xc4\\xc9\\xe6\\x24\\x8e\\xdf\\x22\\\n\\x16\\xb9\\x16\\xb5\\xdd\\x58\\xd0\\xd4\\x69\\xf3\\xc2\\x66\\x7c\\x5a\\x79\\x65\\\n\\x8d\\x05\\x60\\x89\\x8e\\x95\\xde\\xb6\\x0a\\x2d\\x07\\xca\\xbe\\xb8\\xde\\xa4\\\n\\xd4\\x9f\\xb2\\x3e\\x87\\x02\\xf6\\x2c\\x40\\xfc\\x07\\x4f\\x96\\x1f\\x21\\x68\\\n\\x2b\\xfb\\x55\\xd6\\x8f\\xf6\\x59\\x57\\xbd\\x70\\x47\\x35\\x8b\\x4a\\xed\\xcf\\\n\\xe9\\x5a\\xe0\\xd0\\x79\\x49\\x1f\\x21\\xd8\\x7a\\xfa\\xe3\\x41\\xe5\\xd3\\x52\\\n\\x75\\xf5\\x3e\\xb8\\xd8\\xfe\\x1a\\xfd\\x28\\x31\\x3a\\x35\\x28\\x52\\x51\\x46\\\n\\xad\\x29\\x4f\\xd7\\xf8\\xff\\x00\\xe0\\x3a\\x81\\x5d\\x29\\xdf\\x1a\\xd7\\xa7\\\n\\xf5\\xfd\\x1c\\x6c\\x29\\x8e\\x53\\x41\\xeb\\x85\\x6e\\x65\\x0e\\x79\\x98\\x9b\\\n\\x55\\x7b\\xf3\\x63\\x87\\x13\\x92\\x91\\x57\\x4d\\x85\\x3f\\xdc\\xd7\\x53\\x8e\\\n\\x2c\\xde\\x46\\x17\\x16\\xb7\\xca\\x3b\\x57\\x03\\x28\\xaf\\x1b\\x41\\x39\\x31\\\n\\xf7\\xe5\\x3d\\x4e\\x32\\xb2\\x78\\x59\\x32\\xc5\\x9f\\xa0\\x8f\\x85\\xe4\\x32\\\n\\x1f\\xf2\\xeb\\xad\\xad\\x8c\\xa6\\x63\\xc4\\xa8\\xb9\\xdc\\xd0\\x4f\\x6b\\xb6\\\n\\xa4\\xaf\\x13\\x5a\\xee\\x2b\\x4e\\xb8\\x59\\x20\\x78\\xe4\\x46\\xd6\\xe5\\x35\\\n\\xad\\x75\\xef\\x86\\x1d\\x81\\xaf\\xdd\\x1d\\x49\\xc7\\x0d\\xa4\\x9b\\x31\\x25\\\n\\x34\\x48\\x63\\xdb\\xd0\\xb3\\x1e\\xbd\\xe8\\x69\\x85\\x83\\xc2\\x72\\x4d\\x93\\\n\\x89\\xe9\\x7c\\xe6\\xb7\\x32\\xd4\\x1a\\x71\\x4e\\x8a\\x3a\\x16\\x41\\xdf\\x6c\\\n\\x13\\x2c\\xcb\\x96\\xa8\\x17\\x15\\xf7\\x86\\x4e\\xe4\\x81\\x4a\\x7d\\xd3\\xd7\\\n\\x1f\\xe1\\xf3\\xd1\\xb7\\x51\\xc4\\x46\\x1f\\x2d\\x6a\\x46\\xb8\\x2d\\x98\\xc9\\\n\\xc8\\xe8\\xbb\\xc9\\x97\\xac\\xc9\\xf5\\xb4\\x5e\\x3f\\xed\\xc5\\x84\\x32\\xb0\\\n\\x6d\\x19\\x81\\x56\\x56\\x1a\\xd5\\x6e\\xa1\\x05\\x7b\\xd3\\x05\\x1d\\xbd\\xf2\\\n\\x30\\xe2\\xd4\\x9a\\xd4\\x0a\\x23\\x21\\xaf\\x95\\xc7\\xe0\\x71\\x34\\x59\\xd7\\\n\\x76\\x8d\\x05\\xe9\\x26\\xac\\xf4\\x6e\\x86\\xbd\\x06\\xd8\\x5b\\x24\\x53\\x75\\\n\\x0d\\x2b\\x47\\x23\\xe5\\x8e\\x22\\x37\\x0d\\xfe\\xef\\x5f\\x98\\xc7\\x30\\x24\\\n\\x6c\\x5d\\x35\\x3f\\x23\\x4d\\x46\\x98\\xaf\\x33\\xb6\\xb6\\xa0\\x5a\\xea\\xaa\\\n\\x5a\\x9d\\xf1\\xe2\\x19\\xc9\\xd5\\x4c\\x8a\\xbc\\x38\\x97\\xe0\\xcb\\xc1\\x17\\\n\\x94\\x22\\xff\\x00\\xa7\\x4b\\xbe\\x74\\xc3\\xbc\\x79\\xa9\\x91\\x65\\x3e\\x50\\\n\\xda\\x52\\x94\\xd8\\x83\\xf9\\x63\\x9f\\x30\\xe4\\x79\\x8d\\x74\\x05\\xbb\\xd0\\\n\\x69\\x5c\\x15\\x67\\xa9\\xa5\\x4d\\x2d\\x04\\xf7\\x1b\\x0f\\xea\\xb8\\x83\\x89\\\n\\x1a\\xc6\\xd5\\x1a\\xa9\\x27\\x53\\xa7\\x53\\x4a\\x60\\x90\\x77\\xe9\\xd0\\xd7\\\n\\xbe\\x09\\x6f\\xe7\\x5a\\x57\\x7c\\x47\\x5d\\x05\\x68\\x75\\xa5\\x28\\xb7\\x75\\\n\\xd0\\x6b\\x86\\x9e\\x6e\\x67\\xb1\\x5c\\xb4\\x2b\\xe7\\x69\\x0d\\x6a\\xe4\\x00\\\n\\x02\\x6b\\xcb\\xdf\\x7a\\xe2\\x0f\\x30\\xf7\\x5f\\xb3\\x7a\\xee\\xc5\\x59\\x4a\\\n\\xf4\\x17\\x7d\\xed\\x71\\x24\\x71\\xb8\\x86\\x34\\x8a\\x46\\x0e\\xae\\x04\\x8e\\\n\\x40\\xf8\\x5b\\xec\\xd7\\x40\\x46\\x33\\x66\\x49\\x99\\xd9\\xe5\\xb8\\x09\\x65\\\n\\xba\\x49\\x2a\\x37\\x5e\\xd1\\xd7\\xea\\x77\\x1b\\xe0\\x98\\xb8\\x76\\xd0\\x99\\\n\\x57\\x73\\x43\\x52\\xc8\\x2e\\xf8\\x85\\x37\\xf5\\xc2\\x8a\\x82\\x5d\\x4a\\x85\\\n\\xa1\\x1b\\x00\\xca\\x86\\x95\\xdf\\xcb\\x5e\\xe3\\x04\\xc9\\x21\\x5a\\x1a\\x08\\\n\\x93\\xa8\\x24\\x7d\\x76\\xc2\\x01\\x40\\xb4\\xa5\\x37\\xfe\\xb6\\xc7\\xbb\\x89\\\n\\x4e\\x59\\xa5\\xe2\\x87\\xff\\x00\\xa3\\x32\\xe9\\x6a\\x8d\\x80\\x20\\xd7\\x4f\\\n\\x4c\\x54\\x3e\\xe3\\x76\\xa9\\xf4\\xaf\\xa7\\xf4\\x71\\x5e\\x29\\x69\\x18\\xf2\\\n\\x53\\x45\\x53\\xf6\\x89\\x3f\\x08\\xe9\\xeb\\xa6\\x3c\\x3e\\x59\\xb3\\x52\\x66\\\n\\x62\\x69\\xed\\xe1\\xca\\xd7\\x04\\x69\\x08\\x15\\x40\\x74\\xdc\\xe9\\x82\\x3f\\\n\\x69\\x99\\x2b\\x55\\x5e\\x88\\xb4\\xd2\\x49\\x4f\\xc2\\x2b\\xd3\\x7d\\x8e\\xd8\\\n\\xb2\\x33\\x13\\xd0\\x90\\xae\\x50\\x5d\\x6f\\x73\\xf8\\xed\\xdb\\x1c\\x2f\\x11\\\n\\x9c\\xcb\\x03\\x0f\\xd8\\xaf\\x2a\\x13\\xd0\\x90\\x3a\\x8f\\x5d\\x29\\xd3\\x14\\\n\\x4c\\xac\\x6b\\xdc\\xda\\x3e\\x80\\x6f\\xff\\x00\\x76\\xe7\\xf4\\x3f\\xe1\\xd2\\\n\\xad\\xf7\\x75\\xd7\\xae\\x1a\\x38\\xb4\\x04\\x73\\x69\\xcd\\x4d\\xad\\xdc\\x79\\\n\\xbf\\x86\\x3b\\xd2\\xbf\\xfc\\x74\\xa7\\xca\\xbb\\xe3\\x75\\xf5\\xd4\\xe2\\x2f\\\n\\x0e\\x52\\x38\\x30\\xd6\\x69\\x4a\\xee\\xe4\\x2d\\xc1\\x09\\xf9\\x7e\\xb8\\xe5\\\n\\xa0\\x1b\\x7c\\x86\\x0f\\xcb\\x9b\\x6d\\xbb\\xd7\\x0d\\x70\\xd4\\xea\\x07\\x5d\\\n\\x3b\\xfa\\x0c\\x24\\xf1\\x1a\\x34\\x4d\\x70\\x3b\\x8f\\x4d\\xff\\x00\\x4c\\x58\\\n\\xa7\\xfc\\x50\\x4b\\xe6\\x4d\\x07\\x37\\x75\\xae\\xe3\\xe5\\x82\\x3e\\xed\\xfe\\\n\\xac\\x4d\\x3f\\x2e\\xf8\\xbb\\x63\\x73\\x13\\xf2\\xad\\x31\\x4a\\xaf\\xcf\\xe9\\\n\\x89\\xf2\\xf1\\x35\\xe2\\x35\\xe6\\x23\\xc8\\x24\\xd2\\xe5\\xaf\\x5f\\x9f\\xd3\\\n\\x07\\x5d\\x46\\x3d\\x6b\\xd8\\x7e\\xbb\\xe2\\xbf\\x80\\xfe\\xb7\\xc7\\x5c\\x77\\\n\\xc0\\xcb\\x64\\xd7\\x87\\x96\\x41\\x41\\x6f\\xc5\\x4f\\xf6\\xc3\\x02\\x4d\\x68\\\n\\x3e\\xad\\x86\\x8e\\xaa\\xb6\\x41\\xe6\\xd8\\x6d\\x5f\\xc7\\x0c\\xf0\\x2e\\x62\\\n\\x57\\x8e\\xef\\xd9\\x2b\\x3d\\x4f\\xdd\\x20\\x1d\\x79\\x76\\xc1\\xcd\\xf8\\xf6\\\n\\x5e\\xc1\\x1b\\xb3\\xe5\\xd3\\x36\\x9e\\xf5\\x59\\x3c\\xb2\\x51\\xb9\\x91\\xba\\\n\\x68\\x35\\xc4\\xbe\\x29\\x95\\xca\\x99\\xf2\\xeb\\x52\\xab\\x1f\\x34\\xa1\\x57\\\n\\xca\\xc2\\x23\\xad\\xbd\\x6a\\x35\\xc4\\xee\\x46\\x69\\x6a\\x23\\x82\\x3c\\xb4\\\n\\x8a\\xca\\x92\\xca\\xcf\\xb9\\x04\\xfc\\x0a\\x2d\\xd7\\x64\\x63\\x5c\\x30\\x9f\\\n\\x31\\x00\\xcd\\xc9\\x0b\\x49\\x3c\\xd2\\x52\\xb2\\x48\\xd5\\xe5\\x00\\x9a\\xdb\\\n\\x1e\\x88\\x94\\xc6\\x6b\\x3d\\x9e\\x09\\x3c\\x92\\x4d\\x27\\x09\\x43\\x37\\x09\\\n\\x21\\xd6\\xc0\\x53\\x4e\\x7e\\xa4\\xea\\x2b\\x80\\xb1\\x8a\\x01\\xb2\\xa0\\xdb\\\n\\xee\\xd3\\xd3\\x15\\x76\\x2b\\x4e\\x80\\xeb\\xf9\\x62\\xd5\\x5b\\xad\\xf8\\x9d\\\n\\xb4\\xfc\\xb0\\xde\\xcf\\xc2\\xe3\\x31\\xe1\\xc4\\x2c\\x07\\xa5\\x59\\xa9\\xd6\\\n\\xd1\\xf8\\x1c\\x57\\xc4\\xb2\\x50\\x66\\x0e\\xfc\\x4b\\x44\\x72\\xaf\\xee\\xba\\\n\\x28\\x22\\x9d\\x31\\x16\\x6b\\x21\\x05\\xb0\\xc4\\xa5\\x67\\x43\\x29\\x77\\x94\\\n\\x17\\x07\\x4d\\x29\\x44\\xa5\\xc0\\x6e\\x4f\\xae\\x12\\x44\\x6a\\x89\\x14\\xdb\\\n\\xd0\\xf7\\x29\\xaf\\x5a\\x8d\\x70\\x24\\xe2\\xba\\x30\\xaa\\x46\\xa1\\xca\\xda\\\n\\x36\\xd2\\x9d\\x70\\xb1\\xc3\\x9c\\x92\\x66\\xa2\\x5c\\xae\\xa2\\x41\\xa0\\xb4\\\n\\x6f\\xf8\\xe0\\xfb\\x47\\x89\\x65\\xb2\\xca\\xda\\xda\\x63\\x88\\xb8\\x00\\x6a\\\n\\x14\\x6b\\xe6\\x20\\xd3\\xd7\\x0d\\x94\\xf1\\x1c\\xbc\\xc9\\x24\\x24\\x2c\\x7e\\\n\\x27\\x1c\\x7e\\xe6\\x62\\xe0\\xd7\\xda\\x2d\\xb4\\x29\\x90\\x56\\xb4\\x14\\xef\\\n\\xa6\\x3c\\x78\\xe5\\x9e\\x29\\xe0\\xcd\\xbc\\xc3\\x23\\x2b\\x3d\\x18\\xc7\\xc6\\\n\\x6b\\x43\\x2b\\x03\\x65\\x17\\xec\\xf4\\xa6\\x24\\x79\\x20\\x8d\\x38\\x6d\\x44\\\n\\x46\\x90\\x5d\\x31\\x00\\x96\\x31\\xdb\\xa6\\xbd\\x2a\\x45\\x7e\\x78\\x43\\x9d\\\n\\x85\\xe0\\x86\\xb4\\x2a\\x74\\x94\\xda\\xd4\\xa3\\x7d\\xd1\\xcd\\x4f\\x9e\\x23\\\n\\xcb\\x49\\xe1\\x79\\x6e\\x1f\\x29\\x6a\\x0b\\x64\\x76\\x41\\xa1\\x92\\x41\\xef\\\n\\x0f\\xff\\x00\\xb9\\x4f\\xba\\x06\\x98\\x7e\\x16\\x47\\x99\\x9a\\xe0\\x5a\\x49\\\n\\x1a\\xcd\\x41\\xa0\\xab\\xed\\xe9\\x8f\\x8e\\x29\\x14\\x5b\\x08\\x8c\\xd2\\x36\\\n\\x01\\x74\\x0e\\x1a\\xb5\\xa7\\x7c\\x34\\x53\\xda\\xae\\x0d\\x08\\x5d\\x54\\x9a\\\n\\x6e\\xb4\\xa7\\x2f\\x6d\\xc6\\x33\\x8f\\x14\\x55\\x8f\\x2d\\x1f\\x10\\x92\\xd6\\\n\\x0d\\x4d\\x86\\x9e\\x6a\\x90\\xaf\\x21\\x07\\xa6\\xf5\\xc2\\x78\\x6c\\x46\\x26\\\n\\x41\\x12\\x3f\\x28\\x2c\\x23\\xb2\\xcb\\x23\\x2d\\xf1\\x2e\\xd7\\x81\\xd5\\x97\\\n\\x10\\xc7\\x9b\\x57\\x23\\x86\\x19\\x5a\\x05\\x78\\xab\\x4b\\x79\\x55\\xc7\\x5a\\\n\\xd3\\x45\\xe7\\x54\\xa9\\xa6\\xa3\\x13\\x24\\x0c\\x0a\\x86\\xb8\\xa8\\x45\\xbc\\\n\\x2a\\x05\\x45\\x8b\\x88\\xda\\xa0\\x5d\\x68\\x83\\xe6\\x71\\x9c\\xcc\\x4a\\xb7\\\n\\xc2\\x73\\x3c\\x34\\xe3\\x1b\\x82\\x85\\x16\\xdc\\x14\\x00\\x58\\xa7\\x43\\x4a\\\n\\x77\\x3a\\x60\\x65\\x62\\x75\\xcb\\xc9\\x48\\xc3\\xf0\\x54\\xde\\xcc\\xe7\\x55\\\n\\xbb\\x5b\\xc5\\x09\\xdf\\x41\\x5a\\x0d\\x30\\x0b\\x2a\\xcd\\x72\\x21\\x32\\x49\\\n\\x6d\\x79\\x4b\\xeb\\xd3\\x99\\x6b\\xa7\\x7c\\x1f\\x14\\xcd\\x30\\x82\\x12\\xea\\\n\\xa1\\x00\\x34\\x62\\x76\\x66\\x22\\xb4\\x5a\\x9b\\xb5\\xa7\\x30\\x18\\x69\\x20\\\n\\x91\\x18\\xe8\\xc4\\x2b\\xa9\\xad\\x36\\xaf\\xa9\\xc6\\x70\\xc8\\x49\\x96\\x59\\\n\\xe1\\x86\\x00\\x0e\\xa7\\x9c\\x87\\x71\\xd6\\x96\\x99\\x3f\\x2e\\xf8\\x55\\x45\\\n\\x55\\xe5\\x51\\x46\\x1d\\xfa\\xeb\\xf8\\xfc\\xeb\\x86\\xa9\\x62\\x0b\\x68\\xc7\\\n\\x5f\\xf4\\x8f\\xae\\x22\\x99\\xe4\\x54\\x68\\x89\\x29\\xb1\\x61\\x22\\x95\\x3c\\\n\\xa3\\x70\\xd8\\x32\\xcd\\x2b\\x73\\x11\\xa3\\x1a\\xb1\\xa0\\xea\\x77\\x3f\\x2d\\\n\\x81\\xc5\\x50\\x86\\x62\\x3b\\xe2\\xe2\\x7f\\xdb\\xa5\\x3f\\x01\\x8d\\x35\\xff\\\n\\x00\\x9c\\x7e\\x18\\x6a\\xeb\\xfd\\x75\\xc0\\xb6\\x9b\\xed\\xd0\\x7a\\xfd\\x3b\\\n\\x8c\\x26\\x5e\\x16\\x53\\x99\\x90\\x31\\x90\\x69\\xee\\x55\\x81\\x1f\\xfe\\xe7\\\n\\x6c\\x71\\x24\\xa9\\xdc\\x31\\xd0\\xb3\\x57\\xf9\\x93\\x53\\x85\\x6b\\x47\\x4f\\\n\\xcf\\xd3\\x1f\\x51\\xa7\\x7f\\xf8\\xc1\\x14\\xd6\\xd3\\xf9\\xd7\\x4f\\xcf\\x5c\\\n\\x48\\xcd\\xb5\\xbb\\x8d\\x31\\x7e\\x5a\\x46\\x8d\\xe8\\x16\\xf4\\x63\\x5a\\x76\\\n\\x18\\x58\\x73\\x91\\x5f\\xcb\\x69\\x9f\\x66\\xb7\\xb7\\x6f\\xbd\\xf3\\xc3\\x00\\\n\\xe4\\x47\\xb5\\x4a\\x90\\x69\\xbe\\x9a\\x77\\xc6\\x62\\x0c\\xb6\\x68\\x94\\x56\\\n\\xb0\\x11\\x45\\xb8\\x30\\x07\\x4f\\x5d\\x68\\x7e\\x58\\x6e\\xe7\\xbe\\xff\\x00\\\n\\xf8\\x54\\x6f\\xdb\\xb7\\xae\\x3d\\x71\\x4a\\xff\\x00\\xe1\\x1f\\xb2\\x1b\\xe4\\\n\\x2d\\xb1\\xd2\\xbf\\x2a\\xe9\\x88\\x72\\xdc\\x25\\x79\\xe4\\x3c\\xc7\\x60\\xa0\\\n\\x1a\\xea\\xc3\\xa7\\xae\\x33\\x91\\x78\\x87\\x12\\x89\\x29\\x48\\xec\\x9a\\xb1\\\n\\x90\\x3a\\x02\\x28\\x4f\\xcf\\x6a\\xe1\\x96\\x38\\x21\\x59\\x10\\x12\\x88\\x14\\\n\\x17\\x63\\xde\\xb4\\x2d\\xd8\\xd7\\x73\\xdf\\x13\\x2e\\x6f\\x31\\x27\\x86\\x78\\\n\\x64\\x64\\xb4\\x8d\\x4a\\x4f\\x9a\\x7f\\xb3\\x12\\xb6\\xa1\\x3e\\xd4\\x87\\xfe\\\n\\xde\\xb8\\x39\\x5c\\x96\\x6d\\x96\\x14\\x4d\\x5a\\x42\\xcc\\xf2\\x9e\\xa8\\x4e\\\n\\xf4\\xfc\\x07\\x6c\\x19\\x72\\xc7\\xda\\x33\\x0d\\x77\\x01\\x45\\xca\\x21\\x93\\\n\\x6b\\xd8\\x75\\xd7\\xe9\\x83\\x26\\x73\\x3a\\xd2\\x68\\x14\\x8a\\xec\\xbd\\x15\\\n\\x46\\xc1\\x6b\\x5d\\x29\\x8b\\xae\\x36\\x01\\x52\\xcc\\x75\\xfe\\x5a\\xe0\\x5a\\\n\\x44\\x6a\\xc3\\x65\\xd0\\xeb\\xd5\\x9b\\x72\\x7e\\x44\\x03\\xdb\\x4c\\x20\\x07\\\n\\xcc\\x79\\xdb\\xec\\xe9\\xf5\\xa9\\x7d\\xbd\\x3e\\x7a\\xe3\\x8e\\x2a\\x21\\x14\\\n\\xaa\\x0f\\x8b\\xea\\x7f\\x4c\\x71\\x23\\xb6\\x34\\x8e\\xa9\\x12\\x7c\\x56\\x56\\\n\\xba\\xfd\\xe6\\xff\\x00\\x6c\\x7b\\xd5\\x62\\x36\\xe7\\x3a\\x03\\xb6\\x9e\\x98\\\n\\x19\\xb9\\xa6\\x4a\\x5b\\xcb\\x1a\\x8e\\x67\\x6e\\xdf\\x20\\x3a\\xd3\\x7c\\x23\\\n\\xb2\\x97\\xcb\\xbc\\xcb\\xc4\\x8a\\x31\\x56\\x52\\x74\\xbd\\x14\\x03\\xcd\\xb8\\\n\\x22\\x94\\xe6\\xaf\\x4c\\x4d\\x9c\\xcc\\x2c\\xcd\\x95\\xe2\\xb1\\x84\\x42\\x97\\\n\\x49\\x6e\\xad\\xaa\\x8e\\x6d\\x13\\x73\\xf6\\xb0\\xbe\\xce\\xf1\\xf8\\x72\\x3e\\\n\\xf7\\x2b\\x3c\\xe5\\x0f\\xda\\x20\\x28\\x0d\\xe9\\xb7\\xae\\x2f\\xce\\x66\\x67\\\n\\xce\\x04\\xa5\\x63\\x0a\\x62\\x0c\\xfb\\xfb\\xc6\\x0e\\x5e\\x94\\xfb\\x25\\x7e\\\n\\x78\\x58\\xd2\\x25\\x8a\\x35\\x0b\\xc8\\xa0\\x2a\\x80\\xba\\x0d\\x05\\x2b\\x41\\\n\\xd4\\x93\\x85\\x8e\\xf2\\xf2\\xb9\\x36\\xa2\\x11\\xaf\\xce\\x9b\\x01\\xfd\\x1c\\\n\\x19\\x24\\x97\\x51\\xa4\\x6a\\x3c\\xb1\\x8f\\x4d\\xfe\\x75\\xfc\\xf0\\x5a\\x43\\\n\\x5b\\x74\\xaf\\x7a\\x77\\xff\\x00\\x6a\\x62\\xd4\\xdc\\x01\\xf2\\x1f\\x4e\\xf8\\\n\\x05\\xd8\\x54\\xf5\\x34\\xc1\\x0b\\xa7\\x2d\\x3a\\x56\\x9f\\xa5\\xbf\\x6b\\xf5\\\n\\xc3\\x3b\\x3a\\x3a\\x84\\xe4\\x0a\\x36\\x5e\\x94\\x3d\\xaa\\x0e\\x83\\x41\\xdb\\\n\\x06\\x2f\\x0d\\x56\\x0d\\xe2\\xb3\\xfb\\x01\\x28\\xa0\\xc8\\xa7\\x85\\x71\\x58\\\n\\xbb\\x72\\xba\\x5c\\xe4\\xd9\\x18\\xa8\\x22\\xbc\\xc3\\x31\\x97\\x68\\x9d\\x16\\\n\\x32\\xf1\\xf1\\x13\\x99\\xe6\\x91\\x69\\xad\\xfe\\x4a\\x06\\x40\\x45\\x39\\x74\\\n\\x17\\x31\\xc6\\x5f\\xda\\x73\\xac\\x86\\xbc\\x10\\x88\\x69\\xc3\\x89\\x8f\\x32\\\n\\x5e\\xa0\\x56\\x49\\x6d\\x7a\\x94\\xb4\\x05\\xd0\\x12\\xdc\\xd8\\xb6\\x18\\xd6\\\n\\x50\\x10\\xbb\\xb9\\x5b\\x22\\xf7\\xa1\\x5a\\xf0\\xd2\\x55\\xe4\\x6e\\x8a\\x3c\\\n\\xd5\\xd5\\xad\\x02\\x85\\xf3\\x33\\xc7\\xa3\\xf1\\x64\\x62\\x42\\x05\\xf7\\x4d\\\n\\x57\\x2b\\x7f\\x98\\x0a\\x85\\x32\\x90\\x79\\x81\\x11\\x06\\x03\\x43\\x99\\x82\\\n\\x3e\\x58\\x25\\x58\\xa1\\xda\\x34\\xf5\\x6e\\xae\\xdb\\x76\\xd3\\xea\\x30\\x85\\\n\\xd1\\xaf\\x2c\\x29\\xa9\\x71\\x4f\\xba\\x95\\xa0\\x1f\\x3f\\x9e\\x3d\\x8f\\x3f\\\n\\x15\\x63\\x70\\x52\\x92\\xa8\\xb4\\x90\\x95\\xa5\\x76\\x3b\\xd4\\x6b\\xad\\x3d\\\n\\x31\\x98\\xf1\\x3f\\x0b\\xcf\\x24\\x51\\xc0\\x1e\\x76\\xca\\x4e\\xf5\\x59\\x23\\\n\\x43\\x5b\\x63\\xd4\\xd0\\x9d\\x95\\x75\\xf4\\xc7\\x80\\xe6\\x01\\x69\\x32\\xaf\\\n\\xcb\\x98\\xb9\\x88\\x43\\x21\\xb2\\x65\\x6d\\x34\\x1f\\x10\\x15\\x3e\\x5d\\x37\\\n\\xd7\\x00\\x49\\x9e\\x87\\x8e\\xf4\\xac\\x71\\x95\\x95\\x8f\\x41\\x72\\xa6\\x8a\\\n\\x05\\x29\\xf2\\xeb\\x82\\x60\\x16\\xc4\\xab\\x75\\x4d\\x0b\\x1a\\x7e\\x4b\\xf8\\\n\\x9e\\xda\\x63\\xda\\x26\\x96\\x43\\x24\\xb2\\x3b\\x70\\xd6\\xba\\x92\\x76\\xa9\\\n\\x27\\x97\\xbe\\x2f\\xb4\\x56\\xb4\\x61\\xa3\\x5b\\x4e\\x9f\\x2f\\xc7\\x5e\\xb8\\\n\\x05\\x40\\xf4\\xa0\\xed\\xf4\\xdf\\x0d\\x26\\xa6\\xe0\\x39\\x7a\\x0f\\x90\\xe9\\\n\\xf5\\xae\\x29\\xcc\\x3f\\x0a\\x6b\\xf8\\x60\\xea\\x41\\xec\\x7a\\xfe\\x35\\xfc\\\n\\xa9\\x83\\xe5\\xfc\\x29\\xfc\\x74\\xf9\\x1c\\x16\\x34\\xa2\\xeb\\x89\\x49\\x62\\\n\\xcf\\x23\\xbb\\x6b\\x56\\xa0\\xed\\xa9\\x26\\x9d\\xb0\\x34\\x04\\xb6\\xbe\\xbd\\\n\\xb0\\xbf\\x0b\\x2a\\xd0\\x9d\\x28\\x4e\\x83\\x4e\\xbf\\x3d\\x77\\xc2\\x89\\x9d\\\n\\x85\\xcd\\x71\\xb5\\x7c\\xa3\\x5a\\xd4\\x7e\\x83\\xeb\\x83\\xc4\\x95\\xbc\\xd4\\\n\\x15\\x8f\\x4b\\x47\\xc7\\xa5\\x3f\\x0a\\xe1\\xf2\\xd9\\x28\\xae\\x0c\\x0a\\x99\\\n\\x9e\\x83\\x7e\\xaa\\x9a\\xfe\\x67\\x1c\\xc2\\xe1\\xf8\\x1c\\x0e\\x28\\x92\\xbd\\\n\\xa8\\x0e\\x2c\\xca\\x41\\x68\\xea\\xf3\\x00\\xc7\\xe8\\xbe\\xbe\\xb5\\xc7\\x88\\\n\\x3c\\xd9\\xb1\\x96\\xcc\\x41\\x95\\x9f\\x3b\\x97\\x52\\x39\\x27\\x96\\x14\\x79\\\n\\xbd\\x9f\\x71\\x6f\\x10\\x46\\xca\\x86\\xba\\x1a\\x6f\\x8b\\x86\\xcd\\xfc\\x45\\\n\\x7f\\xf0\\xfe\\xbe\\xb8\\xef\\xfc\\x31\\xa7\\xfc\\x62\\x9b\\xfe\\x18\\x97\\x31\\\n\\x18\\xb5\\x95\\x78\\x50\\x47\\x4b\\xff\\x00\\x5d\\xf0\\xd2\\xe6\\x1d\\x63\\x9a\\\n\\x5e\\x5e\\x65\\xd4\\x06\\xd3\\x4f\\xb3\\xb9\\xd3\\x1c\\x66\\xcd\\x19\\xf4\\xba\\\n\\x8f\\xb0\\x24\\x79\\x7a\\x0f\\xc5\\x7e\\x58\\x96\\x5a\\x56\\x36\\x36\\xa2\\x9d\\\n\\x80\\x1d\\x87\\x62\\x31\\xfe\\x1b\\x90\\xf6\\x03\\xae\\xf6\\xff\\x00\\x1c\\x58\\\n\\xcf\\xf3\\xfb\\x4c\\x3b\\x7a\\x63\\x95\\xec\\x26\\x82\\xe3\\xcc\\xc7\\xd3\\x4d\\\n\\xbf\\x86\\x37\\x2c\\xe7\\xb9\\xd0\\xfd\\xd1\\x4c\\x08\\xcd\\x0d\\x14\\x33\\x00\\\n\\x77\\x63\\xa0\\xc1\\x66\\x35\\x90\\x52\\xc4\\x3b\\xd7\\x5b\\x4f\\xc8\\x61\\xa5\\\n\\x95\\x98\\xb3\\x5c\\x57\\x97\\xe2\\xdf\\xe2\\x20\\x5b\\x5e\\xbf\\x85\\x71\\xc3\\\n\\x66\\x69\\x00\\xa5\\x06\\xd4\\xa7\\xd4\\x0d\\x70\\x6b\\xbd\\x7f\\x3c\\x52\\x95\\\n\\xc0\\x8a\\x46\\x2a\\x28\\x55\\x4a\\x8a\\x95\\x1d\\x69\\xf4\\xff\\x00\\x6c\\x24\\\n\\x79\\x6c\\xad\\xb6\\xd2\\x93\\xb3\\x0e\\x2b\\xb7\\xfd\\x43\\xcb\\xcb\\xe8\\x17\\\n\\x6f\\x4c\\x3e\\x55\\xe6\\x25\\xf5\\xb7\\x89\\x43\\x5b\\xb7\\x5a\\x9f\\x5e\\xf8\\\n\\x28\\x78\\x64\\x15\\x17\\x16\\x8d\\x49\\x0b\\xa0\\xe4\\x36\\x55\\x4f\\xad\\x2b\\\n\\xd7\\x00\\x4c\\x81\\x08\\x0a\\x84\\xad\\x0d\\xd6\\xe9\\xcd\\xd6\\xbd\\xb1\\x77\\\n\\xb4\\x45\\xe5\\xf2\\xd7\\x5f\\x95\\x37\\xae\\x32\\x7e\\x21\\x91\\x9e\\xf5\\x05\\\n\\x92\\x7c\\xb8\\x26\\xdf\\x78\\xb4\\xbd\\x6b\\xf6\\x70\\xaa\\x09\\x05\\xb7\\xa6\\\n\\xf6\\xed\\xf8\\x1f\\xcc\\x62\\xaa\\x76\\xf5\\xe5\\x07\\xeb\\x4c\\x7b\\xa3\\xc5\\\n\\x72\\x4d\\x5b\\x65\\xf5\\xa5\\x77\\xef\\xf9\\x63\\xde\\x49\\xc9\\xd9\\x40\\x15\\\n\\x1b\\x01\\x41\\xb7\\xaf\\x7c\\x11\\x2c\\xdc\\x38\\x55\\x5a\\xfd\\x6c\\x1a\\xe9\\\n\\xcc\\x4d\\xb4\\x14\\xf9\\x62\\x48\\x7c\\x3e\\x5e\\x36\\x5d\\x2c\\x8d\\x5b\\x5d\\\n\\x4e\\xb7\\x05\\xae\\xea\\x0e\\xdf\\x3a\\xeb\\xa6\\x3c\\x34\\xbc\\x2d\\x2e\\x6d\\\n\\xa5\\x9f\\x33\\x4b\\x8c\\x6b\\x18\\x91\\x2c\\x11\\xb3\\x53\\x41\\x62\\xb4\\xb2\\\n\\x77\\xbb\\xd3\\x12\\xe6\\xb3\\x20\\x41\\x1a\\xd2\\x38\\xa2\\x85\\x1e\\xd0\\x97\\\n\\x72\\x46\\xb5\\xb2\\x80\\xad\\x4c\\x95\\xb9\\xcd\\x40\\xb4\\x57\\x14\\x7c\\xa9\\\n\\x91\\x43\\x51\\x43\\x8a\\x14\\x55\\xd0\\x68\\x39\\x54\\x9f\\x80\\x03\\xca\\xa7\\\n\\x5c\\x71\\x65\\x0c\\x28\\xbe\\xed\\x24\\x3c\\x8a\\x29\\xa9\\xa5\\x68\\xbe\\x8a\\\n\\xb5\\xd7\\x7d\\x70\\xf9\\x65\\x60\\x2b\\x7d\\xf5\\x37\\x2c\\x71\\x53\\x96\\x32\\\n\\xbf\\x6a\\xe2\\x74\\xdb\\x0f\\x2c\\xb3\\xe6\\x63\\xca\\x47\\xf1\\x05\\x1a\\xb7\\\n\\x29\\xb5\\x69\\xb0\\x73\\x41\\x4c\\x0b\\xef\\x89\\x8f\\x32\\x2c\\x94\\x56\\x08\\\n\\x4d\\x17\\x70\\x4c\\x6b\\xd2\\xff\\x00\\x35\\x6b\\x41\\xa1\\xa3\\xb1\\xb8\\xdd\\\n\\x46\\x12\\xcb\\x31\\x5b\\x64\\xae\\xc2\\x9f\\x09\\x41\\x4f\\x50\\xda\\x1a\\xe1\\\n\\xa2\\x85\\x8c\\xeb\\x71\\x27\\x99\\xa8\\x64\\xda\\xca\\xb1\\xa9\\x51\\x6a\\xd2\\\n\\x9a\\x7d\\x6b\\x8c\\xa4\\x7b\\xbf\\x19\\x78\\x91\\xd3\\x58\\x8c\\x5a\\x32\\x90\\\n\\x7d\\x3a\\xed\\xdb\\x0b\\xed\\x69\\x64\\xf2\\x55\\xb8\\xb0\\x72\\x3a\\xe8\\x00\\\n\\x24\\x0a\\x03\\xaf\\xda\\x14\\x3d\\xf0\\xb1\\x2e\\x73\\x8e\\xac\\x7e\\xc5\\xbc\\\n\\x34\\xf8\\x50\\x9a\\xf3\\xb1\\xf9\\x63\\x8d\\x1c\\xab\\xc2\\x55\\xe4\\x8f\\x87\\\n\\xad\\x69\\xbd\\xfe\\xa3\\xa7\\xa6\\x3d\\xa5\\x25\\xb1\\x5a\\xd2\\xeb\\x21\\xdf\\\n\\x98\\x57\\x4d\\x1a\\x85\\x6e\\xa1\\xf4\\xc5\\xb9\\x85\\x2d\\x1d\\x2b\\x19\\x8b\\\n\\x4f\\x95\\x6e\\xe9\\xf2\\xdf\\x03\\x85\\x34\\x64\\xd3\\xc9\\x5a\\x30\\xd2\\xa6\\\n\\xa0\\xd3\\x6c\\x54\\x6b\\xfb\\xb8\\x00\\xe9\\x51\\x5d\\xc5\\x7e\\x74\\x3f\\xd5\\\n\\x74\\xc7\\xbf\\x9e\\x24\\xb7\\x71\\x51\\x5f\\x91\\x0a\\x4e\\xb8\\x78\\xde\\xa9\\\n\\x0b\\x0a\\x09\\x5f\\x6f\\x5a\\x81\\xa8\\x1d\\x45\\x05\\x70\\xb2\\xe4\\x1e\\x79\\\n\\x16\\xd6\\xbf\\x8e\\x8a\\x39\\xf5\\x1c\\xb4\\x3a\\xad\\x36\\xae\\xbd\\xf0\\xbd\\\n\\xe8\\xba\\x9d\\xb5\\x15\\xc7\\x2d\\x79\\x75\\xf9\\xf7\\xaf\\xf0\\xc1\\x63\\xa9\\\n\\xad\\x7f\\x3a\\xfe\\x98\\xfe\\xb4\\xaf\\xa6\\x3e\\x7f\\x4c\\x74\\xfe\\xba\\x63\\\n\\x35\\xe2\\x21\\x6b\\x96\\xcb\\x5b\\xc4\\x93\\xef\\x39\\x02\\xc5\\xf5\\xd7\\x5c\\\n\\x7f\\xbe\\x23\\x48\\xc9\\x0c\\xc0\\xdd\\x6f\\xd9\\xdd\\xab\\xfe\\x90\\x7d\\x71\\\n\\x99\\xf7\\xa4\\x4d\\x16\\x88\\x3f\\xcb\\xd6\\xba\\x91\\xbe\\xfa\\x1e\\xa2\\xbf\\\n\\x2c\\x70\\xe5\\xd4\\xf5\\x64\\xad\\x87\\xe4\\x4e\\xff\\x00\\xae\\x00\\xeb\\xaf\\\n\\xf2\\x03\\xa6\\x05\\x08\\x1e\\xbd\\x34\\xdf\\x73\\xfa\\x60\\xfc\\x26\\xbf\\xd7\\\n\\xf4\\x70\\x18\\x10\\xfd\\xc8\\x3f\\x16\\xe4\\x7d\\x2b\\x83\\x9a\\x9d\\xc3\\x97\\\n\\x1e\\x4f\\xb0\\x57\\x43\\x4d\\x4f\\xf0\\xc6\\x57\\x35\\x0b\\xdd\\x0a\\xc8\\x8f\\\n\\x3a\\x2f\\xd9\\x06\\xb4\\x6d\\x45\\x3e\\x7a\\xe1\\xec\\x7b\\x15\\xa9\\x6a\\x03\\\n\\xca\\xbd\\x29\\xa9\\x1a\\xfa\\xe2\\xe2\\xff\\x00\\xfc\\x87\\xf3\\x38\\xe3\\x33\\\n\\x16\\xbf\\xc9\\x6d\\x6a\\x13\\x6d\\xfb\\xfa\\xf6\\xd3\\x14\\x37\\x56\\xa7\\x73\\\n\\xaf\\xa6\\xa7\\x1f\\x3d\\xaa\\x4f\\xd4\\xd3\\x0b\\xad\\x5f\\x6d\\x35\\x3f\\x96\\\n\\x23\\x6a\\x04\\xa7\\x9b\\xed\\x37\\xfb\\xe0\\x34\\x84\\x04\\x04\\xa8\\x8c\\xd6\\\n\\xeb\\x6d\\xd3\\x9b\\xd4\\x91\\x4c\\x05\\x0c\\x28\\x00\\x16\\xfc\\xb1\\x4c\\x1a\\\n\\x2d\\x7d\\x69\\xf4\\xa0\\xf5\\xc7\\x2d\\xff\\x00\\x5c\\x6b\\x1f\\x4a\\xd7\\x4f\\\n\\xc3\\x01\\x5a\\xb1\\x37\\xc1\\x30\\x02\\xab\\xf2\\xaf\\x9b\\xf0\\xc6\\x59\\x17\\\n\\x8b\\x2f\\x10\\x24\\xae\\xfc\\xc5\\x9e\\x44\\x6a\\x79\\xa8\\x06\\xdf\\x02\\x53\\\n\\x03\\x31\\x60\\x56\\x90\\x9a\\xc2\\x05\\x2c\\xec\\xbf\\x41\\xb7\\xf1\\xc1\\x94\\\n\\xdd\\x57\\xa6\\x84\\xd4\\x00\\x36\\xa7\\xae\\x14\\x2b\\x5b\\x47\\xbd\\x8f\\xa0\\\n\\x04\\x1a\\x1f\\xcb\\x6c\\x3a\\xd7\\xb0\\x1b\\x1e\\x95\\xf5\\x6e\\x86\\xba\\x75\\\n\\x1a\\xef\\x87\\x91\\xd4\\xc8\\xc7\\x55\\x41\\xf0\\x8f\\x83\\x88\\xdd\\xba\\x00\\\n\\x3e\\x4d\\x80\\xd2\\x12\\x02\\xea\\x14\\xe8\\x89\\xde\\x8b\\xa0\\xfa\\xef\\x83\\\n\\x24\\x8e\\x91\\xc4\\xa0\\x96\\x92\\x46\\x44\\x45\\x50\\x2b\\x52\\x49\\xde\\x80\\\n\\xff\\x00\\xbe\\x0c\\x1e\\x19\\x98\\x4f\\x13\\xf1\\x09\\x28\\x88\\xb0\\x57\\xd9\\\n\\x61\\x63\\xb3\\xc9\\x21\\xf3\\x85\\xea\\xa9\\x5a\\xf7\\x18\\xf0\\xef\\x0a\\x9f\\\n\\x3d\\x3c\\xd1\\x49\\x24\\x7e\\xd2\\x23\\x66\\x09\\x24\\x8f\\xf0\\x05\\x5b\\x41\\\n\\x40\\xda\\x5b\\x6e\\xd8\\x8f\\x3f\\x9e\\x95\\x60\\x17\\x29\\x8a\\x05\\xd5\\x88\\\n\\x34\\xab\\x39\\x25\\x6c\\x5a\\x53\\x97\\xd3\\xe7\\x5e\\x2b\\xfb\\xfc\\x96\\x5e\\\n\\xab\\x18\\x84\\x5b\\x7b\\xb9\\xa5\\xa5\\x88\\xb7\\x43\\x7d\\xf2\\xdd\\x51\\x41\\\n\\x1a\\xa5\\x75\\x31\\x1c\\xcb\\xc4\\xa7\\x56\\xb6\\xfe\\x58\\xc5\\x47\\x2a\\xf7\\\n\\xd3\\x66\\xfc\\xb0\\x6d\\x19\\x75\\x8c\\x9e\\x52\\x0d\\x49\\x23\\x56\\x3a\\x55\\\n\\x9a\\x9b\\xb5\\x36\\xae\\xc0\\x61\\xa5\\x98\\xa4\\x63\\x43\\x1c\\x3e\\x53\\xcb\\\n\\xaa\\x03\\xa9\\xb3\\xbc\\x82\\xa4\\xa8\\xd0\\x36\\xb8\\xf6\\xae\\x2a\\x73\\xaa\\\n\\x52\\x2b\\xbf\\x68\\xe3\\xcd\\x2d\\x94\\xa2\\x83\\xb2\\x5d\\xe5\\x50\\x3b\\xe2\\\n\\x39\\xb3\\x1c\\x09\\x72\\xe9\\x49\\x16\\x30\\xd7\\x57\\x4e\\x42\\xe3\\x41\\x56\\\n\\x35\\x75\\x5d\\xf8\\x56\\x48\\x69\\xc4\\x01\\x5b\\x31\\x7c\\x31\\xbc\\x92\\x54\\\n\\x33\\x5b\\x4d\\x8d\\x15\\x7d\\x16\\x3a\\xd3\\xa0\\x79\\x2a\\x71\\xef\\x26\\x69\\\n\\x99\\x9c\\xd4\\xd7\\x45\\xb7\\x60\\xab\\xb0\\x00\\xd3\\x4c\\x51\\x18\\xd0\\x10\\\n\\x4d\\x7d\\x77\\xbb\\xbe\\xb8\\xcd\\x64\\xcb\\x80\\xca\\xc8\\x57\\x5b\\x23\\x0f\\\n\\x2a\\xd1\\x38\\x87\\xb4\\x8d\\x44\\x2f\\x4a\\x29\\x60\\xc7\\x41\\x89\\x46\\x68\\\n\\x94\\x95\\x1b\\x85\\x61\\xd0\\xae\\xc5\\x05\\xbf\\x5d\\x3b\\xad\\x3a\\xe0\\xab\\\n\\xc8\\x12\\xc1\\xaf\\x6b\\xe3\\x15\\x3d\\xb0\\x00\\xa9\\xb4\\x55\\x4d\\x39\\x6e\\\n\\x51\\xa1\\x61\\x5d\\x8e\\x0b\\x66\\x58\\xc8\\x3e\\x18\\xf5\\x21\\xba\\xf9\\x7a\\\n\\x01\\x41\\xa7\\xd3\\xae\\x0e\\x62\\x4a\\x73\\x80\\x15\\x69\\xe5\\x1d\\x3e\\x58\\\n\\xf6\\x6c\\xaf\\x2d\\xac\\x04\\xb2\\x0d\\xcb\\x6e\\x54\\x75\\xd0\\xd6\\xbd\\xf6\\\n\\xae\\x3f\\xbe\\x3c\\x59\\xf3\\x6d\\xe0\\x5e\\x1f\\x57\\x92\\x24\\x77\\xae\\x7f\\\n\\x31\\x12\\xdd\\x1e\\x46\\x21\\x50\\xcd\\x7c\\x81\\x78\\xd6\\x8b\\x51\\x48\\x04\\\n\\xeb\\x5c\\x66\\x33\\xd3\\xa3\\x65\\x4c\\xcc\\x4c\\x79\\x74\\x4e\\x12\\xc3\\x0e\\\n\\xab\\x14\\x6a\\xba\\x52\\xd4\\xa0\\x3a\\x54\\x91\\x76\\xf8\\x2c\\xed\\x5d\\x28\\\n\\x6a\\x49\\xe6\\xe8\\x7e\\x9f\\x8e\\x38\\x71\\x6d\\x5d\\x5b\\x53\\xf5\\xfa\\x6f\\\n\\x81\\x68\\xfd\\x9e\\xbf\\x79\\xbe\\xd1\\xaf\\xa9\\xc0\\xaf\\x4e\\x5a\\x75\\xef\\\n\\x83\\xeb\\xfa\\x76\\xff\\x00\\xc7\\x90\\x73\\xf4\\xd2\\xbf\\x40\\x3b\\xe3\\xda\\\n\\xb3\\x2f\\xec\\xb0\\x6e\\x6e\\x5f\\x78\\xc3\\x73\\x68\\xf8\\x7e\\xb8\\xcd\\x78\\\n\\x6c\\x79\\x88\\x0c\\x72\\xc7\\x6b\\xa1\\x75\\x69\\x4c\\xdd\\x18\\x0d\\xee\\xba\\\n\\x84\\xfe\\xb8\\xfd\\x29\\x8c\\xaf\\xb6\\xce\\xf9\\x5c\\xab\\xca\\xb1\\x4f\\x34\\\n\\x62\\xb2\\x24\\x2f\\xa4\\xa5\\x6b\\xa5\\xf6\\x9d\\x0d\\x74\\x15\\xd3\\x6c\\x78\\\n\\xaf\\x86\\x64\\xb3\\x2b\\x9b\\xc8\\x96\\xbf\\x21\\x98\\x0d\\x5e\\x2e\\x55\\xd1\\\n\\x25\\x81\\x8f\\xde\\xb4\\x95\\x71\\xbd\\xea\\x6b\\xd3\\x0d\\xc7\\x0b\\x3c\\xaf\\\n\\xa4\\x70\\x52\\xb2\\x33\\x7c\\x3a\\x7c\\xfe\\x58\\x79\\xbc\\x56\\x6f\\x60\\x12\\\n\\x73\\x42\\xa1\\x40\\x31\\x81\\xd1\\xea\\x54\\x6d\\xd3\\x0b\\x17\\x85\\x67\\x65\\\n\\xf1\\x00\\xa9\\xfe\\x2d\\x9a\\x30\\x22\\x8b\\x46\\x3f\\xb4\\x5e\\x5d\\xfa\\x6f\\\n\\xeb\\x81\\xc6\\x6a\\x46\\x1a\\x92\\x6c\\x6e\\x2b\\xd0\\x53\\x5f\\xaf\\x5c\\x56\\\n\\x39\\xec\\x56\\xe6\\xb7\\x9b\\x73\\xf5\\xc7\\xf7\\x83\\xe6\\x78\\x33\\x4f\\x52\\\n\\x91\\xc9\\x22\\xac\\x6d\\x23\\x8b\\xa8\\x2b\\xd3\\xf4\\xc7\\x88\\x0c\\xbc\\xac\\\n\\xb1\\xe4\\x4d\\xce\\x8b\\x56\\x49\\x45\\x34\\x0b\\x2a\\xe8\\x14\\x7a\\x54\\x9f\\\n\\xa6\\x17\\xc3\\xf3\\xd2\\x35\\xc0\\x34\\xa6\\xed\\x42\\xc6\\x3b\\x1d\\xcf\\xa7\\\n\\xe5\\x8c\\xe6\\x5b\\xc5\\x32\\xf2\\x05\\xb0\\x4b\\x97\\x94\\xad\\x2e\\x5a\\xf2\\\n\\x90\\xe7\\x4a\\x1f\\xb2\\x35\\xf4\\xc1\\xcc\\x65\\x67\\x27\\x2a\\x2a\\x1b\\x28\\\n\\xdb\\x91\\x4a\\x9e\\x1f\\xf3\\xdb\\xa7\\x5c\\x12\\xab\\x62\\xb1\\xaa\\x2b\\x69\\\n\\x23\\x5b\\xd4\\xa9\\xd2\\x9e\\x98\\x03\\x98\\x9a\\x76\\xee\\x77\\x3e\\x9e\\xbd\\\n\\x7a\\x56\\xb8\\xa1\\x31\\xab\\x29\\xe7\\x24\\xf3\\x57\\xb7\\x0f\\xf4\\xdb\\xd4\\\n\\x62\\xd0\\xd5\\x20\\x5d\\xa9\\xd6\\x94\\xe8\\x3b\\x57\\xe9\\x8a\\x86\\x3a\\x1c\\\n\\x12\\x1b\\x53\\xfc\\x0f\\x4f\\xe3\\xdf\\x1b\\x9a\\xe3\\x4b\\xcf\\xa5\\xd4\\x1d\\\n\\xbd\\x2b\\xfc\\xfa\\xe3\\x8b\\x34\\xea\\x8a\\xbb\\xd4\\x8f\\xc3\\x72\\x49\\xf4\\\n\\xc4\\xa2\\x28\\xdb\\x91\\x49\\x12\\xc9\\x6a\\xc6\\x29\\xd6\\x82\\xa4\\x8f\\x99\\\n\\x1d\\xb0\\x43\\x4c\\xec\\xc0\\x9b\\x5d\\x7d\\xd4\\x6b\\xda\\xd5\\x1c\\xb4\\xd0\\\n\\xed\\x52\\x77\\x27\\x0b\\x96\\xf1\\x38\\x21\\xf1\\x3c\\xaf\\xda\\x7a\\x8c\\xc4\\\n\\x1a\\x52\\xec\\xbc\\x84\\x0b\\x59\\x7e\\x78\\x11\\xf8\\x77\\x89\\x4a\\xde\\xd0\\\n\\x08\\x31\\xc8\\xc0\\xe6\\x32\\xad\\xb8\\x6e\\x2a\\xf9\\xc2\\x9f\\x42\\x4d\\x28\\\n\\x70\\xde\\x1d\\x97\\xcd\\xbc\\xe5\\x4a\\xac\\x6c\\xf0\\xa5\\xd2\\x12\\x00\\x05\\\n\\x40\\xaa\\xd8\\x7a\\xf3\\x7e\\x07\\x4c\\x41\\xfd\\xac\\xf1\\x7f\\xed\\x4a\\x66\\\n\\xb3\\x33\\x44\\x4c\\x7e\\x0b\\x1e\\x5e\\xd4\\x6e\\x2d\\x49\\x1c\\x5e\\x28\\xab\\\n\\x46\\xb5\\xff\\x00\\x26\\x80\\xd3\\x51\\x50\\x71\\x24\\x59\\x49\\x78\\x99\\xd7\\\n\\xb8\\xcb\\x36\\x8c\\x91\\x13\\x4f\\x77\\x18\\xad\\x2e\\x02\\x80\\xb0\\xb8\\xe1\\\n\\x62\\xbb\\x2e\\xe2\\xdb\\x56\\xe8\\xb9\\xc7\\x5b\\xba\\x6b\\xfa\\x8f\\x5c\\x58\\\n\\x67\\x10\\x8f\\x8a\\x28\\xe2\\x45\\xad\\x0f\\xc5\\xf3\\xe9\\x4d\\x4e\\x0f\\x85\\\n\\xf8\\x8b\\x10\\x73\\x30\\xf2\\x4c\\x7c\\xaa\\xf2\\x2d\\x8b\\x77\\x41\\xbd\\x74\\\n\\xfd\\x30\\x41\\x87\\x88\\xe4\\x57\\x29\\x28\\x22\\x99\\x95\\xb6\\xeb\\xe1\\x26\\\n\\x81\\xa4\\x03\\x74\\xad\\xdd\\x86\\x07\\x8b\\xe7\\xa2\\x66\\x83\\xc3\\xd8\\x49\\\n\\x22\\x98\\x4d\\xa2\\x5b\\x79\\x12\\xf7\\x50\\xa1\\x83\\x6a\\xf6\\xd5\\xd3\\x6d\\\n\\xc6\\x14\\xb8\\x6c\\xca\\x23\\x5e\\xb0\\x47\\x18\\xe1\\x83\\xff\\x00\\xa9\\xca\\\n\\x6a\\xa9\\xdb\\x95\\x4e\\x95\\x35\\xc0\\xcb\\xf0\\x72\\xf0\\xc4\\x3a\\x30\\x66\\\n\\x09\\xbe\\xa1\\x22\\xb5\\x34\\xd4\\x9d\\x74\\xf8\\x86\\xf8\\x1c\\x7c\\xe6\\x62\\\n\\x28\\x28\\x0d\\x32\\xac\\x41\\x90\\x51\\xa8\\x00\\x07\\x93\\x9a\\xdd\\x5b\\xa5\\\n\\x45\\x3a\\x89\\x33\\x39\\x57\\x93\\x34\\xbe\\x50\\xf2\\xe9\\x14\\x0a\\x5a\\xa2\\\n\\x8c\\xb5\\x02\\xd6\\x37\\x52\\xbc\\xad\\xcc\\x49\\xa6\\x04\\x12\\x49\\x2c\\x43\\\n\\x63\\x53\\xcf\\x33\\x36\\x94\\xd5\\x98\\x20\\x37\\x68\\xb5\\xe5\\x1d\\xce\\x1d\\\n\\x9a\\x6b\\xd5\\x6d\\x33\\xd2\\x50\\xd4\\x56\\xd0\\x45\\x77\\xdd\\x00\\x07\\xa7\\\n\\xd9\\xb4\\xed\\x5c\\x48\\x8b\\x2b\\xb2\\x95\\x6e\\x1d\\x2f\\x21\\x69\\x5e\\x2b\\\n\\x69\\xa0\\xbc\\xd8\\x3e\\x98\\x88\\x07\\x16\\x07\\xe5\\x0d\\x26\\xa1\\x49\\x47\\\n\\x7e\\xfd\\x34\\xdf\\xa6\\x03\\xb5\\x69\\x79\\xf5\\xf8\\xc1\\xae\\xda\\xfa\\xeb\\\n\\xb1\\xc4\\x52\\x3d\\x05\\xc0\\xd6\\xde\\x78\\xf3\\x08\\x77\\x15\\xa0\\xb0\\x8f\\\n\\xaf\\xa6\\x0e\\x64\\x37\\x15\\x73\\x59\\x47\\x80\\xa5\\xe3\\x97\\x42\\x89\\x23\\\n\\x57\\xaa\\x9a\\x35\\x07\\x6d\\x31\\x96\\x99\\xd7\\xfc\\x64\\x28\\x04\\xd2\\x69\\\n\\x49\\x91\\x23\\x0c\\x8c\\xe3\\xfe\\xb0\\x73\\x6d\\xdb\\x30\\x35\\x26\\xa3\\x16\\\n\\xa0\\xe4\\x90\\x24\\x95\\xfb\\x44\\xd5\\x1d\\x7f\\xee\\x5a\\x1a\\xfe\\x87\\x1b\\\n\\x1b\\x2d\\x17\\x53\\xd3\\xa6\\x3d\\xa6\\x76\\xb8\\x6b\\xc2\\x5f\\x41\\xb3\\x13\\\n\\xf4\\xc0\\x83\\x26\\xda\\xdd\\xef\\x64\\x1b\\x8a\\x6c\\x01\\xaf\\xe3\\x87\\x96\\\n\\x56\\xe1\\xe5\\xa0\\x22\\x4c\\xcc\\xba\\x9a\\x2f\\xe9\\x7b\\x50\\xd3\\xd7\\xa6\\\n\\x32\\xde\\x1f\\x93\\xbb\\x2f\\xe1\\x79\\x18\\x6c\\x81\\x50\\x95\\x2d\\x29\\xfd\\\n\\xa4\\xaf\\xb5\\x59\\x80\\xd5\\x8f\\x53\\xb0\\x03\\x11\\x16\\x0f\\x25\\x85\\xc3\\\n\\x92\\x6a\\x59\\x09\\x5b\\x00\\x3f\\x77\\x51\\xfe\\xd8\\x6b\\x6e\\x08\\x4f\\x94\\\n\\x6c\\x07\\xae\\x01\\x51\\xcf\\x41\\xaf\\xfb\\x1d\\x7f\\x2c\\x50\\xec\\x6a\\x3b\\\n\\xef\\xdb\\x0f\\x93\\xcc\\x78\\x94\\x3e\\x17\\x17\\x02\\x57\\xf6\\x8c\\xca\\xb3\\\n\\xc6\\x1d\\x63\\x25\\x54\\xf0\\xf9\\x97\\x88\\x79\\x54\\x80\\x68\\xc6\\xa7\\x4c\\\n\\x1d\\x41\\xa1\\xa1\\x20\\xe9\\x51\\xbd\\x3e\\xb5\\xdf\\xa7\\xd3\\x15\\xff\\x00\\\n\\xc2\\x21\\x6e\\xb7\\xa7\\xcb\\x7e\\xa4\\xfe\\xbb\\x77\\xc3\\x78\\x6f\\x87\\xe6\\\n\\x38\\x69\\x15\\xd1\\x4d\\x34\\x2d\\x51\\x29\\x1c\\xa5\\xa3\\x94\\x68\\x52\\xb5\\\n\\xa1\\x1b\\xe1\\x9a\\x57\\x77\\x24\\xfc\\x4d\\x5f\\xcf\\x1b\\xeb\\x81\\x4e\\x87\\\n\\x7e\\xb5\\x23\\xe9\\x81\\x3c\\x64\\x99\\x02\\xd1\\x6e\\xf2\\xec\\x40\\x1d\\x74\\\n\\xf9\\x6d\\x8c\\xb7\\x8b\\xe6\\x24\\x93\\xc5\\x7c\\x67\\x38\\x4b\\xc3\\x91\\x85\\\n\\x7f\\xc2\\x64\\x92\\xba\\x7b\\x44\\xcd\\xee\\x81\\xee\\x06\\xdd\\xb0\\x73\\xfe\\\n\\x2d\\xe2\\x48\\x19\\x00\\x7f\\x65\\xcb\\x9e\\x1c\\x11\\xae\\xef\\x57\\xd0\\xbd\\\n\\x07\\xa2\\x8c\\x7f\\x75\\x78\\x15\\xa9\\x96\\x50\\x06\\x67\\x32\\x3c\\xf3\\x3f\\\n\\xc4\\xb1\\xd3\\xcb\\x10\\xef\\xbb\\x6b\\xe9\\x8d\\x6b\\xb8\\xa6\\xd8\\xd4\\xfe\\\n\\x38\\x89\\xb3\\x79\\xe9\\x4a\\xc0\\xa1\\x12\\x30\\x4e\\x81\\x47\\x94\\x01\\x40\\\n\\x07\\xa1\\xd7\\xd4\\xe1\\x72\\x4a\\xec\\xd9\\x2c\\xfb\\x85\\xcc\\xb4\\x80\\x52\\\n\\x94\\xff\\x00\\xfa\\x9a\\x63\\xc2\\xe4\\x86\\x41\\xae\\x59\\x8d\\xfb\\xe9\\xa3\\\n\\x5b\\x51\\xa9\\x07\\xef\\x1d\\x31\\x91\\x8d\\x63\\x33\\x67\\x1a\\x38\\xda\\xd5\\\n\\xff\\x00\\xa6\\x34\\x5a\\x15\\xd3\\xbd\\x7d\\x70\\xb2\\x67\\x32\\xb2\\xc3\\x14\\\n\\xd1\\xdd\\x09\\x2a\\xd6\\x36\\x95\\xe5\\x6d\\xbe\\x62\\xb8\\x31\\xe5\\x03\\x71\\\n\\x24\\xbf\\xcb\\x5a\\xaa\\x52\\xa4\\x8b\\x48\\xb4\\x7a\\xe3\\x33\\x06\\x5d\\xa4\\\n\\x91\\xb5\\x85\\xcb\\xd6\\x6b\\x55\\x37\\xb2\\xe2\\xd6\\x0e\\xd4\\xd8\\x61\\x14\\\n\\x19\\x3d\\xe6\\xb5\\x15\\xba\\x47\\x3b\\xd3\\x6f\\xce\\xb8\\x3f\\xde\\x1e\\x25\\\n\\xc2\\x62\\xe9\\x02\\x64\\xb8\\x64\\xce\\xda\\xf9\\x8c\\x94\\xb5\\x11\\x4f\\x31\\\n\\x53\\xe6\\xdb\\x16\\xe4\\x73\\x99\\xb9\\x33\\x82\\xd2\\x64\\x7b\\x1a\\x33\\xa6\\\n\\xab\\x4b\\x47\\xe5\\x8a\\x71\\xdb\\xad\\xd4\\x1a\\x11\\xf2\\xe8\\x7b\\x1c\\x19\\\n\\x3c\\x3b\\x36\\x20\\x96\\x26\\x12\\xd1\\xd5\\x58\\x4a\\xa3\\xfc\\xad\\xaa\\x2e\\\n\\xef\\x84\\x6c\\xdb\\xa4\\x6c\\x6b\\xc9\\x10\\xa5\\x7d\\x0e\\xf7\\x7d\\x31\\xc1\\\n\\x58\\xe4\\x50\\xaf\\x57\\xfb\\xe7\\xa3\\x7a\\x60\\xa9\\x41\\xa8\\xd4\\xd2\\xa3\\\n\\x51\\xd7\\xbf\\xcb\\xbe\\x28\\x42\\x9a\\x7d\\x9d\\x0f\\xe1\\xf9\\xe2\\xa1\\xa9\\\n\\x5d\\xa9\\xd7\\xd7\\x04\\x8a\\xdd\\xd2\\x5d\\x6e\\xc2\\x4a\\x86\\xcc\\xee\\x5d\\\n\\x4a\\xde\\x2d\\xbe\\x44\\x4d\\x78\\x60\\xd3\\x7a\\x8a\\x8d\\x70\\xd9\\xaf\\x10\\\n\\xcc\\xe6\\x1a\\x7c\\xca\\x9c\\xaf\\x84\\xe5\\x67\\x32\\x8e\\x12\\x53\\xde\\xe6\\\n\\xcc\\x52\\x79\\x43\\x68\\xb1\\x92\\xb5\\xe5\\xc1\\x92\\x4f\\x79\\x23\\x57\\x7d\\\n\\x45\\x6a\\x75\\xd6\\x9b\\xd7\\xf2\\xc2\\x3b\\x6a\\xd5\\x1a\\x7f\\x5a\\x69\\xbe\\\n\\x10\\xc6\\x81\\x5c\\x2a\\x99\\x88\\xd8\\xb0\\xdb\\xf0\\xdf\\xeb\\x88\\x60\\x86\\\n\\x29\\xdc\\xb2\\x0a\\x34\\x51\\x97\\xb6\\xdd\\x2b\\xa5\\x76\\xf9\\x6d\\x88\\x32\\\n\\xfe\\x35\\x93\\xca\\x37\\x81\\xa8\\x8d\\xe1\\xcc\\xe7\\x1d\\x9d\\xaa\\xb4\\x15\\\n\\x8a\\x03\\x1c\\x72\\x71\\x16\\x9b\\xb1\\x44\\x07\\xa9\\xc4\\x39\\x2c\\x8c\\x71\\\n\\xc5\\x96\\x40\\x0c\\x8b\\x12\\x93\\x2e\\x65\\xe8\\x35\\x62\\x06\\x83\\xe8\\x31\\\n\\x25\\x6e\\xcb\\x65\\xd4\\x51\\x21\\x13\\x05\\x91\\xc0\\x1f\\x12\\x01\\x6c\\x6a\\\n\\x3c\\xd7\\x48\\xf6\\x9e\\xb6\\x9a\\x56\\x99\\x99\\x29\\x24\\xcb\\x5c\\xae\\x54\\\n\\x37\\x16\\x79\\x14\\xea\\x1c\\xa2\\x54\\x80\\x7f\\xcb\\x14\\x01\\x97\\x98\\x69\\\n\\x84\\x8f\\x2f\\x08\\x77\\xa1\\x42\\x1c\\x52\\x4a\\x9e\\x5e\\x70\\x2a\\xb1\\x92\\\n\\xda\\x22\\x16\\xad\\x35\\xeb\\x8c\\xa0\\xf0\\xf5\\x09\\x69\\x50\\xf0\\xa2\\xdd\\\n\\x13\\x33\\x1b\\xae\\x75\\x21\\x96\\xb5\\xa9\\xdf\\xe1\\xf5\\xc3\\x3f\\x88\\xe5\\\n\\x43\\x71\\x2e\\x11\\x12\\xb4\\xac\\x7d\\x6d\\xd0\\x95\\xea\\x4f\\xda\\x34\\xd7\\\n\\x0e\\xe6\\xd4\\x8e\\x7a\\x37\\x0d\\x2a\\xa2\\xd2\\x97\\xd8\\x17\\xee\\x06\\x4f\\\n\\x9d\\x18\\x9c\\x4a\\x91\\x5a\\x12\\x2c\\xa7\\x10\\xd0\\x79\\xf8\\xb7\\x08\\x88\\\n\\xfa\\xdb\\x78\\xec\\xc1\\xb0\\x7d\\xe7\\x04\\xa3\\x58\\x05\\x2f\\x1a\\x8e\\x7d\\\n\\x47\\x96\\xa3\\x4d\\x7a\\xe0\\xf0\\x62\\xb9\\x5a\\x8e\\x01\\x5a\\x85\\x1a\\xab\\\n\\x5b\\xdc\\x31\\x1a\\x7c\\xf0\\x92\\xc9\\x09\\xe1\\x8a\\xb7\\x2f\\x94\\xa0\\x7b\\\n\\x4d\\x89\\x5e\\x52\\xa7\\xcc\\xb8\\x3e\\x23\\x97\\x22\\x91\\x5e\\x8c\\x02\\xf3\\\n\\x6e\\x34\\xad\\x69\\x4f\\x5c\\x66\\xde\\xda\\x15\\x58\\xab\\x5e\\x9e\\xed\\x6e\\\n\\x1d\\x75\\xff\\x00\\x6e\\xf8\\xa8\\x06\\xec\\xbb\\xdc\\x4f\\xfe\\x9c\\xb4\\x0d\\\n\\xf8\\x49\\xaf\\xfa\\x8e\\x15\\x49\\xd0\\xdd\\xf1\\x75\\x5d\\xeb\\xa6\\x06\\x5e\\\n\\x23\\x4a\\x0a\\x5c\\x0f\\x4f\\xb3\\x4e\\x9f\\xcb\\x11\\xe4\\xb2\\x91\\xb6\\x62\\\n\\x6c\\xc4\\xb6\\xa2\\x8e\\x9a\\xea\\xcc\\x7a\\x22\\x8a\\x96\\x63\\xa0\\x18\\x8b\\\n\\xfb\\x2d\\xe0\\xbf\\xe2\\x78\\x2c\\x1b\\xc4\\xb3\\x70\\xad\\x5b\\x39\\x9f\\x3e\\\n\\x64\\x57\\x07\\xff\\x00\\x2d\\x05\\x55\\x10\\x1e\\xba\\xef\\x8e\\x24\\xdc\\x38\\\n\\x2b\\x43\\x47\\x3c\\xc3\\x5b\\x48\\xb4\\x0d\\x08\\xdf\\xad\\x6a\\x31\\x6f\\x12\\\n\\x56\\x72\\x29\\x51\\xa0\\xb8\\x9f\\x35\\xb6\\xea\\x2d\\xd2\\x9b\\xe1\\x5f\\x49\\\n\\xe0\\x98\\xf2\\xbf\\x50\\x45\\x6a\\x18\\x74\\xdb\\x4a\\xe9\\xb6\\x29\\xf3\\xd3\\\n\\xf4\\x1f\\x3e\\x98\\xfe\\xbf\\x4c\\x2b\\x00\\x40\\xb6\\x85\\xe9\\x4a\\xd7\\xa6\\\n\\xfa\\x8f\\x4f\\x9e\\x21\\xcb\\x45\\x56\\x33\\xc8\\xa8\\x14\\x9d\\xeb\\xa0\\xfa\\\n\\x9a\\xe3\\x2d\\x27\\x8b\\xf8\\x7b\\xc3\\x97\\xcd\\xa8\\x39\\x4c\\xd2\\x95\\x97\\\n\\x2d\\x38\\xa5\\x48\\x49\\x10\\x9e\\x70\\xa6\\xe2\\x92\\x08\\xdb\\xa0\\xad\\x35\\\n\\xae\\xe3\\x07\\x5d\\x8e\\x94\\x1d\\x7a\\x0f\\xfc\\x77\\xfe\\xbb\\x63\\xe7\\xfd\\\n\\x7e\\x58\\xf5\\xdf\\x51\\x8f\\xee\\xf9\\x80\\x34\\xfd\\x8d\\x00\\xbc\\x54\\xea\\\n\\x2a\\x7a\\x76\\xc7\\xb0\\xc6\\xd2\\x65\\xb2\\xf4\\x26\\x41\\x5e\\x79\\x01\\xd4\\\n\\x54\\xa9\\xd1\\x69\\xb8\\xc7\\x7e\\xc0\\x7f\\xbe\\x29\\xfd\\x6b\\xfc\\xb1\\xb5\\\n\\x70\\xd3\\xe5\\xa3\\xf6\\x48\\x1e\\x50\\x78\\xe0\\x81\\x19\\x8d\\xbe\\x38\\xd7\\\n\\xfc\\xca\\x7c\\xf5\\xdb\\x6c\\x24\\x42\\x27\\xcd\\x4c\\xb6\\xd6\\x6c\\xc3\\xb5\\\n\\xda\\x6e\\x55\\x05\\xb1\\xad\\xc6\\xbc\\xab\\x40\\x36\\xc2\\xa8\\x8c\\x52\\x34\\\n\\x08\\x9f\\x75\\x69\\x6d\\x07\\xcf\\x10\\x94\\x19\\x68\\xb2\\xd9\\x6d\\x6a\\x63\\\n\\x52\\xe4\\x0e\\x83\\x5e\\xbd\\x6b\\x81\\x93\\x12\\x2a\\x22\\xb8\\x89\\x38\\x0b\\\n\\x53\\x7f\\x5a\\xd7\\x61\\x6d\\x70\\xe6\\x5e\\x63\\x22\\xf0\\x90\\xbf\\x6a\\x6b\\\n\\xf8\\xe3\\x3f\\x21\\xcb\\x98\\xe4\\x96\\x47\\x90\\xcc\\x5e\\xa6\\x6b\\xf5\\xa2\\\n\\xf4\\x8d\\x7a\\x11\\xbb\\x77\\xa6\\x32\\xec\\xf1\\x49\\x14\\x28\\xce\\x56\\x50\\\n\\x96\\xec\\x34\\x50\\xe4\\x1a\\x7c\\xd7\\x51\\xd3\\x12\\xf8\\x82\\x49\\x70\\x47\\\n\\x2a\\xaa\\xd4\\x27\\x51\\x53\\x46\\x3a\\xeb\\xf9\\xe0\\x9b\\xe9\\x5f\\x5c\\x54\\\n\\x35\\x5b\\x51\\xb5\\x4f\\xa6\\x19\\x9d\\xdd\\xad\\x52\\x78\\x7b\\x0f\\x91\\xd7\\\n\\x41\\x80\\x91\\x32\\x34\\x6a\\xd7\\xb8\\xb6\\x82\\x24\\xec\\x0e\\xa4\\x9f\\x96\\\n\\xf8\\x71\\x14\\x12\\xcf\\xa3\\xc9\\x27\\x0c\\x33\\x70\\x62\\x84\\x73\\x48\\xe4\\\n\\x8a\\x2a\\xd7\\x4a\\xf7\\xa0\\xc1\\x0a\\xb7\\x6b\\xd1\\x77\\xe9\\xdb\\xbe\\x98\\\n\\x26\\x5a\\x54\\x8f\\x20\\xf3\\x7d\\x41\\xdb\\xa7\\xe5\\x82\\x78\\xa4\\x75\\x1c\\\n\\xb8\\xa2\\x55\\xc6\\xba\\xb0\\xa5\\x3f\\x76\\x9b\\x7d\\x31\\x97\\x39\\x7b\\x2c\\\n\\xe2\\x0e\\x2a\\xd7\\x5d\\x4d\\x2b\\x5e\\xa7\\x53\\xbe\\x20\\xcc\\xf1\\x1a\\x64\\\n\\x11\\x70\\xe8\\xcd\\x5b\\x2c\\xd9\\x57\\xe7\\xf9\\xe1\\xa2\\x28\\xca\\x54\\xfc\\\n\\x5b\\xd7\\xfa\\xa7\\xcf\\x0a\\xce\\x8c\\xa4\\x73\\x73\\x2d\\xba\\x7e\\x14\\xfa\\\n\\xe3\\xdb\\xb3\\x77\\x45\\x93\\x0d\\xa9\\x6f\\x3c\\xd4\\x3e\\x48\\xf6\\xe5\\xee\\\n\\xfe\\x5c\\x09\\x63\\xca\\x26\\x5f\\xc1\\xf2\\x85\\x52\\x67\\x44\\xf6\\x76\\x75\\\n\\x5a\\x72\\xa6\\x6a\\x8b\\xc5\\xa3\\x29\\x12\\x70\\x9b\\xa5\\x5b\\x6c\\x47\\x90\\\n\\xc8\\x65\\x95\\x63\\x8d\\x02\\x8e\\x19\\xb6\\xc4\\xa6\\x85\\x5b\\x98\\xf3\\x0f\\\n\\xf3\\x1f\\xd4\\x8d\\x70\\xd1\\x5f\\x63\\x9f\\xdb\\xca\\xbe\\xf2\\x66\\x66\\x1a\\\n\\x46\\x85\\x89\\xa7\\x7d\\x3c\\xa7\\xa6\\x17\\xda\\x67\\x99\\xad\\xb5\\x97\\x2c\\\n\\x24\\x66\\x07\\x62\\x0e\\x61\\x52\\xda\\x93\\xa1\\x92\\xf7\\xe6\\x02\\x91\\xaf\\\n\\x9b\\x1e\\xd4\\xba\\xcd\\x38\\x0a\\x66\\xe2\\x44\\x33\\x16\\x0b\\xef\\x44\\xa8\\\n\\x6b\\x51\\x8d\\x63\\x29\\x1d\\x23\\xd6\\x38\\x6e\\xb4\\x0c\\x4b\\x3b\\x65\\xe3\\\n\\x7e\\x04\\x28\\xd1\\xe4\\xb8\\xb5\\x80\\x66\\x68\\xb4\\x6c\\xc4\\x9a\\x12\\x04\\\n\\xce\\x12\\x2d\\x2e\\x92\\xce\\x2f\\x9c\\x8c\\x32\\x5b\\x0c\\xb9\\x94\\x82\\x17\\\n\\x6c\\xb6\\x55\\x03\\x22\\x4b\\x20\\x3f\\xe1\\xa1\\xba\\xbc\\xe7\\xab\\x9a\\x95\\\n\\x03\\x9b\\xce\\xb8\\xc8\\xe5\\x0c\\xbf\\xe3\\xf3\\x39\\x88\\xb2\\x92\\x3c\\x6f\\\n\\x5a\\x4f\\x27\\x0a\\x59\\x62\\x43\\xa5\\x8b\\x95\\x46\\x48\\xa3\\x54\\xff\\x00\\\n\\x3d\\xef\\x73\\x7e\\xb8\\xe2\\x31\\x93\\xfc\\x3f\\x3b\\xf0\\xcf\\xbd\\x8c\\xbc\\\n\\x69\\x1c\\x30\\x05\\xef\\x14\\x20\\x29\\xea\\xcc\\xfa\\xe2\\x0c\\xec\\x63\\x8a\\\n\\x3c\\x47\\x85\\x94\\x5b\\xd6\\x85\\x3d\\xd2\\xe5\\x02\\x94\\x3e\\x4a\\x66\\x22\\\n\\x51\\x4d\\xf9\\x99\\x96\\x9a\\xe1\\x23\\x90\\xe9\\x6b\\x99\\x41\\xe5\\xe7\\x52\\\n\\x54\\xc6\\x09\\xd0\\x90\\xca\\xc7\\xd2\\x95\\xc3\\x46\\x11\\xeb\\x0a\\x32\\xc5\\\n\\x23\\xa8\\x35\\x8c\\xa5\\xc8\\xbc\\x9a\\xde\\x40\\xd4\\x1d\\x74\\xd7\\x6c\\x65\\\n\\xd2\\x18\\x9a\\x4e\\x2c\\x30\\xb4\\x88\\xb4\\xbe\\x37\\x76\\x2a\\xe1\\x6b\\xae\\\n\\xa9\\x19\\x26\\x2a\\x73\\x61\\xfc\\x3a\\x48\\x95\\xe1\\xcd\\x45\\x78\\x57\\xa6\\\n\\x86\\xa3\\x8b\\x1f\\xdd\\xfb\\x4b\\x5e\\x53\\xa5\\x83\\x4c\\x4d\\x90\\x89\\x27\\\n\\x8d\\x55\\xc6\\x8f\\xc3\\x28\\xe1\\x54\\x15\\x60\\xe9\\x57\\x93\\x96\\x8b\\xcc\\\n\\x77\\x5c\\x14\\x65\\x31\\xa3\\xf2\\x92\\x00\\xd4\\x37\\xaf\\xa7\\xea\\x3b\\xe0\\\n\\xe5\\xa2\\x5a\\x14\\xd2\\xbb\\xe9\\xdc\\x9e\\xac\\xd4\\xa9\\x38\\xfb\\x4f\\x25\\\n\\x28\\x06\\xa4\\xb1\\xd0\\x00\\x06\\xe4\\xf4\\xc3\\xa7\\x20\\xfe\\xd7\\xf8\\xfe\\\n\\x5c\\x71\\x9d\\xb7\\xf0\\x2f\\x09\\x97\\x7c\\xba\\x9d\\xd7\\x3f\\x9c\\x53\\x74\\\n\\x94\\x01\\xa3\\x8f\\x94\\xf6\\x2a\\x88\\x8b\\xf1\\x5d\\x23\\x79\\xde\\xad\\xbb\\\n\\x36\\xfe\\xbb\\x6f\\xd3\\x0e\\xe4\\xf2\\x74\\xf5\\xb4\\xd2\\xa7\\xf2\\x00\\xe2\\\n\\xaf\\xf1\\x9d\\x7f\\x0e\\xd7\\x57\\x6f\\x4f\\x4c\\x36\\x55\\xe3\\xba\\x17\\x5a\\\n\\x6b\\x4a\\x9a\\xe9\\x5f\\x4a\\x68\\x7d\\x7e\\x83\\x13\\xe5\\x8f\\xf9\\x6e\\x4a\\\n\\xd4\\x6a\\x51\\xb9\\x94\\xfa\\x9a\\x11\\x4f\\x5f\\x5c\\x57\\x17\\x7f\\xea\\x2e\\\n\\xbf\\x8f\\x5e\\xff\\x00\\xc3\\x11\\xcf\\x1b\\x5a\\xf1\\xb8\\x75\\x61\\xb8\\x2a\\\n\\x71\\x07\\x87\\xe6\\x22\\x39\\xac\\xf8\\xa2\\xa4\\xf2\\xad\\x78\\x1a\\x52\\xaa\\\n\\x6e\\xf3\\x7d\\x92\\x29\\x4c\\x4d\\x1b\\xd7\\x89\\x4b\\x50\\xef\\x5a\\xfe\\x9f\\\n\\xa6\\x14\\xd7\\x99\\xb5\\x3d\\x75\\xff\\x00\\xc3\\xfa\\xfe\\xbe\\x83\\x03\\x4a\\\n\\x7c\\x8e\\x3f\\x96\\x34\\xdf\\xd7\\x0d\\x9f\\x8e\\x27\\x93\\x2d\\x1d\\x0b\\xba\\\n\\xf3\\x5a\\x06\\xe4\\xd3\\x5d\\x31\\x09\\x03\\x9e\\x35\\x28\\xcc\\x77\\x7d\\x7a\\\n\\xfc\\xbf\\xf0\\x5a\\x69\\x5a\\x60\\x83\\xcd\\xae\\xe4\\x1d\\x70\\x20\\x8c\\x59\\\n\\x1c\\x46\\xd8\\xd4\\x74\\x5e\\x80\\x00\\x00\\x00\\x7c\\xb1\\xb1\\xa0\\x1e\\x7f\\\n\\x5a\\xed\\x4d\\xfd\\x70\\xcc\\xb5\\xd8\\xf2\\x9d\\x1b\\x4c\\x38\\x1d\\x4b\\x55\\\n\\xb7\\x0a\\x3b\\x62\\x45\\xb4\\x3d\\xbc\\xe4\\xb1\\xd0\\x1a\\xef\\xa6\\x15\\xb8\\\n\\xa1\\xac\\x37\\x32\\xea\\x0a\\xf4\\x0a\\xbd\\xc6\\x3d\\xec\\x51\\x9a\\x80\\x6a\\\n\\x45\\x4d\\x3e\\x67\\x07\\x2f\\x34\\x31\\xb4\\x7f\\x0a\\xba\\x8a\\x76\\xf4\\xd8\\\n\\x57\\xe7\\x8e\\x1e\\x40\\x05\\x85\\x9f\\x99\\x14\\xeb\\x77\\x71\\xe9\\x88\\x62\\\n\\x08\\xf3\\x3c\\x9c\\xdc\\x8c\\xa5\\x10\\x7f\\xea\\x9b\\xa8\\x84\\x76\\xa9\\xc1\\\n\\x45\\x22\\x69\\x6d\\xa8\\x08\\x6f\\x17\\x76\\x24\\x7f\\x0f\\xf7\\xc1\\x9f\\x35\\\n\\x31\\x48\\x98\\x54\\x42\\xad\\x68\\x1a\\x69\\x53\\xd6\\xbb\\x91\\xd3\\x0f\\x0e\\\n\\x4d\\x29\\x0a\\x35\\xaf\\x27\\x95\\x68\\x3e\\xd9\\xd6\\xba\\xea\\x05\\x31\\xec\\\n\\x59\\x2c\\xc1\\x89\\xa5\\x06\\x1c\\xc4\\x97\\x1a\\x6a\\x7e\\xc8\\xa5\\x50\\x5c\\\n\\x6b\\x5d\\xe9\\xb6\\x07\\x85\\x78\\x24\\xf9\\x6f\\x18\\x9f\\x31\\xc2\\xcd\\x49\\\n\\xe2\\xb3\\xc6\\xd0\\xb4\\x52\\x11\\x59\\xe0\\xb6\\xe6\\xf7\\x69\\x6d\\x91\\xda\\\n\\xa2\\xf0\\x03\\x7a\\x99\\x0c\\xc5\\x5c\\xbb\\xdc\\x4a\\xd6\\x9a\\x5b\\xca\\x35\\\n\\xad\\xb8\\xa3\\x0d\\x7b\\x8e\\x98\\xa1\\xfd\\x3f\\xf9\\x7c\\xbb\\x62\\x83\\x7e\\\n\\xfd\\xff\\x00\\x2d\\x31\\xc3\\x90\\x55\\x0b\\x53\\xfd\\x43\\x98\\x1f\\x90\\x34\\\n\\xc6\\x5f\\x3b\\x02\\xfb\\xc9\\x24\\x48\\x0a\\x01\\x5a\\x91\\xe4\\xf9\\xeb\\xa5\\\n\\x07\\xcf\\xae\\x32\\xbf\\xde\\x19\\x28\\x25\\x9c\\x46\\x12\\x78\\xcc\\x6a\\xc7\\\n\\xd1\\x6b\\xd0\\xff\\x00\\x47\\x11\\xb3\\x40\\x66\\x9e\\xe4\\x0b\\x96\\x06\\xdc\\\n\\x9a\\xa8\\xf2\\xab\\xaa\\x1a\\xc9\\x5f\\x8d\\x05\\x23\\xa5\\x3a\\x83\\x53\\x2e\\\n\\x56\\x1f\\xf1\\x39\\xe8\\xa2\\xe2\\x1b\\x9d\\x61\\x8e\\x4b\\x05\\xb0\\x65\\xa1\\\n\\x07\\xdc\\xe5\\xe3\\xa8\\xa8\\x5a\\x17\\xfd\\xdd\\x4b\\xe6\\xb3\\x2b\\x01\\x95\\\n\\xb9\\x90\\x87\\xf8\\xdb\\xe1\\x58\\x98\\xc7\\x4f\\x9b\\x9e\\x6e\\xa4\\x9c\\x71\\\n\\xfc\\x50\\xc7\\x9a\\x96\\x4a\\x3c\\x59\\x40\\x2a\\x07\\xd9\\x26\\x34\\x1a\\x0e\\\n\\x83\\x52\\x4e\\xa1\\x55\\xb7\\x29\\x2c\\xb1\\x8f\\x0e\\xf0\\xf8\\xaa\\xe5\\x0f\\\n\\x2b\\xc8\\x2b\\xee\\x97\\x81\\x19\\xe2\\x35\\x45\\xb2\\xca\\x1e\\x82\\xde\\x1c\\\n\\x6a\\x74\\x92\\x94\\xf0\\xf5\\x11\\x70\\xcf\\x04\\x99\\x64\\xff\\x00\\x19\\x3f\\\n\\x45\\x10\\xc7\\x46\\x10\\x09\\x0a\\xad\\x96\\x28\\x21\\x79\\xb4\\x7d\\x47\\x8a\\\n\\x0c\\xcb\\x22\\x88\\xe2\\x57\\x8a\\x5f\\xda\\x8f\\x69\\x8d\\xa2\\x60\\xaa\\x35\\\n\\x6c\\xd4\\xbc\\x41\\x71\\xe6\\x11\\xaf\\x05\\x53\\x96\\xea\\xe1\\xb3\\xb5\\x76\\\n\\x96\\x38\\x21\\x68\\x8c\\xc8\\x6f\\x76\\xcc\\xaf\\xfe\\x65\\x86\\xa0\\x34\\x8d\\\n\\x08\\x75\\x03\\x98\\x2c\\x76\\xa5\\xcc\\xf5\\xc4\\x72\\x4b\\x2f\\x14\\x1c\\xfb\\\n\\xba\\x74\\x31\\xa3\\x56\\x79\\x24\\xa5\\xc0\\x83\\x2c\\xc3\\x2e\\x85\\xb7\\x56\\\n\\xa7\\x4d\\xb8\\x84\\xd4\\x4f\\x26\\x5b\\xdb\\x57\\x65\\x8e\\x59\\x04\\x91\\x45\\\n\\x28\\xd0\\x72\\x83\\x0a\\xd4\\xf5\\x5a\\x39\\x26\\xb8\\xf0\\xb8\\x60\\x8e\\x90\\\n\\xc1\\x9a\\xf6\\x8c\\xc0\\x8e\\x97\\x7b\\x8e\\x24\\xe3\\x4e\\x5a\\x5d\\x24\\xa6\\\n\\x4a\\xeb\\xb0\\xc5\\xf6\\xb0\\xca\\xe6\\xb2\\x93\\x1a\\xaa\\x52\\x48\\xb3\\x51\\\n\\x2c\\xde\\xf0\\x1d\\xf8\\x92\\x07\\x7e\\x4d\\x2f\\xaf\\x9b\\x97\\x07\\x2e\\x4d\\\n\\x26\\x31\\x2f\\x32\\x50\\x86\\x23\\x94\\xb5\\x16\\x87\\x53\\x75\\x77\\xdf\\x7d\\\n\\x39\\x86\\x59\\x23\\x48\\xe7\\x8e\\x64\\x25\\x92\\xaa\\x84\\x51\\x68\\xda\\x73\\\n\\x02\\x35\\x51\\xa9\\xa1\\xd7\\xae\\x86\\xe4\\x57\\xb5\\x14\\xcb\\x14\\xb4\\x0f\\\n\\x58\\xeb\\x1b\\x49\\x15\\x28\\x39\\xb4\\x57\\xa1\\x60\\x0a\\xd4\\x63\\x33\\x9e\\\n\\x65\\xce\\x58\\x75\\x8a\\x2a\\x3c\\xb6\\x8d\\x45\\x1e\\x50\\x8c\\x23\\x88\\x1a\\\n\\x95\\x02\\xad\\xa1\\x3a\\x06\\x18\\x26\\x39\\x3c\\x95\\xac\\x4c\\xb6\\x38\\x3b\\\n\\x56\\x87\\xce\\xb5\\x3b\\x8f\\xc3\\x0b\\x2b\\x00\\xb4\\x6b\\x48\\xea\\x7f\\xaf\\\n\\x97\\x5c\\x0f\\xed\\x8f\\x8a\\x40\\xb2\\x70\\xe4\\x78\\xbf\\xb3\\xb9\\x39\\x97\\\n\\x92\\x7c\\xe4\\x74\\xe2\\x78\\x8c\\x8a\\xc2\\x8d\\x0e\\x46\\xab\\xc0\\x04\\x15\\\n\\x93\\x37\\x4f\\x86\\x13\\x74\\x99\\xa9\\x9f\\x8d\\x98\\x9d\\xcc\\xd3\\xbb\\x9a\\\n\\xb3\\x3b\\x75\\xd6\\xbd\\x74\\x1a\\xe8\\x28\\x06\\x9a\\x62\\x38\\xf6\\x79\\x2b\\\n\\xaf\\xfe\\x9a\\xff\\x00\\x1a\\xe9\\xf4\\xae\\x14\\x77\\x65\\x14\\xea\\xc1\\x79\\\n\\xac\\x1e\\xa4\\x8d\\xf1\\x7b\\xf2\\x72\\xd1\\x07\\xd8\\x1b\\xd0\\x6d\\xad\\x75\\\n\\x66\\xfa\\x63\\xcc\\xc0\\xb7\\x2f\\xd3\\xd3\\x19\\xd4\\xba\\xfb\\x38\\x31\\x86\\\n\\xfd\\xd8\\xa3\\xdf\\xb6\\xbb\\xe3\\xad\\x37\\x04\\xed\\xf5\\xed\\xf9\\xe2\\x3d\\\n\\x48\\xe6\\x34\\x1d\\x0f\\xaf\\xaf\\xfe\\x0c\\xa4\\xf2\\x82\\x28\\x2b\\xd4\\x0f\\\n\\x9e\\x2b\\x4d\\xcf\\xf1\\x18\\x1a\\x76\\xd0\\x63\\x4f\\xf8\\xc6\\xbf\\xd7\\x6f\\\n\\xeb\\x4c\\x31\\xfc\\x3f\\xae\\xde\\x9f\\xf8\\x57\\xeb\\xdf\\x07\\xc3\\xe1\\x95\\\n\\x93\\x2d\\x2a\\x9b\\xc2\\xe9\\x7a\\xf5\\x0d\\xdc\\x1e\\xd5\\xc6\\x9e\\xba\\x7a\\\n\\x61\\x48\\x35\\x27\\xb7\\xf1\\xd7\\x15\\xd4\\x91\\xfd\\x7f\\x5a\\xe3\\x61\\xf8\\\n\\xe3\\xfd\\xa9\\xaf\\xa6\\x39\\xb6\\xad\\x45\\x3a\\xff\\x00\\xb0\\xc0\\x70\\x69\\\n\\x5d\\x29\\xbe\\x2e\\x56\\xb4\\xe9\\x75\\x35\\x0c\\x3f\\x9e\\x0a\\xc5\\xcb\\x76\\\n\\xfd\\xeb\\xde\\x84\\xeb\\xf4\\x18\\x2c\\xa5\\xaa\\x0d\\x7f\\xe7\\x06\\x39\\x79\\\n\\x33\\x10\\x72\\xc8\\x3e\\xd5\\x34\\xb8\\x7e\\x1b\\xf7\\xc1\\x90\\x86\\xeb\\x42\\\n\\xbf\\x2e\\xbd\\xb0\\x46\\x61\\x9d\\x60\\x2d\\xba\\x9a\\x39\\xd7\\xc8\\x34\\x14\\\n\\xd7\\x4d\\xfc\\xb8\\x48\\x86\\x59\\x32\\xd9\\x5b\\xc1\\x36\\x69\\x2b\\xaa\\x57\\\n\\xcd\\x2f\\x9c\\x93\\xd7\\xed\\x7d\\x31\\x97\\x61\\x04\\x51\\x64\\xc4\\x79\\xb3\\\n\\x57\\x50\\xab\\xc9\\x16\\x85\\xaf\\xa3\\x31\\xdc\\x82\\x76\\x3a\\xe0\\x46\\x60\\\n\\xbc\\x3c\\xb2\\x51\\x82\\xde\\x59\\x03\\x52\\xbd\\x40\\xf9\\x92\\x3d\\x30\\x99\\\n\\x0f\\x0c\\xf0\\xb8\\xf2\\xc9\\x42\\x5a\\x48\\x23\\xe6\\x62\\x46\\xed\\x6d\\xc4\\\n\\xb6\\x9f\\x11\\x1d\\xaa\\x06\\x1e\\x59\\x60\\x9f\\x9b\\x52\\x75\\x3d\\xfe\\x74\\\n\\xf5\\x18\\x11\\xd1\\x98\\x1a\\x17\\x15\\xd8\\x6b\\xbb\\x74\\x02\\xb4\\xc0\\x64\\\n\\x37\\x8d\\x01\\x2a\\x76\\x3d\\x76\\xfc\\xcf\\x5c\\x12\\xb7\\x69\\x5e\\xbe\\x98\\\n\\x09\\x1c\\x1c\\x43\\x5a\\x96\\xe6\\x5a\\x57\\xbc\\x9d\\x70\\xac\\x59\\x51\\x86\\\n\\xa7\\x94\\xb5\\x3f\\x9e\\x19\\x40\\x1a\\xe9\\xa6\\x23\\x4c\\xcd\\x05\\x10\\xd1\\\n\\xa8\\x08\\x0e\\x50\\x51\\x94\\x9f\\x2b\\x7a\\xec\\x4f\\xad\\x71\\x2f\\x0f\\x36\\\n\\xd9\\xbc\\xa3\\x9e\\x54\\x71\\x10\\x68\\xdb\\xe2\\xd6\\xb7\\x11\\xf6\\x00\\xd3\\\n\\xbe\\x95\\xc4\\x5c\\x86\\xb5\\x52\\x23\\xbd\\x6e\\x6e\\xdc\\xc8\\x48\\x43\\xbd\\\n\\x3a\\x0c\\x64\\x18\\x87\\x82\\x4b\\x01\\x60\\xa3\\x8f\\x22\\x2f\\xc2\\xa4\\x8b\\\n\\x94\\xc8\\xdf\\x1b\\x9a\\x56\\xea\\x74\\x03\\x10\\x49\\x9a\\x47\\xe1\\x3e\\xbc\\\n\\x59\\xde\\xa7\\x6a\\x9f\\x75\\x4b\\x28\\xab\\xae\\x8a\\x48\\xa8\\xc3\\x0c\\xa4\\\n\\x05\\x47\\x96\\x1a\\xa8\\x59\\xe6\\x6b\\x8f\\xbc\\xb4\\x7b\\xc8\\xe1\\x55\\x0c\\\n\\xd7\\x4c\\x6e\\xa5\\x8a\\x52\\x18\\xc0\\x8c\\x1c\\xa6\\x4b\\x30\\xdc\\x56\\xff\\\n\\x00\\xcc\\x66\\xd4\\xf2\\xc2\\x9f\\xf4\\xa3\\x72\\x39\\xa7\\x91\\xa8\\x86\\x40\\\n\\x02\\x45\\x0b\\x39\\xa9\\x07\\x13\\xe7\\x14\\xf9\\x20\\x2d\\x1e\\x62\\x76\\x94\\\n\\x9d\\xe7\\x34\\x20\\x50\\x73\\x45\\x0d\\xf2\\x58\\x43\\x35\\x78\\x03\\xcc\\x31\\\n\\x04\\x59\\xf8\\x24\\x7c\\xce\\x64\\x2d\\x8d\\xc2\\x01\\xa2\\x8a\\x5a\\xb4\\xd9\\\n\\x99\\x61\\x15\\xac\\xee\\xf5\\x5c\\xb4\\x5b\\x23\\x05\\x27\\x5a\\x62\\x59\\xd2\\\n\\x39\\x10\\x71\\xde\\xc5\\x91\\x6a\\xe6\\x3c\\xbe\\x5e\\xf2\\xed\\x4f\\x33\\x1d\\\n\\x63\\x16\\x8b\\x63\\x2c\\xb8\\x86\\x4c\\xb2\\x29\\x60\\x5e\\x1e\\x22\\x00\\xad\\\n\\xc5\\x10\\x80\\xd4\\x22\\x87\\x4c\\xcd\\xfd\\x7a\\x62\\x58\\x27\\x66\\x19\\x9c\\\n\\xc3\\x98\\xa4\\x8c\\x9f\\x3b\\x44\\x92\\x47\\xc4\\x8e\\xa7\\xc8\\xcb\\x4d\\xb4\\\n\\x4b\\x6e\\xc4\\x79\\x4c\\xe5\\xa9\\xc2\\xa8\\x65\\x00\\xfb\\xc5\\xf7\\x52\\x44\\\n\\xdc\\x55\\xf2\\xd6\\x19\\x56\\x2b\\xa8\\xdc\\xe1\\xb4\\xe5\\xd3\\x33\\x0e\\x60\\\n\\xc8\\x90\\x43\\x25\\x12\\x50\\x69\\x20\\x09\\xcc\\x1e\\xbd\\x6c\\xa9\\xaf\\xdc\\\n\\xd4\\x81\\x88\\x2c\\xcc\\x01\\xc4\\x55\\x87\\x2f\\x23\\x7b\\xbb\\xee\\x73\\x25\\\n\\x1e\\xdb\\x50\\x9a\\x35\\x76\\xd7\\xcd\\x8c\\xb9\\xcc\\xda\\xfb\\x8e\\x28\\x36\\\n\\xb2\\x90\\x36\\xe2\\x2f\\x9d\\x18\\x79\\x4d\\x77\\xc5\\x5e\\x6e\\x31\\x8f\\x91\\\n\\x1d\\xcd\\x18\\x8a\\x8d\\x09\\x1b\\x3a\\x83\\x42\\xde\\x57\\x1a\\x8c\\x66\\x21\\\n\\x8e\\x47\\xcb\\x48\\x94\\xe7\\xa8\\x6a\\x53\\x6d\\x0d\\x2f\\x5d\\x35\\x17\\x6c\\\n\\x76\\xc6\\x60\\x97\\x88\\xdc\\xc4\\xdd\\x19\\xd0\\xea\\x3e\\x07\\x06\\xda\\xfd\\\n\\x91\\xf3\\xc6\\x53\\x24\\xe6\\x1c\\xb7\\x86\\x64\\xeb\\xe2\\x5e\\x39\\xe2\\x52\\\n\\x45\\x1a\\xc7\\x96\\xc8\\xc5\\xe6\\x40\\xfc\\x97\\x66\\x26\\xa1\\x58\\x56\\xb5\\\n\\xdd\\xb6\\x18\\xe2\\xe5\\x60\\x19\\x5f\\xec\\xfe\\x53\\xff\\x00\\xd3\\x7c\\x02\\\n\\x01\\x68\\x1e\\xc1\\x95\\xaa\\xf1\\xf9\\x74\\xbe\\x79\\x43\\x3b\\x11\\xa1\\xf3\\\n\\x6b\\xbe\\x38\\x7d\\x5a\\xd1\\xb7\\x63\\xb8\\xe9\\x83\\x2c\\x86\\x89\\x0e\\x58\\\n\\x35\\x4f\\x42\\xcc\\x7a\\x2f\\x7a\\x79\\x7a\\xd6\\x98\\x39\\x89\\x05\\xa9\\xfe\\\n\\x5a\\x9d\\x68\\xa7\\x73\\xe8\\x5b\\x42\\x7b\\x54\\x2f\\x4c\\x2a\\xa2\\xd0\\x0d\\\n\\xc9\\xfe\\x15\\xc3\\xe6\\x64\\x22\\xd8\\xd0\\xb9\\xa9\\x14\\xe5\\x15\\x24\\xfd\\\n\\x34\\xd7\\xa9\\xf5\\xc4\\xf9\\x82\\x3f\\x6f\\x34\\xaf\\xa8\\xa7\\x2d\\xc4\\x05\\\n\\x3d\\xf9\\x69\\x51\\xe9\\x8d\\x87\\x5f\\xcf\\x11\\x82\\xf5\\x36\\x79\\x69\\x4b\\\n\\x75\\xd3\\xfa\\xe9\\x8b\\x87\\xf5\\xf5\\xfc\\xf1\\x41\\xd0\\xeb\\xdc\\xe0\\x5a\\\n\\x09\\x3a\\x1d\\x05\\x69\\xdb\\x5e\\xf8\\x46\\xb5\\x8e\\x9d\\x01\\xff\\x00\\xc3\\\n\\x4c\\x7c\\xfa\\xd7\\x00\\xd7\\xe7\\xfd\\x76\\xc7\\xcf\\x4c\\x30\\x1a\\x81\\xca\\\n\\x3e\\x7d\\x71\\x45\\xf3\\x6b\\xfa\\x6b\\x8f\\x0d\\xf0\\x43\\x38\\xcb\\x26\\x7a\\\n\\x74\\x89\\xa7\\x60\\x0d\\x80\\xd6\\xa4\\x02\\x45\\x4f\\x6d\\x69\\x5c\\x1c\\xef\\\n\\x87\\x65\\xa6\\xfe\\xd0\\x78\\x27\\x08\\x4d\\xed\\xf9\\x38\\xc7\\x1b\\x2f\\xcb\\\n\\x74\\x83\\x37\\x93\\x0e\\xce\\x81\\x35\\x3c\\x78\\x84\\x90\\xb2\\x73\\x55\\x1b\\\n\\x14\\x6b\\xc1\\xa6\\xbc\\xbf\\xc2\\x9a\\x7c\\xb1\\x54\\x35\\x03\\x75\\xea\\x71\\\n\\x57\\xd2\\xde\\x4e\\x6f\\xeb\\x5c\\x06\\x46\\x14\\x06\\xa0\\x7f\\x5e\\xbf\\xcf\\\n\\xd3\\x05\\x25\\x4b\\x5b\\xd7\\x5a\\xfc\\x8d\\x30\\x1c\\x1e\\x66\\x34\\x1f\\xd7\\\n\\x6a\\x7c\\xb0\\x4b\\x0a\\x3a\\x82\\x1e\\xb4\\xfc\\x7e\\x58\\xf6\\xb4\\xa4\\x91\\\n\\xc6\\xc4\\xca\\xa0\\xd2\\xe5\\x3f\\x0f\\x51\\xda\\x84\\x9f\\xa5\\x74\\xc6\\x72\\\n\\x78\\x25\\x4f\\x07\\xca\\x25\\x56\\x28\\x18\\x9f\\x68\\xcc\\xb5\\x6d\\x16\\xa6\\\n\\xa4\\x2d\\x2a\\xed\\x23\\xf4\\x1c\\xaa\\x75\\xa5\\xaf\\x5c\\xfc\\x84\\x8a\\xb1\\\n\\xa9\\x55\\x65\\xd3\\xd2\\xdf\\xc2\\xbe\\xb8\\x12\\x49\\x57\\x90\\x52\\x81\\xbc\\\n\\xb1\\x69\\xad\\x07\\xc5\\xe8\\x4e\\xdd\\x30\\x4c\\x2d\\x61\\xd5\\x74\\xaf\\xe7\\\n\\xdf\\xf4\\xc1\\x56\\x3a\\x6d\\xb5\\x6b\\xde\\xbb\\x6f\\x83\\xd6\\xb5\\xfb\\xba\\\n\\x1a\\xf6\\xed\\xf9\\xe0\\xf0\\xf5\\x32\\xd4\\x85\\x35\\xb0\\x1d\\xb5\\xfe\\xb4\\\n\\xed\\x87\\x87\\x2b\\xcd\\x9a\\x93\\x49\\xe5\\x8c\\x56\\x83\\xec\\xa0\\x1c\\xc7\\\n\\xb2\\x50\\x73\\x62\\x09\\xa3\\x78\\xf2\\x79\\x46\\xe6\\x74\\x9e\\xad\\x34\\xd5\\\n\\x3c\\xc4\\xc7\\xb4\\x66\\x9b\\x6e\\x75\\xdb\\x0c\\x52\\x44\\x65\\x1b\\x8f\\x2d\\\n\\x07\\xf5\\xe9\\x80\\xa9\\x4e\\x9d\\x34\\xc1\\xa8\\x14\\xf4\\xfd\\x75\\xfc\\xb5\\\n\\xc2\\xbb\\x0d\\x9a\\xe1\\xbe\\xe7\\xbd\\x29\\xa6\\x3d\\x69\\xca\\x6b\\xa5\\x3d\\\n\\x0f\\xcf\\xa6\\x2d\\xdb\\x5e\\xdd\\x88\\xec\\x3f\\x9f\\xc8\\xe1\\x09\\xfd\\xa7\\\n\\x2f\\x0f\\x89\\xcd\\x61\\xe8\\xce\\xbe\\x48\\xc0\\xdd\\x49\\x2c\\xdd\\xd4\\x62\\\n\\x09\\x64\\x9a\\x69\\x15\\x5e\\xc5\\x6a\\x83\\xed\\x2c\\x9a\\xbb\\x32\\x69\\x62\\\n\\x03\\x44\\x45\\x1a\\x2d\\xd7\\x1a\\x93\\x40\\xb2\\x51\\x23\\xb0\\x05\\x8c\\x3c\\\n\\x6c\\x0c\\x75\\xad\\xce\\x15\\xb9\\x5d\\xaa\\x74\\x27\\x91\\x45\\x2e\\xd0\\x62\\\n\\x28\\x20\\xcc\\x20\\x9f\\x34\\xd2\\x71\\x1c\\x1a\\xbb\\xad\\x6b\\x2f\\xbd\\xda\\\n\\x3c\\xbc\\x09\\x41\\xc9\\x42\\xf4\\x29\\xe6\\x26\\x8f\\x24\\x00\\xc1\\xe1\\x50\\\n\\xd1\\x78\\xee\\xb6\\xc9\\x28\\xaa\\xaf\\x15\\x50\\xd2\\xf9\\x73\\x0e\\x58\\xa2\\\n\\x52\\xac\\x58\\x7d\\x3c\\x2b\\xc3\\x91\\xac\\x49\\xa2\\xfe\\xf5\\xcd\\x26\\xb6\\\n\\xc7\\x0c\\x0a\\xd2\\x41\\x97\\x91\\xba\\x20\\x7f\\x67\\xaf\\xc5\\x34\\x8c\\xd5\\\n\\xa2\\xe9\\x8e\\x1b\\x66\\x1a\\x73\\x14\\xf5\\x7c\\xc3\\x25\\xa9\\x1c\\x30\\xf0\\\n\\x45\\xc2\\xbb\\x73\\x1c\\xc1\\x8b\\x5d\\xd5\\x0e\\xbc\\x33\\x70\\x92\\x7e\\x45\\\n\\x19\\xb3\\x1c\\x41\\x4e\\x82\\x0c\\xbb\\xd8\\x91\\xa9\\xa5\\x69\\x21\\x5a\\xc9\\\n\\xf6\\xca\\x93\\xe9\\x81\\x1c\\x11\\xd7\\x2a\\x9e\\xd9\\x98\\x90\\xd4\\xb2\\x89\\\n\\x16\\x78\\x1b\\x86\\x14\\xef\\x74\\x77\\xc4\\xbb\\xf3\\x44\\xe7\\x19\\x4c\\xf2\\\n\\xa1\\xf6\\xa4\\xb1\\xdc\\x8a\\x3c\\xa8\\x73\\x39\\x7c\\xd0\\x3f\\x48\\xec\\x40\\\n\\x16\\xa2\\xa6\\x4e\\x6d\\x80\\xc4\\x50\\xe7\\xa0\\x97\\x2c\\xb3\\x98\\x95\\x2e\\\n\\x16\\x98\\xd5\\x1e\\x1d\\xc5\\x05\\x54\\x71\\x68\\x8f\\xa6\\x8d\\x6d\\x3a\\xe3\\\n\\x36\\x01\\xf6\\x8c\\xa1\\x28\\xcc\\x01\\xb2\\xfb\\xab\\x60\\x46\\x35\\x15\\x68\\\n\\xa0\\x64\\xd6\\x97\\x31\\xaf\\xcf\\x25\\x92\\x16\\x49\\x23\\x52\\x15\\x24\\x79\\\n\\x23\\x90\\x5b\\x14\\xdd\\x29\\x2c\\x53\\x0a\\x16\\x1e\\x50\\xaf\\x84\\xcb\\x48\\\n\\xb2\\x4b\\x92\\x93\\x2f\\xaa\\x1e\\x6f\\x65\\xcd\\x24\\xb2\\xab\\x3f\\xaa\\x3d\\\n\\x2f\\xd7\\x42\\x8d\\x4d\\x37\\xc4\\xb1\\xe6\\xc4\\x71\\xce\\x13\\x8d\\x05\\xba\\\n\\x06\\x00\\x37\\x11\\x77\\xd3\\x95\\x0d\\xbb\\xeb\\x86\\x86\\x55\\xb9\\x04\\x77\\\n\\x29\\xd2\\x8c\\xa1\\x74\\x17\\x0d\\x6e\\xe8\\x45\\x0d\\x45\\x0f\\x5c\\x4d\\x10\\\n\\x48\\x7c\\x3f\\x2d\\x1b\\x93\\x2c\\xd9\\x87\\x53\\x96\\x83\\x2f\\x50\\x4c\\x92\\\n\\xcb\\x26\\xe4\\x25\\x0f\\x0d\\x45\\xe4\\x9b\\x74\\xf3\\x62\\x2f\\xec\\xbf\\xf6\\\n\\x66\\x54\\xf6\\x39\\x69\\x3f\\x8a\\x67\\x68\\x44\\x9e\\x21\\x20\\x20\\x0d\\x53\\\n\\x4e\\x11\\x35\\x2a\\x95\\xd2\\x35\\x5a\\xf9\\xb1\\xe1\\x50\\x31\\x07\\x87\\x0b\\\n\\x05\\x23\\xa8\\xe2\\x13\\x5a\\x74\\xd3\\xfd\\xf0\\xbd\\x96\\x35\\x7f\\xc7\\xd3\\\n\\xaf\\xaf\\xe3\\x8f\\x67\\xc8\\x45\\x7a\\x20\\x41\\x98\\x90\\x79\\x2a\\xad\\xe5\\\n\\x2e\\x74\\x08\\x9a\\xef\\x43\\x5d\\x40\\x35\\x18\\xbf\\x39\\x9a\\x5d\\x08\\xd2\\\n\\x2d\\xbe\\x57\\x1f\\xa6\\xcb\\xf5\\xc1\\x68\\xa4\\x6d\\xc5\\x03\\x01\\xb0\\x14\\\n\\xff\\x00\\x7c\\x47\\x92\\x48\\x24\\x09\\x9b\\x1e\\xf7\\x35\\x4a\\x47\\x60\\x3f\\\n\\xb1\\x1b\\x80\\xcd\\xa1\\x6a\\xd3\\x4a\\x01\\xd7\\x0b\\xa7\\xd0\\xeb\\x4f\\xbc\\\n\\x49\\xa7\\x5f\\xcb\\xbe\\x3d\\xe9\\xac\\xb4\\xaa\\x22\\x73\\x7f\\xc7\\xd4\\x61\\\n\\xa6\\x79\\x37\\x3c\\xbd\\xc0\\xed\\xf4\\xc4\\x70\\xc4\\x2f\\x92\\x41\\x6d\\xbb\\\n\\x92\\x48\\xd5\\xbd\\x3f\\x86\\x11\\xb3\\x65\\xde\\x42\\x43\\x32\\x2b\\xf2\\x8d\\\n\\x3c\\x95\\xea\\x7b\\x9e\\xf5\\x14\\xc5\\x11\\x11\\x14\\x68\\x14\\x0f\\xd7\\xe9\\\n\\x5e\\xf8\\x20\\xd9\\xc2\\xe8\\xa5\\x2b\\xa7\\xe5\\xb6\\x39\\xa0\\x4b\\x80\\xb6\\\n\\x96\\xef\\xf5\\xd3\\x1e\\xee\\x42\\x1d\\x8f\\xec\\x01\\x07\\x4e\\xbb\\x13\\x4e\\\n\\xd8\\xa7\\xeb\\x8a\\x75\\xaf\\x51\\x8a\\x8d\\x64\\x6a\\x88\\xa3\\x3f\\x13\\x7f\\\n\\xb6\\xf5\\xf4\\xc6\\x77\\x2b\\x22\\x8e\\x26\\x55\\x0c\\xc4\\x3e\\x9a\\x1a\\x36\\\n\\x87\\xeb\\xb6\\x3c\\xad\\x46\\xaf\\xc3\\xbd\\x7e\\x40\\xfd\\x71\\x17\\x8f\\xe5\\\n\\x22\\x78\\x4e\\x4a\\x48\\xe5\\x0f\\x42\\x18\\x5a\\x7c\\xe0\\x68\\x6d\\x5a\\xf3\\\n\\x56\\x9a\\x62\\x6f\\x0d\\xf0\\xec\\xba\\xcf\\xe2\\x09\\x95\\xe1\\xf8\\x81\\x79\\\n\\x15\\x15\\x72\\x76\\x59\\x99\\x75\\x26\\x95\\x93\\x87\\x7d\\x89\\x5d\\x7b\\xe1\\\n\\x3c\\x47\\xc2\\xbc\\x13\\x22\\x32\\xcb\\x94\\xca\\xe5\\x49\\xcc\\x64\\xa0\\x69\\\n\\x5e\\x68\\x61\\x52\\xec\\x6a\\x87\\xa3\\xaa\\x50\\x69\\xcb\\x80\\xa3\\xcc\\x0d\\\n\\xcc\\x74\\x05\\xbd\\x3d\\x06\\x39\\x40\\x54\\xb6\\x87\\x90\\x1a\\x6b\\x52\\xd7\\\n\\x77\\xa6\\x08\\x19\\xa9\\x96\\x36\\x1a\\xda\\xc2\\xa5\\xfe\\x2d\\x0f\\x91\\x69\\\n\\xb0\\x1d\\x70\\x1e\\x3c\\xc4\\xb2\\x22\\xd1\\xac\\x63\\x49\\x54\\xd3\\x9a\\xb5\\\n\\xaa\\xb7\\xd0\\xfd\\x3b\\x88\\x50\\x4e\\xd3\\x01\\xa8\\xe1\\xa1\\xb5\\x6b\\xe6\\\n\\x27\\x40\\x2b\\xdc\\x91\\xa6\\xdd\\x8d\\xb2\\xc8\\x81\\x1a\\x3a\\x51\\x6e\\xbc\\\n\\x9f\\x9e\\xc3\\xd4\\x9d\\x0f\\x4c\\x24\\x42\\x6b\\x61\\x65\\x35\\x34\\xfd\\xa4\\\n\\x9d\\x6a\\xde\\x9f\\x67\\x6a\\x63\\x93\\x5f\\x90\\xfe\\xa9\\x84\\x20\\x72\\x3b\\\n\\x22\\x3f\\xa8\\x27\\xb7\\x42\\x3b\\xe0\\x92\\x68\\x36\\xd7\\xe7\\xb7\\xae\\x2a\\\n\\x3d\\x7a\\x9c\\x6e\\x3a\\x13\\xd7\\x02\\x87\\x4a\\x9f\\x9e\\xf8\\xcb\\xc3\\x26\\\n\\x69\\x32\\x89\\x2b\\x9b\\xe6\\x65\\x32\\x48\\x00\\x3a\\x88\\xe3\\xf8\\x98\\xf4\\\n\\xd8\\x0c\\x2c\\x4d\\x0c\\xcf\\x98\\x2b\\xc5\\x13\\x4e\\x07\\x12\\x40\\xc2\\x8a\\\n\\x40\\xd4\\x2d\\x77\\x00\\x7e\\xb5\\xc0\\x8e\\x2c\\xb6\\x62\\x76\\xd0\\xd1\\x02\\\n\\xe9\\xa7\\x6f\\xe3\\x84\\xc9\\xc3\\xe1\\x5e\\xcf\\x0c\\x8d\\x49\\x67\\x9d\\x88\\\n\\x65\\x8f\\xee\\xae\\x86\\xa7\\xbd\\x30\\x2b\\xdb\\xb6\\x36\\xe5\\x1f\\x99\\xfe\\\n\\x58\\xa9\\x27\\xbf\\xe1\\xa6\\x28\\x6a\\x4f\\xe5\\xf4\\xc5\\xb6\\x1f\\x88\\xdf\\\n\\x5f\\x2f\\xd9\\xfa\\xf5\\xaf\\x4d\\x30\\x78\\x8d\\xca\\x35\\x72\\x75\\xaf\\xa7\\\n\\xa9\\x3f\\x88\\xdf\\x02\\x39\\x0f\\x0b\\x2d\\x0a\\x15\\x8e\\x94\\x06\\x46\\xba\\\n\\xf7\\x5b\\xcf\\xcc\\x5e\\xcb\\xe8\\x3a\\x61\\x94\\xa5\\x10\\x46\\xfc\\x82\\x46\\\n\\xba\\x4e\\x1c\\x65\\xd9\\x18\\x93\\x50\\xb4\\xf3\\x35\\x14\\x5b\\x50\\x71\\x99\\\n\\x9f\\x2e\\x8a\\xa4\\x06\\x85\\xe4\\xd3\\x87\\x08\\x08\\x3d\\xda\\x0a\\x5a\\x22\\\n\\x8e\\xd7\\xfb\\x57\\xba\\x3b\\xda\\x5b\\x19\\x67\\x93\\x89\\x34\\x46\\xf2\\x14\\\n\\x29\\xa9\\x30\\xdc\\x9c\\x5a\\x01\\x53\\xc3\\xd6\\x38\\x4d\\x03\\x49\\x98\\x03\\\n\\xed\\x51\\x63\\x98\\x0f\\x65\\x55\\xc9\\xcd\\x01\\x85\\x69\\x24\\x92\\x3e\\x4a\\\n\\x01\\x02\\x23\\xbd\\x69\\x6e\\xcf\\x27\\xc3\\x5f\\x52\\x0e\\x17\\x23\\x96\\x4a\\\n\\x87\\xcb\\x43\\x27\\x88\\x67\\x41\\xfd\\xa4\\xd5\\x55\\x64\\x52\\x69\\x40\\xa2\\\n\\x4d\\x16\\xb4\\x11\\xf1\\x24\\x3b\\x61\\xb3\\x19\\xb6\\xf2\\x3b\\xce\\x89\\x42\\\n\\x91\\xc2\\x73\\x6d\\xfb\\x20\\x3e\\x33\\x96\\x87\\x94\\x13\\xf1\\xbb\\x17\\xa3\\\n\\x10\\x31\\x99\\xa1\\x31\\x26\\x56\\x48\\x9e\\x43\\x4d\\x78\\x79\\xa0\\xd2\\xca\\\n\\x41\\x1a\\x96\\x32\\xdc\\xab\\xd1\\x51\\x2f\\xff\\x00\\x38\\x57\\xd9\\x03\\x16\\\n\\x9f\\x36\\xf1\\xc7\\xa6\\xeb\\x1a\\x47\\x1f\\x38\\xa1\\xf3\\x43\\x2c\\xc9\\x70\\\n\\xdd\\xab\\xae\\xb8\\xca\\xe5\\xa9\\xfe\\x2f\\xd8\\xd6\\x1c\\xc3\\x79\\x9d\\x59\\\n\\x38\\x7c\\x12\\x01\\x17\\x50\\x80\\xfe\\xf4\\x1d\\x59\\x4a\\x91\\x54\\x18\\xf7\\\n\\x9e\\xfa\\x0c\\xe4\\x95\\xad\\x6b\\x62\\xc7\\x11\\x89\\x75\\x3b\\x1b\\x88\\x68\\\n\\xfd\\x36\\xeb\\x8c\\x86\\x6a\\x05\\x75\\x0e\\x66\\xe2\\x5f\\xe5\\x00\\x86\\xbd\\\n\\x7f\\xf4\\xf8\\x0c\\xe7\\x7a\\x0e\\x5a\\xe3\\x2d\\x7a\\xdf\\x22\\x57\\x28\\xec\\\n\\x74\\xab\\x71\\x24\\x5e\\x6b\\xbc\\xfc\\xbc\\xb4\\xdc\\x3e\\x27\\xc9\\xd1\\x5a\\\n\\x48\\x1e\\x31\\xce\\x68\\xd6\\xc9\\x4b\\xc1\\x6f\\xf5\\x03\\xbf\\x56\\xc2\\x7b\\\n\\x35\\x65\\xe1\\xc8\\x56\\x58\\xe4\\xb8\\x54\\x0e\\x5e\\x5a\\xd4\\x8b\\x7a\\x74\\\n\\x34\\xf5\\xc2\\xc5\\x95\\xca\\xac\\x4b\\x1f\\x3c\\x92\\x5e\\x23\\x46\\xa0\\xab\\\n\\x5b\\x1d\\x51\\xe4\\x96\\x5d\\xc3\\xbb\\x32\\xae\\x20\\x63\\x13\\x24\\x67\\x8b\\\n\\x12\\xa3\\x2d\\xb2\\x44\\x91\\x4c\\x15\\x0c\\x8a\\x79\\xe9\\x25\\x39\\x1c\\x81\\\n\\x70\\xc6\\x5a\\xef\\x34\\x4d\\x24\\x44\\x7d\\x95\\xf8\\x40\\xd3\\x03\\x2b\\x97\\\n\\x6b\\x78\\xc1\\x44\\x92\\x52\\xa3\\x2f\\x97\\x5f\\xda\\x4a\\xdd\\x8d\\x34\\x41\\\n\\xf1\\x13\\xa6\\x13\\x29\\xe1\\xf0\\xdb\\x1a\\x52\\xf6\\x1a\\xc8\\xe7\\xed\\x4b\\\n\\xd5\\x9c\\xf5\\xe8\\xba\\x8c\\x5d\\x6d\\x43\\x1d\\x6b\\xf0\\x8e\\x83\\xfa\\xfe\\\n\\x38\\xe2\\xe7\\xb3\\x91\\x65\\x90\\xe9\\x59\\x0d\\x3a\\x54\\xda\\x39\\xab\\xf4\\\n\\x1f\\x4c\\x36\\x58\\xe5\\x67\\xf1\\x08\\x1b\\x92\\x56\\x68\\xd5\\x63\\xa7\\x70\\\n\\xae\\x01\\x3a\\x6c\\x6d\\x07\\x5d\\x37\\xc6\\x5c\\xff\\x00\\x66\\xf3\\x6d\\x16\\\n\\x4e\\x68\\x0b\\xcd\\x97\\xcc\\x0e\\x1b\\x43\\x2d\\xe4\\xda\\xb3\\x50\\xde\\x19\\\n\\x75\\xa6\\x81\\x28\\x35\\xa9\\xc3\\x32\\xf0\\x66\\xae\\xc4\\x66\\x10\\x9f\\xcd\\\n\\x86\\x01\\xf6\\x49\\x24\\x93\\xee\\x00\\xeb\\xb7\\x70\\x4d\\x71\\x3e\\x6e\\x65\\\n\\x22\\x6f\\x24\\x61\\xab\\x55\\xa8\\x37\\x3d\\xa7\\x61\\xa5\\x3d\\x75\\xa6\\xd8\\\n\\xf7\\x9f\\x35\\xad\\x0e\\xbd\\x74\\xc2\\x5b\\xd3\\x7a\\xeb\\x5a\\xf5\\xd3\\x15\\\n\\x76\\xaf\\xdd\\xdb\\xf5\\xd0\\x7d\\x71\\x40\\xd4\\x66\\x6a\\x56\\xb8\\xb2\\x53\\\n\\x73\\x11\\x5e\\x20\\xd2\\x9f\\x5f\\x5f\\xcf\\x06\\x60\\x43\\x65\\xf4\\x55\\x72\\\n\\xca\\xb6\\x9f\\xbd\\x76\\xff\\x00\\x4c\\x18\\xe2\\x3e\\xd1\\x28\\x34\\xaa\\x9f\\\n\\x76\\x3b\\xd5\\xbf\\x2a\\x60\\x66\\x67\\x17\\x80\\x56\\xc8\\xfa\\x2d\\x3f\\x1f\\\n\\xe7\\x8c\\xcb\\xc2\\xa2\\x11\\x9a\\x44\\x8a\\xdd\\x86\\xd6\\x57\\xa7\\x6c\\x24\\\n\\x66\\x18\\x5e\\x9f\\x19\\x4a\\x9f\\xc4\\x8d\\x3e\\x98\\x92\\x19\\x32\\x8b\\x24\\\n\\x4e\\x85\\x5f\\xf7\\x48\\xa1\\xdc\\x63\\xc4\\x66\\x95\\x24\\xe0\\xb3\\xcb\\x0c\\\n\\x30\\x71\\x2c\\xaa\\x31\\x1c\\x32\\xe0\\x52\\xe5\\x5a\\xfd\\x57\\x12\\xc7\\xe0\\\n\\xf2\\xcd\\x06\\x4a\\x91\\x30\\x8d\\x89\\x34\\x9b\\x81\\x18\\xcc\\x30\\xd7\\xca\\\n\\xf3\\x2b\\xba\\xf6\\x52\\x06\\x0e\\x83\\xd3\\x16\\x30\\xe5\\x03\\xb5\\x7d\\x0e\\\n\\xd8\\xe4\\x0a\\xf3\\x1d\\x94\\x1d\\x13\\xff\\x00\\x72\\x9d\\xfb\\x60\\x15\\x8e\\\n\\x38\\x22\\x34\\xb5\\x9d\\x3c\\xd5\\xde\\x95\\xd7\\xf1\\xc0\\x0c\\x82\\xe5\\x00\\\n\\x31\\x00\\x0b\\x88\\xeb\\xeb\\x5e\\xdd\\x3e\\x98\\xfb\\x0b\\xf8\\x62\\x89\\xab\\\n\\xc5\\xce\\x9d\\x8f\\xdb\\xaf\\xf0\\xfa\\x63\\x44\\xae\\x9a\\xd3\\xfa\\xff\\x00\\\n\\x8c\\x22\\xae\\x84\\x38\\x3b\\x76\\xd7\\xfa\\xeb\\x86\\x1f\\x16\\xbf\\x9e\\x1c\\\n\\x0d\\xc0\\xa0\\xfa\\xe9\\xfc\\x70\\x15\\x7b\\x7e\\x18\\xd7\\xb7\\xfb\\xe2\\x0c\\\n\\xd7\\x89\\x65\\xb8\\xd9\\x88\\xe4\\x67\\xcb\\xf3\\xb0\\x54\\x5a\\xd5\\x79\\x46\\\n\\x87\\xbe\\xb8\\x19\\xac\\xce\\x5c\\xc9\\x22\\x2d\\x80\\x19\\x1a\\xca\\x0e\\xc8\\\n\\x34\\xc3\\x88\\xf2\\xb1\\x25\\x74\\x5f\\x76\\x2a\\x17\\xe6\\x75\\xe9\\x87\\x75\\\n\\xa8\\x62\\x7b\\x6a\\x3b\\x53\\x02\\x30\\xe5\\xcd\\x77\\x63\\xcc\\xd5\\xd7\\x5e\\\n\\x98\\x0a\\xbe\\x6e\\xfd\\xb1\\xab\\x1d\\x7f\\x0f\\xaf\\xcb\\x02\\x87\\x4f\\x96\\\n\\xfd\\x2b\\x83\\x2c\\x8e\\x12\\x25\\x15\\x76\\x72\\xa1\\x50\\x0d\\x6a\\xed\\xaa\\\n\\x81\\xd3\\x73\\xf2\\xc4\\x19\\x71\\x17\\xff\\x00\\xa7\\x94\\xbb\\xdb\\x29\\xa1\\\n\\x95\\x4e\\x87\\x6f\\x35\\x68\\xa8\\x0f\\x53\\x5c\\x64\\x72\\xa1\\x65\\xcc\\xe6\\\n\\x27\\x51\\x39\\x81\\x1d\\xb8\\x70\\x25\\xa6\\x54\\x8e\\x42\\x3c\\xce\\xaa\\x39\\\n\\xd0\\xf3\\xbc\\xef\\x56\\xe6\\x2a\\x30\\x0b\\xf2\\x4d\\x22\\x51\\xdb\\xe1\\x8d\\\n\\x5a\\x34\\xe2\\x2f\\xe4\\xe1\\x8f\\xde\\x03\\xbe\\x32\\xfe\\x13\\x10\\xa8\\xe2\\\n\\x7b\\x66\\x6a\\x4f\\xd9\\xc6\\xa6\\xd9\\x6b\\x24\\xac\\x7c\\xeb\\x0c\\x41\\x8a\\\n\\xc5\\xa2\\xb3\\xfa\\x1c\\x26\\x57\\x25\\x48\\xcc\\xed\\x1e\\x56\\x26\\x1a\\xbd\\\n\\xad\\x52\\x96\\x8a\\x69\\xc3\\x8e\\xea\\x0d\\x83\\x4a\\x64\\xc6\\x5e\\x2c\\x8d\\\n\\x5b\\x2d\\x0c\\x12\\x49\\x98\\x94\\xb6\\x8c\\xe9\\x98\\x99\\x24\\x67\\x73\\xbf\\\n\\x9e\\x67\\x93\\xbf\\x14\\x74\\x41\\x89\\x56\\x40\\x5d\\xdd\\x60\\x83\\x26\\xaf\\\n\\xa7\\x06\\x16\\x10\\xb3\\xca\\xe7\\xfe\\xae\\x65\\xd5\\x99\\xe5\\x3a\\xa4\\x51\\\n\\xd8\\x9a\\x31\\xc4\\x39\\x78\\xe4\\x44\\xf6\\xf5\\x48\\x92\\x77\\xd0\\x41\\x97\\\n\\xa1\\x76\\xcd\\x28\\x3a\\x0e\\x14\\x76\\xda\\x4e\\xe6\\xbe\\x98\\x2a\\x93\\x5d\\\n\\x04\\x82\\x11\\xc3\\xe4\\xac\\x8b\\x2d\\xe5\\x24\\xfb\\xc0\\x2a\\xa0\\x20\\xe9\\\n\\x78\\x90\\x7c\\x38\\x9c\\xd5\\x3d\\xa2\\x78\\xf3\\x0a\\xa5\\xb9\\xbd\\xec\\x99\\\n\\x63\\x27\\x12\\x23\\xde\\xb1\\x29\\xfd\\xf5\\xd7\\x19\\x7c\\xd4\\x6e\\x89\\x9d\\\n\\x86\\x69\\xb2\\xf2\\xaf\\xc2\\xe8\\x8a\\x8d\\x22\\x9e\\xe5\\xbd\\xf5\\x9a\\xeb\\\n\\x69\\x03\\x51\\x8c\\xb3\\xa7\\x34\\x44\\xbc\\xb2\\x50\\x69\\x74\\x0a\\x55\\xa3\\\n\\xec\\x03\\xf1\\x0a\\x1a\\x75\\x40\\x37\\xc5\\x90\\x4a\\x64\\x8c\\xf1\\x24\\x58\\\n\\xde\\x9a\\xcc\\x9c\\x92\\xc4\\xd5\\xd8\\xc9\\x1e\\xb4\\xd3\\x45\\x27\\x12\\xe5\\\n\\x61\\xd5\\x6c\\x85\\xa7\\x0b\\xc8\\xe2\\x62\\xb0\\xf0\\xa5\\x8e\\x9b\\x49\\x1b\\\n\\x85\\xa9\\x1a\\x50\\x9a\\xef\\x89\\xda\\x79\\x19\\x67\\x14\\x8a\\x52\\x76\\x6e\\\n\\x17\\x27\\x1a\\x9f\\x0b\\x52\\x34\\xb8\\x7c\\xfb\\xe2\\x45\\xb8\\x5d\\x49\\x4b\\\n\\xca\\xbf\\x08\\x14\\xb5\\xaa\\x06\\xf7\\x9e\\x6f\\x9d\\x71\\x18\\xcd\\xcd\\x4b\\\n\\x96\\xdd\\x45\\x59\\xe8\\x00\\xad\\xda\\x50\\xe9\\xbe\\x23\\x9e\\x36\\x68\\xc0\\\n\\x52\\x0d\\x16\\x30\\x0f\\xef\\xfc\\x52\\x9f\\x57\\x6a\\x75\\x0b\\x5d\\xda\\x04\\\n\\x9c\\x08\\x78\\x85\\xd5\\xcf\\x9b\\x51\\xb5\\x2b\\x45\\xa7\\x7a\\x6b\\x89\\x72\\\n\\xf1\\xb5\\x93\\x89\\x29\\x9a\\xcc\\x1a\\x97\\x6a\\x6a\\xb1\\xae\\x87\\xdd\\xc6\\\n\\x3c\\xb4\\xa5\\x6b\\xad\\x70\\x96\\x08\\xe4\\x73\\xe5\\x12\\xc4\\x3c\\x95\\xb6\\\n\\xfb\\xb4\\xdc\\x83\\x4f\\xd3\\x0c\\xbc\\x74\\xcb\\x82\\x28\\x38\\x28\\x15\\xfe\\\n\\x75\\x35\\xd7\\x0c\\x73\\xd3\\xcf\\x3c\\x8d\\xac\\x72\\x4b\\x21\\x73\\x4a\\xe9\\\n\\x4a\\xe8\\xba\\x6f\\x40\\x3e\\x98\\xa7\\x46\\xd3\\xd7\\x02\\xee\\x65\\xd4\\x6a\\\n\\x01\\xf4\\x38\\x60\\xb1\\x08\\x5d\\xb6\\x91\\x34\\xb5\\xba\\x1f\\x5c\\x65\\x72\\\n\\xb3\\x4d\\x23\\x47\\x2c\\xdb\\xab\\x9e\\x64\\x3f\\xba\\x45\\x3f\\x3e\\xf8\\xac\\\n\\x5c\\xa3\\xb7\\xa7\\xd7\\xf2\\xf5\\xc1\\x2d\\xae\\xd5\\xe9\\xd3\\xaf\\xda\\xfa\\\n\\xed\\xb6\\x16\\x83\\xf2\\xc6\\xba\\x6b\\xb5\\x7a\\x63\\x9b\\x98\\x6f\\xff\\x00\\\n\\x1d\\xba\\x62\\x9a\\xdc\\x69\\xb0\\xf5\\xd7\\xf2\\xc1\\x51\\x34\\x89\\x22\\x06\\\n\\xe0\\xa0\\x7a\\x47\\x75\\x3e\\x31\\xdb\\xd7\\x0f\\x97\\xcc\\x46\\x63\\x91\\x3b\\\n\\xf5\\x53\\xb3\\x0e\\xe0\\xf4\\xc2\\xd0\\xfc\\xf1\\x0e\\x64\\x7c\\x2a\\x2b\\xad\\\n\\x3b\\x7e\\x62\\x98\\x19\\x6c\\xe4\\x4b\\x0e\\x6f\\x82\\x03\\xcb\\x5e\\x42\\xe3\\\n\\xe2\\xfe\\x18\\x69\\xb3\\x69\\x16\\x65\\x67\\x70\\x91\\x94\\x20\\xb5\\x1b\\xb2\\\n\\x8f\\x4d\\xf1\\x9a\\xcd\\xcb\\x72\\x4b\\x34\\x86\\x6c\\xbc\\x60\\xf2\\xaf\\x3a\\\n\\x80\\x9b\\x74\\x8e\\x9f\\x5c\\x6a\\xc4\\x7a\\x57\\x06\\xb4\\xe6\\xfb\\x47\\xe1\\\n\\xa6\\xbf\\x2f\\xde\\xc3\\xe5\\xb2\\xb2\\xa6\\xb5\\x12\\x4f\\x43\\xa0\\xea\\xb1\\\n\\x9f\\xb5\\xf7\\xbf\\x0d\\xb0\\x08\\x61\\x24\\x9a\\x1b\\x9f\\x9f\\x5f\\x93\\x69\\\n\\xfc\\x4e\\x04\\x8c\\xc6\\xc5\\x23\\xec\\x81\\xa7\\xc2\\x17\\xb7\\x4a\\x7a\\xed\\\n\\x88\\xf3\\x10\\xdd\\x7b\\x8f\\xd9\\x00\\x7a\\x6f\\xa1\\xd8\\x7a\\xe9\\x8a\\xdf\\\n\\xab\\x74\\xed\\xfa\\x0c\\x12\\xc2\\xe7\\x6d\\x76\\xeb\\xdb\\xe5\\x8c\\xc1\\xf8\\\n\\x48\\xbd\\x6b\\x5e\\x5b\\xfe\\x1a\\x76\\xbb\\xf5\\xd3\\x0c\\xca\\x09\\xa9\\x2a\\\n\\x24\\xa1\\xf3\\x6c\\x74\\x34\\xa0\\xed\\xd7\\x1e\\x6d\\x49\\x14\\xde\\xe2\\x3e\\\n\\x40\\x7a\\xe0\\xf2\\x91\\xb8\\x37\\x52\\xba\\x7c\\xb6\\xc5\\xa1\\x6a\\xdd\\x75\\\n\\xdc\\xfa\\xee\\x07\\xe4\\x46\\x1a\\x57\\x0c\\x6d\\xab\\x32\\x0d\\x49\\x55\\x1e\\\n\\x54\\xaf\\xf2\\xc2\\xb6\\x4e\\x53\\x65\\x05\\x55\\x5d\\x6e\\x84\\x8d\\x2c\\x71\\\n\\x5a\\xd4\\x62\\xa6\\x52\\x7f\\xd2\\x0f\\xe7\\xf2\\xc7\\x3e\\xae\\xe6\\x97\\x7f\\\n\\x40\\xe9\\xd7\\x05\\x95\\x88\\xfb\\xb4\\x27\\x5e\\x84\\x9e\\x9f\\x81\\xc1\\xd5\\\n\\x94\\xe9\\xaa\\xed\\xa7\\xa8\\xd8\\xfa\\x62\\xb2\\xb0\\x16\\x50\\x5e\\xe2\\x83\\\n\\xa6\\x9d\\x49\\x2d\\xd3\\x19\\x72\\xaf\\x53\\x23\\xd3\\x43\\xd6\\xdd\\x41\\xe9\\\n\\xf3\\x18\\x62\\xa2\\xf6\\x55\\x14\\x2d\\xe5\\xad\\x35\\xd3\\x73\\x4e\\xc4\\xfe\\\n\\x47\\x07\\xda\\xb3\\x72\\xf0\\x97\\xc9\\x02\\x37\\x0e\\x25\\x1f\\xb8\\x2a\\x3e\\\n\\x75\\xae\\x23\\xcb\\x4e\\xd6\\x98\\x99\\x5c\\x12\\x75\\x6e\\x09\\x05\\x56\\xa7\\\n\\x7b\\xba\\x9f\\x4c\\x43\\x9a\\x58\\xe4\\x9b\\x36\\x08\\x6b\\xaf\\xe5\\x56\\x53\\\n\\x77\\x16\\xdb\\x7c\\xf7\\x05\\x6a\\x9a\\x96\\x65\\xa7\\x97\\x11\\x64\\xc7\\xed\\\n\\x1f\\x87\\x1c\\x91\\xd6\\xae\\x80\\x1a\\x2c\\x6d\\x4f\\x2f\\x3b\\x96\\x7e\\xfa\\\n\\xd7\\x63\\x8c\\xca\\x42\\xa7\\x81\\x93\\x07\\x8d\\x2d\\x4a\\x2c\\x92\\xa5\\x17\\\n\\x82\\xa4\\x7c\\x0b\\x5b\\x25\\x6d\\x79\\x9d\\xbe\\xc8\\xa4\\x52\\x71\\x75\\x9a\\\n\\x6e\\x12\\x03\\xa0\\x8b\\x2e\\x96\\x89\\xe4\\x53\\xbd\\xee\\x81\\x15\\x7a\\x81\\\n\\x3d\\xdb\\x5a\\x12\\x3c\\xa8\\x1c\\x3c\\xba\\x95\\x88\\x0f\\xf3\\x27\\x5e\\x27\\\n\\x93\\x97\\x9b\\xde\\x3d\\xb7\\x9e\\xc2\\x45\\x3b\\x36\\x27\\xf1\\x36\\x56\\xe1\\\n\\x82\\xf0\\x90\\x35\\xba\\x56\\x6f\\x67\\xb4\\x01\\xa0\\x4c\\xb2\\x3b\\xa8\\xd2\\\n\\xad\\x3c\\x47\\xe1\\x34\\xc4\\x73\\x35\\x63\\x6c\\xba\\xcc\\x8b\\x12\\x12\\xb4\\\n\\x5b\\xa1\\x50\\x97\\x6e\\x56\\x25\\xad\\x68\\x3a\\x1d\\xf1\\xe1\\xe0\\x52\\x4c\\\n\\xa6\\x5e\\x13\\x3c\\xb2\\x0d\\x4a\\xd6\\x49\\x73\\x49\\x1b\\x6e\\xc5\\xad\\x9e\\\n\\xc5\\x56\\xa8\\xa0\\x66\\x3d\\x71\\x18\\x46\\xa7\\x0b\\x3d\\x12\\x72\\xb9\\xd2\\\n\\x29\\xf2\\xd2\\x45\\x22\\x0f\\xaf\\x30\\x3e\\x6d\\xfd\\x71\\x9b\\x93\\x28\\xc1\\\n\\x1e\\x3a\\xf8\\x83\\x65\\xe4\\x04\\x69\\x09\\xba\\x70\\xad\\xb7\\x21\\x79\\x12\\\n\\xbb\\xea\\x71\\x9a\\xc9\\xa9\\x50\\x33\\x3e\\xd1\\x99\\x85\\x15\\x74\\x45\\x68\\\n\\xbd\\xfb\\x2d\\x05\\x08\\x5c\\xdb\\xac\\xac\\x05\\x28\\xae\\x6d\\xd3\\x19\\xa1\\\n\\x18\\xbe\\xdc\\xd2\\xcc\\x75\\xdd\\x25\\x86\\x44\\x05\\x3e\\x26\\xaf\\x12\\xc2\\\n\\x37\\x59\\x3a\\x9a\\x69\\x26\\x6a\\x49\\x47\\x11\\x59\\xe2\\xd0\\x13\\xfb\\x3a\\\n\\x22\\x91\\xe8\\x04\\x74\\xa7\\x5a\\xdd\\xd8\\xe2\\x5f\\x10\\x16\\x70\\x73\\x48\\\n\\xce\\xd6\\x53\\xdd\\xb7\\x0d\\x56\\x5d\\x3a\\xa9\\xd7\\x5d\\xc1\\xf5\\xc6\\x66\\\n\\xe0\\x24\\xe2\\x15\\x55\\x56\\xa4\\x8b\\xef\\xc8\\x20\\xb7\\x5e\\x64\\x60\\x74\\\n\\xd0\\x7d\\x34\\x4c\\xa3\\xd5\\x52\\xee\\x1d\\x05\\xfa\\x36\\xea\\xc1\\x87\\xc2\\\n\\xe3\\x63\\xb0\\xd8\\xd0\\xe1\\xa2\\x0a\\x0b\\xd9\\xd1\\x62\\x63\\xb0\\xe6\\xbb\\\n\\x72\\x7f\\xaa\\xe0\\xcd\\x3b\\x88\\xe3\\x5d\\x0b\\x37\\x7f\\xdd\\x1a\\x9a\\x91\\\n\\xe5\\xd7\\xb7\\x7c\\x66\\xb3\\x11\\xa1\\x54\\x92\\x4e\\x4a\\xe8\\x6d\\x5d\\x01\\\n\\xf9\\xf5\\xfc\\x31\\x52\\xc4\\xd3\\x6a\\xeb\\xa7\\xf5\\xae\\x2e\\x3a\\x7f\\x5a\\\n\\xef\\xf3\\x18\\xf6\\x7e\\x3a\\x1c\\xc2\\x96\\xb6\\x9b\\x8a\\x0d\\x6a\\x69\\x6e\\\n\\x08\\x34\\x16\\xea\\x08\\xf8\\xbf\\xd8\\xf4\\xeb\\xbe\\x2e\\x7e\\x94\\xf4\\x14\\\n\\x3f\\xc7\\xf2\\xc5\\xdb\\x8d\\xe8\\x0e\\xbf\\xcb\\x1e\\xd3\\x19\\xf7\\xf9\\x5e\\\n\\x74\\x61\\xb8\\x51\\xab\\x0a\\xfa\\x83\\x5f\\xf6\\xc4\\x32\\xa1\\xba\\xe4\\x5a\\\n\\xb5\\x37\\x20\\x50\\xfc\\x85\\x7a\\xf7\\xdb\\x14\\xfe\\xbe\\xbd\\x70\\x41\\x23\\\n\\xf9\\xfc\\xbf\\xaa\\xe0\\xeb\\xd2\\x9f\\x23\\x8d\\x53\\x73\\xdf\\x4e\\xdf\\x4d\\\n\\xb0\\x00\\x00\\x91\\xdb\\xb1\\xff\\x00\\x8c\\x01\\x19\\x58\\x22\\xa5\\x5d\\xb8\\\n\\x61\\xe5\\x2d\\x5d\\x17\\x5e\\x55\\x00\\x6a\\xd4\\xad\\x5b\\x6e\\x5c\\x36\\x7c\\\n\\x49\\x2e\\x76\\x29\\x8d\\x64\\x94\\xd2\\xe8\\xde\\xed\\x88\\x5d\\x38\\x76\\xdb\\\n\\xad\\x28\\x36\\xd3\\x4c\\x5e\\x6d\\x77\\x6a\\x6f\\xad\\xa7\\xe5\\xdf\\xd3\\x11\\\n\\x31\\xdc\\x36\\xa1\\x7f\\xdb\\x1c\\x0a\\xf0\\xd9\\xe9\\x49\\x2e\\x3c\\x9d\\x76\\\n\\x1e\\x6f\\x96\\x3f\\xbb\\xdd\\xf8\\xf6\\xcd\\xee\\x9a\\xe3\\x6b\\x0b\\x8d\\x1c\\\n\\x54\\xd1\\x6a\\xb8\\x45\\x5a\\x0e\\x0c\\x6a\\xb6\\x13\\xef\\x1c\\xb9\\x2e\\x5a\\\n\\x8b\\xf0\\x68\\xba\\xd7\\x51\\xb6\\x87\\x15\\x3c\\xbe\\x86\\xbf\\xc3\\x03\\x2e\\\n\\x4b\\x98\\xbd\\x9a\\x49\\x38\\x8c\\x45\\x5c\\xac\\x6c\\x74\\xb7\\x65\\x5f\\xc7\\\n\\xb8\\xc0\\xe6\\xf3\\x39\\xeb\\x5d\\xb4\\xc2\\x72\\xd4\\xb5\\x0d\\x7a\\xf2\\xed\\\n\\xf9\\xe1\\xa7\\x8e\\x57\\x41\\x11\\xab\\xd5\\x88\\x55\\x5a\\xef\\xb8\\xc1\\x88\\\n\\x43\\x2e\\x7f\\xc3\\xdc\\x30\\x94\\x36\\x88\\x92\\xf4\\x91\\x1d\\xba\\xd7\\x96\\\n\\xc1\\xa7\\x5d\\xf1\\x7b\\x4f\\xc0\\x71\\x4b\\xa2\\x95\\x08\\x21\\xba\\xec\\x28\\\n\\x69\\xe9\\x8d\\x33\\x3f\\x56\\x47\\x0b\\xf4\\x24\\x62\\x2c\\xfe\\x55\\x92\\x54\\\n\\x57\\x09\\x23\\x47\\xcd\\xcb\\xa1\\x3f\\xf6\\xe9\\x5a\\xe2\\xe0\\x11\\x89\\x35\\\n\\xa3\\x6a\\x3f\\x0d\\xb0\\x46\\x63\\x87\\x71\\xdb\\x95\\x45\\x29\\xb5\\x00\\xd7\\\n\\x4c\\x70\\xcb\\x45\\x1f\\xc4\\x0b\\x43\\xba\\xfc\\xf1\\xee\\x5f\\x2c\\x41\\xf4\\\n\\x01\\xb4\\xed\\xa6\\xbd\\xf1\\xad\\xa4\\xfe\\xed\\x3f\\x96\\x18\\xc5\\x1c\\x70\\\n\\xf1\\x1c\\xbc\\x81\\x12\\x81\\x9b\\xbe\\x9b\\xd7\\xa9\\x3a\\xfa\\xe3\\xeb\\xd0\\\n\\x69\\x82\\xcc\\x75\\x03\\xd3\\xfa\\xae\\x07\\xb2\\x47\\x7b\\xd0\\xb7\\x3b\\x5a\\\n\\x18\\x56\\x96\\xe9\\x5c\\x16\\x99\\x13\\x2c\\x3e\\xc3\\x05\\x71\\xa6\\xfa\\x8e\\\n\\x9f\\x3a\\x60\\xa4\\x54\\xce\\x3d\\x77\\x3f\\xb2\\x5d\\x68\\x74\\xff\\x00\\x63\\\n\\x4e\\xf8\\x17\\x43\\x1f\\x29\\xa8\\x02\\xb4\\x52\\xc1\\x45\\x29\\xd7\\x6f\\x36\\\n\\x19\\x7c\\x8e\\x46\\x82\\xb5\\xe9\\xae\\xfb\\x0c\\x39\\x9e\\x91\\xa0\\x3a\\x93\\\n\\x6d\\x29\\xd7\\x5d\\xf1\\x93\\x4c\\xb2\\x06\\xe3\\xb2\\x8b\\x97\\xad\\xd4\\x14\\\n\\xd4\\x7d\\x6b\\xd3\\xaf\\x4a\\xc4\\xf1\\x2f\\x10\\xc7\\x14\\x99\\x8e\\x27\\x4e\\\n\\x28\\x5b\\x63\\x50\\xbe\\x66\\x50\\xe6\\xe1\\x72\\x8f\\x2d\\x69\\xd3\\x19\\xce\\\n\\x20\\xd2\\x36\\x10\\x82\\xa7\\x52\\xe1\\xc9\\xb0\\x52\\xa6\\xab\\x49\\x19\\xa4\\\n\\xde\\x47\\xd0\\x79\\x46\\x27\\xe2\\x25\\xaa\\xd3\\xc3\\x33\\x6b\\xe6\\xb0\\x16\\\n\\x58\\xff\\x00\\xf6\\xf7\\x67\\x3f\\x11\\x73\\xb8\\x45\\x27\\xda\\x11\\x6d\\x11\\\n\\x06\\x89\\x00\\x02\\xa5\\xe6\\x11\\x49\\x77\\xa6\\xb6\\x2f\\x70\\xab\\xf2\\xae\\\n\\x63\\x34\\xda\\xfb\\xd4\\x87\\x2b\\xa5\\x44\\x51\\x65\\xe3\\xa5\\x68\\x7a\\xc9\\\n\\x24\\x9c\\xed\\xbd\\x41\\xa6\\x21\\xcb\\x04\\x0f\\x1a\\x67\\x08\\x26\\x4f\\x20\\\n\\xb1\\xc5\\xc5\\x8e\\xce\\xf2\\xad\\xc6\\x9f\\xf5\\x0b\\x63\\x33\\x97\\x89\\x69\\\n\\x12\\x8c\\xcc\\x53\\x4c\\x47\\x2a\\x2a\\x54\\xed\\xf1\\x01\\x69\\x3d\\x3a\\x54\\\n\\xd4\\xd3\\x1c\\x27\\x40\\xab\\x98\\x4e\\x2f\\x15\\xcd\\x5e\\x8b\\x03\\x39\\x2c\\\n\\xba\\xd8\\xa2\\x39\\x17\\x94\\x57\\x44\\x7f\\xbb\\x72\\xf0\\xf3\\x37\\x0c\\xce\\\n\\x74\\x66\\x23\\x8e\\xb6\\xc8\\xf1\\xc6\\x59\\x18\\x50\\x54\\x5e\\xa8\\xa6\\xc4\\\n\\xd2\\xea\\x8e\\xf5\\xc4\\x19\\xb6\\x4b\\xa6\\x91\\x5b\\x8c\\xa3\\x7b\\x25\\xa0\\\n\\x77\\xb7\\xa8\\x91\\x16\\x26\\x65\\x3d\\x4b\\x52\\xb8\\x0d\\x05\\xe6\\x68\\x25\\\n\\x92\\x5c\\xb8\\x63\\x56\\x68\\xa7\\x05\\x64\\x40\\x4e\\xa2\\xe8\\x98\\x0b\\x0f\\\n\\xd8\\x56\\xc6\\x72\\x2c\\xda\\x01\\x27\\x0c\\x52\\x5e\\xa2\\x44\\x73\\x66\\x9f\\\n\\x78\\x20\\xff\\x00\\xb4\\xd3\\x7c\\x2a\\xf0\\xf4\\x2e\\xfc\\x45\\xf8\\x5e\\x41\\\n\\x45\\x70\\x3d\\x4a\\x9b\\x87\\x7c\\x4b\\x94\\x99\\x16\\x48\\x28\\x2a\\x8f\\xae\\\n\\x93\\x6f\\x4a\\x90\\x6d\\xe9\\x5f\\xa6\\xf8\\xcb\\x7b\\x0c\\x67\\x87\\x2d\\x5d\\\n\\xe3\\x07\\x5e\\x1c\\x49\\x74\\x41\\x0e\\xe0\\xa9\\x24\\x7d\\x29\\xd3\\x19\\x4c\\\n\\xc9\\x94\\x8c\\xcb\\x00\\xa9\\x29\\xd9\\x93\\x75\\xbc\\xf5\\x2a\\x2a\\x0f\\x50\\\n\\x69\\x5c\\x28\\x31\\xe5\\xe6\\x77\\x0a\\x8a\\x6e\\xb5\\x98\\x91\\xa0\\xa4\\x71\\\n\\xf9\\x7b\\xdc\\xeb\\xbe\\x1d\\x7c\\x47\\x2d\\xca\\x6d\\x01\\x01\\x92\\x11\\x15\\\n\\x34\\x16\\x73\\x1a\\x8d\\x77\\xfa\\x7a\\xe1\\xc4\\x6e\\xc8\\x47\\x94\\x35\\x1d\\\n\\x77\\xea\\x6b\\x5f\\xd7\\x07\\x99\\x28\\xa0\\x6c\\x37\\xf9\\x7c\\x86\\xf8\\xbd\\\n\\xbd\\xf4\\x66\\xe6\\xac\\x64\\x6c\\x3a\\x95\\x1c\\xda\\x69\\xa5\\x35\\xd7\\x0c\\\n\\xdc\\x31\\xcd\\xa3\\x3a\\x81\\x5a\\x93\\xde\\x95\\x14\\x1f\\xef\\x85\\x30\\x81\\\n\\x1b\\x8d\\xfa\\x55\\x7d\\x46\\xbf\\xef\\x8b\\x64\\x52\\x8b\\xad\\xb5\\xf2\\xb7\\\n\\x4d\\xff\\x00\\x31\\x8d\\x0d\\x4e\\x9f\\x2a\\x62\\x78\\xc3\\xd8\\xc6\\x33\\x47\\\n\\x1f\\x43\\x4f\\xae\\xdf\\x2c\\x2e\\x59\\xa8\\xb2\\x65\\x98\\xd1\\x57\\x76\\x8e\\\n\\xba\\xb6\\xbf\\x7b\\x1e\\x5a\\x7c\\xf7\\xd7\\x6f\\xc7\\x6f\\xa6\\x17\\x4f\\xf8\\\n\\xc0\\x20\\x56\\xbb\\xe0\\x49\\xba\\x9f\\x37\\x7c\\x09\\x12\\xa0\\x11\\xa3\\x76\\\n\\xf9\\xf4\\xa7\\xcf\\x14\\x3c\\xdc\\xbc\\xa7\\xb9\\xeb\\x89\\x72\\x92\\xbf\\x0d\\\n\\x24\\x4a\\x37\\x0c\\xdb\\x27\\x7e\\xab\\xd7\\xae\\x0c\\x12\\xb7\\x12\\x39\\x2a\\\n\\xf1\\x3d\\xd5\\x26\\x33\\xe5\\xb8\\x54\\x90\\x46\\xd8\\xea\\x08\\xd7\\xfa\\xae\\\n\\x0c\\xb2\\x31\\x0a\\x36\\x6f\\x88\\xbe\\xca\\x89\\xf2\\xa6\\xb8\\x39\\xd3\\xa2\\\n\\x2f\\x90\\xec\\xc4\\x74\\xe8\\x3a\\xe0\\xbb\\x5c\\xcc\\xc4\\x13\\x73\\x57\\xa7\\\n\\xe5\\xf2\\xdb\\x15\\x61\\x43\\x89\\x72\\x24\\xa8\\x13\\x47\\x24\\x70\\xb9\\xd4\\\n\\xa9\\x90\\x15\\xa5\\xdd\\x2e\\xaf\\x4c\\x18\\x9c\\x10\\x10\\x95\\x23\\xa5\\x54\\\n\\xea\\x3e\\xbe\\x6e\\xfc\\xdd\\xa9\\x81\\x60\\x16\\x47\\xa6\\x33\\xfc\\x82\\x6f\\\n\\x72\\x55\\x11\\xb6\\x67\\x3e\\x5f\\xc0\\x8f\\xe7\\x8e\\x1d\\x3d\\x94\\xc6\\xe2\\\n\\x94\\x65\\x58\\xc7\\x6a\\x81\\xd3\\xe4\\x31\\x97\\xcc\\xd5\\x33\\x0d\\x32\\xd1\\\n\\x8c\\x55\\x6f\\x78\\xa0\\x5d\\xd3\\xf0\\xc7\\x3a\\x88\\xa3\\x06\\xae\\xf2\\x35\\\n\\xbf\\x30\\x17\\x7d\\x47\\xe1\\x8c\\xce\\x55\\xb3\\xb1\\xb6\\x4f\\x94\\xc6\\xb1\\\n\\x46\\x4d\\x1b\\x76\\x04\\x13\\x4a\\x37\\x7c\\x5c\\x65\\x65\\x89\\x9c\\xe8\\x34\\\n\\x95\\xc7\\xaa\\x8d\\x11\\x7e\\x5a\\xfa\\xe1\\xa8\\x06\\x9d\\x77\\xaf\\xcc\\x9e\\\n\\xd8\\x8d\\xdd\\x2e\\x5b\\x99\\x7b\\x74\\xf4\\xc0\\xe1\\x31\\xa1\\xd3\\x7e\\xdd\\\n\\x8e\\xf5\\xed\\xd3\\x1f\\xa7\\xfb\\xff\\x00\\x1c\\x05\\xae\\xdb\\xeb\\xa6\\xbf\\\n\\x4c\\x72\\xfd\\x29\\xd3\\xbb\\x75\\xae\\x28\\x09\\xd4\\xea\\xc7\\xfa\\xfc\\x3d\\\n\\x31\\xad\\x0f\\xc2\\x31\\xec\\xb0\\x9f\\x78\\xf5\\x04\\x8e\\x91\\xef\\x5d\\x3a\\\n\\xb7\\xe5\\x8b\\xed\\x26\\x9d\\xe8\\x77\\xa1\\xa7\\xe9\\x8d\\x29\\xa6\\xfa\\x76\\\n\\xf9\\xd6\\x98\\xa6\\x9b\\x1f\\xc2\\x83\\x00\\x4d\\x57\\x4d\\xdd\\x7e\\x1d\\x0f\\\n\\xaf\\x9b\\x6e\\xbf\\x4c\\x65\\xe3\\x86\\x24\\x88\\xc3\\x28\\xa3\\x1a\\x9e\\x1a\\\n\\x9f\\x20\\x41\\x50\\x1d\\xde\\x87\\x90\\xb8\\x14\\x15\\x66\\x8c\\x0a\\xb4\\xdc\\\n\\x94\\x64\\x96\\x56\\x92\\x53\\xc3\\xac\\xc8\\xa3\\x4a\\x50\\x07\\x68\\x51\\xb9\\\n\\xa4\\x92\\xd8\\xe1\\x16\\xb0\\x8c\\x3b\\xd2\\xc9\\x12\\x21\\xee\\x43\\xf1\\x65\\\n\\x76\\xe5\\x34\\x2f\\x5a\\xe9\\xad\\x65\\x7b\\x51\\x13\\xcc\\xa9\\x7d\\xc7\\xde\\\n\\xb6\\x38\\x63\\x99\\xe5\\xe5\\x15\\xf8\\x15\\x88\\x8a\\xb4\\xf4\\x8c\\x3d\\x9d\\\n\\xee\\xd7\\x50\\x29\\xec\\x70\\x7b\\xc9\\xb3\\xd3\\xbd\\x09\\xff\\x00\\x29\\x6c\\\n\\x48\\x5e\\x63\\xfb\\xaa\\xa6\\x94\\x1a\\x50\\x75\\x03\\x02\\x15\\x89\\x84\\x68\\\n\\xa8\\xbc\\x94\\xac\\x8f\\x2d\\xa1\\x6e\\xa8\\xf7\\x7c\\xed\\xa5\\xd5\\x24\\x7b\\\n\\xcd\\x15\\x69\\x88\\x1f\\x2f\\x58\\x2e\\x9e\\x69\\x1d\\x75\\x1c\\x28\\x50\\x02\\\n\\x09\\x6f\\xfa\\x92\\xad\\xbc\\x35\\xdd\\x63\\x42\\xda\\x33\\x9c\\x66\\x65\\xce\\\n\\x27\\x26\\x7b\\x91\\x52\\x94\\x31\\x9e\\x1a\\x21\\x70\\x0e\\xd7\\xc9\\x27\\x17\\\n\\x5a\\xd4\\x29\\x27\\xb6\\x26\\xce\\xde\\x8d\\x96\\x8f\\x21\\x0c\\x20\\x53\\x4e\\\n\\x1c\\xe4\\x19\\x5a\\x32\\x7a\\xd2\\x1a\\x2f\\x52\\x2a\\x0f\\x29\\xa6\\x32\\xf1\\\n\\x64\\x10\\x3e\\x66\\x45\\xf7\\x12\\x1f\\xfc\\xde\\x5d\\x63\\x32\\x16\\x6e\\x7d\\\n\\x2f\\x9e\\xa2\\x31\\xf7\\x2f\\x23\\x55\\x43\\x86\\x8f\\x3a\\xb7\\x4a\\x61\\x2e\\\n\\x74\\xaa\\xf3\\x50\\xba\\x0e\\xc2\\x26\\xe5\\x5f\\xaf\\xa6\\x1a\\xa8\\x29\\xec\\\n\\xd6\\xc2\\xe3\\xe2\\x1a\\x72\\xfa\\x7d\\x31\\x1b\\x2a\\xdf\\x1b\\x71\\x16\\x64\\\n\\x35\\xbc\\x55\\x56\\xc2\\xdd\\xd0\\x73\\xda\\x77\\xb8\\x9c\\x65\\xa5\\x8c\\xf3\\\n\\x27\\x11\\xdc\\x03\\xaf\\x11\\x68\\xd1\\xb7\\xe2\\x85\\x4f\\xcf\\x11\\x00\\xa5\\\n\\x21\\xcc\\xad\\x24\\x71\\xcc\\xb1\\x31\\x37\\x03\\xa6\\xab\\xef\\x2d\\xdf\\x7c\\\n\\x43\\x74\\xbc\\x3c\\xd4\\x09\\x0a\\x93\\x4a\\x85\\x76\\x5f\\x36\\xa3\\xc8\\xc4\\\n\\x1f\\x4a\\xd7\\x11\\xf8\\x7b\\x72\\x2c\\x63\\xf6\\xaa\\xc6\\xab\\x28\\x6d\\x5f\\\n\\xb1\\x47\\xf3\\x72\\xd3\\x51\\xad\\x46\\x23\\xa1\\x19\\x80\\xaa\\xa4\\xf3\\x35\\\n\\xda\\x0f\\x4a\\x01\\x65\\x39\\xb4\\xae\\xdd\\xf1\\x6b\\x96\\x58\\xfb\\x35\\x0e\\\n\\xcd\\xcd\\xaf\\x4f\\xe7\\xeb\\x80\\x58\\xd3\\x71\\xdc\\xb5\\x9b\\x7e\\x58\\xb4\\\n\\xaf\\xc8\\x1e\\xfe\\xb8\\xf7\\x7f\\xb4\\x1d\\x80\\xd2\\xbf\\x2c\\x16\\xb6\\x93\\\n\\xab\\x35\\xc0\\x68\\x92\\x28\\xfc\\xf8\\x8b\\xf1\\x7a\\xe0\\x5a\\x74\\xd0\\xd7\\\n\\xb9\\xf9\\xff\\x00\\x55\\xc5\\x25\\x4a\\xd5\\x48\\xdc\\x72\\xd7\\xad\\x76\\xf5\\\n\\xad\\x34\\xc1\\x8a\\x50\\x7a\\x34\\x60\\x8f\\x34\\x4d\\xb1\\xfe\\xb4\\xc3\\x3c\\\n\\x96\\x84\\x1a\\x12\\x76\\xfc\\x06\\x1e\\x44\\x24\\x12\\x5b\\xc9\\xa7\\x53\\x4a\\\n\\x7d\\xd2\\x0e\\xb8\\x10\\xe6\\xbd\\xc4\\xbc\\x94\\x75\\xa9\\x57\\x3b\\x12\\xc3\\\n\\xe1\\xfe\\x9b\\x73\\x89\\x72\\x92\\x73\\x65\\x63\\x16\\x2c\\xc2\\xa5\\x8c\\x80\\\n\\x51\\x8d\\x7e\\xcf\\xc3\\xf9\\x8c\\x41\\x66\\x62\\x32\\x33\\x2b\\xee\\x28\\xda\\\n\\xb5\\xab\\x56\\x0b\\xa7\\x41\\xdf\\x73\\x83\\x71\\xa2\\x8a\\x9a\\x9a\\x69\\x41\\\n\\xf2\\xc7\\xbb\\x91\\x64\\x8e\\x4a\\x68\\xba\\xe9\\xd7\\xeb\\xfe\\x9a\\x62\\x55\\\n\\x19\\x88\\x99\\x72\\xe6\\x40\\xf6\\xb5\\x59\\x0c\\x7e\\x71\\xbd\\x79\\x76\\x18\\\n\\x12\\x9c\\xec\\x4c\\x01\\x5e\\x65\\x3a\\xf3\\x10\\x2a\\xcb\\xa1\\xdb\\x7e\\xdf\\\n\\x4c\\x70\\x73\\x39\\x98\\x5c\\xc8\\xad\\x64\\xd6\\xeb\\x15\\xbf\\x7a\\x95\\x56\\\n\\xed\\x1f\\xd7\\x6c\\x49\\x1a\\x66\\x17\\x33\\x13\\xd3\\x83\\x2a\\x73\\x5c\\xad\\\n\\xb5\\x7b\\x11\\x89\\x22\\xcc\\xab\\x16\\x0a\\x0c\\x72\\x0f\\x32\\x95\\xf8\\x69\\\n\\xb5\\x87\\xae\\x9a\\x74\\xc2\\xe5\\xe3\\xf2\\x43\\xa5\\x06\\xc4\\x8d\\xfe\\x9d\\\n\\xb1\\x54\\xe5\\x8d\\x47\\x33\\xb6\\xdd\\xc0\\x07\\xbf\\xa6\\xe3\\x01\\x59\\x2f\\\n\\x6e\\xac\\xd4\\xae\\x13\\x32\\x5e\\xaf\\x7e\\x83\\x4b\\x92\\x9b\\x1a\\xae\\xfb\\\n\\x61\\x33\\xca\\x3d\\xe3\\xa5\\x93\\xff\\x00\\xee\\xa2\\xf9\\xbe\\x6c\\x29\\x81\\\n\\x41\\xcc\\xcc\\x42\\x8f\\xbd\\xeb\\xdc\\xe2\\x5c\\xa4\\xa5\\x4a\\xca\\xb6\\xb7\\\n\\xdd\\x24\\x7c\\x3b\\x6d\\x5f\\xc6\\xb8\\xcd\\x65\\xa2\\xf1\\x9e\\x1c\\x8a\\xd5\\\n\\x58\\xd9\\x14\\xfc\\x3a\\x55\\xb4\\x3b\\x6d\\x4a\\xe2\\x1c\\xb7\\xb4\\x09\\x73\\\n\\x51\\x45\\x46\\xa9\\xa5\\x5c\\xee\\x6a\\xdd\\x31\\x24\\x39\\x77\\x11\\xae\\xcd\\\n\\x22\\xfc\\x47\\x63\\xae\\xff\\x00\\x85\\x70\\x2b\\x73\\x16\\xde\\xad\\x52\\x74\\\n\\xeb\\xd7\\xf0\\xc2\\x18\\x54\\xd1\\xde\\x9c\\x33\\xae\\x94\\xfa\\xd1\\x6b\\xcd\\\n\\xf3\\xc1\\xbc\\x5a\\x0e\\xb5\\x53\\xa9\\x3f\\x15\\x6b\\x4f\\xa6\\x16\\xca\\x9a\\\n\\x48\\xad\\x4d\\xcd\\x35\\xda\\xde\\xba\\xe0\\x4d\\x28\\x12\\xfb\\xb0\\xcb\\x1c\\\n\\x6d\\xcd\\x7f\\x45\\xf9\\x77\\xc4\\xf9\\x87\\x8a\\xd9\\x54\\x1b\\x63\\x51\\x70\\\n\\x5d\\x42\\xde\\xed\\x4d\\x94\\xd6\\xb8\\x53\\x2e\\x56\\x69\\xdb\\x5e\\x65\\x21\\\n\\x55\\xcf\\xee\\xda\\x68\\x3e\\x78\\x59\\x25\\x0f\\x13\\x1d\\xd2\\xc2\\xd4\\xd7\\\n\\xe9\\x4f\\x5c\\x17\\x49\\x49\\xd0\\x9d\\x15\\xbf\\x8d\\x07\\x4e\\xf8\\x56\\x85\\\n\\xc5\\x1c\\x0d\\xc8\\xbf\\x7a\\xed\\x53\\x86\\x72\\x29\\xd3\\x4d\\xb4\\xed\\x53\\\n\\xb7\\xe1\\x8e\\x41\\xa5\\x3a\\xe2\\xba\\x7d\\xea\\x0d\\xab\\xb5\\x6b\\xbd\\x7b\\\n\\x7e\\x98\\x21\\x57\\x45\\x1e\\x5d\\x79\\x98\\x2e\\x9a\\xd7\\x5a\\x9a\\x54\\x68\\\n\\x02\\x8c\\x2f\\x13\\xf6\\x96\\xad\\xd4\\x1a\\x57\\x72\\x3e\\x9a\\x7f\\x2c\\x48\\\n\\x4b\\x31\\x94\\xa4\\x7c\\x92\\x7e\\xc5\\x5b\\x4e\\x6b\\x05\\xa1\\x8d\\xb5\\x5b\\\n\\x5d\\x9a\\x3e\\x6e\\x64\\x6c\\x66\\x61\\x69\\x66\\x90\\xb2\\xc9\\x24\\x84\\x9e\\\n\\x59\\x6c\\xb4\\x71\\xa7\\xb7\\x91\\x62\\x8f\\x8b\\x48\\x72\\xfc\\xa0\\x9e\\x62\\\n\\x08\\xb3\\x19\\xab\\x55\\xa3\\xe7\\xa4\\x4c\\xd4\\x54\\x02\\x28\\xf8\\x7c\\x56\\\n\\xbb\\xbb\\x38\\x8a\\x2a\\x25\\xfc\\xb2\\x4d\\x65\\xd4\\xc6\\x6f\\x34\\x24\\x2e\\\n\\x11\\x8c\\x31\\xb3\\x75\\x22\\xbc\\xeb\\xae\\x9f\\x12\\xc7\\x5e\\x6b\\x56\\xfa\\\n\\x57\\x79\\x0a\\x12\\xd2\\x48\\xc5\\x6f\\xf3\\xb4\\x70\\x0f\\x37\\xca\\xf3\\xca\\\n\\xa3\\xf7\\x89\\xa1\\x38\\x69\\xd6\\xf9\\x5e\\x37\\xb5\\x16\\xea\\x46\\x25\\x1a\\\n\\x58\\x83\\xe3\\x71\\xb3\\xcb\\x52\\x3a\\x28\\xb3\\x9b\\x01\\x02\\x71\\xb3\\x05\\\n\\x59\\x2c\\x8d\\xaf\\x45\\x76\\x5a\\x66\\x66\\x95\\xf5\\x1c\\xb5\\x60\\x5a\\xb6\\\n\\x86\\x25\\x56\\xa3\\x5c\\x18\\x14\\xd2\\x3c\\x8a\\x9c\\xce\\x68\\xfd\\x95\\x8e\\\n\\x36\\x61\\x0a\\x8e\\x88\\xec\\x6e\\xd7\\x9d\\xca\\xaf\\x94\\x63\\x21\\x0c\\x64\\\n\\x46\\xa3\\x3a\\x21\\xe1\\x16\\x35\\x98\\x03\\xee\\xfb\\x74\\x1c\\xcc\\x79\\x4f\\\n\\x4a\\x0c\\x15\\x01\\x38\\x79\\x26\\xcb\\x98\\x78\\x62\\xea\\x29\\x8d\\x68\\x5d\\\n\\xfe\\x25\\x46\\x94\\xd7\\x7a\\x8a\\x57\\x6c\\x5f\\x56\\x59\\x56\\xb1\\xb1\\x5e\\\n\\xb7\\xa8\\xea\\x37\\x07\\x42\\x3a\\xe9\\xb6\\x38\\x79\\xb9\\x58\\x22\\x69\\x04\\\n\\xc4\\x12\\x07\\x6b\\xe9\\xaa\\xf3\\x55\\x08\\x3d\\x05\\x4e\\x38\\xc6\\xd7\\x02\\\n\\x3f\\x30\\xa3\\x06\\x01\\xcf\\x5e\\xf4\\x6d\\x35\\xc3\\x45\\x30\\x31\\xad\\xed\\\n\\xa1\\xd0\\xb2\\xc9\\xe5\\x61\\xd2\\x94\\xdc\\x8c\\x06\\x8e\\x47\\xad\\x06\\x94\\\n\\xe5\\xe4\\x3a\\xab\\x50\\x68\\x48\\xa3\\x0a\\xf4\\x65\\xeb\\xb2\\xc2\\xe1\\xb8\\\n\\xb6\\x41\\x1d\\x75\\x0c\\x08\\xf9\\x8e\\x60\\x09\\xed\\xd7\\x12\\x46\\x92\\x73\\\n\\x46\\xca\\x4d\\xed\\xcf\\x1b\\x02\\x28\\x58\\x79\\xa8\\x47\\xa6\\x24\\x49\\x24\\\n\\xe1\\xca\\x57\\x91\\xe8\\xd6\\x37\\xee\\xb0\\xd0\\x57\\xf1\\xef\\x8e\\x23\\x45\\\n\\x04\\x86\\xe7\\x2d\\xa9\\xd8\\x72\\xde\\x28\\x45\\x2a\\x75\\xf9\\xe1\\x42\\x46\\\n\\x14\\x79\\x80\\xe6\\x63\\xcb\\xf6\\x6b\\xf6\\x86\\xf8\\x5a\\x06\\xd7\\x5f\\x9e\\\n\\xba\\x6f\\xb6\\xf8\\xba\\x03\\x71\\xba\\xe7\\x53\\xe7\\x20\\x6b\\x41\\xdf\\xd2\\\n\\xb4\\x18\\x0d\\x5f\\x79\\xbf\\xf3\\xff\\x00\\x8c\\x1a\\x11\\x46\\x55\\x93\\x41\\\n\\x4a\\x13\\xa3\\x0d\\xf6\\xb9\\x4e\\x9d\\x0d\\x70\\x15\\x69\\xdf\\xb0\\x18\\xca\\\n\\xe6\\x2e\\x37\\x1b\\xa2\\x22\\x9f\\x0f\\x9b\\xa7\\x61\\x89\\x2a\\x45\\x64\\x36\\\n\\xa8\\x6f\\x8a\\xb5\\x66\\xa7\\xa8\\x1d\\xf0\\xb4\\xa0\\x51\\xa9\\xd6\\xbd\\xeb\\\n\\xb7\\xf1\\xc5\\xd5\\xeb\\xb8\\xdb\\x5e\\xdf\\xf3\\xfc\\xb1\\x7d\\x7f\\xaf\\xf9\\\n\\xa0\\xc2\\x13\\x23\\x8e\\x1f\\xec\\xed\\x76\\xe4\\xbb\\xec\\xf6\\xf5\\xc3\\x42\\\n\\x67\\x69\\x23\\x31\\xba\\x55\\xcd\\xd4\\xbb\\xa8\\x24\\x57\\x09\\x2e\\x5a\\x69\\\n\\x63\\x74\\xb7\\xca\\xc4\\x7a\\x77\\x20\\xeb\\x89\\xa5\\x79\\xa6\\x02\\x56\\x66\\\n\\x98\\xd6\\x97\\x16\\xd5\\xaa\\x3a\\xfa\\xe2\\x95\\xb7\\xfa\\xed\\xeb\\x82\\xcc\\\n\\x86\\xca\\x72\\x1b\\xb5\\xd3\\xfd\\xf4\\xc1\\x94\\xa9\\xa2\\xf2\\xa8\\xe8\\x14\\\n\\x76\\xfa\\x63\\xfc\\x45\\xc1\\xb3\\x0a\\xd1\\xab\\x0f\\x85\\x88\\xd1\\xbd\\x42\\\n\\x7c\\xc6\\xa3\\x05\\x01\\x59\\x39\\x8d\\x48\\x04\\x5d\\xb7\\x7d\\x86\\x95\\xc5\\\n\\x14\\xd0\\x79\\xbe\\xbf\\xf1\\x8d\\xff\\x00\\x4c\\x45\\xec\\x5e\\xea\\x3b\\x9f\\\n\\x96\\x82\\xa8\\xe2\\xa3\\x86\\x6b\\xf0\\x83\\xb6\\x1a\\x2c\\xd4\\xa1\\xe0\\x60\\\n\\x39\\x28\\x42\\xa3\\x77\\xfc\\x4e\\xbd\\x81\\x18\\x8d\\x42\\x1e\\x42\\xc4\\xd2\\\n\\xbc\\xbd\\x2b\\xf9\\xfe\\x18\\x91\\xb5\\x5b\\x41\\x35\\xd7\\x13\\xf8\\xb4\\x1e\\\n\\x26\\xd0\\xe7\\x93\\xdd\\xc9\\x0d\\x10\\xc6\\x2c\\xa8\\x56\\x60\\x75\\x0c\\x57\\\n\\xf1\\xe9\\xae\\x1a\\x3c\\xeb\\x06\\xb6\\x8a\\xa5\\x09\\x17\\x6b\\xb9\\x5a\\xe8\\\n\\x4e\\xf8\\xd2\\xa5\\x6b\\xca\\x3b\\xfa\\x9e\\xd8\\x57\\xcc\\x54\\x82\\xc3\\x43\\\n\\xa2\\x8f\\xf5\\x75\\xc7\\xec\\x90\\x10\\x28\\x0f\\xa0\\xfb\\xd8\\xfd\\xaa\\xa9\\\n\\x1b\\xf5\\x5f\\x4f\\x5a\\x53\\xaf\\xe3\\x89\\x23\\x2a\\x25\\x49\\x01\\x5b\\xe3\\\n\\x6a\\xb0\\x07\\x7a\\x7c\\xc1\\xd3\\xb6\\x38\\x25\\xeb\\x65\\x44\\x7e\\xa9\\xff\\\n\\x00\\xe3\\x89\\x91\\x48\\xb8\\xc6\\xf4\\xad\\x28\\x48\\xd8\\xb7\\xa6\\x25\\x13\\\n\\x8a\\xf0\\xa4\\x65\\x08\\x7a\\xda\\x7a\\x7d\\xdc\\x4c\\x64\\x54\\x8a\\x82\\x89\\\n\\x1a\\xf5\\x27\\xed\\x31\\xfc\\xb0\\x60\\x96\\x40\\x38\\x95\\x8c\\x0d\\x3a\\xec\\\n\\x47\\xcb\\x7c\\x65\\x72\\xba\\x23\\xc7\\x31\\x0d\\x75\\x6a\\xd4\\x1a\\x10\\x3d\\\n\\x77\\xc1\\x14\\xf4\\xad\\x0d\\x07\\xae\\xc3\\x1a\\x8a\\x69\\xa9\\x6d\\x29\\xd7\\\n\\xea\\x30\\x58\\x83\\x68\\xd9\\x79\\x77\\xee\\x6b\\x82\\xbc\\x58\\xb8\\x84\\x80\\\n\\x01\\x20\\x5b\\x5d\\x34\\xa9\\xf3\\x1d\\xbe\\x98\\x2a\\xd2\\x2c\\x92\\xa8\\x6a\\\n\\x44\\xa3\\xae\\x94\\xbd\\xfc\\xb4\\x1f\\x77\\x0d\\x98\\x9a\\x2f\\x77\\x7d\\x5d\\\n\\xea\\xe6\\xf6\\xdc\\x43\\x0a\\x06\\x17\\xb1\\xea\\x7c\\xb0\\xa7\\x3b\\xe8\\x46\\\n\\x24\\x58\\xcc\\x4a\\xd2\\x24\\x60\\xac\\x69\\xee\\x62\\x40\\x43\\x88\\x4b\\xf3\\\n\\x34\\x8d\\x6d\\x38\\x84\\x9e\\x67\\x93\\x4f\\x29\\xc7\\x0d\\x69\\xc2\\x8b\\xde\\\n\\x3c\\xa7\\x60\\xe4\\x51\\x68\\xa3\\x56\\x3f\\x31\\xf5\\x18\\x8b\\x2c\\xb7\\x46\\\n\\x81\\xa7\\x9e\\x66\\x3a\\x34\\xb3\\x3a\\x08\\xd2\\xaa\\x09\\xb5\\x55\\x45\\x11\\\n\\x09\\x24\\x54\\xd7\\x5a\\x9c\\x0b\\x42\\x99\\xa6\\xb6\\x77\\x27\\xa2\\xb5\\x39\\\n\\x98\\xef\\x5b\\xcd\\x11\\x7b\\x8a\\xf4\\x18\\xca\\x96\\x6b\\x4c\\xed\\xc2\\x81\\\n\\x09\\xa0\\x8d\\x0d\\xcf\\x34\\xe5\\x3e\\xd2\\xc5\\x58\\xe3\\xaf\\x95\\x44\\x6c\\\n\\xfe\\x73\\x8c\\xc4\\x70\\xc4\\xbc\\x35\\xa7\\x0f\\xfe\\xa4\\xcf\\x23\\x33\\x5e\\\n\\xdf\\x65\\x39\\x4d\\xaa\\x34\\x6a\\x02\\x71\\x9b\\x11\\x55\\x8e\\x72\\x4c\\xd3\\\n\\x67\\x26\\x1e\\x67\\x66\\x40\\xb6\\x03\\xd4\\x2b\\x5e\\x3b\\x29\\xb6\\x98\\xc8\\\n\\xe7\\xe3\\xe5\\x1c\\xb1\\x38\\x2d\\xac\\x6a\\x91\\x95\\x5a\\x7d\\xea\\x1c\\x66\\\n\\x25\\x8c\\x5e\\x81\\x02\\x8d\\x89\\xb6\\x13\\xcc\\xa4\\x7a\\x51\\x6b\\xf8\\x6d\\\n\\x86\\x58\\x12\\x86\\x4f\\x7a\\x80\\x8d\\x0a\\xa9\\xa5\\x3d\\x28\\x41\\xd7\\x02\\\n\\x4c\\xbf\\x24\\xd0\\x1f\\x7a\\x94\\x06\\xf0\\x77\\xdf\\x7f\\xbd\\x89\\xa1\\xf2\\\n\\x4b\\x1c\\x65\\x64\\x88\\x0e\\x61\\x25\\x3a\\x7e\\xf7\\xc3\\xeb\\x81\\x0b\\x3a\\\n\\x71\\xa3\\xf7\\x6b\\x2b\\x76\\x6d\\x23\\x21\\x86\\xbc\\xe4\\x6d\\xd0\\x9a\\x61\\\n\\x10\\xc9\\xa9\\x6e\\x7a\\x9a\\x1f\\x2d\\x2d\\x24\\xee\\x3d\\x77\\xd0\\x63\\x2f\\\n\\x72\\x91\\x2c\\x4d\\xc3\\x76\\x23\\x55\\xd6\\xa0\\x86\\x1b\\x8f\\x2d\\x70\\xca\\\n\\xff\\x00\\xb5\\xe4\\xe1\\xc8\\xc9\\x51\\x20\\x1a\\x05\\x2f\\xb3\\x0f\\xb7\\xf6\\\n\\x4e\\x1e\\x38\\xe5\\x55\\x70\\xba\\xa4\\x8a\\x1c\\x50\\xd6\\x8a\\x2b\\xdf\\x5a\\\n\\x61\\xc9\\xb5\\x59\\x4d\\x2c\\x61\\xca\\x46\\xb5\\xa7\\xdd\\xaf\\xe7\\x4c\\x24\\\n\\x91\\x82\\x0d\\xc3\\x45\\xdb\\x5e\\xde\\x98\\x1a\\x5a\\x35\\x3f\\x68\\x8e\\x73\\\n\\xcb\\xe9\\xaf\\xe1\\xb6\\x3d\\xd8\\xab\\x75\\x6e\\xba\\xed\\x53\\xfd\\x75\\xc3\\\n\\x15\\xa0\\xd8\\x9f\\x9f\\xff\\x00\\x96\\x21\\xa8\\xab\\x2b\\x3a\\x36\\x9c\\xb6\\\n\\xd2\\xf0\\x6b\\xe9\\xad\\x7e\\x78\\x36\\x2f\\xe1\\x84\\xcb\\xb1\\x36\\xaa\\x3c\\\n\\x8f\\xaf\\x92\\xf1\\xa7\\xe0\\xa3\\x12\\xc7\\x0c\\xc5\\xb2\\xea\\xeb\\xc3\\x17\\\n\\x54\\x5d\\x65\\x18\\xeb\\xeb\\x5c\\x70\\xc0\\x12\\x30\\x1a\\x82\\x3b\\x7f\\x54\\\n\\xc1\\x6e\\x10\\x56\\x0a\\x58\\x9d\\x28\\x94\\xff\\x00\\x7d\\x30\\xb3\\x6f\\xa9\\\n\\x0d\\xa6\\xe3\\xf9\\xe2\\xa8\\x07\\x93\\x98\\xfc\\x4a\\x69\\x43\\x5c\\x68\\x0b\\\n\\x01\\xf0\\xf6\\x1f\\xcb\\xb1\\xc1\\x49\\x1c\\x2e\\x84\\x95\\x3a\\x1d\\x3d\\x3a\\\n\\xe0\\x80\\xdc\\x94\\xdc\\x7c\\x55\\xdb\\xf2\\xc2\\x04\\x3e\\x63\\xeb\\xdf\\xaf\\\n\\xfb\\xef\\xd3\\x19\\x68\\x40\\x2e\\xd2\\x0f\\x39\\xba\\x9c\\xc4\\x79\\x41\\xfd\\\n\\x31\\x4b\\x81\\x73\\x1d\\xa6\\xea\\x0d\\xfc\\xc7\\xe7\\x86\\x8a\\x40\\x0b\\x23\\\n\\x1a\\x30\\xf8\\x74\\x1f\\x9f\\x7f\\x5c\\x49\\xcf\\x56\\x03\\xf3\\xaf\\xeb\\x8a\\\n\\x63\\xa6\\x2e\\x1c\\xe8\\xfe\\x71\\xdb\\xef\\x0f\\xbe\\x3a\\xd3\\x7c\\x1b\\xb5\\\n\\xe5\\xe5\\x3d\\x0f\\xa8\\xfd\\x3e\\x63\\x04\\xb0\\x0c\\xdb\\x7a\\xb2\\x9d\\xbf\\\n\\x0c\\x58\\xf1\\x8b\\x18\\x1a\\xd5\\x46\\x82\\x9b\\xfe\\xb8\\xcd\\xcf\\x91\\xcc\\\n\\x30\\x92\\x61\\xcd\\x42\\x38\\x6a\\xab\\xaf\\x97\\x6a\\x9d\\x45\\x7d\\x70\\xd2\\\n\\xb3\\xd2\\x26\\x26\\x46\\x95\\xaa\\x05\\x3b\\x2f\\x72\\x7b\\x8d\\x30\\x62\\x81\\\n\\x23\\x13\\x05\\x21\\x4c\\x9a\\x1b\\x7a\\x38\\xea\\x69\\xf5\\xc7\\x13\\x37\\x9b\\\n\\x13\\x34\\xb3\\xb2\\xc7\\x93\\x0d\\xcf\\x62\\x9e\\x46\\xb7\\xc9\\xad\\x36\\x20\\\n\\x69\\xd7\\x0b\\x06\\x6e\\x35\\x8a\\x4a\\xd9\\x69\\xaa\\x94\\xe9\\xea\\x5a\\xbd\\\n\\xfa\\xf7\\xc1\\x91\\x0a\\xdb\\xf6\\xaa\\x40\\xfa\\x53\\x14\\x67\\x93\\xad\\x3b\\\n\\x57\\xf3\\xaf\\xd7\\x00\\xa2\\x48\\xad\\x5e\\x56\\x23\\x41\\xea\\xd4\\xe9\\x8e\\\n\\x30\\x82\\x4a\\x52\\xe5\\x34\\xad\\xde\\xa3\\x0c\\x5e\\x33\\x1b\\x96\\xad\\x18\\\n\\x10\\x6a\\x49\\xe8\\x75\\xc3\\x2d\\x35\\xa6\\x9f\\x3d\\x30\\x1a\\x46\\x15\\x4a\\\n\\xfc\\xee\\xd8\\x11\\xd8\\x69\\x8c\\x9f\\x88\\xa1\\x2b\\x34\\x6e\\xa1\\x8f\\xdb\\\n\\x01\\x95\\x81\\xff\\x00\\xe3\\x85\\x91\\x18\\x35\\xea\\x1b\\x42\\x34\\xa8\\x1f\\\n\\xc6\\xb8\\x29\\xbd\\xa7\\xf3\\xfa\\x69\\xfc\\x70\\x42\\xab\\x7d\\x69\\x4f\\xe4\\\n\\x07\\xa9\\xa6\\x1f\\x2f\\x5b\\xa5\\x66\\x15\\x74\\xe6\\xb6\\x84\\x1d\\x0f\\xda\\\n\\x14\\x3a\\xfd\\x30\\xbc\\x39\\x2a\\xb4\\x5b\\xae\\x27\\x89\\x51\\xbd\\x7e\\x78\\\n\\x8d\\x55\\x4d\\xbe\\x44\\x55\\xf8\\x17\\xa9\\xd3\\x77\\x3f\\x13\\xee\\x4e\\xb8\\\n\\xca\\xc0\\x8c\\x22\\x2a\\xc8\\x96\\x22\\x82\\xd4\\x3a\\xf3\\x5d\\xa3\\x4d\\x2d\\\n\\x78\\x93\\x33\\x1a\\x04\\xe0\\x0a\\x1e\\x0e\\x22\\x64\\x5b\\xa4\\x9c\\x02\\x58\\\n\\xf3\\x05\\x5d\\xd8\\xfc\\xc0\\xdb\\xe2\\xae\\xbd\\x17\\x0d\\x68\\x3e\\xa4\\x0d\\\n\\x6b\\xb7\\x6a\\x0a\\x0d\\x07\\xde\\xa9\\xc4\\x50\\xb5\\x5a\\x53\\x34\\x4b\\x23\\\n\\x29\\xa8\\x41\\x7f\\xf8\\x68\\x41\\xf8\\x9e\\x32\\xef\\x29\\x27\\x45\\xd3\\x4a\\\n\\xd0\\xab\\x4b\\xa4\\x79\\x7c\\xaf\\x87\\x19\\x38\\x60\\xf9\\x41\\x26\\x90\\xef\\\n\\x5b\\x88\\xe1\\x2d\\x7c\\xbf\\xc7\\x33\\x19\\xa7\\x2e\\x58\\x13\\xd8\\x4c\\x99\\\n\\x48\\xda\\x83\\xd7\\xde\\xe9\\x86\\x45\\xf8\\x26\\xd7\\xae\\xad\\xcf\\x2f\\xe2\\\n\\x77\\xf9\\x61\\x11\\x6a\\x10\\xb2\\x9a\\x0f\\x81\\x86\\xed\\x81\\x60\\x34\\x6b\\\n\\xb8\\x9e\\xa2\\x55\\xa1\\x5f\\xa6\\x9f\\xae\\x1d\\xdb\\x94\\x45\\xee\\xd7\\xf7\\\n\\x6f\\xad\\x7e\\x84\\xe2\\xbf\\xe5\\x4e\\xbc\\x42\\xc2\\x9c\\xbc\\xe6\\x32\\x0f\\\n\\xca\\x95\\xf9\\xe3\\x33\\x3a\\x12\\x16\\x6e\\x17\\x1b\\x85\\xb3\\x27\\xed\\x20\\\n\\x9c\\xfa\\xa0\\x06\\x29\\x3b\\xe8\\x70\\xc7\\x56\\xab\\x00\\x57\\xe0\\x74\\x7b\\\n\\x59\\xd5\\x01\\xd3\\xcd\\xcd\\x19\\xc0\\x24\\x8a\\x49\\x6d\\x08\\x26\\xa3\\xec\\\n\\x9a\\xf6\\xa6\\x98\\x62\\x54\\x16\\x55\\xbb\\xef\\x1b\\x68\\x69\\x4e\\xba\\x0a\\\n\\x7e\\x18\\x43\\x47\\xcb\\x55\\x84\\x81\\xb7\\x4e\\xc7\\x4d\\xe9\\x81\\x00\\x9c\\\n\\x0c\\xc4\\x7a\\x1d\\x58\\x1d\\xa9\\x70\\x1d\\x47\\x6f\\xae\\x23\\x32\\x03\\x1b\\\n\\x05\\x02\\xe6\\x07\\xa7\\x40\\xdd\\x47\\xd9\\xed\\xeb\\x5c\\x1a\\x5d\\x6a\\xfc\\\n\\x4b\\xbf\\xcf\\xbe\\x98\\x60\\xca\\x4e\\xa0\\xa8\\x3b\\x01\\x68\\xa7\\xfc\\xe0\\\n\\xbc\\x74\\x1a\\xd5\\xb4\\xd0\\x0e\\xa7\\x1c\\x4b\\xa8\\x29\\x50\\x30\\xb7\\x15\\\n\\x8a\\x24\\xba\\x59\\x19\\xe8\\xab\\x54\\xe5\\x5d\\xe9\\xa3\\x2d\\x7f\\x86\\x13\\\n\\xc3\\xeb\\x7c\\x32\\x0b\\x4e\\x76\\xb6\\xc4\\xad\\xd0\\x00\\x40\\x62\\xa0\\xe8\\\n\\x5b\\x4a\\x1f\\xc7\\x1e\\x3f\\x17\\x18\\x36\\x63\\xdb\\x27\\x4c\\xa3\\x29\\x25\\\n\\x3d\\x9d\\x8d\\xaa\\x13\\x4f\\x22\\x2f\\x30\\xfb\\xc3\\xeb\\x8f\\x76\\x08\\x4e\\\n\\x04\\x55\\x3f\\x78\\x28\\x07\\x01\\xc5\\x0b\\x75\\x6f\\xeb\\x71\\xfc\\x71\\x24\\\n\\x1c\\x55\\x62\\xca\\x56\\x84\\xf5\\xd3\\x41\\xff\\x00\\xf5\\xc7\\x04\\x51\\x88\\\n\\x1a\\xb6\\x0a\\xdd\\xa5\\x75\\x07\\xcb\\x4c\\x59\\x4d\\x58\\x1b\\x7b\\x1a\\x69\\\n\\x41\\xea\\x57\\x51\\x8a\\xb6\\x8d\\x4e\\xfc\\xc2\\x9f\\x2d\\x7e\\x78\\x46\\x20\\\n\\xbc\\x62\\xb4\\xb7\\x52\\x17\\x11\\x5c\\x8d\\x43\\x22\\x8e\\xbd\\xf4\\xc4\\x69\\\n\\x35\\x4c\\x82\\x25\\x31\\xa5\\xa3\\x94\\x8e\\xe7\\x7a\\x96\\x03\\x51\\xd3\\x19\\\n\\x91\\x24\\x9f\\xe2\\x1f\\x2d\\x37\\xb3\\xaf\\x99\\x52\\x4b\\x79\\x07\\xcc\\x80\\\n\\x47\\xa6\\x1a\\xa2\\x85\\xb4\\xe6\\x15\\x23\\xa1\\x1e\\x94\\xeb\\x87\\x12\\x59\\\n\\x5b\\x58\\x27\\xcf\\x1b\\x0f\\xeb\\xaf\\xd7\\x1f\\xed\\x8b\\x24\\xcb\\x66\\x01\\\n\\x0c\\x74\\xb8\\x57\\x7a\\x53\\xe9\\xde\\xb8\\x95\\xb2\\x5e\\xef\\x39\\x93\\x1e\\\n\\xf7\\x2b\\x21\\x5e\\x22\\xd7\\x62\\xbf\\x6a\\x19\\x40\\xa5\\xca\\x00\\x57\\x3c\\\n\\xdb\\xe1\\x38\\xe9\\x2c\\x27\\x89\\xc3\\x65\\x90\\x05\\x29\\x56\\xb4\\x86\\x07\\\n\\x5e\\x42\\x76\\x3f\\x3c\\x4e\\x73\\x2c\\xa3\\x2c\\x45\\xca\\xc1\\xb7\\x14\\xeb\\\n\\xfc\\x06\\x33\\x12\\xc8\\x8f\\x32\\x68\\xc0\\x35\\x57\\x4d\\x95\\x2d\\x06\\xe2\\\n\\x1b\\xe9\\xa6\\x3d\\x9a\\x08\\xa3\\x8d\\x2a\\x51\\x62\\x82\\x3e\\x72\\x87\\xe1\\\n\\xd0\\x7c\\x23\\x5a\\xe9\\x4e\\xb8\\x47\\x25\\xb3\\xbe\\x2c\\xeb\\xcb\\x97\\x56\\\n\\x3c\\x2c\\xb7\\xef\\x9f\\x2b\\x50\\x9d\\x6a\\x68\\x0f\\xae\\xb8\\xf6\\xac\\xdb\\\n\\xf1\\xb3\\x32\\x12\\xce\\xa7\\xf6\\x71\\x13\\xb5\\x9a\\xd4\\x0a\\xfe\\x3d\\x30\\\n\\x4c\\xf0\\xab\\x1e\\x87\\x63\\xe8\\x43\\x0d\\x74\\xe9\\xad\\x31\\x24\\x17\\x55\\\n\\x44\\x84\\x47\\x78\\xfa\\x91\\x5f\\x43\\xfc\\x31\\x70\\x65\\x15\\xfb\\xdf\\xa0\\\n\\xc7\\x33\\x16\\xf9\\x7f\\xce\\x14\\x15\\x16\\x81\\x4d\\xf9\\x80\\xfc\\x7e\\xb8\\\n\\x22\\x54\\x8d\\xf5\\xf8\\xc2\\xd4\\x7c\\x98\\x51\\xbe\\x5a\\xe2\\x51\\xc5\\x29\\\n\\x70\\xac\\x60\\x8e\\x5a\\x93\\x50\\x2e\\xec\\x06\\x38\\xc7\\x35\\x93\\x60\\xaf\\\n\\x5f\\x7b\\xe5\\x5e\\x6a\\xeb\\x43\\x86\\xbb\\x35\\x0f\\xbb\\x36\\x8f\\x67\\x57\\\n\\xb0\\xfd\\xee\\x72\\x34\\xc1\\x5b\\xcb\\x1b\\xb7\\x20\\x0d\\xce\\xde\\x94\\xfa\\\n\\x0c\\x2c\\xd0\\xe4\\xce\\x6a\\x49\\x01\\x7e\\xb6\\x2a\\x11\\xa1\\x25\\x7c\\xce\\\n\\x74\\xd0\\x7e\\x3a\\xe1\\xa3\\x39\\x29\\xf2\\xf9\\x72\\x69\\xc3\\x8b\\x2e\\xea\\\n\\x0f\\xcd\\xad\\xb8\\xfe\\x34\\xc4\\x79\\xac\\xfd\\xd0\\xc8\\x1d\\x96\\xc6\\x05\\\n\\x5a\\x95\\xad\\x4a\\x9a\\x1a\\x0a\\xfe\\x78\\xe2\\x64\\x99\\x19\\x86\\x85\\x74\\\n\\xb8\\xe1\\x84\\xf0\\x0e\\x32\\xd7\\x87\\x75\\x7e\\x4c\\xdf\\x30\\x36\\xee\\x74\\\n\\xc4\\x59\\xfc\\xb6\\x70\\xc0\\x91\\x48\\x4e\\x67\\x88\\x13\\x8d\\x31\\xdd\\x87\\\n\\x38\\xe4\\x50\\x75\\x11\\x44\\x35\\x3f\\xb5\\x24\\xe3\\x2c\\x47\\x2c\\x9c\\x25\\\n\\x98\\x29\\x35\\x65\\x89\\x8d\\x21\\x79\\x3d\\x5d\\x6c\\x96\\x9f\\x7d\\x75\\xa0\\\n\\xa6\\x2a\\x74\\x07\\xe1\\xea\\xfd\\xab\\xf5\\xa0\\x1e\\xbc\\x43\\xf0\\x53\\x0d\\\n\\x60\\xbd\\xa2\\xb9\\xb6\\xe4\\xe3\\x52\\x9c\\xbd\\xed\\xad\\x0b\\x7a\\x0e\\xd8\\\n\\x9a\\x30\\xdc\\xd3\\x2c\\x4a\\x68\\x79\\xad\\xe2\\x65\\x82\\x77\\x34\\x91\\x94\\\n\\x12\\x3a\\x29\\x23\\xad\\x71\\x3e\\x65\\x75\\xe7\\xcd\\x81\\xd6\\xbc\\x3f\\x6a\\\n\\x11\\xfe\\x23\\x86\\xbf\\x44\\xed\\xab\\xe5\\xe5\\x6e\\x61\\xcf\\x46\\xae\\xa0\\\n\\xf2\\x5d\\xeb\\x73\\xeb\\xf5\\xc2\\x29\\xf2\\xa8\\xbb\\xe6\\x49\\xae\\x21\\xf5\\\n\\x60\\xc7\\xd4\\x57\\x0f\\x95\\x8b\\xf6\\xaf\\x94\\x95\\xf4\\xe9\\x47\\xd0\\x9e\\\n\\xfb\\x03\\xd3\\x00\\xb9\\x2c\\x40\\x9d\\x3b\\xd5\\x6e\\x13\\x46\\x4e\\xfb\\xf1\\\n\\x2d\\x6e\\xd4\\xae\\x22\\x74\\x7f\\x3a\\x24\\x85\\x3a\\x94\\x7b\\x4b\\xc7\\xfe\\\n\\x9b\\x86\\x9f\\x7a\\x9d\\x71\\x2c\\x15\\x2b\\x6b\\xa0\\x8d\\x98\\x80\\x63\\x71\\\n\\x46\\x1e\\xb4\\xb4\\xe8\\x47\\x51\\x69\\x1d\\x71\\x1e\\x62\\xeb\\x6e\\x51\\x5e\\\n\\xc1\\x81\\xf4\\xdb\\x02\\xa4\\x56\\xb4\\xa3\\x8e\\x9f\\x12\\x56\\xba\\x75\\x20\\\n\\x1d\\xeb\\x8e\\x2d\\x2d\\x42\\x16\\x8d\\x18\\xe5\\x17\\x6e\\x08\\xe9\\x6f\\x5d\\\n\\x71\\x95\\xcd\\x66\\x38\\x2b\\xe1\\xd2\\xa8\\x86\\x6b\\xcb\\x5d\\x96\\xd4\\xd7\\\n\\x30\\x87\\x98\\x1f\\xb4\\x54\\x9d\\x14\\x7a\\xd7\\x0a\\xf0\\x66\\x57\\x37\\x97\\\n\\x6f\\x29\\xa8\\x75\\x35\\xe9\\xb9\\xd7\\xe5\\xb6\\x00\\x1c\\x83\\xb2\\xff\\x00\\\n\\x33\\xfc\\x4e\\x09\\x1b\\xff\\x00\\x2c\\x58\\xd4\\x04\\x57\\x97\\x1c\\x4c\\xd4\\\n\\x94\\x76\\x57\\xe1\\x40\\xb4\\x79\\x67\\x60\\xa5\\xed\\x54\\xdd\\x41\\xd8\\xca\\\n\\xe0\\x46\\x37\\xe7\\xc6\\x67\\x33\\x9d\\x8a\\xde\\x33\\x72\\xc1\\x1b\\x9e\\x0c\\\n\\x68\\xbc\\x88\\x8a\\xa4\\xd3\\x4f\\x88\\xd0\\x12\\xc4\\xb5\\x00\\x23\\x11\\xd7\\\n\\x47\\x20\\xbd\\x29\\xb6\\xbb\\x69\\xeb\\xf4\\xf4\\xc0\\x9d\\x0f\\xbd\\x03\\x52\\\n\\x34\\x23\\xbe\\x2a\\x93\\x9d\\x34\\xe9\\xf9\\xfa\\x7f\\x1c\\x3c\\x57\\x1b\\x85\\\n\\x79\\xd5\\xb9\\xa9\\xf2\\xc5\\x42\\x1a\\x8a\\x58\\xd2\\x10\\x6a\\xc7\\xd3\\xbd\\\n\\x31\\x6c\\xa6\\x84\\xf4\\x5d\\x4e\\xe7\\x0f\\x55\\x1c\\x42\\x6a\\x0b\\xae\\xc4\\\n\\x1d\\x7e\\x7a\\x77\\xae\\x35\\xd0\\x27\\xae\\x83\\xa6\\xbf\\x4e\\xb8\\x79\\xf7\\\n\\x56\\xe5\\xb8\\x6c\\x2b\\xb7\\xa6\\xb8\\xb4\\x0d\\xb0\\x34\\x1b\\xd7\\x51\\xae\\\n\\x98\\xe2\\xc8\\xf7\\x30\\x1c\\xa3\\x40\\xde\\x80\\x61\\x1e\\xfa\\x12\\xca\\xc8\\\n\\x47\\xff\\x00\\x69\\xf9\\x77\\xc7\\x1e\\x83\\x85\\x9b\\x8d\\x33\\x49\\x67\\x93\\\n\\xde\\x0e\\x70\\x08\\xfb\\x32\\x0d\\x7e\\x78\\x0c\\x68\\x28\\xdb\\x0d\\x29\\x4f\\\n\\xe6\\x3b\\xe1\\xbc\\x47\\x2e\\xd1\\xe5\\xb2\\x23\\x31\\x1e\\x52\\x3c\\xce\\x60\\\n\\x35\\xb2\\xcf\\x27\\x45\\xa6\\xe1\\x3e\\x33\\xb0\\x38\\x39\\x44\\x92\\x0c\\xed\\\n\\x23\\x57\\x79\\x61\\x49\\x42\\x2b\\x92\\xc0\\xc7\\xcc\\x2b\\x55\\xb4\\x1f\\xf5\\\n\\x0c\\x34\\xf2\\xcf\\x69\\x24\\x9f\\xad\\x6b\\x4c\\x65\\xfc\\x5b\\x20\\xc5\\xb8\\\n\\x2d\\x6c\\xc8\\x4d\\x23\\x9a\\x03\\xe7\\x85\\xeb\\xa1\\x56\\x5e\\xbf\\x09\\xa1\\\n\\x5e\\xb8\\xca\\x7f\\x6a\\x7c\\x0d\\x89\\x49\\x95\\x13\\xc4\\xb2\\xc3\\xf6\\x99\\\n\\x69\\x85\\x95\\x67\\xa7\\xf9\\x91\\x11\\x64\\x9a\\x6a\\xa6\\xed\\x86\\x12\\x35\\\n\\x66\\x77\\xc9\\x58\\xb2\\x2f\\x46\\xa5\\x05\\xc4\\x0f\\x35\\xba\\x81\\xd3\\x19\\\n\\xc9\\xa9\\x49\\x65\\xe4\\x41\\x4d\\xac\\x5e\\x50\\x47\\xcf\\xf3\\xc7\\xb0\\xe4\\\n\\xa3\\x3e\\xd9\\x2c\\x9c\\x07\\x72\\x2b\\x2b\\x3d\\x69\\x68\\xea\\xa0\\x6b\\xa6\\\n\\x2e\\xd6\\x5c\\xcc\\xb4\\x39\\x89\\x58\\xdc\\x59\\xbb\\x0a\\xec\\x01\\xdb\\xd3\\\n\\x1f\\x7e\\x41\\x8e\\x18\\x6d\\x48\\x24\\x93\\xf7\\xb0\\x92\\xcf\\xee\\xe2\\x8c\\\n\\x37\\x3d\\x74\\x20\\x91\\x4a\\x8e\\xac\\x6d\\xe9\\x8a\\x12\\xbb\\xe8\\x07\\x98\\\n\\xf6\\xa0\\xc7\\x10\\x02\\x89\\xd9\\xce\\x84\\xfc\\xb1\\x68\\xba\\x63\\xe5\\x02\\\n\\x3a\\x9f\\xa0\\x03\\xfa\\xef\\x89\\xb3\\x99\\xf3\\xc0\\x44\\x4a\\x88\\x87\\xed\\\n\\x1c\\xe9\\x60\\x63\\xb0\\xa9\\xe9\\xbe\\x24\\x6a\\x01\\xca\\xde\\x6a\\x15\\x15\\\n\\x1a\\x83\\xe8\\x3f\\x5c\\x4a\\x25\\xb9\\x20\\x46\\x75\\x0c\\x39\\x2f\\x60\\xcc\\\n\\xa2\\x80\\x6e\\x2d\\xd3\\x4d\\x35\\xc5\\x62\\x1c\\x3a\\x6d\\xa0\\x27\\xf1\\xb4\\\n\\xe1\\x9a\\xb5\\x3d\\xcf\\xeb\\xfc\\xbb\\x60\\x1a\\x99\\x12\\x15\\x02\\xdf\\xba\\\n\\x3a\\xec\\x6b\\xf2\\x38\\x0b\\x24\\x3c\\xa7\\xaf\\x06\\xcf\\x9f\\x4c\\x15\\xe6\\\n\\x89\\xce\\x94\\x1f\\x3e\\xa3\\x6a\\x10\\x0e\\x11\\x2f\\xb5\\xa9\\xba\\xc8\\x53\\\n\\xa1\\x06\\xb4\\x38\\xbd\\x3c\\x46\\x70\\xc0\\x74\\x6b\\xa8\\x7d\\x4e\\xbf\\x2c\\\n\\x2b\\xa6\\x6a\\x58\\xa4\\xb9\\x1a\\xe0\\x45\\x1e\\xd2\\x0d\\x4a\\x75\\x73\\x4f\\\n\\xe8\\xe1\\x21\\xcd\\x03\\x26\\x66\\xd1\\x23\\xad\\x6e\\x95\\xdd\\x55\\x44\\x0a\\\n\\xf5\\xd2\\x2a\\x71\\x03\\x36\\x9c\\xa2\\x95\\xd7\\x1c\\x49\\x7a\\xad\\x46\\xe1\\\n\\x52\\xbf\\x0c\\x6b\\x41\\xa8\\x5d\\x38\\x8f\\x43\\x5f\\x2e\\x1e\\x51\\x1a\\x86\\\n\\x2b\\x4d\\xab\\xbe\\xdf\\xae\\xdd\\x5c\\xe2\\x66\\x93\\xcf\\x24\\x9a\\xb1\\x1a\\\n\\x1f\\x66\\x6b\\x10\\x0d\\x76\\x56\\x76\\x3f\\xfb\\x83\\x09\\x1a\\xc6\\x0d\\x38\\\n\\xa2\\xdd\\xc3\\x32\\x90\\x0f\\xff\\x00\\xb7\\xa2\\x37\\xac\\x78\\x59\\xe1\\x43\\\n\\xa3\\x46\\xae\\x45\\x75\\xd1\\x2e\\x1f\\xea\\xaf\\xe0\\x71\\x11\\xd9\\xd6\\xe4\\\n\\x22\\xba\\x92\\x58\\x20\\xaf\\xd0\\x2d\\x46\\x21\\x17\\x02\\x63\\xb4\\x13\\xdc\\\n\\x89\\x15\\x41\\xf9\\x5c\\x5b\\xf0\\xc4\\xd3\\x4a\\x1a\\xd3\\x7a\\x83\\xd0\\x40\\\n\\x43\\x8a\\x93\\xf7\\xcc\\x77\\xaf\\xa2\\xe1\\x68\\xf5\\x55\\x45\\x2a\\x7f\\x75\\\n\\xac\\x63\\x4e\\xc5\\x28\\x31\\x6c\\x2c\\x40\\x24\\xaa\\x1a\\x6d\\x22\\xe5\\xbf\\\n\\x67\\xfe\\xaa\\x5c\\x9d\\x8f\\xcb\\x08\\xf2\\x51\\x8b\\xc3\\xe5\\x1a\\x1b\\x95\\\n\\x82\\x3a\\x83\\x42\\x6a\\xac\\x95\\x3e\\xbf\\x3c\\x1c\\xbd\\x74\\x64\\x16\\x8f\\\n\\xbd\\x4d\\xff\\x00\\x98\\xc4\\xde\\x76\\x09\\x20\\x47\\x07\\xaa\\x68\\x50\\xff\\\n\\x00\\xa7\\xe1\\x3d\\x57\\x4c\\x2b\\xd3\\x92\\x45\\x04\\xe9\\xa0\\x63\\x68\\x22\\\n\\x95\\xd8\\x80\\x6b\\xa6\\x26\\x6f\\x65\\x7c\\xc4\\x79\\x7a\\xc8\\xc9\\x97\\x63\\\n\\xc4\\xb2\\x95\\x33\\x2d\\x3f\\xe9\\xd7\\xca\\x77\\x18\\xbf\\xc3\\x3c\\x43\\x35\\\n\\x04\\x5c\\xcd\\x97\\x42\\x4d\\xa1\\x5c\\x73\\x5c\\x9f\\xb3\\xb8\\x79\\x76\\x3d\\\n\\x3e\\x78\\x79\\xe6\\xcf\\xcb\\x98\\x6a\\xf3\\x2b\\xd8\\x51\\xad\\x37\\x52\\x87\\\n\\x6e\\xbb\\x6b\\x81\\x9f\\x9f\\x87\\x15\\x79\\xdc\\xb1\\xb5\\x07\\x28\\xbd\\xae\\\n\\x6d\\x02\\xdd\\x5a\\x57\\xb6\\x1f\\x2d\\xe1\\x19\\x98\\xa5\\xcf\\x48\\xfc\\xd9\\\n\\xa8\\xc8\\x78\\xf2\\xb1\\xa8\\xad\\x47\\xc0\\xf2\\xbd\\x2d\\x41\\xa8\\x1c\\xc5\\\n\\xbe\\x1c\\x36\\x63\\x31\\x99\\x96\\x7c\\xcc\\xcf\\x56\\x9a\\x57\\x2c\\xcd\\x5e\\\n\\x5e\\xfa\\x68\\x79\\x56\\x96\\x8c\\x46\\x00\\xd6\\xab\\xf8\\xd7\\x11\\xc8\\x80\\\n\\x12\\x2e\\x0f\\x4e\\x83\\x7d\\x2b\\xf9\\xd3\\x0d\\x50\\xc1\\x5b\\x43\\xd3\\xeb\\\n\\x82\\xbc\\x46\\x75\\xa5\\xf5\\x04\\x6b\\x5f\\x87\\x12\\x66\\x51\\xad\\x3e\\x5b\\\n\\x7e\\x5d\\x69\\xa6\\xb8\\x63\\x98\\x96\\xa1\\x9f\\x96\\xb4\\xb8\\x7c\\xf0\\x64\\\n\\x8e\\x41\\xf0\\xe9\\x5a\\xb6\\xfb\\xe9\\xf2\\xc7\\x0e\\xb6\\xcb\\x5a\\xa9\\x3b\\\n\\x35\\x3a\\x1d\\x46\\x1a\\x39\\xc5\\x8f\\xbe\\xd4\\xf9\\x53\\xeb\\x8e\\x11\\x6d\\\n\\xd8\\x36\\xbf\\x66\\x95\\xf9\\xf9\\xbf\\x5c\\x10\\xf5\\xd0\\x85\\xd7\\xa8\\xc3\\\n\\x22\\x8d\\x4d\\x35\\xf4\\xdc\\x7e\\x5b\\x60\\x2d\\x0d\\xd7\\x52\\xb5\\xa8\\x6e\\\n\\x96\\x81\\xe8\\x2a\\x7e\\x7a\\x60\\x23\\x02\\x2c\\x35\\xa9\\xd7\\xf4\\x1b\\x7d\\\n\\xa1\\x8f\\x61\\x8b\\x9b\\xc4\\xf2\\x27\\xda\\x72\\xfd\\x59\\xe0\\xa5\\x26\\x83\\\n\\xd7\\x94\\x06\\xed\\x51\\xa6\\xd8\\xc8\\xf8\\x6e\\x48\\x71\\x24\\xce\\x49\\x14\\\n\\x6d\\xa1\\x62\\x07\\xf9\\xb2\\x1f\\xb9\\x18\\xad\\xdf\\xb9\\x4d\\xf1\\xe1\\xff\\\n\\x00\\xd9\\xbf\\x0c\\x00\\x67\\x5e\\x05\\x87\\x2c\\x83\\xf6\\x9c\\x96\\x9c\\xce\\\n\\x79\\xc1\\xd4\\x71\\x5c\\x12\\xa4\\xd3\\x53\\x8c\\xa7\\x89\\x78\\xa6\\x6a\\x3c\\\n\\xae\\x7c\\x0f\\x65\\xcc\\xa5\\x53\\x9d\\xf2\\xea\\xa3\\x8a\\x6b\\xd5\\xd5\\x85\\\n\\x7d\\x6b\\x86\\x8d\\xa1\\x8d\\x83\\x0b\\x48\\x29\\x5a\\x0e\\xda\\xed\\xf4\\xa6\\\n\\x02\\x71\\x67\\xc9\\x05\\xd7\\xfc\\x39\\x5b\\x0d\\x40\\xd2\\xc6\\xe9\\xfd\\x57\\\n\\x0e\\x87\\x35\\x2f\\x88\\x78\\x7f\\x88\\x37\\x0b\\x37\\x0b\\x01\\x62\\x23\\x72\\\n\\x07\\x54\\x15\\x01\\xe8\\xdc\\xdf\\x6f\\xd3\\x70\\xc9\\x09\\xbb\\x2b\\x32\\x7b\\\n\\x8c\\xc5\\x41\\x56\\x8e\\x4d\\x95\\x8e\\xdc\\x58\\xeb\\x6b\\x29\\xd4\\x6f\\xd7\\\n\\x13\\xc5\\x4b\\xde\\x35\\xae\\xbf\\x11\\x5e\\x62\\xc3\\xbe\\x33\\xfe\\x2c\\x7c\\\n\\x8c\\x09\\xcb\\xa6\\x94\\xbe\\x5a\\xf1\\x1b\\x51\\x50\\x45\\x29\\x51\\x8a\\x31\\\n\\xf9\\xfd\\x4f\\x4c\\x16\\xd1\\x45\\x2d\\x03\\x72\\x14\\x75\\x1e\\xa7\\x0d\\x21\\\n\\x25\\xf8\\x68\\x5d\\x80\\xde\\x8a\\xb7\\x1e\\xb4\\xae\\x9b\\x60\\x66\\xa2\\x6f\\\n\\x66\\xf0\\xf8\\x4d\\xb1\\x2b\\x31\\x58\\x6d\\xdf\\xcb\\xf1\\xca\\xcb\\xe6\\x36\\\n\\xa8\\xa8\\xd3\\xae\\x38\\xc4\\xf1\\x1e\\xe2\\x2a\\x68\\x6d\\xed\\xd4\\xd3\\x5c\\\n\\x19\\x65\\x04\\x65\\x57\\x45\\xd4\\x8e\\x2c\\x83\\xe5\\xa8\\x54\\xd8\\xf7\\x3d\\\n\\x70\\x53\\x2f\\x0a\\x47\\xfb\\xaa\\x01\\x3a\\x6b\\x56\\xdf\\x53\\x5d\\xf0\\xb9\\\n\\x00\\x2b\\x23\\x94\\x9a\\x4d\\x74\\x55\\x53\\xca\\x94\\xee\\xfb\\xd3\\xa5\\x3d\\\n\\x70\\xb1\\xbd\\xb6\\x36\\xe1\\xfe\\xcf\\x51\\xae\\xed\\xeb\\xf9\\x62\\x8b\\x02\\\n\\xdc\\x39\\x56\\x9a\\x53\\xd1\\x69\\xb7\\xe5\\x8b\\xa3\\xf2\\x8d\\xc1\\x34\\x6f\\\n\\xa1\\x07\\xf5\\xc0\\xe5\\xb4\\x82\\x6b\\xa7\\xf1\\xdb\\xf2\\xc0\\xa8\\xa8\\x06\\\n\\xea\\x15\\xa8\\x34\\xef\\xa5\\x34\\xfc\\x3d\\x30\\xca\\x20\\x85\\xe4\\x20\\x80\\\n\\xbc\\x14\\x6a\\xf4\\xd2\\xbf\\xcc\\x62\\xd3\\x1c\\x4a\\xf3\\xbf\\x22\\xaa\\x05\\\n\\x0b\\xd3\\x99\\x87\\xd7\\x6a\\x7f\\x13\\xc8\\xc2\\x44\\x03\\x74\\x27\\x4f\\x4f\\\n\\x5c\\x05\\xa9\\x1b\\x77\\x1f\\xd7\\xd7\\x1e\\xdb\\x24\\x75\\x10\\x8a\\x43\\xc4\\\n\\x3e\\x6c\\xcb\\x56\\xc2\\x01\\xa0\\xa4\\x5a\\xcb\\x53\\xc9\\xca\\x15\\x88\\x15\\\n\\x38\\xcb\\xa4\\x77\\x49\\x36\\x6a\\x41\\x2c\\xce\\x2f\\xe4\\xcb\\x42\\x45\\xa9\\\n\\x78\\xd4\\xbe\\x67\\x34\\xd1\\x71\\x8a\\x72\\x88\\x94\\xa4\\x57\\x54\\x32\\xa8\\\n\\xb8\\xf0\\xe2\\x55\\x55\\x14\\x08\\xbc\\x4a\\x0b\\xda\\x43\\xf1\\x48\\x5a\\xb6\\\n\\xc6\\x2b\\xc3\\xef\\x4c\\x1e\\x39\\xa9\\x6b\\xdf\\xb0\\x14\\x1c\\xbf\\xa6\\xdd\\\n\\x35\\xf4\\xa1\\x90\\xd6\\x55\\xe2\\x42\\xb1\\xa8\\xf2\\xb0\\xe2\\x10\\x55\\xbd\\\n\\x38\\x92\\x5e\\xe7\\x76\\xe1\\x9c\\x1c\\xc3\\x9a\\xd4\\xc9\\xbf\\xfe\\xa1\\xe2\\\n\\xbd\\xba\\x0d\\x19\\xde\\x43\\xf8\\x62\\x42\\x57\\xdd\\xbd\\x24\\x51\\xd6\\xd8\\\n\\xe3\\x53\\xd3\\xa9\\xdf\\x19\\x69\\xc1\\xb7\\x2d\\x98\\xb5\\x5f\\xb2\\x48\\x94\\\n\\x2e\\xdf\\xeb\\x4a\\x9f\\x9d\\x31\\x99\\x96\\x9e\\xe6\\x38\\xc5\\xf5\\xda\\xf3\\\n\\x31\\x11\\x2f\\xcc\\x27\\xbc\\x6c\\x38\\xa0\\x6e\\x30\\xb4\\x1e\\xd4\\x4e\\xbe\\\n\\x87\\xf2\\xe6\\xef\\x85\\x4d\\x15\\xa6\\xa4\\x51\\xa5\\xda\\x46\\xf1\\x82\\xa3\\\n\\x4a\\xd0\\xf3\\x38\\x7d\\xb7\\xde\\xa3\\x4c\\x0e\\x0d\\x6b\\x58\\xe5\\x20\\x74\\\n\\xb6\\xfe\\x6a\\x69\\x50\\xa5\\x9a\\xbd\\x68\\x75\\x38\\xba\\xd1\\x1c\\xfa\\x33\\\n\\xaf\\xdf\\x72\\x09\\x65\\xfa\\xb5\\xc7\\xd3\\xd7\\x5c\\x44\\xe0\\x55\\x42\\x6b\\\n\\x4d\\xc3\\xa9\\xdf\\xd4\\x32\\xe1\\xa4\\x15\\xe4\\x60\\xac\\x2d\\xa1\\xe1\\x9b\\\n\\x48\\x53\\xa6\\xb4\\x27\\x43\\xeb\\x85\\x5f\\x82\\xa4\\x86\\x3e\\x41\\xaf\\x90\\\n\\x9f\\xe3\\xb6\\x24\\xb5\\x63\\x64\\x21\\xe2\\xa1\\x0a\\xd7\\x0b\\x74\\xbf\\x70\\\n\\x34\\x27\\x5d\\x41\\xc6\\x76\\xb9\\x74\\x8f\\x26\\xd9\\x87\\x65\\x48\\xbf\\xcb\\\n\\xe9\\x7a\\x1d\\xc1\\xad\\x43\\xae\\xc6\\x95\\x00\\x75\\x74\\x14\\x03\\x98\\xd6\\\n\\xa0\\x5f\\xf5\\xf9\\x62\\x1f\\x0f\\xbb\\x81\\x95\\x82\\x35\\x8c\\x43\\x03\\xb2\\\n\\xf1\\x8d\\x28\\xd2\\x4e\\x45\\x38\\x87\\xb2\\x9a\\xaa\\xf4\\x15\\xd7\\x0c\\xf2\\\n\\x28\\x15\\x26\\xda\\x9a\\x02\\x7a\\xfd\\x69\\xfa\\x0f\\xac\\x4d\\x3f\\x0f\\x9d\\\n\\x2e\\x14\\x01\\x88\\xfa\\xe1\\x8f\\x2a\\x49\\xb5\\x41\\xd4\\xfe\\x1f\\xd0\\xc4\\\n\\x4a\\xb5\\x78\\x50\\x77\\xde\\xba\\x0a\\xe0\\x05\\x5b\\x43\\x11\\x71\\x3b\\x53\\\n\\x15\\x51\\x73\\x01\\xcd\\xb5\\x4e\\x9b\\x6d\\x80\\x85\\x5e\\x38\\xef\\x02\\x95\\\n\\xd7\\xe7\\xdb\\x1c\\x55\\x92\\x49\\x15\\x96\\xab\\xcd\\xd7\\xd7\\xf3\\xc1\\xb0\\\n\\x17\\x5f\\x4d\\xfe\\x58\\x05\\x96\\xc2\\x3a\\xd2\\xdf\\xe1\\xf9\\xfe\\xb8\\x50\\\n\\xc1\\x58\\xd2\\xdd\\x46\\xbe\\xba\\xe1\\x78\\x2a\\xc5\\x85\\x6f\\xa9\\xff\\x00\\\n\\xb6\\x9f\\xad\\x30\\x38\\xaa\\x6e\\xa7\\x2b\\x1e\\xbf\\x96\\x16\\x58\\xc8\\xe5\\\n\\x34\\x7e\\x94\\x0a\\xba\\x0d\\x7d\\x31\\x19\\xa1\\x79\\x15\\xab\\x4a\\x75\\xc7\\\n\\x0d\\x72\\xe5\\x9e\\x5e\\x82\\x9a\\x13\\xdf\\xf5\\xae\\x21\\xcc\\xd6\\xb9\\xaa\\\n\\x83\\x2d\\x3c\\x88\\x0e\\xea\\x06\\xdf\\x33\\xad\\x71\\x9e\\xfe\\xdb\\x66\\xe1\\\n\\x3c\\x4c\\xdc\\x5f\\xe0\\x72\\xb6\\x82\\xf1\\xab\\x8b\\x8c\\x70\\x8e\\xb2\\x66\\\n\\x67\\xf7\\x71\\xd3\\x65\\x6e\\x80\\x33\\x63\\xc4\\x33\\xf9\\xf6\\x74\\x2c\\xed\\\n\\x0c\\x30\\x55\\xad\\x82\\x04\\x2c\\x23\\x85\\x06\\xc0\\x29\\xdc\\x8d\\x59\\xb5\\\n\\xf4\\xc7\\x0e\\x09\\x0a\\xa5\\x6e\\xa0\\x2d\\xe6\\xa0\\x07\\xf4\\xc7\\x89\\xc5\\\n\\xc3\\x8c\\xca\\xf2\\x64\\x5c\\x3b\\x20\\x32\\x2a\\xa4\\xae\\x1a\\xc6\\x26\\xab\\\n\\x71\\x65\\xa8\\xae\\xb5\\xf4\\x38\\xb5\\x2a\\xd5\\x1b\\x0a\\x93\\x5f\\xa7\\x6c\\\n\\x7b\\xa5\\xd7\\x7e\\x66\\xda\\x98\\xf6\\x1f\\x16\\x88\\xa8\\x67\\x14\\x72\\x2e\\\n\\x54\\x97\\x68\\xf3\\x31\\x9f\\xb6\\x0e\\x92\\xc7\\xb4\\x83\\xf7\\x46\\x15\\x25\\\n\\x1a\\x10\\x63\\x77\\x5a\\xf3\\x45\\x4e\\x57\\x43\\x6d\\x6c\\x61\\xa8\\x3e\\x94\\\n\\x3d\\x71\\x22\\x44\\xc5\\x91\\x24\\x11\\xa9\\xea\\x54\\x6b\\xaf\\x7d\\xf0\\x5a\\\n\\x4f\\x31\\xd5\\x46\\xbc\\xa3\\xf8\\x9f\\x9e\\x35\\x21\\x7e\\x2a\\x9e\\xc3\\x51\\\n\\xd0\\xff\\x00\\x47\\x0f\\xa5\\x44\\x9c\\xb5\\xef\\x78\\xd5\\x74\\xf8\\x39\\xb7\\\n\\x03\\xcd\\xe9\\x8b\\x17\\x92\\x31\\x40\\x14\\x51\\x76\\xf4\\x07\\xf8\\xe2\\x38\\\n\\xf2\\xf1\\xc9\\x3f\\xb4\\x3a\\xa1\\x81\\x45\\x59\\xcb\\x1a\\x7b\\xb5\\xa6\\xaf\\\n\\xa1\\xf4\\xda\\xba\\x63\\x81\\x9d\\xcb\\x36\\x5f\\x99\\xd9\\x2e\\x64\\x7e\\x46\\\n\\xd4\\xdc\\x54\\xef\\x5f\\xf6\\xc3\\xe5\\xf2\\xa2\\x40\\x63\\xd2\\x49\\x65\\x8d\\\n\\x96\\x35\\xe9\\x6a\\xd6\\x9c\\x57\\xeb\\x6d\\x2c\\xa6\\xb5\\x38\\x6f\\x6b\\x8b\\\n\\xda\\xa6\\x97\\x9a\\x4c\\xc4\\xdf\\xb5\\x3d\\xbc\\xb4\\xb6\\x9b\\x28\\xda\\x9b\\\n\\xe1\\xf3\\x5e\\x11\\x1c\\xb3\\x88\\x41\\x71\\x08\\xe7\\x98\\x3f\\x50\\x95\\xa5\\\n\\x50\\x8e\\x5a\\x0a\\x9d\\x2b\\x83\\x7c\\x6f\\x13\\xa7\\x2c\\x81\\xb9\\x59\\x24\\\n\\x1a\\x15\\x20\\xea\\xa7\\x7f\\x35\\x30\\x59\\x45\\x40\\xf3\\x30\\x06\\x83\\xf7\\\n\\xbb\\x7e\\x98\\x27\\x7a\\x69\\xdf\\xb1\\xc6\\x6f\\x34\\x88\\x58\\x24\\x32\\x30\\\n\\x0b\\xbd\\x78\\x74\\x02\\x83\\x5e\\xb8\\x95\\x00\\x30\\xa8\\xd1\\xa5\\x75\\x3c\\\n\\xbd\\x7e\\x98\\x49\\x15\\xc4\\xda\\xdd\\x5a\\xea\\xa0\\x5b\\x5a\\xf7\\xa9\\xf2\\\n\\xd2\\xbf\\x86\\x2d\\x20\\xeb\\xba\\xd3\\x53\\xd0\\x6f\\xa8\\xfe\\x78\\x8e\\x69\\\n\\xf9\\xdc\\x9f\\x77\\x10\\xd5\\x9d\\xf7\\x0a\\x7a\\x0a\\x75\\x6e\\xd8\\x56\\xe2\\\n\\xe5\\xf2\\xb0\\x79\\xd2\\x04\\x35\\x62\\xbb\\x22\\xec\\x37\\xd4\\xb5\\x75\\xdf\\\n\\x09\\x9a\\x84\\x70\\xe2\\x8d\\x63\\x59\\x24\\x5d\\x2d\\x4c\\xb2\\x69\\x0a\\x37\\\n\\xc3\\xcc\\x4b\\x16\\x1e\\x83\\x10\\xb5\\x05\\x42\\xa5\\x8a\\x4d\\x4d\\xfe\\x5b\\\n\\x8e\\xa4\\x0d\\x05\\x6d\\xa9\\x29\\xe5\\x7e\\x61\\x85\\x40\\x7c\\xe0\\xd5\\xbe\\\n\\xcd\\x4e\\xb6\\xfe\\x7e\\x9d\\x30\\x65\\x86\\xa5\\xe1\\xab\\x8a\\xf5\\xb3\\x63\\\n\\xea\\x01\\xe6\\xf5\\x6f\\x4c\\x41\\x0c\\x8e\\xf7\\x4b\\x08\\xed\\xa7\\xbb\\xd4\\\n\\x9f\\x52\\x5b\\x97\\xa5\\x3e\\x58\\x48\\xfe\\x13\\x50\\xbe\\x88\\x62\\xb0\\x7d\\\n\\x4a\\x2d\\xc7\\xf7\\xb0\\x8d\\xf1\\xac\\xa9\\xaf\\xa1\\x2a\\xa7\\xf2\\xae\\x16\\\n\\x70\\x01\\x39\\x99\\x26\\x95\\xab\\xd5\\x81\\xb5\\x2e\\xe9\\xa7\\x94\\x7a\\x0c\\\n\\x56\\x2b\\x6a\\x12\\xd1\\x76\\xb4\\x36\\x70\\xd5\\xce\\x83\\xbd\\xcd\\xf4\\xeb\\\n\\x84\\xcc\\x44\\xce\\x0e\\x52\\x99\\x85\\x6e\\xf2\\xc0\\x8e\\xd2\\xaa\\xfe\\xf9\\\n\\x64\\xff\\x00\\xb3\\x19\\x6c\\xd2\\x48\\xb5\\x02\\x84\\xb0\\xf3\\x5c\\x6a\\x43\\\n\\x03\\xfb\\xd4\\xa5\\x7a\\x6d\\x8d\\x23\\xb1\\xeb\\x70\\x65\\xdb\\x93\\x75\\xf9\\\n\\x53\\x0a\\xa4\\x81\\x4d\\x2b\\xf1\\x03\\xca\\x76\\xea\\x2d\\xaa\\xe2\\xa8\\x7f\\\n\\x68\\x8b\\x75\\x76\\x34\\xd0\\x82\\xbf\\x68\\x74\\xef\\x4c\\x4b\\x97\\x7b\\x0a\\\n\\xcc\\xb2\\x70\\xdf\\x4d\\x39\\x48\\xb7\\x6d\\xff\\x00\\x4d\\xf0\\x23\\x7b\\xf8\\\n\\x36\\x4b\\xe6\\x3a\\xf1\\x22\\xa9\\xb4\\xdb\\xd5\\x69\\x4e\\xda\\x8d\\x71\\x9a\\\n\\xf6\\x78\\x2b\\x7c\\xcc\\xe2\\xd0\\x9e\\x46\\x1a\\xa3\\x0d\\xef\\x57\\x04\\x6b\\\n\\xdf\\x08\\x57\\x2d\\x2a\\xa8\\x6f\\x29\\x1b\\x7e\\x43\\x7c\\x31\\x68\\xe4\\x02\\\n\\xb5\\xba\\xdd\\x28\\x79\\xb7\\xdb\\x7c\\x2a\\x49\\x6f\\x23\\xdd\\x75\\x39\\xe9\\\n\\xdb\\xb6\\x10\\xe5\\x8a\\x42\\x2c\\x0a\\x75\\xd4\\xe9\\xdb\\x60\\x30\\x5e\\x67\\\n\\xbc\\x74\\xab\\x69\\xf9\\x61\\xc2\\x83\\x54\\xb6\\xa7\\xa6\\xa0\\xe2\\x95\\x55\\\n\\x1f\\x78\\xe0\\x33\\x6a\\x2b\\xb6\\xf8\\xb9\\x68\\x92\\x2e\\xa3\\x4d\\x0d\\x35\\\n\\xfc\\xf0\\x11\\xab\\xca\\x69\\x6d\\x45\\x31\\x52\\xaa\\x55\\x94\\xf4\\x3a\\x69\\\n\\xfa\\xe0\\x95\\x51\\xfd\\x7e\\x27\\x07\\x4b\\x3f\\x9f\\x7c\\x2a\\xcc\\x45\\x94\\\n\\x3e\\x6f\\xcb\\xa1\\x1d\\x7b\\xe2\\x18\\xbe\\xc2\\xb3\\x54\\x75\\x05\\xbc\\xba\\\n\\x7a\\x60\\xc5\\x4e\\x14\\x7a\\x85\\x8c\\x80\\x0f\\xef\\xb7\\x73\\xfc\\xb1\\x78\\\n\\x1c\\xc5\\x6d\\xd0\\xf7\\xdc\\xff\\x00\\x2f\\xf9\\xc1\\xf6\\x3c\\xa7\\x10\\xfc\\\n\\x4e\\x9c\\xd2\\x7d\\x74\\x3f\\xc3\\x10\\x43\\x9c\\x86\\x45\\xf0\\xdc\\xb8\\xf6\\\n\\x8c\\xfc\\x92\\x83\\x6d\\x88\\xc2\\xc8\\xc1\\x3d\\x67\\x3c\\xb4\\x04\\x6c\\xda\\\n\\x01\\x88\\xfc\\x37\\xc2\\x73\\x10\\x65\\x3c\\x37\\xc0\\xb9\\x61\\xb6\\xd3\\x14\\\n\\xd9\\xe0\\x2c\\xf2\\xd7\\x58\\xb2\\xf7\\xb8\\xfd\\xeb\\x8f\\x6c\\x17\\x19\\xb4\\\n\\xcc\\x66\\x9c\\xbb\\xf1\\x10\\x88\\xa8\\xcf\\xab\\x10\\x35\\x16\\x02\\x6a\\x01\\\n\\xfd\\x70\\x23\\x93\\x88\\xcc\\x06\\xec\\x52\\xa7\\xf2\\xeb\\xbf\\xd7\\x19\\xcb\\\n\\xa9\\x53\\x1e\\x5e\\x88\\x3a\\x53\\x32\\xbf\\x0e\\x07\\x20\\xa9\\xa7\\x4f\\x4c\\\n\\x6d\\xf4\\xe9\\x89\\x63\\xcc\\x48\\x0a\\xc0\\x79\\xc2\\x52\\xa8\\xd5\\xf5\\x3b\\\n\\xaf\\x43\\xf3\\xc7\\xb0\\x26\\x66\\x3c\\xd1\\x8d\\x5f\\xd9\\x4a\\xd7\\x8b\\x6a\\\n\\x2d\\x5e\\x09\\x1f\\x62\\x3a\\xc6\\xc0\\xf7\\x07\\x73\\x81\\x98\\xf1\\x1c\\xcb\\\n\\xad\\xd5\\x71\\x04\\x03\\x45\\x2e\\x01\\x50\\xec\\x49\\xa9\\x1b\\x69\\xa6\\x16\\\n\\x34\\xca\\xc6\\xd6\\x2a\\x82\\xcc\\xbe\\xf1\\x9b\\xed\\x31\\xee\\x4e\\xf8\\x95\\\n\\x04\\x2a\\xc8\\xcd\\x7b\\x07\\xe6\\xa5\\x7e\\xcd\\x76\\x18\\xf6\\x64\\x23\\x85\\\n\\x2a\\x71\\xb2\\xe8\\x3f\\xca\\x52\\xc1\\x0a\\x1f\\xb4\\x49\\x02\\x9d\\x86\\x2e\\\n\\x4f\\x0f\\x94\\x54\\x5c\\x38\\xbe\\xef\\x4e\\xf4\\x7a\\x30\\xad\\x0e\\xeb\\xf5\\\n\\x38\\xca\\x27\\x88\\xe5\\xa4\\xe3\\xbf\\xbb\\x85\\x14\\xa9\\xe1\\xcb\\x98\\xa4\\\n\\x6b\\x3d\\xd5\\xa0\\x08\\x81\\xab\\xa5\\x45\\xc2\\x9a\\xe0\\xa8\\x03\\x6d\\xc9\\\n\\xfc\\xf5\\x5d\\xbb\\x53\\x11\\xb9\\xd0\\xe6\\x48\\x8c\\xd2\\xbc\\xce\\x05\\x55\\\n\\x8f\\xad\\xbc\\x80\\xe0\\xeb\\xad\\x01\\xaf\\xf5\\xdb\\x05\\x5b\\x5a\\x7c\\x43\\\n\\xa7\\xae\\x07\\x88\\xf8\\x6a\\xa0\\xe3\\x10\\x99\\xf8\\x95\\xad\\x2c\\xba\\xb7\\\n\\xb4\\x9e\\x50\\x0b\\x0f\\x2b\\x81\\xe6\\xe5\\x3d\\x0e\\x17\\x2c\\xaa\\x1d\\x59\\\n\\x69\\x29\\xdf\\x88\\x69\\x4d\\x49\\xc1\\x58\\x62\\x8a\\x58\\x9d\\x4c\\x8b\\x23\\\n\\x5c\\x00\\x24\\xf9\\x0d\\x3e\\x98\\x7c\\x9e\\x72\\x04\\x8e\\x39\\x85\\xb7\\xa1\\\n\\x36\\x8e\\x9a\\xd7\\x5c\\x32\\xc2\\x80\\x46\\x41\\xff\\x00\\x59\\x1f\\x17\\xa8\\\n\\xa6\\x3a\\x69\\x5f\\xa7\\x53\\x8a\\xa9\\x56\\x90\\x21\\x60\\xfb\\xd8\\x69\\x45\\\n\\xab\\x1f\\x8a\\xbd\\x30\\x73\\xb1\\xc1\\x99\\x9e\\x31\\xcd\\x11\\x4a\\xf5\\xd0\\\n\\xda\\x3f\\xaf\\x5c\\x26\\x5f\\x37\\x97\\x93\\x2b\\x52\\xb4\\x69\\x34\\xa8\\x3d\\\n\\x01\\x1d\\x46\\x95\\x1f\\x3c\\x7f\\x77\\xc8\\xac\\x49\\x90\\x49\\x48\\xc5\\xcf\\\n\\x25\\xf4\\xaa\\xe8\\x09\\xd4\\x6c\\x31\\x0c\\x70\\xc2\\xca\\xfe\\xce\\x28\\x1f\\\n\\x94\\x8b\\x5b\\x9a\\x83\\x5e\\x63\\x4a\\x73\\x6e\\x59\\x70\\x85\\xf7\\xe5\\xbb\\\n\\x5d\\xc9\\x73\\x45\\x1f\\x5d\\x5b\\xbd\\x07\\xae\\x1a\\x37\\x15\\x16\\xed\\x4d\\\n\\x3f\\xda\\xb8\\x91\\xc0\\x06\\xc1\\x24\\x1f\\xfd\\x40\\x81\\x34\\x1d\\x93\\x89\\\n\\xd3\\xa2\\x13\\x84\\x00\\x58\\xc1\\xce\\xe7\\xec\\x80\\xb4\\xf9\\x5b\\x70\\xf9\\\n\\x62\\x5d\\x35\\x8e\\x4a\\xfa\\xdb\\x7a\\x9f\\xcb\\x1e\\x1c\\x80\\x54\\xfb\\x38\\\n\\x94\\xd7\\xef\\x9b\\xff\\x00\\xe3\\xd3\\x13\\xd1\\x0b\\x68\\x4c\\x62\\x9a\\x1e\\\n\\x22\\x34\\x84\\x7a\\xdb\\xc3\\x3f\\x8e\\x1c\\x48\\x9c\\x48\\xca\\xdc\\xaa\\xbb\\\n\\xf0\\xdc\\x22\\xc9\\xf3\\x61\\x5b\\xb1\\xec\\xe3\\x9d\\x6d\\x07\\x5f\\x51\\x7a\\\n\\x9a\\xfe\\x15\\x23\\xae\\x03\\x01\\xa5\\x01\\xa1\\xdf\\x5e\\x5a\\x77\\xc7\\x35\\\n\\x6d\\x6a\\xad\\xdd\\x6b\\x50\\xc1\\xbe\\x60\\x1d\\x7d\\x31\\xe6\\xa8\\xf8\\x5f\\\n\\xa0\\x1d\\x03\\x8f\\xa9\\xd7\\xd7\\x13\\x16\\xe5\\x2a\\x2e\\x5a\\x6c\\x0f\\xda\\\n\\x07\\xb1\\x5a\\xe2\\xaf\\xcf\\x49\\x5a\\xb6\\xae\\xdc\\xbc\\x92\\xfa\\x86\\x42\\\n\\x6b\\xd1\\xbe\\x98\\xca\\xcf\\x63\\xac\\x39\\xc8\\xb8\\xaf\\xa7\\x27\\x18\\xe9\\\n\\x72\\xd7\\x6a\\x8d\\xc7\\xd7\\x05\\x13\\x98\\x7c\\x85\\x7e\\x47\\xa5\\x7b\\x61\\\n\\xa2\\x75\\x0c\\xad\\xe9\\x4f\\x96\\x1e\\x33\\xe5\\xa9\\x31\\x9e\\xe3\\xe7\\x85\\\n\\x7e\\x65\\x1d\\x4d\\x7f\\x86\\x08\\x2d\\x62\\xdd\\xc3\\x15\\x6d\\x49\\xa6\\x98\\\n\\x75\\x60\\x1c\\x49\\x42\\x4e\\xfa\\x74\\xdf\\x00\\xc4\\x37\\x20\\x5a\\xbd\\xab\\\n\\xbe\\x03\\xa4\\xf6\\x8b\\x40\\x7b\\x86\\xcd\\x4d\\xc6\\x9a\\xf6\\x38\\x21\\xa6\\\n\\xae\\xbb\\xeb\\xb7\\xcb\\xd7\\x15\\x11\\x9b\\x41\\xa7\\x10\\x29\\x1f\\x3c\\x05\\\n\\xad\\xcb\\xd3\\xbd\\xbd\\x01\\x18\\xf6\\xab\\x4f\\xb3\\x25\\xa2\\x47\\x34\\x00\\\n\\x5d\\xfa\\x9f\\xa6\\x17\\x2a\\x38\\x0e\\x56\\x35\\xaa\\x30\\x0c\\xd4\\x61\\x5a\\\n\\xd6\\x9b\\xe3\\xda\\xb2\\x42\\xd7\\x5f\\xf2\\xdb\\xf6\\x67\\x5d\\xbc\\xda\\x1f\\\n\\xd3\\xae\\x1e\\x33\\x45\\x95\\x18\\x25\\xb4\\xd4\\x7c\\xa9\\x5c\\x06\\xcb\\xa3\\\n\\x52\\x84\\xcb\\x23\\x1e\\x40\\xdf\\x33\\x4f\\xc3\\x17\\x66\\xf3\\xca\\x11\\x2d\\\n\\xf7\\x31\\x68\\x5c\\xdd\\xb5\\xfa\\xea\\x35\\xaf\\xad\\x30\\xf0\\x78\\x4e\\x41\\\n\\x9e\\x2a\\x24\\x41\\x8c\\x66\\x56\\x77\\x7a\\xf9\\x9e\\x87\\xae\\x80\\xeb\\xa9\\\n\\x03\\x02\\x39\\x25\\x58\\xbf\\xb4\\x1e\\x2d\\x07\\x12\\x66\\x40\\x2b\\x05\\xe9\\\n\\xe4\\x5e\\xbe\\xe9\\x48\\x45\\xed\\x23\\x13\\xad\\x0e\\x3c\\x43\\xc5\\xe7\\x47\\\n\\x9e\\x7c\\xc7\\x1b\\xd9\\x78\\xf7\\x48\\xe3\\x98\\xf3\\x53\\xab\\xbb\\x56\\x87\\\n\\x7a\\x9e\\xd8\\x6c\\xce\\x66\\x45\\xca\\xbc\\x94\\xe0\\x44\\xfa\\x15\\x53\\xad\\\n\\xf4\\x34\\xa7\\x2e\\xdb\\xe3\\x84\\x19\\xe5\\x01\\x16\\x8f\\xa1\\xaf\\x4e\\xfd\\\n\\xc1\\xa7\\xa5\\x31\\x9c\\x93\\xd3\\x2d\\xaa\\xff\\x00\\xef\\x0f\\xe3\\x81\\xcc\\\n\\xcc\\x84\\x5b\\x6b\\x6c\\x29\\xd7\\xbd\\x71\\x1c\\x79\\x55\\x84\\x46\\xe4\\xf1\\\n\\x25\\x6d\\x64\\x8d\\x69\\xba\\xae\\xc4\\xfd\\x74\\xdf\\x1c\\x15\\x90\\x42\\x5c\\\n\\x99\\x25\\x9a\\x56\\xb7\\x52\\x79\\x9d\\xf5\\xd5\\xbe\\xc8\\xfc\\xa9\\x8b\\xa0\\\n\\xe0\\x66\\x33\\x32\\x25\\x93\\x66\\x4b\\x2b\\x3b\\xad\\x75\\xeb\\xc8\\xa0\\xf4\\\n\\x1f\\x3d\\xf5\\xc3\\x65\\xe4\\x37\\x29\\x04\\xe5\\x98\\x6b\\x75\\x35\\xe1\\x93\\\n\\xd5\\x93\\xa7\\x7e\\x98\\xa1\\x42\\x01\\x15\\xad\\xc2\\xb5\\x3b\\x03\\x4d\\xb0\\\n\\xe1\\x8d\\xac\\x10\\xb1\\xed\\x67\\xa9\\xa5\\xb4\\xef\\xae\\x21\\xce\\x4b\\x6b\\\n\\xc7\\x92\\x8d\\x63\\xcb\\xd2\\xbc\\xd3\\x71\\x38\\x8d\\x23\\x1a\\x6a\\x16\\x9e\\\n\\xef\\xe1\\x6d\\xf1\\xf6\\xb5\\xae\\x9e\\xbf\\xd0\\xa8\\x38\\x79\\xe6\\xcb\\xa8\\\n\\x9e\\xda\\x0c\\xd0\\x5b\\x65\\x40\\x07\\xc2\\x47\\x35\\x57\\xf8\\x0c\\x4f\\xe1\\\n\\x2f\\x37\\x13\\x37\\x93\\x56\\x8d\\x1f\\x86\\xf1\\xac\\xf1\\x42\\x05\\x1c\\x87\\\n\\xd4\\x4b\\xbd\\xcb\\x40\\x09\\xd8\\x6b\\x84\\xcb\\x96\\x56\\x96\\x0b\\x25\\x65\\\n\\xa8\\xd2\\xfa\\x84\\xfe\\x26\\xbd\\x3d\\x30\\x2d\\xe6\\xaa\\xec\\xbb\\xfa\\x82\\\n\\x3f\\xaa\\xe2\\x93\\x35\\x66\\x92\\xb6\\xc4\\x84\\x31\\x6f\\xb8\\x68\\x74\\xff\\\n\\x00\\x56\\x83\\x0a\\xfe\\xcd\\x22\\xdc\\x69\\x4b\\xd7\\xf3\\xb7\\x96\\x9f\\xaf\\\n\\xce\\x98\\x0d\\x1c\\x4e\\x8e\\x4b\\x01\\x56\\xaa\\xd4\\x8d\\x2a\\x29\\xa5\\x0e\\\n\\xa7\\x19\\x88\\xcb\\xaa\\x88\\x51\\x98\\x3b\\x8a\\x8b\\x94\\x5c\\xdb\\x7e\\x03\\\n\\xb1\\xf5\\xc5\\xc0\\xd3\\x50\\xd7\\x5b\\x5a\\x29\\xa7\\x96\\xbd\\x06\\x95\\xa7\\\n\\x5d\\xf0\\xeb\\x3c\\xa1\\xe2\\x8e\\xd1\\x14\\x83\\xa8\\xb6\\xba\\xae\\xd5\\x07\\\n\\xa0\\xc0\\x8d\\x2f\\x4b\\xb4\\x08\\xaa\\x78\\xd2\\x06\\xa6\\x96\\xd2\\xa3\\xb9\\\n\\x1b\\x80\\x75\\x18\\x5f\\x6f\\x9a\\x42\\xd2\\x25\\x5a\\x38\\x96\\xc0\\xa4\\xea\\\n\\xa6\\xbe\\x6a\\xa7\\x5f\\x5e\\xe2\\xb8\\x4c\\xac\\x52\\xb3\\x24\\x35\\x58\\xae\\\n\\xf3\\x53\\xa8\\x66\\x1b\\xfe\\x18\\x6c\\xbe\\x66\\x3b\\x98\\x03\\xc2\\x93\\xe3\\\n\\x89\\xfe\\x16\\x4f\\x91\\xa6\\xbf\\xc3\\x1e\\xd3\\x22\\x2c\\xde\\x23\\x31\\xd6\\\n\\x66\\xd7\\x84\\xa3\\x91\\x16\\x31\\xf0\\xfd\\xb3\\x6e\\xba\\x1f\\xae\\x46\\x68\\\n\\x81\\x69\\x07\\x1a\\x56\\xaf\\xc6\\xbc\\x45\\xe0\\x87\\xe8\\x14\\x47\\x19\\x36\\\n\\x6c\\x2a\\x1b\\xa0\\x38\\x05\\x87\\x95\\x14\\xd4\\xe8\\x03\\x52\\x80\\xa8\\x1d\\\n\\xb5\\xf5\\x37\\x57\\xad\\x71\\xb5\\x64\\x71\\xd7\\x7d\\xe8\\x35\\x3b\\x03\\xbf\\\n\\xe7\\x87\\x0f\\xe5\\x8f\\x89\\xc3\\xa5\\x48\\x62\\xf2\\x2c\\x4e\\xed\\x4d\\xcd\\\n\\x8a\\xd6\\xf5\\xab\\x93\\x88\\xaf\\x6b\\x4b\\x0b\\xad\\x14\\xa7\\x3f\\x36\\xa3\\\n\\xb9\\xaf\\xd0\\x76\\xc4\\xb7\\xb6\\xc4\\xb1\\x5d\\xaa\\x1a\\xe5\\x20\\x1e\\xbb\\\n\\x57\\xe6\\xa0\\xf4\\x18\\xca\\x26\\x8a\\x0e\\x56\\x2d\\x07\\xc3\\x74\\x4b\\x67\\\n\\xd1\\x56\\x83\\xb0\\xc2\\x48\\x05\\x16\\x37\\x05\\xbd\\x43\\x8e\\x1b\\x69\\xf5\\\n\\xfc\\xeb\\xb5\\x4e\\x1e\\x19\\x05\\xcd\\x74\\x8d\\x06\\x86\\xd1\\xef\\x6d\\xb7\\\n\\xe4\\x62\\x51\\x77\\x53\\xb6\\x16\\x9f\\x02\\xf0\\xe9\\xf0\\xd2\\xd0\\x54\\xfd\\\n\\x2a\\x47\\xa1\\xc1\\x0c\\x34\\x1b\\x8e\\xa7\\xfd\\xb1\\xc2\\x7e\\x64\\x98\\x5f\\\n\\x19\\xd8\\x87\\x02\\x85\\x87\\xae\\x9c\\xc3\\x06\\x19\\x81\\x5e\\x24\\x75\\x57\\\n\\x02\\xaa\\xcc\\x0f\\xe4\\x1d\\x0d\\x3b\\x72\\xfc\\xb1\\x98\\xbd\\x49\\x1c\\x26\\\n\\xe5\\x26\\xf4\\x23\\x6e\\x5f\\xf8\\xc3\\xa6\\x65\\x4d\\x64\\x88\\xf0\\xce\\xe1\\\n\\x84\\x76\\x58\\x87\\xed\\x72\\x1b\\x74\\xaf\\x5c\\x56\\x6c\\xbb\\x8c\\xcf\\x86\\\n\\xcd\\xc3\\xba\\x95\\xe4\\xb8\\xa2\\xbb\\x36\\xf4\\xf2\\xa6\\xf5\\xa1\\xd7\\x43\\\n\\x8f\\x17\\x33\\x72\\x2b\\x70\\x22\\x86\\x45\\xa1\\x74\\xcc\\xad\\x66\\x0e\\x7a\\\n\\x81\\xe5\\x53\\x5f\\x30\\x3d\\x48\\x23\\x0b\\x97\\x9a\\x26\\x62\\xf1\\xb4\\xcb\\\n\\x34\\x35\\x92\\x3b\\x63\\x17\\x4b\\xad\\x3f\\xca\\x4a\\x17\\x3b\\x0e\\xf8\\xbf\\\n\\x31\\xcf\\x24\\x5c\\xca\\xc4\\x56\\x94\\xfd\\x7f\\x8e\\x98\\x1c\\x29\\xda\\x40\\\n\\x7c\\xba\\x6d\\xe9\\xd8\\x7d\\x70\\xa9\\x99\\x53\\x55\\x62\\xfe\\x6a\\xa9\\x22\\\n\\x94\\xa9\\x53\\xbe\\x3c\\xe8\\xb4\\xa6\\x9f\\xa5\\x35\\xc0\\xa3\\x6b\\x5d\\x00\\\n\\x23\\xf1\\xd0\\xe2\\xda\\x12\\x06\\xb6\\x80\\x7a\\xe9\\xbe\\x0f\\x8a\\x4b\\x00\\\n\\x11\\xdc\\xa2\\x18\\x8e\\xa5\\xc9\\x36\\x83\\xd2\\x9f\\xea\\xa6\\x2b\\x24\\x28\\\n\\xa1\\x75\\xa0\\xd7\\x5f\\xd0\\x57\\x12\\xb0\\x08\\x12\\xed\\x3c\\x80\\x85\\x07\\\n\\xad\\x36\\xc2\\xc1\\x1b\\x54\\x57\\x8a\\xd4\\x6a\\xdc\\xe0\\xf9\\x7f\\xdc\\x6b\\\n\\x8c\\xab\\x22\\xcb\\x0c\\xdc\\x44\\x57\\x4f\\x85\\xd8\\x72\\xec\\x76\\xc5\\x04\\\n\\x9c\\xc4\\x68\\xa2\\x9c\\xba\\x1a\\xdc\\x4e\\xdf\\x22\\x71\\x36\\x6a\\x40\\xb3\\\n\\xbc\\xb2\\x16\\x06\\x9a\\x5a\\xbb\\x72\\x8d\\x8f\\xa9\\xa6\\x24\\x8e\\x08\\xc4\\\n\\x50\\x8f\\x32\\x8e\\x51\\x4d\\x77\\xee\\x7f\\x3c\\x0c\\xc3\\x46\\xd2\\x83\\xea\\\n\\x5a\\x8c\\x7a\\x8f\\x9e\\x25\\xfe\\xd4\\x78\\xa5\\x53\\xc3\\x3c\\x32\\x27\\x96\\\n\\x38\\xe5\\x60\\x23\\x93\\x30\\x2a\\x6d\\xb4\\xe9\\x48\\xe8\\x18\\xef\\x53\\x4e\\\n\\xb4\\x18\\xbc\\x9c\\xc5\\x92\\x49\\xc2\\x8a\\x22\\xb4\\x58\\xf2\\xd7\\x72\\x85\\\n\\x1a\\xd4\\x92\\x6e\\x3e\\xa6\\xb8\\xc8\\xe4\\xdb\\xdd\\xc4\\x1c\\x84\\x0d\\xb9\\\n\\x29\\xcd\\x5e\\xd8\\x83\\x27\\x2a\\x17\\x9e\\x58\\xde\\x43\\x25\\x76\\xa7\\xc3\\\n\\xf5\\xc0\\xbb\\xe2\\x50\\xc2\\xb5\\xe5\\x1d\\x17\\x6e\\x9e\\xba\\xe3\\x3b\\x03\\\n\\x6e\\xcb\\x97\\xe1\\x0f\\x89\\x99\\x65\\x62\\x40\\xf9\\x69\\x82\\xf2\\x49\\x1c\\\n\\x60\\x1a\\x13\\x75\\xc4\\x1a\\x54\\xd5\\x52\\xeb\\x46\\x9d\\x7a\\xe0\\x98\\x45\\\n\\xe8\\x1a\\xc2\\xf7\\x70\\xcd\\x77\\xd0\\x1d\\x7e\\xb8\\x29\\x38\\xdf\\xe2\\x5d\\\n\\x58\\x7d\\x69\\xae\\x1f\\x35\\xed\\x22\\x54\\x58\\xa9\\x14\\x55\\x60\\xf7\\xb5\\\n\\x6e\\x2e\\x9b\\x1b\\x46\\xde\\xb8\\xe7\\x6a\\x16\\xd5\\x1d\\x47\\x3c\\x6e\\x3c\\\n\\xae\\x36\\xdb\\xaf\\x71\\xbe\\x1d\\x33\\x3c\\x99\\x8c\\xaf\\xfe\\x67\\x5a\\x2b\\\n\\x85\\xd5\\x67\\x1f\\x71\\x86\\xa3\\xec\\xf9\\x70\\x29\\xca\\x2d\\x36\\x96\\x1a\\\n\\x1e\\x9c\\xdd\\xf5\\xc7\\x15\\xe8\\xca\\xc1\\x9a\\x47\\xd2\\xc0\\x80\\x73\\x1b\\\n\\x40\\xde\\x9a\\xe1\\x26\\xca\\x95\\x2a\\xe2\\xb5\\x1b\\x35\\x7b\\xfa\\xff\\x00\\\n\\x3c\\x15\\xea\\x37\\xb4\\x6d\\xf2\\xc2\\xfb\\x2e\\x56\\x73\\x24\\x51\\xc7\\x98\\\n\\x91\\xd2\\x0a\\x7b\\xc7\\x15\\x36\\xb2\\x9e\\x70\\xcb\\xe7\\x07\\xae\\x98\\x93\\\n\\xc5\\xf2\\x79\\x95\\x85\\x33\\x12\\x21\\x30\\xe6\\x41\\x0e\\xa0\\x0b\\x6c\\xa7\\\n\\x55\\x0b\\x4d\\x30\\x78\\x85\\x78\\xf0\\xa9\\xe3\\x34\\x7e\\xed\\x99\\xad\\xe9\\\n\\xf7\\x70\\x33\\xb9\\xa9\\xaa\\x4c\\xf2\\x5a\\xb4\\x52\\x40\\x15\\xa7\\x31\\xd7\\\n\\x1d\\xd0\\xe1\\x5b\\xa0\\x27\\xe7\\xb6\\x98\\x78\\xe6\\x15\\x47\\x1a\\xad\\x74\\\n\\xb0\\xeb\\xf9\\xb6\\xa4\\xfd\\x30\\xc9\\xe1\\xfc\\x34\\x7e\\x63\\xc3\\x73\\xe6\\\n\\xae\\xca\\xad\\xf0\\x0a\\xf5\\xdb\\x1c\\x1c\\xd6\\x59\\xf3\\x59\\xd4\\x6e\\x45\\\n\\x07\\xdd\\xc7\\x7f\\x31\\xb4\\x30\\xa3\\x1e\\xc7\\x07\\xc4\\x1c\\x37\\xb5\\x4f\\\n\\x15\\xa5\\x3a\\x40\\xa5\\xb4\\x5e\\xc2\\x43\\xa9\\x62\\x3b\\xf6\\xa6\\x00\\x62\\\n\\x41\\x3d\\x3f\\xaa\\xe3\\xcb\\x6e\\xff\\x00\\x3f\\xc3\\x06\\x43\\xa9\\x1d\\xf9\\\n\\x7a\\x69\\x8e\\x23\\x50\\x72\\xe8\\x29\\xdf\\xcc\\x6b\\xdc\\xd7\\x43\\xd3\\x14\\\n\\x2d\\x51\\xcb\\x70\\xe9\\xf6\\xa9\\xfb\\xbc\\xd4\\x23\\xec\\x0a\\x63\\x41\\xa9\\\n\\xa0\\x14\\xa5\\xb4\\xae\\xa4\\x7e\\x9e\\x80\\x0c\\x28\\xa3\\x5e\\xc0\\xb3\\x75\\\n\\xe1\\xa0\\x5a\\x28\\xaf\\x72\\x36\\x1d\\xf0\\xf0\\xd2\\xce\\x00\\x3a\\x7d\\xe2\\\n\\x2d\\x43\\xeb\\xcc\\x5d\\xbd\\x6c\\x1d\\xf1\\xed\\x1e\\x61\\x60\\x1d\\x3a\\x9a\\\n\\x93\\xff\\x00\\x66\\x98\\xcd\\x2d\\xb5\\xac\\x60\\x0a\\x6f\\xd4\\xe9\\xfe\\xa7\\\n\\x03\\x19\\x50\\x83\\xc8\\xa9\\x19\\xa6\\xd6\\xa4\\x6a\\xbf\\xad\\x71\\x6f\\xdb\\\n\\xe4\\x5e\\xb7\\x21\\xaa\\xb1\\xff\\x00\\x4b\\x11\\x4c\\x14\\x7b\\x7d\\xa4\\x09\\\n\\x66\\x5b\\xba\\xd1\\x69\\x6a\\xf6\\x61\\xe6\\xf5\\xc4\\xca\\x4e\\xaa\\xe4\\x8e\\\n\\xf4\\xab\\x39\\xd7\\xd6\\xd2\\x31\\xcb\\xe6\\x60\\x6c\\x6f\\xd3\\x16\\xea\\x26\\\n\\x85\\x99\\xa8\\x4d\\x0c\\x4c\\xc2\\xd7\\x07\\xba\\xb6\\xa3\\x11\\x96\\x0a\\xe9\\\n\\x18\\xb0\\x35\\xb7\\x5a\\xbb\\x5a\\xe7\\x7a\\xd3\\xae\\xd4\\xa6\\x14\\xa5\\xbc\\\n\\x37\\x50\\x00\\xa6\\xc6\\xeb\\xaa\\x7b\\x83\\x4a\\x0d\\xb5\\xc2\\xb0\\x2d\\xee\\\n\\xad\\x16\\xf7\\xd7\\x6a\\x7a\\x57\\x7e\\xa2\\x98\\xf1\\x2c\\x8c\\x71\\x2b\\xbe\\\n\\x7a\\x3b\\x40\\xfb\\x4b\\x24\\x60\\xa3\\x8d\\xc9\\xe7\\x1d\\x35\\xad\\x0f\\x4c\\\n\\x66\\x3d\\xa1\\x20\\x0d\\x26\\x62\\xe8\\xe5\\x8a\\x50\\xc5\\xd5\\x40\\x05\\x25\\\n\\x1f\\x0c\\xd1\\x49\\x7d\\x55\\xba\\x69\\x89\\x23\\xcc\\x22\\xba\\x48\\x0a\\x32\\\n\\xb2\\xdd\\xee\\xd8\\x5a\\x47\\x7a\\x1d\\x2e\\xa5\\x2b\\xd6\\xa3\\x19\\xcf\\xee\\\n\\x55\\x92\\x5c\\xdb\\x3a\\x70\\xe1\\x67\\xa4\\x41\\x5d\\xda\\xf5\\x4d\\x07\\xda\\\n\\x14\\x66\\x6a\\x22\\x46\\x40\\xdf\\x1e\\x2d\\x23\\x46\\xde\\x1f\\x94\\xf0\\x53\\\n\\x28\\xce\\x4e\\xe9\\xfe\\x64\\x55\\xf7\\x51\\x80\\x2a\\xf2\\x3d\\x03\\x0e\\x9c\\\n\\x33\\xc4\\xad\\x31\\x1c\\x31\\x48\\xe6\\x49\\xa5\\xb1\\x2b\\x52\\x6e\\x90\\xda\\\n\\xa4\\xea\\x29\\xe6\\x07\\xe5\\x5e\\xd8\\xcd\\x65\\x45\\xcf\\xec\\xe2\\x35\\x2c\\\n\\x58\\xb1\\x63\\xc2\\x52\\xef\\xd7\\x46\\x62\\x74\\xc5\\xfe\\x55\\xdd\\x5b\\xb7\\\n\\xa6\\x12\\xf8\\xae\\x8d\\x5b\\xce\\x7a\\x9f\\xf6\\xc1\\x48\\x90\\xdb\\x41\\x60\\\n\\x03\\xec\\xfc\\x5e\\x94\\xc7\\x05\\x0d\\xaa\\x48\\xab\\xd6\\x83\\x5e\\xf8\\x8e\\\n\\x3c\\xd1\\x12\\xf1\\x59\\x80\\xe0\\xdc\\x74\\x51\\x5b\\x9f\\xb5\\x6a\\x00\\xef\\\n\\xae\\x0a\\xc6\\xa7\\xdd\\x9b\\xa8\\xed\\xe4\\xae\\x97\\x95\\xa7\\x95\\x7b\\x61\\\n\\x73\\x19\\x7c\\xa4\\x72\\x67\\x26\\xe6\\xe2\\x9e\\x6e\\x65\\xfb\\x1a\\x52\\x9f\\\n\\x2c\\x13\\x3b\\x11\\xc6\\x62\\xdc\\x15\\x6d\\x08\\x6d\\xdd\\xa9\\x4e\\x9a\\x5b\\\n\\x86\\xa2\\xdb\\x1c\\xc0\\x5b\\x55\\xad\\xbd\\xcf\\xd7\\x12\\x98\\xc8\\x0a\\xea\\\n\\x35\\x24\\x6b\\xf9\\xe8\\x31\\x97\\xf0\\xa8\\x93\\x49\\x9f\\x59\\x47\\x91\\x62\\\n\\x51\\x73\\xc8\\xcd\\xf0\\xda\\xb5\\x3e\\xb4\\xa7\\x5c\\x41\\xfd\\x8f\\xf0\\xd9\\\n\\x69\\x97\\xf0\\xe8\\xe2\\x5c\\xcd\\xae\\x3d\\xfb\\x8b\\x49\\x0f\\xaf\\x30\\x63\\\n\\xe7\\xae\\xa6\\xbe\\x98\\x96\\x75\\x9a\\xb9\\x6c\\xb6\\x5e\\xed\\x29\\x58\\xe7\\\n\\x6d\\x11\\x3d\\x49\\xa5\\x7e\\x58\\x8b\\x2c\\xd2\\xb3\\x66\\xa1\\x95\\x64\\x8a\\\n\\xd2\\x39\\x17\\xfc\\xd2\\xf4\\xeb\\x61\\xb4\\x0c\\x71\\x33\\x8e\\x22\\x78\\x56\\\n\\xb1\\x9f\\x89\\x88\\x3a\\xeb\\xeb\\x8f\\x68\\x85\\x79\\x3f\\x67\\xac\\x91\\xae\\\n\\xab\\xaf\\x53\\xf7\\x86\\xb8\\xcc\\x67\\x16\\xbf\\xe1\\x5f\\x2d\\x70\\xaf\\xc3\\\n\\x3c\\x9c\\x17\\xff\\x00\\xb7\\x56\\xaf\\x5a\\x57\\x14\\x09\\x08\\x52\\x34\\xe5\\\n\\x1d\\x75\\x1b\\x0a\\x6b\\x5c\\x00\\x8b\\x17\\xc8\\x51\\x47\\xd6\\x9f\\x08\\x3a\\\n\\xfa\\x6f\\x8e\\x49\\x63\\x34\\x26\\xe2\\xb4\\xd5\\x86\\xe0\\x1f\\xb2\\x3a\\x1e\\\n\\xba\\xe2\\x48\\x1d\\x65\\x96\\x66\\x5b\\xb8\\x86\\xd0\\x90\\xc4\\x9e\\xa7\\xab\\\n\\x93\\xd3\\x7c\\x51\\x17\\xeb\\x5c\\x3c\\xa9\\x25\\x92\\x24\\x7c\\x39\\x0a\\xd6\\\n\\x8f\\x96\\x90\\xda\\xf1\\x30\\xf8\\xb5\\xe6\\x1f\\x3d\\x37\\xc4\\x72\\x46\\xe3\\\n\\xca\\xa5\\x7d\\x45\\x05\\x47\\xe2\\x6d\\xff\\x00\\x4e\\x33\\x3e\\x17\\x64\\x91\\\n\\x4c\\x99\\x57\\x2b\\x3d\\x50\\xa7\\x3c\\x5b\\x52\\xfe\\x27\\xbb\\x66\\x02\\xeb\\\n\\x02\\xd7\\x4b\\xb1\\x0a\\x78\\x69\\x9f\\x39\\x1e\\x76\\x55\\x2f\\xc4\\x80\\x1c\\\n\\xbc\\x74\\x6e\\x66\\x06\\xb7\\x23\\x38\\x14\\xd2\\xa3\\x41\\xf5\\xe1\\xf8\\x8c\\\n\\x7f\\xdd\\xd2\\x39\\xf7\\x6d\\x77\\x16\\x37\\x53\\x5a\\xb3\\x35\\x05\\x84\\xb0\\\n\\x2a\\x06\\x03\\xc3\\x35\\xd1\\x66\\x72\\x51\\x49\\x19\\x0c\\x19\\x7a\\xab\\x5b\\\n\\xe9\\x5a\\x1a\\x0d\\x30\\x0b\\xbd\\x4d\\x7b\\x9e\\xb8\\xd0\\xac\\x3e\\xe9\\x38\\\n\\x86\\xbe\\x6d\\xba\\xf5\\x63\\xdb\\x0d\\x78\\x8b\\x87\\xc4\\x7e\\x0b\\x2e\\xae\\\n\\xfb\\x82\\x25\\x03\\x55\\x3d\\x41\\x3a\\xd2\\x98\\xa3\\x0a\\x83\\x4d\\x6b\\xb6\\\n\\x12\\x9a\\xd1\\xeb\\xe8\\x7f\\x9e\\x19\\xcc\\x96\\x15\\x46\\xbb\\x5a\\x72\\x8d\\\n\\x82\\xaf\\x7d\\xb0\\xaa\\x8b\\xba\\xd3\\x88\\x45\\x2d\\x1e\\xbd\\xbb\\x53\\x63\\\n\\x87\\x32\\xa2\\xf1\\x95\\xac\\x84\\x53\\x4d\\xff\\x00\\x6b\\xa0\\xed\\xa0\\xed\\\n\\x80\\xd3\\x30\\xe5\\x15\\xe5\\xd3\\x5c\\x0b\\x5c\\xa5\\x00\\x14\\x03\\xfe\\xec\\\n\\x05\\x06\\x95\\x1a\\x7f\\xb8\\xfe\\xb5\\xc0\\x5d\\x1a\\xed\\x0d\\x4f\\x4e\\x9a\\\n\\x1c\\x32\\x30\\xd6\\x84\\x0a\\x7a\\x75\\xff\\x00\\x8c\\x4f\\x90\\x49\\x3f\\xc5\\\n\\x2c\\x12\\x4a\\x6d\\x5a\\xb0\\x44\\x31\\xc7\\x46\\xfb\\xcd\\xc5\\x80\\x03\\xf7\\\n\\xf4\\xf3\\x61\\x29\\xcc\\xe8\\x02\\x81\\xbd\\x08\\xe5\\x63\\xf4\\x1a\\x0a\\xe9\\\n\\xad\\x4f\\x91\\x70\\xec\\x7c\\xbf\\x11\\xde\\xb5\\xf2\\x8f\\x5a\\x6d\\xff\\x00\\\n\\xcf\\x7c\\x78\\x8e\\x56\\x76\\x3f\\xe3\\x33\\x31\\xbc\\x1c\\xd7\\x5b\\x95\\xb3\\\n\\xcc\\x4f\\xdb\\xad\\xd4\\x1d\\xb1\\x92\\x86\\x0a\\x01\\x29\\x8a\\xa3\\x71\\x41\\\n\\x22\\x86\\xaf\\x4a\\xbc\\x6a\\xdf\\x2a\\x9c\\x44\\xa7\\xfc\\xec\\xce\\x59\\x05\\\n\\x7a\\x2b\\x66\\x23\\xa9\\xff\\x00\\xb6\\x83\\xfe\\xee\\xf8\\x61\\xa7\\x9b\\x94\\\n\\xf6\\x4d\\x06\\xdd\\x4e\\x98\\x9e\\x0a\\xf2\\xc0\\xd2\\x79\\xb5\\xa5\\x2d\\x31\\\n\\xd3\\xe6\\x19\\x4f\\xef\\x6b\\x89\\xb3\\x30\\x6a\\xf7\\xa8\\x20\\x9d\\x8b\\x40\\\n\\x05\\x47\\x5e\\x63\\x4f\\xae\\x98\\x0d\\x37\\x96\\x55\\x4a\\x90\\x35\\x56\\xd4\\\n\\x9f\\xcd\\xb0\\xa1\\x65\\x5b\\x74\\xa1\\xae\\xd5\\xa7\\x4e\\x86\\xed\\x4f\\xd7\\\n\\x1e\\xd5\\x08\\xa3\\xb0\\x6e\\x22\\xec\\x1c\\x75\\xa7\\xf3\\xef\\x8e\\x25\\xc5\\\n\\xa3\\x76\\xe6\\xf5\\xad\\x02\\x96\\xa7\\x94\\xa8\\xd0\\xfc\\xab\\xd7\\x05\\x9e\\\n\\xb4\\x88\\xdc\\x69\\xad\\x15\\xba\\xfc\\x97\\x7f\\x41\\x81\\x2c\\x5b\\x98\\x8d\\\n\\xc6\\x3f\\x8c\\xa1\\x5b\\xac\\xee\\x58\\x1d\\x3e\\xf6\\x2d\\xce\\x4a\\x7f\\xc3\\\n\\xba\\x28\\xcc\\x2a\\xf3\\xc2\\x97\\x15\\x35\\x1b\\xb2\\xd1\\xa8\\xdf\\x64\\x13\\\n\\x89\\x93\\xda\\x11\\x92\\x79\\x1a\\x74\\xa0\\x61\\x69\\x7a\\x5d\\xb9\\x25\\xaa\\\n\\x45\\x6b\\xdc\\xe2\\xb4\\x0d\\xa6\\x87\\xb8\\xc3\\xca\\xe6\\x88\\xa0\\x37\\xcc\\\n\\xf3\\x72\\x8f\\x96\\x3c\\x4b\\x8f\\x96\\xf7\\x19\\xb8\\x9e\\xab\\x40\\xa8\\xca\\\n\\xd4\\x5e\\x62\\x3e\\x26\\x22\\xa5\\xe9\\x5a\\x0a\\xf4\\xc4\\x79\\xf7\\xa7\\xb3\\\n\\xf0\\xa7\\xce\\x65\\x42\\x80\\xf1\\x5d\\x16\\x69\\xf2\\xe2\\x22\\xd4\\xd2\\x81\\\n\\x6e\\x46\\x3d\\x39\\xba\\xe3\\xc4\\x24\\x58\\xef\\x7b\\x61\\xf5\\x50\\x0c\\x31\\\n\\x57\\x5a\\xf6\\xd8\\x63\\x87\\xec\\xfc\\x18\\x42\\x54\\x96\\x60\\x6f\\xae\\xab\\\n\\x6f\\x4f\\x9f\\x5e\\xf8\\x63\\x21\\x31\\xa5\\x75\\x1d\\xe9\\xa8\\xb4\\x6d\\x4d\\\n\\x7a\\x7c\\xba\\x61\\xa1\\x8d\\x8c\\x96\\x0a\\x1f\\xf9\\x3b\\xfe\\xf6\\xeb\\x85\\\n\\xe1\\x44\\xf6\\xc8\\xed\\xef\\x4f\\x2c\\x41\\x53\\x99\\x8b\\x93\\xbe\\xa7\\xe1\\\n\\xdb\\x6c\\x4b\\x49\\x05\\x61\\xd2\\xa7\\x99\\x5a\\x83\\x51\\x4a\\x6a\\x35\\x20\\\n\\x62\\x59\\x14\\xf1\\x11\\xd0\\xde\\x1a\\x5d\\x97\\x98\\xf2\\x8d\\x2e\\x23\\x4d\\\n\\xcd\\x46\\x22\\x91\\x7f\\x69\\x19\\x28\\xc2\\xa4\\x37\\x37\\x51\\xeb\\xf9\\xe0\\\n\\x3b\\xa4\\x94\\xd3\\x5b\\x5a\\x9b\\xe9\\xaf\\xc8\\x61\\x25\\x3e\\xf4\\xaa\\xea\\\n\\x83\\x56\\x0d\\xeb\\xd8\\xfa\\xe0\\x70\\xe3\\x22\\xa6\\x94\\xaf\\x7d\\x36\\xf9\\\n\\xfe\\x78\\xf6\\xa9\\xb5\\xf1\\xcf\\x19\\x43\\xc0\\x4f\\x8e\\x1c\\xbb\\xd3\\x90\\\n\\x0d\\xd4\\xdb\\xef\\x1e\\x83\\x70\\xa3\\xae\\x17\\x39\\x1c\\xd3\\x7b\\x44\\xf9\\\n\\x8a\\xce\\xb3\\x1b\\xaa\\x5c\\xd5\\xc8\\x2d\\xd2\\xa7\\x41\\x89\\x33\\x6d\\x73\\\n\\x19\\x5b\\x8e\\xe4\\xeb\\x23\\x2e\\xd1\\xa8\\xf9\\xd0\\xd2\\xbd\\xf1\\x3c\\x92\\\n\\x45\\x6c\\xad\\x29\\x75\\x53\\xb5\\x19\\xbd\\xda\\xb7\\xd9\\xb5\\x7f\\x33\\x88\\\n\\xdc\\xfb\\x8b\\x98\\xc9\\xc4\\x93\\x90\\x5a\\x79\\x8d\\xad\\x25\\xbc\\x94\\xf4\\\n\\x2b\\x4e\\xf8\\xe5\\xfe\\xd0\\xf8\\x6c\\x43\\xec\\x9c\\xe1\\x6f\\xff\\x00\\xe4\\\n\\x96\\x0f\\x90\\xdb\\x1e\\x25\\x18\\xb6\\x8c\\x32\\xc1\\xab\\x53\\x45\\xac\\x94\\\n\\x27\\xe6\\xcf\\xbf\\xa6\\x00\\x97\\x30\\xaa\\x62\\x26\\x13\\x45\\xe7\\x26\\x26\\\n\\x31\\xf5\\x3a\\x5c\\xaa\\x18\\x13\\xdf\\xae\\x0e\\x5e\\x17\\x26\\x57\\x56\\x05\\\n\\xee\\x35\\x85\\x3d\\x7b\\x96\\xda\\x95\\x1b\\xe1\\x43\\xf2\\x96\\x5b\\xa9\\xae\\\n\\xcd\\xb7\\xe5\\x8c\\xbb\\xf1\\x19\\x11\\x9a\\x35\\x9c\\x00\\x49\\x74\\x07\\xcb\\\n\\xf6\\xb5\\x7b\\x76\\xfa\\xd4\\x62\\xf0\\x2a\\x6d\\xd0\\x57\\x4a\\xd0\\x0d\\x3b\\\n\\xeb\\x86\\x13\\xba\\xf1\\x5e\\x68\\x3d\\xda\\x90\\x64\\x21\\xa6\\x5e\\x60\\x9b\\\n\\xda\\xb4\\x26\\xa7\\x4a\\x0c\\x66\\x60\\xf0\\xb9\\x82\\xb4\\x9c\\x46\\xcb\\xde\\\n\\x95\\x80\\x66\\x0a\\x0a\\xa5\\xb5\\xf8\\xbc\\xd1\\x8e\\x92\\x7e\\xf6\\x99\\xb8\\\n\\xfc\\x56\\x62\\xf9\\xac\\xd0\\xb1\\xe5\\x6d\\x88\\x0c\\xc6\\xd0\\x4f\\x93\\x99\\\n\\x81\\x64\\xe5\\x17\\x2e\\xdd\\x04\\x59\\x6c\\xaf\\x8f\\x49\\x97\\xc8\\x99\\x8b\\\n\\x50\\xc4\\x8e\\xfc\\x36\\x3d\\x1f\\x5a\\x6a\\x68\\xba\\xe8\\x2a\\x7a\\xe3\\xde\\\n\\x1b\\xe1\\x8c\\xb4\\x0b\\x2d\\x75\\x91\\xa2\\x2d\\x79\\x60\\x47\\x29\\x35\\xa8\\\n\\xde\\xb8\\x44\\x91\\x9a\\x41\\x1a\\xd9\\x18\\x76\\x24\\x22\\x56\\xb4\\x40\\xdb\\\n\\x2f\\xa5\\x70\\x38\\x61\\x89\\x3b\\xeb\\x50\\x7a\\x1a\\x7e\\x9d\\x29\\x88\\x52\\\n\\x28\\x5a\\x64\\xa2\\xa4\\x68\\x89\\x6a\\xa0\\x5a\\x6a\\xee\\x4a\\xa9\\x3e\\xa7\\\n\\x51\\xeb\\x88\\x9a\\x79\\x92\\x48\\x27\\x8d\\x78\\xd9\\x38\\x88\\x76\\x89\\xea\\\n\\x6e\\x96\\xeb\\x80\\x07\\xb8\\x15\\xc5\\x62\\x99\\x29\\xa1\\x20\\xb0\\xea\\x36\\\n\\x3e\\xb8\\x26\\x52\\x94\\x50\\x48\\xe6\\x5f\\x87\\x52\\x77\\xd3\\xf3\\xc6\\x5f\\\n\\x2b\\x06\\x53\\xd9\\xe2\\x99\\xed\\xe2\\x48\\x97\\x12\\x2e\\xa5\\xd7\\x01\\x41\\\n\\xa6\\xbd\\x7e\\x78\\x8d\\xc4\\x9c\\x69\\xa6\\x4b\\xe6\\x95\\x8d\\x74\\x05\\xad\\\n\\x40\\x29\\xa0\\x1b\\x85\\xfe\\x78\\xe2\\x91\\xcd\\x4d\\x03\\x74\\xf9\\x63\\xcb\\\n\\x44\\xef\\xd7\\xe9\\xdb\\x04\\x2a\\xea\\x75\\xf9\\x7a\\x93\\xf2\\xc5\\xcf\\x29\\\n\\x77\\xe8\\xa8\\xbf\\x97\\x5d\\x3d\\x71\\xcc\\x84\\x10\\xa4\\xfa\\xd4\\xd3\\xf9\\\n\\x0c\\x41\\xed\\xb3\\x94\\x32\\x5e\\x23\\x00\\x57\\x54\\xfb\\x7d\\xae\\xe9\\x5d\\\n\\x3d\\x71\\x9d\\xfe\\xd1\\x4d\\x02\\xc5\\xed\\x2e\\xd6\\x48\\x40\\x06\\x75\\x04\\\n\\x88\\x75\\xdc\\xc6\\x94\\xe4\\xa5\\x13\\x95\\xcf\\x33\\x24\\x61\\x3a\\xa0\\x96\\\n\\x46\\x65\\x07\\xad\\x75\\x3f\\x43\\xa7\\x2f\\xc2\\xad\\xaf\\x9c\\x61\\x22\\xef\\\n\\x5f\\xf5\\x37\\x53\\xd7\\x91\\x77\\xae\\xd4\\xeb\\x85\\xf1\\x3c\\xba\\xd7\\x33\\\n\\x94\\x3c\\x4a\\x2d\\x2e\\x78\\xbc\\xb6\\x81\\xde\\x95\\x6e\\xba\\x03\\x88\\x10\\\n\\xb0\\xe2\\x46\\x60\\x74\\x3f\\x24\\x73\\x25\\x69\\xb0\\xd3\\x4f\\x5c\\x65\\x1f\\\n\\xe1\\x49\\xe1\\xbb\\xee\\x52\\x44\\x76\\x07\\x7a\\x7c\\xfe\\xbe\\x98\\x91\\xf7\\\n\\xd4\\xd3\\xec\\x91\\xe5\\xdb\\xe9\\x5f\\xae\\x3c\\x42\\xae\\xdc\\x7c\\xc4\\xd7\\\n\\x85\\x1b\\xaa\\xc5\\x0e\\x59\\x3e\\x9c\\x49\\x11\\xa9\\xda\\xee\\xb4\\xc6\\x4f\\\n\\x83\\x23\\x1c\\x9a\\x9a\\xe6\\xa1\\xa5\\xc9\\x23\\x40\\x74\\xbb\\x4d\\x28\\x75\\\n\\x53\\xdf\\x0b\\x03\\xa0\\xe6\\x84\\xb0\\x3d\\x55\\x82\\x29\\x1d\\x3d\\x69\\x8e\\\n\\x65\\xe2\\x40\\x00\\xb5\\xd3\\xf7\\xbe\\x2d\\x34\\x3f\\x3f\\xc7\\x0e\\x97\\x71\\\n\\x62\\x3e\\x4d\\x35\\x8c\\x01\\xcc\\xa4\\xd3\\x62\\x7a\\xfe\\x58\\xd3\\xce\\xdc\\\n\\xac\\xb5\\xa2\\x90\\x74\\xad\\x3a\\xf6\\xc1\\x3a\\x49\\x1b\\x2d\\x94\\x7d\\x59\\\n\\x00\\x07\\xf5\\xeb\\xe9\\x88\\xd2\\x11\\x6c\\x4d\\xef\\x63\\xb7\\x64\\x3e\\x52\\\n\\xbf\\xba\\x0d\\x1b\\xa7\\x6a\\x75\\xc6\\x6f\\x88\\x9e\\xce\\xd4\\x96\\x43\\x5f\\\n\\xd9\\x3d\\x07\\x36\\x9f\\x12\\x48\\xa4\\x1f\\x46\\xc6\\x52\\x7f\\x14\\x8a\\x57\\\n\\x87\\x39\\x9b\\xb6\\x18\\x52\\x97\\xc3\\x97\\x44\\xf7\\xb3\\x56\\xa0\\x14\\xb8\\\n\\x56\\x34\\xad\\x59\\x4d\\x7a\\x6b\\xed\\xd9\\x2c\\xd2\\xe6\\xa1\\x3a\\xe9\\xe6\\\n\\x57\\xa7\\x95\\x97\\x74\\x6e\\xe0\\xd3\\x4d\\xab\\x85\\xcb\\xd4\\x88\\x07\\x3c\\\n\\x80\\x1d\\x02\\x76\\xfd\\xe6\\xf2\\x8c\\x78\\x8f\\xb1\\xa7\\xbe\\x6c\\xac\\x99\\\n\\x7c\\xb8\\x5a\\x03\\xc4\\x9b\\xdc\\x42\\x01\\x3a\\x5d\\x7b\\x8d\\xb5\\xaf\\x2f\\\n\\x9f\\x4c\\x64\\xf2\\x53\\x80\\xb3\\xac\\x2e\\x92\\xfb\\xcb\\xec\\x75\\x76\\x2e\\\n\\x2e\\x1a\\x0e\\x88\\xc3\\xa1\\x4e\\xb8\\xf1\\x86\\x87\\x2b\\x3c\\x91\\x18\\x60\\\n\\x45\\x95\\x10\\x30\\x0e\\x32\\xb0\\xea\\x35\\x15\\x15\\x3d\\xf0\\xb0\\x64\\xa1\\\n\\x77\\x92\\x19\\xa2\\x82\\x81\\x59\\x48\\x0c\\x7c\\xee\\xcc\\x02\\xac\\x71\\x8e\\\n\\x67\\x62\\x76\\x1a\\x60\\x78\\x76\\x6b\\x34\\xde\\x21\\xe3\\x32\\x2a\\xb6\\x60\\\n\\xc5\\xae\\x5b\\xc3\\xef\\xd9\\x13\\x5f\\xf1\\x19\\x97\\xd0\\xab\\xb2\\xd2\\x34\\\n\\xd5\\x41\\xb8\\x52\\x0c\\xc7\\x89\\xdf\\x98\\x97\\x34\\x22\\x9c\\x02\\x4c\\x66\\\n\\x35\\x46\\xbd\\x63\\xe5\\x1d\\x7e\\x3b\\x87\\x30\\x24\\x1c\\x71\\x16\\x3e\\x6d\\\n\\x56\\x0c\\xb4\\x5b\\xc8\\xd5\\xf7\\x71\\x47\\x1a\\xfc\\x4d\\xbb\\x6e\\x15\\x39\\\n\\xa4\\x3a\\xe1\\x72\\x1e\\x29\\xee\\x49\\x2d\\x21\\x9f\\x41\\x70\\x62\\x4d\\xa7\\\n\\xb1\\xa9\\xd2\\xbb\\x0c\\x37\\x0e\\x78\\xe6\\x8c\\xd4\\xdc\\xac\\x1d\\xd1\\x7a\\\n\\xfc\\xeb\\x89\\x23\\x8a\\x21\\x6d\\x0f\\x0d\\x99\\x34\\x2f\\xdc\\x55\\x48\\x3e\\\n\\x98\\x83\\x33\\x9a\\x86\\x46\\x86\\x74\\x12\\x21\\x8f\\x99\\x6d\\xf5\\x0b\\xe5\\\n\\x21\\x85\\xd6\\xdb\\xe5\\x3e\\xb8\\x2c\\x87\\xf6\\x9e\\x73\\xdc\\x7a\\xe0\\xf8\\\n\\x9f\\x88\\x0e\\x1f\\x85\\x78\\x74\\x7e\\xd3\\x35\\xdf\\x19\\x53\\x58\\xe3\\xd3\\\n\\xab\\x38\\x07\\xe5\\xf3\\xc7\\xb7\\xc4\\xc7\\xd9\\x32\\xa1\\x53\\x29\\x06\\xa1\\\n\\x23\\x50\\x05\\x4b\\x0d\\x89\\x34\\xd4\\xfc\\xbb\\x6a\\x91\\xf3\\xa7\\x08\\x2c\\\n\\xd9\\x96\\x61\\xca\\x91\\xa1\\xab\\x73\\x77\\x6d\\x02\\xed\\x5c\\x7b\\x47\\x8a\\\n\\xe6\\x1f\\x27\\xe1\\x52\\x4b\\x66\\x4f\\x2a\\xba\\x66\\xf3\\x51\\xc6\\x2d\\x8c\\\n\\xa4\\x66\\xdb\\x11\\xb5\\x6e\\x23\\x8a\\x1b\\xb4\\x1b\\x61\\x32\\xfe\\x0f\\x90\\\n\\x86\\x2b\\xce\\xab\\x5e\\x36\\x63\\xff\\x00\\x77\\x33\\x3f\\x5e\\xf6\\x2d\\x35\\\n\\xeb\\x88\\xe2\\x8c\\xcb\\x7c\\xe0\\xab\\x4a\\x5e\\xd2\\x56\\xbc\\xf1\\xaa\\x5d\\\n\\x75\\x07\\x96\\xea\\xeb\\xbe\\x06\\xad\\xae\\xa7\\x5a\\x53\\xa5\\x28\\x07\\x60\\\n\\x31\\x9d\\xe0\\xc8\\x7f\\x69\\x94\\x46\\x0b\\x5d\\xd9\\xe5\\x20\\x1d\\xfe\\xcf\\\n\\x5e\\xd8\\xcc\\xca\\xf7\\x1b\\xed\\x9e\\x25\\x22\\xb7\\x48\\xcb\\xc3\\xec\\x39\\\n\\x41\\x4b\\xa9\\x8f\\x78\\x6a\\xf2\\x39\\xe2\\x36\\xc3\\x7a\\x9f\\x90\\xb5\\x5a\\\n\\x9f\\x2c\\x0b\\x14\\xbe\\xb1\\xc5\\x0c\\x6a\\xa2\\xa7\\xfc\\xb8\\xc5\\x0d\\x37\\\n\\xdb\\x7d\\x08\\xc1\\xc8\\x66\\x23\\x68\\xfc\\x41\\x66\\x58\\x1b\\x2c\\x79\\x65\\\n\\x8e\\x5a\\x80\\x2e\\xfb\\x16\\xd4\\x13\\xd7\\x4a\\xe3\\x23\\x0e\\x56\\xdc\\xc7\\\n\\x89\\xe7\\xa0\\x56\\x89\\x13\\x9b\\x86\\x19\\x68\\x8f\\x60\\xad\\x6f\\x00\\x08\\\n\\x53\\x63\\xe6\\x18\\x92\\x1c\\xcc\\xfe\\xd1\\xe2\\x53\\xfb\\xec\\xf4\\xbb\\xa4\\\n\\x04\\x73\\x47\\x94\\x86\\xd2\\x47\\x25\\x2b\\x29\\x07\\x46\\x36\\x2f\\x2e\\x12\\\n\\x46\\x72\\xcd\\xc4\\xd3\\x5a\\x5b\\xb1\\x14\\xdf\\xa8\\xeb\\x87\\xce\\x64\\xb2\\\n\\xc2\\x79\\xcb\\xa6\\x57\\x3b\\x93\\x8e\\x34\\x69\\x3d\\xaa\\x4d\\x13\\x31\\x4d\\\n\\x0f\\x0a\\x44\\x3e\\xf1\\x8d\\x16\\x37\\xab\\x92\\x28\\x70\\xb1\\xcf\\xe2\\x53\\\n\\xcd\\x79\\x54\\x9c\\x89\\x32\\xf1\\x64\\x32\\xee\\xc1\\x94\\xc7\\x91\\x9b\\x31\\\n\\x7c\\xfe\\x23\\x22\\xb1\\x15\\x39\\x68\\xcc\\x5a\\x1b\\x18\\xaa\\xe9\\x3e\\x5e\\\n\\x26\\xf6\\x9c\\x9f\\xb4\\x3c\\x91\\x66\\x26\\x0a\\x85\\xd6\\x9c\\xb2\\x48\\x34\\\n\\x08\\x7e\\x2e\\x1e\\xb6\\x9e\\x5a\\x57\\x4c\\x29\\x86\\x07\\x95\\x87\\xd8\\x0e\\\n\\x23\\x3f\\xc4\\xfa\\x6b\\x4e\\xd8\\xf7\\x59\\x74\\x88\\x52\\xe1\\xc3\\xb5\\x1f\\\n\\xe5\\xb9\\x92\\xed\\x6b\\xe6\\xfc\\x3a\\x2c\\x72\\xcf\\x34\\x4c\\x97\\x71\\x2d\\\n\\x2c\\x5c\\x13\\xd3\\x46\\x20\\x6d\\xd7\\x19\\xf6\\x90\\x49\\x24\\x71\\x43\\xec\\\n\\x59\\x12\\x65\\x60\\x25\\xf1\\x6c\\xdf\\x24\\x0f\\x2c\\xbe\\x62\\x99\\x4c\\xbc\\\n\\x73\\x66\\xde\\x35\\x3c\\xc5\\x62\\x8f\\xa8\\xc4\\x51\\x0e\\x24\\xb3\\x15\\x1c\\\n\\x59\\x59\\xdd\\xf8\\x92\\x7c\\x4d\\xa9\\x34\\x52\\x7a\\x74\\xdb\\x1c\\x41\\x18\\\n\\xe2\\x5a\\x69\\xb9\\xbb\\xe7\\x53\\x80\\x5e\\xd2\\xab\\x4b\\x0a\\xa2\\x9e\\x9a\\\n\\xea\\x36\\xc3\\x65\\x91\\x29\\xa2\\x7c\\x7a\\x1a\\x7c\\x74\\xa9\\xd8\\xff\\x00\\\n\\x2c\\x50\\xd7\\x4e\\x97\\x6b\\xf4\\xc5\\x35\\xa7\\x62\\x58\\x1f\\xeb\\xd3\\x05\\\n\\x58\\x6b\\xf0\\xb5\\x4d\\x35\\xff\\x00\\x56\\x29\\x6b\\xc7\\x26\\xc1\\x81\\x34\\\n\\x6f\\xaf\\x4a\\xe1\\xa4\\xcc\\xe6\\x39\\x91\\x41\\xe0\\xc7\\x20\\x69\\x8f\\xee\\\n\\xaf\\x6f\\x53\\xd3\\x10\\xae\\x5b\\x27\\x24\\x0a\\x81\\x79\\xa4\\x94\\xca\\xf9\\\n\\x97\\x94\\xd9\\x1c\\x4d\\x1f\\x91\\x43\\x55\\xab\\x69\\xbe\\x84\\xdb\\xae\\x20\\\n\\xc9\\x48\\xf7\\x43\\x96\\xbe\\x49\\x58\\xd8\\x38\\xb3\\xdc\\xbc\\x3a\\xa4\\x75\\\n\\x58\\xe3\\x85\\x4a\\xc7\\x96\\x81\\x49\\x58\\xe3\\xb1\\x3b\\x60\\xb4\\x6d\\xcb\\\n\\xaa\\x6f\\xd0\\x16\\xd3\\xee\\xd4\\xdb\\xf3\\x03\\xd3\\x0c\\x4f\\x41\\x68\\x3a\\\n\\xec\\x15\\x6e\\xf9\\x2d\\x6b\\x53\\xf6\\x6b\\x86\\xe2\\x5b\\x27\\x10\\xd2\\x21\\\n\\x4e\\x4e\\x65\\x00\\x56\\xbe\\x62\\x77\\x0a\\x36\\xdb\\x13\\xf8\\xd7\\x86\\x46\\\n\\x5f\\x2d\\x30\\x44\\x9e\\x38\\xeb\\x48\\xa5\\xa5\\x81\\x90\\x03\\xe5\\x75\\x25\\\n\\x88\\x03\\x09\\x19\\x36\\xce\\xe5\\x6f\\x8e\\xb4\\xf7\\xc7\\x86\\x86\\xbf\\x77\\\n\\xe2\\x1f\\xba\\x4f\\x4c\\x65\\x13\\x8c\\x0c\\xa9\\x97\\x8d\\x98\\x21\\xf3\\x4c\\\n\\xe8\\xac\\x03\\xed\\x50\\x84\\x9a\\x8f\\x4c\\x66\\xd2\\xc9\\x26\\xcc\\x66\\xb3\\\n\\x04\\x46\\x52\\xa3\\x91\\xdb\\xe1\\x51\\x71\\x1c\\xf7\\x5a\\x47\\xc1\\xae\\x1d\\\n\\x5d\\x2b\\x9b\\x36\\xb6\\x6e\\x55\\xa9\\xa3\\x8d\\x6c\\x53\\xff\\x00\\x4d\\x76\\\n\\xaf\\x5a\\x57\\x06\\x41\\xad\\x99\\x70\\x74\\x3f\\x69\\x74\\xfd\\xea\\xf9\\x7e\\\n\\x78\\x9f\\xc3\\xe0\\x5a\\xba\\x65\\x6f\\x2c\\x37\\xe2\\x33\\xab\\x70\\xc8\\xf5\\\n\\x8a\\xe7\\x07\\xeb\\x88\\xca\\x35\\x0d\\x2a\\x43\\x54\\x55\\x48\\xdb\\x4e\\xbd\\\n\\xf1\\xaf\\x2b\\xc6\\xc0\\xeb\\x51\\xf4\\x20\\xeb\\xa9\\xd7\\x0c\\x6b\\x64\\xd6\\\n\\xd0\\xa7\\x72\\x7c\\xa4\\x7d\\x71\\x5c\\xc9\\xad\\x54\\xe9\\xb5\\x81\\xc7\\x91\\\n\\x6a\\x3b\\x29\\x6b\\xbe\\xd5\\xa3\\x11\\xa4\\x87\\xdc\\x41\\x59\\x59\\xa8\\x45\\\n\\x60\\x56\\xd5\\x7f\\xfa\\x9f\\x0a\\xfc\\x34\\xc6\\x53\\x27\\x1c\\x25\\xb8\\xde\\\n\\x29\\x94\\x88\\x1a\\xe9\\x96\\x8c\\x86\\x44\\x55\\x0b\\xa8\\xbf\\x55\\x2d\\xa7\\\n\\x25\\xbd\\x0e\\x32\\xde\\x1b\\x97\\x55\\x16\\x22\\x89\\x19\\x40\\x0d\\x2c\\xba\\\n\\xb4\\x8f\\x5d\\xcf\\x31\\xa2\\xd6\\xb4\\x14\\x18\\xcc\\xc5\\x1d\\xf1\\xe7\\x72\\\n\\x79\\x96\\x8b\\x3b\\x14\\xab\\x63\\x0a\\x8d\\x1a\\x87\\xfc\\xb2\\x3f\\x66\\x46\\\n\\x9e\\x6c\\x78\\x7e\\x52\\xeb\\x32\\x90\\xcc\\xb9\\xcc\\xc4\\x9f\\x0b\\x36\\x54\\\n\\xac\\xb9\\x68\\x75\\xd1\\x89\\x94\\xac\\xcf\\x4d\\x79\\x3b\\x8c\\x32\\xc5\\xb4\\\n\\xb2\\x16\\xae\\xf5\\x32\\x54\\xbd\\xab\\xea\\x75\\xa0\\xdb\\x52\\x71\\xe2\\x2f\\\n\\x9b\\xab\\x3c\\x99\\xe7\\x76\\x1d\\x16\\x05\\x02\\x38\\xa2\\x15\\xea\\xcb\\x15\\\n\\xed\\xd8\\x50\\x75\\xc4\\xc9\\xe1\\x30\\xc1\\x16\\x6d\\xe2\\x91\\xa3\\x22\\x35\\\n\\x55\\xe2\\x58\\xcb\\x1b\\x35\\x00\\xbc\\x20\\xd0\\x7a\\x9d\\x31\\xc7\\xf1\\x26\\\n\\x69\\x33\\x71\\xce\\x73\\x79\\xad\\x6f\\x17\\x09\\x38\\x8a\\xba\\x93\\x77\\x15\\\n\\xfa\\xf4\\x5d\\x3a\\xe2\\xfd\\x28\\x02\\xc6\\x89\\xea\\x34\\xfe\\xbe\\x58\\x91\\\n\\xa8\\xcf\\x9c\\x2b\\xc3\\x5c\\xc7\\xc1\\x97\\x5e\\x6b\\xcc\\x4a\\x79\\x6e\\x62\\\n\\xe3\\x9b\\x73\\x6d\\x70\\xf3\\xe6\\x12\\x31\\x14\\x20\\xca\\xf3\\xcf\\x46\\x66\\\n\\x1a\\xd6\\xac\\x6d\\x35\\xd6\\x88\\x29\\xab\\x11\\x4d\\x70\\x93\\x4d\\x9a\\x8d\\\n\\xf2\\x93\\xcb\\xc5\\x7c\\xbe\\x5e\\x36\\x51\\x1c\\x35\\xd2\\x1a\\xd0\\x2d\\xd4\\\n\\xf3\\x7a\\xd7\\x11\\xbc\\xaa\\x90\\xf8\\x76\\x55\\x6d\\x8b\\x82\\x80\\x3c\\x9e\\\n\\x8d\\xea\\x71\\x06\\x5a\\x30\\x60\\x86\\x14\\x95\\x57\\xe2\\x67\\x2f\\x19\\x55\\\n\\xbb\\xec\\x80\\x37\\x3d\\xe9\\x8c\\xb7\\x01\\x4c\\xd2\\x4d\\x32\\x22\\xaa\\x80\\\n\\x46\\xbb\\x1a\\x6f\\xd6\\xbf\\x2d\\x71\\x95\\xf0\\x5e\\x30\\xb4\\xc4\\x93\\xe7\\\n\\x78\\x5c\\xd7\\xc9\\x68\\x22\\x29\\x19\\x49\\x6a\\xd7\\x70\\x74\\xf4\\xad\\x70\\\n\\xb1\\x01\\xcc\\x4f\\x2d\\x01\\x6a\\xdd\\xa8\\x1d\\x3f\\x5c\\x71\\x38\\x71\\xe6\\\n\\x7c\\x4f\\x32\\xc4\\x70\\x19\\x6a\\x99\\x42\\xde\\x43\\x98\\xd2\\x8c\\xc0\\x6b\\\n\\xc2\\x6d\\x14\\xd3\\xae\\x22\\xcd\\x78\\x84\\xf2\\x4d\\x4a\\x31\\x17\\x91\\x51\\\n\\xf0\\x8b\\x2b\\xc8\\x07\\x40\\x34\\x5e\\x98\\xa7\\x02\\x60\\x35\\x00\\x34\\x8c\\\n\\xcb\\x5d\\xeb\\x4a\\x8d\\xf0\\x0c\\x59\\x7b\\x89\\xd0\\x6e\\xd6\\x05\\xd3\\x96\\\n\\x8d\\xcb\\xf9\\x5d\\x8a\\x34\\x79\\x74\\xfb\\xac\\x51\\x5a\\x9f\\x78\\x10\\x4d\\\n\\x7e\\xb8\\xf1\\x36\\x0b\\x59\\x16\\x7f\\x0e\\xdd\\x46\\xac\\x4e\\x60\\x7a\\xed\\\n\\x8b\\xdc\\xb5\\x42\\xa8\\x5a\\xec\\x8a\\xc4\\xd4\\x0f\\xa9\\xc4\\x99\\x89\\x69\\\n\\xef\\x2e\\x8a\\x2d\\x3e\\x57\\xb1\\xfa\\x85\\x4f\\xfb\\x8d\\x75\\xc7\\x87\\xbe\\\n\\x4e\\x57\\x89\\x13\\x30\\x24\\x69\\x10\\xd2\\x8d\\x0b\\x24\\x8a\\x64\\x1b\\xb2\\\n\\xd4\\x01\\x6d\\x45\\x68\\x45\\x75\\xc7\\x8b\\xf8\\xc4\\xac\\xed\\x26\\x6f\\x82\\\n\\x72\\x8e\\xc4\\x97\\x32\\xf8\\x86\\x46\\x09\\xe5\\x6a\\x9d\\x7d\\xcc\\x12\\x32\\\n\\x27\\x67\\x7e\\xe4\\x50\\x78\\xae\\x64\\x16\\xf1\\x39\\xe2\\xe0\\xf8\\x6c\\x33\\\n\\x00\\x4e\\x5d\\x2d\\xb7\\xda\\x19\\x4e\\xaa\\xc2\\x2d\\x97\\xa6\\xc3\\x0c\\x5c\\\n\\x96\\x91\\xba\\x92\\x6b\\x57\\x34\\x24\\xf5\\x24\\x9f\\x35\\x7a\\xe3\\xdf\\x73\\\n\\xb6\\xfe\\x5d\\xb7\\xa0\\xa9\\xed\\xdf\\x07\\x35\\x97\\xf2\\xc8\\x2c\\xcc\\xa0\\\n\\xd0\\xc9\\x97\\xbd\\x1a\\x75\\x14\\xa7\\x34\\x88\\x96\\xd4\\xd4\\xea\\x69\\xbe\\\n\\x16\\x75\\x1e\\xd5\\xe1\\xb9\\xda\\x4d\\x95\\xe3\\x7b\\xd6\\x87\\x66\\x39\\x4b\\\n\\x8d\\x4a\\xb4\\x0d\\x68\\x55\\x16\\xf2\\x11\\xa6\\xe4\\xc3\\x91\\x22\\xb9\\x6c\\\n\\xc4\\x4d\\x24\\x42\\x21\\x4b\\x38\\x42\\x92\\x2b\\x75\\x62\\x7a\\x01\\xf9\\xe2\\\n\\x49\\x51\\x29\\x16\\x55\\xa1\\x89\\xaa\\xd6\\xeb\\x25\\x44\\x5c\\xbb\\xb6\\xa3\\\n\\x9b\\x6a\\x0d\\x71\\x44\\x00\\xb6\\xe0\\x6b\\xf8\\xe9\\x5a\\x60\\xf1\\xe0\\x81\\\n\\x04\\x86\\xac\\x8f\\x0a\\x56\\x4d\\xf5\\x2b\\x4b\\x8f\\x46\\xa9\\xef\\xf8\\xc2\\\n\\x17\\x2a\\xb0\\xe5\\xf2\\x92\\xbe\\x74\\x88\\x10\\x46\\xbc\\x46\\x01\\x1e\\x42\\\n\\x17\\x46\\x77\\x8e\\xb1\\xeb\\xb5\\xda\\x6d\\xa9\\x60\\x1f\\x47\\x60\\xa1\\xd0\\\n\\x83\\xa1\\x3b\\xd7\\x5a\\x05\\xd0\\x60\\xbd\\x2e\\x00\\x72\\x83\\xfd\\x75\\xc5\\\n\\x02\\xd2\\x9f\\xfc\\xb0\\xb9\\xb8\\x61\\x51\\x34\\x52\\x27\\x35\\x36\\x8c\\xb5\\\n\\x24\\x3f\\x55\\xa8\\xfa\\xe3\\x27\\x1c\\xdc\\x65\\x92\\x64\\x6e\\x34\\x8a\\xa5\\\n\\xe2\\xcb\\xb2\\x11\\xa4\\xcc\\x3e\\xd6\\xbc\\xda\\x79\\x76\\xc1\\xcf\\x8f\\x13\\\n\\xca\\x98\\xd2\\xda\\xd9\\x20\\x66\\xe6\\x34\\xfd\\x98\\xab\\xee\\xda\\xf2\\xed\\\n\\xf8\\x63\\xd9\\xb2\\x99\\xa8\\x27\\x9d\\x8d\\x96\\x46\\xeb\\x56\\x6b\\x82\\xe8\\\n\\x1e\\xc3\\xb9\\x1a\\x80\\x7a\\xe3\\x37\\xe1\\xd9\\x4b\\xfd\\xab\\x2f\\x3b\\xc0\\\n\\xd3\\x3d\\xbc\\x08\\x9a\\x17\\x64\\x72\\x18\\xef\\xcc\\x08\\x18\\x97\\x30\\x78\\\n\\x99\\xdc\\xdd\\xa0\\x5f\\x65\\x23\\x03\\xa7\\x94\\x0a\\xda\\x35\\xb7\\xd0\\x0c\\\n\\x7f\\x79\\x4e\\xa0\\x78\\xe6\\x6e\\x3b\\xf2\\x99\\x79\\x3c\\xd9\\x18\\x25\\x3f\\\n\\xf9\\xb9\\x52\\xb5\\x59\\xa4\\x52\\x44\\x09\\xb8\\xae\\x33\\x0d\\x5d\\x0e\\x6e\\\n\\x66\\x62\\x58\\xb9\\xf7\\x51\\x44\\xf2\\xc8\\xe4\\xb6\\xf5\\x6d\\x14\\x75\\x4a\\\n\\x75\\xd2\\xad\\xaa\\xd1\\x5f\\x4f\\x28\\xbe\\xa4\\x20\\xf5\\xd8\\xb7\\x62\\x69\\\n\\x87\\xe8\\xa6\\xa5\\xc8\\xdf\\x84\\x94\\x6f\\xfe\\x55\\xd7\\xd3\\x4f\\x5c\\x0e\\\n\\x0a\\x08\\xa4\\x1e\\x5a\\x6d\\x10\\x35\\xb4\\x76\\xe5\\x4b\\x2e\\x63\\xf1\\x35\\\n\\x07\\x42\\xdf\\xdd\\xf9\\xa2\\xd3\\xe6\\x4b\\x20\\xa1\\xd5\\x2a\\xd4\\x00\\xda\\\n\\x6b\\x75\\x95\\x89\\x8d\\xda\\xfb\\xda\\x50\\x5b\\x8c\\xcc\\xf3\\xe4\\xd3\\x8c\\\n\\x1c\\x3c\\x66\\x02\\x62\\xe7\\x75\\xad\\x4d\\xbb\\x9a\\x8a\\xd3\\xa6\\xd8\\x78\\\n\\x72\\xb3\\x71\\x23\\x8d\\x22\\xf7\\x2c\\xe5\\x56\\x34\\xa9\\x17\\x1e\\x9d\\x0e\\\n\\xfc\\xdd\\x85\\x29\\x89\\x33\\x99\\x96\\xe3\\xe6\\xd3\\xdd\\xc0\\xd6\\xfb\\xb8\\\n\\xaf\\x08\\xb5\\xf5\\xb6\\xb5\\x51\\xe8\\x75\\xc1\\x93\\x91\\x92\\x67\\x78\\xfc\\\n\\xd5\\xe4\\xe5\\x2c\\x49\\xea\\x58\\x9d\\x3b\\x61\\x96\\x2e\\x54\\x11\\xdb\\x5d\\\n\\xc9\\xe7\\xe5\\x4f\\x98\\x07\\x19\\xc9\\xae\\xa9\\x9a\\x40\\xa0\\xd6\\xb4\\xa4\\\n\\x64\\x2d\\x3e\\x8b\\x4c\\x40\\x9b\\x15\\xa5\\xa7\\xbd\\x3a\\x7c\\xf0\\x4c\\xa9\\\n\\xef\\x82\\x79\\xc6\\x86\\xbd\\x3b\\x56\\x9f\\xae\\x2f\\x20\\x98\\xab\\x44\\x98\\\n\\x06\\xa3\\x35\\x4d\\x2e\\xe8\\xad\\x41\\xdf\\x07\\x8a\\xb7\\xdb\\x15\\xb4\\xae\\\n\\xbf\\x17\\x37\\xef\\x2d\\x47\\xcf\\xd2\\x9a\\xcd\\x1c\\xd1\\x70\\xe4\\x13\\xca\\\n\\xb5\\xf8\\x9e\\x11\\xcd\\x19\\x2d\\xd6\\x9a\\xfc\\xe9\\x88\\xf3\\x72\\xa9\\xb1\\\n\\x73\\x0d\\x99\\x5f\\xfe\\x81\\x2b\\x1e\\x9f\\x3d\\x70\\x8f\\x31\\xf4\\x51\\x4d\\\n\\xfe\\xdb\\xfc\\xfe\\x01\\xfa\\xe0\\x44\\x78\\x27\\x3b\\x9a\\x9a\\x38\\x96\\x18\\\n\\x82\\xbc\\x82\\xac\\xa8\\x1e\\x62\\x35\\x50\\xa3\\x53\\x7f\\xc8\\x75\\xc4\\x8f\\\n\\x98\\x95\\xed\\xf0\\xbf\\x03\\x39\\x85\\x4b\\xdb\\x87\\xed\\x79\\xe9\\xe4\\xc9\\\n\\xc5\\x54\\xd2\\xe2\\x04\\x19\\x8b\\x47\\xee\\xb7\\x4d\\x60\\xfb\\xb2\\x2d\\x4e\\\n\\xd4\\x08\\x4d\\xd5\\xff\\x00\\xb3\\xeb\\x89\\x38\\x2b\\xc5\\xcc\\x10\\xec\\x91\\\n\\xab\\x00\\x66\\x90\\xf3\\xdc\\xe4\\x1a\\xac\\x77\\x6a\\xe7\\x7d\\x04\\x69\\xb9\\\n\\x75\\x64\\xcf\\xcf\\x61\\x92\\x56\\xaf\\xf9\\x69\\x46\\xf2\\xc6\\x08\\xf2\\xa2\\\n\\xe8\\xa1\\x47\\x4a\\x92\\x4e\\x17\\x36\\xcb\\x64\\xf9\\xe6\\x32\\xd6\\xb5\\x1e\\\n\\xce\\xaf\\x54\\x34\\xa6\\xcd\\x5b\\x94\\x9d\\xd6\\x87\\xae\\x04\\x31\\x9a\\x53\\\n\\x94\\x1d\\x06\\x87\\xcc\\xd4\\xe8\\xcd\\xb2\\xe0\\xfb\\x74\\x86\\x3a\\x0e\\x65\\\n\\x45\\xe2\\x3b\\x31\\xf8\\x11\\x05\\x75\\xeb\\xcc\\x57\\xf8\\xe1\\x62\\x93\\x8d\\\n\\x96\\xf0\\xfa\\x96\\xf6\\x48\\xc7\\x3c\\xa4\\x52\\xd3\\x2c\\x9d\\xca\\xeb\\xc3\\\n\\xa9\\x0b\\x53\\x41\\x86\\x76\\x85\\x19\\x2f\\x0a\\x8a\\xcb\\x74\\x97\\x1f\\x2a\\\n\\xd7\\xe5\\xbe\\x12\\x48\\xf2\\x80\\x29\\xa1\\xb4\\x8a\\x7c\\xad\\xdf\\xa6\\x17\\\n\\x2f\\xec\\x2c\\x0c\\xc4\\x2a\\x82\\x1d\\x4d\\x08\\xd4\\x6d\\xaf\\xa5\\x0d\\xdd\\\n\\x48\\xdb\\x12\\x78\\xa7\\x8a\\xc9\\x0d\\xf1\\x65\\xca\\xe5\\x72\\xa1\\xc3\\x2c\\\n\\x24\\xa6\\x8d\\x25\\xb5\\xe7\\xd3\\x41\\xd3\\xed\\x63\\x36\\x73\\x79\\xeb\\x24\\\n\\xe2\\xb4\\x8b\\x52\\x18\\xbc\\x72\\x31\\x3d\\xcd\\x18\\x75\\x23\\xa5\\x36\\xc4\\\n\\x93\\x40\\xeb\\x99\\x9a\\x1a\\x84\\x73\\x43\\x6b\\x10\\x01\\x65\\x07\\x72\\x37\\\n\\x04\\xe1\\x9e\\x48\\x91\\xae\\xcc\\xc9\\xc4\\x12\\xda\\xec\\x5a\\xef\\x31\\x3b\\\n\\xeb\\x8a\\x9c\\xb8\\xbb\\x41\\xee\\xc6\\xba\\x6d\\x42\\x3a\\x54\\xd4\\xe1\\x66\\\n\\x68\\x45\\xa7\\xe0\\x7e\\x6d\\x69\\xd0\\x1e\\xba\\x60\\x88\\x22\\x8c\\x72\\x14\\\n\\x36\\x20\\x43\\x53\\xbe\\xc2\\xbc\\xa3\\x5a\\xf7\\xeb\\x8b\\x33\\x13\\x34\\xce\\\n\\x09\\xa3\\x08\\x22\\x7a\\x27\\xc2\\xa5\\x88\\x25\\x88\\xef\\x8f\\x18\\xf1\\x0b\\\n\\xa5\\x30\\xc3\\x37\\x86\\x34\\x94\\x85\\xee\\xac\\x9e\\xd7\\x68\\x0a\\x2a\\x58\\\n\\x69\\xe6\\x51\\x42\\x01\\xa6\\xc7\\x10\\x0c\\xa4\\xeb\\x33\\xce\\x8a\\x68\\xb5\\\n\\xf7\\x61\\xed\\xa3\\x32\\x91\\x50\\xa1\\xbb\\xef\\xb0\\xc0\\x5a\\x93\\x04\\x00\\\n\\xc2\\xa6\\x84\\x19\\x24\\x5f\\x3b\\x7e\\x35\\x14\\xde\\xa3\\xd3\\x14\\x11\\xb3\\\n\\xde\\xca\\xb1\\x01\\xbf\\xd9\\xf9\\x9e\\x66\\x4a\\x7a\\xe3\\xc3\\xbc\\x4b\\xc4\\\n\\x73\\x11\\xcb\\x93\\xf0\\xdf\\x0f\\x58\\xf8\\x7b\\x06\\xce\\x65\\x9e\\x48\\x19\\\n\\xe4\\x07\\xf6\\x89\\x12\\x43\\x08\\x8b\\x7e\\x2b\\x32\\xd2\\xa3\\x12\\xe6\\x24\\\n\\xa0\\x4a\\xfb\\xa8\\xcf\\xf9\\x71\\x8f\\x27\\xfa\\xa9\\xab\\x1f\\xa7\\x4c\\x71\\\n\\x57\\x9a\\x43\\x99\\x45\\x91\\xb9\\xb4\\x0a\\xfc\\xaa\\xbd\\xc9\\xff\\x00\\xe4\\\n\\x75\\xc6\\xff\\x00\\x8f\\xd7\\xfa\\xfa\\x62\\xed\\x29\\xf2\\xfc\\xbb\\x61\\xf2\\\n\\x93\\x57\\xd8\\xe6\\x60\\xfc\\x43\\xff\\x00\\xfa\\xd9\\xad\\x15\\x27\\x15\\xf2\\\n\\xc6\\xc6\\x89\\x20\\xd0\\x52\\x8d\\xf0\\x9c\\x65\\xd1\\x32\\xd2\\x3e\\x62\\xe6\\\n\\x50\\x20\\xba\\xea\\x6c\\x69\\x22\\x91\\x6a\\x91\\xa8\\x25\\x82\\xb6\\xf5\\xeb\\\n\\x8e\\x0e\\x72\\x55\\xa9\\xa3\\xcb\\x16\\x5a\\x50\\xf6\\xbd\\xb4\\x41\\x25\\x06\\\n\\xf4\\xea\\x6e\\xee\\x0e\\x33\\x0e\\x63\\x8d\\x27\\x36\\x47\\x91\\x86\\xb7\\x17\\\n\\x73\\xcf\\x2e\\x63\\x30\\xe7\\xfc\\xa8\\x92\\x8a\\x91\\xae\\xb2\\x49\\x25\\x36\\\n\\x5c\\x4b\\x9b\\x9c\\xd6\\x57\\x65\\x45\\x2b\\xa5\\xe7\\x40\\xc0\\x53\\x45\\x54\\\n\\x0a\\xa3\\xf5\\xd4\\xe1\\x23\\x62\\x21\\x59\\x28\\xd2\\xb3\\x1a\\x22\\x46\\xa7\\\n\\x4b\\xa9\\x73\\x12\\x75\\x22\\x38\\xc1\\x92\\x43\\x60\\xa6\\x24\\x08\\x6a\\x52\\\n\\xa1\\x25\\xf2\\x5e\\xab\\xb3\\x6b\\xf6\\xfd\\x7a\\xee\\x70\\x56\\xd3\\x14\\x91\\\n\\xb5\\xaf\\x0c\\x94\\xbd\\x28\\x4d\\xa5\\x87\\x63\\x4a\\xd7\\x55\\xf5\\xc3\\x3a\\\n\\xed\\x19\\x15\\xfd\\xda\\x7f\\xb8\\xc4\\x59\\x48\\xa4\\x8e\\x37\\xcd\\x4d\\x14\\\n\\x00\\xca\\x77\\x59\\x18\\x2b\\xd3\\x4f\\x86\\xa3\\xe5\\xa6\\x33\\x10\\x4e\\xbc\\\n\\x42\\xac\\xd1\\xca\\x9f\\x12\\x38\\x77\\x0c\\x24\\x1f\\x4d\\x6b\\xf6\\xc7\\xdd\\\n\\xc3\\x83\\x96\\x5e\\x52\\x18\\xa8\\xae\\xbd\\xae\\xd6\\x94\\xff\\x00\\xfa\\x9c\\\n\\x7f\\x7a\\x47\\x1a\\xc3\\x17\\x80\\xe4\\xf3\\x7e\\x2c\\xfc\\x3d\\x2b\\xec\\xd0\\\n\\x30\\xcb\\x87\\x1f\\x18\\x39\\xa6\\x8f\\x97\\xae\\x1f\\x31\\x98\\x79\\x33\\x52\\\n\\xca\\xe6\\x69\\x0c\\xbb\\x71\\x24\\x62\\xec\\x6c\\xa7\\x2f\\x33\\x1a\\x03\\x8f\\\n\\x6b\\x95\\x03\\x2d\\xc7\\x81\\x11\\x1f\\xb7\\x94\\x7c\\xff\\x00\\xca\\x88\\xea\\\n\\xe7\\x63\\xa6\\x25\\xcc\\xc7\\x2b\\xc7\\x9e\\xb6\\xeb\\xd4\\x12\\x8c\\x23\\x1a\\\n\\x21\\x51\\xa8\\xa6\\xcb\\xdb\\xe1\\xc6\\x62\\x39\\x24\\x8e\\xc8\\x72\\xef\\x1b\\\n\\x22\\x21\\xb1\\x64\\x98\\xcb\\x23\\xbc\\x8e\\xd4\\x2d\\x2c\\x8a\\x8b\\xa5\\xba\\\n\\x06\\x1c\\xda\\x82\\x72\\xc2\\x36\\xb8\\x49\\xef\\x0b\\x53\\xe1\\x66\\x67\\xfd\\\n\\x0a\\xfe\\x58\\x90\\x1f\\x8b\\x4f\\xf4\\xed\\xbe\\x0f\\x2f\\x9d\\xae\\x63\\xd3\\\n\\x4b\\xac\\x5f\\x51\\xa0\\xe5\\xf2\\xf2\\xae\\x9a\\x0a\\x67\\x73\\x72\\x32\\xab\\\n\\x3c\\x96\\x65\\x87\\x53\\xc3\\x4e\\x67\\x23\\xef\\x5b\\xaf\\xa0\\x46\\x3d\\xf0\\\n\\xf7\\x11\\x55\\x37\\x54\\xed\\x75\\x3a\\xfc\\x81\\xc4\\xef\\x1b\\x44\\xf1\\xf0\\\n\\xc3\\x0a\\x30\\x2f\\x2b\\xad\\x15\\xaf\\xa7\\xe0\\x01\\xd8\\x2d\\x3a\\x1c\\x58\\\n\\x7c\\xe6\\x8e\\xc2\\x9d\\x40\\xd6\\xa7\\xd3\\xd7\\x06\\xd4\\xa2\\x21\\x47\\x47\\\n\\xd6\\x83\\x4a\\x31\\x3d\\xea\\xc0\\x69\\xd7\\x06\\xac\\x0f\\x34\\xf3\\x39\\xf5\\\n\\x89\\x6b\\x40\\x7b\\x73\\x01\\xdb\\x46\\xea\\x31\\x9c\\x4c\\xd2\\x90\\xaf\\x2a\\\n\\x48\\x9a\\x1e\\x4d\\x49\\x20\\x37\\x6e\\x75\\xfc\\x7d\\x70\\x0f\\xc3\\xca\\x56\\\n\\x9e\\xa3\\x5c\\x13\\x5f\\x32\\xd3\\xfe\\xdf\\xf6\\x35\\xc4\\x99\\x76\\x51\\x20\\\n\\x3c\\xd4\\x3d\\x6a\\x0f\\xe1\\x4a\\xd6\\xb8\\x78\\x98\\xdd\\x0b\\xea\\xa6\\x9b\\\n\\xaf\\x6f\\x98\\xef\\xd4\\x00\\x71\\x1f\\xbd\\x5f\\x7c\\xfc\\x14\\xa1\\xaf\\x98\\\n\\x29\\x2d\\xf2\\xb7\\xa8\\xd3\\x10\\x29\\x3c\\xd1\\xc6\\x11\\xa8\\x3c\\xf5\\xd6\\\n\\xed\\x3a\\x3e\\x24\\x8f\\x23\\x9a\\x5c\\x8c\\x8c\\x08\\xe2\\x70\\x8c\\x94\\xec\\\n\\x8b\\xad\\x47\\xab\\xe1\\xe5\\x7f\\x67\\xe2\\x23\\x5e\\x73\\x72\\xcd\\x5e\\x2b\\\n\\x2e\\xab\\x4d\\x0b\\x79\\xbb\\xed\\xeb\\xae\\x22\\x97\\x25\\x2a\\x2c\\xf9\\xbc\\\n\\x8e\\x4a\\x2c\\xdd\\x1a\\xf1\\xc4\\xc9\\x23\\x2b\\xc6\\x9f\\xfd\\x57\\x79\\x2e\\\n\\xa6\\xa1\\xbb\\xe3\\x2f\\x11\\x40\\x33\\x79\\xac\\xc4\\x90\\xf1\\x2d\\xe5\\x89\\\n\\x11\\xd5\\x64\\x98\\x0e\\xad\\xb5\\x88\\xc4\\x02\\x59\\x8d\\x74\\xa1\\x1e\\x23\\\n\\x0c\\xcf\\xe2\\x6a\\xf2\\xb2\\xba\\x1b\\x5a\\x41\\xa8\\xf3\\x7d\\xd0\\x3c\\xa3\\\n\\xb7\\x94\\x63\\x29\\x14\\xf1\\xb4\\x01\\x58\\x71\\x44\\x68\\x56\\xd4\\x43\\x79\\\n\\xa9\\xa6\\x8c\\xca\\x0c\\x75\\x3f\\x6b\\xbd\\x31\\xc0\\xca\\xfb\\xb8\\xe1\\xf7\\\n\\x21\\x97\\xa4\\x71\\xd1\\x42\\x82\\x36\\x0b\\x40\\x2b\\xb6\\x94\\xc0\\x94\\x39\\\n\\x97\\xb4\\x8c\\xc5\\xd7\\xff\\x00\\xc8\\x03\\xf1\\x74\\xc3\\x4b\\x9a\\xcb\\x8c\\\n\\xc4\\xba\\xbf\\x3b\\x0b\\x58\\x9d\\x41\\xad\\x08\\x14\\xad\\x07\\xe1\\x89\\x73\\\n\\x39\\x88\\xa8\\x56\\xad\\x02\\x21\\xaa\\xa1\\x62\\xb5\\x67\\x34\\xe7\\x20\\x0a\\\n\\x01\\xb0\\x15\\xc6\\x63\\x30\\x86\\x26\\xca\\x34\\xc0\\xa9\\x84\\x1b\\xd2\\xed\\\n\\x16\\x46\\x1f\\x0f\\xcc\\x57\\x10\\x71\\xe5\\x8b\\x2b\\x13\\x4c\\x63\\x5c\\xd6\\\n\\x6f\\x91\\x48\\x4a\\x12\\xb9\\x74\\x6a\\x19\\x98\\x0d\\xc7\\x73\\xae\\xd8\\x58\\\n\\x61\\xf7\\xbc\\x30\\x38\\xb9\\xb9\\x48\\xb9\\xe4\\x6f\\x85\\x46\\xd6\\x84\\xd7\\\n\\x94\\x90\\x2b\\xde\\xb8\\x69\\xb3\\x0a\\xcd\\xc1\\x46\\xb8\\xdc\\x51\\x69\\xb9\\\n\\xa8\\xeb\\x5e\\xdd\\x76\\xc7\\x19\\x7c\\x35\\x60\\xca\\x16\\xa2\\x0f\\xd9\\x9a\\\n\\x50\\x6b\\x26\\xc4\\xdc\\x36\\x1b\\x62\\x35\\x7c\\xae\\x5e\\x39\\x93\\x43\\x68\\\n\\xb2\\x51\\xe8\\x58\\x6a\\x7b\\xd4\\xf4\\xc7\\x1b\\x2d\\x95\\x97\\x31\\x92\\x7f\\\n\\x3f\\x0c\\x16\\x29\\x4d\\x46\\xd5\\xd6\\x4d\\xae\\xe9\\xdb\\x19\\x57\\x86\\xc8\\\n\\xb8\\xae\\xca\\xd9\\x62\\xac\\x59\\x49\\x1a\\x79\\x6e\\x93\\x94\\xf4\\x65\\xb8\\\n\\x9d\\xf1\\x6c\\x81\\x52\\x42\\xe0\\x55\\xab\\xc3\\x8e\\x37\\x36\\xf1\\x19\\xa9\\\n\\x51\\x5e\\xc6\\x94\\xeb\\x81\\x0c\\x2d\\xc2\\x58\\xac\\x93\\x3d\\x99\\x9f\\xfc\\\n\\xc0\\x4d\\xbc\\x38\\xed\\x16\\xaa\\x01\\xcd\\x62\\xf3\\x94\\x2a\\x59\\x83\\x72\\\n\\xe3\\xfc\\x36\\x75\\x65\\x89\\x80\\x70\\xdc\\x13\\xb9\\x02\\xbf\\x18\\xd3\\x4b\\\n\\x87\\x70\\xd5\\xdb\\x1e\\x31\\x94\\x92\\x2c\\xc5\\x3d\\xb3\\xc1\\xc3\\x47\\x9a\\\n\\xe7\\x5a\\xac\\x7e\\x20\\xb5\\x50\\xc0\\x0a\\x06\\x22\\xb4\\x07\\x6c\\x78\\x73\\\n\\xf8\\x74\\x71\\x2c\\x19\\xa9\\x24\\x7c\\xcc\\xd1\\xc4\\x05\\x91\\x2c\\x77\\xc1\\\n\\xcc\\xbe\\xaa\\xc9\\xb6\\xad\\x6e\\x22\\xca\\xb4\\x9a\\xe5\\x95\\x06\\x64\\x35\\\n\\xca\\x44\\xac\\x82\\x4b\\x1a\\xfa\\x1a\\xea\\xc5\\xba\\xe0\\x1a\\x3c\\x70\\xc0\\\n\\x38\\xdc\\x52\\xa4\\xa3\\x57\\x48\\x78\\x67\\xcb\\x5d\\x7a\\x6a\\x3a\\xf4\\xc1\\\n\\x87\\x20\\x58\\x26\\x4f\\x3f\\x0e\\x51\\xe2\\x14\\x29\\x46\\x82\\x47\\x84\\x96\\\n\\xf8\\x95\\x64\\x8d\\xcb\\xb7\\xc4\\xdb\\xed\\x8b\\x0f\\x9a\\xb4\\xae\\xf5\\xa1\\\n\\xe6\\x3d\\xba\\xe9\\x4d\\x0f\\x4c\\x65\\x82\\x82\\x82\\xf8\\x28\\x28\\x03\\x53\\\n\\xbb\\x7a\\xe0\\x2d\\x68\\x4e\\xd7\\x90\\x2b\\x5d\\xa8\\x3d\\x7a\\x62\\x3c\\xbc\\\n\\xd9\\x98\\x8e\\x61\\xd9\\x55\\x60\\x59\\x03\\xcb\\x2d\\x7e\\xcc\\x4a\\x49\\xb4\\\n\\x51\\xaa\\x7b\\x0a\\xf5\\xc5\\x4a\\x03\\xc4\\x5a\\x58\\x47\\xc3\\xdb\\xeb\\xb7\\\n\\xd7\\x4c\\x2e\\x48\\x87\\x8c\\x70\\x94\\x65\\xe4\\xff\\x00\\xaa\\x88\\x28\\xc9\\\n\\x7f\\xdb\\x4d\\x34\\x35\\xb9\\x6a\\x75\\xc4\\x8a\\xaa\\xbc\\xf5\\xba\\xea\\x6a\\\n\\xdd\\xd8\\xef\\x51\\x84\\x87\\x33\\xe5\\x6d\\x62\\x9b\\xa5\\xb7\\x6b\\x43\\x4a\\\n\\x69\\xb6\\xb8\\x8e\\xe0\\xc9\\x97\\x48\\xcd\\x80\\xf5\\x4d\\xe4\\x2b\\xf6\\x9d\\\n\\xce\\xdd\\x6e\\xa0\\xc6\\x51\\xbf\\xbb\\x73\\x53\\xe6\\xb3\\xd1\\x97\\xcb\\x87\\\n\\x8d\\xa3\\xcb\\x2f\\x0e\\x50\\xae\\x92\\xe6\\xe9\\x6f\\x10\\x46\\x15\\xc4\\x71\\\n\\x19\\x28\\x0f\\x35\\x0d\\x46\\x19\\x32\\x71\\xc5\\x90\\x06\\x26\\xd2\\x2a\\x3c\\\n\\xd7\\x1f\\x2d\\x24\\x90\\x72\\x91\\xe5\\xd1\\x76\\x27\\x0d\\x3e\\x67\\x33\\x28\\\n\\xce\\xcd\\x01\\x4b\\x12\\x62\\xcf\\x29\\xb4\\x8a\\x5c\\x00\\xd8\\x9f\\x35\\x34\\\n\\xc4\\x19\\x3f\\x1d\\x89\\x33\\x36\\xa8\\x4e\\x2c\\x06\\xfc\\xcd\\xb5\\x01\\x78\\\n\\x95\\x21\\x68\\x8b\\xfe\\xa3\\x8f\\x0c\\xcc\\x78\\x4e\\x61\\x33\\x06\\x4e\\x23\\\n\\xa0\\x5d\\x24\\x8a\\x51\\x61\\x43\\x2e\\xc5\\x00\\x3b\\xfc\\xb4\\xc2\\x67\\xe2\\\n\\x08\\x21\\xf1\\x9c\\xae\\x5f\\xc5\\x16\\x9d\\x66\\x99\\x2c\\xcc\\x7c\\xa9\\x3a\\\n\\x4b\\xcb\\xd3\\x4c\\x4a\\x2b\\xef\\x6a\\xbc\\xb4\\xd7\\xfe\\x06\\x3c\\x53\\x3b\\\n\\x99\\x9f\\xd9\\x9b\\xc6\\xf3\\x70\\xf8\\x7c\\x2c\\x16\\xb3\\x49\\x93\\xc9\\xa1\\\n\\xcc\\xe6\\x38\\x11\\xf2\\xdc\\xce\\xef\\x0a\\x9d\\x42\\xd1\\x59\\x8e\\x83\\x16\\\n\\x84\\x92\\x38\\x72\\xd4\\x56\\x77\\x37\\xf2\\x79\\x6d\\x69\\x28\\x23\\xe3\\x48\\\n\\x41\\x24\\x46\\xa1\\x63\\x17\\xd1\\x42\\xa6\\x2f\\xaf\\x1a\\x24\\x52\\x90\\xc3\\\n\\x0b\\x05\\x8a\\x20\\x9a\\x0e\\x7d\\xce\\xb5\\xbc\\xee\\xd5\\xde\\x9a\\x8b\\x51\\\n\\x96\\x38\\x9a\\xb7\\x20\\x0a\\x34\\xea\\x2a\\x6e\\x6f\\xa9\\x63\\x8f\\x1b\\x08\\\n\\xe2\\x48\\x26\\x96\\x17\\xe4\\xa5\\xda\\xd9\\x6a\\xa5\\xba\\x6b\\x79\\xb9\\xab\\\n\\x53\\x16\\x9e\\x54\\x38\\x89\\x00\\xfd\\x9e\\x5e\\x35\\xbb\\xd6\\x94\\x6a\\x7e\\\n\\x02\\x98\\x70\\x3e\\x3a\\x2f\\xad\\x0b\\x6b\\xf9\\x62\\x62\\x79\\x23\\x41\\x68\\\n\\x27\\x66\\xa7\\x63\\xd4\\x77\\x6c\\x4c\\xcd\\xe4\\xe1\\x84\\x8c\\x74\\x5e\\x39\\\n\\x57\\x77\\xf5\\x3a\\x98\\xff\\x00\\x77\\x16\\x65\\x6a\\x33\\x19\\xb2\\x55\\x5c\\\n\\xff\\x00\\x94\\xb7\\x73\\x4d\\x5e\\x86\\xd0\\x6c\\x27\\x6d\\xf1\\x2a\\x17\\xe7\\\n\\x8d\\xab\\x22\\x48\\x41\\x24\\x48\\xbc\\x42\\xc6\\xba\\xea\\x34\\xf9\\x00\\x77\\\n\\x27\\x12\\x4b\\xb0\\x68\\xd8\\xd4\\x7d\\x8b\\xc0\\xd3\\xd5\\xb6\\x1f\\x5c\\x4e\\\n\\x5d\\x44\\x68\\xc0\\x18\\x80\\xd0\\xea\\x42\\x5d\\xf2\\x51\\xf9\\x82\\x71\\x34\\\n\\x8c\\x6b\\x1a\\x5f\\xf2\\x08\\xcb\\x46\\xd7\\xa9\\x3c\\xdf\\x86\\x1c\\xd0\\x11\\\n\\xc2\\x81\\xa3\\xee\\x1d\\x96\\x8e\\x4f\\xa7\\x91\\xbd\\x29\\x8a\\x66\\x27\\x32\\\n\\xe5\\x33\\x6c\\xe7\\x99\\x83\\x2c\\x07\\x7a\\x7d\\xd0\\x36\\xf9\\x61\\xa2\\x83\\\n\\xfc\\x4c\\xd4\\xa0\\x2b\\xfb\\x35\\xd2\\x9a\\x9e\\xff\\x00\\xed\\x8b\\xaf\\x58\\\n\\x80\\x5b\\x42\\x28\\xfc\\x2b\\xeb\\xeb\\x85\\x79\\x39\\xca\\x35\\x6b\\xbe\\x8b\\\n\\xa1\\xd7\\xb6\\xba\\xe3\\x2d\\x1e\\x62\\x65\\x5e\\x79\\x04\\x6a\\xdb\\x74\\x51\\\n\\x69\\xfc\\xeb\\x87\\x80\\xcb\\xc6\\x4b\\x81\\x4e\\x21\\xd4\\x21\\xf2\\xdb\\xb9\\\n\\xa7\\x6a\\x60\\xd0\\xd8\\x08\\xd8\\xd4\\x96\\x6d\\x80\\x5a\\xeb\\x4e\\xfa\\x60\\\n\\xc5\\x51\\xc4\\xb7\\xde\\x33\\x1a\\x2a\\xad\\xac\\x69\\x5d\\x28\\x14\\x6a\\x7a\\\n\\xed\\x84\\xcf\\x64\\x73\\x32\\xc4\\x72\\xd5\\x5f\\x76\\xd4\\xb9\\x69\\x7a\\xb5\\\n\\x2b\\xf1\\x37\\x5a\\x6d\\x89\\x21\\xf1\\x78\\xc4\\xb6\\x98\\x51\\x17\\xf6\\x5e\\\n\\x57\\x3c\\x47\\x04\\x6a\\x09\\xd2\\xe2\\x3c\\xc7\\x1e\\xcd\\x97\\xf0\\xd4\\x86\\\n\\x06\\x03\\xfc\\x44\\x39\\x8e\\x32\\xb5\\x3c\\xa1\\xef\\xd6\\xea\\xef\\x4c\\x70\\\n\\x60\\x80\\x2a\\x10\\x5a\\x49\\x54\\x51\\xa9\\x5a\\x50\\x1d\\xf9\\xb0\\x62\\x96\\\n\\x37\\xa3\\xd3\\x6a\\x80\\x40\\x3c\\xc9\\xf2\\x24\\x7d\\x75\\xc2\\xc7\\x1a\\x22\\\n\\x46\\xa0\\x5a\\x84\\xd3\\x43\\xd3\\x62\\x7f\\x1c\\x12\\xa5\\x59\\x1b\\x64\\xa9\\\n\\x24\\x53\\x7a\\x7a\\x01\\xae\\x1d\\x5e\\x19\\x16\\x89\\xbd\\xb5\\x14\\xea\\x6e\\\n\\x27\\x6a\\xd3\\x5f\\x5c\\x36\\x4d\\x9b\\x2d\\x9d\\x8c\\x70\\xd3\\x32\\x38\\x89\\\n\\xc2\\x52\\xa0\\x69\\x24\\x95\\xd0\\xd7\\xa0\\xd7\\x19\\x69\\x7c\\x22\\x48\\x72\\\n\\x19\\x4f\\x08\\xb6\\x38\\x4e\\x5c\\x01\\x94\\x79\\x9e\\xd6\\xcc\\xff\\x00\\xee\\\n\\x70\\x63\\x54\\x88\\xd3\\x4a\\x93\\xad\\x71\\x14\\x12\\xf3\\xc9\\x04\\xef\\x04\\\n\\x42\\x18\\xcb\\x47\\x31\\xad\\x97\\x6c\\x43\\x0a\\xec\\x09\\xb4\\x7e\\x38\\x52\\\n\\x06\\x65\\xa3\\x9a\\x5b\\x9e\\x34\\x20\\x25\\x7a\\xb5\\x2d\\xa1\\x0b\\xb7\\x6e\\\n\\xb8\\xa2\\xe7\\x33\\x6e\\xda\\xf2\\xcb\\x3b\\x28\\x43\\xd4\\x52\\xb4\\xfe\\x18\\\n\\xba\\xf9\\x2e\\x6e\\x82\\x56\\x17\\xb0\\x1e\\x5f\\xcf\\x5f\\x4c\\x01\\x28\\x79\\\n\\x1f\\x5e\\x25\\x5e\\xe4\\xaf\\xa0\\x35\\xd0\\x6c\\x31\\x3c\\xf0\\xe5\\xa3\\xca\\\n\\x97\\x76\\x0b\\x34\\x31\\xa0\\x93\\x87\\xa7\\x11\\xf8\\x94\\x04\\x5d\\x4a\\x56\\\n\\xb5\\xd3\\xd7\\x09\\xc2\\x9e\\x4d\\x12\\x8d\\xbb\\x71\\x14\\x79\\x03\\xd6\\xbc\\\n\\xb5\\xd7\\x4d\\xce\\x33\\x11\\x2c\\x91\\xf1\\x42\\x16\\xcb\\x4f\\x24\\x61\\x88\\\n\\xd8\\x94\\x58\\xf5\\x45\\x53\\x4a\\x79\\x4b\\xf7\\x6c\\x34\\x6d\\xe1\\x19\\xd7\\\n\\x2a\\xc6\\xb2\\x14\\xba\\xfe\\xb7\\x55\\x03\\x28\\x1a\\xd0\\x01\\xb0\\x1b\\x63\\\n\\xc5\\x8a\\x8a\\x4b\\x16\\x63\\xc2\\xed\\xa6\\xf7\\x93\\x9c\\x27\\x5f\\xc7\\x19\\\n\\x21\\x31\\x63\\xc3\\x48\\xa5\\xd3\\xc8\\xa6\\x33\\xee\\xd5\\xf5\\x35\\x0e\\xe7\\\n\\x6f\\xad\\x3a\\xe3\\x3b\\x9c\\xc8\\x78\\xb6\\x5a\\x0c\\xee\\x6e\\x49\\x26\\x93\\\n\\x2b\\x22\\x35\\xc4\\xdd\\xc2\\x56\\xaa\\xee\\xb6\\xa8\\xdb\\xa7\\xcf\\x10\\x64\\\n\\x72\\xd2\\xc7\\x9e\\xcd\\xdc\\xc7\\x33\\x3e\\x65\\xab\\x13\\x4a\\xe5\\x5b\\x32\\\n\\xca\\x84\\xdc\\xc8\\x07\\xbb\\xcb\\x46\\x28\\xba\\x33\\x35\\x08\\xd7\\xc7\\x32\\\n\\x6d\\x91\\xcd\\x78\\x6d\\x7c\\x3d\\x7c\\x53\\x31\\x3e\\x49\\x9d\\xd6\\x5f\\x61\\\n\\x9a\\xf7\\x6c\\xb2\\xcf\\xa5\\x42\\xcf\\x23\\xc8\\x03\\x51\\x91\\x5b\\x42\\x69\\\n\\x8c\\xb4\\x59\\x5c\\xfa\\x66\\xe3\\x39\\x85\\x7e\\x1e\\x68\\xba\\xcd\\xec\\xe9\\\n\\xe6\\xf7\\x2c\\x45\\xfd\\xf9\\x1a\\x82\\xb5\\x3a\\x69\\x83\\x97\\x4c\\xbb\\x2c\\\n\\x51\\x47\\x34\\xde\\xd4\\x40\\x31\\xab\\xc2\\xb7\\x22\\x2a\\xe9\\x79\\xab\\x6b\\\n\\x5e\\x4e\\x5a\\x05\\x35\\xc4\\x52\\xc3\\xe2\\xac\\x66\\x53\\x74\\xb1\\xbc\\xc5\\\n\\x41\\xa1\\xff\\x00\\x26\\x35\\xa2\\x2d\\x07\\x45\\xda\\xbb\\x6b\\x8c\\xdf\\x8b\\\n\\xe6\\xbf\\x62\\x81\\xf2\\x99\\x4e\\x23\\x09\\x1a\\x57\\x92\\x55\\x3e\\xe5\\xdb\\\n\\x98\\x00\\x39\\x19\\xb7\\x06\\xb1\\x83\\xf0\\xe0\\x3c\\xfe\\x63\\xbe\\xbf\\xfc\\\n\\x47\\xcb\\xae\\x2c\\x5d\\x25\\xf3\\x44\\xe2\\x9e\\xe6\\x41\\xe5\\x93\\x51\\xdb\\\n\\x42\\x36\\x23\\x7a\\xe1\\x92\\x5a\\x7b\\x5a\\x4b\\x64\\xd1\\x2e\\xda\\x80\\x44\\\n\\x97\\x74\\x47\\x1a\\xa6\\xfd\\x47\\x4c\\x50\\xa6\\xa6\\x82\\x37\\xec\\x63\\xd0\\\n\\x05\\xad\\x75\\xd4\\x57\\xa3\\x75\\xd7\\x1e\\xc3\\x23\\x31\\x10\\x35\\xd1\\x90\\\n\\x2b\\x5a\\xec\\x07\\x5a\\x38\\xf2\\x8f\\x43\\x88\\x95\\x26\\x95\\xd6\\x12\\xfc\\\n\\x3c\\xbb\\x48\\xe5\\x21\\x2d\\x42\\xe5\\x23\\x62\\x42\\x5f\\xa6\\xa9\\x4d\\x34\\\n\\xc5\\x19\\x75\\x3b\\x57\\x5d\\xba\\xd7\\x13\\x4e\\x24\\xa0\\x86\\x23\\x22\\xca\\\n\\x83\\xde\\x7c\\x44\\xc7\\xe8\\x1b\\x4d\\xb1\\xa5\\x6b\\x5f\\x8b\\x71\\xfb\\xdd\\\n\\x4e\\x2c\\x4b\\x9d\\x41\\x37\\x6a\\xd1\\x8f\\xc6\\xbb\\x53\\x5e\\xd8\\xf0\\x99\\\n\\xc8\\x92\\x49\\x7c\\x3f\\xc5\\xf3\\x5e\\x0e\\x15\\x10\\xc9\\x23\\xc7\\x9c\\x0b\\\n\\x9b\\xca\\x80\\xaa\\x0b\\x31\\xba\\xaa\\x28\\x09\\xf3\\x7a\\xe1\\xb3\\x59\\xe6\\\n\\x4c\\xd7\\x8a\\x0e\\x78\\x3c\\x26\\x17\\xb9\\x20\\x6b\\x6f\\x2f\\x9f\\x64\\xb8\\\n\\xb3\\x84\\xab\\x8c\\xb2\\x68\\x00\\x2d\\x2b\\x22\\x8c\\x78\\x06\\x4f\\x3c\\xe6\\\n\\x3c\\xa7\\x87\\xf8\\x56\\x5f\\x31\\x9a\\x48\\xb9\\x65\\xcc\\xf8\\xb7\\x8c\\x13\\\n\\x9d\\x7c\\x8c\\x0b\\xe5\\x51\\x0e\\x5c\\xc7\\x0c\\x86\\x9e\\xe4\\x06\\x45\\xa5\\\n\\x1c\\x8f\\xee\\x9f\\x0c\\x11\\xe5\\x89\\x87\\x85\\x20\\x87\\x94\\x41\\x1b\\xe9\\\n\\x21\\x0d\\xbf\\x1e\\x5d\\x23\\xe2\\x92\\x59\\x20\\xe3\\x36\\xaf\\x25\\x70\\x60\\\n\\x83\\x32\\xc1\\x1e\\xa2\\x8d\\xa9\\x5e\\x9c\\x95\\xe6\\x8f\\x4d\\x28\\x9a\\x0f\\\n\\xcf\\x03\\x89\\x3c\\xa4\\x2f\\x2e\\xb2\\x9f\\x41\\xf4\\xaf\\x4f\\x5d\\xf1\\x2f\\\n\\x84\\x44\\xd6\\xe4\\xe1\\xc8\\xc9\\xc4\\xcc\\x5c\\x4f\\x1b\\x38\\xc2\\xf9\\x59\\\n\\x0d\\x7c\\xb1\\x27\\xb6\\x2c\\x37\\x73\\x32\\xdb\\x25\\x47\\x2a\\xac\\x2e\\x56\\\n\\x9c\\x44\\x46\\xa1\\xdc\\x76\\x53\\xfb\\xb8\\xae\\xa3\\x7f\\x9e\\xba\\x69\\xf9\\\n\\x53\\xf7\\x8f\\x6c\\x15\\x75\\xb8\\x58\\x45\\xa0\\xe9\\xb7\\xff\\x00\\x60\\xda\\\n\\xbb\\x9d\\xf7\\x38\\x26\\xef\\x77\\x34\\xc9\\x1b\\x1d\\x39\\x68\\x5a\\x47\\x3a\\\n\\xe8\\xa2\\xf6\\x48\\x57\\xa2\\xd7\\xd3\\x19\\x75\\x70\\xd2\\x29\\xf7\\x4d\\xc1\\\n\\x02\\x95\\x92\\x37\\x40\\x86\\x9b\\xd2\\xe0\\x4e\\x9a\\x74\\xa6\\x1e\\x48\\xc1\\\n\\x59\\x23\\x0d\\x14\\xcd\\x5f\\xda\\x5d\\x12\\xc6\\x5a\\xbf\\x74\\x01\\x6d\\x28\\\n\\x46\\xf8\\xca\\x2b\\xd4\\xfb\\xa4\\x39\\x92\\x69\\xa7\\x08\\x35\\x91\\xd4\\xf5\\\n\\x62\\x6f\\x6a\\x6b\\xcb\\xdb\\x0e\\xc0\\x2e\\x9a\\x73\\x79\\x76\\x92\\xc1\\x4f\\\n\\xb3\\xad\\xde\\xbd\\x6b\\x87\\x8a\\x52\\x23\\xc8\\xaf\\x2a\\x70\\xab\\x6b\\xc8\\\n\\x1a\\xde\\x6f\\x91\\xb8\\x57\\x6f\\x35\\x41\\xc0\\x66\\x91\\xb5\\xd8\\xdd\\xd3\\\n\\xad\\x7e\\xef\\x4e\\xd8\\x22\\x36\\x60\\x07\\x66\\xdf\\xd4\\xfd\\x31\\x5b\\xb4\\\n\\xd6\\xa7\\xb7\\xcb\\x16\\x2d\\x7a\\x5c\\x2b\\xa0\\xd2\\xb5\\x95\\xbf\\x80\\xc4\\\n\\xe7\\x71\\x1c\\x65\\x47\\x2d\\x39\\x58\\xad\\x76\\xdc\\xeb\\x4b\\xb7\\xa0\\xc2\\\n\\xdb\\x5a\\xc5\\x73\\xa3\\x29\\xe5\\xa3\\xea\\xba\\x7a\\xef\\xaf\\xd9\\xd3\\x13\\\n\\x3c\\xea\\x5a\\xd0\\x91\\x24\\x8f\\xcc\\x2b\\x1b\\x77\\x3a\\xfa\\x50\\x60\\x33\\\n\\x11\\xa7\\x3b\\x03\\xd0\\x57\\x95\\x07\\x63\\x5a\\xb3\\x9f\\x51\\x4c\\x08\\xee\\\n\\xa3\\x4a\\x43\\x32\\xfd\\xca\\x73\\x57\\x19\\xf8\\xd1\\x6e\\xac\\x3c\\x85\\xb4\\\n\\x0a\\x63\\x55\\x01\\xfd\\x46\\xbb\\x61\\x92\\x59\\x19\\x4b\\xde\\x9c\\x45\\xa1\\\n\\x71\\x5a\\xf3\\xa7\\xc2\\x29\\xa9\\xdb\\xa6\\x23\\x81\\x65\\x6b\\x52\\xd5\\x42\\\n\\xed\\x73\\x9d\\xaa\\xee\\xdd\\xcb\\x73\\x1e\\x83\\x6a\\x53\\x07\\x99\\x5e\\xa2\\\n\\xda\\x7a\\x1e\\xfd\\x8d\\x70\\x05\\xc9\\xf7\\x45\\x75\\x53\\xf5\\xfe\\xba\\xef\\\n\\x80\\xa3\\xb5\\xad\\xa5\\xc6\\x9f\\x3e\\xdf\\x9f\\xae\\x06\\x89\\x10\\xb0\\xd2\\\n\\xed\\x4d\\x6b\\xdb\\xa5\\x77\\xd7\\x12\\x78\\x5e\\x5b\\xc4\\x12\\x3c\\x9f\\x28\\\n\\xbe\\x14\\x55\\x8c\\xdf\\xa1\\x35\\x46\\x24\\x84\\xae\\xa5\\xc7\\x43\\xa6\\xab\\\n\\x89\\xe4\\xcc\\x78\\x97\\xb4\\x66\\xe5\\x91\\x64\\x8a\\x97\\xac\\x6d\\x29\\x1a\\\n\\x5c\\xad\\xe7\\xab\\x6b\\x5a\\x03\\xf4\\xc2\\x65\\xf2\\xd2\\x44\\x72\\xcf\\x5f\\\n\\x76\\xeb\\xc8\\x2e\\xa8\\x65\\x0c\\xc4\\x53\\xbe\\x9d\\x47\\xcf\\x11\\xc5\\x91\\\n\\x2f\\xc5\\x56\\x76\\x9d\\xb9\\x29\\x2c\\xc4\\xec\\x2a\\x05\\x23\\x07\\xb1\\xf5\\\n\\xc1\\xf0\\xdf\\x10\\x8d\\x56\\x09\\x96\\xc9\\x33\\x31\\xb5\\x92\\xc4\\xb4\\xde\\\n\\x23\\x5f\\x37\\xa7\\x5c\\x22\\x65\\x33\\xcf\\x9b\\x78\\xd7\\x4c\\xc8\\xd6\\x46\\\n\\xbb\\x98\\x09\\x42\\xda\\x2a\\x06\\xe7\\xf2\\xae\\x27\\xcd\\x85\\xcc\\x4b\\x95\\\n\\x91\\x6c\\x92\\x33\\x98\\x32\\xfb\\xfb\\xc5\\x65\\x48\\x64\\x35\\x4b\\x97\\x4d\\\n\\x34\\xa5\\x48\\x18\\x19\\x52\\xee\\xd9\\x99\\x26\\x48\\x44\\x51\\xa6\\xbc\\x47\\\n\\xe5\\x00\\x93\\x45\\x14\\x27\\x9c\\xd7\\x4c\\x4b\\x97\\x78\\xb3\\x59\\x78\\xa3\\\n\\x9f\\xd9\\xa7\\x92\\x73\\x7a\\x5e\\x5e\\xd1\\xfb\\x9a\\xd3\\x94\\x69\\xae\\xc6\\\n\\xb8\\x39\\xaf\\x68\\x89\\xb2\\xb4\\xfd\\xac\\x66\\xf5\\x00\\x68\\x29\\x4f\\xa1\\\n\\x3a\\x69\\x85\\x93\\x88\\xb2\\x45\\x5b\\xa3\\x2a\\xd5\\x0c\\x18\\xd2\\xbf\\xbb\\\n\\x5f\\xaf\\x4c\\x13\\x14\\x5c\\x45\\xea\\xda\\x0e\\x6e\\xa3\\xe9\\x8f\\xed\\x0c\\\n\\xa6\\x29\\x27\\x98\\x66\\xfc\\x1a\\x0c\\xbc\\x71\\x2f\\x33\\x49\\x98\\xfe\\xf0\\\n\\x40\\xdf\\x41\\x56\\x1e\\xb4\\xc3\\x4f\\x98\\x49\\x21\\x79\\x65\\x8a\\x02\\x1b\\\n\\x7f\\x3a\\x45\\x15\\x83\\x6f\\xda\\xb3\\x7f\\xd9\\x5d\\xb1\\x99\\xf1\\x39\\x2f\\\n\\x41\\xe1\\x91\\xe6\\x72\\xaa\\x15\\x6e\\x59\\xb3\\x02\\xa4\\x96\\xd2\\xad\\x1c\\\n\\x31\\xb2\\xb5\\x7e\\xdb\\xc6\\x9b\\x93\\x6e\\x6f\\x3b\\x23\\x1d\\x16\\xe6\\xbd\\\n\\x18\\x65\\xd2\\x30\\x00\\x0a\\x8a\\xdc\\xab\\x51\\xa7\\x72\\x6a\\x4e\\xb8\\xcb\\\n\\x78\\x76\\x69\\x62\\x6c\\xae\\x7c\\x66\\x32\\x16\\xf5\\x51\\x9d\\x82\\x58\\xe8\\\n\\x76\\x3c\\x36\\x90\\xa7\\xcb\\xa0\\x34\\xc3\\xbb\\x1e\\x12\\xc1\\x1c\\x91\\xfe\\\n\\xcc\\x2b\\xa3\\x86\\x60\\xe2\\xbe\\x65\\x55\\xb7\\xe5\\x4d\\xf1\\xec\\xe1\\xd3\\\n\\x38\\x12\\x09\\x64\\x44\\x54\\x37\\x49\\x62\\xf2\\xae\\xed\\x71\\x7a\\x85\\xd8\\\n\\xee\\xb4\\xf4\\xcc\\xe6\\x1b\\x2b\\xec\\xbe\\xc3\\x22\\xac\\xf9\\xb1\\xee\\xe0\\\n\\x32\\x21\\x1c\\x58\\x93\\x34\\xa5\\x56\\x41\\x13\\x54\\x48\\x40\\xa5\\x29\\xad\\\n\\x08\\xc4\\x12\\x78\\x03\\xc2\\x72\\x99\\x41\\x1c\\x91\\x43\\x97\\x7f\\x78\\x5e\\\n\\x2d\\x56\\x55\\x7d\\x55\\xd5\\x6d\\x16\\x8d\\x07\\xc4\\x6a\\x70\\xd0\\xf8\\xcb\\\n\\x4c\\x7c\\x63\\x29\\x2c\\x87\\x34\\x99\\x80\\xfc\\x52\\x92\\x31\\x68\\x0d\\xed\\\n\\x50\\xfc\\xbd\\x10\\x90\\x9b\\x75\\xc1\\x25\\x6d\\x76\\xd3\\xe9\\xfe\\xd8\\x8b\\\n\\x33\\x1d\\x43\\x22\\x15\\x9a\\x9a\\xf1\\x62\\xd4\\xd3\\xd6\\x50\\x68\\x22\\xd3\\\n\\xa9\\xd4\\x60\\x4d\\x7f\\x28\\x4e\\x23\\x57\\x6a\\x1d\\x6b\\xe9\\xa6\\x84\\x52\\\n\\xba\\x0a\\x8d\\xf1\\xe2\\x19\\x7c\\xc6\\x5b\\x29\\x17\\x83\\xc8\\xbc\\x4c\\x96\\\n\\x64\\x55\\xa7\\x7c\\xdd\\x91\\xd8\\x27\\xd6\\x91\\xc0\\x94\\x68\\xc8\\x1b\\xdd\\\n\\x82\\xd0\\x8b\\x64\\xf8\\xd0\\xfc\\x2d\\xd4\\xe8\\x68\\x7e\\x9a\\x1d\\xf1\\x23\\\n\\x4c\\x03\\x4a\\x0d\\x82\\xd1\\xc9\\x41\\xbd\\x3e\\xa7\\x53\\xb7\\x6a\\xeb\\x89\\\n\\x78\\x6a\\x5e\\x49\\x4a\\xc7\\x0a\\x91\\x7c\\x57\\x12\\x6b\\x70\\xda\\x8a\\xa2\\\n\\xa6\\xb8\\x67\\xcf\\x78\\x1f\\x84\\xcd\\x42\\x38\\x4e\\xb0\\x49\\x1b\\x39\\xea\\\n\\x09\\x46\\x1b\\x7f\\x5a\\xd3\\x0d\\x16\\x5b\\xc0\\x38\\x26\\x97\\x66\\x73\\x50\\\n\\x67\\x65\\x8b\\x2d\\x96\\x8c\\x73\\x3c\\x93\\x3c\\xb7\\x24\\x4a\\x00\\xbb\\x51\\\n\\x79\\xb6\\xdb\\x77\\xc7\\xf6\\x93\\xc3\\xff\\x00\\xb3\\x19\\xbc\\xcf\\x1b\\xc3\\\n\\x17\\x21\\x99\\x93\\x39\\x14\\x69\\x28\\x79\\x64\\x9f\\xd9\\xa4\\x6c\\x90\\x70\\\n\\x0b\\x70\\xa0\\x0c\\xbc\\x63\\x73\\x6a\\x59\\x2a\\x05\\x71\\xc5\\xcc\\xc9\\x3c\\\n\\xd2\\x66\\xf8\\x4b\\x29\\x9d\\x17\\x8a\\x99\\x54\\x9d\\x5f\\x3c\\xf7\\x03\\x5b\\\n\\xf3\\x71\\xa1\\xca\\x87\\xba\\xeb\\x65\\x92\\xda\\x0a\\x56\\x6c\\xf6\\x6e\\x75\\\n\\x19\\xcc\\xd3\\x4a\\x99\\x38\\xbc\\xc2\\x05\\xe5\\xe3\\x32\\x80\\x3e\\x10\\x50\\\n\\x3f\\xfd\\x20\\x90\\xe5\\x03\\x79\\xdb\\x06\\x47\\x76\\x76\\x97\\xde\\x5c\\xf4\\\n\\xa9\\xbb\\x5a\\x93\\xfd\\x7c\\x86\\x3c\\xa5\\x9b\\xa5\\xa4\\x7e\\x5a\\x8f\\xf6\\\n\\xeb\\x8e\\x36\\x53\\x2b\\x39\\x8b\\x94\\x1a\\x59\\x20\\xeb\\x5a\\x81\\x21\\xfa\\\n\\x9f\\xc3\\x0f\\x3e\\x63\\x25\\x9a\\x17\\x66\\x14\\x2f\\x12\\x17\\x54\\xff\\x00\\\n\\x30\\x33\\x9d\\x29\\x62\\xf1\\x08\\xa5\\x75\\x00\\xd7\\xd6\\x06\\x60\\x07\\xbb\\\n\\x5a\\x75\\xf4\\x04\\xfe\\xf5\\x38\\x94\\xe8\\x1f\\x15\\xdc\\xe8\\xaa\\x31\\x33\\\n\\x56\\xba\\x7d\\x48\\xe8\\xa0\\x76\\x3d\\xfe\\x58\\x71\\x27\\x15\\x4b\\xc8\\xce\\\n\\x80\\x8d\\xaa\\xc8\\xc3\\x5f\\x42\\xbf\\xa6\\x0b\\xa4\\x9c\\x40\\xd4\\xe4\\x90\\\n\\x03\\x43\\xa5\\x48\\x3a\\x8e\\x83\\xe5\\x8c\\xd4\\x52\\x8a\\x47\\x35\\x74\\x3b\\\n\\x25\\xc2\\xdb\\xd6\\xbf\\x78\\x6b\\x8f\\x67\\xc9\\x27\\x34\\xce\\x6b\\x27\\xc0\\\n\\x0f\\x90\\xb0\\x3b\\x68\\x68\\x3e\\x6d\\xa6\\x19\\x78\\x94\\x69\\x73\\x2c\\xa5\\\n\\xdf\\xe3\\xb1\\x04\\x5a\\x57\\x65\\xbd\\xbf\\x05\\x3e\\x95\\x4c\\xb2\\x54\\x73\\\n\\xf3\\xdc\\xb4\\xb8\\x5d\\x70\\x2a\\x69\\xb0\\x1c\\xa0\\x0e\\xec\\x6e\\xc0\\x48\\\n\\xc0\\x04\\x0a\\x5b\\x5d\\x10\\x76\\x14\\xde\\xbd\\x4e\\x2b\\x61\\x58\\xfa\\xbe\\\n\\xd7\\x7c\\xbb\\xe0\\x52\\x88\\xa3\\x5b\\x8f\\x40\\x3b\\x74\\x07\\x1c\\x35\\xaf\\\n\\x3e\\x95\\xf8\\x8e\\xb4\\x27\\xd7\\xeb\\xf4\\xd3\\x19\\xb5\\xd8\\x96\\x34\\x5a\\\n\\x69\\xb2\\xe9\\xf2\\xe5\\xc7\\xb5\\x38\\xa8\\xe3\\xc6\\x29\\x4f\\xf2\\x0b\\x85\\\n\\x6d\\x6b\\xf0\\xb6\\xde\\x95\\xc5\\x23\\xa4\\x50\\x80\\x64\\x0a\\xbd\\x14\\x8b\\\n\\xab\\xea\\x5e\\xbf\\x4e\\x98\\x7b\\x15\\xa5\\x7b\\xf5\\xd2\\xdd\\x2d\\xfe\\x07\\\n\\x06\\x4d\\x14\\x1a\\x2d\\x3a\\x84\\xeb\\xf8\\xfc\\x3f\\xc3\\x19\\xa5\\x76\\x11\\\n\\x5d\\x13\\x85\\xbb\\x4b\\x89\\xa1\\xd2\\xbb\\xd2\\x9a\\xfa\\xe2\\x31\\x19\\x63\\\n\\x33\\x29\\x2c\\x3a\\x2d\\xc2\\x9a\\x76\\xaf\\x4f\\xaf\\xd6\\x9a\\x9f\\x5f\\xeb\\\n\\xae\\x2d\\x2a\\xe7\\x5e\\x6d\\x7b\\x60\\x2c\\xd7\\x8a\\x0b\\xae\\x76\\xb4\\x5d\\\n\\x41\\x40\\xbf\\x6b\\x5a\\xe2\\x1f\\x61\\x8a\\x69\\x73\\x39\\x8a\\x49\\x79\\x66\\\n\\x48\\x61\\x86\\xe0\\x0c\\xae\\xff\\x00\\x6b\\xfe\\x94\\x40\\xab\\x3f\\xa2\\x83\\\n\\x8f\\x62\\xcf\\x4c\\x7c\\x3f\\xc2\\xcc\\x2f\\x23\\x66\\x72\\x8a\\xad\\x39\\x91\\\n\\x45\\x63\\x8e\\x43\\x21\\x36\\xa9\\xa1\\x2f\\xbb\\x6d\\xbe\\x2e\\x87\\x3f\\x04\\\n\\xca\\x66\\xff\\x00\\x06\\x94\\xb6\\x43\\x07\\x09\\x9b\\xfc\\x49\\x1a\\x2c\\x92\\\n\\x48\\x45\\x0e\\xb4\\x18\\xc8\\xca\\xb9\\x4f\\xef\\x48\\xe3\\xca\\x2b\\x4a\\xb0\\\n\\xa5\\x23\\x49\\x4b\\xd9\\xc2\\x52\\x4f\\xbd\\xa5\\x09\\xe2\\x1a\\x6b\\xb6\\x11\\\n\\xb3\\x19\\x48\\xbc\\x3b\\x29\\x9a\\x46\\x96\\x18\\x9a\\x9c\\x78\\x44\\x5c\\xbc\\\n\\xb1\\x81\\x51\\x23\\x2f\\x96\\xf6\\x00\\xf9\\xba\\xe1\\xe3\\x92\\x3c\\xdc\\xfc\\\n\\xfe\\x78\\x62\\x67\\x56\\x05\\xf9\\x5b\\x96\\x80\\x54\\x6f\\xdb\\xbe\\x2f\\x94\\\n\\x18\\x80\\x3a\\xa3\\x1a\\x48\\x40\\xb4\\xe8\\x2a\\x75\\xd7\\x4f\\x5c\\x41\\x1e\\\n\\x53\\x3f\\x98\\x8a\\x46\\xcc\\x06\\x7a\\xaf\\x3b\\xa2\\x23\\xf2\\xb7\\x40\\x2a\\\n\\xc0\\x16\\x1d\\x07\\xe2\\xee\\x64\\xe2\\x3d\\x96\\xe6\\x1c\\x3d\\xa2\\x36\\x90\\\n\\x37\\x3d\\x3e\\xca\\xa8\\xa0\\x60\\x3c\\xc4\\x0c\\x71\\xfd\\x80\\x36\\x66\\x28\\\n\\x99\\x96\\x79\\x62\\x36\\xc3\\xc1\\x05\\xb9\\x59\\xbf\\x69\\x33\\xf2\\xf4\\xdb\\\n\\x5a\\xe1\\xf2\\x8f\\x19\\xc9\\x8c\\xc6\\x7a\\x3c\\xcc\\xc2\\x08\\xe9\\x3b\\x88\\\n\\xe5\\x8c\\x80\\x24\\xb6\\xb4\\x74\\x4b\\x03\\x74\\x4b\\xab\\xa8\\xae\\x22\\xcb\\\n\\xc1\\x94\\x92\\x15\\x93\\x9a\\x24\\x55\\x7d\\x49\\x61\\x59\\x1e\\xea\\x8e\\x19\\\n\\x59\\x16\\x97\\x50\\x30\\xa1\\x1a\\xd4\\x61\\x00\\x47\\x42\\x57\\x9d\\x23\\xaa\\\n\\xc7\\x5a\\xc9\\xce\\xed\\x41\\xcb\\x5e\\x7d\\xf9\\xae\\xf5\\xae\\x19\\xa3\\x39\\\n\\xc6\\x40\\xc5\\x54\\xad\\xca\\xba\\x7d\\x81\\xa5\\x17\\xb6\\xff\\x00\\x3c\\x78\\\n\\xbe\\x5f\\x21\\x33\\x73\\xf8\\x9f\\x87\\xb1\\x94\\x49\\x57\\x8e\\x5e\\x1e\\x61\\\n\\x6e\\xbb\\xe2\\x64\\x10\\x3d\\x06\\xfc\\x42\\x7b\\x9c\\x65\\x7c\\x26\\x46\\x69\\\n\\x64\\x58\\xa1\\x11\\x23\\x8b\\xa4\\x75\\x85\\x41\\x93\\x30\\xc4\\xd1\\x51\\xab\\\n\\x7b\\x35\\xcd\\x51\\xcf\\x4a\\x51\\x71\\x98\\xf6\\x28\\x0c\\xd0\\xd5\\xb2\\xd9\\\n\\x48\\x0a\\x95\\x24\\x46\\xd4\\x96\\x62\\xa1\\x6a\\xf2\\x66\\xa7\\xac\\x8f\\xad\\\n\\xa1\\x55\\x3e\\x04\\x50\\x0c\\xf3\\x40\\x32\\xd1\\x8a\\x2d\\x65\\x8d\\x2c\\xd3\\\n\\x50\\x4a\\xf3\\x6a\\x2b\\x5f\\x2e\\x32\\x79\\xe9\\xfc\\x59\\xda\\x68\\xf3\\x10\\\n\\xe6\\x16\\x3c\\xae\\x58\\x33\\x33\\x45\\x28\\x70\\x0b\\x31\\x5a\\x2b\\x52\\x9e\\\n\\x53\\xa7\\x4c\\x4f\\xe1\\x19\\x0c\\xaa\\x0c\\xf7\\xf6\\x93\\x3d\\x99\\xf1\\x3c\\\n\\xdc\\xf5\\xe6\\x8b\\x28\\xd2\\xc7\\x29\\x52\\xec\\xa5\\xd6\\x3a\\xf0\\xa0\\x54\\\n\\x5b\\x34\\x8d\\xb4\\xe7\\x7b\\x9b\\x3b\\x3f\\xed\\x81\\x9c\\x1c\\xc5\\xe1\\x23\\\n\\x6c\\xb4\\xa3\\x2f\\x57\\x8c\\xf9\\x81\\x1c\\x19\\xd6\\xed\\x34\\x37\\x2d\\x0d\\\n\\xb4\\x83\\x23\\x97\\x84\\xe5\\xbc\\x0f\\x28\\x39\\x62\\x8f\\x2c\\xd6\\x67\\x38\\\n\\x62\\x91\\xbb\\x80\\x7f\\x63\\x1b\\x02\\xc9\\x1b\\x06\\x2c\\xd5\\x92\\x5a\\xdc\\\n\\x98\\x56\\xc9\\x89\\x22\\xca\\x40\\x8c\\x6e\\x11\\xbc\\x10\\xc6\\x4f\\x97\\xde\\\n\\xb8\\x5b\\xa4\\x27\\x5a\\x73\\x03\\xd7\\x11\\x48\\x4b\\xc1\\x2c\\x90\\x1b\\x3c\\\n\\x43\\x2e\\x02\\x94\\x3e\\x57\\xe2\\x03\\xe6\\xd6\\x9a\\xd3\\xbf\\xa6\\x32\\xde\\\n\\x1f\\xe2\\xc9\\xed\\x0a\\xd9\\x8b\\x63\\xf1\\x15\\x73\\x6f\\x01\\xf5\\xbd\\x83\\\n\\x0a\\xc8\\xe8\\xf4\\xba\\x87\\x4a\\xf3\\x69\\x89\\x2c\\x91\\xf8\\x8a\\x6a\\xb6\\\n\\x2d\\x6e\\x6b\\x82\\xef\\xf0\\x81\\x52\\x17\\xd6\\xbd\\xb1\\x1e\\x50\\x4e\\x17\\\n\\x27\\x9d\\xcc\\x45\\x0c\\x84\\xf9\\x60\\x90\\xbd\\xd9\\x80\\x1a\\x84\\x00\\x52\\\n\\xcb\\xc5\\x08\\x0d\\x26\\x83\\x7c\\x4f\\x1c\\x31\\xac\\x99\\x6e\\x34\\xe2\\x2a\\\n\\xd2\\xe1\\x1a\\xc8\\x6c\\xe7\\xf8\\xb9\\x58\\x52\\xab\\x77\\x5a\\xe1\\xe4\\x75\\\n\\x61\\x0c\\x8f\\x44\\x93\\x7e\\x0c\\x87\\x5e\\x14\\x87\\xb4\\x9f\\x03\\xec\\x3c\\\n\\xb8\\x56\\x8e\\x38\\xad\\xa5\\x2b\\x4b\\x4a\\xd3\\x7f\\x29\\x23\\x53\\xb6\\x9d\\\n\\xf0\\x3c\\x34\\xc6\\xa5\\x66\\x1c\\xe5\\xff\\x00\\x67\\x0f\\x2b\\x9e\\x21\\x22\\\n\\x86\\x82\\xd6\\x06\\x9a\\xeb\\x8e\\x2e\\x76\\x76\\x8f\\xc2\\x94\\xd4\\x29\\xff\\\n\\x00\\xcc\\x66\\x18\\x16\\xf7\\x11\\x27\\x45\\x6e\\x5f\\xf1\\x07\\x4a\\x9e\\x51\\\n\\x5d\\x71\\x27\\x87\\xc3\\x96\\x6f\\x0f\\xf0\\xac\\xba\\xa4\\xcf\\x96\\x85\\xda\\\n\\x1e\\x35\\xc4\\x08\\xa4\\xcc\\x4b\\xa4\\x99\\x99\\xa6\\xad\\x45\\x6e\\x5a\\x16\\\n\\x23\\x50\\x29\\xe2\\x22\\x08\\x6b\\x06\\x73\\x2b\\xc1\\xcc\\x06\\x62\\x5a\\x5e\\\n\\x1b\\x33\\x04\\xe2\\x31\\xba\\xd1\\x71\\x15\\xf8\\x6e\\xef\\x4c\\x78\\x8c\\xf5\\\n\\xf7\\xea\\x88\\xc5\\xc2\\x80\\x83\\x8c\\xc2\\x3c\\x94\\x11\\x0e\\x80\\x73\\x35\\\n\\x29\\x4b\\x42\\x1c\\x7b\\x74\\x30\\x4b\\x36\\x45\\x32\\xd1\\x43\\x0b\\x46\\xa5\\\n\\xc4\\x61\\x7f\\x6a\\x5d\\x75\\x37\\x3c\\xa4\\xca\\xd2\\x0f\\x31\\x93\\x9a\\xb4\\\n\\x14\\x78\\x7c\\x44\\xd1\\x50\\x10\\x24\\x60\\xc1\\xc9\\xec\\x54\\x81\\x41\\xd0\\\n\\x63\\x4a\\xa6\\x5a\\xba\\x28\\x3a\\xdb\\x5d\\xdb\\xd7\\xa9\\xe9\\x5c\\x43\\xc3\\\n\\x7e\\x18\\x91\\x01\\xd5\\xe4\\x65\\x3c\\x4e\\x84\\x2b\\x74\\xdc\\x62\\x3c\\x9b\\\n\\x49\\x3c\\xe5\\x52\\x59\\x2b\\x7c\\xb6\\x10\\xab\\x4f\\x23\\xb9\\xa2\\x2d\\x4e\\\n\\xa7\\x4f\\xae\\x32\\x61\\x9b\\x99\\xe2\\x46\\xd7\\xa5\\x50\\x69\\xf4\\x45\\x5f\\\n\\xfb\\xb0\\x09\\xd2\\xbd\\x7a\\xdb\\xd0\\x0f\\xde\\xef\\xbf\\xae\\x1f\\xd5\\x58\\\n\\x81\\xd8\\x0d\\xb6\\xef\\x4f\\xcb\\x0d\\x2b\\xa5\\x34\\xf7\\x51\\xee\\xf2\\xb8\\\n\\xd0\\x9a\\x0f\\x2a\\x01\\xbb\\x1d\\xf4\\x0b\\x43\\x80\\x57\\x85\\xc0\\x36\\xd5\\\n\\x49\\x20\\xf3\\x0d\\x69\\xf5\\xc7\\xb4\\x65\\x53\\xfc\\x42\\xf3\\x59\\x5d\\x58\\\n\\x75\\xd7\\xb6\\x39\\x89\\x83\\x30\\xf1\\x30\\xd6\\x84\\xc2\\xed\\x5a\\xda\\x0d\\\n\\x41\\xb0\\xf3\\x2e\\x94\\x07\\x5d\\x86\\x02\\x71\\xa4\\xe1\\x45\\xe4\\xb9\\x8f\\\n\\x42\\x79\\x89\\x1b\\xb1\\x24\\x92\\x7a\\xe0\\xe7\\x73\\x0f\\x7b\\x34\\x76\\x46\\\n\\xa4\\x6c\\x3e\\xd8\\x07\\xd3\\x41\\xf3\\xd7\\x11\\xa3\\x56\\x3e\\x3c\\x6c\\xca\\\n\\x5b\\x51\\xc9\\xe9\\xdd\\xa9\\xa6\\x32\\x31\\xa4\\xcc\\xf3\\x48\\xc5\\xe5\\x56\\\n\\x00\\x05\\x89\\x45\\xbc\\xab\\xb8\\xac\\x9d\\xf5\\xc6\\xb5\\xe1\\xf4\\x45\\xdd\\\n\\xbb\\x0f\\x96\\x2e\\x22\\xb6\\xdd\\x21\\xf4\\x15\\xb5\\x29\\xfb\\xa0\\xf4\\xc3\\\n\\x46\\xab\\xa5\\xaf\\xc5\\x3b\\x15\\x71\\xe4\\x03\\xb9\\x6a\\xe3\\x31\\x97\\x6a\\\n\\x27\\xb8\\x94\\x44\\x0e\\xec\\xca\\x0b\\x5c\\x7e\\xf5\\xd4\\x1d\\xba\\xe2\\x29\\\n\\x52\\x65\\x82\\x53\\x95\\x4f\\x7f\\x2e\\xa8\\xac\\xa2\\xca\\x53\\xb8\\xa6\\x9d\\\n\\xfa\\xe2\\x52\\xf9\\xb6\\xce\\xab\\x48\\xd5\\x96\\xde\\x52\\x4e\\xe4\\xf6\\x73\\\n\\xd4\\x74\\xc7\\x12\\x53\\xc9\\x4a\\x6b\\xd3\\xe9\\xdf\\xe7\\x86\\x8f\\x25\\x1b\\\n\\x19\\x21\\x0e\\xcc\\x6e\\xa2\\xc6\\x83\\xcc\\xc4\\x0e\\xa4\\x6b\\x41\\x83\\x1c\\\n\\xb3\\x73\\x73\\x11\\x6e\\xa2\\xc8\\xcf\\x34\\x9d\\xc5\\x05\\x14\\xd5\\x87\\xbc\\\n\\x92\\x8b\\xb6\\x3d\\xe6\\x61\\xd7\\xec\\xa8\\x50\\xcc\\xdf\\x68\\xd0\\x56\\x94\\\n\\xf9\\xe3\\x8b\\x1e\\x7b\\x84\\x35\\xa2\\xca\\x9c\\xc5\\xbb\\x53\\xf5\\xa9\\x18\\\n\\x56\\x8b\\x33\\x96\\x7a\\xe8\\x19\\x2d\\x34\\x23\\x4d\\x4f\\x30\\xa0\\xf4\\x3e\\\n\\x6d\\x0e\\x13\\x8a\\xab\\x30\\x56\\x16\\xea\\x2d\\x6e\\xab\\xa7\\xe6\\x30\\xed\\\n\\x2e\\x57\\x86\\xd2\\xa3\\x29\\x2a\\x86\\xde\\x7a\\xdc\\x48\\x27\\x57\\xd7\\x7c\\\n\\x29\\xd5\\x98\\x14\\x2a\\x35\\x52\\x8b\\x18\\xa6\\xdf\\x2d\\x49\\xfb\\x37\\x60\\\n\\x44\\xb1\\xaf\\xbb\\xcc\\x21\\x63\\x21\\xa0\\xe1\\xf3\\x9d\\x47\\xd8\\x04\\xea\\\n\\x36\\xc0\\x6e\\x20\\xb6\\x13\\xee\\x16\\xdd\\xef\\xb6\\xf9\\x2b\\xd4\\x99\\x6b\\\n\\xcb\\xd7\\xe5\\x5c\\x68\\xc2\\x3b\\x63\\xa0\\xbf\\x98\\xb9\\x3e\\xee\\xdb\\x75\\\n\\x37\\xb3\\x79\\x57\\xea\\x77\\xc5\\x90\\x2b\\x7f\\x88\\xe5\\xb9\\x82\\xfb\\xa5\\\n\\x23\\xdd\\xd1\\xae\\xaf\\x35\\x3a\\xd4\\xe1\\xc4\\x99\\x7f\\x7b\\x1b\\xd3\\x33\\\n\\x99\\xb9\\x8b\\x1a\\x50\\x18\\xe3\\x03\\x45\\xba\\xd3\\x73\\x7a\\xef\\xa6\\x2e\\\n\\xf0\\xe4\\xc9\\x65\\x78\\x92\\xa8\\x93\\x85\\x12\\xbb\\xd1\\x36\\x66\\x76\\xe2\\\n\\x4b\\x98\\x95\\x77\\x28\\x1c\\x6b\\x40\\x29\\x89\\xa3\\x54\\x95\\xa5\\x58\\x67\\\n\\x0b\\xb3\\x73\\x33\\x6b\\x24\\x86\\xe6\\xe6\\x3b\\x9a\\x53\\xb5\\x34\\xc4\\x65\\\n\\x8a\\x71\\xb8\\x69\\x6e\\xb5\\x25\\x42\\xa8\\x40\\xdf\\x61\\x63\\x6d\\x0a\\x8d\\\n\\x4d\\xc6\\x9c\\xfa\\xe2\\xb9\\x9b\\x57\\x2f\\x0f\\x3e\\x65\\xdb\\xe3\\x28\\x21\\\n\\xe1\\xc4\\x1b\\x62\\x04\\xee\\xb7\\xd0\\xa8\\xd1\\xd1\\x45\\xa9\\x4c\\x2f\\x95\\\n\\xe2\\x75\\x95\\xed\\xb7\\xdd\\xb0\\x00\\x15\\x63\\xa5\\x37\\x01\\x51\\x57\\xa7\\\n\\x5e\\xa5\\xc7\\x15\\x12\\xad\\x5b\\x6d\\xa8\\x1e\\x83\\x12\\x64\\xbc\\x33\\x2b\\\n\\x16\\x5f\\x2b\\x36\\x77\\x2b\\x9a\\x1c\\x3b\\x82\\x91\\x07\\xb4\\x4c\\xe3\\x9a\\\n\\xe6\\xbb\\x85\\x31\\xb9\\x49\\xbb\\x7a\\xfa\\xe6\\x3c\\x4a\\x5e\\x6c\\xe6\\x69\\\n\\x4c\\x0f\\x25\\x7f\\x65\\x93\\x2b\\x53\\x04\\x3a\\xda\\xb3\\xca\\x39\\x98\\x83\\\n\\x54\\x52\\x6a\\x71\\x94\\x17\\x10\\x33\\xd0\\x3f\\x08\\x55\\x69\\xe4\\x57\\x8c\\\n\\xdd\\xa0\\xad\\x14\\x86\\x3a\\xdc\\x71\\x22\\x7b\\x8b\\xe5\\x5b\\x4f\\x16\\x74\\\n\\x54\\x41\\x6f\\x29\\xa2\\x9a\\x9e\\xdc\\xa0\\x9d\\x31\\x92\\x5c\\xeb\\x26\\x62\\\n\\x60\\xf0\\x67\\xa6\\x96\\x02\\x64\\x89\\x72\\xf1\\xd5\\xc6\\x53\\x9d\\x81\\x42\\\n\\xee\\x94\\x77\\x22\\xae\\x1a\\x94\\xdb\\x19\\x1c\\xe8\\xcd\\x91\\x91\\xe0\\x66\\\n\\x63\\xcf\\x2a\\xb1\\xe4\\xfe\\xee\\xce\\x34\\x79\\xab\\x69\\xa5\\xf3\\x2c\\xb1\\\n\\xe5\\xa3\\x8f\\x73\\x2b\\x89\\x07\\x30\\x38\\x97\\x27\\x96\\xc8\\x43\\x93\\xc8\\\n\\x38\\x4c\\xa6\\x5d\\x94\\x70\\xe1\\x8e\\x56\\x92\\x91\\x06\\x7a\\xde\\xf6\\x43\\\n\\x45\\x65\\x88\\x1d\\x14\\xb7\\x31\\x61\\x58\\x33\\x19\\xf2\\xb2\\xe6\\x23\\x02\\\n\\xb2\\x4a\\x94\\x84\\x13\\xff\\x00\\x4b\\x26\\x74\\x66\\x7d\\x56\\xf9\\xae\\x26\\\n\\xa0\\xd3\\x0c\\x81\\x17\\xee\\xa9\\x00\\x58\\x2b\\xe4\\xb7\\x45\\x51\\xf2\\x5b\\\n\\x81\\xd2\\xbd\\x70\\xd4\\x5f\\xd9\\x3d\\x4d\\x3a\\x06\\xad\\x06\\xbf\\x5f\\xf9\\\n\\xc6\\x5b\\x30\\x63\\x5c\\xc6\\x52\\x0d\\x42\\x3a\\xd5\\xd3\\x32\\x26\\xcd\\x1d\\\n\\x8f\\x9d\\x62\\x54\\x33\\x4a\\x3e\\xc1\\x51\\xa9\\x5a\\x60\\x67\\x32\\xf1\\x2c\\\n\\xb9\\x96\\xcd\\xcd\\x01\\x5b\\xae\\x72\\xb3\\x48\\xc9\\x93\\xcc\\x3d\\x2a\\x14\\\n\\x1c\\xd0\\x64\\x08\\x7a\\xc9\\x88\\x32\\x8e\\x4c\\xf9\\x7c\\x94\\x19\\xb7\\x94\\\n\\x9a\\x95\\xcc\\x66\\x56\\x0c\\xc4\\xb9\\x99\\x1a\\x9b\\x57\\x30\\x54\\x26\\x95\\\n\\xa0\\x06\\x9d\\x30\\x46\\x7b\\x8c\\x64\\xcb\\x95\\x63\\x16\\x57\\x87\\x4c\\xd9\\\n\\x5b\\x4f\\xfe\\x60\\xd4\\x45\\x61\\x64\\x59\\xdd\\x04\\x85\\x69\\xa0\\x2d\\xb3\\\n\\x78\\x5f\\x89\\xb4\\x50\\xf8\\x2e\\x7e\\x18\\xf2\\x19\\x4c\\xb0\\xd2\\x2c\\x89\\\n\\x75\\x57\\xcb\\x48\\x95\\xd6\\x57\\xf6\\x90\\x78\\xd2\\xb1\\x79\\xa4\\xba\\xbc\\\n\\xab\\x68\\xc0\\xc8\\xcb\\x30\\x54\\x20\\x84\\x94\\xf1\\x0a\\xc9\\x2d\\x68\\x61\\\n\\xdb\\x95\\x94\\x5a\\x45\\x41\\xae\\x8d\\x5d\\x0e\\x38\\xaa\\x27\\xcd\\x70\\x20\\\n\\xd6\\x5e\\x1d\\x91\\xaa\\x9f\\x8b\\x45\\xe6\\xfd\\xd0\\x4a\\xfd\\xec\\x4a\\x55\\\n\\x03\\x8c\\xb2\\x2c\\xb9\\x81\\x21\\x50\\xab\\x09\\x91\\x23\\xd2\\xb4\\xf3\\x16\\\n\\xe5\\x40\\x2b\\x51\\x5a\\x5a\\x09\\x0f\\xc5\\x40\\xa0\\xe6\\x38\\xb3\\x4d\\x09\\\n\\x2a\\x1d\\x92\\x35\\x82\\x3c\\xbc\\x0b\\xb1\\x8e\\x18\\x55\\x61\\x5d\\xd4\\x5a\\\n\\x58\\x0b\\x98\\xdb\\x28\\x88\\x08\\xd4\\xe5\\xa5\\x8a\\x08\\x3e\\x08\\xa3\\x5e\\\n\\x76\\x7e\\xec\\x6a\\xb4\\x66\\x63\\xcf\\x25\\x3a\\x6b\\x8c\\xa5\\x4f\\x11\\xf3\\\n\\x99\\xb9\\xb3\\xb3\\x94\\xdf\\xd9\\xb2\\x68\\x52\\x2d\\xfb\\xca\\x64\\xa0\\xad\\\n\\x2a\\xab\\xeb\\x8b\\x39\\x2b\\xd5\\x08\\xe6\\x14\\xdf\\x43\\xbf\\xcf\\x5f\\x5d\\\n\\x30\\x91\\xe6\\x32\\x39\\x67\\xe2\\xd4\\x5f\\xc2\\xe7\\xdb\\xcd\\x7a\\x5b\\xb7\\\n\\xf4\\x30\\xf1\\xe4\\xae\\x95\\x43\\x7c\\x6f\\x51\\x7b\\x0a\\xd1\\x41\\xe8\\x8b\\\n\\xd4\\x9d\\xf9\\x68\\x0e\\x22\\x69\\x91\\x42\\x51\\x59\\x03\\x56\\x92\\x29\\xbb\\\n\\x5e\\x53\\xa2\\xfe\\x14\\xc4\\x5c\\x3e\\x10\\x33\\x4b\\xc3\\x9c\\x96\\x2a\\x21\\\n\\x86\\xa0\\xda\\xb7\\x73\\x49\\xf6\\xa9\\x5a\\x13\\xa6\\x38\\x66\\x84\\x42\\x6c\\\n\\xf9\\x25\\x4d\\x95\\xa7\\x2d\\xcc\\x05\\x4a\\x8f\\x20\\xb4\\x1c\\x7a\\x7f\\x2f\\\n\\xe1\\x82\\x29\\x73\\x37\\xe0\\x00\\xdf\\xe4\\x07\\x73\\xea\\x06\\x87\\x0c\\x37\\\n\\x34\\x8c\\xeb\\x4f\\x81\\xf5\\x03\\xa0\\x14\\x6d\\xbd\\x06\\x11\\x92\\x65\\x0a\\\n\\x45\\x79\\xb5\\x50\\x4f\\xda\\xa6\\xdd\\xba\\xd3\\x0b\\xc6\\x90\\x51\\xa4\\xe1\\\n\\xe8\\x3b\\x8d\\x12\\xb5\\xf4\\xfa\\x9c\\x7b\\x46\\x5e\\x49\\x8e\\x5f\\x72\\x2f\\\n\\x26\\x44\\x6d\\xcd\\x2a\\x69\\x6f\\xfc\\x61\\x6f\\x53\\xc4\\x57\\xa4\\x85\\x47\\\n\\x9a\\x3d\\xcb\\x85\\xef\\xf3\\xa6\\xbe\\x98\\xd2\\x3d\\x00\\xa2\\xdd\\x4a\\x77\\\n\\xb7\\xf8\\x1a\\x7a\\xef\\x8c\\xbc\\xeb\\x0d\\x11\\x5d\\x79\\xeb\\x68\\x22\\xbc\\\n\\xc3\\xbd\\x2d\\xdb\\x97\\x61\\x86\\x92\\x37\\xbe\\x38\\xd6\\x38\\xe2\\xd6\\xa3\\\n\\x40\\x18\\xd3\\xb0\\xbd\\x9c\\x7d\\x30\\xa8\\x8a\\x5e\\x47\\x60\\x2d\\x50\\x59\\\n\\x9c\\xf6\\x50\\x2a\\xc4\\x0e\\xba\\x6b\\x89\\x26\\xcd\\x72\\xcf\\x22\\x01\\x69\\\n\\xa7\\xb9\\xfb\\xbb\\xea\\x74\\x35\\xc0\\xcc\\xc3\\x60\\x68\\x33\\x8b\\x96\\xcf\\\n\\x72\\xf3\\xa6\\x5c\\x92\\xb1\\x4f\\x5d\\xb5\\xf8\\xce\\xbd\\x36\\xc2\\xc7\\x1c\\\n\\x72\\xcd\\x32\\xa5\\x86\\x6b\\xa9\\x1b\\x54\\x1e\\x55\\x53\\x5a\\x9b\\xa8\\x75\\\n\\xa6\\x9a\\x60\\x78\\x59\\x0a\\xf0\\x87\\x92\\x39\\x16\\x97\\x6b\\xc5\\x22\\xdf\\\n\\xab\\x79\\x68\\x3b\\x61\\x16\\x55\\x68\\x89\\x05\\x8c\\x36\\xf3\\x0e\\xc2\\x96\\\n\\xd4\\xb7\\xa6\\xa7\\xeb\\xa6\\x23\\x81\\x64\\xf6\\x64\\xab\\x71\\x2a\\xae\\xac\\\n\\x94\\xd3\\x9a\\xb4\\xe6\\x6e\\xd4\\xd3\\xae\\xf8\\xf6\\xb8\\x25\\xf6\\x77\\xcc\\\n\\x7f\\x85\\x8a\\x4a\\x05\\x62\\x88\\x19\\xa7\\x63\\xf6\\x99\\xc3\\x05\\x5a\\x57\\\n\\x56\\x1b\\x6f\\x88\\xcc\\xb1\\xcc\\x25\\x9c\\xf0\\x23\\x89\\x62\\x75\\x90\\xc7\\\n\\x02\\xb5\\xa7\\x50\\x01\\x88\\xcb\\xad\\xc0\\xf3\\x92\\x4b\\x31\\xa5\\x02\\x49\\\n\\x24\\xbc\\x59\\x6f\\xbd\\xa1\\xb7\\x86\\x78\\x9a\\xb1\\x57\\x6b\\x4b\\x15\\x52\\\n\\x76\\x8f\\xff\\x00\\x96\\xd8\\x79\\xf3\\xd9\\x8c\\xce\\x69\\xfd\\xa2\\x5c\\xdc\\\n\\xf0\\x99\\xa9\\x1c\\x57\\x12\\xcd\\x1c\\x70\\x5f\\xc3\\x24\\x17\\x51\\xf1\\x8a\\\n\\x2e\\x81\\xa9\\x8b\\xde\\x2f\\x67\\x72\\xd0\\x81\\x79\\xb6\\x43\\x6b\\x33\\xc7\\\n\\x6d\\xc6\\x8c\\x3e\\x36\\xe5\\xe1\\x94\\x00\\xec\\x2d\\xc4\\xf3\\x57\\x81\\xc2\\\n\\xb9\\xa4\\x99\\xe4\\xa0\\x74\\xb0\\x95\\x8a\\x2b\\xba\\x9a\\xdb\\x18\\x8d\\x69\\\n\\x45\\xe9\\x8e\\x18\\xf0\\xdc\\xcf\\x88\\xe6\\xe7\\x96\\x28\\x72\\xc8\\xb4\\x8e\\\n\\x08\\xb8\\xc9\\xc6\\x69\\x73\\x39\\x91\\x7f\\x24\\x63\\x96\\xa5\\xab\\xc4\\xd0\\\n\\x2d\\xba\\xe2\\x29\\xb2\\x99\\x16\\x11\\x5d\\x14\\x72\\x66\\x01\\x69\\x21\\x57\\\n\\x76\\x2b\\xc3\\x5e\\xad\\x48\\x94\\xb6\\xd4\\x36\\xeb\\x4c\\x4a\\xae\\xb2\\x65\\\n\\xe2\\x86\\x53\\x0a\\xf1\\x14\\x22\\xe6\\x0c\\x6c\\x6e\\xb9\\x9a\\x8f\\x20\\x24\\\n\\x7c\\x1e\\x5e\\xba\\x6b\\x8e\\x14\\xb6\\x59\\x96\\x84\\x70\\x5a\\x23\\x44\\x26\\\n\\x2b\\x6f\\x29\\xb1\\x91\\x81\\x94\\x5a\\xad\\xe6\\xd4\\xed\\x42\\x66\\x92\\x5c\\\n\\xb9\\x19\\x93\\x34\\x5c\\x14\\x2a\\x78\\x8d\\x13\\x01\\xca\\x28\\xac\\x15\\x4d\\\n\\x0c\\xb2\\x16\\xe6\\xa6\\xda\\xd2\\xac\\x0e\\x5a\\x79\\x6f\\x90\\x46\\xd2\\xc5\\\n\\x1b\\x50\\x73\\x0b\\x91\\x17\\x53\\xee\\xbc\\xbc\\x46\\x6f\\x96\\x1e\\x1c\\xa4\\\n\\x70\\xab\\x48\\xbc\\x4b\\x01\\xf8\\x52\\xa5\\xa4\\xdf\\x9d\\xa4\\xa1\\x1d\\x2b\\\n\\x6e\\xb4\\xc6\\x6f\\x2f\\x2a\\xc8\\xb1\\x47\\x3e\\x63\\xd9\\x43\\x23\\x59\\xac\\\n\\x96\\xb9\\x8f\\xa1\\x5e\\x30\\xb8\\xb5\\xda\\x01\\x6a\\xea\\x49\\x5f\\x67\\x57\\\n\\x48\\xb8\\x68\\xd1\\xd7\\x43\\x21\\x12\\x72\\xad\\xf4\\xd5\\xe7\\xf8\\x98\\xe9\\\n\\x1d\\x4f\\x9b\\x13\\x66\\x5f\\xde\\x51\\xda\\xe6\\x66\\x6e\\x58\\xff\\x00\\x64\\\n\\x16\\x38\\x96\\xb5\\xb2\\x8d\\x27\\xa3\\x9e\\xda\\xe3\\x2d\\x96\\x41\\x2c\\xb9\\\n\\x46\\x79\\x27\\x9b\\x30\\x64\\x0d\\x22\\x54\\x07\\x2b\\xc0\\x3b\\xc6\\x2c\\x50\\\n\\x6b\\xf6\\xb1\\x2e\\x52\\x23\\x36\\x5f\\xda\\x64\\xe3\\x96\\x8f\\xdd\\xc8\\x54\\\n\\x92\\x54\\xb3\\x1a\\x88\\xb8\\xaf\\x6d\\xb1\\xf2\\xd5\\x41\\xda\\x94\\xc2\\x23\\\n\\x48\\xe0\\xc6\\xa1\\x0f\\x19\\x19\\xe4\\x62\\x06\\xac\\x58\\x56\\xb5\\x24\\xfe\\\n\\x18\\xcc\\x48\\x15\\x20\\x0f\\x3a\\xc3\\x34\\x74\\xd7\\x2a\\x9e\\xca\\x1b\\x33\\\n\\x9a\\x5a\\x74\\x45\\x24\\x2b\\x0d\\x3a\\x13\\x85\\x83\\x2b\\x19\\x1e\\x1d\\x96\\\n\\x66\\x58\\xa3\\x0b\\xcc\\x63\\x32\\x71\\x18\\x13\\xa1\\x2f\\x3d\\x07\\x10\\xf4\\\n\\x14\\x50\\x7c\\xd8\\xf0\\xc7\\x79\\xd2\\x05\\xf6\\xb8\\x61\\xca\\xf2\\x7e\\xc3\\\n\\x8b\\x56\\x7e\\x5a\\x0f\\x77\\x10\\x27\\xe9\\xa6\\x03\\xde\\x33\\x39\\x90\\xe7\\\n\\xda\\x23\\x42\\x8b\\xc0\\x85\\x6a\\xb2\\x4c\\x43\\x1e\\x70\\xac\\xad\\x18\\x2b\\\n\\xbd\\xb5\\xc7\\x8c\\xf8\\xa3\\x17\\xb9\\xa3\\x7e\\x0c\\x37\\x19\\x2b\\x1a\\x1a\\\n\\x89\\x37\\xa0\\x3e\\xef\\x85\\x1a\\x8e\\xbc\\x60\\x7c\\xb8\\x87\\xfb\\xe3\\xda\\\n\\x33\\x31\\x47\\x9c\\x9f\\x3b\\xec\\xf0\\xc7\\x5f\\x6c\\xcd\\x66\\x64\\x59\\x25\\\n\\xcb\\xaa\\x9f\\x30\\x4c\\xcb\\x40\\xb7\\xb1\\x58\\x91\\xa2\\x66\\x66\\xc6\\x47\\\n\\xc3\\xc6\\x51\\x72\\x79\\x64\\xcd\\x42\\x29\\x93\\x5f\\x71\\x93\\xbf\\xdd\\xc1\\\n\\x14\\x4e\\x02\\xfb\\x44\\xc9\\x77\\x12\\x79\\xa9\\xc3\\x32\\x02\\x20\\x50\\x8b\\\n\\x23\\xb4\\x22\\x4a\\xcf\\x9e\\x35\\x8d\\xf3\\x52\\xb0\\x4c\\x9e\\x46\\x2b\\xc8\\\n\\x89\\x9d\\xf6\\x97\\x3a\\xd1\\x18\\xcd\\xb1\\xc6\\xfc\\x2a\\xb5\\x54\\xd5\\x4e\\\n\\x38\\x2d\\x3a\\x66\\xda\\x3f\\x0c\\x93\\xc5\\x33\\x72\\xf1\\x38\\x42\\x24\\xe3\\\n\\xac\\x11\\xa0\\x56\\x26\\x40\\xd9\\x89\\xde\\x28\\x93\\x8a\\x17\\x8b\\x24\\xeb\\\n\\x66\\xd8\\xce\\x49\\x26\\x59\\xde\\x49\\x1e\\x1c\\xa6\\x58\\x82\\x24\\x5b\\xf4\\\n\\x69\\x19\\x47\\x5b\\x3d\\xc9\\x6f\\xb3\\x72\\xf7\\xc7\\x83\\x7f\\x66\\x72\\x42\\\n\\x49\\xc4\\x5e\\x15\\x9d\\xce\\x66\\x25\\x60\\xc4\\xcb\\x24\\xd9\\x5c\\xe9\\xe3\\\n\\x48\\xea\\x8c\\xaa\\x67\\x9c\\xbd\\xa1\\xc8\\xa9\\xe1\\xa2\\x63\\xc5\\x21\\xca\\\n\\xe7\\x63\\x96\\x3f\\x09\\xc9\\x65\\x13\\x3d\\x97\\x89\\x5e\\x41\\xed\\x19\\x68\\\n\\x96\\x6c\\xcb\\x49\\x39\\x1c\\x35\\xcc\\x8c\\xc4\\x79\\xac\\xc4\\x71\\x45\\xc4\\\n\\xe1\\x46\\xb1\\xb4\\xae\\x19\\xf1\\x2c\\x14\\x4c\\x96\\x45\\xb2\\x73\\xc6\\x90\\\n\\xc0\\xbc\\x3c\\xc1\\x6c\\xdc\\x6d\\x1b\\x4d\\x2c\\x93\\x5c\\xf2\\x4a\\x8a\\xd5\\\n\\x0c\\xcc\\x61\\xe2\\xb5\\xd6\\x01\\xa0\\x55\\xcb\\x06\\xf6\\xa8\\x73\\x12\\x4d\\\n\\x0c\\x40\\xad\\x99\\x2f\\x0d\\x91\\x89\\xa4\\xc5\\xc8\\x7c\\xd3\\xc9\\xa2\\xde\\\n\\x4e\\xf5\\xb5\\x6d\\x1a\\x47\\xe3\\x3f\\xda\\x19\\x33\\x51\\x4f\\xe1\\xd9\\x98\\\n\\xb2\\x5f\\xdd\\xd9\\x77\\x54\\x72\\xd9\\x79\\x53\\x35\\x33\\xca\\x39\\xa4\\x76\\\n\\x75\\x0b\\x97\\x89\\x22\\xa3\\x7c\\x6f\\x22\\xa9\\x0b\\x89\\x58\\xc7\\x2e\\x5a\\\n\\x23\\x2d\\xa9\\x97\\x42\\x25\\x9e\\x33\\x53\\xec\\xc6\\xed\\x48\\x3c\\x2a\\x0a\\\n\\x13\\x52\\xe8\\x6a\\x71\\x98\\x87\\x3b\\xe2\\x29\\x17\\xb1\\x95\\x8e\\x62\\x27\\\n\\xba\\xf4\\xda\\xd3\\x42\\x63\\x46\\x02\\x97\\xa9\\xd9\\xab\\x84\\x5f\\x0d\\x77\\\n\\x66\\xcf\\x65\\xe0\\x7b\\x0e\\x86\\x28\\x1a\\x92\\x01\\x2b\\xf9\\xa8\\x0e\\xc6\\\n\\xba\\x83\\x5e\\xb8\\x12\\x3b\\xab\\xc9\\xc9\\x1a\\xc4\\x7e\\x36\\x6a\\xe9\\x18\\\n\\xf8\\x6d\\x1c\\xcc\\xdd\\x16\\xad\\x88\\xbf\\xb3\\x2b\\x97\\x5b\\xa4\\xc8\\xc9\\\n\\x34\\xb9\\x9d\\xc4\\xac\\x72\\xa6\\x68\\x62\\xcb\\x0f\\xfa\\x49\\xcc\\x8e\\x5b\\\n\\x77\\x5a\\x63\\x3d\\xe1\\xeb\\x14\\x99\\xac\\x9f\\x82\\xf8\\x0f\\x84\\x86\\x9a\\\n\\x05\\xba\\x66\\x9f\\x35\\x9d\\xf6\\x77\\x0b\\x10\\x06\\xa9\\x70\\x93\\x30\\xf4\\\n\\x15\\xb5\\x4e\\x22\\xce\\xe4\\x65\\xe2\\xc7\\x36\\x59\\x33\\x11\\x4c\\xbe\\x6b\\\n\\x24\\x3a\\x16\\x4a\\x71\\x17\\xca\\x41\\x0c\\x35\\xc2\\x18\\x0c\\xd3\\x89\\x69\\\n\\x09\\x25\\x3d\\xdf\\xb4\\x0b\\x55\\xb5\\x50\\x10\\x29\\x2c\\x8e\\x82\\xb5\\x11\\\n\\xb2\\xd7\\x7c\\x78\\xac\\x12\\x32\\xc4\\xe8\\xaa\\xcc\\x78\\x32\\x48\\x7d\\xa1\\\n\\x58\\xaf\\x24\\xb5\\x11\\xd5\\x68\\x03\\x2a\\xb3\\x5c\\x9b\\x8a\\xeb\\x8c\\xbe\\\n\\x53\\x33\\x23\\xbc\\xb1\\xe6\\x5d\\xa5\\x78\\x9a\\xc1\\x32\\x97\\xa2\\x65\\x4b\\\n\\x33\\x9a\\x44\\x8b\\x69\\xaa\\xea\\x49\\x38\\xf0\\xf5\\xf0\\x8c\\xac\\x51\\x4d\\\n\\x99\\x14\\x99\\x85\\xcc\\xb1\\x41\\x03\\x5d\\x50\\xa6\\xa4\\xb9\\xf2\\xb3\\x0a\\\n\\x79\\x77\\xc3\\x46\\x4b\\x34\\xb2\\x59\\x7d\\xcf\\x5d\\xae\\x74\\xa2\\x8d\\x16\\\n\\xeb\\xf5\\xd6\\xba\\x8a\\xd6\\x98\\x5a\\xd0\\x9e\\xdb\\x56\\x9a\\x35\\x3b\\x24\\\n\\x7a\\x06\\x6e\\xac\\xe0\\x2e\\x07\\x56\\x60\\x75\\xef\\xca\\x6a\\x4f\\xa0\\xd8\\\n\\x0c\\x4c\\x7c\\x96\\x5e\\x15\\x97\\x53\\x4d\\x01\\x6f\\xf4\\x50\\x1f\\xae\\x28\\\n\\x8d\\x2b\\xdc\\xb5\\x0c\\x0b\\x15\\x61\\xd7\\x41\\x4c\\x34\\x59\\x8d\\x75\\x04\\\n\\x87\\x06\\xbc\\xbe\\x5f\\xc3\\x16\\xfe\\xf1\\xdc\\x6a\\x0e\\xe3\\x05\\x50\\x14\\\n\\x8c\\x82\\xe3\\xbd\\xc7\\xa0\\xc4\\x68\\x5d\\x51\\x99\\xed\\x0c\\xdf\\x08\\xdd\\\n\\x8e\\x0a\\x75\\x43\\x54\\x35\\xd2\\x8a\\x68\\x5b\\x5f\\x4f\\xc8\\xe3\\x81\\x92\\\n\\x88\\x13\\x40\\xcf\\x33\\x69\\x0c\\x17\\x10\\x2f\\x3f\\x85\\x6d\\x3b\\x92\\x7b\\\n\\xe1\\x64\\x96\\x64\\x7c\\xd1\\x1c\\xf9\\x89\\xc8\\x05\\xab\\xbf\\x0d\\x4f\\x90\\\n\\x7d\\x2b\\x89\\x44\\x40\\x3b\\x1a\\xba\\x30\\xd7\\xad\\xc2\\xb4\\xd7\\x6a\\xe2\\\n\\x8e\\x81\\x04\\xed\\xec\\xf9\\xd5\\xe8\\x40\\x6f\\x7a\\x35\\xdf\\x41\\x72\\xb7\\\n\\x6a\\x1c\\x66\\x72\\xd3\\xc2\\x2d\\x29\\x77\\x87\\xcd\\xb8\\x68\\x0a\\xf2\\x4a\\\n\\x3f\\x7b\\x55\\xfd\\xf1\\x8f\\x78\\x24\\x94\\xae\\x61\\x64\\xe5\\xaf\\x3b\\xd0\\\n\\x3a\\xdd\\x5e\\x95\\xd5\\xe9\\xa8\\x18\\x5f\\x17\\xc8\\x67\\x07\\x8b\\x67\\xe2\\\n\\x8e\\x1f\\x6d\\xcb\\x37\\x26\\x63\\x21\\x2e\\x97\\xd9\\x01\\x29\\xc5\\xcb\\x84\\\n\\x1e\\xed\\xa8\\xd2\\xb1\\x5b\\x96\\xec\\x36\\x65\\x72\\xf6\\xc7\\x42\\xb0\\x3a\\\n\\xc4\\xf1\\x34\\x93\\xb2\\x81\\xef\\x0b\\xc4\\x97\\x5d\\x30\\x6d\\x18\\x89\\x0f\\\n\\x60\\x06\\x21\\xc8\\x2d\\x92\\xc5\\xe1\\x19\\x78\\xa3\\x6c\\xb9\\x75\\x17\\xe6\\\n\\x66\\xd5\\x9b\\xad\\x6c\\xa1\\x2c\\x74\\xd2\\x2b\\x3c\\xf8\\x33\\xe5\\xb2\\xe6\\\n\\x6c\\xd8\\x0a\\x23\\x13\\xca\\xc9\\x55\\xf3\\x05\\x52\\x2b\\x42\\xd4\\x36\\xa8\\\n\\xa0\\xd4\\x62\\x1c\\x9c\\x5e\\x03\\xfd\\xdf\\xc0\\x64\\xf6\\xfc\\xdf\\x88\\xb5\\\n\\xc5\\x11\\xba\\x42\\x9c\\xa8\\xc7\\x76\\x53\\xcd\\x5a\\x6b\\x5d\\xb1\\x2b\\x4f\\\n\\x96\\x4c\\xdc\\xbc\\xf4\\x69\\xeb\\x4b\\x8a\\x46\\x63\\x21\\x56\\x8a\\x69\\x4e\\\n\\x61\\xe9\\x4c\\x4b\\x35\\x56\\x59\\xb8\\xad\\xf0\\xf4\\x3a\\x13\\x18\\xd9\\x15\\\n\\x50\\xd8\\xa1\\x46\\x83\\x0b\\x2f\\xb4\\xd4\\x96\\xa1\\x86\\xee\\x68\\x9e\\x32\\\n\\x4a\\xb6\\x95\\x05\\x54\\x47\\x6d\\x0e\\xc5\\xb1\\x14\\x72\\x51\\x82\\x9a\\x88\\\n\\x8a\\xe9\\x5b\\x92\\xba\\xd2\\xa7\\x5a\\xe1\\x21\\x01\\x63\\x85\\x18\\xbd\\xb1\\\n\\x2a\\xc4\\xaa\\x6d\\xa5\\x79\\x69\\x53\\xd0\\x7c\\xce\\x03\\x37\\x35\\xa0\\xf9\\\n\\xe8\\xca\\x88\\x4b\\x5c\\x8a\\xa7\\x40\\x64\\xf8\\x8e\\xe5\\x74\\xc4\\x6f\\x0c\\\n\\x4d\\x23\\x65\\xd9\\x69\\xc0\\xb5\\x4b\\x25\\x49\\x7e\\x5a\\x75\\x67\\x62\\xc7\\\n\\xb2\\xa0\\xf2\\xae\\x33\\x2f\\x15\\xcf\\x2b\\xa1\\xe1\\x5c\\xe4\\x58\\x84\\x06\\\n\\xac\\xae\\x76\\x2b\\x1a\\xae\\xbb\\x7d\\x93\\xcc\\xb8\\x12\\x7b\\x2d\\x72\\xd1\\\n\\x3d\\x9e\\xd3\\x43\\x22\\x55\\x6e\\x4e\\x18\\xf8\\xa4\\xbe\\x44\\x2c\\xd6\\xa9\\\n\\xf5\\xc2\\xb4\\xc2\\x3f\\x0b\\xce\\xe5\\xe2\\xa8\\x78\\xee\\x39\\x79\\x9b\\xcc\\\n\\xea\\x01\\xd2\\x37\\xa3\\x5a\\xbc\\x41\\x46\\xad\\x37\\x23\\x1f\\x17\\x30\\x61\\\n\\xc3\\x11\\xaa\\x4a\\x9e\\xd0\\x74\\x91\\x92\\x97\\x0b\\x4d\\x6c\\x51\\x4e\\x77\\\n\\xa9\\xc0\\xcc\\x0a\\x99\\x16\\x23\\x15\\x4b\\x70\\xf6\\x5a\\x88\\x23\\x14\\xf7\\\n\\xad\\xc2\\x5b\\x9b\\xad\\x1b\\xd3\\x00\\x00\\xc2\\x62\\x25\\x57\\x41\\x50\\x2e\\\n\\x72\\x6c\\x57\\xbb\\xcb\\xb1\\x3f\\x96\\x16\\x3e\\x11\\x04\\x40\\xd5\\x49\\x0a\\\n\\xa2\\xce\\xab\\x20\\x15\\x5a\\xd2\\xaa\\xe4\\x5a\\x0d\\x79\\xa9\\x8f\\xee\\xe6\\\n\\xc9\\xcc\\xce\\x24\\x7a\\xbd\\xa2\\xd9\\x24\\x8f\\x8a\\x56\\x10\\x75\\x0c\\x11\\\n\\x9a\\x8a\\xd5\\x22\\xe1\\xa6\\x98\\xe2\\x34\\x45\\x09\\x3e\\x42\\x41\\x29\\x40\\\n\\x39\\x4d\\xba\\x03\\xe9\\xeb\\x8f\\xee\\x9c\\xac\\xd2\\xd9\\x0a\\x5f\\xe2\\xf9\\\n\\x96\\x6b\\xac\\xe2\\xd1\\xbd\\x9e\\xbb\\x5e\\x15\\x12\\xd5\\xa9\\xa1\\x2a\\x0e\\\n\\xd8\\x8e\\x68\\x91\\x16\\x09\\xd4\\xaa\\xb0\\x5a\\xc9\\x0b\\x25\\x4a\\x3b\\x30\\\n\\xd3\\xdf\\x79\\xdf\\xed\\x61\\xf3\\x25\\xd1\\xe6\\xcb\\x88\\x33\\x52\\x1e\\xb5\\\n\\x47\\x5f\\x7b\\x1b\\x53\\xcc\\xd7\\x3e\\x9b\\xd9\\xa9\\xa6\\x32\\x3e\\x39\\x05\\\n\\xd2\\x4d\\x0e\\x5d\\x32\\xd9\\xe4\\x0d\\xc9\\x65\\x8b\\x2c\\x13\\xc9\\x5a\\xdc\\\n\\xb9\\x88\\x97\\x81\\xa2\\xeb\\x2b\\x37\\xda\\xc4\\x6d\\x0e\\x52\\x48\\x5b\\xc4\\\n\\xd9\\x61\\x6c\\xb5\\xbc\\xd9\\x79\\x16\\xe6\\x93\\x5d\\x3d\\xd8\\x2e\\xec\\x87\\\n\\x4e\\xb4\\xc3\\x47\\x3b\\x42\\xcb\\x96\\x91\\x61\\x0b\\x00\\x67\\x98\\xc2\\xaa\\\n\\x3d\\xdd\\xa7\\x96\\x3b\\x6a\\x6e\\x0b\\xee\\xc6\\xe5\\x9a\\x46\\x76\\x31\\x64\\\n\\xf2\\x30\\xc2\\x65\\x05\\x67\\x6c\\xbd\\x57\\x8e\\x63\\x8a\\xb6\\x92\\xdb\\x40\\\n\\xb2\\x16\\xd5\\x47\\xed\\x54\\x6b\\x5d\\xf0\\x33\\xab\\x4a\\x4e\\x51\\x52\\x32\\\n\\xda\\x09\\x18\\x04\\x8f\\x84\\x08\\xf8\\xe5\\xa2\\x2f\\x74\\x0c\\xdd\\x29\\x8c\\\n\\xe6\\x4f\\x31\\x06\\x67\\x31\\x9b\\xcc\\xe6\\x20\\x87\\x34\\xd0\\x41\\x21\\x32\\\n\\x8c\\x8d\\xeb\\x1b\\xcf\\x99\\x89\\x52\\x38\\xd5\\x66\\x63\\x37\\x0a\\x57\\x6b\\\n\\xe5\\x58\\xed\\x8d\\xec\\xc4\\x1f\\xdd\\x51\\xcf\\x14\\xb9\\x48\\xfd\\xe0\\x79\\\n\\x5e\\x48\\xe2\\x56\\x66\\x91\\xd7\\xcb\\xac\\xc5\\xde\\xd9\\x25\\x6d\\x5a\\xc6\\\n\\x5f\\x2a\\xae\\x39\\x5f\\x35\\x1b\\xe4\\xd9\\x33\\xf0\\xa4\\x53\\x70\\xb2\\xce\\\n\\x90\\x5d\\xff\\x00\\x98\\x58\\xc0\\x69\\xe8\\xc4\\x95\\x8e\\x4e\\x22\\x53\\xec\\\n\\xe2\\x66\\x82\\x1c\\xcf\\xb2\\xcf\\x98\\xcc\\x47\\x98\\x9a\\xc9\\x5c\\x4e\\x73\\\n\\x00\\x1c\\xcb\\xbc\\x85\\x68\\xef\\x21\\x53\\x1c\\x7d\\x11\\x63\\x93\\xbe\\x1b\\\n\\x3f\\x92\\x84\\xe5\\xd1\\x56\\x2c\\xb6\\x42\\x84\\x65\\xa6\\x59\\x4e\\x63\\x2e\\\n\\xb2\\xaf\\x45\\x14\\x85\\xd9\\x52\\xe1\\x83\\x91\\xcd\\x41\\x0c\\x99\\x98\\xca\\\n\\xc2\\x93\\x71\\x5f\\xde\\xdb\\x73\\x11\\x24\\x95\\xad\\xd4\\xb4\\xa4\\x42\\x97\\\n\\x2d\\x48\\xd3\\x98\\x2f\\x89\\x67\\x64\\x8b\\x24\\xb3\\xf1\\x24\\x88\\x10\\x2f\\\n\\x68\\xd6\\xd3\\x24\\x83\\x75\\x8c\\x56\\x50\\x69\\x53\\x5b\\xb7\\x2f\\x5c\\x78\\\n\\x8e\\x77\\xc5\\xfc\\x76\\x2c\\xef\\x87\\x78\\x8e\\x5a\\x78\\x25\\xcb\\x45\\x16\\\n\\x62\\x29\\x72\\xfa\\xb0\\xcb\\xcd\\x96\\x7d\\x63\\x8b\\x31\\x14\\x8e\\x14\\xe9\\\n\\x56\\xe6\\x6b\\x85\\x31\\x9a\\x93\\xc4\\x46\\x57\\x39\\x9c\\x95\\x9f\\x31\\x1c\\\n\\xf1\\xb4\\xd3\\xb4\\xe0\\x5a\\xf1\\xe5\\xf8\\x52\\xd2\\x30\\x81\\x50\\x9c\\xe5\\\n\\x43\\x19\\xcc\\x94\\x57\\x15\\xc4\\xac\\xd0\\xb6\\x63\\x33\\x9b\\x6b\\xe4\\x24\\\n\\x53\\x81\\xca\\xa0\\xa4\\x9b\\xf2\\x8d\\x38\\x68\\x9a\\x5c\\xaa\\x82\\xa6\\x98\\\n\\x5f\\x6b\\x91\\x83\\x10\\x8b\\x1c\\x4b\\x52\\x15\\x5d\\xed\\x1a\\x91\\xcf\\x36\\\n\\xc5\\xb7\\x58\\x8a\\xd3\\xf6\\xa8\\x69\\xe1\\xff\\x00\\xda\\x29\\x8c\\x89\\x37\\\n\\x83\\x64\\x73\\x31\\x47\\x18\\x3c\\x93\\x46\\x51\\xa8\\x26\\xd2\\xa6\\xd6\\x99\\\n\\xd7\\xe7\\x21\\xdf\\x0b\\x04\\x06\\x18\\xe4\\x93\\x34\\xb2\\xcb\\x2b\\x42\\xac\\\n\\xf3\\x49\\xc6\\xf7\\xe6\\x69\\x00\\xe2\\x4a\\x2c\\x0f\\x1c\\x51\\x56\\xc4\\x35\\\n\\x6a\\x73\\x9c\\x65\\xf3\\xf9\\x88\\x5a\\x35\\xf0\\xfc\\xce\\x6f\\xdb\\x64\\x53\\\n\\x62\\x16\\xce\\x22\\x44\\x20\\x65\\x0c\\x2b\\x96\\x85\\x97\\xda\\x63\\x8d\\x81\\\n\\x51\\x26\\x9a\\x29\\x6c\\x70\\xb2\\xd0\\x45\\x96\\x83\\x2f\\x55\\xe1\\xc6\\x0f\\\n\\xbc\\xab\\x71\\x3d\\xec\\x8b\\xbb\\x13\\x65\\xec\\x28\\xf2\\x10\\x59\\x9b\\x5a\\\n\\x61\\xb2\\xf9\\x78\\xb2\\xd1\\xbc\\x91\\xdb\\x71\\x0c\\x82\\xe4\\x27\\xc9\\x6f\\\n\\x32\\x56\\xee\\x2c\\x8c\\x6e\\x62\\x79\\x41\\xeb\\x87\\xc8\\xa6\\x6e\\x08\\xe4\\\n\\xc8\\xca\\xf2\\x96\\x78\\x83\\xc8\\xe2\\x92\\x3a\\x12\\xd2\\x9d\\x61\\x5b\\x8d\\\n\\xa7\\xcd\\xb0\\x26\\xb4\\xc2\\x66\\xa6\\x98\\x71\\x54\\x5b\\x45\\xde\\x48\\xc8\\\n\\x6a\\x30\\x4a\\xd2\\x30\\x6d\\x69\\x05\\x45\\x79\\x81\\xc4\\xf9\\xec\\xc5\\x60\\\n\\xc9\\xe5\\xbd\\xd6\\xb5\\x1c\\x4c\\xc3\\x52\\x99\\x78\\x07\\x95\\x9d\\x10\\x2a\\\n\\xc8\\xe3\\xf6\\x7a\\xd6\\x97\\x50\\x99\\x06\\xc4\\x85\\xa2\\x6a\\xb6\\x26\\xa1\\\n\\x13\\xb0\\x53\\xa1\\xe8\\x5b\\x9f\\xcf\\x8a\\xbf\\x9a\\x42\\x16\\x31\\xd8\\x51\\\n\\x89\\xfa\\x50\\x6d\\xdf\\x0a\\x13\\xb9\\x05\\x7a\\x54\\xf7\\x1f\\xd0\\xc2\\x2b\\\n\\x72\\x9e\\x23\\x5b\\xae\\xd4\\xa1\\xfc\\x35\\xc4\\x28\\xe8\\xb5\\x95\\x39\\xe9\\\n\\xbe\\x95\\x72\\xdf\\x2b\\x57\\x5f\\x5c\\x4e\\xf0\\x44\\x56\\x2e\\x29\\x02\\x35\\\n\\xad\\xa0\\x05\\x1a\\x6b\\xde\\xda\\x9f\\x42\\x70\\x8e\\xc6\\xb4\\x44\\x24\\x3f\\\n\\x2a\\xdc\\xfc\\x45\\x2a\\xa7\\x7d\\x4f\\x31\\xf9\\xe2\\x3f\\x67\\x66\\xe0\\x4e\\\n\\x88\\xb2\\x24\\x7a\\x07\\x29\\x26\\xa1\\x5d\\x97\\x96\\xf9\\x22\\x54\\x67\\x5e\\\n\\x6b\\x49\\xb7\\x5c\\x70\\x73\\x35\\x11\\x84\\x56\\x2f\\xf6\\x07\\x4e\\x27\\x51\\\n\\xcd\\xdb\\x98\\xee\\x75\\xc2\\xe5\\x72\\x42\\xd9\\x66\\xd6\\x69\\xa9\\x56\\x2c\\\n\\x74\\x01\\x3e\\xca\\xa2\\xf2\\xae\\x1a\\x7c\\xd7\\x18\\xc2\\x0a\\xdf\\x34\\x8c\\\n\\xc5\\x63\\x52\\xd4\\x56\\x1e\\x5d\\x87\\x6c\\x47\\x1c\\x0e\\xd3\\xfb\\x18\\x05\\\n\\xd9\\xb9\\xcc\\x91\\x12\\x2b\\xf7\\x89\\x52\\x6b\\xa7\\x41\\x8c\\xcf\\x08\\xc5\\\n\\x97\\xcd\\x8e\\x78\\xab\\xe4\\x90\\xd7\\xa6\\x9a\\x28\\x3c\\xc8\\x05\\x1c\\x5d\\\n\\x46\\xd0\\x62\\xc9\\xd9\\x07\\x8a\\x78\\x2d\\xf3\\xa1\\x0e\\xb7\\x3e\\x5d\\x0d\\\n\\x67\\x89\\x69\\xcd\\x6a\\xfe\\xda\\x2e\\x80\\x9c\\x66\\x73\\x72\\x38\\x56\\xcd\\\n\\x99\\x8c\\x15\\x36\\xaa\\xaa\\x8d\\x92\\xba\\x2d\\x3d\\x28\\x77\\x38\\x36\\x65\\\n\\x07\\x88\\x65\\x72\\xc4\\xc4\\xcd\\x06\\x6b\\x8d\\xca\\xcc\\x7d\\xed\\x89\\x24\\\n\\x72\\x4d\\xc2\\xa5\\x29\\x52\\x2b\\x44\\x92\\x9c\\xd8\\x68\\xb3\\x99\\x60\\x99\\\n\\x78\\xa7\\x39\\xaa\\x3c\\x47\\xda\\x1d\\xe3\\x6f\\x77\\x19\\x7a\\xda\\xc6\\x43\\\n\\x43\\x62\\xaa\\xa4\\x40\\x11\\xd2\\xe6\\x97\\x3b\\x9b\\x92\\x24\\x9b\\x34\\xef\\\n\\x33\\x33\\xda\\x07\\x30\\xb8\\xbc\\x9a\\xd4\\xa4\\x37\\x81\\x45\\x3b\\xf2\\x28\\\n\\x2d\\xa6\\x21\\x58\\x40\\xe2\\xb2\\x2c\\x8d\\x98\\xb5\\x05\\x92\\x0b\\xea\\xa8\\\n\\x64\\x7b\\x94\\x3f\\x98\\x2d\\x36\\x2a\\x3a\\x61\\x16\\x76\\xaa\\x47\\xe5\\xb5\\\n\\x11\\x0d\\x76\\xb9\\xc8\\x4b\\xa4\\x61\\xa8\\x05\\x9b\\x95\\x6b\\x41\\x8e\\x61\\\n\\xa5\\x8e\\x80\\x8d\\x9c\\x12\\xb6\\x1f\\xf4\\x8d\\x31\\x9a\\x0d\\x3b\\xc2\\x45\\\n\\xfc\\x30\\xa1\\x4b\\x37\\x10\\x18\\x0b\\x2e\\xdc\\xd1\\x81\\x71\\xa9\\x3e\\x82\\\n\\xb8\\x8a\\x52\\x6a\\x59\\x43\\x0b\\xb4\\x25\\x69\\x53\\x70\\xf5\\x1b\\xe0\\xc8\\\n\\xdb\\xea\\xaa\\x3a\\x30\\x61\\xab\\x7a\\x8c\\x2c\\x7f\\x6d\\xba\\xfc\\x46\\x9b\\\n\\x7e\\xee\\xb8\\xa1\\xad\\xc7\\x52\\xdd\\x3d\\x00\\xf4\\x18\\xa1\\xd7\\xf4\\xd7\\\n\\x4f\\xc3\\x01\\xde\\x78\\x32\\xb0\\x4e\\xaf\\xc4\\x33\\xf0\\x92\\x33\\x4a\\x20\\\n\\x05\\x9c\\x35\\x0b\\x54\\x28\\xa0\\x34\\xa9\\x38\\xca\\xe7\\xb3\\x53\\x99\\x61\\\n\\xe1\\xff\\x00\\x87\\x8f\\xc3\\xe6\\x89\\xf2\\x59\\x09\\xdf\\xdd\\xcb\\x1d\\x88\\\n\\x07\\x19\\xa7\\x8e\\xc2\\x4b\\x47\\x48\\xec\\x09\\x54\\x18\\xf6\\xd9\\x72\\x67\\\n\\x2f\\x22\\xb8\\xba\\x19\\x25\\xf3\\xcc\\xb3\\x89\\x16\\x46\\xb0\\x53\\x8b\\x50\\\n\\xaf\\x64\\x77\\x5a\\xb7\\xf6\\x6a\\x47\\x99\\x8a\\x18\\x59\\xcc\\x6a\\xea\\x63\\\n\\x40\\x58\\x05\\xad\\x8a\\xa5\\x86\\x8c\\xd4\\xd1\\xab\\xa7\\x7c\\x3b\\x70\\x32\\\n\\xf9\\x6e\\x3c\\x81\\x8a\\xca\\xad\\x23\\xc3\\xad\\xde\\xed\\x87\\x90\\xdc\\x11\\\n\\x85\\x0e\\xeb\\x43\\x82\\xb1\\x40\\xac\\xd9\\x82\\x18\\x4a\\xc0\\x5c\\x79\\x28\\\n\\x9b\\x75\\x57\\xa9\\x1e\\x98\\xcd\\xf1\\x44\\x91\\x4f\\x5b\\x60\\x66\\x1c\\x2a\\\n\\x2c\\x1c\\xed\\xe5\\xe6\\x2b\\xe6\\x66\\xe9\\xa8\\xeb\\x41\\x83\\x9c\\x78\\xe5\\\n\\x94\\x2e\\x56\\x49\\x52\\x58\\x94\\x98\\x95\\xd1\\x58\\x9b\\xcb\\x55\\xb9\\x4d\\\n\\x2b\\xa5\\x06\\xc0\\x63\\xda\\x32\\x79\\x79\\xa5\\x81\\x64\\x78\\x84\\xbc\\x44\\\n\\x8c\\x48\\xcb\\x46\\x76\\x5b\\x98\\x5c\\xb7\\x39\\x17\\x2d\\x45\\x41\\x15\\xa8\\\n\\x20\\x65\\x32\\x19\\x4c\\xbc\\xc7\\x37\\x35\\xd9\\xff\\x00\\x15\\xcc\\xc8\\x28\\\n\\x33\\x52\\x19\\xe8\\x64\\x56\\x3b\\xa5\\xd2\\x04\\xf4\\x58\\x46\\x86\\x87\\x0f\\\n\\x97\\x9e\\x42\\xe7\\x95\\x21\\x82\\x23\\x64\\x57\\xaa\\x51\\x6b\\xad\\xc5\\x48\\\n\\x16\\xa9\\xf2\\x9d\\xe9\\x8c\\xce\\x45\\xf4\\xcb\\x24\\x52\\x46\\x1c\\x9b\\x8e\\\n\\x5c\\x15\\x8d\\x24\\x32\\x5e\\x68\\xc8\\x26\\xcc\\x47\\x00\\x72\\x2e\\xbe\\xa1\\\n\\x77\\x03\\x1e\\x1f\\xe1\\xb9\\xf9\\x9a\\x3e\\x1b\\xc1\\xed\\x2c\\x2b\\xc5\\x39\\\n\\x7c\\xa9\\x59\\x56\\x2e\\xab\\x20\\x69\\xe3\\x53\\x09\\xea\\xaa\\xc3\\xa3\\x63\\\n\\x33\\x37\\x14\\xc3\\x97\\x68\\xfd\\x9e\\x27\\xa9\\xf7\\x31\\x46\\xb6\\xc7\\x20\\\n\\x63\\xb3\\x71\\x5c\\xc8\\x28\\x4b\\x32\\x9e\\x6a\\x8c\\x4d\\x97\\x13\\x04\\x84\\\n\\x38\\x13\\xc8\\xca\\x6e\\x9d\\x45\\x0f\\xba\\xa7\\xbc\\xcc\\x3c\\xbf\\xbe\\xb1\\\n\\x8d\\x4b\\x9a\\x69\\x8c\\x96\\x6b\\x2b\\x14\\x4b\\x26\\x63\\x39\\x3f\\xf7\\x85\\\n\\x90\\x51\\x33\\x15\\x0b\\xec\\x8f\\xed\\x0a\\x11\\x9f\\xdd\\x71\\xf8\\x91\\x8a\\\n\\x00\\xf4\\x11\\xd1\\x46\\xbe\\x1b\\x70\\xf7\\x1e\\x10\\xeb\\x33\\xc5\\x3a\\xb8\\\n\\x49\\x44\\x31\\xb4\\x39\\x75\\xe4\\xa7\\xbd\\x86\\x53\\xc5\\x17\\x51\\x4d\\x35\\\n\\xd7\\x71\\x49\\x82\\xab\\x37\\xb5\\xca\\xb9\\x7b\\x8f\\x0e\\x45\\x7e\\x55\\xbd\\\n\\xe8\\x24\\x70\\x0c\\x72\\x4c\\x42\\x84\\x69\\x64\\xb2\\x20\\xd8\\x9b\\x27\\x4e\\\n\\x67\\x90\\xb4\\x94\\xde\\xc3\\x45\\x8a\\x26\\xfb\\x45\\x7c\\xce\\x34\\xa5\\x4f\\\n\\x5c\\x4b\\xc2\\x0e\\x14\\xb3\\x84\\x94\\x80\\x0d\\x54\\xda\\x56\\xbd\\x63\\x60\\\n\\x0d\\xcb\\xe5\\xc6\\x55\\xe5\\xcc\\x66\\x24\\xf0\\x78\\x1b\\x30\\x73\\x50\\xd6\\\n\\x91\\xc2\\x0b\\xa4\\xd1\\x90\\x14\\xad\\x41\\x32\\x30\\x63\\xcc\\x57\\x55\\xc6\\\n\\x69\\xb2\\x59\\xac\\xd4\\x93\\xbf\\x89\\xc3\\xc3\\x13\\xca\\x40\\x22\\x8d\\x24\\\n\\xaf\\x0c\\x69\\xa4\\x50\\xc5\\xca\\x90\\x9f\\xdb\\x34\\x8d\\x71\\xe9\\x48\\xf3\\\n\\x32\\x49\\x23\\xc8\\x27\\x6e\\x2a\\xa9\\xd3\\x9d\\x47\\x3a\\x6b\\x50\\xd5\\x21\\\n\\x7e\\x22\\x50\\x73\\x1a\\xef\\x95\\x83\\xda\\x27\\x93\\x2b\\x93\\x86\\x26\\x46\\\n\\x91\\x83\\xd2\\x40\\xe2\\x4e\\x64\\x34\\x0f\\x12\\xd1\\x41\\x5e\\xa5\\x85\\xc0\\\n\\xd2\\xb8\\xe2\\xe7\\xf3\\x01\\xe2\\x69\\x4c\\xb2\\xaa\\x98\\xd9\\x24\\x7b\\x81\\\n\\xab\\xda\\x39\\x51\\x0b\\x8b\\xd4\\x5a\\x5e\\x4e\\x54\\xd2\\xac\\xb0\\xe6\\x8f\\\n\\xb4\\xe5\\x72\\xd1\\xc9\\x3c\\x02\\x03\\xfb\\x2e\\x0d\\x4c\\x91\\x66\\x08\\x24\\\n\\x46\\x16\\xe3\\xef\\x80\\xbc\\xaa\\x2c\\x4a\\x03\\x33\\x62\\x1b\\x66\\x8a\\x2b\\\n\\xe3\\x59\\x4b\\x57\\x9e\\x68\\xda\\x36\\xaa\\x3f\\x0c\\x31\\x8b\\x8a\\x8d\\xee\\\n\\x41\\xe7\\x35\\xb8\\xe9\\xca\\x72\\x33\\xf1\\x53\\x2d\\x98\\x88\\x3b\\x88\\x92\\\n\\x17\\x6a\\xd0\\xf2\\xa5\\x65\\xe5\\xac\\x62\\x82\\x94\\xf3\\x50\\xf7\\xc4\\x93\\\n\\x64\\xe2\\x95\\xdd\\x84\\x30\\x26\\x53\\x84\\x38\\xc9\\x16\\x5a\\x31\\x34\\xcd\\\n\\xa1\\xac\\xbc\\x4b\\x62\\x79\\x06\\xeb\\x7d\\x31\\x0c\\xe6\\x09\\x25\\x2f\\x4b\\\n\\xa2\\x8e\\xa1\\xae\\x99\\x6b\\x70\\x16\\xdc\\x2f\\xa9\\xed\\xa8\\x3a\\xe3\\x33\\\n\\x95\\x6c\\xbc\\xb1\\xad\\x2a\\xd2\\x9e\\xa6\\x84\\x70\\xf7\\x20\\xb5\\x6e\\x15\\\n\\x6d\\x4e\\x8b\\xbe\\xe9\\x7c\\xc5\\x8b\\xad\\xc8\\xa5\\x5d\\xa8\\xec\\x80\\x88\\\n\\x5b\\x7d\\x16\\x2b\\x1e\\x56\\x24\\x52\\xdd\\xc6\\x23\\x72\\x63\\x77\\x01\\xb8\\\n\\x92\\x3a\\x9a\\xdc\\xe5\\x99\\x38\\x83\\xa1\\x8b\\x9e\\xa2\\x3a\\x0a\\x05\\xf8\\\n\\x71\\x9a\\x71\\x1a\\xcd\\x99\\xa5\\xb2\\x4b\\xc0\\x75\\x90\\x52\\x32\\x63\\x69\\\n\\x4c\\x95\\x4a\\x71\\x35\\xe1\\x2d\\x59\\xe8\\x9a\\x62\\x29\\x06\\x63\\x31\\x96\\\n\\x82\\x18\\x63\\xcd\\xe6\\x73\\x0b\\x60\\x39\\xbc\\xcc\\x8b\\xc2\\x8f\\x2b\\xa8\\\n\\xd2\\xd4\\xbe\\x45\\x44\\xb6\\x97\\xc7\\x71\\x50\\x08\\x2b\\x1e\\x5e\\xd5\\xca\\\n\\xc4\\x58\\xf0\\x95\\x8a\\xa4\\x10\\xd4\\xde\\xd3\\x4d\\xca\\xa2\\x59\\x5e\\xf6\\\n\\x9d\\xaa\\x64\\x92\\x42\\xaa\\xa2\\xd0\\xb8\\x86\\xca\\x70\\xb8\\x6a\\x52\\xdd\\\n\\x8a\\xe9\\x43\\xf2\\x3e\\x6d\\x75\\xef\\x8a\\xed\\x53\\xc8\\x4f\\xc2\\x8b\\x53\\\n\\x23\\x9e\\xd4\\x8d\\x0d\\x06\\xf5\\x35\\xdb\\x4c\\x4d\\x32\\x36\\xb1\\xd4\\xd0\\\n\\x53\\x5b\\xab\\x6e\\xbb\\xfc\\xd4\\x74\\xc4\\x19\\x8a\\x81\\xa4\\xa1\\x97\\xaa\\\n\\x3d\\xb6\\x0d\\x37\\xdc\\x83\\x8b\\xa3\\xa2\\x82\\x38\\x51\\x12\\xe2\\xe6\\xba\\\n\\x88\\xd6\\xad\\x6b\\xa0\\x66\\x3f\\x51\\x8a\\xad\\xbc\\xc0\\x72\\x8f\\x90\\xa9\\\n\\xa8\\xd0\\x79\\x47\\xe7\\x8b\\x5c\\x57\\xf0\\x3d\\xf7\\xbb\\xf7\\xba\\x62\\x3c\\\n\\xec\\x6e\\x4c\\xd1\\x4c\\x1d\\xed\\xf2\\x45\\xc0\\xe7\\x8c\\x72\\xe9\\xd2\\x85\\\n\\x47\\xeb\\xae\\x12\\x08\\xee\\x3e\\xd3\\x51\\x3c\\xae\\xa4\\x5b\\x66\\xae\\xdd\\\n\\x2b\\xa0\\xa0\\x18\\x49\\xf8\\x6d\\x9c\\x48\\xd9\\x84\\xc8\\x74\\x70\\x95\\x65\\\n\\x46\\x8c\\x7d\\xe0\\xac\\xd4\\x6a\\x62\\x51\\x08\\x56\\x87\\x83\\xa2\\x0d\\x0a\\\n\\x14\\xd9\\x48\\xf8\\x48\\xdf\\x5d\\x77\\xe9\\x4c\\x59\\x3d\\x54\\x5c\\x57\\x88\\\n\\xad\\x6b\\x73\\x0a\\x55\\x7d\\x7a\\x8f\\x4e\\x98\\xcc\\x66\\xb3\\xa9\\xc4\\x5c\\\n\\x82\\xb5\\x25\\x81\\x2d\\x7c\\xc5\\xcc\\x0a\\x31\\xa6\\x96\\x84\\x2b\\xc4\\x71\\\n\\xf1\\x06\\xe5\\xd7\\x12\\x3a\\xb0\\xb3\\xd9\\xe4\\x8c\\x3a\\xe8\\xec\\x33\\x3a\\\n\\x5a\\xdd\\x74\\xaf\\x35\\x4e\\xcb\\xf3\\xc7\\x84\\x9c\\xbb\\x2b\\xe5\\x33\\x39\\\n\\x40\\xdc\\x66\\x54\\x2b\\x97\\x9e\\x94\\x9d\\x58\\xb7\\x2e\\x83\\x52\\xbe\\x66\\\n\\x4a\\xdb\\x71\\xda\\x5c\\xbe\\x53\\x2f\\x92\\x79\\xb8\\xb7\\xc7\\x44\\x58\\x2d\\\n\\x31\\x33\\x3d\\xae\\x50\\xdd\\x65\\xd2\\x96\\x91\\x62\\xa7\\x13\\x96\\xb7\\x1d\\\n\\x4f\\x8b\\xf8\\xe6\\x7a\\x45\\x5c\\xcc\\xf6\\x78\\x7e\\x4c\\x05\\x68\\xa2\\x81\\\n\\xde\\xd5\\x99\\xe1\\x0d\\x46\\xa3\\x06\\xa5\\xda\\x35\\x00\\xf9\\x9c\\x96\\x6f\\\n\\x3d\\xe1\\x79\\x7c\\xee\\x6a\\x12\\x72\\x31\\xc3\\xc3\\x3f\\xe2\\xa3\\x8a\\x1e\\\n\\x2a\\x8c\\xec\\x86\\x6d\\x32\\xca\\xd4\\x95\\x98\\x29\\x2e\\x54\\x3b\\xea\\x0d\\\n\\x7d\\x97\\xc4\\x72\\x3e\\x0a\\x72\\x2a\\xcd\\x2c\\x6f\\xec\\xbc\\x1b\\x07\\x11\\\n\\xa4\\x2d\\x0e\\x6e\\x4a\\xb3\\xbc\\x69\\xfb\\x28\\x84\\x75\\x91\\x6a\\xda\\x2a\\\n\\x8a\\x93\\x97\\xb1\\xa2\\xda\\xf8\\xf6\\xdb\\xa0\\xff\\x00\\x8c\\x15\\x8f\\x98\\\n\\x52\\xe0\\xc3\\x75\\xa7\\x35\\x3e\\xb4\\xc6\\x46\\x2f\\x32\\xf1\\x65\\x96\\x55\\\n\\xd4\\x59\\x0a\\x5c\\xcc\\x48\\xea\\x4b\\x00\\xbf\\x32\\x7d\\x29\\x59\\x5d\\x63\\\n\\x50\\x00\\x6a\\xb0\\x5d\\x3e\\xc8\\x24\\xed\\x41\\xd7\\xd4\\x61\\xb8\\x4f\\xc6\\\n\\xb1\\x58\\x28\\x88\\x82\\x8a\\x07\\x4b\\xeb\\x4d\\x3e\\x2c\\x49\\xed\\xf1\\x7b\\\n\\x1c\\x9a\\x98\\x66\\x73\\xc5\\x53\\x42\\x79\\x28\\x07\\x29\\xa2\\xdd\\xf9\\x69\\\n\\x5c\\x2f\\xbe\\xcd\\xd4\\xa5\\xcd\\xfe\\x15\\xb9\\x16\\xfe\\x1a\\x93\\x52\\x3c\\\n\\xc7\\x51\\x4a\\xe9\\x88\\xbf\\xbb\\x72\\xf9\\xb6\\x88\\xca\\x10\\xc8\\xf0\\xf0\\\n\\xef\\xaa\\x91\\xa2\\x56\\xe1\\x12\\xb8\\x5a\\xb1\\xde\\xea\\x0e\\xb8\\x6f\\x6d\\\n\\x0b\\x99\\x8c\\x4a\\xd2\\x7b\\xd6\\x8d\\x21\\x4c\\xab\\x32\\xf0\\xd6\\x34\\xa1\\\n\\x79\\x24\\x60\\x28\\x42\\x8b\\xbe\\x5c\\xb4\\x1e\\xd5\\x94\\xe2\\x42\\x6e\\x58\\\n\\x62\\xb9\\x84\\x68\\x55\\xee\\x65\\x65\\x70\\x8c\\x57\\x86\\x55\\x41\\xaf\\xbc\\\n\\x35\\xb8\\x92\\x41\\x19\\x3f\\x6e\\x9b\\xc3\\x23\\xf0\\xe1\\x9f\\x94\\x65\\xf9\\\n\\x2d\\xcd\\x4b\\x79\\xb6\\x28\\x96\\xbc\\xa1\\x21\\x49\\x10\\xc8\\x90\\x85\\x8f\\\n\\x89\\x73\\x3b\\x31\\xa8\\x19\\xa5\\xcb\\xe6\\xdb\\x37\\x09\\x9d\\x9d\\x1d\\xde\\\n\\x36\\xb5\\x59\\x45\\x23\\x8f\\x85\\x41\\x62\\xeb\\x6d\\xd5\\x3d\\xc9\\xc5\\x69\\\n\\x5a\\xeb\\x68\\xfe\\x07\\xa6\\x2e\\xd1\\x8a\\x8a\\xd3\\x56\\xb3\\xd7\\xe9\\xf9\\\n\\x62\\x6e\\x30\\x8c\\xc9\\x24\\x65\\x6f\\x65\\x53\\x69\\xd3\\x9a\\x84\\x74\\x2a\\\n\\x0e\\xba\\x12\\x35\\x07\\x6c\\x3b\\xe5\\xa1\\x9f\\x3b\\x0a\\xe5\\xcc\\x99\\xe9\\\n\\x23\\x5a\\x47\\xec\\xf2\\x3c\\x6a\\x94\\x5a\\x55\\xe2\\x0c\\x8f\\xaa\\xd5\\x9a\\\n\\x53\\x23\\x7e\\xcd\\x35\\x45\\xc9\\xf8\\x52\\xe6\\x72\\x99\\x78\\xa3\\x83\\x2f\\\n\\x27\\xb3\\xf1\\x39\\x15\\x43\\x91\\x5b\\x7f\\xea\\xbc\\x8c\\x74\\x1c\\xcc\\x4f\\\n\\x5c\\x2c\\xc6\\x06\\x85\\x73\\x84\\x0c\\xba\\x97\\xb4\\xc3\\x91\\x45\\xb5\\x61\\\n\\x1f\\xfb\\xd0\\xbc\\xd2\\x35\\x7a\\xc9\\x5e\\x98\\xcd\\xe6\\x13\\x32\\x91\\x66\\\n\\xc6\\x5e\\x99\\x44\\x34\\x3c\\x56\\x8e\\x52\\x60\\x5e\\x5a\\x9e\\x20\\x35\\x20\\\n\\x9e\\x94\\xc1\\x48\\xe2\\x9f\\x31\\x99\\xcc\\xca\\xdc\\x4f\\x76\\x5b\\x89\\x40\\\n\\xa5\\x62\\x1a\\xaa\\xf3\\x4c\\x64\\x96\\xb4\\xd6\\x42\\x1d\\xa8\\xc8\\x30\\xcb\\\n\\x32\\x88\\x73\\xb9\\x67\\x30\\x65\\x18\\x12\\x5f\\x86\\xe0\\xaf\\x0a\\x5d\\xeb\\\n\\x45\\x67\\x11\\xbe\\xc0\\xdf\\xe9\\x55\\x83\\x37\\x96\\x4c\\xce\\x73\\x29\\x2c\\\n\\xd3\\xc0\\xcd\\x53\\x19\\xcc\\xbc\\x50\\xc7\\xc1\\x22\\xa0\\x4c\\xd1\\x01\\x15\\\n\\xb7\\x02\\x91\\xa8\\x6b\\x0d\\x4d\\x70\\xb2\\xe7\\xf8\\x53\\xc5\\x3a\\x46\\x25\\\n\\x9c\\x53\\x48\\x9a\\xc6\\x48\\xac\\xdd\\x22\\x40\\xe4\\x14\\x07\\x98\\x8e\\xf8\\\n\\xf0\\x9c\\xa6\\x5c\\x59\\x97\\x7f\\x11\\xa9\\xcc\\x49\\x40\\x15\\xa3\\xca\\x66\\\n\\xb8\\x6b\\x68\\x3a\\x10\\x23\\xb8\\xeb\\x6d\\x4e\\xf8\\xcd\\xf8\\x7b\\x15\\x2b\\\n\\x3a\\x24\\xb0\\x94\\xd4\\xcd\\x24\\xca\\x87\\x73\\xd2\\xab\\x2f\\x2f\\x94\\x6c\\\n\\xb8\\x0b\\x95\\x2a\\x64\\x99\\xb2\\xe8\\xe8\\x94\\x16\\x72\\x59\\x0c\\x03\\xfd\\\n\\x74\\x91\\xbb\\x1e\\x63\\x41\\x88\\x32\\xf2\\xd5\\x19\\xe7\\xe2\\x49\\x72\\x91\\\n\\xc5\\xa1\\x2a\\x1a\\xac\\x38\\x96\\xaf\\x92\\x24\\xa5\\xaf\\x7b\\x48\\xde\\x6c\\\n\\x34\\x79\\xc6\\x54\\xd4\\x45\\x0c\\x21\\x1a\\x9e\\xf2\\xaf\\x7d\\xff\\x00\\xfa\\\n\\x75\\x50\\x46\\xc4\\x9c\\x67\\xbc\\x3f\\x3a\\x5e\\xd9\\xf9\\xe3\\x8b\\x88\\x50\\\n\\x3f\\xb2\\xb1\\x47\\x8b\\x41\\xd6\\xe5\\x72\\xa3\\x56\\xe5\\xc6\\x54\\xe5\\x92\\\n\\xbc\\x65\\x96\\x66\\x81\\xc9\\x61\\x47\\x96\\xd8\\xcb\\x9a\\xa9\\xbb\\x95\\xa4\\\n\\xa9\\xaf\\x29\\xdb\\x16\\x20\\x52\\x9a\\x28\\x46\\x55\\xf8\\xb4\\x9e\\x6b\\xdf\\\n\\x5b\\x08\\xfc\\x86\\x16\\xfb\\x84\\xa3\\x32\\xf2\\x04\\x49\\x28\\xad\\xef\\x52\\\n\\x4b\\x85\\xa0\\x15\\x88\\xaa\\x45\\x7a\\x96\\xa9\\x31\\xf2\\xe3\\x35\\x36\\x6e\\\n\\x74\\xca\\x09\\x64\\x7c\\xb8\\xcb\\x1d\\xb3\\x26\\x2a\\xa3\\x49\\x12\\x0f\\x2c\\\n\\x4a\\x7d\\xcc\\x16\\x6a\\xa1\\x1c\\xb5\\xee\\xf5\\x10\\xe5\\x1b\\x9b\\x2f\\x12\\\n\\x94\\xe1\\x87\\xbc\\x24\\x3c\\x8b\\x55\\xb8\\xdc\\xc2\\x42\\xa6\\x46\\x3b\\xeb\\\n\\xae\\x1a\\x19\\xb3\\x28\\x6f\\x96\\xed\\x22\\xbe\\x45\\x88\\xa2\\xb2\\x2a\\xd4\\\n\\xbb\\x37\\x09\\x23\\xb9\\xad\\x5a\\x8a\\xe2\\x6c\\xf4\\x11\\xca\\x22\\xc8\\x9b\\\n\\x33\\x19\\x59\\xc5\\x16\\x46\\x32\\xdd\\x1c\\x89\\x40\\x29\\x26\\x8a\\xd2\\x46\\\n\\xdc\\xcb\\x6d\\x08\\xae\\x3c\\x13\\xd9\\xfc\\x42\\x54\\xcd\\xe5\\x6e\\xce\\x16\\\n\\x82\\x8a\\x93\\xe6\\x33\\x8e\\xfc\\x78\\x9c\\xc8\\x3c\\xa1\\x15\\x61\\xa1\\xe6\\\n\\x45\\x6e\\xe3\\x17\\xce\\xfc\\xf9\\x85\\x9d\\x67\\xe1\\x02\\xd5\\xe7\\x2a\\x1a\\\n\\xf3\\x6a\\x28\\x8d\\x0b\\x35\\xdb\\xd5\\xe9\\xd8\\x60\\x65\\x2e\\x92\\x55\\x92\\\n\\x54\\x9a\\x42\\xe3\\x89\\x65\\xad\\x6c\\x6a\\x94\\xd0\\xa8\\x37\\x3d\\x2b\\xbb\\\n\\xd7\\xa6\\x24\\xb6\\xdf\\x66\\x66\\x9e\\xd8\\xe4\\x37\\x19\\x26\\x68\\x84\\x4d\\\n\\x46\\xad\\x4a\\x35\\xa3\\xee\\xe8\\x02\\x9d\\x31\\x96\\x79\\x57\\x31\\x06\\x5f\\\n\\x34\\xf2\\x02\\xc8\\x08\\x4b\\x0f\\x93\\x8c\\x64\\x01\\x51\\x98\\x5c\\x55\\x77\\\n\\x65\\xe9\\x69\\xc4\\xcc\\x64\\xa4\\x79\\x29\\x93\\x33\\x9e\\x99\\x4f\\x24\\x02\\\n\\x0a\\x95\\xe2\\xce\\x2a\\xb2\\xca\\xc2\\x1b\\x16\\x0c\\xb2\\x10\\xcc\\xe0\\x13\\\n\\x40\\x4e\\x23\\x91\\x44\\x8b\\x97\\x45\\xbe\\x1c\\xb0\\x89\\x89\\x8e\\xb6\\x15\\\n\\x69\\x6b\\x5b\\x26\\x9c\\x8a\\x71\\x26\\xa1\\xb3\\x95\\x2a\\x70\\x23\\x87\\x2b\\\n\\xc0\\x8f\\xde\\xb9\\x8e\\x10\\xcd\\xcf\\x22\\xb5\\xe5\\xa9\\x42\\xf2\\xfb\\xcf\\\n\\x31\\xd7\\xb6\\x32\\xf1\\x58\\xf5\\xb2\\x30\\x23\\x01\\x8b\\x1e\\x42\\xfc\\xdd\\\n\\x45\\xa4\\x05\\xe6\\xa6\\xb1\\x1c\\x15\\xa7\\x33\\xc7\\x22\\xef\\xb5\\x69\\x71\\\n\\xff\\x00\\xed\\x1f\\xf3\\x82\\xa3\\x55\\x60\\xed\\x4a\\xf9\\xba\\x27\\xd3\\x4b\\\n\\xbd\\x70\\xd5\\x5f\\x33\\x16\\xfc\\x7a\\x7d\\x71\\xe1\\x30\\x81\\xcb\\x1c\\x59\\\n\\x8c\\xd4\\x82\\xba\\x0a\\x72\\xaf\\xeb\\xf8\\x8c\\x15\\x69\\x16\\xf1\\xb4\\x60\\\n\\xd4\\xd7\\xd7\\xb6\\x16\\x35\\x96\\xd0\\xdb\\x80\\xfd\\x6b\\x68\\x1f\\x2e\\xe3\\\n\\x11\\xe5\\x92\\x2f\\x6a\\xcb\\xda\\x92\\x4f\\x1e\\x84\\x39\\x93\\x9a\\x47\\xeb\\\n\\xd0\\xd3\\x11\\xc9\\xe1\\x91\\x88\\x27\\x43\\xef\\xe0\\x4f\\x20\\x4a\\x57\\x9f\\\n\\x40\\x03\\x53\\xbe\\xb8\\x48\\x38\\x43\\x34\\xee\\x43\\x72\\x30\\xe1\\x5a\\xbc\\\n\\x81\\xdd\\x9a\\x80\\x2a\\xf5\\xd7\\x71\\x4c\\x3e\\x63\\x25\\x22\\xa4\\x8f\\xe7\\\n\\x8d\\xb5\\x8a\\x72\\xd1\\xdc\\x05\\x3a\\x31\\x37\\x5a\\xe3\\xd1\\x70\\xcb\\x4b\\\n\\x6c\\x60\\xae\\xa7\\x47\\x8c\\x8d\\x28\\x47\\xd6\\xb8\\xa4\\xc3\\x92\\x74\\x31\\\n\\x6c\\x4e\\xe0\\x8f\\x90\\x27\\xd7\\x0f\\x92\\x4c\\xba\\xc5\\x1e\\x5f\\x35\\x4e\\\n\\x25\\x18\\xcb\\x22\\x01\\x51\\x57\\x34\\xbb\\x43\\x5a\\x2d\\x40\\xd8\\x63\\x35\\\n\\xe1\\x32\\x2c\\x92\\x44\\x1b\\xda\\x72\\x73\\x48\\xa7\\x85\\x93\\xcd\\xf3\\xc4\\\n\\xad\\x77\\xc0\\x25\\x26\\xdd\\x48\\x35\\xc1\\x97\\x31\\x2c\\xb1\\xcf\\x94\\x96\\\n\\x41\\xc1\\x64\\x7b\\x08\\xa5\\x8e\\x03\\x53\\x50\\xac\\xa4\\xdc\\xcf\\xcc\\x75\\\n\\x0b\\x8f\\xec\\xef\\x84\\x38\\x89\\x99\\xa1\\x5c\\xf6\\x6f\\xda\\x24\\xb4\\x5d\\\n\\x27\\x35\\xee\\x0d\\x38\\x85\\x1e\\x66\\xa2\\x1e\\x5e\\x42\\x7a\\x61\\xfd\\x8c\\\n\\xc8\\x62\\x66\\x60\\x18\\x47\\xa5\\x18\\xa8\\xb8\\x1f\\xb0\\x63\\x15\\x3d\\x69\\\n\\xee\\xfc\\x9a\\xe2\\x19\\x59\\xa4\\xcd\\x11\\x19\\x64\\xe3\\xa9\\x87\\xdf\\x48\\\n\\x00\\x67\\x42\\x69\\x6a\\xaa\\x0a\\x23\\x2f\\x30\\xb8\\xe2\\x63\\x0e\\x6e\\x49\\\n\\xa5\\x58\\x59\\x46\\x4c\\x3f\\xf8\\x79\\xe5\\x55\\xbe\\xfb\\xde\\xbc\\xfa\\x52\\\n\\xba\\x6a\\x76\\xc2\\xb6\\x77\\x2d\\x3e\\x4a\\x53\\x1a\\x96\\x52\\x0c\\xd1\\x2d\\\n\\x57\\xe2\\x64\\xd1\\x69\\xb6\\xb4\\xc4\\xd9\\xc8\\x98\\x39\\x39\\x65\\x82\\x16\\\n\\xa7\\x2f\\x34\\xad\\x23\\x32\\x81\\x5e\\x94\\x18\\x9f\\xc4\\x73\\x39\\xbc\\xc4\\\n\\xf0\\xc4\\x2e\\x5c\\x9a\\xa8\\x8c\\x33\\x57\\x94\\x0a\\x79\\x97\\xbd\\xd8\\xf1\\\n\\x58\\x8a\\x35\\x57\\x28\\xb2\\x41\\x1d\\xb6\\x5b\\x2d\\xc0\\x5a\\x96\\xf2\\x96\\\n\\xef\\x71\\xd0\\x1d\\x71\\x20\\x06\\x3c\\x84\\x75\\x68\\x24\\x96\\x75\\xb9\\x53\\\n\\xcc\\x2d\\x01\\x85\\x6e\\x97\\x45\\xa2\\xea\\x48\\x0a\\xd4\\x47\\x6c\\x17\\xcd\\\n\\xf8\\x88\\x58\\xb3\\x32\\x5a\\x52\\x28\\xad\\x75\\x82\\x29\\x5f\\x86\\x90\\x5c\\\n\\x48\\x79\\x24\\x8a\\x2c\\xb9\\x65\\x26\\x8b\\x7e\\x9a\\x62\\x1c\\xbe\\x5f\\x2f\\\n\\x19\\x41\\x2c\\x91\\x06\\xcd\\xdb\\x2e\\x62\\x77\\x50\\x43\\x12\\x75\\x34\\x5d\\\n\\xfc\\xa8\\x07\\x5d\\xc6\\x3f\\xbc\\x73\\x79\\x00\\x36\\x78\\x13\\x2b\\x27\\x12\\\n\\x44\\x95\\x50\\xb2\\x51\\x28\\x68\\xc6\\x88\\xc5\\x46\\x9f\\xe5\\xbd\\x01\\x6c\\\n\\x64\\xa4\\x9f\\x2b\\x2a\\xc3\\x3b\\x41\\x0c\\xb3\\x66\\x90\\x88\\xd1\\x42\\xbb\\\n\\x31\\x77\\x44\\x53\\x41\\xc4\\x6b\\xac\\xb2\\xb2\\x05\\xdc\\x60\\xf8\\x61\\xf0\\\n\\xd4\\xca\\x26\\x45\\x23\\x97\\x29\\xe2\\x25\\x04\\xdc\\x18\\xe7\\x2e\\x44\\x79\\\n\\x72\\xc5\\xd1\\xa6\\xa5\\x49\\xbb\\x40\\xcf\\x23\\x1d\\x6d\\xc5\\x4b\\x99\\x1c\\\n\\x22\\xab\\x48\\xe3\\x4d\\x77\\xed\\xae\\x15\\x6e\\x5a\\x9d\\x11\\x7a\\x96\\x3f\\\n\\x51\\xf9\\xe1\\xe3\\x01\\x40\\x3a\\x3b\\x0a\\x74\\xaf\\x2e\\xfb\\xe1\\xa4\\x2c\\\n\\x91\\x88\\xd4\\x99\\xa4\\x76\\x08\\xa1\\x06\\xad\\x7b\\x35\\x00\\x51\\x4d\\x75\\\n\\xc6\\x6a\\x39\\x97\\xda\\xf2\\xde\\x25\\x19\\x9f\\x2f\\x59\\xab\\x3b\\x43\\x97\\\n\\x69\\x61\\x8e\\x3d\\x5f\\x97\\x2a\\x6a\\xef\\x1a\\x8b\\x08\\x4a\\x2e\\x98\\xcd\\\n\\xf0\\xa7\\xcc\\x43\\x04\\x99\\xbc\\xcc\\xb0\\x41\\x1b\\x48\\xa9\\x0c\\x2d\\x2b\\\n\\x70\\xe3\\x01\\xe5\\x14\\xa2\\x80\\x68\\x34\\xd7\\x17\\xe6\\x7d\\xb3\\x37\\x97\\\n\\xab\\x04\\xe0\\x66\\x07\\x41\\x41\\xc8\\x28\\xdd\\x06\\xbb\\x52\\xa0\\x0a\\x62\\\n\\x2e\\x06\\x5e\\x15\\x70\\xa5\\x49\\x71\\x49\\x44\\x92\\x11\\xce\\xd7\\x57\\x55\\\n\\xa9\\x2b\\xd3\\xd3\\x19\\x69\\xa4\\x11\\xb5\\x93\\x48\\xb1\\x65\\xa2\\x91\\x84\\\n\\xac\\xb7\\xca\\x4c\\xa5\\xa9\\xcb\\x7d\\x68\\x95\\x3e\\x51\\xdf\\x5c\\x47\\x99\\\n\\xe0\\xf0\\x8b\\x97\\xb2\\x11\\x46\\xf7\\x57\\x85\\x01\\xbe\\xd1\\x62\\xcf\\x7f\\\n\\xee\\x74\\xa0\\xa4\\x59\\xac\\xe3\\x49\\x10\\x49\\x5f\\x82\\x89\\xe6\\x8f\\x86\\\n\\xac\\xc9\\x04\\xdf\\xfa\\xb5\\x21\\xc1\\x6f\\x38\\x55\\xed\\x42\\xc3\\x85\\xed\\\n\\xbc\\x35\\x66\\x46\\x24\\x20\\x33\\x46\\xc9\\x1c\\x59\\x66\\x8c\\x50\\xd7\\x67\\\n\\x15\\xe8\\x92\\x1d\\xa9\\x4c\\x9c\\x93\\x4a\\xd9\\x64\\xfe\\xf0\\x92\\x20\\x63\\\n\\x16\\xb4\\x6f\\xec\\xf3\\x34\\xad\\x5d\\x2e\\x3a\\xf0\\xf4\\xa2\\xae\\xb8\\x92\\\n\\x79\\x9e\\x67\\xa6\\x5e\\x19\\x52\\xf2\\x5d\\x9e\\x47\\x2c\\xb1\\xa4\\x51\\xd4\\\n\\xde\\xce\\x69\\xc3\\x1e\\x45\\x0a\\xcd\\x4d\\x0d\\x63\\xcc\\x70\\x28\\xc7\\x31\\\n\\x14\\xae\\xea\\xaa\\xd9\\x84\\x44\\x20\\xb2\\xc7\\x2c\\x95\\xb4\\xf5\\x2f\\x4e\\\n\\x67\\xd7\\xcb\\xcb\\x8e\\x3c\\x80\\xc5\\xc4\\xa4\\xa2\\xf9\\x44\\xb5\\x75\\x92\\\n\\xfe\\x19\\x66\\x24\\xed\\x6d\\xc7\\xb8\\xd0\\xe1\\x65\\x8f\\x3b\\xc6\\x97\\x33\\\n\\x70\\x65\\xb7\\xf6\\x31\\x96\\x21\\x9b\\x88\\x5b\\x47\\xa0\\xe1\\xa5\\x07\\x25\\\n\\xc5\\xd6\\x84\\x06\\x0a\\xf1\\xdc\\x73\\x90\\xba\\xfb\\x3f\\x0e\\xa6\\xec\\xd5\\\n\\x55\\x55\\x7a\\x79\\xc1\\x11\\xc9\\xc4\\xa7\\x42\\x45\\x75\\xc1\\xbc\\xcd\\x97\\\n\\x54\\x6e\\x14\\x91\\xde\\x36\\x86\\x88\\xd1\\x71\\x07\\x3a\\x32\\x90\\xc1\\xa9\\\n\\x5a\\xee\\xb4\\xc2\\xf0\\x8a\\xc7\\xa9\\x49\\xd9\\x83\\x2f\\x95\\x11\\x05\\x97\\\n\\x9e\\x24\\xa0\\x20\\x66\\x63\\xcb\\x71\\x91\\x69\\xbe\\x17\\x2f\\x97\\x60\\xaa\\\n\\x1d\\x58\\xc9\\x40\\xd9\\x94\\x8f\\xe2\\x17\\x0d\\x23\\x07\\x7d\\xba\\xfd\\x31\\\n\\x06\\x63\\x26\\x25\\x39\\x98\\x8b\\x24\\x56\\xcf\\x24\\xcd\\x6c\\x97\\x10\\x65\\\n\\x0e\\xc5\\x16\\x34\\x47\\xd0\\xee\\x4e\\xa4\\xb3\\x1a\\x88\\xe3\\x9a\\x52\\xf9\\\n\\x98\\x5a\\xff\\x00\\x6a\\x50\\x35\\xa7\\x99\\x09\\xa0\\x8e\\xd2\\x9c\\x88\\x2a\\\n\\x76\\xd7\\x0c\\xb9\\x68\\x51\\xe4\\x80\\xc7\\x3c\\x57\\xa8\\x32\\xc1\\xc9\\xc3\\\n\\x32\\x5d\\x41\\x5a\\x10\\x6e\\x55\\x6a\\xda\\xdf\\x5c\\x46\\x1b\\x33\\x04\\x4b\\\n\\x99\\x91\\x94\\x44\\x14\\x11\\x2a\\x83\\xef\\x5b\\x96\\xb4\\x92\\x4e\\x7a\\xb4\\\n\\xa4\\x9b\\x54\\xb9\\x25\\xbc\\xcd\\x9a\\x35\\x31\\x24\\xf3\\x4a\\xf0\\x8b\\xa2\\\n\\x54\\xa7\\xec\\xb8\\x16\\xdc\\xf4\\xab\\x15\\x7b\\x97\\x98\\x73\\x0e\\xf8\\xcb\\\n\\xe5\\xf2\\xf1\\xc5\\x0f\\xb5\\x1e\\x1d\\x69\\x55\\x8e\\x27\\x24\\x33\\xc9\\x5d\\\n\\x69\\xee\\xc9\\xa0\\xd4\\xd5\\x75\\xdc\\x60\\x96\\x0a\\xec\\xaa\\xdc\\x20\\x34\\\n\\x6c\\xc1\\x57\\x61\\xc4\\x55\\x3f\\xb2\\x89\\x8e\\x97\\x1f\\xdc\\x15\\xba\\xf5\\\n\\xf6\\xcf\\x12\\xca\\x71\\x15\\x22\\x59\\x2d\\x91\\x98\\x47\\xc5\\xff\\x00\\x29\\\n\\x02\\x2f\\x9a\\xda\\x12\\x90\\x8a\\x05\\xb1\\x9b\\x6d\\x31\\x64\\x92\\xe6\\x23\\\n\\x8f\\x2e\\xd0\\xcb\\x64\\x96\\x47\\x95\\x50\\xcb\\xb2\\x8e\\x12\\xd6\\xd4\\x15\\\n\\x65\\xad\\xcf\\xa4\\x45\\xa8\\x71\\x1f\\x87\\x65\\x44\\x69\\x96\\x85\\x9e\\x41\\\n\\x6c\\x83\\x8b\\x34\\xba\\x96\\x9b\\x31\\x41\\xcc\\xdf\\x15\\xba\\x2c\\x6a\\x68\\\n\\xbd\\x6a\\xd9\\x7c\\x94\\x59\\xc0\\x93\\x48\\x86\\x79\\xf2\\xab\\xc0\\x84\\x2a\\\n\\xf3\\x2f\\x1b\\x3b\\x98\\x20\\x7a\\xb7\\x08\\xdc\\x57\\x93\\x96\\x94\\xc7\\xb2\\\n\\x47\\xef\\x39\\x9c\\x34\\xf9\\x37\\xf6\\x80\\x82\\x86\\xcb\\xe6\\x27\\x8a\\x5b\\\n\\xe2\\x36\\xa0\\x5e\\x85\\xb5\\x18\\x44\\x36\\x97\\x88\\xaa\\x0e\\x71\\x23\\x23\\\n\\x69\\x7b\\x4c\\xcb\\xbc\\xc6\\xba\\x47\\x57\\x6e\\x24\\xae\\x29\\xaa\\x85\\xf6\\\n\\xac\\xcc\\x6e\\x14\\x06\\x44\\x1a\\xd2\\xe2\\xfc\\x97\\x1e\\x5e\\x50\\xc1\\x2a\\\n\\x0f\\x50\\x70\\xc2\\x28\\x44\\xc8\\x90\\xa2\\x58\\xaa\\x01\\xad\\xf1\\xaa\\xf3\\\n\\x79\\x68\\xa8\\x6e\\xdb\\xe7\\x5d\\x46\\x24\\x2d\\x20\\xcb\\x25\\x8d\\x1a\\x94\\\n\\xe1\\x99\\xcb\\x10\\x0a\\xbc\\x4a\\x39\\x55\\xc0\\xea\\xfa\\x75\\xb7\\x02\\x78\\\n\\x1f\\x31\\x9c\\xcd\\x4b\\x97\\xb1\\x6a\\xfc\\x52\\x84\\xb1\\xaf\\x1a\\x44\\xde\\\n\\xea\\x16\\xe1\\xa8\\x51\\xd0\\x69\\x87\\xcc\\x66\\x3f\\xc2\\x41\\x20\\xbc\\xe6\\\n\\x33\\xad\\xc2\\xd3\\x70\\x23\\x8a\\x86\\x67\\xd2\\xbe\\x44\\x6a\\xe9\\xae\\xf5\\\n\\xaf\\x16\\x67\\x08\\x2a\\xf9\\xfc\\xc5\\x32\\x59\\x25\\xb7\\x5f\\x73\\x1b\\xb1\\\n\\xcc\\x4a\\x7b\\x1a\\x2d\\x77\\xb7\\x11\\x64\\xfc\\x2a\\x5c\\xce\\x7c\\xb7\\xb9\\\n\\x7c\\xc0\\x46\\x65\\x4a\\x69\\xfe\\x1d\\x10\\x35\\x6c\\xd4\\xeb\\x5a\\x81\\x8c\\\n\\xd4\\x52\\xf8\\x3c\\xb3\\xe4\\xdd\\xe9\\x3e\\x7f\\x85\\xc2\\x5f\\x76\\x8a\\x2a\\\n\\x8c\\x40\\xb9\\x8f\\x51\\x43\\x4d\\xb0\\xd9\\x6c\\xc0\\x55\\x32\\x8a\\x84\\xaa\\\n\\x96\\x41\\xb1\\x34\\x5a\\x9b\\x4f\\x62\\x07\\x7c\\x08\\x83\\xc8\\x15\\x8a\\xbe\\\n\\x59\\x0f\\xfd\\x18\\xdc\\x52\\x5a\\xc7\\xb0\\x5d\\x51\\x6a\\x47\\x62\\xbd\\x4b\\\n\\xe6\\x83\\x3c\\x93\\x1a\\x92\\x0f\\x33\\x4b\\xe8\\xcb\\xa7\\xe3\\x51\\x4d\\xfa\\\n\\x61\\xdb\\x88\\xc9\\x24\\x28\\x65\\xe1\\xd7\\x9c\\x15\\xd4\\x2b\\x6a\\x2a\\x37\\\n\\xfe\\x5d\\xe1\\xf6\\x83\\x6c\\x4a\\x5c\\x6c\\x76\\x7d\\x2e\\x23\\xf3\\xe8\\x7a\\\n\\x57\\x1c\\x2f\\x01\\x58\\xf2\\x70\\xe5\\xc9\\xcd\\x66\\x15\\x81\\xf6\\x8c\\xcd\\\n\\x2f\\x76\\x67\\x91\\x7e\\x27\\xa6\\x8a\\x01\\xa1\\x28\\x00\\x5d\\x6a\\x33\\xd9\\\n\\x35\\x8a\\xae\\xb1\\xae\\x79\\x65\\x8a\\xc9\\x53\\x85\\xe6\\x2c\\x92\\x53\\x59\\\n\\x35\\xb9\\x69\\xaf\\x43\\x5c\\x47\\xe2\\xa9\\x97\\x8e\\x4f\\x1c\\xca\\x4b\\x16\\\n\\x5f\\x2f\\x95\\x66\\x4f\\x67\\x9c\\x43\\x17\\x0b\\x85\\x46\\xe5\\x52\\x59\\x8c\\\n\\xda\\xa1\\x42\\xe8\\xaa\\x45\\x2a\\x71\\x1c\\x39\\xf8\\xde\\x3f\\x11\\xcc\\x95\\\n\\xe3\\x09\\xe9\\x1c\\x41\\x5a\\x40\\xb5\\x08\\x9e\\xee\\xc4\\x0d\\x57\\xa6\\xbc\\\n\\x8f\\xd3\\x4c\\x08\\x23\\xcb\\x8b\\x61\\x16\\x34\\xe4\\x15\\xac\\x7b\\x7b\\xad\\\n\\x3f\\x66\\x40\\x14\\x23\\x71\\x43\\xa5\\x68\\x0c\\x92\\xe5\\xe0\\x97\\x25\\xc5\\\n\\x57\\xb6\\xf1\\x1b\\x95\\x56\\x5b\\xa3\\xd7\\x5b\\x9a\\x9a\\x31\\xa5\\x41\\x3f\\\n\\x3c\\x18\\x21\\x6f\\x62\\x35\\x54\\x97\\xdc\\x80\\x63\\xaa\\xdc\\xcb\\x5a\\x58\\\n\\xcd\\x60\\x35\\xa5\\xf4\\xef\\x87\\x89\\x65\\x8e\\xf8\\xe2\\x8c\\xa1\\x56\\xb5\\\n\\xbd\\x58\\xdb\\xa6\\xbd\\x46\\x87\\x12\\xe5\\xb3\\x0b\\x7a\\xf9\\x57\\x52\\xd1\\\n\\xba\\x9f\\xc4\\xfc\\xf5\\x18\\x78\\xf3\\x12\\xc9\\x97\\x11\\x28\\x78\\xe2\\xca\\\n\\xc7\\xc4\\x9b\\x32\\xcd\\x22\\xa9\\x86\\x34\\xa1\\x22\\xbb\\xd4\\xd3\\x4d\\x75\\\n\\x3a\\x95\\xce\\xf8\\x74\\x59\\xe8\\x72\\xe9\\x06\\x72\\x57\\x87\\x97\\xda\\x0c\\\n\\xcd\\xc2\\x30\\xca\\x21\\xf7\\x7a\\xc4\\x15\\xda\\xca\\x8a\\xbd\\x18\\xdd\\x4a\\\n\\x1f\\x0d\\xce\\x4b\\x9c\\x95\\x60\\x93\\x8d\\x96\\xe2\\x4a\\xf5\\xf6\\x69\\x2e\\\n\\x8c\\xab\\x32\\x15\\xd1\\xe4\\x53\\x6b\\x1d\\x6d\\x55\\x55\\x14\\x35\\x2d\\x97\\\n\\x67\\x0c\\x95\\x89\\xb3\\x80\\x2b\\x5a\\x33\\x0a\\xaa\\xcb\\x3d\\x16\\xd0\\x62\\\n\\xf6\\xab\\x78\\x9a\\xd7\\x4a\\x1a\\x8a\\xda\\x0c\\x49\\xc4\\xe2\\xa6\\x55\\x22\\\n\\x8a\\x85\\xfd\\xdc\\xd9\\xa4\\x69\\x4f\\x3f\\xdc\\x2c\\x55\\x58\\x68\\xba\\x56\\\n\\xba\\xe0\\x64\\x33\\x37\\xc9\\x3a\\xa3\\x09\\x26\\x9c\\xf0\\xe2\\x78\\xd9\\x6e\\\n\\xe4\\x1a\\x16\\x66\\xb9\\x2d\\x71\\x4a\\x51\\xf4\\x3a\\x53\\xc4\\xa2\\x8b\\x37\\\n\\x95\\xb4\\xaa\\x47\\x0a\\xe6\\x33\\x66\\x3c\\xcc\\x01\\x01\\x46\\xb2\\xd8\\xa5\\\n\\x75\\x86\\x4b\\x55\\x78\\xb2\\x6b\\xc4\\x04\\x20\\x25\\x8e\\x32\\xf9\\x6f\\x13\\\n\\x48\\xc4\\x3c\\xf0\\x1c\\xde\\x48\\xf1\\xa2\\x9d\\x5c\\xe9\\x57\\x70\\xad\\x0c\\\n\\x9b\\x2d\\x0a\\x96\\x6f\\x78\\xd7\\xd3\\x97\\x19\\x3c\\xec\\x19\\xc9\\xa0\\xf6\\\n\\x78\\xee\\xcd\\xcc\\x1e\\xab\\x45\\x2a\\x81\\x0a\\x6a\\x6f\\xd6\\xb1\\xda\\x2e\\\n\\x92\\xea\\x0d\\x8e\\x32\\x65\\xd9\\x1f\\x29\\x99\\x59\\x78\\x70\\x8e\\x69\\x03\\\n\\xa3\\x80\\xcd\\x39\\x3c\\xdc\\x69\\x2b\\x78\\x4d\\x3b\\x57\\xbf\\x19\\x67\\x7f\\\n\\x0e\\xf0\\xcf\\x6a\\x48\\x4c\\x55\\x5f\\x78\\x91\\x29\\x7a\\xc9\\x5a\\x0b\\xa6\\\n\\x60\\x78\\x95\\x14\\x44\\x5a\\x00\\xc5\\xb1\\x96\\x9a\\x49\\xd5\\x9f\\x86\\xb9\\\n\\x1c\\xb2\\xaa\\x99\\x24\\x7a\\xc9\\xc4\\x51\\x1c\\x77\\x88\\xd2\\xf3\\x24\\x6a\\\n\\xf2\\x35\\x28\\x58\\xa8\\x15\\xd7\\x1e\\xcc\\xf9\\x68\\xb2\\xaf\\x0a\\xf0\\xdd\\\n\\x12\\x48\\x5a\\xf6\\x47\\x75\\x32\\x96\\x65\\xd4\\xc9\\x4a\\xd7\\xec\\xda\\x2a\\\n\\x48\\xae\\x23\\xe1\\xe6\\x94\\xc1\\x78\\x6b\\xa4\\xf7\\xb4\\xab\\xbd\\x12\\xdf\\\n\\x35\\xad\\xa0\\xa5\\x2d\\x00\\xe8\\xc7\\x13\\x05\\x52\\x94\\x9c\\xc7\\xed\\x1c\\\n\\x12\\x0b\\x38\\x96\\xc1\\x4e\\x81\\x54\\x7c\\x27\\x9a\\xd2\\xa7\\xe5\\x97\\x9e\\\n\\x49\\x2e\\x59\\x63\\xf7\\x39\\x88\\x00\\x1a\\xae\\xb6\\xb0\\xd6\\xa7\\xb6\\x11\\\n\\x84\\xcd\\x73\\x48\\xc9\\x1e\\x64\\xd6\\xb9\\x31\\xce\\x59\\x9a\\x2b\\x77\\x76\\\n\\x71\\x41\\xae\\xc7\\xbe\\x20\\x68\\xa3\\x71\\x0b\\x46\\xb1\\xe6\\x16\\x5b\\xfd\\\n\\xfc\\xca\\xdc\\x21\\x36\\xed\\x59\\x24\\xfd\\xa3\\x15\\x22\\x8f\\xa0\\x16\\x6b\\\n\\x81\\x34\\x55\\x2e\\x6e\\x91\\xbe\\x1f\\x69\\x08\\xb4\\x69\\x11\\x2b\\xa4\\xb0\\\n\\x9a\\xf1\\x46\\xec\\xba\\xa8\\x35\\xc6\\x4f\\xda\\x02\\x98\\xd7\\x31\\x2b\\x30\\\n\\x8b\\x41\\xc3\\xe1\\x5b\\x52\\x6d\\xaa\\xf1\\x1b\\x61\\xe6\\x6f\\x2f\\x5c\\x46\\\n\\x73\\x02\\x2b\\xb2\\xf9\\x7c\\xb2\\xc1\\x00\\x36\\x15\\x86\\x2b\\xb5\\x7a\\x6f\\\n\\x27\\x3a\\x8f\\xb2\\xa1\\xa8\\xac\\xce\\xf4\\xc4\\x8a\\x25\\x9e\\x1e\\x24\\x60\\\n\\xa5\\xa5\\xab\\x1d\\x74\\x37\\x54\\xef\\x4a\\xdb\\xd0\\x5e\\x2b\\xe5\\x34\\xcb\\\n\\x9c\\xc4\\x8f\\xee\\x95\\x63\\x2c\\xc7\\x56\\x5d\\x2d\\x66\\x20\\x91\\x72\\xdb\\\n\\xcd\\x4d\\x4d\\xdd\\x70\\x8d\\x23\\x1a\\xb8\\x03\\x8c\\x76\\xb5\\x6e\\x6f\\x75\\\n\\x5e\\x50\\x57\\x40\\x68\\x4b\\x37\\x5a\\x0d\\x70\\xa6\\xf6\\x31\\xa8\\x5e\\x18\\\n\\xda\\xaf\\xc4\\x12\\x5f\\xea\\xd7\\xd4\\xeb\\xa5\\x05\\x37\\x2b\\x87\\x49\\xae\\\n\\x91\\x33\\x72\\xbb\\x15\\x23\\x86\\xa9\\x9b\\x7f\\x30\\xd6\\x94\\x42\\x35\\x17\\\n\\x7d\\x93\\x5d\\xf1\\x29\\xcb\\xc4\\xbc\\x08\\xc9\\x4a\\x97\\x11\\xa5\\xe1\\x45\\\n\\xef\\x75\\xbb\\x0a\\x28\\xa8\\xed\\x6f\\x42\\x31\\x9b\\xbc\\xa3\\xf1\\xe3\\x30\\\n\\xb4\\x80\\x97\\xf7\\x31\\xf3\\x1e\\x1d\\x69\\x69\\x2e\\x58\\x03\\x4a\\xb0\\xd7\\\n\\x62\\x31\\xc5\\x8b\\x84\\x1e\\x51\\x18\\x17\\xdc\\x34\\x51\\xc9\\x55\\x27\\xcd\\\n\\x43\\x4d\\xb5\\x3e\\x98\\x46\\xcc\\xb5\\x1e\\x3b\\xe8\\xac\\xb4\\x56\\x75\\xfa\\\n\\xee\\xbd\\xb6\\xc6\\x56\\x91\\x2d\\x33\\x15\\x5a\\x98\\xf9\\x52\\x2d\\x5e\\x49\\\n\\x1c\\x0f\\xf2\\xb4\\xa6\\xfa\\xf9\\x56\\xae\\x54\\x19\\xca\\x49\\x58\\x69\\x7c\\\n\\x4c\\x02\\xc7\\x18\\x8d\\x85\\x55\\x78\\x6b\\xe6\\x79\\x19\\x89\\x75\\xdf\\x5e\\\n\\xd8\\x4e\\x2d\\x52\\x3b\\x58\\x2b\\x5c\\x38\\x6a\\xd6\\x95\\xa8\\xae\\xdc\\xda\\\n\\xf3\\x53\\x4c\\x3a\\xb4\\xc8\\xd9\\x85\\xb6\\x8f\\x53\\x2f\\x06\\x16\\x94\\xbd\\\n\\x68\\x34\\xac\\x8f\\x25\\xa0\\x93\\xf2\\xc3\\x67\\x25\\x4c\\xd4\\xdc\\x78\\xc2\\\n\\x97\\xb8\\x2a\\x88\\xd1\\x85\\x0a\\xa7\\x99\\x63\\x07\\x6e\\x5a\\xf6\\xae\\x24\\\n\\xca\\xe5\\xf8\\x10\\xbc\\x51\\xc5\\x24\\x49\\x20\\xe2\\x71\\x26\\x78\\x5d\\xf8\\\n\\x21\\xe5\\x6d\\x65\\x11\\x16\\x5a\\xd2\\x95\\x6a\\x2d\\x68\\x71\\x1c\\x47\\x34\\\n\\xd9\\x78\\xd1\\xad\\x7d\\x54\\x2e\\x62\\x51\\x4b\\x84\\x61\\x77\\x54\\x6e\\x5b\\\n\\xb4\\x4f\\x5c\\x36\\x53\\xc3\\xb2\\xd0\\xe7\\x3c\\x4e\\x9e\\x49\\x8b\\xb5\\xdc\\\n\\xc3\\xcc\\x91\\x02\\x64\\x34\\x66\\x61\\x03\\x14\\x89\\xca\\xd2\\x56\\x5d\\x2a\\\n\\x27\\xfe\\xd3\\xf8\\xb3\\x2c\\x86\\x2b\\x93\\xc3\\x72\\xb2\\x20\\x9a\\xc5\\x37\\\n\\x48\\x94\\x16\\xe5\\xf2\\xd1\\x3b\\x56\\x13\\x70\\x20\\x0d\\x29\\x70\\x2b\\x8c\\\n\\xce\\x57\\x25\\x16\\x53\\xc2\\xfc\\x25\\x00\\x48\\xa2\\x88\\x99\\x33\\xf9\\xd9\\\n\\xac\\x5e\\x24\\xf9\\xbc\\xe9\\xd9\\x41\\x25\\x63\\x8e\\x30\\x6a\\x54\\x6a\\x23\\\n\\xa0\\x19\\x74\\xf0\\xf8\\x24\\xe4\\xe1\\xbc\\xda\\x05\\x8d\\x24\\xe5\\x91\\x8d\\\n\\xcf\\xb4\\x64\\x8d\\x4d\\x0b\\xc8\\xbd\\x2b\\x88\\xb2\\x86\\xb9\\x68\\xd8\\x09\\\n\\x1b\\x8b\\x7b\\x47\\xcb\\x47\\x20\\xa4\\x3c\\xf2\\xb1\\x26\\xa2\\x30\\x6e\\xba\\\n\\x85\\xc2\\x8d\\xcc\\x99\\x58\\xa4\\x98\\xb5\\xd5\\x9d\\xde\\x18\\xce\\x9d\\x2b\\\n\\x5e\\x16\\x5c\\x69\\xb2\\x09\\x26\\x14\\xe6\\x28\\x76\\x39\\x8c\\xfc\\xef\\x69\\\n\\x92\\x9c\\x08\\x6e\\x90\\xd5\\x54\\xb3\\x54\\xf9\\x17\\xa5\\xcc\\xcc\\x6a\\x48\\\n\\x41\\xce\\xca\\xa5\\xbc\\x3f\\xc1\\xe0\\xcb\\x71\\x64\\x37\\xf1\\xe5\\x5b\\xa4\\\n\\x8d\\x55\\x35\\x50\\x7c\\xa8\\x8a\\xbd\\x40\\xad\\xd5\\xa6\\x1b\\x3f\\xe3\\x6f\\\n\\x23\\xa2\\xa5\\x23\\x89\\x19\\x8e\\x6b\\x37\\x2a\\x2d\\x65\\x68\\xe3\\xad\\x14\\\n\\x17\\xa9\\x45\\xd1\\x62\\x4d\\x5d\\xab\\x41\\x8c\\x8e\\x6f\\xc4\\x24\\xce\\x64\\\n\\xbc\\x06\\x17\\xf7\\xb9\\x68\\xe1\\xaf\\x06\\x0d\\x8b\\x05\\xf3\\x9b\\x8e\\x86\\\n\\x46\\x14\\xf8\\xb4\\x18\\x44\\xfe\\xcb\\x78\\x76\\x5e\\x6f\\x2a\\xb6\\x6e\\x25\\\n\\x59\\x64\\xbd\\x85\\x6b\\x36\\x72\\x4e\\x62\\xe6\\xb5\\x31\\x0d\\x10\\x74\\x5c\\\n\\x66\\x06\\x6b\\x36\\xf0\\x65\\xe4\\xf7\\xfc\\x3c\\xbb\\xda\\x03\\xb9\\x28\\x75\\\n\\xa0\\x60\\x4d\\x01\\xa2\\xf7\\xae\\x27\\xce\\x40\\xce\\x85\\x9e\\xa8\\x01\\xb8\\\n\\xf0\\xd7\\x60\\x7a\\xeb\\xeb\\x89\\x8c\\xf3\\xba\\x38\\x8f\\x85\\xec\\xee\\xc2\\\n\\x88\\xa8\\xe2\\x46\\xb3\\xaf\\x3b\\x01\\x5f\\x41\\xa6\\xf8\\xe4\\x44\\x6b\\xbc\\\n\\xb6\\xd2\\xe3\\x5d\\x2b\\x89\\x73\\x4b\\x21\\xcb\\xbc\\x9a\\x49\\x57\\x1c\\xc6\\\n\\xde\\x4b\\x6e\\xf2\\x90\\x6b\\x40\\xb5\\xbe\\xa4\\x1e\\x98\\x90\\x67\\xa3\\xe3\\\n\\xc7\\x04\\x72\\x4a\\x62\\x5b\\x6d\\x72\\x95\\x31\\x85\\x52\\x46\\xa5\\xa8\\x40\\\n\\xad\\x34\\xa1\\xed\\x88\\x78\\x39\\x5e\\x01\\x76\\xfd\\x94\\xa4\\x33\\xb8\\x3b\\\n\\x0a\\x25\\x40\\x63\\xd6\\x86\\xb8\\x9b\\x35\\x26\\x53\\x85\\x0a\\x98\\x56\\x52\\\n\\x83\\xfc\\x3c\\x84\\x25\\xb4\\xfb\\xce\\x94\\xd6\\x9c\\xb5\\xd4\\xe2\\x57\\xf0\\\n\\xe1\\x26\\x5f\\x4b\\xe5\\x9f\\x88\\x78\\xa7\\x31\\x77\\x3f\\xb3\\x80\\x6c\\x86\\\n\\x1e\\x1e\\xc3\\x49\\x18\\xdd\\x5d\\x29\\x58\\xa5\\x97\\xc5\\x73\\x59\\x88\\x90\\\n\\xd7\\x85\\x9c\\x6b\\xa3\\x04\\x0b\\x9c\\x00\\x05\\xe4\\x3e\\xaa\\xca\\x2a\\x35\\\n\\x3a\\xf5\\xc5\\x60\\x60\\x24\\x48\\xe7\\x84\\x26\\x60\\x8c\\xc9\\x68\\xe6\\x44\\\n\\x08\\xe8\\x1e\\xd2\\x89\\x97\\xb4\\x98\\x12\\x9a\\x1a\\x96\\x26\\xb8\\xb6\\x15\\\n\\xad\\x95\\x08\\x7e\\x29\\x9b\\x95\\x42\\xbd\\x2a\\x2a\\x29\\xb0\\xf5\\xe9\\x8f\\\n\\x0e\\x55\\x75\\x9b\\x30\\x01\\x7c\\xdb\\x23\\xc9\\x54\\x96\\x64\\x60\\x72\\xbb\\\n\\x8a\\xf0\\x85\\x81\\x9d\\x47\\x34\\x8d\\x21\\x62\\x05\\x30\\xd6\\xb3\\x2d\\xc6\\\n\\x86\\x8c\\x75\\x03\\x4a\\xb7\\x5d\\xbb\\xe1\\x7d\\xaf\\x37\\xec\\xf9\\x65\\x2a\\\n\\x25\\x67\\x2c\\xce\\xca\\x48\\x04\\x42\\x16\\xbc\\xcc\\x2b\\x6b\\x79\\x41\\xdf\\\n\\x11\\xc9\\xe0\\xfe\\x2b\\x1f\\x85\\xe6\\x21\\xcc\\x49\\x22\\xbc\\x8a\\xef\\x98\\\n\\x98\\x23\\xb2\\xaf\\x0e\\x52\\xc9\\x45\\x56\\x15\\x2a\\xc3\\x99\\xea\\x6a\\x05\\\n\\x06\\x23\\xf0\\xdc\\xf7\\x89\\x99\\x25\\x58\\x47\\x12\\x55\\x54\\x88\\x3c\\x85\\\n\\x63\\x75\\x94\\x5b\\xcb\\x4e\\x72\\xb6\\x3b\\x16\\xdc\\x79\\xb4\\xc0\\xc9\\xbc\\\n\\xc6\\x6c\\xda\\xb2\\x3c\\xbc\\x08\\x63\\x1c\\x8a\\x2c\\x12\\x9a\\xf2\\xa4\\x56\\\n\\x98\\xea\\x6d\\xe2\\x3c\\x80\\xef\\x43\\x46\\x97\\x34\\x94\\x68\\x32\\xb3\\xc7\\\n\\xed\\x59\\xbc\\xcc\\x92\\x2d\\x8c\\xc4\\x1a\\xc7\\x68\\x45\\x48\\x41\\x34\\x53\\\n\\x42\\x59\\xbb\\x0c\\x19\\xbd\\xae\\x16\\xcc\\x71\\x20\\x48\\xe2\\x4e\\x4c\\xba\\\n\\xd4\\xdb\\x13\\xbf\\x29\\x95\\xc3\\x0e\\x6b\\x4d\\xa4\\x92\\x6d\\x4a\\x0a\\x90\\\n\\xb9\\xae\\x0e\\x6a\\x64\\x81\\x78\\x31\\x90\\x08\\x90\\x97\\xd1\\x9b\\x94\\xda\\\n\\xab\\xcd\\x4a\\xf9\\x22\\x6b\\x75\\xa5\\x42\\xe6\\xf2\\x1e\\x1b\\x0a\\xe6\\xd2\\\n\\xf1\\x16\\x5f\\xc2\\xd5\\xe3\\x13\\x29\\xde\\x59\\xa5\\x5a\\x07\\x17\\x0d\\x1e\\\n\\x84\\x72\\x6d\\xde\\x5c\\xb7\\x8b\\x65\\x32\\xb3\\xc4\\x0c\\x57\\x65\\xa4\\x5e\\\n\\x2c\\x48\\x8a\\x6f\\x2d\\x24\\x8d\\xb1\\x54\\xbc\\x6d\\xf1\\x37\\x97\\x7c\\x3f\\\n\\x09\\x46\\x5f\\x23\\x0b\\x48\\x38\\x70\\xc7\\x1e\\x59\\x25\\xcd\\x23\\x2d\\x25\\\n\\x3c\\xa1\\xd9\\x10\\x02\\xb1\\x0d\\x2c\\x27\\x88\\x2e\\xe9\\x1b\\x47\\x57\\x98\\\n\\xe6\\xe4\\x77\\x2b\\x26\\x91\\xdf\\xa8\\x8e\\x21\\xf0\\xc7\\xb7\\x36\\xf7\\x57\\\n\\x1f\\xdd\\x8f\\x94\\x91\\xe3\\xe2\\xc7\\x98\\x6c\\xd1\\x7e\\x3a\\x49\\x35\\x1c\\\n\\x17\\x5b\\x7a\\x06\\x92\\xf5\\x52\\x29\\xd3\\xcc\\x29\\x88\\x1e\\x2c\\xbe\\x67\\\n\\xda\\x72\\xd3\\x26\\x6a\\x46\\x78\\xeb\\x10\\x99\\x58\\xc9\\x6b\\x57\\xcb\\x46\\\n\\xb5\\xa8\\x3c\\xb4\\xa3\\x6a\\x30\\x49\\xc9\\x2c\\xec\\xaa\\xa8\\xcf\\x1b\\x5c\\\n\\xb7\\x0d\\x48\\xab\\x3a\\xd4\\xf3\\x6b\\x4a\\x8f\\x5c\\x44\\x66\\x2e\\x5e\\xb1\\\n\\xca\\xd6\\x20\\xe5\\xd1\\xda\\x86\\xd1\\xb8\\xe8\\xa7\\x4c\\x7b\\x3c\\x99\\x99\\\n\\x57\\x28\\xd3\\xbc\\xad\\xa2\\xb3\\x83\\xcc\\xd7\\x15\\x1b\\x13\\x6a\\x8d\\x7a\\\n\\x6f\\xd3\\x19\\x48\\x91\\x2b\\xc1\\x79\\x1e\\x10\\xcb\\x53\\x6f\\x29\\x41\\x4f\\\n\\x89\\x6a\\x75\\x6e\\xa3\\x4c\\x66\\x8c\\xd2\\x88\\xd2\\x6a\\xb9\\x26\\x91\\xd8\\\n\\xc8\\x15\\x2e\\x00\\x6e\\xa2\\xdd\\x3d\\x06\\x14\\x4d\\x9b\\x93\\x36\\x72\\xb2\\\n\\x47\\x3d\\xb1\\xb1\\x54\\x2e\\xe0\\x46\\x94\\x67\\x37\\x02\\xec\\x74\\xb7\\x4b\\\n\\x8e\\x1a\\xb9\\x71\\x97\\xf6\\x23\\x34\\x86\\x43\\x7b\\xfe\\xd0\\x1b\\x1e\\xf6\\\n\\x1b\\x13\\xa5\\x07\\xed\\x36\\xc3\\xe7\\x42\\xbc\\x7c\\x27\\x25\\x32\\x54\\xaf\\\n\\x20\\x8b\\x4c\\xc5\\x2b\\x4e\\x7e\\x88\\x75\\x8e\\xbd\\xf1\\xed\\x0e\\xb1\\x4f\\\n\\xa5\\xf6\\x35\\xbc\\x7b\\x6b\\xd1\\xc1\\xa8\\x6f\\x4d\\x85\\xa2\\x9a\\xe0\\x24\\\n\\x73\\xf0\\xf6\\xba\\x29\\x8b\\x28\\xe1\\xa5\\xa6\\x91\\x9d\\xaa\\x6b\\x41\\x5c\\\n\\x4f\\x94\\x9f\\x96\\xfc\\xb4\\x93\\xc4\\xc6\\x8c\\x2f\\x61\\x55\\x5b\\x86\\x9b\\\n\\x52\\x9f\\x5c\\x07\\x6b\\x33\\x11\\xa3\\x08\\x96\\x3c\\xce\\xb1\\x02\\xcc\\x17\\\n\\x96\\xba\\x21\\xa1\\x3a\\xe2\\x17\\x8a\\x3e\\x15\\xf3\\x12\\x8b\\x27\\xc1\\xc2\\\n\\x6f\\x2d\\x06\\xc1\\xa9\\x51\\xdc\\x53\\x13\\xb3\\xce\\x97\\xcc\\xd7\\xb1\\x09\\\n\\x4b\\x19\\x19\\x8c\\x64\\xc9\\xd0\\xd0\\x68\\xa3\\x52\\x34\\xc0\\xca\\xe5\\x02\\\n\\xfb\\x78\\x6f\\x7f\\x7f\\x95\\x0c\\x92\\x84\\xd7\\xf7\\x2e\\xe2\\xb1\\xfa\\x0c\\\n\\x64\\xda\\x49\\x5a\\x69\\xe0\\x8a\\x4a\\x86\\xa8\\x8a\\x79\\xe5\\xad\\x64\\x94\\\n\\xed\\x4d\\x4d\\x8b\\x4d\\xa9\\x81\\x26\\x67\\x3a\\x99\\x70\\x08\\x6a\\x44\\x85\\\n\\x88\\xda\\x80\\x6c\\x3e\\x58\\xe3\\x23\\xcb\\x75\\xa4\\xdc\\xed\\x73\\x7d\\xe3\\\n\\xd4\\x2d\\x7a\\x77\\x38\\x8e\\x04\\x66\\x92\\x52\\x19\\x51\\x0b\\x07\\x90\\xa5\\\n\\xde\\x55\\x15\\x36\\x82\\xf4\\xc4\\xae\\x19\\x9e\\x70\\xdc\\x58\\xe4\\x91\\x81\\\n\\xe1\\x85\\xb9\\x1a\\x36\\x50\\x39\\x98\\x96\\x5b\\x4f\\x7c\\x4e\\x91\\xb7\\x13\\\n\\x2a\\xbc\\xae\\xd7\\x0a\\xc6\\x4f\\x7d\\x74\\x27\\xa8\\xc7\\x0d\\x47\\x17\\x2f\\\n\\x33\\x2c\\x72\\x7b\\xc0\\x25\\x91\\x56\\xd6\\xe2\\x47\\x53\\x5a\\x47\\x24\\x69\\\n\\x68\\xeb\\x4f\\x5c\\x3c\\x68\\xb3\\xe6\\x61\\xcb\\xd0\\x18\\xe4\\x17\\x96\\xed\\\n\\x1f\\x30\\x26\\xb7\\x1f\\x55\\xc3\\x7b\\xa9\\x23\\x7e\\x28\\xcd\\x22\\x4c\\xfc\\\n\\x37\\xb6\\x80\\x5c\\x5c\\x8a\\x3f\\x0f\\x6a\\x0d\\x68\\x68\\x30\\xe6\\x6c\\xc2\\\n\\xf1\\xda\\x0b\\x07\\x0d\\xae\\x64\\x85\\x9a\\xe7\\xb2\\xd1\\x64\\x5f\\x66\\xa3\\\n\\x5a\\x62\\x58\\xf2\\x0c\\xa9\\x4a\\xbc\\xb2\\xc6\\x2d\\x97\\x98\\x92\\x0b\\xe6\\\n\\x24\\x3a\\xd2\\xb4\\xd3\\x5c\\x66\\x1a\\x5c\\xcb\\x26\\x62\\x66\\x0b\\x2c\\xd1\\\n\\x86\\x9e\\x49\\x54\\x6a\\xab\\x7d\\x4d\\x15\\x49\\xf2\\x0a\\x0c\\x0f\\xf1\\x13\\\n\\x3f\\x1b\\x54\\x69\\xe3\\x45\\x6a\\x12\\x2b\\xc3\\x5e\\x77\\x50\\x2b\\xd5\\x45\\\n\\x74\\xa9\\xc7\\x07\\xda\\x4c\\xf3\\xdc\\xd5\\x16\\xa9\\x08\\x76\\x3b\\x1a\\x02\\\n\\x47\\x2f\\x9a\\xa3\\x0d\\xc0\\x6b\\x25\\x41\\x44\\x26\\x26\\x0a\\xbc\\x7a\\x93\\\n\\x5a\\x6c\\x9b\\x6e\\xe7\\x40\\x70\\x83\\x33\\x32\\xa2\\xef\\x62\\xb5\\xb6\\xaf\\\n\\x9b\\x89\\xe5\\xe1\\x8b\\x89\\xd6\\x82\\xbd\\xce\\x0b\\x47\\x3b\\xd1\\x18\\x34\\\n\\xea\\xdc\\x37\\xbc\\x8a\\x59\\x11\\x61\\x20\\x3a\\xf6\\xa5\\x0b\\x51\\x8e\\xc3\\\n\\x07\\x3b\\x16\\x53\\xda\\xfc\\x47\\x35\\x1d\\xca\\x18\\x83\\x12\\x12\\x95\\xf7\\\n\\xd2\\x56\\x89\\x10\\x06\\x96\\x83\\x56\\xa6\\xf8\\x7f\\x10\\xf1\\x99\\x93\\xc4\\\n\\x73\\x95\\x26\\x38\\x5d\\x44\\x39\\x5c\\xb2\\x69\\x6c\\x11\\xdc\\x38\\x8c\\x91\\\n\\xd6\\xab\\x1a\\x44\\x9c\\x42\\x37\\x93\\xcc\\x21\\x9e\\x54\\x84\\xb6\\x65\\xd8\\\n\\xdd\\x65\\xf1\\xd9\\x54\\x15\\x58\\xbc\\xd2\\x5a\\x03\\x11\\x76\\xf4\\xd1\\x46\\\n\\xd8\\xcd\\xe6\\x23\\x49\\xf2\\x9e\\x1f\\x33\\x71\\x0f\\x1f\\xdc\\xac\\xb3\\xa4\\\n\\xa4\\x71\\x56\\x1f\\xf2\\xc3\\x10\\x7a\\x25\\xfc\\xa2\\xca\\x63\\x87\\x03\\x27\\\n\\x12\\x58\\xdd\\x62\\x1a\\x9e\\x18\\x13\\x42\\x38\\xd2\\xb0\\xd0\\x54\\xf1\\x8a\\\n\\x69\\x53\\xc9\\x4c\\x66\\x25\\x75\\x69\\xf3\\x32\\xc6\\xc2\\x49\\x24\\xa2\\x11\\\n\\x72\\xec\\xaa\\xd5\\xb7\\x94\\xd4\\xf6\\x0c\\x3a\\xe2\\x41\\x93\\x25\\x0e\\x5a\\\n\\x43\\x21\\x66\\x63\\x1e\\x54\\x25\\xdc\\xc0\\xb9\\x14\\xa0\\x04\\xd6\\xb5\\x27\\\n\\xa6\\x38\\x7c\\x4e\\x2a\\x43\\x2d\\xf1\\x66\\x10\\xb7\\xf8\\x6c\\xc1\\xea\\x07\\\n\\x99\\xb2\\xf5\\x1d\\x6a\\x28\\xc3\\x4c\\x49\\xed\\x9c\\x3b\\x63\\x69\\x63\\x8c\\\n\\x87\\xa8\\x2b\\x5f\\xdb\\x01\\x4e\\x53\\x28\\x1c\\xb5\\xe6\\x0b\\x41\\x87\\x32\\\n\\x12\\xcf\\x3d\\x59\\x79\\x6d\\x54\\x89\\x40\\xa5\\x07\\xc4\\x45\\x36\\xe9\\xbe\\\n\\x10\\xe4\\xbc\\x29\\x0f\\x04\\x7b\\xbc\\xd6\\x6f\\x32\\xb7\\xbc\\xa4\\x51\\x98\\\n\\x42\\xa2\\xd5\\x1d\\xb5\\x63\\xea\\x31\\x96\\xfe\\xf3\\x81\\x61\\xcb\\xf3\\x89\\\n\\x16\\x19\\x03\\x40\\x88\\x03\\x2a\\x1e\\x00\\x00\\x55\\xb9\\x7e\\x40\\x9c\\x16\\\n\\xcb\\x86\\x6b\\xa5\\x76\\x06\\x9a\\x59\\x5f\\x4f\\xbb\\x4f\\xa6\\x26\\x7b\\xbd\\\n\\xea\\x5b\\xc2\\x80\\xe8\\xa4\\x91\\xef\\x4b\\x39\\x26\\x95\\x3e\\x51\\xb9\\xc7\\\n\\x20\\x30\\xcf\\x1e\\x8e\\x2a\\x45\\x68\\x39\\x82\\xb1\\xf3\\x0f\\x96\\x38\\xf9\\\n\\x68\\xe3\\x63\\x1d\\x5e\\x28\\x9f\\xf6\\x73\\xcc\\x05\\x58\\x9e\\xd7\\x79\\x55\\\n\\xfa\\x56\\xb8\\x7c\\xd7\\x0c\\x46\\xd9\\xb9\\x38\\xf2\\x44\\xaf\\xc4\\xe1\\x38\\\n\\x14\\x71\\xb7\\x7e\\xdb\\x9a\\xe1\\x73\\x49\\x97\\x32\\xab\\x09\\x59\\x56\\x36\\\n\\x42\\xc3\\x84\\x22\\x37\\x48\\x6b\\xc8\\xa4\\x49\\x55\\x24\\x1a\\x95\\x2b\\xbe\\\n\\x08\\xcb\\x45\\x2c\\x39\\x89\\x1b\\x87\\x6a\\x96\\x55\\x78\\xe7\\xf2\\x21\\x76\\\n\\xd2\\xe4\\xb7\\x88\\xdf\\x70\\x8e\\xf8\\xcb\\x9c\\xbe\\x79\\xe5\\xf7\\x2a\\x54\\\n\\xe5\\x85\\x5e\\xe3\\xef\\x25\\x88\\x34\\x8c\\xc0\\x5a\\xcc\\x45\\x69\\x8a\\xe6\\\n\\xa2\\x7f\\x68\\x47\\x55\\xbe\\x5f\\x34\\x76\\x9a\\x32\\x9e\\x95\\x35\\xa9\\x20\\\n\\x79\\x6e\\x03\\x12\\xb4\\x1a\\x49\\x98\\x40\\x38\\xdb\\x05\\x55\\x90\\xdc\\x07\\\n\\x50\\xcc\\x2b\\x69\\xe9\\x5a\\xef\\x8b\\x73\\x33\\xfb\\x46\\x5b\\x30\\xee\\xb4\\\n\\x78\\xab\\x13\\x35\\xca\\x0f\\xbd\\x1d\\x18\\xbd\\x19\\x71\\x94\\x8f\\x32\\xad\\\n\\x26\\x66\\x79\\x56\\xe8\\xe3\\x52\\xb0\\xc6\\xda\\x70\\xa2\\x81\\x01\\x34\\x03\\\n\\x5a\\x9d\\x74\\x0a\\x6b\\x89\\x9a\\x4e\\x26\\x4b\\x3c\\xbc\\x6c\\xd3\\xe5\\xc2\\\n\\x12\\xb2\\xe5\\xc4\\x74\\xe2\\xf1\\x7c\\xa2\\x3e\\x21\\xb0\\x27\\x7d\\x46\\x22\\\n\\xc9\\x78\\x3c\\x03\\xc3\\x21\\x91\\xd3\\x27\\x2f\\x09\\x1e\\x4f\\x12\\xce\\xc6\\\n\\x84\\xa4\\xd3\\x7b\\x61\\x14\\xcb\\x65\\xe5\\x91\\x2c\\x54\\x40\\xa4\\x86\\xad\\\n\\x6d\\x53\\x8c\\xb4\\x59\\x51\\x14\\x6f\\x98\\xe7\\xce\\xce\\x8e\\xcd\\x2b\\x4b\\\n\\x1b\\x88\\x96\\x04\\xa0\\xbc\\xa2\\xeb\\x74\\x95\\xb4\\x91\\xae\\x97\\x63\\x2d\\\n\\xed\\x12\\xd3\\x32\\xb2\\x24\\x27\\x33\\x23\\xa2\\x07\\xbf\\x94\\x2b\\x82\\x79\\\n\\xd9\\x49\\xf8\\x50\\x39\\x15\\xd7\\x4c\\x49\\xec\\xb2\\x70\\x53\\xc2\\x12\\x0f\\\n\\x69\\x57\\x2a\\x5b\\x33\\x24\\xce\\xeb\\xee\\xce\\xbf\\x55\\x22\\xa1\\x29\\x85\\\n\\x96\\x48\\xc7\\x0e\\x22\\x81\\x20\\x45\\x56\\x5a\\x5c\\xcc\\x5d\\x93\\x63\\xf3\\\n\\x3e\\xb8\\xa6\\x5b\\x25\\x51\\x9b\\x62\\x64\\x98\\xb7\\x08\\x47\\x76\\x95\\xb0\\\n\\xea\\xd2\\x1f\\x35\\x47\\x5d\\xf1\\xee\\xed\\x51\\xad\\x6e\\x8c\\x6a\\xc0\\xda\\\n\\xc7\\x51\\xb5\\x46\\x9e\\x83\\x17\\x44\\xf3\\xfb\\x52\\x8e\\x19\\x8a\\x37\\x61\\\n\\x7b\\xd2\\xd5\\x76\\xa6\\xf5\\x27\\x53\\xa0\\x1a\\x8c\\x66\\xf2\\x33\\x4a\\x83\\\n\\x3c\\x38\\x72\\xc6\\xcb\\x42\\x45\\xdc\\x31\\x22\\x73\\x68\\x6e\\xb1\\x81\\x3b\\\n\\x15\\xaa\\xd7\\xa6\\x13\\x21\\x36\\x60\\xfb\\x44\\x75\\x02\\x48\\x16\\x8b\\xaa\\\n\\xe9\\xab\\x7c\\x6c\\x34\\xed\\x8c\\xc4\\x53\\x66\\xd5\\x48\\x91\\xc8\\x7c\\xcd\\\n\\xa8\\x56\\x33\\xb8\\xa1\\xdc\\x90\\x28\\x17\\x6d\\x76\\xa8\\xc6\\x65\\x72\\x6f\\\n\\xc3\\x9d\\xa7\\xcb\\x1b\\x88\\x0c\\x22\\x8b\\x2e\\x64\\x76\\xb0\\x37\\x9a\\xe2\\\n\\x53\\x7f\\xb2\\x96\\x06\\xc4\\xe3\\x20\\x5f\\x86\\x8e\\x8e\\x66\\xa8\\x79\\x26\\\n\\x96\\x30\\x14\\xfb\\xaf\\xf2\\xd2\\x11\\x7a\\xc3\\x1e\\xa1\\x5c\\x96\\x3d\\xf0\\\n\\xb9\\xd8\\xf3\\xcd\\x74\\x41\\x3d\\xa1\\x18\\x09\\x74\\x61\\xaa\\x3a\\xae\\xb4\\\n\\x50\\x6c\\x3f\\x96\\x0f\\x89\\x64\\x57\\x86\\xb1\\x28\\xe3\\x46\\xb4\\xa9\\xeb\\\n\\x55\\x07\\x51\\x13\\x6e\\x01\\xdb\\xa9\\xa8\\xc3\\x05\\x41\\x14\\xb3\\x4b\\x34\\\n\\x54\\x6a\\xb7\\x0e\\x75\\xba\\x55\\x47\\x63\\xfe\\x54\\xe8\\x15\\x43\\xf5\\x75\\\n\\x60\\x3c\\xc2\\xb9\\x4f\\x68\\x86\\x5c\\x86\\x77\\x82\\xd0\\x34\\x62\\x41\\x24\\\n\\x2d\\xef\\x24\\xe0\\xb0\\xa6\\x80\\x11\\xa7\\xa6\\x80\\xed\\x89\\x93\\x89\\x69\\\n\\x70\\xac\\xa2\\x95\\x46\\x74\\xd5\\x2e\\x27\\x40\\xa7\\x6c\\x7b\\xfe\\x49\\xd3\\\n\\x87\\x3f\\x12\\xdd\\xe6\\x93\\x4e\\x5f\\x84\\xad\\xb5\\xb4\\x02\\x40\\xc4\\xf5\\\n\\x53\\x43\\x9d\\x8e\\x65\\x95\\xc1\\x8f\\xdc\\x47\\x13\\x03\\x5a\\xfd\\xa2\\x46\\\n\\x9d\\x69\\x82\\x22\\x6f\\xda\\x65\\xca\\x99\\x4e\\x91\\x99\\x1f\\x58\\x8a\\x91\\\n\\xb8\\x0c\\xa3\\xeb\\x89\\x2e\\x99\\xa4\\x87\\x2b\\x04\\x01\\x5e\\x56\\xf7\\x7e\\\n\\xd3\\x9a\\x24\\xbb\\x6b\\xff\\x00\\x44\\x56\\xda\\x1a\\x93\\x5a\\xe2\\xf8\\xe4\\\n\\x59\\x26\\xf6\\x8f\\xda\\x30\\x5b\\x19\\x4a\\x05\\x02\\x34\\xaf\\x95\\x5b\\xe7\\\n\\x56\\xd7\\x4c\\x48\\x24\\xcb\\x43\\x31\\xf3\\x25\\x73\\x2b\\x11\\xb4\\x1f\\x35\\\n\\x94\\x36\\x2f\\x66\\x6d\\x2b\\xd8\\xe9\\x87\\x9f\\x2e\\x10\\x66\\xe3\\x31\\x17\\\n\\xe7\\x57\\x11\\x2d\\xd5\\x70\\xae\\x05\\xcc\\x69\\xf2\\xa1\\xe9\\x5c\\x65\\x53\\\n\\x2e\\xc1\\x2b\\x69\\xe1\\x1d\\x78\\xa0\\x91\\x27\\x38\\xee\\xd7\\x2e\\xba\\xd4\\\n\\xfa\\x8c\\x0c\\xae\\x4a\\x18\\xc2\\xc4\\x78\\xb9\\xb4\\x02\\xeb\\xe5\\x94\\x16\\\n\\x66\\x3f\\xf5\\x08\\xa9\\x0a\\x09\\x36\\xa2\\x69\\xa5\\x31\\x18\\xcc\\x44\\x5a\\\n\\x12\\x2e\\xe2\\xc6\\xaa\\x3e\\x20\\x00\\x24\\x54\\xf9\\x41\\xd3\\xd0\\x8a\\x72\\\n\\x9c\\x49\\x26\\x4b\\x35\\xc2\\x30\\xdc\\xe1\\x68\\xc5\\xa6\\xe5\\x50\\xab\\x72\\\n\\x90\\xa9\\xcd\\xb1\\x27\\xf0\\xdf\\x0a\\xb9\\xa8\\xae\\xcd\\x4b\\x20\\xe1\\xdc\\\n\\xe4\\x70\\xae\\x3a\\x4c\\xdd\\x55\\x0a\\xff\\x00\\x97\\xd7\\xb6\\x22\\x19\\xcc\\\n\\xb0\\x31\\x33\\x98\\xd6\\x48\\xa9\\xef\\x46\\x84\\x99\\xa4\\x15\\x68\\xc1\\xae\\\n\\xcb\\xbe\\xd5\\xdf\\x0b\\x0c\\x71\\x04\\x0e\\x2d\\x86\\x82\\xa9\\x23\\xee\\x6e\\\n\\x76\\x24\\x9b\\x47\\xc4\\xf7\\x74\\x1b\\xd3\\x00\\x02\\x32\\xca\\x69\\x69\\x5b\\\n\\x10\\x3f\\x72\\x10\\x29\\xd0\\x03\\xd6\\x95\\xdb\\x53\\x82\\xcd\\x9d\\x7f\\x75\\\n\\xcf\\x68\\xb7\\xde\\x8b\\xa8\\x41\\xa7\\xca\\xb4\\xc7\\xb4\\xb0\\x93\\x85\\x24\\\n\\x9a\\x47\\x1a\\x82\\x67\\x91\\xf9\\x89\\x5a\\x6b\\xdc\\x13\\xf9\\x74\\xc2\\x24\\\n\\x59\\x36\\x78\\x27\\x0c\\xf2\\x8e\\x21\\x4b\\xee\\x6a\\x50\\xbf\\x2d\\x0a\\xa2\\\n\\xd9\\xde\\xdf\\x9e\\xa9\\xe1\\xf9\\xe3\\x1e\\x56\\x75\\x68\\xcc\\x6b\\x01\\x2f\\\n\\xc3\\x41\\x42\\xb1\\xc8\\x69\\x42\\xae\\x34\\x35\\xf9\\xd4\\x1c\\x27\\x82\\x64\\\n\\xa0\\x8d\\x65\\x39\\x85\\xcc\\x66\\xe7\\x90\\xd6\\x5b\\x05\\x48\\x99\\x91\\x40\\\n\\x53\\x11\\xa0\\xd0\\x12\\xd4\\xea\\xa7\\x03\\xda\\xbc\\x7d\\xc3\\xa2\\x05\\x10\\\n\\xe5\\xa3\\x8a\\x08\\xe3\\xa5\\xa3\\x95\\x16\\xe9\\x3e\\x1d\\x99\\xba\\xe3\\x89\\\n\\x24\\xd2\\xe7\\x0b\\x1d\\x25\\xcc\\x44\\x9c\\x4a\\x1e\\x82\\xc5\\x57\\x2b\\xfb\\\n\\xe3\\x50\\x30\\xa6\\x07\\xa3\\x40\\x45\\x28\\x95\\x45\\x64\\xa1\\x52\\x54\\x8d\\\n\\x68\\x2e\\xa2\\x8d\\x37\\xef\\x8c\\xbc\\x19\\x9c\\xee\\x6d\\xe5\\x69\\x63\\xe0\\\n\\xc4\\xc4\\x34\\x77\\xb9\\xe2\\xa5\\x55\\x34\\x02\\x52\\x69\\x56\\x1a\\x36\\x95\\\n\\xde\\x92\\x47\\xe2\\x59\\xa0\\x26\\x47\\x57\\x9e\\x52\\xef\\x73\\x3c\\x32\\x56\\\n\\x30\\x29\\xf0\\x30\\xb4\\xd3\\xe1\\xa2\\xa9\\xa5\\xa4\\x07\\x8a\\x0c\\xf6\\x72\\\n\\x38\\xc0\\x6a\\xca\\x6c\\xb6\\x49\\x1c\\x02\\xcb\\xb0\\x20\\x5a\\xa0\\x57\\xd0\\\n\\x0e\\x80\\x62\\x75\\xca\\x4c\\xcf\\x2c\\x72\\x95\\x91\\x24\\xdd\\x9c\\xaa\\x1b\\\n\\x8d\\xc7\\x9c\\x51\\xa8\\x2b\\xa2\\x91\\xa5\\x0e\\x23\\x43\\xce\\xf9\\xaa\\x33\\\n\\xc7\\x13\\x19\\x74\\x02\\xd2\\xd3\\x1a\\xdb\\x10\\xa5\\x3d\\x4d\\x07\\xa6\\x27\\\n\\xe6\\x56\\xc9\\xb2\\x26\\x66\\x09\\x12\\xba\\xac\\x6c\\x2f\\x8d\\x9b\\xfe\\xa2\\\n\\xd4\\x5d\\xd4\\xae\\xbb\\x54\\xe3\\x2f\\x99\\xd2\\xd9\\x64\\xe0\\xd4\\x6b\\x6a\\\n\\x93\\x50\\x14\\x69\\x44\\x44\\xd1\\x7a\\x69\\x8b\\xd6\\x80\\x26\\xbc\\xd5\\xb9\\\n\\xea\\x77\\xf5\\x3e\\x87\\x6c\\x67\\x33\\x07\\x32\\xd0\\x4b\\x12\\xb9\\x08\\xc6\\\n\\xd8\\xcf\\xc4\\xa8\\xca\\xde\\x60\\xc0\\x51\\x40\\xeb\\xd0\\x93\\x5c\\x42\\x91\\\n\\xa8\\x9b\\x89\\x0a\\xcd\\x2a\\x25\\x69\\x19\\x7d\\x78\\x49\\x4b\\x8b\\x2c\\x29\\\n\\x62\\x96\\x35\\xe6\\x04\\x0d\\x06\\x23\\xa7\\xb8\\x9e\\x40\\x42\\x21\\xa3\\x23\\\n\\x3b\\x1a\\x52\\xba\\x0a\\xf5\\xa7\\x6d\\x76\\xc7\\xb5\\x4c\\x6a\\xc2\\x46\\x6b\\\n\\x7f\\xcb\\x55\\xd5\\x6c\\x55\\x1d\\x37\\xaf\\x5e\\xdd\\x70\\xc8\\xf2\\xd2\\x48\\\n\\xeb\\xca\\x9c\\xfe\\x5f\\x84\\x11\\xb7\\x6a\\x53\\x05\\x32\\xbc\\x6b\\x2f\\x72\\\n\\xb2\\x3b\\x02\\x49\\x67\\x67\\xee\\x77\\x2e\\x47\\xa0\\x18\\x5f\\x69\\x76\\x52\\\n\\xe2\\xe3\\xa9\\x75\\x22\\xa2\\xb4\\x2b\\xbf\\x4f\\x5a\\xfc\\xb0\\xce\\xc8\\xf2\\\n\\xe4\\x69\\x50\\xd6\\x15\\x78\\x26\\x45\\xb7\\x4b\\x80\\x05\\x1d\\x40\\x00\\x93\\\n\\x55\\x0a\\xa3\\x60\\x31\\x16\\x43\\xc3\\x0b\\xf0\\x56\\x55\\x8e\\x37\\x9a\\x48\\\n\\xd6\\x05\\x8f\\x79\\x2d\\x51\\xa9\\x2d\\xb3\\x12\\x4f\\xad\\x05\\x30\\xd6\\xc0\\\n\\x16\\x75\\x6b\\x33\\x61\\x2a\\xe9\\x24\\x91\\xa8\\x0b\\x2c\\x54\\x3a\\xab\\x8d\\\n\\x69\\xde\\xbd\\x70\\xed\\x07\\x12\\x27\\x8e\\x65\\x8a\\x82\\x00\\x01\\x3d\\x45\\\n\\xbe\\x60\\x2d\\xd6\\xb4\\xf9\\x62\\x49\\x07\\x88\\xff\\x00\\x8d\\x56\\x7b\\xbd\\\n\\xaa\\x2a\\x28\\x16\\x43\\x67\\x0a\\x36\\x3b\\xf1\\x38\\xb4\\x23\\x65\\x00\\xef\\\n\\x4c\\x59\\x9c\\x8e\\x3c\\xe4\\x49\\x0b\\x00\\x78\\x7f\\xb2\\x96\\xa4\\xfb\\x82\\\n\\xad\\x7f\\x35\\x49\\x24\\x9d\\x0d\\x2d\\xc2\\x65\\xc2\\xf2\\x4b\\x0a\\x43\\x25\\\n\\xf5\\x36\\xc5\\x19\\xe2\\xa8\\x32\\x02\\x5d\\xb8\\x8c\\x89\\x54\\xa9\\x3a\\x30\\\n\\x27\\x9a\\x84\\xf0\\x72\\xa3\\xda\\x67\\x54\\x71\\xc6\\x04\\x26\\x5a\\x14\\x0e\\\n\\xa1\\xc2\\x2d\\x5b\\x89\\x6c\\x92\\x70\\xd7\\xa5\\xef\\xb5\\x75\\xce\\x22\\x42\\\n\\x4e\\x5e\\x3b\\x4c\\x52\\xe6\\x23\\x90\\x0a\\xbd\\x5e\\x68\\xe2\\x55\\x15\\xe4\\\n\\x91\\xd8\\xa1\\x92\\x80\\xa9\\xfa\\x61\\x52\\x29\\x93\\x8b\\x1c\\xd0\\x4f\\x1c\\\n\\x34\\x91\\x0d\\xf0\\xbf\\x9a\\xf3\\xa5\\xe5\\x0b\\x01\\xb7\\xe7\\x8c\\xb3\\x24\\\n\\x36\\x5d\\x31\\x97\\x39\\x19\\x61\\x76\\x60\\xac\\x4d\\x1a\\x16\\x6f\\xba\\xc6\\\n\\xb4\\xf9\\x76\\xc3\\xaa\\xe5\\xc2\\xf1\\x50\\x20\\xe2\\x30\\x01\\x3a\\xd0\\x53\\\n\\xa6\\xf4\\xe8\\xc6\\xa7\\x10\\x9b\\x93\\x40\\xc0\\x5b\\xe6\\x5a\\xeb\\x5d\\x77\\\n\\xae\\xfa\\x0f\\x91\\xc5\\xf7\\x46\\xe3\\x65\\xb8\\x85\\x21\\x7e\\xcd\\xbd\\x3a\\\n\\xe1\\x33\\x51\\x4b\\x7e\\x72\\xad\\x23\\x5a\\x40\\x7e\\x13\\x92\\x11\\x8a\\xf4\\\n\\x8d\\xb7\\x15\\xf9\\xe2\\x79\\x0d\\xb2\\xb6\\x65\\xad\\x7b\\x86\\xa9\\x1a\\xa1\\\n\\xb0\\x2e\\xfa\\x5c\\xc4\\xf4\\xd7\\x09\\x3b\\xc8\\x4c\\xe6\\xde\\x54\\xd2\\x4b\\\n\\xfe\\xd0\\xa7\\x6c\\x71\\xda\\x4e\\x56\\x21\\x99\\x19\\x49\\x76\\x20\\x0d\\x95\\\n\\x7f\\x12\\x4e\\xc7\\xbe\\x23\\x3c\\x69\\x72\\xd6\\x4e\\x04\\x52\\xc6\\x6e\\x53\\\n\\x23\\x7c\\x32\\xae\\xed\\xea\\xba\\x8d\\x7a\\x63\\xda\\x72\\x39\\x9c\\xb1\\x31\\\n\\xfe\\xde\\x3c\\xac\\x8b\\x75\\x50\\x31\\x2c\\x54\\x57\\x56\\x7f\\x3a\\xef\\x88\\\n\\x46\\x57\\x20\\x8b\\x09\\xca\\x08\\xb3\\x12\\xc9\\x2c\\x71\\x19\\x9f\\x96\\xe9\\\n\\x46\\xa8\\x57\\xca\\x48\\x14\\x24\\x56\\x9d\\x30\\x99\\xac\\xcc\\xf0\\x65\\xf8\\\n\\x71\\x81\\xc3\\x57\\x86\\xd2\\x04\\x6a\\xb6\\x10\\xba\\xba\\x35\\x2a\\xc3\\xab\\\n\\x1d\\xf1\\x9b\\xcd\\x46\\xd0\\xc7\\x2c\\xd2\\x83\\x2c\\x10\\x7b\\xc9\\x21\\x5a\\\n\\xa9\\x32\\xaa\\x8d\\x42\\xea\\xc0\\x68\\x59\\x5f\\x19\\x78\\xc3\\x70\\xe7\\x59\\\n\\xe4\\x5c\\xab\\xb5\\x55\\xa7\\xe0\\x4a\\x25\\x1c\\xbb\\xfb\\xd1\\x70\\x54\\x6d\\\n\\xfa\\x6c\\x70\\x73\\x32\\x13\\x1a\\xb3\\x25\\x91\\x0f\\xda\\x17\\xdb\\x9f\\xec\\\n\\xa0\\x7a\\x69\\x8c\\xa4\\xec\\x38\\x7c\\x1e\\x1b\\x66\\xe3\\x2d\\x51\\x12\\xc6\\\n\\x2e\\xe2\\x59\\xaf\\x29\\x50\\x7d\\x09\\x1d\\x30\\xf0\\x4c\\xce\\x2f\\x99\\xe3\\\n\\x8f\\x84\\x0d\\x8d\\x1a\\xaa\\xb4\\x32\\x2d\\x9b\\x86\\x56\\x1b\\xfc\\x75\\x5c\\\n\\x41\\x92\\x9d\\x64\\x8b\\x95\\xe4\\x5a\\xee\\x15\\x40\\x65\\x00\\xfe\\xf1\\x18\\\n\\x83\\x21\\x38\\xae\\x64\\xbc\\x91\\xf9\\x7e\\xcc\\x64\\x2d\\x08\\xf8\\xa4\\xa6\\\n\\x8c\\xda\\x6f\\x85\\x4c\\x86\\x7e\\x25\\x6e\\x21\\x69\\xab\\x21\\x8c\\x49\\x20\\\n\\x0e\\x0f\\x09\\xd4\\xaa\\x30\\x86\\x85\\x55\\x45\\x36\\x76\\xa1\\xdc\\x48\\xf3\\\n\\x49\\x3c\\xdc\\x51\\xc2\\x35\\x4b\\xd9\\x2c\\x34\\xa8\\x23\\xcb\\x75\\x2a\\x95\\\n\\x6b\\x46\\xfa\\xe1\\x1c\\x65\\xdd\\x21\\x66\\xbc\\xd1\\x96\\x3d\\xaa\\x79\\xb7\\\n\\x35\\xee\\x18\\xe2\\x7f\\x17\\x92\\x51\\x3a\\xf8\\x6a\\xd8\\x05\\x05\\xa7\\x37\\\n\\xc3\\xb6\\x08\\x92\\x46\\xd1\\xf8\\x6c\\x19\\x9b\\xb1\\x51\\xa6\\xd5\\x8d\\x4c\\\n\\x1e\\xcf\\x99\\x9a\\x5e\\x6c\\xce\\x64\\x31\\x91\\xe4\\x37\\x3b\\x94\\xd6\\xd0\\\n\\x06\\xcb\\x5d\\x87\\x2e\\x24\\x80\\x14\\x25\\x68\\x65\\x89\\xb9\\x16\\x48\\x9f\\\n\\xcc\\x41\\x1d\\x40\\xe7\\x34\\xeb\\x4d\\x46\\xb5\\x9a\\x2c\\xaa\\xbb\\xc5\\x58\\\n\\x3d\\xeb\\xd0\\xa2\\xdc\\x7c\\xca\\xed\\xbf\\x0c\\xf3\\x1e\\xd4\\xd8\\xed\\x85\\\n\\x7f\\x6c\\x65\\xcc\\x91\\x7d\\xac\\xe1\\x84\\x8b\\xa1\\x0c\\x82\\xba\\x71\\x2f\\\n\\xa5\\x48\\xa0\\x02\\x80\\x60\\x45\\x9a\\x31\\x03\\xc3\\x0f\\x2c\\x1c\\x45\\x64\\\n\\xa7\\x43\\xcd\\xe5\\x24\\x6f\\x4e\\xf4\\xc2\\xbe\\x5e\\x35\\x69\\x08\\x2e\\xb1\\\n\\x85\\xbd\\x63\\xb8\\xe9\\xa0\\xf9\\x8c\\x47\\x26\\x75\\x04\\x33\\x29\\x91\\x65\\\n\\x2c\\xd5\\x79\\x80\\x90\\xf0\\xed\\x41\\xfb\\x25\\x29\\x43\\x61\\xd4\\x1d\\xcd\\\n\\x71\\x27\\x12\\x36\\x60\\xea\\xe5\\x04\\x45\\x5a\\x5e\\x24\\x95\\x50\\xb4\\x27\\\n\\x94\\x2f\\x98\\xd7\\xbe\\xd8\\x86\\xec\\xa2\\xca\\x44\\x6c\\x23\\xe2\\xb7\\x34\\\n\\x6d\\x73\\xd2\\xa1\\x58\\x0a\\xfc\\x67\\x7f\\xb3\\x83\\x70\\xb5\\x92\\xfb\\x56\\\n\\x24\\x11\\xc0\\xca\\xd4\\xd2\\x89\\xcd\\xcb\\xf0\\xd1\\xd6\\xa4\\x9b\\xba\\x63\\\n\\x30\\xc8\\x17\\x2c\\x61\\x2b\\xe6\\x8c\\x7b\\x4c\\xb5\\x00\\x96\\x53\\x43\\xc9\\\n\\xa9\\x1f\\x77\\x7d\\x71\\x36\\x7b\\x36\\xb3\\x49\\xe2\\x33\\xc8\\xac\\x87\\x9a\\\n\\xe8\\xa3\\x17\\x70\\xc3\\x9d\\x2a\\x86\\xb5\\x74\\xda\\x82\\x98\\x96\\x68\\xa1\\\n\\x84\\xe7\\x92\\x3b\\xa4\\x6d\\x40\\x98\\xae\\xaa\\xe1\\x4e\\x83\\x7f\\x2f\\x5e\\\n\\xf8\\x51\\x3a\\x25\\xc7\\x97\\x8a\\x8c\\x51\\xc3\\x69\\x41\\xbd\\x2d\\x1a\\xe1\\\n\\xb8\\x79\\xbb\\x98\\xb1\\xe3\\x25\\x45\\x48\\x0a\\x45\\x02\\xad\\x00\\x6d\\x7e\\\n\\x78\\x98\\x4b\\x99\\x9f\\x89\\x72\\xca\\xd3\\x35\\xcd\\x24\\x49\\x10\\x16\\x50\\\n\\x53\\x46\\x4a\\x0a\\x32\\xed\\x40\\x29\\xa9\\x38\\xca\\x97\\x26\\x18\\xb3\\x13\\\n\\x69\\x98\\x75\\x11\\x72\\xf0\\xea\\xf7\\x5d\\xe7\\xa2\\x55\\xcf\\xcf\\x06\\x74\\\n\\xcc\\x3e\\x65\\x1c\\x56\\xa2\\x5b\\x87\\x73\\xe5\\xee\\x75\\xc4\\xbf\\xdd\\xf2\\\n\\xa4\\x39\\x69\\x54\\xad\\x1c\\x1b\\xef\\x23\\x5d\\x49\\xe6\\x3d\\x46\\xd4\\xa5\\\n\\x30\\xd1\\x4b\\x25\\xde\\x29\\x20\\x05\\x1f\\x8b\\xce\\x2b\\x4a\\xc8\\xe3\\xcc\\\n\\x11\\x76\\xd7\\x76\\xa6\\x98\\x7c\\xa6\\x69\\x95\\xf2\\x59\\x86\\x64\\xdf\\x9e\\\n\\x17\\x92\\xa9\\xc5\\x52\\xdb\\x0e\\x6a\\x35\\xab\\x42\\x08\\xed\\x89\\x32\\x6e\\\n\\x55\\x84\\x48\\xb9\\x88\\x9a\\xa0\\x71\\x61\\x6a\\xd9\\x2a\\x0e\\xcf\\xf9\\x53\\\n\\x10\\x2a\\x48\\xd1\\xc5\\xc3\\x8e\\x47\\xfb\\x3c\\x52\\x29\\xcc\\x7f\\x41\\xd7\\\n\\x10\\x65\\xf8\\x8e\\xc9\\x29\\x41\\x34\\xf6\\x83\\x14\\x60\\xad\\x55\\x8e\\xfa\\\n\\xe9\\xc9\\xdb\\x4c\\x7b\\x03\\x18\\xc7\\xb6\\x3d\\x61\\xcc\\x88\\xea\\x66\\x86\\\n\\xbe\\x48\\x19\\xb9\\x63\\x71\\x71\\xe2\\x69\\x5d\\xa9\\x4c\\x11\\x5e\\x27\\xb1\\\n\\x4b\\x22\\xe5\\x55\\xc0\\xb9\\xdf\\xc8\\xec\\xd4\\xa5\\x69\\x4b\\x6a\\xc5\\xb4\\\n\\xc1\\xf6\\xa9\\x1c\\xb4\\x91\\xe6\\x56\\x30\\xb6\\xb8\\x8e\\x46\\xd0\\x5c\\x9f\\\n\\x6b\\x5e\\x51\\xf3\\xc1\\x7c\\xd0\\x8f\\x8b\\x15\\xf7\\x5d\\x17\\x21\\x04\\x90\\\n\\xbe\\x5a\\x73\\xd3\\x5f\\x9e\\x1f\\x81\\xe1\\xee\\xfc\\x43\\x40\\xc8\\x2c\\xb1\\\n\\x40\\xd6\\xca\\x36\\x95\\xf9\\x7c\\xf1\\xec\\x11\\xab\\x66\\x73\\x79\\x87\\xb9\\\n\\x20\\x9c\\xdf\\x16\\x5c\\xa8\\xa9\\x05\\xf5\\xdb\\xcc\\xfa\\xf2\\xfe\\x58\\xcc\\\n\\xf8\\x76\\x6b\\x31\\x04\\x9e\\x28\\xf1\\x46\\x44\\x7f\\xb3\\x2e\\x64\\x7b\\x40\\\n\\x84\\x7d\\x94\\x15\\x17\\x6b\\x86\\xc8\\xf1\\x4c\\x32\\x4e\\xfc\\x4c\\x86\\x69\\\n\\x5a\\x9c\\xc3\\x40\\xb5\\xd4\\xd0\\xea\\xaf\\xf2\\xc6\\x62\\x7c\\xc5\\x59\\xd6\\\n\\x06\\x93\\x2e\\x2a\\x2d\\x72\\x63\\xa2\\xb5\\x56\\xa0\\xd3\\x7d\\xaa\\x2a\\x4e\\\n\\x1b\\x39\\xed\\x59\\x68\\x16\\x17\\x2f\\x99\\x9a\\x47\\x6d\\x29\\xbb\\x3c\\x62\\\n\\x87\\x98\\x79\\x7b\\x9c\\x4d\\x95\\x83\\xda\\xde\\x78\\xd9\\xf8\\x46\\x40\\xb0\\\n\\xc5\\x2a\\xaf\\xf9\\xab\\x5d\\x56\\x23\\xa9\\x40\\x4d\\x58\\x52\\xa0\\x1d\\xa6\\\n\\x2a\\xb2\\xac\\x88\\xbc\\x52\\xe5\\xab\\x1b\\x9b\\x2e\\xa2\\xd3\\x5d\\x76\\x2d\\\n\\xb0\\x02\\xbf\\x3c\\xc7\\x8b\\x65\\xe3\\x93\\x87\\x96\\x0f\\xc0\\x93\\x35\\x25\\\n\\xb1\\xcd\\x3a\\x20\\x2d\\xff\\x00\\xd2\\x12\\x5d\\x73\\x6d\\x6a\\x8d\\xee\\xa0\\\n\\xf0\\xfc\\xe6\\x76\\x9c\\x4c\\xe9\\x9c\\xb4\\xd4\\x55\\x79\\x5b\\xde\\x98\\xca\\\n\\xe5\\x9f\\x58\\xf2\\xb6\\x5a\\x62\\x77\\xe7\\x93\\x4e\\x4a\\x30\\xc2\\x03\\x98\\\n\\xba\\x52\\x64\\xab\\x8c\\xbf\\x24\\x8e\\x37\\xb6\\xa2\\x9c\\xba\\x03\\xb6\\x23\\\n\\x70\\xa9\\xc4\\x70\\x9e\\xf0\\x0a\\x1f\\x2d\\x6a\\x68\\x34\\xa9\\xe9\\xd3\\x0c\\\n\\x01\\xcb\\x89\\x90\\x33\\x11\\x60\\x95\\x8d\\x37\\x6a\\x81\\xcb\\x5d\\xb5\\xa5\\\n\\x6a\\x71\\xef\\xbd\\xf4\\xe9\\x20\\x8e\\x48\\x23\\x41\\x71\\xa0\\xba\\xc0\\xdb\\\n\\x54\\x2b\\x8d\\xbc\\xbd\\xf0\\x1a\\x78\\x8a\\xab\\x13\\x68\\x7b\\x8b\\xae\\xb4\\\n\\xd7\\xe5\\xe9\\xa6\\x14\\xa4\\x05\\x45\\xbe\\x5f\\x35\\x35\\x3b\\xb0\\xdc\\x9d\\\n\\xfe\\xb4\\xe9\\x89\\xe0\\x12\\x43\\x95\\x97\\x20\\x04\\x39\\x82\\x11\\x63\\x3c\\\n\\x18\\xd5\\x2c\\x35\\xad\\x4a\\xeb\\xa5\\x75\\xd7\\x5c\\x34\\x99\\x59\\x63\\x74\\\n\\xba\\x45\\x2d\\x55\\xe2\\x94\\xa7\\x9a\\x3a\\x8d\\x48\\xec\\x3e\\x98\\xb3\\x32\\\n\\xf2\\x4a\\xd2\\x23\\x2f\\xb4\\x66\\x64\\xe4\\x8f\\x89\\xa2\\x9e\\x18\\xa1\\xaa\\\n\\xfa\\xea\\x30\\xc9\\x3e\\x6b\\x83\\x96\\x13\\xd2\\xf8\\x22\\x0b\\x2c\\xf0\\xd1\\\n\\x6d\\x5c\\xba\\x85\\xa5\\xb2\\x35\\x6a\\xe3\\xca\\xba\\x9c\\x2f\\x86\\xc0\\xfc\\\n\\x2c\\xac\\x2a\\x63\\xb2\\x36\\xe8\\x35\\x96\\x69\\x73\\x23\\x99\\xa5\\x7e\\x8b\\\n\\x0e\\xad\\xa5\\xf2\\x05\\xaa\\xe0\\x0c\\xb4\\x52\\x78\\x7e\\x49\\xa4\\x5e\\x18\\\n\\xe6\\x8a\\x47\\x5a\\x90\\xd3\\x66\\xe4\\x1d\\x0b\\x73\\xf0\\x95\\x99\\x82\\xdd\\\n\\x71\\xd4\\xe3\\xd8\\x73\\x13\\x47\\x99\\x39\\x48\\x93\\x87\\x29\\x72\\x1a\\x4b\\\n\\x83\\x12\\x1a\\xca\\x9a\\xb1\\xd1\\x58\\x69\\xd1\\xf1\\x1c\\xef\\xc6\\xcb\\xc8\\\n\\x95\\x44\\x81\\xd8\\x66\\x05\\x29\\x62\\xb5\\x7c\\xc7\\x7d\\x6a\\x01\\x00\\x7a\\\n\\x62\\x08\\xbc\\x38\\x40\\xc4\\x27\\xbe\\xce\\xf9\\x5d\\x98\\x99\\x1c\\xc5\\xad\\\n\\x4d\\xab\\xc8\\x85\\xb7\\x95\\xc0\\x2b\\xee\\xe8\\x30\\x43\\x86\\x13\\x0b\\xcb\\\n\\xc9\\x32\\x68\\x8c\\x34\\x0d\\x15\\x7d\\x4e\\xfd\\xb0\\xc9\\xc0\\x6b\\x74\\xa4\\\n\\xff\\x00\\x69\\x81\\x0d\\x76\\xbd\\x2b\\xae\\x09\\x5c\\x85\\xe1\\x72\\x72\\x47\\\n\\xa0\\xf3\\xdb\\xb4\\x6e\\x69\\xaa\\xf5\\x8e\\xbe\\x51\\xa0\\xa5\\x71\\x13\\xf1\\\n\\x1a\\x05\\x84\\x46\\xd3\\xb1\\xd2\\x57\\x70\\xa6\\xe8\\x95\\x36\\x1a\\xf2\\xfc\\\n\\x80\\xc4\\xb9\\x1c\\xce\\x6e\\x2f\\xef\\x19\\x89\\x7f\\x0f\\xcc\\xf1\\xef\\x85\\\n\\x96\\xd0\\xde\\xce\\xf1\\x96\\xaa\\xb2\\x68\\x09\\x61\\xcd\\x88\\xf3\\x52\\x22\\\n\\xca\\xaa\\x85\\x73\\x4e\\x8c\\xaa\\xab\\x1d\\xa1\\x39\\x35\\x06\\xf6\\x60\\x7c\\\n\\xb4\\xa0\\x24\\x60\\xe5\\xb8\\x22\\x34\\x23\\xdc\\x4a\\xb4\\xb5\\x3f\\xcc\\x00\\\n\\x2d\\x7d\\x0d\\x4f\\xa6\\x3f\\xc1\\x66\\xa5\\x3c\\x23\\x49\\x49\\x61\\xc3\\x31\\\n\\xaf\\xc3\\x10\\x3c\\xb7\\x5f\\xe6\\x76\\xc7\\xf7\\x75\\x52\\x4e\\x1f\\x9a\\x58\\\n\\xca\\xf0\\xcc\\x92\\x3d\\x8f\\x1d\\x14\\x73\\x70\\x97\\x55\\x63\\xe6\\x3a\\xe3\\\n\\x25\\xe0\\xf9\\x27\\xe1\\xf8\\x7e\\x59\\xa6\\x9b\\x3b\\x3b\\x00\\x4c\\xf9\\xa9\\\n\\x1b\\x89\\x23\\xaa\\xfc\\x66\\xae\\xcb\\x1a\\x9e\\x55\\xb4\\x37\\x41\\x80\\xa5\\\n\\x81\\xcb\\xd5\\x02\\xe5\\xdc\\x5c\\xc6\\x25\\x1a\\x96\\x93\\xe0\\x91\\xce\\xe7\\\n\\xcb\\xdb\\x5c\\x18\\xda\\x4c\\xb4\\x49\\x1e\\x5f\\x36\\xa9\\x97\\x49\\x16\\x59\\\n\\x6e\\xb7\\x91\\xa4\\xb2\\xbf\\x0b\\x53\\x9b\\x5d\\x07\\xa6\\x12\\x68\\x9e\\x58\\\n\\xa4\\x08\\x19\\x58\\xfe\\xca\\x65\\x36\\xf9\\xe3\\x7e\\x52\\xde\\x63\\x4d\\xcd\\\n\\x09\\x1a\\xe3\\xda\\xa5\\x64\\x46\\x40\\x12\\x54\\x06\\xfe\\x1b\\x68\\x06\\x88\\\n\\x0b\\xf3\\x53\\x96\\x36\\xd1\\x48\\xd0\\x69\\x8c\\xca\\xda\\x66\\x95\\x61\\x67\\\n\\x55\\xcc\\x52\\x24\\x90\\x26\\xb4\\xa8\\xba\\x53\\x76\\x80\\x6c\\x2e\\xd2\\x80\\\n\\x12\\x30\\xa5\\x5e\\x0c\\x98\\x0a\\x48\\x8a\\x08\\x9f\\xa6\\xaa\\x0c\\xb6\\xd5\\\n\\xb7\\x03\\x7e\\x83\\x02\\x25\\x76\\x12\\xaa\\x5e\\x54\\xb5\\x03\\xc8\\xcf\\x62\\\n\\x27\\x3d\\x7a\\xeb\\xf6\\x7b\\x63\\xfc\\x29\\x8a\\x17\\x0e\\x1d\\x92\\x4c\\xbc\\\n\\x92\\x31\\x5a\\x2f\\x2b\\xc9\\x1c\\x85\\x9b\\x50\\x7e\\x1a\\x54\\xea\\x0e\\x0c\\\n\\xa3\\xcf\\x07\\x85\\xa4\\x71\\x05\\x90\\xc2\\xad\\x9c\\x7c\\xd9\\x95\\xd9\\x93\\\n\\x43\\x64\\x70\\xc8\\xcd\\xcc\\x2a\\xcd\\x1a\\x21\\xd8\\x63\\x85\\x98\\xcc\\xcc\\\n\\xd3\\x6a\\xd4\\x81\\x9e\\xdd\\x49\\xe1\\xaa\\x8f\\x33\\xb1\\xb7\\x9b\\xe0\\x4d\\\n\\x43\\x0a\\x61\\x25\\xb9\\xc4\\x71\\x2d\\xf2\\xc6\\xde\\xf2\\x59\\x4d\\x2d\\xa1\\\n\\xad\\x51\\x23\\xbb\\xd3\\xe5\\xb6\\x1a\\x5b\\x64\\x8a\\x9e\\x66\\x75\\xa4\\x8e\\\n\\xbb\\xd6\\xb4\\xa9\\x50\\x3f\\x2c\\x58\\x8e\\xc5\\xb8\\x7c\\x4d\\x18\\xf9\\x7a\\\n\\xd3\\xf4\\xa7\\x6f\\x4c\\x42\\xcf\\x96\\x24\\x83\\x70\\xbb\\xb8\\xd9\\xba\\x73\\\n\\x62\\x44\\x83\\x2d\\xc3\\x2c\\x12\\x69\\x64\\x22\\xc0\\x64\\x97\\xe3\\x05\\x75\\\n\\x60\\x36\\x35\\x3b\\xe0\\x0c\\xc0\\x0e\\x5c\\xbd\\x19\\x69\\x58\\xe0\\xd4\\x5f\\\n\\x5f\\xf3\\x06\\x86\\xa9\\xe6\\xa1\\xd3\\x40\\x70\\xb2\\x9a\\x4b\\x97\\xb2\\xd8\\\n\\x14\\xd8\\x61\\x70\\x6e\\x04\\x86\\xf8\\x05\\x28\\x2d\\xfc\\x71\\x32\\xe5\\x33\\\n\\x23\\x28\\xaa\\x8d\\xc3\\x8a\\x24\\x72\\x8e\\x6a\\x7e\\x16\\xf7\\x75\\xa6\\xd7\\\n\\x0a\\x62\\x35\\xf1\\x1c\\xf0\\x87\\xfc\\x51\\x54\\x92\\x15\\xe0\\xb0\\x14\\x60\\\n\\xaf\\x40\\xfa\\xe9\\x4a\\xed\\xad\\x74\\xc4\\xa3\\x3d\\x9d\\x6c\\xc7\\x8a\\x4c\\\n\\x83\\xd9\\xf3\\x1c\\x4b\\xa5\\x2e\\xa2\\x9d\\xcf\\x27\\xa6\\xc3\\x7d\\xf1\\x02\\\n\\xe5\\x94\\x49\\x0b\\x4e\\x9e\\xf6\\xf9\\x09\\x65\\x27\\x50\\x57\\xca\\x06\\x95\\\n\\xfc\\x30\\xbe\\x1d\\x9c\\x92\\x31\\xe2\\x59\\x78\\xc8\\xca\\x4e\\xcc\\x19\\x8c\\\n\\x44\\x1e\\x2e\\x51\\xdc\\x8a\\xd2\\xbc\\xd1\\xeb\\xb8\\x03\\x19\\x9c\\x83\\x08\\\n\\xfc\\x42\\x36\\x76\\x12\\x8a\\x5b\\x22\\x4d\\x1a\\xfb\\xb5\\x89\\xcd\\x4a\\x3c\\\n\\x52\\x6d\\x4a\\x62\\x69\\xf8\\xaa\\xb0\\x8c\\xc5\\xc6\\x1a\\xd4\\x81\\x45\\xf7\\\n\\x6b\\xa5\\x9a\\x1b\\xb6\\xd0\\x73\\x5b\\xbe\\x32\\x0c\\xf9\\xa3\\x03\\xe5\\xd6\\\n\\x67\\x83\\x87\\xba\\x0c\\xc0\\xa3\\x5f\\x5e\\x6d\\x6c\\x07\\x5e\\xbb\\x63\\x31\\\n\\x04\\x52\\x48\\xd1\\xac\\x6f\\x2a\\x4e\\xff\\x00\\xe6\\x10\\xa4\\xd6\\xef\\xbe\\\n\\xed\\x41\\x53\\xf0\\xdf\\xb8\\xc4\\x71\\xe6\\x32\\x64\\xa4\\x39\\x8b\\x8e\\x61\\\n\\x05\\xd5\\x9b\\x46\\xf9\\xb0\\xee\\xc4\\xf7\\xa7\\x5c\\x5c\\x60\\x01\\xdd\\xba\\\n\\x0a\\x54\\x36\\xa1\\xb4\\x1b\\xeb\\x4f\\xcb\\x01\\x20\\x82\\x92\\x30\\xb8\\x9b\\\n\\xec\\xba\\xee\\x94\\xef\\x5a\\x55\\x7e\\xcd\\x70\\x9e\\x21\\x9e\\x8e\\x2b\\xa4\\\n\\x83\\x87\\x0c\\x51\\xaf\\xbc\\x8e\\xa4\\x23\\x93\\x4f\\x33\\x3a\\xd2\\xa7\\xa6\\\n\\xb8\\x5f\\x12\\xcd\\xc6\\xcf\\xc2\\xca\\xc5\\x0a\\x01\\x5d\\x08\\x77\\x6b\\xcd\\\n\\x3e\\x94\\xfc\\x71\\x12\\xe5\\x50\\x40\\xb1\\x12\\xb0\\xd4\\xb1\\x65\\xae\\xac\\\n\\xf7\\x77\\xd7\\xc9\\xb5\\xc4\\x9c\\x70\\x1b\\x37\\xc7\\x0b\\x78\\x13\\x3b\\x1f\\\n\\x77\\x1b\\x0a\\x2d\\x46\\xed\\xbb\\x68\\x0f\\x41\\xdb\\x12\\xa4\\xb3\\x4b\\x26\\\n\\x59\\x19\\x64\\x65\\x8c\\xb4\\x41\\x99\\x28\\x56\\x8b\\xca\\xa7\\x5f\\xb6\\x4d\\\n\\x29\\x88\\x86\\x7b\\x27\\x08\\xc8\\x53\\xf6\\xa0\\xb1\\x95\\xcf\\xd9\\x12\\xd0\\\n\\x15\\x15\\xd4\\xdb\\xa9\\x15\\xc3\\xe4\\x3c\\x3e\\x27\\x82\\xce\\x11\\x49\\x6a\\\n\\xce\\x38\\x34\\xbc\\x83\\x5d\\x49\\x09\\x40\\x09\\xf8\\xf1\\x97\\x82\\x34\\x54\\\n\\xca\\xc5\\x1f\\x0c\\xe5\\x68\\xb6\\x48\\xa7\\x52\\xcf\\xd6\\xf6\\x34\\xbf\\xe0\\\n\\xc3\\xe7\\xf3\\xad\\x2e\\x66\\x58\\x94\\xc5\\x0c\\x63\\x56\\x5b\\x9d\\x45\\x23\\\n\\xdc\\x06\\x14\\x02\\xfd\\xe8\\x3b\\x0c\\x05\\xcb\\x40\\xe9\\xc5\\x70\\xb6\\x36\\\n\\xa2\\x37\\xd7\\xb6\\x83\\x4a\\xd2\\x9a\\x13\\xf3\\xc1\\x79\\x24\\x5b\\x68\\x8b\\\n\\x4f\\xb2\\xcc\\xac\\xbe\\x5e\\xb5\\x3b\\xf6\\xc3\\xcc\\x14\\x24\\xd3\\x1f\\xf1\\\n\\x33\\x20\\x27\\x91\\x2a\\xc3\\xae\\xc2\\x9a\\x53\\x5a\\xe0\\x08\\xac\\x7e\\x6b\\\n\\x98\\x15\\xa3\\x16\\x6d\\xd8\\x7e\\xf0\\xa5\\xd8\\x67\\xe1\\xaa\\xc8\\xa8\\x51\\\n\\x05\\x03\\x2a\\x97\\x17\\x37\\x4f\\x88\\x9d\\x69\\x8e\\x34\\xd4\\xbd\\x8b\\x6c\\\n\\x6d\\x14\\x07\\x4a\\x0c\\x4d\\x04\\x72\\x4a\\x12\\x55\\x46\\x90\\xdf\\xce\\xf5\\\n\\x20\\x1b\\x9b\\x76\\x1a\\x0d\\xf1\\x98\\x98\\x49\\x99\\x0f\\x10\\x53\\x1d\\x25\\\n\\xd1\\x4d\\xb5\\xa8\\x16\\xfa\\xe3\\x25\\x9b\\x1a\\x4e\\xf1\\x51\\xde\\x8b\\xcc\\\n\\x78\\x81\\x2f\\x22\\xda\\x17\\x35\\xa9\\x3b\\x56\\x9a\\x60\\x7b\\xe6\\x36\\xba\\\n\\xe5\\xe3\\x26\\x84\\xc5\\x1b\\xcb\\x12\\xb5\\x9a\\x68\\xc7\\x5d\\x4d\\x77\\xa6\\\n\\xd4\\x18\\x93\\xde\\xe6\\x2b\\x13\\x55\\x58\\x3a\\xa9\\xd7\\x42\\x39\\x63\\x02\\\n\\x9f\\x20\\x30\\x19\\xd0\\xca\\x44\\x62\\x9c\\x56\\x2d\\xf9\\x6d\\xf9\\x63\\x31\\\n\\xee\\xa3\\x88\\x41\\x07\\x20\\x86\\x18\\x57\\xc9\\xb0\\x2c\\x63\\x67\\xb7\\xd2\\\n\\xec\\x66\\xc4\\x97\\xbf\\x10\\xcb\\x5a\\xb9\\xd0\\x12\\x01\\x55\\xa5\\x2c\\x5a\\\n\\x12\\x39\\x69\\x88\\xd6\\x28\\xad\\x0a\\xa8\\x46\\xbd\\x6d\\x1a\\xed\\x87\\x12\\\n\\x65\\xe3\\x6a\\x80\\x2e\\xa0\\xbb\\x5a\\x1f\\x36\\x38\\x31\\xad\\xb1\\xa4\\x7a\\\n\\x0f\\x96\\x28\\xca\\x1b\\x46\\xdc\\x7c\\xbf\\x9e\\x1d\\xc4\\x1c\\x26\\x91\\x94\\\n\\x31\\x8a\\x89\\x5e\\x6f\\xdd\\xc2\\xcd\\x14\\x65\\x1f\\x2b\\x24\\x62\\x2b\\x58\\\n\\x8d\\x58\\x6a\\xcd\\x4d\\xdb\\xd7\\xf2\\xc4\\x53\\xe6\\x5d\\xf8\\xab\\x38\\xca\\\n\\xd6\\x37\\x64\\x0d\\x1b\\x56\\xb7\\xad\\x4a\\x33\\xe8\\x39\\xa9\\x89\\xd5\\x99\\\n\\x9b\\xd9\\xdd\\x92\\x2a\\x9d\\x42\\x82\\x16\\x9f\\x86\\x33\\x5c\\x34\\x88\\x04\\\n\\xf1\\x26\\xf0\\xf0\\xb6\\x1b\\x7d\\x9e\\x38\\xef\\x15\\x01\\x87\\x3b\\x11\\xce\\\n\\xdd\\x46\\x33\\x1e\\xcd\\x97\\x82\\x12\\xbe\\x1f\\x1c\\xf7\\x24\\x61\\x4b\\x4b\\\n\\x22\\x9a\\xb3\\x52\\x95\\x3d\\xb4\\xd3\\x19\\x54\\x64\\x8a\\x50\\xf5\\x72\\x65\\\n\\x52\\xcd\\x56\\x06\\xba\\xdc\\x31\\x0c\\xa9\\x95\\xcb\\x99\\x24\\x89\\x5c\\xb3\\\n\\xc4\\x1f\\x52\\x87\\x40\\x1b\\x4a\\x61\\x96\\x38\\xf2\\xf0\\xf2\\xd7\\xdc\\xc1\\\n\\x1c\\x67\\xf6\\x65\\xb7\\x51\\x52\\x2e\\xd4\\xdd\\x5d\\x40\\xc2\\x49\\x9a\\xcd\\\n\\xe6\\xa6\\xe1\\x72\\xaa\\x34\\xc5\\x53\\x51\\x79\\x62\\xb1\\xd9\\x56\\xad\\x35\\\n\\xe8\\x34\\x00\\x02\\x6b\\x3d\\xcb\\x6f\\xb4\\x24\\x82\\x62\\x9a\\x17\\x65\\x65\\\n\\x22\\x42\\x4d\\x7d\\xe0\\xfb\\x58\\xcd\\x65\\xca\\x8e\\x1e\\x45\\xd6\\x18\\x69\\\n\\x50\\xc5\\x2c\\x32\\xfb\\xc3\\x5e\\x73\\x77\\xe5\\x8c\\xc4\\x4f\\xe5\\x31\\x86\\\n\\xf5\\x53\\xcf\\xe5\\xba\\xb4\\xf2\\x8c\\x39\\x6f\\x30\\x9c\\x51\\x87\\x9b\\xdd\\\n\\x31\\x54\\xd7\\xd0\\x28\\xfa\\xeb\\x86\\xcd\\xf1\\x24\\x8a\\x74\\x61\\x1d\\xf0\\\n\\xb1\\x4a\\x82\\x1b\\x53\\xbe\\xba\\x6f\\x89\\xe0\\x9f\\x37\\x9e\\x9a\\x37\\x86\\\n\\x49\\x08\\x93\\x32\\xcf\\xcf\\x1c\\x25\\xd4\\xa9\\x22\\xab\\xcd\\xd1\\x68\\x31\\\n\\xcb\\x18\\x5e\\x11\\x9d\\x16\\xd2\\xc0\\xf2\\xe5\\x84\\x8a\\x4b\\x03\\x75\\xc1\\\n\\xb5\\xa8\\x23\\x73\\x5a\\xe3\\x2f\\x34\\xac\\xcd\\x23\\xc6\\xf2\\x33\\x13\\x52\\\n\\x59\\x18\\xdb\\xe6\\xa9\\xe5\\xdc\\x53\\xae\\xb8\\x86\\x03\\x47\\x47\\x86\\x8d\\\n\\xc4\\x17\\x13\\xc8\\xdd\\x6b\\xf4\\xf9\\x62\\x66\\x8c\\x50\\xba\\xd3\\xae\\x82\\\n\\xb6\\x51\\x75\\xd0\\x5a\\x31\\x34\\x32\\x8b\\xd0\\x40\\x58\\x5d\\xab\\x02\\x05\\\n\\x46\\xbe\\x98\\xe3\\xd8\\x86\\x40\\xeb\\x1d\\x48\\xaf\\x28\\x63\\xa6\\xf8\\x0c\\\n\\x8e\\xca\\xca\\xa2\\xd2\\x3e\\x1b\\x75\\x14\\x1b\\x53\\xbe\\x98\\x8f\\x29\\x0b\\\n\\x5b\\x97\\xf1\\x1e\\x06\\x6a\\x68\\xe9\\x50\\x92\\xf1\\x19\\x1b\\x81\\x5d\\x62\\\n\\x57\\xdd\\x94\\x68\\x4e\\xba\\x63\\x31\\x6d\\xa4\\xc7\\x07\\x21\\x61\\x52\\x3d\\\n\\xe5\\x95\\xae\\x9a\\xd0\\xef\\x84\\x32\\xaa\\x93\\x0c\\xd1\\x04\\x3a\\xfa\\x2e\\\n\\xba\\xeb\\xa6\\x22\\x79\\x38\\x91\\x34\\x08\\xd6\\x36\\x5e\\x43\\x11\\xa5\\xe0\\\n\\x5a\\x77\\xaa\\x9f\\x31\\x1f\\x6b\\x0d\\x99\\xe2\\xcc\\xf2\\x23\\x64\\xed\\x0f\\\n\\x2b\\x14\\x5f\\xf1\\x90\\xc6\\x68\\xbd\\xca\\x68\\x7b\\xe1\\xf3\\x61\\x88\\x99\\\n\\x01\\x74\\x20\\x90\\x15\\x83\\x68\\x40\\xf4\\xc7\\x83\\xf8\\x80\\x06\\x39\\xfc\\\n\\x4a\\x06\\x97\\x35\\xc3\\xa0\\x8d\\xa5\\x58\\xff\\x00\\x6a\\xa8\\x43\\x5a\\xed\\\n\\x4a\\xb9\\xeb\\x86\\x10\\x9b\\x2e\\x48\\xe4\\x66\\x1e\\x66\\x6a\\x80\\x49\\xe9\\\n\\xaf\\xcb\\x10\\x66\\x59\\x8b\\x4a\\x50\\x46\\x49\\x3a\\x5b\\xcd\\xd3\\x11\\x7b\\\n\\xf7\\x55\\x61\\xc1\\x31\\xae\\x89\\x62\\xe8\\x34\\xef\\xeb\\x5c\\x2c\\x6a\\xe0\\\n\\x2d\\xfa\\xe9\\xa9\\xfd\\xa6\\xe6\\xbe\\x98\\xac\\xa4\\x12\\x14\\x2e\\xdd\\x06\\\n\\xd8\\x8f\\xdd\\xa9\\xb5\\x2e\\x15\\xee\\xf4\\x27\\xfd\\xb1\\x57\\x85\\x6a\\xaa\\\n\\x4a\\x9e\\xd5\\x34\\x3b\\xd7\\x1e\\x21\\x93\\x0c\\x4c\\x31\\xb0\\x0a\\x1b\\x53\\\n\\x42\\xa4\\xd2\\xba\\x7d\\x34\\xc5\\x05\\x28\\x0a\\x10\\x0f\\xce\\xbf\\xc7\\x19\\\n\\xad\\x07\\x2c\\x94\\x15\\xd7\\x42\\xcb\\xdf\\xe7\\xa6\\x26\\x8c\\xa8\\x2a\\xe8\\\n\\xc8\\x6a\\x2a\\x68\\xdc\\xa4\\xfc\\xe9\\xd7\\x11\\xc3\\x97\\x5e\\x1a\\x45\\x69\\\n\\x4a\\x6f\\x5b\\xd4\\x54\\x9e\\xb5\\x07\\x5c\\x4e\\xe5\\xb9\\x8b\\x1e\\x6e\\xa0\\\n\\x44\\xab\\x6a\\x8f\\xbb\\xcc\\x4d\\x3b\\xe3\\x34\\xf7\\x1a\\xd5\\x4d\\x07\\x94\\\n\\x5f\\x0a\\xb3\\x50\\x74\\xd7\\x16\\xd1\\x35\\x21\\xeb\\x4e\\x6b\\x94\\x5d\\xbd\\\n\\x7a\\x93\\xae\\x32\\x6e\\x7c\\xd3\\x2e\\x66\\xff\\x00\\xfe\\x9a\\x31\\x52\\x07\\\n\\x71\\xdf\\x05\\x6d\\x04\\x18\\xda\\x52\\x4e\\xa6\\xfd\\xc6\\xbe\\x87\\x51\\x8d\\\n\\x35\\xb8\\x10\\x6e\\xd6\\xbc\\xc4\\x61\\x6d\\xe4\\x29\\x73\\x02\\xbb\\xd4\\x0e\\\n\\xfa\\xe1\\x18\\x6e\\xf1\\xf3\\x6f\\xad\\x16\\xfe\\xfd\\xce\\x2c\\x8e\\x76\\x55\\\n\\xa5\\x42\\xe9\\x41\\x52\\x74\\x1a\\x6d\\x8f\\xff\\xc4\\x00\\x25\\x10\\x01\\x01\\\n\\x00\\x03\\x01\\x00\\x02\\x02\\x02\\x03\\x01\\x01\\x01\\x00\\x00\\x00\\x01\\x11\\\n\\x00\\x21\\x31\\x41\\x51\\x61\\x71\\x81\\x91\\xa1\\xb1\\xc1\\xd1\\xf0\\xe1\\xf1\\\n\\xff\\xda\\x00\\x08\\x01\\x01\\x00\\x01\\x3f\\x21\\xf8\\x4a\\x7c\\xee\\x30\\x6c\\\n\\x3c\\x3b\\xbe\\x60\\x65\\xd3\\x49\\x10\\x1a\\x48\\x1c\\xf6\\x38\\xe5\\x89\\xe9\\\n\\x47\\xcd\\xf0\\x8d\\x0f\\x2f\\xef\\x24\\xc0\\x22\\x3a\\x15\\x47\\x8d\\x11\\x6c\\\n\\x7c\\x61\\xfd\\xe0\\x86\\xa2\\xd4\\xd6\\xa9\\x54\\x4b\\xa2\\xe0\\xf9\\x90\\xbb\\\n\\x7c\\x87\\xfa\\x32\\x1a\\x77\\x8c\\xbe\\x08\\x5f\\xca\\x93\\x5f\\x1e\\xbd\\x39\\\n\\x85\\xb6\\x46\\x24\\x47\\xa4\\x60\\xa5\\x13\\x77\\x5a\\xaa\\xf1\\xab\\x8a\\x17\\\n\\x45\\xc1\\xa1\\x6d\\x0d\\x4c\\x5b\\x1a\\xc2\\x68\\x04\\xb1\\xc7\\x9c\\x74\\x37\\\n\\x44\\x75\\x3e\\xe2\\x0d\\x0a\\xb3\\xe1\\x15\\x27\\x70\\x1f\\x5c\\x1d\\x1d\\x00\\\n\\xbf\\xad\\xc7\\xe7\\x24\\xab\\x7b\\x13\\x94\\x49\\xfe\\x08\\xb9\\x30\\xa3\\x55\\\n\\x54\\x0f\\xfb\\xff\\x00\\xee\\x21\\x04\\x87\\x68\\x1a\\x32\\xd5\\xdd\\xf8\\x2b\\\n\\xe4\\xc4\\x75\\x54\\xc5\\xbd\\x86\\xf2\\xf9\\x71\\xe6\\xb0\\x11\\xd2\\x45\\x50\\\n\\xef\\x08\\xd3\\xf3\\x93\\x26\\x2f\\x9e\\x92\\x18\\x3a\\x88\\x94\\x86\\x4a\\x19\\\n\\xcd\\x11\\x48\\xef\\x6a\\x21\\x09\\x3b\\x8c\\x22\\x62\\xd1\\xb9\\x7d\\x0f\\xeb\\\n\\xf3\\x8d\\x2c\\xfc\\xeb\\x50\\xe0\\xf4\\x5c\\x76\\xe1\\xad\\x0a\\x05\\x02\\x9c\\\n\\x9f\\x5f\\xea\\xe3\\x8b\\x38\\x1d\\x1f\\x7f\\x8d\\xeb\\x08\\x8e\\xb1\\x7b\\x76\\\n\\x8b\\xc6\\xfd\\x63\\x0b\\x94\\x7e\\xd0\\xaa\\x9e\\x02\\xfd\\xb1\\x59\\x11\\x76\\\n\\x83\\x3f\\x5c\\x7e\\x13\\x93\\x9c\\x0b\\x03\\x00\\x50\\xf7\\x03\\x5f\\x5e\\x87\\\n\\xa3\\x80\\xbd\\x9e\\xa8\\xf5\\x32\\xa9\\x88\\xe9\\x75\\x7a\\x3c\\x3b\\xdc\\x76\\\n\\x80\\x35\\x25\\xa4\\xbe\\x72\\xef\\xf2\\xc3\\x62\\x6a\\x11\\xab\\xea\\x30\\x96\\\n\\xed\\xcb\\xe6\\x69\\x6f\\xe8\\x03\\x7a\\x3a\\x85\\x6d\\x90\\x48\\x34\\xb0\\x3e\\\n\\x82\\x9a\\xbb\\x98\\xdb\\x68\\x14\\x1a\\x7d\\xaa\\xde\\x76\\x96\\xcf\\x3b\\xdb\\\n\\x63\\x60\\x26\\xc7\\xcc\\xe6\\x34\\x47\\xe2\\xd8\\x35\\x9a\\xbe\\x7f\\x79\\x70\\\n\\x14\\x86\\xaa\\x4f\\xa9\\xcf\\xbc\\xd0\\x01\\x0e\\x9e\\x12\\x6a\\xfc\\xde\\x1f\\\n\\x8e\\x68\\x2c\\xb4\\xbd\\xe1\\xec\\x4f\\x68\\x26\\x49\\xee\\x02\\xd4\\xd4\\x28\\\n\\x79\\xd4\\x5e\\x14\\x13\\x52\\x1c\\x9e\\x16\\x87\\x5f\\xa6\\x44\\xe2\\xc0\\x1a\\\n\\x37\\x55\\x2b\\xc2\\x7e\\x31\\x5f\\x2e\\x92\\x1d\\x10\\xc4\\x9b\\x1f\\xde\\xb9\\\n\\x87\\x47\\xc8\\x72\\xaf\\x9d\\x43\\x5e\\x9f\\x86\\x34\\x5b\\x3a\\xd7\\x90\\x3c\\\n\\x46\\xcf\\x8c\\x28\\xb3\\xb0\\xfc\\x92\\x7c\\x89\\xa0\\x33\\x43\\xdc\\x01\\xba\\\n\\x83\\x84\\xb5\\xe8\\xa9\\xf4\\xba\\xd6\\x29\\x81\\x07\\xc0\\x2d\\x0e\\x26\\x1a\\\n\\x5a\\x85\\x77\\x3b\\x1f\\x13\\x94\\xfe\\xb0\\xb6\\xe3\\xe8\\x0e\\x8c\\x0f\\x4f\\\n\\xec\\xf9\\xc8\\x6a\\x6f\\xf4\\x56\\xd3\\x42\\xe3\\xba\\x69\\x8a\\x6a\\x4c\\xee\\\n\\x08\\x5d\\xa6\\x4f\\xb4\\xcd\\x2a\\x71\\x42\\xb6\\x3a\\xe5\\xee\\x6e\\x5d\\xbf\\\n\\x4b\\x5c\\x1b\\x2b\\x92\\xdf\\xac\\xae\\x02\\x00\\x78\\xb3\\xe7\\x57\\xc7\\x4c\\\n\\x44\\xd2\\x82\\x9f\\x08\\xbe\\x4f\\x8b\\x70\\x57\\x9a\\x4d\\xdd\\xf7\\xb3\\xa8\\\n\\x3f\\xb9\\xe6\\x14\\x80\\xd6\\x18\\x3a\\x09\\xed\\x93\\xf9\\xce\\x62\\xbb\\x77\\\n\\x57\\xda\\x5a\\xdf\\xeb\\x08\\xd5\\x44\\xa5\\x7a\\xaf\\xe5\\x3b\\xf1\\x59\\x81\\\n\\x7d\\x4f\\x4c\\x7e\\xd3\\x7f\\x87\\xf1\\xf0\\x81\\xcd\\xa7\\xaa\\xc9\\x03\\x4f\\\n\\x07\\x3c\\xc8\\x42\\xb0\\x4d\\xe0\\x71\\xbd\\xc0\\xb9\\x1f\\x66\\x84\\xe9\\x7d\\\n\\x32\\xc2\\x37\\x00\\x4c\\x44\\xa9\\x85\\x76\\x98\\xb0\\x28\\x4a\\x7c\\x1c\\x0f\\\n\\xad\\x08\\xa3\\x4c\\x69\\x1e\\xcc\\x42\\x11\\xcb\\xb3\\xe2\\x1f\\x84\\x21\\x5f\\\n\\x6f\\x95\\xe6\\x8e\\xac\\xc9\\x9c\\xd0\\x0a\\x5b\\xf8\\x1f\\xac\\xd6\\x26\\x06\\\n\\x86\\x93\\x6a\\x5e\\x37\\xee\\x39\\x0d\\xea\\x2d\\xe2\\x41\\x2f\\xec\\x21\\xcc\\\n\\x13\\xbf\\x10\\x80\\x8a\\x88\\xd9\\xa9\\xf1\\xdb\\x8a\\xc4\\x1d\\x38\\x1c\\x5b\\\n\\x77\\x69\\x0e\\xc4\\x6b\\x09\\x08\\x27\\x04\\x0e\\xd4\\x05\\x07\\x12\\x13\\x5e\\\n\\x5c\\xb1\\xb7\\xc3\\xb7\\x7f\\x41\\xef\\xc6\\xf3\\xd5\\xc0\\x75\\xbf\\xc4\\x1c\\\n\\x7c\\x33\\xec\\x1e\\x8f\\x7a\\x57\\x63\\x52\\x2a\\x92\\x60\\x9b\\x36\\xa8\\xfc\\\n\\x07\\x87\\x50\\x44\\x7e\\x31\\x01\\x0a\\x91\\x4d\\x2c\\x4e\\x9a\\x60\\xd4\\xa7\\\n\\x23\\x76\\xe7\\x09\\x70\\x24\\x8e\\x06\\xc2\\x94\\x21\\x51\\x26\\x2f\\x20\\xe8\\\n\\x5e\\xcd\\x48\\xff\\x00\\x18\\xa0\\x08\\xac\\x6f\\xb4\\x0f\\x20\\x06\\x80\\xae\\\n\\x07\\x96\\x68\\xcc\\xf6\\x0d\\x59\\xba\\x43\\x6e\\x7c\\x6b\\x64\\xe2\\x37\\x51\\\n\\xf9\\xe7\\xd7\\xcb\\x42\\xc0\\x3a\\xc7\\x7a\\xd5\\x7c\\x02\\x88\\x33\\x0f\\x76\\\n\\xd5\\x94\\xf1\\x4d\\xb7\\x91\\xfc\\x94\\x26\\x25\\x14\\x33\\xe6\\x74\\x09\\xb7\\\n\\xe5\\xdf\\xe3\\x39\\x83\\x60\\x45\\xaa\\xa5\\x4a\\xda\\x77\\xb7\\x10\\x7e\\xec\\\n\\x40\\x88\\x0f\\x6f\\x1d\\x9f\\x58\\x62\\x73\\x2f\\xc9\\x6d\\x8b\\xa1\\x35\\x37\\\n\\x70\\x6b\\x6a\\x13\\x24\\xe2\\x58\\xc9\\x81\\x03\\x55\\x9e\\x60\\x04\\xa1\\x51\\\n\\x74\\x20\\xbf\\x57\\xdc\\x56\\x82\\x8c\\x53\\x5f\\x7c\\x7c\\x4c\\x4e\\x34\\x49\\\n\\xb8\\x21\\x22\\xf9\\x13\\x6e\\x1b\\x79\\x01\\x73\\xb5\\x48\\x37\\x51\\x9d\\xdc\\\n\\xaf\\x86\\x73\\xf5\\x07\\xf3\\x6a\\xfd\\x73\\xf7\\xdc\\x60\\x2c\\x6d\\x09\\xd7\\\n\\x60\\xef\\xe3\\x93\\x97\\x12\\x10\\x9a\\xd9\\x3e\\xb6\\x5d\\x61\\x88\\x43\\xb7\\\n\\x9c\\x6f\\xcc\\x3b\\xc8\\x38\\x8b\\xbf\\xd8\\xe8\\x35\\x5c\\x37\\xbd\\x30\\x3a\\\n\\x6a\\x61\\x84\\x12\\x93\\x34\\x90\\x69\\x63\\x27\\xca\\xc5\\xa1\\x13\\x23\\xbc\\\n\\x69\\xc2\\x22\\x77\\xb6\\x55\\xa9\\x68\\xfe\\xa9\\x91\\xaa\\x22\\x06\\x89\\x3d\\\n\\x5f\\x03\\x62\\xc5\\xfd\\x15\\xb6\\x6f\\xd5\\xf9\\xd0\\xc0\\x3e\\xfb\\x3d\\x1d\\\n\\xe0\\x85\\xea\\x0a\\x46\\xcb\\xb0\\x35\\xdd\\x2f\\x72\\x2d\\x3a\\x00\\xc1\\xd5\\\n\\x6a\\x5f\\x5f\\xe3\\x58\\x34\\x80\\x59\\xa1\\xd2\\x04\\xd9\\x8a\\x4f\\xb3\\x28\\\n\\x88\\x56\\x2a\\x7c\\x1b\\x3e\\x8e\\x19\\x0d\\x2c\\xc3\\x74\\x0e\\x23\\xe0\\xde\\\n\\xbb\\xac\\x3c\\xf1\\x44\\x4b\\x5e\\xd1\\x52\\x6c\\x3c\\x03\\xcf\\x73\\x52\\xdc\\\n\\xaa\\x52\\xb5\\xbb\\x0f\\xce\\x0c\\x10\\x50\\x60\\x71\\x4b\\x47\\x4f\\xb4\\x26\\\n\\x06\\xdb\\x7a\\xf1\\x07\\xa8\\x0e\\xbe\\xd7\\xdb\\xac\\xa3\\x3c\\xdd\\x63\\xfc\\\n\\xb9\\x3e\\xdb\\xdf\\xa1\\x36\\x38\\x53\\xa3\\x44\\xe8\\x70\\x7d\\x9d\\xfe\\x23\\\n\\x22\\xfd\\xad\\xbf\\x28\\x37\\xf3\\xa9\\xc9\\x87\\xbf\\x1d\\xb1\\x3f\\x3a\\x00\\\n\\xea\\x8e\\xfd\\xc0\\x36\\xc9\\xd3\\x49\\xc5\\x88\\xaa\\x47\\x25\\x38\\x99\\x84\\\n\\xa8\\xbe\\x5c\\xf0\\x92\\x73\\x5a\\x77\\x05\\xbc\\xf5\\xe8\\xfc\\xd6\\xd6\\xbe\\\n\\x67\\xd7\\x73\\xdc\\x04\\x78\\xd9\\x3e\\xcd\\x61\\xf7\\x5e\\x5d\\x9b\\x00\\xda\\\n\\x61\\x67\\xc4\\x07\\x5c\\x93\\x14\\xfa\\x5d\\xcd\\x85\\x79\\xb5\\xdd\\xd7\\x77\\\n\\x89\\x76\\x60\\x2e\\x80\\xe3\\xd4\\xa9\\x9d\\x2d\\x4c\\x37\\x41\\xf0\\xab\\x5a\\\n\\x7d\\x37\\xcd\\x35\\x89\\x03\\x8f\\x8a\\x1b\\xf7\\x49\\x70\\x43\\x70\\x12\\xff\\\n\\x00\\x10\\xa8\\xaf\\xe1\\x0c\\xce\\xb0\\x44\\x86\\x10\\x32\\x5d\\x24\\xa9\\x84\\\n\\xc9\\xcc\\x59\\x51\\x08\\xe5\\x3e\\x13\\xb2\\x3b\\x38\\x87\\x40\\x0e\\x43\\x50\\\n\\xaa\\x80\\x27\\x7b\\x98\\x00\\x67\\x48\\x53\\xaf\\x87\\x30\\xe4\\x1a\\x6f\\x15\\\n\\x51\\x74\\x69\\xbf\\x67\\xc0\\xed\\x5d\\xe0\\x49\\x54\\x85\\x2c\\xe8\\xdd\\x57\\\n\\x03\\xd4\\x3e\\x2d\\xe3\\x5b\\xf4\\x0a\\xb8\\x00\\x4b\\x41\\xe7\\xb6\\x89\\x03\\\n\\x43\\x96\\x8a\\x94\\xe4\\x2d\\x1f\\x18\\x16\\xb9\\x34\\xce\\x93\\x1d\\xe8\\xb9\\\n\\xf1\\xd5\\xd4\\x6d\\x11\\xd0\\x37\\xcd\\x7b\\xbf\\xf7\\x94\\x68\\x9d\\x03\\xe3\\\n\\xe4\\xff\\x00\\xb8\\x2b\\x9e\\x00\\x5c\\x56\\x9f\\x8d\\x31\\xda\\x60\\xe2\\xd4\\\n\\x54\\xd5\\x65\\xf8\\x42\\x53\\x4e\\xb2\\xc8\\x4a\\x66\\x04\\x23\\xd0\\x25\\x5e\\\n\\x62\\xf6\\xe5\\x74\\x05\\x42\\xa9\\x00\\x74\\xd6\\xb3\\x93\\xb8\\xa3\\xbe\\x8a\\\n\\x41\\x17\\xc5\\xa5\\x2a\\x7b\\x44\\x94\\x26\\xff\\x00\\xa8\\x4f\\x97\\x2a\\xce\\\n\\x70\\x00\\x57\\x37\\xae\\xae\\xdf\\x00\\x30\\xa8\\x4e\\xa3\\xf9\\xc6\\x94\\x8e\\\n\\x2f\\x79\\xce\\x67\\x63\\x5b\\x77\\xc3\\x67\\xba\\x7d\\x8a\\x6f\\x1e\\xaf\\x21\\\n\\x10\\xe7\\xb6\\x76\\x26\\x92\\xe6\\xcd\\x0d\\x43\\x4c\\x42\\xfc\\x9a\\x83\\xef\\\n\\xe3\\x12\\xc9\\x69\\x4f\\x11\\xf0\\xbd\\xe9\\x40\\xdc\\x12\\xbd\\x3d\\x9b\\x25\\\n\\x03\\xc5\\x29\\xec\\x6b\\x7a\\xc5\\xfa\\xbb\\x6a\\x14\\x9d\\xda\\x7c\\xbf\\x18\\\n\\x42\\x62\\x1f\\x22\\xee\\xf5\\xfb\\x7f\\xdc\\x08\\x6b\\xbe\\x7f\\x80\\xda\\x81\\\n\\x45\\xf1\\xe1\\x97\\x44\\x9c\\x1a\\x52\\x29\\x7f\\xa1\\xa9\\x83\\xdb\\x58\\x44\\\n\\xd0\\x74\\xef\\xc6\\x25\\xc5\\x7b\\xd0\\xff\\x00\\x7f\\xfb\\xe3\\x24\\x34\\x6b\\\n\\x84\\xec\\xd0\\xd7\\xea\\xe1\\x06\\xc6\\xcb\\xef\\x7b\\x94\\xfd\\x93\\x04\\xd0\\\n\\xd2\\x3e\\xd3\\x06\\xd5\\x6f\\xc9\\x86\\xb2\\x85\\xf0\\x7c\\x8f\\x30\\xe6\\x1f\\\n\\x09\\x51\\x63\\xff\\x00\\xbf\\xce\\x6d\\x00\\xb4\\x0d\\x54\\x02\\x07\\x74\\xd2\\\n\\x7d\\x9d\\xa4\\x6c\\xb1\\x2c\\x47\\x6b\\xf7\\x3d\\x7c\\xe4\\xe8\\x4d\\xb4\\x36\\\n\\x2a\\x1f\\x76\\xdb\\xc3\\x0d\\x00\\xdd\\xaa\\x1e\\x03\\xe5\\x3c\\xe0\\xb8\\x74\\\n\\x96\\xe2\\x0a\\x43\\x70\\x0d\\x3b\\x0f\\xef\\x19\\x40\\x53\\x1d\\x1c\\xf2\\xaa\\\n\\x56\\x08\\xf8\\xca\\xab\\x82\\x4d\\x3f\\xa6\\x69\\xc3\\x37\\x9a\\x6d\\xc9\\x94\\\n\\x98\\x33\\x5e\\xe4\\x9c\\xd6\\xa6\\x6d\\xb5\\xd4\\x09\\x5e\\x70\\x7e\\xf7\\xf3\\\n\\x92\\xb6\\x66\\x84\\x2f\\xb1\\x41\\x6f\\xf2\\xf9\\xf4\\x24\\xa5\\x4c\\x25\\x79\\\n\\xad\\xca\\xcc\\x23\\xb3\\x4a\\xe2\\x42\\xc3\\xc8\\xd3\\xe2\\xde\\xb9\\xc3\\x4b\\\n\\xa4\\xbd\\xf3\\xf5\\xde\\xf7\\x28\\xe8\\x76\\xc6\\x9d\\xf9\\x4f\\xfd\\xf8\\xc8\\\n\\x94\\x57\\x4a\\xa1\\xfd\\x80\\xd7\\xc7\\xe0\\x66\\x92\\x52\\x86\\xb1\\xc5\\x78\\\n\\x7f\\x4c\\x79\\x16\\xeb\\x59\\xb0\\x92\\x6f\\x60\\x47\\x9d\\xc4\\x19\\x15\\xd3\\\n\\x76\\xa6\\xda\\x9b\\x7a\\xb1\\xd7\\xc9\\x9a\\x09\\x6c\\x10\\x3c\\x94\\x9b\\x48\\\n\\xd6\\x45\\x3a\\x50\\xb7\\xb3\\xf3\\xca\\x48\\x92\\x5e\\x66\\xc0\\x55\\x1c\\x7f\\\n\\x91\\x00\\xf9\\x1f\\x19\\x17\\xf6\\x9a\\xdf\\x84\\x4d\\x47\\x77\\x2f\\xe3\\x24\\\n\\x9b\\x60\\x29\\x4a\\xae\\x71\\xb2\\x97\\x95\\xc4\\x83\\xea\\xbb\\xb7\\xc7\\xd8\\\n\\x4f\\xc6\\x08\\x9e\\xb4\\xf4\\x3b\\xae\\xef\\xe6\\x4c\\x01\\x46\\x57\\xff\\x00\\\n\\x2b\\x91\\xb7\\x84\\x6c\\x79\\xce\\x2d\\x68\\x50\\x37\\xeb\\x8f\\xf1\\x26\\xa3\\\n\\x3c\\xc5\\xbc\\x87\\x82\\xe0\\x05\\xe0\\x87\\x43\\xef\\x5e\\xfd\\x1f\\x85\\x94\\\n\\x8a\\x2a\\xdc\\x6e\\xda\\xeb\\xd5\\x42\\x18\\xcc\\x64\\x18\\x09\\x30\\xad\\xf1\\\n\\x4f\\x07\\x73\\x14\\x61\\xa9\\xb2\\x1d\\x1d\\xed\\x7b\\x33\\x93\\x66\\x10\\xd0\\\n\\xd4\\x1e\\xb7\\xa3\\x9e\\x9a\\x42\\x04\\x20\\x56\\x51\\xad\\x89\\xe1\\xab\\xb9\\\n\\xee\\xb6\\x56\\x9c\\xd0\\xbf\\xb5\\x3b\\x3e\\x35\\x4c\\xe4\\x19\\x19\\xc6\\xa0\\\n\\xd8\\x3c\\x5f\\x93\\x4c\\x0e\\x94\\xdc\\x60\\xa3\\xa9\\x7d\\xd9\\x47\\x42\\x64\\\n\\xb3\\x07\\x54\\x28\\xa8\\xfa\\xd6\\xb6\\xb8\\x2b\\x2b\\xdd\\x55\\xb5\\x58\\x4d\\\n\\x12\\x77\\x75\\x67\\x8e\\x66\\x19\\x96\\xb5\\x76\\x15\\xe8\\xe0\\xa2\\x06\\x09\\\n\\xe5\\xb2\\x39\\x86\\xf8\\x0c\\xc0\\xf7\\xc4\\xa3\\x67\\xe0\\x10\\x6c\\xee\\x4a\\\n\\xc6\\x8a\\x0c\\xbe\\x8e\\x1a\\x0d\\x61\\x67\\x29\\x6e\\x42\\x85\\x1b\\x68\\x7e\\\n\\x6a\\x5c\\x51\\x94\\x73\\x42\\x50\\xa6\\x93\\xf6\\xf8\\xc5\\xd8\\x30\\x74\\x88\\\n\\xfc\\x28\\x6f\\xf5\\x8a\\xa6\\xb7\\x93\\xe4\\x6b\\x6f\\x89\\x86\\xd8\\x84\\x64\\\n\\xb3\\xaf\\x07\\xe4\\xd3\\xcc\\x6b\\xa1\\xcb\\xb3\\x6a\\x3f\\x75\\x41\\xc5\\xf9\\\n\\x61\\xa1\\x4a\\x7c\\x5b\\xba\\xec\\x42\\xc9\\x27\\x9a\\x68\\xd9\\x0f\\x41\\xa8\\\n\\x6a\\xcd\\x6b\\x1b\\x50\\xfa\\x7a\\xaf\\xec\\x8e\\x21\\x49\\x96\\x00\\x80\\x5a\\\n\\xcb\\x5e\\xa0\\xd4\\xf4\\xfd\\x31\\xc0\\x53\\x92\\x9f\\x76\\x4d\\x3f\\x1f\\xce\\\n\\x50\\xa7\\xa9\\xed\\xf3\\xfc\\x6e\\xa0\\xfc\\x0e\\x1d\\x56\\xda\\x01\\x26\\x86\\\n\\xb4\\x54\\xa3\\x67\\x06\\x00\\x8c\\x3b\\x76\\x94\\xdd\\xa3\\x3e\\x39\\xb1\\xc3\\\n\\x19\\x0f\\x89\\x7b\\xbd\\x03\\xbd\\xcd\\xe8\\x2b\\xef\\x27\\x5e\\xa7\\xb0\\x75\\\n\\xef\\x32\\x43\\x46\\x5d\\xfc\\x43\\x47\\xae\\xb1\\x0d\\x2d\\x6f\\x34\\x88\\x26\\\n\\x34\\xb0\\xf4\\xf8\\x65\\xdf\\xfd\\xcd\\xa5\\xbf\\x68\\x21\\x22\\x74\\x9a\\x87\\\n\\x97\\xf3\\x96\\x16\\x98\\x69\\x05\\x0d\\x57\\xb3\\xa3\\xe8\\x60\\xea\\x51\\x10\\\n\\xf1\\x51\\xa5\\x6d\\x5f\\xd7\\x99\\x26\\xe9\\x86\\xfe\\xb6\\x85\\x40\\x4c\\x19\\\n\\xbc\\x8a\\x7a\\x37\\xab\\x3e\\x5a\\x9d\\x6a\\x9a\\x06\\x1b\\x5e\\xb0\\x1d\\x1a\\\n\\x83\\xc6\\x48\\xf8\\x9b\\x31\\xd0\\x4a\\x07\\xa8\\xa1\\x2d\\xc1\\x7c\\x4b\\x82\\\n\\x2f\\xb7\\x3a\\xd2\\x8a\\x4e\\x7c\\x91\\xd2\\x93\\xaa\\xc9\\xe4\\x59\\x4d\\x2c\\\n\\x53\\xa1\\xaa\\x36\\xe0\\xf1\\x33\\xea\\x11\\x88\\xad\\x52\\x8f\\x23\\x57\\x6a\\\n\\x05\\x09\\x11\\xf8\\x15\\xdd\\xbf\\x7b\\xe1\\x8a\\xbe\\x52\\x02\\x5a\\x38\\xb5\\\n\\xe5\\x31\\x70\\x8c\\x6e\\xe2\\x9b\\x47\\xf3\\x35\\xd0\\x9e\\xac\\xb2\\x11\\x6f\\\n\\x9f\\x23\\xe6\\x69\\x0f\\xad\\x89\\x90\\x9a\\x0d\\xba\\x01\\x9a\\x9a\\x0b\\xfc\\\n\\xe2\\xee\\xf1\\xf0\\x8f\\x5f\\x5f\\xe5\\x9e\\xb9\\x34\\xc7\\xc8\\xa7\\x8a\\xc8\\\n\\x01\\x3a\\x0a\\xdc\\xbe\\x17\\x7a\\x11\\x06\\x1e\\xf3\\x66\\xf7\\xcc\\x1c\\xd4\\\n\\x58\\xa0\\x31\\xf0\\x1a\\xf7\\xe1\\xfc\\xda\\x39\\x2b\\xa0\\x20\\x82\\x3c\\x68\\\n\\xa0\\x44\\x4b\\x19\\x96\\x34\\x17\\xc6\\xac\\xed\\xd8\\x00\\xbd\\x3c\\xc5\\x5e\\\n\\xb5\\x6a\\x03\\x36\\xf8\\xa2\\x9f\\x7d\\xe0\\x5c\\xac\\xac\\xd7\\xe4\\x34\\x0f\\\n\\x2f\\x63\\xdc\\x8e\\x79\\xb4\\xc8\\x14\\x54\\x6f\\xe8\\xc1\\x2b\\x2d\\xd1\\xc8\\\n\\xe0\\x06\\xf3\\x56\\xdc\\x58\\x54\\x6c\\xd4\\x9c\\x10\\x7b\\xe9\\x43\\x4e\\x5e\\\n\\x8d\\x46\\xd9\\xef\\x0f\\x37\\x95\\xdd\\xd7\\x18\\x35\\x69\\x56\\x03\\x01\\xf0\\\n\\x7d\\x7e\\xdc\\x3c\\x9a\\x2e\\xe1\\xa2\\x99\\xb5\\x0e\\xed\\x70\\x6b\\x40\\xb3\\\n\\xce\\xa0\\xd8\\x86\\xfe\\x09\\xe1\\x96\\x31\\xda\\xc4\\x94\\xa1\\xbb\\x3c\\x47\\\n\\x75\\x8a\\xe8\\xf0\\x56\\x53\\x59\\xba\\x7e\\xa2\\x9e\\xb8\\x06\\xc1\\x20\\x4e\\\n\\x94\\xa5\\x23\\x63\\x53\\xc7\\xb8\\x28\\xf0\\x37\\x01\\xb0\\x7d\\x04\\xff\\x00\\\n\\x2a\\x65\\x3d\\x35\\x1c\\x20\\x56\\x6f\\xc7\\xbf\\x93\\x06\\x4d\\xad\\x4e\\x52\\\n\\xbb\\x27\\xdf\\xed\\xf7\\x96\\x13\\x1a\\x54\\x5f\\x42\\xca\\x56\\x8f\\x97\\x37\\\n\\x4e\\xd6\\x10\\x40\\xc5\\x58\\x3b\\xe3\\x1f\\xad\\x32\\xb5\\x93\\xb3\\x4a\\x84\\\n\\x92\\x95\\xb1\\x4d\\x1b\\x88\\x1b\\xe7\\x4e\\xbd\\x8b\\x9b\\xb8\\x74\\x5c\\x5b\\\n\\xa0\\xe9\\xc9\\x14\\x88\\x3e\\x5a\\x21\\xd1\\xc4\\x6d\\x13\\x78\\x07\\x09\\xa0\\\n\\xf1\\x3a\\xea\\x7c\\x69\\x4d\\x52\\x38\\xee\\x03\\xec\\xde\\xc7\\x9e\\x1b\\x92\\\n\\xb9\\xe2\\x06\\x81\\x26\\x82\\x8d\\x29\\xcb\\x89\\xb5\\x6f\\x95\\xa4\\x04\\x68\\\n\\x59\\x5f\\x9d\\xf5\\x04\\x5d\\x41\\xf8\\xc9\\x55\\xf5\\xc7\\x7c\\xc0\\xc7\\xd1\\\n\\x35\\x4a\\x0f\\xe0\\x7e\\xb7\\x9b\\xaa\\xeb\\xbf\\x1f\\x9a\\x1a\\xfe\\x8f\\x9c\\\n\\xd6\\xe5\\x14\\x50\\xe3\\x43\\x56\\x69\\x43\\x77\\xc9\\x86\\x94\\xd2\\xad\\x0a\\\n\\x13\\x4d\\x21\\xee\\x05\\xec\\x50\\xc0\\x75\\xa2\\xa4\\x80\\xe3\\xb5\\x1e\\x0c\\\n\\xf8\\x9c\\x81\\x00\\xc4\\x9c\\x81\\x95\\x75\\x6a\\x7c\\x8d\\x4a\\x88\\xb5\\x34\\\n\\xd5\\x15\\xa9\\x4b\\xc7\\xee\\x3c\\xe7\\x99\\x08\\xfc\\x21\\xd6\\x8f\\x5a\\xe3\\\n\\xf8\\xfd\\xdc\\x6a\\x5e\\xcb\\x4a\\x77\\x60\\xf6\\x83\\xb3\\x75\\x90\\x4e\\xb4\\\n\\x50\\x2c\\xe1\\xd8\\x4d\\x2d\\xc2\\x66\\xd3\\x6b\\x41\\x8f\\x45\\x00\\x8c\\xf9\\\n\\xd1\\xf3\\xac\\x24\\x22\\xcd\\xc3\\x9d\\xcb\\x6a\\xf8\\xda\\x7e\\x0c\\x49\\x4a\\\n\\xe5\\xd8\\xf5\\x94\\xa7\\xc5\\x09\\xca\\x8e\\x56\\x22\\xbf\\xfc\\x34\\x03\\x6f\\\n\\x6b\\x2e\\xf3\\xe2\\x5a\\x62\\x9f\\x67\\x77\\x7f\\xb3\\x2c\\x64\\x2c\\x86\\x5d\\\n\\xec\\xd2\\xb5\\xba\\x82\\x66\\x3c\\xa2\\xb4\\x76\\xb6\\x2d\\x68\\xdb\\xa1\\xf8\\\n\\x62\\xc4\\x2c\\x86\\xd2\\x29\\xa6\\xdf\\x1e\\xb2\\x73\\x0d\\x49\\xf4\\x6c\\x1b\\\n\\x36\\x14\\xe3\\x7e\\x39\\xbb\\x80\\xaa\\x84\\xea\\x05\\x84\\x14\\xfe\\xb0\\x5d\\\n\\xee\\xec\\x3f\\x43\\x62\\xce\\x1d\\x32\\xb4\\x5e\\x5b\\x45\\xc2\\x85\\x0d\\x34\\\n\\x37\\x30\\x6f\\xec\\xa8\\x60\\x21\\xb2\\x10\\x47\\x5a\\xf6\\x6b\\x1e\\x7c\\xd4\\\n\\x31\\x86\\xea\\x65\\x93\\x73\\x4f\\xb9\\xe6\\x10\\xe5\\xb0\\x8d\\x87\\xb7\\x7f\\\n\\x78\\x96\\x62\\xc1\\x97\\x62\\x46\\x93\\x57\\xa0\\x26\\x7a\\xa9\\xc9\\x8a\\x15\\\n\\xd2\\x27\\x1f\\x13\\x5b\\x71\\xf0\\x5a\\xb1\\xf8\\x31\\x55\\xd7\\x5b\\xfa\\x45\\\n\\x86\\x22\\xdd\\x14\\x19\\x50\\xf5\\x39\\xef\\x98\\x21\\x81\\x31\\xdd\\x07\\xc3\\\n\\xeb\\xce\\x57\\x48\\xe3\\xb5\\x85\\x3d\\xdf\\x66\\x30\\xbe\\xa3\\xae\\x7b\\x71\\\n\\x99\\x49\\xdd\\x34\\x6e\\x29\\xb6\\xa2\\xc3\\x5e\\x66\\x8d\\x32\\x54\\x13\\xfa\\\n\\x13\\xc5\\xcf\\x19\\xae\\x42\\x92\\x95\\x80\\x5a\\x46\\x87\\xd3\\x57\\xcc\\x7e\\\n\\xee\\xe1\\x67\\xa4\\xb1\\x3a\\x78\\x20\\xa6\\x05\\x3f\\x03\\x56\\xfd\\xf4\\x1c\\\n\\x5a\\x4d\\xf7\\x78\\x9a\\x00\\x02\\x7b\\x3b\\xf4\\x7d\\xb5\\x71\\xaf\\xd1\\x3d\\\n\\x44\\xd9\\x13\\xcc\\x54\\xdb\\xa0\\x07\\x98\\x6b\\x5b\\xf9\\xa0\\xcf\\x05\\x9d\\\n\\xc9\\x55\\x4a\\xf6\\xa1\\x42\\x08\\x7b\\xf2\\x50\\xda\\xe1\\xb8\\x80\\xd6\\x08\\\n\\x1a\\x8d\\x82\\xd8\\xe9\\xc7\\x8f\\x07\\x5e\\x1a\\xe7\\xa6\\xda\\x3f\\x8e\\x6d\\\n\\x6b\\x60\\x21\\x69\\xe1\\x0e\\xc5\\x24\\xb8\\x9e\\x45\\x19\\x43\\x54\\xd2\\x3a\\\n\\x92\\xf1\\x77\\x9a\\x81\\x4a\\xdf\\x0a\\x5b\\xbe\\xbe\\x3e\\x31\\xcf\\xce\\x41\\\n\\x8b\\x91\\x23\\xb5\\x5e\\x95\\xd3\\x93\\xa6\\x17\\x45\\xb4\\x1f\\x24\\x35\\xe5\\\n\\xc4\\xac\\xb0\\x1a\\x0a\\x8f\\x99\\x53\\xfd\\x64\\x39\\x90\\x9c\\xc3\\xd5\\x04\\\n\\x36\\x73\\xaa\\x60\\x97\\x43\\xf3\\x8b\\x51\\x54\\xd1\\xce\\xfd\\x67\\x05\\x4b\\\n\\x40\\x08\\xc8\\x24\\x44\\x1a\\x7d\\xe2\\x78\\x48\\xa2\\x29\\xed\\x53\\xdf\\xe7\\\n\\x1a\\x33\\xd6\\xb2\\xf8\\x0e\\x76\\x2f\\x98\\x09\\x7d\\x24\\x2c\\x10\\x24\\x36\\\n\\x1b\\x7d\\x74\\xc5\\x83\\xe5\\x82\\x11\\xee\\x5e\\x40\\x3d\\x86\\x7c\\x16\\xfb\\\n\\xe9\\xd5\\x51\\x0e\\xf7\\xa2\\x13\\xdc\\x73\\xe0\\xa3\\x8b\\xa0\\xfc\\x19\\xa8\\\n\\x10\\x3d\\x2e\\x05\\x79\\xa3\\x0f\\x9a\\xd7\\x77\\x46\\xc8\\x4c\\x52\\x7e\\x42\\\n\\xf7\\x68\\x55\\x88\\x1a\\x69\\xb9\\x52\\x40\\x3a\\xa8\\x25\\x10\\x02\\xb0\\xd8\\\n\\x0e\\x11\\x14\\xa7\\x51\\xa5\\xde\\xd6\\xbf\\xb5\\x73\\xe9\\xc5\\x6d\\x2f\\xc1\\\n\\xf1\\x7f\\x8f\\xde\\x0d\\x25\\x26\\x84\\x2b\\x7d\\xa5\\x0d\\x57\\x98\\x9a\\x62\\\n\\x46\\xb4\\x9d\\x79\\x6f\\x06\\x7c\\xe5\\x2d\\x94\\x29\\x1f\\xb4\\x06\\x81\\x74\\\n\\x70\\x3d\\xc0\\x6a\\x2e\\x02\\x52\\xe9\\x20\\x76\\xfa\\xdb\\xe6\\x1f\\x42\\x07\\\n\\xed\\x34\\x20\\x1a\\x7d\\x0c\\x0a\\x64\\x4d\\xce\\x66\\x81\\x52\\x15\\x4b\\xad\\\n\\x6e\\xb8\\xfc\\x17\\x3c\\x72\\x3f\\xb3\\x7e\\x6f\\x99\\x1c\\xc3\\x58\\xcf\\xab\\\n\\xbb\\x5f\\xa4\\x81\\xac\\x50\\x41\\x24\\x9d\\xa1\\x44\\x27\\xd8\\xe6\\x73\\xd0\\\n\\x38\\x8f\\x23\\x7d\\x16\\x3b\\x66\\x48\\x8b\\xb0\\x71\\x1f\\xfe\\x43\\x7d\\xc0\\\n\\x4c\\xef\\xa0\\xef\\x1e\\xe9\\x4b\\xf2\\x31\\xe9\\xc8\\x59\\xac\\x2d\\xe4\\x19\\\n\\xe3\\x11\\xda\\xac\\xb1\\x7c\\xbb\\x1b\\xb7\\x65\\x0f\\x5c\\x55\\xa4\\xf5\\x15\\\n\\x43\\x12\\x80\\x03\\x56\\xb0\\xe2\\xc0\\x48\\x6e\\xa5\\x74\\xfa\\x86\\x12\\x8c\\\n\\x45\\x36\\x6d\\x0f\\x0a\\x71\\x84\\xc5\\xc8\\x53\\x70\\xf8\\xba\\x59\\xcf\\x8f\\\n\\xac\\x06\\xaf\\xa5\\x18\\x7e\\x47\\xd7\\x9b\\x99\\xac\\xf0\\xdb\\x7e\\x0f\\xb2\\\n\\x7c\\x23\\xb8\\xd7\\x97\\xad\\x78\\x87\\xd8\\xae\\xbe\\x37\\x89\\x16\\xa4\\x6e\\\n\\x7b\\x2b\\xa1\\xe7\\xe9\\xc4\\xb5\\xd8\\xa7\\x77\\x3b\\xe9\\x13\\x5e\\x65\\xd4\\\n\\x96\\xaf\\xa9\\x6e\\x37\\x5b\\x5f\\x9b\\x9d\\x32\\x91\\x28\\xd4\\xf9\\xe1\\xe4\\\n\\xfc\\xb9\\xa8\\x0e\\x45\\x53\\x4d\\xa5\\x4e\\xbd\\x3f\\x53\\x25\\x49\\x23\\x15\\\n\\xf2\\xe5\\xf9\\x07\\xd6\\xcc\\x71\\x60\\x28\\x58\\x3a\\x24\\xb4\\x13\\x5b\\xf9\\\n\\xc4\\x25\\x2e\\xdc\\xb0\\x69\\xc4\\xbf\\xa3\\x37\\xd2\\x66\\x95\\x35\\x28\\x8a\\\n\\x6b\\xe2\\x7f\\xc2\\x20\\x90\\xa9\\xfc\\xc9\\x05\\x07\\xda\\x28\\x24\\x7b\\xf8\\\n\\x3a\\xf0\\x17\\x5b\\xbf\\x18\\x88\\xe9\\xdb\\xa6\\xb4\\xbe\\x00\\x03\\xdf\\x3d\\\n\\xcb\\xb6\\xd7\\xe0\\xbf\\x3c\\xee\\x1d\\x22\\x07\\x60\\x69\\x64\\x01\\xad\\xbe\\\n\\x7d\\xe5\\x98\\xd3\\x27\\x7e\\x6d\\x01\\xdf\\xcb\\x37\\x95\\x33\\x4d\\x46\\xdc\\\n\\x48\\x84\\xd7\\xbf\\xe7\\x17\\x85\\x56\\xd7\\x72\\x8f\\xa3\\xce\\xf7\\x39\\x4f\\\n\\x68\\xd9\\xe8\\xfd\\x26\\xca\\x2e\\xcc\\xd8\\x4b\\xad\\x29\\x47\\xaf\\x47\\x0f\\\n\\x96\\x8c\\x3c\\x38\\x68\\x46\\x84\\x1f\\xf1\\xf8\\xc9\\x0c\\x0e\\xfe\\x8b\\x73\\\n\\x53\\xe6\\x66\\xdd\\x55\\x1e\\x4f\\xcf\\x9b\\xe6\\x26\\xad\\x25\\x44\\xd1\\xe2\\\n\\x6b\\xb9\\x04\\x7e\\x31\\x27\\x9c\\x2c\\xd2\\xa0\\x98\\xd2\\xf3\\x1b\\x22\\x69\\\n\\x41\\x0e\\x8a\\xa0\\x01\\x6e\\x24\\x26\\x07\\x01\\xa1\\xcd\\x76\\x8f\\x4b\\xd3\\\n\\x5a\\x26\\x7b\\x6f\\xa5\\x4b\\xfd\\x9c\\x81\\xe7\\x06\\xbb\\x85\\x31\\x1b\\x81\\\n\\x17\\x53\\xee\\xc8\\x0e\\x36\\xc0\\xf1\\xe5\\x1a\\x6d\\x0e\\x9f\\xbd\\x6f\\x4b\\\n\\x74\\xda\\x2f\\xa6\\x40\\x03\\x2a\\x9c\\x4c\\x9a\\xeb\\x1a\\x2c\\x45\\x47\\xaa\\\n\\xf8\\x1b\\xe5\\x1f\\x2b\\x60\\x55\\x9f\\x60\\xe3\\x4f\\xb6\\xf0\\xcb\\x30\\xd8\\\n\\x54\\xb0\\x86\\x85\\x5d\\x5d\\x72\\x0c\\x7e\\x05\\x02\\xdb\\x48\\x1e\\x3c\\x75\\\n\\x32\\x13\\x9a\\x98\\x3e\\x05\\xb1\\xf9\\x46\\x06\\x72\\x84\\x36\\x4c\\x24\\xbf\\\n\\x56\\x76\\xde\\x6e\\x3a\\xe3\\x2e\\x40\\xc0\\xd0\\xba\\x5d\\x99\\xf6\\x9a\\x77\\\n\\x89\\x10\\x70\\x3f\\xc6\\x3d\\x4e\\xb2\\x51\\xa9\\x14\\x7b\\x4d\\x79\\x6e\\xe1\\\n\\x02\\x91\\x1d\\x11\\x19\\xf9\\x3b\\x1e\\xff\\x00\\xac\\x5d\\x42\\x2d\\x9f\\x85\\\n\\xbd\\xfc\\x53\\xe7\\x03\\x7a\\x9a\\x14\\x4b\\x65\\xad\\x3b\\xbc\\x40\\xd3\\x61\\\n\\x9f\\x38\\xd2\\x00\\x24\\xd1\\x5f\\x4a\\xd2\\xc7\\x32\\xc3\\x24\\x08\\x6a\\xc2\\\n\\x7a\\x68\\x4b\\xf1\\xab\\x31\\xd0\\x0d\\x1b\\x7a\\x6d\\x54\\x25\\x7c\\x7f\\x58\\\n\\x7c\\x89\\x04\\xea\\x0b\\x82\\xc2\\x69\\x63\\x8d\\xe4\\x60\\x6a\\xb3\\x54\\x20\\\n\\x88\\x86\\x88\\x9a\\xc5\\x49\\xdb\\xb4\\x76\\x28\\x87\\xdd\\xb4\\xc5\\x9c\\xb3\\\n\\x26\\xa5\\x5e\\x1d\\xa9\\xf0\\x1b\\x9e\\xe8\\xfd\\xe3\\x43\\x12\\x0a\\xa6\\x87\\\n\\x89\\xb6\\x0b\\xbf\\x9c\\x81\\x7c\\xe9\\xf5\\x30\\xe1\\x7c\\x4a\\x1f\\x0f\\x86\\\n\\x3c\\x03\\xab\\xec\\x9e\\x17\\xef\\x19\\x7a\\x18\\x28\\xea\\x7e\\x73\\xc9\\xc6\\\n\\xa2\\x74\\xad\\x04\\x00\\x5a\\xda\\xdc\\xa6\\xfb\\xc8\\x8e\\xa2\\x28\\xef\\xa7\\\n\\x1d\\xeb\\x3e\\x49\\x11\\xea\\x61\\xa0\\x81\\x70\\xd0\\x50\\x63\\xad\\x5f\\xac\\\n\\xa7\\x4b\\xcd\\xbc\\x46\\x25\\x52\\x9d\\x37\\x42\\x69\\x3e\\x8b\\xab\\xe2\\x5a\\\n\\xf5\\x28\\xe8\\xec\\x9d\\xad\\x73\\x8a\\x4a\\x2f\\x46\\x9f\\xcb\\x7e\\xf9\\xf3\\\n\\x8a\\x7a\\x18\\xe8\\xaf\\xc7\\x9b\\xf7\\xe7\\xdc\\xd2\\xa2\\x97\\x67\\xcb\\x1d\\\n\\x7d\\x23\\xf1\\xbf\\xce\\x6e\\x8c\\x28\\x57\\xc4\\x7e\\xce\\x4e\\x79\\xcc\\x12\\\n\\x41\\xb1\\x1a\\x1b\\x06\\xa0\\xd2\\x0c\\x3a\\x55\\x96\\x68\\x23\\x08\\x7f\\xa9\\\n\\xc4\\x76\\x78\\x9e\\x64\\x1b\\x81\\x2a\\x15\\xb8\\x7c\\x54\\xf9\\x6f\\x35\\xca\\\n\\x0c\\x46\\x6c\\x2a\\xa1\\x43\\x6b\\x37\\x77\\x9a\\xe3\\xac\\x5f\\xc1\\xc0\\xf4\\\n\\x06\\xf9\\xbc\\x20\\x18\\x43\\x60\\xdf\\x7e\\xbf\\xeb\\x9a\\xcf\\x91\\xdf\\xc9\\\n\\x60\\xfb\\xf2\\x2c\\x27\\xef\\x1c\\x95\\x53\\xad\\x3b\\x25\\x89\\x81\\x0f\\xa6\\\n\\x35\\xbf\\x05\\xda\\xe0\\xe8\\x9b\\xf3\\x93\\x46\\x10\\x7d\\xba\\xff\\x00\\x97\\\n\\x87\\x3a\\x4e\\x6b\\x66\\x4a\\xe6\\x52\\x12\\x30\\xd5\\x6b\\xaf\\xab\\x3e\\xb0\\\n\\x6c\\x21\\x55\\x26\\xac\\x6a\\x14\\x74\\x1c\\x69\\xa9\\x5c\\xbd\\xab\\x60\\x3e\\\n\\x51\\xc6\\xf4\\xba\\xab\\xc6\\x46\\xcc\\xeb\\x44\\xd9\\xbe\\xb3\\x5d\\x29\\x46\\\n\\x07\\x74\\xb3\\xe3\\xe1\\xfc\\xf9\\x87\\x12\\x37\\xf2\\x0d\\x22\\xa0\\x9b\\x0b\\\n\\x20\\x5c\\x04\\xd4\\x00\\x76\\x07\\x4f\\x83\\xb1\\x74\\xca\\x3b\\xd2\\xcc\\x98\\\n\\x39\\x36\\x97\\xf9\\x72\\x5f\\x3f\\x59\\xaa\\x33\\xc7\\x8f\\xbf\\xc0\\x7a\\x2f\\\n\\xe3\\x15\\xa1\\x74\\x68\\xfb\\x1d\\x35\\xf3\\x96\\x2d\\x0f\\x8a\\xba\\x9f\\x87\\\n\\xd3\\x9b\\x00\\x52\\x32\\x24\\xe2\\x1e\\xff\\x00\\xcf\\xbc\\x62\\xd8\\x74\\x57\\\n\\xc7\\xbf\\x24\\xf6\\x3a\\xc0\\x1f\\x1a\\x35\\x2d\\x61\\xb0\\x9a\\xfa\\xc7\\x35\\\n\\x33\\x02\\xa2\\xbc\\x0d\\x0a\\xd1\\xf8\\x4c\\x29\\x24\\x92\\x0d\\x6f\\xde\\x4d\\\n\\x3b\\x3e\\x59\\x83\\x01\\xd3\\xe2\\x49\\x62\\xc3\\xe7\\x7f\\x1e\\xe1\\x9e\\x17\\\n\\x3a\\x25\\x9f\\x07\\x6b\\x36\\x9a\\xa6\\x3d\\x79\\xd9\\x8d\\x5d\\x80\\xd1\\x52\\\n\\xfc\\x77\\x21\\xb4\\x64\\x13\\xa1\\xe9\\x1d\\x7f\\x39\\x55\\x2a\\xa7\\x1a\\x20\\\n\\xa7\\x0c\\x4f\\x8c\\xdd\\xc6\\x3f\\x11\\x40\\x06\\x9a\\xb5\\xd0\\x2a\\x2a\\x1b\\\n\\xcd\\xd7\\x55\\x8e\\x2c\\x85\\x78\\x0b\\x86\\x49\\x24\\x55\\x50\\x8c\\x00\\x3f\\\n\\x5f\\xb6\\x09\\xfa\\xdf\\x2f\\xe6\\xb0\\x78\\x5a\\xbe\\x3b\\x9b\\x13\\x6a\\x1e\\\n\\x3a\\x74\\x8d\\x34\\x3b\\x7e\\xc1\\x52\\x8a\\xc5\\xb1\\x41\\x09\\xbd\\xbe\\xf1\\\n\\x71\\x7f\\xcd\\x58\\x36\\x87\\x3a\\x55\\x5f\\x86\\x48\\x4f\\x83\\x45\\xe8\\x5e\\\n\\x03\\x7d\\xdd\\xe7\\x32\\x1a\\xef\\x0e\\x16\\x4b\\x04\\xfb\\x07\\x74\\x7c\\xe2\\\n\\xba\\x7b\\xd4\\x9a\\x1d\\x78\\xb7\\x84\\xfd\\x98\\x37\\x41\\xac\\x42\\x7e\\x85\\\n\\x00\\x1a\\x97\\xd1\\x37\\x74\\x05\\x1f\\xb7\\x79\\xa5\\x74\\x7b\\xe4\\xc0\\x86\\\n\\x4d\\x14\\x0a\\xff\\x00\\xd1\\xaf\\xfd\\x30\\x42\\x00\\x16\\x81\\x0b\\x6e\\xd0\\\n\\x07\\xd3\\x98\\x69\\x7c\\x0d\\xc5\\x5f\\x57\\xc1\\xa6\\x9b\\x58\\xa1\\x95\\x42\\\n\\x6f\\xae\\xca\\x89\\xf3\\x4c\\x9e\\xe1\\x9e\\xb8\\x81\\x2c\\xdf\\x82\\x79\\x7f\\\n\\x81\\xf1\\x38\\xe1\\xad\\x7f\\x6d\\xcc\\xbc\\xdb\\xc2\\x7b\\x86\\xe4\\x10\\x65\\\n\\xd2\\x6a\\xad\\x58\\xf7\\x7f\\x7d\\xc8\\xb0\\xeb\\xd4\\x9a\\x18\\x01\\x55\\xa0\\\n\\x2c\\x7c\\x24\\x2c\\x25\\xed\\x2c\\x17\\x81\\xa7\\xcc\\x70\\x6f\\xd2\\x8e\\x0d\\\n\\x8f\\xf0\\x37\\x78\\xcd\\xf1\\x8b\\x8a\\x8e\\xe3\\xd3\\xfc\\x35\\x73\\xd1\\x8e\\\n\\x09\\x85\\xdb\\xb7\\x9f\\x5f\\x3e\\xe6\\x83\\x23\\xf4\\x6f\\x13\\x04\\xe3\\xf0\\\n\\xfd\\x03\\x86\\xe4\\x6b\\x82\\xfc\\xd9\\x0e\\xb8\\xf2\\xe5\\x66\\x48\\x1a\\xaa\\\n\\x09\\x70\\xe6\\x30\\x46\\x35\\x31\\x6f\\xe6\\x24\\x75\\x45\\x3a\\x5f\\x9d\\x30\\\n\\xe0\\x85\\x8c\\xfe\\x85\\x97\\xe3\\xcc\\x4e\\x0b\\x20\\x02\\xa7\\x48\\x4a\\xf9\\\n\\xf1\\xe6\\x30\\xd8\\x33\\xaa\\xfa\\x43\\xa1\\xd0\\x4e\\x3b\\x74\\xba\\x22\\x4b\\\n\\xa7\\x49\\x4f\\xd9\\xcf\\xd5\\xc5\\x48\\x76\\x51\\x6f\\xe9\\x69\\x6c\\x7e\\xbe\\\n\\xf1\\x92\\x5f\\x26\\x01\\x3a\\x3c\\x14\\xf8\\x77\\xcd\\xe8\\xdf\\x69\\xde\\x0f\\\n\\xda\\xdf\\xe9\\x9b\\xee\\x08\\x4d\\x91\\x62\\x18\\x80\\x76\\xe0\\xaa\\x17\\x28\\\n\\x80\\x92\\x07\\x4a\\xf1\\xb1\\xf7\\x6f\\xac\\xbd\\x26\\x1d\\x59\\xa6\\x26\\x8a\\\n\\x6e\\xf7\\xf5\\x93\\x68\\x9b\\x8d\\x1f\\x93\\xb5\\x00\\xef\\xce\\x29\\x8e\\x2b\\\n\\x02\\x89\\x9a\\x0e\\xca\\xde\\x3d\\xd4\\x05\\x3b\\x7a\\x02\\x3d\\x04\\x87\\xca\\\n\\xe8\\xcb\\xb2\\x40\\x52\\x42\\x35\\x52\\xd2\\xbb\\xa5\\x8d\\x04\\x71\\x11\\x89\\\n\\xa0\\x68\\x26\\x9a\\x07\\x8c\\x31\\x0c\\x00\\x2d\\xaa\\x28\\x38\\x5f\\xf1\\xb5\\\n\\x5c\\x52\\x4f\\xb4\\xa6\\xf9\\x7b\\xdc\\xc8\\x27\\x7a\\x4d\\xa0\\x5c\\x20\\xda\\\n\\x37\\x66\\xf6\\xfc\\xbf\\xce\\xb1\\x89\\x2f\\xa2\\x50\\x23\\xd0\\xaf\\x8d\\xbc\\\n\\xde\\x79\\x7d\\x81\\xba\\xbc\\x8a\\x32\\x78\\x8f\\xa9\\x9d\\x71\\x34\\x60\\xa8\\\n\\x6e\\xbf\\xd6\\xc4\\x59\\x64\\xe4\\x25\\x7b\\x42\\x7e\\x07\\x7a\\xdb\\x26\\xb3\\\n\\x41\\xc0\\x56\\xcc\\x07\\x28\\xea\\x9a\\xda\\x53\\x14\\xbe\\x88\\xe9\\x6c\\x9a\\\n\\x8d\\x8a\\xd1\\xbc\\xf9\\xf7\\x1a\\x00\\x5d\\x83\\x36\\xd7\\x37\\xeb\\x31\\xa2\\\n\\xd4\\xc4\\x3f\\x6d\\x8f\\xd1\\xee\\x7c\\x4f\\x9b\\xa5\\x3f\\xc7\\xef\\xdc\\xa2\\\n\\xdd\\xfb\\x12\\xfe\\x35\\x82\\x4b\\xc0\\xd8\\x10\\x6a\\x78\\x01\\xb7\\xcb\\x9d\\\n\\xd6\\x44\\x5f\\x04\\x62\\x44\\x7e\\x1f\\x53\\x19\\xcf\\x2a\\x1f\\x94\\x5d\\x43\\\n\\x6f\\x98\\x21\\x0d\\xc2\\x69\\x6b\\xa1\\x4f\\x13\\x5e\\xe3\\x90\\xdd\\x7a\\x00\\\n\\x5f\\x54\\xb7\\xe4\\xbf\\x31\\xe5\\x71\\x88\\x99\\xba\\x9c\\x21\\xda\\x3a\\xcd\\\n\\x73\\xa5\\x01\\x66\\xc0\\x4f\\x10\\xdd\\x38\\x8d\\x13\\xad\\x44\\x0d\\x21\\x5b\\\n\\xee\\xac\\x9b\\xcd\\x72\\x64\\x81\\x9a\\x08\\x7e\\xc4\\x9e\\xb1\\xc2\\x2a\\x93\\\n\\x00\\x6c\\x2e\\xa9\\x86\\xf6\\xde\\xf2\\xc3\\x0a\\xc2\\x63\\xa9\\x3d\\x3e\\x2b\\\n\\xb8\\xea\\xbd\\x21\\x6e\\x54\\x4d\\x07\\xb4\\xdf\\xce\\x74\\x74\\x02\\x8d\\x2b\\\n\\xaa\\x24\\x73\\xe9\\x8c\\xf7\\x3d\\x82\\x64\\x25\\x75\\xbc\\x33\\x6c\\xcb\\x78\\\n\\xa8\\x21\\x56\\xd4\\x81\\xe6\\xcd\\x15\\xc2\\x2f\\x0e\\xec\\xe6\\xdf\\x44\\x7f\\\n\\x53\\xdc\\x21\\xb5\\x06\\x91\\x18\\xb3\\x8d\\x29\\xf3\\xdf\\x70\\x1a\\xe3\\x0e\\\n\\xba\\xdb\\xf8\\x1b\\x7e\\x70\\xbb\\x2b\\xb5\\x47\\x74\\x69\\xd5\\xaf\\xe6\\xe3\\\n\\x31\\xa7\\x73\\xf7\\x0a\\x47\\xde\\x8d\\x30\\x76\\xbb\\xab\\x2a\\xed\\xee\\x6a\\\n\\x26\\xb5\\x06\\x00\\xac\\xa4\\xe1\\x47\\xcf\\x75\\x4f\\xbe\\x7b\\xba\\x3e\\x1f\\\n\\x5a\\x7d\\x6f\\xcc\\x1f\\xa5\\x56\\x26\\x96\\xfb\\x3e\\xbf\\x58\\xc9\\xc0\\xd3\\\n\\xe9\\xf8\\xf3\\x06\\xc7\\xbc\\x86\\xe6\\xf8\\xd5\\x7f\\xc6\\x04\\x83\\x35\\xfe\\\n\\x82\\xf0\\x03\\xc0\\xbb\\x49\\x1f\\x1d\\xa2\\x7c\\xa8\\x6a\\x8a\\x49\\x34\\x4c\\\n\\x2f\\x48\\xa4\\x1e\\xb2\\xa5\\x32\\x88\\x07\\x21\\x37\\x0c\\x02\\xd8\\xb5\\x40\\\n\\xe5\\x0f\\x57\\x3f\\x4e\\xb5\\x32\\x9e\\xab\\x4e\\x82\\xe1\\x2c\\x45\\x22\\x36\\\n\\xc2\\x0d\\x37\\x66\\xba\\x32\\xd0\\x18\\x4c\\x00\\x38\\xf9\\xdb\\x82\\x82\\x26\\\n\\x05\\x08\\xe0\\xd8\\x90\\x4f\\x4c\\xb7\\xb4\\x7b\\x57\\x2e\\x8c\\x5b\\xa8\\x02\\\n\\x55\\x0d\\x1f\\xe5\\x37\\x81\\xbc\\xd9\\xa7\\xb6\\x02\\x7c\\xbe\\x07\\x32\\x0d\\\n\\x87\\x41\\x67\\xa3\\x3f\\xc5\\xdc\\x2f\\x1a\\x22\\x6d\\xf2\\x9d\\xb4\\xe7\\xc4\\\n\\xc2\\xda\\xb4\\x4e\\x63\\x53\\xe9\\x42\\xf9\\xe6\\x6e\\x4c\\x14\\x37\\xa4\\x66\\\n\\xfe\\x5b\\x9e\\x66\\x90\\xa1\\x24\\x29\\x3e\\xe2\\xf8\\x61\\x4e\\xfb\\x0d\\xd3\\\n\\xaf\\xbf\\xe0\\x7d\\xc2\\xab\\x9a\\xa0\\x6a\\xa7\\x57\\xdc\\xad\\xfe\\x58\\x92\\\n\\xac\\x80\\xa4\\x1b\\x7d\\x38\\xfb\\x53\\xb8\\x00\\xb3\\x26\\x43\\xcf\\xcf\\x85\\\n\\x67\\x77\\x89\\xb2\\x04\\x2c\\xbb\\x45\\x18\\x89\\xbd\\xbf\\x38\\x2c\\x89\\xfa\\\n\\x14\\xba\\x03\\x85\\xa0\\xa3\\xac\\x4f\\xa4\\xcd\\xf5\\x52\\x8f\\x89\\xbb\\xa1\\\n\\x30\\x01\\x29\\x15\\x6d\\x51\\x7e\\x2a\\xc8\\x3f\\xc3\\x2e\\x13\\xa1\\x10\\xd1\\\n\\x67\\x9b\\xe8\\x7d\\x93\\x12\\x0a\\xe3\\xa4\\xef\\x6e\\xd7\\xc5\\x8d\\x0f\\xb8\\\n\\x69\\xe2\\x9d\\x43\\x17\\xd3\\x9b\\x3d\\xc1\\xde\\x02\\x77\\xd6\\xaa\\x94\\x60\\\n\\x3b\\x8c\\xdf\\x66\\x1a\\xbd\\xf5\\x04\\x22\\x1f\\x07\\xa3\\x7a\\xbe\\x63\\x10\\\n\\x98\\x18\\x16\\x84\\x42\\x3d\\x25\\x84\\x6a\\x32\\x4e\\x05\\xe5\\x57\\xcf\\x00\\\n\\x9e\\x3d\\x1e\\x6f\\x2b\\xc2\\x46\\xa2\\x2d\\x6a\\xdf\\x67\\x11\\xc0\\x63\\x64\\\n\\xe9\\xa4\\xcb\\xcb\\x40\\x4a\\xac\\x3e\\x81\\x86\\x62\\x14\\x31\\x2d\\x31\\xf0\\\n\\xaa\\x42\\x1c\\x48\\x71\\xd1\\xdd\\x9d\\x3b\\x0f\\xa7\\x83\\x29\\x39\\x44\\x7a\\\n\\x64\\xe9\\x3a\\xd5\\x0b\\xcc\\x52\\x24\\x12\\x52\\xa5\\x35\\xd0\\x59\\x22\\xeb\\\n\\x71\\x1d\\x72\\x5f\\x60\\x18\\x66\\xf5\\x30\\x01\\xb3\\x56\\x65\\xce\\x44\\xb2\\\n\\x20\\xc0\\xf5\\xb4\\x5e\\xa4\\x63\\x10\\xaa\\x68\\xeb\\x60\\x5d\\xf9\\x41\\x06\\\n\\xdd\\x3e\\x0d\\x02\\x39\\xbc\\x6c\\x04\\x95\\x65\\xd1\\x70\\xd7\\xe0\\x84\\xc5\\\n\\xbd\\x13\\x79\\xb8\\xbb\\xbf\\xa2\\x30\\x80\\x99\\x37\\xc9\\xc1\\xd0\\x93\\x7d\\\n\\x3d\\xce\\xd8\\x61\\x6d\\xe9\\x00\\x98\\x55\\x76\\xf9\\x55\\xa5\\x27\\xa2\\xae\\\n\\x31\\x7f\\xd2\\x7d\\xb5\\x90\\x0d\\x04\\x53\\x69\\x1b\\x37\\xb6\\x7d\\xb3\\x59\\\n\\x63\\xda\\x16\\x68\\x7c\\x9f\\x4f\\xe7\\x58\\xc1\\xf7\\x48\\xd4\\x2b\\xbf\\x81\\\n\\xe6\\x83\\x78\\x71\\xd3\\xb9\\x03\\x9e\\x62\\x3e\\x4d\\x2f\\xd6\\x3c\\x51\\x22\\\n\\xca\\x8f\\x00\\x96\\x07\\x4d\\xa9\\x89\\x10\\xc8\\x3c\\xd3\\xd1\\x95\\x1d\\x93\\\n\\xe3\\x29\\x94\\xcd\\x00\\x74\\x2c\\x55\\x5f\\x74\\x98\\xec\\x43\\x39\\x1c\\x00\\\n\\x0a\\xaa\\x6f\\x6b\\x80\\x73\\x45\\x37\\xf0\\x01\\xad\\x7c\\xdf\\xe7\\x00\\xcc\\\n\\xef\\x29\\x80\\xa5\\x43\\xf7\\x7f\\x59\\x4d\\x5f\\x62\\x32\\x00\\xe7\\xa5\\xec\\\n\\xf5\\xe7\\xae\\x07\\x5a\\x01\\xf4\\x67\\x53\\xfc\\x65\\xc0\\x94\\x54\\x1a\\xfc\\\n\\x0a\\x29\\xa7\\x9f\\xa6\\x33\\x4b\\x69\\xa3\\xbe\\x0f\\xf7\\xdf\\x30\\xb0\\x46\\\n\\x41\\xf2\\x7b\\x56\\xbf\\x84\\xd7\\xb8\\xef\\x82\\xfc\\xa1\\xb8\\xd8\\x77\\xe9\\\n\\xbb\\x85\\xf7\\x1f\\xc9\\x41\\x25\\x1a\\x86\\x96\\x9f\\x2f\\xe5\\x97\\xec\\x10\\\n\\x52\\x8a\\x8d\\xe9\\xfc\\x08\\x69\\x97\\x6b\\x38\\x40\\x1b\\x4a\\xa3\\x69\\xea\\\n\\x47\\xc8\\xab\\x59\\x5d\\x5e\\x7c\\xb4\\x78\\xdd\\x5c\\x8d\\x0e\\x28\\xec\\x2f\\\n\\x02\\x18\\x22\\xc3\\x75\\x8b\\xa3\\x31\\xc3\\x0a\\x84\\x90\\x15\\x41\\x3a\\x26\\\n\\x9c\\xaa\\x0e\\xad\\x51\\x00\\x4f\\xdc\\x63\\x7a\\x1d\\x80\\xf2\\xf1\\xcb\\x62\\\n\\x59\\x7e\\xd8\\x92\\xbc\\x70\\x08\\xf9\\x81\\x96\\x4b\\xf0\\x05\\xc1\\x75\\x95\\\n\\xb3\\xd0\\x29\\x8f\\x5a\\x6d\\x3d\\xdd\\xc7\\x62\\x3d\\x8d\\x97\\x62\\xca\\xeb\\\n\\xe6\\xb4\\x1d\\x19\\xdd\\x0d\\x07\\xb4\\x14\\xf1\\xb2\\x5f\\x31\\x7c\\x97\\x41\\\n\\x23\\x7d\\x0d\\x46\\x61\\xed\\xfe\\x00\\x9e\\x41\\x41\\x8e\\x03\\x54\\x49\\x14\\\n\\x81\\x80\\x65\\xba\\x23\\xf5\\x5b\\x34\\xaf\\x5c\\xc8\\x52\\x03\\x15\\x36\\x75\\\n\\x52\\x84\\xde\\x9d\\x5c\\x4c\\xe4\\x36\\xc7\\x48\\x03\\xe8\\x31\\xf1\\x35\\x70\\\n\\xd3\\x9d\\xbe\\xd7\\xe7\\x3f\\xa3\\x72\\xfc\\x32\\x32\\x84\\x4e\\xcd\\xb8\\xca\\\n\\xa6\\xbc\\x94\\xf6\\x63\\x7c\\x06\\x89\\x43\\xa2\\x3e\\xcd\\x65\\xb2\\x7a\\x8e\\\n\\x9f\\xb3\\x7f\\x86\\x7e\\xb2\\xaa\\x38\\xcd\\xc5\\x10\\x18\\xa4\\x9a\\x36\\x15\\\n\\xaf\\xfe\\x66\\x91\\x61\\x13\\xa2\\x04\\xf3\\x16\\x6a\\x98\\x29\\x6f\\x85\\x59\\\n\\x6b\\xd8\\x53\\xdc\\x34\\x8b\\x80\\xdb\\xb1\\x8c\\x8d\\xde\\xa1\\xc6\\xdc\\x32\\\n\\x4d\\x20\\x64\\xfc\\xe2\\x54\\xd1\\x69\\xdb\\x3a\\x28\\x47\\xbb\\xc5\\x40\\x04\\\n\\x9a\\x81\\xa2\\x06\\x42\\xa0\\xaf\\x6b\\x06\\xe3\\x4f\\x40\\x74\\x7c\\x6d\\xcf\\\n\\xf9\\xd0\\x37\\xb6\\x44\\xab\\xf0\\x8c\\x96\\x47\\x46\\x8b\\x90\\x10\\xfa\\x2b\\\n\\xad\\x79\\x95\\x40\\x22\\x3c\\x1a\\xf0\\x1b\\xd5\\xe4\\x48\\x6a\\x65\\xdf\\xab\\\n\\x86\\xbc\\xb4\\x3b\\x0a\\x9b\\x77\\xe6\\x31\\x50\\x5b\\xa7\\xa5\\xd9\\x0d\\x90\\\n\\x48\\x49\\x5d\\xa6\\x22\\x85\\xd8\\x58\\x29\\xf8\\xff\\x00\\xe3\\x15\\x6c\\x98\\\n\\xc3\\xad\\xf7\\xbd\\xca\\xc2\\xc8\\x5e\\xf0\\xa3\\xf0\\x3d\\xe9\\xb5\\x31\\x18\\\n\\x32\\x05\\x25\\x6f\\xd0\\x1a\\x6f\\x56\\xec\\x60\\x9d\\x55\\x8d\\x79\\xaa\\xb3\\\n\\xe4\\x0b\\x43\\x87\\xe5\\x34\\xa0\\x16\\x1d\\x35\\x76\\xbc\\xd7\\x98\\x86\\x06\\\n\\x5b\\x90\\x91\\x0a\\x0d\\x68\\x34\\xfc\\x66\\xcc\\xcd\\x21\\xf3\\xe5\\x48\\xaa\\\n\\x1b\\x20\\x9b\\xd3\\x0a\\xa4\\x0f\\x4d\\x51\\xbf\\xb5\\xff\\x00\\x5c\\x2f\\x2c\\\n\\x0c\\xd0\\x28\\x80\\xbc\\xa5\\x93\\xd5\\xd6\\x20\\x92\\x5d\\x2a\\x1b\\x48\\xd6\\\n\\xac\\xd7\\x27\\xa2\\x8e\\xb6\\x22\\x92\\xec\\x39\\x2e\\x41\\x11\\x40\\xad\\x41\\\n\\x82\\x74\\x8e\\x8d\\xf7\\xf0\\x7e\\x7f\\x23\\x7d\\x63\\x0e\\xf6\\xa9\\x91\\xed\\\n\\xc4\\x5b\\xf0\\x82\\x90\\xd0\\xe3\\x27\\xb1\\xa5\\xc1\\xcf\\x02\\x14\\x75\\x52\\\n\\xc7\\xab\\xfe\\xb8\\x44\\xdc\\x77\\xa5\\x80\\x5c\\x05\\x17\\xa7\\x5a\\x61\\x0a\\\n\\xeb\\x6c\\x82\\x10\\x87\\xeb\\xfa\\xc4\\x40\\xf9\\x4d\\x2e\\xf4\\x6c\\xe1\\x0c\\\n\\x37\\xb9\\x04\\xf5\\x84\\x93\\xe0\\x85\\x8a\\x58\\x9a\\xc4\\xc4\\xf7\\xe3\\x1a\\\n\\x1b\\x2b\\x5e\\x5d\\x1a\\xc5\\x7f\\xfe\\x92\\x81\\x34\\x1e\\xeb\\xeb\\x12\\x09\\\n\\x26\\x84\\x10\\xfd\\x09\\xf8\\x75\\xf5\\x9a\\x4d\\x8c\\x27\\x17\\x43\\x6f\\x4b\\\n\\xbf\\xf5\\x88\\xcf\\x4f\\x5d\\x0b\\x97\\xc3\\x6e\\xb5\\x2b\\xec\\x8c\\x67\\xe5\\\n\\xaa\\x6e\\xcf\\x5f\\x59\\x97\\x38\\x04\\x68\\x7e\\xc9\\x0b\\x5d\\x4f\\x3e\\x8c\\\n\\x97\\xd5\\x36\\x71\\xbd\\x47\\x9f\\xde\\x29\\xbc\\xb4\\x1a\\x9c\\x43\\xc1\\xf9\\\n\\x7f\\xcc\\xbe\\xc0\\x4b\\xa9\\x6d\\x7c\\x70\\x2d\\xa3\\xf5\\x90\\xff\\x00\\x0a\\\n\\x78\\x26\\x6a\\xd6\\x15\\xc2\\x1a\\x55\\x7a\\x52\\x4a\\xf4\\xae\\xfa\\xfc\\x98\\\n\\x38\\xe4\\x64\\xdd\\x0a\\xc8\\x87\\x5d\\xac\\x55\\x85\\xeb\\xa7\\xbc\\x36\\x4e\\\n\\x41\\x6a\\x82\\xe9\\x73\\x51\\x60\\x3a\\x36\\xc0\\xbd\\x6d\\x3c\\x4f\\x8c\\x5b\\\n\\x26\\x30\\x02\\x7a\\xdf\\x48\\x12\\xbe\\x48\\xe2\\x3d\\x7f\\x11\\x59\\xf4\\x04\\\n\\xb2\\x16\\x41\\xca\\xd5\\x81\\x0f\\x54\\x95\\x49\\xa3\\x9f\\x82\\x63\\xa5\\xcb\\\n\\xcf\\x63\\xaa\\x01\\x46\\x80\\x4d\\xb8\\x8c\\x1b\\xed\\x91\\xb5\\xdb\\x68\\xee\\\n\\xf1\\x49\\xf9\\xb0\\x30\\x96\\xa0\\x02\\x9f\\x96\\xdd\\xe6\\xa2\\xa5\\x0b\\x3e\\\n\\x10\\x5f\\x90\\x16\\x6f\\xb9\\x30\\x23\\x04\\x95\\x0a\\x2d\\xb5\\xda\\xbb\\x84\\\n\\xc3\\xbc\\x00\\x84\\xb7\\xaf\\xd9\\xaa\\xf7\\x0c\\x02\\x82\\xb0\\xcf\\x7e\\x68\\\n\\x42\\x77\\x63\\xc1\\x88\\x1a\\x2f\\x04\\x85\\xb5\\x57\\x19\\xa4\\x83\\xb9\\xe0\\\n\\x3e\\x7a\\x84\\x25\\xf3\\xc2\\xe2\\xdb\\x28\\x72\\xaa\\x97\\xf2\\x2c\\xb9\\x37\\\n\\x7a\\xdf\\x90\\x74\\x47\\x4e\\xcd\\xb7\\x8c\\x5b\\x1c\\x21\\xda\\xa8\\x59\\xd1\\\n\\x29\\x64\\x31\\x87\\xb5\\x3f\\x66\\x85\\xab\\xb4\\xe7\\x69\\xcc\\x26\\x37\\xf3\\\n\\xa8\\xb6\\x73\\x51\\xf4\\x8d\\xef\\x19\\x40\\x09\\x56\\xac\\xf1\\xe5\\x5e\\xfc\\\n\\xe7\\xab\\xa0\\x68\\xbd\\x54\\x16\\xbb\\x8f\\x99\\x10\\xe4\\x8f\\x91\\xb2\\xa0\\\n\\x02\\xf8\\xbc\\x60\\xae\\xb8\\xcb\\x1a\\xb8\\x68\\x3b\\x39\\x06\\x1a\\x91\\x58\\\n\\xd7\\x08\\x1b\\x66\\x95\\xbc\\x49\\x81\\x1a\\xd2\\xfe\\x5c\\x49\\x50\\xe9\\x42\\\n\\xdc\\x3a\\x4a\\x34\\xc1\\xa4\\x27\\x06\\x81\\x99\\x3d\\x06\\xbb\\xa5\\x70\\xd4\\\n\\xea\\x06\\xe4\\x84\\xa9\\x61\\x91\\x48\\x22\\x17\\xf8\\x43\\x7b\\xa6\\x33\\xbc\\\n\\x6b\\xe2\\x9d\\x7e\\x0a\\xa3\\xb9\\xfd\\x20\\x0a\\x1b\\xb2\\xaa\\x6e\\x6b\\x51\\\n\\xfd\\xdc\\x7a\\x44\\x94\\x2d\\x4e\\xbd\\x5e\\x7f\\xf3\\x29\\xa3\\x60\\x72\\x79\\\n\\x76\\x4f\\x0b\\xbb\\x98\\x15\\xed\\x45\\x70\\x29\\x16\\xa5\\x29\\xb0\\x66\\x88\\\n\\x72\\xe9\\x3f\\xcb\\x00\\x9f\\xaa\\x04\\x5b\\x2f\\x88\\x55\\xa8\\x1c\\x06\\xb6\\\n\\x6a\\xd7\\x77\\xcc\\x06\\x6e\\x4f\\x0d\\xbe\\xe0\\x0a\\x25\\x57\\xbc\\xf5\\x25\\\n\\x70\\x98\\xcd\\xab\\x3e\\xe5\\xb8\\x80\\xeb\\x47\\xde\\x5c\\x69\\x86\\x13\\xa7\\\n\\xd2\\xdd\\x29\\x22\\x99\\x94\\x36\\x57\\x2e\\x8e\\xa5\\x38\\xf0\\x7b\\xee\\x4d\\\n\\xdb\\x06\\x6a\\x83\\x31\\x56\\xf1\\xbb\\xdc\\x07\\xa2\\x89\\x71\\xe8\\x3b\\x5f\\\n\\x2d\\xd7\\x85\\xc5\\xe8\\x00\\x44\\x53\\xd4\\xe9\\x3d\\x45\\x76\\xbf\\x38\\xd9\\\n\\x1c\\x08\\xc4\\x18\\x3e\\x90\\x52\\x23\\x37\\x89\\x07\\x08\\x65\\xc2\\x0d\\x74\\\n\\x43\\x2e\\x83\\x0e\\x03\\x60\\x34\\x95\\x13\\x46\\xc6\\xef\\x35\\x37\\x83\\x00\\\n\\x5a\\xa8\\x12\\xdd\\xbd\\x7f\\x7f\\x8c\\xdf\\x1c\\xd2\\xc0\\x1c\\x59\\x61\\xfb\\\n\\x2f\\xd6\\x2a\\xaa\\x38\\x09\\xa3\\xe3\\x11\\x67\\x67\\xde\\x2a\\x64\\x40\\xf6\\\n\\xa4\\x44\\xba\\x2c\\xec\\xc8\\x90\\xd4\\xed\\xe5\\x15\\x21\\x34\\x6f\\x2f\\x88\\\n\\x7f\\x2b\\xbb\\x9f\\x21\\x46\\xf5\\xf7\\x8c\\x89\\xb8\\x21\\x46\\x8a\\x8e\\xbb\\\n\\xfc\\xe7\\x60\\xc1\\xad\\x27\\xa6\\xbb\\x74\\x4f\\xc3\\x8d\\x84\\xc8\\x1a\\xd9\\\n\\x2b\\x45\\x0c\\x4e\\xb6\\x63\\xde\\xc2\\xa0\\x26\\x08\\x94\\x7f\\x5c\\x12\\x92\\\n\\x05\\xa1\\x9a\\xba\\x24\\x7f\\x48\\x14\\x11\\xad\\xad\\xd7\\xc1\\x6e\\xef\\xab\\\n\\x37\\xfd\\xe2\\x2f\\x07\\xb8\\xdf\\xc6\\x89\\x4a\\xf3\\x24\\xb8\\x18\\x1a\\xe2\\\n\\x1d\\x3e\\x76\\x3e\\x2b\\x84\\x1b\\xc1\\x14\\x4e\\xb3\\x1f\\xc2\\x89\\xdc\\x16\\\n\\xf9\\x92\\x4c\\x1b\\x29\\xf2\\x06\\x81\\x21\\xac\\x85\\x80\\xe9\\xea\\x6e\\x0d\\\n\\xd1\\xbe\\x8b\\x77\\xcc\\x5d\\x79\\xed\\x1a\\x23\\xec\\x9a\\xfd\\x97\\x16\\x02\\\n\\x25\\xec\\x33\\xcb\\x08\\x9d\\x2a\\xb1\\x39\\xc4\\x83\\xeb\\x1b\\x15\\x48\\xea\\\n\\x9e\\x99\\x4c\\x6a\\x83\\xa1\\xb7\\x72\\x69\\xf5\\xc7\\x40\\x18\\xa4\\x2b\\xc3\\\n\\x82\\x2f\\x87\\x86\\x20\\xf7\\x78\\xd4\\xe3\\x36\\xf1\\xf2\\x98\\x6b\\xe9\\x81\\\n\\xe1\\xb0\\xe8\\xe1\\x2e\\xb0\\x27\\x4d\\xb9\\x7d\\x0d\\x9a\\x64\\x47\\x9e\\x98\\\n\\x11\\xa4\\x01\\x17\\xe3\\xa7\\x03\\xe6\\x57\\x1c\\x00\\xa1\\x94\\xdd\\x4a\\x29\\\n\\xf8\\x0d\\x39\\x94\\x34\\xe0\\x2c\\x29\\x76\\x8f\\x52\\x49\\x07\\x09\\x75\\x3a\\\n\\xfc\\xd2\\xd3\\xb3\\x65\\x7c\\x38\\x38\\x1b\\xc8\\x25\\x5d\\x1f\\xf8\\x3b\\xcb\\\n\\xf5\\x88\\xf3\\xd1\\x20\\x0d\\x00\\xad\\x74\\x77\\x1e\\x48\\x98\\x9c\\xc1\\x90\\\n\\x89\\xbb\\x1f\\x3a\\xc9\\xb3\\x28\\x88\\x8d\\x89\\xea\\xba\\xe9\\xdb\\x6c\\xca\\\n\\x4a\\x01\\x41\\x62\\xb5\\xb7\\x16\\x23\\xfc\\xe5\\xe9\\x58\\x8e\\xe1\\xa8\\x57\\\n\\x68\\xf7\\xcf\\xbc\\xac\\x85\\x71\\xee\\x6f\\x7a\\xa6\\xef\\x6f\\xc3\\x34\\x04\\\n\\x08\\xb4\\x00\\xa9\\xe6\\x8c\\xc6\\x6e\\xc2\\x40\\x04\\xdd\\x68\\x90\\x06\\xcf\\\n\\xbc\\xed\\x50\\x22\\xeb\\x57\\xe4\\x04\\xde\\xa5\\x30\\xb2\\xf0\\x20\\x92\\x0d\\\n\\xc7\\xe0\\x25\\xd7\\x17\\xc2\\x4a\\xba\\xc2\\x7c\\x01\\x1c\\x27\\xd6\\x11\\xfe\\\n\\x62\\x32\\x1c\\x11\\x3b\\xa5\\x67\\x3d\\xf1\\x4e\\x32\\x11\\xac\\xd5\\x0e\\x87\\\n\\x93\\x3e\\xce\\xfe\\x71\\x8d\\x1c\\x9d\\xc4\\xf2\\xe7\\x93\\x84\\xc3\\x53\\x7c\\\n\\x42\\x9d\\x39\\x8b\\x0b\\x66\\xd2\\x96\\x22\\x77\\xb1\\x74\\xac\\x5d\\x55\\x61\\\n\\x8d\\x84\\x90\\x1c\\x4f\\x00\\xe3\\x29\\x04\\x08\\x02\\x00\\x57\\xa2\\xd3\\x66\\\n\\xc9\\xee\\x31\\xc0\\xdb\\xe1\\xf2\\x9e\\x1f\\x2e\\x1f\\x3b\\x0b\\x68\\x06\\xad\\\n\\xa7\\x4e\\xeb\\x66\\x26\\x8b\\xf1\\xdf\\xe1\\xf0\\xfc\\xbd\\xba\\xc4\\x78\\x32\\\n\\x2d\\x47\\xe3\\x69\\xfa\\xfd\\x39\\x87\\x8b\\x3c\\x72\\xc2\\xf1\\xd9\\xae\\xc3\\\n\\x11\\xa1\\x83\\x4b\\x18\\x59\\x28\\x55\\x25\\x02\\x0e\\x3b\\x20\\x4d\\xc4\\x09\\\n\\xa0\\xd7\\x64\\xc2\\x3e\\x8c\\x1d\\x94\\x2e\\x2e\\x1a\\x51\\xf0\\x77\\xd5\\xc5\\\n\\xad\\xc5\\x5a\\x3e\\x45\\x73\\xbd\\x3f\\x25\\x77\\x86\\x1b\\x84\\x39\\x45\\xe8\\\n\\x17\\x51\\xf6\\xfb\\x9a\\xb0\\x80\\xc6\\xb6\\x3c\\x5e\\xbb\\x79\\x80\\xe1\\xc9\\\n\\xce\\x98\\xa8\\x43\\x5d\\x9f\\x11\\xbc\\x78\\xd8\\x6f\\xf6\\x74\\xf8\\xa7\\xe9\\\n\\x99\\x12\\xa5\\x36\\x4f\\x5b\\x8f\\x27\\x87\\xce\\x96\\x63\\x53\\x5c\\x07\\x3a\\\n\\x20\\xa0\\x6a\\xa0\\x35\\xca\\xcb\\x10\\xc6\\x6b\\x86\\x32\\x95\\x5a\\x78\\xcf\\\n\\x63\\xa9\\x00\\x9d\\xe9\\x4d\\x09\\xf2\\x8f\\xa4\\xca\\x2a\\x4d\\xcc\\x5b\\x02\\\n\\x5e\\x8c\\x3b\\x03\\x99\\xb7\\xf2\\x38\\x75\\x48\\x3b\\x0f\\xf4\\xd3\\x80\\xd8\\\n\\xd7\\xe7\\x87\\xd6\\xbf\\x80\\x7f\\x78\\x6a\\xd7\\x88\\x9a\\x4f\\x9b\\xcf\\xdf\\\n\\xb8\\x49\\xab\\x50\\x0a\\xfd\\x6b\\x61\\xf7\\x71\\x17\\x12\\x9a\\x90\\xcc\\x37\\\n\\x8e\\xe8\\x1f\\x8c\\xd8\\x37\\x97\\x71\\xbb\\x1f\\x25\\xd3\\x4a\\x24\\xc5\\x4a\\\n\\x13\\x62\\x4a\\x5a\\x76\\xb9\\x07\\x59\\x7c\\xc5\\x8a\\xde\\x2b\\xa3\\xb4\\x51\\\n\\xf9\\xb7\\xcb\\x32\\x8c\\x02\\xf4\\x34\\x36\\x92\\x79\\xf7\\xfc\\xe5\\x50\\xf2\\\n\\xa9\\xfa\\x6d\\xbf\\x4d\\x1b\\xfb\\xde\\x4a\\x28\\x82\\x61\\xd3\\x01\\xf6\\x01\\\n\\x1f\\xbc\\x38\\xeb\\x4a\\x04\\x13\\xff\\x00\\xe8\\xbd\\x7d\\x5c\\x7a\\x14\\x05\\\n\\x87\\xbe\\x7d\\x8f\\x17\\x6f\\x0c\\xe3\\x90\\x74\\xac\\x7c\\x2b\\x12\\xbf\\xd7\\\n\\xb9\\x25\\x00\\x83\\x45\\x52\\x34\\x80\\xff\\x00\\x66\\x44\\x74\\x2f\\xaa\\x3b\\\n\\x29\\x5b\\xe6\\x1c\\xee\\x3c\\x70\\x78\\x9a\\x28\\x44\\x8b\\xe9\\x7a\\xb4\\x55\\\n\\x1e\\x56\\xa7\\x22\\xaf\\xe6\\xc0\\x81\\xc7\\x86\\xc1\\xb1\\x4b\\x12\\xc0\\x06\\\n\\xb8\\xa6\\x27\\x1e\\x77\\xff\\x00\\x06\\x81\\x28\\x94\\xd2\\x81\\x32\\x04\\x32\\\n\\xc7\\x61\\x79\\xdc\\x48\\xe9\\xf7\\x92\\x35\\x4b\\x7d\\x7b\\x03\\x7c\\x27\\xbe\\\n\\xe5\\xc4\\xb0\\xad\\x0d\\x9a\\xf9\\x60\\x41\\x5c\\x9b\\xc8\\xa0\\xa1\\x77\\x67\\\n\\x75\\x2d\\x3f\\x4f\\xf1\\x9b\\x92\\x80\\x7a\\x5d\\xf6\\x6c\\xb7\\x76\\x4c\\xa0\\\n\\xdf\\xb2\\x8f\\xfe\\x48\\x29\\xeb\\x91\\xe7\\x0c\\x6d\\x92\\xfa\\x01\\x69\\xf0\\\n\\x48\\xc0\\xac\\x4f\\x9b\\x21\\xe0\\x70\\xfc\\x03\\x46\\x6f\\x1f\\x92\\x1b\\xdf\\\n\\x5d\\xd4\\x49\\xe1\\x17\\xe4\\xe2\\xe3\\xa2\\x22\\x15\\x14\\x1d\\x20\\x34\\x68\\\n\\x1e\\x70\\xaf\\xce\\x4e\\xba\\x0d\\x4c\\xb0\\x85\\x44\\x42\\x8c\\x58\\x16\\x1e\\\n\\xb1\\xfe\\x5a\\xf9\\xf5\\x82\\xbe\\x2e\\xcb\\xe7\\x40\\xd2\\x90\\xf7\\x5e\\xe3\\\n\\x15\\xa7\\x2f\\x6f\\xf4\\x8f\\xcf\\xd6\\xe6\\xe1\\x91\\x0d\\x8b\\xa2\\x02\\xe9\\\n\\x63\\xa9\\xe6\\x4e\\x29\\x27\\x36\\x47\\xe4\\x3d\\xd6\\xde\\x86\\xa1\\x6a\\x75\\\n\\x09\\xd3\\xab\\x36\\x6b\\xbf\\x8b\\x58\\x2f\\x27\\xab\\x54\\x1d\\xc0\\xc3\\x8f\\\n\\xf2\\xd6\\xf0\\x56\\xc9\\x52\\xe3\\xf0\\x6c\\x07\\xbb\\xba\\x0c\\xd8\\x88\\xbd\\\n\\x0d\\x43\\x63\\xeb\\xb4\\xa3\\x6a\\xd8\\xb4\\xa8\\x02\\x40\\x88\\x76\\x42\\x7f\\\n\\x3b\\xc6\\xe8\\x01\\x70\\xb6\\x20\\x97\\xce\\x5f\\x93\\x1f\\x4a\\x41\\x49\\xe3\\\n\\xe9\\xb7\\x93\\x3d\\x1c\\xd8\\x9a\\x80\\x3b\\xeb\\xf7\\x89\\xaf\\xec\\x2c\\xfa\\\n\\x39\\xf9\\x27\\xe7\\x02\\x26\\xe0\\xec\\x3b\\x22\\x6c\\x7f\\x21\\x71\\x4a\\x31\\\n\\x37\\x17\\xec\\x00\\xd4\\x2c\\xbf\\xce\\x75\\x04\\x4f\\xc0\\xdf\\x08\\x7f\\xbd\\\n\\xb9\\x05\\xc4\\x00\\x9e\\xf8\\xf5\\xdf\\xf4\\xcd\\x63\\x93\\x52\\xb8\\xfc\\x73\\\n\\xf8\\xcb\\xf3\\xc0\\x1e\\xf5\\x7a\\x3e\\x03\\xe7\\x3d\\x1d\\xdf\\x26\\x8c\\x21\\\n\\x01\\x44\\xdf\\xd5\\x3f\\x60\\x5a\\x89\\xea\\x04\\x11\\xd8\\xf0\\xde\\x41\\xb9\\\n\\x00\\x60\\xb4\\xc7\\x42\\xdf\\x13\\x84\\xc6\\x49\\xcb\\xf6\\xb1\\x52\\x2e\\x9e\\\n\\x87\\xbb\\x4b\\xca\\xc1\\xb1\\x5c\\x55\\x19\\x15\\x71\\x9f\\x18\\x87\\x31\\xa4\\\n\\xa9\\x22\\x62\\x16\\x38\\x89\\xa8\\xff\\x00\\x2a\\x8d\\xa6\\xcc\\xde\\x87\\x0e\\\n\\x5c\\x74\\x4d\\xf7\\x3d\\xb3\\xe3\\xcc\\x8c\\xda\\x42\\x84\\x73\\xb7\\x5b\\xe1\\\n\\xdb\\xab\\x86\\xf7\\xe7\\x24\\xc5\\x43\\x13\\x08\\x85\\x72\\xc6\\x02\\x22\\x07\\\n\\xc2\\x61\\x7f\\xe3\\x12\\x6d\\xc4\\x59\\xdf\\x4a\\xd4\\x3a\\xa9\\xdc\\x4f\\x86\\\n\\xd8\\x29\\xb1\\x81\\x01\\xfb\\x0e\\x27\\xcf\\x09\\x50\\x55\\xbf\\x93\\xff\\x00\\\n\\xa6\\xf3\\xf7\\x28\\x26\\x9c\\x7d\\x0a\\xdb\\x93\\xa1\\x2d\\x7b\\x2d\\x09\\x3f\\\n\\x03\\xe7\\xf9\\xca\\xc4\\xce\\x9e\\xb2\\xdd\\x72\\xd9\\x0d\\x3e\\x78\\x7f\\x94\\\n\\xc1\\x21\\xa2\\x05\\xbb\\x9a\\x9e\\x91\\x96\\xde\\x8d\\xd9\\xdd\\x5b\\xc3\\xe9\\\n\\x64\\x5d\\xe2\\xb6\\x8a\\x63\\xca\\xbf\\x06\\xc4\\xc7\\x2f\\xd0\\x09\\x20\\x69\\\n\\xb2\\x1b\\x6b\\x4b\\xac\\xa9\\x75\\x17\\x3a\\x26\\x6d\\xe8\\x74\\x95\\xee\\x18\\\n\\x46\\x39\\x02\\x45\\x09\\xf2\\x21\\x85\\x7b\\x83\\x93\\x04\\x73\\xbd\\xe7\\xfd\\\n\\x9f\\x5a\\xb8\\x25\\x5d\\x0e\\xb7\\x6b\\x4a\\x6e\\xa3\\x74\\x86\\x37\\x92\\xe5\\\n\\x57\\xa0\\x22\\xb3\\xa7\\xa7\\xf7\\x9f\\x2b\\x90\\xbb\\x1e\\x32\\xfe\\x01\\x33\\\n\\xc0\\x5f\\x98\\x70\\xe8\\x17\\xe1\\x7d\\xb3\\x03\\x1e\\xe9\\x48\\xd4\\xaf\\x2c\\\n\\xec\\xb5\\x20\\xb8\\x31\\xde\\xb4\\x4e\\x9e\\x04\\x8b\\x16\\x8a\\x5c\\x73\\x51\\\n\\xd6\\x01\\x62\\x35\\x96\\xae\\x5e\\x99\\x18\\x30\\x58\\x5a\\xc2\\xd5\\x9b\\xd4\\\n\\x8e\\x2e\\x77\\xa1\\x4d\\xd1\\x51\\xe2\\xff\\x00\\x2c\\x66\\x58\\xcd\\x19\\x1e\\\n\\x82\\x76\\x46\\xef\\x98\\xee\\x62\\xdf\\x8b\\x74\\x76\\x25\\x4f\\xe7\\x0b\\xbc\\\n\\xbe\\xf2\\x3a\\xdd\\xfa\\xcd\\xb0\\x09\\x05\\x2d\\xf1\\x3f\\xae\\x3e\\xf0\\xa7\\\n\\x2a\\x03\\x28\\x02\\x2a\\x25\\x16\\x6f\\x66\\x9d\\x3b\\xc6\\xaa\\x9e\\xb3\\x69\\\n\\x72\\x03\\x92\\x0d\\xfa\\xb9\\xf3\\x62\\xa5\\x6f\\xc5\\xb6\\xa9\\xb1\\x88\\x82\\\n\\xd0\\xf8\\x8b\\xc3\\x32\\x82\\x40\\x43\\x7a\\x2b\\x80\\x58\\xf6\\xe3\\x93\\xad\\\n\\x08\\x5a\\x12\\xe0\\x93\\x37\\xc2\\xd6\\x0e\\x7a\\x36\\xc2\\xd7\\xa0\\x83\\x84\\\n\\x1f\\x6a\\x84\\x75\\x2c\\xfa\\x09\\x7d\\x2e\\x34\\x8b\\xaf\\xeb\\xd2\\xc7\\xd7\\\n\\x57\\x5e\\xe4\\x0f\\xb7\\x5c\\x9e\\x24\\xc3\\xcb\\x3e\\xaf\\xc4\\xcc\\xb6\\xe8\\\n\\x33\\x6e\\x8a\\x07\\x14\\xfd\\xf9\\x82\\x2a\\x8d\\xec\\x12\\xd7\\x72\\x6f\\x7e\\\n\\x6a\\x4c\\x25\\x7d\\x85\\x6e\\x1e\\xc7\\x01\\xfe\\x7e\\x6e\\x18\\x9a\\x04\\x0b\\\n\\xd1\\x36\\x20\\x15\\x80\\x52\\xef\\x62\\x60\\xc8\\x0a\\xda\\x01\\xa1\\x1b\\x34\\\n\\xaa\\x05\\xc1\\x00\\x3a\\x5e\\xb8\\xe0\\x94\\x12\\xb7\\x47\\xe4\\xdf\\xb8\\x10\\\n\\x31\\x41\\x75\\x7d\\xb4\\xc1\\x27\\xde\\xf0\\x23\\x48\\x5f\\x21\\xe1\\x4f\\x9e\\\n\\xbc\\x73\\x43\\xde\\x92\\xcf\\x7e\\x3d\\xf9\\xcd\\x06\\x47\\xf6\\xbf\\xcf\\x98\\\n\\x9f\\x92\\x6b\\xb3\\x46\\x7f\\x18\\x42\\xdc\\xaa\\xb6\\x1a\\x07\\x84\\xdb\\x9b\\\n\\x2f\\x0e\\x24\\xae\\xf7\\xc1\\x93\\xcf\\x9c\\x3a\\xc4\\xc2\\x7e\\x07\\x2e\\xf0\\\n\\x01\\x2a\\x25\\x62\\x7f\\x0f\\xcf\\xf5\\x9a\\x98\\xc8\\x9e\\xce\\x02\\x3a\\x6c\\\n\\xcd\\x15\\xfb\\xcf\\x34\\x82\\xc5\\x1d\\x41\\xe2\\x66\\x81\\xc5\\x93\\xb9\\x58\\\n\\x46\\xe9\\x78\\xda\\x67\\x2f\\x2a\\xf3\\xec\\x0d\\xf4\\x69\\xe9\\x30\\x7d\\x30\\\n\\x38\\x53\\x89\\x59\\xb8\\x2b\\x69\\xb6\\x2b\\xd1\\x0e\\xcf\\xc4\\xec\\xf4\\xcd\\\n\\x84\\xee\\xe0\\xff\\x00\\xc7\\xe3\\x1c\\x67\\x57\\xb5\\xea\\x00\\x9f\\x2d\\x0b\\\n\\xf0\\x6f\\x12\\xf1\\x96\\xb4\\x21\\xf1\\x5a\\xaf\\x2d\\xa7\\xce\\x0e\\x2d\\xd9\\\n\\x20\\x3f\\x20\\x89\\xad\\x1a\\xf9\\x2b\\xb1\\x04\\x8d\\x1e\\xa0\\x80\\x43\\xab\\\n\\xd1\\xec\\x18\\x5f\\xe8\\x15\\x30\\x29\\xb6\\x2a\\xaf\\x71\\x8a\\xa9\\xc9\\xd3\\\n\\xe1\\xf4\\xfb\\x7f\\xac\\xfa\\x38\\x4c\\x3b\\x09\\xa8\\x17\\xe7\\x4f\\x1c\\x80\\\n\\x54\\x20\\x6f\\x61\\x19\\xdf\\xa3\\xab\\x88\\x63\\x4a\\x3a\\xd2\\x90\\xda\\x4d\\\n\\xf4\\x0d\\xfb\\x91\\x8c\\x22\\x90\\x1f\\x81\\x4a\\x37\\xee\\xb7\\x88\\x8e\\xc2\\\n\\xa8\\x71\\x7f\\xfb\\x93\\x7b\\x2d\\x6d\\x5d\\xc1\\x20\\x3e\\x37\\x77\\x73\\xa3\\\n\\xab\\xe3\\x3a\\x0d\\x2d\\xea\\x7c\\x85\\xc4\\xca\\xd4\\xfc\\xab\\x45\\xa5\\x74\\\n\\x26\\xd3\\x09\\x8f\\xf3\\x21\\x7c\\x10\\x34\\xa1\\xad\\xae\\xae\\x2a\\xa2\\xb6\\\n\\x4b\\xcb\\x64\\x11\\xbb\\x8f\\xd7\\x30\\x35\\xbd\\x27\\x56\\xbb\\x15\\x7f\\x3f\\\n\\x1c\\x73\\x77\\xad\\x86\\x1f\\x81\\x32\\x1f\\x93\\xc7\\x6e\\x46\\xf5\\xe9\\x88\\\n\\x6c\\x23\\xcf\\x1e\\x7e\\xcc\\xeb\\xfe\\x93\\x7d\\xf5\\x69\\x06\\x71\\xf8\\x7c\\\n\\x10\\x21\\x21\\x07\\xf0\\x97\\x8f\\x3f\\xa3\\x37\\xb1\\x26\\x11\\x41\\x7a\\xe5\\\n\\xf3\\x3f\\x4c\\xd1\\x83\\xb8\\x85\\x22\\xd8\\x9d\\xfc\\xd3\\xa5\\x00\\xa3\\x44\\\n\\x5d\\xa1\\x0a\\x55\\xad\\x20\\x86\\xb2\\x48\\x11\\xd0\\x2d\\xb5\\xa0\\x4a\\xad\\\n\\x35\\x74\\xb8\\x46\\x24\\x4d\\x44\\xa9\\x43\\x95\\xd1\\x46\\x6b\\x70\\x02\\x35\\\n\\xcf\\x07\\x8b\\xbb\\xfc\\x98\\xf6\\xdc\\xa9\\x30\\x51\\xe0\\x92\\x01\\xa8\\xb8\\\n\\x21\\x88\\x57\\x5e\\x33\\x2c\\x00\\x24\\x20\\x98\\xc8\\xeb\\x60\\xb5\\x2c\\xa9\\\n\\xa5\\x9b\\x3e\\xe5\\x42\\x9c\\x14\\x69\\xa3\\xba\\x0a\\x13\\x4f\\xde\\x21\\xdb\\\n\\x13\\xa0\\xef\\x82\\x20\\xbb\\x4e\\xa4\\x5a\\x27\\x7b\\x1a\\x81\\x4d\\xb0\\x77\\\n\\xf4\\xf8\\x9b\\xc0\\x0b\\x13\\xe9\\xb5\\x69\\x9a\\x34\\x17\\xa6\\xe4\\x45\\x8b\\\n\\x0c\\x7b\\xe2\\x87\\x52\\xa2\\x9d\\xb9\\xbc\\x2f\\x6c\\x3d\\xa8\\x0a\\x6c\\x1b\\\n\\x25\\x44\\xe7\\xab\\xdb\\xdb\\x54\\xc7\\x6e\\x29\\x54\\x22\\xb3\\x40\\x56\\xc9\\\n\\x3a\\xd3\\x6e\\x2b\\x70\\xf6\\x86\\xcd\\x2e\\xfe\\xbf\\x3e\\xd5\\xdf\\xe7\\x2c\\\n\\x3e\\x16\\x6b\\x37\\x5a\\x86\\x7b\\xe7\\xc8\\x99\\x73\\x67\\xdb\\x9e\\x96\\x0f\\\n\\xe2\\x3c\\x33\\xcc\\x14\\x20\\xbb\\x28\\x44\\x7c\\x0f\\xa1\\x70\\x98\\xf0\\xa0\\\n\\x0a\\x37\\xf1\\x49\\x4d\\x07\\xa3\\x31\\x30\\x82\\x4c\\x4d\\xbb\\x8d\\xe1\\x01\\\n\\xb1\\x33\\xc2\\x15\\x78\\x7e\\x93\\xe2\\x51\\x3a\\xe2\\xad\\x57\\xb4\\xff\\x00\\\n\\x8d\\xe8\\xde\\xb9\\x91\\x56\\x97\\xb3\\x43\\xd8\\x28\\x5b\\x4d\\x49\\xc3\\x20\\\n\\x32\\x90\\xba\\x83\\x77\\x00\\x1d\\x71\\x02\\xd3\\xd2\\x64\\x82\\x28\\x84\\x51\\\n\\xb4\\x7e\\xbf\\x3a\\x3e\\xb1\\x1d\\xbd\\x54\\x00\\xd2\\x5d\\x4d\\x98\\x37\\x0d\\\n\\x60\\x69\\x43\\xe2\\x69\\x1f\\xb3\\xd3\\xcc\\x02\\x20\\x74\\x76\\xd1\\x97\\xdf\\\n\\x7e\\x1d\\x9a\\x47\\xbf\\x4b\\x1f\\x9f\\xbd\\xe1\\xd8\\x47\\x11\\x80\\x54\\x2f\\\n\\x01\\xd4\\x7b\\xfe\\x72\\x30\\xbd\\xad\\x18\\x10\\xbb\\xf9\\x3b\\xf7\\x9f\\x30\\\n\\xd7\\xec\\x69\\xb2\\x3b\\xf6\\x64\\x07\\xe1\\xd7\\x2b\\x59\\xb7\\xaf\\xb7\\x5d\\\n\\xe4\\x5f\\xf1\\x57\\x87\\xc5\\x7c\\xac\\x2e\\x90\\x55\\x28\\xda\\xe8\\x9d\\x42\\\n\\xc0\\xef\\xce\\x41\\x36\\x74\\x54\\xfc\\xf0\\x91\\x1a\\x74\\xea\\x03\\x86\\xff\\\n\\x00\\x95\\x0b\\xb6\\xa0\\x75\\xaa\\x17\\xf5\\x84\\x8c\\xe9\\x55\\x1a\\x5f\\x04\\\n\\xfe\\x27\\x17\\x3d\\xe4\\x98\\xaa\\x71\\x93\\xc0\\x4a\\x84\\x73\\xe6\\xec\\x91\\\n\\x8a\\xd5\\x12\\x07\\x88\\x0d\\x6d\\x28\\xab\\x40\\x2c\\x6a\\x5d\\xda\\xd2\\xbf\\\n\\x97\\x34\\x7b\\x88\\x0e\\x69\\x3a\\x8e\\xc5\\xdc\\xf8\\x7a\\x60\\x7b\\x92\\xc3\\\n\\x40\\xc4\\xf7\\x7b\\x76\\x58\\x62\\x56\\xc4\\xf6\\xa2\\x5d\\x58\\x84\\x9c\\xac\\\n\\xe1\\x48\\x41\\x52\\xfa\\xe7\\xc8\\x7b\\x7f\\x8c\\xf8\\xd6\\x9d\\x92\\x7c\\xa4\\\n\\xe1\\xfd\\xe1\\x9c\\xde\\xb7\\xa3\\xcd\\x9f\\x61\\xdb\\x40\\xe2\\x04\\xb0\\x2c\\\n\\xf9\\x36\\x58\\xcd\\xf4\\xfe\\x98\\x08\\x05\\x18\\x17\\xeb\\x1e\\x7c\\x9f\\xce\\\n\\x2a\\x06\\xee\\x69\\xed\\xbb\\xab\\xe6\\xdc\\x91\\x1d\\x97\\x72\\x9a\\xf1\\xf0\\\n\\x32\\x6e\\x62\\x71\\xe0\\x6c\\x0a\\x13\\x44\\xbe\\x3f\\xac\\x84\\xd7\\xd5\\x1a\\\n\\x6d\\xc3\\xe5\\x12\\x09\\xa3\\x02\\x21\\xcb\\x62\\xe1\\x41\\xa3\\x84\\x9b\\x33\\\n\\x6f\\x15\\x94\\xc4\\x7c\\x03\\xff\\x00\\x2f\\xe7\\x1a\\x3b\\x48\\xa2\\xde\\x0e\\\n\\xea\\xba\\xdf\\x9f\\x2c\\x55\\x2c\\xc7\\x4c\\x8d\\xa4\\x3b\\xe3\\x83\\xac\\xb1\\\n\\x49\\xa4\\x6d\\xa4\\xa5\\x5f\\xb3\\xe7\\x98\\xd7\\xf7\\xd8\\x84\\xd4\\xaf\\x68\\\n\\x79\\x10\\xac\\x30\\xb2\\x8f\\x90\\x34\\x6a\\xee\\x17\\x75\\xb9\\x61\\x4e\\x64\\\n\\x97\\xb2\\x8b\\x1d\\x8f\\x1d\\xd8\\x13\\x8f\\xb9\\x01\\xbb\\xde\\x07\\x2e\\xf8\\\n\\x22\\xcd\\xee\\x2d\\x9b\\x64\\x5c\\xc0\\xeb\\x70\\xaf\\x1a\\x28\\xa1\\x0e\\xa4\\\n\\x50\\x51\\x5f\\x83\\x99\\xc1\\x83\\x0a\\xd1\\xc0\\xba\\x76\\xec\\x57\\xe1\\xcb\\\n\\x85\\x44\\x71\\x9c\\x50\\x00\\x27\\x7e\\x55\\x97\\x12\\xe2\\xc1\\x7c\\x37\\x5d\\\n\\x0c\\xd1\\x01\\x6a\\x01\\x3b\\xc2\\x9d\\x1f\\x6c\\x19\\x84\\x49\\x51\\x27\\x0d\\\n\\xcf\\xad\\x08\\x3e\\x77\\x79\\xa9\\x14\\x94\\xb7\\x48\\x3e\\xd1\\xb9\\x57\\xba\\\n\\x70\\x2e\\x41\\x6d\\x7f\\x61\\x09\\xdd\\x57\\x97\\x35\\x7a\\x76\\xc0\\x6b\\xe3\\\n\\xf0\\xfb\\xf9\\xb9\\x6c\\x60\\x42\\x22\\x59\\x39\\xc4\\x7f\\x38\\x24\\x5b\\xe1\\\n\\x63\\x8d\\x7a\\x3e\\x30\\x76\\xec\\x33\\x8f\\xd6\\xf7\\x27\\x7c\\xfb\\xbe\\xc3\\\n\\x83\\x84\\x27\\x00\\x05\\x3b\\x39\\x6c\\x6e\\x1a\\xa8\\x0b\\x0f\\x84\\x07\\xa3\\\n\\x7f\\x83\\xe4\\xa7\\xf3\\x85\\x9d\\xa5\\x8a\\xf9\\xf9\\x11\\xb9\\xb4\\x0c\\xd3\\\n\\x00\\x51\\x34\\xe8\\x77\\xf9\\x76\\xd3\\x35\\xee\\x56\\xc7\\x62\\x9b\\xb5\\x76\\\n\\x52\\x63\\x85\\x3a\\x71\\xf0\\x7c\\x8f\\x9e\\xff\\x00\\xd6\\x73\\x73\\xd1\\xe8\\\n\\xf9\\x3d\\xa7\\xe3\\xb9\\x0a\\x08\\x13\\x97\\x5d\\x7f\\x0d\\xfb\\x95\\xd8\\xba\\\n\\x82\\xc2\\xc7\\x67\\xa9\\x0f\\x86\\x9a\\xc0\\x2e\\xdc\\x05\\xba\\x61\\xc2\\x3b\\\n\\xaf\\xac\\x04\\x14\\x47\\xa3\\x63\\x50\\x76\\x5f\\xff\\x00\\x18\\x50\\x8a\\x5b\\\n\\x58\\x94\\x0b\\x02\\x11\\xee\\xaa\\x6a\\x88\\x11\\x4b\\x57\\xbb\\x3d\\x47\\xfc\\\n\\x18\\x97\\x1d\\x0e\\xa3\\x09\\xf8\\x22\\x72\\xcd\\xde\\x77\\x0a\\xcc\\x9c\\x1a\\\n\\x16\\xc0\\x1f\\xa1\\xb7\\xcd\\x64\\xf0\\x1b\\xbe\\xa1\\xf4\\x44\\xfb\\xa6\\x7c\\\n\\x62\\x61\\xc7\\x77\\x06\\xbf\\x7a\\xf6\\x1f\\xf3\\x1c\\x3a\\xf6\\x4f\\x37\\xbe\\\n\\x9d\\xf3\\x0d\\xa2\\xb7\\x45\\x09\\xa1\\x4a\\xa3\\xfc\\xfe\\x71\\x08\\xa3\\xf9\\\n\\x7f\\xd1\\x94\\x65\\x42\\x16\\xbc\\x53\\xcf\\x53\\x36\\xe6\\xf0\\xc4\\xef\\xb7\\\n\\xaa\\x7a\\x5a\\x1b\\x9c\\xcf\\xba\\x43\\x42\\xd6\\x3f\\x3d\\xcb\\xb7\\x12\\x30\\\n\\x58\\x40\\x9a\\x9f\\x4d\\x58\\x2b\\xe0\\x63\\x92\\xed\\x20\\xb0\\x26\\xa7\\x6e\\\n\\x23\\xa0\\x8d\\x00\\x33\\x61\\x55\\xaa\\x53\\xa4\\xf7\\x58\\x21\\x45\\xc6\\x10\\\n\\x51\\x0c\\x76\\xc4\\x3b\\xdb\\x97\\x1f\\xe5\\x85\\x82\\x4a\\x5d\\x8a\\x44\\x5d\\\n\\x37\\x04\\xe2\\xb5\\xac\\xf4\\x00\\xd1\\xf8\\xd8\\x6e\\x13\\x4c\\x15\\xbe\\xbb\\\n\\x25\\x55\\x60\\xf9\\x62\\xc0\\x7d\\x86\\x90\\xd5\\x5f\\xcf\\xf4\\xc7\\xb6\\x43\\\n\\x13\\xd4\\x2b\\x54\\x6a\\x24\\x09\\x70\\x39\\x60\\x05\\xb9\\x38\\x7b\\x4c\\x00\\\n\\x69\\x57\\x8a\\x0e\\xae\\x85\\xa5\\x43\\xe4\\x1f\\x96\\x6d\\x24\\x04\\x60\\xd0\\\n\\xf5\\x2b\\x26\\x71\\x99\\x8d\\x6d\\x00\\x9a\\x24\\x37\\x7d\\xab\\xd7\\x4e\\x5d\\\n\\xa7\\xa9\\xd5\\xae\\x9d\\xb9\\xeb\\x09\\x85\\xf0\\x0d\\x6e\\x87\\xb9\\xa9\\x77\\\n\\x6b\\xf0\\x8d\\x9f\\x87\\x67\\x3e\\x73\\xcf\\xc9\\x71\\x15\\xbb\\xa1\\x25\\x2a\\\n\\x60\\xd5\\x67\\x82\\x02\\x7a\\x1c\\x43\\x1f\\xe1\\x77\\xfe\\x32\\xa2\\xad\\x80\\\n\\xdb\\xa5\\x5f\\x98\\xfb\\x9d\\xd8\\x5c\\x03\\x76\\x8c\\xf4\\x78\\xd0\\x63\\x12\\\n\\x04\\x96\\x69\\x5e\\xcf\\x86\\xd9\\x3d\\x98\\x25\\x77\\xe8\\x79\\xaf\\xa7\\xfa\\\n\\xcd\\xdd\\xa4\\xb8\\xd9\\x78\\xaa\\x68\\x28\\x22\\x0e\\x00\\x33\\x61\\x11\\xe9\\\n\\x74\\x2c\\xce\\x60\\x3e\\x18\\x8d\\x01\\xfc\\x95\\xcf\\x9b\\x8c\\xe0\\x5a\\x73\\\n\\xe2\\xe8\\xe8\\x9e\\x95\\xc1\\xa5\\x55\\x96\\xc6\\xd2\\xb4\\x17\\x03\\xe4\\x31\\\n\\xc1\\x76\\x24\\x02\\x8d\\x0a\\x2d\\xbd\\x11\\x9a\\x26\\x99\\x13\\x83\\x35\\x15\\\n\\x4f\\x47\\x8e\\xf3\\xc3\\x10\\x6d\\xdb\\x4a\\xa9\\x7b\\xad\\x2e\\xc5\\x70\\xb4\\\n\\x91\\xbb\\xe5\\x11\\x20\\xe5\\x78\\xd6\\x1f\\x17\\x06\\xc1\\x7c\\x43\\x46\\xcd\\\n\\x14\\x35\\x82\\x9a\\x9d\\x61\\x51\\xd0\\x54\\xf8\\x0c\\xc7\\x47\\x48\\xd5\\xd9\\\n\\xa1\\xc6\\x8f\\xce\\x5e\\xb8\\x70\\x2b\\x4a\\x80\\x7c\\xbb\\xb7\\x4c\\x32\\x1c\\\n\\xe5\\x85\\x13\\xda\\x09\\xc5\\x3b\\xe5\\xc9\\x63\\xa9\\x2e\\x27\\x4f\\xc5\\xa7\\\n\\x7c\\xc2\\x29\\x80\\x9e\\x25\\x07\\xd9\\xbf\\x17\\xc3\\x22\\x48\\x4f\\xb0\\x3e\\\n\\xbe\\x9f\\x8c\\x62\\x48\\x95\\x8d\\x78\\x9f\\x46\\x48\\x8c\\x5e\\x6c\\x6b\\x52\\\n\\x03\\x49\\x1d\\xe3\\x62\\x27\\x29\\x6a\\x78\\x47\\x74\\x3e\\xcf\\x31\\x17\\x97\\\n\\x0f\\x8c\\xfb\\x05\\xeb\\xe5\\xb9\\x63\\xb1\\x00\\x2c\\x6c\\x6f\\x78\\xd3\\x6f\\\n\\x30\\xa8\\xb3\\x60\\xee\\x53\\x06\\xbf\\x78\\x26\\x72\\x29\\x43\\x69\\x87\\x2b\\\n\\x47\\xc7\\x6e\\x12\\x1b\\xf1\\xb0\\x84\\x78\\x0a\\xe8\\x01\\x2c\\x4a\\xb8\\x83\\\n\\x5b\\x6a\\x68\\xdc\\x26\\xc4\\xab\\x5b\\x4d\\x5e\\x70\\x57\\x7f\\x22\\x5f\\xb7\\\n\\x50\\xb9\\x0a\\xab\\x10\\x82\\x24\\xbb\\x59\\xf1\\xac\\x58\\x6a\\x81\\x6b\\x1f\\\n\\x4d\\xf5\\x70\\xae\\xb9\\xc7\\xc0\\xbe\\x26\\xdf\\x3e\\xcd\\x3a\\xcb\\x5a\\xcb\\\n\\x4f\\x9d\\xb5\\xf8\\x7e\\xe2\\xe9\\xca\\x46\\x8b\\xda\\x78\\x68\\xd5\\xd7\\x7b\\\n\\xfd\\x60\\x85\\x26\\x87\\xbe\\x55\\xee\\xae\\xe2\\xfc\\x07\\x75\\xea\\xae\\xef\\\n\\xe7\\xb3\\xcc\\x14\\xf3\\x96\\x78\\xb5\\xd7\\x3e\\x1f\\xbc\\x5d\\x30\\x0d\\x27\\\n\\xc9\\x93\\xe0\\x0f\\x33\\x7e\\x6e\\x9c\\x03\\x63\\x63\\xe3\\xf3\\x8e\\xcf\\xc9\\\n\\xc9\\xff\\x00\\xc7\\x03\\xbe\\x20\\x5e\\xa3\\xa0\\x7e\\x53\\x1d\\x31\\x2c\\x30\\\n\\xee\\x6c\\x33\\x38\\x0d\\x27\\xbc\\x05\\x5b\\xad\\x1a\\x8f\\x89\\x5b\\x1e\\xca\\\n\\x18\\xb9\\x5e\\xa2\\xfd\\xa2\\x78\\x5d\\x53\\x82\\x6b\\x68\\xa8\\x89\\x4f\\x96\\\n\\x10\\xd5\\x75\\x9b\\xd4\\xc2\\xcd\\xd7\\x94\\x65\\x77\\x3c\\x75\\x0b\\xc7\\x37\\\n\\x9c\\xc2\\x6c\\xbf\\x5e\\x83\\x46\\xdd\\x13\\xef\\x24\\x14\\x02\\xbd\\x12\\xed\\\n\\x7d\\x7b\\xf8\\x31\\x7d\\x28\\x29\\x5f\\xa7\\xa1\\x3c\\xbf\\xd6\\x24\\xd0\\x25\\\n\\x1f\\x49\\x2d\\x6b\\xc1\\xbf\\x53\\x3d\\x2c\\x3c\\xd2\\x03\\xca\\xb4\\x8b\\xb1\\\n\\x92\\x59\\xce\\x9c\\x4e\\x18\\x08\\x2f\\xb1\\x77\\x91\\x3c\\x74\\x0b\\x40\\xec\\\n\\x26\\xfa\\xd8\\xc4\\xcd\\x94\\xfd\\xe3\\x3e\\xd8\\x0e\\x91\\x1e\\x4c\\x17\\x0d\\\n\\x1f\\xce\\x6a\\x97\\xf3\\x6b\\xc9\\xc2\\x8f\\xd6\\x9b\\x57\\xf8\\x35\\xa9\\xfd\\\n\\x73\\x19\\x04\\x00\\xe9\\x68\\x2c\\xff\\x00\\x03\\xe9\\x9e\\xc8\\x9f\\x36\\x80\\\n\\x46\\xc6\\xe3\\x0a\\xb4\\x17\\x61\\xe1\\xa1\\x3d\\x5f\\x76\\xfd\\x9e\\x04\\x85\\\n\\x50\\xc1\\xa3\\xaa\\x6c\\x37\\x3f\\xcb\\x83\\x9e\\xc2\\x62\\xbe\\x78\\xac\\xba\\\n\\x36\\xe5\\xbc\\x65\\x20\\xc0\\xa1\\x63\\x5e\\x0d\\xa7\\x2d\\x12\\x01\\x03\\x77\\\n\\x4d\\xd1\\x42\\x00\\xe3\\x38\\xc2\\xe4\\x07\\x6a\\x32\\x3b\\x36\\x1f\\x68\\xfd\\\n\\x60\\xac\\xc9\\x32\\x20\\x20\\xa1\\xbb\\xa8\\x66\\xf3\\x7b\\xb8\\xba\\xa4\\xad\\\n\\xf3\\x6a\\xe8\\xe7\\xc3\\x0f\\xc4\\x38\\x4d\\x0f\\x0b\\x09\\xfe\\xcb\\x95\\xaa\\\n\\x9b\\x4b\\xbe\\xc0\\x3c\\xe4\\x4f\\xce\\x5b\\x56\\x08\\xac\\x61\\x3a\\x29\\x49\\\n\\xed\\x5d\\xdc\\x64\\x41\\x34\\xe8\\x2a\\xe5\\xa2\\x25\\x60\\xaf\\x53\\x8f\\xe6\\\n\\xd0\\xb7\\x38\\x9a\\x6b\\x16\\x10\\x0d\\xf0\\x66\\xc0\\x34\\x29\\x50\\x23\\x91\\\n\\x48\\x9b\\x84\\x51\\xd9\\xbe\\x87\\x00\\x7a\\x12\\xc9\\x2f\\x18\\x55\\x2a\\x89\\\n\\x57\\x46\\xd4\\xac\\x6f\\x04\\x01\\xd8\\x12\\x92\\xbf\\x50\\xed\\x7e\\x72\\x61\\\n\\x7d\\xac\\x68\\x34\\xd1\\x76\\xdd\\x82\\x75\\x9b\\x15\\xc9\\x1c\\x34\\x03\\x80\\\n\\x0b\\x25\\x0c\\x69\\x38\\xcd\\xbb\\x0d\\x11\\x7f\\x39\\x80\\x86\\x0a\\x3c\\x83\\\n\\x14\\x16\\xd1\\x12\\x75\\x3e\\x56\\x13\\xae\\x30\\x23\\x8b\\xb4\\x90\\x81\\xa7\\\n\\x66\\x6a\\x56\\xfb\\xc4\\x24\\x2b\\xeb\\x47\\xdb\\x82\\x26\\xbd\\xd5\\x3f\\x96\\\n\\xec\\xfd\\x61\\x86\\xfc\\xc2\\xaa\\xab\\x4c\\xfc\\x0b\\x15\\x98\\x58\\xe9\\xf1\\\n\\x43\\xa3\\x01\\x22\\x09\\x3d\\xca\\xde\\x48\\x2a\\x22\\x79\\xbe\\xfc\\x5b\\xf3\\\n\\x3b\\x82\\x0c\\x9b\\x23\\x46\\x18\\x3b\\x9f\\x7f\\xe5\\xc0\\x8a\\x8d\\x60\\x8f\\\n\\x5a\\xff\\x00\\xd9\\xcd\\x97\\x13\\xd8\\x4d\\x16\\x71\\x8f\\x01\\x6e\\xf0\\x49\\\n\\x63\\x44\\x54\\xf6\\xf8\\x4d\\x53\\xd6\\xee\\x01\\x37\\xec\\x55\\xb1\\x8e\\xc6\\\n\\xbe\\x4f\\x14\\x5e\\xa8\\xd2\\x11\\xd8\\x91\\x62\\xbf\\xf8\\xf3\\x08\\xdc\\x47\\\n\\x56\\x36\\x8f\\x58\\x47\\x91\\xdc\\xde\\xb2\\x42\\x51\\xbc\\x17\\xa5\\x3a\\x8a\\\n\\x51\\x0d\\x97\\x2c\\xa2\\x81\\x37\\x5c\\x44\\x5d\\x7b\\xa1\\xfc\\xee\\x5b\\x8c\\\n\\x06\\xbc\\x88\\x8c\\xd6\\xb6\\x3d\\x0f\\xc5\\x0d\\x3f\\x30\\x43\\xeb\\xa4\\xfa\\\n\\x94\\xfb\\xc5\\x82\\x90\\xf1\\x70\\x5d\\xb8\\x6f\\xdd\\xdc\\x4a\\xa8\\x8b\\xb1\\\n\\xb6\\xb5\\x61\\x66\\xce\\x7c\\xc9\\x55\\x8c\\x97\\xfd\\x42\\x71\\x27\\x77\\x88\\\n\\x88\\x38\\x14\\x7f\\xc0\\x19\\xf6\\xf9\\x84\\x57\\x1b\\x3c\\xda\\x3c\\xf3\\xfa\\\n\\x18\\x62\\x80\\x6a\\x1f\\x1f\\xcb\\xe7\\x9e\\xe7\\xc6\\xa1\\xa7\\x5b\\xee\\xfe\\\n\\x3e\\x33\\x64\\x05\\x7a\\x0d\\x41\\x7e\\x44\\x14\\x4e\\x91\\xb9\\x58\\xdc\\x75\\\n\\x67\\x41\\xbb\\x2a\\xd8\\xb7\\xcf\\x08\\x35\\x5f\\x91\\x3b\\xa2\\xa3\\x32\\x4d\\\n\\xd4\\xb4\\x71\\x94\\x9e\\xce\\x9c\\xb3\\x1d\\x14\\x6d\\xaa\\x58\\xec\\xf2\\x78\\\n\\x6f\\x49\\x92\\x20\\xbd\\x3b\\x3b\\x3d\\x8d\\xa1\\x11\\xc8\\x15\\x71\\xcd\\x48\\\n\\x86\\x8e\\xf6\\x3c\\xcb\\x18\\x56\\x38\\xc3\\x15\\x67\\x27\\x87\\xbf\\xac\\x77\\\n\\x54\\x3b\\x48\\xb0\\x60\\x0f\\x40\\xf4\\x47\\x20\\xe7\\x21\\x0e\\x62\\xc3\\x84\\\n\\x02\\xa8\\x5d\\x30\\x9d\\x60\\x8a\\x2b\\x48\\x10\\x2e\\xea\\xfd\\xad\\xc9\\x15\\\n\\x59\\x4e\\x47\\x8d\\x03\\xc2\\xcc\\x10\\x4c\\x62\\x84\\xe4\\x52\\x7e\\x44\\x1b\\\n\\xf3\\x08\\x18\\x66\\x9a\\xc1\\x05\\xa7\\xe5\\xfe\\x31\\x2d\\x50\\x07\\x52\\x42\\\n\\x02\\x11\\x38\\xa7\\x4c\\x37\\x6e\\x22\\x04\\x4e\\x3a\\xd3\\x4d\\xec\\xc1\\xba\\\n\\x23\\x60\\x8d\\xca\\xda\\x8e\\xbf\\xc6\\x6f\\xc0\\x2d\\x1b\\x60\\xa9\\xc1\\xd0\\\n\\xf2\\x62\\xb5\\x19\\x01\\x86\\xe0\\x08\\x88\\x65\\x62\\xdc\\x28\\xf7\\x6a\\xf6\\\n\\xa9\\x10\\x4e\\xab\\x0a\\x15\\xf3\\x0b\\xb1\\xa2\\xb7\\x87\\x02\\x87\\x50\\xde\\\n\\xb6\\xca\\x19\\xcc\\x9d\\x43\\x50\\x5f\\xc0\\xfc\\x63\\xc6\\xf1\\x55\\x0b\\x74\\\n\\x22\\xfd\\x67\\xd4\\xc2\\x8b\\x2c\\x14\\xed\\xa6\\x94\\x83\\xc4\\x1d\\xae\\x4a\\\n\\x09\\xf5\\xe0\\x1c\\x1a\\x5d\\x73\\xdc\\x93\\xcd\\x00\\x0d\\x41\\xb5\\x13\\x7b\\\n\\xba\\x65\\xde\\x55\\x04\\xd1\\x37\\x7b\\x96\\xbd\\xdf\\xfa\\xc3\\x89\\x00\\x25\\\n\\xa2\\xfd\\x02\\x37\\x5f\\x8e\\xe0\\x03\\x32\\x15\\xa1\\x1c\\xa1\\x11\\x50\\x68\\\n\\xbb\\xdc\\x67\\xde\\xe6\\x80\\xf7\\x06\\x0a\\xa1\\x12\\x66\\x90\\x70\\x48\\xf8\\\n\\xf5\\x7b\\xd4\\xeb\\x35\\x8e\\xae\\x1f\\xaa\\x11\\x4d\\x29\\x3c\\x43\\xc1\\x8f\\\n\\x23\\xb0\\x16\\x8f\\xa4\\xd4\\xba\\x6b\\x44\\xe3\\x4e\\x0e\\xdb\\x5a\\x08\\x68\\\n\\x8b\\x70\\xd1\\xac\\x83\\xc9\\x47\\x61\\xed\\x60\\x38\\xa4\\x6a\\x7e\\x33\\xe7\\\n\\x66\\x05\\x03\\xa0\\x76\\xaf\\xca\\xad\\x7f\\x8c\\x8a\\x38\\x9f\\x60\\xe5\\xd5\\\n\\xce\\xe1\\x3e\\x58\\x87\\x88\\x1b\\xb8\\x4a\\x8d\\x9b\\x12\\x7c\\x71\\xbd\\xea\\\n\\x80\\xad\\x4b\\xda\\xd4\\x30\\xaa\\x25\\x20\\x77\\x9b\\x13\\xbe\\xc7\\x1f\\x20\\\n\\x9c\\xd3\\x5b\\xd6\\xe1\\xfa\\x80\\xe6\\x40\\x0e\\x96\\x47\\x1a\\x01\\xde\\x0b\\\n\\xa1\\x43\\x9f\\xb3\\xc4\\xfe\\x01\\xbd\\xe7\\x01\\xd0\\xe6\\xdb\\x43\\xa1\\xa2\\\n\\x91\\xf2\\x17\\x0f\\x19\\x35\\x69\\x40\\x37\\x1a\\x0d\\xc5\\xd5\\xaa\\x06\\x14\\\n\\xd0\\x86\\xc1\\xed\\xa6\\xb9\\xbe\\x7b\\xfd\\x63\\x30\\xe2\\x0a\\x4f\\x49\\xd0\\\n\\x29\\x5f\\xb7\\xce\\x48\\x2a\\xdd\\x01\\x20\\x29\\x3e\\x68\\x3e\\x97\\x37\\x4c\\\n\\xba\\x34\\x06\\xb5\\xdf\\x37\\xf1\\x8e\\xe2\\x80\\xb6\\x64\\xde\\x11\\xb2\\xda\\\n\\x3a\\x64\\x42\\x59\\x12\\xf8\\x01\\xd8\\x01\\xaf\\x8d\\xed\\xce\\x49\\xa7\\x67\\\n\\x8f\\x8b\\x6d\\x2f\\x9f\\x37\\x34\\xb4\\xfe\\x10\\x68\\xd1\\xd5\\x53\\x47\\x0c\\\n\\x8c\\x66\\xd5\\x44\\x11\\x68\\x08\\xfd\\x34\\xfc\\xe6\\xce\\xdc\\xda\\x55\\xbe\\\n\\x00\\x36\\xaa\\x33\\x03\\xa1\\x41\\x24\\x17\\x50\\xd5\\xdc\\x74\\x68\\x98\\xc4\\\n\\x57\\xf8\\x22\\x16\\x4e\\x60\\xeb\\x97\\xb4\\xc8\\xf5\\x6e\\xb9\\xcd\\xfc\\xfa\\\n\\x65\\xf9\\x08\\x1d\\xaa\\x2f\\x09\\xfc\\xaf\\x4d\\xcd\\xcd\\x7a\\x7b\\xaa\\x4f\\\n\\xe3\\x86\\x3d\\xc7\\xd0\\x08\\x59\\x77\\x84\\x27\\x44\\x1f\\xfc\\x7b\\xfa\\x61\\\n\\xdb\\xf2\\xe2\\x72\\xf8\\xeb\\xdf\\x32\\xfe\\x0f\\xb4\\x3f\\xe6\\x6f\\xb1\\xb4\\\n\\x70\\x9b\\x4e\\xb1\\xfd\\xe4\\x80\\x7a\\x66\\xfc\\x69\\xd4\\x93\\x5c\\x1f\\xbb\\\n\\x96\\x8f\\x60\\x5a\\x41\\x41\\xf2\\xb9\\x3e\\x5c\\x37\\x43\\x02\\xf8\\x50\\x03\\\n\\x1c\\x01\\x5f\\xe7\\x0b\\x0f\\x8d\\x62\\x45\\x2b\\x6a\\x09\\xa7\\x17\\x02\\xdc\\\n\\xc6\\x2a\\xdb\\x04\\xab\\x40\\x0f\\x33\\x64\\x62\\x57\\x21\\x65\\xd4\\xfc\\x80\\\n\\x65\\xcf\\x47\\x91\\x93\\x35\\xdc\\x8c\\x62\\xdc\\xb7\\x2a\\x31\\xd0\\x04\\x37\\\n\\x0b\\xd9\\x29\\x82\\xaa\\xa0\\x0e\\xe7\\xe8\\xf1\\xf1\\x77\\x30\\x56\\x00\\x5f\\\n\\x67\\x84\\x50\\xbf\\xd5\\xdc\\xc4\\xe2\\xe5\\x65\\x7d\\x1e\\xa7\\xb7\\xeb\\x15\\\n\\x02\\x3e\\xdb\\x7a\\x41\\x8f\\x90\\x90\\x62\\x38\\x57\\xee\\xdd\\x73\\x7e\\xe3\\\n\\x36\\xf0\\xd7\\xc2\\x54\\x5c\\x6b\\xe7\\x61\\x60\\x1a\\xbe\\x4e\\x10\\x8d\\x37\\\n\\xb1\\x96\\x69\\x61\\x07\\x7e\\xb5\\x84\\xc5\\x88\\xef\\xce\\x6e\\x69\\xbc\\x59\\\n\\xc0\\x40\\xa6\\xa4\\x3a\\x9a\\xeb\\xcc\\x88\\xa5\\x5c\\xe2\\xef\\xb8\\x1d\\x52\\\n\\x79\\x8f\\xa9\\xa5\\xbc\\x7a\\xec\\x13\\xa7\\x0d\\xd3\\x7c\\x01\\x37\\x9e\\x61\\\n\\x5b\\xd3\\xdc\\x7b\\xad\\xae\\x12\\x15\\xb8\\x22\\xdd\\x4f\\x82\\x58\\x83\\x0e\\\n\\xd8\\x16\\xdf\\x51\\xe9\\xf0\\x89\\x3f\\xa9\\x66\\xb8\\x48\\x6c\\x5b\\x0b\\xf1\\\n\\x18\\x03\\xe6\\x72\\x08\\x05\\x61\\x46\\x7c\\x33\\x99\\xe6\\x66\\x96\\x88\\x40\\\n\\x43\\xa3\\x4a\\x9b\\xcf\\xa9\\x13\\x30\\x3d\\x35\\x36\\x3d\\xb7\\x8b\\x9e\\x15\\\n\\xf6\\x41\\x42\\xa0\\x10\\x20\\xf0\\x0b\\x03\\xfc\\x73\\x3a\\x22\\x48\\x28\\xbd\\\n\\x30\\x00\\x9d\\xe4\\xb8\\x43\\x42\\x65\\xdc\\xa4\\x4c\\x3c\\x5e\\x47\\x29\\x7f\\\n\\x00\\x12\\xf4\\xae\\x45\\x48\\x84\\x5c\\x08\\x58\\x21\\x4d\\xa4\\x13\\x82\\xdc\\\n\\x04\\x7b\\xc5\\x75\\xfb\\xa9\\x07\\x49\\xeb\\x37\\x06\\xe9\\x6b\\xb6\\x1f\\x5f\\\n\\x91\\x84\\x02\\x12\\xa4\\x72\\x05\\x16\\x8d\\xb7\\x3d\\xd3\\x40\\x3d\\x12\\x16\\\n\\x84\\x7f\\x73\\x11\\xa2\\xc3\\xee\\xc7\\x3b\\x6b\\xc7\\x4c\\x50\\xc9\\xed\\x3a\\\n\\x07\\xe0\\xfe\\xd4\\xcd\\x8d\\xe9\\x1c\\x24\\xfc\\x1a\\x64\\x19\\x00\\x1d\\x3b\\\n\\x4b\\xa5\\xa5\\x87\\xf1\\x8e\\xbf\\x72\\x37\\xc5\\x47\\x40\\xef\\xc2\\xd7\\x0c\\\n\\x67\\xdd\\x1e\\xc5\\xfa\\x67\\xf5\\x82\\x43\\x3d\\x8b\\xf7\\x50\\xfc\\x43\\xe3\\\n\\x1a\\x04\\xeb\\x19\\xca\\x2d\\xdf\\xde\\x5c\\xef\\x6b\\xb3\\xd7\\xeb\\xcc\\xd0\\\n\\x2b\\x92\\x53\\x57\\x68\\x3e\\x95\\x9f\\x3b\\xc7\\x42\\x03\\xb6\\xc5\\x9d\\xb9\\\n\\xb1\\xe8\\xd8\\x74\\xe6\\x4d\\x58\\x45\\x57\\xed\\xd8\\x84\\x7d\\x06\\xcf\\x9c\\\n\\xf7\\x4e\\xd0\\x95\\xb2\\xbd\\x22\\x3d\\xb3\\x06\\xb6\\xa0\\xec\\xf1\\xe3\\x5a\\\n\\xb1\\xd5\\x36\\x67\\x12\\x12\\x08\\xe6\\xbe\\xbe\\x62\\x79\\x61\\xac\\xd0\\x20\\\n\\x0f\\x8a\\x8a\\xf5\\x98\\x64\\x4e\\xc8\\x21\\x95\\xaa\\xcd\\x7d\\xfb\\x9c\\x0c\\\n\\x33\\xb9\\xaa\\x3c\\x45\\xd7\\xc8\\x60\\x22\\xd5\\x48\\xfc\\x11\\xd4\\x85\\xbb\\\n\\x68\\xf8\\xc9\\x46\\x1d\\x15\\x71\\x2b\\x61\\xd2\\x6b\\xf3\\x9d\\x13\\x27\\x40\\\n\\x02\\x16\\xf6\\x9d\\xfa\\x66\\xb2\\x6c\\x15\\x36\\xec\\x3f\\x7f\\x3e\\x39\\x59\\\n\\xf4\\x7f\\x49\\xfe\\x73\\xd1\\x1b\\xd1\\xc1\\xaf\\xe5\\xff\\x00\\xb9\\x8e\\x81\\\n\\x78\\x75\\xbd\\xbc\\x9f\\x1f\\x7f\\xac\\xdc\\x4a\\x1a\\x58\\x79\\xaf\\x37\\xdc\\\n\\xb7\\x9b\\xff\\x00\\xdf\\x6e\\x4c\\xcc\\x95\\x96\\x6f\\xaa\\xe2\\xd6\\x43\\xe3\\\n\\x38\\xb4\\xaf\\x7f\\x00\\x6a\\x81\\xd9\\x00\\x6b\\xcd\\x65\\x97\\x1a\\xa9\\x09\\\n\\xf9\\xad\\x1b\\x78\\x37\\x9f\\x33\\x76\\x51\\xd2\\x02\\x1d\\x16\\xa0\\x30\\x02\\\n\\x5e\\x3a\\xcb\\x06\\x41\\x37\\x66\\xc8\\x7a\\x6c\\x66\\x40\\x20\\x2b\\xa9\\xf4\\\n\\xa2\\x9c\\x06\\x3b\\x39\\x64\\xf1\\x4e\\x9a\\x87\\xb5\\x24\\x0a\\x63\\x14\\x9a\\\n\\x5f\\xce\\x1a\\x09\\x23\\x17\\x14\\x34\\xfe\\x59\\x45\\x34\\x3e\\x24\\xc8\\x49\\\n\\x45\\x0a\\x6f\\x20\\xe6\\x7f\\x15\\x15\\x40\\x82\\x42\\x1c\\xb5\\x2d\\x5d\\xc3\\\n\\x4d\\x6a\\x61\\x0e\\x77\\xca\\xd2\\x6f\\x87\\xab\\x1b\\x5f\\x70\\x93\\x6e\\x2f\\\n\\x75\\xb1\\x8a\\x0f\\xdb\\xa4\\x90\\x18\\xf5\\x14\\xba\\x05\\x9b\\x02\\xac\\x5f\\\n\\x9c\\xf9\\xb4\\x90\\x0c\\xda\\x86\\xc9\\x7f\\x94\\x74\\x93\\x94\\xb6\\xc8\\xda\\\n\\x01\\x12\\x8d\\xce\\x19\\x15\\x9e\\x52\\xba\\x9d\\xc0\\x90\\x01\\xd4\\x80\\x25\\\n\\xc4\\xdf\\x2a\\x84\\x65\\x65\\x89\\xbe\\x31\\xc2\\xdc\\x36\\xc9\\xb9\\x4d\\xff\\\n\\x00\\xf9\\x21\\x6f\\x60\\x02\\x5c\\xe5\\xc4\\x20\\x1e\\xfc\\xbf\\xb7\\x2b\\x0a\\\n\\x04\\x92\\x4d\\xb5\\xdf\\xce\\x10\\x7c\\x54\\xb4\\xfc\\xaa\\x81\\xb2\\x55\\x7c\\\n\\x10\\xc4\\xdd\\x1c\\x90\\x50\\xe0\\x89\\xbb\\xf8\\x3f\\x2d\\x71\\x8d\\xba\\x8d\\\n\\xd8\\x2b\\xbd\\xa9\\x07\\xe9\\xf3\\x1e\\x83\\xa7\\x00\\x7b\\xe7\\xf9\\x33\\x74\\\n\\x2a\\xdd\\x4a\\x91\\x89\\x4c\\x1e\\x1f\\x60\\x31\\x03\\xbb\\x40\\x02\\x83\\x9a\\\n\\x81\\xae\\x5e\\x9b\\x9b\\xcc\\x52\\xb0\\x3f\\x39\\x25\\xc0\\x64\\x61\\x43\\xac\\\n\\xa6\\x84\\x72\\x05\\x56\\x98\\x4f\\x30\\xbd\\xf2\\x79\\x2a\\x12\\xc4\\x9c\\x58\\\n\\x46\\x60\\x2c\\xb3\\xd3\\x49\\x53\\x2a\\xf4\\x36\\x99\\x84\\x04\\xb4\\x58\\xb2\\\n\\xd5\\xac\\x0a\\x9f\\x93\\x09\\x0a\\x01\\x0a\\x2c\\x8c\\x5e\\x91\\x62\\x77\\xc8\\\n\\x1c\\x00\\x07\\x03\\xb8\\xd0\\x78\\x85\\x4d\\xb7\\x9b\\xbe\\x56\\x88\\xcb\\x7a\\\n\\x3a\\x28\\x51\\xeb\\x04\\x8d\\x83\\x74\\x4b\\xe4\\x9a\\x53\\xc7\\x46\\xe4\\x2f\\\n\\x6e\\x15\\x0b\\x4c\\x3e\\xc3\\x4e\\xcc\\x13\\x16\\xa5\\xbe\\x88\\xb4\\xf6\\x0d\\\n\\x3b\\x84\\xa9\\x42\\xdd\\x63\\xb6\\x86\\xb9\\x57\\xf6\\x62\\x0b\\x00\\xcc\\xb1\\\n\\x14\\x08\\x49\\x35\\xf0\\x9b\\xc7\\xc5\\x7e\\x28\\x56\\xb6\\x47\\x8b\\xeb\\xaa\\\n\\x28\\xa2\\x22\\x48\\x22\\x9a\\x27\\xe4\\xf3\\x79\\xb4\\x21\\xb8\\x23\\xbb\\x0e\\\n\\xbf\\xf0\\xe3\\x77\\x70\\xe1\\x5f\\xc9\\xa8\\xbf\\x1b\\xc1\\xa8\\x05\\xe5\\xb1\\\n\\xe7\\xdc\\xfc\\xfe\\x99\\x08\\x89\\x55\\x9e\\x1a\\x8b\\x29\\x76\\xa2\\x92\\xfb\\\n\\x8c\\xe6\\x6f\\x06\\xf8\\x55\\xbb\\xd4\\x2f\\xeb\\x37\\xe4\\x3a\\x4d\\x8e\\xd2\\\n\\x01\\xeb\\x47\\xf4\\x56\\x70\\x44\\xa1\\x77\\xd5\\x84\\x94\\xd7\\x67\\x71\\x9a\\\n\\x12\\x16\\x80\\x0d\\x86\\xd6\\x6c\\xec\\xba\\x35\\x8d\\x19\\x0d\\x85\\xa2\\xa6\\\n\\xdb\\xc0\\x19\\xd4\\xcd\\x94\\xac\\x9b\\xab\\x8a\\x56\\xc2\\x5a\\x7e\\xb2\\x44\\\n\\x8a\\x59\\xc4\\x8c\\x4b\\x3e\\x0d\\xe3\\x41\\xf3\\xdf\\x29\\xd9\\x09\\xaf\\x3f\\\n\\xc6\\x15\\x06\\x2c\\x49\\xb4\\x46\\xa7\\xc7\\x87\\xef\\x0c\\x0e\\x9b\\x6d\\xec\\\n\\x84\\x0e\\x36\\x45\\xa4\\x77\\x87\\x30\\x98\\x21\\x64\\x28\\x84\\x0b\\x49\\x2b\\\n\\x0d\\xa2\\xc1\\x1e\\x95\\x11\\xfa\\x96\\x77\\x51\\xc7\\x8c\\x39\\x2b\\x26\\xff\\\n\\x00\\x0e\\xcd\\x65\\xfe\\x9c\\xfb\\x9a\\x4e\\xb5\\xfb\\xd7\\x81\\x97\\x54\\xd9\\\n\\x61\\x21\\xfc\\x0d\\xff\\x00\\xef\\x9c\\x1f\\x06\\xdd\\xbf\\x97\\x9e\\x6c\\xff\\\n\\x00\\xc6\\x72\\x51\\x4b\\x76\\xee\\x43\\xbf\\x68\\xa2\\x1a\\x9a\\xb5\\xda\\x5c\\\n\\x2e\\x4e\\x14\\xd5\\xca\\x3b\\xfb\\x09\\xcc\\xbc\\xca\\xae\\x05\\xca\\x63\\x41\\\n\\xdb\\x45\\xf5\\x64\\x17\\x6d\\x80\\x16\\x8d\\x5f\\xc8\\x04\\x7b\\xa9\\x90\\x4d\\\n\\x4e\\x38\\xe3\\x63\\xd5\\x7d\\x7b\\x82\\x99\\x51\\xe0\\x43\\xf0\\x77\\xf2\\xd8\\\n\\x60\\xcd\\x22\\x36\\x24\\xdf\\xc1\\x76\\x4d\\x4f\\x74\\x60\\xee\\xb0\\xdb\\x4e\\\n\\x91\\x68\\xd4\\x55\\x5f\\x8d\\xe4\\xa5\\xb5\\x08\\xd6\\x17\\x8c\\x36\\x87\\xf9\\\n\\xd6\\x13\\xf0\\x8e\\x4c\\xd1\\xe5\\x8d\\x3c\\xdb\\xbe\\xe4\\xb6\\x52\\x13\\x37\\\n\\xe8\\x1f\\xa1\\xbc\\x01\\x8c\\x97\\x02\\xed\\xd6\\xc7\\x7d\\x7f\\x06\\x3a\\x12\\\n\\x21\\xe3\\xea\\xfb\\x6c\\xfc\\xcf\\xbf\\x87\\xc8\\x3a\\xcd\\x4e\\x8b\\xf9\\xd3\\\n\\x87\\x5f\\x11\\x13\\x76\\x6b\\xbd\\x3d\\x36\\xb2\\xa6\\x3f\\x5a\\xbe\\xba\\xcf\\\n\\x09\\xf9\\x6f\\x0e\\x37\\xc5\\xd4\\xd1\\x15\\x05\\x7a\\xa0\\xa2\\x9e\\x18\\xec\\\n\\x29\\xed\\xa3\\x69\\x15\\xe7\\x02\\x8d\\x37\\x22\\x59\\x24\\x92\\x95\\x2d\\x7c\\\n\\xc0\\x05\\xd9\\xf2\\xb1\\x70\\x78\\xca\\x4e\\x14\\x4b\\xe2\\x6b\\xdc\\x6c\\x23\\\n\\x59\\x40\\x48\\x08\\xe8\\xb4\\x5a\\x59\\x12\\xf6\\x08\\x45\\xaf\\xea\\xeb\\xec\\\n\\x76\\x4c\\xeb\\x12\\x41\\x62\\x0a\\xaa\\x29\\x06\\xcc\\x8d\\x01\\x67\\x45\\x2a\\\n\\x50\\x0d\\xbc\\x28\\xfa\\xc8\\x2b\\x01\\xe6\\x69\\x02\\x30\\xbf\\x2f\\xd3\\x3e\\\n\\x65\\x32\\x21\\x42\\x98\\x8d\\xdb\\xfc\\xb2\\xbb\\x40\\x23\\x35\\x59\\xb5\\x3d\\\n\\x4f\\xc0\\x70\\x71\\x34\\x85\\xdb\\x63\\x28\\x0f\\xa4\\xb4\\x0c\\x58\\x2b\\x64\\\n\\x52\\x6a\\x85\\x0a\\x88\\x35\\x11\\xb3\\xa5\\x30\\x84\\xfe\\x28\\x99\\x46\\x94\\\n\\x47\\xd5\\x20\\x6a\\x55\\xb2\\x95\\xbc\\xb4\\x53\\x19\\x2c\\x42\\x35\\xb5\\xc6\\\n\\x26\\x2f\\x0e\\xe0\\xb2\\x95\\xd6\\x35\\xa8\\xf3\\x55\\xe9\\x31\\xea\\x64\\x28\\\n\\xb3\\x4d\\xc9\\xe8\\xa8\\x06\\x30\\x20\\x0c\\x06\\xc1\\x46\\x96\\xec\\x4d\\x50\\\n\\x41\\x30\\x03\\x7e\\x84\\x98\\xdc\\x09\\x05\\xa4\\xec\\xc1\\xc3\\x76\\xa0\\x41\\\n\\x8a\\x49\\x46\\x9b\\x1d\\x60\\x2d\\x68\\x3a\\x01\\x0f\\x1a\\x10\\x3e\\x01\\x9c\\\n\\x4d\\x09\\x6d\\x50\\xb1\\x3d\\x9b\\x17\\x40\\xe4\\x97\\x20\\x6b\\xc0\\x83\\x23\\\n\\xa2\\xec\\x91\\x7d\\x7b\\x87\\xcc\\x88\\xc9\\x4c\\x84\\xa0\\x50\\x1f\\xd1\\x33\\\n\\xd9\\x59\\x1d\\x88\\xae\\xac\\xbd\\xfc\\x17\\x0a\\x4e\\x8a\\x25\\x50\\x02\\x23\\\n\\x7e\\x76\\x47\\x9b\\xc3\\xe7\\xf6\\x2a\\xc3\\x5b\\x67\\xfe\\xd6\\x69\\x14\\x25\\\n\\x49\\x43\\x61\\x0d\\x5d\\x0f\\x1f\\x93\\x58\\xa1\\x24\\x44\\x76\\x87\\x48\\x47\\\n\\x9a\\xd5\\x6f\\x71\\xff\\x00\\x49\\xc2\\x1e\\x85\\x36\\xea\\x56\\xe2\\xeb\\x35\\\n\\xa7\\xc6\\x5b\\x67\\xea\\x23\\x00\\xf8\\x1d\\x14\\x42\\xb4\\x8d\\x01\\xd0\\x1a\\\n\\xf9\\x02\\xd4\\x9a\\xae\\x6f\\x49\\x1a\\x75\\x34\\xaf\\x1a\\xf5\\xf1\\xf7\\x8d\\\n\\x33\\x4a\\x9f\\xb5\\xfd\\x14\\xde\\x74\\x3b\\x64\\xe7\\x23\\x8f\\x22\\x95\\x1e\\\n\\xeb\\x47\\x72\\xf5\\x79\\xb8\\x21\\x53\\x5f\\x8c\\x84\\x50\\xa6\\xb9\\xad\\x52\\\n\\x3b\\x49\\xfb\\xe7\\xc6\\x70\\xa8\\x94\\x86\\xcb\\x72\\x80\\xfc\\x38\\xc7\\x25\\\n\\xa3\\xd1\\xd6\\xd1\\x1d\\x07\\xe4\\x7f\\x9c\\x90\\x21\\x29\\x35\\x14\\x27\\x87\\\n\\x4e\\xd1\\x03\\x73\\x0f\\xd4\\x75\\x6f\\xd5\\xe2\\xc1\\xf1\\x8d\\x57\\x12\\x3b\\\n\\x23\\xf8\\x44\\x42\\x02\\x69\\x9f\\x13\\x01\\x03\\xc3\\xdd\\x02\\xf5\\x27\\xcd\\\n\\x9a\\xf7\\x10\\xfe\\x50\\xa1\\xda\\x9a\\x5d\\x80\\x7a\\xba\\xb8\\xbd\\x3c\\x47\\\n\\x23\\xe7\\x77\\xf8\\xf8\\x60\\xf9\\x9e\\x7c\\x3f\\x56\\xaa\\x29\\xaf\\x8c\\x1b\\\n\\x13\\x8c\\x95\\x6c\\x34\\xa1\\xbf\\xf0\\xc8\\x11\\x62\\x03\\xe1\\x40\\x3e\\x61\\\n\\x26\\xb5\\x30\\x13\\x15\\x05\\x32\\x55\\xa7\\xdb\\x5b\\xe7\\xd6\\x51\\x91\\x20\\\n\\x07\\x81\\x6e\\xb4\\xb7\\xe6\\xeb\\x86\\x35\\xdc\\xcd\\x40\\xbd\\x4c\\x3f\\x26\\\n\\xfe\\xcc\\x19\\x4d\\xa2\\xa2\\x84\\xd3\\xe6\\x9b\\xbc\\x78\\x03\\x9e\\xe2\\x0c\\\n\\xdc\\x6c\\xe8\\x24\\xbf\\x14\\x9e\\xe0\\xeb\\x44\\x0b\\x6c\\xab\\x43\\x4a\\xdf\\\n\\xfb\\x5d\\xe4\\x03\\x37\\x42\\xcb\\xaf\\xaf\\xe1\\xf7\\xf3\\x9d\\x14\\x6c\\xe3\\\n\\xd8\\x35\\x52\\xf2\\x47\\x5b\\xc9\\x1a\\x44\\x1d\\xd1\\xaf\\xa8\\x4d\\xeb\\xf3\\\n\\x81\\xf5\\xd1\\x52\\xbe\\x9d\\xd1\\xf3\\xe6\\x30\\xb6\\x57\\xb3\\xcd\\x7f\\x42\\\n\\xbe\\xfc\\x4c\\x0c\\x4d\\x17\\x54\\xf7\\x7b\\xa0\\x7d\\x0f\\x70\\x22\\xac\\xf4\\\n\\xbe\\xbd\\x55\\x7b\\xaf\\xdf\\xce\\x31\\xc2\\x4b\\x16\\xb3\\x44\\xeb\\x64\\xf5\\\n\\x1b\\xa9\\x8d\\xd8\\x2f\\x03\\x4d\\x85\\x97\\xaf\\xe6\\x61\\x2f\\xbd\\xa0\\x7c\\\n\\xd5\\x44\\x81\\xd8\\x06\\xeb\\x18\\x46\\x86\\xcd\\xb6\\x1f\\x25\\x6a\\x3b\\xfd\\\n\\x60\\x99\\x60\\x2f\\x61\\x02\\x4a\\xfc\\x99\\x42\\x64\\x82\\xa9\\x5a\\x9e\\x3f\\\n\\x3e\\x1a\\xe8\\x18\\x88\\x15\\x1e\\xc8\\x4f\\x14\\x0c\\x3d\\xac\\x37\\x4d\\x5d\\\n\\xd6\\xdb\\x7c\\x1f\\xc6\\x2f\\xc9\\xc2\\x89\\xec\\x59\\x21\\xfb\\xed\\x5a\\xfa\\\n\\x2e\\xef\\xd2\\xbe\\xdb\\x92\\x29\\x91\\xa4\\x3a\\x3b\\x27\\x41\\x72\\x64\\xe0\\\n\\x84\\x7a\\x69\\xf8\\x93\\x41\\x65\\x02\\x84\\x02\\x76\\x5d\\x38\\x98\\xb1\\x72\\\n\\x0f\\xd2\\x1a\\x1e\\xc2\\x3e\\x84\\x60\\x75\\x80\\x0d\\x0d\\xf1\\x64\\xa0\\x40\\\n\\x14\\x4e\\x2e\\x3e\\x9a\\xa1\\x00\\x98\\xea\\xfc\\xdf\\xb4\\xce\\x02\\x20\\xea\\\n\\x67\\xe0\\x65\\xa1\\xa9\\x21\\x75\\x0e\\x2c\\xb4\\x0a\\x0e\\x0a\\x9a\\x15\\x55\\\n\\xd8\\x73\\x45\\xe0\\xcb\\x9a\\x78\\x2d\\x2a\\x41\\xb5\\x94\\x00\\x7a\\x65\\x26\\\n\\x02\\xdf\\x74\\x44\\xaa\\x2e\\x14\\x2a\\x0e\\x46\\x5f\\x82\\x48\\x13\\xe6\\xe5\\\n\\x40\\x09\\x74\\x3a\\xf9\\x90\\x53\\xf0\\x5d\\x64\\xd0\\x3d\\x43\\xfb\\x9d\\x73\\\n\\xa3\\xad\\xb3\\x5c\\x23\\x9d\\x53\\x6e\\x74\\x75\\x14\\xb3\\xd6\\x12\\x50\\x1d\\\n\\x14\\x6e\\x13\\x85\\x0b\\xef\\xe3\\x24\\x0d\\x71\\x40\\x87\\x60\\x53\\x9b\\xe4\\\n\\xf6\\xd1\\x62\\x26\\xc6\\x94\\x17\\xd9\\xd0\\x0e\\x3e\\xd6\\x54\\x97\\x1f\\x9b\\\n\\xb8\\xcd\\xce\\x04\\x43\\xbb\\xca\\x4c\\xa0\\x77\\xbc\\x09\\x1e\\xe5\\x83\\x50\\\n\\x46\\xab\\x4d\\x42\\xa4\\xd1\\xdc\\x44\\xf1\\x82\\xde\\xa4\\x43\\x04\\xa8\\x0a\\\n\\xb7\\xc1\\x30\\x3b\\x70\\xd9\\x86\\xaa\\x76\\xf5\\x57\\xe1\\xbc\\x92\\xc8\\xc0\\\n\\xc6\\x83\\xbe\\x10\\x97\\xec\\x1a\\xde\\x41\\x10\\xbb\\x51\\xda\\x69\\xa5\\x77\\\n\\x31\\xe7\\x93\\x1a\\xa2\\xaf\\x43\\xc7\\xa7\\xea\\x68\\x5f\\x57\\xeb\\x01\\x11\\\n\\x1b\\x65\\x5f\\x7f\\x4f\\x7f\\xf4\\xcf\\x69\\xa9\\xe2\\x5f\\xcf\\xdf\\x7e\\xf3\\\n\\xf1\\x49\\x13\\xec\\x7b\\x7e\\x77\\x3f\\x1e\\x77\\x22\\xb7\\x42\\xb8\\x5f\\x7d\\\n\\x1f\\xb7\\x99\\xdb\\x50\\x0d\\x44\\xa5\\xc1\\x6b\\xc2\\xe1\\x46\\x41\\x31\\x9a\\\n\\xf1\\x06\\x01\\xcb\\xf8\\x0d\\x86\\x09\\xca\\x57\\xf2\\xb0\\x9f\\xc6\\x15\\xd6\\\n\\x73\\x5f\\xcf\\xc1\\x7a\\x8b\\xe8\\x5e\\xe9\\x68\\xda\\x55\\x6b\\xe6\\x87\\xd7\\\n\\x11\\xdc\\x55\\x09\\x5c\\x1a\\xf7\\xd2\\xa6\\xb2\\x32\\xdd\\xfc\\x5a\\xf8\\x11\\\n\\x34\\x4f\\x57\\x89\\xc4\\x1d\\xc4\\xd8\\x13\\x58\\x92\\x2e\\x65\\x95\\xd2\\x6d\\\n\\x89\\x40\\x12\\xbf\\x91\\x54\\xee\\x08\\xf8\\x46\\x09\\xd2\\x80\\x2b\\x33\\x4a\\\n\\xee\\x22\\x74\\xfa\\xfd\\xcf\\xda\\x61\\xd5\\x04\\x12\\xa5\\x97\\xb8\\xa7\\xe2\\\n\\x26\\x87\\x98\\x9a\\x6b\\x36\\x30\\x00\\x80\\x9a\\x2b\\x86\\xd2\\xa2\\xd2\\xba\\\n\\x2d\\x08\\x55\\xfb\\x36\\x1d\\xa2\\x53\\x63\\x4b\\x61\\xc6\\x30\\xd3\\x6b\\x19\\\n\\xc0\\x81\\x58\\xe8\\x60\\x83\\x0f\\x95\\x2c\\xb3\\x21\\xfd\\x09\\x14\\xe1\\xf3\\\n\\x6f\\x41\\x7e\\x64\\x2f\\x9e\\xdb\\x4d\\x77\\xd3\\x40\\x5a\\xa8\\xaf\\xd0\\x92\\\n\\x0a\\x0d\\x0d\\x50\\xb1\\xac\\xe6\\xba\\xfa\\xc4\\xbb\\x42\\x36\\x6b\\x84\\xdb\\\n\\xad\\x52\\x79\\xfc\\x39\\x54\\x9a\\xfb\\x27\\x0f\\xc3\\xd5\\x1f\\x8d\\x75\\x81\\\n\\x6e\\xcf\\x93\\x7a\\xdf\\xc9\\xfe\\xdf\\x93\\x09\\x48\\x15\\x6b\\x62\\xd2\\x7e\\\n\\x0b\\x47\\x7a\\x6d\\x8b\\x80\\xcb\\xf0\\x7f\\x0f\\xa0\\xa3\\x7d\\xc4\\xe6\\xb0\\\n\\xd6\\xf9\\x10\\xbf\\xe1\\x3a\\xc5\\x45\\xe7\\x77\\x52\\xa9\\x13\\xe4\\x4d\\x89\\\n\\x7b\\x7c\\x63\\x04\\xc0\\x01\\xd2\\x7e\\xdd\\xcb\\x28\\x94\\x81\\x27\\xf7\\x29\\\n\\x42\\x20\\x88\\xe0\\xf7\\x17\\x2a\\xbb\\x12\\x2b\\xb1\\x19\\x69\\x16\\x17\\x58\\\n\\x8e\\xea\\x5b\\xef\\x33\\x79\\x50\\xce\\x8e\\x76\\x02\\x92\\xe2\\x41\\xce\\x62\\\n\\x56\\xd2\\x6f\\x49\\x69\\x1f\\x17\\x5d\\x03\\x60\\xc7\\xeb\\x52\\x13\\x35\\x5a\\\n\\xbc\\x36\\x96\\xd4\\xee\\x4e\\xba\\x2e\\x16\\x42\\x78\\x20\\x41\\xfe\\x5a\\x0f\\\n\\xf7\\x8e\\x03\\xe5\\x48\\x3b\\xca\\xbb\\x6f\\x59\\xe2\\x6e\\x24\\xcc\\x36\\x17\\\n\\x18\\xc2\\xae\\x55\\x60\\x30\\x5c\\xc9\\xa8\\x41\\x53\\x4c\\xb3\\x67\\x35\\x5e\\\n\\x25\\x50\\xbb\\x03\\x79\\x18\\xb6\\x42\\x49\\x36\\xba\\x98\\xaa\\x3a\\x02\\xb8\\\n\\x1e\\xd6\\x0d\\x3f\\x32\\x8a\\x05\\x4a\\x74\\xd2\\x6e\\x61\\xb4\\x11\\x1d\\x8f\\\n\\x38\\x1a\\xad\\x84\\x42\\x60\\xbf\\x7f\\x5f\\xe6\\xc3\\x6a\\x80\\xc4\\x48\\x74\\\n\\x16\\xd1\\x48\\x43\\x64\\xce\\x37\\xad\\x69\\xd8\\x7a\\x1e\\x25\\x41\\x4f\\x1e\\\n\\x0b\\x35\\x95\\xb1\\xd0\\xd7\\x56\\x12\\x10\\xb4\\x1a\\x0a\\x54\\xe6\\x04\\xd2\\\n\\x75\\xd1\\x29\\xb0\\x39\\xd5\\xab\\x29\\xca\\x59\\x71\\x80\\xf6\\xb2\\x95\\xaf\\\n\\x9d\\x99\\x8e\\x3f\\x57\\xe9\\x8d\\x29\\xbd\\x8e\\xd5\\x47\\x1a\\xa3\\x4c\\xb7\\\n\\x46\\x1f\\x01\\x06\\x2c\\xf4\\x14\\x89\\x4f\\xe2\\x09\\x29\\xb4\\x90\\x5a\\xf8\\\n\\xeb\\xb8\\xd3\\x48\\x08\\x37\\x53\\xc0\\x9b\\x31\\x48\\x9c\\xc9\\x15\\xea\\x7e\\\n\\x67\\x08\\x5a\\x46\\xff\\x00\\x18\\xc1\\xcb\\xfd\\x96\\xe0\\xa7\\x08\\x56\\xf6\\\n\\xae\\x2b\\xd6\\xd1\\xd1\\x7f\\x05\\xe4\\x2b\\xe8\\x6b\\xb6\\x1b\\x0d\\x0b\\x4f\\\n\\xc3\\x76\\x82\\xba\\x75\\xed\\x42\\xc1\\x2e\\xf0\\x1b\\x67\\xb3\\x2c\\x81\\x1b\\\n\\x6d\\x5e\\xf0\\xd9\\x59\\xc3\\x81\\x08\\x68\\x41\\x45\\xe1\\x6a\\xeb\\xf1\\xfc\\\n\\x62\\xb0\\xc5\\xd7\\xe7\\xf4\\x32\\x32\\x21\\x8d\\x4c\\x5b\\x16\\x68\\x0b\\xab\\\n\\x7e\\xd7\\x94\\xa3\\x5e\\x8e\\xaa\\x49\\xe9\\x25\\xd7\\xf7\\xe5\\xc3\\xc6\\x1f\\\n\\xba\\x1f\\xfb\\x98\\x8e\\xe0\\x27\\x5b\\x5f\\x80\\xd4\\xe8\\x7e\\xcc\\x3f\\x68\\\n\\x9d\\xe4\\x82\\xac\\x06\\x7c\\xf6\\x6f\\x2f\\x96\\xb5\\x1a\\x91\\xf9\\x4a\\xfd\\\n\\xfd\\xb8\\xcc\\x89\\xeb\\xbb\\x0f\\xce\\xf2\\x4d\\xdb\\xac\\xa9\\xc0\\xfb\\x6b\\\n\\xfd\\x9e\\xcc\\x86\\xc5\\x21\\x68\\x47\\x3c\\x58\\xc3\\x1c\\x17\\x59\\x4e\\x50\\\n\\x66\\x35\\x89\\x87\\xb4\\xd0\\x0a\\xeb\\xcb\\x22\\xf3\\x28\\x20\\x90\\x6d\\xfc\\\n\\x1e\\x62\\xee\\xea\\x2c\\xa4\\xde\\x54\\x14\\x7e\\x7e\\x6c\\x9b\\x2e\\x9e\\x89\\\n\\x4f\\x95\\x3f\\xd7\\xeb\\x19\\x7d\\x3e\\x88\\xf5\\xf8\\x5c\\x07\\x8d\\x36\\x48\\\n\\x13\\x00\\x34\\x1f\\x6c\\x1b\\x99\\x64\\xf3\\x2b\\xc4\\x1a\\x5a\\xba\\xee\\x83\\\n\\x00\\x6e\\x05\\xc8\\x45\\xa4\\x50\\x66\\x85\\x1e\\x5c\\x74\\xf0\\xf6\\x9c\\x84\\\n\\x7c\\x23\\xd2\\xb5\\xcc\\xf5\\xad\\x2b\\x3a\\x21\\x72\\x55\\x0f\\x5d\\xf3\\x2a\\\n\\x97\\xf0\\x9a\\x99\\x50\\xca\\xf2\\xf1\\xc6\\x9c\\x74\\xe9\\xbf\\x1d\\x4f\\x87\\\n\\x44\\x98\\x53\\xe3\\x56\\xde\\x89\\x1b\\x35\\x4b\\xa3\\x47\\x3d\\x29\\x60\\x9e\\\n\\xc4\\x8b\\xd5\\xf0\\x5f\\x16\\xb3\\x80\\xd8\\xda\\xd2\\xa8\\x9f\\x35\\x48\\x77\\\n\\x37\\x9f\\x44\\xf6\\x83\\x40\\xac\\x7c\\x54\\x1f\\x19\\x95\\x90\\x59\\x13\\x56\\\n\\xa4\\x38\\x84\\x7f\\xac\\xdc\\xd8\\x94\\x20\\x4a\\x2c\\xd9\\x7c\\x0a\\xe6\\x94\\\n\\xac\\xbb\\x2c\\xee\\x1a\\x23\\xce\\x38\\x27\\x7d\\x7d\\x90\\x31\\xf8\\x3b\\x5a\\\n\\xfd\\x33\\x82\\xcf\\x00\\x87\\xc4\\xc8\\x0a\\xad\\x4b\\xae\\xa5\\x74\\xeb\\x9d\\\n\\x86\\xdb\\xd3\\xcf\\xc6\\x02\\x54\\x6c\\xd0\\xd1\\xec\\x5d\\xdf\\x97\\x2e\\xc1\\\n\\x00\\xda\\xa8\\xa8\\xcb\\xb0\\x5c\\xd1\\x23\\x6e\\xac\\x68\\x31\\xd1\\x20\\x7d\\\n\\xc5\\x90\\xd4\\x3f\\x24\\x0f\\x4e\\x9a\\xe0\\xde\\xf3\\x5c\\x12\\x08\\xd4\\xba\\\n\\x3e\\xcb\\xf8\\x18\\xbf\\xf2\\xb9\\x17\\xc7\\x3e\\x8e\\xe8\\xf3\\x21\\xa2\\xab\\\n\\x69\\xec\\x42\\xd6\\x03\\x49\\x5a\\xc0\\x63\\xdb\\xa0\\xc8\\x2a\\xd2\\x98\\x34\\\n\\xe9\\x73\\x1f\\x7d\\x9b\\xbc\\xfa\\x85\\x37\\xe6\\x5e\\x2c\\x5a\\x48\\x5d\\x10\\\n\\x6c\\x30\\xd2\\x83\\x3c\\xa9\\xba\\xb6\\x99\\x15\\x49\\x2a\\xdd\\xae\\x3f\\xa4\\\n\\x2e\\x06\\x12\\xe4\\x10\\xa1\\x0b\\x06\\x30\\x6a\\x1a\\x6c\\xa0\\x11\\x07\\x55\\\n\\x2d\\x31\\x30\\x9f\\xf2\\xda\\x6e\\x00\\x42\\x94\\x22\\x7a\\x87\\x1f\\x26\\xfc\\\n\\x8f\\x4a\\x96\\x60\\xa7\\xa6\\xeb\\x4b\\x6c\\xcb\\x05\\x78\\x37\\x7e\\xa0\\xeb\\\n\\x31\\x91\\x6e\\x25\\x28\\x15\\x1d\\x22\\x78\\x03\\x30\\x92\\xf2\\x4e\\x9f\\x80\\\n\\xba\\x39\\x0a\\xf7\\x00\\xd0\\x92\\x28\\x25\\x81\\x69\\xfc\\x14\\x5b\\x8a\\x24\\\n\\x1e\\x77\\x90\\xd1\\x17\\x55\\x31\\xb8\\x04\\xad\\x03\\xb5\\x8e\\xd5\\xe0\\xef\\\n\\xe9\\x8a\\x6b\\xa6\\xde\\x53\\x2c\\xdc\\xe7\\x04\\x0a\\x03\\x40\\x75\\xe3\\x5e\\\n\\x3c\\xbf\\xe7\\x26\\x40\\xd3\\x82\\x06\\x30\\xe9\\xf7\\x9d\\x4f\\xb6\\xaf\\xcd\\\n\\xbe\\xd4\\x35\\x35\\x4f\\x3b\\xbc\\x96\\x80\\x6c\\x32\\xdb\\x16\\xc7\\x84\\x3e\\\n\\x86\\x3e\\x34\\x20\\xc6\\x5b\\xa6\\x69\\x28\\xc3\\xd3\\x27\\x80\\xa7\\x45\\xb4\\\n\\x68\\xd7\\x1e\\x53\\xd7\\x2d\\xce\\xa6\\xf2\\xf4\\x63\\xfc\\x83\\x6a\\xe2\\x50\\\n\\xb4\\x33\\x40\\x68\\xd7\\xd0\\xfe\\xdd\\xc7\\x88\\xa6\\xac\\x38\\x7f\\xc7\\xd0\\\n\\xe2\\x56\\x60\\xe8\\x24\\xc9\\x60\\x01\\xb1\\xb7\\xed\\x9b\\xd2\\xe6\\xdb\\x7a\\\n\\x96\\xec\\x02\\xea\\xea\\xb0\\xce\\x70\\x7c\\xec\\x32\\x42\\x0d\\x2b\\xd2\\xc5\\\n\\x05\\xb0\\xd7\\xdf\\xbf\\x83\\x9d\\xc8\\x3c\\xf4\\x22\\xc9\\x28\\x78\\x76\\x7a\\\n\\xe5\\x65\\xdb\\x3d\\xf3\\xd8\\x4d\\x05\\xf2\\x6b\\x29\\x6b\\x28\\xbe\\xff\\x00\\\n\\x5a\\xeb\\x9c\\x84\\x4d\\xdf\\x93\\xe8\\x1f\\xc7\\xff\\x00\\xb9\\xb5\\x61\\xa3\\\n\\x1f\\x8a\\xd2\\x7f\\xe7\\x7e\\x0c\\x20\\xa0\\x06\\x38\\x0f\\x47\\xbb\\xdf\\x2f\\\n\\xbf\\x19\\xe6\\xa5\\xd2\\xae\\xcb\\x78\\xa1\\x61\\x79\\x9b\\xcf\\x26\\x7b\\x18\\\n\\xad\\x10\\x1f\\x6c\\x66\\xf1\\x6c\\x7b\\xad\\x0a\\x1a\\x16\\x1b\\x1f\\x8c\\x4b\\\n\\xe3\\x45\\xdb\\xf9\\xef\\xdb\\xf0\\xc0\\x76\\xd0\\xca\\xcf\\x27\\xcf\\xf3\\x9f\\\n\\x25\\xcb\\xbb\\x15\\x6c\\x36\\x48\\x5b\\x2a\\x71\\xc5\\xfd\\x09\\x20\\xa9\\x29\\\n\\x27\\x68\\xee\\x62\\xc6\\x74\\xc1\\x2f\\xf0\\x46\\xb6\\xfd\\x0f\\x86\\x0e\\x75\\\n\\x93\\x40\\xad\\x0f\\x1b\\x78\\xf5\\x9a\\xb7\\x5b\\x90\\x2f\\xa0\\xdd\\xd0\\x65\\\n\\x0a\\xe3\\x8a\\x88\\x35\\xf3\\xd2\\x30\\xaf\\xc3\\x8c\\x9b\\x33\\xdf\\xae\\x21\\\n\\x74\\xf9\\xfd\\x6b\\x6b\\xaf\\x8c\\xe2\\x70\\xea\\xf9\\x1b\\x97\\x27\\x19\\x58\\\n\\x2e\\x18\\xa0\\x7b\\xa7\\xd1\\x84\\x23\\xbd\\x77\\x23\\xf0\\xff\\x00\\x38\\x82\\\n\\x86\\x05\\x70\\xfa\\x6f\\x7c\\x39\\x8a\\x6c\\xaa\\x1a\\x5d\\xeb\\xfa\\x1f\\x30\\\n\\xd1\\x97\\x53\\x1f\\x4b\\x8c\\xfa\\x14\\x55\\xee\\x16\\xf0\\x6f\\x4e\\xff\\x00\\\n\\x3c\\x10\\xee\\x0a\\xa6\\x46\\x0a\\x1b\\xf5\\x06\\xda\\x50\\xd9\\x78\\xf6\\x63\\\n\\xea\\x98\\xc6\\xc3\\x11\\xe4\\xdf\\x1e\\xe9\\x8a\\xf7\\x48\\x34\\x07\\xe2\\xee\\\n\\x7a\\xca\\xe0\\xa1\\x86\\xaa\\xad\\x4f\\xd0\\xbf\\x0c\\x96\\xd1\\x7e\\x10\\x1f\\\n\\x28\\x04\\xab\\x53\\xe5\\x71\\xca\\x0a\\xfe\\x82\\x11\\x08\\xe3\\x2a\\xd3\\x85\\\n\\x02\\x14\\x24\\x29\\xcd\\x04\\x4d\\x3f\\xb3\\x20\\x81\\x45\\x6a\\x52\\x34\\x8a\\\n\\x56\\xba\\xae\\xae\\xf3\\xc5\\x28\\x0d\\x34\\x51\\x66\\xa0\\x9a\\x0c\\xb9\\x01\\\n\\xcb\\x71\\xc0\\xb0\\xd2\\x61\\x39\\x08\\xc3\\x42\\x63\\xc8\\x51\\x16\\xa5\\xb4\\\n\\xfb\\xe9\\x43\\xb6\\xb2\\x9f\\xa1\\x57\\xbe\\x8e\\x42\\x4c\\x6d\\xb4\\xef\\xbc\\\n\\x82\\xed\\x67\\x03\\x95\\x06\\xf5\\x41\\x6c\\x7a\\xe0\\x8b\\x22\\x75\\x20\\xa5\\\n\\xa2\\x13\\x3e\\xce\\x5e\\x05\\xc5\\x58\\x9b\\x94\\x99\\x3c\\x85\\x2b\\x2c\\xa5\\\n\\x16\\x07\\xf1\\x8d\\x01\\x99\\xce\\xdd\\xf5\\x16\\x60\\xea\\xa2\\xde\\x91\\x43\\\n\\xba\\xc7\\x0d\\x1a\\x0e\\x25\\x26\\x6a\\xb5\\xd6\\xe3\\x44\\xbc\\x34\\x63\\xc2\\\n\\x3c\\x25\\xe8\\x62\\x3d\\x17\\xa7\\xdf\\x13\\xe3\\x72\\xd8\\x9b\\xa9\\x19\\x56\\\n\\xd6\\x08\\x16\\xa0\\x9a\\x91\\xe9\\xd3\\xf2\\xb6\\x35\\xd9\\x66\\xb4\\x49\\x0f\\\n\\x7c\\xf8\\xa2\\x85\\x03\\x8a\\xfd\\xb5\\x96\\x92\\x21\\x5d\\x9a\\x43\\xd4\\x8a\\\n\\x16\\x70\\xaa\\x3b\\xfa\\xa2\\x5f\\x04\\x63\\x22\\x1b\\x93\\x68\\x6e\\x5b\\xb0\\\n\\x0f\\xd2\\xba\\xc4\\xca\\x3d\\x45\\x08\\x81\\x4c\\xc2\\x75\\x42\\x23\\x33\\x87\\\n\\xbc\\x82\\x09\\xd2\\x97\\xa9\\x22\\x4c\\x34\\xfc\\x58\\x44\\x8b\\x77\\xdb\\x21\\\n\\xfc\\x0d\\x04\\x5e\\xe8\\x4a\\x90\\x11\\x33\\xde\\x8a\\xc3\\xcc\\x2f\\x20\\x56\\\n\\x88\\xb4\\x58\\x29\\xf6\\x23\\xe9\\xcc\\xf0\\xd2\\xaa\\x30\\xa0\\x02\\xb9\\xb2\\\n\\xf8\\xe3\\x90\\x93\\x6a\\x88\\x47\\xa9\\x3a\\x65\\x6e\\x98\\x98\\xfc\\xf3\\x5a\\\n\\xbc\\x94\\x7e\\x3c\\xc8\\x34\\xba\\x0d\\x34\\x49\\xbe\\x07\\x00\\xf8\\x5c\\x72\\\n\\x6e\\x74\\x2c\\x8e\\x1d\\x59\\xb3\\x01\\x48\\x25\\xd8\\xa5\\x6e\\x85\\x02\\xa9\\\n\\x7a\\xa5\\xde\\x1c\\x20\\xba\\x59\\x28\\x4f\\xe5\\xf8\\xc2\\xdf\\x82\\x2b\\xa7\\\n\\x87\\xf3\\xfc\\xa6\\x3b\\x9b\\xf3\\x7f\\xfc\\xff\\x00\\x99\\xcb\\xeb\\x8e\\xfc\\\n\\x4b\\x0f\\x99\\xe1\\xcf\\xce\\x70\\x6e\\x5e\\xc7\\x5f\\xaf\\xe9\\xfe\\xf3\\x42\\\n\\x32\\xf4\\xd8\\x3f\\x3a\\xf6\\x7e\\xf2\\xbd\\x3a\\x2e\\xfd\\x93\\xbf\\x55\\x1f\\\n\\x30\\x33\\xc2\\xb4\\x4f\\x10\\x91\\x79\\x13\\xdc\\xea\\x56\\x1a\\x40\\xe5\\xf4\\\n\\x7a\\x9c\\xd0\\x4c\\x48\\x58\\xd5\\x89\\xd0\\x3b\\xce\\x13\\xfa\\xc8\\xc4\\x7c\\\n\\x4d\\xec\\x3b\\xf9\\x3e\\xb0\\x02\\xe8\\x7a\\x87\\x8d\\xff\\x00\\xf7\\xb8\\x7d\\\n\\x26\\x92\\x03\\xf8\\x61\\x13\\x08\\xee\\xda\\xa4\\x9c\\xbf\\x53\\xa0\\x9e\\x6f\\\n\\x73\\x41\\x0d\\x01\\x0c\\xa9\\xeb\\xab\\xe7\\x7e\\x3e\\xf0\\x2e\\x49\\x81\\x91\\\n\\x0b\\xd5\\xab\\x6f\\xc7\\xc3\\x85\\xaa\\x98\\xc8\\x41\\x93\\x17\\x4f\\x2d\\x4f\\\n\\x72\\x9c\\x68\\xe1\\x66\\x00\\xec\\x5e\\x25\\x99\\x43\\x14\\x38\\x30\\xfd\\x2a\\\n\\x7d\\x6b\\xe3\\x22\\x53\\x34\\x44\\x0e\\x0e\\x15\\xd8\\x7a\\xe1\\xdc\\xeb\\x89\\\n\\x81\\x27\\x4f\\x4f\\xa0\\x6b\\xe2\\xeb\\x34\\x97\\x90\\x9a\\x9b\\xfc\\xec\\x26\\\n\\x9f\\xc6\\x53\\x41\\x26\\x1d\\xc0\\xad\\x97\\xdf\\xc2\\x98\\x04\\x0b\\x87\\xd6\\\n\\x4d\\x15\\xcb\\xf8\\xaa\\xdb\\x88\\xa5\\xbf\\xc9\\x46\\x7f\\x75\\xad\\x3c\\xc0\\\n\\x98\\x62\\x74\\xef\\xd2\\x02\\xa9\\x4d\\xbe\\x61\\x26\\x80\\x1c\\xec\\xb3\\x54\\\n\\x08\\xc2\\x2e\\x3e\\x95\\x73\\x48\\xd1\\x66\\x0a\\x1e\\x1f\\x74\\xce\\x7a\\x56\\\n\\xac\\x23\\xe3\\x7d\\xbf\\x9f\\xd6\\x53\\x28\\xa2\\x15\\x2c\\xf3\\x4d\\xd7\\xf2\\\n\\xdd\\x49\\x9a\\x7b\\x9d\\x04\\x04\\x2e\\xa3\\x4b\\xdb\\x5f\\x8d\\x63\\x26\\x61\\\n\\x17\\xc7\\x16\\x78\\x1f\\x5b\\x93\\x0d\\x9b\\x24\\x4d\\x5f\\x35\\x23\\x63\\x53\\\n\\x21\\x6d\\x43\\x0c\\x31\\x11\\x54\\x97\\xa4\\xea\\x59\\xd2\\x2c\\x50\\x59\\xd0\\\n\\xc4\\x12\\x00\\x8a\\x30\\x51\\x96\\x28\\x92\\x1e\\x27\\x88\\x71\\x0d\\x1c\\x00\\\n\\x24\\xe8\\x13\\x89\\xc8\\x34\\xbf\\x8c\\xeb\\x09\\x70\\x0c\\xe9\\x52\\x0b\\x44\\\n\\x74\\xe4\\x99\\x39\\x3c\\xae\\x26\\xcd\\x75\\xa0\\x40\\x4a\\xf8\\x46\\x7a\\x06\\\n\\xb8\\x1c\\xdb\\x96\\x0b\\xbb\\x83\\x35\\xf6\\x3d\\xdb\\x82\\xa3\\x37\\x6b\\x4c\\\n\\x97\\x36\\xab\\xba\\x01\\xf8\\x30\\x27\\x26\\x00\\xd5\\xc3\\xa5\\x53\\xba\\x10\\\n\\xa5\\xe2\\xb1\\xcc\\xd0\\x81\\x22\\x68\\x29\\x7d\\x57\\x16\\xf9\\xa0\\x3b\\x6a\\\n\\xef\\x47\\x6a\\xb6\\x21\\xa3\\x1e\\xd5\\x6f\\x77\\x8c\\x3b\\x83\\x4c\\xc0\\xf4\\\n\\xb9\\x2d\\xe5\\xa4\\x92\\x68\\x62\\xb6\\x27\\x5c\\x31\\xba\\x62\\xac\\xa4\\x0d\\\n\\xae\\xda\\xab\\xac\\x34\\x40\\x09\\xf1\\x28\\x82\\x5d\\x67\\x5e\\xf5\\x3e\\xee\\\n\\xb9\\x54\\x14\\x82\\x49\\x28\\xa0\\x78\\x66\\xcc\\xeb\\x00\\x9a\\x04\\x6b\\xf2\\\n\\x0d\\xe5\\x2d\\x63\\x24\\x52\\xc6\\x6d\\x8d\\x67\\x4c\\x53\\x06\\xd2\\x93\\xa2\\\n\\x56\\x95\\x8a\\x01\\x1c\\xbb\\xd5\\x3d\\xb7\\x05\\x6c\\x2a\\xd8\\xc2\\x08\\x0c\\\n\\x47\\x47\\x66\\x1e\\x19\\xd9\\xb5\\x76\\xd5\\xf0\\xe0\\x83\\xf8\\x07\\x2f\\x42\\\n\\xdd\\xc3\\xf6\\x6f\\x36\\x4f\\x52\\x1a\\x2c\\x1f\\x81\\x17\\x22\\xa4\\x83\\x3e\\\n\\xc1\\x27\\x76\\x1f\\x57\\xf9\\xd4\\xfb\\xcb\\x6d\\x95\\x11\\x13\\x7e\\xb5\\x3a\\\n\\xfe\\xcd\\xd5\\xc6\\x49\\x03\\x00\\xa4\\x74\\xfb\\x13\\xc1\\x87\\x0e\\x50\\x4b\\\n\\x8a\\xa6\\xfe\\xa0\\x20\\xfd\\xfc\\x91\\x68\\x9d\\xd7\\xdf\\xfb\\xff\\x00\\x99\\\n\\x58\\x4b\\x47\\xc0\\x50\\x89\\xb3\\xff\\x00\\xdc\\x6b\\x90\\xa3\\x5e\\x13\\xfd\\\n\\xdf\\xd1\\xe3\\x90\\x38\\xd9\\x1b\\xfc\\xf2\\x7f\\xcc\\x84\\xab\\xf2\\x7c\\xab\\\n\\xdf\\xc9\\xbf\\xde\\x34\\xa9\\x75\\x49\\xaf\\xdb\\xbc\\xdf\\x29\\xbd\\x35\\x9a\\\n\\x71\\x66\\xa3\\xc9\\xe7\\xe9\\xcf\\x1d\\xde\\x1d\\x0d\\x97\\x9c\\x3b\\xbd\\x6f\\\n\\xbc\\xc4\\x8b\\x0c\\xd2\\x2e\\x84\\x3d\\xf7\\x5c\\xd9\\xf1\\x93\\x5c\\xb9\\xa8\\\n\\x0c\\x62\\xe8\\x0c\\x3f\\xbc\\xe6\\x81\\xa7\\x50\\x5a\\x34\\xd8\\x7c\\x56\\xfd\\\n\\xe2\\xc3\\x47\\x50\\x6b\\xe4\\xd9\\x07\\x67\\x30\\x87\\x01\\x09\\x43\\xf1\\x26\\\n\\xbf\\x96\\x17\\x47\\xbf\\x55\\xf3\\xfd\\xeb\\xf5\\x8f\\x33\\xec\\xf0\\xad\\x6d\\\n\\xff\\x00\\x31\\x89\\x6a\\x55\\x54\\x6d\\x8f\\xce\\xcf\\xa1\\x5f\\x9c\\x80\\xab\\\n\\xfe\\x77\\x6f\\xed\\x99\\x7e\\x91\\x06\\x7a\\xae\\xbc\\xf9\\x3f\\x46\\x6c\\x09\\\n\\xd8\\x09\\x51\\xf2\\x2b\\xb5\\x48\\x57\\x41\\x84\\xb0\\x6d\\xcb\\x76\\x23\\xa6\\\n\\x82\\x6b\\xf9\\xc1\\x56\\xed\\x42\\x47\\x01\\x6a\\xfa\\x1e\\xbe\\x71\\x24\\xcc\\\n\\x80\\x2c\\xaf\\x5d\\xef\\x7f\\x3f\\xac\\x14\\x31\\xe2\\x0e\\xab\\xb0\\xec\\x43\\\n\\xce\\xe6\\x4a\\x31\\x12\\xa0\\xe0\\x5f\\xd4\\xea\\x17\\x87\\x87\\x1e\\x82\\x10\\\n\\x35\\xb4\\x48\\x2f\\xdb\\x19\\x7a\\xa0\\xaa\\xfe\\xb6\\xec\\x16\\x3b\\x61\\x18\\\n\\xa3\\xc0\\x60\\xaf\\x62\\xac\\x0e\\x90\\x39\\x68\\x47\\xc9\\x56\\x1d\\xdd\\x96\\\n\\x27\\x8e\\xf3\\xe3\\x1e\\xcc\\x7b\\xfd\\xd4\\x2f\\x08\\x64\\x71\\x88\\x1b\\x02\\\n\\x17\\x6e\\x30\\xed\\xa2\\xf3\\x06\\x1a\\xaf\\x58\\x9c\\xfe\\x4b\\xca\\xf7\\x03\\\n\\x56\\xcf\\x98\\xf2\\xc1\\x3f\\x95\\xfc\\x6b\\x05\\xa1\\x4a\\x5a\\xbc\\xb7\\xf9\\\n\\x7b\\x84\\xa1\\x53\\x51\\x3e\\xb9\\xf7\\xfc\\x64\\x52\\x0a\\x09\\x41\\x05\\x1d\\\n\\xed\\xd8\\x71\\x8f\\xba\\xe8\\x03\\x16\\xaa\\x25\\x15\\xb3\\xd4\\x0b\\x6d\\xa0\\\n\\xbc\\xe1\\x00\\xc7\\x3c\\x3b\\x71\\x28\\x43\\xdb\\x16\\x2c\\xb0\\x2e\\x86\\x8c\\\n\\x05\\x57\\x40\\x5e\\x93\\x62\\xea\\x11\\xa0\\x12\\xed\\x8a\\xb5\\x34\\x88\\xef\\\n\\x0b\\xc1\\x96\\x46\\xd1\\xc8\\x4e\\x59\\x26\\xc0\\x04\\xd4\\x3c\\x84\\x9a\\x8d\\\n\\x61\\x36\\xc9\\x95\\x48\\x3b\\x88\\x64\\x0e\\x03\\x2b\\x46\\x68\\x35\\x16\\x15\\\n\\x38\\x04\\x87\\x52\\x00\\x82\\x17\\xc6\\x8a\\x25\\xea\\xd9\\x0f\\x88\\x24\\xa4\\\n\\x3c\\x4a\\xe9\\xde\\x70\\x9d\\x24\\xc1\\x44\\xe9\\x0d\\x78\\x17\\x21\\xe9\\xc8\\\n\\x07\\x30\\x56\\x88\\x29\\xb4\\xa7\\x00\\xbc\\xcb\\xcd\\x22\\x6d\\xf6\\x91\\xf5\\\n\\x09\\x80\\x97\\xc0\\xa6\\xa2\\x84\\xd7\\xdf\\x7a\\xd6\\xe8\\xb1\\x0d\\xae\\xa2\\\n\\x3d\\x01\\xe4\\x5a\\xfa\\x26\\x5a\\x79\\x5d\\x94\\xf4\\xdb\\x36\\xfe\\x45\\x6e\\\n\\xd3\\x7c\\x87\\x0d\\xa1\\xdd\\x0d\\x62\\x9b\\x43\\x6f\\x4b\\xd8\\xfa\\x13\\x08\\\n\\xfc\\xf9\\x09\\xc4\\x50\\x02\\x6e\\xeb\\x11\\x28\\x06\\x14\\xa8\\xce\\xe1\\x1b\\\n\\xce\\x91\\x49\\x1a\\x92\\xfa\\x4b\\x5f\\x05\\xf7\\x18\\x77\\xf6\\xe0\\xed\\xd4\\\n\\x3d\\x0f\\x51\\x2d\\x26\\xb2\\x2e\\xf7\\xc0\\x81\\xb8\\x08\\x94\\x70\\x64\\x81\\\n\\x73\\x3e\\xbc\\x7e\\x87\\xcb\\xdd\\x60\\x5c\\xcf\\x50\\x06\\x43\\x9b\\x08\\x16\\\n\\x80\\xc7\\x5f\\x6e\\x59\\x76\\x6b\\x3e\\xea\\x27\\x09\\x87\\x76\\x1e\\x38\\xa8\\\n\\xd4\\x3d\\x57\\x27\\x55\\xcc\\xfc\\x22\\x5f\\x5e\\xc3\\xf2\\xc5\\x5e\\x94\\x3d\\\n\\x9e\\x5f\\xc2\\xff\\x00\\x0b\\xe6\\x35\\x6c\\x29\\xf3\\x2f\\xfe\\xfd\\x65\\x3a\\\n\\xe5\\x49\\xc7\\xee\\xe7\\xbe\\xcf\\xde\\x0e\\x22\\x3b\\x55\\xfd\\x87\\xd7\\xce\\\n\\x6e\\x6c\\x86\\xac\\x5b\\xfc\\xeb\\x98\\xb6\\xec\\x8c\\xe4\\x79\\x79\\xf8\\xff\\\n\\x00\\x18\\x88\\x3e\\x77\\x49\\x4d\\xee\\x65\\x67\\xa3\\x51\\x24\\x7f\\x7d\\x44\\\n\\x47\\x8a\\xb9\\x24\\x3e\\x45\\x6f\\xbe\\x1c\\xef\\xf8\\xc2\\x41\\x1d\\x8d\\xf1\\\n\\xf1\\xfc\\xec\\xf9\\xb7\\x23\\x41\\xe8\\xce\\x44\\xc7\\xdf\\x6e\\x6f\\x8f\\xd5\\\n\\x1c\\x26\\xa8\\x32\\x85\\xd5\\xcb\\xc5\\xa9\\xf2\\x35\\x64\\xb8\\x95\\x37\\x46\\\n\\x00\\xd4\\x48\\x45\\xae\\xea\\xaa\\xbf\\xeb\\xdc\\x10\\x0f\\x61\\xae\\xcf\\x87\\\n\\x5b\\x3f\\xbb\\x9c\\x36\\xca\\x28\\x6f\\x27\\xf9\\x4d\\x76\\x5c\\x12\\x5e\\x29\\\n\\x13\\x76\\x1a\\xa9\\xa7\\x49\\xf2\\x95\\xe0\\x5e\\x0d\\x8d\\xe6\\x88\\x39\\x7d\\\n\\xfe\\xf2\\x05\\xbe\\xe7\\x5f\\x8f\\x7c\\x17\\x49\\xe7\\x4c\\x47\\xea\\x29\\xe3\\\n\\x5b\\xa0\\xfe\\x8e\\x49\\xaa\\x0e\\x02\\x8e\\xc6\\xd0\\x14\\x2e\\xc4\\xb0\\x88\\\n\\x3b\\x76\\x47\\x4e\\x24\\x12\\x49\\xab\\x1a\\x95\\x39\\xca\\x1b\\x90\\x24\\x6a\\\n\\x3b\\x8d\\x7c\\xb1\\xde\\x5c\\xd1\\x4a\\xea\\x45\\x7d\\x6e\\xda\\x56\\xf2\\xb2\\\n\\xde\\x3a\\x49\\x7f\\x06\\xe6\\xbe\\x54\\xcd\\x09\\x3e\\x06\\x84\\x60\\x1b\\x7f\\\n\\x4f\\xb9\\x9f\\x1c\\xaa\\xbf\\x80\\xea\\xcc\\x3f\\xb6\\xfa\\x03\\x34\\xf7\\x6c\\\n\\x55\\x88\\xdb\\x5e\\x1f\\x26\\x57\\x6d\\x64\\x51\\xbe\\x80\\x93\\xa0\\x11\\x91\\\n\\x57\\xac\\x00\\x3a\\x95\\x60\\x50\\xda\\xad\\x68\\x5b\\xf2\\x54\\x61\\x7f\\x06\\\n\\xc1\\xf6\\x2f\\x7e\\xb2\\xb2\\x20\\xb4\\x94\\xbe\\xeb\\x5f\\x8d\\x6b\\x7b\\xc0\\\n\\xcc\\x9e\\xaa\\x37\\xe7\\x04\\x9e\\xbf\\x63\\x34\\x58\\x9d\\xa0\\x86\\x81\\x0a\\\n\\xec\\xff\\x00\\x38\\x54\\x75\\xa1\\x3e\\xd4\\x6b\\xc4\\xff\\x00\\xb6\\xe6\\x42\\\n\\x34\\x5b\\x9f\\x2e\\x4e\\xbb\\xe5\\x2b\\xf8\\x17\\x04\\x2e\\x46\\xfa\\x6b\\x0d\\\n\\x12\\x91\\x86\\xc8\\x12\\x91\\x80\\xc0\\x89\\x69\\x64\\xd0\\x00\\x6c\\x6b\\x8b\\\n\\x5f\\xd0\\xf7\\x4b\\xb6\\xed\\x14\\x55\\xae\\x99\\xdc\\xf0\\xc0\\x51\\x28\\x3b\\\n\\x39\\x96\\xf6\\x35\\x8f\\xbe\\x2d\\xa6\\x49\\x92\\x39\\xdc\\x57\\x30\\xc4\\x74\\\n\\xcf\\x8a\\x12\\x48\\xb4\\xf7\\x2b\\x44\\x69\\xdc\\x95\\x08\\x47\\x80\\xcc\\x98\\\n\\x25\\x23\\x5f\\xba\\x9a\\x01\\x74\\x30\\xae\\xdb\\x7d\\x47\\x1b\\x41\\xc9\\xa2\\\n\\x75\\x11\\xa1\\xc1\\x1c\\xe8\\x85\\xaa\\x83\\x05\\x18\\x9b\\xb1\\x66\\xc6\\x83\\\n\\xe7\\x01\\x5e\\xdc\\xd4\\x23\\xa6\\x18\\x63\\xc2\\x05\\xc0\\x93\\x04\\x31\\x45\\\n\\x8e\\x50\\xbb\\x46\\x86\\x2c\\x6c\\x18\\x44\\xa7\\x35\\x5e\\xc6\\xe8\\x30\\xf8\\\n\\x20\\xf4\\xb0\\x45\\xd2\\x06\\xb6\\x97\\x82\\x06\\xc4\\x1b\\xee\\x5f\\xef\\xa3\\\n\\x4c\\x9e\\xb5\\xf5\\x84\\x30\\x1b\\x7e\\xd4\\xd8\\x51\\x6c\\x5d\\x48\\x46\\x05\\\n\\x65\\x49\\x3b\\xbd\\xa2\\x71\\x89\\x05\\x52\\xe1\\x8c\\x9d\\xc5\\x50\\xf9\\xb5\\\n\\xb9\\xa4\\x8a\\xe4\\x24\\x6d\\x0b\\xdd\\x13\\x5f\\xc8\\x2c\\x9f\\x81\\x81\\xd8\\\n\\xd7\\x8d\\xd2\\x34\\x36\\xb0\\x08\\xd1\\xa4\\x41\\x42\\x81\\xfb\\x28\\x8d\\x94\\\n\\x22\\x0c\\xe2\\xe2\\x76\\x82\\x3a\\x76\\x44\\x3b\\x5f\\xf4\\xfb\\xc7\\x46\\x9d\\\n\\xd0\\x36\\xea\\xbf\\xac\\x8e\\x84\\x2d\\x18\\x29\\xe4\\xa3\\xd4\\x1e\\x0d\\x32\\\n\\x13\\x48\\x9f\\xdd\\x6f\\x8d\\x77\\x1b\\xae\\xba\\x70\\xde\\x5d\\x32\\x71\\x6d\\\n\\x2c\\xd2\\x49\\x94\\x98\\xbd\\xc9\\x4d\\x4c\\x05\\x93\\x17\\xe7\\xd6\\x17\\x81\\\n\\xc9\\xbf\\xc1\\x34\\x44\\x1f\\xc0\\x38\\x07\\x4d\\x92\\xaa\\x72\\xba\\x28\\xa3\\\n\\x06\\xc5\\x88\\x22\\xa5\\x58\\xa8\\x3c\\x7d\\xfd\\x60\\x07\\x7c\\x18\\xaf\\xfd\\\n\\x9f\\xd6\\x0e\\xa4\\xfe\\x40\\xa8\\xd0\\x86\\xa3\\x56\\xd6\\x4d\\xbf\\x6c\\x76\\\n\\x69\\xae\\xf8\\x2d\\x7e\\x3f\\xc6\\x43\\x62\\x0e\\xb6\\x6c\\x67\\xbb\\x93\\xeb\\\n\\xdd\\x6b\\x77\\xae\\xda\\x46\\xe2\\x93\\x5f\\x2d\\xde\\x44\\x70\\x8c\\x15\\x8a\\\n\\xf5\\x6b\\x54\\x52\\x1f\\xce\\x6f\\xc7\\x47\\xa5\\xbd\\x00\\x15\\x6d\\x34\\x6d\\\n\\xd6\\xf0\\x78\\x1e\\x21\\xed\\xdd\\x32\\x58\\xdf\\x4b\\xbc\\x93\\xf3\\xa2\\x4e\\\n\\xa4\\x4b\\x24\\xb8\\x45\\xc7\\xb7\\x4b\\xb0\\x16\\x20\\x11\\x1e\\xbd\\x5c\\xda\\\n\\xf8\\x02\\x42\\xf9\\x5f\\xfb\\xe3\\xef\\xb5\\x34\\xfe\\xa5\\x34\\x0f\\x37\\xee\\\n\\x2c\\x26\\xa8\\x45\\xc3\\xb1\\x10\\x74\\xae\\x9a\\xb7\\x20\\x03\\xdb\\xe6\\xe9\\\n\\x26\\xcd\\x04\\xb2\\x65\\xc7\\xac\\x28\\x94\\xe9\\x6c\\x9f\\x00\\x2d\\x21\\x87\\\n\\x61\\xc0\\x6c\\x1c\\xa0\\x81\\xfb\\x06\\xd8\\xc4\\xd1\\x5a\\x21\\x35\\x7b\\x54\\\n\\x39\\x7c\\xa6\\x45\\x1d\\x02\\xf9\\x0e\\xd9\\x0f\\x86\\xe7\\xef\\xae\\x30\\x58\\\n\\x0a\\x00\\x48\\x9f\\x90\\xfa\\x3d\\xc1\\x15\\x5a\\xeb\\x91\\x4f\\xb1\\xb3\\xea\\\n\\x6f\\x23\\x94\\x1a\\xd8\\x70\\xf2\\x6b\\x9b\\x9f\\xce\\x3f\\xc9\\x20\\x7d\\x1b\\\n\\x75\\xfe\\xb5\\x8b\\x4a\\x80\\xf0\\xdb\\xc1\\xd4\\xa0\\x5f\\xac\\xdd\\x23\\x20\\\n\\x60\\x1c\\xba\\x65\\x3b\\x8a\\xea\\x21\\x0e\\x69\\xe4\\x0a\\x7c\\x83\\x6a\\xf0\\\n\\x86\\x49\\x8e\\x54\\x07\\x50\\x42\\xee\\xa4\\x8b\\x39\\xa5\\xcf\\xbb\\x4a\\x6f\\\n\\x08\\xd3\\xc3\\x41\\xcf\\xbc\\x09\\xb0\\x1f\\x0c\\x9f\\x15\\xf3\\xfa\\xc4\\x16\\\n\\x9f\\x55\\xa7\\xcc\\xde\\xc4\\x9d\\x35\\x81\\x15\\x00\\x4a\\xd3\\x58\\x03\\x8e\\\n\\xb4\\x60\\x00\\x81\\x63\\x25\\x5a\\x1e\\x2c\\x4a\\x1c\\xc0\\x02\\x21\\x4c\\x69\\\n\\x22\\x41\\xa8\\xa2\\xc4\\x7a\\xcd\\xe8\\xe0\\x4d\\x97\\xfc\\x36\\xf6\\x0f\\x87\\\n\\x15\\x11\\x83\\x64\\x81\\xa0\\xdc\\x43\\xdd\\x04\\xe3\\x4f\\x87\\x76\\xb3\\xea\\\n\\x0f\\x72\\x10\\x8b\\x9a\\x5a\\x10\\x07\\x47\\x9c\\xb9\\x10\\x1c\\x48\\x7a\\x17\\\n\\x97\\x71\\x01\\x71\\x84\\x45\\x62\\x48\\x9f\\x78\\x45\\x2a\\x2d\\xc2\\xd4\\xb7\\\n\\x01\\x47\\x83\\x0a\\xa6\\xab\\x02\\xfd\\xa8\\xae\\xcb\\x25\\x11\\x90\\x9e\\xe8\\\n\\xec\\x12\\x4e\\xa8\\xd2\\x12\\xe4\\x3d\\xea\\x76\\x95\\x69\\x70\\x29\\xf4\\xf2\\\n\\x9d\\x93\\x21\\xd7\\x44\\x84\\x2c\\x75\\x11\\x28\\x22\\x3c\\xad\\xbf\\x50\\x09\\\n\\x85\\x82\\xa0\\x25\\x2e\\x9d\\xda\\xc5\\x75\\xbd\\x56\\xab\\xe7\\x29\\x2e\\xd8\\\n\\x14\\xf5\\x23\\x4d\\xd7\\x2e\\x64\\xfe\\x23\\x2f\\xf4\\x0d\\x15\\x78\\x99\\xa8\\\n\\xdd\\x7b\\x05\\x51\\x26\\x91\\xf2\\x2f\\x20\\x9d\\xc4\\xc0\\x43\\x5e\\xc4\\xc7\\\n\\x88\\x4f\\x4e\\x04\\xf2\\xd9\\x03\\x14\\x00\\x62\\x44\\xa0\\x06\\x41\\x2d\\xf2\\\n\\x84\\x8d\\x57\\x71\\x3b\\x2d\\xca\\xa6\\xa4\\xc2\\xd3\\xe8\\x25\\xf9\\xd9\\xf2\\\n\\x66\\xcd\\x13\\x46\\xda\\xed\\x43\\x70\\x91\\xd7\\x99\\x0a\\x97\\x40\\x6f\\x50\\\n\\xd0\\xc5\\xaa\\x90\\x99\\x61\\x4d\\x9a\\x26\\x85\\x3e\\x54\\xde\\xf6\\x43\\x00\\\n\\x28\\x21\\xb2\\x74\\x15\\x6e\\x73\\x63\\xa9\\xe3\\x27\\xe0\\x28\\x6a\\xd2\\x89\\\n\\x01\\xd2\\x3a\\x5c\\x21\\x09\\xc4\\x1a\\x1c\\xd0\\x78\\x72\\x24\\xc5\\xbb\\xe1\\\n\\x1a\\xf5\\x29\\x43\\xd9\\x43\\x14\\xb1\\x19\\x03\\xdf\\xc8\\xa0\\xf3\\xe8\\xc2\\\n\\x87\\x59\\xe2\\xda\\x17\\xa7\\xcf\\xe4\\x32\\x98\\x81\\xd8\\x7a\\x1c\\x5b\\xbb\\\n\\x7f\\xca\\x5b\\x8f\\x1e\\x53\\x52\\x06\\xc4\\x3d\\x27\\x37\\xf3\\x82\\x20\\xf0\\\n\\xab\\xa3\\xdd\\xa8\\xfd\\x8c\\x4c\\x29\\xc1\\xde\\xff\\x00\\x3b\\xfb\\xf7\\xfd\\\n\\x84\\xe7\\x2d\\x44\\x9a\\xf9\\x28\\x36\\xb7\\x42\\xf9\\x97\\x03\\x3e\\x44\\x0e\\\n\\x4f\\x5f\\x6c\\x9e\\xc2\\xe8\\x01\\xb7\\xd3\\xe1\\x4a\\x31\\xb4\\x34\\xf6\\x8d\\\n\\x01\\x78\\x36\\x1f\\xfc\\x43\\x07\\xf5\\xbd\\xa5\\xf2\\x36\\xfe\\x57\\x15\\x9f\\\n\\xb6\\x9d\\xae\\x58\\xaf\\x76\\xee\\xf2\\x18\\x88\\x06\\x3b\\x06\\x89\\x13\\xba\\\n\\xc7\\xb1\\x7a\\xa6\\x56\\xb8\\x48\\x88\\x9b\\x7d\\x1c\\x76\\xed\\x5f\\x2a\\xe0\\\n\\x48\\x46\\x68\\x9a\\x30\\x80\\xb7\\xd9\\xff\\x00\\x2e\\x18\\x57\\xb5\\x36\\x36\\\n\\x04\\x79\\x2c\\xff\\x00\\xb9\\xa6\\x0e\\x9b\\x2f\\xf9\\x04\\x52\\x7d\\x4b\\xac\\\n\\x4c\\xce\\x23\\x22\\x99\\xa1\\x7d\\x30\\x27\\xb9\\x16\\xc2\\x38\\xe7\\x93\\xd9\\\n\\xd5\\x43\\xbd\\xe1\\x24\\x1f\\xc0\\x53\\xa9\\xbf\\x70\\x16\\x8e\\xdb\\xf8\\x03\\\n\\x6e\\x92\\xfe\\x66\\x2c\\x54\\x62\\x65\\xf3\\xe6\\xbe\\xef\\xe9\\xf7\\x88\\xfd\\\n\\x5a\\x1a\\xd3\\x19\\x3d\\x21\\x3f\\xcb\\x01\\xe4\\xa5\\x1e\\x94\\xaf\\x7e\\x7c\\\n\\xfc\\x65\\x66\\x12\\x25\\x7c\\xbf\\xdf\\xc9\\xe6\\x78\\xb2\\x1a\\xac\\x80\\x34\\\n\\xbf\\xc9\\xff\\x00\\x9c\\x06\\xb4\\x7e\\x52\\x75\\x49\\xf3\\x2f\\x3d\\x9f\\x78\\\n\\x75\\xd7\\x8f\\x22\\x6a\\x6f\\xba\\x5f\\x7c\\xc3\\x01\\x11\\x01\\xc8\\xe8\\x0a\\\n\\xfc\\xdd\\xb8\\x95\\x9a\\x92\\x87\\x63\\xb3\\xca\\x63\\x5a\\x24\\x5f\\xe4\\x94\\\n\\xd3\\xc0\\xf3\\xcc\\x86\\x10\\x4b\\x10\\x53\\xac\\x06\\xb1\\x40\\x96\\x4d\\x2f\\\n\\x5d\\x38\\x63\\x71\\x24\\x8b\\x76\\xde\\xdd\\x3f\\x26\\x4e\\x62\\x6d\\xe8\\x8e\\\n\\x91\\xf0\\x3c\\x58\\xfc\\xd2\\x39\\xf6\\x71\\xbc\\x82\\x08\\x30\\x6c\\xa9\\x7c\\\n\\x64\\xce\\x1a\\x89\\x41\\x10\\x03\\x40\\x74\\x82\\xeb\\x2f\\xb2\\x74\\xb8\\xb9\\\n\\x53\\x6e\\x16\\x10\\x08\\xf6\\x9a\\x37\\x9e\\xc5\\xd9\\xb7\\x26\\x83\\x70\\x9b\\\n\\x95\\xd6\\xc2\\x2f\\xa1\\x15\\x81\\x78\\x60\\x04\\x31\\xf1\\x0a\\x04\\x96\\xd0\\\n\\xad\\x3a\\x4c\\x5b\\xfa\\xa9\\xb9\\x71\\x3c\\xc9\\x9d\\x1c\\x77\\xf7\\x4a\\x53\\\n\\xb5\\x54\\xb7\\xf2\\x25\\xe3\\xb0\\x20\\x7d\\x0e\\xc5\\x08\\x9f\\x69\\xc2\\x0a\\\n\\x13\\x90\\x22\\x90\\x67\\x11\\xb1\\x82\\xb1\\xd8\\xca\\x32\\xc5\\x12\\x94\\xeb\\\n\\x93\\xa2\\x1c\\x9b\\x07\\xb6\\xd2\\xae\\xa9\\x63\\x6f\\x4a\\xe1\\x15\\xbf\\x5b\\\n\\x6d\\xeb\\xa1\\x78\\xa6\\x41\\x71\\x66\\x5b\\x44\\x28\\x8c\\xee\\x00\\xfc\\x92\\\n\\xd7\\xa1\\x46\\x38\\x99\\xfd\\x85\\x5a\\x5d\\xb5\\x89\\x80\\x34\\xa4\\x8f\\x24\\\n\\x16\\x3a\\xda\\xc6\\x82\\x80\\xa3\\x97\\x48\\xaa\\x3f\\x03\\xe0\\x70\\xe9\\x40\\\n\\xc0\\x14\\x44\\x68\\x29\\x47\\x9f\\xbb\\x83\\x08\\x6b\\xac\\x3b\\xb2\\x10\\x58\\\n\\x1a\\x71\\xfc\\x81\\x63\\xa9\\xfa\\x2f\\xe0\\xf7\\x54\\x5c\\x8b\\x03\\x22\\xb3\\\n\\x9f\\xd9\\xa9\\x06\\x75\\x9a\\x09\\x1b\\xd4\\x54\\xb4\\x28\\x5d\\x5d\\xa6\\x16\\\n\\xfa\\xb5\\xc4\\x77\\xa4\\x80\\x29\\x07\\x7a\\xc3\\x92\\x7f\\x91\\x79\\x3c\\xa0\\\n\\xfa\\xf8\\x02\\xea\\xf2\\x7e\\xd5\\xbe\\x4f\\xef\\xf5\\x91\\x77\\x62\\x76\\x36\\\n\\x16\\xb7\\xe3\\xcf\\x9b\\x83\\xc0\\xd3\\x6e\\x8b\\x60\\x82\\xbe\\x3a\\xff\\x00\\\n\\x38\\x08\\x89\\xd2\\xba\\xa8\\xed\\x1d\\xde\\x26\\xda\\xd6\\x3a\\xf5\\x61\\xd7\\\n\\x5b\\x53\\xaa\\x96\\x27\\x6a\\x7e\\x70\\x7b\\x38\\x94\\xbb\\x1c\\x9f\\xc3\\xc2\\\n\\x78\\xc8\\x36\\x15\\xfc\\x03\\xfe\\xe6\\x83\\x43\\xc2\\x36\\xf7\\x57\\xff\\x00\\\n\\x39\\xf6\\xe2\\xf5\\x77\\xba\\x87\\xae\\xbf\\x0b\\x82\\xea\\xd0\\x34\\x30\\x47\\\n\\x75\\xa1\\xfc\\xe1\\xd8\\x9c\\x6d\\x71\\x67\\x15\\x37\\xd0\\x73\\x1a\\x1d\\x59\\\n\\xa5\\x0b\\xf9\\x45\\x49\\x7c\\xf3\\x0a\\x93\\xaa\\x36\\x4d\\x3f\\xe7\\x87\\xc7\\\n\\x7f\\x31\\xba\\xa5\\x40\\x4a\\x8e\\xbf\\x33\\xf7\\x94\\xb6\\xe1\\x07\\xed\\x41\\\n\\x45\\x91\\x14\\x7f\\x0e\\x3d\\x0d\\x43\\x88\\xf8\\x88\\x2c\\x1b\\xf7\\x3e\\x61\\\n\\x2e\\x96\\x00\\xe1\\x4b\\xbc\\x1b\\x89\\xfc\\x3c\\x7e\\xfd\\xc3\\x34\\x11\\x36\\\n\\xce\\x8a\\xcd\\x4e\\xf5\\x39\\xee\\x06\\x32\\x86\\x81\\x51\\xdf\\xca\\x29\\x57\\\n\\xd5\\x63\\x76\\x8f\\x5a\\x26\\x03\\x4b\\x7d\\xd0\\x1f\\x26\\x96\\x11\\xef\\xf6\\\n\\xea\\x9d\\x0f\\x4b\\x93\\xf0\\x62\\x6d\\x0a\\x76\\xc3\\xa5\\x6b\\x36\\xe8\\x50\\\n\\x69\\xd9\\x86\\xb0\\xbc\\x82\\xc7\\x76\\x9b\\x03\\x53\\x7f\\xce\\x25\\x0d\\x4d\\\n\\x1f\\x8c\\x4e\\x1e\\xf8\\xbd\\xb7\\x1c\\x10\\x22\\x94\\x7b\\x52\\x97\\xe8\\xd8\\\n\\x70\\xd4\\xa2\\x6a\\x1b\\xb1\\xc4\\x3d\\x5b\\xf1\\x37\\x77\\x9b\\x97\\x38\\x6a\\\n\\x8d\\x05\\x97\\x68\\xaf\\xfb\\xcb\\xd0\\x2f\\xaa\\x0e\\xac\\xdf\\x63\\xdf\\x4f\\\n\\xce\\x59\\x12\\xea\\x02\\x98\\x1f\\x45\\x27\\x4e\\x8d\\x39\\xaa\\xe6\\x59\\xb4\\\n\\xf9\\x7c\\xab\\xd0\\x69\\xf7\\x25\\xf6\\x03\\x40\\xee\\xd0\\xa3\\x69\\xbb\\xf8\\\n\\xc7\\xf5\\x38\\xc0\\x1e\\x50\\x6e\\xc3\\xbf\\x9d\\x6b\\x20\\x6d\\xca\\xc1\\x34\\\n\\x81\\x3a\\x3f\\x94\\xcd\\x2c\\xf3\\x83\\x0d\\x03\\x52\\xfd\\x0d\\xd9\\x35\\x90\\\n\\x6e\\xe9\\x44\\x7e\\x36\\x8f\\xd0\\x01\\xf7\\x3a\\xb3\\xb0\\x05\\x69\\x84\\x16\\\n\\xa0\\xbd\\x66\\x04\\x92\\xc2\\x1f\\x35\\x06\\xdc\\xa7\\x07\\x9b\\x31\\xe4\\xf2\\\n\\x72\\x45\\x69\\xf4\\x94\\x01\\xe2\\x61\\xd2\\x44\\xaf\\x77\\x94\\x4a\\xc5\\x05\\\n\\xf7\\x31\\x3a\\x28\\xb5\\xa2\\x05\\xa1\\x03\\x60\\x12\\x7a\\x0e\\x6d\\x71\\x9c\\\n\\x75\\xf5\\xa1\\x7e\\x89\\x90\\x3e\\xc2\\x00\\x02\\xad\\x36\\xb8\\xee\\x85\\xa7\\\n\\x0a\\x43\\x4d\\x86\\x0d\\x6e\\x9b\\x02\\xf4\\xa3\\x86\\x5a\\x0e\\xaa\\x18\\x5b\\\n\\xa7\\xf0\\xdc\\x45\\x82\\x39\\xf2\\x6a\\xf0\\x2a\\x29\\xae\\xfa\\x53\\x43\\x37\\\n\\xa0\\x61\\xd9\\x3e\\xc5\\x74\\xc6\\xa5\\x8b\\xf1\\xc8\\x44\\x55\\x48\\x52\\x54\\\n\\x8b\\x01\\x9f\\x77\\xd0\\x32\\x44\\x0f\\xce\\x33\\x27\\x2b\\xbd\\x56\\x59\\x0e\\\n\\x57\\x91\\x68\\x0a\\x29\\xbc\\xfb\\xcc\\x12\\x18\\x91\\x10\\x18\\x0a\\x1d\\x83\\\n\\x0e\\xa0\\x41\\xac\\xf0\\xa6\\x39\\xc0\\x6b\\x78\\x13\\xe1\\xf7\\xf4\\x34\\x3d\\\n\\xd9\\xd0\\x70\\x48\\x29\\x44\\x0a\\xdd\\xb8\\xea\\x34\\x9d\\xb8\\x6f\\xb1\\x52\\\n\\xd4\\xdc\\xa2\\x03\\x46\\x87\\x71\\x10\\x34\\xd7\\x45\\x01\\xa1\\x2a\\x7d\\x17\\\n\\x5c\\x81\\x3b\\x31\\x2d\\x95\\x0f\\x91\\x36\\x75\\x4b\\x94\\x71\\xa8\\x14\\x5d\\\n\\x90\\x5d\\xf5\\xe0\\x7d\\x41\\x27\\x9e\\xbc\\x36\\x51\\x44\\x00\\xae\\xe0\\xdb\\\n\\x25\\xa7\\xd2\\x8b\\xd7\\x28\\xe4\\x40\\x77\\x22\\x12\\x88\\x23\\xe9\\x22\\x40\\\n\\x9e\\x26\\xf1\\xa6\\xa3\\xad\\xb3\\x41\\xab\\xe3\\x5e\\x9c\\xbe\\x5c\\x77\\x10\\\n\\x05\\xf6\\x97\\xa8\\xe9\\xde\\xbc\\x4c\\xe3\\x2d\\xf1\\x4f\\xab\\xfa\\x5b\\x13\\\n\\xc6\\x23\\xb4\\x0c\\x15\\x1e\\xbe\\xf6\\x3a\\x5a\\x1f\\x32\\x05\\xf8\\xf7\\xfe\\\n\\x1f\\x1b\\x79\\xf3\\x1f\\xbb\\x32\\x40\\xd9\\x75\\x11\\xd3\\xd1\\xd8\\x8c\\xc0\\\n\\x77\\x64\\xf0\\x14\\x09\\x40\\xbf\\x63\\x56\\x06\\xb5\\xb0\\x25\\xad\\x60\\xb4\\\n\\xed\\x3f\\xbf\\xef\\x3a\\x84\\x14\\xf2\\xbc\\x34\\xd0\\x16\\x9f\\xcb\\xb4\\x46\\\n\\xc7\\x79\\xb2\\xde\\x90\\x2f\\xee\\xe2\\x78\\xc5\\x55\\xeb\\xa3\\x41\\x68\\x76\\\n\\x8c\\xfa\\xc3\\xd8\\xc1\\xd9\\x9a\\xa3\\x3d\\xdb\\x7d\\x93\\x07\\x1d\\x64\\xd0\\\n\\x72\\xf9\\xee\\x08\\x01\\x14\\x66\\xb4\\xc1\\x62\\x51\\xcb\\x0b\\x00\\x2a\\xa8\\\n\\x2b\\x96\\x53\\x80\\x6d\\x74\\xa2\\x56\\x95\\x70\\xde\\x46\\x86\\xba\\x40\\xde\\\n\\xa3\\xa7\\x31\\xad\\x5d\\xa6\\xc8\\x8a\\x3f\\x93\\x6a\\xb1\\xe4\\xcb\\x92\\x35\\\n\\x3a\\x64\\x09\\xc1\\x25\\x27\\xed\\xc8\\xc4\\xd7\\xd7\\xc6\\x6a\\x03\\xdf\\x40\\\n\\x36\\x2a\\x33\\x45\\x67\\x71\\x3f\\x42\\x7f\\x7f\\x38\\x8e\\x7a\\x8a\\xdd\\xd0\\\n\\x9e\\x83\\x49\\xe1\\x9e\\xd0\\x50\\xf5\\xaa\\x6d\\xb3\\x5a\\x21\\x97\\xfb\\x56\\\n\\x12\\xc2\\xc0\\x3c\\x41\\xef\\x2f\\xe3\\x0a\\x1a\\xcf\\xe9\\x00\\x0d\\xbc\\xdb\\\n\\xfd\\x62\\x7e\\xb5\\x52\\x5f\\x9f\\x08\\x49\\x77\\xa5\\x96\\xb3\\x71\\x5e\\x21\\\n\\x35\\xab\\xaa\\x6e\\x0e\\x40\\xbf\\x55\\xd9\\xe4\\xb0\\x56\\x03\\x46\\xe2\\xd9\\\n\\xbc\\xa6\\x94\\x33\\x51\\x57\\xc1\\x66\\xf5\\x84\\x14\\x5a\\x03\\x7b\\x6c\\xfa\\\n\\xfc\\x65\\x0a\\xb4\\xb1\\x94\\x35\\xa2\\x7f\\xd8\\xf9\\xc4\\xc4\\x96\\x57\\x63\\\n\\x48\\xd9\\xbf\\x5f\\x3b\\x94\\xe2\\x12\\x6b\\xf0\\x07\\x17\\xd2\\x98\\x6f\\x92\\\n\\x2d\\x9a\\x14\\xd3\\xd4\\x79\\x51\\x1f\\x4d\\xe2\\x7b\\x06\\x1d\\x34\\x73\\x1c\\\n\\x6a\\x3b\\xca\\x32\\xc8\\x67\\x87\\x5e\\x84\\x3b\\x1d\\x68\\xe6\\x57\\x0d\\x4c\\\n\\xd8\\x3c\\x37\\xaa\\xee\\x9e\\x0e\\xfc\\x56\\x77\\xd0\\x88\\x6c\\xcf\\x5d\\x5f\\\n\\x3c\\xc5\\x66\\xf5\\x3e\\x52\\x6b\\x0b\\x35\\x15\\xc6\\xe3\\x90\\xf2\\xa9\\x62\\\n\\x11\\x84\\xe8\\xf3\\xf0\\x2a\\x99\\xba\\xbb\\x38\\x0c\\x82\\xd3\\x65\\xa2\\xbb\\\n\\x2f\\xb3\\x46\\xdb\\xa1\\xad\\x01\\x3a\\x37\\x21\\xf3\\x72\\x25\\x69\\x68\\x65\\\n\\xaa\\x08\\xd1\\xfb\\xd1\\x83\\x9f\\x21\\xc7\\x76\\xca\\x4a\\x2b\\xad\\x06\\x8b\\\n\\x84\\x24\\x49\\x24\\x5d\\x46\\xb1\\xb1\\xee\\xa8\\xca\\x9b\\x56\\xe7\\x33\\x26\\\n\\xf4\\x13\\x4a\\x52\\xe2\\x0a\\x6a\\x01\\xc6\\x03\\xeb\\xba\\x78\\x00\\xb5\\x5f\\\n\\xc9\\x2c\\xab\\x5a\\x7e\\x52\\x64\\x5e\\x28\\xbe\\xd0\\xe8\\xf4\\x74\\xac\\xc5\\\n\\x36\\x99\\x40\\xd1\\xad\\xc9\\xae\\x28\\x2e\\x59\\x62\\x4b\\x80\\x23\\xdd\\x25\\\n\\x45\\x3a\\x27\\xe9\\xdb\\x42\\x93\\xe9\\xf1\\x82\\x40\\x8d\\xc8\\x29\\x70\\xfe\\\n\\x4e\\x4d\\x34\\x04\\xb0\\x57\\x73\\x21\\x41\\xaf\\x29\\x52\\xa8\\x14\\x12\\x07\\\n\\x09\\x73\\x69\\xac\\x54\\xe0\\x18\\x09\\x29\\x74\\x9a\\x8f\\xf3\\x34\\x25\\xdb\\\n\\xc0\\x0c\\x27\\x97\\xe8\\xe6\\xcb\\x84\\x01\\xfa\\xd2\\xfa\\x69\\x58\\xa0\\x02\\\n\\x4b\\x56\\xba\\xc1\\xf8\\xfa\\xfd\\x59\\x69\\x9c\\xf8\\x51\\x8d\\x1a\\xf7\\xd7\\\n\\x1b\\x25\\x6e\\xb7\\x3c\\xa9\\x9a\\x04\\x01\\xe6\\x76\\xb0\\x69\\x28\\x9b\\x42\\\n\\x50\\xa7\\x42\\xe4\\x6b\\x9b\\x5a\\x52\\xfd\\xc1\\x63\\x7d\\x6f\\x0d\\x07\\x40\\\n\\x78\\xb4\\x1d\\x25\\xfa\\x28\\xdd\\xf3\\x28\\xb0\\x48\\x54\\x02\\xa4\\xfb\\x02\\\n\\x8e\\x4e\\x66\\xa0\\xa1\\x08\\x6a\\x7c\\x1f\\xed\\x23\\x46\\x5c\\x97\\x95\\x40\\\n\\x1c\\x0e\\x9b\\x44\\xe4\\x5f\\x19\\x22\\x8d\\x56\\x00\\x28\\xba\\xbf\\x7f\\x2f\\\n\\x26\\x2a\\x89\\xdd\\x1b\\xbb\\x52\\x7c\\x9f\\x06\\x00\\x1d\\xca\\x6e\\x84\\xb0\\\n\\x69\\xd3\\xd9\\x43\\xc7\\x21\\x5b\\x54\\x29\\x36\\x3e\\x45\\xb3\\xf5\\x3e\\xb2\\\n\\x49\\x01\\xac\\x44\\xb2\\x8a\\xbd\\x7e\\x74\\x77\\x36\\x0a\\x26\\xaf\\xc8\\x87\\\n\\xf2\\xa8\\xbf\\x94\\xee\\x5e\\xb4\\x91\\xb6\\x1f\\x65\\xc1\\x9c\\xd8\\x8e\\xe2\\\n\\x58\\x0e\\x10\\x48\\x3e\\x8e\\xe6\\xb0\\xb1\\x35\\x2d\\xec\\xff\\x00\\xd1\\x6e\\\n\\x21\\xa4\\x7c\\x08\\x5f\\x2d\\x79\\x7f\\x38\\x4a\\x5a\\xe1\\xfb\\x86\\x94\\x48\\\n\\x0a\\x68\\x76\\xdc\\x19\\x30\\x94\\x0b\\xab\\x6b\\xf8\\x16\\x4d\\x33\\x18\\x33\\\n\\xa2\\x82\\xd0\\xfa\\x86\\xbd\\x5c\\x8e\\x7e\\x02\\xb3\\x6c\\x0e\\x28\\x71\\x9c\\\n\\x77\\x73\\xf4\\x31\\x84\\x11\\x4d\\x96\\x82\\xbd\\x1f\\xda\\xf7\\x7b\\x03\\x03\\\n\\xf2\\x7a\\xfc\\x1c\\xe1\\x8b\\xd4\\xd2\\x27\\xe3\\x23\\x95\\x24\\x23\\x3a\\xbf\\\n\\x12\\x09\\xf1\\x9a\\xcc\\x88\\x60\\xc7\\x6f\\x9a\\x17\\x6e\\x18\\x85\\x01\\x09\\\n\\xfc\\x7a\\xfc\\xe8\\xfe\\x79\\x81\\x4b\\x13\\x5f\\xbe\\xfd\\x74\\xbf\\xcb\\x07\\\n\\x98\\xb8\\x28\\xa9\\x4d\\x66\\x85\\x96\\xbe\\x37\\x8d\\xe1\\xf5\\xb4\\x08\\xd9\\\n\\x2a\\x6d\\x4f\\xe7\\x09\\x23\\xb4\\x50\\x3a\\x07\\x6f\\x4b\\x1f\\xca\\xe3\\xc2\\\n\\x01\\x07\\x12\\xfa\\x7a\\x8d\\xd2\\x52\\xef\\x4a\\x0f\\xe8\\x0f\\xa3\\x6e\\x8f\\\n\\xc1\\x53\\x17\\x4d\\x7b\\xd9\\xeb\\x4d\\x86\\x87\\x7b\\xf7\\x38\\x52\\xfa\\x2a\\\n\\xe7\\x8d\\x0e\\xc1\\xa6\\xb9\\x9b\\xd8\\xda\\x6d\\x17\\x3e\\xc3\\x82\\xfc\\xb1\\\n\\x5b\\x68\\xf3\\xe0\\xfc\\xbf\\x7b\\xd7\\xcd\\x9a\\x98\\xb1\\x90\\x96\\x38\\x8a\\\n\\xb2\\xbf\\x1b\\x43\\xef\\x24\\xd1\\xfe\\x21\\xb6\\x28\\xa5\\x91\\xba\\xe0\\x3a\\\n\\x37\\xfa\\x7d\\xe3\\xba\\xdf\\x2f\\xc4\\x34\\x6e\\x70\\x36\\x9b\\x37\\x37\\x4d\\\n\\x7e\\x7f\\xfb\\x95\\x68\\xda\\xcd\\xc1\\x07\\x63\\x6d\\xdf\\xc0\\x99\\x0e\\xf3\\\n\\xa2\\x09\\xe8\\x6a\\x9f\\x97\\xca\\xdd\\xb8\\x15\\xa3\\xd7\\xd4\\xa8\\x1a\\x3f\\\n\\x40\\x72\\xea\\xf6\\x56\\x51\\x31\\xb3\\xed\\x7f\\x9f\\xc6\\x7c\\x78\\x46\\x8b\\\n\\x66\\x8d\\xf6\\x16\\xa1\\xd1\\xcc\\x1d\\xab\\xac\\x74\\x75\\x28\\xf6\\x2e\\x73\\\n\\x8c\\x45\\x26\\x00\\x95\\x0f\\x72\\xd5\\x4c\\x00\\x92\\xde\\xe4\\x92\\xd4\\x38\\\n\\x75\\x5d\\x9a\\x4d\\xb9\\x3d\\x76\\xc5\\xd7\\xb0\\x08\\x69\\x41\\xd9\\x18\\x01\\\n\\xa3\\x06\\x24\\x21\\x6b\\x36\\x33\\x63\\x49\\x3b\\x9b\\xcc\\x03\\xd8\\x7a\\x2e\\\n\\xc6\\x47\\x5a\\xa3\\x40\\x1c\\xe9\\xad\\xbe\\xc4\\x28\\x60\\xc7\\x5a\\x30\\x86\\\n\\xc7\\x3a\\x96\\x34\\x0c\\xc4\\x7c\\x66\\x0e\\x5e\\x1d\\xe4\\x05\\x75\\xaa\\x5a\\\n\\x60\\x14\\xa0\\xd5\\x13\\x50\\x94\\xb9\\x01\\x9b\\x7e\\x92\\x60\\xb2\\x34\\x9a\\\n\\x8d\\xc7\\x8d\\xa4\\x1a\\x13\\x22\\xd3\\xfd\\x3f\\xcb\\x21\\x49\\xf9\\x47\\x31\\\n\\xa1\\x34\\x50\\x11\\x92\\x0e\\xee\\x10\\xc5\\xf8\\x88\\x5f\\x81\\x44\\x99\\x24\\\n\\xc0\\x66\\x48\\x0d\\x48\\x52\\xa9\\xae\\x7b\\x5a\\x93\\x24\\xa7\\xb2\\x52\\x34\\\n\\x53\\x79\\x2e\\x98\\x08\\x96\\x4b\\x72\\x74\\x06\\xb4\\x54\\x6d\\xe3\\x01\\x4f\\\n\\x8d\\x5b\\x57\\x69\\x58\\xed\\x88\\x93\\x0a\\x51\\x10\\xd3\\xdd\\x12\\xfc\\xf1\\\n\\xb5\\xc1\\xb9\\x55\\xe7\\x55\\x9a\\xd5\\x5e\\x4f\\xbc\\xb5\\x42\\x68\\x01\\x46\\\n\\xef\\xe4\\x27\\x7d\\x39\\x8f\\x8b\\x6d\\x0b\\x3e\\x28\\x00\\x1f\\x84\\x6c\\xc7\\\n\\x4a\\xd7\\x0a\\x2a\\xc0\\x23\\x77\\x83\\x78\\xe6\\xb2\\x44\\x68\\x2e\\xc6\\x50\\\n\\xe8\\x35\\xbd\\x7e\\x98\\xb1\\xf2\\x68\\x82\\xf2\\x5a\\xa3\\x05\\x08\\xd9\\x0c\\\n\\x3f\\x83\\x4d\\x94\\x5f\\xd3\\xcd\\x4f\\xa6\\x3e\\x3a\\x6a\\xbb\\x25\\x10\\x90\\\n\\xd0\\xd1\\xfe\\xf0\\x76\\xa2\\xdd\\x4b\\x00\\x4d\\x07\\xd0\\xc3\\xa2\\xad\\x10\\\n\\x04\\x04\\x88\\x12\\x04\\xf1\\x47\\x38\\x49\\xd9\\x7c\\x02\\x8b\\x6a\\x97\\x83\\\n\\xa2\\x5c\\x07\\x47\\x3c\\x7c\\x83\\x43\\xb5\\xdc\\x25\\x6e\\x16\\x66\\x65\\xa0\\\n\\x25\\x46\\x96\\x7f\\x19\\xa9\\x50\\x02\\x52\\xfa\\x03\\x71\\xb6\\x54\\x40\\x5e\\\n\\x1c\\xd9\\x40\\x18\\xa8\\x74\\x5b\\xbd\\xeb\\x70\\xf9\\x53\\xd2\\x0e\\x67\\x35\\\n\\xf5\\x57\\xf0\\xdb\\x4f\\xf1\\xd8\\x01\\x39\\xc7\\xb2\\x3a\\x6b\\x42\\x00\\xa5\\\n\\x01\\x5c\\x42\\xc2\\x28\\x91\\xf9\\x1d\\xe2\\x43\\x47\\x0b\\xa5\\xde\\x14\\x7b\\\n\\x4f\\xae\\x8c\\xd2\\x4f\\x94\\xe7\\x09\\x0d\\x63\\x4f\\x77\\x77\\x88\\x56\\xf3\\\n\\x19\\x75\\x40\\x45\\x9b\\xd7\\xc1\\x5e\\xe1\\xb4\\xe8\\x9a\\x2c\\xbe\\x3a\\xf8\\\n\\xcb\\xff\\x00\\xa4\\x82\\x97\\xc4\\xd9\\xd9\\xd9\\x3e\\x70\\x46\\xca\\x22\\x32\\\n\\x02\\x83\\x70\\xef\\xd1\\xbe\\x81\\xf4\\xfe\\x62\\x33\\x9d\\x68\\x6f\\x50\\x77\\\n\\xe6\\x28\\xec\\xa8\\xd7\\xac\\xdd\\xd9\\xce\\x1a\\x3c\\x29\\xb5\\xb6\\xa6\\xde\\\n\\x9b\\xc9\\x77\\x66\\x87\\x7d\\x7f\\xaa\\xc3\\x48\\xe0\\x44\\x35\\x43\\x7f\\x0e\\\n\\x13\\xbf\\xe8\\xea\\x4f\\x78\\xe1\\xb8\\x5d\\x14\\xde\\x79\\xf3\\x3b\\xc7\\xad\\\n\\xd6\\x2f\\x36\\xcd\\x2e\\x1e\\x9f\\x00\\x55\\x52\\x6a\\xd7\\xe9\\x9b\\x64\\x23\\\n\\xc0\\x4a\\xbe\\xd2\\x7d\\xb7\\x70\\x13\\xee\\xb1\\x2d\\xa9\\x5f\\x80\\x89\\x7d\\\n\\xf9\\x5f\\x0d\\x3f\\x21\\xbc\\x27\\xc2\\xc5\\x4b\\xb3\\x1a\\x05\\xd7\\xeb\\x0d\\\n\\x96\\xe0\\x1b\\x84\\xe8\\xe0\\x9c\\x16\\xf2\\x91\\x00\\x15\\xd6\\xd4\\xe8\\x33\\\n\\x15\\xc0\\x01\\xb2\\x5e\\x81\\x01\\xd7\\xad\\x43\\xe2\\xf1\\xda\\x8f\\xdf\\x4f\\\n\\x04\\xd9\\x76\\x0e\\x0d\\xc3\\xd7\\x98\\x06\\x9a\\x68\\x86\\xee\\x94\\x4c\\x42\\\n\\x4a\\xcf\\x7d\\x15\\x74\\xa9\\x0b\\xb3\\xe6\\x68\\x23\\xa9\\x75\\x5b\\xed\\x75\\\n\\xec\\x77\\x8e\\xc0\\x0d\\x7f\\x9b\\x29\\x4f\\x15\\xf9\\x8d\\x83\\x80\\xa0\\x3e\\\n\\x2b\\xd3\\xeb\\x00\\x3f\\x64\\x0f\\x6d\\x73\\xba\\x0b\\xa8\\x82\\xaf\\x79\\xe3\\\n\\x15\\x2f\\x9a\\x59\\xb8\\xe3\\x4c\\xa0\\x4c\\x44\\x3e\\x0c\\xb1\\x13\\xa6\\xda\\\n\\x81\\xbb\\xac\\x66\\xd0\\x62\\x94\\xbc\\xdd\\x29\\xa4\\x1a\\xc5\\x4d\\x83\\xa1\\\n\\xd9\\x6c\\x94\\x91\\x00\\xd0\\xae\\x86\\x13\\xeb\\x00\\x89\\x23\\x46\\xd9\\x02\\\n\\xf7\\x46\\x8c\\x14\\x1f\\x8d\\x5c\\x81\\xd4\\x15\\x1c\\x40\\x25\\x52\\x7c\\xc3\\\n\\x0b\\x7a\\xa0\\x58\\x63\\x6d\\x61\\x76\\x5f\\x88\\x9d\\x76\\x15\\x37\\x8c\\x29\\\n\\x7e\\x20\\x65\\xa5\\x35\\x10\\x06\\x72\\x38\\x1c\\x0e\\xb3\\xc7\\xaa\\x72\\xd0\\\n\\x19\\x6d\\x19\\x5a\\x00\\xaa\\x53\\x34\\x8d\\x3f\\x0b\\xae\\x7e\\x9f\\xc6\\x52\\\n\\x16\\x84\\x60\\x92\\x08\\x5d\\x1e\\x28\\x8b\\x76\\xc0\\xf0\\x2e\\x8b\\xa3\\x40\\\n\\xde\\x11\\xf4\\x17\\xe9\\x69\\xb4\\x49\\x44\\x9f\\x8c\\x2c\\x70\\x96\\x37\\xa1\\\n\\xd0\\xe4\\x80\\xa0\\x76\\x30\\x44\\x6a\\x0b\\x52\\xeb\\xe1\\x5d\\x81\\x23\\xad\\\n\\xe0\\x4b\\xdd\\x35\\xc8\\x3f\\x70\\xa2\\xee\\xae\\x22\\xfb\\xcb\\x5e\\x08\\x09\\\n\\x2b\\xb1\\x28\\xe0\\xd6\\x39\\x83\\x2f\\xc4\\x5a\\x9a\\x20\\x93\\xaf\\xac\\x3d\\\n\\xc0\\xab\\x07\\x4e\\xdf\\x98\\x77\\x41\\xab\\x8e\\x26\\x37\\xa5\\x62\\xdb\\x66\\\n\\x00\\x3d\\xb4\\xfa\\xc5\\x0f\\x92\\x73\\xe0\\x0a\\xba\\x69\\x17\\xce\\x31\\x31\\\n\\xb8\\x24\\x77\\xbb\\x13\\xb7\\xb0\\xbf\\x4e\\x0f\\xae\\xec\\x60\\xba\\x43\\x82\\\n\\x03\\x47\\xcf\\x20\\x84\\x9c\\x7f\\x97\\xb5\\xf9\\x91\\xf8\\xe6\\x5d\\xd1\\x6d\\\n\\x80\\x3e\\x8d\\x1f\\xd9\\xe4\\xde\\x0b\\xcb\\x98\\x41\\x3b\\x49\\x7a\\x88\\x39\\\n\\xf1\\x88\\xf1\\x31\\xd8\\x23\\xa3\\xae\\x91\\x14\\x1a\\xdc\\xb9\\x49\\x57\\xa4\\\n\\x1f\\x08\\xae\\xdd\\x78\\x80\\xec\\x74\\x42\\x11\\x14\\x9d\\x51\\x2a\\xb5\\xd1\\\n\\x1b\\x3e\\x7f\\x92\\xf7\\xfd\\x20\\xa6\\xea\\xcf\\x2c\\x65\\x30\\x7f\\x0b\\x68\\\n\\xd8\\x3b\\x0d\\xec\\x5b\\xe6\\x68\\xc7\\x22\\x57\\x36\\x3d\\x03\\xb9\\xa4\\xf5\\\n\\xc1\\xe6\\x0e\\x69\\x30\\x04\\xdb\\xc4\\x93\\xba\\xc8\\xe1\\x01\\x56\\xdf\\x5d\\\n\\x10\\xc3\\xe1\\xb7\\x76\\xcc\\xb4\\xa7\\xe0\\x21\\x94\\x0f\\xb8\\x45\\xe2\\xe3\\\n\\x4b\\x6d\\x6d\\x17\\x41\\xdf\\x36\\x5d\\x7e\\xf1\\x9f\\x90\\xa3\\x7c\\xb3\\x74\\\n\\x16\\xa6\\x88\\x9d\\x78\\x4c\\x3c\\xaa\\x62\\x36\\xe9\\x7a\\x34\\x9b\\xb8\\x02\\\n\\x65\\x36\\x74\\xf8\\x7c\\xf7\\x8f\\x2f\\xb9\\xd8\\xfc\\x2d\\x6b\\xf6\\xe2\\xc3\\\n\\x24\\x8d\\x19\\x48\\x3a\\x9d\\x3b\\xcc\\x40\\xb6\\x6d\\x00\\xbf\\x7d\\x19\\x3a\\\n\\x48\\xc6\\x30\\xd7\\x8a\\x8d\\xc1\\xfa\\x57\\x02\\xeb\\x05\\x9d\\xbd\\x9b\\xfb\\\n\\x2e\\x59\\xd3\\x55\\x55\\x29\\x98\\xd7\\xca\\x78\\x60\\x29\\x92\\xf4\\x0e\\xe6\\\n\\x83\\xf8\\x73\\x3b\\xd3\\x94\\xdb\\x67\\x60\\xc2\\x3f\\x3c\\xe7\\x73\\x78\\x56\\\n\\x58\\xed\\xdd\\x7e\\x1a\\x35\\xf3\\xe6\\x49\\x40\\x0a\\xf9\\xb6\\x7d\\xbf\\xd7\\\n\\xd6\\x0e\\x8a\\xa2\\x13\\xdd\\x96\\x5d\\x20\\x3d\\xbf\\x0c\\x4d\\x62\\x06\\x2c\\\n\\x82\\x27\\x91\\x08\\xa9\\x37\\x9e\\x4b\\xa8\\x63\\x75\\x18\\x71\\x7a\\x7e\\xfd\\\n\\xc6\\x40\\x1c\\x93\\xf0\\x42\\xed\\x16\\xfe\\x7b\\x8e\\x68\\xab\\xc0\\x7e\\xbf\\\n\\xc1\\xdb\\xf5\\x8e\\xb0\\x1c\\x8a\\x8b\\x6a\\x3d\\xb1\\xc2\\x1e\\x62\\xc5\\x2d\\\n\\xca\\xd9\\x74\\xf7\\x25\\xaf\\xa9\\xee\\x15\\xa0\\x16\\x9b\\x52\\x34\\xc4\\xe3\\\n\\xdd\\xf3\\x23\\x6b\\x57\\x42\\x08\\xd1\\x79\\x68\\x17\\x7d\\xf8\\xde\\x4c\\x84\\\n\\xa2\\x81\\x16\\x85\\xf9\\x28\\xfe\\xae\\x8c\\xd7\\x3e\\x8a\\x6d\\xed\\x3a\\x5f\\\n\\xfd\\xbc\\x22\\xc1\\x23\\x41\\xd6\\x98\\xc6\\xe1\\xc1\\xf9\\xc3\\x5b\\x68\\xcd\\\n\\xbb\\x12\\xc1\\xb7\\xa0\\x1b\\x86\\x37\\xa1\\x08\\x4f\\x69\\xf9\\x52\\x5c\\x50\\\n\\x88\\x69\\x68\\x07\\x58\\x54\\x00\\x93\\x84\\x38\\x1e\\xc7\\x52\\xfb\\x6f\\x7a\\\n\\x0b\\xbb\\xf5\\xd9\\xdc\\x96\\xd9\\x09\\x1b\\xa5\\x4a\\xd1\\x84\\x01\\x82\\x77\\\n\\x0b\\x77\\xe2\\x62\\xd1\\x72\\xe3\\x42\\x0a\\xa0\\xc8\\x6a\\x2a\\x73\\x2d\\x03\\\n\\x9f\\x51\\xb6\\x4a\\x33\\x6f\\x39\\x04\\xa1\\x8b\\x25\\x81\\xeb\\xd2\\x2a\\x9b\\\n\\x9a\\x80\\x0f\\x1a\\x7a\\x1a\\x00\\x40\\x58\\x94\\x4f\\x5b\\xb7\\x0f\\x6b\\xae\\\n\\x51\\x6a\\x54\\xda\\xaf\\x13\\xc3\\x22\\xb4\\xf2\\x88\\x8c\\xe9\\x2e\\x39\\x90\\\n\\x83\\x60\\x97\\x5a\\x67\\x54\\x80\\x7f\\xac\\x60\\x9d\\x4a\\x3a\\xd0\\xf9\\x67\\\n\\xe6\\x0c\\x35\\x93\\xe2\\x68\\x62\\x5a\\x0a\\xba\\x07\\x30\\xa5\\xa6\\x25\\x04\\\n\\xfb\\x2c\\x80\\xb6\\x03\\xc3\\x37\\xc4\\x91\\x9f\\xd4\\xf1\\x2e\\xec\\xf8\\x31\\\n\\xb7\\xcd\\x84\\x92\\x80\\x00\\x59\\x15\\x50\\xc6\\x2f\\x2d\\x17\\x5d\\x4a\\x11\\\n\\x49\\x76\\x6f\\x86\\x5a\\x57\\xa7\\xf5\\x36\\x69\\xdc\\x17\\xe0\\xcd\\xe9\\xa5\\\n\\x0f\\x59\\xfb\\x3e\\x08\\x4f\\x30\\x72\\xb7\\xce\\x86\\x1d\\x4e\\xb7\\xef\\xf4\\\n\\x67\\xcf\\x20\\xb1\\xf4\\x7c\\x0d\\xfc\\x61\\x6d\\xec\\x87\\x60\\x36\\xcd\\xe9\\\n\\xf9\\xfd\\xe3\\x62\\x09\\x93\\x0e\\x37\\x4e\\x8e\\xaf\\x1f\\x38\\x94\\xdd\\x39\\\n\\xe0\\x3c\\xdf\\xe2\\x66\\xf3\\x74\\x54\\xff\\x00\\xc2\\xfd\\xb7\\xb9\\x0b\\xa7\\\n\\xaa\\xa0\\x32\\x9d\\xe2\\x74\\xbc\\x34\\x07\\x05\\x9f\\x6f\\x5a\\xdf\\xcc\\xcd\\\n\\x56\\xca\\xfc\\xe5\\x3c\\x51\\xab\\x5d\\xd6\\x59\\x64\\x20\\x01\\x45\\x77\\x1d\\\n\\x1f\\x89\\x7a\\xf9\\x94\\xda\\x12\\x9f\\x50\\x1f\\x70\\x4c\\x2f\\x6c\\xa7\\xe0\\\n\\xff\\x00\\xe8\\xc0\\x6c\\xf6\\x1d\\x2a\\xe9\\xf5\\xa9\\x7e\\xbe\\xb0\\x5c\\x4f\\\n\\xd0\\x1e\\xda\\x1b\\xf8\\x6b\\xb8\\xc1\\xa3\\x73\\x74\\x24\\x88\\x75\\xaf\\xf4\\\n\\x6c\\x38\\x71\\x4c\\x91\\x06\\xee\\x4f\\x7b\\x21\\xf9\\xde\\x06\\x23\\x8c\\x96\\\n\\x9d\\x07\\xd7\\x47\\xd6\\x5e\\x03\\x93\\x84\\xb4\\xf3\\xcc\\xfd\\xb0\\x80\\xd3\\\n\\x37\\x38\\xda\\x27\\xf0\\xfd\\xe4\\xc6\\x24\\xf3\\x9c\\xff\\x00\\x18\\xb5\\xd7\\\n\\xec\\x1f\\xed\\xc6\\x8d\\xe2\\x2d\\xf8\\x6a\\xae\\x8e\\x88\\xba\\xc5\\x01\\x0b\\\n\\x7e\\x3e\\xe4\\xbe\\x7b\\x94\\xbd\\x46\\xe2\\x4a\\x9a\\xa1\\xb1\\xab\\x7f\\xcb\\\n\\xec\\xc5\\x90\\x43\\x67\\x2a\\xa9\\xe7\\xf9\\x7d\\x63\\x50\\x30\\x74\\x0a\\xb9\\\n\\xe0\\x58\\xf1\\xce\\x88\\x40\\xea\\x16\\xbe\\x6e\\x4d\\x84\\x72\\xdc\\xde\\x3d\\\n\\x18\\x45\\xe5\\x2a\\xe6\\x96\\xeb\\x77\\x8c\\x58\\x6d\\x7b\\x2c\\x50\\x1e\\x80\\\n\\x8a\\x51\\x30\\x80\\x18\\x6b\\x0e\\xdf\\x43\\xbc\\xf5\\xd6\\x58\\xa3\\xe0\\xeb\\\n\\x47\\x85\\xe9\\xf9\\xf6\\x71\\x50\\x1b\\xa0\\x3b\\x78\\x0d\\x20\\xa7\\xa8\\x9d\\\n\\xc9\\xa6\\xf0\\x61\\x1f\\x13\\xb5\\xba\\x6f\\x14\\xc9\\xb1\\x7d\\x60\\x0a\\xee\\\n\\x50\\x42\\x0c\\x2e\\xb3\\x6a\\x99\\x18\\xba\\xe8\\xfc\\x90\\xff\\x00\\xb9\\x61\\\n\\x0a\\x28\\xe2\\xe0\\xfd\\x6b\\x7f\\x1c\\x99\\x04\\x9a\\x95\\xf4\\xd1\\x70\\x44\\\n\\x82\\xec\\xfb\\xc7\\x70\\x7a\\x11\\xd6\\x00\\xdf\\x92\\xcc\\x14\\xf5\\x83\\x06\\\n\\xc4\\x2f\\xec\\xa1\\xe6\\x19\\x81\\xe5\\xd5\\x55\\xfd\\x07\\xe7\\x67\\x98\\x04\\\n\\x07\\xc4\\x41\\xe2\\xac\\x57\\x8b\\x82\\x95\\xb6\\x8f\\xcd\\x9d\\x31\\x11\\x7c\\\n\\xad\\x65\\x0a\\xad\\xbc\\xe8\\xd9\\xf9\\x07\\xc2\\xdf\\x32\\x39\\x5b\\x38\\x1b\\\n\\x70\\x9e\\xc5\\xb6\\x94\\x64\\x6c\\xc7\\x4f\\x62\\xa5\\x1d\\xa7\\x98\\x37\\x10\\\n\\x25\\x2f\\xcc\\xb2\\xd8\\x8e\\x8f\\x4d\\x07\\x01\\xd0\\x7e\\xc6\\x35\\xde\\x80\\\n\\x7e\\x28\\xf7\\x15\\x7d\\x83\\xca\\x89\\x57\\x6c\\xe4\\xc2\\x78\\x99\\xe7\\xa2\\\n\\x42\\x07\\xad\\x8f\\x2a\\xbb\\x86\\x10\\xa3\\x1e\\x5d\\x1a\\xac\\x25\\x03\\xa6\\\n\\xef\\xb8\\x32\\x57\\x90\\xab\\x50\\x19\\x6a\\xd7\\xc9\\xf9\\xc1\\x2d\\x5e\\x10\\\n\\xad\\xfe\\x7f\\xf3\\x81\\x65\\x1c\\xed\\x96\\xcf\\xa7\\x01\\xf4\\xfd\\x30\\xfc\\\n\\x11\\xf5\\x86\\x2d\\x9b\\x47\\x1f\\x9f\\x70\\x7b\\x19\\x54\\x84\\x7c\\x18\\x6b\\\n\\xf7\\x77\\x86\\xf3\\xb7\\x41\\xad\\x10\\x0c\\xe8\\x27\\xc6\\xca\\x4c\\x08\\x33\\\n\\x82\\x11\\x0e\\x35\\x7c\\x8d\\xfc\\xb3\\x80\\xb1\\xd1\\x9b\\x82\\x94\\x28\\xee\\\n\\xe4\\x99\\xa9\\xcf\\x25\\x40\\xfa\\x5a\\x6c\\x0c\\x87\\xab\\x94\\x82\\x14\\x2f\\\n\\x24\\x6c\\xda\\x85\\x3d\\x14\\x99\\x7a\\x10\\xec\\x16\\x67\\x37\\xc4\\x9e\\x5f\\\n\\x86\\x0a\\xae\\x1b\\xcf\\x69\\x8b\\xea\\x19\\xdc\\xe1\\x8c\\xa6\\xa9\\x90\\x5f\\\n\\xc7\\x86\\xf8\\xa7\\xef\\x1c\\x5e\\x08\\x83\\xc2\\x65\\x52\\xc5\\x45\\xea\\x6e\\\n\\x61\\xee\\xfb\\x01\\x1c\\x7e\\x52\\x81\\xf1\\x5c\\x65\\xa6\\x5a\\x37\\xee\\xdd\\\n\\x77\\xe7\\xcf\\xe3\\x35\\x45\\x52\\x3e\\xeb\\x65\\x32\\x80\\xf3\\xe5\\x9f\\x39\\\n\\x73\\xb6\\x27\\xce\\x80\\x50\\x4d\\x68\\xed\\x40\\xd4\\xb6\\x25\\x6e\\x7e\\x1e\\\n\\x9b\\x71\\xf4\\xe1\\xf4\\x2a\\x1b\\xef\\xc4\\xbf\\x18\\x98\\x96\\xc2\\x3a\\xf1\\\n\\x76\\x43\\x8f\\xe1\\xdc\\x60\\x0f\\x94\\x6c\\x06\\xb0\\x77\\xbd\\xa7\\xb6\\xeb\\\n\\x06\\x02\\x99\\xcb\\x23\\xad\\x3b\\xdc\\x63\\x0a\\x7d\\x64\\xc2\\x97\\xf4\\x44\\\n\\x4d\\xe8\\x6f\\x2c\\x3e\\xf2\\xdc\\xc4\\x97\\x17\\x80\\xca\\x1f\\xb0\\x99\\x78\\\n\\x75\\x90\\x03\\x73\\xe8\\x9a\\xdf\\x53\\x56\\xe7\\x84\\x58\\x1c\\x0e\\x7c\\xd7\\\n\\x9f\\xd9\\x85\\x9a\\x81\\x43\\x0d\\xab\\xb1\\x9f\\x79\\x2d\\x5a\\xeb\\xd6\\x58\\\n\\x44\\x0d\\x17\\x46\\x17\\x2f\\x01\\xea\\x05\\x4b\\xe9\\x1c\\x07\\x84\\x1c\\x39\\\n\\x73\\xfe\\xe0\\x81\\xd2\\xd0\\x52\\x66\\xd5\\xd0\\x26\\xef\\xd8\\xf1\\x9b\\x0f\\\n\\xce\\x72\\x14\\x0b\\xfa\\xf3\\xae\\x74\\x7b\\x3c\\xc0\\x24\\x8c\\x0f\\xdb\\xaf\\\n\\xa7\\xab\\x97\\x2b\\xfd\\x21\\xf6\\x10\\x8f\\x48\\x1e\\xf9\\x94\\x90\\x5d\\x4d\\\n\\xa4\\xc2\\x7c\\xea\\x08\\xe9\\x10\\x06\\x90\\x01\\x69\\x2c\\x24\\x04\\xbd\\x73\\\n\\x2d\\x53\\x3e\\xae\\xd3\\x4f\\x55\\x21\\xde\\x6f\\x25\\x2e\\x47\\x01\\xf5\\x00\\\n\\x0b\\x41\\x5b\\x53\\x58\\x89\\xa8\\x70\\x40\\x96\\x9e\\x0a\\x20\\x2a\\x5c\\xdd\\\n\\x43\\xc0\\xb6\\xd6\\xe2\\x00\\xa0\\x10\\xb1\\x87\\xae\\x89\\xa7\\x40\\x04\\x9b\\\n\\x4a\\xc3\\xf0\\x38\\x09\\x12\\x68\\x4f\\xd5\\x04\\x74\\x34\\x6b\\x58\\x68\\x6c\\\n\\x2b\\x6a\\x1b\\x06\\xde\\x5d\\x6a\\x25\\xde\\x58\\x03\\xdb\\x1b\\x1f\\xb4\\x67\\\n\\xd9\\x31\\xa5\\xf4\\xb8\\x0d\\x1c\\x36\\xa3\\x77\\xfe\\x71\\x7d\\x8c\\x0e\\x47\\\n\\xc0\\x54\\x9b\\x37\\xef\\x46\\x82\\xa2\\x53\\x62\\xbb\\x0a\\x2d\\xd7\\x5d\\xb5\\\n\\x71\\x8d\\xbc\\x06\\x8d\\xf0\\x8d\\x20\\x8d\\x69\\xd7\\x1d\\xd9\\x66\\xc1\\x45\\\n\\x44\\xe8\\x79\\xed\\x7e\\xa1\\x1a\\x67\\xc9\\x44\\x78\\x03\\xe7\\xfb\\x70\\xeb\\\n\\x9a\\x00\\x7d\\x8a\\x88\\x8d\\x2f\\xc1\\x79\\x8b\\x63\\x48\\x45\\xca\\x3b\\xc8\\\n\\x38\\x9b\\xae\\x16\\x52\\x9e\\x1f\\xf2\\x6e\\xfd\\xfe\\x2c\\xd4\\xfe\\x71\\x1d\\\n\\x8c\\x0d\\x0b\\xae\\x0e\\x8d\\xd5\\xb0\\x52\\x85\\x34\\x7c\\xdf\\xf5\\x6e\\x14\\\n\\xfc\\x84\\x83\\xbf\\x07\\x47\\x7e\\x3e\\x0b\\xa1\\xe7\\x2f\\x4d\\x99\\x23\\x7e\\\n\\x7e\\x30\\xb8\\x00\\x8f\\x4b\\x13\\x64\\x66\\xac\\x35\\x06\\x1d\\x13\\x51\\x0d\\\n\\xa2\\xb6\\x27\\x74\\x22\\x54\\xb4\\x68\\x39\\x6f\\x27\\x0e\\x89\\x9c\\xdd\\x0b\\\n\\xca\\xa8\\x96\\x94\\x93\\x03\\x77\\xd1\\x15\\x3a\\xe0\\x14\\x6c\\xa6\\xcf\\x44\\\n\\x97\\xcc\\xad\\xf0\\x98\\x38\\xb2\\x5d\\x02\\xb3\\x5b\\xe9\\x9e\\x1e\\x0c\\xe9\\\n\\xbc\\xfc\\xa2\\x1f\\xaf\\x9f\\xaf\\x73\\x9c\\x6e\\x7f\\x23\\xff\\x00\\x09\\x1f\\\n\\xde\\x78\\x25\\xe6\\xd3\\x78\\x4b\\xfd\\x23\\xa6\\x18\\x8d\\x4a\\xd2\\x20\\xe9\\\n\\xb6\\x84\\xfe\\x2e\\x6d\\x50\\xe0\\xe7\\x16\\x2e\\xc0\\xa2\\xbb\\x23\\x61\\x05\\\n\\x42\\x29\\x03\\x2f\\x75\\x6a\\xd9\\x2d\\x30\\x1c\\x87\\x22\\x50\\x08\\x26\\x97\\\n\\x57\\x93\\xc3\\xb9\\xba\\xeb\\x0f\\x85\\x92\\x57\\x49\\x17\\xe9\\xcf\\x28\\x28\\\n\\x23\\x43\\xd5\\x1f\\x53\\x6d\\xf2\\x65\\x22\\xfd\\x3e\\xb3\\xdd\\x0c\\xd0\\xae\\\n\\x38\\x81\\xe8\\x52\\xe8\\x07\\x84\\x9d\\x06\\xc6\\x92\\x5c\\x90\\x63\\x14\\xb5\\\n\\x3e\\x48\\x58\\xfd\\x9f\\x90\\xc8\\x24\\x68\\x3e\\xe2\\xa0\\xa3\\xbf\\x8f\\xb9\\\n\\xdd\\x63\\x34\\x4a\\x3e\\xda\\x1b\\xf2\\x6f\\x9f\\xce\\x02\\xf5\\x93\\xc3\\x4b\\\n\\x5b\\x5b\\x6c\\x46\\x7b\\x93\\x25\\x06\\xea\\x64\\x9c\\x24\\x86\\x28\\xd1\\x24\\\n\\x13\\xd0\\xbb\\x45\\x0c\\x5e\\x0a\\x8a\\x3d\\x1d\\x16\\xfd\\x83\\x7b\\xfd\\xe1\\\n\\x12\\xa3\\x71\\x67\\xce\\x87\\xc1\\x9f\\xb3\\xf5\\x85\\x5a\\x9a\\x21\\x51\\x65\\\n\\x37\\xcc\\x73\\x2e\\x55\\x00\\x92\\x1a\\x74\\xe7\\x7e\\x71\\xb1\\xc9\\xc1\\x75\\\n\\x09\\x35\\xe5\\xdb\\xc7\\xf3\\x83\\x9c\\xc0\\x83\\x0f\\x84\\x0e\\xd3\\xa7\\x35\\\n\\x90\\xef\\x6e\\x76\\xf6\\x4a\\xe6\\x93\\x8e\\x18\\x92\\xe5\\xeb\\x82\\x78\\xfa\\\n\\x78\\x73\\x00\\x13\\xea\\x1e\\x7d\\x86\\x6e\\xe0\\x9b\\x42\\x1b\\x69\\xab\\x6a\\\n\\xdd\\xf3\\x93\\xd3\\x9a\\xe4\\xaa\\x36\\x59\\x39\\xdb\\xbd\\x86\\xa6\\x7e\\x7b\\\n\\xac\\xd4\\x14\\x4e\\xd3\\x69\\xd3\\x8b\\x47\\x9e\\x05\\x2d\\xe4\\xae\\xdf\\xa8\\\n\\xf8\\xd9\\x14\\x7e\\x2c\\x1f\\x92\\x9d\\x87\\x4d\\xdc\\xc0\\xb9\\x89\\x92\\xf5\\\n\\x6f\\x64\\x29\\xc8\\xb9\\xa9\\x7f\\x47\\x9e\\xd5\\x02\\x1e\\x27\\xe4\\xc0\\x7e\\\n\\xdf\\x76\\xcb\\x47\\xdf\\x9e\\x63\\x58\\xb7\\xd8\\xe0\\x5e\\x8c\\x97\\x77\\xe6\\\n\\x06\\x18\\xb0\\xd4\\x41\\xe5\\x3b\\x98\\x99\\xb9\\xcd\\xec\\x28\\xbf\\x64\\x96\\\n\\x90\\x3d\\x2b\\x82\\x49\\xc6\\xcc\\x34\\xe2\\xb7\\x53\\xf0\\x97\\x37\\x7d\\xa8\\\n\\x14\\xab\\x4a\\xc2\\x9e\\x05\\x5c\\x24\\xc0\\x51\\x43\\x0d\\xbd\\x7c\\xfc\\x46\\\n\\x71\\x4d\\x2d\\x7b\\x1f\\x8f\\xc7\\xfe\\x30\\x1c\\x86\\x11\\x88\\xb2\\x73\\x4f\\\n\\x8e\\x68\\xa6\\x3a\\x6a\\x60\\x14\\xb1\\xef\\x5a\\x7e\\xed\\x4e\\x10\\x68\\x35\\\n\\xa1\\xe2\\xf8\\x7c\\xe1\\x20\\x18\\x04\\xf8\\xcb\\xd3\\xbc\\x74\\x16\\x42\\xdb\\\n\\x61\\x40\\x3c\\x36\\x85\\xfc\\xb0\\x1b\\x3d\\x3f\\xd2\\x0a\\x4e\\x08\\xdf\\xf1\\\n\\x72\\xf0\\xae\\x06\\x10\\x01\\x76\\x24\\x9f\\xa6\\xb2\\x27\\xa2\\xc8\\xf2\\x48\\\n\\xaa\\xab\\xe4\\xd6\\x11\\x24\\x08\\xd4\\xce\\xab\\xa3\\xf2\\xf3\\x29\\x3b\\x69\\\n\\x7d\\xd3\\xe9\\xb0\\x3c\\xfc\\x91\\xc7\\x86\\xda\\x3a\\x15\\x84\\xb5\\xd8\\x6a\\\n\\xd5\\x31\\xa0\\x7b\\x4c\\x5b\\xc0\\x1e\\xbe\\x73\\x58\\x8c\\xa3\\x57\\x44\\x86\\\n\\x84\\xf9\\xd7\\xe3\\x00\\x2d\\xf7\\x52\\x8e\\x80\\xd4\\x36\\x4f\\x65\\xd1\\x88\\\n\\xb4\\xad\\xba\\x31\\x29\\xdb\\xf8\\x6a\\x29\\x96\\x6f\\xd2\\x7f\\x74\\xa9\\xd7\\\n\\x8b\\xf8\\x61\\x3c\\x10\\x3b\\x91\\x63\\x67\\xbe\\x03\\x10\\x33\\x48\\x13\\x8a\\\n\\x45\\x44\\xec\\xc4\\x3d\\x42\\x67\\x4f\\xe1\\xd8\\x76\\x0f\\xc9\\x46\\x9b\\x6c\\\n\\xee\\x3e\\x19\\xb5\\xf0\\xa6\\x6b\\x7b\\x9c\\x67\\xc6\\x08\\x24\\x19\\x02\\x1a\\\n\\x5e\\xa7\\xf0\\x07\\x6e\\x0c\\xf7\\x53\\x06\\xcb\\x9f\\x14\\x87\\xc1\\x88\\x64\\\n\\x04\\x00\\x35\\x54\\x9f\\xf8\\x97\\x28\\xf5\\x6c\\xed\\xc8\\x3c\\x11\\x7e\\x67\\\n\\x98\\x44\\x82\\x84\\x44\\xea\\xd1\\x50\\x76\\xde\\x38\\x88\\xdb\\xdf\\xa8\\xde\\\n\\xa4\\x34\\x9b\\x8c\\xc1\\x66\\x6d\\x02\\x7c\\xf3\\x5a\\xf8\\x0f\\xdb\\x20\\x68\\\n\\x28\\x05\\x02\\x03\\xef\\x3d\\xce\\x32\\x20\\x65\\xa3\\x43\\x44\\x9d\\x3d\\xf8\\\n\\x2d\\xc4\\xa8\\xf6\\xa6\\xd1\\x81\\xc5\\x09\\xc6\\x83\\xa6\\x32\\x44\\xb3\\x34\\\n\\x26\\x13\\xa0\\x3e\\xcf\\x35\\x8b\\x88\\x2b\\xfb\\xfb\\xc9\\x25\\xfa\\x83\\xb8\\\n\\x29\\x89\\x76\\xc5\\x1d\\x21\\xc5\\x2b\\x0f\\x86\\x01\\xf8\\x27\\xe8\\x86\\xfc\\\n\\x1b\\x60\\x06\\xe7\\x0c\\x07\\x7a\\x80\\x26\\x91\\x78\\xba\\xc5\\x5b\\x3a\\x2c\\\n\\x37\\xca\\x8a\\xa1\\xe8\\x5a\\x9c\\x55\\x08\\x69\\x0f\\x81\\x61\\xd9\\x9c\\x26\\\n\\x06\\xf6\\x12\\xf4\\x41\\xef\\xc5\\xac\\xf9\\x8e\\x0d\\xef\\x93\\xd4\\xcc\\x7a\\\n\\xb7\\xa7\\xd6\\x0d\\x48\\xd2\\xc0\\x2c\\x76\\x3e\\x31\\xe5\\x22\\x2e\\x2d\\xba\\\n\\xdb\\x17\\xe3\\xeb\\x15\\xee\\xd1\\x7b\\x64\\xea\\x8d\\xa0\\x27\\x6c\\x3b\\x87\\\n\\x2d\\x30\\x49\\x7e\\xd5\\xe7\\x2d\\xd1\\xaf\\xac\\x60\\x2e\\x97\\xa0\\x04\\x81\\\n\\x67\\xe1\\xcf\\xed\\x2c\\x13\\x6a\\xa2\\x75\\xbd\\x8f\\xac\\x56\\x10\\xd2\\xa0\\\n\\x3b\\x36\\x1d\\xb1\\xf5\\xf3\\x89\\x87\\xeb\\xce\\x21\\x55\\x38\\xe1\\xfc\\x3e\\\n\\x70\\x7a\\x9a\\x1c\\x7a\\xa3\\xe8\\xf2\\xf3\\x14\\xde\\x80\\x7d\\x55\\xbf\\x14\\\n\\x57\\xa6\\xce\\xe4\\x83\\x93\\x56\\x9e\\x23\\x62\\x95\\x92\\x3d\\x26\\x6c\\xc7\\\n\\x20\\xe3\\x87\\x00\\x93\\x65\\x5d\\x60\\xf5\\x5e\\xdf\\x4a\\x5b\\xa5\\x9d\\x18\\\n\\xe8\\xc3\\x92\\x8e\\x50\\x0b\\xbd\\x28\\x57\\xe2\\xaa\\x0c\\x88\\xc6\\x79\\xa6\\\n\\x38\\xfa\\x44\\x97\\x73\\x48\\x3b\\x69\\x89\\x42\\xdc\\xfc\\xca\\xf7\\x27\\x04\\\n\\xdf\\x02\\x33\\x42\\x1f\\xc6\\xbd\\xb8\\x6e\\x45\\x15\\x33\\x04\\x1a\\xac\\x44\\\n\\xad\\xe2\\xb9\\xed\\x56\\x87\\x52\\x22\\x98\\x1b\\x57\\xe0\\x09\\xa6\\x29\\x11\\\n\\x55\\x8b\\x0c\\xa6\\xa8\\x56\\x82\\x53\\xa4\\x4f\\xd0\\xdb\\x24\\x77\\x9a\\x8d\\\n\\x53\\x80\\x02\\x98\\x68\\xad\\x85\\x63\\x89\\xf9\\xaa\\xad\\x74\\x3a\\x1a\\xdd\\\n\\xd6\\xa1\\xf1\\x0c\\xdc\\x9b\\x3d\\xb8\\x4d\\x08\\x40\\xdd\\xbc\\xd4\\xc6\\xe0\\\n\\x9a\\x2d\\x6e\\x9c\\x1d\\x14\\xbd\\xb8\\xf1\\xd1\\x28\\x4c\\xd2\\x60\\x90\\xe5\\\n\\xf0\\x58\\x04\\xe8\\x93\\xb5\\x29\\xb2\\xb5\\x7f\\x06\\xb1\\x6d\\xef\\x25\\xcc\\\n\\xea\\xc4\\x2c\\x5f\\x80\\x49\\x86\\xc1\\x59\\x2d\\x21\\xac\\x55\\x92\\xaf\\x77\\\n\\x71\\xcb\\xb6\\x50\\x2c\\x5b\\xf9\\x4e\\xc7\\x42\\x32\\xc9\\xab\\xfc\\x4c\\x93\\\n\\xa6\\x3e\\x3b\\x6b\\x91\\x51\\xb4\\x6e\\xbb\\xd5\\xbf\\xba\\xda\\x6f\\x98\\x7d\\\n\\x9c\\x12\\x87\\x9e\\x97\\xca\\x15\\xc4\\xf8\\x08\\x36\\xe9\\xdd\\xbf\\x45\\x7f\\\n\\x58\\x83\\x07\\xdc\\x59\\xe6\\xfe\\x40\\x4b\\xdd\\xc3\\xde\\x14\\xb9\\x36\\xd1\\\n\\x2d\\xff\\x00\\xa1\\x86\\x11\\xba\\x44\\xdd\\xf5\\x82\\x50\\x08\\xfc\\xe0\\xb1\\\n\\x50\\x3d\\x92\\x3c\\x78\\x8e\\xb8\\xdf\\x72\\xe0\\xf7\\x46\\xeb\\x64\\x4f\\xfe\\\n\\x9f\\xd6\\x72\\x70\\x9b\\x82\\x14\\xe3\\x0b\\xb0\\xac\\xb1\\xa6\\x63\\x96\\xcd\\\n\\xac\\x4e\\x39\\x48\\xbc\\x38\\xdb\\x4a\\xa2\\xfb\\x10\\x00\\x38\\x1c\\x10\\x61\\\n\\xc4\\x37\\xd7\\x42\\x44\\x1a\\x7d\\x56\\xf6\\x5d\\xe4\\x08\\x11\\xc1\\x75\\xd2\\\n\\xe2\\x3f\\x88\\x72\\x4c\\x42\\xba\\xe0\\x10\\x02\\x73\\xb4\\xd6\\xd7\\xe5\\xad\\\n\\xee\\x99\\x30\\x6c\\xe3\\xa3\\xec\\x00\\xa0\\xcf\\x33\\x6d\\x94\\x6f\\x5b\\x5d\\\n\\x70\\x0e\\x89\\xf5\\xd7\\x8a\\x44\\x85\\xb4\\xef\\x88\\x90\\xdd\\xed\\x26\\x06\\\n\\xac\\x42\\x55\\x08\\x30\\x69\\x8b\\x35\\x1a\\xc1\\x60\\x83\\xa3\\x89\\xec\\x6a\\\n\\xa6\\x1a\\x31\\xad\\x81\\xc8\\x70\\x36\\xe4\\x00\\x42\\xf1\\xb4\\x94\\x33\\xa3\\\n\\x28\\xfa\\x3f\\x6e\\x32\\x05\\x32\\x4e\\x29\\xce\\xbb\\x14\\x36\\xb2\\x72\\xdf\\\n\\x70\\xdd\\x25\\x9f\\xa9\\x2a\\x8b\\xaf\\x62\\x8d\\xea\\x26\\x94\\xf6\\xf9\\x1b\\\n\\x5f\\xc1\\x65\\x69\\xd6\\xf1\\x3d\\x55\\x15\\xfd\\xf8\\x4c\\x8a\\xf9\\xa0\\x20\\\n\\xcd\\x0d\\xf4\\x10\\x9e\\xcd\\x87\\x22\\x4c\\x34\\xb7\\xd3\\x46\\xa8\\x51\\x6d\\\n\\x73\\xa2\\xc5\\x79\\x9a\\x83\\x87\\xd8\\xd0\\x2c\\x92\\x43\\x0d\\x8c\\x87\\x23\\\n\\xea\\xa4\\x28\\xfb\\x68\\xf9\\x00\\x2d\\x71\\x74\\x28\\x1b\\x0a\\x91\\x78\\x25\\\n\\xdf\\x37\\xbb\\x88\\x02\\xd4\\x79\\x8e\\xc5\\xdf\\xe2\\xbe\\x97\\x09\\xe8\\x05\\\n\\xda\\x85\\x21\\xdf\\xf0\\x37\\x19\\x27\\x7c\\x71\\x1c\\x2b\\xd7\\xce\\xef\\x26\\\n\\x80\\xd0\\xa1\\x4e\\x0e\\x9f\\x5a\\xdd\\xcd\\x0a\\x9c\\xb7\\x6e\\x8a\\x6d\\xfa\\\n\\xc1\\x7e\\xd7\\x84\\x6e\\xd4\\x25\\x46\\x1d\\x77\\x26\\xcf\\xb1\\x16\\x7e\\x44\\\n\\x06\\xfc\\x4c\\x74\\xb4\\x11\\xb4\\x1c\\x68\\x0d\\xf8\\x70\\x4d\\x8b\\x03\\x73\\\n\\x09\\x84\\xf7\\xa5\\x39\\xae\\xfc\\xe2\\xe9\\x77\\x54\\x88\\x3a\\x77\\xad\\x68\\\n\\x94\\x1d\\x8c\\xce\\x42\\x98\\xe4\\x08\\x72\\xe1\\xa2\\x37\\x74\\x1d\\xde\\xf7\\\n\\xa0\\x7d\\x4f\\xde\\xa1\\x50\\xaa\\x82\\xbc\\xa0\\xfb\\x57\\x47\\x71\\x41\\xa3\\\n\\x11\\x7a\\x1c\\x92\\x05\\xa4\\xe8\\xd7\\x4b\\x9d\\x4e\\x21\\xd5\\xcd\\xf3\\xa6\\\n\\xcf\\x25\\x6c\\x70\\x74\\x54\\xbf\\xc4\\x07\\x49\\x03\\x6a\\x54\\x8f\\x6f\\x30\\\n\\x5e\\x6d\\x01\\xef\\x09\\x4c\\x70\\xb6\\xdd\\x50\\xad\\x3d\\x27\\x67\\xbb\\xc6\\\n\\x77\\xa4\\xad\\x21\\x51\\x5e\\x90\\x01\\xf0\\x81\\xf2\\x38\\x68\\x36\\x30\\xed\\\n\\x7c\\x52\\x71\\xcd\\xf0\\x39\\x2b\\xb2\\x1b\\xcf\\xea\\x7f\\x9c\\x52\\x40\\xa8\\\n\\x60\\x2f\\xd6\\x82\\xd1\\x94\\xf5\\x99\\xfe\\x98\\x91\\xc3\\x6f\\xd8\\x5a\\xe1\\\n\\x31\\x06\\x96\\x56\\xdd\\x88\\x47\\x0b\\xfc\\xe0\\xe3\\xf3\\xb0\\x46\\xc7\\xc4\\\n\\x3d\\x5b\\xe9\\x82\\x94\\xa3\\xa5\\xa0\\x96\\xc7\\xe7\\x5d\\x7e\\x51\\x84\\x9b\\\n\\x05\\x83\\x6c\\x79\\xbe\\x09\\x42\\xa8\\x79\\x25\\x1d\\x06\\xc0\\x3d\\xa3\\xb0\\\n\\xf9\\x6d\\xa1\\xbc\\xbe\\x7f\\xc9\\xb4\\x1b\\xc5\\x50\\x36\\x04\\xfb\\x62\\xc0\\\n\\x49\\x72\\x05\\xa6\\x0f\\x46\\xc5\\xb4\\xe5\\xde\\xbe\\xab\\xd3\\xb6\\x48\\x95\\\n\\xf9\\xb8\\xc8\\x8e\\x96\\x90\\xbe\\x00\\xc0\\xeb\\x11\\xb2\\xb8\\xf5\\xea\\xbe\\\n\\x24\\xa8\\x6f\\x50\\x78\\x46\\xe7\\xca\\x80\\x38\\x75\\x98\\x92\\x82\\x8d\\x7a\\\n\\x96\\xe4\\x0c\\xfe\\x59\\xa4\\xaf\\x97\\xec\\x33\\x35\\x1a\\x12\\x37\\x1f\\x24\\\n\\xd1\\xf1\\xed\\xdc\\x96\\xe0\\x2e\\xd3\\x86\\xbb\\x05\\xeb\\x99\\xe5\\x40\\x8e\\\n\\x58\\x06\\x51\\x74\\xa7\\x7b\\xb9\\xe9\\xd9\\x73\\x49\\x82\\xe8\\x6e\\x0a\\xe8\\\n\\x18\\xb7\\xa9\\x42\\x96\\x22\\xb0\\xde\\x59\\xf0\\xa8\\x2c\\xd4\\x82\\xe0\\xee\\\n\\x05\\xa7\\x1a\\x07\\xf2\\x2f\\xa6\\x54\\xaf\\x59\\x20\\x48\\xf3\\x8a\\xcb\\xbb\\\n\\x2c\\xa4\\x20\\xe8\\xd8\\x1a\\xf5\\x0e\\xe1\\xae\\xcf\\x4d\\x8d\\xb8\\x57\\x03\\\n\\x85\\x20\\xfa\\xbb\\x43\\x1b\\x8e\\x91\\x22\\x5a\\x4a\\xf4\\x5d\\xe7\\x40\\x6c\\\n\\xc1\\x30\\x1c\\x46\\x22\\xf0\\xfa\\xa3\\xbe\\x63\\x4e\\x6f\\x58\\xa6\\xc3\\x05\\\n\\x9c\\x1c\\x76\\xd0\\xf8\\xa5\\xc5\\x4a\\x39\\xed\\xd3\\xba\\x53\\xb2\\xc2\\x8c\\\n\\x25\\x36\\xbf\\x89\\xd2\\xe1\\xdf\\xee\\x7d\\x98\\x92\\xa0\\xa3\\xc9\\x98\\x28\\\n\\x5a\\x37\\xa1\\xf7\\x0a\\xb0\\x8f\\xad\\xb4\\xd2\\x5a\\x76\\x26\\x8f\\x49\\x9d\\\n\\xf0\\xf0\\x88\\xc4\\x3d\\xa6\\x0f\\xd4\\xc3\\xd3\\x06\\xb8\\xa0\\xea\\x9f\\xad\\\n\\xf6\\x1b\\x9b\\xec\\x18\\x1e\\xa2\\x80\\xbb\\x01\\x3c\\xf3\\x2a\\xb1\\x9c\\xf6\\\n\\x84\\x6a\\xc2\\x90\\x4b\\xb3\\x26\\x92\\x42\\x86\\x03\\xc9\\x7a\\xd9\\x54\\x50\\\n\\x1c\\x4d\\x1b\\xb8\\xd8\\x09\\x41\\xf2\\x7f\\x6f\\x32\\x86\\xe7\\x11\\x80\\xd3\\\n\\xa4\\x16\\xfb\\x9b\\x4e\\x1a\\xc9\\x89\\x4e\\xf2\\x9d\\x79\\x02\\x95\\xe9\\x89\\\n\\x1c\\xde\\x1f\\x1b\\x00\\x2b\\xf2\\x4d\\xdc\\x57\\xdb\\xf6\\xdd\\xb6\\xad\\x54\\\n\\xdb\\x75\\x8f\\xa6\\x9c\\x0d\\x28\\x29\\xa6\\xc4\\xd1\\xbe\\xdc\\x22\\x2c\\x97\\\n\\x3c\\x86\\x82\\x0f\\x66\\xbe\\xdc\\x06\\x9b\\x1b\\x23\\x6b\\x5d\\x95\\x3f\\xde\\\n\\x76\\x6d\\x43\\x5f\\x31\\xfe\\xaf\\x1e\\xef\\x39\\x50\\x84\\xe9\\x3d\\x53\\xfa\\\n\\x9c\\xc6\\xa9\\xc1\\xb8\\x1d\\xfb\\x2a\\x1f\\x9d\\xcf\\xbc\\x8c\\x35\\xec\\x1b\\\n\\xd0\\xfd\\xff\\x00\\x97\\xf6\\xd5\\x8e\\xf8\\x9f\\x61\\x19\\x37\\xde\\x7d\\xe2\\\n\\x21\\x10\\x8d\\x7a\\x5e\\x0e\\xca\\x1f\\x5b\\xe6\\xf3\\x72\\x27\\xd0\\xbb\\xf3\\\n\\x7a\\x2d\\xcd\\x85\\x2f\\x98\\x8b\\xe8\\x78\\x5f\\x86\\x4d\\xe2\\xd4\\xb5\\x34\\\n\\x5d\\x12\\x8b\\x36\\x0a\\x7a\\xdc\\x0c\\xed\\x4f\\x5b\\x76\\x40\\x07\\x61\\x9f\\\n\\xc7\\xd6\\x4a\\xfc\\xa3\\x2a\\x6c\\xbb\\x23\\xbb\\xc0\\x06\\xb1\\x4b\\x96\\x2a\\\n\\x82\\x6c\\x1d\\x47\\x9a\\x1b\\xb3\\x9a\\x0a\\x26\\x97\\x65\\xf0\\x16\\xb6\\xed\\\n\\x5f\\x11\\xc6\\x25\\xe2\\xe8\\x0d\\x6b\\x94\\x24\\xb6\\x32\\x15\\x45\\x83\\x39\\\n\\x79\\x0c\\x3b\\xaa\\xd8\\x52\\xb0\\x1e\\x8e\\x42\\x41\\x4f\\x53\\x08\\x03\\xa6\\\n\\x52\\x23\\x54\\xaa\\x5d\\xec\\x51\\x51\\xf5\\x1d\\x33\\x96\\x4a\\xa3\\x65\\xd7\\\n\\xa8\\xf0\\x6f\\x31\\x8a\\x65\\x24\\x5a\\x8a\\xbf\\x5e\\x7c\\xeb\\x2c\\x2a\\x93\\\n\\xf2\\xaf\\xae\\xfb\\x8f\\x58\\x03\\x8c\\x2d\\x5a\\x52\\x21\\x7e\\x8c\\xd6\\x9e\\\n\\x10\\x8a\\xa8\\xa3\\xd8\\xce\\x40\\x98\\x0e\\x94\\x22\\x69\\x01\\x82\\xf8\\xa7\\\n\\x08\\x5f\\xa0\\x58\\x54\\x3d\\xdf\\x8d\\x1c\\x21\\x96\\x35\\x41\\xe8\\x11\\x1e\\\n\\xd7\\xa2\\x1f\\x52\\x67\\xcf\\xbe\\xd4\\xd9\\xe4\\x82\\x93\\xdf\\x63\\xbc\\xd1\\\n\\xfe\\xc8\\x35\\x71\\x35\\xc8\\x69\\x81\\x36\\x48\\xa7\\xc6\\xf1\\xf8\\x6e\\x93\\\n\\x1b\\x3e\\x0f\\xfa\\x90\\x97\\x4a\\x15\\x4e\\x3b\\x6f\\x6b\\xbc\\x08\\xc6\\x55\\\n\\x85\\x51\\xfc\\x9f\\x13\\x4f\\x33\\x89\\xac\\x2b\\xb3\\xff\\x00\\x8f\\xeb\\xb8\\\n\\x01\\x3a\\x6d\\x0f\\x1f\\x16\\x10\\x0f\\x6f\\x71\\xbf\\x50\\x66\\xa0\\xda\\x00\\\n\\xd8\\xa6\\x19\\x06\\x8d\\x29\\x56\\xc9\\x01\\xab\\xb0\\x9a\\x7b\\xac\\x6c\\x07\\\n\\xca\\x27\\x66\\x96\\xc4\\xec\\x1c\\xf5\\x19\\xa5\\x08\\xa9\\x69\\xdd\\x4d\\x69\\\n\\xb7\\xa6\\xf0\\xb0\\xc1\\x5d\\xd0\\x69\\xbe\\xfd\\xe6\\x74\\x59\\x1f\\x5d\\x9a\\\n\\x2b\\xf1\\x09\\x6c\\xf9\\x75\\x34\\x11\\x81\\xad\\x41\\xf3\\x11\\x8f\\xc4\\xcd\\\n\\x5e\\x47\\xd4\\x21\\x19\\x39\\xe4\\x7d\\xe8\\xc3\\xaf\\x14\\xbb\\x6a\\x68\\x64\\\n\\xec\\x75\\xad\\x63\\xab\\xb4\\x54\\xae\\x80\\x43\\x91\\x5b\\x7c\\xc3\\x53\\xa4\\\n\\x50\\xab\\x3d\\xfc\\xcc\\x55\\x77\\x46\\x9d\\x07\\x60\\xaf\\xe1\\x2d\\xb2\\xe2\\\n\\x5c\\xa6\\x22\\x53\\xbe\\x80\\x79\\x1e\\xbd\\x7c\\xee\\xb3\\x9b\\xb4\\x51\\xb0\\\n\\xef\\x69\\x68\\xf0\\xd6\\xcb\\x87\\x4f\\x86\\xed\\x90\\xd3\\x90\\x8d\\xb4\\xee\\\n\\xc7\\x2e\\xb0\\x02\\xc8\\x02\\xdd\\xf6\\x69\\x0f\\x93\\x05\\x22\\x02\\x7b\\xa1\\\n\\x4d\\x6f\\x67\\xe9\\xdf\\xb8\\x81\\x40\\x6a\\x2c\\x00\\x3e\\x34\\x3a\\x44\\xdc\\\n\\x73\\x70\\x5b\\xac\\xf5\\x67\\xa1\\x06\\xc1\\x2e\\xb2\\x39\\xd1\\x80\\xac\\x8a\\\n\\x01\\xb9\\x1b\\x58\\x87\\x47\\x85\\xb6\\x04\\x9f\\x94\\x66\\xe1\\xee\\x4c\\x05\\\n\\x58\\x1a\\x01\\x0f\\x92\\x47\\xb1\\xac\\x79\\x3d\\x45\\x64\\x55\\x1b\\x57\\xf0\\\n\\x3f\\x4c\\x9a\\x15\\x94\\x3a\\xe4\\x8b\\x36\\x07\\xaf\\xe7\\x34\\xd5\\x5d\\x45\\\n\\x35\\xe8\\xab\\xa9\\xf9\\x11\\xc2\\x4d\\x3a\\xd4\\x3e\\x15\\x21\\x1a\\x5d\\xbd\\\n\\x63\\xb8\\x34\\x2d\\x82\\xbd\\x4b\\xf9\\x12\\xba\\x31\\x05\\x9a\\x16\\x7a\\xd2\\\n\\xf9\\x38\\x3b\\xe7\\x30\\x4a\\xf1\\x3f\\xb8\\x91\\x28\\x25\\xf9\\xd6\\x10\\xb4\\\n\\xb5\\xff\\x00\\x16\\xc4\\x43\\xf5\\xf9\\xc0\\x1c\\xfa\\x00\\x8d\\xc4\\x38\\xa7\\\n\\x0e\\x7f\\x19\\x65\\x1e\\x46\\x88\\xe1\\xfc\\x9f\\xf5\\x8f\\x31\\xaa\\xb1\\xa4\\\n\\xbb\\x52\\x9f\\xde\\x3e\\xe9\\x30\\x02\\x0d\\xc7\\x07\\xf6\\x0b\\x9a\\xa4\\x38\\\n\\xfc\\xb3\\x74\\x2b\\x44\\x0f\\x2b\\x8b\\xe0\\xdd\\x84\\x43\\x60\\xdb\\xf3\\xef\\\n\\xbe\\x4c\\x19\\x66\\xde\\x8f\\x34\\xd0\\x6e\\xfc\\xff\\x00\\x79\\x38\\x38\\x1d\\\n\\x25\\xa0\\xfd\\xfa\\x34\\xe3\\x73\\x65\\x28\\x07\\x81\\xb3\\x7f\\x3d\\x9e\\xa3\\\n\\x86\\x1f\\x28\\x71\\x7c\\x83\\x62\\x05\\x64\\x71\\x30\\x95\\x45\\x6a\\xa2\\x52\\\n\\x5e\\x2f\\x7f\\x58\\xee\\x61\\x88\\x1f\\x52\\x51\\x43\\xf7\\xe3\\xbc\\x62\\x45\\\n\\x63\\xb2\\x16\\x1a\\x15\\x34\\xf0\\x26\\x40\\xaa\\x10\\x35\\x6d\\x1a\\x35\\x36\\\n\\x99\\x87\\x48\\x03\\xe4\\xba\\x38\\x7d\\xc1\\x43\\x06\\x33\\x6b\\x65\\x16\\x6a\\\n\\x89\\xb0\\x7f\\x81\\x31\\x7d\\x58\\x30\\x93\\x77\\xa4\\x34\\x50\\x76\\xbb\\xcf\\\n\\x8b\\x27\\x74\\x55\\xbf\\xfb\\x06\\x08\\x06\\x90\\x90\\x2c\\xd4\\x53\\xba\\x7d\\\n\\xc7\\x16\\xdf\\x44\\x69\\x44\\x7d\\x9a\\xf8\\xd5\\x3b\\x71\\x1e\\xcd\\xae\\x44\\\n\\x79\\x72\\x40\\xec\\xe8\\xc8\\xa1\\xea\\x88\\x23\\x63\\x56\\xa8\\x0a\\x10\\xf5\\\n\\x53\\x2e\\x81\\x37\\x90\\x1b\\x31\\x00\\x07\\xc7\\x0d\\x60\\xda\\x08\\x6c\\xb2\\\n\\x0c\\xdd\\x74\\x96\\xa3\\x04\\x80\\xb2\\xa4\\x48\\x6a\\x34\\x04\\x2f\\xe3\\x3a\\\n\\x3f\\x27\\x44\\x6d\\x54\\x0f\\xc8\\x4d\\x53\\x65\\x32\\x43\\x99\\x11\\x2d\\x13\\\n\\x80\\x15\\xb6\\x51\\xb8\\xe5\\xc5\\xd9\\x37\\xd3\\x40\\xab\\x00\\x81\\xd1\\xa9\\\n\\x31\\x2b\\xda\\xb4\\xf0\\x5f\\xac\\x0f\\xdc\\x23\\xcc\\x20\\x71\\x1a\\xcc\\xbc\\\n\\x30\\x74\\x35\\x6a\\xc0\\xaa\\xc2\\xd3\\x40\\xee\\x98\\x07\\x1c\\xdd\\x2a\\x6a\\\n\\x37\\x86\\xd2\\x10\\x4d\\x26\\xe3\\x7f\\x91\\x70\\xd2\\xbc\\x39\\xe2\\x13\\x76\\\n\\x53\\x40\\xe7\\x99\\x58\\x56\\x4a\\xc0\\xd5\\xd1\\xa1\\x00\\x1d\\x26\\xba\\x61\\\n\\xb9\\xa2\\x2a\\x5a\\xff\\x00\\x09\\x1d\\x35\\xf5\\x9b\\xad\\x29\\x4d\\x26\\xe3\\\n\\x67\\xa2\\x2f\\x31\\xa1\\x54\\x1f\\x40\\x68\\xae\\xcf\\xa1\\x5f\\x96\\x00\\x74\\\n\\xac\\xd9\\xa1\\x0f\\x09\\x15\\xf1\\xec\\xc3\\x9c\\x1d\\x41\\x08\\x5a\\x00\\x60\\\n\\x9a\\x88\\xc5\\xb2\\xe1\\xd8\\xe0\\x2f\\x30\\x6b\\x1d\\xf4\\x62\\xc7\\xb0\\x19\\\n\\xba\\xe8\\x16\\x6a\\xcf\\xee\\x5c\\x25\\x34\\xd1\\x52\\x44\\x09\\x5f\\xb4\\x50\\\n\\x1e\\xdc\\x93\\x38\\x4f\\x1b\\xa7\\x9a\\x1b\\xbc\\x36\\x09\\x8f\\x30\\x14\\x68\\\n\\x30\\x0b\\xac\\x15\\x94\\xe1\\x71\\x28\\xc7\\x86\\x20\\xe3\\x18\\xa1\\x68\\xa2\\\n\\xc2\\x37\\x6e\\x2b\\xd2\\xfc\\xd2\\x88\\xd4\\x0d\\x80\\xc3\\xeb\\x61\\xdc\\x11\\\n\\xeb\\x8f\\x29\\x5c\\x4a\\xe0\\x18\\x14\\xdb\\x08\\xde\\x8e\\xe8\\x7c\\x34\\xb5\\\n\\x32\\x40\\x7e\\x01\\x5d\\x47\\x1d\\x47\\x70\\x2d\\x33\\x54\\xce\\xe0\\x50\\x1e\\\n\\x50\\xc0\\xd8\\x26\\x8c\\x80\\x44\\x64\\x8c\\x7d\\x11\\xd2\\xbc\\xb3\\xa0\\x78\\\n\\x8f\\xc4\\x60\\x90\\xe8\\xd5\\x1a\\x86\\x8e\\x8c\\x8b\\xa5\\x34\\x75\\x44\\x00\\\n\\xfc\\x93\\x40\\x00\\x31\\x24\\x61\\x1f\\x74\\x96\\x1b\\x7e\\x53\\xe4\\xf9\\xc4\\\n\\x1f\\x46\\xf2\\xb8\\x1b\\x42\\x06\\x8d\\xba\\xc6\\x05\\xc1\\x80\\x86\\xd3\\x7b\\\n\\x02\\x16\\x15\\x77\\x45\\x8f\\xc4\\xf8\\xac\\x81\\x58\\x3c\\xa0\\xe3\\x0b\\x83\\\n\\x7c\\x1f\\xc9\\x55\\xdd\\x2d\\x10\\x48\\xf5\\x31\\x5c\\x31\\x70\\xad\\x23\\x1f\\\n\\x64\\x52\\x37\\xb3\\xf4\\x62\\x93\\x75\\x58\\xf9\\x55\\x60\\x86\\xf1\\xeb\\xaa\\\n\\xb0\\xf2\\xa2\\x9a\\x11\\xaa\\x38\\xa7\\xb7\\xad\\xa3\\x69\\xad\\x13\\x70\\xa4\\\n\\x7d\\x28\\x02\\x8b\\xe3\\x57\\xe4\\xb1\\xa1\\xa0\\x7d\\x6b\\x00\\x64\\x76\\x0d\\\n\\xc0\\x4a\\xfd\\x3f\\x39\\x16\\x84\\x1f\\x2c\\xd0\\x87\\xc3\\xef\\x9d\\x61\\xc8\\\n\\x05\\x33\\xe1\\x37\\x0a\\x77\\xeb\\xf7\\xf1\\x9f\\x92\\x60\\xc5\\xcd\\x3c\\xba\\\n\\xfc\\x7e\\x0c\\xb0\\xc1\\x38\\x07\\x48\\x0a\\x2b\\xe9\\xbb\\x26\\xf2\\xad\\x5b\\\n\\xf0\\x5d\\xfd\\xfc\\x91\\x4b\\xc7\\x36\\xc2\\x33\\xb7\\x9b\\x5b\\x07\\x6c\\xe9\\\n\\x38\\x71\\xb6\\x23\\x3f\\x04\\xe3\\xae\\x5f\\xf1\\x72\\x7d\\x02\\x4e\\x32\\xf6\\\n\\xf5\\x54\\x17\\xa5\\x37\\x8c\\xbd\\x1d\\xed\\x7c\\x19\\x51\\xb5\\x68\\x66\\xcc\\\n\\x2e\\x29\\x14\\xd3\\x14\\x76\\xf6\\x0b\\x26\\x98\\x34\\x6a\\x61\\x25\\x36\\x28\\\n\\xd8\\xb6\\x19\\x0a\\x8c\\x9c\\x08\\x89\\x45\\x9a\\x5d\\x1b\\xf7\\x57\\x10\\x38\\\n\\xfb\\xa0\\x75\\x78\\x29\\x74\\xc2\\xe0\\xaa\\xc3\\x48\\x20\\xfb\\x42\\xb9\\x3e\\\n\\x0a\\xe6\\x8c\\xd5\\x5b\\xe4\\xa8\\x74\\xb7\\x62\\x9b\\x50\\xcf\\xa0\\xaf\\x80\\\n\\x00\\x0d\\x3e\\x29\\xd3\\x14\\x8d\\x40\\x6d\\x5a\\x27\\x5c\\x3f\\xf0\\x99\\xb7\\\n\\xab\\x15\\x50\\xce\\x3a\\x0a\\xb7\\xdc\\x13\\x86\\x4e\\xda\\xb8\\x40\\x75\\x3b\\\n\\xc8\\x75\\x82\\x6b\\x44\\x22\\x68\\x65\\x0f\\xc4\\x9b\\xc6\\x63\\x74\\x19\\xf5\\\n\\x1b\\x02\\xb9\\xe1\\x7f\\x7a\\x9b\\xbe\\xde\\xe4\\x20\\x84\\xd6\\x2e\\x97\\xc3\\\n\\x14\\x06\\xdd\\x10\\xbb\\x70\\xf4\\x00\\x12\\xe9\\xa6\\x2a\\x9a\\xcc\\x44\\x37\\\n\\x46\\xfd\\xdf\\x55\\xb1\\xc5\\x39\\xd4\\x0b\\x51\\x4f\\xc1\\xf0\\x75\\x01\\xdd\\\n\\xc6\\xc0\\xe5\\xfa\\x90\\x10\\xeb\\xa0\\x7c\\x4c\\x9a\\x8f\\xf7\\x90\\x11\\x9b\\\n\\x76\\xd9\\x44\\x8b\\xe6\\x1b\\x1a\\x70\\x28\\x27\\xed\\xad\\x3d\\xf8\\xca\\x48\\\n\\xbd\\x8a\\xe8\\x76\\xcb\\x8c\\x47\\xd9\\x6c\\xd2\\x76\\xc0\\xba\\xca\\x06\\xb5\\\n\\x7c\\x5c\\x97\\x34\\xf4\\x40\\x04\\x6d\\x12\\x9b\\x1f\\x8d\\x65\\x06\\x05\\x5f\\\n\\x64\\x59\\x14\\x96\\xf7\\x69\\xe1\\x8d\\x82\\x29\\x2c\\xdc\\xf9\\x67\\xf7\\xe4\\\n\\x66\\x40\\xce\\xb8\\xde\\xcb\\xfd\\xd8\\x7b\\xe6\\xcc\\x24\\xab\\xf2\\xfd\\x83\\\n\\x15\\xfc\\xcc\\x84\\x9b\\x3f\\xab\\x6b\\xc1\\xae\\xe1\\x9d\\x15\\xf5\\x9d\\xa0\\\n\\x78\\xd7\\x8c\\xd5\\xc6\\x92\\x50\\x76\\x95\\x6b\\x76\\x05\\xab\\xba\\x08\\xba\\\n\\x88\\x64\\x3b\\xf8\\xd1\\xe1\\xfb\\x9e\\xf3\\x22\\x23\\x1b\\x8e\\xa7\\xee\\x3b\\\n\\xbe\\x7d\\x66\\xb0\\xf3\\xe3\\xd3\\x8e\\xf6\\x4f\\xbc\\x94\\x47\\x46\\x50\\xf9\\\n\\x1e\\xe8\\x78\\x68\\x5b\\x96\\xd8\\xc0\\x97\\x50\\x90\\xf8\\x9f\\xa0\\x39\\xc6\\\n\\x34\\x1a\\x48\\x0d\\x80\\xf4\\x58\\x3b\\xa1\\xc3\\xf3\\x05\\x34\\x93\\x3c\\x21\\\n\\x97\\x63\\x0a\\x96\\x02\\x40\\x69\\x63\\x3c\\x05\\xde\\xc7\\xb2\\xad\\xa2\\xa5\\\n\\x82\\x2c\\xfa\\x6c\\xce\\x39\\x52\\x21\\x00\\x28\\x24\\xfe\\x5f\\x05\\x98\\x8a\\\n\\x63\\x35\\x0c\\x17\\xde\\xbf\\xdb\\xcc\\xd6\\x0a\\x79\\xbf\\x85\\x74\\x3a\\xd9\\\n\\xe6\\x50\\x17\\xaa\\x60\\xbb\\xc3\\xa0\\xf6\\xf0\\xc9\\x10\\xf4\\x1f\\xf0\\x40\\\n\\x0f\\xb3\\xe3\\x2e\\x51\\x48\\x1f\\x55\\xfa\\xfd\\x09\\xe3\\x96\\x84\\x59\\x43\\\n\\x9f\\x00\\xd8\\x1a\\x1d\\x98\\x7b\\xc8\\x2d\\x00\\x03\\x84\\x8f\\x7f\\x51\\xbb\\\n\\x97\\xc7\\x60\\x19\\x80\\x9c\\x83\\x23\\x61\\x44\\xc0\\x3e\\x08\\x3e\\x01\\x17\\\n\\xc6\\xae\\x80\\xfc\\x0c\\x5c\\x85\\xe0\\xab\\xe7\\x45\\xc7\\xf0\\x0c\\xe8\\x9f\\\n\\x63\\x87\\x12\\x29\\x21\\x51\\x0b\\x03\\xef\\x82\\x2d\\x4f\\xef\\xc1\\xcf\\x5a\\\n\\x81\\x22\\xc1\\x8c\\xf8\\xba\\x3d\\x52\\xda\\x02\\x2a\\x29\\x97\\x27\\x49\\x0d\\\n\\x42\\xf0\\xac\\x4b\\xf8\\x04\\x20\\x7a\\x42\\x17\\x4a\\x0d\\x7d\\xa7\\x34\\x52\\\n\\x5c\\xdd\\x6a\\x1c\\xea\\x04\\x77\\x83\\x19\\x30\\xf7\\x87\\xbd\\x11\\xbf\\xfd\\\n\\x30\\xe1\\xa4\\xcc\\xd5\\xb2\\x03\\x4f\\x55\\x51\\x4f\\xd6\\x6a\\xf1\\x3d\\x31\\\n\\x7f\\xd8\\xf8\\xaa\\x57\\xb9\\x79\\xd2\\x8e\\xf5\\x3a\\x42\\x87\\x2a\\xe1\\xba\\\n\\x7e\\x61\\xb1\\xc9\\xf6\\x46\\xc3\\x1a\\xbd\\x1e\\xc4\\x25\\xaa\\x74\\xd9\\xb9\\\n\\x0e\\xa0\\xa1\\x1b\\x76\\x57\\x05\\x53\\x3e\\xfe\\x62\\x11\\xda\\x20\\x32\\xb4\\\n\\x07\\x87\\x33\\x41\\x4d\\xd4\\x27\\xa3\\xb9\\x5b\\x9d\\xc6\\xdf\\xd6\\xd9\\x36\\\n\\xcb\\xa0\\x44\\x27\\xe7\\x1c\\x7a\\xb7\\x85\\x46\\x34\\x01\\xaa\\x70\\x6c\\x65\\\n\\xe1\\xe5\\xb0\\x4b\\xf8\\x05\\x36\\xae\\xa4\\xd2\\x40\\x5b\\x2c\\xa6\\xe0\\x2a\\\n\\xd7\\xa9\\x0b\\xda\\x27\\x53\\x68\\x9d\\x63\\x3d\\x02\\xfa\\xb9\\xb8\\x61\\x8d\\\n\\xdf\\x87\\x42\\xc5\\x9a\\x2b\\x82\\x56\\x89\\x4a\\x20\\x5a\\x0a\\xe8\\x18\\xed\\\n\\x3c\\xc0\\xe2\\x35\\x04\\x5b\\xb0\\xdb\\x7f\\x91\\x75\\x85\\x08\\x84\\x4f\\x6e\\\n\\x0a\\x08\\xd1\\xf6\\x9f\\x13\\x17\\xa2\\xe1\\xa6\\xf8\\xe8\\x9b\\x0f\\x22\\x37\\\n\\x92\\xbe\\x40\\x4f\\xe0\\x26\\x9d\\x2a\\x9f\\x13\\x19\\x24\\xaf\\x0e\\xa5\\x14\\\n\\x18\\x60\\xe6\\xf9\\x84\\xe2\\x9b\\x8a\\x8d\\xec\\x8f\\x39\\xf1\\x9f\\x01\\xcd\\\n\\xa0\\x82\\x6b\\x14\\xf6\\x14\\x0d\\xaa\\xe7\\x00\\x0c\\xa8\\xdb\\x7d\\xe4\\xd2\\\n\\x20\\xe8\\x19\\x51\\x4f\\x1e\\x64\\x8d\\x0a\\x54\\x8d\\x09\\xc8\\x0e\\x51\\x09\\\n\\x13\\x61\\x2d\\xa0\\x72\\x1c\\x79\\xe2\\xb9\\xf5\\x0b\\xaa\\x94\\x2e\\xf5\\x80\\\n\\xe1\\x5e\\xa8\\x36\\x02\\x0e\\x04\\x47\\xc5\\xc7\\x9b\\x60\\x0d\\x36\\xaf\\x1f\\\n\\x6d\\xfb\\xfe\\x71\\x5d\\xb1\\x14\\x5f\\x4d\\xa1\\xe0\\xa5\\x99\\xba\\xac\\xda\\\n\\x2a\\x8c\\xe1\\x94\\xbf\\xa5\\x84\\x14\\x89\\x09\\x03\\xa8\\xfc\\x26\\x0d\\xe0\\\n\\x62\\xd6\\x92\\x27\\x12\\x7e\\x7e\\xf1\\xbe\\x74\\x35\\x52\\x62\\x77\\xe3\\x93\\\n\\x12\\x20\\x9a\\x48\\x0e\\x2b\\x72\\xba\\x06\\xaa\\x7c\\xe6\\xd2\\xa9\\x34\\x86\\\n\\x84\\x80\\x74\\x65\\xf8\\xc3\\x07\\x11\\x69\\xf6\\xed\\x83\\xbf\\x67\\xeb\\x19\\\n\\xce\\x0c\\x55\\x95\\x57\\xe6\\x7b\\xdb\\xf7\\x8e\\x80\\x40\\x80\\xe1\\xad\\x3a\\\n\\x90\\xe2\\x7b\\x70\\x02\\xda\\xa8\\x7d\\xba\\x8f\\x0d\\x4d\\x1f\\xac\\x74\\x6b\\\n\\x0a\\xc4\\x60\\x2b\\xff\\x00\\x8f\\xf1\\x81\\x8e\\xab\\x37\\x7b\\x5a\\x33\\x9d\\\n\\x6f\\x5e\\xf7\\x8d\\x2e\\xd1\\xe2\\x2d\\xdb\\x31\\x36\\x89\\x50\\xd7\\x08\\xd0\\\n\\x44\\x34\\x83\\xf9\\x15\\xa9\\xe3\\x06\\xd0\\xaf\\x60\\x55\\xf0\\x7e\\xe0\\x24\\\n\\x5c\\x8c\\x6c\\xcb\\xec\\xd4\\x82\\x40\\xd2\\x5d\\x72\\x77\\x3b\\x93\\x47\\xfd\\\n\\x05\\x47\\xf0\\xd6\\x2b\\x53\\x49\\x1e\\x3a\\x57\\xc2\\x2a\\x0f\\x9b\\xee\\x57\\\n\\x2e\\x65\\x52\\x5b\\x0b\\xd7\\x1e\\x04\\x61\\xe9\\x89\\x37\\x5c\\xdf\\x89\\xa7\\\n\\xba\\xac\\xc5\\xb0\\xbb\\x15\\x58\\x87\\xd8\\xa7\\x75\\x73\\xa0\\x90\\x60\\x57\\\n\\x0d\\xbe\\x89\\xf2\\xbd\\x71\\xac\\x14\\x27\\x73\\xa2\\xe5\\x36\\x9d\\x12\\xeb\\\n\\xb8\\xd8\\x48\\x08\\xdf\\x25\\xe9\\x0b\\xf9\\xdd\\xf3\\x85\\x72\\x54\\x0e\\x43\\\n\\xbd\\x92\\xc1\\x70\\xf6\\xca\\x5a\\x46\\xa8\\xb6\\x7a\\xe9\\x87\\xbb\\xc4\\x21\\\n\\x9f\\x81\\xbe\\xc1\\x8e\\xc8\\x9a\\x98\\x06\\x4c\\x62\\x11\\xee\\x61\\x4b\\xda\\\n\\x7c\\x63\\x77\\x68\\x38\\xfe\\x3f\\xe3\\x76\\xd7\\xdc\\x3a\\xba\\xc4\\x14\\x0d\\\n\\x87\\xd5\\x24\\xd9\\xd3\\x35\\xc5\\x1a\\xbf\\xea\\x7d\\x0d\\xa6\\x4e\\x98\\xc5\\\n\\xee\\xf2\\x90\\xf2\\x3d\\x60\\x64\\x4e\\x8f\\x2e\\x85\\x74\\xc9\\x74\\x43\\x68\\\n\\x77\\xcc\\x79\\x60\\xa8\\x9c\\x2e\\x90\\x4e\\x66\\xcf\\x59\\xad\\x3f\\xb0\\xfe\\\n\\x98\\xab\\xa4\\xc5\\x3f\\x12\\x12\\xe4\\x04\\x06\\x71\\xa0\\x37\\xfd\\x4c\\x3d\\\n\\x9c\\x34\\x37\\x5f\\x90\\x21\\xfd\\xc4\\x72\\x46\\x65\\x1a\\x2b\\x88\\xa1\\x37\\\n\\xd1\\xd2\\x9c\\x71\\xf2\\x27\\xda\\xef\\x3f\\x06\\xaf\\xa3\\x7a\\xd5\\xcb\\x15\\\n\\x88\\x81\\x2c\\x4f\\x86\\xe6\\x94\\xbb\\xc6\\x65\\xa5\\xd8\\xe9\\x10\\xb4\\x94\\\n\\x9b\\xf5\\xf9\\xc7\\x93\\x47\\x27\\xc8\\x16\\xc3\\xb5\\xbf\\x86\\xe3\\x35\\xc3\\\n\\x61\\x6c\\xec\\x49\\xd7\\xbe\\xb2\\xb0\\xd9\\xde\\x20\\xe8\\x21\\x4f\\xc1\\x7a\\\n\\x07\\x2b\\x37\\xf4\\xc7\\x6d\\xdb\\x81\\x9b\\x80\\x0e\\x4a\\x9f\\x7d\\x07\\xa4\\\n\\x7b\\xbc\\xde\\xc9\\xe9\\xac\\xd1\\x35\\x9d\\xf0\\x6e\\x5c\\x8e\\xc9\\x12\\x1b\\\n\\xa8\\x35\\x2d\\x2a\\xa7\\x8c\\x2e\\x77\\xa3\\x3f\\xce\\xeb\\xff\\x00\\xbd\\xdc\\\n\\x94\\x69\\xfd\\x0b\\x59\\x34\\x06\\x06\\xda\\x8f\\x80\\xbd\\xb9\\x53\\x01\\x21\\\n\\xc0\\x89\\xed\\x5c\\x38\\x96\\x24\\x0a\\x4f\\xdd\\xee\\x42\\xab\\xed\\xd4\\x14\\\n\\xe9\\xd1\\x55\\xab\\xbe\\xb9\\xf8\\xee\\x06\\x2e\\xea\\x4d\\x14\\xba\\x46\\x23\\\n\\xe5\\x50\\xcd\\x0c\\x1e\\x90\\x28\\x03\\xb1\\xe9\\xe9\\x13\\xb3\\x04\\xac\\xbe\\\n\\x98\\xb8\\xc3\\xc2\\x68\\x6d\\xb7\\x13\\xca\\x78\\x14\\xa0\\x05\\x42\\xa2\\x1f\\\n\\xb5\\x82\\x06\\xb5\\x4d\\xa3\\x2f\\x60\\x82\\x8c\\x0e\\x6b\\xa1\\x37\\x74\\x93\\\n\\xaa\\xec\\x23\\xb3\\x40\\xe8\\x03\\x2e\\xa9\\x45\\x23\\xac\\xf5\\x98\\x62\\x74\\\n\\xd9\\x98\\xb4\\xbb\\xae\\xd0\\x6e\\xbc\\xc1\\xed\\x77\\xbe\\x0f\\x20\\x2a\\x22\\\n\\x37\\xe4\\x5e\\xb4\\xc7\\xa7\\xb1\\x1f\\x22\\xeb\\xf8\\x75\\x9d\\x6e\\x71\\x98\\\n\\x0e\\xa1\\x40\\x1b\\x58\\xbc\\xcb\\x67\\x7b\\x8f\\x6d\\x15\\x10\\xaf\\xf4\\xe6\\\n\\xbb\\xb1\\x95\\x53\\x36\\xfc\\xf3\\xd3\\xab\\x8b\\x59\\xd6\\xc3\\x77\\x20\\x7c\\\n\\xff\\x00\\xa3\\x78\\xe5\\x5a\\x9c\\x81\\x6b\\x9f\\x78\\x6f\\xba\\x40\\x5f\\xa0\\\n\\x1b\\xfe\\xea\\x7f\\x19\\xec\\x00\\xcd\\x29\\x36\\xc1\\xfa\\x5a\\xfb\\x9b\\xd3\\\n\\x70\\xb0\\x5c\\xdf\\x00\\x6f\\x4f\\x7f\\x38\\xce\\xa9\\xf7\\x8f\\xbb\\x0f\\xa6\\\n\\x0e\\xa4\\xd5\\x47\\xa1\\xc3\\xce\\xa3\\x0f\\x18\\x6b\\xfd\\xe5\\xac\\x74\\x13\\\n\\xd1\\xa3\\x99\\x0d\\x69\\xe8\\x97\\x3d\\x52\\x19\\x8a\\x75\\x88\\xeb\\xdf\\x9b\\\n\\x10\\x08\\x11\\xad\\x3b\\x67\\x11\\x00\\x22\\xd1\\x28\\x03\\xe4\\x9a\\xe1\\x13\\\n\\xd6\\x9a\\x7a\\x3c\\x1f\\x9e\\x3f\\xae\\x28\\xba\\x2e\\x88\\x30\\x5e\\x47\\x6e\\\n\\x0c\\x73\\xe5\\xe8\\x4f\\xc8\\xda\\xdf\\x92\\x1b\\x32\\x5e\\x02\\xce\\xa8\\x31\\\n\\xfc\\x93\\xd7\\x74\\xc6\\xc5\\x3b\\xb1\\x0a\\x00\\x8b\\x0a\\xef\\x75\\xfd\\x93\\\n\\xd1\\xdd\\xfa\\x55\\x05\\x84\\xe1\\x7f\\x69\\x5c\\x6a\\x21\\xb0\\x80\\x9c\\x95\\\n\\x43\\x77\\x9e\\x65\\x5b\\x4d\\x00\\xe2\\xd6\\xdb\\x5b\\x43\\xdf\\xac\\xd2\\x65\\\n\\xd1\\xf8\\x0b\\x3d\\x7f\\x28\\xe4\\x88\\xde\\xba\\xf7\\x38\\x26\\x09\\xa6\\x1e\\\n\\x69\\x4d\\xa0\\x4d\\x5e\\xd1\\xe2\\x74\\x6e\\xb6\\x49\\x54\\xcc\\x8c\\x8f\\x01\\\n\\x14\\x12\\x3f\\x96\\x33\\xcc\\x32\\x74\\x0d\\x59\\xa3\\xaa\\x20\\x74\\xc2\\x11\\\n\\x46\\x2d\\x56\\x6c\\x68\\x6e\\xe9\\x4b\\x2e\\x58\\x03\\x76\\x23\\xb2\\x36\\x1d\\\n\\x27\\xf0\\x63\\x58\\xe4\\x2b\\xda\\xbe\\x04\\xe5\\xa5\\x7e\\x25\\xf4\\xee\\xf5\\\n\\x8d\\x99\\x35\\x5d\\xbd\\x7f\\x87\\xd5\\x28\\x72\\xbc\\x68\\x06\\x94\\xc2\\x22\\\n\\x97\\x90\\x32\\x3a\\x8f\\xa4\\x14\\xdf\\x9b\\xb6\\x20\\x98\\x08\\x25\\x25\\xc0\\\n\\x38\\x5f\\x7e\\xb3\\x6c\\xf9\\x90\\x86\\xe0\\x7e\\x9f\\x00\\xdc\\xbd\\xb1\\x8e\\\n\\xf8\\x1c\\x0d\\xa0\\x3c\\x35\\x64\\x13\\x23\\x91\\xe1\\xc0\\x74\\xdb\\x46\\x47\\\n\\x71\\xa1\\xe2\\x24\\xd8\\xc6\\xf4\\xba\\x00\\x02\\x56\\x44\\x99\\xa3\\xb0\\x8d\\\n\\xe4\\xd4\\xa5\\x0f\\x0b\\x17\\xac\\x00\\x17\\x46\\x41\\x70\\x23\\xf7\\x9c\\x90\\\n\\x46\\x6a\\x54\\x79\\x0d\\x93\\x22\\x53\\xe6\\xf9\\xf2\\x00\\xd4\\x3e\\xc1\\x84\\\n\\x55\\x44\\x1f\\x15\\xc1\\x3a\\xb7\\xd0\\x3f\\x19\\x19\\xd5\\xe3\\x7b\\x55\\x22\\\n\\x14\\x4d\\x04\\x78\\x11\\x2a\\x12\\x2d\\x7d\\x4c\\xa0\\xba\\x49\\x80\\x97\\x16\\\n\\x87\\xc9\\x0a\\x0b\\x0b\\xb7\\x95\\xd6\\x4f\\xad\\x22\\xee\\x00\\x0e\\x61\\x03\\\n\\xa0\\x4a\\xe4\\xcc\\x74\\xcf\\xc8\\x1d\\x23\\xc1\\xd1\\xc8\\xe6\\x41\\xa3\\xc6\\\n\\xbc\\x35\\x3a\\x01\\x0a\\x33\\x0a\\x8b\\x88\\x50\\x5c\\x84\\x40\\xf4\\x2a\\xd5\\\n\\xdb\\x81\\x62\\x4d\\x54\\xf2\\x75\\x20\\x20\\xf1\\xf1\\x94\\x95\\x90\\xdc\\xe0\\\n\\xd4\\x8d\\xa5\\xda\\xbf\\x80\\xab\\x7b\\xc1\\x76\\x7d\\x49\\x95\\xea\\xf8\\xc0\\\n\\x24\\xaa\\xc6\\xe2\\xb2\\xdd\\x16\\xb4\\x68\\xf7\\x4d\\x47\\xd3\\x44\\x6f\\xa7\\\n\\x93\\xdc\\xfb\\x83\\x35\\xc9\\x49\\x7b\\x6a\\xa8\\x11\\x36\\x8d\\xcb\\x82\\x5a\\\n\\x0c\\x63\\x54\\x23\\xc4\\x62\\x0c\\x8a\\x72\\x61\\x03\\xba\\x43\\x6f\\x48\\x4d\\\n\\xcb\\xbc\\xae\\x6c\\xfa\\xcd\\x34\\xd0\\xbb\\x2a\\xc5\\xf4\\x3f\\xf7\\x05\\x6d\\\n\\xa2\\x38\\xa9\\xcf\\x61\\x04\\xb2\\xfb\\x9c\\x4d\\x8d\\x39\\x31\\x1a\\xe5\\xdf\\\n\\xd0\\x12\\x06\\x9f\\x03\\xf9\\x6f\\x00\\x6a\\xe0\\xd6\\x5d\\x2a\\xc6\\x40\\x10\\\n\\xa7\\xe1\\x86\\x84\\x91\\x5f\\x34\\x87\\x3c\\x73\\xa7\\x5b\\x4c\\xb8\\x8d\\x09\\\n\\xd2\\xb5\\xac\\x51\\x2d\\x0c\\xc6\\x33\\x35\\x49\\x8c\\xdf\\x16\\x7c\\x25\\x79\\\n\\x80\\x89\\x8a\\x14\\x0b\\xc0\\x04\\xfd\\x7e\\x73\\x57\\x68\\x42\\xae\\xed\\x1d\\\n\\x1b\\x6f\\x7b\\x93\\x67\\x21\\xa9\\xcc\\x82\\x5f\\x37\\xcb\\xb6\\x5a\\xec\\x38\\\n\\x85\\x5f\\x3a\\x6f\\x9b\\x66\\x14\\x8b\\x16\\x00\\x2d\\xbb\\x7b\\xff\\x00\\xeb\\\n\\xdc\\x4d\\xd0\\xe8\\x0d\\x57\\x17\\xd4\\xef\\xc6\\x4e\\x7b\\x45\\x22\\xe0\\x09\\\n\\x63\\xf2\\xc5\\xc1\\xe7\\x66\\xaf\\x2b\\x46\\xd4\\x80\\x55\\xd6\\x70\\x26\\xd2\\\n\\x63\\x04\\x75\\x9c\\x92\\x29\\xc5\\xd7\\x04\\x15\\x40\\x92\\x6e\\x95\\xc6\\x09\\\n\\x7c\\xd1\\xa0\\x91\\xaf\\x46\\xc6\\xe2\\x74\\x8e\\x84\\x4b\\x89\\x51\\x1a\\x88\\\n\\x1d\\xb4\\x87\\x45\\xdd\\x5c\\xb7\\x3e\\x04\\x94\\x2b\\x58\\x3b\\x03\\xe9\\x9a\\\n\\x38\\xa0\\x83\\x21\\x0d\\xc0\\x17\\x60\\xf7\\x11\\x7d\\x27\\x71\\x8e\\x1a\\x9b\\\n\\x36\\x0f\\xc8\\x63\\xe0\\x9a\\x5b\\xb7\\x50\\xd0\\x2d\\xbb\\x6d\\x71\\xf8\\xbc\\\n\\xba\\x00\\x52\\xc6\\x08\\xa2\\xa1\\x99\\xb3\\xb1\\x50\\x9e\\xa2\\x0d\\x87\\x03\\\n\\x63\\x77\\x34\\xc0\\xd2\\x20\\xb5\\x00\\x72\\xc9\\x9d\\x83\\xa6\\x1a\\xaa\\x39\\\n\\x48\\xae\\x65\\x55\\xb7\\x60\\x26\\xf0\\x22\\xa8\\xa8\\x2a\\xb1\\xa2\\xde\\x1d\\\n\\xd7\\x1f\\xd3\\x30\\x48\\x40\\xe1\\x68\\x31\\x23\\x72\\x44\\x2e\\xe2\\xde\\x14\\\n\\x7c\\xae\\xe4\\x19\\x2e\\x43\\xba\\x1b\\x19\\x4c\\x1e\\x3b\\x25\\x69\\x2d\\x16\\\n\\x02\\x05\\x9a\\x49\\x3e\\xa9\\x99\\x3a\\x4b\\xb2\\x50\\x82\\x9f\\x16\\x7c\\x06\\\n\\x40\\x3a\\xd0\\x11\\x49\\x39\\x0d\\x3c\\x5c\\x55\\xe4\\x2a\\xfa\\xe0\\x36\\x84\\\n\\x54\\x9b\\x59\\x81\\xc1\\x77\\x44\\x45\\x3a\\x0c\\x69\\x6a\\x1b\\x31\\x75\\x56\\\n\\xef\\xd3\\xbe\\x14\\xa0\\x54\\x76\\x64\\xac\\x44\\xf8\\x8e\\x9f\\x0e\\xf8\\x2d\\\n\\x30\\x1e\\xe3\\x7d\\x0f\\x36\\x21\\x5e\\xfa\\x0c\\x65\\x40\\xcc\\x8c\\xa4\\x48\\\n\\xd0\\x9d\\x1a\\x38\\x35\\x0f\\xc1\\x22\\x26\\x93\\x5a\\xb5\\x27\\x31\\x15\\xf5\\\n\\x40\\xe8\\xe9\\x8d\\x26\\x9e\\xb0\\x66\\xbe\\xf2\\x45\\x3d\\xb8\\x6b\\xf0\\xa7\\\n\\x0c\\x0e\\x7e\\x88\\xc9\\x46\\x5d\\x35\\xed\\x82\\x23\\x9e\\xa3\\xc8\\x01\\x34\\\n\\x47\\xb3\\x9a\\x70\\xd3\\xcc\\x24\\x25\\x92\\x54\\x56\\xd0\\xaf\\x73\\x35\\x64\\\n\\xe4\\xd9\\x1a\\x3a\\xd1\\xbf\\xc9\\x31\\x45\\xde\\xa8\\x45\\x50\\x09\\xe2\\x01\\\n\\x30\\x1b\\x94\\x50\\x62\\x1c\\xcd\\x70\\x83\\xa0\\xec\\x4e\\xc2\\xc0\\x42\\xce\\\n\\xac\\xdc\\x15\\x4d\\x9c\\x58\\x81\\xcd\\xc8\\xcc\\xeb\\x51\\xb0\\xee\\x90\\x18\\\n\\x2e\\x71\\x04\\x09\\x59\\x41\\x43\\xbc\\x13\\xf1\\x54\\xa1\\xdc\\x01\\x52\\x45\\\n\\x19\\x0a\\x94\\x74\\x04\\x81\\x23\\x4a\\xd6\\xac\\xb0\\x10\\x92\\x6b\\x34\\x76\\\n\\xdb\\xb9\\x53\\x14\\x1b\\x02\\xf0\\x85\\x3a\\x3d\\xf3\\x25\\xe1\\xdb\\xf2\\x16\\\n\\x4b\\xf0\\x9f\\x4c\\x02\\x02\\x1c\\x8d\\x04\\xc0\\x46\\x80\\x23\\x82\\xd1\\x1f\\\n\\xed\\xec\\x21\\x05\\x7c\\x52\\x40\\x84\\xc7\\x05\\x84\\x42\\xc4\\x30\\x5d\\xef\\\n\\x65\\x70\\x41\\x3b\\xf2\\x6e\\xd1\\x10\\x92\\xbb\\xf3\\x98\\x85\\xe9\\x36\\x98\\\n\\xd7\\x40\\xbf\\xc9\\x7d\\x0e\\xb6\\x21\\x07\\x7f\\xf3\\xb7\\x9a\\x82\\x2f\\x3b\\\n\\xa3\\x0e\\x81\\x90\\xac\\x67\\x33\\x50\\x98\\x98\\xb7\\x18\\xc1\\xe9\\x34\\x81\\\n\\x6e\\xc0\\xb3\\x15\\x14\\x06\\xd1\\xcc\\x0e\\x8e\\x69\\xd0\\xd6\\xb1\\x08\\xf6\\\n\\x86\\xcf\\xa0\\xd9\\xf2\\xfa\\xf9\\xcd\\x9a\\x03\\xcb\\x3a\\xd8\\xd3\\x24\\x06\\\n\\x6b\\xac\\x1c\\xc0\\x40\\x0a\\x4a\\xb0\\x12\\xb6\\x4d\\xc2\\xc1\\x3f\\x22\\x3c\\\n\\xa9\\xda\\x27\\xe1\\xdb\\x21\\x23\\xa7\\x24\\x4e\\x6a\\x8b\\x55\\x6b\\xeb\\xef\\\n\\x1d\\xe7\\x81\\x3e\\x8e\\xea\\x72\\xfe\\x0f\\xe3\\x1a\\xf1\\x2f\\xeb\\x01\\xb5\\\n\\x7e\\x33\\x68\\xe0\\x07\\x23\\xf8\\x55\\xc8\\x2b\\x78\\x0a\\xda\\xd0\\xd0\\xe8\\\n\\xd7\\x42\\x1d\\xa2\\x06\\x91\\xa3\\x74\\x84\\xa3\\xae\\xf9\\xc1\\xbe\\x90\\x50\\\n\\xe8\\x29\\x32\\xb1\\x04\\xda\\x53\\x15\\x99\\xc0\\xac\\xd0\\x8e\\x16\\x48\\xe6\\\n\\x13\\xad\\xa2\\x89\\x63\\xec\\x2d\\x35\\x9b\\x04\\x06\\xe2\\xea\\x11\\x06\\x26\\\n\\xbe\\x1f\\xd9\\x30\\xe9\\x38\\x0d\\xa5\\x21\\x52\\x77\\x9d\\x12\\x52\\x3e\\x5c\\\n\\x03\\xc8\\x81\\x74\\x7f\\x25\\x3e\\xe9\\xa6\\x9a\\x8f\\xc7\\x07\\x5e\\xbb\\x85\\\n\\xc0\\x61\\x10\\x5b\\x6f\\xb1\\x70\\xa1\\x83\\x34\\x82\\xd9\\x83\\xb6\\x02\\x5c\\\n\\xa0\\x1c\\xb4\\xa0\\xc9\\xf1\\x5b\\x38\\x3c\\x96\\x78\\x7b\\x91\\x25\\xfa\\xdb\\\n\\x3e\\x34\\x53\\x50\\xbb\\x6b\\x58\\x4f\\x90\\xf4\\x3a\\x8a\\xec\\x16\\x9e\\x93\\\n\\xad\\x0e\\x39\\x8f\\x4a\\x20\\xa7\\x56\\x0d\\x49\\xd4\\xd0\\xc7\\x6c\\x1a\\x2c\\\n\\x0f\\x0e\\x93\\x7e\\x05\\x87\\x32\\x5f\\x4b\\x22\\x60\\xed\\x29\\x67\\xa3\\x64\\\n\\xc8\\x4f\\x90\\x9b\\x54\\xed\\xec\\x6a\\x73\\x0e\\xe5\\x90\\xe2\\xcd\\xe9\\xa5\\\n\\x5f\\x0b\\x47\\x97\\x2b\\x56\\x66\\x04\\x2a\\xcd\\x90\\x38\\xd9\\xf1\\xb7\\xb5\\\n\\x90\\xaa\\x08\\xa2\\xb8\\x46\\x2f\\x29\\xac\\x1e\\x1f\\x4f\\x83\\xea\\x1d\\x4b\\\n\\x48\\x01\\xa2\\xe3\\xfa\\xb7\\x3c\\x50\\x4a\\xf0\\x11\\xf3\\x7e\\xb3\\x4f\\x91\\\n\\x4a\\xb8\\x8a\\x89\\xf3\\x43\\xe3\\x7b\\x64\\x37\\xb4\\xc2\\xe4\\xe8\\x0b\\x97\\\n\\x5f\\x23\\x27\\xba\\x30\\x8b\\x20\\x45\\xb9\\x10\\xb2\\x00\\x65\\x25\\xe2\\x1f\\\n\\xec\\x49\\xd2\\xd7\\x78\\x67\\xb9\\x21\\xe0\\x28\\x08\\xdd\\x90\\x23\\x0a\\x0e\\\n\\x05\\xd1\\xd1\\x02\\xec\\xad\\xe6\\xd6\\x45\\x6b\\x86\\xc5\\x91\\x2d\\xa1\\x0b\\\n\\xb0\\x3a\\x82\\x89\\xef\\x36\\xc2\\x57\\xbd\\x0f\\x42\\x15\\xa0\\xea\\xef\\x79\\\n\\x13\\x08\\x6b\\xa3\\x45\\xaa\\x23\\x88\\xbe\\x83\\x85\\x7a\\x29\\x22\\xf0\\x70\\\n\\x7c\\x03\\xc1\\x8d\\x9a\\x3d\\xba\\xe5\\x94\\x01\\xe2\\xbf\\xeb\\x1f\\x27\\x8a\\\n\\x76\\xd1\\x4f\\x08\\x96\\x3f\\x8d\\xeb\\xb3\\xee\\x14\\xe2\\x06\\x06\\x68\\xe1\\\n\\x58\\x1c\\x6e\\x59\\xcb\\xa9\\xd6\\x2d\\xd3\\xed\\x06\\x0c\\xd2\\x32\\x32\\xdb\\\n\\xec\\x55\\xae\\xb1\\xcf\\x48\\x46\\xb2\\x13\\x4f\\x10\\xd3\\x78\\x2f\\x15\\x8e\\\n\\x31\\xa7\\x54\\x84\\x1a\\x8a\\x44\\xda\\xeb\\x81\\x0c\\x12\\x34\\x40\\x44\\x06\\\n\\x13\\x61\\xc2\\x0b\\xaa\\x92\\x2f\\xc4\\x11\\xad\\x0b\\xd8\\xff\\x00\\x47\\x7b\\\n\\x92\\x3a\\x56\\x33\\x56\\x12\\xa5\\x13\\xd7\\x06\\x97\\x0c\\x97\\x6e\\x6c\\x75\\\n\\x78\\xd4\\x9d\\xe1\\x82\\x1b\\x7e\\x1b\\xcb\\xc7\\x43\\x42\\x25\\x30\\x22\\xda\\\n\\xc9\\x7c\\xed\\x28\\x8b\\x0e\\xc5\\xcd\\x82\\x8f\\x84\\x23\\xfb\\xb1\\xe0\\x25\\\n\\xda\\xc5\\xd4\\x46\\x1d\\x15\\xa9\\xd3\\x48\\x55\\xd0\\xc2\\xe0\\x36\\x7d\\xfd\\\n\\xa8\\x60\\x0b\\x82\\x31\\x20\\x49\\x99\\x47\\x42\\x08\\x82\\x5a\\x06\\xd0\\x60\\\n\\x05\\x47\\x24\\x85\\x28\\x46\\x8b\\x53\\xa3\\xb7\\x71\\xce\\xff\\x00\\x41\\x3d\\\n\\xf9\\x6d\\xb7\\xd0\\x4e\\x3d\\xcd\\x91\\x42\\x03\\x17\\xef\\x6f\\xf2\\xc0\\x53\\\n\\x6f\\x02\\xee\\x4b\\xb2\\x4f\\x7e\\x53\\x0b\\x21\\xf5\\x0d\\xb0\\x45\\x10\\x96\\\n\\x0d\\x63\\x54\\x80\\xfd\\x0a\\x7c\\x02\\xab\\xf3\\x1a\\x76\\x6b\\xcc\\xde\\x9c\\\n\\x8c\\x21\\x75\\x44\\xd5\\x9c\\x66\\x43\\x22\\x69\\x95\\xd8\\x0e\\x43\\xcd\\x25\\\n\\x9a\\xd9\\x3a\\x1e\\xd9\\xa0\\x7c\\x0e\\xd5\\xce\\x27\\xe8\\xa3\\x90\\x6a\\x01\\\n\\x27\\x10\\x07\\xbc\\x7a\\x69\\xf4\\xbf\\x79\\x01\\x69\\x30\\x68\\xcc\\x41\\x1e\\\n\\x09\\xf8\\xf4\\x7a\\xda\\x1d\\xa6\\x10\\x0d\\xc9\\x22\\x8a\\x95\\x0a\\xa3\\xd7\\\n\\x17\\x74\\x80\\x19\\xa0\\x32\\x5f\\x8d\\x84\\xf2\\x46\\x8c\\xad\\x1b\\xf8\\x13\\\n\\xe2\\x8a\\xee\\x01\\x1f\\x49\\xa1\\x3c\\x58\\x43\\x28\\x02\\x8b\\xa2\\x23\\xe4\\\n\\xa2\\x8e\\xb4\\xe2\\x09\\x68\\x8d\\x80\\x9d\\x71\\xdf\\x71\\x76\\x3d\\x5e\\x38\\\n\\x19\\x04\\xb2\\x26\\x6c\\x77\\x5a\\x80\\xa2\\xe4\\x6a\\x9c\\xf1\\xb7\\x13\\xf2\\\n\\x40\\xed\\xa6\\x4b\\x13\\xd4\\xbc\\x0d\\xa2\\x03\\xef\\x09\\x0b\\xa0\\x43\\xc8\\\n\\x78\\xc0\\x03\\x4d\\xa1\\xa7\\x98\\x16\\xc2\\x01\\x5d\\x7c\\xe4\\xd0\\xf9\\xe1\\\n\\x26\\xc7\\xe3\\xd3\\x5f\\x41\\x9a\\x82\\x74\\x4d\\x97\\x23\\x6b\\x41\\x17\\x6a\\\n\\xe6\\x13\\xf6\\x9e\\x42\\x8f\\xc4\\x41\\x35\\xd2\\x74\\xcd\\xff\\x00\\x54\\xd1\\\n\\x22\\xac\\x9b\\xd8\\x73\\x1c\\x0e\\x10\\x68\\x81\\x3c\\xa2\\x0a\\xbf\\x44\\x9f\\\n\\x59\\xf4\\x90\\xe3\\x7d\\x09\\x06\\xa8\\xd5\\x27\\x66\\x06\\xe9\\x08\\x93\\x94\\\n\\x00\\x06\\xdb\\xd0\\x3b\\x31\\x91\\x20\\xca\\xee\\x40\\x10\\xf1\\x68\\x91\\xd1\\\n\\x1e\\x8e\\x0a\\xfa\\xba\\xda\\xe3\\xbb\\xf4\\x7d\\x60\\x3a\\x31\\xb8\\xdd\\x68\\\n\\xbf\\x81\\xfd\\x0d\\xf3\\x27\\x4c\\x0c\\xb8\\xd4\\xbd\\x50\\xf5\\x4f\\xa3\\x16\\\n\\x39\\x75\\x93\\xe6\\x81\\xc1\\x8f\\xa6\\x6b\\x78\\xae\\x12\\xc6\\x16\\xa1\\xc3\\\n\\x66\\xf6\\x69\\xc7\\x98\\x42\\x51\\xcf\\x26\\x04\\x45\\x95\\x3f\\xae\\x38\\x83\\\n\\xf1\\x1c\\xe0\\x44\\x02\\xba\\x3f\\x65\\xc8\\x24\\x56\\x4e\\xf9\\x71\\xb0\\xed\\\n\\x05\\x9a\\x41\\xd9\\xf7\\x2f\\x33\\x0e\\x51\\x56\\x8e\\xe6\\x37\\xbd\\x65\\x52\\\n\\xfd\\x52\\x42\\x8e\\x9b\\x39\\xd2\\x5d\\xa6\\xd2\\x24\\x68\\xaa\\x17\\x4f\\x44\\\n\\xce\\x6e\\x98\\x35\\x5a\\xe0\\x46\\x3e\\x2e\\xc2\\xab\\xd6\\x7e\\x43\\xa2\\x94\\\n\\x4f\\xac\\xe6\\x31\\x55\\x10\\x52\\x9f\\x3d\\x34\\x10\\xa2\\xf4\\xc2\\xaa\\x6a\\\n\\x20\\x70\\x91\\x8f\\x67\\x80\\x78\\x98\\x72\\x19\\x2d\\x32\\x28\\x37\\xd3\\x42\\\n\\x77\\x81\\x19\\x68\\xc7\\x91\\x8a\\x88\\x69\\x2f\\xdb\\x93\\xf9\\xab\\xd5\\x53\\\n\\x0d\\xbe\\x02\\x51\\x18\\xff\\x00\\x36\\x18\\x29\\x27\\x03\\x00\\x11\\x02\\xe0\\\n\\x7f\\xe0\\x5f\\x62\\x34\\xab\\x8f\\x55\\xe5\\x8c\\x2f\\x0a\\xab\\x15\\x79\\x62\\\n\\x2b\\xa3\\xd1\\xc0\\x10\\x13\\x69\\xc9\\x0d\\xe6\\x3c\\x28\\x4e\\x5c\\x55\\x35\\\n\\x37\\x5e\\x82\\x24\\xa9\\xa0\\xd0\\xfd\\x38\\x47\\x0d\\x58\\xf8\\xc1\\xd6\\x95\\\n\\x09\\xb3\\x13\\x76\\xb6\\xe0\\x84\\x41\\x77\\x40\\xb0\\x8c\\xe6\\x14\\xbd\\x8e\\\n\\x2c\\x25\\x2e\\xc1\\x5a\\x63\\x1a\\x66\\xe8\\x20\\x08\\x95\\x29\\xa1\\x34\\x06\\\n\\xc6\\x53\\x9d\\x53\\x09\\x6c\\xc8\\x88\\x0a\\x86\\xf1\\x59\\x22\\x63\\x50\\xc1\\\n\\xdf\\x3f\\x52\\x63\\xfc\\xef\\xf1\\x5c\\x16\\x94\\xba\\x4c\\x82\\x23\\x43\\x24\\\n\\xd0\\x28\\x22\\xd4\\x0b\\xce\\x37\\x23\\x3d\\xcb\\xc1\\x2d\\xeb\\x4b\\xeb\\x14\\\n\\xf8\\xbf\\x03\\x94\\xd7\\xe4\\x2a\\x4c\\x6e\\x0b\\x5e\\x15\\x62\\x68\\xd6\\x5b\\\n\\xf7\\x9a\\xc6\\x42\\x5f\\xba\\x76\\x2a\\x81\\xab\\xe3\\x87\\xcb\\x4c\\x5a\\x2f\\\n\\x69\\x4c\\x25\\xd0\\x19\\xd6\\x1a\\x1b\\xa4\\xd8\\x78\\x82\\x9e\\x87\\xa1\\x9b\\\n\\x67\\x24\\x36\\xe3\\xb1\\xfb\\xa3\\x48\\x29\\x87\\xf0\\xd9\\x12\\x4c\\x23\\xd4\\\n\\xf4\\x77\\xcc\\x64\\x7e\\xec\\x1d\\x46\\xef\\x01\\x0b\\x72\\x79\\x73\\x83\\x84\\\n\\x1a\\x9b\\x07\\xc4\\xd5\\xa8\\xb4\\xb9\\x00\\x75\\xb3\\xab\\xbb\\x1e\\x21\\x78\\\n\\x1a\\x8e\\x21\\x11\\x21\\x7d\\xa0\\x52\\xab\\xa6\\xed\\x93\\x68\\xc4\\xc2\\x4a\\\n\\xfe\\x04\\x1c\\xa4\\x6a\\xe6\\x05\\xaa\\x34\\x9e\\xac\\x63\\x8e\\x52\\x37\\xba\\\n\\x15\\x3a\\x72\\x48\\xe8\\xa8\\xe7\\x3a\\xca\\xcd\\x29\\xbf\\xe0\\xcf\\x1b\\x86\\\n\\x29\\x8a\\x8d\\x00\\xae\\xd7\\x74\\xfe\\x6c\\xce\\x8d\\xca\\x11\\x67\\x56\\xc8\\\n\\x82\\x47\\x6e\\xee\\xb8\\xca\\xd0\\x2d\\xda\\x72\\xbc\\x91\\x4f\\x33\\x4e\\xb8\\\n\\x85\\x0a\\x94\\xc0\\x55\\x08\\xc4\\xaa\\x29\\x16\\x54\\xdb\\x24\\xef\\xe8\\x0b\\\n\\x90\\x95\\x1e\\x82\\xa1\\x3b\\x66\\x6d\\xe0\\x45\\x65\\xc9\\x17\\xc5\\x17\\x32\\\n\\xd9\\x1b\\x7e\\xd3\\x99\\x19\\xda\\x13\\xcc\\x53\\xe8\\x89\\x4f\\x70\\xe3\\xb4\\\n\\xcc\\x23\\xaf\\x68\\xc8\\x5e\\x08\\x77\\x08\\xf4\\x31\\xed\\x61\\xdd\\xa0\\x6f\\\n\\xd3\\x23\\x00\\xe2\\xa4\\xa3\\x70\\x7c\\xdc\\x32\\x6b\\x28\\x25\\x1a\\xa9\\x3c\\\n\\x37\\x07\\xfa\\x7c\\x11\\x3e\\x84\\x2c\\x5a\\x2f\\x91\\xfc\\x15\\x91\\x9c\\x86\\\n\\x75\\x3a\\x19\\x0e\\xa5\\xd7\\xa8\\xe6\\x80\\xa9\\xd6\\xf4\\x83\\xe3\\x44\\xf6\\\n\\x9c\\x12\\xd1\\x60\\x00\\x1a\\x1c\\xb3\\x73\\xd6\\xde\\x64\\x98\\x91\\xb0\\x4e\\\n\\x8e\\x93\\x45\\xe4\\x64\\x66\\xa5\\xaf\\x72\\x2a\\x53\\x2b\\x0e\\x7a\\xc3\\x01\\\n\\xee\\xca\\x0b\\xe9\\xf0\\x65\\x3a\\xb7\\xcc\\x54\\x1b\\x85\\x44\\x38\\x3e\\x1a\\\n\\x4d\\x10\\x7d\\xc7\\xee\\x79\\x28\\x50\\x50\\x16\\xcd\\x94\\x0d\\xfc\\x63\\xda\\\n\\x10\\xc5\\x18\\x81\\x6a\\x6e\\xa6\\xe3\\x40\\x1c\\x47\\x83\\x43\\x09\\xd6\\x88\\\n\\xe9\\x35\\x91\\x4e\\x02\\x36\\x01\\x80\\x12\\xa6\\xd0\\x66\\x9f\\x9d\\xa8\\xd8\\\n\\xca\\x69\\x17\\x63\\xe3\\x1f\\x44\\x80\\x53\\x4c\\x9d\\x1a\\x34\\x17\\x86\\x29\\\n\\x51\\x0d\\x44\\x87\\xa1\\xc0\\x36\\x3d\\x66\\x0d\\x9d\\x12\\x80\\xba\\x14\\xd9\\\n\\x64\\x86\\x55\\x3e\\xd0\\xa6\\xaf\\xdc\\x0b\\x6b\\xaf\\x70\\x2a\\xcf\\x00\\x0a\\\n\\xf1\\x47\\x6b\\xd3\\x86\\xa3\\x5d\\x74\\xb7\\x53\\x53\\x21\\xed\\xd6\\x6b\\xf5\\\n\\x8a\\xa5\\x78\\xc8\\x05\\x30\\x34\\xc3\\x1c\\xad\\xd1\\x9e\\x4c\\xd0\\xa6\\x9b\\\n\\xc4\\xa9\\x6b\\x38\\x6c\\x00\\x34\\x5b\\xed\\x83\\x83\\x76\\xf9\\x0c\\xfd\\xa5\\\n\\x20\\x29\\x77\\x88\\x30\\x87\\x05\\x0d\\x52\\x45\\x6f\\x6d\\x30\\x21\\x4a\\xd2\\\n\\x12\\x04\\x43\\xd8\\x9a\\xe0\\x26\\x4c\\x82\\x05\\x64\\x4f\\x5f\\x46\\x3e\\x6d\\\n\\x99\\xa1\\x5c\\xb4\\x8e\\xa0\\x42\\x3d\\xb6\\x07\\xce\\x31\\x91\\x4b\\x7a\\x09\\\n\\x0a\\x48\\x45\\xd6\\xea\\x90\\xc8\\x66\\xb6\\xc3\\xb6\\x46\\xd1\\xfa\\x8c\\x75\\\n\\x20\\x5f\\x5b\\x44\\xd8\\x63\\x72\\x14\\x1c\\x82\\x8f\\xa3\\x75\\xd1\\xd6\\x26\\\n\\x20\\x23\\x02\\xfa\\xd6\\xa7\\x4a\\x36\\xc5\\x86\\xdd\\xc1\\x86\\x74\\x8d\\x72\\\n\\xe8\\x06\\x11\\xb4\\xc5\\xd2\\xb6\\x21\\x13\\xd0\\xde\\x4a\\x46\\x80\\xe1\\x3d\\\n\\x5e\\x4d\\x4c\\x40\\x07\\x08\\x7c\\x9f\\x83\\x0e\\x54\\x9a\\x21\\x21\\x43\\x73\\\n\\x93\\xe0\\xf2\\xe7\\xc1\\x7d\\xaa\\x0a\\x30\\x1b\\x02\\x4c\\x12\\x38\\x9b\\xfe\\\n\\x70\\x34\\x0e\\x47\\x02\\xc6\\xaa\\x53\\xcd\\xd4\\x84\\xb8\\xae\\xa1\\x6a\\xb2\\\n\\x0a\\xb6\\x41\\xc0\\x26\\xd9\\x5a\\xb0\\xe2\\xe0\\x67\\x5f\\x6f\\x41\\x38\\x1f\\\n\\x97\\xec\\xfb\\x31\\xa6\\x81\\x08\\x4e\\x88\\x12\\xdf\\xe0\\x90\\x4e\\x06\\x9f\\\n\\x10\\xd2\\x8e\\x6b\\x59\\x2d\\xd6\\x93\\x07\\x35\\x34\\x3b\\x59\\x30\\x8d\\x18\\\n\\x78\\x7a\\xc5\\xbf\\x3d\\x49\\x2d\\x54\\x5c\\xf9\\x9f\\x21\\x8b\\x29\\x6c\\x99\\\n\\x64\\x74\\x50\\x24\\x15\\xd3\\x2b\\xc0\\xe5\\x08\\x3d\\xdb\\x9c\\x78\\xc7\\x67\\\n\\x2e\\x6f\\x01\\x0b\\x03\\x44\\x52\\xd2\\x98\\x79\\x12\\xe1\\x83\\x6b\\x6b\\x06\\\n\\xf1\\x61\\x43\\xeb\\xbf\\x8b\\x81\\xa5\\x44\\x38\\xed\\x48\\x0a\\x68\\x8f\\x44\\\n\\x9d\\xb6\\x7f\\x20\\xc9\\x98\\xc0\\x84\\x5a\\xd0\\x71\\xdb\\xad\\x42\\x6d\\x1f\\\n\\xa0\\x64\\x81\\x18\\x0e\\xfe\\x60\\xa1\\xb4\\x14\\x0d\\x88\\xc1\\x8e\\xcc\\x23\\\n\\xd9\\x43\\xd7\\x02\\x47\\xd0\\x19\\x07\\xc5\\xb6\\xa0\\x59\\x5f\\x81\\x6f\\x83\\\n\\x0e\\x44\\x74\\x5d\\xb1\\x6b\\xb5\\x7c\\xac\\x76\\xb9\\x82\\x4e\\x85\\x3a\\x69\\\n\\x93\\x43\\xd2\\x8b\\x06\\x17\\xd1\\x3f\\x05\\x0b\\xe0\\xd8\\xfe\\x6e\\xfd\\xc0\\\n\\x98\\xf9\\x21\\x36\\x2a\\xb4\\xea\\x4a\\x74\\x29\\xa9\\x92\\x71\\x1e\\x0b\\x0e\\\n\\xa5\\x24\\x2b\\xa7\\xa5\\x15\\x72\\x3c\\xd8\\xa3\\x51\\x4f\\x18\\x80\\x24\\x02\\\n\\xc8\\xe7\\x91\\x60\\x06\\x7c\\x00\\xa2\\xd2\\x64\\xcd\\x37\\x2d\\x16\\x3c\\x22\\\n\\x51\\x14\\x4e\\xe4\\xad\\x0e\\x0a\\x86\\xad\\x65\\xdb\\x45\\x74\\xd0\\x01\\x21\\\n\\xdc\\x86\\x2e\\x95\\x8a\\x8e\\x50\\xf2\\x82\\x73\\x4d\\x40\\xc0\\x2b\\x09\\xbe\\\n\\xda\\x08\\x19\\xf1\\x0b\\xa1\\x68\\x9d\\x8d\\x98\\x88\\x1a\\x1a\\xf7\\x2b\\x1c\\\n\\x88\\x8d\\x9a\\x7d\\x79\\xf9\\x8f\\x76\\xf5\\xc5\\xeb\\x6d\\xd5\\xf9\\xe1\\xfa\\\n\\xfd\\xe5\\x22\\xc7\\xe3\\x11\\x2e\\xdf\\x3c\\xe7\\x81\\xdc\\x06\\xf6\\x8c\\x8e\\\n\\xc2\\x6a\\xa7\\x66\\xe5\\xba\\x2e\\x68\\xb3\\x32\\x3a\\xe3\\x1b\\x67\\xd1\\x3c\\\n\\x2b\\x4b\\x01\\xbb\\x36\\x88\\x77\\x4d\\x6a\\xdc\\xa9\\x65\\x1c\\x6d\\xd8\\x65\\\n\\x38\\x45\\x82\\x9a\\xc3\\xd3\\x8f\\x28\\x40\\xd6\\x70\\x69\\x74\\x1f\\xc6\\x05\\\n\\xab\\x16\\x6b\\xc0\\x08\\x0a\\x6b\\xa6\\x9f\\x32\\xbb\\x15\\x10\\x7f\\x30\\x84\\\n\\x38\\xd7\\x49\\xac\\xe8\\xa9\\xa6\\xad\\xc8\\x51\\x20\\x00\\x6b\\xb0\\xc6\\xbf\\\n\\x1d\\xee\\x9b\\xf9\\x78\\xb9\\xf7\\xa9\\x83\\x56\\x5d\\x3e\\x87\\x75\\x69\\x14\\\n\\xd7\\x62\\xde\\x99\\xda\\x32\\x1e\\x86\\xf5\\xc1\\xf6\\x86\\xc6\\x36\\x0b\\x3e\\\n\\x91\\x11\\xb5\\x64\\xee\\xbd\\x88\\xf2\\x18\\x90\\x9b\\x4b\\xe1\\x21\\x15\\xb2\\\n\\x14\\x1e\\x28\\x29\\x41\\xce\\xa2\\x16\\xe7\\xe9\\x03\\xa1\\x89\\x86\\x4a\\xe4\\\n\\xc7\\xda\\x4a\\x19\\xb7\\x58\\x8e\\x57\\x95\\xa5\\x50\\x23\\xb6\\x0e\\xd8\\x57\\\n\\x08\\x80\\x37\\xa7\\x1a\\x24\\x1e\\x0e\\xb6\\xef\\x78\\xef\\x05\\x6e\\x83\\xe3\\\n\\x07\\x91\\xbd\\xaa\\xa7\\x16\\x1f\\xd7\\x45\\x92\\xcb\\xea\\x90\\x80\\xb8\\x8f\\\n\\x66\\x2f\\x4d\\x18\\x09\\xf0\\x05\\x23\\x9e\\xc7\\x3c\\x44\\x43\\xf1\\xd3\\xbd\\\n\\x03\\xd1\\x34\\x18\\x13\\x3c\\xe0\\xe8\\xe0\\x66\\x98\\x43\\x37\\x5f\\x5b\\x5e\\\n\\x04\\x9f\\x0b\\x0b\\x1f\\x04\\x99\\xbc\\x8d\\xfd\\x12\\x2f\\x34\\x8e\\x23\\xa3\\\n\\x46\\xd2\\xe3\\x40\\x5a\\x3a\\x05\\xc3\\x34\\xe1\\x3c\\xa2\\xf5\\x9d\\xc0\\xa9\\\n\\xad\\xac\\x63\\x35\\x65\\x17\\xb5\\x42\\x44\\x02\\x8c\\x61\\x77\\xb1\\xf1\\xc0\\\n\\x42\\x93\\xd6\\x89\\x02\\x4c\\xa1\\x4b\\x21\\x44\\x16\\xf0\\x5b\\xaa\\xb0\\x07\\\n\\x7f\\x48\\x57\\x8a\\x2f\\xa0\\x56\\xf1\\x62\\x99\\x65\\x3b\\x98\\x9a\\x1d\\x1c\\\n\\x2c\\x9d\\x5f\\x30\\x48\\x4e\\x98\\xe5\\xca\\x10\\x49\\xb1\\x54\\x50\\x1a\\xd9\\\n\\x36\\xc7\\x50\\x18\\x92\\x9c\\xcd\\x85\\x7c\\xe8\\xb8\\xe9\\xe2\\xd1\\x60\\xa3\\\n\\x26\\x95\\x71\\x75\\x06\\xb5\\xa7\\xf2\\xeb\\x7e\\x71\\x18\\x3f\\x46\\xd6\\xc1\\\n\\xd6\\x95\\x0c\\x07\\x04\\xbc\\x2d\\xb2\\x1e\\x43\\x6a\\x34\\xd1\\x52\\x90\\x12\\\n\\xaf\\x4c\\xc2\\xd5\\xae\\x33\\x7d\\x4c\\x77\\x33\\x4d\\x90\\x81\\x18\\x2f\\xed\\\n\\xbb\\x2d\\x54\\x49\\xc0\\x43\\x5a\\xa6\\x81\\x7c\\x2e\\x09\\xab\\x5d\\xcd\\x25\\\n\\xae\\xcc\\x1e\\xfb\\x2d\\xc8\\xb2\\x5e\\x8e\\xb6\\x96\\x9b\\x85\\xbe\\x0c\\x11\\\n\\xbf\\xbf\\x20\\x4f\\x46\\x0c\\x03\\x67\\x42\\xbf\\x94\\x80\\xea\\x71\\x45\\x8e\\\n\\x00\\xea\\xe0\\xcc\\xa6\\xf6\\xd8\\xb5\\x9d\\x82\\xe3\\x7e\\xaa\\x80\\xf0\\x74\\\n\\x23\\xbf\\x77\\x50\\x29\\x41\\x74\\x5a\\x75\\x6d\\xf2\\xfe\\xbc\\x1c\\x37\\xe1\\\n\\x00\\x57\\x95\\x27\\x4d\\xb6\\x7a\\x18\\xc4\\xc5\\xdd\\x1d\\x07\\x31\\x2d\\x0b\\\n\\x7e\\x58\\xd7\\x06\\xfb\\xe9\\xf1\\x08\\x8a\\x03\\x92\\x67\\x7a\\x09\\x96\\xbe\\\n\\x64\\xd7\\x70\\x0e\\x1a\\xf0\\x5d\\x9d\\x94\\x36\\xbc\\xb3\\x90\\x7a\\xf3\\x24\\\n\\x34\\x6d\\x3e\\x71\\xf0\\x83\\x54\\x6e\\x3a\\x79\\x9a\\x41\\x0a\\x44\\x68\\x34\\\n\\x38\\xef\\x9f\\x96\\x56\\x7d\\xa6\\x83\\x8d\\x90\\xc2\\xa4\\x76\\x7e\\xb2\\x63\\\n\\xdd\\x2c\\x01\\x3d\\x8a\\x2b\\xf9\\x6a\\x98\\x4e\\xc4\\x7a\\x49\\x46\\xf6\\x05\\\n\\x82\\xbb\\x46\\x40\\x05\\xe1\\xbd\\x83\\x57\\xd2\\x4f\\x0d\\x06\\x34\\x12\\x9e\\\n\\xda\\x07\\xa8\\xf6\\x34\\xbd\\x35\\xc3\\x20\\xbc\\xf0\\xa6\\x99\\x27\\xb2\\x45\\\n\\xfd\\x63\\xaf\\x03\\xba\\xb0\\x3f\\x3f\\x5f\\x73\\x59\\x60\\x79\\x09\\x7a\\x3b\\\n\\xd9\\xbd\\x44\\xc0\\x6e\\x5b\\x54\\x2e\\x81\\x2c\\x8d\\xfa\\x29\\x5a\\x17\\x22\\\n\\x7b\\x2e\\xc6\\x83\\x0f\\x3a\\x4f\\x7e\\xb3\\x46\\x3a\\x65\\xad\\x77\\x5b\\x75\\\n\\xa6\\xd0\\x35\\x81\\xb6\\x56\\xfa\\x02\\xff\\x00\\x6c\\xed\\xea\\xb2\\x01\\x04\\\n\\xf2\\x9f\\x0e\\x91\\xdf\\x48\\xc2\\xca\\x99\\x21\\x82\\x54\\x4b\\xbb\\x81\\x5a\\\n\\x95\\xd2\\xdf\\x93\\x19\\xf5\\xb1\\x0f\\x70\\xd0\\x8f\\x82\\x3c\\xde\\x7c\\xea\\\n\\xf8\\x46\\x3e\\x14\\x57\\x76\\x85\\xcd\\x63\\x92\\x6c\\x4d\\xa7\\xe4\\xef\\xe2\\\n\\x4b\\xbc\\xaa\\x06\\xcb\\x4f\\x1c\\xdd\\xfe\\xbe\\x71\\x8b\\x35\\x4e\\x02\\x5b\\\n\\x8e\\xce\\x94\\x25\\x77\\x91\\xca\\x0f\\x44\\xa0\\x46\\x87\\x72\\xf6\\xae\\xe6\\\n\\xcf\\x8b\\x9a\\x66\\x5b\\x14\\xd1\\x20\\xd5\\x24\\x5b\\x5a\\x37\\x95\\x89\\x04\\\n\\x3c\\xbf\\x33\\x7e\\x37\\x26\\xa7\\xb6\\xbc\\x5e\\x2e\\x99\\x54\\x60\\xfb\\x41\\\n\\x54\\x6a\\x40\\x35\\x6f\\x78\\x35\\x4a\\x05\\x62\\x93\\x6c\\x48\\xe4\\xd6\\x11\\\n\\xc9\\x25\\xb7\\x76\\xb2\\x89\\x40\\x19\\x67\\x53\\xb9\\xbb\\x2a\\x86\\x8d\\xdd\\\n\\x95\\xc7\\x5f\\x83\\x17\\xbc\\x79\\x49\\x4c\\x0a\\x93\\x95\\x8b\\xba\\x4c\\x38\\\n\\x7b\\x01\\xe0\\x3b\\x2d\\x5a\\x45\\x01\\x2f\\x46\\x6a\\x54\\xa0\\x78\\x15\\x42\\\n\\x24\\xbd\\xf3\\x11\\x36\\x16\\x53\\x0c\\xf8\\xa2\\x6b\\x51\\x5c\\x5f\\x14\\x4d\\\n\\x03\\x6d\\x0e\\x02\\x10\\x86\\x1a\\x2b\\xd5\\x55\\x76\\xaf\\x6a\\xeb\\x59\\xc7\\\n\\x3d\\xc5\\x7d\\x75\\x41\\x40\\x85\\x1a\\xbd\\xa8\\xa4\\x0f\\x83\\x52\\x27\\x26\\\n\\x16\\x3f\\x1e\\x35\\xfe\\x22\\x30\\xae\\xc5\\x3b\\x93\\x49\\x91\\x23\\xc7\\xa1\\\n\\x6d\\xec\\x7b\\x81\\x7d\\x81\\x5c\\x6c\\x74\\x38\\x55\\xed\\x0c\\xd4\\xed\\x14\\\n\\x3d\\x40\\xec\\x51\\x65\\x42\\x60\\x88\\x77\\xee\\xe5\\xb9\\xf6\\xe2\\xa4\\x2c\\\n\\x2c\\x81\\x74\\x09\\xa4\\x34\\x16\\x53\\x82\\x7c\\xd8\\x43\\x9e\\xb0\\x8f\\x40\\\n\\x8f\\x46\\x6d\\xe1\\x81\\xa5\\x41\\xc0\\xd0\\x15\\x6b\\xa4\\x3c\\x13\\xd1\\x02\\\n\\x14\\x16\\x9a\\x63\\x72\\x70\\x4d\\xd4\\x32\\x07\\x52\\x90\\x26\\xf6\\xdd\\x08\\\n\\xb6\\x58\\x77\\xe6\\x3a\\x20\\xdd\\x1a\\xc0\\x68\\x4f\\x60\\x00\\xa8\\x50\\xd5\\\n\\x04\\x54\\x62\\x94\\xc5\\x05\\x78\\xf8\\x53\\xee\\x9b\\xc9\\x83\\x90\\x8c\\x9a\\\n\\xaa\\x2e\\xe1\\xa3\\xba\\x96\\xf6\\x38\\xd0\\x1b\\x42\\xf6\\xa6\\x36\\x48\\xae\\\n\\xb1\\x0a\\xd2\\x88\\x31\\x41\\x20\\x0a\\xda\\x88\\x20\\x5a\\xef\\xd1\\xa3\\x24\\\n\\x44\\x33\\xa0\\x70\\x12\\x78\\x01\\x81\\xac\\x1d\\x9e\\x20\\xf0\\x11\\xea\\x8f\\\n\\x08\\xf3\\x56\\xd1\\x96\\x9b\\xb0\\x1d\\x49\\x10\\x93\\xf3\\x4e\\xcc\\x9f\\x00\\\n\\xe9\\x22\\xce\\x8d\\x9a\\xc0\\x93\\xf7\\x2f\\xa6\\xa1\\x82\\x33\\xe9\\xb6\\x8b\\\n\\xaa\\x9e\\x65\\xf8\\x90\\x2d\\x69\\x31\\xb1\\x3c\\xb6\\xc9\\x30\\x1c\\xe1\\xb5\\\n\\xb4\\xe8\\x05\\xd3\\xa8\\xcc\\x69\\x50\\xa2\\x20\\x68\\x61\\xec\\x57\\x77\\xab\\\n\\x80\\x17\\x1f\\xf8\\xce\\x81\\x4f\\x3e\\xe2\\xa5\\x36\\x2e\\xee\\x23\\xcb\\x8c\\\n\\x0e\\xeb\\xd3\\xb1\\x0d\\x03\\xbc\\xdd\\xfa\\x87\\x24\\x58\\x7d\\x8b\\x0d\\xf1\\\n\\xe3\\x53\\xe7\\x28\\x53\\x08\\x84\\xa6\\x82\\xa5\\x51\\xdf\\xbb\\xed\\xcd\\x14\\\n\\x63\\xed\\x64\\x4a\\x63\\x71\\x1e\\x81\\x0f\\xec\\x86\\xab\\xf4\\x20\\x66\\xd3\\\n\\x7e\\x02\\x25\\xde\\xed\\x0c\\x26\\xac\\x11\\xf6\\x53\\x48\\x63\\xac\\xfc\\x2f\\\n\\x39\\x27\\x80\\xbf\\xbf\\x70\\xa6\\xae\\x49\\x06\\x3a\\x01\\x3a\\xd3\\xb9\\xe6\\\n\\x55\\x7a\\xbd\\x70\\xe1\\x7c\\xb3\\xb7\\x28\\x74\\x83\\x36\\x34\\x5f\\x0a\\x80\\\n\\x8d\\x39\\x08\\xec\\x2e\\x70\\xb9\\xe1\\x6d\\xfc\\x1e\\x63\\x9b\\xe8\\x1c\\x44\\\n\\xa4\\xdf\\xd9\\xa3\\xa5\\xe5\\xf3\\x3b\\x6e\\x16\\xbe\\x77\\x11\\x4d\\xb1\\x68\\\n\\x25\\x45\\x22\\x4d\\x28\\x54\\xb4\\x94\\x35\\xac\\x28\\x83\\x55\\x46\\xf4\\xe7\\\n\\xe2\\xd6\\xd3\\xb8\\xaf\\x1f\\x3b\\x98\\x40\\x6b\\x23\\xa7\\x30\\xed\\x89\\x26\\\n\\xb6\\xd4\\xc4\\x0c\\x3a\\x0e\\x8d\\x34\\x2b\\xb2\\xc1\\x4d\\xff\\x00\\x20\\x53\\\n\\xd0\\xc9\\x9b\\x96\\x9a\\x04\\x5f\\x04\\x67\\xca\\x23\\x04\\x15\\xd5\\x17\\x8f\\\n\\x60\\x62\\x2d\\x61\\x41\\x33\\x64\\x79\\x36\\xb5\\xd4\\x5b\\x38\\x24\\xec\\xca\\\n\\xd9\\x8b\\x54\\x6c\\x40\\x5a\\x8b\\x7e\\x88\\xe3\\x84\\x61\\x62\\x07\\x6b\\xef\\\n\\x6a\\xa1\\xf5\\x30\\x50\\x74\\x92\\x80\\xb7\\x4d\\x94\\x2a\\x8c\\x77\\x94\\x57\\\n\\xc4\\x27\\x9e\\x1d\\x33\\xd2\\xb2\\x41\\x9c\\xdd\\xf1\\x21\\x9e\\x9d\\x12\\x6f\\\n\\xd9\\x85\\x10\\x15\\x91\\x40\\xcd\\x0d\\xc9\\xaa\\x0e\\x7a\\x88\\xcd\\x77\\x6f\\\n\\x51\\xcf\\xb2\\x12\\xc9\\xd0\\x46\\x50\\xe3\\x84\\xf0\\x60\\x93\\x8a\\x8a\\x14\\\n\\xc3\\x15\\xe6\\x11\\xb3\\x44\\xc9\\x54\\x0a\\x99\\x2f\\x8e\\xa3\\xbd\\xad\\x21\\\n\\x16\\x16\\xed\\xa1\\x97\\x46\\xfa\\xdb\\x09\\x44\\x00\\x33\\x89\\x9d\\xde\\x85\\\n\\x9b\\xb2\\xd2\\x34\\x06\\x2d\\x2b\\x80\\xc0\\xd0\\x99\\x28\\x05\\x07\\x40\\x1a\\\n\\xe6\\x13\\x3c\\xfa\\x19\\x11\\x75\\x07\\x03\\x03\\x58\\x5a\\xe8\\xc5\\x68\\xc9\\\n\\xdb\\x7c\\xeb\\x0c\\xbb\\x27\\x2f\\xb7\\x4b\\x4b\\x92\\xb5\\x78\\x39\\x76\\xbd\\\n\\xd4\\x27\\x42\\x92\\x20\\x8c\\x29\\xf0\\xf7\\xdb\\x91\\xb2\\x21\\xc3\\xdc\\x07\\\n\\x0d\\xe6\\xf0\\x1e\\x81\\x13\\xd2\\x80\\x58\\x07\\xd4\\x6f\\xc7\\xba\\x83\\x4c\\\n\\x5b\\x80\\xc0\\x4b\\xae\\x7e\\xdd\\xb7\\x62\\x13\\x00\\x35\\x89\\x2b\\xad\\xea\\\n\\x4a\\x4c\\xf4\\xbe\\x46\\x13\\x01\\x44\\xc0\\xfe\\x4a\\x0f\\xc9\\xaf\\xb9\\x0b\\\n\\x02\\x3f\\x5b\\x89\\xb5\\x61\\xe1\\xb8\\x86\\x1c\\x6d\\x30\\xf1\\xd4\\x7a\\x3f\\\n\\xc0\\x91\\x51\\x52\\xc0\\x23\\xf0\\x6e\\x4a\\x7c\\x80\\xdd\\x71\\x7e\\xb8\\x90\\\n\\xa2\\x58\\xe4\\x77\\x34\\x8c\\x55\\x49\\x7c\\xd5\\x9b\\xd6\\x97\\x39\\x38\\xc9\\\n\\x13\\x20\\x97\\x3f\\xd1\\x9c\\x71\\xc0\\x0e\\xe3\\xf0\\x71\\x44\\x06\\x68\\xb0\\\n\\x8b\\xd6\\x6c\\x9b\\x39\\xc8\\xba\\x90\\xdf\\xe0\\x31\\xd0\\x47\\x04\\x9d\\x83\\\n\\x19\\x10\\xec\\x6d\\x61\\xb2\\x81\\x39\\xe5\\x5a\\xb5\\xb9\\x67\\xb6\\x9b\\xa3\\\n\\x7f\\x0f\\xa5\\x8f\\xbd\\x07\\x54\\x14\\x53\\x08\\xde\\x23\\xc2\\x31\\x27\\x0f\\\n\\x1c\\x14\\xe0\\x73\\x00\\x82\\x57\\x2c\\xc1\\x1c\\x6f\\x49\\x7e\\x97\\x5c\\x91\\\n\\x0e\\x86\\x7c\\x4f\\x5b\\x54\\x18\\x27\\x08\\xd2\\xfe\\x46\\xe2\\x2c\\x42\\x65\\\n\\x7a\\xac\\x51\\x69\\xfc\\xbc\\x55\\x7c\\x23\\x87\\xb7\\x4e\\x7c\\xc1\\x41\\x44\\\n\\xb5\\x55\\x35\\x30\\x10\\xba\\x80\\x3e\\xdd\\x24\\x2e\\xdf\\x5b\\x9e\\x5d\\x67\\\n\\xd1\\xc7\\xfb\\x22\\xbb\\xb8\\xe1\\x5d\\x15\\x11\\x2b\\xc8\\xd4\\x57\\x8c\\x36\\\n\\x75\\x96\\x68\\x75\\xbc\\x31\\x40\\x16\\xf8\\x36\\xaa\\x0f\\x41\\xc1\\x98\\x43\\\n\\x45\\x96\\x64\\x7b\\xa4\\x56\\xb7\\xa0\\x2d\\xb9\\x0b\\x93\\xad\\x00\\x81\\x57\\\n\\xbf\\x1f\\xe0\\x37\\x1a\\xf1\\x0c\\x97\\x75\\x1d\\x8b\\x10\\x1d\\x92\\xc3\\x8b\\\n\\x8f\\x78\\x34\\x4a\\x83\\x7f\\x84\\xeb\\x43\\x0f\\x7e\\x5e\\x2f\\x56\\xf1\\x52\\\n\\xdb\\x67\\x60\\x73\\x21\\x04\\xc0\\xa9\\x51\\xe0\\x78\\x45\\x76\\x6a\\x8a\\xe0\\\n\\x6a\\x24\\x23\\xa2\\xf1\\x14\\x97\\x59\\xb4\\x47\\x22\\x85\\x53\\xd0\\x2c\\xe5\\\n\\xd8\\x47\\x71\\xd7\\x23\\xdc\\x0b\\xf8\\x2e\\x68\\x90\\xfb\\x32\\xc1\\xe9\\x77\\\n\\x0c\\x87\\x44\\x15\\xa1\\x48\\xe9\\xac\\x98\\xc7\\xe6\\x44\\x1a\\x7a\\x7a\\x71\\\n\\x89\\xb4\\x81\\x28\\xb5\\x36\\x15\\x20\\x51\\xd6\\x55\\x99\\x25\\x83\\xa8\\x92\\\n\\xf6\\xaa\\x12\\x86\\x01\\xda\\x44\\x8a\\x50\\xbb\\xb7\\x66\\x7a\\x14\\x48\\x24\\\n\\xe2\\xb5\\xa3\\x08\\x4c\\x1a\\x31\\x8e\\x85\\x38\\xa0\\x4a\\x84\\x3a\\x1c\\x98\\\n\\x99\\x8f\\xe2\\x40\\x04\\x7b\\xd3\\xbc\\xa7\\x78\\x32\\x67\\xa9\\xe8\\x62\\x4c\\\n\\x0d\\xc8\\x5a\\xe1\\x8d\\x3f\\xb6\\x97\\x93\\x08\\xbb\\xd4\\x79\\x2e\\x08\\x93\\\n\\xa3\\x83\\x7a\\x61\\x7c\\x7c\\x0c\\x9d\\xe7\\xd8\\x74\\xee\\xd7\\x98\\xa8\\x71\\\n\\x1b\\x47\\xc4\\x90\\xf4\\xce\\x08\\x21\\x18\\x40\\xa1\\x96\\xf4\\x7c\\xed\\xc0\\\n\\xa3\\xc7\\x86\\x14\\x03\\xec\\xac\\x35\\x51\\xe1\\xa6\\xac\\x5f\\xc4\\x50\\xb5\\\n\\xb2\\xa2\\xba\\x12\\xdf\\x96\\x05\\x35\\xb7\\xc8\\x17\\xdd\\x60\\xb0\\xd4\\xfb\\\n\\x3f\\x36\\x74\\x86\\xdc\\x0a\\x55\\xa6\\xfb\\x10\\xa4\\x42\\x0a\\x12\\x55\\x72\\\n\\x08\\x8a\\xba\\x85\\x51\\x97\\x4d\\x47\\x99\\x04\\x48\\xba\\xa4\\x50\\x9a\\x6b\\\n\\xf1\\x68\\xd8\\x63\\x6e\\xa9\\xce\\xf4\\xc8\\xa6\\x5f\\x85\\x8a\\xa0\\x59\\xd0\\\n\\xc4\\x10\\xb8\\xb3\\x12\\x84\\xc0\\x84\\x37\\x81\\x44\\x26\\x1c\\x20\\x63\\xb0\\\n\\x81\\x05\\x5b\\x97\\x2b\\x26\\xf6\\xe3\\xe9\\x00\\xb3\\x89\\x08\\xd1\\x43\\xbf\\\n\\x06\\xb1\\xc3\\x9b\\x87\\xb1\\x81\\x3c\\x45\\x1c\\x55\\xb1\\x90\\x18\\x9d\\xdc\\\n\\x79\\x4e\\x06\\xa2\\xd5\\x35\\x83\\xef\\x04\\x0f\\xce\\x99\\x79\\x91\\x4d\\xe7\\\n\\x23\\x60\\xe9\\x88\\xf7\\xb5\\x75\\x2c\\x59\\xf8\\x6f\\xde\\x43\\x23\\x86\\x1b\\\n\\x51\\xb0\\xcc\\x03\\x2f\\x44\\xef\\xe5\\xb0\\x1d\\x84\\x4d\\x33\\x78\\xd2\\x92\\\n\\x44\\x8e\\xed\\x5c\\xd0\\xbe\\xe4\\x6f\\x24\\x04\\xc3\\x6e\\x2f\\x25\\x1d\\xcd\\\n\\x56\\x7b\\xf2\\x5d\\x7a\\x81\\x46\\x10\\x48\\x91\\x09\\x0c\\xde\\x74\\x56\\x82\\\n\\x3c\\x27\\x9f\\x64\\x6c\\x6d\\x3d\\x5b\\x74\\xf4\\xc3\\x00\\x5e\\xcd\\x94\\xd4\\\n\\x2d\\xf2\\x84\\x47\\x8a\\x01\\xde\\xa6\\x6e\\x6c\\x64\\x68\\xef\\xab\\x75\\x41\\\n\\x8e\\x1b\\xa1\\xc9\\x30\\x35\\x33\\x8a\\x11\\x5b\\xc0\\xdc\\x71\\x1c\\x5f\\x40\\\n\\xcd\\x13\\x34\\x37\\x58\\x7a\\x57\\x34\\xf2\\xf0\\x82\\xc0\\x9f\\x40\\x94\\xf4\\\n\\xdc\\x42\\x9b\\xc9\\x4a\\x78\\x89\\x56\\x1e\\xc4\\x91\\x25\\xda\\x4d\\xd1\\xf4\\\n\\x8c\\x32\\x2c\\x3c\\xc5\\xb9\\x00\\x51\\x36\\xc8\\xf5\\xa8\\xf6\\x59\\x0f\\x78\\\n\\xa1\\xd3\\x91\\xb3\\x16\\xac\\xb4\\x6c\\x56\\xa1\\x9d\\xe2\\x26\\x00\\x5f\\x8c\\\n\\x26\\xe1\\x44\\xa9\\xba\\x06\\xa4\\x38\\xd2\\x60\\xca\\xc8\\xc9\\x30\\x41\\xfd\\\n\\x83\\x58\\xa8\\x4d\\x1d\\x02\\x14\\xd7\\x62\\x97\\xd2\\xee\\xf1\\x4c\\x02\\x27\\\n\\xc0\\x28\\x3f\\x80\\x1f\\x00\\xb6\\xb8\\x30\\x2c\\x34\\xa2\\x48\\x39\\xa0\\x0f\\\n\\x51\\x9b\\xaa\\x8c\\x35\\x45\\xe8\\x71\\x8f\\x83\\xa3\\x78\\xdb\\x49\\x44\\xfe\\\n\\xf5\\x74\\xf9\\x7b\\x3d\\x99\\x70\\xda\\x74\\x4e\\xbb\\xf5\\x21\\xa3\\xc9\\x88\\\n\\x46\\x65\\xdb\\x03\\x6d\\xa9\\x1d\\x1e\\x19\\x3c\\x14\\x85\\xd1\\xf9\\x4e\\xd7\\\n\\xf0\\x7d\\x62\\x23\\x52\\x94\\x40\\x51\\xe0\\x76\\xf8\\xd0\\x65\\xa1\\x4c\\xec\\\n\\x91\\x7d\\xc0\\x43\\x6c\\x4d\\xe2\\x12\\x0f\\xee\\xe6\\x30\\x23\\xa0\\x22\\x37\\\n\\x66\\x29\\xe1\\xcc\\xec\\x57\\xc0\\x75\\x9e\\x7d\\x64\\xce\\xa4\\xc4\\xa7\\xa6\\\n\\x7e\\x59\\x46\\x9b\\xc7\\x4c\\xd3\\x6a\\x0b\\xe3\\xb1\\xba\\xc5\\x9d\\xc8\\x59\\\n\\x83\\x75\\xb0\\x10\\x1f\\x4e\\x1a\\xee\\x15\\xfb\\xe4\\xe5\\xb4\\x44\\x74\\xad\\\n\\x3e\\xfb\\x33\\x4c\\x46\\x01\\xe9\\x60\\xf9\\x87\\x50\\x5d\\xd8\\x03\\x0b\\x66\\\n\\x19\\x19\\x82\\xf2\\x0e\\x45\\xa1\\xdb\\xd3\\x67\\x77\\x0e\\x1c\\xa4\\x66\\x8f\\\n\\x24\\x45\\xf1\\x04\\xb8\\xdb\\xcb\\xc0\\x68\\x9b\\x64\\x74\\x13\\xee\\x71\\x82\\\n\\xd6\\xd0\\x69\\xa7\\xd2\\x50\\x58\\x27\\x55\\xcf\\x93\\xed\\xca\\x8c\\x01\\x9e\\\n\\x8b\\x26\\x4f\\x9c\\x52\\x0d\\xb7\\xc1\\x6b\\xcb\\x5f\\x9c\\x6c\\x36\\x84\\x02\\\n\\x34\\x10\\x1d\\x9b\\x99\\x9a\\xc4\\xb0\\x9d\\x9a\\x89\\x10\\x3d\\x42\\x71\\x6d\\\n\\xc5\\x26\\x36\\x66\\xb0\\x2e\\xc4\\x23\\x4d\\x73\\x36\\x96\\xac\\x3b\\x4c\\x96\\\n\\x3b\\x22\\xb1\\x4c\\xd3\\x71\\x08\\x17\\x62\\x74\\x17\\x40\\x5c\\x77\\x3f\\x37\\\n\\x66\\x83\\x5e\\x22\\xcd\\xa1\\x70\\xfc\\x6f\\x7a\\x52\\x3e\\x19\\x04\\x66\\x3f\\\n\\x72\\xf6\\x8f\\x27\\x05\\x98\\x54\\x2f\\x23\\x70\\xcb\\x6c\\x02\\x38\\xa4\\x03\\\n\\xa9\\xdc\\x34\\x14\\xce\\xd0\\x78\\x9f\\xab\\xaa\\xa8\\x11\\xf0\\xc9\\xab\\xd4\\\n\\x59\\xd0\\x1a\\x04\\x50\\xc3\\x8c\\x56\\xe9\\x92\\xf8\\x4e\\x63\\xb5\\xe8\\xeb\\\n\\xb8\\x91\\x3e\\x0a\\xdf\\x49\\x0a\\x89\\xcb\\x8e\\x42\\xa4\\x99\\x7e\\xc6\\x2a\\\n\\x36\\x82\\xaf\\x4c\\xa0\\x2e\\x44\\x08\\x7c\\x62\\xa7\\x60\\xe1\\x34\\x61\\x1e\\\n\\xd8\\x77\\x17\\x74\\x2b\\xd8\\xc9\\xe3\\x18\\x58\\xd2\\x20\\xab\\x21\\x41\\xb0\\\n\\x57\\xa2\\xad\\x8a\\x67\\x6d\\x22\\xf6\\x62\\x32\\x13\\x88\\x3c\\xb8\\x37\\x88\\\n\\x44\\x7a\\x2e\\x34\\x41\\x14\\x21\\xb1\\x83\\xf8\\xdc\\x3d\\x18\\xa8\\x27\\x70\\\n\\xa2\\x76\\xaf\\xeb\\x82\\x84\\x54\\x93\\x06\\x62\\x82\\xdc\\xd6\\x4e\\x0c\\xe9\\\n\\x12\\xf5\\x12\\xe8\\x2f\\x7b\\xb9\\x2b\\x5a\\xec\\xe4\\xe6\\xca\\x33\\x1d\\x9c\\\n\\x74\\xd8\\x0a\\xf7\\xec\\x21\\xa9\\xdd\\x68\\x5c\\x1f\\x65\\x6e\\x65\\xb1\\x16\\\n\\x40\\xa0\\x05\\x83\\xda\\x5d\\xfc\\xad\\x28\\x8d\\x04\\xed\\xb9\\xaf\\x3b\\x68\\\n\\xcd\\xb0\\xb1\\x8e\\x52\\xba\\xc2\\x76\\x19\\x60\\x5c\\xe1\\x5d\\x97\\xa3\\x14\\\n\\xd1\\x4d\\x30\\xd8\\x8c\\x0c\\x40\\x46\\xf5\\x60\\x82\\xd8\\x25\\x85\\xfa\\x54\\\n\\x48\\x0c\\x9d\\x79\\x69\\xf5\\x56\\x1f\\x28\\x7e\\xf1\\x8d\\xf7\\x62\\xc4\\x49\\\n\\xa0\\xc1\\x85\\x54\\x1d\\x33\\x5c\\x56\\x36\\xa5\\xcb\\x06\\x1b\\x68\\x2a\\x5a\\\n\\x16\\xae\\x88\\x8d\\x36\\x58\\xc1\\xee\\xb2\\x14\\x35\\xa8\\x57\\x4c\\xf3\\x99\\\n\\xf5\\x99\\xbf\\x1b\\x16\\x2b\\xc4\\xd0\\x41\\x7a\\x97\\x93\\xd7\\x4f\\xec\\x10\\\n\\x2c\\x8a\\xe8\\xf5\\xd5\\x36\\x7e\\xf1\\x08\\x74\\x55\\xce\\x12\\x39\\x04\\x9e\\\n\\x91\\xf0\\x6b\\x5f\\x06\\x07\\x1a\\x95\\x1c\\x2c\\xdf\\x29\\xe4\\x01\\xf2\\x7d\\\n\\xe6\\xd7\\xb3\\x45\\xd8\\x3d\\x2c\\x5a\\xba\\xeb\\x6e\\x30\\x6a\\x27\\xcc\\x23\\\n\\xaf\\xa7\\x1f\\x9c\\x6c\\x92\\xa0\\x4e\\x89\\xbd\\xdd\\x3e\\x6d\\x9e\\xab\\x69\\\n\\x86\\x4f\\x8d\\x48\\x5d\\x39\\xbc\\x80\\xd4\\xde\\x94\\x68\\x02\\x48\\x3c\\x30\\\n\\x11\\xc6\\x33\\x0f\\xd8\\x00\\x22\\x1d\\x0e\\x53\\x80\\x88\\x51\\x4b\\x21\\xe0\\\n\\x55\\x25\\x1a\\xa5\\x77\\x2d\\xd3\\x34\\x77\\xff\\x00\\x0c\\x1b\\x98\\x9f\\x0b\\\n\\x05\\x09\\x1d\\xac\\xc0\\xbd\\x1f\\x79\\xc1\\x95\\xc9\\xa3\\x7b\\x40\\xf4\\xb1\\\n\\x32\\x37\\x4f\\x16\\x30\\xd8\\x85\\x0b\\x04\\x7a\\x13\\x04\\x3b\\x77\\x0b\\xb0\\\n\\x8a\\xcf\\x65\\x86\\x61\\x74\\x36\\x11\\xc1\\x68\\x83\\x6d\\xd1\\xf4\\xca\\x02\\\n\\x15\\xca\\x52\\x4a\\x4e\\xa1\\x75\\x06\\x03\\x26\\xaa\\x54\\x50\\x1e\\x92\\x42\\\n\\xeb\\x17\\x9c\\x98\\x58\\x0a\\x21\\xe5\\x00\\xcc\\x36\\xb9\\x74\\xe6\\x80\\x82\\\n\\x68\\x1a\\xee\\x38\\x2f\\xa6\\xd1\\x28\\x24\\xb1\\x1d\\x4a\\x16\\xce\\x84\\x02\\\n\\x85\\x3b\\xf2\\x5f\\xe7\\x84\\x79\\x69\\xc4\\xc6\\xf7\\xb0\\x01\\xdf\\xa7\\x41\\\n\\xf3\\xd2\\x02\\xe4\\x77\\x2f\\xef\\x2d\\x4d\\x2b\\x0e\\x81\\x6f\\xb4\\xd3\\xe7\\\n\\x33\\xa1\\xf2\\x78\\xd8\\x88\\xf8\\x6d\\x3d\\x83\\xe6\\x49\\xd1\\x20\\xe1\\xf8\\\n\\x5e\\x1c\\xc6\\x17\\x94\\x7e\\x2d\\xa5\\x4f\\x51\\x67\\xce\\xb0\\x4c\\xc5\\xa0\\\n\\x3b\\x28\\xb6\\xd5\\x08\\x67\\x68\\x05\\xa1\\xd0\\xf9\\x8e\\x9b\\xf9\\x4c\\xdb\\\n\\x23\\xc2\\x81\\x5a\\xc6\\x15\\x9e\\xec\\x04\\x46\\xa5\\x74\\xf6\\x00\\x47\\x21\\\n\\x1f\\x96\\x23\\xa2\\x44\\x52\\x97\\x6d\\x6c\\xd3\\x85\\x88\\xd5\\x64\\xbf\\x22\\\n\\x23\\xb5\\xb4\\xa6\\x6b\\xe7\\xd1\\xf0\\xab\\x04\\x50\\x28\\xba\\xab\\x07\\xc5\\\n\\x79\\x62\\xcd\\x85\\xa9\\x09\\x50\\xeb\\x38\\xae\\x56\\x93\\x1d\\x12\\x28\\xe0\\\n\\xb8\\xcf\\x3b\\x09\\x4f\\x65\\x1b\\xdf\\x59\\x61\\x96\\x10\\x1c\\xde\\x6a\\x0c\\\n\\xad\\x94\\x8e\\xb0\\x03\\x9f\\xfe\\xe6\\xb9\\x5d\\x0b\\x64\\x87\\x4c\\x49\\x50\\\n\\x7e\\x74\\x18\\xbb\\x58\\x30\\xc2\\xd9\\x01\\x3a\\x83\\x45\\x43\\xc3\\x8a\\x98\\\n\\x98\\x7b\\x65\\x14\\x4f\\x50\\x27\\x70\\xf2\\x31\\x60\\xcb\\x48\\x91\\x42\\x84\\\n\\x65\\x2d\\xf8\\x6c\\x27\\xa9\\x83\\x45\\x00\\x1a\\x29\\xa1\\x5c\\x3f\\x1e\\x37\\\n\\x7b\\xa9\\xad\\x08\\x9e\\x98\\xba\\xbf\\x7b\\xe0\\x2e\\x77\\x1b\\x62\\x91\\x74\\\n\\xb8\\x0d\\xa1\\x9b\\x5f\\xf3\\xd4\\x15\\xe8\\x14\\xc2\\x6a\\xeb\\xd6\\x01\\x67\\\n\\xf8\\x10\\x5b\\x6e\\x75\\x85\\xe7\\x20\\x8d\\xdd\\x2b\\x4a\\xd6\\x08\\x3e\\xcd\\\n\\x81\\x5d\\xc9\\x40\\x03\\x4b\\x1b\\x8f\\x3a\\x88\\xb7\\xef\\x13\\xb6\\xd3\\xc4\\\n\\xf8\\xb0\\x23\\x52\\xa2\\x84\\x8d\\x7c\\x3c\\x28\\x37\\x39\\x2e\\xfe\\x80\\x28\\\n\\x86\\x33\\x80\\x70\\x0c\\x4a\\x1b\\x40\\xd1\\xd2\\x1c\\xc1\\x52\\x80\\xb3\\xb2\\\n\\x0e\\x52\\x40\\x36\\xdb\\x43\\x15\\xf2\\x53\\xa4\\xd9\\xfe\\x4c\\x14\\x97\\x1b\\\n\\x8e\\x29\\x8e\\x48\\x91\\x46\\x4e\\x50\\xe6\\xf5\\xe1\\x31\\x0d\\x09\\xd9\\x74\\\n\\x9f\\xc9\\x70\\x1e\\x92\\x56\\xcc\\x4e\\xc9\\x19\\x15\\x29\\xa8\\xa1\\xd0\\x36\\\n\\x3e\\x73\\x7d\\x77\\x05\\xab\\x8d\\x6a\\x19\\x82\\x84\\x61\\xd9\\xa2\\x61\\xdb\\\n\\x80\\x72\\xeb\\x18\\x22\\xa8\\xd7\\x0b\\x4c\\x0f\\x4b\\xa1\\xcf\\xd6\\xaa\\x01\\\n\\xcc\\x15\\xf2\\xc3\\x4e\\x50\\x26\\x16\\x01\\x8c\\x40\\xa7\\x69\\xd9\\x8d\\x9a\\\n\\xda\\x68\\x15\\x3f\\xf9\\x4e\\x2a\\x69\\x54\\x45\\x92\\x54\\xd5\\x6f\\xa9\\x58\\\n\\x9d\\x3b\\xe8\\x15\\x3c\\x24\\xa7\\xc8\\xec\\x0e\\xcf\\x71\\x83\\xc3\\xb3\\xa3\\\n\\x54\\x01\\x45\\xf3\\xc7\\xb2\\xb7\\xbd\\x83\\xc1\\x36\\x23\\x0b\\x5a\\xf8\\x66\\\n\\x26\\x55\\x08\\x94\\xa7\\xe9\\x6a\\x9a\\x8d\\xfd\\x6b\\x00\\xc0\\xa6\\x8a\\xcd\\\n\\x99\\x00\\xa5\\x29\\xb7\\xac\\x26\\x68\\xba\\x8c\\xb7\\x5a\\x08\\xda\\x59\\xf0\\\n\\xd9\\x02\\x93\\xbb\\x0d\\x4d\\x52\\x32\\x87\\x7e\\x5f\\x5e\\x46\\xa5\\x8a\\x1b\\\n\\x85\\x49\\xd8\\xed\\xcd\\x13\\xb0\\x27\\x67\\xd1\\xb5\\xcf\\x90\\xec\\xe6\\xf0\\\n\\x02\\xed\\x68\\x20\\xd1\\xf2\\x68\\x22\\x04\\xb4\\x04\\xcb\\xd5\\xa7\\x4b\\xad\\\n\\xb5\\x90\\xab\\x7c\\x17\\x74\\x23\\xcf\\xd0\\x49\\x62\\x59\\x4c\\xba\\x42\\xf3\\\n\\x90\\x4d\\x30\\xa4\\xc1\\x90\\x62\\x67\\x3b\\x48\\x45\\x6d\\xc8\\x86\\x14\\xda\\\n\\xee\\xc7\\x94\\x2f\\x27\\x09\\xe3\\x9f\\x62\\x42\\x6e\\x32\\x21\\xbe\\x00\\x23\\\n\\x15\\xf3\\xae\\x91\\xef\\x52\\x52\\x34\\xd2\\x7c\\xc2\\x37\\xe4\\x63\\x0b\\x05\\\n\\xb3\\x54\\xc1\\xc9\\xa0\\x14\\xdb\\xb1\\x00\\x54\\xe1\\x3b\\x80\\xe2\\xce\\x42\\\n\\x90\\xd4\\x27\\x76\\x81\\xd2\\xa6\\x5c\\xee\\xc3\\x12\\x0d\\x13\\xf7\\x0a\\xee\\\n\\x09\\x36\\x74\\xa0\\xb0\\x90\\x14\\xed\\xd3\\x7e\\x40\\x3a\\x10\\xd7\\x83\\xa6\\\n\\xcd\\x1e\\x0b\\x4b\\x8d\\x30\\x22\\x0b\\x49\\x35\\x64\\x90\\x15\\x81\\x08\\x99\\\n\\xe2\\x50\\xa5\\xd3\\xcb\\xe5\\x43\\x4d\\xb0\\x8d\\xa2\\x37\\x7c\\x9e\\x0f\\x03\\\n\\x43\\x90\\x17\\x14\\x96\\x9c\\x72\\x69\\x9a\\xdb\\xc1\\xd9\\x42\\x36\\x21\\x88\\\n\\x1e\\x68\\x26\\xaa\\x1d\\x18\\xb4\\x52\\xe1\\x1d\\x51\\x4d\\x43\\xb4\\x8e\\x2f\\\n\\xb4\\x00\\x75\\x3a\\x12\\x82\\xa4\\x23\\x5e\\xb9\\xaf\\x68\\x86\\x4f\\xa0\\xdb\\\n\\x30\\x41\\x9b\\x0b\\x02\\x29\\xe8\\x40\\xe0\\xf1\\x50\\xeb\\xc2\\x55\\x99\\xc8\\\n\\xd5\\x3f\\x71\\x67\\x02\\xab\\x3a\\x18\\x93\\x9f\\xb7\\xdd\\x57\\x7c\\x46\\x9b\\\n\\xa4\\x27\\xc1\\xcf\\xe2\\x20\\x54\\x9d\\x62\\xc5\\x9a\\x6e\\x25\\xd5\\x09\\x28\\\n\\xe2\\xc8\\xcd\\xb1\\x4c\\x99\\x6a\\x0f\\x84\\xdf\\x3b\\xc3\\x47\\xd6\\xd4\\x66\\\n\\x75\\x05\\xa8\\x2a\\x0d\\x0f\\xdd\\xb6\\x2e\\x68\\x01\\x64\\x98\\x0c\\xa1\\x77\\\n\\x99\\xe0\\x41\\x2a\\x46\\x08\\x45\\x70\\x31\\xd6\\xbc\\x7b\\x9a\\xfd\\x15\\x51\\\n\\x5c\\x5d\\xcd\\x80\\x68\\x9b\\xe2\\xd5\\xde\\x79\\x83\\x42\\x90\\x7d\\x2b\\x93\\\n\\x60\\x71\\xa0\\x6a\\xe2\\x80\\x13\\x4e\\x67\\xda\\xf7\\x2a\\x30\\x6c\\x19\\x5e\\\n\\xfc\\x76\\xdf\\xd2\\x20\\xba\\x2d\\x04\\xde\\x0d\\x4d\\x71\\x6d\\x38\\x58\\x47\\\n\\x03\\xf0\\x17\\x74\\x73\\xa0\\xca\\xd9\\x0e\\x62\\x5d\\xc7\\x4b\\x52\\x47\\x8a\\\n\\xd0\\xb0\\xe8\\x8e\\x49\\xe0\\xc6\\x4c\\xb1\\x86\\x85\\xf0\\x9b\\x00\\xed\\xcd\\\n\\x2c\\xf7\\xed\\x38\\xa3\\x6d\\x62\\x3b\\x00\\x98\\x36\\x8f\\xbf\\x03\\x20\\x47\\\n\\x10\\x36\\x91\\x11\\xd3\\x66\\x88\\xa5\\x17\\x84\\x50\\x1a\\xc2\\x86\\x08\\xed\\\n\\x4f\\x10\\x15\\x49\\x2f\\xa3\\x40\\x59\\xc3\\x65\\x20\\x65\\x06\\x97\\xea\\x68\\\n\\x2e\\x78\\x63\\x54\\x03\\x17\\xa6\\xcf\\x81\\x86\\x8a\\x82\\xf0\\xa9\\xa2\\x33\\\n\\xae\\x1b\\x18\\x6a\\x50\\xda\\x84\\xa4\\x4e\\xa8\\x7d\\xbd\\xd3\\x42\\xd4\\xc8\\\n\\x4c\\x6f\\x62\\xd1\\x7c\\x22\\xa6\\x35\\xe1\\x73\\x44\\xed\\x40\\x8e\\x35\\x06\\\n\\xa1\\xd4\\x01\\x14\\x8d\\x05\\x0a\\x83\\xe6\\x96\\x11\\xe8\\x26\\x12\\x35\\x12\\\n\\xe8\\x17\\x2d\\x06\\xc0\\x82\\x77\\x6a\\xc4\\xdf\\x4e\\xeb\\x17\\xce\\xb0\\x82\\\n\\x25\\x95\\xf0\\x22\\xbc\\x40\\x76\\x62\\xb5\\x7a\\x2a\\xcd\\xec\\x8f\\x6a\\x18\\\n\\xc0\\xcb\\xf6\\x16\\x84\\xf0\\x1f\\xe7\\x5c\\x49\\x72\\xd6\\xaf\\x41\\xd0\\x6c\\\n\\xdb\\xfe\\x2e\\x15\\x83\\xae\\xda\\xdd\\x69\\xba\\x34\\x6e\\xef\\x98\\xf3\\x76\\\n\\xe4\\x15\\xb4\\xf0\\x24\\xf7\\xfc\\xe8\\x4c\\xd9\\x1a\\x22\\x69\\xc4\\x57\\xc1\\\n\\xe6\\x80\\x96\\x22\\xc0\\xd0\\x40\\x0b\\x62\\x7b\\x73\\xa6\\x2b\\x34\\xbf\\x24\\\n\\x6a\\x15\\xfa\\x8b\\xbc\\xf7\\xa5\\x7a\\x26\\xdf\\xf8\\x37\\x85\\xad\\x25\\x0b\\\n\\x37\\xdc\\xf8\\x05\\x87\\x39\\x33\\xb1\\x39\\xcd\\xef\\x20\\x05\\x5a\\x77\\x79\\\n\\x94\\x64\\x8a\\x48\\x5d\\x08\\x60\\x88\\x36\\x1a\\x71\\xb9\\x03\\x9f\\xc6\\xa7\\\n\\x0e\\xbb\\x48\\x5d\\x16\\x54\\xac\\xe9\\xe8\\x55\\x80\\x59\\x6c\\xc3\\xbc\\x50\\\n\\xd9\\x6a\\x38\\x8e\\x28\\xf9\\x30\\x94\\xde\\xdc\\x36\\x11\\x23\\x6a\\x84\\xd9\\\n\\x84\\x7f\\xbe\\x85\\xd7\\xdf\\xd1\\x73\\xdb\\x43\\x8e\\x2f\\xdd\\x8a\\x06\\xfc\\\n\\x3e\\x39\\x54\\xa1\\x35\\x4b\\x11\\x4e\\xc9\\xdd\\xdf\\x69\\x90\\x43\\x53\\x7c\\\n\\xee\\x49\\x2e\\x8b\\xf3\\xbc\\x9a\\x10\\xc3\\x63\\x01\\x3b\\x3b\\x75\\x91\\xcc\\\n\\xdb\\x20\\x26\\x26\\xd2\\x58\\x28\\x29\\x45\\x31\\x27\\xe4\\xe6\\x87\\xe5\\x99\\\n\\x53\\x80\\x0c\\x7f\\xad\\xdf\\x4a\\x74\\x3f\\x4c\\x26\\xe0\\x20\\x70\\x36\\x28\\\n\\x09\\xdb\\xb1\\xa4\\xe1\\x2c\\x16\\xb5\\x19\\xdd\\x96\\x70\\x40\\x79\\x32\\x81\\\n\\x21\\x2c\\x09\\x23\\x0d\\x7d\\x03\\x21\\x8e\\x30\\x16\\x84\\x1c\\xae\\x05\\x87\\\n\\x6a\\x18\\x94\\xf2\\x75\\x60\\x92\\x48\\x53\\x9e\\xbc\\xcb\\x85\\x25\\x02\\x6c\\\n\\x28\\x5b\\x2d\\x7a\\x9a\\xae\\xcc\\x06\\x46\\xd4\\xe1\\x11\\xb6\\x12\\x01\\x9b\\\n\\xc7\\x09\\x2f\\x1d\\x3b\\x4d\\xd0\\x09\\x04\\x86\\x2e\\x94\\xc8\\x9f\\x6c\\x18\\\n\\xd7\\xe3\\xdd\\xcd\\xca\\xde\\x54\\x24\\x4e\\x83\\x01\\x34\\xc2\\x86\\x86\\xce\\\n\\x33\\xa0\\xc3\\x03\\xc4\\xeb\\x78\\xd4\\x4c\\xa7\\x78\\x24\\x17\\x77\\x78\\x09\\\n\\xbd\\xa0\\xfa\\x04\\x22\\x18\\x0b\\xd8\\x25\\x4b\\xd0\\x70\\x87\\x1d\\xd9\\xd1\\\n\\x90\\xa9\\x79\\x4d\\xa6\\xf9\\xd4\\xca\\xbf\\x18\\xc8\\xdb\\xa1\\x3b\\x65\\x43\\\n\\x26\\x2d\\x13\\x4f\\xd5\\x22\\xd0\\x45\\x73\\x75\\x03\\x7d\\xea\\xf3\\xe3\\x81\\\n\\x56\\xe3\\xe1\\x39\\x83\\xe0\\x88\\x6d\\x7a\\x58\\xd5\\x8f\\x10\\xf4\\xa4\\x62\\\n\\x3b\\xa8\\x6f\\xf4\\x41\\x33\\xdc\\xbf\\x71\\x3a\\xee\\x36\\x89\\x1b\\xd3\\x29\\\n\\x1b\\x07\\x16\\xa8\\x15\\x76\\x91\\x96\\x89\\xc2\\x19\\xc1\\x6d\\xf4\\x10\\x37\\\n\\x11\\xc0\\xf8\\x62\\xe5\\xb5\\x22\\xef\\xe8\\xa3\\xac\\xa0\\x30\\xfd\\x7c\\x8a\\\n\\x4f\\x4a\\x2d\\x6b\\x43\\x6b\\x88\\x80\\xe8\\x59\\x6b\\xcb\\x71\\x09\\x8c\\x74\\\n\\xd8\\xd9\\x09\\x72\\x8d\\x7a\\xb6\\xd5\\x5f\\x42\\x44\\xd6\\xd5\\x9f\\xc2\\x56\\\n\\xe8\\x70\\xaf\\xbc\\x3a\\xa0\\xf3\\x99\\xb5\\xb8\\x0d\\x58\\x91\\x6b\\x20\\x54\\\n\\x12\\x08\\xca\\x8a\\x12\\xe1\\x3b\\xb4\\x71\\xbd\\x8a\\x1b\\x1a\\x47\\xda\\x19\\\n\\xc1\\x00\\x6b\\xa7\\x65\\xec\\x39\\xc6\\x18\\x65\\x21\\x62\\x61\\x84\\x7a\\x8b\\\n\\x80\\x13\\x42\\x34\\x08\\x61\\xde\\xe5\\x39\\xe0\\xb7\\xe0\\x5b\\x69\\x1e\\x76\\\n\\x13\\xac\\x7a\\x61\\x53\\x89\\xde\\x8c\\x25\\xda\\xdf\\x42\\x58\\x00\\x0b\\x53\\\n\\x17\\xea\\xa4\\x8b\\xc1\\x0d\\x87\\x21\\x64\\xb0\\x06\\x50\\xe2\\x42\\x4d\\x7f\\\n\\x24\\x54\\xfe\\x10\\x7a\\xea\\x08\\x54\\xad\\x0c\\xd0\\xaf\\x0f\\x97\\xb4\\x9f\\\n\\xa1\\xd5\\x61\\xa2\\xbd\\xf5\\x8a\\xd9\\x92\\xa6\\x1d\\x7f\\xd1\\x95\\xf1\\x0d\\\n\\xc2\\x4b\\x75\\x50\\xd9\\x2c\\x03\\x34\\x47\\x6a\\x0b\\x57\\xda\\x30\\x8f\\x4e\\\n\\xa3\\x00\\x07\\x96\\x0f\\xfb\\x13\\x5f\\xb1\\x28\\x70\\x1a\\x00\\x33\\x62\\x94\\\n\\x10\\x6e\\x89\\x40\\x66\\x7d\\x04\\x3d\\x59\\x89\\x4f\\x71\\x14\\x5b\\x75\\x62\\\n\\x0f\\x31\\x2e\\x82\\x2a\\xd0\\x57\\xa7\\x07\\x29\\x71\\x5f\\x8e\\xd6\\xb5\\x2e\\\n\\xd1\\x96\\xec\\x33\\xe5\\xca\\x99\\xe8\\xa6\\xe1\\xf5\\xa6\\x5c\\x8d\\x45\\x04\\\n\\x46\\xa5\\xfe\\x20\\x90\\xe6\\xe0\\x5f\\x81\\xcc\\x90\\x40\\x0a\\xec\\x13\\x67\\\n\\x86\\xb0\\xd0\\x2d\\xd1\\x84\\x8c\\x84\\x1d\\xba\\x3d\\x65\\xac\\x69\\xd5\\x35\\\n\\x0e\\x0d\\x92\\x7e\\x35\\x16\\xf3\\x3d\\x10\\xca\\x02\\x5b\\x95\\xbb\\x12\\x3a\\\n\\x4d\\xa5\\x8f\\xe7\\x4d\\x11\\xf4\\x84\\xd1\\x54\\x53\\x79\\xba\\x68\\xa3\\xbe\\\n\\xb1\\x03\\x52\\x72\\xfd\\x53\\xa0\\x46\\x95\\x14\\xd1\\x74\\xc3\\x22\\xd9\\x6a\\\n\\xb6\\xe7\\x2d\\x6d\\x6b\\x0d\\x4c\\x16\\x85\\xaf\\xed\\x95\\x7a\\x28\\x44\\x32\\\n\\x20\\xa0\\xd6\\x60\\x46\\x7c\\x8d\\xd8\\xf8\\x4c\\x83\\x0e\\x04\\xe0\\x1a\\x0b\\\n\\x2a\\x76\\x53\\x2b\\xba\\x77\\x1a\\x00\\x82\\x50\\xe9\\xbc\\x47\\x21\\x2c\\x06\\\n\\x9b\\xe0\\x68\\x63\\xdd\\x11\\x73\\x42\\xe7\\x80\\x8b\\x74\\x68\\x92\\xde\\xd1\\\n\\x81\\x8a\\x6f\\xd4\\xf4\\x62\\xc9\\x91\\xa2\\xbb\\x75\\x07\\x35\\x42\\x44\\xf5\\\n\\x4c\\x33\\x35\\x8f\\x59\\x15\\x57\\x42\\x1e\\x01\\x09\\x25\\x3a\\xf6\\x3a\\x72\\\n\\xda\\xab\\x10\\xe0\\x5b\\xcc\\x0b\\x3b\\x96\\x2b\\x81\\x14\\x46\\x8f\\x77\\x86\\\n\\xb6\\x77\\x3a\\x04\\xe8\\x14\\x51\\x31\\xf2\\x8e\\xef\\x60\\xdb\\x47\\x2b\\x9b\\\n\\x43\\x24\\x1b\\xdc\\x69\\xb4\\x81\\x46\\x01\\x30\\x1a\\xad\\x47\\x09\\xf0\\xb2\\\n\\x42\\x93\\x44\\x5a\\x68\\xa6\\x95\\x53\\xc8\\xd2\\x66\\xcb\\x49\\x8a\\xb0\\x51\\\n\\x6a\\x8e\\xbd\\x9b\\x7b\\x98\\xed\\xc2\\xd2\\xed\\xe1\\xb2\\x34\\xfe\\x34\\x05\\\n\\x62\\x97\\x36\\x7e\\xec\\x12\\x3f\\x2d\\xc0\\xf6\\xd4\\x6b\\x46\\xd0\\xa1\\xb0\\\n\\xec\\x23\\x3a\\x4b\\x2c\\x92\\x14\\x38\\x16\\xde\\xec\\xec\\x34\\xd3\\xd1\\x76\\\n\\xae\\x6d\\x1c\\x35\\xd2\\xb1\\x27\\x40\\xed\\x95\\xe9\\x3b\\x0f\\x16\\x70\\x63\\\n\\xb1\\x27\\x10\\xfc\\xb1\\xa4\\x14\\x84\\x8f\\x9d\\xd4\\x25\\xc0\\x89\\x94\\x7c\\\n\\x41\\xc3\\x20\\x03\\xa5\\x4d\\xb2\\x40\\x0b\\xba\\x2c\\xe9\\x2a\\x22\\x81\\x36\\\n\\xc3\\x97\\x5d\\x5e\\xa6\\x65\\x59\\x83\\xa3\\x6a\\x04\\x95\\x18\\x92\\xbd\\x87\\\n\\x62\\xd2\\x29\\x22\\x0c\\xa4\\x16\\x4b\\x5d\\xa9\\xe9\\x05\\x65\\x87\\x41\\xe4\\\n\\x1b\\xba\\x6f\\xe2\\x8f\\x0c\\x00\\xe6\\x49\\xbc\\x32\\x16\\x7a\\x21\\x5f\\xa0\\\n\\x96\\xf2\\x11\\xf1\\x8d\\x97\\x84\\x7d\\x51\\xf5\\xde\\x2e\\x1e\\x1c\\xe7\\xd4\\\n\\xee\\x76\\xa1\\x0a\\x18\\xb6\\xb3\\x15\\x37\\x03\\x1d\\xe4\\x08\\x8e\\x0d\\x1a\\\n\\x4b\\x8c\\x63\\x48\\x97\\x60\\x12\\x0d\\x29\\x93\\xcd\\x97\\x11\\x45\\x0f\\xa6\\\n\\x00\\x3a\\x2b\\x86\\x51\\xe7\\x48\\x05\\x55\\x5d\\x2e\\xaa\\xe5\\xaa\\x1e\\x33\\\n\\x72\\x1e\\x0a\\xfa\\x61\\x65\\x55\\x1c\\xe3\\x22\\xb5\\x2a\\x8a\\x1b\\xf1\\x8d\\\n\\x45\\x07\\xbe\\x73\\x40\\x03\\x80\\x04\\xe0\\x95\\xcb\\x57\\x00\\xde\\x2a\\x59\\\n\\xb0\\x30\\x3c\\x33\\x9b\\x0d\\x49\\x6d\\xf8\\x5c\\x15\\xab\\x92\\x48\\x08\\xb0\\\n\\x0e\\xb2\\x8e\\xf8\\xb0\\x6c\\xe7\\x0b\\x12\\x7d\\xe7\\x48\\xa5\\x8e\\x22\\xce\\\n\\x6a\\xf5\\xea\\xcc\\x9a\\x0f\\x30\\x4d\\xc1\\x1e\\x7e\\x35\\xc5\\xa0\\x10\\x67\\\n\\x35\\x14\\xa9\\x72\\xfa\\x69\\x45\\xc1\\x0b\\x93\\x56\\xb2\\xdc\\xbf\\x20\\x0d\\\n\\x13\\x67\\x4f\\xd0\\x84\\x78\\x16\\x87\\x11\\xaa\\x46\\xcc\\xaa\\xa9\\x90\\x52\\\n\\x06\\xbe\\xc7\\x14\\x11\\x79\\xb5\\x0a\\x3e\\xf3\\x4e\\x9e\\xde\\x0a\\xaa\\xba\\\n\\x5a\\xb8\\xac\\x28\\xb4\\xf4\\x95\\xe7\\x6a\\x8d\\x77\\x58\\x60\\x26\\x0c\\x01\\\n\\x4d\\x80\\x48\\x2c\\xe8\\x41\\x6f\\xa1\\x0b\\x74\\x2b\\x64\\x0f\\x9f\\x9d\\xf3\\\n\\x7c\\xc6\\x02\\xeb\\x48\\x63\\xc8\\x01\\x02\\x00\\x11\\x62\\x28\\x59\\xa2\\x12\\\n\\x03\\x63\\x76\\x0a\\x75\\x52\\x93\\x01\\xd3\\xd4\\x99\\xd1\\x34\\xdc\\x99\\x49\\\n\\xc9\\x9e\\xb9\\x9d\\x16\\x76\\x41\\xb5\\xcf\\x1a\\x82\\x24\\x42\\x7d\\x10\\x26\\\n\\xce\\x46\\xb2\\x89\\x34\\x75\\x8b\\x1c\\x55\\x48\\x50\\xdb\\x15\\xd1\\x40\\x19\\\n\\x40\\xf5\\x42\\x75\\x17\\x82\\x1e\\x59\\x33\\xb1\\xad\\x19\\x7e\\x4f\\xb3\\x01\\\n\\xe0\\xd9\\x6c\\x73\\x19\\x21\\xe9\\x82\\xc2\\x0f\\xda\\xa0\\xb9\\x22\\x0a\\x56\\\n\\x89\\x8a\\xc6\\x0b\\xd8\\x6c\\x6d\\x2b\\xa3\\xaa\\x80\\xad\\xe8\\x29\\x39\\x92\\\n\\x53\\xb6\\x2c\\x9c\\x34\\x79\\x25\\x20\\x49\\x50\\xaf\\x05\\x46\\x27\\x20\\xae\\\n\\xdf\\xc0\\xc9\\xb8\\x9a\\x4a\\x70\\xa1\\x4a\\xd8\\x47\\x9a\\xa0\\xd6\\x89\\x43\\\n\\x01\\x82\\x24\\xc5\\x0c\\xb6\\xa9\\x46\\x10\\x30\\xf2\\x5b\\xa8\\xaa\\x38\\x81\\\n\\xa4\\x94\\x53\\x24\\xf2\\xc1\\xdf\\x07\\x30\\x62\\x0f\\xe2\\xde\\x09\\xa8\\xa2\\\n\\xb9\\x3f\\xe9\\xab\\xa9\\x46\\xb4\\x07\\xd5\\xc6\\xce\\x65\\x84\\xdf\\x44\\x38\\\n\\x7d\\x6b\\x05\\x16\\x31\\xd8\\x26\\xfa\\x95\\x12\\x66\\xf7\\x2c\\xb5\\xd4\\xdd\\\n\\x80\\x10\\xf2\\x30\\x5e\\x9e\\xde\\xaf\\x92\\x3d\\x64\\x9e\\x86\\x04\\xb0\\x46\\\n\\x20\\x36\\x68\\x6c\\x85\\x5d\\x26\\xc3\\xbe\\xc6\\xa1\\x54\\x10\\x04\\x1e\\xa7\\\n\\xa4\\xc4\\x95\\x10\\x6f\\x01\\x1d\\x28\\x76\\x15\\x1e\\x2c\\xa7\\xe3\\x5c\\xc7\\\n\\xa7\\x41\\x35\\x69\\x2d\\xca\\xba\\x33\\x26\\xed\\xaf\\x1b\\x34\\x13\\xe5\\x45\\\n\\xf0\\x20\\x0e\\x79\\x00\\xb4\\x6c\\x0c\\x6a\\xed\\xf0\\x89\\xb1\\xc3\\x71\\xde\\\n\\xd8\\x10\\xc4\\x50\\xbf\\xcc\\x33\\x2c\\xf8\\x45\\xb0\\xc0\\xb8\\x5f\\x6b\\xfa\\\n\\x30\\x54\\xff\\x00\\x25\\x90\\x82\\x2e\\x24\\xed\\x4b\\x0b\\xa4\\x69\\x11\\x78\\\n\\x9e\\xdc\\x20\\x8b\\xd0\\xb3\\x0b\\xb9\\x62\\xfc\\x43\\x73\\x78\\x70\\x8b\\x4a\\\n\\x27\\xc6\\x26\\xba\\x4c\\x20\\x64\\x6d\\xb5\\x43\\x92\\x83\\x4d\\x10\\x77\\x21\\\n\\x19\\xa4\\x83\\xa4\\x00\\x20\\x02\\x54\\xe3\\x77\\x11\\xe0\\x16\\x5a\\xc4\\x6e\\\n\\x67\\x69\\xa3\\x59\\xae\\x86\\x2b\\x62\\xa6\\x9b\\x27\\x54\\xb2\\x73\\x2b\\x33\\\n\\x31\\xf0\\xeb\\xcb\\x92\\x2f\\x3a\\x9a\\xa5\\xfb\\x34\\xc8\\x10\\x57\\xa4\\x68\\\n\\x22\\xe1\\xfc\\x6e\\xf6\\x81\\x09\\xaa\\x68\\xd7\\xc6\\x1e\\xac\\x70\\xe0\\xa4\\\n\\x81\\x86\\x86\\xb9\\x93\\x1e\\x0e\\x00\\x4f\\xac\\x6f\\x6b\\xf8\\xc3\\x14\\x0b\\\n\\x68\\xd1\\x92\\x78\\x16\\x1f\\x70\\x69\\x98\\x0e\\xa7\\x88\\x9c\\x9f\\x25\\xee\\\n\\xc0\\xb8\\x7a\\x20\\xe0\\x67\\x52\\xf2\\x66\\x9c\\x36\\x95\\x4a\\x86\\x8c\\x00\\\n\\x4a\\xd9\\xd6\\xdd\\xe0\\x55\\x8d\\x2d\\x76\\xa2\\x16\\x66\\x90\\x77\\xe4\\x6f\\\n\\x6c\\x0a\\x2b\\xc2\\xa8\\x48\\xae\\xe5\\x6e\\x27\\xb0\\x44\\xfc\\x8d\\x92\\x46\\\n\\xf6\\x24\\x02\\x4b\\x58\\x6e\\xfc\\x3a\\x6e\\x3b\\x28\\x17\\x8e\\xf1\\xfe\\xcd\\\n\\xb3\\xcd\\x88\\x86\\xde\\x9a\\xe8\\x31\\x7a\\xc1\\x3b\\x16\\xc0\\x01\\xd1\\xd0\\\n\\x5d\\x95\\xc0\\x3f\\xb9\\x95\\xa4\\x9b\\xd4\\x56\\x3a\\xe4\\xcb\\x4b\\x8e\\xd7\\\n\\x2e\\x5c\\x2b\\x27\\xa3\\x85\\xf7\\xd2\\xc5\\x83\\x41\\x16\\xe8\\xe4\\x11\\x11\\\n\\x78\\x54\\xfa\\x8a\\xd9\\x32\\x33\\x3a\\x89\\x92\\xa5\\x0e\\x0e\\x78\\xc9\\x29\\\n\\xb1\\xd1\\x41\\x05\\x08\\xb4\\x88\\x57\\x03\\x29\\x72\\x24\\x4a\\x8c\\xb9\\x55\\\n\\x03\\x3e\\x2b\\xb6\\x02\\x32\\x56\\x04\\xfb\\x8f\\x82\\xbe\\xd8\\x16\\xa6\\xe3\\\n\\x96\\x01\\xe8\\x55\\x52\\xa1\\x05\\xb9\\xbf\\xa4\\x4c\\xfe\\xae\\x10\\x1d\\x0f\\\n\\x42\\xe0\\x02\\x24\\xde\\xd4\\x0d\\x58\\x4d\\x48\\xdb\\x57\\x24\\xb5\\xe8\\x29\\\n\\x84\\xaf\\xe6\\x6f\\x93\\x58\\xea\\x75\\xe7\\x51\\x69\\xc6\\xda\\xbd\\x69\\x88\\\n\\x98\\x2c\\x3f\\x8b\\x54\\x34\\x42\\x3c\\x47\\xca\\xe5\\x21\\x50\\x0a\\xde\\x10\\\n\\x1f\\x92\\xd7\\x53\\x01\\x9a\\x77\\x05\\x0b\\x04\\x19\\xdf\\x8d\\xc5\\xce\\xb0\\\n\\xd2\\x84\\xd7\\x81\\x34\\xaa\\x8c\\xc6\\x30\\x5a\\x05\\x3d\\xe8\\x0a\\x87\\x76\\\n\\x35\\xcc\\xb1\\x6d\\x86\\x85\\xb4\\x63\\x00\\x09\\x19\\xef\\xdd\\x86\\xb4\\x81\\\n\\x24\\xa6\\xf4\\x03\\x7c\\x51\\x66\\x8c\\x2a\\x89\\x28\\x2a\\x0c\\xec\\xc1\\xc0\\\n\\x26\\x9c\\x9a\\x89\\x0c\\x00\\xde\\x0e\\x51\\xc0\\x39\\x92\\xc1\\x0e\\xfa\\x7c\\\n\\x0d\\x32\\x55\\x07\\x2e\\x4e\\xb0\\xeb\\x20\\x83\\x0a\\xef\\x26\\xac\\xc9\\x73\\\n\\x6e\\xe6\\x2d\\x5a\\x8a\\xb1\\x93\\xdf\\x17\\x20\\x9a\\x14\\x48\\x69\\x01\\x87\\\n\\xee\\x81\\x14\\x3b\\xe9\\x03\\x19\\x72\\xd5\\x86\\x56\\x71\\xd0\\x88\\x88\\x44\\\n\\xad\\xe8\\x69\\xdc\\xed\\xe3\\x24\\xda\\x1f\\xd7\\x0d\\x25\\x05\\xb8\\x41\\x1e\\\n\\x13\\x7c\\x8e\\x1d\\xe3\\xb1\\x20\\xb4\\x75\\xa3\\xd4\\x29\\x13\\x8c\\x09\\xb2\\\n\\x9d\\xb1\\x1e\\x9c\\xa5\\x4d\\xb1\\x17\\xac\\x00\\x17\\x83\\xe9\\x51\\x9a\\x43\\\n\\xef\\x03\\x3d\\xd2\\x06\\x10\\x74\\x82\\x43\\x11\\x2a\\x60\\x3a\\xd8\\x39\\xf7\\\n\\xc0\\x5e\\x5c\\xca\\xb8\\x48\\x16\\x0e\\x15\\x23\\x7a\\x83\\x4e\\x21\\xb1\\x0c\\\n\\xf5\\xc1\\x3e\\x21\\x86\\x89\\xef\\x2c\\x09\\x86\\xc8\\xf3\\x7a\\x78\\x11\\x40\\\n\\xa0\\x40\\x03\\xb5\\x56\\x1c\\x94\\x46\\xd3\\x63\\x16\\xae\\x48\\x04\\xa2\\x88\\\n\\x61\\xb9\\x03\\xc5\\x6c\\xdb\\x58\\xb2\\x94\\xa9\\xa7\\xaf\\x46\\x50\\x13\\x99\\\n\\x00\\x94\\x60\\x8c\\x1b\\xc7\\x42\\x99\\x2d\\xf0\\xc5\\x28\\x21\\x56\\x4c\\xe6\\\n\\x4e\\xb9\\xb2\\x3c\\x55\\xd4\\xe3\\x63\\xb6\\xc2\\x17\\xc0\\x5a\\x71\\xce\\x66\\\n\\x9d\\x70\\x6c\\x2a\\x88\\x90\\x80\\x38\\xe4\\x4f\\x1c\\x0c\\x95\\x43\\x10\\xa7\\\n\\x5e\\x1d\\x61\\x1f\\x77\\xe6\\x98\\x13\\x5c\\x27\\x34\\xbb\\xc5\\x6c\\xf0\\x44\\\n\\x53\\x34\\x10\\xec\\x25\\x14\\xb2\\x2e\\x2b\\x16\\x8a\\x38\\x66\\xad\\xd0\\xf6\\\n\\x20\\xa7\\x40\\x67\\xa6\\x74\\x0d\\x6c\\x2d\\x0c\\x1a\\x3f\\x8d\\xfb\\x4a\\x44\\\n\\x92\\xaa\\x37\\x54\\xed\\x1c\\x64\\x7c\\xcb\\x20\\x3a\\x20\\x3b\\xa1\\xfb\\x3d\\\n\\xdb\\x92\\x05\\xa0\\xe9\\x83\\x59\\xcb\\x60\\xc1\\x21\\x51\\xcf\\x15\\x72\\x16\\\n\\x84\\x17\\xa8\\x32\\xbd\\x02\\xd5\\x6e\\xb6\\xcb\\x8d\\x91\\x87\\x26\\xee\\x80\\\n\\xe1\\xf2\\xd6\\xa3\\x36\\xd4\\x0f\\x84\\x85\\x08\\x6b\\x06\\xb7\\x60\\xaa\\x84\\\n\\xaa\\xdb\\x2f\\xd0\\x67\\xb1\\x03\\x40\\xf8\\xfd\\xc1\\x03\\x04\\x7a\\x04\\xbb\\\n\\x04\\xc8\\x0d\\xa4\\x95\\xf0\\x27\\x50\\xd0\\x49\\xde\\xa6\\x18\\x60\\xb5\\x43\\\n\\x4f\\xa1\\x60\\x6c\\xf2\\x9d\\xa3\\xfa\\xf0\\x94\\xbb\\xbb\\x4b\\x5d\\x9c\\x19\\\n\\x86\\x55\\x3a\\x35\\x49\\x80\\xba\\xa7\\x30\\x38\\x20\\x61\\x80\\x53\\x00\\xb2\\\n\\x18\\x63\\x92\\x68\\xb6\\xab\\x90\\x10\\xce\\x93\\xb1\\x3d\\xa6\\x02\\x52\\x00\\\n\\x66\\xa4\\x50\\x8a\\xb6\\xe8\\x5d\\x54\\xa8\\x6e\\x1b\\x24\\x80\\xc2\\xf0\\x6c\\\n\\x1e\\x95\\x9e\\x40\\x2e\\x11\\x1c\\x16\\x11\\x94\\xc9\\xb0\\x85\\x77\\x70\\x58\\\n\\x0f\\x39\\x2c\\xe0\\xc8\\x3f\\x7d\\xdc\\x23\\x06\\xf7\\x37\\xc6\\x49\\xfb\\xbe\\\n\\x3e\\x4d\\xc4\\xd2\\xa0\\xa4\\x17\\x08\\xb1\\xc9\\x80\\x21\\x21\\xc7\\xa8\\xe7\\\n\\x17\\x0e\\xd0\\xa3\\x44\\xff\\x00\\xfc\\x46\\xdf\\x33\\x83\\xe8\\x92\\xc0\\x7c\\\n\\xf0\\xb0\\x12\\x3e\\x1d\\x2e\\x28\\x47\\xa0\\xd4\\x13\\x7f\\xa2\\xe8\\xc7\\x21\\\n\\x76\\x0e\\x40\\x81\\x25\\x0b\\x66\\xd5\\x11\\x3c\\x41\\x24\\x25\\x14\\x56\\xf0\\\n\\x68\\x3d\\x1d\\xd1\\x81\\x24\\x6c\\x5b\\x1f\\x8f\\xac\\xf7\\x1a\\x86\\xf3\\x16\\\n\\x9a\\xee\\x46\\x0f\\x0d\\x6f\\x68\\x10\\x7e\\x8f\\xae\\x82\\xdf\\xc6\\x02\\x24\\\n\\xd3\\x04\\x7b\\xa3\\xec\\x26\\xe6\\x09\\xa3\\x82\\x81\\x44\\x02\\x26\\x9c\\x82\\\n\\x8b\\x58\\xd7\\x74\\x90\\xdc\\xbe\\x40\\x4a\\x19\\x07\\x7f\\xc8\\x5a\\xbe\\xda\\\n\\xa2\\x51\\x74\\x19\\xb5\\xda\\x19\\x60\\x41\\x42\\xb4\\x7d\\x7b\\x65\\x24\\x0a\\\n\\x34\\xf6\\x44\\x9b\\x39\\x73\\x6c\\x74\\x60\\xb0\\x1c\\xa8\\xca\\x07\\xe4\\x81\\\n\\xad\\xfd\\xde\\x1c\\x93\\x54\\xe9\\xa9\\x98\\xa2\\xe1\\x9f\\xd8\\x59\\x98\\x85\\\n\\x49\\x00\\x33\\x70\\x08\\xa4\\x50\\x59\\x96\\x29\\x1b\\xfa\\xa3\\x2b\\xed\\xa3\\\n\\x29\\x49\\x41\\x55\\x80\\x37\\x49\\x4b\\xb6\\x86\\x72\\xb1\\x29\\x4e\\x85\\x77\\\n\\xb6\\x44\\x2a\\xcb\\x1a\\x73\\x61\\xa7\\x24\\x5c\\x91\\x3f\\x86\\x8c\\x25\\x08\\\n\\x40\\xaa\\x46\\xc6\\xc7\\x16\\x82\\x86\\x84\\x8d\\x6f\\x9f\\x58\\x47\\x58\\x74\\\n\\x35\\x8a\\x0a\\x04\\xd8\\x40\\xab\\x47\\x57\\xdb\\x9d\\x6d\\x99\\x01\\xaf\\x5e\\\n\\x57\\x65\\xb2\\x59\\x87\\xba\\x22\\x27\\x4d\\xf0\\x66\\x74\\x59\\xbc\\x61\\xce\\\n\\xa0\\x30\\xf8\\xfd\\x69\\x2c\\x29\\x6e\\x70\\x2d\\x33\\x0d\\x25\\x8d\\xe1\\x94\\\n\\xdf\\x00\\xb0\\x8e\\x59\\x5f\\x80\\x9a\\xe8\\x51\\xb5\\xc8\\x78\\x4b\\xb4\\x89\\\n\\x88\\x34\\xd2\\x17\\x62\\xf4\\x38\\x24\\xe5\\x69\\x19\\x8b\\x3d\\xa0\\xdd\\x94\\\n\\xb2\\x2f\\xc1\\x57\\xec\\xb4\\x76\\x03\\xea\\x42\\x2c\\x40\\xab\\x36\\x8f\\x2a\\\n\\x59\\x26\\x7d\\x11\\xf9\\xd3\\xc8\\x57\\x31\\x58\\xe4\\x8a\\x3c\\x8d\\xb4\\x6a\\\n\\xb9\\x21\\xa3\\x3f\\x24\\xc9\\x1b\\x4e\\x45\\xb9\\x7c\\x2d\\xd8\\x80\\x56\\xb9\\\n\\xac\\x03\\x20\\x35\\xb7\\x51\\x90\\xee\\x37\\x94\\x46\\xa0\\x6e\\x9a\\xe4\\xad\\\n\\xdc\\xde\\xe7\\x98\\x9d\\xe4\\x20\\xee\\x8a\\x37\\xa4\\xa9\\x54\\xa1\\x0c\\x3b\\\n\\x62\\xdf\\xd1\\xa4\\xa0\\xe0\\xed\\x69\\x80\\x68\\x52\\xd3\\xdc\\x2e\\x9d\\x7b\\\n\\x41\\xde\\xb3\\xd0\\x60\\x3c\\x31\\x93\\x4c\\x6b\\x5f\\x9d\\x6d\\xdf\\x7c\\xa6\\\n\\xf6\\xd6\\x25\\xd0\\x82\\x13\\x0d\\x22\\x03\\x4a\\x60\\xe5\\x95\\x28\\x38\\x37\\\n\\xad\\xf9\\x85\\xe5\\x34\\xd1\\x28\\x0d\\xe2\\x30\\x91\\x34\\x0d\\x5d\\x25\\x84\\\n\\x5e\\x1e\\xff\\x00\\x71\\xa0\\xc7\\x42\\x54\\xf3\\xd3\\x73\\x08\\x3c\\x64\\x04\\\n\\xe8\\x3f\\x76\\x9c\\x02\\x77\\xe0\\x66\\x89\\x62\\x9b\\xc2\\xe2\\xf4\\x87\\xb3\\\n\\x0a\\xef\\x41\\x09\\x5d\\x01\\x4d\\x85\\xe8\\x30\\xcf\\xe5\\x19\\x55\\x03\\x49\\\n\\x16\\xd0\\x71\\x72\\xca\\x60\\xea\\x64\\x9e\\x18\\x5e\\x08\\x74\\xeb\\x0b\\xe1\\\n\\x8a\\x0b\\x92\\x86\\x40\\xd3\\x26\\x9e\\x07\\xa6\\x09\\xba\\x84\\xdf\\x49\\x78\\\n\\xf7\\xed\\xfe\\x1b\\xb6\\x85\\xf0\\x38\\xe0\\x83\\xad\\x84\\x1e\\xa9\\x08\\x29\\\n\\x56\\x37\\x47\\xdb\\xbb\\x84\\x7c\\x30\\x8c\\xc2\\x8b\\x65\\xc6\\xea\\x84\\x9c\\\n\\x08\\xd0\\x2e\\xb7\\x76\\xa3\\xa2\\xb4\\x1b\\xab\\x8f\\x96\\x0f\\x34\\x91\\x80\\\n\\x16\\x06\\x9d\\xb6\\x69\\xeb\\x31\\x21\\x33\\x22\\x38\\xae\\xad\\xd7\\x11\\xfb\\\n\\xbe\\x0c\\x40\\xb4\\x3e\\xd0\\xf9\\x84\\xff\\x00\\x95\\x40\\xa3\\x68\\x7f\\x0a\\\n\\x0f\\x73\\x8c\\xc1\\xa5\\x95\\x35\\x23\\xbe\\xc0\\x46\\xf0\\x7e\\xb6\\xa4\\x02\\\n\\x49\\xad\\x40\\xd1\\x06\\x55\\xef\\x00\\x9f\\x91\\x5a\\x82\\xec\\xf9\\x9f\\x0c\\\n\\xd6\\x50\\x8a\\x11\\x35\\x06\\xc8\\x04\\xef\\xe1\\x8c\\xb3\\xc8\\xa5\\xc4\\x78\\\n\\x70\\x77\\xa9\\xde\\x2a\\x58\\x83\\x76\\x36\\xad\\xb7\\x6d\\x35\\xa6\\x1f\\x49\\\n\\xd1\\x8d\\x3d\\x0e\\xa0\\xe7\\x3b\\x76\\xab\\xc9\\xe4\\x2d\\xd1\\xa9\\xb0\\xf2\\\n\\x8d\\xc7\\x60\\x75\\xae\\x00\\x32\\x9e\\x89\\xf6\\x98\\x91\\x43\\x52\\x83\\x80\\\n\\x01\\xad\\x3b\\x7a\\xb2\\x29\\xb1\\xce\\x02\\x5d\\x22\\xa0\\x15\\xa2\\xe8\\xe8\\\n\\x59\\x36\\x4d\\x28\\xfd\\xc0\\xcb\\xe9\\xac\\xb4\\x15\\x10\\xda\\xc1\\xad\\x2e\\\n\\x33\\xb5\\xd4\\x21\\x5f\\x37\\x55\\x31\\x56\\xcc\\xe4\\x12\\x2e\\x88\\x89\\x15\\\n\\x76\\x05\\xd4\\x77\\x0c\\x42\\x60\\xd4\\xd9\\x51\\x36\\x20\\x34\\x26\\x1d\\x23\\\n\\xd1\\xc5\\x13\\x0c\\x28\\xc8\\xe3\\xdc\\x30\\x2a\\x8f\\x44\\xbc\\x40\\x13\\x66\\\n\\x08\\x40\\x60\\x00\\x47\\x7e\\x80\\xe1\\xf6\\x4c\\x88\\xc1\\x19\\xc2\\x4f\\xcc\\\n\\xd0\\x3a\\x36\\xd9\\xa5\\xd1\\x35\\x88\\xe3\\xa2\\x60\\xed\\x48\\x51\\xd7\\x3a\\\n\\xae\\x5b\\xb9\\x1e\\xad\\x5a\\xa0\\x5d\\xe9\\xb1\\xc9\\x89\\xd0\\xfc\\x16\\x7f\\\n\\x85\\xb9\\x8e\\x0e\\xa5\\xd2\\x52\\xb8\\x5a\\xda\\xf7\\x8a\\x3e\\x0d\\x7c\\x19\\\n\\xbb\\xa7\\x82\\xb6\\x5e\\x50\\xec\\xe8\\x40\\x7c\\xcb\\xb6\\xfc\\x22\\x88\\xd1\\\n\\x89\\x26\\x7a\\xef\\x1a\\x1b\\x08\\x71\\x48\\x4e\\xc4\\x4e\\x50\\x76\\xc0\\x17\\\n\\xc6\\x55\\x6c\\x5a\\xa4\\x1b\\x87\\x26\\x18\\xd1\\xd9\\x32\\x14\\x22\\x86\\xd9\\\n\\x3b\\xea\\x91\\x07\\x2f\\xd5\\x36\\x6f\\x6f\\x1d\\x42\\x2b\\x20\\x63\\x56\\x80\\\n\\x88\\x0f\\x21\\xaa\\xc3\\x9d\\x5f\\x2e\\x0f\\x86\\x98\\xb3\\x28\\xe6\\x9f\\x83\\\n\\x6f\\xa4\\x45\\x0d\\x3d\\xa7\\x66\\x80\\xa4\\x04\\x18\\xc1\\xbe\\xa1\\x29\\x58\\\n\\x8d\\xf2\\x33\\x21\\xc0\\xf1\\xb1\\xf4\\x6c\\x60\\xaa\\x82\\xf1\\xd9\\xbd\\xd5\\\n\\x1e\\x37\\xbd\\x79\\x9b\\x70\\xf9\\xf7\\xf2\\xd2\\xda\\x24\\xe5\\xb0\\x85\\xbe\\\n\\x83\\x77\\x16\\x3a\\xcc\\x45\\xe8\\xf3\\x25\\xe1\\xde\\x8b\\x80\\xa5\\x5b\\x70\\\n\\x34\\x4c\\xd6\\x40\\xb3\\x14\\x0a\\x50\\x9b\\x10\\x3d\\xb3\\x3e\\x3a\\xe2\\x8b\\\n\\x74\\x57\\x51\\x3a\\xde\\x29\\xd9\\x13\\x57\\x20\\xb2\\x9d\\x20\\x75\\x7c\\xc4\\\n\\x48\\xd4\\x59\\x82\\x1f\\xb0\\x33\\xad\\x7b\\x2e\\x05\\xcf\\x4a\\x26\\xf4\\x36\\\n\\x62\\x28\\x34\\x12\\xbe\\x8a\\x0c\\x85\\x10\\xe4\\x7f\\x8f\\x25\\x44\\x0d\\x58\\\n\\x03\\xa2\\x09\\xf3\\xb8\\xdc\\x0e\\x76\\xe9\\x05\\xf9\\x34\\x4a\\x48\\x6a\\xd4\\\n\\x07\\x1a\\xd2\\xec\\x3b\\xc3\\x14\\x13\\x03\\x1c\\x00\\x87\\xe8\\xc1\\x8c\\x91\\\n\\xee\\xa5\\x90\\x3e\\x52\\x0c\\x8e\\xce\\x08\\xed\\x4f\\xd9\\x04\\xa8\\x3a\\x29\\\n\\xe1\\x4a\\x45\\x02\\xb6\\x15\\x13\\x34\\xb0\\x68\\x6a\\x34\\x8a\\x1a\\x0a\\x39\\\n\\x25\\xa2\\xac\\xc1\\x94\\x81\\xbd\\x1d\\x10\\x03\\xba\\xf4\\xa9\\x79\\xf7\\x6d\\\n\\x1b\\x9d\\x01\\x77\\x8a\\xe0\\x99\\xbb\\x5a\\x16\\x8f\\x21\\x11\\x88\\x50\\x0d\\\n\\x80\\x02\\x2a\\x28\\xe2\\x3a\\xe2\\x18\\x2b\\xd2\\x6a\\x75\\x04\\x96\\xd2\\x9e\\\n\\x1a\\x3e\\x32\\xb4\\xf6\\x8b\\x6f\\x67\\x4d\\xb6\\x7b\\xd7\\xca\\x22\\xdd\\x71\\\n\\xbe\\xb1\\x1a\\x55\\x46\\x1d\\xe4\\x3a\\x04\\x69\\x86\\xc3\\xac\\x1a\\xc6\\xe8\\\n\\x18\\x92\\x18\\x51\\x10\\x44\\x50\\x97\\xb9\\x06\\xb3\\x8a\\x6b\\x2a\\xa2\\x2f\\\n\\xc8\\xa3\\xf7\\x99\\xd4\\x77\\x39\\x77\\xbd\\xcd\\xb6\\x94\\x02\\x52\\xd1\\x5d\\\n\\x52\\xb3\\xa7\\x87\\xbb\\xb6\\xb0\\x8e\\x0f\\x3f\\x69\\x71\\x65\\x15\\x0f\\x5d\\\n\\xfa\\x62\\x89\\xef\\x81\\x16\\x4c\\xa6\\x5b\\x39\\x5c\\xf2\\xb1\\x46\\xdc\\x31\\\n\\x6d\\xb5\\x6d\\xd2\\xe3\\x57\\x76\\xf5\\x8d\\x08\\x86\\xf1\\xb7\\x0c\\x20\\x95\\\n\\xf7\\x10\\x4a\\xf6\\x12\\xa1\\x4f\\x4e\\x4e\\xb1\\x16\\xc3\\x6d\\xa3\\x44\\x42\\\n\\x8b\\xd9\\x86\\xe2\\x8b\\x92\\xda\\x2b\\x00\\x23\\x5d\\x18\\x09\\x4a\\xe7\\x7b\\\n\\x50\\xbc\\x0f\\xaf\\x3e\\x19\\xb3\\x34\\xd4\\x35\\x43\\x1e\\x43\\x84\\x7c\\xe6\\\n\\x1b\\xaa\\x09\\x8a\\x8d\\x06\\xf0\\xc7\\xca\\xb3\\x1f\\xf0\\x84\\x1a\\xc1\\xea\\\n\\x13\\x5c\\xb1\\xc3\\x14\\xac\\x2d\\x97\\x17\\x7a\\x54\\xb1\\xd2\\xb8\\xba\\x36\\\n\\xb1\\x64\\xd0\\x38\\x8d\\x89\\xa2\\x6b\\x08\\xbc\\x46\\xce\\xa8\\x41\\x02\\xe0\\\n\\x81\\xac\\x50\\x90\\x28\\x9a\\xb4\\x1a\\x52\\x21\\x5b\\x76\\xc9\\x10\\x89\\x51\\\n\\x73\\x46\\x21\\x58\\xf9\\x08\\x4e\\x3c\\x04\\x10\\x2d\\x3a\\xbd\\x14\\x4a\\x5c\\\n\\xd3\\xae\\xc6\\x12\\xfa\\x28\\xa8\\x98\\x70\\x0a\\x5a\\x89\\x4b\\x08\\xd0\\xe5\\\n\\xe6\\xd1\\x31\\x65\\x8f\\x7f\\x10\\x20\\xaa\\x8c\\xa3\\xe0\\x79\\x9b\\xb3\\xaa\\\n\\xab\\x84\\xbf\\x62\\x15\\xb3\\xee\\x73\\x21\\x0f\\x28\\x89\\x7d\\xf9\\xe6\\x9b\\\n\\xc0\\xdd\\x8a\\xf8\\x9d\\x1d\\x6d\\x22\\x64\\x2b\\xea\\xb2\\x49\\x0a\\x01\\x37\\\n\\xae\\xe2\\xb9\\xc8\\xa9\\x48\\x4e\\x83\\x5d\\x73\\xb8\\xd3\\xce\\x11\\xd2\\xf4\\\n\\x14\\x54\\xfe\\xee\\x70\\x19\\xc7\\x74\\x6b\\x0a\\xc6\\xc5\\x6a\\x44\\x27\\x56\\\n\\xf5\\x52\\x17\\x40\\xfd\\x82\\x35\\x16\\x1d\\x31\\x32\\x7d\\x84\\xb6\\x6c\\x7d\\\n\\x6b\\x39\\x01\\xf9\\xf6\\x35\\xdc\\xb7\\x8f\\xc3\\x3b\\x0b\\x12\\x30\\x57\\x00\\\n\\x7d\\x3f\\x1c\\xc9\\x48\\xd9\\x2b\\x5c\\x7b\\x10\\x29\\x14\\xb9\\x33\\xaa\\x36\\\n\\xdb\\xa3\\xd7\\xc6\\x20\\x31\\x27\\xaa\\x1a\\x45\\x37\\xf1\\x91\\xa9\\x94\\xc3\\\n\\x50\\x4a\\xcd\\xf3\\x78\\x78\\x53\\xa8\\x93\\x4f\\xf4\\xda\\xdb\\x9b\\x9b\\x2d\\\n\\xe1\\x0f\\x8b\\x7e\\x5f\\x8d\\x62\\xc0\\x84\\x16\\x34\\xd1\\x79\\xf0\\x3b\\x80\\\n\\x6b\\xeb\\x30\\xfa\\xc4\\x10\\xec\\x2f\\xaa\\xe4\\xcb\\x13\\x58\\x68\\xbc\\x76\\\n\\x4b\\x2f\\xf7\\x9f\\x94\\x4c\\x40\\x70\\x24\\x57\\xb1\\x0b\\x73\\x62\\x57\\x5b\\\n\\x63\\xd8\\x05\\x75\\x1b\\x3d\\xcd\\x93\\x32\\xbd\\x9a\\x35\\xeb\\x43\\x66\\xf0\\\n\\xe9\\xc1\\x2b\\x49\\xa0\\x2f\\x61\\x14\\x76\\x37\\x0c\\xc3\\x17\\xaf\\xcc\\x95\\\n\\x50\\x4a\\xbc\\x04\\xc7\\x3c\\x61\\x81\\xa8\\x30\\x8e\\x34\\x0a\\x61\\xc1\\xa0\\\n\\xee\\xc6\\xe0\\x63\\x65\\x41\\xf3\\xcc\\x16\\xa5\\xf4\\x54\\xc0\\xf2\\x7b\\x0f\\\n\\x18\\xdf\\x52\\x89\\xb6\\x52\\xa8\\xfe\\x25\\x87\\x71\\x4f\\xf8\\x75\\xd4\\xe9\\\n\\xbe\\xc7\\x69\\x6d\\xc8\\xb4\\x41\\xa2\\xa4\\x68\\x6c\\xb1\\x3d\\xd6\\x03\\xd1\\\n\\x7e\\x04\\xc1\\x0c\\x55\\x3e\\x00\\xc4\\xa5\\x89\\x23\\x08\\xd6\\x5a\\x29\\x40\\\n\\x09\\x14\\xed\\x09\\x69\\x3b\\x15\\x30\\x46\\x82\\xae\\x28\\x0f\\x28\\x19\\xa6\\\n\\xe1\\xe7\\x1c\\xf8\\x7b\\x88\\x38\\x49\\xed\\x9c\\xdf\\x49\\xba\\xde\\xf7\\x96\\\n\\x49\\x2b\\x41\\x21\\xe6\\xb9\\x3c\\xd6\\x5d\\x40\\x12\\x38\\xa5\\x69\\xe7\\xce\\\n\\x26\\xe5\\x5a\\x71\\x82\\x0d\\x97\\x45\\x5c\\x3e\\x81\\x5c\\x3a\\xe6\\xe1\\xb6\\\n\\xcb\\x50\\x71\\x88\\x00\\x19\\x44\\x79\\x0a\\x4b\\x05\\x7d\\xe6\\xbf\\x1a\\x15\\\n\\x27\\xa0\\x6c\\x7c\\xeb\\x89\\x26\\xa9\\x89\\xbb\\x36\\x0f\\x05\\x03\\x66\\x98\\\n\\x23\\x1e\\xeb\\x3a\\xa0\\x29\\x7f\\x18\\x10\\x97\\x96\\x6a\\x13\\xa5\\x73\\x6f\\\n\\xdd\\x30\\x24\\x39\\xbd\\xa5\\x08\\x48\\xa1\\xbd\\xc3\\x2f\\x94\\x20\\x04\\xa1\\\n\\x13\\x42\\xac\\x05\\x75\\x39\\x88\\x9f\\xc5\\x28\\x90\\x34\\x1a\\xf3\\xf7\\x9a\\\n\\x94\\x26\\x34\\xc4\\x1d\\x48\\xf1\\x8d\\x67\\x81\\x6d\\xf3\\x91\\x6c\\xf4\\x4f\\\n\\xf1\\x25\\x3e\\x04\\x96\\x3f\\x6e\\xeb\\xb8\\x6e\\x03\\x6a\\x59\\x2d\\x69\\xef\\\n\\xd2\\x61\\x97\\xba\\xb1\\x7a\\x86\\xd1\\x1b\\x1b\\x1e\\x6b\\x59\\x0e\\x39\\x88\\\n\\xe8\\xe0\\x20\\x93\\x44\\x35\\x89\\xa9\\x0c\\x14\\x11\\xff\\x00\\x65\\xdf\\x9c\\\n\\xd5\\x2f\\xcd\\x68\\x04\\xd9\\xe5\\xe9\\x13\\xcf\\x6b\\x1e\\xd1\\x0a\\xb1\\x2d\\\n\\x9e\\x51\\xa7\\xcc\\xa7\\x6e\\x45\\xc1\\x28\\xda\\x41\\xf2\\xc6\\x85\\xc9\\x58\\\n\\x0f\\x70\\x05\\x30\\xd9\\x6e\\xa6\\x2d\\xe4\\x84\\x89\\x13\\x5b\\x44\\xf2\\xf3\\\n\\x58\\x97\\xf6\\x1b\\xa6\\x11\\x2e\\x99\\x9b\\xd7\\x26\\x3f\\x0e\\x68\\xd1\\xf0\\\n\\x70\\x21\\xe1\\x71\\x2a\\x57\\x93\\xd4\\x13\\x43\\x52\\x68\\x70\\xeb\\xaa\\x5e\\\n\\xc1\\xde\\xe9\\xb3\\xdf\\x9c\\x2d\\xa6\\x87\\xc9\\x91\\x55\\x73\\x59\\x34\\x04\\\n\\xbf\\x24\\x42\\xfe\\x57\\xeb\\x59\\xf2\\xbd\\x53\\xb5\\xd2\\x8f\\x81\\x5f\\xce\\\n\\x7f\\xff\\xda\\x00\\x0c\\x03\\x01\\x00\\x02\\x00\\x03\\x00\\x00\\x00\\x10\\x27\\\n\\x08\\xbf\\xc5\\xab\\x40\\xd3\\xed\\x93\\xd5\\x78\\x6a\\x70\\x1e\\x84\\x26\\x89\\\n\\xef\\xe0\\xb4\\xf8\\x05\\xbf\\x12\\xa2\\x17\\xbc\\xc8\\x6c\\x9d\\x40\\xdf\\xf3\\\n\\xec\\x68\\xb8\\x82\\x03\\xae\\xf1\\xe3\\x61\\x12\\xac\\xd9\\x33\\x60\\x67\\x96\\\n\\x9a\\x7c\\xa2\\x2c\\x97\\x56\\xe9\\xe6\\xad\\xc5\\xd0\\xa3\\x18\\x8c\\xe2\\xe3\\\n\\xe4\\x93\\x73\\x5e\\x14\\x02\\x12\\xa6\\x68\\x96\\x58\\x31\\x8c\\x69\\xdd\\x53\\\n\\xf4\\x77\\xf6\\x41\\x70\\xb2\\xe8\\xf2\\x3c\\x6b\\x3f\\x32\\xc9\\x32\\x37\\x4d\\\n\\xdd\\x54\\xc3\\xcb\\x4b\\x34\\x0f\\xdc\\xe7\\x3e\\x14\\xcb\\x12\\xf0\\x88\\x72\\\n\\x3a\\x8f\\xb1\\x6d\\x33\\x9e\\xe8\\x30\\x0f\\x82\\x06\\x1d\\xa5\\xc9\\x8f\\xdc\\\n\\x48\\x56\\x16\\x24\\xc5\\xf7\\xfb\\x5f\\x0c\\x24\\x54\\xcf\\xfe\\xf5\\xe8\\x43\\\n\\x36\\xc6\\xd4\\x58\\x23\\x2a\\xec\\x9e\\xf3\\xff\\x00\\x7d\\x99\\x00\\xd8\\x56\\\n\\x5e\\xe7\\x65\\xb0\\x2f\\xb0\\x2e\\x2a\\x0c\\xcb\\xf8\\x8f\\xc0\\x2b\\x8e\\x70\\\n\\x57\\x9b\\xaa\\xab\\xc9\\xe2\\xd3\\x66\\xa9\\xf8\\x23\\x69\\xe1\\x32\\xd0\\x6d\\\n\\x0a\\xc9\\xde\\x2f\\xc9\\xad\\xc4\\x1a\\xa5\\x07\\x04\\x7c\\xe0\\x7f\\x68\\xff\\\n\\x00\\x24\\x44\\x35\\x22\\x12\\xda\\xf9\\xa0\\xe6\\x93\\xdc\\x29\\x6e\\xa6\\x87\\\n\\x1b\\x16\\x9a\\x1f\\x3c\\x5c\\x5d\\x67\\xc4\\x02\\x21\\x3d\\x0c\\x00\\xc3\\x70\\\n\\xb8\\xf3\\x62\\x43\\x0f\\x32\\xb9\\xcb\\x07\\x67\\x5a\\x50\\x8c\\x53\\x62\\x61\\\n\\x2c\\xaf\\xbc\\xe9\\x1e\\x43\\x75\\x2d\\x35\\xa0\\x17\\x27\\x34\\xbe\\x12\\x8e\\\n\\x24\\xad\\xf4\\xa7\\x6b\\x5b\\x78\\x1f\\x3a\\x96\\xb0\\xe3\\x93\\x65\\x10\\x6e\\\n\\xa3\\x32\\x11\\xcb\\xc6\\x18\\x02\\x64\\xa6\\x98\\xf8\\x1c\\x63\\xea\\xb2\\x46\\\n\\x2d\\x22\\x31\\x8a\\x78\\x17\\x9f\\x18\\xab\\x80\\x29\\x94\\x01\\x98\\xf7\\x62\\\n\\x61\\xc1\\xc0\\x80\\x8c\\x07\\x94\\xfd\\xf7\\xf3\\x55\\x4a\\xc6\\x09\\x30\\xb2\\\n\\x45\\xdf\\xa8\\x43\\x51\\xf7\\xfb\\xa7\\x5f\\x73\\xe9\\x07\\x35\\xdc\\xdb\\xd6\\\n\\x05\\x18\\x77\\x85\\x57\\x25\\x6a\\xc7\\x72\\x23\\x22\\x65\\xc9\\x0d\\x07\\xa0\\\n\\xc3\\x1a\\xf2\\xca\\xa5\\xb8\\xbd\\x6c\\xe6\\x7e\\xa6\\x63\\x4a\\x0b\\xad\\xda\\\n\\x5d\\x1f\\x23\\xe2\\xf4\\xed\\xad\\xd0\\x73\\x65\\x5c\\x9d\\xb5\\x4a\\xbf\\x74\\\n\\x03\\x0a\\x32\\x92\\xb8\\x5f\\x55\\xce\\xc2\\x29\\x29\\x8c\\x4c\\xf5\\x0b\\x61\\\n\\x00\\x05\\x9f\\x7d\\xb2\\x8b\\xdc\\x17\\x78\\x79\\x04\\xb7\\xc7\\x88\\xb1\\xe6\\\n\\x30\\x64\\xab\\xa5\\x53\\x98\\xc1\\x39\\x3c\\x01\\xd4\\xab\\x87\\xb8\\x3b\\xd3\\\n\\xe4\\x80\\x53\\x11\\xf2\\x7d\\x1f\\x00\\x20\\x89\\x73\\x29\\xad\\x65\\x0c\\x18\\\n\\x28\\xd6\\xb5\\x30\\x3b\\x39\\x4a\\xfe\\x87\\x80\\x9b\\x94\\x99\\x01\\xcf\\x3c\\\n\\x71\\x14\\x5d\\xcd\\x5d\\x30\\xc8\\x86\\xb5\\xe5\\x74\\x9b\\x8f\\x28\\x61\\x65\\\n\\x2d\\xe3\\xa9\\xae\\x9d\\xf4\\xa3\\x17\\x97\\x9b\\x2a\\x94\\xfb\\x01\\xb6\\xae\\\n\\xe4\\xd3\\xeb\\x0f\\xb6\\x18\\x81\\x37\\x9f\\x2b\\x0a\\x79\\xf4\\x7b\\xe3\\x83\\\n\\xfd\\x13\\xfe\\xdb\\x6a\\x9e\\xd8\\x3e\\x0a\\xb7\\x8c\\xfb\\x39\\x0a\\x5f\\x02\\\n\\x8c\\x9f\\xc2\\xa3\\x48\\xd3\\x3b\\x59\\xe3\\x77\\x73\\x74\\xb9\\xca\\x8e\\xd1\\\n\\xc8\\x15\\xaa\\xc5\\xca\\xbb\\x35\\xaf\\xba\\x34\\x87\\x05\\x16\\x3e\\x2d\\x4d\\\n\\x7c\\x27\\x55\\x42\\x82\\x73\\xda\\x61\\x07\\x2e\\x8c\\x1e\\x1c\\xf5\\x9c\\xe3\\\n\\xbc\\xb2\\x26\\x95\\x30\\xcc\\xff\\x00\\xe0\\x55\\x16\\x72\\xd1\\x00\\xe3\\xa1\\\n\\x01\\xb6\\x63\\x5c\\x67\\x27\\x2e\\xe6\\x30\\x17\\x64\\xe1\\x96\\xee\\x94\\xc0\\\n\\xa8\\xa4\\x49\\x05\\xe2\\xf7\\xe9\\x1c\\xb6\\xae\\x89\\x41\\x89\\x20\\x83\\x30\\\n\\x23\\x02\\xa8\\x4a\\xed\\xc0\\x3f\\x09\\x4f\\x8a\\xdd\\x9d\\xf8\\x6e\\xa0\\xb5\\\n\\x62\\x12\\x62\\x46\\x93\\xfa\\x8b\\x90\\x1e\\x5d\\xd6\\x92\\x56\\x92\\x1a\\xfd\\\n\\xa1\\x74\\xec\\x95\\xe7\\x11\\xe7\\xe4\\xec\\x64\\x7c\\xcc\\x4f\\x99\\x98\\xea\\\n\\x84\\xc6\\x8e\\x3c\\x93\\xa5\\x11\\xc8\\x59\\x81\\x45\\x24\\xf3\\xd6\\x52\\x55\\\n\\x21\\x3c\\x53\\xc6\\x85\\xbf\\x84\\x1a\\x0f\\x8c\\xcb\\x7d\\x98\\x4e\\x3f\\x66\\\n\\xba\\xe1\\x86\\x77\\x46\\x68\\x63\\xa7\\xa2\\x53\\x6d\\x77\\x57\\xf3\\xf7\\xff\\\n\\x00\\x4f\\x4a\\xef\\x17\\x34\\x7e\\x56\\x3a\\x73\\xae\\x9f\\xdf\\x5f\\x21\\x6f\\\n\\xbf\\xa6\\xdd\\xcd\\x6a\\xf8\\x7e\\x1b\\x28\\x44\\x8e\\x71\\x3b\\x56\\x9c\\xdf\\\n\\x73\\xfd\\x1a\\xa8\\x6a\\x96\\xca\\x47\\xec\\xe6\\x2d\\x52\\xbf\\xd4\\x76\\x15\\\n\\x0a\\x54\\x1e\\x81\\x8d\\x3f\\x9c\\x44\\xea\\x90\\x0f\\x4a\\x13\\xa2\\x1d\\x77\\\n\\x9d\\x93\\x23\\x3f\\x8b\\x9a\\x90\\x90\\x45\\x03\\xcd\\xa5\\x3e\\x2a\\x82\\x78\\\n\\xd0\\x8f\\xcc\\x66\\x57\\xdd\\x6a\\x1e\\x2c\\xdf\\xd2\\x3b\\x4d\\x5b\\x27\\x76\\\n\\x13\\xe0\\xd8\\xf2\\x14\\xfc\\x1b\\xae\\xa9\\xa0\\x22\\x8b\\xe5\\x59\\xa7\\xd7\\\n\\xed\\x04\\x9b\\x3c\\xab\\xa8\\xce\\xf9\\x36\\x0d\\x8c\\x97\\x3e\\x02\\x1b\\xc1\\\n\\x06\\x91\\x32\\x0f\\x5c\\xf2\\x17\\xc2\\x77\\xfc\\xec\\x3b\\x7c\\x9d\\xe8\\x9a\\\n\\x5b\\xc9\\xf9\\x5e\\x7b\\xa6\\xb9\\x4a\\x41\\xaf\\xf6\\xfa\\xa4\\x58\\xaf\\xaa\\\n\\x72\\xff\\x00\\x10\\xac\\x4c\\xee\\x5f\\x5b\\x86\\x1b\\xe5\\x4c\\x5f\\x25\\x44\\\n\\x8a\\xcb\\xd8\\xd4\\x0b\\xa6\\x13\\x8f\\xb3\\x5e\\x5f\\x70\\x3a\\xaf\\x7d\\xd6\\\n\\xdf\\x04\\xf7\\x10\\xf0\\x4f\\x72\\xbf\\x4f\\xd8\\x46\\x98\\x59\\xf2\\x32\\x9b\\\n\\xb0\\x9b\\x89\\xdc\\x27\\x86\\xb9\\xa5\\x11\\xa8\\x1a\\xcb\\x3e\\x0d\\xaa\\x88\\\n\\x40\\x60\\xe1\\xad\\xc3\\xa2\\xb9\\xb1\\xde\\x08\\x00\\xb6\\x58\\x71\\x1c\\x51\\\n\\xb4\\x0a\\xf2\\x42\\x69\\x71\\xc1\\xe4\\x83\\x54\\x8f\\x11\\x53\\x7e\\xb7\\xcc\\\n\\x4c\\x97\\xf8\\x86\\xd1\\x55\\x70\\xc6\\x89\\x34\\x1c\\xf4\\x86\\x9a\\x12\\xed\\\n\\x4e\\x77\\x42\\xf6\\x87\\x7f\\x66\\x34\\x2b\\xb6\\x0e\\x54\\x02\\x9a\\x3f\\x60\\\n\\xff\\x00\\x61\\xe1\\xf8\\xb0\\xfd\\xd1\\x22\\xf2\\x8f\\x3a\\xcb\\xf2\\x1a\\x49\\\n\\x0c\\x39\\x3a\\x6b\\x66\\x41\\x06\\xca\\x4b\\x42\\x6f\\xac\\x0a\\x90\\x74\\x05\\\n\\xd2\\xf0\\x8c\\x80\\x55\\x58\\x9c\\x38\\x5b\\x0b\\x2e\\x6e\\xf8\\xf5\\x82\\x01\\\n\\xb6\\x22\\x73\\x4c\\x2a\\x80\\xeb\\xfa\\xf1\\x2c\\x31\\xf3\\x9f\\x16\\x37\\x0b\\\n\\x3a\\xf6\\xa2\\x2a\\x2d\\x90\\x20\\x0f\\x3d\\x16\\x64\\xb7\\xb6\\xd3\\xae\\x3b\\\n\\x27\\x3e\\x46\\xd0\\x95\\xaa\\x85\\xa6\\xef\\x41\\x2e\\xef\\x8d\\xa3\\x29\\xee\\\n\\x66\\x49\\xd9\\x02\\x1e\\x9b\\xc6\\x15\\xc2\\x84\\x18\\x62\\x4d\\x5e\\xb2\\x59\\\n\\xd8\\x34\\xe3\\xfb\\xe7\\xe0\\xb6\\x9d\\xdb\\x30\\x1f\\x6b\\xb4\\x53\\x03\\xc0\\\n\\x78\\x44\\xa6\\x26\\x9b\\x02\\x81\\x8b\\x6b\\x9d\\xf7\\xf5\\x7f\\x2d\\x4a\\xb2\\\n\\xd7\\x27\\xff\\x00\\xb2\\x0a\\x4e\\xc5\\xe8\\x03\\xc0\\x7d\\x48\\x9b\\x3b\\xf6\\\n\\x41\\x40\\xf3\\x10\\xe3\\xd0\\x92\\xee\\x2d\\xe1\\x1b\\xf9\\x09\\xcb\\xff\\x00\\\n\\x85\\x69\\xe4\\x46\\x8d\\x7e\\x75\\xc9\\x69\\x15\\x65\\xad\\xc6\\xfb\\x70\\x80\\\n\\x8d\\x29\\x9b\\xb7\\x50\\x26\\x89\\x89\\x00\\xab\\xde\\x6a\\xe3\\xfd\\xba\\x08\\\n\\x4a\\x96\\x19\\x52\\x86\\xdb\\x8f\\x5a\\xee\\xd2\\x13\\x89\\xbb\\x9e\\xe1\\x92\\\n\\xab\\xb2\\x3e\\xe3\\x3e\\xf4\\xcc\\xd3\\x4b\\xa8\\xb3\\x61\\xee\\x09\\x8e\\x03\\\n\\x77\\x0e\\x50\\xb4\\x9c\\x87\\x34\\x7b\\x18\\x7a\\xc3\\x60\\x62\\x3d\\x31\\xb7\\\n\\x92\\xd2\\x13\\x19\\xf9\\x70\\x1a\\x36\\x84\\x93\\x33\\xde\\x38\\xeb\\xce\\x14\\\n\\xbf\\x61\\x84\\x87\\x66\\x5c\\x3a\\x24\\xcf\\x6c\\x90\\xe3\\xe2\\xa4\\xb5\\x62\\\n\\x88\\x5d\\x35\\x39\\x37\\x63\\x4c\\x67\\xd6\\xc6\\x73\\xc9\\x06\\x32\\xd8\\xf0\\\n\\x96\\xb9\\xa0\\x6c\\xad\\xe7\\xf9\\x62\\xdc\\x89\\xac\\x37\\x2e\\x8d\\xca\\x12\\\n\\x0f\\xf1\\xeb\\xbd\\xa7\\xf2\\x82\\x0a\\x71\\x77\\x54\\xf2\\xb8\\x5a\\x2f\\x77\\\n\\xd0\\x57\\x34\\xaa\\x2f\\x43\\xc3\\x27\\x20\\xf2\\xf1\\xf5\\x10\\x0e\\x03\\x44\\\n\\x81\\x63\\x24\\x49\\x3b\\xe9\\xa9\\xbe\\xc6\\x5d\\x8e\\x4f\\x47\\xe5\\xea\\x00\\\n\\xf1\\x65\\x22\\x44\\x39\\xbf\\x42\\xfa\\x84\\x63\\x28\\x61\\x33\\x0c\\x8b\\x73\\\n\\xa4\\x1c\\xdc\\x6f\\x65\\x4a\\xe3\\x2b\\x0a\\x97\\xed\\xa9\\xa7\\x7c\\xff\\x00\\\n\\x5a\\x3c\\x85\\x93\\x35\\x51\\xa4\\x09\\x4e\\x23\\xf0\\x87\\x17\\xeb\\x88\\x0c\\\n\\x0b\\x57\\x3d\\x67\\x8f\\x1b\\x5c\\x1c\\x1e\\x85\\x99\\x98\\x11\\x74\\x8c\\x46\\\n\\x2a\\xff\\x00\\x48\\xb4\\x52\\xd9\\x3f\\x79\\x39\\xee\\x3b\\xc8\\x70\\x43\\x29\\\n\\x4d\\x61\\x6a\\xbb\\xf0\\x57\\xd0\\x06\\xa3\\x19\\x48\\x6b\\x98\\xb8\\x20\\x82\\\n\\x0a\\x90\\xb0\\xb3\\x48\\x86\\x96\\xc3\\x30\\x28\\xbd\\x48\\x32\\xc7\\x17\\xa4\\\n\\x05\\x96\\x4c\\xdd\\x3f\\x6b\\x7b\\x5f\\x47\\x8e\\x51\\x24\\xa4\\xca\\x58\\xc7\\\n\\xf9\\x68\\x44\\xe1\\x56\\x5a\\xa4\\x1b\\x82\\xe3\\xe1\\x6d\\xaa\\x68\\x45\\x4b\\\n\\xae\\xf2\\x6e\\xf4\\xb8\\xb5\\x86\\x1a\\x57\\xff\\xc4\\x00\\x26\\x11\\x01\\x01\\\n\\x01\\x00\\x03\\x01\\x01\\x01\\x01\\x00\\x03\\x00\\x03\\x01\\x01\\x01\\x01\\x11\\\n\\x21\\x00\\x31\\x41\\x51\\x61\\x71\\x81\\x91\\xa1\\xb1\\xc1\\xd1\\xf0\\xe1\\xf1\\\n\\x10\\xff\\xda\\x00\\x08\\x01\\x03\\x01\\x01\\x3f\\x10\\xa9\\xe2\\x34\\x45\\xfc\\\n\\x57\\xb5\\xaa\\x1f\\x48\\xaf\\x7c\\x62\\x3a\\x08\\x49\\xd1\\x43\\xa9\\x73\\xa5\\\n\\xb5\\x2c\\x0c\\x83\\x04\\xea\\x20\\x5e\\xb5\\x4a\\xbd\\x92\\x0c\\x99\\xc5\\x68\\\n\\xfa\\xf8\\xff\\x00\\x8b\\xff\\x00\\xa3\\xd3\\xfa\\x70\\x33\\xa8\\x0c\\x57\\x51\\\n\\x07\\xc2\\x5b\\xe1\\x07\\xaa\\x82\\x4f\\x42\\x31\\x34\\x01\\x05\\x32\\x09\\x3e\\\n\\x78\\x0a\\x60\\xe1\\x21\\x08\\xed\\x00\\xd1\\x7b\\xa5\\xa4\\xe7\\x48\\x00\\x80\\\n\\x76\\xd0\\x1c\\x4e\\x96\\x6a\\x3a\\x66\\x4e\\x05\\x82\\x56\\xd1\\xe8\\x76\\xb2\\\n\\x7c\\x60\\xc3\\xbe\\x22\\x6c\\x92\\xc8\\x13\\xb0\\x1b\\x62\\x3a\\x74\\xe3\\x9c\\\n\\x2c\\x80\\x86\\x89\\x23\\x85\\x77\\xa8\\x61\\x7a\\x45\\xbd\\x32\\x67\\x60\\x36\\\n\\xa0\\xb7\\x51\\x6d\\xad\\x6e\\x3e\\x90\\x4a\\xa1\\x1a\\x44\\xe9\\x62\\x0e\\xc8\\\n\\x09\\xdc\\x36\\xc7\\x97\\x27\\xb0\\x11\\x6a\\xe9\\x9d\\xbd\\x3f\\xfd\\x38\\x76\\\n\\x11\\x94\\x65\\x47\\x4c\\x41\\x28\\x98\\x90\\xbd\\xa4\\x6e\\x29\\x58\\x01\\x07\\\n\\x79\\xdb\\x31\\x7b\\x17\\x4d\\x0c\\x84\\x86\\xd1\\x11\\x7b\\x26\\x4c\\xf6\\x7b\\\n\\x78\\x8f\\x7b\\x09\\x8b\\xc7\\x08\\xa0\\x19\\xec\\x7a\\x6d\\x30\\x19\\x45\\x0d\\\n\\x4d\\x65\\x32\\x5e\\x92\\x99\\x4c\\xe3\\x0a\\x19\\x76\\x38\\x4b\\xb2\\x38\\x05\\\n\\x14\\x03\\x5e\\x32\\x68\\x68\\x47\\x61\\x53\\x29\\x4b\\x5a\\xd7\\x1e\\x9a\\xa4\\\n\\xdb\\xa2\\x48\\x95\\xa5\\x0d\\x40\\x57\\x7c\\xef\\x33\\x84\\xb5\\x45\\x86\\xbd\\\n\\x8a\\xd2\\x65\\x96\\x5e\\xba\\xa7\\x37\\x17\\xc0\\x74\\x3a\\x3d\\xed\\xff\\x00\\\n\\x9d\\xe1\\xfa\\x44\\x74\\x23\\x68\\xdd\\x8a\\x98\\x93\\x17\\x31\\x09\\x5e\\x10\\\n\\x74\\x31\\xf7\\x74\\x0a\\x9a\\x75\\xc0\\xa0\\x18\\x0e\\x80\\xac\\x84\\xa8\\x68\\\n\\x1a\\x94\\x51\\x95\\x0f\\x04\\x5c\\x24\\x47\\xea\\xc4\\x17\\x34\\x53\\xa8\\x36\\\n\\x36\\x81\\x14\\x28\\x4c\\x6d\\xfd\\x1f\\x3b\\x3e\\x9c\\x93\\xf8\\xdd\\x85\\xef\\\n\\x5d\\x93\\x5a\\x39\\x52\\x70\\x13\\xc2\\x45\\xa0\\x10\\x23\\x82\\x14\\x7c\\x88\\\n\\xd6\\x71\\xd4\\xa0\\x56\\xe5\\xad\\x56\\xf5\\x8b\\x70\\xeb\\xed\\xe3\\x05\\xa8\\\n\\x3d\\xc9\\xd3\\x1e\\xbb\\x7f\\x1e\\xa1\\x2c\\x52\\x7b\\x63\\x1a\\xcf\\xde\\xf7\\\n\\xde\\xb4\\xfb\\xc6\\x5c\\xc3\\x0a\\x90\\x26\\x58\\x53\\xf0\\xbb\\x24\\x81\\x10\\\n\\x98\\x85\\x74\\xcd\\xa5\\x48\\xa3\\xdb\\x7b\\xaf\\xa9\\xf2\\x24\\x3f\\x05\\xff\\\n\\x00\\x69\\xf7\\x33\\xb2\\x4c\\x10\\x9b\\x77\\xb2\\x3d\\x04\\xff\\x00\\x4e\\x77\\\n\\xbe\\xf3\\xb8\\x1b\\xd3\\x1a\\xe6\\xc6\\x4b\\xd7\\x61\\xbf\\xc5\\x42\\xaf\\x81\\\n\\x91\\xd5\\x19\\xe8\\x74\\x2c\\xf1\\x21\\x1b\\x00\\x6f\\x5e\\x08\\x79\\xde\\x00\\\n\\xe2\\x20\\x6b\\x3b\\x7c\\x15\\x6b\\xdd\\xa1\\xff\\x00\\x6c\\x71\\x7f\\x5a\\x9c\\\n\\x22\\x02\\xb0\\x74\\x03\\x59\\x8b\\xd7\\xe2\\x7b\\x38\\x0c\\xb0\\x19\\x82\\x02\\\n\\xa1\\x68\\x90\\x56\\x8a\\x59\\x31\\x71\\xec\\xdb\\x49\\x14\\xe3\\x27\\x89\\x3d\\\n\\xf6\\x00\\x1a\\x00\\x91\\x14\\x83\\x00\\xc0\\xc8\\x25\\x65\\x1e\\x66\\x60\\xe3\\\n\\x80\\x50\\x32\\x96\\xcc\\x20\\xcb\\x51\\xa4\\x1d\\xc4\\xc3\\x50\\x44\\xa7\\xf4\\\n\\xed\\xda\\x80\\x00\\x3d\\x42\\x05\\xdc\\x74\\xcd\\xce\\xde\\xd9\\xdf\\x1e\\x0d\\\n\\x56\\x30\\xaf\\x2e\\x82\\x17\\x09\\x59\\x4d\\x43\\x05\\x55\\x88\\xa1\\xcf\\xab\\\n\\xeb\\xac\\x57\\x50\\xbc\\x63\\x61\\xc6\\x43\\x52\\x11\\xac\\x5c\\x2b\\x8d\\x1b\\\n\\xd9\\x0c\\x2d\\x5d\\x65\\x56\\x17\\xe2\\x54\\xe5\\xda\\x81\\x12\\x21\\xed\\x3d\\\n\\x28\\x02\\x41\\x04\\x4e\\x77\\xe8\\x70\\x02\\x95\\x54\\x76\\x15\\x34\\xec\\xd0\\\n\\xa5\\x08\\x00\\x11\\xa8\\x4c\\x00\\x25\\xb4\\xf5\\x52\\x1c\\x01\\x62\\x11\\x60\\\n\\x44\\xf5\\x74\\x78\\xfa\\x8a\\x4a\\x34\\x44\\xc8\\x35\\xf8\\x79\\xeb\\xbc\\x90\\\n\\xd1\\x8d\\xe3\\x80\\x48\\xb9\\x05\\xab\\xff\\x00\\x26\\xd5\\xfd\\xeb\\x8c\\x63\\\n\\xac\\x57\\x47\\xe8\\xed\\x22\\xcb\\xaf\\x8f\\x15\\x00\\x07\\xc0\\x01\\x50\\xf1\\\n\\x8f\\xe0\\x14\\xa8\\x9d\\xeb\\x22\\xc9\\x4c\\x74\\x00\\xf2\\x11\\x70\\x75\\xe1\\\n\\xc8\\xcc\\x18\\x30\\x2a\\x17\\x59\\x56\\xcb\\xd1\\xc4\\x73\\xac\\xb0\\xe0\\x76\\\n\\x40\\xd2\\x85\\x0f\\xcf\\x82\\x71\\x09\\x23\\x02\\xa4\\xe9\\x3a\\x35\\x43\\x6e\\\n\\x76\\xaf\\x47\\xd0\\x53\\x0b\\x50\\x80\\xfc\\x6e\\x24\\xc0\\xe8\\x54\\x86\\x2c\\\n\\xa9\\x50\\xed\\xa7\\x7e\\x50\\xd0\\xba\\x02\\x2e\\x9b\\xc2\\x42\\x84\\x10\\x02\\\n\\x95\\x04\\xf3\\x30\\x41\\x44\\xd2\\x50\\xd0\\xcc\\xa1\\x4c\\x5b\\x2e\\xfb\\xab\\\n\\x41\\x5c\\xac\\xf6\\x7e\\x00\\x50\\xd4\\x54\\xd0\\xaf\\xaf\\x0a\\x9d\\x60\\x3a\\\n\\x29\\x77\\x58\\x99\\x71\\x36\\x90\\x8e\\x06\\x08\\xa9\\x5b\\x75\\x09\\x7a\\x77\\\n\\x5a\\x66\\x87\\x37\\xbe\\xbd\\xe8\\x7a\\x18\\xba\\xf5\\xd4\\xa2\\x2e\\xa3\\x8b\\\n\\x4f\\xa2\\x80\\x69\\x4a\\x80\\xbf\\xf0\\x99\\xbc\\x94\\x76\\x0e\\xab\\x0c\\x60\\\n\\x6c\\x08\\x87\\x5d\\x71\\xc5\\x0d\\x83\\x19\\xa3\\x10\\x00\\xf5\\x18\\xab\\x5f\\\n\\x27\\x34\\x06\\xd8\\x80\\x74\\x20\\x44\\x42\\xe0\\x38\\x87\\x9c\\x02\\x8b\\x42\\\n\\x54\\x3a\\x90\\x35\\x0b\\xd3\\x13\\x1b\\xc2\\xfa\\x23\\xa0\\xeb\\xb6\\xe3\\x0d\\\n\\xf1\\xb4\\x52\\x8d\\x0b\\xdc\\x7b\\x17\\x3d\\x0f\\xd2\\x1f\\x08\\xe2\\xf0\\x63\\\n\\xb5\\x93\\xaa\\x54\\xd7\\x78\\x47\\xf0\\x5e\\x49\\xed\\xa2\\x8a\\x44\\x08\\x34\\\n\\x35\\x44\\x8d\\x4e\\x6a\\x40\\x49\\x82\\xd5\\xd3\\xb8\\x20\\xf8\\x95\\x03\\x8f\\\n\\xe2\\x96\\x84\\x04\\x46\\x00\\xe8\\x56\\x46\\xfd\\x02\\x2d\\x60\\x24\\x00\\x72\\\n\\x11\\x44\\x40\\x53\\x02\\x3d\\xf5\\x38\\x18\\xaa\\x78\\x0d\\x5e\\xfc\\xfb\\xf2\\\n\\xdf\\xc3\\x39\\x60\\x25\\x8b\\x0b\\x6b\\x67\\xc1\\xd6\\x33\\x76\\xf1\\xc5\\x0b\\\n\\xad\\x18\\xd4\\x66\\xc5\\xa3\\xf6\\x54\\x1a\\x54\\x70\\x3a\\x20\\x16\\x2a\\xd3\\\n\\x32\\xbd\\xb6\\x33\\x8e\\x93\\x66\\x07\\x91\\xad\\xe8\\x93\\xc9\\xf3\\xa3\\x2e\\\n\\xc6\\x65\\xb4\\xa8\\x08\\x93\\x68\\x42\\xcd\\x82\\xb2\\x1a\\x12\\x93\\xfe\\xcd\\\n\\x66\\xbb\\xfb\\x7e\\xf2\\x7a\\xef\\xd1\\x23\\xa6\\x80\\x4d\\x53\\x3a\\xe5\\xa1\\\n\\xd3\\x6a\\x85\\x42\\x01\\x26\\xa7\\x5b\\xec\\xaa\\x29\\xc7\\x80\\xa9\\x45\\x0f\\\n\\x56\\x79\\x4b\\xff\\x00\\x9f\\x0e\\x04\\xa8\\x51\\x1a\\x4e\\xd1\\x70\\x0f\\x4f\\\n\\xf7\\x94\\x18\\x40\\xd8\\x91\\xff\\x00\\xb3\\xaf\\xcf\\xfe\\xb8\\xa0\\x7b\\x95\\\n\\x54\\x31\\xb2\\xd5\\xc2\\x6b\\xee\\x0f\\x7c\\x88\\x04\\x42\\xc5\\x59\\x01\\x02\\\n\\x45\\x67\\x67\\x75\\x5d\\x55\\x12\\x8a\\xb6\\xe3\\x18\\x18\\x23\\xbb\\x60\\x43\\\n\\xe9\\xea\\xe9\\xb2\\x92\\xa3\\xbc\\x40\\xe8\\x60\\x48\\x2e\\x4b\\xd8\\x4e\\xd6\\\n\\xe4\\x5a\\x28\\x23\\x21\\xb8\\x10\\xf3\\xde\\x00\\xbd\\x55\\x82\\x56\\x1d\\x1d\\\n\\x8f\\xbe\\xc8\\x17\\x8b\\x46\\x7a\\x7c\\xd5\\x0b\\xae\\x36\\x15\\xd2\\x0a\\x3b\\\n\\x61\\x0c\\x1d\\x43\\x2c\\x82\\xbb\\x1e\\xe2\\x58\\x72\\x19\\x94\\x11\\x4a\\x34\\\n\\xb5\\xdd\\xdd\\xf8\\x41\\x87\\xd6\\xd2\\x29\\x21\\xa3\\x02\\x2a\\xfa\\x29\\xae\\\n\\x3b\\x4c\\x52\\xca\\x21\\x42\\x5f\\x6e\\xc9\\xa8\\x29\\xcb\\x61\\xd0\\x9d\\x51\\\n\\x56\\xc0\\x15\\x87\\x72\\x6c\\x0e\\x0b\\x39\\x2e\\x0a\\xdd\\x52\\xa8\\x6d\\x44\\\n\\x98\\x6a\\x6c\\xd9\\x54\\x24\\x14\\xc1\\x57\\x81\\x26\\x9a\\xa3\\xe0\\x19\\x1d\\\n\\x05\\x99\\x54\\x9b\\x05\\x40\\x55\\xc1\\xb6\\xfa\\x8d\\x7b\\x20\\xe2\\x42\\x50\\\n\\xd0\\x8c\\xa4\\x6e\\x88\\x59\\xdc\\x07\\xa0\\x02\\x34\\x41\\xdd\\x69\\xb8\\xb8\\\n\\x10\\xd9\\x88\\x08\\x2f\\x62\\x63\\xb2\\xf8\\x22\\x74\\x1a\\x89\\x51\\x1e\\x5a\\\n\\x53\\x52\\x58\\x74\\x40\\xf5\\x98\\xa3\\x10\\x9f\\xaf\\x5c\\x90\\x46\\x08\\xf4\\\n\\xd1\\x38\\xe2\\xeb\\x43\\x5b\\x03\\x15\\x17\\x2b\\x10\\xda\\x39\\xdc\\xd2\\x5d\\\n\\x6c\\x10\\x80\\x14\\x42\\x3d\\x0c\\x41\\x1b\\xce\\x2d\\x10\\x24\\x8a\\x8a\\x68\\\n\\x44\\x58\\x4a\\x05\\x6b\\xa8\\x20\\xfa\\x42\\x25\\x30\\xba\\x99\\xae\\x78\\xe3\\\n\\xc5\\x2d\\x29\\x69\\x81\\x18\\xdd\\x20\\x94\\x91\\x48\\xdb\\xc2\\x0f\\x15\\xc5\\\n\\x0d\\x49\\x4a\\x83\\x21\\x95\\x09\\x57\\x84\\x54\\x14\\x51\\x1c\\x1a\\xac\\xd5\\\n\\xab\\x83\\x6e\\xb8\\x30\\x21\\x34\\x83\\xd0\\x24\\x16\\x51\\x00\\x08\\x48\\x09\\\n\\x90\\x11\\xe8\\x29\\xea\\xff\\x00\\xd7\\x8f\\x18\\x28\\x51\\x60\\x09\\x50\\x2d\\\n\\x1c\\xaf\\x40\\xf6\\x0b\\xd7\\x6d\\x4a\\x6f\\x60\\x89\\x4a\\x01\\xd2\\x25\\x56\\\n\\x2a\\x6a\\xa0\\xb0\\x07\\x43\\xb2\\x7b\\x3b\\x03\\xf6\\x71\\x01\\x47\\x15\\x10\\\n\\x21\\x1a\\x45\\xc3\\x7e\\x66\\x25\\xce\\x4a\\x92\\x68\\x10\\x65\\x60\\xaa\\x61\\\n\\x1a\\x40\\xe2\\x54\\x77\\x12\\x05\\x6a\\x4c\\xf4\\x9e\\xe1\\x4b\\x38\\x73\\x0b\\\n\\x59\\x76\\x30\\xbd\\x50\\xfe\\x83\\x28\\x1c\\x2f\\x63\\x52\\x6a\\xa7\\x40\\xb4\\\n\\x21\\x3c\\xb0\\xb6\\x70\\x50\\x94\\x20\\xd9\\x0b\\x4a\\x2a\\x87\\x4f\\x70\\xfb\\\n\\xc0\\x8f\\x62\\x43\\xb6\\xe2\\xf8\\xa8\\xde\\x8f\\xea\\x71\\x32\\x43\\xcf\\x25\\\n\\x20\\xa1\\x01\\x4a\\xae\\x6d\\x70\\xe3\\x18\\x0b\\xec\\x69\\x0d\\xd3\\xff\\x00\\\n\\x7a\\x3f\\x78\\x35\\x8c\\x95\\x62\\xea\\xc5\\x06\\x65\\x7b\\xd7\\x49\\xb0\\x86\\\n\\x28\\x1e\\xaa\\xba\\x15\\x18\\xf2\\x27\\xb0\\x55\\x28\\x4a\\x8e\\x8c\\xc3\\xdf\\\n\\x4c\\x81\\x2e\\xf6\\x4f\\x02\\x0a\\xa4\\x14\\x14\\xf5\\x23\\x12\\x94\\x77\\xbf\\\n\\x55\\x10\\x93\\x48\\xdc\\x81\\x47\\x82\\xf4\\x8d\\xd8\\x5e\\x88\\x28\\x03\\xe1\\\n\\x02\\x02\\x9a\\x75\\x63\\xa3\\xc6\\xa1\\x5c\\xc5\\x5d\\xc1\\x16\\xcc\\x7a\\xe5\\\n\\x8d\\x87\\x35\\xf6\\x55\\x85\\x04\\xde\\xfa\\x51\\xdd\\xc9\\x07\\xbe\\x11\\x8c\\\n\\xc2\\xa8\\xb0\\xa8\\xc3\\x56\\xa5\\x23\\x7b\\xf9\\xcc\\x65\\x89\\x6a\\x00\\x04\\\n\\xaa\\x21\\x82\\x21\\x76\\x87\\xa2\\x0d\\x41\\x0a\\x0d\\xa1\\x25\\x58\\x27\\x5f\\\n\\x9c\\x66\\x55\\x01\\xe8\\x9a\\x4a\\x7a\\x20\\x1f\\x18\\x90\\x22\\x8c\\x67\\x19\\\n\\xb1\\x12\\x51\\x1c\\x5d\\x63\\x06\\xb0\\x1d\\x27\\xa4\\x3d\\x44\\x98\\x23\\xb9\\\n\\x9b\\xe0\\xaa\\x34\\x62\\x0b\\x5b\\x6a\\x8e\\x8a\\xca\\x30\\xea\\x93\\x8d\\x05\\\n\\x7b\\x21\\xa3\\xb9\\x14\\x74\\xc3\\x9b\\x8a\\xae\\x70\\xbd\\x86\\x5b\\x48\\x69\\\n\\x12\\x6b\\x07\\x50\\xe5\\x9d\\x6d\\x4e\\x86\\x1a\\x68\\x7a\\xe9\\x61\\x08\\xf2\\\n\\x62\\x5f\\xc8\\xf8\\x7e\\x9e\\xe9\\xbb\\x99\\xc1\\x06\\x86\\x9a\\x15\\x53\\x62\\\n\\x73\\xbd\\xee\\xcc\\xe6\\xba\\x5b\\xf3\\xff\\x00\\x7f\\xbb\\xc0\\x14\\x6a\\x21\\\n\\x08\\x81\\x9f\\xf3\\xce\\xcc\\x7b\\x3b\\xe6\\x98\\xa1\\x99\\xd3\\x9f\\x0e\\xbe\\\n\\x6f\\x15\\x7b\\x10\\x00\\x44\\x1c\\x1b\\x50\\xda\\xbf\\x0c\\x6f\\xae\\xbc\\x2b\\\n\\xd5\\xa0\\xd9\\xdd\\xf4\\xb1\\xc2\\xf5\\xc6\\xc2\\xa4\\x04\\x0b\\x69\\x50\\xaf\\\n\\xb2\\x41\\xd7\\x60\\x06\\x18\\x8a\\x96\\xf4\\xb5\\x65\\xef\\x1b\\x48\\xd3\\x81\\\n\\x63\\x68\\xdb\\x8c\\x54\\x46\\x74\\x19\\xf2\\xe7\\x7c\\xa4\\x65\\xba\\x88\\xb2\\\n\\xea\\x24\\xb8\\xcd\\x10\\xed\\x3a\\xe3\\x24\\x80\\x8f\\x42\\xa1\\xd2\\xe2\\x35\\\n\\x29\\x95\\x8e\\xf2\\x8e\\xc4\\x68\\x6b\\x15\\x5d\\x15\\x23\\x34\\x20\\xd2\\x66\\\n\\xcc\\x62\\xc0\\x11\\xc0\\x84\\x6d\\xb7\\xb3\\x09\\x03\\x10\\x52\\xee\\xc4\\x11\\\n\\x28\\x17\\xa5\\xfe\\xa1\\xbc\\x21\\x50\\x00\\x14\\x7f\\xe5\\x04\\x3f\\x9d\\x02\\\n\\x69\\x1b\\xca\\xfc\\x68\\x97\\xa3\\x3e\\x09\\xdb\\xd1\\x24\\x9c\\x35\\x90\\x9c\\\n\\xd7\\x71\\xf4\\x14\\x30\\xa7\\x83\\xed\\x88\\x80\\x21\\xb6\\x18\\x46\\xc4\\xba\\\n\\xc4\\x58\\xee\\x1d\\x82\\xee\\x1d\\x08\\x41\\x53\\x68\\xdf\\x3e\\xf0\\x68\\x20\\\n\\xf5\\x00\\x5b\\xf5\\xb3\\x77\\x4d\\x74\\xcd\\xe0\\xfc\\x81\\xaa\\x13\\xb0\\xa1\\\n\\x19\\xec\\x76\\x76\\xc6\\x97\\x61\\xd4\\x05\\x0e\\x0c\\xf6\\xf8\\x85\\x11\\x6d\\\n\\xe5\\x5c\\x20\\x2c\\x2c\\x3a\\x85\\x60\\x0a\\xe0\\x76\\x9c\\x55\\x01\\x89\\x02\\\n\\x91\\x64\\x54\\x8a\\x22\\xa7\\xbd\\x48\\x55\\x54\\x2c\\x11\\x1d\\xa1\\xf0\\x40\\\n\\x92\\x55\\x58\\xc3\\x00\\xb8\\x55\\x07\\x00\\x10\\x76\\x29\\xc5\\x9a\\x1e\\xe5\\\n\\xa2\\xd9\\x11\\x20\\x19\\xb1\\x06\\x70\\xc8\\x19\\xe4\\x81\\x81\\x01\\x2e\\x47\\\n\\x1e\\xc4\\xd7\\x97\\x43\\x08\\x44\\x0a\\x46\\x94\\x14\\x53\\x0c\\x3a\\x2a\\x56\\\n\\xa0\\x76\\x3d\\x98\\xda\\xa4\\x2b\\xd1\\x4a\\xf2\\x1c\\x44\\x92\\xa0\\x60\\x9d\\\n\\x63\\xfe\\x12\\x7c\\x23\\x28\\xa4\\xe9\\x6b\\x6c\\x4a\\x7f\\xfb\\xce\\x38\\x64\\\n\\xc7\\x4a\\x18\\xb8\\x54\\x5b\\x0c\\x27\\xdd\\x12\\xc5\\x62\\x81\\x41\\x35\\x27\\\n\\xc4\\x47\\x66\\x0e\\x0f\\x08\\x00\\x1e\\x96\\x29\\x20\\x74\\x89\\x1a\\xc8\\x97\\\n\\x86\\xd1\\xbd\\x14\\x1f\\xe3\\xb5\\x01\\x8e\\xa4\\x7e\\xbc\\x4b\\x41\\xc0\\x80\\\n\\x6c\\x8b\\xe4\\xa1\\x63\\x4f\\xd2\\x3c\\x64\\xd5\\x03\\xd1\\x10\\xf4\\xc4\\x3d\\\n\\x37\\xcf\\xb7\\x8c\\xba\\x23\\x41\\x0a\\x02\\x35\\x65\\xac\\x2c\\xaa\\xb5\\xbd\\\n\\x90\\x30\\x06\\x9f\\x8d\\x53\\xb3\\x0f\\x1c\\x8c\\xdc\\x05\\x1d\\x25\\x4c\\xc6\\\n\\xca\\xab\\x7c\\xe1\\xcc\\x35\\x64\\xd1\\x01\\x41\\x8d\\xd2\\x93\\x61\\xad\\xee\\\n\\xa2\\x85\\x81\\xa0\\xaa\\x79\\x11\\xd1\\xbf\\x08\\xd0\\x5a\\x3a\\x09\\x1a\\x9a\\\n\\xb0\\x6c\\x77\\xa0\\xd7\\x63\\x32\\x67\\x41\\x8b\\x45\\x5f\\xa2\\xe3\\x5c\\x2d\\\n\\xec\\xaa\\xa4\\xb8\\xa9\\x14\\x28\\x44\\x98\\xa7\\x6e\\xe9\\x0e\\x2e\\x2c\\xf7\\\n\\x00\\x8a\\x80\\x3a\\x8c\\xd6\\x12\\x3f\\xbc\\x73\\x01\\x61\\xa1\\xe9\\x2e\\x0d\\\n\\xd6\\x81\\xee\\xb9\\xc6\\x62\\x6e\\x24\\x81\\x98\\x08\\x69\\x54\\x44\\x71\\xc1\\\n\\x62\\x96\\x0c\\xb1\\x82\\xba\\xc7\\x5f\\xb2\\x56\\x7d\\x24\\x58\\x0a\\xd2\\x22\\\n\\x05\\xda\\xc3\\xbb\\x94\\x97\\x92\\xc4\\xa1\\xe9\\x16\\x3f\\xbf\\xc7\\xcb\\xfd\\\n\\xfd\\xe0\\xbc\\x00\\x26\\x9d\\xb5\\x57\\x55\\xea\\x7f\\xc7\\x15\\x11\\x2a\\x4a\\\n\\x28\\xf0\\x9e\\xf9\\x72\\x91\\x78\\x7f\\x51\\xa0\\x20\\xa4\\x4f\\x89\\x52\\x59\\\n\\x29\\x19\\x02\\x34\\xcd\\x19\\x5c\\x45\\xa3\\xf4\\xab\\x3c\\xc0\\x79\\x6a\\xe3\\\n\\x00\\x8a\\xc2\\x8d\\x96\\x67\\x41\\xb9\\xd6\\xf2\\xca\\x60\\x1a\\xc2\\x04\\xa0\\\n\\xa3\\x30\\xa5\\x81\\x16\\x5d\\x2f\\x6e\\x28\\xab\\x3c\\x52\\x1d\\x8c\\x3a\\x45\\\n\\xaa\\xf2\\x0a\\x81\\x4d\\x04\\x93\\x6e\\x24\\x4d\\x87\\x1f\\xc8\\x85\\x1a\\xea\\\n\\x53\\x20\\x09\\x29\\xe5\\xc4\\x03\\x49\\x24\\x8f\\x40\\x00\\xd7\\xf5\\x6a\\xb2\\\n\\x0f\\x15\\x2c\\xef\\x6e\\x7a\\x58\\xff\\x00\\xfc\\xa7\\x2b\\xf6\\x7f\\x33\\xff\\\n\\x00\\x38\\xab\\x02\\xbe\\xbb\\x0c\\x3b\\xbd\\xff\\x00\\xfc\\x87\\x9c\\x9a\\xaf\\\n\\x63\\xa3\\xe4\\xe9\\x36\\xa3\\x7f\\xff\\x00\\x57\\x9e\\xff\\x00\\xcf\\xff\\x00\\\n\\x1c\\x9d\\x11\\x36\\x8f\\x96\\x16\\xb1\\x95\\x20\\x59\\x73\\xe2\\xd9\\x56\\x40\\\n\\x20\\x5a\\x27\\x6e\\xa7\\xdb\\x01\\xee\\x11\\x27\\xd9\\x46\\x91\\x47\\xa6\\x38\\\n\\xa6\\x09\\x5c\\x6a\\xec\\x16\\xf6\\x21\\x28\\x96\\x40\\xb8\\x30\\x19\\x18\\xf2\\\n\\x82\\x00\\x79\\x0a\\x75\\x82\\xa8\\x35\\x2c\\xa8\\x68\\x1d\\x61\\x51\\x4e\\xf6\\\n\\x40\\xd2\\x68\\x81\\x37\\xa3\\xc2\\xc5\\x76\\xc4\\xd4\\x8c\\xaa\\x44\\x51\\xd1\\\n\\x10\\x60\\x0b\\xf8\\xe4\\x48\\xd0\\x42\\x23\\x08\\x0f\\x45\\x00\\x6a\\x52\\x94\\\n\\x0e\\xf1\\xac\\xc5\\x04\\x34\\xdf\\xfb\\x13\\x85\\x14\\x81\\xb9\\x1d\\x68\\xc1\\\n\\xa2\\xd4\\x0b\\x05\\x55\\xca\\x7c\\xd3\\x3c\\x31\\x50\\x83\\xb8\\xf4\\xcf\\xc3\\\n\\x8c\\xea\\x0a\\xa5\\x5d\\x40\\x02\\xde\\xe5\\x34\\xe4\\x83\\x5b\\xf4\\x97\\xc1\\\n\\x15\\x74\\x54\\x98\\x3d\\x17\\x51\\x82\\x05\\xe8\\xc8\\x40\\xb9\\xbf\\x15\\x51\\\n\\x77\\x4d\\xc0\\x01\\x13\\xd7\\xfd\\xbf\\xf1\\xa5\\x99\\xd3\\xd1\\x20\\xa9\\x41\\\n\\xdc\\x15\\x38\\x7c\\xb4\\xda\\x38\\x2f\\x22\\xea\\x22\\x96\\xa8\\xe0\\x65\\x47\\\n\\xfd\\x00\\x0c\\x30\\x6d\\x11\\x92\\x73\\xc2\\x0a\\x57\\x4a\\x0e\\x15\\xa8\\x14\\\n\\x41\\x30\\x01\\xf1\\x64\\x4c\\x7b\\x8f\\x7c\\xa6\\x48\\x2d\\x8b\\x34\\xbc\\x99\\\n\\x02\\xb0\\x51\\x1c\\xc4\\x14\\xc6\\x6e\\xc1\\x7b\\x0d\\xd6\\xe6\\x05\\x31\\x41\\\n\\x46\\x07\\xa9\\xd3\\xa6\\xce\\x93\\xbd\\x4e\\xa3\\x05\\x38\\x48\\x1d\\x00\\x58\\\n\\xa9\\x05\\x00\\x66\\x99\\x1e\\x67\\x32\\x4e\\x1d\\xaa\\x8f\\x47\\x56\\x75\\xfc\\\n\\x1c\\x50\\x2a\\x4c\\x0b\\x00\\x9c\\xa5\\x22\\x05\\x48\\x41\\xce\\xab\\xc4\\xb9\\\n\\x0a\\x12\\x8a\\x5b\\x06\\x84\\x48\\x21\\x45\\x57\\xb3\\x40\\x27\\x69\\x0e\\xbb\\\n\\x9f\\x3f\\x9c\\x3d\\x59\\x5f\\x8f\\x5f\\x92\\x67\\x1d\\x11\\xa5\\xc5\\xa0\\x6d\\\n\\xa3\\x04\\x53\\xf2\\xb7\\x42\\x1b\\x20\\x1a\\xa2\\xc5\\xa3\\xfd\\xaa\\xc3\\xad\\\n\\x39\\xf6\\xf3\\xd2\\xa8\\x31\\x9a\\xa3\\xd5\\x2f\\x73\\xd3\\x83\\xc0\\x03\\xd9\\\n\\x04\\x9b\\x75\\xd1\\xb6\\x75\\x87\\x13\\x2e\\x91\\x1c\\x8c\\x9f\\xa0\\xf0\\x9a\\\n\\x0b\\xb0\\xf4\\x66\\x71\\x30\\x3b\\xc2\\x69\\x3a\\x0c\\x6d\\x68\\xf8\\x4b\\x20\\\n\\x0d\\x25\\x1a\\x92\\x46\\x43\\x02\\x42\\x58\\xea\\xae\\x80\\xec\\x3a\\xa3\\x8e\\\n\\x6e\\x99\\x38\\x52\\x21\\x2b\\x00\\x11\\x08\\x82\\x76\\xb5\\xaf\\x8e\\xf1\\xfe\\\n\\xa5\\xa8\\xb6\\x2e\\xd5\\xc1\\x42\\x21\\xea\\xc5\\xe2\\xa0\\x0a\\x03\\x18\\xc6\\\n\\x6e\\x9f\\xab\\xd7\\x2c\\x78\\xb4\\x75\\x1d\\xbf\\xfa\\xca\\xa1\\xdb\\xe6\\xb0\\\n\\xb3\\xe6\\x98\\x8d\\x22\\x01\\xa4\\x98\\xc2\\x73\\x08\\x80\\x68\\x1c\\x98\\x1a\\\n\\x28\\x53\\x68\\x07\\x5c\\x0b\\x6a\\xa5\\xb4\\x1b\\x82\\x21\\x82\\x7d\\xa9\\x03\\\n\\x68\\x53\\x83\\xcb\\x4a\\x88\\x5e\\xb7\\xed\\x0a\\xeb\\xc5\\xa6\\xb0\\x4e\\x00\\\n\\x60\\x2f\\x85\\x96\\x8f\\x7d\\x28\\x18\\xae\\x58\\x20\\x16\\x28\\x82\\x8a\\x88\\\n\\x19\\x95\\x84\\x16\\x65\\x4d\\xd6\\x80\\x14\\x46\\x83\\x5d\\xbc\\x73\\x12\\x15\\\n\\xe1\\x72\\x8f\\x73\\xe6\\x78\\x24\\xed\\xf5\\x55\\x01\\xb3\\xa2\\x92\\xca\\x28\\\n\\x49\\x4b\\xb5\\x84\\x1f\\x45\\x11\\x19\\xa2\\x3a\\x9e\\xa8\\xca\\xde\\x99\\xa8\\\n\\xf4\\x7e\\xa2\\xc5\\x05\\x05\\x0c\\xc3\\x8d\\x8a\\x20\\x2c\\x14\\x92\\x94\\x0c\\\n\\x24\\x69\\xa2\\x4e\\x57\\xa6\\x55\\x17\\x68\\x56\\x88\\xf6\\x62\\x9a\\x53\\x42\\\n\\x6b\\x0a\\x47\\x40\\x88\\xf8\\x01\\x57\\xa0\\x0c\\x32\\x48\\xf4\\x2a\\x39\\x59\\\n\\x15\\x60\\x5d\\xed\\x6d\\xb7\\xde\\x7b\\xb8\\x03\\x28\\xa8\\x18\\x41\\x38\\x8d\\\n\\x49\\x50\\x70\\x70\\x18\\x00\\x35\\x52\\xd4\\xd3\\x20\\x11\\xff\\x00\\x1c\\x47\\\n\\xb1\\x18\\x93\\x2d\\x0f\\x2f\\x7f\\xdb\\x34\\xe3\\x46\\xc1\\x1d\\xb7\\xf6\\xce\\\n\\xee\\xbf\\xc8\\xb5\\x6f\\x19\\x3e\\xde\\xdd\\xbd\\xc6\\xba\\xfc\\x2c\\x33\\xf9\\\n\\x53\\x30\\x50\\xcc\\x56\\xf4\\x3a\\xb4\\x63\\x71\\x49\\x7b\\xe3\\x8b\\x20\\x04\\\n\\x60\\x44\\xad\\x42\\xb8\\xb8\\x4d\\x50\\x38\\x08\\xa3\\x8b\\x41\\x52\\x0a\\x31\\\n\\xb0\\x5b\\x62\\x5d\\x0a\\x14\\x49\\x21\\x0a\\x5c\\x54\\x15\\x73\\x02\\x79\\xf2\\\n\\x25\\xd8\\xfb\\xa5\\x13\\x4e\\x82\\x6a\\xf8\\x25\\x92\\xcf\\x02\\x8a\\x7f\\x79\\\n\\x3f\\xea\\x4a\\xff\\x00\\xb5\\x03\\xa3\\xdc\\x98\\x2a\\xa2\\x20\\x20\\x46\\xa8\\\n\\x62\\x05\\x5a\\x12\\x56\\x09\\x23\\x56\\xf4\\xf8\\xef\\xc5\\xb8\\x12\\x1c\\xcb\\\n\\x6c\\x5a\\x42\\x84\\x8a\\x31\\x2e\\x78\\x5c\\x20\\x40\\xf7\\xbc\\x0c\\xf5\\x34\\\n\\x22\\x92\\x98\\x07\\x25\\x4a\\xa2\\x61\\x4b\\xd1\\x54\\x31\\x3b\\xb4\\x22\\x9e\\\n\\x31\\x64\\x60\\x04\\x24\\x3b\\x7a\\xaf\\x7c\\x05\\x14\\x85\\x47\\x28\\x10\\x5a\\\n\\x11\\xe7\\xe2\\x90\\x34\\xec\\x83\\xdd\\x75\\x6a\\xf5\\x16\\x28\\xa1\\x00\\x1d\\\n\\x00\\x42\\xaa\\xa1\\x91\\x88\\x83\\x7d\\x51\\x1b\\xbf\\xcd\\x8a\\xe0\\x50\\x52\\\n\\x85\\x54\\x21\\x40\\x25\\x64\\x00\\x2c\\x38\\x84\\xb6\\x98\\x55\\x56\\x8c\\xf1\\\n\\x22\\x05\\xa6\\xb9\\xbc\\x36\\xaa\\xda\\xd8\\x25\\xc4\\x61\\xc6\\x20\\x4d\\x7b\\\n\\x55\\xca\\xb1\\x20\\x34\\x38\\x83\\x7d\\xa7\\xed\\x18\\xe6\\xa0\\x09\\x12\\x39\\\n\\x57\\x4d\\x47\\xe6\\x1a\\x06\\xa1\\x3d\\x9b\\x06\\x21\\x05\\x05\\x8f\\x68\\x0b\\\n\\x54\\x28\\x01\\x15\\x78\\x93\\xcf\\x6e\\x71\\x2c\\x86\\x25\\x58\\x6d\\x00\\x03\\\n\\x00\\xc5\\x01\\x4d\\x04\\xe7\\x6b\\xa0\\xa0\\x7b\\x05\\x05\\x44\\xf6\\x85\\x1d\\\n\\xb4\\x69\\xe1\\x2b\\x50\\x04\\x2e\\x94\\x96\\x5c\\x46\\xa1\\x7d\\xe1\\xe9\\x82\\\n\\x8d\\x51\\x3d\\x06\\x50\\x08\\x45\\x2f\\xb7\\x41\\x07\\x7e\\x82\\xad\\xa0\\xd3\\\n\\xb0\\x35\\x25\\xde\\x76\\x10\\x80\\x1b\\x93\\x94\\x5d\\x58\\x6a\\xa9\\xad\\x36\\\n\\x54\\xac\\x9d\\x5f\\x53\\xd5\\x07\\x2d\\xb7\\xfc\\x73\\x97\\xc2\\x85\\x00\\x83\\\n\\x62\\x43\\x0b\\x42\\xf6\\xbc\\x20\\xac\\xb5\\x76\\xc3\\x46\\x54\\x4c\\x87\\xcb\\\n\\xaf\\x00\\x30\\x2f\\xc2\\x97\\xc1\\x58\\x7c\\x28\\xb9\\x13\\x0f\\xa7\\x92\\x88\\\n\\x13\\xb1\\xab\\x0d\\x60\\x97\\x78\\x27\\x48\\x58\\x17\\x47\\x20\\x85\\x93\\x50\\\n\\x0f\\xbd\\xf0\\xf0\\x07\\x35\\x85\\x4b\\x11\\x18\\x82\\x42\\x54\\x99\\x78\\x73\\\n\\x05\\x84\\x15\\x15\\x46\\x42\\x81\\x52\\xf5\\x60\\x1f\\x44\\x5e\\x52\\xf5\\x70\\\n\\xf7\\xde\\xfd\\x32\\xc8\\xa2\\x8d\\x90\\x16\\x3a\\xda\\x0a\\x8d\\x7d\\x58\\x09\\\n\\xda\\x08\\xaa\\xc0\\xf6\\x7a\\x07\\x48\\x67\\x6a\\x8c\\xbe\\x50\\x50\\xea\\xb1\\\n\\x28\\x44\\x1e\\xc6\\x08\\x74\\xe3\\xba\\x48\\xd9\\x83\\x65\\x7b\\x1c\\x9d\\xbb\\\n\\x47\\x97\\x3d\\x2b\\xa8\\x48\\x0e\\x80\\x50\\x82\\xc9\\xe7\\x7c\\xf6\\x8c\\xb0\\\n\\x12\\x60\\xe2\\xa4\\x70\\x14\\x04\\xf9\\xc4\\x5f\\x01\\x65\\x65\\x0a\\x0f\\x6f\\\n\\x74\\xd9\\x1f\\x43\\x49\\xd1\\x4e\\x08\\x84\\x13\\x89\\x90\\xfb\\x37\\x38\\x6c\\\n\\x41\\xa6\\xc2\\x96\\xa7\\x85\\xfd\\x89\\x7b\\x01\\x5d\\x1d\\x92\\x74\\x94\\x0a\\\n\\x17\\xb5\\x8c\\xef\\x78\\xc6\\x92\\x2a\\x10\\x4c\\x23\\x10\\x2f\\xc2\\x6b\\x56\\\n\\xf2\\x08\\x6a\\xa2\\x41\\x8c\\xc2\\x84\\xac\\x92\\x77\\x71\\xe6\\x00\\xc7\\x66\\\n\\x81\\xe0\\x94\\x20\\xf4\\x02\\x0e\\xb6\\x71\\x41\\x5a\\x42\\x90\\xde\\xd5\\x74\\\n\\xce\\xd4\\xc0\\x68\\x4e\\x10\\x40\\xd2\\xef\\x84\\xc0\\x18\\x85\\xb6\\xd9\\x6d\\\n\\xc1\\x14\\xf0\\xa8\\x04\\x61\\x57\\x1a\\xa8\\x7c\\x90\\x52\\x81\\x7d\\xa5\\x2c\\\n\\xb7\\x5b\\x54\\x77\\x50\\xa2\\xa2\\x71\\xa8\\xa7\\xd2\\x2f\\x30\\x01\\xdd\\x88\\\n\\x58\\x3c\\x09\\x1b\\x14\\xc3\\x10\\x2a\\x17\\xeb\\xa3\\x81\\x2f\\x3b\\xa1\\xab\\\n\\x50\\x43\\xbf\\x14\\xb0\\x89\\xd7\\xa5\\x78\\x0b\\x11\\xa2\\xc3\\x51\\x8c\\x1f\\\n\\x43\\xe0\\xdc\\xa7\\x11\\x32\\xd0\\x13\\xa0\\xf4\\x03\\xe8\\x5e\\xcb\\x6b\\xcf\\\n\\xd1\\x18\\x09\\x6a\\xdc\\x49\\x84\\x6f\\xfe\\xb1\\x4c\\x75\\xca\\x9e\\x91\\x62\\\n\\xc5\\x3a\\x1d\\x50\\x60\\xf4\\x52\\x50\\x4b\\x83\\x30\\x81\\x7a\\x47\\xe2\\xf1\\\n\\xc8\\x14\\x03\\x88\\x31\\x08\\xdd\\xf8\\x75\\xe6\\x71\\x1f\\x5a\\xd4\\x7d\\x6a\\\n\\xf8\\x09\\xd9\\x2c\\x7b\\x63\\x08\\x54\\x8c\\xea\\xa7\\x45\\xee\\x88\\x0e\\x9d\\\n\\xe2\\x97\\x59\\x50\\x0a\\x90\\x1e\\xf0\\x64\\x90\\x5c\\x71\\x03\\x44\\x5c\\x81\\\n\\x0a\\xc6\\x22\\xe3\\xa6\\xd5\\xc7\\x0b\\xb9\\x6a\\xae\\xd6\\x83\\x42\\x68\\x0b\\\n\\x6e\\x87\\x90\\x58\\x05\\x76\\x88\\x63\\x34\\xd9\\x8b\\x68\\x4a\\x1a\\x01\\x63\\\n\\x1a\\x84\\x40\\x28\\x55\\x35\\x2d\\x3b\\x51\\x80\\xd4\\x0d\\xec\\x34\\x4d\\x0e\\\n\\x75\\x14\\x45\\x8d\\x38\\x56\\x2f\\x87\\xaa\\x61\\xef\\x64\\xa8\\x35\\x90\\xef\\\n\\x83\\xf0\\x10\\x20\\x22\\x20\\x22\\xf7\\xd9\\xd4\\x96\\x1a\\x25\\xf0\\xd5\\x55\\\n\\x93\\x0c\\xc2\\x05\\x74\\x95\\x45\\x80\\xea\\xf8\\x64\\xe0\\x91\\x52\\xa0\\x2c\\\n\\x20\\x70\\x89\\x71\\x94\\x41\\x80\\xba\\x08\\x8c\\x28\\x1c\\x01\\x04\\x08\\x8e\\\n\\xb5\\x08\\xc0\\x62\\x11\\x6b\\x9a\\x70\\x24\\x2d\\xa1\\xb1\\x05\\x50\\xc9\\x2c\\\n\\x05\\x8a\\x14\\x32\\xde\\x1e\\x03\\x5b\\x1d\\x21\\x01\\x58\\x93\\xb7\\x83\\x30\\\n\\x9c\\x75\\x80\\x0b\\xa0\\x04\\x0b\\xaf\\x43\\x8a\\xe7\\x37\\xf7\\xe9\\x3b\\x20\\\n\\x0c\\x0b\\x16\\x92\\x11\\x02\\x15\\x05\\x75\\x72\\x48\\x64\\x42\\x34\\x57\\x22\\\n\\xa1\\x6a\\xac\\x40\\x40\\x35\\xa2\\x34\\x83\\x4f\\x4a\\x50\\x94\\xa2\\x78\\xd8\\\n\\x90\\x40\\xda\\x14\\x60\\x51\\x78\\x09\\x42\\x87\\x56\\x54\\x65\\xbb\\xee\\xb9\\\n\\x2e\\xa5\\xd0\\x10\\x4d\\x65\\xb2\\x4c\\xc4\\xc2\\xb1\\x60\\x3a\\xc8\\x0a\\x9a\\\n\\xc4\\x0d\\x4c\\xac\\x92\\x82\\x93\\x61\\x2a\\xe0\\x9f\\x02\\x5c\\x07\\x6a\\xb5\\\n\\x43\\x3a\\x0a\\xc4\\x68\\x85\\x90\\xd0\\xf5\\xff\\x00\\xc7\\xa1\\x80\\x72\\xc8\\\n\\xd7\\x5a\\x1b\\x9f\\xeb\\xb8\\x6b\\x7d\\x91\\x38\\x7c\\x57\\xb5\\x24\\x73\\x6b\\\n\\x2c\\xff\\x00\\xfb\\x4e\\x53\\x42\\x01\\xf1\\xd4\\xea\\xad\\xcd\\xfc\\xde\\x36\\\n\\xec\\x1f\\xa1\\x6d\\x47\\xb3\\x57\\xa5\\x6c\\xc3\\x89\\x05\\x6a\\x0a\\xab\\x49\\\n\\x80\\x04\\xd3\\xb4\\x92\\x2e\\x22\\xce\\x94\\x63\\xa8\\x08\\x28\\x62\\x3d\\x99\\\n\\xbb\\x0c\\x58\\x15\\x34\\x35\\x28\\xd0\\x8d\\xaa\\x8b\\x03\\x4f\\x1a\\xfe\\x4c\\\n\\x26\\x51\\xba\\x96\\x20\\x6e\\x85\\xaa\\x61\\x2c\\x41\\xe9\\x0b\\x1a\\x89\\x19\\\n\\x96\\x2a\\x71\\xb7\\xa6\\x08\\x18\\x24\\xea\\x55\\xee\\xea\\x9d\\xd3\\x8c\\x51\\\n\\x83\\x4e\\x88\\x00\\xaa\\xfb\\xa2\\x93\\xb3\\xca\\x80\\x04\\x92\\x99\\x3a\\x67\\\n\\xc0\\x23\\x8b\\x91\\x3a\\xad\\xc6\\x20\\x48\\x4f\\xa7\\x58\\x2b\\x42\\x22\\x52\\\n\\xce\\x40\\x8e\\xb0\\xbf\\x21\\xa3\\xb1\\xa9\\x95\\xa6\\x77\\x7a\\x85\\x22\\x49\\\n\\x00\\xda\\x3a\\x98\\x3e\\xb6\\xa4\\x4d\\x68\\xa5\\x15\\xd1\\x6b\\x9f\\x7d\\xf0\\\n\\xe0\\xc5\\x02\\x28\\x6b\\x64\\x29\\x93\\xb4\\xb6\\xcf\\x15\\x75\\x1c\\x59\\x76\\\n\\x18\\x1a\\xa7\\x63\\x46\\x9b\\xd4\\x5e\\xab\\x9d\\xb0\\x1c\\x4c\\x0e\\xc2\\xb5\\\n\\x68\\x53\\x95\\x84\\x3f\\x6d\\xac\\xc0\\x2b\\x98\\x8c\\xd0\\x93\\x98\\x08\\x21\\\n\\x44\\x42\\x21\\x36\\x28\\xfe\\x29\\xd7\\x10\\x28\\x40\\x53\\x29\\x98\\x05\\x5a\\\n\\x18\\x4a\\xff\\x00\\x5b\\xc8\\xe2\\x0f\\xee\\x82\\x20\\x07\\xe1\\xb7\\xce\\x8e\\\n\\x62\\x85\\x89\\x8d\\x41\\x41\\x71\\xef\\x70\\x47\\xef\\x0e\\xcd\\x65\\x63\\x4f\\\n\\x37\\x10\\x94\\xb4\\x9b\\xb9\\x42\\x96\\xbe\\xa9\\xc0\\x36\\x31\\xee\\x20\\x2f\\\n\\x58\\xd7\\x83\\xfc\\xeb\\x50\\xa1\\x01\\x68\\x84\\x00\\xb2\\x0a\\xbc\\x26\\x2e\\\n\\x02\\x58\\x71\\x80\\x86\\x40\\x0f\\x11\\x8a\\x0a\\x2a\\x0d\\x31\\xb6\\x34\\x18\\\n\\xfb\\xd4\\x66\\x0b\\x38\\xa6\\x98\\x24\\x5c\\x29\\x14\\x22\\x91\\x22\\xfb\\x4b\\\n\\x8b\\xc4\\x06\\x89\\x41\\x57\\x14\\x7e\\x65\\xc1\\xf4\\xf1\\xe0\\x27\\x86\\x7a\\\n\\xab\\x2a\\xa9\\x2f\\xf4\\x35\\x31\\xc0\\x20\\x78\\xdd\\x74\\x8a\\x76\\x0a\\x09\\\n\\xa2\\xfe\\xce\\xb8\\x10\\x11\\x20\\x97\\x46\\xc0\\x2a\\xc2\\xde\\xcc\\xd1\\x84\\\n\\xc3\\x13\\x33\\xb3\\x72\\x6f\\x42\\x04\\x15\\x70\\x69\\xcb\\x24\\x80\\x48\\x40\\\n\\x28\\xca\\x21\\x1a\\xfb\\xf0\\x61\\x20\\x78\\x82\\xa6\\x14\\xb8\\x58\\xe0\\x61\\\n\\xb3\\x82\\xe1\\x20\\xfb\\x85\\x5b\\x58\\x84\\xb6\\xd7\\xd3\\x38\\x3b\\xd0\\x5e\\\n\\x1e\\x10\\x91\\x58\\x64\\xc6\\x44\\xfb\\xc9\\x7a\\x6c\\x55\\x93\\x51\\x29\\x15\\\n\\x62\\xf0\\x86\\xa8\\x17\\xc4\\xc8\\x34\\x3c\\x3b\\x2a\\x83\\xa0\\xb5\\x4e\\xf8\\\n\\xa4\\x34\\x53\\x29\\x8b\\x14\\xb0\\x28\\x90\\x3b\\xe1\\x48\\x14\\x47\\x69\\xf8\\\n\\x06\\x30\\x29\\xa1\\x21\\x42\\xa5\\x1a\\x45\\x40\\x56\\xd9\\x02\\x14\\xe3\\x40\\\n\\x1e\\xdf\\x9c\\x1a\\xc9\\x5b\\x00\\xa8\\x00\\x99\\x5b\\xa8\\x6b\\xe8\\x38\\x00\\\n\\x92\\x95\\x24\\x90\\x9d\\x82\\xca\\x36\\x50\\xc5\\x82\\xac\\xc4\\x0a\\x80\\x44\\\n\\x40\\x04\\x00\\x3b\\x62\\x40\\xf0\\x25\\x75\\x8e\\xa8\\x30\\x20\\x3d\\xe4\\x05\\\n\\x05\\x0d\\x36\\x36\\x94\\x5e\\x8a\\x00\\xb8\\x50\\xc6\\x68\\xe3\\x53\\xb4\\x08\\\n\\x82\\x23\\x45\\x4f\\x81\\x2c\\x44\\x9c\\x23\\x36\\x8a\\x15\\x16\\x56\\x05\\x08\\\n\\x2b\\x00\\x67\\x77\\x93\\x42\\xc8\\x82\\x52\\xa2\\x12\\x98\\x11\\xc1\\x44\\x23\\\n\\x78\\x50\\x3a\\x56\\xd4\\x1d\\x20\\xc4\\x01\\x00\\x10\\xe1\\xc4\\x91\\x0d\\x6c\\\n\\xc6\\x1b\\xe1\\x12\\x04\\x1b\\x67\\x19\\x9a\\x02\\x86\\xa8\\x67\\xb8\\x9f\\xb3\\\n\\x0a\\x52\\xa0\\x1e\\x30\\xd5\\x83\\xb2\\x89\\x7a\\x11\\x50\\x81\\xdd\\x04\\x93\\\n\\xd0\\x0d\\xa0\\x50\\x16\\x17\\x66\\x10\\x12\\x50\\x16\\xb6\\x62\\x49\\x1e\\x81\\\n\\x14\\x34\\xa0\\x83\\x2f\\x59\\x61\\x8b\\x5c\\x15\\x3e\\x92\\x08\\x5c\\x89\\x2f\\\n\\x58\\x00\\xb1\\x82\\x5a\\x04\\x6c\\x43\\xa0\\xc6\\x1d\\xf4\\x94\\x14\\x37\\x69\\\n\\x86\\x49\\x0e\\x82\\xaa\\xa3\\x1a\\x18\\x44\\x21\\x55\\x4c\\x4d\\x1b\\xd1\\x1d\\\n\\x86\\x54\\xf8\\xd4\\x8c\\xbb\\x35\\xa6\\x16\\x30\\x22\\x27\\xcf\\x9d\\x72\\x80\\\n\\xe4\\x3e\\x77\\xfc\\xef\\xaf\\xfe\\x3a\\xbc\\x26\\x34\\xf4\\xca\\xe5\\xe9\\xef\\\n\\xf0\\xf5\\xb9\\xc4\\x78\\xb4\\x27\\xbd\\xf5\\x2d\\xc3\\xef\\x21\\x50\\x18\\xba\\\n\\xaf\\xe3\\xbd\\x05\\xa9\\x24\\x74\\x4e\\x08\\x46\\x8f\\x1a\\x03\\x28\\x46\\x5c\\\n\\x77\\x5f\\x78\\x86\\x1f\\xf4\\x71\\xac\\x73\\xfd\\xb6\\x7e\\x13\\xb9\\x31\\x0a\\\n\\x36\\x0a\\x44\\xa6\\x9b\\x8b\\x0b\\xb7\\x67\\x27\\x8a\\x15\\x05\\xa0\\x02\\x14\\\n\\xec\\xe0\\x44\\x04\\x97\\x96\\x52\\x2a\\x4e\\xe9\\x88\\xb6\\x81\\x1d\\x13\\x45\\\n\\x6a\\x03\\x17\\x63\\xcf\\x82\\xf4\\x8f\\xef\\x82\\x9e\\x3c\\x03\\x47\\x25\\x92\\\n\\x95\\x75\\xee\\x1d\\xa7\\x89\\xb2\\x8e\\xab\\x1e\\x18\\xaa\\x98\\x73\\x48\\x27\\\n\\x95\\xd8\\x37\\x88\\x14\\x10\\x26\\x09\\xd6\\x2a\\xb9\\x31\\xd4\\x64\\x1e\\x2c\\\n\\xba\\x62\\x05\\xfd\\x09\\xe4\\x02\\x1f\\xd2\\x9e\\x71\\xbd\\xe1\\x80\\xc1\\xb6\\\n\\x23\\x25\\x37\\x06\\x28\\xae\\x9e\\xd0\\x5a\\x00\\x54\\x23\\x0d\\x5f\\x03\\xb6\\\n\\x49\\x61\\xc6\\x90\\x11\\xda\\x2a\\x6e\\xcb\\xd0\\x64\\xd6\\xe3\\xaa\\x73\\xc8\\\n\\xec\\xcc\\xb2\\x8a\\xb0\\xaa\\x38\\xff\\x00\\x9c\\x75\\xf7\\x81\\x1b\\x4d\\x11\\\n\\x4c\\xab\\xa9\\x82\\x21\\xca\\xa5\\x01\\x25\\xa1\\xa4\\x44\\x90\\xcd\\x37\\xa9\\\n\\x5e\\x05\\x1e\\xe7\\xce\\x9a\\x4b\\xf5\\x7d\\xde\\xbb\\xd9\\x66\\x0e\\x85\\x20\\\n\\xa3\\xb8\\x09\\x85\\xf4\\xdf\\xb8\\x0d\\x57\\x42\\xca\\x42\\xf5\\x49\\x31\\xfe\\\n\\xd9\\xfd\\x0f\\x00\\xc2\\x85\\x22\\x02\\x89\\x10\\x86\\x7c\\x91\\xa5\\x00\\xc5\\\n\\x5d\\xa4\\x2a\\xeb\\x08\\x0f\\xe7\\xcc\\x0c\\x0e\\x1d\\x3a\\x43\\x58\\x12\\x42\\\n\\x8e\\x42\\xd0\\xed\\x30\\xeb\\x86\\xc2\\x20\\x00\\x4a\\x22\\xf4\\x03\\xf0\\x9e\\\n\\x38\\x2a\\x90\\x96\\x30\\xc0\\x4a\\x10\\x40\\x92\\x95\\x06\\x9c\\xda\\x80\\x5b\\\n\\x84\\x43\\xc1\\x8a\\x19\\x65\\x18\\x01\\xe0\\x06\\xc2\\xf0\\xa8\\x5b\\x46\\x25\\\n\\x92\\x1a\\x9b\\x27\\x8d\\xaa\\x2a\\xab\\x25\\x09\\xad\\x6e\\x4d\\xef\\x77\\x92\\\n\\x14\\x29\\x5d\\xa4\\x6e\\xf9\\x56\\xd3\\x33\\xd7\\x8c\\x2c\\x3e\\xc5\\x14\\x75\\\n\\x2c\\x45\\x94\\x0d\\xd6\\x43\\x8a\\xb1\\x04\\x01\\x81\\x46\\x5e\\xbe\\x05\\xe9\\\n\\xd0\\x83\\x59\\x74\\x71\\x60\\x95\\x51\\xf1\\x18\\xee\\xa7\\xdb\\xcb\\xc8\\x31\\\n\\x2f\\xb5\\xd2\\x2f\\xdc\\x3f\\x6d\\x7a\\xe3\\x18\\x24\\x50\\x13\\x75\\x8f\\x81\\\n\\x05\\xe9\\x41\\xad\\xde\\x4c\\x5e\\xbe\\x2c\\xb7\\xd5\\xd6\\xe9\\xde\\xf0\\xc1\\\n\\x43\\x55\\xe8\\xc3\\x3b\\xaf\\x83\\x6f\\xa3\\x47\\x8d\\x29\\x87\\x39\\x56\\x7a\\\n\\x94\\x2c\\xe8\\x14\\x8c\\x16\\xae\\xde\\x84\\x08\\xb3\\x05\\x6f\\xc0\\x3f\\x3c\\\n\\xe3\\x09\\x01\\x00\\x07\\xda\\x52\\xb6\\x01\\x3b\\xda\\x9d\\x5e\\x52\\xcd\\xa8\\\n\\x81\\x4c\\x4a\\x14\\x64\\x9d\\x38\\x64\\x94\\x43\\xe1\\xa2\\x55\\xec\\xcf\\x4c\\\n\\xbd\\x70\\x04\\x45\\xa8\\xac\\x54\\xd2\\x16\\x9c\\x03\\xb6\\xbe\\xf0\\xbc\\x30\\\n\\xae\\x3a\\xaa\\xae\\x98\\x10\\x80\\x1a\\x42\\xcc\\x81\\x15\\x54\\x97\\xd9\\xd3\\\n\\xa5\\x42\\x68\\x7a\\x59\\xc8\\x1c\\x0c\\x2a\\x9c\\x51\\x80\\x6a\\xb8\\x87\\x23\\\n\\xda\\x40\\x75\\x08\\x28\\x50\\x4d\\x8d\\x56\\xfb\\xa0\\x93\\x97\\x71\\x18\\xce\\\n\\xcd\\x32\\xae\\x16\\x8f\\xe8\\x70\\x4d\\xd8\\x50\\xba\\x32\\x15\\x6e\\x80\\x0b\\\n\\x43\\xac\\xe5\\xd5\\xa1\\x00\\x24\\x0f\\x00\\xaa\\xa3\\xd8\\x4a\\xf6\\xd3\\xb9\\\n\\x41\\xd1\\x03\\xe8\\x89\\x8c\\x34\\x68\\x7b\\x38\\xd6\\x04\\x08\\xf6\\xb7\\x47\\\n\\x60\\x57\\xd8\\x2f\\x8f\\x01\\x83\\xc8\\xc4\\x10\\x14\\x2a\\x81\\xa8\\x15\\x4c\\\n\\x02\\xea\\x41\\x81\\x29\\x42\\x0b\\x0f\\x06\\xc3\\x0c\\x85\\x20\\x6a\\x54\\x15\\\n\\x48\\x2e\\x28\\xc4\\x9d\\xb8\\x6a\\x95\\x3b\\x2e\\x7e\\x53\\x75\\x29\\x5e\\x13\\\n\\x47\\x1c\\x12\\xc1\\x11\\x06\\x85\\x10\\x31\\xb5\\xd2\\x3a\\x05\\x39\\x52\\x61\\\n\\xac\\x9e\\xc9\\x19\\x56\\x60\\x27\\xd5\\x2c\\x4b\\x0d\\x99\\x0c\\x12\\xea\\x01\\\n\\xa9\\x80\\x8e\\x51\\x7c\\x9c\\x08\\x1d\\x6f\\x51\\x59\\xbe\\x2a\\x76\\x54\\x70\\\n\\x00\\x1a\\xb0\\xf6\\x5d\\x14\\x12\\x65\\xd8\\x99\\x3f\\xce\\x11\\xf8\\x1f\\xa7\\\n\\x99\\xe5\\x3e\\x2e\\x1d\\xec\\xde\\x26\\x84\\xf7\\xd5\\x3c\\xf1\\x8f\\x4e\\xcf\\\n\\x73\\x80\\x98\\x0d\\xcd\\x94\\xd8\\x59\\x6c\\x34\\xd7\\x36\\x54\\xe3\\x05\\x70\\\n\\x11\\x74\\x44\\x8b\\xee\\x09\\x54\\xbc\\x51\\xdd\\x7e\\x80\\xf5\\x9d\\xff\\x00\\\n\\xfb\\x23\\xcb\\x04\\x9b\\xb8\\x10\\x56\\x8a\\xf6\\x64\\x43\\x5d\\x43\\xa2\\x0e\\\n\\x42\\x56\\xa3\\x30\\x4b\\x14\\xf1\\xd3\\x82\\x4b\\x16\\x0c\\x29\\xd1\\x68\\x90\\\n\\x91\\x29\\x11\\x9b\\x80\\x88\\x59\\x69\\xc4\\x5e\\xcb\\xda\\x9b\\x41\\xa1\\x9c\\\n\\xae\\x08\\xe4\\x33\\x05\\x0f\\x82\\x3a\\x47\\x4d\\x35\\x78\\xe4\\x48\\xb9\\xdf\\\n\\x15\\x84\\x51\\x80\\xfa\\x83\\x36\\x99\\x64\\xe8\\x14\\x4b\\x55\\x3b\\xa1\\xd0\\\n\\xcf\\xde\\x4d\\x9e\\x95\\x17\\x81\\x5e\\xf4\\x29\\x5b\\x8e\\x1d\\x70\\x66\\x80\\\n\\x66\\x24\\x46\\x87\\x5d\\xaa\\xbd\\xd4\\xeb\\x8f\\x5c\\xc1\\x6b\\x6b\\x4c\\x69\\\n\\x92\\x3e\\x17\\xec\\xe0\\x0d\\x14\\xc1\\x4a\\x0d\\x20\\x8a\\xce\\xbd\\xdf\\x39\\\n\\x49\\x10\\x0f\\x26\\x2d\\xf8\\xec\\xda\\xb5\\x1a\\xa5\\xe1\\x95\\x49\\xb3\\x42\\\n\\x13\\x31\\x01\\xa3\\xf3\\x53\\x98\\x31\\xb2\\x94\\x7e\\xa6\\x65\\x97\\xbf\\x6a\\\n\\xb3\\x8d\\xd6\\x02\\xb1\\x28\\x8a\\x51\\x6a\\x55\\x08\\x58\\x71\\x29\\xb6\\x1e\\\n\\xad\\x0f\\xde\\xde\\x53\\xfc\\xf5\\x43\\xe8\\x09\\x05\\x70\\x4a\\x60\\x90\\x85\\\n\\x0c\\xfa\\xa3\\xdc\\x91\\x02\\x12\\x8f\\x07\\x40\\xb7\\xbd\\x1f\\x38\\xb8\\x22\\\n\\x32\\x9f\\x88\\xa0\\x53\\xab\\x5c\\x14\\x23\\x45\\x0e\\xbb\\x20\\x44\\x6d\\xd5\\\n\\x8a\\xe8\\xda\\x37\\x69\\x9a\\xb7\\xf0\\xa1\\xd8\\x05\\x04\\x3b\\x05\\xb6\\x8b\\\n\\x54\\x4a\\x80\\xc2\\x03\\x4f\\xbf\\xb7\\xaf\\x78\\x10\\x00\\x01\\x80\\x04\\x3d\\\n\\x7c\\x86\\xf8\\x7a\\xbc\\x33\\x08\\x6e\\x25\\x0e\\x8c\\x3d\\x0c\\xb4\\xf6\\x72\\\n\\x91\\x76\\x38\\x6a\\x61\\xf6\\x9d\\xfd\\x3b\\xdf\\xb1\\xdd\\x34\\x50\\x1f\\xd2\\\n\\x10\\x6f\\xfe\\x7f\\xd7\\x3a\\x9b\\x28\\x7a\\x99\\x4a\\x9e\\x14\\xcd\\x3b\\xb5\\\n\\x04\\x56\\x90\\x07\\x76\\xad\\x9d\\xdf\\x26\\xf9\\xa4\\xe2\\x35\\xbe\\x25\\x12\\\n\\x76\\xd9\\x4a\\x1d\\x04\\xbc\\x17\\x43\\xd0\\xb0\\xa4\\x89\\x10\\x61\\xce\\x9b\\\n\\x7c\\x47\\x4c\\x9d\\x07\\xe2\\x02\\x08\\xfa\\x6c\\x60\\x55\\x17\\x52\\x83\\x82\\\n\\xaa\\x0c\\xef\\xb4\\x5f\\x28\\xeb\\x84\\x3d\\x15\\x2f\\x7a\\x14\\x16\\x6a\\x5c\\\n\\xfe\\x2f\\x12\\xe2\\xe6\\xb7\\x41\\x06\\xd2\\xd2\\x11\\x1f\\xb7\\x8a\\x03\\x50\\\n\\x96\\x0e\\x95\\x05\\x0d\\x77\\x3c\\xff\\x00\\x41\\x41\\x4a\\xb1\\x82\\x80\\x0e\\\n\\x78\\xeb\\xae\\xf6\\x93\\x86\\x84\\x30\\x09\\xbb\\xeb\\x58\\x7e\\xd2\\x90\\xdb\\\n\\x19\\x33\\x92\\x76\\x96\\x03\\x2b\\x21\\x4f\\xa7\\x42\\x1c\\x63\\x07\\x50\\x17\\\n\\x12\\x9d\\x7c\\x74\\x2e\\x40\\x5a\\xa0\\x80\\x42\\x03\\xea\\x0b\\x7d\\x00\\x79\\\n\\x1c\\xce\\x39\\x01\\x00\\xdd\\x7b\\x90\\xc5\\x70\\x35\\xf2\\x84\\x70\\x4c\\x0f\\\n\\xbc\\x8c\\x34\\x15\\x44\\xa4\\x9e\\xaf\\x7a\\x74\\x05\\xc4\\x12\\x40\\xbb\\x07\\\n\\xb6\\x4a\\x64\\x93\\x78\\x06\\x00\\x52\\xe9\\x65\\x66\\xa1\\xd3\\x00\\xb4\\xab\\\n\\xc4\\x24\\x18\\x21\\x45\\x09\\xf1\\x22\\x20\\x0b\\xc7\\x09\\x20\\xa8\\x41\\xc8\\\n\\x89\\xae\\x25\\x2d\\x1d\\x68\\x8c\\xc1\\xa5\\x15\\x40\\x0d\\xc4\\x41\\x56\\x4a\\\n\\xd5\\x46\\x4d\\x2c\\x00\\x80\\xd9\\xc0\\xd1\\x22\\xd4\\x04\\xa0\\xee\\x1e\\x2f\\\n\\x5d\\x22\\xb8\\x1e\\xcd\\xac\\x11\\xd7\\x69\\x09\\xa1\\x28\\x3a\\x2a\\xee\\xd0\\\n\\xb1\\x68\\x27\\x70\\x4d\\x8e\\x80\\xc5\\x05\\x51\\xd2\\x09\\x82\\x86\\x45\\x81\\\n\\x90\\xd9\\x1a\\x32\\x52\\x8a\\xf6\\x13\\xbe\\x08\\x32\\x4b\\xea\\x11\\x08\\x80\\\n\\x02\\x94\\x9a\\xe3\\xc2\\xb9\\x5a\\xed\\xc2\\xa1\\x02\\x1a\\x51\\x30\\xaf\\x24\\\n\\x63\\x92\\x64\\x38\\x1c\\x05\\x18\\x20\\xf8\\x38\\x24\\x04\\x77\\x05\\x20\\x8c\\\n\\xec\\x2b\\x51\\x4a\\xf2\\xda\\x40\\x0a\\xac\\xd4\\x33\\xa2\\xd0\\x3a\\xa0\\x84\\\n\\x38\\x55\\x2b\\x9a\\x01\\x99\\x1d\\xaf\\x52\\xd9\\x87\\x0d\\xb3\\x23\\x21\\xf4\\\n\\x01\\x57\\x5a\\xa9\\x89\\x8f\\x22\\x20\\x2b\\x40\\xa4\\x08\\x00\\xd0\\xd7\\xf4\\\n\\x70\\x78\\x42\\xa4\\x58\\x84\\x8e\\xa9\\xd0\\x48\\xac\\x41\\x12\\x74\\xda\\x39\\\n\\x22\\xc8\\xf4\\xca\\xa6\\x67\\x77\\x7a\\x79\\xac\\x41\\x31\\xec\\xcf\\xb1\\x97\\\n\\xf9\\x38\\x90\\xcc\\xe9\\x51\\x8f\\xae\\x0d\\xe9\\xbd\\x91\\xd5\\x16\\xd3\\xa5\\\n\\x70\\x8d\\x04\\x20\\x3d\\x2a\\x00\\x3c\\x10\\xb7\\x70\\x96\\xcd\\x44\\x41\\xdd\\\n\\x51\\x43\\xa4\\x47\\x8e\\x4c\\x70\\xa3\\x37\\xc7\\xf3\\xa4\\xa2\\x5e\\x23\\xa6\\\n\\x85\\xa8\\x45\\xae\\x15\\x4b\\x7c\\x1c\\x80\\x38\\x1d\\x09\\x5c\\xd0\\x49\\x35\\\n\\xea\\xc0\\xf4\\xea\\xdf\\xbf\\xa2\\x8a\\x14\\x82\\xa8\\x15\\xf5\\xe8\\xb9\\x8f\\\n\\xf4\\xba\\x82\\x82\\x5a\\x3a\\xd6\\x7a\\x20\\x8d\\x19\\xc0\\x21\\x09\\x82\\x90\\\n\\x0f\\x4a\\x4d\\xed\\x7a\\x5e\\xb9\\x89\\x20\\xa0\\x31\\x81\\xc3\\xd0\\x33\\xd2\\\n\\x28\\x40\\x26\\x70\\x25\\x24\\xd2\\x2b\\xb5\\x27\\x58\\x04\\x50\\xd7\\x62\\xc8\\\n\\x14\\xd0\\x63\\x30\\x5e\\xfc\\x32\\xaf\\x1d\\xa2\\x25\\x10\\x06\\x99\\x2e\\x40\\\n\\x04\\xce\\x8e\\x19\\x00\\x21\\x31\\x7b\\x19\\xa8\\x2d\\xda\\x18\\x74\\x71\\x8f\\\n\\x9b\\x09\\x3a\\xc0\\x87\\x66\\xe6\\x9e\\x31\\x43\\x3b\\xe0\\x20\\xf3\\x0b\\xf8\\\n\\xd0\\x94\\x41\\xe0\\x10\\x00\\xc7\\x75\\x2e\\x02\\x3b\\x13\\x75\\x8f\\x75\\xe4\\\n\\x10\\x13\\x7d\\x8a\\x28\\x79\\x84\\x8d\\x73\\x41\\x9b\\x09\\xd7\\x40\\x84\\xa1\\\n\\xa1\\xdb\\x3a\\xde\\xa5\\x11\\xe3\\x33\\x23\\x08\\xdf\\x82\\x01\\x08\\xad\\xfe\\\n\\x18\\x34\\x97\\xba\\x10\\x04\\x0a\\xa0\\x35\\x58\\xb0\\xbd\\x1c\\x24\\x21\\x21\\\n\\x0c\\xcd\\x30\\x7f\\x2f\\x73\\x0c\\x78\\xaf\\x4b\\x32\\xa6\\xe2\\x76\\x5f\\x7f\\\n\\xf7\\xf9\\xab\\xa1\\xff\\x00\\x46\\xd4\\x7a\\x41\\xda\\x49\\xfe\\xaf\\x44\\xea\\\n\\xd4\\xe4\\x83\\xa0\\xad\\x3d\\xb9\\x3f\\x78\\xc0\\xc9\\x00\\x68\\x75\\x16\\xb6\\\n\\x14\\xa0\\x36\\x67\\xce\\xe8\\xa0\\xd1\\x21\\x8a\\xda\\x0f\\xd7\\xa3\\x64\\xf4\\\n\\xf7\\x00\\xe8\\xa0\\xa2\\x30\\x15\\x09\\x1f\\xc2\\x44\\x53\\x9a\\xa5\\x01\\x27\\\n\\x4c\\xa7\\xfc\\x3e\\xe7\\xe2\\xf4\\x08\\x68\\xc2\\x75\\x04\\x20\\x54\\x45\\x69\\\n\\x20\\x80\\x99\\x42\\xd2\\xb0\\x5a\\xe9\\x29\\x0f\\x82\\x37\\x5c\\x84\\x38\\x1e\\\n\\x6b\\x0e\\xa8\\xe0\\xb1\\x2a\\xe3\\x99\\x8d\\x92\\x2b\\x1f\\xbd\\x8b\\x3d\\x97\\\n\\xa5\\xc7\\xbf\\x78\\xf3\\xea\\x94\\x6a\\x11\\x39\\x1d\\x87\\x75\\xd2\\xd0\\x22\\\n\\x59\\xa1\\x3e\\xa5\\x8d\\xa1\\x00\\x5c\\x00\\x0e\\xae\\x97\\x4c\\x0a\\x7d\\x50\\\n\\x44\\x21\\x9d\\xa5\\x02\\x8d\\x11\\x00\\x49\\x30\\x42\\x88\\x74\\x16\\x17\\xa7\\\n\\xb2\\x06\\x3c\\x1f\\x20\\xee\\x45\\x42\\xa4\\xc9\\x59\\xfc\\xe6\\xa0\\xa8\\x82\\\n\\xa4\\x41\\x1e\\x1f\\x00\\x1d\\x8b\\xc2\\x10\\x5b\\xb8\\xae\\x0a\\x89\\x46\\x42\\\n\\xe0\\xb4\\x38\\xf0\\x58\\xde\\x6a\\x10\\xd5\\x63\\x54\\x20\\x01\\x2a\\xc5\\x00\\\n\\x05\\x76\\xe4\\x2a\\x5d\\xdb\\x3b\\x84\\x50\\x97\\x08\\x51\\x53\\x48\\xb2\\x91\\\n\\x5e\\x8c\\x3a\\xb5\\xc3\\xdb\\x20\\xc4\\xdd\\x28\\x92\\x0a\\x50\\x1a\\x17\\xb0\\\n\\x1c\\xe8\\x84\\x4f\\x49\\x00\\xa5\\x0e\\xb2\\x55\\x0e\\xfb\\xa9\\x88\\x04\\x2a\\\n\\x80\\x52\\x80\\x97\\xa1\\x5c\\x0a\\x6f\\x19\\x72\\x75\\x58\\x10\\x0e\\x1d\\x45\\\n\\x60\\x94\\xb6\\x71\\x20\\x81\\x70\\x63\\x4b\\x5a\\xad\\x2f\\x7b\\x98\\xfc\\x82\\\n\\x84\\x18\\xc2\\x29\\x1e\\xb0\\xc4\\xb7\\x23\\xb4\\x54\\x01\\x24\\x28\\x51\\xe0\\\n\\x1d\\x90\\x33\\xb6\\xe8\\xf8\\x87\\x4a\\xfa\\x10\\x01\\x8d\\x01\\x0b\\xd6\\x30\\\n\\xe1\\x2b\\x54\\x1e\\x85\\x0a\\x58\\x4d\\x5c\\xfe\\x9c\\x08\\x1d\\xf7\\x20\\xa5\\\n\\xd5\\xa5\\x42\\x0d\\x40\\x1d\\x78\\x00\\x26\\x15\\x02\\x89\\x89\\xcd\\xaa\\xd5\\\n\\x41\\xca\\x48\\xae\\xf0\\x0c\\x30\\x38\\xad\\xc0\\x51\\x55\\x12\\x09\\x19\\x40\\\n\\x14\\x1d\\x45\\x41\\x76\\x20\\x03\\x93\\xa0\\x33\\x81\\x2e\\x8a\\x40\\x01\\x61\\\n\\x8e\\xcd\\x22\\xb0\\x93\\x68\\x14\\x75\\x21\\x40\\x74\\xaf\\x5d\\x74\\xc2\\x06\\\n\\x52\\x3a\\xa5\\xca\\xa2\\xc1\\x00\\x0b\\x58\\x26\\x95\\x73\\x81\\x45\\x06\\x7d\\\n\\x25\\x63\\x9d\\xa1\\x01\\xe2\\x0f\\xec\\x13\\xe8\\x06\\x80\\xdd\\x4a\\x04\\x84\\\n\\x2a\\x61\\x86\\x22\\x31\\x17\\x50\\x05\\xa0\\x88\\x07\\x8b\\xfd\\xe2\\x99\\x75\\\n\\x4a\\xd2\\xc1\\x0b\\x34\\x0f\\xe7\\x26\\x97\\xa0\\x6c\\xcd\\x92\\xc2\\xd7\\xc2\\\n\\x7f\\xbc\\x77\\x02\\xa9\\xa0\\x47\\x19\\x08\\x62\\xfe\\x7b\\x4e\\xf8\\xb8\\x54\\\n\\x6c\\xa8\\x68\\x53\\x05\\x0e\\xb5\\x57\\x62\\x54\\x98\\x51\\xee\\x9e\\xfa\\xee\\\n\\xf6\\x60\\x64\\x73\\xa2\\x30\\x04\\x95\\x9b\\x1d\\x32\\x92\\x97\\xbb\\x33\\x9b\\\n\\x4f\\x24\\x4c\\x5d\\xed\\xa9\\xed\\xa9\\xd3\\xdc\\xe1\\xaf\\x06\\x0e\\x8a\\x28\\\n\\x8e\\xed\\x80\\x73\\x08\\x46\\x5b\\x82\\x95\\x04\\xbf\\x44\\x34\\x2d\\xac\\x47\\\n\\x6b\\xcb\\x67\\x76\\x0a\\x4a\\xad\\x30\\x6d\\xe9\\xef\\xb5\\xee\\xc2\\x4f\\x64\\\n\\x2b\\x1d\\x33\\xca\\x8f\\x90\\xea\\x8f\\x21\\xa3\\xca\\xd0\\xda\\x42\\x49\\x01\\\n\\x1f\\xa2\\x21\\x39\\x6b\\x58\\x8b\\x06\\x1e\\x09\\x08\\xec\\xc4\\x69\\x4e\\x2f\\\n\\xa0\\xf5\\x54\\x5a\\x15\\x14\\x19\\xee\\xda\\x27\\x0a\\x98\\x2c\\x1d\\xa8\\x1d\\\n\\xd2\\xd1\\x60\\x3f\\xbd\\x6c\\x0b\\xc1\\xa5\\x41\\x5f\\x73\\xa3\\xa2\\x1a\\x71\\\n\\x0c\\xb4\\x41\\xa3\\x8e\\xaa\\x14\\xdf\\x43\\xf2\\x79\\xbb\\x5e\\x04\\x4b\\x20\\\n\\xd4\\xfb\\x83\\xd3\\x44\\xab\\x80\\x93\\x86\\xa0\\xbd\\x86\\x38\\xaa\\x57\\xa5\\\n\\xb8\\x17\\x8b\\x21\\x88\\xed\\x50\\x56\\x11\\x51\\x26\\xaa\\x22\\x1a\\xaa\\x89\\\n\\x01\\x74\\xa9\\x2a\\xbb\\x84\\x3a\\x62\\x27\\x02\\x0b\\x64\\x5f\\x60\\x0d\\x6f\\\n\\x53\\xd2\\x5e\\xe3\\x18\\xc6\\x80\\x84\\xbd\\xaf\\x95\\xe9\\xd4\\xb8\\xfd\\xeb\\\n\\xa0\\xae\\x00\\x09\\x5f\\xf2\\x7b\\xeb\\xff\\x00\\x3c\\x64\\x70\\x27\\xfb\\xaf\\\n\\xfc\\x0a\\x49\\xfb\\x48\\x13\\x59\\x51\\x1d\\x4b\\x2a\\x7b\\xb7\\xea\\x67\\x4f\\\n\\x20\\x0a\\x4a\\xa2\\xc2\\x06\\x0a\\xa6\\x05\\xd6\\x7f\\x49\\xde\\xc0\\xa2\\x63\\\n\\x68\\x29\\x02\\x5f\\x0e\\xce\\x27\\x58\\x1c\\xc5\\x25\\x56\\x3a\\x31\\x44\\x0a\\\n\\xd2\\x09\\x52\\x30\\x05\\xc7\\x2a\\xea\\xec\\x23\\x34\\x87\\x49\\xc6\\xa4\\xa9\\\n\\x82\\x14\\x00\\x3d\\xaf\\xbf\\xd9\\x73\\xb4\\x91\\x50\\x2b\\xb0\\xd0\\x3f\\x80\\\n\\x45\\x55\\x8b\\x75\\x40\\x4d\\x2b\\xd7\\x70\\x92\\xef\\x56\\x6f\\xf9\\xf3\\x96\\\n\\x30\\x19\\x20\\x26\\x61\\x46\\x6f\\x5f\\xfd\\xf5\\xc6\\x9f\\x16\\x11\\x92\\xe0\\\n\\x2e\\xf6\\x52\\x8a\\x43\\x8e\\xfd\\x2a\\x80\\xe3\\x18\\x61\\x60\\x8e\\x84\\x41\\\n\\xac\\x37\\x1e\\x88\\x69\\xa5\\x46\\x34\\x2e\\x61\\x78\\x65\\x3e\\x64\\x22\\x0c\\\n\\x11\\x22\\x0a\\x41\\x40\\x15\\xc0\\x4b\\x8c\\x67\\x0e\\xd8\\x58\\x59\\x68\\xc9\\\n\\xee\\x73\\x50\\x6e\\x68\\x42\\x80\\x91\\xa5\\x98\\x23\\xb0\\x38\\x5d\\x28\\x30\\\n\\xb4\\xa6\\x84\\x6e\\xbd\\x34\\xe0\\xb6\\xf0\\xc3\\x48\\x68\\x06\\xa1\\x2a\\x76\\\n\\x54\\x09\\xc3\\x43\\xa7\\xce\\x0c\\xc1\\x24\\x42\\x46\\x31\\x57\\xd7\\xde\\xa1\\\n\\x1a\\x63\\x80\\x84\\xa5\\x43\\x14\\x46\\x8a\\x68\\xad\\x6e\\x03\\x03\\x16\\x31\\\n\\x71\\x51\\x29\\x24\\xb2\\x01\\x6a\\x13\\x1a\\x8c\\x43\\x5e\\xc6\\x47\\x5c\\x9a\\\n\\x48\\x9e\\x92\\x00\\x8e\\xa5\\x68\\xc0\\xa6\\xbb\\x38\\x88\\xa4\\x4d\\xe8\\x09\\\n\\x45\\x46\\xa0\\x41\\xef\\x33\\x89\\xd9\\x60\\x4e\\x01\\x44\\xac\\x22\\x15\\xe8\\\n\\x5e\\xb6\\x4d\\x2d\\x56\\x7d\\x14\\x30\\xd0\\xb4\\xed\\xe8\\x4e\\x22\\x22\\x9b\\\n\\x0e\\x10\\xc0\\xa2\\x04\\x7d\\x76\\x03\\x24\\xce\\xe6\\x90\\xa9\\x46\\x85\\xa7\\\n\\x40\\x50\\x8c\\xb9\\x62\\x9c\\x24\\x21\\x43\\xba\\x4a\\xd2\\x07\\x07\\x65\\x62\\\n\\x0a\\x28\\x30\\xb4\\x00\\x3a\\x61\\xdc\\x1c\\x02\\x0c\\x10\\x0d\\xd2\\xe9\\x22\\\n\\xf2\\x34\\xa8\\xb8\\x82\\x81\\xb4\\xdb\\x47\\x40\\x94\\xe9\\x40\\xac\\xa4\\xe7\\\n\\x67\\x2b\\x84\\x96\\x58\\xa3\\x25\\x15\\xd4\\x52\\x04\\xe2\\x40\\x12\\x55\\x02\\\n\\x37\\xd3\\x21\\x2f\\x41\\xae\\x13\\x9b\\x69\\x14\\xeb\\x70\\x2a\\x56\\x55\\x15\\\n\\x14\\x80\\x9c\\x28\\x90\\x20\\x02\\x21\\x9d\\x8a\\x77\\x11\\x03\\xa2\\x68\\x4b\\\n\\x03\\x40\\x4a\\x6a\\x61\\x40\\xad\\x57\\xc8\\x95\\x24\\x13\\xc8\\x42\\xf6\\xdb\\\n\\xd2\\x58\\x1f\\x8a\\x39\\xc2\\x06\\x67\\x30\\xba\\x57\\xa6\\x62\\xa2\\xd7\\xc6\\\n\\x4e\\x2f\\xc1\\x67\\xb6\\x3f\\x29\\xff\\x00\\xc3\\xdb\\x77\\x8e\\xb8\\xac\\x84\\\n\\x2b\\xef\\x87\\xf0\\x58\\xf7\\xe5\\xe5\\x30\\x21\\x0e\\x28\\xbd\\x80\\xff\\x00\\\n\\x48\\xcc\\x4a\\x21\\x4f\\x3b\\x86\\xa2\\xee\\x2e\\x10\\x56\\x30\\x1e\\x8e\\x46\\\n\\x8f\\x13\\x17\\x4b\\x44\\x6b\\x13\\x45\\x16\\xb3\\x44\\x20\\xb7\\xaa\\xbd\\x82\\\n\\x74\\x3f\\x7f\\x8e\\x20\\x20\\x15\\xa0\\x62\\x91\\xdf\\x6d\\x96\\x59\\xde\\xf1\\\n\\x4a\\xc4\\xbf\\x4a\\xa2\\xd5\\xaa\\x8b\\x17\\xe9\\x53\\x80\\x12\\x95\\x63\\x1a\\\n\\x36\\xb7\\xb0\\x45\\x49\\xc2\\x1b\\x0e\\xe6\\x8b\\x84\\x99\\xf6\\xb2\\x97\\x9d\\\n\\x03\\x20\\x74\\xa4\\x08\\x31\\x9b\\xd1\\xaa\\x86\\x78\\xf0\\x9a\\x29\\x81\\x05\\\n\\x42\\xca\\x5a\\xa5\\x52\\x7c\\xde\\x1c\\x6c\\xe0\\xba\\x35\\x3d\\x50\\xc6\\x74\\\n\\x91\\xbe\\x15\\xcd\\xd9\\x35\\x23\\x84\\x84\\x20\\x30\\x6d\\x7a\\xde\\x5d\\xcc\\\n\\x37\\xd2\\x23\\x52\\x18\\x1d\\x02\\xed\\x2f\\x08\\xda\\xb0\\x28\\xb5\\x89\\x74\\\n\\xc9\\x2e\\xe3\\xe3\\xc0\\xa0\\x05\\xaa\\x87\\x6c\\x13\\x00\\xd9\\xfd\\x7e\\x71\\\n\\xea\\x54\\x91\\x0b\\xa2\\xbd\\x32\\x12\\x40\\xaf\\xf0\\xbc\\x9c\\x76\\xcb\\x42\\\n\\x08\\xa1\\x98\\x52\\x09\\x7f\\x73\\x84\\x2b\\x1a\\x28\\x41\\x52\\xe5\\xc0\\x59\\\n\\x40\\x08\\x38\\x16\\xbf\\x86\\xd4\\xfb\\xa2\\x21\\x3e\\x2e\\x4f\\x55\\x30\\x06\\\n\\x88\\xe4\\xcc\\x03\\xe4\\x05\\x5e\\x0d\\xb2\\x68\\x3d\\x44\\x1e\\x14\\x41\\x6f\\\n\\x46\\x69\\x15\\xe1\\xad\\x09\\x6e\\x10\\xbb\\xa3\\x36\\x3f\\x9e\\x67\\x52\\x8a\\\n\\xd0\\x18\\x69\\xae\\x23\\xb0\\xdc\\xcc\\xf7\\xd0\\x59\\x15\\x0e\\x24\\x49\\xb7\\\n\\xf4\\x4f\\xf6\\x2f\\x3c\\xf1\\x30\\x1a\\x10\\xc3\\xb8\\xae\\x63\\x4b\\x4b\\x0c\\\n\\xad\\xbc\\x42\\x90\\x34\\x10\\x80\\x45\\xd1\\xcd\\x12\\xd5\\x7a\\x15\\x90\\x6d\\\n\\x4a\\xa9\\x00\\x50\\x11\\x66\\x46\\x95\\x4a\\x47\\x29\\x2f\\xe9\\xdf\\x7f\\x66\\\n\\xf1\\x89\\x51\\x64\\xd5\\x44\\xec\\x7c\\xca\\x85\\x67\\xef\\x25\\x99\\x04\\xae\\\n\\xb3\\xe6\\x9d\\xc3\\xf7\\x20\\xa9\\x38\\xe1\\x2e\\x81\\x07\\x58\\xf4\\xb3\\xbe\\\n\\xf6\\x3d\\xf5\\xcc\\x5a\\xfa\\x13\\xb8\\xb7\\x27\\x55\\xbe\\x7f\\x7d\\xa9\\x81\\\n\\xb8\\xa4\\x41\\x78\\x09\\x05\\x80\\x93\\x40\\x60\\x42\\xb8\\x74\\xad\\xc0\\xbe\\\n\\x49\\x65\\x20\\x28\\x46\\xcb\\xe8\\x80\\xa1\\x22\\xf8\\x04\\x75\\x87\\x39\\x6a\\\n\\x46\\xf8\\x0b\\x14\\x15\\x57\\x4d\\x13\\xc3\\x90\\xb1\\x14\\xc8\\x20\\x68\\x50\\\n\\x18\\x38\\x53\\x0e\\x18\\x80\\x8d\\x2a\\xa2\\x74\\x19\\x42\\x35\\x8c\\x3a\\x2b\\\n\\x03\\xb9\\x02\\x5b\\x88\\x69\\xf0\\x57\\x3b\\xa1\\x46\\x70\\xae\\x9d\\x34\\xa0\\\n\\x7c\\x35\\xff\\x00\\xd7\\xe6\\x79\\xca\\x05\\x81\\x5b\\x2a\\x02\\x66\\x4d\\x51\\\n\\xa1\\x59\\x21\\xb8\\x08\\xa0\\x57\\x50\\x80\\x05\\xbd\\x16\\xeb\\xf7\\x68\\xec\\\n\\x43\\x70\\xba\\x18\\x2a\\xd8\\x93\\xa1\\x9d\\xd7\\x55\\xc6\\xa0\\x18\\x34\\x80\\\n\\x54\\x55\\x12\\x3b\\x16\\x24\\x04\\x22\\xc0\\x10\\xf7\\x28\\x85\\x83\\x04\\x0b\\\n\\xc1\\xb4\\x3d\\x3d\\x24\\xb0\\xbd\\x2a\\xc0\\xe9\\x15\\xba\\x7b\\x02\\xc8\\x6c\\\n\\xde\\xd0\\x32\\xa2\\x62\\x66\\xd9\\xd2\\x04\\x84\\xa8\\x02\\x1e\\xe9\\xc0\\x06\\\n\\x64\\x04\\x31\\x0b\\x14\\xd8\\x05\\x11\\x80\\x14\\xbc\\x0e\\x35\\x7e\\x31\\xe5\\\n\\x50\\x2c\\x48\\x29\\x55\\x65\\xaa\\xa8\\x4b\\x70\\xb1\\x6e\\x49\\xb1\\xa2\\x04\\\n\\x1e\\x0e\\xab\\x34\\xd1\\xf5\\xa4\\xe8\\x8d\\x73\\x5e\\x82\\x72\\xf6\\xa5\\x85\\\n\\x81\\xf4\\x49\\x99\\x06\\x90\\x83\\x79\\xd8\\x80\\xa1\\x02\\xd4\\x19\\x5e\\x00\\\n\\x4b\\x8a\\xf0\\x80\\x2a\\x07\\xd0\\x01\\x80\\xe9\\x42\\x9a\\xf8\\x5a\\x46\\x31\\\n\\x01\\xf8\\x94\\x8b\\x01\\xc8\\x33\\xa6\\x7d\\x4e\\x2f\\x42\\xa0\\x34\\x19\\x74\\\n\\xa5\\x4a\\x68\\x68\\x93\\x54\\xbe\\x8b\\x4b\\x5c\\x25\\x49\\x71\\x1b\\x51\\x86\\\n\\x54\\xd2\\x05\\x04\\xd4\\x81\\x4c\\xd6\\x8d\\x6f\\xde\\x31\\x0a\\xa0\\xb5\\x15\\\n\\x6b\\x19\\x05\\x06\\x14\\xa9\\xd7\\x11\\x76\\xf6\\x26\\x15\\xa0\\x28\\xa0\\x52\\\n\\x14\\x30\\x54\\x54\\x29\\x2a\\xe9\\x07\\x40\\x35\\xa2\\xb3\\xf4\\x3a\\x1e\\x48\\\n\\x5e\\x08\\x3e\\x08\\x0a\\x5c\\xb2\\x04\\x95\\x34\\xe2\\xa3\\xa0\\x84\\x0b\\xd5\\\n\\x0e\\xd5\\x14\\x14\\xe1\\x52\\xd0\\xcd\\x18\\x84\\x76\\xbe\\xd5\\x58\\xad\\x4e\\\n\\x48\\x73\\xe1\\x32\\x10\\x35\\xbf\\xa2\\x5a\\x3f\\x09\\xc2\\xb5\\xa3\\x0e\\x8a\\\n\\x01\\x83\\x28\\x7f\\x0e\\xed\\x6c\\x3a\\x29\\x4c\\x11\\x3b\\xc4\\x11\\xf0\\x3e\\\n\\xba\\x59\\xf7\\x04\\x40\\x95\\xa3\\x7a\\x71\\xf8\\xb3\\x96\\xa7\\x8f\\x00\\x9b\\\n\\x08\\x41\\xfd\\x1a\\x97\\xeb\\xcf\\xe5\\x4b\\x0c\\x09\\x28\\x06\\x7f\\x6a\\xf6\\\n\\xde\\x40\\xcf\\x06\\x86\\x1f\\x20\\x35\\xc8\\x17\\x63\\xb0\\xae\\x3f\\xb5\\x55\\\n\\x05\\x25\\x33\\xa4\\x5b\\x7c\\xec\\x1e\\x1d\\x48\\xc8\\xc5\\x54\\x6a\\x05\\xc1\\\n\\x19\\x15\\x55\\x54\\x48\\x8a\\x9c\\x88\\x4a\\x55\\xad\\x23\\x62\\x8c\\xa1\\xd2\\\n\\x89\\x82\\x97\\xb2\\x34\\x08\\xd6\\xb0\\xf8\\xab\\xd2\\x5b\\x85\\x85\\x20\\x94\\\n\\xf8\\x02\\x8d\\x2c\\x13\\x4a\\x77\\xc7\\x6c\\x41\\x1b\\x84\\x04\\x89\\x3a\\x2d\\\n\\xef\\x7f\\xc5\\x2d\\x41\\x71\\x8f\\x4f\\x65\\x35\\xac\\xab\\x9e\\x61\\xc6\\x45\\\n\\x2a\\xa8\\xe9\\xa7\\x78\\x65\\xa4\\x14\\x12\\xbf\\x17\\x03\\xb2\\xb8\\xe8\\x42\\\n\\x14\\xb5\\xfa\\x50\\xe2\\x38\\xa7\\x16\\x04\\x21\\x8e\\x20\\xd4\\x28\\x4e\\x09\\\n\\x55\\xb6\\xc3\\x60\\x98\\xa5\\x92\\x5a\\xf8\\xf1\\xcb\\xbd\\x82\\x0a\\x81\\xb0\\\n\\x12\\x15\\x42\\xfc\\x0a\\xf1\\xe7\\xb9\\x26\\x2a\\x64\\x62\\x82\\xfe\\x84\\x96\\\n\\xf1\\x81\\xa9\\xa2\\x47\\x65\\x04\\x42\\x10\\x8a\\x45\\xf7\\x82\\x84\\x86\\x37\\\n\\xd0\\x21\\xeb\\x17\\x40\\x54\\x68\\xe9\\x69\\x92\\x4b\\x20\\xa0\\xad\\x68\\x21\\\n\\x65\\xd0\\xb8\\xf3\\xbc\\xae\\x66\\xeb\\x02\\x84\\xa9\\xa2\\x44\\x89\\x4f\\x21\\\n\\x2e\\x05\\xe6\\x4b\\xee\\x30\\x21\\x6b\\x8b\\xb2\\xe6\\x4b\\x05\\x46\\x31\\xc3\\\n\\xf6\\x49\\x8e\\x5b\\xca\\xe5\\x2a\\x91\\x25\\x88\\xc0\\x5a\\x00\\x22\\x53\\xa4\\\n\\x6a\\x10\\xc4\\x02\\x01\\x1f\\x73\\x7a\\x5e\\x8c\\x7a\\xa9\\x72\\x32\\x84\\x8c\\\n\\x3e\\x21\\xf6\\x85\\x50\\x9a\\xf7\\x88\\x98\\x4f\\xa5\\xc4\\x92\\xcc\\xf4\\x48\\\n\\xd7\\x8b\\xc1\\x3d\\xe1\\x20\\xdc\\x4f\\xb9\\xd1\\x6c\\x42\\x4b\\xe9\\x25\\xfb\\\n\\x04\\x88\\xb6\\x7a\\x3e\\x02\\x7a\\x22\\xd5\\x40\\x00\\x82\\x80\\xb1\\x60\\xf7\\\n\\x69\\xa0\\x98\\x70\\x42\\x2f\\x08\\x56\\x5b\\xb5\\x3d\\xb8\\x7f\\xd7\\x0f\\x30\\\n\\x77\\x0a\\x87\\x9a\\x7d\\xf1\\xfe\\x07\\xe7\\x09\\xdf\\x00\\x07\\x08\\x85\\xd5\\\n\\xdb\\x58\\x00\\xcc\\x18\\x1a\\x55\\x19\\x51\\x67\\x60\\x17\\x1b\\x03\\xc0\\x48\\\n\\x18\\x23\\xa7\\xb8\\x57\\x60\\x17\\x50\\x20\\x94\\x4c\\x12\\x8e\\x93\\x10\\x39\\\n\\xd9\\x96\\x96\\xc7\\xb9\\x86\\xa2\\xc1\\x9b\\x80\\x88\\xb6\\x2d\\x02\\x12\\x94\\\n\\xd4\\xd0\\x45\\x08\\xac\\x10\\xe8\\x32\\xa6\\x89\\x08\\x48\\xe1\\x4a\\x2a\\x8a\\\n\\x1b\\x6a\\x88\\xfa\\x8f\\x04\\x49\\x42\\x20\\xa0\\x8b\\x01\\x21\\x81\\x27\\xa9\\\n\\x58\\x8a\\x4e\\xd2\\x95\\x4a\\x10\\xd2\\x52\\x29\\x94\\x2f\\x1b\\xec\\x88\\x60\\\n\\x55\\x48\\x05\\x2c\\x24\\x60\\x00\\xe1\\x30\\x6a\\xc0\\x91\\x84\\x01\\x34\\x80\\\n\\x86\\x0e\\xb8\\x16\\x80\\xc3\\x84\\x00\\x68\\x23\\x12\\xae\\x80\\xe0\\xb8\\xb7\\\n\\xd9\\xed\\x68\\x94\\xc4\\x57\\xcd\\xef\\x12\\xbe\\x41\\x19\\xa4\\x4e\\x95\\x0f\\\n\\x51\\xe9\\x81\\x46\\xcd\\x5f\\x66\\x00\\x99\\x5f\\xa7\\x5a\\xa1\\xc5\\x45\\xe8\\\n\\x88\\x0b\\x04\\xa0\\x52\\x1d\\xd0\\xa0\\x71\\x1b\\xc8\\x9c\\x2e\\x80\\xa1\\x5e\\\n\\xd5\\x2f\\x4b\\x8c\\x3c\\x69\\x92\\x81\\xa2\\xb6\\x9d\\x46\\x74\\x8f\\x78\\xf0\\\n\\x20\\x6a\\x91\\x0e\\xc4\\xc3\\x50\\xed\\x31\\x09\\x23\\xcd\\xb5\\xc8\\xdb\\x10\\\n\\x91\\xec\\x9c\\x65\\xf3\\xeb\\x78\\x70\\xc2\\xa0\\xc1\\x61\\xb5\\x69\\x41\\x0d\\\n\\xa4\\x9c\\x50\\x0f\\x85\\x94\\x4a\\x00\\xc4\\x06\\x0a\\x39\\x27\\xe1\\x35\\x10\\\n\\xe2\\x24\\x98\\x92\\xa7\\x57\\xb3\\x88\\x89\\x05\\x01\\x8c\\x07\\x59\\xf4\\xf7\\\n\\x83\\x42\\x72\\x5a\\x8a\\xd6\\xef\\xfe\\x01\\x33\\xf3\\xfe\\xb9\\x3d\\x91\\xb5\\\n\\x7c\\x4e\\xb3\\xd7\\xb3\\x06\\xa4\\xe2\\xb5\\x8c\\x20\\x3a\\x42\\x88\\x60\\x31\\\n\\x10\\x55\\xab\\x59\\x73\\x98\\x9d\\xb4\\x50\\x4c\\x2d\\x7c\\x7f\\xd5\\xa0\\x91\\\n\\x7d\\x98\\x49\\x13\\x15\\xf3\\xac\\xbd\\x5e\\x27\\x37\\x30\\x56\\x1d\\x3d\\xa9\\\n\\xa4\\x98\\x30\\x79\\x7b\\xc8\\xa3\\x40\\x1b\\x8a\\x42\\x1f\\x45\\x09\\xc2\\x25\\\n\\xca\\x69\\x7a\\x08\\xb5\\x13\\x12\\x21\\x80\\xeb\\x0c\\x0e\\x68\\x05\\xef\\xf3\\\n\\xae\\xb0\\xff\\x00\\x4e\\x90\\x3a\\x30\\x31\\xd2\\xb5\\xbb\\xe0\\xdf\\x76\\xb5\\\n\\x87\\x33\\x0b\\x5f\\x18\\xf5\\xf9\\xef\\xfc\\x67\\xf2\\x15\\xe0\\x1c\\xf8\\x4b\\\n\\x42\\x45\\x1c\\xb4\\x5c\\x9e\\x70\\xe0\\x04\\x8c\\x2a\\x7f\\x92\\x2a\\x7f\\x9d\\\n\\xe4\\xa8\\x93\\x5b\\xd0\\x48\\xb0\\xe4\\x91\\x4a\\x1e\\xa8\\xf3\\x42\\xa9\\xad\\\n\\x16\\x10\\x75\\x5a\\xb9\\x0a\\x1b\\xa9\\x94\\xba\\x06\\x1d\\x1f\\xa1\\x4c\\x53\\\n\\xee\\x36\\xa6\\xaa\\xb5\\x04\\x81\\x19\\x56\\x61\\x6f\\x74\\x3a\\xe2\\xad\\xc7\\\n\\xb0\\x17\\xce\\x8e\\x98\\x68\\x53\\xd7\\x6d\\x97\\x44\\x62\\x4a\\x15\\x11\\xd5\\\n\\x95\\x57\\x47\\xb1\\x70\\x6a\\x95\\x03\\x64\\x46\\x94\\x12\\xc4\\x5e\\x16\\x05\\\n\\xd4\\x0a\\x50\\x01\\xed\\x0c\\x52\\x3d\\x3a\\x80\\x22\\xa5\\x40\\x09\\x05\\xa6\\\n\\xa8\\xac\\xb4\\x63\\x78\\x50\\x70\\x16\\xa5\\xe1\\x05\\x6a\\xf9\\xb2\\x8c\\x7b\\\n\\xe1\\x43\\x18\\xc6\\xb6\\x0d\\x05\\x05\\x9f\\x93\\xc4\\x1e\\x0e\\x10\\xe3\\x18\\\n\\x72\\xd0\\x05\\x10\\x2a\\xef\\x65\\xa5\\x50\\x56\\xf3\\xeb\\xac\\x31\\x59\\x4a\\\n\\x94\\x29\\xc4\\xc1\\x5a\\x96\\x78\\x60\\x45\\x24\\x92\\xc6\\x2d\\x27\\xb9\\x26\\\n\\x64\\x03\\x43\\xd1\\x01\\x83\\x26\\xb8\\x60\\x28\\x84\\x92\\x18\\xe8\\x60\\x98\\\n\\x5d\\x9a\\x22\\x6d\\x10\\xf8\\xbe\\x33\\xae\\xbf\\x47\\x13\\xa6\\xc7\\x92\\x26\\\n\\x92\\x03\\xbd\\x34\\xef\\xa6\\xb0\\x9d\\x99\\xfa\\x04\\xc0\\x1a\\xd3\\x74\\x4f\\\n\\x32\\xbd\\xef\\x50\\xf4\\x38\\x81\\xcc\\x41\\xd2\\x22\\x6c\\x26\\xc6\\x2d\\x87\\\n\\xc7\\x8e\\x72\\x43\\xba\\xa5\\x68\\x83\\x7a\\x5f\\x3a\\x35\\xc2\\xa1\\x2f\\x5e\\\n\\xca\\x0a\\x21\\x7f\\x33\\x72\\x49\\xc1\\x27\\x45\\x06\\x71\\x52\\x20\\x13\\xfb\\\n\\x8e\\xe8\\x5e\\x0b\\x0d\\x2a\\x42\\x1e\\xb1\\x54\\x4d\\xba\\xbf\\xf4\\x03\\x52\\\n\\x8c\\xc6\\x7b\\x2a\\x84\\x84\\xea\\x55\\xd2\\xec\\x59\\xb4\\x30\\x92\\xc2\\xdc\\\n\\x4d\\xff\\x00\\x5e\\x69\\x78\\x81\\x82\\x41\\x43\\xa0\\x5a\\x6a\\x53\\xb0\\x8b\\\n\\x0b\\xbc\\xad\\x80\\x28\\x46\\x76\\x80\\x0d\\x41\\x2e\\x06\\x43\\x1e\\x90\\x79\\\n\\xb1\\x3e\\x33\\x03\\x84\\x1f\\x0b\\x08\\x18\\x44\\xf0\\x44\\x34\\x6e\\x98\\xba\\\n\\xfa\\xf4\\x0a\\xe3\\x90\\xa8\\x81\\x27\\x5b\\x4b\\x7c\\xd8\\x3c\\x19\\xc1\\x22\\\n\\x87\\x04\\x20\\x8c\\x2c\\x43\\x02\\x5a\\x50\\xc6\\x47\\xb1\\x45\\x18\\x17\\xb0\\\n\\x98\\x5a\\x90\\x7b\\x1c\\x85\\xdb\\x43\\xdd\\xdb\\x52\\x3c\\x2a\\x8b\\x92\\x88\\\n\\xd0\\x28\\x07\\xda\\x18\\xa0\\x97\\x88\\x04\\xfe\\xc7\\x02\\x77\\x54\\x15\\xe8\\\n\\x34\\x23\\xb5\\x8b\\xad\\x8b\\x81\\x7b\\xce\\xc1\\x43\\xb9\\x20\\xd3\\x8c\\xa9\\\n\\xcb\\x85\\x09\\x43\\x84\\x05\\xf1\\x4e\\x39\\xc2\\x15\\xba\\x82\\xb9\\x97\\x3c\\\n\\x40\\x90\\x94\\x20\\x95\\x00\\xda\\x1d\\x4e\\xd0\\xaa\\x03\\x8f\\x09\\xc1\\x5c\\\n\\x56\\xea\\xc1\\xc0\\x07\\x66\\x9d\\xc5\\x7a\\xf9\\xe5\\x40\\x06\\x0d\\x03\\x01\\\n\\x94\\x1a\\xd6\\xa4\\x88\\xd6\\xf6\\xa4\\x62\\xde\\xa4\\x62\\x5e\\xe4\\x73\\x60\\\n\\x64\\x42\\x08\\x48\\x33\\x77\\x66\\x2a\\x5a\\x78\\x25\\x5c\\x7a\\x43\\x0b\\x4f\\\n\\xc3\\x36\\x1b\\xb4\\xee\\x71\\x34\\x81\\xec\\x20\\xf3\\xb2\\xee\\xcd\\x03\\x7f\\\n\\xe3\\x96\\x04\\x18\\x53\\xda\\xf4\\x8a\\xd0\\x82\\x66\\x57\\xfe\\x0b\\x1d\\x4a\\\n\\x00\\xf5\\x15\\x07\\xb0\\x4a\\x6b\\x60\\x83\\x46\\x34\\x63\\x00\\x12\\x9a\\x0e\\\n\\x14\\x23\\x05\\xea\\xc3\\xc7\\x3c\\x40\\x3c\\x08\\xab\\xeb\\xee\\x82\\x2f\\x73\\\n\\x8f\\x88\\xa0\\xc1\\x27\\xe8\\xc7\\x56\\xfd\\xcf\\xe0\\x25\\xda\\x85\\x0a\\xa7\\\n\\x69\\x6c\\xd0\\x51\\x4b\\xe9\\xe2\\x46\\x9a\\xb6\\x3b\\x76\\xaa\\xa2\\x5a\\x99\\\n\\xdb\\xf8\\x64\\xc1\\x40\\xc5\\x44\\xd6\\xd6\\x5c\\x87\\xa7\\x0e\\x1c\\xd9\\xd8\\\n\\x0a\\x8e\\x8f\\xc1\\x7b\\xcf\\x09\\xc0\\x45\\x80\\x72\\x0a\\x82\\x47\\x66\\x16\\\n\\x5c\\x63\\xc2\\xaa\\x10\\xc0\\xe8\\x5d\\x05\\xa4\\x82\\xde\\xd6\\xdc\\xe2\\x60\\\n\\x84\\x73\\xb3\\x73\\x34\\x9f\\x3b\\x19\\xae\\xbc\\x18\\x3f\\xdf\\xfb\\xfe\\x9c\\\n\\x9d\\xc5\\xf3\\x37\\x83\\xa0\\x01\\x62\\xd6\\x5f\\xa8\\xf9\\xda\\xaf\\xd7\\x8d\\\n\\x5a\\x52\\x04\\x5c\\x56\\x61\\xe2\\x07\\x9a\\xf7\\xf1\\xd4\\x28\\xa4\\xa6\\xea\\\n\\x21\\xe9\\x60\\xa9\\x23\\x63\\xa7\\x21\\xb1\\x6b\\x70\\xbe\\x3d\\x74\\xdf\\xdb\\\n\\x6f\\x62\\x70\\xc5\\x0a\\x70\\x8a\\xee\\x00\\x3b\\x51\\xb5\\xc1\\x29\\x53\\x87\\\n\\x4d\\x8a\\x58\\x70\\x0e\\xe7\\x45\\x48\\x8b\\x45\\xbc\\xc6\\xc7\\x68\\xd3\\x60\\\n\\x4c\\xda\\x74\\x79\\x89\\x78\\xe4\\x53\\x8a\\xa8\\x35\\xfb\\x80\\x06\\x5f\\x01\\\n\\xac\\x71\\xc5\\xee\\x86\\x05\\x28\\x5b\\x29\\x62\\x78\\x89\\x9c\\x7b\\xaf\\x56\\\n\\x0d\\x75\\x40\\x77\\x77\\xe5\\x8a\\x07\\x07\\x82\\x83\\x70\\xa4\\xc0\\x2b\\xb7\\\n\\x62\\xca\\xf6\\x0e\\x2d\\x10\\x92\\xd6\\x90\\x42\\xae\\xc3\\xa1\\x00\\x62\\xc5\\\n\\x58\\x23\\x35\\x01\\x0b\\x6e\\x21\\x80\\xb8\\x6f\\xcf\\x0a\\xa9\\x84\\xa4\\x6d\\\n\\x4d\\x31\\xa8\\xbc\\x48\\x14\\x75\\x81\\xcd\\x57\\x40\\x20\\xfa\\xe6\\xe9\\x01\\\n\\x5f\\x2b\\xcc\\x01\\x1b\\xe8\\xd8\\x00\\x2e\\x76\\x51\\xc6\\x15\\x62\\x0d\\x4e\\\n\\x33\\x14\\x4d\\x5b\\x5d\\x21\\xa9\\x28\\x3d\\xa0\\x0f\\x47\\x4e\\x98\\x78\\x7a\\\n\\x91\\x11\\x22\\xd6\\x53\\x3b\\x2a\\x91\\xec\\xe0\\x57\\x15\\x1a\\xc1\\x20\\x50\\\n\\x15\\x9f\\x88\\xdd\\xe0\\x2e\\x81\\x09\\x51\\x98\\xba\\xb1\\x4d\\xf1\\xba\\xbd\\\n\\xe8\\x3f\\x4e\\x28\\x5a\\x0e\\x88\\x3e\\xc4\\x9e\\xb6\\x82\\xbc\\xe8\\x1f\\x8e\\\n\\x38\\x52\\x6e\\x3a\\xc5\\x9d\\xdf\\x11\\xe4\\xbe\\x1a\\xc8\\x07\\xd2\\x29\\xd8\\\n\\x8e\\xb3\\x25\\x7b\\x6c\\x34\\x55\\x14\\x75\\x7d\\x94\\xf1\\xe3\\xe1\\xbd\\xaa\\\n\\x44\\xa2\\x08\\x23\\xfd\\x3f\\x1f\\x1d\\xc3\\x7d\\xe6\\xb8\\xc9\\x32\\x0a\\x55\\\n\\x9d\\x17\\xd9\\x14\\x7a\\xf3\\x3b\\x65\\x43\\x02\\xb0\\x35\\x1c\\x7c\\x6d\\x74\\\n\\x80\\xb1\\x22\\xaa\\xaf\\xe4\\x18\\x62\\xc4\\xab\\xe1\\xc0\\x30\\x43\\xb5\\x13\\\n\\x4f\\x1b\\xb6\\xe4\\xff\\x00\\xa5\\xec\\xf3\\x4a\\xc4\\x44\\xdb\\x40\\x92\\x24\\\n\\x1b\\x85\\x87\\x0a\\xad\\xc7\\x00\\x9e\\xd7\\xb7\\xa7\\xd2\\xa6\\x15\\xe0\\xdb\\\n\\xac\\x22\\x34\\x46\\x84\\x58\\xf4\\x40\\x76\\x8a\\xd4\\x14\\xda\\x68\\x69\\xdb\\\n\\x4b\\xa8\\x54\\x33\\xb1\\x5e\\x22\\x46\\xc0\\x18\\x82\\x51\\x4c\\x63\\xda\\x62\\\n\\xf8\\x32\\x17\\x69\\x5d\\x15\\x40\\x34\\x9b\\xb1\\x4d\\xcd\\xe1\\xc6\\xb8\\x1b\\\n\\x54\\x36\\xa2\\xa4\\x68\\xbb\\x57\\x8e\\x08\\x20\\x40\\x22\\xb2\\x9a\\x0e\\x27\\\n\\xbd\\xac\\x13\\xc5\\x5c\\xf6\\x14\\xcc\\x95\\x6c\\x7d\\xc2\\x14\\xb3\\x67\\x1a\\\n\\x2e\\xad\\xac\\x02\\x55\\x2e\\xd0\\xa8\\x7f\\x07\\xbe\\x26\\xc0\\x35\\x00\\xa3\\\n\\x28\\x63\\x0a\\xc2\\xa5\\x6e\\xce\\x12\\x96\\x64\\x6d\\x14\\x10\\x28\\x81\\xd0\\\n\\x0a\\x9e\\xaf\\x1d\\xe3\\x10\\x10\\x1b\\x01\\x2d\\xec\\x21\\x96\\xa7\\x1b\\x5a\\\n\\xcc\\xa0\\x0e\\x09\\x6c\\xa1\\x5b\\xa4\\xd6\\x00\\x48\\x85\\x42\\x81\\xae\\x68\\\n\\x41\\xf3\\x10\\x71\\xec\\x57\\x03\\xc8\\x34\\x58\\x0a\\xf0\\xfa\\x1d\\xb2\\x27\\\n\\xc4\\x29\\x58\\x04\\x41\\x44\\x8a\\x83\\x4e\\x22\\x01\\x28\\x77\\x6a\\x3d\\x1c\\\n\\x1a\\x18\\x2d\\x26\\x90\\xae\\xf0\\x32\\x12\\xa4\\x18\\xa9\\x28\\x11\\x10\\xa1\\\n\\xac\\x26\\x42\\xe8\\x88\\x09\\x95\\x21\\x31\\xfa\\xdd\\x8a\\x4f\\x46\\xfc\\x77\\\n\\xd7\\xe0\\x37\\xfe\\xf8\\xa8\\x20\\xba\\x7d\\x46\\x9d\\xe7\\x5d\\xec\\xd7\\xf3\\\n\\x8f\\x68\\xbe\\x6e\\x1d\\xbf\\xf1\\xb9\\x1e\\xd7\\x0e\\x3c\\x63\\x23\\x24\\x0c\\\n\\xc6\\x07\\x44\\x75\\xd2\\x93\\xde\\x19\\x3f\\x41\\x1b\\x7a\\x03\\x08\\x75\\x5d\\\n\\x36\\xbd\\x72\\xe8\\x23\\xb0\\xe8\\x49\\x3a\\x3b\\x62\\x21\\x4a\\x2e\\xf9\\x3f\\\n\\xa1\\x10\\x04\\x20\\xe9\\xa6\\xb9\\x5b\\xfc\\x57\\x82\\x3b\\x8b\\x38\\xa5\\xfa\\\n\\xb9\\x55\\x7c\\x0e\\xf4\\x10\\x69\\x40\\xb8\\x84\\x8a\\x04\\x66\\x1a\\xe8\\xc3\\\n\\x12\\x60\\xb5\\xec\\x28\\xe9\\x8b\\xa2\\x22\\x9f\\x52\\x70\\x87\\x62\\x3d\\xa0\\\n\\x30\\xb7\\x54\\x83\\x0c\\x92\\xf6\\x30\\x30\\xa8\\x13\\x26\\x1d\\xcd\\xbd\\x88\\\n\\xc1\\x23\\xdb\\x70\\xe7\\x11\\x07\\xb7\\x90\\x60\\x3e\\xe5\\x8d\\xa7\\x11\\x6e\\\n\\x88\\x20\\x0f\\x80\\x7d\\x7e\\x8a\\xa1\\xe0\\x82\\x24\\x23\\x79\\x2a\\xba\\xc4\\\n\\x66\\x8b\\xe2\\xe5\\xfe\\xf3\\x74\\x17\\x80\\xee\\x90\\xfa\\x08\\x95\\x77\\xf2\\\n\\xf3\\x56\\x91\\xbb\\x4c\\x32\\x2e\\xb1\\x4f\\xc0\\x42\\x70\\xc3\\x08\\x42\\xea\\\n\\x2b\\x15\\xab\\xb0\\xf7\\xef\\xcd\\xe7\\x72\\x2a\\x50\\x77\\x2e\\xea\\xf4\\x35\\\n\\xdf\\xab\\x13\\xbe\\x19\\x48\\x69\\x28\\x6a\\xfb\\x2a\\xd1\\xb2\\xb4\\x85\\xc8\\\n\\x08\\x03\\x58\\x05\\xb2\\xa0\\xfa\\x2e\\xda\\x61\\x35\\xe0\\xf1\\x6c\\xda\\x15\\\n\\xef\\x51\\x46\\xbf\\x21\\x24\\x7a\\xd5\\x5e\\xa3\\x50\\x00\\xa5\\x80\\xad\\x67\\\n\\xa6\\x7b\\xa8\\xf0\\xd0\\x42\\xc6\\x9d\\x19\\x2a\\x4f\\xf8\\x46\\xdd\\xbd\\xd4\\\n\\x90\\x02\\x9b\\x61\\xe0\\xca\\xb0\\xa1\\x61\\x00\\x04\\x90\\xc7\\x17\\x0d\\x09\\\n\\xaa\\xec\\xc5\\xe1\\x57\\x32\\x3a\\xfe\\xae\\xc8\\x63\\x4e\\x42\\xb5\\x01\\xa3\\\n\\x90\\x2b\\xca\\x02\\x81\\x20\\x3d\\x02\\x58\\x8a\\x2a\\xac\\x88\\x89\\x18\\x2c\\\n\\xa8\\x2d\\x62\\xc7\\x3c\\xaf\\x04\\x23\\xba\\xd4\\x46\\xc8\\xc5\\x16\\x02\\x05\\\n\\x13\\x14\\x8c\\x7c\\x25\\xa4\\x2a\\x26\\x9b\\x6d\\x68\\x01\\xef\\xc2\\x98\\x61\\\n\\x10\\x82\\xc8\\xe9\\x20\\x4b\\x52\\xf2\\x0a\\x6c\\x83\\xb4\\xab\\x03\\xe4\\xb0\\\n\\x05\\x12\\x13\\x91\\x13\\x40\\x5f\\xa1\\x2f\\x89\\xd9\\xaf\\xbd\\x46\\xb7\\x30\\\n\\x10\\xde\\xf2\\xe9\\x4f\\x8b\\xa3\\x80\\xdc\\xa1\\x36\\xab\\x10\\x12\\xad\\x9a\\\n\\x4c\\x1b\\x1c\\xb3\\x20\\x89\\xcc\\x22\\x4e\\x93\\xbe\\x80\\x5c\\x33\\xf9\\x20\\\n\\x60\\x77\\x28\\x18\\x21\\x4d\\x23\\x05\\x21\\x19\\x7a\\x5f\\x96\\xe7\\x3a\\x7d\\\n\\x60\\xff\\x00\\x87\\xfc\\xf3\\xd5\\xfa\\x97\\xe1\\x29\\xf6\\x74\\xd9\\x7a\\x8f\\\n\\x71\\xf0\\x32\\x67\\x2d\\x29\\xda\\x8e\\x58\\xf5\\x1d\\xe1\\x05\\x0e\\xd5\\xbd\\\n\\x94\\xa4\\x21\\xcd\\xfc\\x89\\x15\\x07\\xa1\\x28\\x86\\xb6\\x0d\\x05\\xa9\\x15\\\n\\xb3\\x6a\\x58\\x33\\xbb\\x08\\xaa\\x4d\\xbe\\x55\\xbf\\xdc\\xe9\\xff\\x00\\x8e\\\n\\x35\\xcf\\xbf\\xc6\\x7f\\xcf\\x7f\\xf1\\xef\\x10\\x4b\\xfb\\xff\\x00\\xe1\\xff\\\n\\x00\\xf5\\x7a\\x35\\xc9\\x80\\xee\\xbd\\xfb\\xfc\\xfe\\xc9\\xbd\\xef\\x05\\xd9\\\n\\x02\\x1a\\xe8\\x99\\x04\\x64\\x49\\x15\\x9f\\x78\\x80\\x40\\x60\\xad\\x6d\\x03\\\n\\x05\\xa4\\x15\\x54\\x26\\x8d\\x30\\x7b\\x03\\x49\\xf7\\x19\\x1d\\x8f\\xfc\\xe9\\\n\\xcb\\xc5\\x50\\x30\\x1d\\x6c\\x99\\xfb\\xb4\\xfd\\x69\\xbc\\x19\\xce\\xb9\\x58\\\n\\x15\\x46\\x98\\xb3\\x3d\\x27\\x86\\x9c\\x10\\x38\\xbb\\xd8\\x33\\xb5\\xd3\\xfc\\\n\\x17\\x7a\\xe8\\x33\\x4c\\xc1\\x73\\x17\\x6b\\xdf\\x52\\x67\\x44\\x31\\xc7\\x47\\\n\\xff\\x00\\x23\\xf9\\xf2\\xe6\\xb2\\x27\\xa6\\xf4\\xd8\\x96\\x53\\xc2\\x3f\\x6d\\\n\\xfb\\xf9\\x60\\xe0\\xf0\\x21\\x40\\x80\\xa0\\x55\\x43\\xa0\\x85\\xa6\\xd8\\x68\\\n\\x71\\x6c\\x95\\x47\\xe4\\x04\\x82\\x41\\x3b\\x6a\\x0f\\x40\\xf0\\x48\\x24\\x84\\\n\\x11\\x74\\x4a\\x08\\x97\\xbe\\x99\\x7f\\xa2\\xca\\x6b\\x6c\\x81\\xe9\\x00\\x32\\\n\\x8d\\x15\\xf1\\xd7\\x03\\xac\\x20\\x2a\\x6e\\xa8\\x0c\\xec\\x86\\x81\\xf8\\x74\\\n\\x86\\xd2\\xd6\\x31\\x11\\x1b\\xd8\\x13\\xc5\\x75\\xa2\\x04\\xad\\xbd\\x4e\\x10\\\n\\x10\\xe3\\x5f\\xc1\\x01\\x01\\x10\\xe4\\x70\\x23\\x82\\x2f\\xe8\\x7b\\x34\\x90\\\n\\xfa\\xf2\\x38\\x11\\x58\\x40\\x47\\x60\\x76\\x94\\x32\\xb6\\xe2\\xfd\\x45\\x20\\\n\\x9e\\x19\\xff\\x00\\xe9\\x77\\xaa\\x33\\x96\\xfe\\x0f\\x47\\xe7\\xe9\\xd5\\x3f\\\n\\xdf\\xee\\xf0\\x32\\x74\\x3a\\x87\\x9f\\xbf\\xbc\\x0a\\x08\\xb0\\xcc\\xa1\\x59\\\n\\x02\\x07\\x64\\x03\\xe0\\xf0\\x77\\x95\\x91\\x12\\xa0\\x17\\x47\\x58\\x8b\\x5d\\\n\\x92\\x62\\x35\\x72\\xe1\\x45\\x8b\\xe4\\x13\\xb3\\xc6\\x17\\x6b\\x66\\xb0\\x13\\\n\\xa8\\xdf\\x9d\\x82\\x7a\\xbc\\xa6\\x42\\x3a\\xb5\\x30\\x60\\x91\\x23\\x24\\x40\\\n\\xb8\\x70\\x9a\\x75\\x21\\x45\\x3b\\xb0\\x42\\x4f\\xbe\\xbd\\x09\\xbd\\x3c\\x49\\\n\\x15\\x09\\x04\\xa0\\xd2\\xde\\xf6\\xb7\\x76\\x48\\xe8\\x4a\\x05\\x1c\\x50\\x51\\\n\\xd8\\xef\\xc1\\xdf\\x28\\xa3\\xa2\\x40\\xc4\\x2d\\xfd\\x1f\\x49\\xa1\\x92\\x71\\\n\\xe2\\xe9\\x8b\\xf5\\xf7\\xf7\\xc1\\x62\\xa0\\x8c\\x97\\x0e\\x4e\\x86\\x04\\x55\\\n\\x8c\\xef\\xd3\\x0e\\xb0\\x73\\x9b\\xf6\\x54\\xa2\\x95\\x62\\x03\\x02\\x07\\x40\\\n\\x4d\\x1c\\x5a\\x61\\x9d\\x04\\xc6\\xc7\\xd1\\x60\\x38\\xf9\\x32\\x32\\x8a\\xba\\\n\\x2d\\x32\\xfe\\x1a\\xa0\\x96\\x03\\xc8\\x05\\x60\\xaf\\x40\\x56\\x3b\\x10\\x02\\\n\\x76\\x28\\xaa\\x93\\xa6\\x2a\\x2f\\x82\\x4c\\x5b\\xb4\\x2f\\xae\\x8a\\x88\\x8d\\\n\\x35\\x7b\\x57\\x7d\\x6e\\x7f\\xcf\\xe4\\xf5\\x00\\x1c\\x3d\\x52\\x39\\x34\\x4f\\\n\\xdc\\x60\\xf0\\x91\\x7d\\x25\\x34\\x9f\\x1a\\xbf\\x3b\\x7d\\xdc\\xaf\\x18\\x71\\\n\\x80\\xbe\\xd0\\xed\\x0b\\x87\\x6e\\xd4\\xab\\xf1\\xee\\xd1\\x60\\x2e\\x14\\x19\\\n\\xa6\\xb6\\xe7\\x23\\xf5\\x4f\\xce\\x54\\xfd\\x25\\x82\\xc5\\x28\\xa5\\x5d\\x74\\\n\\x85\\xde\\x66\\x36\\x98\\x07\\x9f\\x90\\x46\\x00\\x2d\\x3c\\x86\\x02\\x2d\\x61\\\n\\x60\\x06\\x68\\xac\\x22\\x6a\\x21\\x11\\x0b\\xa1\\xea\\xa2\\x0e\\xb8\\x26\\x20\\\n\\x46\\x81\\x80\\x14\\x88\\x56\\xa4\\xb9\\x42\\x06\\xbb\\x94\\x6a\\xec\\x22\\xd8\\\n\\x1d\\x60\\x36\\x70\\x99\\x0c\\x40\\x42\\x44\\x4c\\x63\\xf9\\xf1\\x1d\\xce\\x4c\\\n\\x8b\\x1a\\x18\\x40\\xc1\\x58\\x81\\x3f\\xe3\\x47\\x89\\x90\\x22\\x21\\xc5\\x80\\\n\\xaf\\x78\\x83\\xda\\x8f\\x5c\\xaf\\x6a\\xd2\\x95\\x2a\\x00\\x88\\x7f\\x54\\x9d\\\n\\x1c\\x50\\x1a\\x41\\x51\\x68\\xac\\x7a\\x64\\x64\\x99\\x63\\x9c\\x43\\x13\\xab\\\n\\xd4\\x6f\\x4d\\xf5\\x9f\\x47\\xae\\x9e\\xd1\\x07\\x36\\xaf\\xff\\x00\\x29\\xfb\\\n\\xf9\\x92\\x59\\xc3\\x2a\\x31\\x37\\xe6\\x7f\\xf4\\x3f\\x5f\\xb7\\x78\\x64\\x55\\\n\\xd0\\x5a\\x51\\xb3\\xb7\\x48\\xf4\\xcf\\x22\\xb5\\x4c\\xc0\\xcd\\x84\\x95\\x20\\\n\\xb4\\xc0\\xcd\\x84\\x84\\x11\\x20\\x82\\x61\\x26\\x53\\xa2\\xd0\\x90\\x51\\x20\\\n\\x40\\x3b\\xab\\x09\\x6c\\x74\\x83\\xa2\\x0f\\x86\\xe5\\x44\\x02\\x08\\x56\\x05\\\n\\xd1\\x88\\x6c\\x0a\\x7d\\xf7\\xce\\x12\\x70\\x8a\\xbb\\x00\\x39\\x7c\\x22\\xfd\\\n\\xfe\\x71\\xba\\x6a\\x29\\x00\\xc5\\xae\\x4f\\x8e\\x13\\xff\\x00\\x8e\\x3d\\x52\\\n\\xb4\\x87\\xc3\\x01\\x92\\xe7\\x76\\xef\\x65\\xde\\x3c\\xcd\\x09\\x1d\\x0a\\x5a\\\n\\x01\\x6c\\x00\\x36\\xa2\\xaf\\x73\\x6b\\x2e\\x30\\x14\\x56\\xad\\x3f\\x15\\x2f\\\n\\x13\\x44\\x46\\x48\\x08\\xd0\\x00\\x44\\xad\\xb4\\x21\\x03\\x1b\\x81\\x75\\x4c\\\n\\x68\\x06\\x21\\xf5\\x21\\xbc\\x44\\x25\\x52\\x18\\x4e\\x94\\xa2\\x47\\x88\\x84\\\n\\x70\\xde\\x9e\\x16\\xc0\\xa0\\x35\\x46\\x98\\x02\\x88\\x00\\x05\\x43\\x82\\x5f\\\n\\x7c\\x55\\x2a\\x00\\x6b\\xa0\\x00\\x97\\xc5\\x67\\x22\\x6e\\x98\\x03\\x44\\xc0\\\n\\x43\\xb2\\x22\\xd9\\x1c\\x71\\xb2\\xe9\\x5c\\x8c\\x4e\\xd0\\xa1\\x00\\x05\\xb5\\\n\\x5a\\x2c\\x49\\x8c\\xa0\\xad\\x57\\x15\\xa9\\x05\\x56\\x8a\\x42\\x08\\x01\\x08\\\n\\x2a\\xea\\x3d\\xb7\\xe4\\x24\\xe0\\xa0\\x28\\x45\\x28\\x28\\x91\\xb5\\xff\\x00\\\n\\x7e\\xa8\\x9c\\x81\\xa4\\x61\\xd5\\x75\\x11\\x44\\x3d\\x0f\\xf1\\x5e\\x85\\x04\\\n\\xac\\x55\\x60\\x08\\x04\\x19\\xa0\\x54\\x8b\\x3e\\x53\\x95\\x24\\x41\\xc2\\x4d\\\n\\xb6\\x30\\x80\\x44\\x85\\x18\\x45\\x6a\\x4a\\x00\\x15\\x63\\x9d\\x19\\x5e\\x9b\\\n\\xde\\x47\\x85\\x08\\x58\\x80\\xa8\\xe4\\x51\\xb7\\xae\\xd6\\x07\\x47\\x10\\x94\\\n\\x88\\x31\\x39\\x58\\xfb\\xd7\\xfd\\x58\\x1c\\x9c\\xaf\\x63\\x00\\x10\\xe1\\x85\\\n\\x21\\xae\\x8c\\x83\\x57\\x84\\x5a\\x46\\x64\\x33\\xf3\\xff\\x00\\x9b\\x85\\x33\\\n\\xa8\\x10\\xc0\\x40\\xbd\\x0b\\x2f\\xd3\\xfa\\xb2\\x34\\x3a\\xf5\\x54\\x54\\x83\\\n\\x0d\\xbb\\xd1\\x90\\x87\\x35\\x18\\x00\\x87\\x70\\x5d\\xa0\\x51\\x5a\\x7b\\xa9\\\n\\x02\\x8b\\xd8\\x4d\\x2a\\x97\\x3a\\xd4\\x3b\\x99\\xd4\\xde\\x52\\x65\\xdc\\x06\\\n\\x8c\\x07\\xac\\xb3\\x0e\\xfa\\xce\\x3a\\x76\\x15\\x10\\x9b\\x1c\\xa4\\x55\\x64\\\n\\x8b\\x14\\x46\\x97\\x2a\\x88\\x01\\xd1\\xa4\\x58\\x01\\xf0\\xc8\\xf0\\xfa\\x8a\\\n\\x03\\xf8\\x95\\x93\\xf1\\x22\\x62\\xde\\xce\\x71\\x80\\xbc\\x33\\x4f\\x51\\x0a\\\n\\x6c\\xff\\x00\\x56\\x55\\x1a\\x1a\\x6c\\xc2\\x4e\\x84\\x0b\\x44\\x67\\x28\\x33\\\n\\x7c\\x84\\xa8\\x00\\x5a\\x11\\x24\\xe9\\xfb\\xc4\\x6d\\xd8\\x0a\\x42\\x06\\x26\\\n\\x68\\x65\\xeb\\x55\\x67\\x06\\x4c\\xda\\x12\\x20\\x4a\\x86\\xab\\xe4\\x9f\\x49\\\n\\xcb\\x08\\xc9\\x69\\xc3\\x31\\x82\\x5b\\xa6\\xe2\\x9a\\x71\\x15\\xf8\\x34\\x65\\\n\\x1c\\xae\\x1a\\x5c\\x37\\xed\\x9c\\x1d\\x01\\xfb\\x84\\x91\\x05\\x98\\x67\\x96\\\n\\x93\\xdb\\xc6\\x64\\x40\\x30\\x7a\\x7d\\x4f\\x3f\\x4a\\xff\\x00\\xa2\\x2a\\x40\\\n\\x3b\\xd6\\xdf\\x2a\\x79\\xf0\\x33\\x7f\\x78\\x3e\\x51\\x85\\xe8\\x0b\\xd7\\x41\\\n\\xd7\\xe3\\x73\\x8a\\x9e\\x24\\x1a\\x28\\x40\\x10\\x44\\x08\\xa6\\x22\\x14\\x8b\\\n\\x07\\xc4\\x46\\x11\\xa4\\x04\\xd0\\x5d\\xc9\\xd6\\xf3\\x31\\xa7\\xe2\\x81\\xb6\\\n\\xaa\\x0b\\x89\\x48\\xa4\\x5a\\x45\\x8c\\x12\\x31\\x34\\x21\\xd0\\xef\\x5a\\x70\\\n\\x02\\x8c\\xbc\\x74\\xa3\\xb0\\x49\\x64\\x14\\x56\\x86\\x33\\x9b\\x37\\xda\\x0b\\\n\\x41\\x6e\\x04\\x43\\xfd\\xdf\\x2c\\x3c\\x88\\x69\\x44\\x16\\x87\\xd4\\x40\\x7c\\\n\\x2b\\xc0\\x42\\x23\\x40\\x18\\x2d\\x34\\x81\\x65\\xbf\\xbd\\x71\\xe8\\x48\\x51\\\n\\xb4\\x9d\\x82\\x22\\xbc\\x23\\x45\\x00\\x18\\xc2\\x12\\xc0\\x49\\x3b\\x1b\\xfd\\\n\\xa8\\x6a\\xdd\\xd4\\x70\\x80\\x23\\xa1\\x8e\\xe8\\xea\\x2a\\x74\\xa3\\xf4\\x2d\\\n\\xe0\\x3b\\x55\\xea\\x8e\\x7f\\x4d\\xfb\\xec\\xa2\\x08\\xa9\\x27\\x0d\\xb0\\xa0\\\n\\x2f\\xc1\\x58\\x7b\\x7a\\xee\\x79\\x0c\\x30\\xa5\\x00\\x04\\x72\\xbf\\x0d\\x43\\\n\\x52\\xe2\\xb4\\x89\\x44\\x86\\xc3\\xae\\x94\\x9d\\xaf\\x6d\\x9f\\xde\\x12\\x9e\\\n\\x9a\\x95\\x00\\xb5\\xaf\\xe9\\xc5\\x50\\x1d\\x0b\\x1b\\x02\\xe6\\x49\\x93\\x5b\\\n\\xb4\\xfa\\x1a\\x00\\x0a\\xef\\x7e\\x00\\xea\\x8b\\x45\\xd8\\xb7\\x0e\\x15\\x20\\\n\\x62\\x80\\x84\\x76\\x4e\\x51\\xb8\\x20\\x4c\\x2a\\xe9\\x04\\xed\\x06\\x5d\\x50\\\n\\x75\\x45\\x02\\xb9\\x78\\xd1\\x00\\x18\\xab\\x00\\x16\\x59\\xbf\\x08\\xbf\\x7a\\\n\\xe1\\x84\\xa8\\x40\\xb8\\x47\\xbc\\x7e\\xf5\\xba\\xba\\x57\\x98\\x4a\\x61\\xdc\\\n\\x22\\xcb\\x8b\\x2f\\x59\\x51\\xcc\\x61\\xc1\\x88\\x94\\x76\\x46\\xaa\\x90\\x3b\\\n\\x6b\\x84\\x97\\xa1\\xbc\\xfa\\x60\\x58\\xdb\\x00\\x7b\\xe8\\xc6\\x72\\x15\\x20\\\n\\x61\\x16\\x00\\x21\\xd1\\x24\\x14\\x64\\x07\\x26\\xe1\\xa5\\xe5\\x61\\x09\\x88\\\n\\x16\\x96\\x02\\xde\\x90\\x98\\x81\\x21\\x16\\xe1\\x9b\\xf0\\x50\\x40\\x4a\\x27\\\n\\x2c\\x9d\\x08\\x33\\x44\\xc0\\xd9\\x57\\x08\\x63\\xc1\\xc2\\x24\\x08\\x90\\xec\\\n\\x95\\x74\\x70\\x98\\x10\\xe0\\xb4\\x93\\x20\\x24\\x8a\\x10\\x32\\x28\\x14\\x44\\\n\\xed\\x80\\x67\\x9d\\x4a\\x17\\x9d\\xa6\\xbf\\x00\\x91\\xe5\\x1d\\x29\\xed\\xa9\\\n\\x58\\xc0\\x18\\xc5\\xd0\\x34\\x63\\x04\\xb1\\x31\\x7f\\x04\\x16\\xa1\\x0a\\x5b\\\n\\x8f\\x38\\x22\\xac\\xc4\\xfa\\x10\\xc2\\x2d\\x07\\x60\\x29\\x03\\xb1\\x42\\xc1\\\n\\x25\\x46\\xd3\\xe9\\x8a\\xce\\xfa\\xa3\\xc9\\x8e\\x04\\xd5\\x59\\x06\\x93\\x4a\\\n\\x5d\\x80\\xb7\\xe0\\x00\\x20\\x08\\x4e\\x8e\\x1a\\xc4\\xc5\\x6a\\xde\\xcd\\xe0\\\n\\x92\\xd2\\x68\\x08\\x87\\x36\\x75\\x6a\\x93\\xa0\\xf2\\x4a\\x34\\x30\\x90\\x3a\\\n\\x2b\\x0d\\x88\\x7b\\xd5\\xb5\\xe6\\x87\\x74\\xb1\\x88\\x67\\xe8\\xbe\\x79\\xfe\\\n\\x7c\\xe7\\x56\\x02\\x42\\x0a\\xa3\\x2f\\xa5\\xde\\xe8\\x3f\\x1e\\x1e\\x22\\x04\\\n\\x81\\xc5\\xda\\x11\\x57\\xdf\\x9d\\x5e\\xf8\\x52\\x31\\x33\\x00\\x00\\x09\\xba\\\n\\x8d\\xd0\\x09\\x32\\xde\\x29\\x9c\\x43\\x60\\x98\\x22\\xaf\\x6c\\x00\\xc8\\xa1\\\n\\x90\\x6d\\x52\\x06\\x8a\\x1f\\x50\\x76\\xd3\\xbc\\x98\\xee\\xb6\\x1b\\xdb\\x48\\\n\\x5f\\x51\\x8a\\x5c\\x57\\xbf\\xf9\\xe1\\xc9\\x02\\x8f\\x21\\x6b\\x95\\xa3\\xaf\\\n\\x6f\\xeb\\x84\\xe2\\x81\\x5d\\xc1\\x48\\xd7\\x67\\x80\\xbd\\xdf\\x18\\xcd\\x56\\\n\\x40\\x61\\x4d\\x0a\\x16\\x8b\\xa0\\x5a\\x30\\x31\\x1e\\x31\\xc8\\x6b\\xa8\\x91\\\n\\x9f\\x44\\xbd\\x94\\xfd\\x3a\\x79\\xd1\\x58\\x08\\x2b\\xb3\\xbc\\x25\\x07\\x6d\\\n\\xc0\\x81\\x41\\x8a\\x24\\xb0\\x59\\x99\\x0a\\x5d\\x01\\x56\\x59\\x1c\\xa0\\x7d\\\n\\x18\\x81\\x72\\xdd\\x6b\\x9d\\x5e\\x97\\xde\\x4f\\xdc\\x4c\\x2e\\x96\\x28\\xb6\\\n\\x1a\\x6c\\x11\\xc2\\x11\\xa3\\xf5\\xe1\\x04\\x90\\x24\\x2a\\x20\\x2b\\xd2\\x45\\\n\\x09\\xcd\\xda\\x10\\x9a\\x1e\\x81\\x88\\x04\\x0a\\x8c\\xac\\x8d\\x1a\\x82\\x09\\\n\\xaa\\xc4\\xed\\xab\\xa1\\xd9\\x54\\x41\\x52\\xcc\\x4d\\x44\\x2f\\x79\\xfb\\xd7\\\n\\x18\\xf6\\x88\\xad\\x01\\xb6\\x42\\xa4\\xc6\\x9a\\x3f\\x6c\\x0f\\x06\\x50\\x8f\\\n\\xe4\\xff\\x00\\xe6\\x65\\x05\\xde\\x3d\\x56\\x13\\xb0\\x32\\xea\\x43\\xb3\\x0b\\\n\\x26\\xfd\\xd9\\x93\\xea\\x8b\\xe5\\x99\\xf5\\xf2\\xf7\\x31\\xbc\\x3f\\x2a\\x80\\\n\\x22\\x83\\xac\\x18\\xd4\\xa7\\x54\\xea\\x31\\xe1\\xf1\\x28\\x02\\x90\\x24\\x16\\\n\\x26\\x10\\x1b\\xa6\\x0f\\x07\\x1d\\xb2\\x4c\\x36\\x41\\x00\\xe4\\x68\\x42\\x64\\\n\\x0c\\x16\\x7b\\x3d\\x81\\x09\\x0e\\x80\\x1b\\x93\\xc0\\x70\\x1f\\x7b\\x45\\x4d\\\n\\x51\\xd0\\x19\\xd0\\x1b\\x29\\xe3\\xca\\x62\\x05\\x14\\x71\\x1f\\x06\\x0b\\xbe\\\n\\xa1\\x3c\\x70\\xb8\\x72\\x35\\x01\\x4a\\x88\\x86\\x77\\x64\\x09\\xee\\x18\\x54\\\n\\x00\\x68\\xcb\\xb0\\xd0\\xa1\\x67\\xf2\\x38\\x45\\x95\\x0a\\xc5\\x60\\x41\\x08\\\n\\xd1\\x28\\x14\\x38\\x23\\xcc\\x15\\x40\\xd1\\xb8\\x06\\xf7\\x5b\\xb3\\x4b\\xf3\\\n\\xd0\\x41\\xdf\\x78\\xfc\\x62\\xcd\\xcd\\xcf\\x6f\\x4d\\xde\\x08\\xda\\x0a\\x33\\\n\\xac\\xd6\\xf7\\x1c\\x3f\\xfc\\x3c\\xdf\\x30\\x8f\\xcc\\xd5\\x7f\\x3b\\x3d\\x1b\\\n\\xfb\\x43\\x81\\x6a\\x61\\x3d\\x01\\x1a\\x0b\\xfe\\x8c\\xaa\\xc3\\x57\\x5a\\x63\\\n\\x00\\x7f\\xa9\\xef\\xda\\xcf\\x31\\x41\\xd3\\x86\\xc9\\x33\\x69\\xbf\\xd1\\x3c\\\n\\x9f\\xae\\x3e\\x77\\xc5\\x24\\xb9\\xab\\x0d\\x22\\x04\\xce\\xfb\\x1f\\xef\\x4d\\\n\\x16\\x14\\x54\\x69\\x21\\x02\\xda\\x9d\\xb4\\x2e\\x1b\\xab\\xca\\x90\\x3e\\x8b\\\n\\x9f\\x0e\\xbd\\x54\\x0b\\x04\\x51\\x13\\x8b\\xad\\x50\\x04\\x61\\xea\\x8c\\xc0\\\n\\xd3\\x4a\\x4f\\x5a\\xf5\\xa6\\x86\\x04\\x6c\\x07\\x4a\\x23\\x86\\x27\\x6f\\x2f\\\n\\xa1\\x28\\x48\\x48\\x44\\x66\\xc7\\x02\\x0d\\x3e\\xb8\\x95\\xd1\\x9d\\x9f\\x96\\\n\\xe7\\x65\\xa3\\xfa\\xe5\\x72\\xbd\\xed\\x81\\x08\\x52\\x38\\x3b\\x46\\x2a\\x22\\\n\\x26\\x4a\\x10\\x0d\\x03\\x7b\\x6c\\xc4\\x38\\xda\\x42\\x0b\\x9a\\x2d\\x09\\x59\\\n\\x4a\\x26\\x2d\\x91\\x0e\\xc2\\x67\\x1a\\xcb\\x0d\\xa0\\x62\\x00\\xf4\\x33\\x58\\\n\\x5f\\xb8\\x12\\xa0\\xdc\\x60\\x20\\x15\\x22\\xae\\x8f\\x74\\xbd\\xf2\\x22\\x0b\\\n\\x8a\\xc8\\x04\\x41\\x65\\xea\\x62\\x64\\x83\\x0c\\xc9\\x52\\x94\\x19\\xf2\\x51\\\n\\x97\\x6a\\x1c\\x3c\\x34\\x21\\x0a\\xe2\\x15\\x12\\x05\\x46\\xfd\\xa0\\xce\\x59\\\n\\x04\\xac\\x05\\x69\\x40\\xac\\x12\\xc6\\x74\\x58\\x09\\x2a\\x10\\x49\\x2a\\xc3\\\n\\x9e\\x40\\x1b\\x18\\x76\\x08\\xb5\\x33\\xb0\\x81\\xb4\\x94\\x30\\x88\\x14\\x41\\\n\\xab\\x87\\xa4\\xa0\\x02\\x00\\x20\\x04\\x46\\x05\\x74\\x14\\x94\\x2c\\x20\\x11\\\n\\xde\\xab\\x8c\\x5d\\xfd\\xf5\\x3a\\xb8\\x48\\x71\\x0c\\xf6\\xca\\x4b\\xd7\\xe8\\\n\\x3b\\xe6\\x3c\\x38\\x58\\x0b\\x75\\x12\\x69\\xe4\\xef\\xc4\\xea\\x3b\\x28\\x41\\\n\\x56\\x20\\x43\\x0a\\x58\\x74\\x8f\\xf5\\x7b\\xc1\\x10\\x04\\x51\\xfe\\xa4\\x0a\\\n\\x5d\\x87\\xcd\\x0f\\xbd\\x71\\x0b\\xd5\\x31\\x28\\xbe\\x5d\\xbe\\x08\\x79\\x70\\\n\\x69\\x31\\x14\\x80\\xcd\\x9d\\x39\\x5c\\x3a\\x35\\x4f\\x29\\xbc\\xa4\\xe8\\x04\\\n\\x07\\x63\\x2a\\x1f\\x22\\x31\\x6f\\x63\\x38\\x12\\x91\\xb5\\x9a\\xff\\x00\\xb7\\\n\\x6d\\xff\\x00\\xdf\\x38\\x3c\\x46\\x1a\\x11\\x40\\x98\\xff\\x00\\x9d\\x7b\\x1e\\\n\\x17\\x81\\x9a\\xb0\\x0f\\xfc\\xbb\\xc8\\x8a\\x53\\xf2\\x4c\\x4e\\x03\\xdb\\xba\\\n\\x76\\x3d\\x10\\x36\\x41\\xfc\\xa7\\xf1\\x51\\xda\\x0a\\x5b\\x8c\\x7b\\xce\\x8f\\\n\\x98\\x06\\xce\\x30\\xb0\\x42\\xe0\\x69\\xef\\xfd\\xff\\x00\\x1f\\x12\\xa7\\x0b\\\n\\x2d\\xd2\\x1b\\xa0\\xeb\\x62\\x1d\\x17\\x00\\x2d\\x1c\\x90\\xa9\\x50\\x83\\xb0\\\n\\xc6\\x5d\\x3b\\x8f\\x15\\x16\\x23\\xd8\\x37\\xea\\xfe\\xe0\\xcf\\x84\\xca\\x88\\\n\\x60\\xa0\\x14\\x41\\x01\\xe8\\xd7\\xa4\\xde\\x29\\xb4\\xa9\\x98\\x7a\\x39\\x07\\\n\\x69\\x94\\x5a\\x79\\xc1\\x91\\x0a\\x94\\x00\\xa9\\x2d\\x4e\\xe0\\x45\\x9d\\x7f\\\n\\xcf\\x1e\\x81\\x40\\xd7\\xb5\\x70\\xc4\\x8d\\xbe\\xad\\xd1\\x70\\xe5\\xe8\\xd8\\\n\\x2f\\xfa\\x99\\x90\\x5b\\xa8\\x19\\x38\\x03\\x13\\x00\\xa0\\x15\\x50\\x42\\x90\\\n\\x8d\\x3d\\xa7\\x0e\\x34\\x06\\x92\\x66\\x46\\x3c\\x21\\xbe\\xcf\\x6e\\xe6\\xdc\\\n\\x28\\x00\\xba\\xd2\\x15\\xb8\\xd5\\xa5\\x13\\xa8\\x55\\x42\\xed\\x60\\xaf\\x54\\\n\\xfd\\x4a\\x22\\x18\\x76\\xa4\\xc9\\xdf\\xc0\\x51\\x44\\xaa\\x07\\x42\\xe8\\x63\\\n\\xbd\\x2d\\x60\\xe5\\x5a\\x6c\\x90\\xa1\\x92\\x92\\x7a\\x6b\\x47\\x43\\x75\\xd3\\\n\\xc6\\x89\\x0b\\xa3\\xd7\\x22\\xb9\\x57\\xf1\\x24\\x16\\x00\\x89\\x5a\\xe9\\x78\\\n\\x3a\\xf1\\x24\\x50\\xa9\\x73\\xa0\\x82\\xf8\\x62\\xf5\\xb1\\xa7\\x67\\xdd\\x00\\\n\\x30\\x0e\\x3d\\x30\\x84\\x2b\\xd4\\x4f\\xd5\\xb5\\x94\\x0b\\x70\\x85\\x40\\x2e\\\n\\xd0\\xfd\\x24\\xec\\xa0\\x81\\xbb\\x35\\x28\\xbd\\xa8\\x9a\\x58\\x15\\x6d\\x00\\\n\\x8f\\x64\\x0c\\x91\\x69\\x5a\\x40\\xf6\\x09\\x16\\x3e\\x96\\x94\\x98\\xbe\\xbc\\\n\\x31\\x5a\\x40\\x64\\x58\\xca\\x21\\xa6\\x11\\x43\\x44\\x40\\x61\\x2f\\x43\\xb1\\\n\\x2a\\x9a\\x29\\x2e\\x58\\xd4\\x64\\x60\\x45\\x61\\x54\\x74\\x01\\xf9\\x92\\xdd\\\n\\x0e\\xbb\\x86\\xf0\\xd4\\x30\\x25\\x9a\\x5b\\x97\\x55\\xf1\\xd5\\xdb\\xc0\\x40\\\n\\x69\\xd1\\xef\\x44\\xeb\\xb9\\x4e\\xd9\\x76\\xf7\\xca\\x61\\xa1\\x0c\\x0d\\x68\\\n\\xb6\\x9b\\x9e\\xc8\\xff\\x00\\x8e\\xd6\\x82\\x48\\x83\\x1f\\x1e\\xac\\x03\\x6b\\\n\\xe6\\x6b\\x68\\x09\\x31\\x4d\\x30\\x0a\\xdc\\xac\\xf5\\x14\\xc9\\xa7\\x1a\\x24\\\n\\xd5\\x24\\xaf\\x7e\\x76\\xfc\\xce\\xa7\\x55\\xab\\xdf\\x0d\\x57\\xb4\\x2d\\xfb\\\n\\x3c\\x10\\xde\\xc6\\xc5\\x0b\\xb1\\x22\\x15\\x14\\xed\\x98\\x6b\\x66\\xdf\\xe3\\\n\\x1f\\xd5\\x96\\x02\\x77\\x06\\x9b\\x12\\xb1\\xeb\\xf7\\x92\\x58\\xa4\\xe5\\x4d\\\n\\x20\\x6b\\x56\\xef\\xd5\\x44\\x7a\\x58\\x92\\xfe\\x80\\x58\\x20\\xec\\x8c\\x44\\\n\\x81\\xc4\\x44\\xc0\\x05\\x57\\x4f\\x47\\x4a\\x4c\\x0f\\x37\\xf4\\xe0\\xc5\\x28\\\n\\x0a\\xa6\\x08\\x42\\xf5\\xa7\\x5e\\x2b\\xdb\\x54\\x72\\xa5\\x0f\\x4b\\x51\\xb5\\\n\\x6c\\x20\\xe6\\x34\\xbf\\x2f\\x19\\xd5\\xd3\\x91\\x77\\x7b\\x3b\\xf7\\x1a\\x67\\\n\\x6b\\xc7\\x96\\x2c\\xdd\\x3d\\xa4\\x07\\xef\\x53\\xb3\\xbb\\xd7\\x26\\x76\\x58\\\n\\x20\\x34\\x81\\x4d\\x0e\\xaa\\x17\\x38\\x0c\\x3d\\x68\\x1d\\x80\\x75\\x00\\xd1\\\n\\xa1\\x44\\x4e\\x20\\xb0\\x59\\xa4\\x81\\x76\\xc0\\x60\\x95\\x92\\xc8\\x3d\\x06\\\n\\x01\\xc0\\xcc\\x86\\x1d\\x9e\\x6e\\xda\\x2f\\x07\\x05\\x4c\\x60\\xbd\\x5a\\x5c\\\n\\xb8\\xd6\\x53\\x9f\\x78\\x4b\\x4b\\x4c\\x17\\xd3\\xa2\\x78\\x5c\\xac\\x0d\\x3a\\\n\\x32\\x30\\x04\\xd2\\xb6\\x68\\x14\\x1e\\x0f\\xa6\\x86\\x59\\x15\\x4e\\x07\\x1a\\\n\\xb6\\x0e\\x9e\\x46\\x63\\x12\\x6a\\x81\\x44\\x48\\x1d\\x02\\xc0\\x45\\xa9\\x58\\\n\\x16\\xab\\xa1\\x41\\x14\\x62\\x0b\\xf5\\x17\\xa4\\x48\\x88\\x05\\x91\\x4d\\x88\\\n\\xd3\\x6a\\x08\\x05\\x4b\\x04\\x20\\x9a\\x1e\\x84\\x0d\\x00\\xa0\\x4c\\x81\\x27\\\n\\x0f\\x2e\\x78\\x31\\x07\\x47\\xb4\\x45\\x66\\x35\\x25\\x5e\\x6b\\x0e\\xc2\\x51\\\n\\xb4\\x61\\xd8\\x46\\x84\\x4b\\x15\\x78\\x5f\\x02\\x30\\x0d\\x14\\x25\\x1c\\xd8\\\n\\xc8\\xe7\\xbd\\x27\\x3a\\x82\\x50\\x02\\x98\\x78\\x5f\\xc6\\x1d\\x67\\x73\\x79\\\n\\xf9\\x22\\x76\\x29\\x4f\\x7e\\x7c\\x78\\x08\\x34\\x63\\x0c\\x2e\\xc7\\xc4\\x2c\\\n\\x9e\\x3c\\x00\\x1c\\x00\\x7e\\x1d\\x12\\x4f\\x54\\x1d\\xc5\\x1f\\xc0\\x16\\x22\\\n\\xab\\x74\\x6b\\x94\\xe6\\xa6\\x6b\\xae\\x39\\xef\\x15\\x47\\x57\\x70\\x24\\xc5\\\n\\x2f\\xe9\\xc5\\x10\\xb2\\x43\\x07\\x8e\\x80\\xe9\\x2c\\x9d\\x96\\x0f\\x2a\\xab\\\n\\xc9\\x5d\\x89\\xa0\\x02\\xd4\\xeb\\x0f\\x8c\\x45\\xdd\\x60\\x93\\xad\\x1a\\x08\\\n\\x94\\x5b\\xd2\\x90\\x99\\x46\\x73\\x4f\\x82\\xbb\\xf8\\xa2\\xaf\\x5c\\x95\\x20\\\n\\x91\\x6b\\x00\\x55\\x41\\x6b\\x5c\\x2e\\xa7\\x1a\\x20\\xd4\\xa6\\x1f\\x9f\\xab\\\n\\x7b\\x10\\xcc\\x33\\x84\\xf8\\x68\\xa1\\x82\\x6b\\x7d\\x4f\\xcc\\xfe\\x71\\x34\\\n\\x38\\x18\\x00\\xd6\\x34\\xc2\\x46\\x7a\\x5b\\x57\\x02\\x9f\\x2b\\x50\\x31\\x52\\\n\\xa1\\x95\\x70\\xc5\\x48\\xca\\xb8\\x51\\xc1\\x81\\x2d\\x46\\x50\\x8f\\xc1\\xbe\\\n\\xfc\\xe2\\xcc\\x94\\x6b\\x82\\x3b\\x20\\x50\\x1a\\x4a\\xd4\\x07\\x06\\xae\\x0a\\\n\\xa2\\x8a\\x20\\x88\\xae\\x21\\x61\\xa9\\x88\\xd6\\x5c\\x03\\xc1\\x61\\x50\\x28\\\n\\x34\\x03\\xb0\\xe8\\x38\\x23\\xb5\\xa9\\x86\\x64\\xe4\\x26\\x44\\x80\\xf0\\xc1\\\n\\xc9\\xe6\\x95\\x45\\x35\\x44\\x54\\x8a\\x61\\x9c\\x31\\x3c\\x85\\xc0\\x13\\xd2\\\n\\xc9\\x8c\\x7a\\x07\\xfa\\xee\\x45\\x04\\xd4\\x07\\x7c\\x80\\x05\\x41\\x97\\x5a\\\n\\x71\\x88\\x6c\\x83\\x82\\x94\\x85\\xd4\\x04\\x3e\\xaa\\xe3\\xc3\\xc0\\x1a\\xa7\\\n\\x56\\xb0\\x15\\x68\\xd5\\x80\\x82\\x68\\x02\\x71\\x92\\xd2\\x4d\\xc2\\x8c\\x60\\\n\\x91\\x67\\xfa\\xaa\\x29\\xb2\\x18\\xc2\\x94\\xa0\\x05\\x26\\xde\\xbe\\xe1\\xbc\\\n\\x6c\\xb6\\x72\\x09\\x88\\x14\\x86\\xab\\x50\\x50\\xcb\\xc2\\xb5\\x8e\\x0c\\x00\\\n\\x98\\x21\\x8b\\x00\\x02\\x55\\x6a\\x96\\x0a\\x44\\x06\\x44\\x90\\x01\\x0f\\x81\\\n\\x27\\x00\\x2d\\xcd\\x89\\x84\\xec\\xd2\\x46\\xe5\\x12\\xde\\x61\\xa8\\x32\\xa3\\\n\\x61\\x2d\\x90\\xe8\\xf8\\x42\\x64\\x1c\\x6a\\x43\\x55\\x94\\xc4\\xab\\xb6\\xb7\\\n\\xd9\\xfa\\x46\\x70\\x84\\xbe\\x08\\xcf\\x4b\\x1f\\xa2\\xa7\\xca\\x4f\\xc0\\xa9\\\n\\xc1\\x35\\x4e\\x94\\xe5\\x24\\xa7\\xfd\\x31\\x8b\\xc1\\x15\\xd1\\x80\\x24\\x34\\\n\\x8f\\x90\\x07\\xbb\\xc2\\x8c\\x51\\xa4\\x72\\xd5\\xee\\xfa\\xb8\\xb3\\xa3\\xe7\\\n\\x06\\x00\\x1d\\x06\\xca\\xa8\\x23\\x10\\x84\\xfc\\xda\\x71\\x1d\\xdc\\x84\\x62\\\n\\x2b\\x17\\xac\\x4e\\xf1\\xa9\\xd5\\x08\\x32\\x21\\xe8\\x42\\xed\\x20\\x17\\xa4\\\n\\x5a\\x83\\x2a\\x25\\x60\\x88\\xc7\\x57\\x2f\\xd4\\x05\\x5f\\x06\\xf0\\xcf\\x00\\\n\\x68\\x95\\x54\\x54\\x32\\xe4\\x80\\x89\\x0a\\xe2\\xda\\x44\\x06\\x24\\x46\\x29\\\n\\x9e\\xa1\\x8f\\xf8\\x70\\xd4\\xc8\\xec\\x0c\\x38\\x22\\xb3\\x8b\\x3a\\x04\\x0b\\\n\\xfb\\x7c\\xa0\\x04\\x10\\x02\\x51\\x3d\\x17\\x47\\x3c\\xce\\x6e\\x02\\x50\\xde\\\n\\xcc\\xac\\x8a\\x11\\x85\\x9a\\xfb\\xc5\\x8a\\x62\\x97\\xa7\\x88\\xab\\x59\\x00\\\n\\x8b\\xd9\\x4e\\x66\\x60\\xb1\\x20\\x40\\x76\\x8a\\x3a\\xc3\\x52\\x60\\x1d\\x73\\\n\\x54\\xf0\\xaa\\x70\\xad\\x69\\x80\\x4b\\x34\\x00\\x0b\\xc2\\xaf\\x01\\x10\\x47\\\n\\x7d\\x0c\\x1d\\x08\\x8d\\x0c\\x00\\xe6\\xcc\\x81\\x40\\x57\\x89\\x74\\xbd\\x95\\\n\\x5e\\xc3\\xb2\\x38\\xd4\\x2a\\x88\\x01\\x01\\x3d\\x46\\x45\\xed\\x3a\\x0f\\x47\\\n\\xdc\\x0f\\x09\\xa3\\x4a\\x88\\x46\\x98\\x8b\\x40\\x5b\\x02\\x73\\x70\\x7d\\x01\\\n\\x33\\x6d\\x64\\x28\\x12\\x1a\\x21\\xd0\\x0b\\x71\\xab\\xd4\\x25\\xbc\\x48\\x8f\\\n\\x86\\xa0\\x5e\\x8e\\xeb\\xce\\xba\\xc4\\xb8\\x72\\x60\\xd4\\x01\\x3c\\x15\\xe6\\\n\\x62\\xd7\\xb5\\x64\\xe3\\xf4\\x23\\x09\\x6c\\x22\\x4f\\x11\\x5a\\xd4\\x29\\xdb\\\n\\x85\\x47\\x9b\\x61\\x38\\x56\\x03\\x06\\x93\\xb1\\x4d\\x54\\x60\\xf2\\x82\\x16\\\n\\x8b\\xa2\\x0e\\x95\\x91\\xf9\\x4d\\x09\\x48\\x42\\x74\\xb6\\xa0\\x1a\\xfc\\x20\\\n\\x4e\\xca\\x04\\x28\\x63\\xba\\x1a\\x32\\x55\\x14\\x94\\x0a\\x35\\x58\\x27\\x16\\\n\\xa5\\x01\\xae\\xd6\\x21\\x08\\x06\\x3a\\x44\\x6e\\x99\\xaa\\xe1\\x63\\x62\\xb4\\\n\\x3d\\x49\\x80\\x87\\xe6\\x14\\xef\\x11\\xd0\\xca\\xe5\\x61\\xfc\\xdf\\xf7\\xaf\\\n\\xe1\\xc8\\x60\\x55\\x12\\xd1\\x50\\x63\\xd2\\x7c\\xf3\\xff\\x00\\x5e\\x10\\xb0\\\n\\x80\\x6a\\x2a\\x3e\\xc5\\x71\\x64\\x96\\x6e\\xf2\\x92\\x08\\x16\\x6a\\x84\\x0b\\\n\\xaf\\x61\\x42\\xf9\\x51\\xaf\\x09\\x1a\\x69\\xeb\\xee\\xc3\\xa1\\x94\\xcd\\x79\\\n\\x2e\\x24\\x00\\x10\\xba\\x8c\\x1a\\xdf\\xb2\\x1f\\x48\\x04\\x49\\x60\\x62\\x9d\\\n\\x5a\\xaf\\xc2\\x2a\\xf0\\xc6\\x1d\\x72\\x67\\xb2\\xa4\\x08\\xa4\\x47\\x46\\xe2\\\n\\x71\\xdc\\x20\\x91\\x60\\x21\\xd8\\x1e\\x27\\x85\\x59\\x6b\\x8d\\x44\\x8a\\xc3\\\n\\xa7\\x66\\xbf\\xa3\\xd5\\xd4\\x43\\x81\\x54\\x9d\\xe3\\x4a\\x36\\x0c\\xe8\\x52\\\n\\x6e\\x05\\xd6\\x65\\x12\\x8b\\x01\\x98\\x88\\xe6\\x0f\\x42\\xf7\\x69\\x95\\x1b\\\n\\x51\\x43\\x4c\\x11\\xfd\\x84\\x4c\\x9b\\x1d\\x95\\x15\\x48\\x48\\x0a\\x06\\xb2\\\n\\x03\\x25\\x26\\x05\\x49\\xd7\\x03\\x9e\\x38\\x05\\x8c\\x44\\xda\\xbd\\x20\\x76\\\n\\xd2\\xb7\\xc1\\x18\\x0a\\x00\\x68\\xea\\xc1\\x83\\xc1\\x70\\x49\\x04\\x90\\xa6\\\n\\x08\\x0a\\x47\\x14\\xb1\\xa2\\x0c\\xa1\\x48\\x48\\xf4\\x58\\xc0\\x37\\x5f\\xf4\\\n\\x3c\\xf4\\xa3\\xbc\\x48\\x3b\\xab\\x23\\xa6\\xe3\\x79\\x15\\x01\\xeb\\xa6\\x31\\\n\\xf1\\x1a\\xe3\\xd4\\xff\\x00\\x67\\x08\\x10\\x3a\\x23\\xfa\\xee\\x91\\xe9\\x2c\\\n\\x5b\\xfd\\xe0\\x00\\x98\\xe4\\x0a\\xc1\\xa0\\x68\\x71\\x14\\x5e\\x66\\x4e\\x2d\\\n\\xac\\x7c\\x20\\xc5\\xa8\\x3e\\xc6\\xc7\\x88\\x53\\x28\\x2c\\x6b\\x58\\xa3\\x15\\\n\\xa0\\x52\\x3d\\x4e\\x41\\x54\\xd4\\x25\\xa0\\x64\\x17\\x7c\\x1d\\xe2\\xe1\\x29\\\n\\x6a\\x25\\x04\\xd6\\x47\\xdb\\x48\\x88\\xac\\x0a\\x24\\x68\\x0a\\xf4\\xa4\\x03\\\n\\xa6\\x81\\x00\\x86\\x0a\\xdd\\x56\\x7f\\x0d\\x70\\x80\\xca\\x80\\x48\\x74\\xb2\\\n\\xe0\\xba\\xc3\\x04\\x34\\x2a\\x24\\x94\\x89\\x12\\x5b\\xd5\\x8e\\x32\\x43\\xd4\\\n\\x0e\\x91\\xc5\\xad\\x75\\x7b\\xa9\\x75\\xf7\\xe0\\xd4\\x8f\\xd1\\xeb\\xaf\\x4e\\\n\\xbf\\xbc\\xea\\x42\\x74\\xac\\x03\\xdf\\xc5\\xca\\x5e\\xa0\\x5e\\x99\\x73\\x00\\\n\\x0b\\x42\\x56\\xde\\x82\\xfa\\xf6\\x3d\\x95\\x42\\x86\\x61\\x40\\x7d\\xc7\\x48\\\n\\x8a\\x37\\x3c\\xef\\xae\\x74\\xcf\\x7e\\xc2\\x47\\xb9\\x5f\\xe7\\x8f\\x59\\xbc\\\n\\x62\\x52\\x20\\x92\\x99\\xd0\\xe0\\x21\\x49\\xb1\\xbd\\x3e\\x39\\x43\\x40\\x2a\\\n\\x40\\x4b\\x60\\x3d\\xc1\\x63\\xef\\xb2\\xe0\\x22\\xda\\x02\\x05\\x4e\\x09\\x49\\\n\\x5a\\x8f\\xa3\\xad\\x01\\x75\\x9f\\x88\\x06\\x14\\x82\\x85\\x1d\\x13\\x79\\x1b\\\n\\x0c\\x72\\x08\\xbd\\xd1\\x0a\\xb2\\x08\\x5a\\xe4\\x0e\\x5c\\xe0\\x88\\x85\\x43\\\n\\x4a\\x23\\xf5\\xb8\\x4b\\x83\\xdd\\x88\\x5c\\x1a\\x5a\\x4c\\x98\\x21\\x2e\\x0c\\\n\\xe0\\x51\\x8c\\x08\\x18\\xa8\\xd0\\x14\\xa2\\xfe\\x48\\xc8\\x91\\x83\\x67\\x40\\\n\\x3a\\xb0\\x2c\\x90\\xf0\\x1b\\x66\\xf1\\x40\\x5a\\x90\\x00\\xa5\\x43\\xbb\\xeb\\\n\\x9e\\x7f\\xe3\\xc6\\x62\\x01\\xbd\\x01\\x8b\\x3b\\xa7\\x5f\\xdf\\xef\\x01\\xa1\\\n\\x4a\\x1b\\x41\\x81\\x15\\x3a\\xdd\\x01\\x6a\\x11\\x40\\x26\\xb3\\xa3\\x20\\xab\\\n\\x12\\x03\\x12\\x8a\\x3a\\xe1\\x7a\\x46\\x13\\x51\\xe9\\x54\\xa3\\x28\\x3b\\x8a\\\n\\xa0\\xe7\\xd2\\xed\\x1d\\x52\\x50\\xbd\\x90\\xd1\\xd9\\x4a\\x30\\x26\\xe9\\x54\\\n\\xd6\\xb9\\xbd\\x00\\xf2\\x78\\x81\\x6b\\x38\\xeb\\x28\\xb1\\xb5\\xd4\\xd5\\xca\\\n\\xaf\\x63\\x09\\xfd\\xe3\\xd5\\x99\\x3c\\xa0\\x50\\x10\\x1d\\x28\\x77\\xb4\\x12\\\n\\x9f\\x40\\xda\\x80\\x07\\x84\\xed\\x29\\xd1\\x0c\\x09\\x39\\x85\\x82\\x05\\x54\\\n\\x84\\x54\\x1a\\xab\\xa0\\xc0\\x14\\xd2\\x03\\x9a\\xc9\\x22\\x83\\x34\\x15\\x28\\\n\\x23\\x00\\x2b\\xd1\\x6e\\x2b\\x14\\x03\\x46\\xad\\x43\\x4c\\x7a\\x44\\x94\\x27\\\n\\x00\\xc0\\x07\\xc8\\x60\\x97\\xfa\\x27\\x92\\xd9\\x17\\x8b\\x4c\\x02\\x44\\xe8\\\n\\x44\\xd7\\xa9\\x2d\\x02\\x8c\\xa8\\xdb\\x22\\x94\\x65\\xb0\\x80\\xb0\\x02\\xa8\\\n\\xa5\\x62\\xf3\\x64\\xd9\\x43\\x54\\x50\\x56\\x2d\\x10\\xc6\\x14\\x13\\x95\\x88\\\n\\x92\\x2d\\x93\\x45\\xab\\x80\\x04\\xc2\\xe1\\x0e\\x03\\x62\\xd4\\x48\\x25\\x22\\\n\\x5a\\xed\\x29\\x75\\x11\\x69\\x5a\\x94\\xc7\\x43\\xba\\xb2\\x2d\\x55\\xfa\\xb7\\\n\\x84\\xbc\\xce\\xa2\\x07\\x5c\\x8a\\x87\\xaf\\xbe\\x4a\\x1c\\x84\\x00\\x59\\x5b\\\n\\x1b\\x99\\x7e\\x5d\\x5f\\x2b\\xd1\\xc6\\x61\\x91\\x9d\\x02\\x10\\x4a\\x8b\\xd2\\\n\\x50\\x27\\x80\\xde\\xcd\\x45\\x12\\xdd\\x8a\\xd4\\xd6\\x02\\x52\\x24\\x40\\x38\\\n\\x73\\x2b\\x42\\x00\\x08\\x84\\xcd\\xec\\x06\\xaa\\x8d\\xd2\\xea\\xf3\\x0b\\x67\\\n\\x77\\x3b\\xbe\\x45\\x91\\xb0\\x9c\\x39\\x22\\x00\\x97\\xc3\\xa2\\xe5\\xd1\\x04\\\n\\x48\\xb3\\xb0\\x82\\x42\\x83\\x1d\\x5c\\x33\\x5e\\xb1\\xda\\x58\\x52\\xf1\\x95\\\n\\x40\\xa1\\xe8\\x08\\xbb\\x0d\\xc3\\xb6\\xb1\\x79\\x55\\x54\\x1d\\xa3\\x05\\x41\\\n\\x4c\\xed\\x8b\\x21\\xc2\\x01\\x44\\x59\\x00\\x66\\x26\\x36\\x87\\x81\\x13\\xc6\\\n\\xd4\\xf3\\x36\\x17\\xd5\\xbf\\x26\\x7b\\xd7\\xc3\\xc3\\x9d\\xfc\\x2a\\x8a\\xa3\\\n\\x15\\x09\\x03\\xa0\\x88\\xae\\xa6\\xa7\\x30\\x46\\xa9\\x95\\x72\\x38\\x84\\x43\\\n\\xfd\\x02\\xd3\\x40\\x42\\xd4\\x7a\\x43\\x82\\xbe\\x28\\x0b\\x20\\x0e\\xb8\\xcf\\\n\\x01\\xc5\\x66\\x10\\x7a\\x1e\\xc2\\xca\\x01\\x21\\x70\\xe8\\x62\\xd6\\x74\\x67\\\n\\x45\\xfc\\xeb\\x28\\x32\\xc1\\x58\\x7a\\x07\\xa2\\xe0\\x26\\x00\\x54\\x6d\\x5e\\\n\\x26\\xa3\\x42\\x02\\xd0\\x15\\xcd\\xfb\\x77\\xf0\\xa4\\xe0\\x13\\x09\\x11\\x9a\\\n\\x41\\xd1\\x22\\xbf\\x15\\x9f\\xef\\x1a\\x42\\x24\\xa3\\x11\\x20\\xb8\\x8b\\x79\\\n\\x06\\xa9\\xc1\\x09\\x16\\x20\\x83\\xa0\\x2c\\x21\\xd0\\xef\\x7d\\x14\\x76\\xcc\\\n\\x76\\x8f\\x62\\x11\\xa1\\x44\\x10\\x6f\\x67\\x81\\x5b\\xa8\\xd9\\xb3\\xaa\\x86\\\n\\xab\\x04\\x65\\x42\\xd7\\x92\\x2f\\x99\\xb9\\xaf\\xa2\\x1d\\x00\\x63\\xb4\\x06\\\n\\x35\\x88\\x72\\x18\\x00\\x79\\x61\\xb0\\xad\\x41\\x1a\\x02\\x8d\\x54\\xc1\\x45\\\n\\x48\\x32\\x46\\xb3\\x2d\\x2b\\xbc\\x6b\\x9e\\xcc\\x91\\x39\\x9f\\x5a\\xab\\xb9\\\n\\x7f\\x78\\x6c\\x41\\x40\\x6e\\x6a\\x1d\\xec\\xd0\\xc8\\x02\\x6b\\xbc\\xa0\\x44\\\n\\xb6\\x57\\xd6\\xb3\\x5b\\xb4\\x7f\\xe3\\xce\\x5e\\x7a\\x59\\x63\\xfd\\xa2\\xe1\\\n\\x7a\\x29\\xdb\\x36\\xd5\\x9a\\x30\\xeb\\xba\\x01\\x88\\x64\\x25\\xd9\\xb2\\x18\\\n\\x28\\xba\\x21\\x9f\\x3a\\x1c\\xc2\\x99\\xd2\\x27\\x48\\x97\\x94\\x52\\x8e\\x95\\\n\\xd4\\xc8\\xc7\\x4c\\x0e\\xec\\xba\\xcb\\xc1\\xe9\\x4f\\x54\\x80\\x32\\x74\\x74\\\n\\x7f\\xe7\\x07\\x13\\x07\\xc4\\x88\\xc6\\x5d\\xe9\\x23\\x8e\\x8c\\xab\\xc3\\x09\\\n\\x04\\x46\\x45\\x82\\x85\\xc5\\xf6\\x65\\x7b\\xe3\\x66\\x18\\x4c\\x94\\x50\\xa9\\\n\\xa1\\x56\\xb1\\x7c\\x70\\x10\\x74\\xf4\\xd8\\x0d\\x88\\x83\\x68\\x68\\x1d\\xa2\\\n\\x12\\xf1\\x56\\xa2\\x40\\x05\\x0e\\xd1\\x54\\x1a\\x12\\x0e\\xef\\x19\\x00\\x10\\\n\\x57\\xc0\\xd2\\x0e\\xd2\\x40\\x96\\x4c\\x00\\x65\\x98\\x09\\x0d\\xd0\\xd0\\x3f\\\n\\x8c\\x31\\xc5\\x95\\x7f\\x08\\xc5\\x09\\xe8\\x82\\x22\\x0d\\x00\\x55\\x08\\xe1\\\n\\xc6\\x00\\xd3\\x58\\x79\\x2b\\x48\\x7a\\xf8\\x5e\\x1c\\x71\\x14\\x60\\x1e\\x84\\\n\\x76\\x91\\x21\\x6d\\x09\\xc4\\xd0\\x8c\\x42\\x52\\x14\\x00\\x1e\\x92\\xe9\\x4a\\\n\\xb5\\xc0\\x51\\x86\\x04\\xc8\\x85\\x21\\x65\\x2a\\x04\\xba\\xb3\\x9d\\x35\\x03\\\n\\x40\\x14\\xc2\\x0a\\x65\\x0a\\x2a\\x2e\\x97\\x39\\x6d\\xa2\\xea\\x14\\x82\\x14\\\n\\x9d\\x34\\x06\\xdd\\x3b\\x33\\x8e\\x50\\x97\\x1f\\x11\\x3d\\xa3\\x3f\\x4f\\x4b\\\n\\x2b\\x85\\x55\\xd2\\xa1\\x00\\x08\\x1a\\x06\\x98\\x0e\\xdb\\xbb\\xc5\\x40\\x94\\\n\\xd3\\xe4\\xb3\\x6f\\x7b\\xfe\\x9d\\xf5\\x90\\x5c\\x18\\x7a\\x3a\\x00\\x0a\\x7b\\\n\\x4b\\x96\\x28\\x7b\\xc1\\x52\\x08\\xc7\\xbf\\xb6\\x00\\x87\\x34\\x87\\x5a\\x71\\\n\\xb0\\xb0\\xee\\x10\\x03\\xd2\\x29\\x14\\xdd\\xeb\\x49\\xc2\\xd4\\x15\\x17\\x5e\\\n\\x06\\xcf\\xd8\\x67\\xfb\\x83\\x9c\\x10\\x15\\x82\\x51\\x82\\x31\\x88\\xb6\\x5c\\\n\\x77\\xe8\\x88\\xb4\\x84\\xd9\\x48\\x44\\xab\\x5b\\xa3\\xde\\x95\\x40\\x69\\x1a\\\n\\x12\\x0d\\x0c\\x83\\x58\\x60\\x9a\\x90\\x9c\\x6a\\x41\\x50\\xa4\\x17\\x19\\x8a\\\n\\x2d\\x36\\x9e\\x84\\x0b\\xb1\\x7e\\x49\\x30\\x91\\x0d\\x54\\x1f\\x14\\x2b\\x8c\\\n\\xcb\\x4b\\x14\\x4c\\x22\\x5b\\x71\\x57\\xd8\\x6a\\x95\\x5a\\x08\\x2d\\x50\\x3b\\\n\\x0f\\x73\\xcc\\x3a\\xe1\\x73\\x8c\\x72\\x2d\\x2c\\x5a\\x9e\\xa3\\x5f\\xa6\\x6f\\\n\\x20\\x51\\xa5\\x20\\x92\\x13\\xf4\\x78\\x05\\x8a\\x0f\\x36\\x08\\x85\\x53\\xa0\\\n\\x07\\x6b\\x60\\xa2\\x74\\x84\\xc8\\xb7\\x0a\\x1d\\xa2\\x74\\x05\\x33\\x1e\\xe1\\\n\\xba\\x0a\\x40\\x50\\x89\\xa8\\x74\\x00\\x51\\xef\\x5b\\x6b\\xa3\\xc1\\xce\\x5f\\\n\\x89\\x30\\x20\\x8c\\xda\\x55\\xea\\x90\\xa8\\xee\\x4a\\x49\\x58\\xb8\\x24\\xa8\\\n\\xa0\\xa2\\xce\\x58\\x6f\\x50\\x8a\\x14\\xad\\x08\\x28\\x22\\x85\\x88\\x09\\x26\\\n\\x02\\x02\\x08\\x1c\\x88\\x44\\xa2\\x00\\x17\\x38\\x99\\x6e\\xae\\x88\\xd0\\x9a\\\n\\xa3\\xaf\\x12\\xd3\\x10\\x1e\\x0c\\x8d\\x64\\x40\\x54\\x0f\\xd0\\x2d\\x51\\xb6\\\n\\x3b\\x22\\x40\\x40\\x97\\xd2\\x71\\x8a\\xa9\\x8a\\x98\\x7d\\x4b\\x47\\x14\\x91\\\n\\x54\\x52\\x94\\x64\\x2f\\x42\\xc9\\x1d\\x0d\\xd7\\xb1\\x46\\x31\\x45\\x8b\\xe8\\\n\\x31\\xf2\\x2c\\x8a\\x08\\x2b\\xcc\\x14\\x93\\x81\\x10\\x09\\x42\\x00\\x4a\\xc3\\\n\\x69\\x04\\xea\\x0c\\x02\\xca\\x12\\x39\\x68\\x38\\x59\\xf1\\xd1\\x48\\x69\\x45\\\n\\x20\\x0e\\x0c\\x5d\\xe4\\x52\\xa0\\x50\\x66\\xb2\\x42\\xfa\\x18\\x1e\\x18\\x18\\\n\\x19\\x55\\xb5\\x3e\\x8a\\xdc\\x8c\\xfc\\xa2\\x53\\x61\\x26\\xeb\\xc0\\x9d\\xa1\\\n\\x0c\\x12\\x2b\\x80\\x80\\x78\\x56\\x54\\x22\\x01\\xab\\x09\\x08\\x1e\\x0b\\x2f\\\n\\x04\\x1f\\x42\\xb1\\x45\\x8a\\x80\\x1d\\xb8\\x77\\x8d\\x04\\x0b\\x00\\xa3\\xb0\\\n\\x16\\x9d\\xb2\\x58\\x5b\\x4b\\x56\\x41\\x48\\xc3\\x28\\x08\\x6e\\xfd\\x93\\xa0\\\n\\x68\\x81\\x8a\\x60\\x01\\x62\\x1c\\x30\\x05\\x61\\x0c\\x6f\\x2b\\x04\\xa1\\x4e\\\n\\x85\\x60\\xeb\\x08\\x42\\x67\\x5d\\x69\\xa8\\xa0\\x2b\\x28\\x21\\xe6\\x2f\\xc6\\\n\\x6a\\x1e\\xef\\x22\\x08\\x6a\\xa2\\x9f\\xe9\\xa9\\x9f\\xb7\\xf4\\xa5\\x05\\x93\\\n\\xf2\\x9f\\xea\\xf5\\xf3\\xbf\\xf1\\xe2\\x00\\x11\\x1c\\x43\\x82\\x4c\\x5f\\xdb\\\n\\x46\\x7c\\x5b\\x34\\x0a\\x36\\x00\\x57\\x30\\xcc\\xc9\\xbb\\x71\\x85\\xc7\\x95\\\n\\x95\\x60\\xb0\\xac\\xb3\\x44\\x25\\x56\\xed\\xe9\\x18\\x63\\xa8\\x81\\x20\\xab\\\n\\xd3\\x9d\\x31\\x9f\\xe7\\xaf\\x16\\x10\\x74\\x20\\x60\\xbd\\x90\\x92\\x78\\x92\\\n\\x3d\\x7a\\x4a\\x86\\xa1\\x26\\x7a\\x7a\\x4d\\x77\\xbd\\x42\\xf7\\x38\\xf2\\x98\\\n\\xb0\\x2c\\x34\\xc4\\x17\\xfc\\xec\\x7d\\x4e\\x51\\x1a\\x54\\x02\\xa6\\x14\\xab\\\n\\x3f\\xe8\\xa5\\xb5\\xb6\\xc6\\x14\\xc3\\x55\\x11\\x03\\x68\\xea\\x81\\xc9\\xde\\\n\\x41\\x4b\\x1c\\xa0\\x20\\x60\\x80\\x54\\x21\\x34\\x56\\x8e\\x89\\x10\\xcb\\xc1\\\n\\x76\\x2d\\xe9\\x2d\\x9c\\x95\\x0c\\xd6\\x50\\x0d\\x2c\\x0a\\xa8\\xb1\\xa1\\xd5\\\n\\x96\\x43\\xe9\\x1c\\x05\\x2b\\x05\\x6c\\x69\\x4d\\x47\\x99\\x10\\x6c\\x09\\xa5\\\n\\x77\\x5c\\x8c\\x5b\\x53\\xa6\\x2a\\x23\\x32\\x00\\xd2\\x0c\\x45\\x87\\x99\\x55\\\n\\x8b\\xde\\x72\\x90\\x14\\x5a\\x06\\xa9\\x20\\x4b\\xd6\\xd7\\x3a\\x89\\x8d\\xcb\\\n\\x1b\\x40\\x34\\x69\\xfe\\x29\\x5e\\xfa\\x10\\xe4\\xa3\\x61\\xd2\\xd2\\x24\\x8d\\\n\\x05\\x63\\x83\\x7f\\x57\\x84\\xed\\x4c\\x94\\xe9\\x28\\x5e\\x8e\\xd9\\x80\\x2f\\\n\\x67\\x07\\x60\\x0f\\x41\\xa2\\xe0\\xc1\\x04\\x68\\xdd\\x03\\xa5\\x4a\\x18\\xad\\\n\\xd5\\x63\\x00\\x18\\x2a\\xa8\\x20\\xe1\\x75\\x60\\x43\\xa7\\x31\\xa9\\x7f\\x15\\\n\\x83\\x29\\xc7\\x5a\\xd0\\x94\\x95\\x60\\x65\\xec\\x05\\x1e\\xc4\\xe1\\x90\\x00\\\n\\xd4\\x28\\x92\\xfe\\x90\\x40\\x82\\x1d\\x9b\\x1c\\x8b\\xc2\\x0b\\x2d\\x4d\\xa1\\\n\\x08\\x66\\x3a\\xc9\\x91\\xe8\\x1e\\xfe\\x2a\\x1d\\x14\\x74\\xff\\x00\\xc6\\xad\\\n\\xde\\x39\\x01\\x0f\\xaa\\xc0\\x3a\\xd3\\x4e\\xea\\x49\\x3a\\x8f\\x20\\xd1\\x56\\\n\\xc2\\x11\\x7d\\xbf\\x59\\xd9\\xaf\\xf2\\xf2\\xa6\\xb1\\x0c\\xeb\\xb0\\xc3\\xaa\\\n\\x2c\\xa4\\x00\\x17\\x42\\x6a\\x84\\x2c\\x2a\\x4a\\x13\\x10\\x56\\xa0\\x60\\x03\\\n\\x81\\xa9\\x26\\xa8\\x2b\\x40\\x86\\x22\\x39\\x41\\xf8\\xef\\x80\\x3b\\x6a\\x91\\\n\\x0e\\xc9\\x12\\xc8\\xad\\x0e\\xb7\\x85\\x38\\x15\\x43\\x46\\x94\\x2d\\x35\\xb2\\\n\\xb1\\xfa\\xe1\\x6d\\x00\\x18\\x31\\xf9\\x13\\x10\\x4a\\x79\\xca\\xaf\\x81\\x16\\\n\\x63\\xfd\\x07\\xac\\xff\\x00\\xc3\\xbe\\x2d\\xc4\\x0a\\x00\\x36\\x1d\\x11\\x7d\\\n\\x3b\\x17\\x04\\xac\\x74\\x9b\\xb2\\x28\\x1d\\xa5\\x3b\\x21\\x90\\x07\\x94\\xfb\\\n\\x12\\x18\\xc2\\xb7\\xdb\\xaf\\xd5\\x07\\x9d\\x40\\x7d\\x12\\x82\\xf8\\x63\\x3c\\\n\\xf9\\x61\\xa7\\x13\\x20\\x4e\\x00\\x7a\\x80\\x92\\xbf\\xa8\\xbd\\x28\\x70\\xf1\\\n\\x72\\xcf\\x19\\x52\\x8d\\xb4\\x2e\\x74\\x34\\x4e\\x50\\x6d\\x84\\x12\\x12\\x81\\\n\\x56\\xdf\\xbd\\xa9\\x46\\x10\\xdd\\xd3\\x75\\xa2\\xdb\\xb8\\xad\\x87\\xda\\x02\\\n\\x87\\xd4\\xb4\\xcc\\x80\\x45\\xa9\\x8d\\x88\\x0f\\x8e\\xa2\\xa3\\x6b\\xea\\x0b\\\n\\x92\\x05\\x1a\\x5b\\x50\\x09\\x78\\x05\\x1c\\x58\\xdc\\x97\\xe8\\x74\\xdf\\xab\\\n\\x14\\x02\\x50\\x80\\x0a\\xb0\\x24\\x2f\\x49\\x72\\xf4\\xf2\\x38\\x08\\x9b\\x00\\\n\\x76\\x00\\x3b\\x8a\\x81\\xa2\\xf1\\x18\\xb0\\x05\\x3b\\x18\\x14\\x0b\\x6a\\x84\\\n\\x0c\\xe1\\x76\\x05\\x34\\x70\\x6b\\x53\\x42\\x28\\x00\\x63\\x22\\xa8\\x25\\x20\\\n\\xea\\xb2\\x74\\x15\\xa8\\xd8\\x85\\x26\\x51\\xa4\\x30\\x00\\x5d\\x14\\x8a\\xa9\\\n\\x49\\x48\\x2c\\x28\\x24\\x21\\x28\\xb5\\x8a\\xb4\\x30\\x46\\x06\\xbc\\x02\\xeb\\\n\\x14\\xb6\\x24\\x87\\x42\\xa2\\x74\\x4e\\xd0\\xe2\\x5e\\x71\\x0e\\x16\\x00\\x4f\\\n\\x52\\x99\\x40\\x0a\\x2b\\x9d\\x29\\xac\\x51\\xc5\\xc7\\x10\\x0e\\xbc\\x1f\\x78\\\n\\x1c\\xbe\\x1f\\x0a\\x01\\x82\\x38\\x81\\x7f\\xa1\\x88\\x41\\x4e\\x80\\xd8\\x41\\\n\\x8f\\x6f\\xa6\\x66\\x25\\xce\\x09\\x7e\\xda\\x05\\xb0\\x43\\x43\\xa6\\x13\\xe7\\\n\\xd2\\xd5\\x20\\x11\\x77\\xfd\\xf7\\xff\\x00\\xd1\\xf2\\x76\\x84\\xd5\\x95\\x8f\\\n\\xcb\\xfc\\x99\\xfd\\xe4\\x44\\x18\\x81\\xfa\\x7b\\x48\\xda\\x2c\\xf7\\xfb\\xce\\\n\\xd5\\x13\\x57\\x5d\\x47\\x41\\x24\\x51\\xcf\\x90\\xc5\\x46\\x82\\x08\\x34\\x50\\\n\\x78\\xcf\\xde\\xc6\\xbe\\x4e\\xf8\\x69\\x58\\x6b\\x6b\\xff\\x00\\x77\\xbe\\xda\\\n\\x2b\\xf9\\x9c\\x51\\x83\\x4c\\xb5\\x86\\x65\\xe8\\x33\\xdb\\x94\\x18\\x52\\x34\\\n\\x48\\xe9\\xf3\\x51\\xeb\\x2f\\xd7\\x2a\\x29\\x99\\x11\\x38\\x0c\\x21\\xa2\\x5d\\\n\\x7b\\xcf\\xff\\x00\\x9c\\xf8\\xaa\\x56\\x07\\xf8\\x5a\\x3e\\xf7\\x19\\x2f\\x4f\\\n\\x20\\xea\\xe2\\x0f\\xdd\\x51\\x6a\\xb7\\x3e\\x3b\\xfa\\xd0\\x24\\x24\\x58\\xda\\\n\\xdd\\x62\\x6b\\x0e\\x35\\xd1\\xc2\\x01\\xd4\\x10\\x10\\x0a\\xa2\\xb8\\xd3\\x14\\\n\\x44\\x40\\x26\\xb4\\x99\\x11\\xd8\\x80\\x55\\x91\\x19\\xd7\\xc1\\xe3\\xb1\\x52\\\n\\x42\\x20\\x65\\x58\\x99\\x19\\xe2\\x6e\\xa7\\x04\\x70\\x14\\xd8\\x80\\x44\\x6a\\\n\\x2b\\x62\\xd5\\x08\\x42\\x2b\\xe2\\x30\\x43\\x4e\\x9c\\x0b\\xd4\\x97\\xb2\\x61\\\n\\xc3\\x5d\\xcd\\x81\\x64\\x0c\\xdc\\x18\\x08\\x04\\x62\\xb7\\x4f\\xd2\\x70\\x00\\\n\\x54\\x36\\x8c\\x04\\x10\\xaa\\xce\\x10\\xd9\\x30\\x00\\x11\\xaa\\x40\\x90\\x0f\\\n\\x85\\x6d\\x4e\\xe7\\x30\\x22\\x91\\x00\\x06\\xac\\x2a\\x3f\\x68\\x84\\x8a\\xb9\\\n\\x11\\xa1\\xd5\\xdb\\x46\\x1d\\x56\\x26\\xef\\x3a\\x6d\\x4a\\x3d\\xa7\\xc9\\xdc\\\n\\x10\\xe0\\x8b\\xbd\\xfa\\x5a\\xa5\\x60\\x88\\x5a\\x01\\x52\\x85\\x2a\\x63\\x09\\\n\\x1c\\x21\\x70\\x84\\x18\\x19\\x2e\\x04\\x2c\\x4b\\x7a\\x4a\\x83\\xa8\\x97\\x11\\\n\\xa2\\xa8\\x20\\x55\\x0a\\x3b\\x71\\x78\\xde\\xde\\xc0\\x22\\x93\\x95\\xcd\\x4f\\\n\\xdf\\x3c\\x08\\x60\\x41\\x3f\\xd8\\xa8\\xd0\\x31\\x81\\x3b\\x9c\\x4c\\x8c\\x08\\\n\\x1d\\x24\\x43\\x2b\\x42\\x86\\x87\\xe7\\x1c\\x38\\xdd\\x4a\\xbf\\x13\\x70\\x7a\\\n\\x2d\\x9b\\x53\\x9d\\x4b\\x00\\x15\\x81\\x62\\x56\\x89\\x1a\\x8b\\x57\\x41\\xb5\\\n\\xfb\\x6b\\x2f\\xaf\\x3c\\x5c\\x7d\\xf7\\x33\\x9b\\x91\\x63\\x23\\x49\\x1f\\x08\\\n\\x61\\x7a\\x5a\\x95\\xc5\\xac\\x0a\\xb0\\x2c\\x60\\xf2\\x85\\x7a\\x08\\xd0\\x17\\\n\\x88\\x57\\x9a\\xec\\x0f\\x60\\x70\\x7b\\x57\\x48\\x48\\xce\\x06\\xc2\\x6b\\x01\\\n\\xed\\xd5\\x85\\x57\\xaf\\xf2\\x72\\x82\\xf6\\xc3\\xf4\\x08\\x99\\xd0\\x31\\x30\\\n\\xeb\\xce\\x01\\x88\\x05\\x34\\x82\\xd7\\x53\\x37\\xcb\\xf0\\x2b\\xc6\\x04\\x91\\\n\\xb1\\x39\\xd8\\x62\\x3e\\x53\\x71\\xbe\\x94\\xe3\\x32\\x63\\x40\\x10\\x36\\x29\\\n\\x84\\x72\\x89\\xca\\x02\\x0e\\x66\\x0a\\x35\\xef\\x48\\x5a\\xa2\\xa9\\xc1\\x11\\\n\\x61\\x06\\x07\\x49\\x36\\xf7\\xaf\\xab\\xa0\\x7f\\x6f\\xbc\\xc5\\x49\\x02\\xf5\\\n\\xda\\x64\\x13\\x97\\xc4\\x49\\x4e\\x15\\xb2\\x90\\x12\\x21\\xde\\xbe\\xf5\\xc0\\\n\\x54\\x43\\xd2\\x47\\x75\\x6e\\xa8\\x09\\xef\\xfd\\xb5\\x2c\\x27\\xfc\\x90\\x8b\\\n\\x09\\xa8\\xd4\\x07\\xbe\\x53\\xe2\\x55\\x80\\x9b\\x53\\xc0\\x37\\xa1\\x7b\\x20\\\n\\x3c\\x6f\\x2f\\xd8\\xfb\\x35\\xa8\\xa3\\xf6\\x88\\x2b\\xd5\\xf8\\x12\\x81\\x34\\\n\\x0e\\xd2\\x88\\x9d\\x80\\x05\\xb5\\xe4\\xe1\\xc0\\x0a\\x5a\\xda\\x53\\xc2\\xfc\\\n\\xc1\\x4a\\xbf\\x61\\xef\\x15\\x4a\\x86\\x14\\xeb\\xad\\xaa\\xa7\\x1f\\x4f\\xd9\\\n\\x05\\x09\\x05\\xfb\\x52\\xde\\x88\\xbc\\x02\\x6d\\xd2\\xc2\\x44\\x5e\\x80\\xc5\\\n\\x0c\\x62\\x00\\x9d\\x3c\\x30\\x41\\xa8\\x76\\x2e\\x41\\xf0\\x8c\\x5e\\x2b\\x11\\\n\\xa7\\xa2\\x90\\x38\\xa5\\x16\\xb4\\xef\\x4e\\x70\\x05\\xaa\\xdb\\x08\\x14\\xf7\\\n\\x20\\x9a\\x84\\x69\\x12\\xd2\\x62\\x40\\x2b\\xb2\\xc0\\x58\\x80\\x16\\x14\\x47\\\n\\x8e\\xad\\x1c\\x56\\x2f\\x81\\x4a\\xa4\\xee\\x37\\x59\\xe7\\x66\\x08\\x52\\x61\\\n\\x0c\\x8e\\x23\\x44\\xce\\xfa\\x0f\\x20\\x86\\x0b\\x61\\x46\\x03\\x61\\x58\\x04\\\n\\x54\\x87\\x17\\xf6\\x09\\x21\\x55\\x00\\x8a\\x2e\\xbb\\x36\\x0e\\xc8\\x6c\\x22\\\n\\xa1\\x51\\xf4\\x94\\xc6\\x3d\\x82\\xb1\\x26\\x71\\xaa\\xa4\\xc1\\x7b\\x04\\x52\\\n\\xa6\\x6d\\x3d\\xf6\\x6a\\x1a\\x10\\xa5\\x2b\\xfe\\x94\\xfb\\x9f\\xc3\\x2c\\x33\\\n\\x87\\xb0\\xbf\\x0f\\xbf\\xd7\\x03\\xfe\\x6b\\xe1\\xdc\\xbb\\x53\\x13\\x6e\\x2c\\\n\\xf8\\x61\\xfe\\x7f\\xca\\x72\\x6a\\x14\\x44\\x32\\x4d\\xf4\\x7e\\xf7\\xd7\\xfd\\\n\\x72\\xa0\\xf4\\x70\\xd8\\x27\\x46\\x79\\xee\\x60\\x67\\xde\\x21\\xa8\\x2c\\xb9\\\n\\xef\\xe2\\x99\\x8c\\x61\\x9c\\x29\\x15\\x8a\\x12\\x83\\xbf\\x1e\\x87\\xf3\\x4c\\\n\\x4d\\xe3\\xca\\x45\\x85\\x21\\x80\\x3c\\xd1\\x9e\\x2f\\x53\\x78\\xc4\\x27\\x5f\\\n\\x18\\x1c\\xeb\\x5d\\x3c\\xcf\\xdd\\xee\\x8b\\x0b\\xf9\\x85\\xef\\x0d\\x2f\\xf7\\\n\\x91\\x13\\x1a\\x3a\\x1f\\xc1\\x33\\x07\\xfd\\xb8\\xf2\\x09\\x16\\x24\\x2b\\x22\\\n\\x6d\\xf2\\xc3\\xb3\\x63\\x87\\x61\\x65\\xb4\\xe2\\x80\\xd2\\x10\\x55\\x81\\x1a\\\n\\x10\\x9c\\x00\\x65\\x9b\\x03\\x5e\\xc2\\x40\\x04\\xc0\\x88\\x8f\\x12\\xd1\\x41\\\n\\x60\\x7c\\x95\\xc1\\x2e\\x07\\x63\\x7a\\xe3\\x4c\\x42\\x44\\x4f\\x16\\x83\\x06\\\n\\xca\\x2c\\x8e\\xe2\\x12\\x01\\x63\\x8c\\x46\\x92\\x49\\xa1\\x43\\xb0\\x5c\\x18\\\n\\x84\\xf1\\x09\\x4b\\xca\\xa2\\x90\\xa5\\x52\\x53\\x80\\x72\\x84\\x08\\x89\\x69\\\n\\xb5\\x47\\x49\\x03\\x14\\x72\\x2a\\x8c\\x51\\x6e\\x08\\x32\\x64\\x44\\x53\\x40\\\n\\x8e\\x08\\xa2\\x58\\x42\\xa2\\x0a\\x09\\x04\\x02\\x2d\\x2e\\x4b\\xc1\\xf2\\x94\\\n\\xe0\\xd8\\xa8\\xd4\\x43\\x6a\\x21\\x55\\x0e\\xda\\x41\\x08\\x41\\xb2\\x93\\x2a\\\n\\x81\\x0c\\x75\\x86\\x95\\xf3\\x1a\\xb1\\x10\\x8f\\xad\\x57\\x0f\\xc9\\x40\\x81\\\n\\x02\\xc4\\x84\\x2a\\x8a\\x0e\\xa0\\x08\\x0c\\x93\\xa6\\x71\\xa4\\x42\\xa4\\x51\\\n\\x71\\x17\\xc9\\xd2\\xa9\\x0f\\x51\\xe2\\xc9\\xe9\\x07\\x4e\\x9f\\x74\\x09\\x0b\\\n\\x56\\x41\\x0e\\x31\\x5b\\x04\\x62\\x07\\x53\\xd1\\x95\\xed\\x70\\x97\\x17\\xbd\\\n\\x6c\\x06\\x9a\\x22\\xc4\\xae\\xd2\\xa4\\x87\\x2e\\xf5\\x25\\x89\\x05\\x4e\\xcb\\\n\\x16\\x6a\\xdb\\x33\\x98\\x39\\xf4\\x5f\\x44\\x01\\x47\\x44\\x55\\x16\\x3d\\x21\\\n\\x8a\\x22\\x58\\x3b\\x15\\xd0\\x1d\\x36\\x5b\\x67\\x59\\xfe\\xa8\\xb4\\xc0\\xac\\\n\\x82\\x43\\xea\\x1a\\xb0\\x45\\x21\\x8e\\x4b\\x52\\x02\\x7b\\x52\\x81\\xac\\x35\\\n\\x41\\xfe\\xdb\\xc5\\x0c\\x61\\xa1\\x44\\xb8\\x9d\\x04\\x06\\x8d\\x5c\\x46\\x67\\\n\\x15\\x8e\\xc4\\xa7\\x95\\xeb\\xa0\\x37\\x02\\x96\\x26\\x61\\xc3\\xf9\\x7c\\x25\\\n\\x0e\\xab\\x09\\x9d\\xaa\\x57\\xae\\x90\\x33\\xe8\\x05\\x52\\x87\\xa0\\xd6\\x2d\\\n\\x75\\xed\\x7c\\x9c\\x34\\x40\\x19\\xa0\\x47\\x19\\xdb\\x14\\x1e\\xed\\x36\\xe5\\\n\\x0c\\x14\\xba\\x22\\x23\\x7a\\xc4\\x7d\\xfd\\xde\\x05\\x28\\x99\\xf4\\xc9\\x13\\\n\\xfe\\x67\\xe7\\xf4\\xe2\\x43\\xd3\\xda\\xb0\\x22\\x79\\x35\\x6a\\x4d\\xc2\\x93\\\n\\x9e\\x30\\xf1\\x99\\x4e\\xb2\\x16\\x41\\xa3\\xbf\\x51\\xa2\\x2d\\xa2\\x98\\x82\\\n\\x8e\\x4b\\xf2\\x06\\x88\\x5a\\x2f\\xf2\\xa1\\x12\\x41\\xfa\\x60\\x6d\\x16\\x98\\\n\\xb8\\xd1\\xaa\\x2d\\xa6\\x75\\xf0\\x6b\\xd0\\xa9\\xd0\\x67\\x69\\xd2\\xed\\xf3\\\n\\x22\\xc5\\x69\\x4b\\x14\\xc7\\xc0\\xba\\xaa\\x53\\xd2\\x22\\x43\\xb3\\x7a\\x36\\\n\\x07\\x35\\xe1\\x29\\xae\\x88\\xbb\\xa4\\x7b\\xf0\\x82\\x5a\\x87\\x62\\x72\\x10\\\n\\x61\\x8c\\xd5\\x7c\\xec\\x9f\\x14\\xde\\xf9\\x6e\\x17\\x40\\x43\\x23\\xd0\\x80\\\n\\xb0\\xae\\x84\\x10\\xe0\\x00\\x2d\\xe0\\x40\\x88\\x8a\\x41\\xaf\\x6e\\xb4\\x43\\\n\\xc6\\x8b\\x41\\xea\\x58\\xc8\\x29\\x18\\xec\\x90\\x6d\\x02\\x8c\\xa4\\xaf\\x91\\\n\\x32\\x40\\x4c\\xd8\\x3a\\xa6\\x57\\x18\\x52\\xd9\\x4c\\x2b\\xab\\x8e\\x08\\x5d\\\n\\xe8\\x8d\\x2a\\x81\\x2e\\xc1\\x16\\xb3\\x76\\xb2\\x32\\x8b\\x69\\xa1\\x31\\xa0\\\n\\xb6\\x51\\x30\\x94\\x3d\\x36\\x10\\x79\\x36\\xa3\\x68\\x2b\\x54\\xe2\\x81\\x7a\\\n\\x60\\x03\\x85\\x52\\x74\\x48\\xa8\\x04\\x42\\xce\\x3d\\x3a\\x28\\xf0\\x71\\x36\\\n\\x27\\x7a\\x81\\x0a\\xa9\\x29\\xb8\\x4d\\x29\\x29\\x7c\\x1e\\xc6\\x10\\x27\\x4a\\\n\\x33\\x03\\x90\\x7b\\x29\\x83\\x69\\x0e\\x2e\\x43\\x7a\\xb0\\xfe\\xe7\\x51\\x06\\\n\\x11\\x0a\\x55\\x60\\x38\\x09\\xbf\\x35\\x2a\\x5e\\x32\\xa7\\x12\\x4c\\x6d\\xd0\\\n\\xec\\xf8\\x67\\x74\\xd2\\x54\\x4c\\x31\\x11\\xdc\\xa5\\xf9\\x15\\x43\\xfb\\xff\\\n\\x00\\xfb\\xa3\\x0e\\x96\\xe0\\x9f\\xaf\\x7d\\xe3\\x83\\xf7\\x79\\x00\\x61\\x5d\\\n\\xac\\xef\\xe4\\xef\\xae\\xac\\x7f\\xce\\x00\\x86\\xa5\\x05\\x7b\\xd9\\xd9\\xf6\\\n\\x67\\x9c\\x06\\xee\\x96\\x9f\\x7e\\xee\\x0f\\x73\\x0d\\xfd\\xce\\x2b\\xaa\\x0b\\\n\\xd0\\x08\\x2c\\x24\\xdc\\x91\\xcd\\xf7\\xb6\\xe0\\x9f\\xb9\\x4e\\xb4\\xd9\\xba\\\n\\x48\\x7e\\xc1\\x69\\xc0\\xfc\\x27\\x60\\x76\\xec\\x8b\\x74\\xaa\\x87\\x50\\xb4\\\n\\x55\\x5c\\x58\\x9b\\x90\\xfe\\x98\\xff\\x00\\xe5\\x04\\xda\\x92\\x57\\x4f\\x6e\\\n\\xbf\\xcf\\x24\\xff\\x00\\x6f\\x7c\\xd8\\x5a\\x87\\xa2\\xb2\\x42\\x5e\\xcc\\xe2\\\n\\xaa\\x26\\x2e\\x90\\xb8\\x18\\x48\\xa9\\x93\\xa8\\xa2\\x2c\\xd0\\x48\\xa3\\xa3\\\n\\x63\\x5d\\x55\\x1f\\x0c\\x58\\x90\\xaa\\x46\\x90\\xb0\\x93\\x04\\x42\\x34\\x84\\\n\\x2b\\xd0\\xe2\\xfd\\x9a\\x6d\\x7b\\x8e\\x1b\\x20\\xeb\\xac\\x82\\xe3\\xaa\\xdd\\\n\\xc8\\x54\\x43\\x40\\x93\\x20\\x8e\\x21\\x30\\xe0\\xce\\x04\\x09\\x80\\x27\\x40\\\n\\x51\\x24\\x00\\xe8\\xa3\\x01\\xba\\x40\\x44\\x6d\\x0c\\x4b\\x83\\x6d\\x86\\x27\\\n\\x68\\x1a\\xeb\\x24\\x09\\x15\\x7d\\x62\\xa2\\x02\\xf0\\x36\\xa3\\x45\\x5b\\x0d\\\n\\x48\\x20\\xfe\\xaf\\xdd\\x9c\\x11\\x48\\x0d\\x50\\x00\\x91\\x01\\xa0\\x1d\\xe9\\\n\\xd8\\xd7\\x91\\x82\\xef\\xa9\\x25\\x6a\\x2c\\xfa\\xd7\\xa5\\x04\\x30\\xec\\x20\\\n\\x5c\\x9b\\x15\\x90\\x00\\xa9\\x22\\x8a\\x16\\xb6\\xe2\\x51\\x90\\xce\\xbc\\x11\\\n\\xbf\\xff\\x00\\x04\\xde\\x7c\\x9d\\x47\\xcf\\x4e\\x6f\\x75\\xd3\\xf3\\xde\\x22\\\n\\xc2\\x46\\x23\\x1a\\x2b\\xac\\x2e\\x19\\x9e\\xef\\x05\\x88\\x62\\xe2\\x5d\\x82\\\n\\x11\\x7b\\xd3\\x76\\xc3\\x8a\\x4a\\xa5\\x4a\\xb2\\x60\\xa6\\x3e\\xb9\\xdc\\xca\\\n\\x1d\\xf3\\x18\\x03\\x29\\x2a\\xf6\\xd9\\x8a\\x4c\\x18\\x52\\x2b\\x40\\x1a\\x00\\\n\\x2d\\x02\\xfd\\x0b\\x23\\x30\\x6e\\x14\\x2d\\xe8\\x4a\\xf5\\x87\\x45\\x0c\\x93\\\n\\xb3\\xef\\xcf\\xfa\\xb8\\x3d\\x8e\\xf1\\x09\\x02\\xe8\\x04\\x8d\\x43\\x19\\x5c\\\n\\x43\\x3b\\x06\\x0e\\x00\\x15\\x25\\x5f\\x0e\\x86\\xb4\\x78\\x40\\x63\\xf8\\xb4\\\n\\xba\\x23\\x44\\x68\\xf6\\x66\\x7a\\x27\\x7c\\x80\\xe4\\x7a\\x30\\x98\\xd4\\xc7\\\n\\x46\\xa3\\x86\\x0b\\x20\\xc8\\x36\\x44\\x3d\\x88\\xd1\\xff\\x00\\x0b\\xd4\\x2a\\\n\\x71\\x18\\x8e\\x56\\xc0\\xd6\\x43\\x71\\x23\\xfe\\xff\\x00\\xa8\\x4f\\x9e\\x92\\\n\\xfe\\x1b\\x6f\\xef\\xe4\\xff\\x00\\x5e\\x14\\x85\\x10\\xcc\\xd6\\x15\\x64\\x26\\\n\\xdb\\x9e\\x9b\\xed\\xf3\\x0c\\x16\\x96\\x3d\\xdf\\xba\\x30\\x87\\x7d\\xf2\\x92\\\n\\x30\\x2e\\x35\\x65\\x94\\x23\\xd9\\xe0\\x20\\xf7\\xaf\\xe6\\x97\\x55\\x5a\\x17\\\n\\x5e\\xd1\\x1f\\x27\\xc3\\xa0\\x71\\x04\\x8a\\x02\\x88\\xbd\\x18\\x67\\x55\\xc1\\\n\\x39\\xdd\\x0c\\x51\\xc0\\xa2\\xc0\\x45\\xd3\\x22\\xea\\xf6\\x38\\x9d\\x8e\\xa1\\\n\\x4e\\x81\\x51\\x11\\xf1\\x63\\x14\\x44\\xe2\\x51\\x11\\x2f\\xf8\\x88\\xb1\\xed\\\n\\x83\\xd7\\xa2\\x97\\xb7\\xe5\\x16\\xea\\x9a\\xa9\\x04\\x2e\\x02\\xce\\x60\\xae\\\n\\x52\\xa2\\x7a\\x68\\xd9\\x84\\x6b\\x43\\x1a\\xec\\x27\\x0d\\x2b\\x0a\\x91\\x2f\\\n\\x4b\\x68\\x75\\x33\\x82\\x9a\\x25\\x0c\\x51\\x76\\x84\\x3d\\x54\\x92\\x6d\\x25\\\n\\xae\\x22\\xc8\\x23\\xa3\\x9b\\x11\\x41\\x24\\x41\\x87\\x1d\\x34\\xac\\x12\\x8a\\\n\\x40\\xa5\\xec\\x12\\x5d\\xad\\x6f\\x03\\xa9\\xc2\\xab\\x4b\\x82\\x37\\xb1\\x5a\\\n\\xf0\\xbd\\x51\\xc9\\xc2\\x34\\x10\\x4a\\x82\\xa0\\x28\\xd1\\x26\\x40\\x11\\x8c\\\n\\xe2\\x12\\xe8\\x3a\\x0a\\x34\\x48\\x34\\x83\\xcf\\xdd\\x54\\x05\\x5d\\xfb\\x0b\\\n\\x51\\x6d\\xeb\\xdb\\x67\\x90\\x65\\xbb\\x03\\x1f\\x1a\\xa6\\x0b\\xdd\\xe3\\xa1\\\n\\x39\\xa6\\xa0\\x8a\\x0b\\xdd\\x14\\xec\\x27\\x0e\\xaa\\x06\\x17\\x7e\\x89\\x87\\\n\\x11\\x14\\x22\\x0e\\x70\\x26\\xb0\\x69\\x15\\x0a\\x55\\x66\\x3f\\x9f\\xca\\xf1\\\n\\xc4\\x46\\x00\\xd5\\x18\\x02\\x99\\x90\\x7a\\xd7\\xea\\x30\\x89\\x02\\x48\\x11\\\n\\x74\\xba\\x7d\\x4d\\xeb\\xf3\\xd4\\x52\\x65\\x31\\x48\\xe0\\x8b\\x46\\xe7\\xe3\\\n\\xdb\\xe1\\x95\\x7a\\x9f\\x46\\xa7\\xb6\\xdd\\xff\\x00\\x32\\x42\\x75\\x9c\\x00\\\n\\x4a\\x80\\x10\\x7c\\xaf\\x52\\xf9\\xb0\\x2d\\x39\\x02\\x05\\x61\\xa0\\x7f\\x81\\\n\\x65\\x7a\\x9b\\x14\\x27\\x9c\\x4d\\x13\\xb9\\x1b\\xe8\\xfc\\xce\\xef\\x45\\x7f\\\n\\x2f\\x0a\\x33\\xd3\\xea\\x43\\x7f\\xee\\xf7\\x9d\\x13\\x38\\x94\\x54\\xae\\x6a\\\n\\x54\\x05\\xfd\\x60\\x27\\x72\\x1f\\x0e\\x17\\x04\\x51\\x12\\xbe\\xc5\\xed\\xcd\\\n\\x36\\x7b\\xb9\\xc1\\x91\\x14\\x54\\x67\\x40\\xdf\\x35\\xfb\\x35\\xc4\\x77\\x84\\\n\\xcf\\xd0\\x1a\\x8b\\x89\\xab\\xd8\\xc2\\x7d\\xdc\\xa7\\x06\\x08\\x38\\xfd\\x0f\\\n\\xa7\\x4a\\xd3\\xa9\\x3a\\x7a\\x79\\x38\\xc1\\x8a\\x39\\x5f\\x01\\xef\\xc9\\x36\\\n\\xd9\\xf8\\x66\\x40\\x5a\\x02\\x4d\\x14\\x2e\\x68\\x35\\xad\\x29\\x97\\x8e\\x76\\\n\\x4d\\x40\\x28\\x21\\x08\\x8e\\x43\\x7e\\x1e\\x4c\\x56\\xc0\\x4e\\xe0\\xb0\\xe5\\\n\\xa1\\x6a\\x47\\x16\\x37\\x8e\\x84\\xc4\\xd5\\x63\\x49\\x83\\xfa\\x71\\x71\\x80\\\n\\x41\\x1f\\x36\\xc6\\x06\\x80\\x7a\\x3b\\x37\\x90\\xe6\\x85\\x4b\\x08\\x10\\x4d\\\n\\x20\\x48\\x49\\x3c\\xc5\\xe0\\x93\\xb0\\x24\\x49\\x2a\\x34\\x54\\x29\\x42\\xa1\\\n\\x01\\x05\\xa0\\x68\\x06\\x04\\x25\\x09\\xfa\\xa0\\xf2\\xa7\\xbd\\xf4\\x22\\x30\\\n\\x04\\x60\\xa4\\x11\\xc2\\x86\\x8e\\xba\\x47\\x4c\\x47\\x10\\x45\\x1b\\x76\\xf0\\\n\\xb0\\xe3\\x15\\xd1\\x90\\x4d\\x85\\x6a\\x2c\\x40\\x52\\x48\\x05\\x14\\x52\\x15\\\n\\x08\\x92\\xd5\\x28\\x1d\\x48\\xeb\\x48\\xa0\\xbd\\x41\\xa9\\x41\\x22\\x07\\x48\\\n\\xdb\\xf8\\x79\\x2b\\x5b\\x1a\\xce\\xe8\\xa2\\xc1\\x58\\x9b\\x69\\xf6\\xf0\\xa1\\\n\\xab\\x7c\\x23\\x0e\\x8b\\x4a\\x45\\xfc\\xec\\x69\\xc4\\x61\\x24\\xe9\\x8e\\x63\\\n\\x8a\\xa5\\x17\\xa3\\x54\\x3a\\xca\\x84\\xd3\\xea\\x4f\\x53\\x0d\\x07\\xb8\\xca\\\n\\xd7\\xbe\\x1b\\xdc\\x25\\x23\\x80\\x3e\\xdc\\x05\\xff\\x00\\x16\\xb8\\x71\\x60\\\n\\x20\\x28\\x10\\x9f\\x23\\xe2\\x76\\x7c\\xf1\\xc2\\xf5\\x69\\x52\\x78\\x63\\xc7\\\n\\xac\\x40\\xa1\\x86\\x3a\\x72\\xcc\\x59\\x73\\x62\\x0b\\x3d\\x10\\x87\\x4c\\x24\\\n\\x33\\x92\\xa7\\x00\\x9d\\x27\\x1b\\x3b\\x0d\\xea\\xbe\\x7f\\x16\\x1b\\x51\\x18\\\n\\x48\\x76\\x1d\\xaf\\xdb\\xf4\\x6c\\xac\\xf9\\x46\\x2a\\x8f\\x66\\xa2\\x6e\\x0e\\\n\\xbb\\x08\\x2a\\xb0\\x29\\x0d\\x0c\\xd4\\x55\\x8a\\x84\\x68\\x48\\x92\\x2c\\x20\\\n\\x11\\xe0\\x15\\x05\\x07\\x54\\x81\\x36\\x4e\\x45\\xda\\x0d\\xea\\x77\\xde\\x5f\\\n\\x27\\xb6\\xfe\\x1c\\x94\\x82\\xf6\\x42\\xd8\\xea\\xf4\\x74\\xf7\\xb7\\x3e\\xd9\\\n\\x86\\xc0\\xd2\\x0e\\xbd\\x9e\\xbb\\x19\\xf7\\x38\\x55\\x0e\\x9a\\xec\\x05\\x7a\\\n\\x24\\x7a\\x25\\xe8\\x36\\x9c\\x0c\\xd7\\x70\\xe8\\xb4\\xea\\xa2\\x8e\\xff\\x00\\\n\\x1b\\x94\\xe2\\xe9\\x88\\xd1\\x1f\\xa9\\x34\\x94\\x0b\\xcb\\xf2\\xf0\\xb1\\x41\\\n\\xc1\\x05\\x08\\x81\\xa6\\xaa\\x05\\x65\\x21\\x1c\\x0c\\x18\\x3a\\x98\\x27\\xa9\\\n\\xdc\\x10\\x09\\x37\\x82\\x25\\x05\\x84\\x14\\x85\\x48\\x96\\x48\\x9a\\x7a\\x2d\\\n\\xcc\\xd3\\x4a\\x49\\x15\\x49\\x2a\\x7b\\x5d\\x5e\\x03\\x2b\\x8e\\x95\\x04\\x85\\\n\\x98\\xe5\\x50\\xe9\\xf5\\x77\\x9e\\x3c\\x6d\\x13\\x24\\x20\\xe0\\x08\\xb4\\x74\\\n\\xf8\\x71\\x32\\x87\\x5d\\x4a\\x08\\x7f\\x86\\xc0\\xa5\\x62\\x80\\xa1\\x74\\x21\\\n\\x0b\\x85\\x70\\x07\\x83\\xaa\\x84\\x81\\x6d\\xda\\x01\\x3a\\x41\\x91\\x41\\x4e\\\n\\x95\\xb4\\xe1\\x8c\\x4b\\xa5\\xd8\\x5d\\xa7\\x43\\x13\\x77\\x2d\\x99\\x14\\x0d\\\n\\x40\\x50\\x34\\x7d\\x22\\x8b\\x35\\x9b\\x22\\x7b\\x20\\x09\\x62\\xaa\\x53\\xf8\\\n\\x03\\x2a\\xef\\x04\\x8e\\x83\\xa1\\xfe\\xba\\x6c\\xa4\\xd2\\x23\\xc1\\xb1\\xc3\\\n\\xf5\\xa7\\x40\\x21\\x02\\xb1\\xbb\\xa7\\xaf\\x1f\\x90\\x50\\x50\\x16\\xa8\\x02\\\n\\x08\\xab\\x95\\x19\\xc0\\x6c\\x82\\x21\\x08\\x56\\x08\\x10\\x76\\x74\\x58\\x07\\\n\\x05\\x41\\x2d\\x32\\xd3\\x21\\x03\\xd2\\x14\\xa6\\xcc\\x08\\x98\\x12\\x88\\x3a\\\n\\xd6\\x4c\\x6a\\xa4\\xc0\\xa5\\x68\\x73\\x04\\x51\\x90\\xfd\\x7b\\xee\\x6c\\xd0\\\n\\x3f\\xed\\x49\\x43\\xf4\\xf8\\xd5\\x59\\x3f\\xca\\x43\\xba\\xbc\\xa3\\x47\\x3f\\\n\\x4d\\xf8\\x57\\xcf\\xe4\\xfb\\xc0\\x42\\xef\\xd7\\xdf\\x5d\\xea\\x6f\\x8f\\xe7\\\n\\xfa\\xb1\\x36\\x50\\x87\\xa4\\xe9\\xc7\\xea\\x6e\\x7b\\xaa\\x1c\\xec\\x53\\xb1\\\n\\xde\\xc8\\x89\\x6d\\x93\\xbf\\x74\\xef\\xb0\\x9f\\xf0\\x57\\xdb\\x54\\xbe\\xe9\\\n\\xf4\\x52\\xc3\\x92\\x54\\xad\\x3d\\xcb\\x44\\x4e\\xb2\\x78\\x9d\\xdb\\xf3\\x9e\\\n\\x27\\x61\\xef\\xe5\\xf9\\xc0\\x8b\\x41\\x2e\\xb1\\x2e\\x83\\x0f\\xf9\\xff\\x00\\\n\\xc7\\x84\\x12\\x2f\\x40\\x63\\x91\\x16\\x07\\x57\\xb9\\x56\\xe9\\xd8\\x44\\x0c\\\n\\x2f\\xdf\\xdf\\x92\\x6f\\x79\\x33\\xcb\\xc0\\x7c\\x8a\\x9e\\xe8\\x46\\x79\\xef\\\n\\xbf\\x49\\xfb\\xc3\\x78\\x06\\xe9\\x9b\\xfc\\x7c\\xad\\x66\\x5f\\xb1\\x3e\\x85\\\n\\x00\\x56\\xa5\\x85\\x0c\\x09\\xc1\\x09\\xc9\\xda\\x3e\\xe7\\xae\\x4a\\x06\\xa4\\\n\\x18\\xeb\\xae\\xc5\\x78\\x6e\\xe7\\x08\\xbb\\x8d\\x29\\x26\\xe9\\x52\\xe0\\xc6\\\n\\x09\\xcb\\x15\\x50\\x80\\x23\\x04\\x9b\\xeb\\xde\\x01\\xe1\\xa0\\xa0\\x45\\x80\\\n\\x94\\xab\\x0c\\x97\\x54\\x28\\xb0\\x65\\x41\\xaf\\x7e\\xa4\\x1e\\xcc\\x66\\x97\\\n\\x8e\\x5c\\xa6\\x80\\x80\\x18\\xec\\x10\\xa3\\xde\\xcd\\x4a\\xd4\\x13\\xd6\\x96\\\n\\x11\\x0a\\x8a\\x76\\x91\\x24\\xa2\\xea\\xd0\\x03\\x4e\\x0b\\x47\\x4b\\xd3\\x48\\\n\\x1d\\x78\\x05\\x5d\\xda\\xe0\\x5a\\x28\\x11\\x60\\x2b\\xa4\\x8a\\x80\\x93\\x0b\\\n\\x08\\x48\\x44\\x94\\x01\\x35\\x87\\x66\\xe4\\x82\\x98\\x35\\x74\\xec\\x88\\x50\\\n\\xa2\\x45\\x65\\x78\\xcb\\xb0\\x24\\x94\\xd2\\xba\\x96\\xa5\\x9a\\x06\\x22\\x13\\\n\\x11\\x38\\xf8\\x00\\x06\\xb1\\x6a\\x15\\x57\\x50\\x38\\xb2\\x50\\xe5\\x5b\\x0a\\\n\\x21\\x20\\x33\\xb2\\x1a\\xe3\\x22\\x88\\x61\\x05\\x5a\\x02\\x82\\xdf\\x17\\xe7\\\n\\xe6\\x2b\\x35\\xcc\\xe2\\x33\\xa7\\x40\\x92\\x31\\xc6\\x5a\\x60\\x04\\x05\\xa0\\\n\\xa0\\x18\\x88\\x38\\x77\\x7f\\x5f\\x12\\x60\\x30\\x04\\xc7\\xb5\\x37\\x0e\\x87\\\n\\x73\\xd6\\x09\\xd4\\x12\\x2e\\x0f\\x6a\\xc8\\x28\\x1a\\xda\\x42\\x48\\x30\\x11\\\n\\x52\\xb0\\xa3\\xd3\\x0a\\x28\\xea\\x55\\x13\\x81\\xce\\x36\\x98\\x22\\x00\\x12\\\n\\xa1\\x42\\x0a\\xd8\\xe0\\x4e\\x34\\x89\\x0d\\x40\\x50\\x3b\\xa5\\x24\\x52\\x70\\\n\\x75\\xaa\\x65\\xa0\\x14\\xee\\x8c\\x12\\xc1\\xc1\\x91\\x8c\\x00\\xcc\\xce\\x8a\\\n\\x9c\\xbd\\x74\\xf9\\x6f\\x08\\x34\\x0f\\xb1\\x45\\x42\\x79\\x29\\x85\\xaf\\xed\\\n\\xe2\\x91\\x16\\x56\\x47\\x6a\\xac\\x85\\xd5\\xcc\\xa4\\x2f\\x0d\\x82\\x02\\x54\\\n\\xb0\\x8c\\xb0\\xd2\\x46\\x2b\\x66\\xa8\\x77\\x52\\xf4\\x61\\x34\\x50\\xb5\\x3f\\\n\\xf8\\x26\\xf2\\x2b\\x55\\x58\\xa9\\x81\\xb8\\xa8\\x55\\x83\\xf8\\x37\\x58\\x7b\\\n\\x9a\\xd7\\x0a\\xd0\\x50\\x7b\\x92\\x67\\x47\\x22\\xb1\\x6f\\xcd\\xbb\\x58\\x4d\\\n\\x21\\x60\\xe2\\x17\\x38\\xca\\x43\\x3b\\x8d\\xf4\\xe9\\x34\\x6f\\x73\\x6b\\x61\\\n\\x22\\x15\\x0b\\xc4\\x44\\xa2\\xa3\\x4d\\x94\\xc4\\x5c\\x77\\x16\\x87\\xa1\\x25\\\n\\x81\\x48\\x01\\x68\\x04\\x31\\x78\\x02\\xbf\\xa2\\x00\\x6b\\x70\\x20\\x79\\xdb\\\n\\xce\\x12\\x98\\xb8\\xbc\\x2c\\x62\\x3e\\x08\\x3d\\x65\\x7b\\x43\\x47\\xe4\\x28\\\n\\x94\\xa4\\x19\\xd8\\xc0\\xa2\\xfc\\x73\\x5c\\x7e\\x20\\x94\\x2c\\xb4\\xbf\\x84\\\n\\x4b\\x04\\xe3\\xd8\\x76\\x2d\\xe2\\xd9\\x8a\\xda\\x0c\\xa7\\x6e\\x1b\\xc4\\xb0\\\n\\x00\\x25\\x9a\\x44\\xb1\\x5e\\xcb\\x60\\x67\\x2c\\xb0\\xb9\\x06\\x0b\\x40\\x9e\\\n\\x84\\x8a\\x54\\x25\\x2e\\x9c\\x68\\x91\\x46\\x77\\x87\\x5d\\xfd\\x68\\x13\\x56\\\n\\xfd\\x28\\x24\\x9a\\x3f\\xbd\\x7c\\xfb\\xe9\\x2b\\xd7\\x00\\x5d\\x4f\\xf9\\x0a\\\n\\x02\\x57\\x99\\xfd\\xa7\\xbc\\x48\\x53\\x3b\\xc8\\x23\\xfa\\xea\\x6c\\x83\\x69\\\n\\x4b\\x1d\\x8f\\x24\\xa4\\x00\\xd8\\x6a\\x1d\\xc0\\x83\\x5e\\x02\\xda\\xa2\\x83\\\n\\x44\\xa0\\x7a\\xb2\\xf4\\xb8\\x14\\xa1\\xcb\\x63\\xe1\\x4a\\xa0\\x57\\xfc\\x47\\\n\\x5b\\xb8\\x24\\x66\\xac\\x03\\x51\\x3e\\xab\\x7f\\x81\\xff\\x00\\x67\\xe0\\x75\\\n\\x90\\x5d\\xc7\\x1f\\xb9\\x9d\\x3d\\xcb\\x09\\xa9\\xc5\\xb0\\x7f\\xc8\\x1e\\x49\\\n\\xb9\\xa7\\x7d\\x3d\\x3f\\xde\\x06\\x11\\x8e\\x94\\xf3\\x7e\\xfe\\x79\\xd3\\x9e\\\n\\xf1\\x92\\x3d\\xb5\\x11\\xbd\\x7f\\x5e\\x83\\xa8\\x62\\x25\\xe0\\x36\\x29\\xb8\\\n\\x7d\\x3b\\x41\\x1d\\x9d\\xff\\x00\\xdb\\xf3\\x88\\x2e\\xd9\\x3c\\x56\\x63\\xef\\\n\\xf7\\x0f\\xa2\\xde\\x30\\x55\\x8c\\xe9\\x62\\x74\\x22\\x2f\\x7b\\xbf\\xf1\\xb9\\\n\\xcd\\xba\\xa1\\x64\\xc8\\x68\\xfb\\x55\\x20\\x9e\\x78\\xf7\\x9e\\x2a\\x5e\\x84\\\n\\xcc\\xfc\\x37\\xfc\\xff\\x00\\x3a\\xe3\\x7f\\x01\\xa8\\x8d\\xed\\xef\\xe2\\x78\\\n\\x46\\x9e\\x13\\x88\\x23\\x48\\x5c\\x77\\x4b\\xfa\\x1f\\xf9\\xe3\\xef\\x18\\xa9\\\n\\x67\\x41\\x3b\\xef\\xa7\\xfd\\x49\\xb7\\x7d\\x13\\x4b\\xb8\\xa4\\x70\\x39\\x5f\\\n\\xaa\\x7b\\xeb\\xb3\\x91\\x71\\x68\\x51\\x5a\\x2f\\xcb\\x86\\x67\\x47\\x91\\x4e\\\n\\x23\\x8a\\x34\\x28\\x25\\x46\\xbb\\x90\\x8b\\x83\\x48\\x2d\\x12\\xb8\\xc0\\xa1\\\n\\x03\\x56\\x36\\x1b\\xa1\\x61\\x1b\\xeb\\x32\\x51\\x24\\x80\\x31\\x36\\x97\\x49\\\n\\x11\\xe3\\x00\\x0b\\xa6\\xb5\\x15\\x55\\xf8\\x0f\\x42\\x11\\x62\\x45\\x17\\x7e\\\n\\x3e\\xf8\\x7c\\xa5\\xcd\\x48\\xcb\\x45\\xcc\\xb0\\xbf\\xaa\\x07\\x73\\x2f\\x50\\\n\\xeb\\x9b\\xa1\\xd5\\x68\\x1a\\x8a\\x50\\x23\\x04\\x45\\x0a\\x6d\\x98\\x69\\x09\\\n\\xd2\\xac\\x5e\\xb6\\x68\\x82\\x5e\\xa4\\x1f\\xd5\\xa3\\x40\\x2b\\xba\\xf7\\x8e\\\n\\xcf\\x13\\x8e\\x46\\x2d\\x2c\\xc2\\x91\\x41\\x18\\x0f\\x81\\x69\\x59\\xc9\\x88\\\n\\x7d\\xd1\\x7e\\xb2\\xbb\\x1f\\x48\\x07\\x84\\x36\\x21\\xc1\\x57\\x4c\\x41\\xd0\\\n\\xaa\\x88\\x41\\xda\\xdb\\x09\\x48\\xac\\x0c\\x41\\x01\\xde\\x58\\x9c\\x2b\\x2e\\\n\\xd8\\x04\\x1c\\x58\\x6c\\xec\\x94\\x6f\\x66\\x34\\x10\\xda\\x22\\xa5\\x17\\x4a\\\n\\xa2\\xaa\\xc2\\x37\\xd6\\x70\\xea\\x68\\x80\\x01\\x24\\x34\\x94\\xa2\\x54\\x90\\\n\\x72\\xbe\\x36\\x90\\x80\\xea\\xa8\\xd5\\x1d\\x8c\\x76\\x01\\x78\\x1d\\xbd\\x05\\\n\\xfb\\xa2\\xd0\\x8a\\x0e\\x41\\xa0\\x02\\x7c\\xc2\\x48\\x11\\x8e\\x12\\xd1\\x30\\\n\\xac\\x0c\\x48\\x03\\x3a\\x98\\x42\\x68\\x9e\\xdf\\x00\\xaf\\xdc\\x4a\\x98\\x62\\\n\\x49\\x09\\x84\\xc4\\x14\\x1a\\x45\\x74\\x1e\\x80\\x70\\x49\\x0e\\x30\\x4c\\xee\\\n\\x8a\\x77\\x6e\\xfd\\x35\\x8f\\x27\\x82\\xe8\\x42\\x22\\x10\\x00\\x50\\x82\\xaa\\\n\\x9a\\xf0\\x92\\x18\\xd0\\x3a\\x89\\x69\\xd2\\x33\\x3a\\x9d\\xf6\\xbf\\x2b\\xfc\\\n\\x1f\\xfe\\x43\\xff\\x00\\x78\\xe0\\x50\\xae\\xa2\\x34\\x5b\\xd2\\x83\\x02\\x8b\\\n\\x9b\\xca\\xf1\\x75\\x12\\x11\\x53\\xa5\\x82\\x22\\x91\\x9a\\x74\\xb0\\x01\\xb4\\\n\\x5e\\xe0\\x77\\x70\\x87\\xae\\xc3\\xa2\\x56\\xa0\\x03\\x70\\x54\\x53\\xff\\x00\\\n\\x18\\x4c\\xd9\\xd7\\x08\\x5e\\x9b\\xa9\\xd3\\xe4\\xf2\\x6f\\xff\\x00\\x1c\\x10\\\n\\xa1\\xbd\\x02\\x58\\x88\\x86\\xb8\\xf4\\x7b\\xc2\\x1b\\x06\\xa8\\x2f\\x71\\x44\\\n\\x11\\xee\\x00\\x99\\xa3\\xa9\\xca\\xd9\\xad\\x31\\x42\\x54\\xa6\\xbb\\x05\\x7a\\\n\\x38\\xd7\\x6a\\x14\\x42\\x8f\\x75\\x49\\x96\\x63\\x17\\x52\\x54\\x00\\x70\\x0a\\\n\\x5d\\xa5\\x1f\\x47\\xe9\\xa1\\xef\\x19\\x06\\x61\\x4f\\x40\\x18\\xba\\x66\\x8d\\\n\\xcb\\xda\\x6c\\x89\\x1a\\x02\\x2f\\x56\\x87\\xac\\x75\\x4f\\xa2\\x70\\x41\\x26\\\n\\x05\\x49\\x0a\\x70\\x82\\x65\\x34\\x19\\xd9\\x74\\x08\\xa8\\x00\\x4c\\xed\\x57\\\n\\x5a\\x53\\x08\\x6a\\x06\\x99\\xd6\\x06\\x0f\\x03\\x25\\x21\\x80\\x60\\x08\\xaa\\\n\\x28\\x40\\x64\\xb2\\x48\\xa0\\x21\\x36\\x13\\x39\\x76\\x89\\xc3\\x0b\\x3b\\xab\\\n\\x49\\x71\\x9f\\x27\\xbc\\x10\\x42\\x90\\x93\\xa5\\x7e\\x7c\\x67\\xf9\\x7e\\xf0\\\n\\xbd\\x95\\x77\\x49\\xb9\\x53\\xe3\\x5f\\x3a\\x7e\\xf1\\x20\\xea\\x6c\\x12\\x33\\\n\\x28\\x76\\x1a\\x07\\xf8\\xa7\\x06\\x52\\xa2\\x21\\x82\\x8a\\x89\\xbf\\xa2\\xc2\\\n\\x64\\x70\\x1a\\x97\\xf6\\x05\\x64\\x02\\x84\\x74\\x8d\\x28\\xda\\x55\\xa3\\xd0\\\n\\x62\\x98\\x82\\x8d\\x17\\x7b\\x64\\xe6\\x19\\xa8\\xae\\xec\\x51\\xcf\\xfa\\x2e\\\n\\xe5\\x2f\\x10\\xf4\\x29\\xad\\x22\\xd3\\xac\\xf4\\x9e\\xc5\\x9f\\x87\\x06\\x75\\\n\\xdb\\xd0\\x7b\\x3a\\x93\\xf8\\x7f\\x0e\\xe1\\xc8\\x86\\x6c\\x1b\\xe3\\xdb\\x9d\\\n\\x75\\xb6\\x9e\\xb9\\xfb\\x10\\x30\\xf2\\x74\\x1d\\xcf\\xfe\\x10\\xb3\\x7f\\xde\\\n\\x51\\x54\\xc0\\x49\\xe1\\xae\\x66\\x18\\x5b\\x83\\xf6\\xf0\\x0c\\xa8\\x39\\xff\\\n\\x00\\x27\\xbd\\x53\\xfe\\x33\\xe7\\x44\\xcd\\xc0\\xe9\\x1f\\x85\\xc8\\x3a\\x5f\\\n\\x83\\x30\\x97\\x9a\\x2e\\x62\\x1c\\x6b\\xeb\\x35\\xea\\xb1\\xe1\\x3c\\x0b\\x29\\\n\\xd1\\xad\\xcc\\x9a\\x47\\xf7\\xbe\\xb7\\x82\\xa4\\xfb\\xdd\\xeb\\x7b\\xe8\\xff\\\n\\x00\\xb0\\x3c\\x78\\x3d\\xbb\\xfc\\x5e\\xdd\\x3e\\x4d\\xff\\x00\\x37\\xb7\\x65\\\n\\x2d\\xed\\x83\\x04\\xfa\\x3c\\x4f\\x0f\\x72\\x37\\x79\\x92\\xc2\\xe7\\xa1\\xd1\\\n\\x2f\\xa7\\x7e\\x6d\\x97\\x12\\xd1\\xe2\\x50\\xf5\\xfd\\x3d\\xeb\\x0f\\x98\\x7c\\\n\\xd7\\x98\\x96\\xa5\\xc1\\x1b\\x13\\x27\\xdb\\x1e\\xe2\\xdc\\x8e\\x09\\xb9\\xd0\\\n\\x8a\\x08\\xa0\\x80\\x69\\x74\\x00\\xaa\\x45\\x72\\xa1\\xd2\\x90\\x62\\x90\\x4d\\\n\\x21\\x32\\x41\\x1b\\x90\\x6c\\x29\\x4e\\xa4\\xea\\x28\\xa3\\x25\\x01\\xef\\x5b\\\n\\xec\\xa5\\x4a\\x36\\x1c\\x23\\x1e\\xc4\\xae\\x01\\xa0\\x59\\x63\\xa4\\xfa\\xfa\\\n\\x00\\x7a\\xd5\\x78\\x08\\xe9\\x81\\xb4\\xab\\xda\\xf4\\x67\\x8f\\xe7\\xe5\\x67\\\n\\xa8\\x0a\\xe1\\x48\\x14\\x70\\xcb\\x02\\x2e\\xb7\\x93\\x13\\xaa\\x90\\x7d\\x48\\\n\\x14\\x02\\xa0\\x1e\\x01\\xca\\x92\\x60\\x19\\x13\\x62\\x06\\xa1\\x2a\\x68\\xbc\\\n\\x03\\xd2\\x42\\x8a\\xf4\\xd6\\x2d\\x40\\xa1\\xf4\\xb2\\x0b\\xcd\\x6e\\x9d\\xc0\\\n\\x44\\x32\\x0a\\x28\\x08\\x46\\xa0\\x00\\x70\\xae\\xa0\\x80\\x08\\x49\\xa7\\xf4\\\n\\x04\\xb5\\x1f\\xf3\\x80\\xba\\x21\\x52\\x08\\x51\\xdb\\x83\\x3e\\xfe\\xd3\\x9f\\\n\\x11\\xb4\\x21\\x1f\\x48\\x76\\x74\\x2f\\xb1\\xf8\\xf1\\x08\\x31\\xba\\x23\\x63\\\n\\x3e\\xa1\\x14\\x76\\x4b\\x48\\x24\\xe8\\x31\\x2b\\x29\\x68\\xaa\\x84\\x4a\\x21\\\n\\x4f\\x3d\\xf7\\x08\\x19\\x0b\\xd8\\x67\\x40\\x85\\x51\\xe9\\x07\\xa4\\xdf\\xaf\\\n\\xc0\\x2a\\x2d\\xec\\xf3\\x3f\\x63\\xc3\\xa2\\x17\\x80\\x6c\\xd3\\x3a\\xab\\xd0\\\n\\x7d\\x7f\\xbc\\x39\\x41\\x45\\x80\\x47\\x2d\\xd4\\x56\\x08\\x77\\x67\\xae\\x69\\\n\\x28\\x1a\\x05\\x77\\x29\\x2a\\xd1\\x43\\x3d\\x08\\x5e\\x2c\\xe6\\xa3\\xed\\xec\\\n\\xf3\\xa8\\xdd\\xad\\xf7\\x83\\x55\\x5e\\x2a\\x5c\\x1b\\xd3\\x8d\\xc4\\xc9\\xe1\\\n\\xc6\\xf7\\xaa\\x98\\x1e\\x9d\\x75\\x9f\\x8c\\xd4\\x66\\xe1\\x81\\x4c\\xc4\\x0a\\\n\\x15\\xed\\x1b\\x1d\\x0c\\x6e\\xb3\\xa1\\x8f\\xa3\\x51\\x1f\\x81\\x8e\\xae\\x8c\\\n\\x5f\\x53\\x6a\\x29\\x64\\x2f\\x79\\x05\\x51\\x5d\\xe8\\xdc\\xe3\\x40\\x26\\x04\\\n\\xa8\\x4b\\x05\\x01\\xa3\\x43\\x2d\\x5c\\x31\\xd3\\x81\\xd0\\x8b\\xe8\\x04\\x59\\\n\\x4e\\xc8\\xf0\\x42\\xca\\xba\\x31\\x28\\x7b\\x3f\\x7d\\xd0\\x7b\\xbd\\xb0\\x04\\\n\\x0f\\xe4\\xab\\x0a\\x80\\xbf\\x24\\xbd\\x07\\x10\\xaa\\xa1\\x3a\\xc4\\x20\\x80\\\n\\x48\\x19\\x0a\\x36\\x2e\\xf6\\x43\\x88\\xa1\\x30\\x04\\xfa\\x14\\x33\\x46\\x2f\\\n\\x13\\xd7\\xf6\\xb0\\x0e\\x2c\\x64\\x61\\x14\\x29\\xbc\\x21\\x01\\x76\\x02\\x11\\\n\\x34\\x7e\\x81\\x88\\xc4\\x9c\\x4d\\xf0\\x46\\xe1\\xb3\\x25\\x00\\x53\\x02\\x91\\\n\\xaf\\x35\\x84\\x66\\x64\\x44\\x1d\\x89\\x8b\\x5b\\x50\\x9a\\x25\\xd8\\x2c\\x0a\\\n\\x34\\xa3\\x3e\\x92\\xa0\\x8a\\xb1\\x2e\\xf6\\x91\\xcb\\x08\\xe7\\x50\\xcd\\x31\\\n\\xa7\\xcf\\xb3\\x9d\\xa9\\x90\\xc0\\xc0\\x43\\x31\\x87\\x5b\\x44\\x5e\\xf5\\x20\\\n\\x64\\x51\\xf6\\x85\\x36\\xee\\x8d\\xed\\x4e\\x9e\\x27\\x70\\xd3\\xa9\\x01\\x1a\\\n\\xad\\x60\\x55\\x5d\\xd7\\x95\\x4b\\x88\\x23\\xd5\\x1d\\x4d\\x05\\x2e\\x2a\\x69\\\n\\x17\\xca\\x11\\x50\\xdb\\x84\\x04\\x0b\\xdb\\x37\\xe1\\xc2\\xd0\\x50\\x80\\x0a\\\n\\x05\\x4f\\x14\\x85\\x0a\\x40\\xc5\\x65\\x21\\xaf\\x20\\x00\\x60\\x69\\x4a\\xb5\\\n\\x38\\x59\\x43\\x00\\x86\\x05\\x68\\x00\\x83\\x55\\x3a\\xcb\\xcf\\xee\\xc7\\xa5\\\n\\x67\\xc6\\x46\\xbd\\x65\\xb5\\xeb\\x80\\x45\\x4a\\x2c\\x8a\\xe6\\x04\\xba\\xd9\\\n\\xa2\\xec\\x5e\\x0b\\x49\\xf8\\xf9\\xf1\\x58\\xc8\\xc8\\x39\\xfb\\xfc\\xe4\\xfc\\\n\\x1b\\x9f\\x63\\xaf\\x53\\xfc\\x5f\\xef\\xba\\xca\\xfa\\x46\\x83\\x58\\xe7\\xfd\\\n\\x44\\x32\\xfc\\x7d\\x5d\\x89\\x7b\\x3c\\x7c\\xe9\\x9d\\xff\\x00\\x7c\\x1f\\x64\\\n\\x2f\\x8a\\x7d\\xab\\x2a\\x81\\xdb\\x4d\\x80\\xe4\\x7a\\x59\\x45\\x21\\x22\\x76\\\n\\xf6\\x4b\\xea\\xdd\\x5f\\x37\\x4e\\x2e\\x0b\\x51\\x83\\xd0\\xc5\\x81\\xd6\\xfb\\\n\\x9d\\x1d\\xce\\x2c\\x12\\x8e\\xbb\\xfd\\xae\\x67\\x7f\\x7e\\xcf\\xce\\x7f\\x04\\\n\\x7f\\xbd\\xff\\x00\\x56\\xf8\\x6f\\xef\\xfa\\x47\\x49\\x47\\xaa\\x12\\x19\\xd4\\\n\\x16\\x4d\\x05\\xe4\\xca\\x20\\xa8\\xe7\\x73\\x2e\\x25\\x89\\xdf\\xbe\\x33\\x99\\\n\\xd7\\x46\\x02\\xab\\x31\\x1e\\x97\\xb2\\x78\\x1f\\x6f\\x13\\x4d\\x11\\x4f\\x5e\\\n\\xce\\xba\\xfd\\xfe\\xf2\\xab\\xd0\\x03\\xa0\\xf9\\x8c\\x99\\x31\\xef\\x7b\\xe3\\\n\\x96\\xb1\\x21\\x04\\xa1\\x80\\xea\\x02\\x54\\xa6\\xb2\\xbf\\x2b\\x62\\x5a\\x00\\\n\\xf4\\x0b\\xa2\\xa6\\x45\\x11\\x55\\x59\\xb2\\x05\\x8c\\xf2\\x84\\x42\\x4f\\x88\\\n\\xf4\\x13\\x89\\xc8\\x22\\x90\\x10\\x51\\x41\\x94\\x7b\\xee\\x27\\x2a\\x91\\x20\\\n\\x4b\\xca\\x04\\x23\\xb5\\x3c\\x40\\x57\\xaf\\xa4\\x4a\\x81\\xb1\\x13\\x07\\x02\\\n\\x82\\x9c\\x96\\x48\\x40\\x10\\x2d\\x4c\\x35\\xa0\\x2a\\x2c\\x88\\x72\\x10\\x18\\\n\\xa2\\x0a\\x02\\x01\\xb0\\x0c\\x1a\\xd8\\x6c\\xe3\\x04\\xa3\\xda\\xa9\\xa4\\x82\\\n\\x96\\x18\\xa2\\xc1\\x17\\x4e\\xc0\\x84\\xac\\x49\\x49\\x02\\x45\\x0a\\x8e\\x74\\\n\\x72\\xd4\\x50\\x00\\x68\\x55\\x46\\xb4\\x13\\xc4\\x65\\x35\\xb4\\x56\\x42\\xd1\\\n\\x80\\x30\\x01\\xae\\x4d\\x4d\\xf5\\x58\\xe9\\x30\\x16\\x57\\xf8\\x15\\xfa\\x37\\\n\\xae\\xbb\\x52\\x4a\\x84\\x9b\\x6e\\x0a\\x29\\x4d\\x2a\\x62\\xda\\x53\\xaa\\x8f\\\n\\xa9\\x22\\x04\\xce\\x8e\\x97\\x02\\xaf\\xc1\\xe2\\xe4\\xca\\x3d\\x68\\x32\\x00\\\n\\x62\\x12\\x74\\x15\\xc0\\x80\\x71\\xdc\\xb8\\xae\\xc3\\x1a\\x01\\x61\\x9b\\x80\\\n\\x45\\x03\\xf0\\xa1\\x40\\x5d\\xc8\\xfd\\xfc\\xde\\xf9\\xb6\\x07\\x1f\\x57\\x4f\\\n\\x26\\x99\\xf1\\xef\\x7d\\x9c\\x2a\\x76\\x3e\\x52\\xd0\\xfa\\xf2\\xdc\\xd7\\x7d\\\n\\x36\\x37\\x28\\xbb\\xba\\x58\\x25\\x71\\x6d\\x66\\xb2\\xa1\\xc4\\xb1\\x02\\x1a\\\n\\xc2\\x99\\xff\\x00\\x42\\xeb\\x61\\x4e\\xb8\\x6b\\xa9\\x43\\xa4\\x3a\\x29\\xd7\\\n\\xdb\\xfe\\x49\\x9c\\x50\\x9a\\x2b\\x52\\x95\\x1d\\xa4\\x2e\\xe9\\xb9\\x23\\x78\\\n\\x24\\x0d\\x50\\x5f\\xbb\\x49\\x06\\x08\\x00\\x1a\\x3e\\xa5\\x75\\x14\\x56\\x90\\\n\\xe9\\xd8\\x49\\xda\\xb8\\x2d\\xab\\xc9\\x3c\\x9e\\xc0\\x80\\x9e\\x82\\xb9\\x66\\\n\\x21\\x43\\x3c\\x7b\\xa1\\x21\\x6d\\x06\\x2f\\xa7\\x14\\x36\\x80\\xa0\\x1b\\xf4\\\n\\x54\\x22\\x10\\xc4\\x08\\x0c\\x21\\xd6\\xad\\x89\\x12\\x5e\\x04\\x84\\x7f\\x8d\\\n\\xf9\\xaa\\x38\\x7c\\x40\\x6a\\x11\\xc3\\x3a\\x08\\x65\\x98\\x87\\x7b\\x87\\x7c\\\n\\x20\\x48\\x42\\x0c\\x16\\xfe\\x1b\\x9d\\x2d\\x02\\xb8\\x70\\x29\\xb3\\xd0\\xeb\\\n\\x12\\x82\\xba\\x77\\xd6\\x37\\x5b\\xae\\x0d\\x1d\\xf0\\x14\\x10\\x0f\\x6d\\x02\\\n\\x43\\x0a\\xbc\\x54\\x4d\\x2f\\x45\\x0f\\x00\\x41\\x6b\\xff\\x00\\x3d\\x35\\x78\\\n\\xd6\\x09\\x6c\\x86\\x8a\\x83\\x45\\x61\\x04\\xbd\\x57\\x56\\xd2\\x6a\\xb2\\x42\\\n\\x8c\\x22\\x6a\\x06\\xc7\\xa5\\x04\\x01\\xcb\\xe2\\x2e\\x83\\x0d\\x86\\xa8\\xc0\\\n\\x02\\x40\\xf5\\x14\\xe0\\x6d\\x5f\\x6e\\x4f\\xf9\\x7e\\xf7\\x6c\\xe2\\x62\\x9b\\\n\\x30\\x01\\xe8\\x46\\x54\\x8b\\x13\\x70\\xbc\\x5a\\x12\\x1a\\x26\\xa0\\x74\\xec\\\n\\x4d\\xc1\\x80\\xc1\\x61\\x68\\xa8\\xa1\\xb2\\x62\\x8c\\x41\\x2e\\x11\\x6b\\x04\\\n\\x6c\\xbc\\x51\\x3e\\x1c\\x8d\\x11\\x4a\\x61\\x71\\xd0\\xa3\\x85\\x5d\\xe3\\x83\\\n\\xa6\\x0a\\xe2\\xa8\\x90\\x44\\x11\\xa0\\xd5\\x13\\xb8\\x14\\x46\\x85\\x00\\x90\\\n\\x81\\x40\\x71\\xd9\\x30\\x00\\x4a\\x10\\x44\\x50\\x94\\xc0\\x83\\xe5\\x13\\xd6\\\n\\x67\\x70\\x06\\x62\\x80\\x2b\\xcf\\x03\\x02\\x08\\x99\\x24\\x0f\\x02\\xa1\\xfd\\\n\\xdd\\xd5\\xef\\x5e\\x74\\x08\\xfa\\xfe\\x62\\x49\\xaf\\xfd\\x51\\x22\\xbb\\xc7\\\n\\xf8\\xea\\x37\\xbb\\x25\\xbf\\xef\\xf6\\x7f\\xc7\\x11\\xa5\\xbd\\xf5\\xbd\\x77\\\n\\x1f\\xf8\\xbb\\xe7\\x59\\xb3\\x7a\\x75\\x9a\\x87\\xfb\\xdf\\x7f\\x86\\xbf\\x8a\\\n\\x3c\\x32\\x9c\\xdd\\x97\\x3d\\x6e\\xaf\\xfe\\xd0\\x15\\xa1\\xca\\x10\\x21\\x96\\\n\\xd3\\xb6\\x83\\xe9\\x86\\x12\\xa5\\xeb\\xe3\\x01\\x10\\x49\\xdb\\x55\\x67\\xef\\\n\\xc3\\xfc\\x8c\\xde\\x10\\xd0\\x39\\xdd\\x15\\x1d\\xa6\\xd9\\xb2\\xee\\x7b\\x79\\\n\\x15\\x1d\\x23\\x8e\\xd4\\xcb\\xa7\\x65\\x13\\xf1\\xdd\\xe0\\x70\\x3b\\xad\\xcd\\\n\\x26\\x3f\\x16\\xbe\\x78\\xcf\\xbc\\x93\\x48\\x0e\\xcf\\x82\\x69\\xe1\\x6f\\x5f\\\n\\xcb\\xc8\\x8c\\xe8\\xa7\\x62\\x03\\x30\\xd3\\xab\\x43\\xae\\x34\\x01\\xb0\\xd6\\\n\\x24\\xa1\\x49\\x4b\\x3b\\xff\\x00\\x22\\x30\\x58\\x52\\x43\\xa0\\x75\\x80\\xbf\\\n\\xe0\\x3d\\x5d\\xfe\\xd7\\x70\\xa2\\x4d\\xe8\\x41\\x9d\\x1b\\x9b\\xb3\\x3c\\x79\\\n\\x04\\xa5\\xd2\\xbb\\xa3\\xa1\\xe9\\x36\\x8f\\x7f\\xde\\x1d\\xc7\\xd0\\x82\\x10\\\n\\x15\\x13\\xe1\\x4d\\x0d\\xed\\xc5\\x27\\x10\\x33\\x15\\x22\\x45\\x41\\xfd\\x93\\\n\\xd8\\xf1\\x6b\\x50\\x21\\x38\\x87\\xa2\\x2a\\x1a\\x45\\x0a\\x68\\xc0\\x46\\xa0\\\n\\xc9\\x27\\x40\\x07\\x49\\xf2\\x08\\x82\\x90\\x28\\xbe\\xd1\\x1a\\x45\\x53\\xd5\\\n\\x63\\x02\\xe0\\x9a\\xc4\\x73\\x21\\x23\\x54\\x04\\x01\\x49\\x6b\\x38\\x51\\xe3\\\n\\xa3\\x54\\xc2\\x2d\\x86\\x85\\xa4\\x41\\x82\\xa0\\x0a\\x56\\x81\\x55\\xd0\\xeb\\\n\\xb9\\xa1\\xd3\\x39\\x38\\xaa\\xf2\\xc2\\x08\\xa1\\x65\\x6a\\x0f\\xf5\\x8b\\xa2\\\n\\x94\\x05\\x57\\x91\\xb8\\xa0\\xb4\\x88\\x88\\x31\\x20\\x2a\\x46\\x69\\x54\\x7e\\\n\\x1a\\xfd\\xf0\\x39\\x96\\x3b\\x32\\xd1\\x33\\x68\\x86\\xa7\\x9d\\x8f\\xce\\x42\\\n\\xf9\\xb4\\x4d\\xef\\xcf\\xcb\\xf9\\xb8\\xb7\\xcc\\xf8\\xa3\\xb8\\x46\\xa1\\xe9\\\n\\x20\\x90\\xa5\\x07\\x03\\x40\\xb9\\x0e\\x9d\\xb0\\xa4\\x2c\\x58\\x1e\\x9f\\x39\\\n\\x74\\x25\\xa5\\x18\\xb8\\x27\\x90\\x80\\x21\\x42\\x07\\x84\\x87\\x25\\x49\\x75\\\n\\x40\\xb2\\xac\\x3c\\xb3\\x43\\x39\\x26\\x69\\x50\\x7c\\xa8\\x7f\\xe4\\xdf\\xdd\\\n\\xfb\\xc7\\x14\\x2e\\x0e\\xdc\\x63\\xeb\\x3a\\x9e\\x6d\\x84\\xf8\\x0a\\xc8\\x33\\\n\\x40\\x46\\x95\\x3f\\xc6\\x97\\x4c\\xc9\\xc7\\x5b\\x00\\x0e\\xb6\\x09\\x7d\\x76\\\n\\x9d\\xe8\\xff\\x00\\xcf\\x0e\\x26\\xc5\\xa8\\xcc\\xf8\\x9d\\x75\\xfc\\xe3\\x28\\\n\\xcc\\x41\\x3f\\x40\\x79\\xf4\\x2f\\x7f\\xf1\\x8b\\x6a\\x95\\x55\\x77\\x0c\\x45\\\n\\x8a\\x88\\x47\\xb1\\x15\\x27\\x04\\x0a\\x12\\x50\\x95\\x42\\x94\\x15\\x69\\x7a\\\n\\x0a\\xe8\\x19\\x8d\\x31\\xe8\\x91\\x10\\x40\\x84\\x4d\\x44\\x48\\x73\\xb7\\xa6\\\n\\xa0\\x2b\\x9f\\x45\\x92\\x38\\x7a\\x3e\\xf0\\x2e\\xf8\\x5b\\x44\\x00\\xc1\\x03\\\n\\x57\\x21\\x65\\xd1\\xa3\\x78\\x9c\\x10\\xa4\\xa0\\xa8\\x94\\x1a\\xaa\\x52\\x4a\\\n\\x71\\x45\\x8d\\x8b\\xd1\\x54\\x06\\x36\\xb6\\x4b\\x40\\x02\\x96\\xe6\\x32\\x20\\\n\\x99\\xbd\\x9f\\xf0\\x4e\\xcf\\x7a\\xe2\\x2a\\xb6\\x9a\\x2f\\xa2\\xd4\\xfd\\xde\\\n\\xf6\\x1f\\x38\\xe9\\x1e\\x0c\\xfa\\x2e\\x40\\xbc\\x8b\\x17\\x13\\xec\\x97\\x40\\\n\\x57\\xa3\\x64\\x92\\x8a\\x63\\x50\\x85\\x1a\\x0b\\xf8\\x12\\x08\\x56\\x0d\\x61\\\n\\x98\\x69\\x6b\\x0e\\xaf\\x0f\\x0d\\x58\\x5a\\xcf\\x5e\\xdd\\x1f\\x64\\x8a\\xb5\\\n\\xd8\\x27\\x47\\x74\\xf4\\x1d\\x7b\\x57\\xbf\\xd3\\xff\\x00\\x14\\xb8\\x6d\\x41\\\n\\x62\\x77\\x3f\\x5d\\xf9\\x40\\x0b\\x87\\x20\\x1a\\x6d\\x90\\x9f\\xb0\\x85\\xb3\\\n\\xbf\\x91\\xfd\\x3f\\x88\\x7b\\x59\\xb4\\x96\\xdd\\x03\\xc0\\xae\\x43\\x86\\x19\\\n\\x81\\xaa\\x33\\x49\\x4a\\xc3\\xb5\\x48\\xde\\x0c\\xd9\\x04\\x40\\x08\\x86\\x8c\\\n\\x81\\x7a\\x00\\xb3\\xae\\x9e\\x6c\\x04\\x37\\x4c\\x0c\\x43\\x28\\x9b\\xde\\x1b\\\n\\x81\\x4e\\x80\\x56\\xa0\\x84\\x56\\x95\\x07\\xae\\x41\\x0e\\xb9\\x22\\x60\\x44\\\n\\x48\\x1a\\x00\\x5a\\x89\\xb1\\xff\\x00\\x48\\xf2\\x57\\x80\\x30\\x0d\\x06\\xef\\\n\\xa5\\x3b\\x83\\xc1\\x0d\\xe3\\xa6\\xc0\\x22\\x68\\x03\\x3b\\xb9\\xf2\\x76\\x22\\\n\\x2d\\xe1\\x33\\x8e\\xb8\\xbf\\xe1\\xdf\\x99\\x9f\\xce\\x2a\\x28\\x15\\x11\\xa0\\\n\\x27\\x77\\xbc\\xf5\\xa7\\x6f\\x7b\\xc4\\x3b\\x75\\x2f\\x8f\\x41\\x55\\xcf\\xc8\\\n\\x3e\\x38\\x67\\x6d\\x1b\\x89\\xb0\\x6e\\xc4\\x28\\x35\\x70\\xde\\xf9\\x37\\x60\\\n\\x63\\x50\\x2d\\xb7\\x5d\\xd5\\x03\\x1a\\x7d\\x6d\\xac\\x28\\x00\\x00\\xe9\\x8f\\\n\\xd6\\xc3\\xa8\\xac\\xb3\\x76\\x66\\x90\\x11\\x58\\x22\\x2e\\x81\\x5e\\xfc\\xe8\\\n\\x5d\\xeb\\x90\\xc0\\x0d\\x6a\\x2a\\x88\\x42\\x60\\xff\\x00\\xa1\\x7a\\xbc\\x84\\\n\\x2b\\x43\\x33\\x7a\\xc6\\xe2\\x3d\\x88\\x5b\\x2a\\x72\\xc1\\xd4\\x04\\x47\\x66\\\n\\x1e\\xb1\\xdd\\xaa\\x63\\xea\\xb4\\x97\\x68\\xb6\\x0a\\x98\\xcb\\x3b\\x7c\\x5e\\\n\\x83\\xec\\x02\\xdd\\xee\\xcf\\x31\\xb5\\xfe\\x7b\\xd7\\xf7\\x89\\xb0\\xa9\\x3a\\\n\\x74\\x34\\x1f\\x97\\xe4\\x6f\\xf9\\xc0\\x24\\xac\\x05\\x17\\x5e\\x8c\\xbd\\xff\\\n\\x00\\x21\\xa8\\x59\\xca\\x92\\xab\\x1d\\xe4\\x01\\x55\\x2a\\x0f\\x4f\\xac\\xf7\\\n\\x80\\x6f\\x95\\x72\\x3d\\xae\\x92\\x88\\x80\\x91\\x1c\\xef\\x93\\x64\\x0a\\xc9\\\n\\x6d\\x30\\xd8\\xcc\\x7c\\x9b\\xef\\x75\\x41\\x85\\x82\\x50\\x91\\xd5\\xdb\\xe5\\\n\\x3c\\x8c\\xbc\\x5f\\x18\\x62\\xec\\x5c\\x4c\\x06\\x92\\x94\\xf3\\xa2\\x29\\x2c\\\n\\xa8\\x35\\x22\\x2a\\x83\\x15\\x56\\x29\\x08\\x60\\x30\\x00\\x42\\x50\\x0b\\xac\\\n\\xa9\\x61\\xd5\\xfd\\xd1\\x9c\\x4a\\x00\\x2a\\x44\\x97\\x08\\xb4\\x60\\x14\\x40\\\n\\x2a\\x22\\xf0\\xb0\\xcd\\x80\\x87\\x89\\x07\\xe2\\x30\\x36\\x99\\x8a\\x21\\x3b\\\n\\x44\\x79\\xa0\\x51\\xb1\\x50\\x90\\x5e\\x74\\xa2\\x3d\\xb6\\xda\\x6d\\xcc\\x12\\\n\\x8a\\x9c\\x24\\x92\\x49\\x5b\\xd5\\x88\\xe8\\xa3\\xc7\\x12\\x81\\x37\\x83\\xd5\\\n\\x70\\x09\\x30\\xc7\\x50\\x0b\\x05\\x00\\x1a\\x00\\x2c\\x00\\xb4\\x99\\x72\\x2e\\\n\\x68\\x90\\x27\\x0b\\x28\\x54\\x49\\xd4\\x2a\\xcf\\x80\\x15\\x7c\\x42\\xfe\\x57\\\n\\x15\\x83\\x96\\x8c\\x29\\x1c\\x3b\\xb6\\x98\\xe3\\x7f\\x8b\\x39\\x7a\\x70\\xb5\\\n\\x05\\x1b\\xe1\\x37\\xf4\\xf0\\x05\\x98\\x35\\x49\\x8a\\x11\\x84\\x44\\x3b\\x5a\\\n\\x2f\\x31\\x22\\x22\\x68\\xa5\\xd2\\xea\\x46\\x15\\xb5\\xaf\\x18\\x41\\x62\\x9a\\\n\\xa3\\x54\\x66\\xac\\xed\\xa1\\xc4\\xa1\\xa3\\xb9\\x32\\x31\\x15\\xac\\x54\\x1a\\\n\\xe8\\x18\\xce\\x65\\x01\\x5c\\x3e\\xac\\x20\\xa3\\x86\\x3b\\x44\\x7b\\xd4\\x63\\\n\\x79\\xdb\\xa1\\xac\\x6a\\x43\\x7a\\x6f\\xce\\x2b\\xe5\\x33\\x00\\x61\\x02\\xa1\\\n\\xdb\\x4a\\xf7\\xc1\\x0a\\x56\\x10\\x85\\x0d\\x43\\x21\\xbd\\x3d\\xff\\x00\\x38\\\n\\x53\\xe2\\xe1\\x14\\x83\\x44\\xd7\\x44\\x2d\\xc3\\x3d\\xe1\\xed\\x08\\x03\\x04\\\n\\x14\\x76\\x84\\xb5\\xad\\x1d\\x51\\xcc\\xcc\\xb3\\xa5\\x35\\xad\\x20\\xc2\\x24\\\n\\x04\\x94\\x40\\xe5\\x24\\xae\\x05\\x4c\\x24\\x53\\xb5\\x8a\\x31\\x42\\xb7\\x19\\\n\\x4c\\x56\\x16\\xfd\\x80\\x3d\\xf8\\x9d\\xcc\\xce\\x45\\xc2\\xed\\x64\\xb5\\xef\\\n\\x59\\x55\\x44\\x1c\\xe9\\xec\\x02\\xd3\\x09\\x6b\\x3b\\x4a\\x65\\xf5\\x09\\x74\\\n\\x12\\x18\\xe2\\xad\\x58\\xb2\\x95\\x56\\x39\\x74\\x8c\\xb7\\xf8\\x02\\x58\\x83\\\n\\x44\\x0c\\xae\\x89\\x7b\\x1f\\x7d\\x86\\x70\\x31\\x21\\x1e\\xc4\\x6c\\x74\\xa2\\\n\\x81\\x92\\x63\\xd9\\x09\\xa5\\x20\\x68\\x98\\x86\\x18\\xe4\\x54\\xda\\x47\\xe2\\\n\\xd3\\x4c\\x0a\\x81\\x61\\x63\\x41\\x40\\x86\\x85\\x0c\\x9c\\x74\\x00\\x10\\x0a\\\n\\x0d\\x00\\x70\\x23\\x27\\x78\\xa3\\x00\\x3b\\x1b\\x63\\xd4\\x42\\x1a\\x2a\\x78\\\n\\x9f\\x0c\\x82\\x4a\\x48\\x01\\x15\\x50\\xb0\\xc1\\x51\\xd5\\x68\\x9c\\x9a\\xd0\\\n\\x81\\x41\\xbd\\x86\\x41\\x3a\\x6a\\xb4\\x42\\x3b\\xc5\\x0c\\x4f\\x5a\\x63\\x50\\\n\\xb0\\x68\\x89\\x92\\x3d\\x1b\\x87\\x28\\x80\\x68\\xa2\\x29\\x75\\xda\\x88\\xf4\\\n\\x78\\x58\\x21\\xbf\\x6f\\xd2\\x91\\x4e\\x42\\xb6\\x60\\x57\\x82\\xb0\\x10\\xb1\\\n\\x8e\\x84\\x20\\x73\\x10\\x0d\\x05\\x4a\\xf2\\x54\\x48\\xa9\\x22\\xd1\\x40\\xb2\\\n\\x97\\x1a\\xd8\\x85\\x56\\x66\\x42\\x09\\x00\\x3b\\xbd\\x1a\\x7b\\xfb\\xc5\\xfa\\\n\\x55\\x91\\x4b\\x85\\x7a\\x87\\x68\\x7e\\x79\\xc2\\x23\\x08\\x25\\xc5\\xc3\\x34\\\n\\x33\\xae\\x8a\\xaf\\x91\\x79\\xad\\x30\\xa0\\x9b\\xec\\x9f\\x87\\x47\\xe0\\x9d\\\n\\x4a\\xeb\\xdd\\xa8\\xeb\\xe3\\x3e\\x7f\\xfe\\x68\\xce\\xb9\\x41\\xed\\x3f\\x7d\\\n\\x96\\x5f\\xcc\\xdf\\xfc\\x27\\x07\\xc5\\xb4\\x09\\x91\\x82\\xfc\\x6f\\xe7\\xfb\\\n\\xca\\x17\\x88\\x5f\\xdd\\xa1\\x3c\\xd6\\xed\\xe8\\xeb\\x80\\x8c\\x61\\x44\\xf1\\\n\\x01\\xd7\\xf9\\xff\\x00\\x97\\xf8\\xc8\\x56\\xc2\\x20\\xf4\\x41\\xef\\x46\\xfd\\\n\\xed\\x3e\\xf0\\x13\\xe3\\x84\\xcf\\x6e\\x8d\\xff\\x00\\xcf\\xb3\\x88\\x20\\x2f\\\n\\x43\\x19\\xf2\\xe1\\xdd\\xf8\\x9a\\xfd\\xe2\\xa9\\x2a\\xcb\\xac\\xf6\\x50\\x64\\\n\\x8b\\x03\\xb9\\x31\\x38\\x49\\x15\\x47\\xc0\\x17\\x21\\x21\\x3b\\x19\\x4e\\x8e\\\n\\x21\\x85\\x59\\x3b\\xac\\xd3\\xf9\\x42\\x65\\xf7\\x83\\x31\\x97\\x37\\xeb\\xff\\\n\\x00\\xe8\\x68\\x6e\\x0b\\xce\\xef\\xee\\x77\\xf6\\x4e\\xb5\\xbd\\xfe\\xa6\\x79\\\n\\xcc\\x83\\x0c\\x1a\\xcd\\x17\\xf9\\xe7\\xf2\\xb6\\xf0\\x95\\x4c\\x2d\\xac\\x81\\\n\\x96\\x92\\x35\\xff\\x00\\xeb\\xbe\\x1a\\x13\\x16\\x06\\xae\\x3c\\x0b\\xe1\\x45\\\n\\xb9\\xe6\\x70\\xb1\\x1d\\x3a\\xa8\\xb0\\x57\\x0f\\xaa\\xe9\\x98\\x1c\\x61\\x6c\\\n\\x41\\x2d\\x06\\xe0\\xac\\x1e\\x83\\x76\\x43\\x80\\x54\\x34\\x04\\xbb\\xb9\\x63\\\n\\x47\\x1b\\x5b\\x48\\xc6\\xa5\\x14\\x0a\\x40\\x28\\xa9\\x1e\\x62\\x98\\x1d\\x9e\\\n\\xa9\\xc3\\xe3\\xfe\\x20\\x6c\\x67\\xbf\\xa4\\x9f\\xf4\\x68\\xd5\\x6c\\x40\\x42\\\n\\xaa\\x20\\xa1\\x3b\\xc9\\x7e\\x37\\x8b\\x07\\x03\\xc7\\x62\\x40\\x41\\x10\\x15\\\n\\x08\\x38\\x00\\x3e\\x2c\\x7e\\xbf\\xaf\\xfb\\x7f\\xf7\\xdf\\x22\\x62\\x13\\x12\\\n\\xeb\\x82\\xcf\\x8a\\x9d\\x3f\\xe3\\x78\\x06\\x13\\xb4\\xa1\\x08\\x80\\x19\\x13\\\n\\x6f\\x69\\xf3\\xac\\x45\\x96\\x6e\\x84\\xa1\\xa6\\xd2\\xab\\x81\\x85\\xa8\\x2f\\\n\\x00\\xe8\\x28\\x89\\x06\\xb2\\x38\\x04\\x74\\x5f\\x7c\\xd2\\xea\\x28\\x89\\xa5\\\n\\x26\\x2a\\x8f\\x8b\\xf8\\x36\\xbc\\xb0\\x00\\x1c\\x35\\x46\\xf4\\x15\\x2f\\x63\\\n\\x40\\x00\\x08\\x31\\xc5\\x09\\xf4\\xed\\x1f\\x3b\\xfd\\xce\\x1d\\xb1\\xd2\\x8c\\\n\\x2c\\x63\\x1b\\x5e\\xf5\\x3e\\x99\\x38\\x84\\xad\\x47\\xc0\\x4b\\xbe\\xda\\x1b\\\n\\xfe\\x9d\\xf1\\xed\\xb0\\x68\\x2b\\xd8\\xa1\\x15\\x30\\xfd\\x98\\xf7\\xc6\\xcb\\\n\\x0a\\x6a\\x6a\\x63\\xf7\\xfd\\xa6\\xdb\\x24\\x6d\\x4c\\xa8\\x84\\xbd\\xb5\\xa8\\\n\\x81\\xf6\\x55\\x17\\x51\\x10\\x0b\\xf0\\x2e\\x5c\\x04\\xff\\x00\\x6e\\xf7\\xca\\\n\\x4c\\x54\\x76\\x60\\x02\\x07\\x2a\\x7a\\x3a\\x1e\\xe3\\xe1\\x8c\\xe9\\x0d\\x74\\\n\\x6a\\x91\\x40\\x83\\xde\\xf8\\x21\\x68\\x4a\\x50\\x25\\x12\\xf4\\xa1\\x0a\\x1a\\\n\\x34\\x04\\x97\\x04\\x68\\xeb\\xb6\\x3e\\xaa\\x48\\xe2\\x9f\\x57\\x80\\xe0\\x58\\\n\\xd1\\xa0\\xc6\\xec\\x44\\x0a\\x88\\x95\\xc4\\xf2\\x84\\x41\\x15\\x15\\x22\\xdc\\\n\\x4c\\x4a\\x5b\\xc6\\xf1\\x5c\\x16\\x54\\xa0\\xa3\\xb0\\x08\\xca\\x1f\\x1e\\x3b\\\n\\xaa\\xb4\\x36\\x07\\x1d\\xf8\\xc1\\xc5\\x2e\\xd7\\x74\\x39\\xaa\\x75\\x5a\\x78\\\n\\x4a\\x02\\x32\\x49\\x60\\x91\\xa0\\x05\\x00\\x73\\xd2\\x79\\xde\\x03\\xde\\x6c\\\n\\xbc\\x01\\x9d\\x24\\xb8\\x9f\\x02\\x77\\xfe\\xb4\\x8f\\x47\\x24\\x88\\xa0\\xcc\\\n\\x01\\x99\\x0b\\x29\\xa4\\x5e\\x8c\\xee\\xa8\\x09\\x64\\x00\\x28\\x83\\x41\\x56\\\n\\xb8\\x5d\\x30\\x6b\\x61\\x0c\\x0a\\xc4\\x2a\\xfa\\x8a\\x81\\x0e\\xfb\\x18\\xaa\\\n\\xa0\\x3a\\x8d\\x6a\\xd6\\x69\\x0b\\xd3\\x0d\\x37\\x87\\x07\\xd5\\x0b\\x11\\xa4\\\n\\x86\\x82\\x24\\x30\\x12\\x21\\x80\\xdc\\xaf\\xf9\\x85\\x3d\\xa0\\x54\\x3a\\xc1\\\n\\x56\\xac\\x90\\x94\\x1a\\x50\\xb6\\x83\\x8a\\x05\\xe0\\x0d\\x08\\x05\\x79\\x0b\\\n\\xb7\\x68\\x0d\\x5e\\xa1\\x14\\x7b\\x44\\x24\\x41\\x5a\\x83\\xa8\\xb5\\x02\\x80\\\n\\x2b\\x4f\\x1b\\x8f\\x69\\x68\\xb9\\xa8\\x3d\\x45\\xa1\\x30\\x0f\\x25\\x22\\x2a\\\n\\x9c\\xb9\\x83\\x20\\x2f\\x81\\xa0\\x63\\x30\\x36\\x58\\x18\\xa2\\xce\\xc8\\x4a\\\n\\x12\\xe0\\xe0\\x4a\\x23\\x81\\xa1\\x1d\\x0f\\xea\\xa6\\xda\\xf1\\x0c\\x25\\x3d\\\n\\xa2\\x84\\xff\\x00\\x40\\x36\\xe6\\x5c\\xb0\\x51\\x81\\x72\\x5e\\xd1\\x50\\xb1\\\n\\xc4\\x62\\x4d\\x2a\\xaa\\xf1\\xc5\\x2a\\x23\\x6f\\xae\\xe1\\xfd\\x91\\x7d\\x75\\\n\\xe2\\x75\\x01\\x35\\x31\\x3c\\xd8\\x44\\x9d\\xf8\\x53\\xbe\\x14\\x6c\\x52\\x21\\\n\\xa9\\x7a\\xbf\\x2a\\x29\\x4d\\xda\\x36\\x71\\x03\\x6f\\x63\\x22\\xd1\\xf7\\x0f\\\n\\x73\\xef\\xe5\\x38\\x68\\x68\\xae\\x1a\\xf7\\x57\\x7b\\x85\\x85\\x9f\\x7d\\xe0\\\n\\x0c\\x81\\x00\\xc6\\x0a\\xe0\\x3d\\x90\\xc2\\xfb\\x71\\x4e\\x0a\\x1a\\x06\\xc6\\\n\\x34\\x8d\\x31\\xb7\\xd3\\xf8\\xf7\\xc1\\x21\\x2a\\x46\\x61\\x56\\x2f\\xfd\\x23\\\n\\x0a\\xbf\\x8f\\x08\\x07\\x70\\x08\\x6e\\x26\\xb2\\x6b\\x45\\xee\\x2c\\xba\\x50\\\n\\x50\\xa3\\x10\\x66\\xbe\\xed\\x5f\\x10\\x92\\x8e\\xb5\\x03\\x54\\x2a\\xd1\\x56\\\n\\x44\\xdc\\x5b\\x9f\\xb2\\x7e\\x9c\\xc3\\xa5\\x97\\x3d\\xfe\\x59\\xff\\x00\\xeb\\\n\\xfd\\xe1\\xd2\\x0f\\x55\\x3f\\x83\\x3f\\x8f\\x9b\\x4b\\x2b\\x0e\\x1a\\x2f\\x57\\\n\\x5d\\x08\\x24\\xef\\x53\\xff\\x00\\xa0\\xaa\\x1c\\x9c\\x51\\x06\\x8a\\xfa\\x75\\\n\\xac\\x27\\x7f\\xce\\xc7\\x77\\xa2\\x58\\x04\\x5f\\x31\\x76\\x07\\x88\\xf3\\xc5\\\n\\x17\\x17\\x54\\xa0\\x50\\x8e\\x87\\xb7\\xe1\\x3c\\x63\\xe0\\x16\\x24\\x11\\xae\\\n\\x2b\\xe5\\xc1\\xe2\\xbf\\xe2\\xe3\\x10\\x51\\x57\\x57\\x4f\\x45\\xd0\\xa2\\x5c\\\n\\x03\\xc0\\x52\\x84\\xf6\\x20\\xd4\\xad\\xd7\\x2e\\xd3\\xa5\\xe4\\xf3\\x81\\x53\\\n\\x06\\xfb\\x1a\\x29\\x4f\\x81\\x36\\xe0\\x9e\\xb2\\x40\\x00\\xb6\\x99\\x8e\\x82\\\n\\xd1\\x1e\\x19\\xe9\\xc0\\xb6\\x81\\x4b\\x53\\x57\\x5f\\x7a\\x33\\x9f\\x62\\x9f\\\n\\xf8\\x5c\\x0e\\xec\\xeb\\x1c\\x3f\\xe7\\x01\\x20\\x9c\\x7d\\xbf\\x71\\xea\\x77\\\n\\xe7\\xbc\\x71\\xb8\\x58\\x2b\\x75\\xfd\\x5c\\xa5\\xfc\\x0f\\xef\\x3a\\x0c\\xd2\\\n\\x50\\x33\\xfe\\x03\\xf6\\x6b\\xd3\\x2f\\x03\\xfa\\x82\\xa5\\x4d\\x2b\\xd6\\x7f\\\n\\x3e\\x7e\\xd4\\xd2\\x4d\\x7a\\xc0\\xd9\\xd8\\xe8\\x92\\x4b\\xff\\x00\\x08\\x9b\\\n\\x89\\x51\\x05\\x02\\x33\\xa2\\x5c\\x87\\xe7\\x40\\x70\\xc7\\x90\\x79\\x86\\xa1\\\n\\x8d\\xf8\\xfc\\x7a\\x03\\xcc\\x6a\\x38\\x3a\\x1a\\x4f\\x84\\xeb\\x3a\\xff\\x00\\\n\\xbe\\x90\\xab\\x8f\\x6a\\x78\\x9f\\x30\\x6e\\xde\\xa1\\xd1\\x7b\\x54\\x5f\\x5d\\\n\\x3d\\x88\\x8e\\xcf\\x17\\xbb\\x69\\xe0\\x60\\x2c\\x00\\x42\\x26\\xc6\\x8b\\x17\\\n\\x03\\xb2\\xdb\\x28\\xf1\\x46\\xef\\x6b\\x6d\\x14\\x69\\x02\\xfd\\xb2\\xfb\\xef\\\n\\x04\\x90\\x66\\xc0\\x17\\xee\\x67\\x17\\x4c\\x89\\x6b\\x48\\x89\\xbe\\x12\\x61\\\n\\xed\\xd1\\xc6\\x34\\x00\\x05\\x88\\x9e\\xba\\x3b\\x37\\xb4\\x34\\x20\\x6d\\x0d\\\n\\x62\\x25\\x8c\\xd6\\x2b\\x6f\\x42\\xf4\\xbc\\x1b\\xa3\\x55\\x5a\\x10\\x37\\xbf\\\n\\x42\\x12\\x3d\\x93\\x82\\x28\\x5d\\x95\\x46\\xe1\\x27\\xc0\\x80\\x43\\x0a\\xef\\\n\\x69\\x01\\x9c\\xe8\\x08\\x56\\x08\\x9d\\xad\\x40\\xf3\\x4d\\xa8\\xc1\\x3c\\x30\\\n\\x56\\x28\\x14\\x6b\\x78\\x6a\\x20\\x63\\x10\\x28\\x94\\xc6\\x43\\xc2\\x52\\x6b\\\n\\x43\\x8d\\xb4\\x92\\xc8\\xa8\\x16\\x2f\\x9a\\x2a\\x15\\xb1\\x8a\\xb1\\xa8\\x05\\\n\\x4e\\x17\\x45\\x82\\x28\\x3e\\x8e\\x82\\x35\\x50\\x90\\x2d\\x05\\x85\\xc5\\x45\\\n\\x8e\\x3d\\x2d\\xe8\\x10\\x66\\x0a\\x0b\\x00\\x51\\x51\\x02\\xd4\\xbd\\x3a\\x38\\\n\\xc0\\x02\\xbc\\x08\\x26\\x34\\x7b\\x55\\xbe\\x37\\x1c\\x1c\\xb5\\x15\\xd4\\x3d\\\n\\x95\\xd2\\x14\\x62\\xc4\\x14\\x40\\xd9\\xa6\\x95\\x44\\x34\\x92\\x0d\\x18\\x47\\\n\\xee\\x2b\\x1a\\x20\\x03\\x09\\xa7\\x66\\x90\\x20\\xba\\x9e\\x79\\xc5\\x39\\x2e\\\n\\xc6\\x06\\xcf\\x4e\\x84\\x9a\\x67\\xe7\\x2a\\x32\\x41\\x28\\x83\\x98\\x82\\x90\\\n\\xc4\\xf1\\x10\\xe0\\xc1\\xe1\\x4a\\xa8\\xac\\x41\\x8c\\x05\\x10\\x01\\xa4\\xe9\\\n\\x5b\\x8a\\x88\\x42\\xae\\xc1\\x51\\x40\\xc1\\x9c\\x62\\xce\\x89\\xb5\\x11\\x0a\\\n\\x6a\\xad\\xaf\\x52\\x2d\\x37\\x2f\\xb8\\x18\\xc4\\x45\\x6a\\x86\\xa4\\xa5\\xe1\\\n\\xc2\\x82\\x20\\xa0\\xc2\\x5d\\xc1\\x4a\\x71\\x9a\\xbb\\xf8\\x3e\\xf9\\x81\\x40\\\n\\x0d\\x54\\xdc\\x15\\x57\\x4a\\xa9\\x49\\x29\\x2d\\x18\\x78\\x76\\xdc\\x1b\\x9d\\\n\\xf4\\x26\\x72\\x84\\x16\\x74\\x2c\\xaf\\xa3\\x86\\x7b\\xda\\x85\\x77\\x95\\xdc\\\n\\x20\\xda\\x02\\x37\\x40\\x83\\x46\\x3f\\x3b\\x50\\x6a\\x4d\\x7b\\x01\\xd1\\x94\\\n\\x4c\\x99\\x97\\xc4\\x24\\xc5\\x21\\xc9\\x5e\\x8a\\x10\\x4b\\x35\\xdf\\xb7\\xa8\\\n\\xd4\\xe4\\x34\\xfa\\x4b\\xb5\\x0a\\x60\\x64\\x93\\xdf\\xbd\\x3c\\x5d\\x62\\x4b\\\n\\x9d\\xf5\\xff\\x00\\x1c\\x60\\xa5\\x19\\x3e\\xad\\x9a\\x1f\\x70\\xf8\\x3f\\x38\\\n\\xf8\\x44\\x2b\\xae\\x29\\x32\\x23\\xd7\\xd3\\xca\\x7c\\x45\\x6e\\x05\\xa9\\x16\\\n\\x26\\x02\\x8e\\x69\\x34\\x9d\\xbc\\xb6\\x6d\\x00\\x01\\xfa\\x66\\x07\\xce\\xda\\\n\\x76\\xf0\\x49\\x01\\x90\\x44\\x4c\\xff\\x00\\x45\\xfb\\x6d\\x3d\\xf5\\xfd\\x4e\\\n\\x9b\\x67\\x85\\x33\\x7e\\x3a\\x74\\xfd\\x50\\xf0\\x76\\x1f\\x6c\\x1f\\x98\\xd3\\\n\\x7f\\xfe\\x79\\xc6\\x8b\\x74\\x46\\xe1\\x7f\\xcb\\x8b\\x6c\\xf2\\xe6\\xf3\\x23\\\n\\x85\\xb6\\x8d\\xd0\\x19\\xd6\\x98\\xdb\\xa4\\x0a\\xa1\\xb2\\xd0\\xa0\\x8b\\x22\\\n\\x2a\\x85\\x7b\\x43\\xdd\\x83\\xc9\\x75\\x91\\x8e\\xd1\\xaa\\x7a\\x2d\\x18\\x90\\\n\\xfb\\xc0\\x1d\\xa4\\xb6\\x15\\x0a\\x89\\xa8\\x35\\x36\\x16\\x5a\\x13\\x70\\x95\\\n\\x7b\\x2a\\xcd\\x8a\\x59\\x7a\\x6b\\x0a\\x70\\x0d\\x52\\x8c\\x48\\xc8\\x5e\\xad\\\n\\xbd\\xe6\\x3e\\xe7\\x35\\xa4\\x55\\xdf\\x59\\x55\\x61\\xd2\\xd8\\x18\\x59\\x66\\\n\\xe9\\x82\\x20\\x22\\x7b\\x05\\x28\\xe9\\xd4\\x01\\xe3\\xb3\\x51\\x8a\\x22\\x0e\\\n\\x52\\x02\\x42\\x13\\x0a\\x9e\\x95\\x32\\x81\\x0a\\x28\\xd7\\xd1\\x24\\x46\\x7f\\\n\\xa8\\x92\\xe7\\xfe\\xff\\x00\\x98\\xf7\\xff\\x00\\xbf\\xe6\\x85\\x4a\\x44\\x3f\\\n\\xec\\x0c\\x3e\\xcf\\xb6\\xff\\x00\\x79\\x08\\x94\\x11\\x62\\x28\\x42\\x69\\x83\\\n\\xd6\\x7c\\xeb\\xc8\\x7c\\x1c\\xc1\\x75\\x6c\\x13\\x22\\x3d\\x5f\\xbf\\x9f\\xdf\\\n\\xfb\\x3f\\xfd\\x6c\\x99\\x7f\\xea\\x80\\x2e\\x02\\x6b\\x1e\\x9f\\x3e\\x13\\x7e\\\n\\xdc\\xbb\\xcd\\x20\\x00\\x2d\\x6d\\x64\\x5b\\xd1\\xdd\\xb1\\x3e\\x51\\xe7\\xae\\\n\\x13\\x08\\xac\\x62\\x52\\x25\\xdc\\x63\\xe7\\xef\\x04\\xb8\\x9d\\xa2\\xf4\\x1f\\\n\\xf1\\xf3\\xbf\\x2f\\x36\\x25\\x4b\\xd3\\x82\\xc2\\x78\\xa1\\xef\\xeb\\x3e\\xf0\\\n\\xc4\\x0a\\xf4\\xa8\\x52\\x5b\\xd8\\x84\\xcf\\xe1\\xfe\\x90\\x88\\xee\\x11\\x2f\\\n\\x58\\x1c\\xdd\\x08\\x80\\xd3\\xac\\x46\\x9d\\xbc\\x19\\x1a\\xed\\x15\\x07\\xec\\\n\\xde\\x10\\xec\\x0c\\x31\\x83\\x11\\xbb\\xbb\\x19\\x73\\x11\\x05\\x94\\x11\\x6d\\\n\\x0a\\xbd\\x0a\\x54\\x48\\xe4\\x85\\x68\\x5a\\x8f\\x66\\xc2\\x16\\x36\\x22\\x26\\\n\\x85\\x5a\\x22\\x11\\xe5\\x91\\x4c\\xec\\xa6\\xa3\\x54\\xf4\\x0c\\x0c\\xd7\\x85\\\n\\xe1\\xd7\\x8a\\x8e\\x35\\xb0\\x8e\\x75\\xa7\\xb9\\x4f\\x06\\x7c\\x52\\x32\\x44\\\n\\x04\\xa0\\x04\\x71\\xab\\x24\\x70\\x15\\x2c\\xe2\\x02\\x00\\x53\\xb0\\x87\\x9d\\\n\\x0f\\x83\\xc3\\xb0\\x15\\xe2\\x14\\x32\\xa6\\x4e\\xe6\\xdb\\xf5\\x49\\xc2\\xf7\\\n\\x35\\x89\\x0d\\x48\\xc7\\x45\\x27\\x8a\\x45\\x44\\xe2\\x6b\\xa4\\x95\\x40\\x9e\\\n\\x2a\\x80\\x8a\\x10\\x31\\x01\\x62\\x7b\\xd7\\x47\\x54\\x02\\x58\\x3e\\xd1\\xab\\\n\\x41\\x88\\xf3\\x6c\\x41\\x06\\xd3\\xef\\x41\\xb8\\x74\\x6a\\xdf\\xf1\\x24\\x52\\\n\\x6f\\xfd\\x23\\xba\\xfb\\xdf\\x67\\xfa\\x72\\xdc\\xb2\\x4f\\xb2\\x82\\xb2\\x98\\\n\\x53\\xb6\\x3f\\x9d\\x0b\\x8d\\x9b\\x60\\xbe\\x80\\x88\\x8b\\x81\\x5a\\x0f\\xa5\\\n\\xc3\\x43\\x21\\x0d\\x95\\x8e\\x61\\x55\\x4a\\xa9\\x91\\x09\\x58\\xea\\x61\\x3f\\\n\\x7c\\x24\\x56\\x28\\xc0\\xc6\\x70\\x71\\x71\\xa9\\xb2\\x80\\x29\\x29\\xba\\xb2\\\n\\x31\\x84\\xb2\\x1e\\x44\\x15\\xba\\x20\\x30\\xd6\\x89\\x06\\xdd\\x70\\x01\\x25\\\n\\xe0\\xa1\\xb3\\xa7\\x07\\x5a\\xbd\\xec\\x70\\x69\\xc6\\x3d\\x22\\x0c\\x91\\xf5\\\n\\x54\\x13\\x03\\x1c\\x89\\x49\\xff\\x00\\xb1\\xb0\\x41\\x18\\x02\\xb6\\x27\\x94\\\n\\xc8\\xd7\\xdb\\x4b\\x03\\xa5\\xdb\\xa7\\x44\\xd8\\x7d\\x06\\x68\\x48\\x65\\xb9\\\n\\x15\\x8f\\x57\\x7e\\xea\\x04\\x38\\x3c\\x5d\\x1e\\xcb\\x5a\\x12\\x3d\\x18\\x89\\\n\\x3e\\x82\\xb2\\xea\\x64\\x33\\x12\\x14\\x84\\xa3\\x63\\xa0\\x99\\xda\\xad\\x3d\\\n\\x01\\x55\\x61\\x41\\x90\\xfe\\xf7\\xd4\\x2a\\x5b\\xda\\x85\\x81\\xf8\\xe3\\x5d\\\n\\xf9\\x74\\xef\\xf6\\x82\\xbd\\x03\\x7b\\x34\\x69\\xd9\\x0e\\xd8\\x3f\\xd8\\xb0\\\n\\x5e\\x1c\\x41\\xa1\\xd1\\x68\\x10\\xb2\\xbd\\x8d\\xff\\x00\\x2b\\xc3\\xdd\\x4b\\\n\\xf2\\x22\\x54\\xc8\\x33\\xbb\\x7e\\x3e\\xff\\x00\\xff\\x00\\x19\\x0c\\x10\\xeb\\\n\\xf5\\x2f\\x8d\\xc7\\xd9\\x3f\\x3b\\x9b\\x7c\\x26\\x4c\\xbd\\x90\\xf4\\x76\\x48\\\n\\xd5\\x1e\\x46\\xb6\\xc6\\x85\\x20\\xde\\xac\\xa7\\xb8\\x6e\\x47\\x4b\\x87\\xce\\\n\\x98\\x43\\xec\\xfd\\xd4\\xdf\\xfa\\x39\\x68\\xc8\\x32\\x11\\x82\\x88\\xd4\\xd0\\\n\\xea\\x3d\\x0f\\xef\\x2a\\xbb\\x11\\xe2\\x01\\xe4\\x36\\xf5\\x57\\xff\\x00\\x89\\\n\\xcd\\xbb\\x29\\x0e\\x96\\xdf\\xbd\\xbd\\xfe\\x5e\\x34\\x24\\x31\\x46\\x9b\\x2f\\\n\\x79\\xbb\\x4f\\x0e\\xba\\xfa\\x46\\x3b\\x44\\x40\\x42\\xec\\x83\\x89\\xfe\\x13\\\n\\x9b\\x36\\x7f\\xb9\\xc1\\x4d\\x88\\x2a\\x80\\x37\\xde\\x38\\x6a\\x53\\x3f\\x86\\\n\\x5e\\xdf\\xf1\\xc2\\xd6\\x82\\x28\\x67\\x5e\\x86\\x27\\x53\\xb8\\x3c\\x4e\\x5a\\\n\\xc0\\x20\\x04\\xd4\\xad\\xda\\x8f\\x45\\xcb\\xd8\\x47\\x10\\x60\\x69\\x09\\x1b\\\n\\x77\\xd2\\x50\\x08\\xe0\\xdd\\x53\\x46\\x21\\x6d\\x34\\x03\\x48\\x42\\x64\\x15\\\n\\x05\\xc7\\x23\\xb1\\x2a\\x3c\\x50\\x81\\x92\\x1a\\x04\\xf2\\x89\\xc8\\x88\\x60\\\n\\xfc\\x00\\x83\\x27\\xca\\xde\\xe3\\xf7\\x61\\x05\\x04\\x31\\xa7\\xb1\\x88\\x9b\\\n\\x96\\xbf\\xce\\xb9\\x45\\x21\\xa5\\x01\\x9f\\xda\\x39\\xe3\\xbe\\xf7\\xbc\\x68\\\n\\x61\\xee\\xdb\\xb3\\x2b\\x4e\\x89\\x33\\x09\\xaf\\x3d\\x62\\xc4\\x7e\\xbf\\xa5\\\n\\xbf\\x53\\x51\\x93\\x3a\\x22\\x02\\xe1\\x9f\\x01\\xd0\\x40\\x67\\x5f\\x57\\xdc\\\n\\x38\\xf9\\x1f\\xfe\\x3f\\xa7\\xe7\\xfd\\xfd\\xe0\\x9c\\xfb\\x5d\\x87\\x47\\x0b\\\n\\x9e\\xfb\\xb7\\x73\\x82\\xd4\\xc5\\x0d\\x29\\xd5\\xbe\\x7e\\x5f\\xef\\x5f\\x63\\\n\\xd8\\x95\\xff\\x00\\xe5\\x3d\\xf2\\x62\\xfc\\xff\\x00\\x78\\x20\\x3e\\x09\\x74\\\n\\xca\\xf3\\x1b\\x0f\\xf2\\x5c\\x93\\x80\\x7c\\xd3\\xdc\\xa6\\x7f\\xc5\\xc9\\x97\\\n\\xcb\\x9c\\x8b\\x65\\x8e\\x1d\\x52\\xe3\\x77\\xff\\x00\\xc3\\x78\\x0b\\x14\\xcf\\\n\\x44\\x21\\xae\\x8f\\xa6\\x97\\x6c\\x79\\x64\\x39\\x52\\xae\\x40\\x40\\x81\\x9b\\\n\\x15\\xa8\\xb0\\xa8\\x81\\x10\\x6b\\xfd\\x48\\x0b\\x13\\xba\\x5f\\x81\\x28\\x8d\\\n\\x31\\x48\\x99\\xdc\\xa6\\x53\\xe7\\x70\\xec\\x2b\\xc0\\x02\\x4c\\x68\\x6f\\x1b\\\n\\x2c\\x24\\x9d\\x08\\xb2\\x14\\x48\\xc4\\x30\\xad\\x15\\xee\\x93\\x40\\x51\\x58\\\n\\x62\\xdb\\xdb\\x96\\x95\\x21\\x42\\xf4\\xea\\x7c\\x83\\x1b\\x27\\x18\\x92\\x08\\\n\\x12\\x31\\x70\\x5c\\x94\\x86\\xc4\\xd4\\x5d\\x2a\\xee\\xae\\xe3\\x6a\\x07\\xa5\\\n\\x1b\\xd0\\x7e\\x7a\\xb2\\xfc\\xa0\\x2b\\x42\\x60\\x04\\x65\\x9a\\x1d\\xa2\\x70\\\n\\x74\\xa4\\xb0\\x4c\\xb1\\x60\\x97\\x25\\x50\\x14\\x0e\\x97\\x8c\\x16\\x70\\x3a\\\n\\x30\\xa0\\x34\\x00\\x33\\x85\\x52\\xa9\\x15\\xfb\\x90\\x4a\\x90\\x60\\xe9\\x10\\\n\\x00\\x51\\x10\\x96\\x04\\x12\\x11\\x63\\x4e\\xd2\\x5e\\x1e\\x40\\x2b\\x88\\x2a\\\n\\xdb\\x22\\x5b\\xbe\\x6a\\xab\\xdb\\xc6\\x5f\\x86\\x00\\xc2\\x75\\x48\\x26\\xdb\\\n\\xd0\\xdf\\x1c\\x66\\xd0\\x00\\x02\\xa0\\x13\\x23\\x6a\\x2c\\xd2\\x28\\x82\\x85\\\n\\x18\\x5b\\xd5\\x91\\x1e\\xe2\\x87\\xba\\x15\\xd7\\x04\\x10\\x2a\\x97\\x60\\x98\\\n\\x17\\x58\\x43\\x00\\x54\\xc3\\xcb\\xc6\\x55\\xa4\\x02\\x5a\\x08\\xb0\\x04\\x03\\\n\\xa4\\xe5\\x13\\x56\\xe0\\x61\\xe3\\x08\\x51\\x4e\\x8d\\x15\\x55\\x22\\x94\\x2e\\\n\\x02\\xb4\\x01\\xb4\\x82\\x8f\\x63\\x83\\xe9\\xd2\\xa8\\x99\\x66\\x23\\x6d\\x00\\\n\\x75\\x4f\\xe1\\x4c\\x6a\\x02\\x32\\xe2\\x59\\x13\\x25\\x2a\\x3b\\xdf\\x01\\x63\\\n\\x45\\x84\\x6c\\x0d\\x77\\x71\\xd2\\x75\\xd9\\xa3\\xe1\\x04\\x52\\xb8\\xf3\\x4d\\\n\\xe9\\xe0\\xe5\\x23\\xda\\x06\\x01\\x68\\x2a\\x94\\xc6\\xb4\\x28\\x1f\\x67\\xd2\\\n\\x29\\x99\\x4d\\xc5\\x01\\xe9\\x9f\\xee\\x7b\\xde\\xc1\\xa1\\x8c\\xc7\\xfb\\x36\\\n\\x7c\\x97\\x53\\xa7\\xde\\xe2\\xc4\\xaa\\xfc\\x6b\\xa3\\x12\\x77\\x04\\xba\\x52\\\n\\x75\\xdf\\x12\\x1d\\x67\\xa3\\x96\\xa0\\xfd\\xed\\x9f\\x39\\x3a\\x8a\\xf8\\x22\\\n\\xff\\x00\\x47\\xfa\\x7d\\xf9\\x38\\x54\\xa3\\x46\\x88\\x6e\\x0a\\x98\\xf6\\x7b\\\n\\x29\\xe3\\xc7\\x24\\x29\\x15\\x52\\xb7\\x5d\\xab\\x3d\\xae\\x4f\\x8e\\x10\\xb4\\\n\\x06\\x86\\xc6\\x24\\x86\\x81\\x7b\\xf7\\x29\\x27\\x08\\x42\\xa0\\x85\\x89\\xaa\\\n\\x9d\\xf4\\xf8\\x23\\xfa\\xcc\\xa8\\x4c\\x9d\\x0d\\xfe\\xe1\\x3d\\xff\\x00\\x3f\\\n\\xcc\\x89\\x9e\\x44\\x75\\x26\\x8e\\x88\\xd3\\x76\\x32\\xce\\x2a\\x05\\xd5\\x37\\\n\\x7a\\x2a\\x1d\\xfa\\xa4\\xdf\\x9e\\x2a\\x0d\\x0b\\x1e\\xea\\x4e\\xa4\\xf3\\xfc\\\n\\x97\\x2e\\x95\\x12\\x77\\x45\\x8e\\x33\\xa4\\x28\\x0e\\xdb\\x2a\\xf5\\x38\\xe9\\\n\\x40\\x15\\x33\\x22\\xac\\xeb\\xa3\\xff\\x00\\x17\\x33\\x98\\x36\\x90\\x4d\\x1e\\\n\\x98\\x89\\xfd\\xbf\\x92\\x3b\\xce\\xc4\\x90\\x43\\xc0\\x03\\xa2\\x46\\x07\\x45\\\n\\x4e\\x09\\x14\\x41\\xb1\\x92\\x21\\x63\\x4e\\xd6\\x6c\\x6c\\x62\\x5c\\xaa\\xb6\\\n\\xa4\\x0a\\x01\\x12\\x36\\x85\\x0f\\x85\\x03\\x35\\xbd\\x94\\x61\\x97\\x22\\x76\\\n\\xd2\\x94\\x6f\\x04\\x4b\\x23\\x64\\xb0\\x14\\x65\\xd8\\xd5\\x01\\x50\\x4d\\x8a\\\n\\x57\\xdf\\xbd\\x6d\\xf7\\xfe\\x37\\x82\\x39\\x30\\x75\\x0a\\x3e\\x16\\x82\\xfa\\\n\\x96\\x5c\\x9c\\xda\\xc4\\x57\\x3d\\x4f\\x11\\xec\\x10\\xfe\\xbd\\x9c\\xb2\\xb0\\\n\\x78\\x13\\xb1\\x7a\\xff\\x00\\xf5\\xef\\xbe\\x6e\\xdf\\x85\\xee\\x83\\xfe\\xad\\\n\\x3f\\xdc\\x63\\xf3\\x84\\x13\\x40\\xdc\\x0f\\x6a\\x11\\xde\\xba\\xe1\\x23\\x0b\\\n\\x18\\x2c\\x77\\xbc\\x87\\x7d\\xf7\\x61\\x1e\\x4c\\x06\\x56\\x1a\\x9a\\xcd\\x4a\\\n\\x45\\xfc\\xf3\\xbf\\xff\\x00\\xe5\\x18\\xde\\xcf\\x57\\x13\\x77\\x37\\xf2\\x23\\\n\\xe3\\x79\\x59\\x40\\x12\\xc7\\xf0\\x6a\\xf4\\x37\\x4e\\xd8\\x42\\x3f\\xff\\x00\\\n\\xc2\\xbb\\xae\\x51\\xeb\\x1b\\x9d\\xca\\x3d\\x4f\\xe9\\xc4\\x06\\xa0\\x83\\xd1\\\n\\x53\\xad\\xc4\\x94\\x68\\xdb\\xd0\\x4e\\x1a\\xa1\\x50\\x46\\xdb\\x55\\xaf\\xb2\\\n\\xa8\\xc5\\x3a\\x98\\xce\\x8e\\x00\\x70\\xe9\\x46\\x89\\xda\\x27\\x6c\\x8e\\x22\\\n\\xe0\\x9a\\x66\\x25\\x40\\xd5\\x22\\xaa\\x05\\xfb\\x4f\\x03\\x82\\x89\\x8b\\x40\\\n\\x7f\\xdd\\x1e\\xfb\\xff\\x00\\x7e\\xde\\x77\\x6c\\x98\\x42\\x00\\xdb\\x6a\\x57\\\n\\x30\\x58\\xcb\\x18\\xc8\\x81\\x04\\x95\\x08\\x62\\x40\\xf8\\xbf\\xd4\\x64\\x5a\\\n\\xf5\\x06\\x8a\\x65\\x4d\\x04\\x2a\\xb4\\x86\\x04\\xf6\\x05\\x14\\x61\\xea\\x87\\\n\\x58\\x9d\\xe6\\x34\\x5e\\x2d\\xa6\\x92\\x85\\xa0\\x6b\\x8f\\x95\\x46\\x7e\\xf0\\\n\\xec\\xb6\\x5a\\x18\\x41\\xaf\\x80\\xc8\\x09\\x57\\xf4\\xc4\\x43\\x92\\x40\\xe9\\\n\\x10\\x54\\xde\\x80\\x06\\x72\\xa8\\x62\\x32\\x61\\x40\\x14\\x68\\x3b\\x55\\x86\\\n\\x1a\\xf2\\x11\\x79\\x49\\xd6\\xc1\\xd5\\x93\\x44\\x5d\\xb4\\xa9\\xbe\\x44\\x7c\\\n\\x07\\x2d\\x54\\xa8\\xe9\\x82\\x09\\x42\\x8a\\x62\\x84\\x9a\\xdd\\x24\\x05\\x33\\\n\\xb1\\xb5\\x70\\xd6\\xb0\\x50\\xe8\\xb8\\xbd\\x10\\x56\\xfd\\x6f\\xf3\\x82\\x89\\\n\\x2e\\x84\\xb8\\x2d\\xb0\\x56\\x54\\x69\\xed\\xde\\x06\\x34\\xeb\\x22\\x80\\x09\\\n\\xa8\\x11\\x5d\\x3d\\xf6\\xb1\\xda\\x94\\x26\\x20\\xa9\\x74\\x75\\x58\\x25\\x23\\\n\\x04\\x4b\\xb8\\x28\\x04\\x3d\\x39\\x6f\\xa1\\x7a\\x54\\x87\\x18\\x35\\x99\\x02\\\n\\x00\\xcb\\x55\\x80\\x91\\x05\\xa2\\xa9\\x74\\xc9\\x99\\x13\\x11\\x20\\x60\\xd2\\\n\\x4a\\x4d\\x4a\\xa4\\xa2\\x18\\x44\\x23\\xa0\\x14\\xe7\\xe8\\x1e\\xf8\\xa9\\x65\\\n\\x30\\x0a\\x96\\x1b\\x82\\x3a\\xce\\xbf\\x09\\xc3\\x2f\\xc0\\x1a\\x45\\x0b\\xae\\\n\\xb6\\x1d\\xa7\\x81\\xdf\\x00\\xd1\\x0a\\xb8\\x28\\x9a\\x6b\\x41\\x6e\\xdb\\xdf\\\n\\x56\\x70\\x11\\xfe\\x48\\x2b\\x60\\xf2\\xf6\\x9e\\x6f\\x8f\\x76\\x10\\xa8\\x84\\\n\\x8d\\x13\\xf0\\x3e\\x2d\\xf6\\x8f\\x45\\x06\\x80\\x28\\x8f\\x74\\xec\\x83\\x43\\\n\\xbe\\xc6\\x75\\xe7\\x3b\\x02\\xeb\\xb9\\x98\\x65\\x87\\x7e\\xf9\\xfb\\xf2\\x89\\\n\\x28\\x97\\xe9\\xf2\\x52\\xfa\\x2d\\x99\\xda\\x5e\\x3c\\x40\\xc7\\x44\\x6b\\x0b\\\n\\xba\\xc5\\x76\\xeb\\xca\\xcd\\x53\\xdf\\x49\\x3f\\xf8\\x0a\\x69\\xbb\\xd9\\xc4\\\n\\x81\\x01\\x89\\xb0\\x1c\\x61\\x7b\\xf8\\xf8\\xeb\\x5e\\x4d\\x74\\xd5\\x01\\xb0\\\n\\x1f\\xe9\\x03\\xb8\\x76\\xa3\\x78\\x91\\x40\\x22\\xa6\\xb3\\x06\\x93\\xa4\\x57\\\n\\xfa\\x4e\\xb8\\x05\\x92\\xa2\\x77\\x51\\x57\\x16\\x4d\\x96\\x7f\\xf1\\xc3\\xc4\\\n\\xa5\\x58\\xe5\\x2b\\xdb\\x07\\xb8\\xd9\\xfe\\x71\\x1e\\x12\\x44\\xe8\\x1b\\x67\\\n\\xcc\\x26\\xd9\\xef\\x03\\xa8\\xeb\\xb7\\x53\\x58\\x97\\xb8\\x68\\x67\\x54\\xbc\\\n\\x9b\\x77\\x41\\x06\\xfa\\xbd\\x24\\xae\\x2f\\xd9\\xf7\\x83\\x42\\xb0\\xae\\xcb\\\n\\x4a\\x9d\\x75\\xf7\\xdd\\xe2\\x38\\xf4\\x24\\xde\\x82\\x90\\x69\\xbe\\xfe\\x75\\\n\\x39\\x67\\x49\\x5a\\x1a\\x99\\x10\\x86\\x9e\\xf8\\x4f\\xeb\\x70\\x80\\x69\\x58\\\n\\x81\\x86\\x69\\xbb\\xa6\\x7e\\xb7\\x49\\x41\\x45\\x53\\x3b\\x7a\\xc0\\xf4\\x0d\\\n\\x03\\xc5\\x3a\\xfb\\x38\\x50\\x2a\\x0c\\x02\\xe6\\x4d\\x8f\\x25\\x1e\\x85\\x50\\\n\\x00\\x00\\xa3\\xdc\\xfc\\x0e\\xe5\\x71\\xe7\\xa9\\xd1\\x28\\x3e\\x12\\xc0\\xef\\\n\\xd4\\xeb\\xcc\\x38\\x14\\x1f\\x19\\x82\\x32\\xc8\\x9b\\x6e\\x89\\x75\\x3d\\x9c\\\n\\x24\\x40\\x91\\xe9\\x53\\x86\\x80\\xd5\\x99\\x97\\xb1\\x9c\\x8b\\x58\\x55\\x3a\\\n\\x5a\\x04\\xd1\\x14\\xef\\x29\\xfb\\x0a\\xba\\x78\\xe0\\x38\\xc3\\xa7\\x45\\x8b\\\n\\xd0\\x5c\\x5d\\x05\\xa2\\x54\\xd8\\x63\\xa5\\x36\\xdf\\xd4\\x97\\xfc\\xe3\\x61\\\n\\x34\\xd9\\x7e\\xc0\\xee\\xe4\\x3e\\x16\\xdf\\x88\\xd7\\x0b\\x29\\x00\\xee\\x07\\\n\\x66\\x06\\x79\\xe9\\xd0\\xf4\\x84\\x4a\\x83\\xe8\\xf9\\x76\\x1e\\xb5\\x97\\xc8\\\n\\xf2\\x18\\xf6\\xe9\\x8f\\x9f\\xc7\\xb9\\xbd\\x6e\\x99\\x8f\\x0b\\x4b\\x22\\x22\\\n\\xc6\\x09\\xa2\\x3f\\x66\\x26\\x7f\\x70\\x05\\x28\\x3f\\x25\\xcd\\xf4\\x7e\\x73\\\n\\xf7\\xff\\x00\\x97\\xe3\\xff\\x00\\xcd\\xf7\\x8e\\x8b\\xdd\\xec\\xdb\\x71\\xd5\\\n\\xff\\x00\\x8c\\xe4\\x4c\\x24\\xf5\\x4a\\x0c\\x81\\x89\\x7a\\x18\\xb6\\x13\\x77\\\n\\x8e\\x12\\x6a\\x08\\x2f\\x45\\xbe\\x97\\x61\\xc0\\x7d\\xe2\\x50\\x4d\\x5b\\x6b\\\n\\xfe\\x1b\\xe9\\xa2\\x97\\xd2\\xe0\\x9a\\x08\\xf6\\x25\\x41\\x31\\x02\\x39\\xd9\\\n\\xda\\x0f\\x9b\\x47\\xda\\x36\\x25\\xda\\x31\\x4d\\x04\\xfe\\x02\\x29\\xa8\\x32\\\n\\x5c\\xaa\\xc0\\x62\\xb5\\x3b\\x46\\x59\\xdd\\xca\\x70\\x24\\x56\\xe2\\x0a\\xdd\\\n\\x37\\x7b\\x04\\x44\\x41\\xb2\\x10\\xe1\\x9d\\x49\\xc2\\x20\\x94\\xb8\\x91\\xa0\\\n\\x05\\x91\\x54\\x79\\x7e\\x20\\x94\\x05\\x84\\x23\\x8e\\xbb\\x75\\x00\\xaf\\x0b\\\n\\x28\\xb5\\x29\\xa0\\x91\\x20\\x21\\x3f\\x00\\x47\\xb9\\x90\\xf5\\x00\\x61\\x5c\\\n\\x0d\\xd5\\x45\\xb3\\x47\\xbc\\xb8\\x80\\x10\\x2d\\x07\\x14\\x49\\x9b\\x4a\\x29\\\n\\x02\\x73\\x60\\x2a\\x6b\\xa1\\x83\\x56\\x75\\x4a\\x77\\x0b\\xd7\\x34\\x02\\xa6\\\n\\x14\\x03\\x07\\x88\\x39\\x1e\\x87\\x6e\\xf7\\x06\\xd6\\x68\\x28\\x4b\\xba\\xcd\\\n\\x80\\x57\\x8b\\x75\\x67\\x0f\\x00\\x1a\\xa1\\xdc\\x04\\x04\\x44\\x00\\x1d\\xd6\\\n\\x17\\xd3\\x75\\x3c\\x2b\\xd2\\x9b\\x8a\\x23\\x8b\\xa2\\x05\\x11\\x30\\x41\\x01\\\n\\xa1\\x58\\x23\\xfe\\x5e\\x5f\\x4d\\x29\\x2b\\x29\\x19\\x72\\x80\\x3a\\x3f\\xeb\\\n\\x62\\x35\\x2a\\x06\\x61\\xa1\\x3b\\x01\\x52\\xac\\x79\\x94\\x8b\\x74\\xb0\\x80\\\n\\x50\\x62\\x14\\x51\\x08\\x59\\xc6\\x23\\xa9\\x86\\x84\\x68\\xce\\x84\\x5e\\x9b\\\n\\x6d\\xe1\\x9a\\x01\\x1e\\x55\\x06\\x20\\x9e\\xaa\\x14\\x7e\\xf1\\xba\\x88\\x20\\\n\\x03\\xb8\\x1a\\x25\\xc1\\x01\\x13\\x82\\x63\\x46\\x0e\\x4f\\x6b\\x41\\x0b\\xf5\\\n\\xff\\x00\\x8b\\xc1\\x65\\x00\\x0f\\x46\\x2d\\xa8\\xac\\x54\\x54\\x24\\x17\\x81\\\n\\xd4\\x00\\x44\\x35\\x63\\x5b\\x7a\\x0c\\x16\\x5e\\xf7\\x98\\x9c\\x41\\x02\\x83\\\n\\x8d\\x8a\\x95\\x0c\\x85\\x5b\\xda\\xc0\\xf6\\x54\\x48\\x5f\\x53\\x6e\\xb6\\xd2\\\n\\xeb\\x35\\xd5\\x6c\\x8d\\xd2\\x81\\x28\\x06\\x85\\x3a\\xd7\\x62\\x1a\\xa4\\xaa\\\n\\x88\\x34\\xdd\\xea\\x79\\xfe\\xf6\\x9b\\xf3\\x80\\x95\\xea\\xf4\\xb0\\xff\\x00\\\n\\x3d\\xbf\\xfe\\x74\\xe1\\x2d\\xa0\\x0d\\x06\\x04\\xd9\\x95\\xc0\\x5e\\xc3\\xaf\\\n\\x10\\x29\\x20\\x3f\\x09\\x52\\x98\\x66\\x0f\\xf5\\xd8\\xf7\\xbd\\x4c\\x33\\xc7\\\n\\x3e\\xe7\\xff\\x00\\xee\\xff\\x00\\x38\\xd6\\xce\\xd7\\x3a\\x2a\\x66\\xf9\\x9d\\\n\\x68\\x75\\x45\\xe1\\x9c\\x0e\\xc5\\x0a\\xa2\\x92\\x3b\\xfd\\x50\\xef\\xf2\\xa5\\\n\\x53\\xb4\\x33\\xf0\\x58\\x7c\\xee\\x79\\xfd\\xe4\\xeb\\x2f\\x91\\xc7\\x22\\xa9\\\n\\xb4\\x77\\x7d\\xd0\\x77\\x8b\\x3c\\x28\\xb0\\x42\\x85\\x09\\x07\\x75\\x4a\\x23\\\n\\xb4\\x04\\x34\\xa2\\x57\\x4b\\x06\\x7e\\xcf\\xee\\x7c\\xe2\\x41\\x0b\\x11\\xec\\\n\\x3a\\xd9\\xaf\\x7f\\x8c\\xe2\\xbb\\x89\\x7c\\x53\\x60\\xeb\\xbd\\xef\\xe7\\xb3\\\n\\x96\\xec\\x88\\xcf\\xa3\\xaa\\xff\\x00\\x17\\x17\\x70\\xfc\\xe0\\x1d\\x04\\xf0\\\n\\xe5\\xce\\xfd\\xb8\\x7a\\x01\\x8f\\x00\\x18\\xe3\\x5c\\x9d\\x89\\xa7\\xd6\\xfe\\\n\\x2f\\x01\\x90\\x97\\x75\\x3b\\x3b\\xbd\\xb5\\x0f\\x31\\xfc\\xef\\x91\\x01\\x14\\\n\\x5a\\x31\\xa4\\xd1\\x7d\\xbf\\xbe\\xf5\\x52\\xc8\\x45\\xa3\\x4b\\x49\\x6c\\x18\\\n\\x7d\\xfb\\xb4\\x27\\x10\\x00\\x68\\x62\\x7a\\xee\\xe8\\x7f\\xbd\\x7b\\xce\\xbc\\\n\\x7d\\x43\\x09\\x7f\\xde\\xe6\\x3f\\xc7\\xeb\\xa2\\xa3\\x11\\x29\\x6f\\xdc\\x2c\\\n\\xf2\\xf9\\xf5\\x78\\x68\\x8a\\x40\\xa7\\x66\\x18\\x62\\xbf\\x7d\\xf6\\x1c\\x31\\\n\\x07\\x43\\x0e\\xdd\\x11\\x74\\x5a\\xf6\\x76\\x18\\xde\\x09\\x09\\x83\\xb8\\x9d\\\n\\xf4\\xf4\\x74\\x12\\xaf\\xbb\\x0a\\x88\\x15\\x13\\x01\\x71\\x28\\x28\\x25\\xf7\\\n\\xf8\\xde\\x9e\\x42\\xe8\\x7b\\xa2\\xd6\\x98\\x8f\\x58\\xa0\\x30\\xea\\xa8\\xbc\\\n\\x42\\xd9\\x03\\x3a\\xc7\\x00\\x4f\\x94\\x89\\x2f\\x93\\x38\\x8d\\xaa\\x5c\\x69\\\n\\xfa\\xf8\\x3f\\xbf\\xfc\\x64\\xe3\\xa2\\x1a\\x46\\x32\\x20\\x11\\xfa\\x49\\xb2\\\n\\x66\\xa7\\x5b\\x06\\x27\\x18\\xdd\\x7d\\xbf\\xb7\\x7e\\x6e\\xfa\\xf5\\xd1\\xa9\\\n\\xd2\\x4b\\xef\\x5d\\x3d\\x8c\\x5f\\xe6\\xf0\\x86\\x04\\x4d\\x3a\\x3f\\xe7\\xb4\\\n\\x4c\\x4a\\xc7\\xae\\x46\\x05\\x20\\x2d\\x84\\x0a\\x7e\\x9e\\x23\\x77\\xf0\\x7f\\\n\\xd2\\x68\\xfa\\x10\\x2b\\xfd\\x8a\\x62\\xa4\\x35\\x49\\xbc\\x07\\x1a\\xa3\\x53\\\n\\xbc\\x0e\\x4e\\xb7\\x33\\x38\\x66\\x87\\xf8\\x0b\\x3d\\x32\\x11\\x07\\xde\\xc3\\\n\\x82\\x14\\x80\\xb0\\x1f\\xce\\xee\\xf5\\xff\\x00\\x13\\x82\\x75\\x0a\\x08\\x84\\\n\\x9d\\xd3\\xb8\\x8f\\xee\\x13\\x37\\x8f\\xea\\x18\\xaa\\x2e\\x05\\xef\\x7a\\xff\\\n\\x00\\x13\\x85\\x64\\x74\\x8d\\xd0\\x8c\\x56\\x23\\xe4\\x07\\xd2\\x72\\x13\\xba\\\n\\x7f\\x2e\\xdd\\xed\\x0a\\xed\\x6f\\xfd\\xf1\\x90\\xec\\x6a\\xe3\\x07\\x82\\x1d\\\n\\x65\\x3d\\x87\\x60\\x69\\x2c\\x2b\\x95\\x48\\x68\\x20\\xc7\\x42\\x20\\xf1\\x9c\\\n\\x94\\x22\\xb4\\xac\\x3b\\xbe\\xaa\\x22\\x30\\x5a\\x56\\xf0\\x21\\xb0\\x50\\x1f\\\n\\xc7\\x50\\x15\\x11\\xd7\\xfe\\x5e\\x38\\x09\\x80\\x54\\x28\\x88\\x82\\x92\\x08\\\n\\x09\\x38\\xd2\\xa5\\x6a\\xa0\\x92\\x23\\xdc\\xd7\\xfa\\x74\\xe5\\xe4\\x13\\xd3\\\n\\xab\\x09\\x30\\x35\\x10\\x34\\x10\\x78\\x8a\\x58\\x9b\\x92\\xb7\\x3b\\x3f\\x0d\\\n\\x0c\\xfe\\x72\\x7c\\x8c\\x63\\x28\\xca\\x7a\\x2d\\x01\\x35\\xbd\\x9e\\xbc\\x21\\\n\\x11\\x3b\\xe5\\x81\\x7c\\xc3\\xbf\\xaf\\x59\\xef\\x3b\\xe2\\xb0\\xb6\\x4c\\xb7\\\n\\x12\\x36\\x6f\\xdf\\x9c\\x9b\\xf1\\x52\\x05\\x6c\\x10\\x3b\\x04\\x23\\xa3\\xd2\\\n\\x84\\x04\\x42\\x1d\\x0a\\x6a\\x8b\\xd0\\xa8\\x02\\x98\\x80\\xe1\\x78\\x49\\xa4\\\n\\x26\\x8a\\x7a\\xa1\\x80\\x58\\x97\\xc7\\x21\\x82\\x0c\\x2d\\xd1\\xee\\xba\\x28\\\n\\x06\\x18\\xaa\\x92\\x2a\\x10\\x14\\xd0\\x38\\x30\\x48\\x2d\\x77\\x27\\x69\\xcc\\\n\\x4b\\xed\\xa3\\xa2\\xad\\x7a\\x20\\x8e\\x34\\x0f\\x48\\x0c\\xfe\\xa5\\x28\\xc4\\\n\\x26\\xab\\x94\\x21\\xd2\\xa6\\x6f\\x2e\\x00\\x8d\\xab\\xd9\\xaf\\x7b\\x7c\\x2e\\\n\\x06\\x50\\x61\\x14\\xca\\x26\\xe8\\x79\\xd3\\x74\\x1c\\x74\\x72\\x02\\xb8\\xc8\\\n\\xf4\\x86\\x7a\\xa2\\x1a\\x4e\\xd7\\x56\\xf0\\xc7\\xfb\\x80\\x80\\x88\\x86\\x88\\\n\\x8e\\x84\\x3d\\xa7\\x8c\\xe0\\xa3\\xaf\\xee\\x44\\xef\\xe5\\xac\\xef\\xfc\\xfd\\\n\\xe1\\x80\\x16\\xbd\\xeb\\x08\\xe4\\xba\\xe7\\x55\\xcc\\x8c\\x72\\x45\\x0a\\xda\\\n\\xb0\\x95\\xfe\\x39\\xfd\\xf7\\x8e\\x89\\xf7\\x95\\xb7\\xa4\\x31\\xbd\\xff\\x00\\\n\\xdc\\x64\\xe9\\xbe\\x37\\x9f\\x14\\x45\\xc3\\xba\\x69\\xb4\\x84\\x11\\x52\\x59\\\n\\x71\\xe5\\x01\\x7f\\x99\\xe1\\xe1\\xcf\\xbe\\x97\\xf8\\x71\\x86\\x5d\\x1d\\x23\\\n\\x40\\xfe\\xff\\x00\\x3e\\x7e\\x70\\x50\\x5a\\x54\\x0e\\xba\\x45\\x36\\x69\\xa4\\\n\\x04\\x20\\x78\\x83\\xd2\\x87\\xf0\\xf5\\xa3\\x44\\x19\\x8d\\x7b\\xe8\\xe0\\x81\\\n\\x6f\\x6e\\x09\\x11\\xfd\\xdf\\xed\\x7c\\x25\\xe1\\x67\\xff\\x00\\xbf\\xfd\\xff\\\n\\x00\\xdf\\x10\\x80\\xc7\\xc2\\xdd\\xd7\\xed\\x2a\\xec\\x03\\xef\\x3a\\x1f\\x81\\\n\\x7f\\x2a\\xd7\\xdc\\x9f\\xb3\\x41\\xce\\x4e\\xfa\\x5a\\xd4\\x28\\x9d\\x4d\\x3a\\\n\\xf3\\xe6\\xf3\\x17\\x0c\\xf9\\x58\\xce\\xbe\\xf5\\x3f\\xce\\x4b\\x85\\x06\\x2f\\\n\\x58\\xb5\\x25\\xb2\\x26\\xb1\\x8b\\x38\\xa3\\x80\\x15\\x04\\x21\\x60\\xa8\\xf4\\\n\\x29\\xdf\\xd4\\x31\\xe5\\x04\\x94\\x27\\xa0\\xab\\x84\\xb3\\xc7\\xbc\\xe0\\xcf\\\n\\x69\\x8c\\x91\\x21\\x5f\\xf8\\xaf\\x40\\x5b\\x89\\xc2\\x3f\\x5b\\x1b\\x7f\\x25\\\n\\xf9\\x9d\\x7d\\xf5\\x5e\\x42\\x2f\\x8b\\xf6\\xd0\\x3f\\xf0\\x99\\xfa\\x21\\xc0\\\n\\x35\\x8a\\x80\\xeb\\x07\\x7f\\x1f\\x7c\\xb1\\xd4\\x08\\x92\\x74\\xeb\\x27\\xf3\\\n\\xbe\\xbf\\xfd\\x39\\x65\\x19\\x11\\x6d\\x52\\x1c\\x29\\x81\\x37\\x7a\\x98\\x70\\\n\\x3c\\x94\\xee\\x0f\\xec\\x59\\xb3\\xae\\x93\\xba\\x5b\\xc0\\x15\\x1a\\xb6\\x9e\\\n\\x6f\\xac\\x0d\\x67\\x7d\\x8b\\x1d\\xce\\x76\\x8f\\xeb\\x72\\xf5\\x3f\\x0f\\x3f\\\n\\xb4\\x64\\xce\\x66\\x5d\\x20\\xf5\\x4d\\x53\\x3e\\x28\\x27\\x87\\x55\\x78\\xa3\\\n\\xec\\x01\\x60\\x5f\\x86\\x3d\\x3d\\x09\\x03\\xb4\\x2e\\xf3\\xe3\\xe3\\xfe\\x38\\\n\\x71\\xd3\\xa1\\xa4\\xb6\\x60\\x8c\\xf2\\x5e\\x8a\\xae\\x67\\x1d\\xd4\\xee\\x6d\\\n\\x71\\x42\\x82\\x15\\x75\\xd8\\xa2\\xfc\\xe1\\x2f\\x46\\xbe\\x02\\x91\\x74\\x33\\\n\\xa3\\xb4\\x6e\\xd7\\x98\\x6b\\x7a\\x6e\\xed\\x7a\\xa1\\x1c\\xdc\\x1c\\x5c\\x2f\\\n\\x11\\x4f\\x05\\x1a\\x3f\\x6c\\xea\\xb4\\xff\\x00\\x31\\x9d\\x70\\xfe\\x0f\\x2d\\\n\\x3d\\x5e\\x90\\x7f\\xf7\\xdf\\xbc\\x40\\x41\\x5a\\x48\\xe0\\x3a\\x6b\\x1b\\xf6\\\n\\x5b\\x38\\x26\\x86\\x22\\x2d\\x4b\\x42\\x57\\x13\\x0f\\xd4\\x71\\xe3\\xac\\xcc\\\n\\x06\\xd0\\x0a\\x1b\\x0e\\x02\\xa6\\x88\\xd6\\x4b\\x58\\x31\\x41\\xca\\x5c\\x50\\\n\\x8e\\xea\\x2b\\xc3\\x96\\x45\\x6c\\xb5\\x7e\\x82\\x80\\x32\\xab\\x2a\\xbc\\x91\\\n\\x11\\xfd\\xb3\\xbd\\x3e\\x9d\\x1f\\x7e\\xf3\\x60\\xa0\\x20\\x78\\x08\\x97\\xb3\\\n\\xc1\\xf9\\xd7\\x8e\\xc0\\xc1\\x14\\x13\\xd1\\xd6\\x7d\\x17\\xec\\xe6\\x24\\x0b\\\n\\x5d\\x46\\x80\\x00\\x01\\x96\\x8f\\x63\\x96\\xe0\\x88\\xa8\\x6a\\x9d\\xcd\\xe8\\\n\\xed\\x64\\xed\\xef\\x88\\xa1\\x21\\x14\\x28\\xc0\\xa5\\x4a\\xfd\\x44\\x10\\x5c\\\n\\x76\\x51\\x82\\x82\\x65\\x40\\x23\\x7c\\x92\\xa3\\x89\\x4f\\x13\\x91\\x86\\x90\\\n\\x11\\x35\\x4f\\xfe\\x77\\x79\\xb1\\x4b\\x04\\xb4\\x48\\x80\\x6d\\x7a\\x67\\x6c\\\n\\x8c\\x5d\\x17\\x20\\xa6\\xd6\\x09\\x01\\x5a\\xfc\\x4a\\x9c\\x29\\x70\\x41\\x04\\\n\\x11\\x69\\xa1\\x29\\xd3\\x8b\\x31\\x6f\\x02\\xd0\\x04\\x00\\x2c\\xb4\\x08\\x0d\\\n\\x5c\\x19\\x8f\\x67\\x1c\\x82\\x78\\xda\\x28\\x13\\xc2\\x34\\x87\\x62\\x1c\\x78\\\n\\x41\\x64\\x21\\x8e\\xdc\\x65\\x58\\x37\\xa6\\xf1\\x72\\x20\\x94\\xc4\\x1e\\x22\\\n\\xe6\\x98\\x39\\x47\\xb6\\xb4\\x70\\x40\\xea\\x82\\x88\\x7f\\x01\\xc0\\x56\\x25\\\n\\x64\\x61\\x5a\\xc6\\x14\\x2b\\xd0\\x5a\\x00\\x86\\xc2\\x5d\\x18\\xd4\\x24\\x84\\\n\\xc5\\x2b\\xb5\\x63\\x5c\\xb9\\xcc\\x6d\\x70\\xd8\\xa2\\x52\\x48\\xd0\\x8f\\xfc\\\n\\x1d\\x82\\x10\\xe9\\x89\\xac\\xc0\\x92\\x9b\\xa8\\x86\\x08\\xa8\\xed\\x4d\\x55\\\n\\x52\\x45\\x38\\x98\\x9f\\xf3\\x6c\\x78\\x91\\x41\\x1f\\x22\\x87\\x6c\\x06\\x5c\\\n\\x9f\\x0c\\xfc\\xe2\\x58\\x03\\x4e\\xa0\\xf5\\x1d\\x43\\xdc\\x9d\\x1e\\x07\\x24\\\n\\xb6\\x03\\x4a\\xb0\\x2e\\xf7\\xeb\\x1f\\x9b\\xef\\x03\\xdc\\x50\\x55\\xc4\\x3d\\\n\\x4a\\x1d\\x17\\xfd\\xa7\\x49\\xca\\xbb\\x70\\x9a\\xbd\\xc7\\x7f\\xfc\\xff\\x00\\\n\\xc4\\x21\\xc9\\x90\\x69\\x44\\xd8\\x52\\x49\\x99\\xff\\x00\\x7c\\x13\\xa5\\x0e\\\n\\xdd\\xe7\\xef\\xeb\\xdf\\xef\\xef\\x0c\\x7a\\x27\\x50\\xc0\\x2d\\x90\\xb2\\x01\\\n\\xda\\x62\\x1d\\xf2\\xfa\\x8e\\x8a\\x94\\x24\\x69\\xdb\\xa9\\x5e\\xe4\\xde\\x48\\\n\\x1d\\x29\\x61\\x62\\x77\\xbe\\xcb\\xff\\x00\\xbd\\xf0\\xfa\\x42\\x40\\x61\\x85\\\n\\x10\\xc9\\x0a\\x4e\\xe7\\x7e\\x72\\x8a\\x35\\x3c\\xd5\\x29\\xfb\\x3f\\xc7\\xe4\\\n\\x78\\x21\\x01\\x4e\\xd1\\x51\\xdb\\x50\\x65\\x56\\xe9\\xfa\\xb3\\x88\\x08\\xa1\\\n\\x92\\xb3\\xb9\\xd3\\x22\\x98\\xff\\x00\\x0f\\x33\\x92\\x05\\x82\\x3e\\x89\\x5a\\\n\\x2e\\xf4\\x64\\xff\\x00\\x38\\x99\\x9e\\xd7\\x6f\\xab\\x31\\x28\\x0e\\x17\\x00\\\n\\x95\\x64\\xb1\\x51\\x2a\\x69\\x6f\\x5a\\x6f\\xa2\\x6f\\x49\\xc2\\xc9\\xd2\\xc5\\\n\\x37\\xeb\\x7c\\x4b\\x32\\xab\\x76\\xcb\\x11\\xb1\\x14\\x5e\\xd5\\x20\\x07\\x47\\\n\\xa8\\x95\\x1e\\x2e\\x23\\x34\\x26\\xe3\\xa9\\xe3\\xe7\\xcf\\x8e\\x55\\x32\\x9f\\\n\\xdc\\xf4\\xe3\\x22\\x4c\\xf3\\xff\\x00\\xbe\\x04\\xfc\\x2d\\xa7\\x8f\\xe0\\xa2\\\n\\x8f\\xda\\x76\\x8f\\x72\\x04\\xe9\\x7c\\xc7\\x3a\\xfa\\xbd\\x77\\x29\\xec\\xf7\\\n\\x8f\\x13\\xa8\\x91\\x62\\x93\\xf7\\xef\\x9f\\xc9\\xdd\\xc2\\x55\\x1b\\x54\\xdb\\\n\\xe8\\x2f\\x53\\xfe\\xb0\\x44\\xe2\\xeb\\x40\\xab\\x16\\xf5\\x6a\\x1c\\x58\\xfe\\\n\\xaf\\xe7\\x34\\x5c\\x68\\x64\\x1e\\x53\\x21\\xd2\\x7e\\x4a\\xe4\\xe0\\x7b\\x3b\\\n\\xb4\\xc0\\xcb\\x09\\x16\\x0e\\x9f\\x8e\\xdb\\x27\\x52\\x42\\x4b\\x69\\x9f\\xc2\\\n\\x02\\x61\\x3a\\x7a\\xbc\\x8d\\xa9\\x53\\x1b\\x2b\\xd0\\xf4\\x37\\xe8\\xbc\\x45\\\n\\x2b\\x7e\\x13\\x7f\\x15\\x70\\x1c\\x48\\xd8\\x76\\x09\\x0b\\x00\\x14\\x44\\x13\\\n\\x5d\\x98\\xbf\\x29\\x28\\xa8\\x71\\x5e\\x49\\x09\\x5d\\x31\\xd0\\x59\\xdb\\xb3\\\n\\x0e\\x96\\x16\\x97\\x5c\\xa2\\x53\\xfc\\xa5\\xf9\\x7a\\xc6\\x29\\x44\\x36\\xd9\\\n\\x57\\x00\\x6b\\xd8\\x14\\xac\\x25\\xbb\\xcb\\xb0\\x3e\\xd4\\x4b\\xa0\\x18\\x40\\\n\\x87\\x43\\xd8\\x6c\\xe0\\x80\\x8a\\xcd\\x50\\xb7\\xdd\\x77\\xbb\\xc9\\xa2\\x84\\\n\\xd5\\xa9\\x5e\\x8d\\x0f\\x6e\\xd2\\xf8\\x17\\x47\\x64\\x52\\x5e\\x81\\x26\\x2c\\\n\\x4b\\x08\\x05\\xe2\\x40\\x20\\x0e\\x16\\x07\\x51\\x4a\\x8b\\x20\\xeb\\x3a\\x40\\\n\\x25\\x5d\\x12\\xb8\\x0f\\x43\\xd1\\x92\\x3e\\xc1\\x4e\\x4e\\xe5\\x24\\x06\\xd4\\\n\\x17\\xa0\\x76\\x44\\x65\\x09\\x83\\x44\\x14\\x54\\x53\\x59\\x4f\\xf4\\x67\\xfd\\\n\\x15\\xf2\\x01\\x34\\x5a\\x0c\\x50\\x52\\x52\\xbd\\x08\\xef\\x18\\xa1\\x45\\x24\\\n\\x7f\\xc6\\x1b\\xbf\\xfd\\xfc\\x8c\\xc7\\x96\\x00\\xcc\\x0a\\x20\\x04\\xd9\\x6f\\\n\\xc4\\xe8\\x49\\x0d\\x6d\\x15\\x10\\x45\\xea\\xe5\\xfd\\x89\\x88\\x55\\x90\\x47\\\n\\x42\\x3b\\x56\\x88\\xa8\\xde\\xe5\\xa6\\x92\\xd2\\x25\\xd0\\x52\\x04\\x29\\x46\\\n\\x18\\x2b\\xab\\x4f\\x04\\x48\\x56\\x82\\xd5\\x80\\x30\\x18\\x8f\\x5e\\x94\\xe4\\\n\\x05\\xa0\\xa8\\xa0\\x4e\\xbc\\xa6\\xdb\\x35\\x75\\xc2\\x1d\\x81\\x00\\x70\\xa7\\\n\\xc6\\xa4\\x43\\xc3\\x4b\\x8f\\x16\\x07\\x68\\xfc\\x5d\\xec\\x9f\\xc3\\xba\\x45\\\n\\xf4\\xe1\\xb6\\xa0\\xe1\\xbd\\x2c\\x12\\x9d\\x3b\\xd7\\x53\\xae\\xb9\\x12\\x2b\\\n\\xb2\\xbd\\x58\\xbd\\xfd\\x43\\xef\\x0b\\x8b\\x76\\x1f\\x61\\x96\\x05\\x22\\x99\\\n\\x70\\x13\\x52\\xa3\\x6b\\x80\\x0b\\x43\\x90\\xc0\\x29\\x3d\\x98\\x4c\\xc9\\xeb\\\n\\x9d\\x92\\x69\\x22\\x1a\\x1f\\x15\\x87\\x05\\x41\\x28\\x52\\xdd\\xa9\\x46\\x92\\\n\\x1d\\x43\\x26\\x81\\x92\\x12\\xd0\\xd1\\x30\\x12\\x1b\\xa5\\x36\\x76\\x99\\xcd\\\n\\xf6\\x44\\x03\\x44\\x3a\\xe1\\xdf\\xb4\\xb8\\x3c\\x1a\\x00\\xbe\\xc5\\x5a\\x2e\\\n\\xc5\\x3a\\xd0\\xb5\\x99\\xc4\\x30\\xd4\\x28\\xab\\xa3\\x3a\\xf1\\x04\\x1e\\x88\\\n\\x77\\x52\\xf0\\xec\\x12\\xde\\xa3\\x4c\\x35\\xb3\\x80\\x2d\\x22\\xb5\\x4e\\x82\\\n\\x0c\\x30\\xbd\\xef\\x4f\\x79\\x0b\\x51\\xee\\x30\\x99\\x93\\xfc\\x3b\\x9e\\xc8\\\n\\x6f\\x01\\x89\\x4c\\x6b\\x36\\x76\\xa9\\xd9\\xe4\\xf9\\xdf\\x5c\\x63\\x48\\x88\\\n\\x36\\x7a\\xe8\\xf0\\x82\\x7f\\x78\\x23\\x86\\xc3\\x57\\xba\\x74\\x6d\\x5c\\x9d\\\n\\x1f\\xa7\\x28\\x8b\\xd8\\x11\\xb1\\x10\\xd3\\x70\\x75\\x3f\\xeb\\x91\\x63\\xee\\\n\\x4d\\x91\\xde\\xd7\\x1f\\xe5\\xf9\\x71\\x8d\\x1d\\x4f\\xa5\\xbf\\xb6\\xd5\\xae\\\n\\x8f\\xc9\\x38\\xe0\\xe8\\xc0\\x86\\x88\\x18\\x17\\xd3\\xae\\xf3\\xeb\\xbc\\x59\\\n\\x1c\\x00\\xd6\\x23\\xff\\x00\\x67\\xf4\\xbd\\xfc\\xe5\\xac\\xec\\xf6\\xb8\\x13\\\n\\xdc\\xf3\\x1b\\xd7\\x79\\xc6\\x22\\x35\\x34\\x05\\xd7\\x68\\x8e\\xbe\\x5d\\x9c\\\n\\x3b\\x6f\\xfd\\x43\\x2b\\x9f\\x3e\\xff\\x00\\x15\\xe1\\x21\\xea\\x2c\\x9b\\x9a\\\n\\x9f\\x81\\xf7\\xee\\xf1\\x2d\\x96\\x81\\x18\\xc4\\x8b\\x14\\xa8\\x40\\x00\\xdb\\\n\\x78\\xc7\\xe4\\x21\\x4f\\x60\\xec\\x01\\x4d\\x3e\\xd8\\x1c\\x79\\xe4\\xa4\\x30\\\n\\x08\\x40\\x6a\\xa6\\xff\\x00\\x86\\x2e\\x57\\x28\\x48\\x30\\x12\\x57\\x78\\x8e\\\n\\x9f\\x17\\xa0\\x03\\x30\\x8e\\x60\\x23\\x53\\x5b\\x22\\x4f\\x3b\\x21\\xa4\\x68\\\n\\xa1\\x68\\x53\\xfe\\x3b\\x1a\\x48\\xc7\\x04\\x55\\x10\\x11\\xb7\\xbb\\xd6\\x7f\\\n\\x7d\\xea\\x53\\xa8\\x63\\xac\\x2b\\x7e\\x81\\xdb\\xdf\\xfd\\xa8\\x74\\x42\\xf3\\\n\\x51\\x85\\x7c\\x2c\\x69\\xeb\\xf9\\xf8\\xe8\\xc1\\xe5\\x64\\xc9\\xd6\\xc3\\xa8\\\n\\x1b\\xb9\\x6d\\x9d\\xdf\\x1e\\x26\\x36\\xa0\\x55\\xad\\x51\\x9a\\x91\\xf1\\xb6\\\n\\x5c\\x9a\\xaf\\x76\\x8f\\x5b\\x4c\\xcd\\x4d\\xd8\\x6d\\xb5\\xbe\\xf1\\x9a\\x21\\\n\\x46\\xd5\\xec\\x51\\x28\\x02\\x8a\\x83\\x1c\\xbd\\x5e\\x32\\x12\\xa9\\x68\\xbb\\\n\\x09\\x74\\xf3\\xd9\\x3f\\x1e\\x0c\\x91\\x4e\\x08\\x4e\\x95\\x1d\\x8c\\x25\\x8c\\\n\\x5f\\x76\\x21\\x89\\x0d\\xd5\\x7b\\xcc\\x24\\xe9\\xd3\\xa6\\xca\\x94\\x78\\x25\\\n\\x81\\x1e\\xb0\\x5f\\x41\\x17\\x0b\\xb2\\x2e\\x8f\\x05\\xbb\\x6e\\x45\\x30\\xed\\\n\\x6c\\x6f\\xbd\\xb7\\x85\\x11\\x10\\x22\\x51\\x83\\x34\\xb3\\xf0\\xdf\\xf9\\x78\\\n\\x4e\\x00\\xd1\\x44\\x54\\xd1\\xa1\\xa3\\x28\\x66\\x3d\\xf1\\x08\\x58\\x23\\x10\\\n\\x59\\x77\\xf1\\xba\\x26\\x59\\x07\\x0c\\xa0\\xe8\\xc5\\x9a\\x9e\\x45\\x4f\\x2d\\\n\\xb4\\x6e\\x9c\\x54\\x1b\\xa1\\x49\\xd0\\x8a\\x09\\xed\\x0f\\xb9\\xdb\\x70\\xec\\\n\\x05\\x2e\\x9e\\x03\\x75\\x3d\\x50\\xbd\\x70\\x56\\xf4\\x20\\x1b\\xd8\\x89\\x69\\\n\\x04\\x54\\x98\\x42\\x44\\x57\\xb4\\x50\\x34\\x2d\\xb0\\xb9\\x65\\xb3\\x2f\\x0a\\\n\\x0d\\x04\\xf6\\x06\\x03\\xea\\x9f\\x0a\\x09\\x30\\x83\\xc9\\xac\\x3f\\x06\\x64\\\n\\x02\\x15\\x7d\\xc7\\x5b\\x39\\x9f\\x7b\\x75\\x75\\x4a\\x65\\x68\\xf6\\x2d\\x5c\\\n\\x7a\\xe4\\xfb\\x53\\xb2\\x3f\\xf2\\x39\\x0d\\x0e\\x36\\x18\\xa6\\x09\\xa4\\x84\\\n\\x44\\x00\\xe9\\x69\\xaa\\xa7\\x43\\xaa\\x0a\\xf8\\xde\\x33\\x70\\x80\\x92\\xbe\\\n\\x08\\x67\\xcb\\x72\\x12\\x3a\\x82\\x4f\\x5c\\x07\\x3b\\x21\\x44\\x86\\x21\\x6c\\\n\\x7a\\x7a\\x89\\x7a\\xc4\\x21\\x43\\xc4\\x3a\\x3c\\x8b\\xb5\\x0a\\x55\\x69\\x05\\\n\\x50\\x13\\xda\\x80\\x02\\x70\\x62\\xc9\\x2a\\xcb\\x10\\xa9\\x2b\\x5e\\xcf\\xc0\\\n\\x34\\xda\\x57\\x40\\x4a\\xd8\\x8c\\x76\\xb0\\xa3\\x8c\\x14\\xd0\\x82\\x21\\x0b\\\n\\x4c\\xa3\\x3e\\x94\\x17\\xd3\\xa8\\xf8\\xac\\x03\\x09\\xaa\\xaa\\x0c\\xb6\\xfc\\\n\\xd6\\x7c\\xf1\\xbf\\xa9\\x40\\x9e\\x06\\x0e\\x80\\x88\\x8a\\x10\\x17\\x8d\\x80\\\n\\xa9\\xbd\\x68\\x62\\x24\\x50\\x8f\\xd2\\x2f\\x46\\xa0\\x60\\x4d\\x0d\\x10\\xa7\\\n\\xac\\x04\\x90\\x3f\\x01\\x8b\\x21\\x82\\x34\\x6e\\xbd\\xb5\\xd4\\xcd\\x5f\\x7a\\\n\\x5c\\xe4\\x5e\\xb9\\xd4\\xff\\x00\\x85\\xd2\\xab\\x9d\\x8e\\x8f\\xf5\\x08\\x62\\\n\\xf5\\x87\\x7d\\xc1\\x8d\\x9a\\xe4\\xfb\\xbc\\x4a\\xca\\x03\\xfc\\x32\\x7e\\x88\\\n\\x82\\xdf\\x2e\\xde\\x0d\\x44\\xbb\\xa5\\x69\\x4b\\xd0\\xa6\\x33\\x7c\\x3c\\x7e\\\n\\x8d\\xb1\\x3a\\x08\\x3a\\x36\\xb5\\x9d\\xaf\\x52\\x3d\\x01\\xe2\\x4f\\x6e\\x32\\\n\\xdd\\x96\\x53\\xbf\\x33\\x80\\xa0\\x51\\x0d\\x7b\\x51\\xd2\\xb9\\x5b\\x58\\xa1\\\n\\x83\\x92\\xc8\\xc8\\x8a\\x55\\x1a\\x91\\x9d\\x6f\\x5b\\x5e\\xba\\x04\\xa4\\x60\\\n\\x2a\\x88\\x7e\\x6d\\x4f\\x0f\\x27\\x5d\\xd0\\x0a\\x11\\x05\\x6a\\x76\\xb3\\xe1\\\n\\x48\\x6c\\x1d\\xbd\\x9c\\x08\\x10\\x6c\\x5b\\x96\\x93\\xdd\\xb6\\x9d\\x74\\x67\\\n\\x16\\xc8\\x80\\xc9\\x88\\xb6\\xb3\\x1c\\xf7\\x0f\\xe1\\xc4\\x63\\x23\\x36\\xbb\\\n\\x62\\x3a\\x3e\\x6a\\x47\\xf5\\x18\\xe1\\xe7\\x32\\x95\\xa6\\x85\\xc7\\xf1\\xa6\\\n\\xd9\\xa0\\xae\\x12\\x61\\x10\\x94\\x08\\x06\\xc2\\xca\\x09\\xd8\\x94\\xd0\\xf5\\\n\\x8d\\xda\\xa0\\x63\\xba\\x99\\x04\\x95\\xa0\\x71\\xd8\\xe5\\xbd\\xb2\\x15\\x7f\\\n\\xbe\\xb5\\x3b\\xf4\\x38\\x5c\\x51\\xa2\\x7a\\x20\\xad\\xff\\x00\\x8b\\x3d\\xb1\\\n\\xeb\\x9d\\x44\\x54\\xe7\\xbd\\xbf\\x6f\\xc4\\xfd\\xa0\\xd1\\xe0\\xfa\\xd4\\x23\\\n\\x6f\\x4b\\xee\\x6e\\xe3\\x77\\xd6\\xf1\\x82\\xc2\\xd5\\x13\\x5b\\xd6\\x6a\\x19\\\n\\xab\\x64\\x4a\\x0e\\x30\\xab\\x3e\\x97\\x61\\xef\\x45\\xea\\x67\\x93\\x83\\x37\\\n\\xb2\\x6a\\x95\\xb7\\x33\\x67\\xa7\\x6d\\x9d\\x0c\\x60\\xf1\\x8c\\xf4\\xdc\\x60\\\n\\xec\\x1a\\x2f\\xb6\\xc1\\x83\\xb3\\x71\\x6a\\x10\\xa6\\x00\\x0b\\x9b\\xb5\\x02\\\n\\xde\\x23\\xed\\x45\\x40\\x8a\\x69\\x39\\xd9\\xa1\\xd5\\xd5\\xe1\\x4c\\x22\\x55\\\n\\x00\\xb4\\xf7\\x4c\\xbe\\x99\\xd5\\xdb\\x49\\x50\\x76\\x80\\xe8\\xda\\x66\\xff\\\n\\x00\\xb1\\xa3\\xef\\x0d\\x22\\x83\\xa8\\x02\\xb7\\x69\\xbe\\x16\\x65\\x9d\\x3a\\\n\\x92\\xc0\\x5c\\xe8\\x84\\x43\\x56\\x77\\x9d\\x1b\\x39\\x1d\\x26\\x64\\x5a\\xa2\\\n\\x1d\\xd4\\x44\\xed\\x9a\\xe3\\x39\\xb4\\xb3\\xde\\x1d\\x6a\\xec\\x7c\\x0e\\x0f\\\n\\x2e\\xd2\\x48\\x4c\\xd2\\x2d\\x59\\xf8\\x67\\xd6\\xbb\\x53\\xb3\\x8f\\x6c\\x4a\\\n\\x40\\x81\\x2c\\x1a\\x69\\xb8\\xe6\\x4a\\xe7\\x1a\\x71\\xa0\\x96\\x9a\\x96\\x09\\\n\\x24\\xf4\\x46\\xc0\\xa5\\xe7\\x73\\x0b\\x71\\xfe\\x89\\x73\\x58\\x6b\\x3b\\x4e\\\n\\x37\\x52\\x3c\\xd6\\x0a\\x4b\\xb3\\x42\\x20\\xc1\\x18\\x36\\x70\\x6c\\xaa\\xa0\\\n\\x16\\x3b\\xcf\\xeb\\x52\\xab\\xd4\\x79\\x19\\xa0\\x5a\\x27\\xe2\\xe8\\x87\\x53\\\n\\x6e\\xf4\\x74\\x5e\\x13\\xdc\\xfe\\xc4\\x2e\\x2c\\xbd\\x5c\\xc5\\x58\\x53\\xa4\\\n\\xad\\x35\\x2c\\x4d\\xd1\\x2a\\x92\\x38\\xe3\\xa6\\x22\\x70\\x25\\x10\\x7a\\x44\\\n\\x8f\\xfa\\x53\\xbc\\xfe\\x9c\\x99\\x00\\x61\\xd8\\x8a\\x10\\x72\\xe9\\x8b\\xe3\\\n\\x3c\\x02\\x69\\xa5\\xaa\\x34\\x8a\\xbd\\x85\\x55\\x65\\x8f\\x1b\\x12\\xa8\\xa5\\\n\\x88\\x16\\x22\\x05\\xb4\\xa8\\x1c\\x71\\x2c\\xea\\xd1\\xdd\\xcb\\x41\\x09\\x42\\\n\\xb7\\xea\\xf2\\x66\\xa0\\x48\\x88\\x08\\x45\\x0e\\x50\\x0c\\x3d\\x1e\\x20\\x50\\\n\\xd8\\x85\\xf6\\x7e\\x2b\\x86\\xef\\x9f\\x8c\\x23\\x05\\x4a\\xc0\\xab\\x74\\x5e\\\n\\x09\\x62\\x74\\x2e\\x8f\\x2a\\x50\\xae\\xca\\x3e\\x60\\x29\\xd7\\xfb\\x97\\x68\\\n\\xe2\\xc3\\x90\\x24\\x2e\\x57\\x04\\x40\\x62\\xc0\\x38\\x0c\\x22\\xa5\\x46\\xc1\\\n\\x03\\xab\\x16\\xbf\\x50\\x94\\xba\\x22\\x50\\x63\\x1b\\xdd\\x2d\\x8a\\x0e\\xc4\\\n\\xa0\\x02\\xd5\\x44\\x56\\x53\\x09\\xf8\\x6e\\x11\\x90\\xb6\\xb7\\xa5\\x3b\\x6c\\\n\\xf4\\x01\\x70\\x0c\\x09\\xb1\\xd1\\x7a\\xce\\x25\\xbb\\x0a\\x46\\x31\\xfd\\x1a\\\n\\x48\\xdf\\x62\\xb1\\xe1\\xc8\\x0a\\x15\\x30\\x9a\\x95\\x04\\x07\\x5d\\xa8\\x27\\\n\\x1d\\x16\\xe2\\x54\\xa1\\x13\\xb7\\x01\\x1e\\x8c\\x26\\x4a\\x2b\\x72\\xab\\x48\\\n\\x1b\\x2a\\xfd\\x00\\xd2\\xad\\xb6\\xce\\x24\\x9b\\xb5\\x8a\\x3b\\x95\\x12\\xc3\\\n\\xd3\\xc1\\x78\\x29\\x23\\x44\\x46\\x08\\x13\\x0a\\x30\\xf8\\xef\\x20\\x57\\x04\\\n\\x61\\x46\\xa3\\x13\\x5b\\xf8\\xff\\x00\\x9f\\x39\\xa3\\xf1\\x2d\\xfd\\xdf\\xfc\\\n\\x3f\\xbb\\x89\\x9c\\x40\\x59\\x57\\x68\\x20\\x0b\\x51\\x43\\xc5\\x96\\x75\\xf1\\\n\\xc8\\x05\\x0b\\xe0\\x1d\\xfe\\x94\\xa7\\x6b\\xed\\xcc\\x75\\x3e\\x81\\x37\\x1e\\\n\\x33\\xfe\\x45\\x94\\x1c\\x7d\\x71\\xc2\\x9d\\x36\\xa2\\x2b\\x52\\xd7\\xa1\\xa4\\\n\\x4e\\xf3\\x04\\x24\\x89\\x07\\x14\\x6e\\x76\\x45\\xd8\\xa2\\x31\\xc3\\x94\\x5a\\\n\\x8a\\x76\\xab\\xb3\\xf0\\xbd\\xb0\\xa5\\xaf\\x8f\\x05\\x0e\\x8a\\x48\\x30\\x1a\\\n\\xb6\\x49\\x7f\\xe1\\x8e\\x72\\xaa\\x90\\x47\\x6b\\x54\\xda\\x06\\xa9\\x8d\\xd2\\\n\\x44\\x79\\x03\\x79\\x54\\x44\\x26\\x8c\\x49\\x73\\x6a\\x5d\\xd3\\x8f\\xc0\\xf0\\\n\\x96\\xcc\\xdd\\xbd\\x7f\\x3e\\xf9\\xa7\\x34\\x4a\\xa2\\x9f\\x06\\x11\\xbe\\x42\\\n\\x7f\\x27\\xf1\\x15\\xd0\\x52\\xbc\\x23\\x85\\xc5\\x47\\xa8\\xc6\\x9d\\xf0\\x13\\\n\\x81\\x1b\\x5c\\x44\\x59\\xfe\\xb9\\x3a\\xa2\\xfa\\x37\\x03\\xb4\\xa9\\xf1\\xd1\\\n\\x4f\\x25\\xfa\\x01\\x73\\x97\\x4a\\x54\\x08\\xaa\\x35\\x96\\x80\\xeb\\xe8\\x88\\\n\\xd4\\x51\\xd4\\x59\\x78\\x88\\xf7\\x28\\xd7\\x66\\x62\\x0a\\x8f\\x03\\x50\\x81\\\n\\x29\\x7d\\xee\\x7c\\xfc\\x0d\\x2e\\x51\\x10\\xf6\\x93\\x49\\x68\\xfb\\x00\\xea\\\n\\x3b\\xbe\\x5e\\x2a\\x2a\\x5b\\x40\\xeb\\xbf\\xab\\xb9\\xe1\\x9f\\x99\\xc0\\xe0\\\n\\x88\\xfa\\xc8\\x87\\x78\\x68\\x88\\x7a\\x48\\xc8\\x89\\x34\\xa0\\x0a\\x88\\x51\\\n\\x1a\\xc6\\x65\\x55\\x33\\x27\\x02\\xac\\x24\\x00\\xb1\\x03\\x08\\x15\\xf5\\xd0\\\n\\x56\\x71\\xb1\\x08\\x0a\\x23\\x9d\\x21\\x20\\xd8\\x1e\\x62\\x04\\x74\\x2e\\x2e\\\n\\x2a\\x8b\\xc0\\xe9\\x8a\\x0f\\x78\\x40\\x41\\xc3\\xe8\\x81\\x68\\xed\\x3d\\xa0\\\n\\xf4\\x50\\x73\\x76\\x44\\xb1\\x2b\\xbf\\xf2\\x24\\xed\\xc9\\x0f\\xe0\\x1f\\x79\\\n\\x33\\x90\\x63\\x8b\\x41\\xb5\\x71\\xec\\xd5\\x18\\x58\\xe5\\x00\\xb8\\x00\\x07\\\n\\x66\\x3e\\xec\\x03\\x71\\x7b\\xe0\\x75\\xcc\\x46\\x80\\x1e\\x8f\\x80\\x24\\x7a\\\n\\x0a\\x85\\x99\\x4a\\x9a\\x84\\x08\\x34\\x02\\x86\\xa2\\x20\\x87\\x99\\x44\\x52\\\n\\x04\\xfe\\x7f\\x1d\\x1d\\xbb\\x78\\xa6\\xe3\\x2f\\x83\\xae\\x7c\\xbb\\x73\\xb7\\\n\\xda\\x27\\x24\\x2e\\xc5\\x04\\x0b\\xfd\\x01\\xe9\\x47\\x5f\\xf8\\xab\\xc2\\x4c\\\n\\xf6\\xa7\\xce\\xbf\\x36\\x7c\\xef\\xc2\\xef\\x16\\x88\\x47\\x59\\xdf\\xdb\\x49\\\n\\xd7\\x5f\\x38\\x06\\xf6\\x57\\xc1\\xe8\\x84\\xf8\\x67\\xc4\\x0a\\xbc\\xe9\\x50\\\n\\x8e\\xe5\\xb4\\x5a\\xc7\\xe5\\xc1\\x5b\\xbb\\x54\\x48\\x44\\xc0\\x98\\xd6\\x3f\\\n\\xa6\\x19\\xe7\\x59\\xc7\\xb7\\x07\\x58\\xfe\\x41\\xa7\\x75\\xd3\\xfc\\x66\\xbd\\\n\\x30\\x5a\\x78\\x49\\xdc\\xb3\\x4e\\x83\\xbe\\xbf\\xec\\x44\\x45\\xbf\\x02\\xb8\\\n\\xa7\\xd6\\xca\\xb5\\x7f\\xe1\\xe1\\x03\\x12\\x7c\\x1f\\xfa\\x2f\\xfc\\xb7\\xee\\\n\\xef\\x12\\x64\\x15\\x20\\x3d\\x2a\\xf7\\xd6\\xa4\\x4d\\x43\\xc3\\x6a\\xd6\\x10\\\n\\x10\\x32\\x33\\x1a\\x8d\\x1b\\x12\\x81\\x2c\\x45\\xa8\\x04\\x40\\xc2\\xb4\\x20\\\n\\xac\\x78\\xbd\\x74\\x0d\\x1d\\xd8\\x53\\xb2\\xec\\x0c\\xd8\\xde\\x54\\x24\\x05\\\n\\xc1\\x2d\\x0a\\x09\\x42\\xa6\\x81\\xc6\\x44\\x82\\x11\\x1d\\xd1\\x3e\\x22\\x70\\\n\\xc1\\x03\\x9b\\x17\\x88\\x12\\xa0\\x2c\\x77\\x17\\xc0\\xe0\\x25\\x50\\x9c\\x90\\\n\\x86\\xc3\\x33\\x4d\\x9f\\x17\\xd0\\xb0\\x97\\xd7\\xe1\\x42\\x44\\x41\\x90\\xac\\\n\\x53\\x80\\x7b\\x02\\xa9\\x96\\x54\\xa5\\x0b\\x2a\\x18\\x10\\x00\\x03\\x82\\xa1\\\n\\x16\\x90\\x20\\x76\\x62\\x1f\\x35\\x17\\xdf\\x00\\x15\\x24\\x17\\x12\\x24\\x48\\\n\\x48\\x40\\x24\\x2a\\x22\\xc2\\x8d\\x48\\xd9\\x04\\x30\\x9d\\x50\\xba\\x03\\xa7\\\n\\x0e\\x30\\xfa\\xb4\\x38\\x20\\x54\\x42\\xc1\\x08\\x03\\x11\\x3b\\x9b\\x23\\x0a\\\n\\x92\\xb7\\x09\\x27\\x66\\x0f\\x26\\x5b\\x66\\x94\\x52\\x7a\\xc1\\x18\\x93\\x19\\\n\\xd2\\x38\\x87\\x08\\x43\\xa2\\x44\\x4a\\x23\\xaa\\xa2\\x35\\x44\\x5f\\x38\\xb1\\\n\\xda\\x0c\\xca\\x05\\x20\\x13\\x71\\x69\\x7a\\xa1\\x82\\x25\\x20\\x8b\\x17\\x74\\\n\\x95\\xc1\\x95\\xfe\\x87\\xa1\\x50\\x89\\x63\\xfb\\x22\\x39\\xa3\\xf6\\xff\\x00\\\n\\xb1\\x79\\x46\\x74\\x68\\x58\\xd4\\xbf\\x57\\xbf\\xfd\\x7c\\xe3\\x3c\\xdc\\x05\\\n\\xed\\x76\\x5f\\x8b\\x9b\\x7a\\xd3\\x81\\x13\\xad\\x81\\xa4\\xf8\\x5d\\x2c\\x85\\\n\\x54\\x70\\xe0\\xa0\\x22\\xc8\\x2b\\x4a\\xb0\\x23\\xb6\\xb9\\x04\\x36\\xde\\x31\\\n\\xfd\\x86\\xa0\\x67\\x48\\x0b\\xd9\\x02\\xd4\\x54\\x59\\xb0\\x99\\x67\\x6c\\x02\\\n\\x57\\x2b\\x53\\xed\\xf7\\x03\\x5a\\x07\\xb4\\x1c\\xd2\\x75\\xfc\\x5e\\x9f\\x4d\\\n\\x17\\x8a\\x98\\xba\\x83\\x83\\xf1\\x4f\\xe5\\xff\\x00\\x90\\x0f\\x79\\x1d\\xd0\\\n\\x56\\x87\\xa0\\x22\\x1d\\xc9\\xf5\\xff\\x00\\xbb\\xf2\\xbb\\x8f\\x80\\x21\\xea\\\n\\x03\\x5a\\xea\\x93\\x9d\\xce\\xf0\\x48\\x6f\\xa0\\x35\\xc3\\x64\\xe9\\xb9\\x1e\\\n\\x28\\x72\\x05\\x3b\\x56\\xa7\\x53\\xa4\\xb8\\x75\\xe0\\x4e\\x3c\\x0c\\x87\\x14\\\n\\x2a\\x8b\\xba\\xa0\\x6b\\x43\\xc5\\x26\\xb0\\x81\\x57\\x8b\\x3f\\x88\\x0f\\x68\\\n\\x2d\\xd7\\x83\\xa6\\x50\\x1f\\x05\\x4e\\xaf\\xed\\x61\\x77\\x51\\x9c\\x5b\\xc2\\\n\\xc2\\x26\\x10\\xa8\\xad\\x6f\\xb3\\xdd\\x05\\x44\\x01\\xd4\\x82\\x80\\x99\\x26\\\n\\x0c\\x3f\\x95\\x82\\xbb\\x40\\x20\\x09\\xd2\\x40\\x95\\x37\\xab\\x41\\x31\\xde\\\n\\x94\\xae\\x85\\xba\\xd9\\xaf\\xc4\\x44\\x6a\\xe8\\xdc\\x4e\\x44\\x1d\\x05\\xc4\\\n\\x0b\\x21\\xac\\xf4\\x69\\x01\\x59\\x20\\x95\\x54\\xb1\\x64\\x52\\xdd\\x24\\xbb\\\n\\x3f\\xa9\\x78\\xa8\\xa9\\xb4\\x9e\\xc4\\x5f\\xc2\\x5e\\xda\\x6b\\x1c\\x45\\x78\\\n\\x00\\xc1\\x8d\\x1e\\x81\\x03\\xb2\\xe3\\xfa\\x0c\\xb0\\xa8\\x00\\xec\\x51\\xa8\\\n\\xd1\\xea\\x3b\\x42\\x08\\x4a\\x1c\\xcc\\xa9\\x04\\x5d\\x11\\xa7\\x09\\xaa\\xda\\\n\\x21\\xa2\\x5f\\x7a\\x2a\\xab\\xf5\\x5c\\x35\\x6a\\x0e\\xf3\\x44\\x25\\x69\\xa9\\\n\\x2e\\xe3\\x4e\\xc3\\xd7\\x71\\x57\\xd7\\xa1\\x4a\\xd6\\x30\\x42\\x01\\x0e\\xe8\\\n\\x4c\\x52\\xde\\x9f\\x9a\\xc1\\x3c\\x26\\x2b\\x4d\\x7d\\x4e\\x15\\x40\\xf4\\x66\\\n\\x87\\x4e\\x8d\\x1b\\xd8\\x4c\\xc0\\x52\\xca\\xe2\\x4b\\x2d\\x6c\\x86\\xa4\\x29\\\n\\x63\\xb2\\xab\\x27\\x03\\xa2\\x4a\\x3d\\x84\\xac\\x92\\xd2\\x66\\xa6\\xf7\\xdb\\\n\\x72\\xaa\\x95\\x71\\x07\\xea\\xcb\\xd6\\x2e\\xb0\\xc9\\x61\\x75\\xfb\\xe6\\xbe\\\n\\x04\\xf9\\x39\\x22\\xa0\\x08\\x05\\xec\\xc8\\xfd\\x3e\\x6f\\xcf\\xbc\\x4b\\x44\\\n\\x88\\xe9\\x53\\x35\\xa3\\xb4\\xf7\\xae\\xd3\\x95\\xee\\xb4\\x01\\x7b\\x0a\\xfd\\\n\\xd3\\xd8\\xea\\x8c\\x78\\xbc\\xb8\\x2a\\x76\\x9d\\xf9\\xbf\\x9f\\x59\\xe7\\x7c\\\n\\x8b\\x2d\\xf0\\x53\\x7a\\xa1\\xb5\\x3d\\xf9\\x3c\\xe3\\x35\\x8a\\x01\\x70\\x02\\\n\\xfd\\x0b\\x42\\x58\\x9d\\x59\\xa5\\x00\\x48\\x42\\xba\\xc5\\x66\\xa0\\x48\\xa3\\\n\\xd3\\x7b\\x97\\x8d\\xd5\\x52\\x0b\\x10\\x9a\\x24\\x8d\\xca\\x1e\\xf7\\xbc\\x21\\\n\\xa8\\xfd\\xcd\\xff\\x00\\x2e\\x7f\\x2b\\xfd\\x78\\x1d\\x09\\x88\\x01\\xba\\x63\\\n\\x46\\x46\\x33\\xfc\\x0e\\x56\\xd6\\x70\\x04\\x96\\x91\\xa0\\x11\\xb9\\x4b\\xea\\\n\\xb0\\xd9\\x24\\x49\\x43\\x1a\\x00\\x47\\xb7\\x33\\x38\\xac\\x49\\x1e\\x8d\\x3e\\\n\\xc2\\xc6\\x04\\xbd\\x30\\x6e\\x82\\x90\\x2b\\xc0\\x43\\x85\\x1c\\x8f\\x89\\x54\\\n\\x8d\\x13\\x55\\x44\\x13\\x40\\x05\\x48\\x4c\\x57\\x91\\x6a\\x28\\xd7\\x91\\x8a\\\n\\x59\\x52\\x30\\x29\\x0c\\x72\\x96\\x04\\xa8\\x0e\\x8d\\x5a\\x43\\x48\\xd7\\xd0\\\n\\xbc\\x9e\\x20\\xe1\\xcb\\xd0\\x15\\x68\\x31\\xaa\\xd4\\x06\\xa9\\x15\\x3d\\x62\\\n\\xaa\\xa0\\x2c\\x85\\xb2\\x1f\\xd0\\x11\\x01\\x6a\\x5d\\x04\\x5d\\x49\\x54\\x40\\\n\\xe9\\x8b\\xaa\\xaf\\xc0\\xb9\\x14\\x4e\\xeb\\x63\\x46\\x20\\xa2\\x0f\\x17\\xa3\\\n\\x40\\x58\\x1f\\x40\\xc7\\x09\\x01\\x7f\\x0e\\x25\\x55\\x95\\xaf\\x2d\\xad\\xc1\\\n\\x89\\x65\\x5d\\x4c\\xe0\\x53\\x14\\xa8\\x81\\x23\\x81\\xa0\\x36\\xa5\\x52\\xa2\\\n\\x46\\x39\\x20\\x3a\\x29\\x4c\\xe8\\x72\\x3a\\x50\\xe7\\x20\\xd8\\xc2\\x43\\x41\\\n\\x94\\x48\\x56\\xce\\xc5\\x4d\\xe0\\x71\\xd1\\x08\\x12\\x3b\\x9a\\xf4\\x4e\\x9f\\\n\\xfc\\xce\\x29\\x5a\\xc0\\x88\\xa3\\x84\\x6e\\x25\\x65\\x46\\x3c\\xaa\\x37\\x4b\\\n\\x28\\x40\\x80\\x1f\\x00\\x48\\x3a\\x5e\\x05\\x63\\xe0\\x5c\\xd5\\xce\\xd4\\x30\\\n\\xe8\\x46\\xde\\xd7\\x40\\xd0\\x0a\\x09\\x26\\xc6\\xac\\x50\\x51\\x70\\x7c\\xd8\\\n\\x10\\x7d\\x85\\x12\\x8a\\xa6\\x4a\\x11\\x84\\x0e\\x43\\x40\\xc9\\x13\\x6c\\x38\\\n\\xda\\x95\\x11\\xa1\\x47\\x0c\\x29\\x03\\x23\\x6a\\x52\\x51\\x60\\x11\\x69\\x54\\\n\\x28\\xa0\\x2a\\x21\\x33\\x3b\\x04\\xfd\\x05\\xcf\\xa3\\x89\\x07\\x48\\x20\\x99\\\n\\x54\\x35\\xef\\x6c\\x7f\\xd0\\x14\\xb9\\x81\\x41\\x4c\\x77\\x3a\\xef\\xef\\xb4\\\n\\x0f\\x99\\xdf\\x0c\\x37\\xe2\\x85\\x46\\x2b\\x11\\xd4\\x42\\x98\\x62\\x5c\\x60\\\n\\xad\\x5d\\x4e\\xe0\\x31\\xa7\\xe8\\x7d\\x4c\\x27\\x18\\x6d\\xa1\\x14\\x5a\\x15\\\n\\x3b\\xb8\\xa2\\x25\\x2a\\x6c\\x38\\x80\\xd8\\xcb\\x30\\x25\\x54\\xc4\\x06\\xec\\\n\\x87\\xe7\\x24\\xfb\\xc0\\x86\\x6c\\x12\\x1d\\x6d\\xfd\\x6a\\x69\\x41\\xd1\\x2a\\\n\\x75\\x3e\\x2b\\xdd\\x6f\\xa5\\x8a\\xb9\\x4e\\x55\\x52\\x15\\x25\\x25\\xc1\\x1a\\\n\\x8b\\xea\\x4f\\x6c\\x29\\x01\\x46\\x2f\\x32\\xb3\\xad\\x77\\xb8\\xb6\\xb1\\x99\\\n\\x38\\x85\\x02\\x12\\xa3\\x15\\xab\\xe8\\x92\\x67\\xbf\\xf3\\xcd\\x4e\\xe5\\xa9\\\n\\xff\\x00\\x6c\\x9b\\xfb\\xd7\\xe7\\x12\\xd6\\x40\\x86\\x24\\x4f\\xe0\\x18\\x8d\\\n\\x81\\x9b\\x4e\\x23\\xd3\\xe8\\x86\\xc0\\xd5\\xd0\\x2e\\x85\\x9c\\xc7\\x42\\x80\\\n\\x05\\x29\\x5b\\x1c\\x45\\x92\\x24\\x9f\\x78\\x65\\x4b\\x61\\x42\\x27\\xe8\\x01\\\n\\xce\\x95\\x0e\\x96\\xc8\\xe8\\x10\\xa8\\x03\\xc0\\x31\\x8d\\x1c\\x98\\x8d\\xe6\\\n\\xb4\\x15\\xaa\\x4d\\x8a\\xf9\\x42\\x3a\\x8b\\x98\\x86\\xa2\\xf4\\x1d\\x12\\xa9\\\n\\x8e\\xf5\\x0f\\x5a\\xde\\x3c\\x60\\xa3\\xa9\\x94\\x02\\xd6\\xf5\\x57\\x40\\xb8\\\n\\xfa\\x28\\x56\\x0c\\x1e\\xc2\\x80\\xdc\\x25\\xe8\\x3b\\xcc\\x8a\\xa6\\x23\\x5f\\\n\\x04\\x3b\\x5a\\x46\\xbe\\x72\\xae\\x6b\\x32\\x2e\\x53\\x71\\x6a\\xac\\x49\\xd9\\\n\\xbc\\xb3\\x60\\x84\\x13\\xac\\xc7\\x07\\x09\\x23\\x2f\\x47\\x14\\xbd\\xec\\x20\\\n\\xb1\\x38\\x42\\xaa\\xf7\\x32\\x5e\\x53\\x15\\xb8\\x02\\x43\\x69\\x86\\x3b\\x12\\\n\\xa2\\xb6\\x70\\x97\\xa4\\x01\\xda\\xcb\\x80\\x85\\xeb\\x71\\xae\\x2c\\x52\\x08\\\n\\x40\\x53\\xa3\\xf3\\x12\\x77\\x9b\\xbd\\x1d\\x72\\x83\\xb3\\x08\\x2f\\x7e\\xbd\\\n\\x9b\\x94\\xf4\\x3d\\x1e\\x68\\xa0\\x35\\x51\\xb2\\x18\\x01\\x5f\\xab\\xfc\\x38\\\n\\x74\\x84\\xd6\\x22\\x98\\xf7\\x48\\x35\\xfe\\xb0\\x31\\x58\\x0f\\x58\\x42\\x7c\\\n\\x47\\xb5\\x9b\\xaa\\xf9\\xd4\\xec\\x29\\xf4\\x32\\x24\\x9e\\x5f\\xf9\\x4f\\xe4\\\n\\xc3\\x8e\\x63\\x7b\\x49\\x2a\\xe1\\xb5\\xfb\\xf3\\xff\\x00\\xea\\x56\\x6a\\xdd\\\n\\x5b\\x4d\\x3f\\xe6\\xc6\\xfb\\xbb\\xca\\x30\\x91\\x36\\x9e\\xd3\\x4c\\x33\\x2f\\\n\\xfe\\x3e\\xf2\\x9c\\x92\\x1d\\xdf\\xff\\x00\\x8e\\x9c\\xff\\x00\\x39\\xb0\\x90\\\n\\x0a\\x82\\xb3\\x0e\\xfa\\x34\\x7f\\x31\\xf0\\xa0\\x6b\\x6b\\x26\\x3b\\x78\\x38\\\n\\x6a\\x88\\x7d\\xf8\\xf0\\xb1\\x07\\x11\\x93\\x2c\\xd7\\xd6\\x03\\x10\\x11\\xda\\\n\\x71\\x8b\\x38\\x80\\x81\\xa4\\x1d\\x01\\x51\\xf7\\x66\\xe1\\x04\\x2a\\xd1\\x98\\\n\\x90\\x3c\\x6d\\xb0\\x85\\x73\\x13\\x2f\\xe1\\x88\\xa8\\x76\\x84\\xa1\\xd1\\x68\\\n\\xf1\\x8e\\xcc\\xf7\\x55\\xe1\\x2b\\x82\\x90\\x52\\xc1\\xd8\\xaa\\xd0\\xee\\x93\\\n\\xa6\\x7a\\xc7\\x5f\\x9f\\xef\\xa4\\x6d\\x44\\x7b\\x01\\x59\\x0a\\x8d\\xb4\\x70\\\n\\x0b\\x1d\\x73\\x60\\x42\\x55\\x34\\x31\\xe8\\x5f\\xd8\\xb2\\x07\\xc1\\x75\\x98\\\n\\xf3\\x26\\x1a\\xf8\\x0a\\x87\\xfc\\x24\\xd4\\x90\\xe9\\xa8\\xad\\x00\\xd4\\x32\\\n\\xe0\\x0e\\x84\\x4d\\x2f\\x60\\x4a\\x8d\\x4e\\x21\\x0a\\x0e\\xaa\\x75\\x9c\\xbd\\\n\\x92\\x58\\xc5\\x6c\\x4d\\x81\\xd0\\x7f\\x73\\xb9\\xc1\\x04\\x4a\\xa7\\xc0\\x07\\\n\\x70\\x55\\xfa\\x00\\xae\\x1d\\x2d\\x43\\x62\\x81\\x5b\\xc5\\xc5\\x4a\\x03\\x8d\\\n\\x7b\\x41\\xe8\\xe2\\x55\\x6c\\xf4\\xd2\\x84\\x20\\x08\\x51\\x14\\x4d\\xae\\xf3\\\n\\x52\\x71\\x72\\x34\\xc1\\x88\\xc4\\xfd\\xcf\\x38\\xf6\\x35\\x82\\xaa\\x52\\xc2\\\n\\x6a\\xb1\\xa0\\xa5\\xee\\x70\\x69\\x35\\x40\\xea\\xa9\\x58\\x40\\xd5\\x1d\\x26\\\n\\xa7\\x37\\xb0\\x94\\x26\\xab\\x19\\xec\\xe9\\x1e\\xc8\\xb0\\xe1\\xf2\\x55\\x92\\\n\\x35\\xe8\\xab\\x68\\xcc\\x0f\\x35\\x44\\x8c\\x66\\xe1\\xd3\\x69\\x13\\xef\\xa8\\\n\\x3c\\x63\\x76\\x83\\x1d\\x91\\x08\\x59\\x81\\x41\\x10\\x9c\\xad\\x14\\x0e\\xcd\\\n\\x52\\x3a\\x04\\xc2\\x9d\\x8b\\x19\\x3d\\x50\\x20\\x7c\\x19\\xd1\\x13\\xbe\\x8c\\\n\\x74\\x16\\x87\\x2b\\x9a\\x3b\\x98\\x09\\x83\\xff\\x00\\x3e\\x3f\\xf5\\xce\\xce\\\n\\xdd\\xbf\\xf3\\xc0\\x4a\\x90\\x47\\xa4\\x2d\\xf2\\x3f\\xad\\xfb\\xd6\\xe8\\xb9\\\n\\x51\\x1a\\xb0\\x1b\\x45\\x62\\x63\\xf2\\x0b\\xac\\x73\\x65\\xc1\\xeb\\x21\\x87\\\n\\xfc\\x9b\\x34\\x79\\x10\\xac\\x53\\xa2\\x6c\\xd1\\x44\\xa2\\x14\\x34\\xda\\x99\\\n\\xc4\\x55\\x88\\x81\\x14\\x22\\x4d\\xb2\\x1b\\x3b\\xd5\\xdd\\xa8\\xc1\\x13\\x9a\\\n\\x80\\x7e\\xad\\x27\\xcf\\xeb\\xd7\\x53\\x83\\x51\\x59\\x80\\x4a\\x99\\xa9\\x7d\\\n\\x85\\xa5\\x5e\\xef\\x01\\x41\\x7d\\x2d\\xd0\\x10\\xf5\\x95\\xa1\\x90\\x3f\\xbc\\\n\\xce\\xff\\x00\\x06\\xfd\\x1d\\xeb\\xe7\\xfe\\xf5\\xc1\\x8a\\x30\\xfe\\x3c\\xc5\\\n\\x24\\x82\\x89\\x44\\x82\\xa3\\xa9\\x71\\xb1\\x28\\x5a\\x11\\x0c\\xd6\\x14\\xdb\\\n\\x52\\x4f\\x0f\\xa4\\xd6\\xec\\x4c\\x14\\x15\\xa2\\xfe\\x18\\xcb\\xfa\\x9d\\xab\\\n\\xd5\\x91\\x08\\x0f\\x00\\x46\\xd0\\x0a\\x69\\x86\\xa2\\x1a\\x4e\\x21\\xf4\\x08\\\n\\x6a\\x45\\xb0\\xd3\\xa0\\xfd\\x16\\x0b\\x59\\x52\\x80\\x5a\\x02\\x85\\x4d\\xa2\\\n\\xa1\\x69\\x11\\xea\\x8b\\x80\\x7a\\xc5\\xd5\\xa0\\x44\\x54\\x45\\x28\\x82\\x47\\\n\\xa8\\xd2\\x50\\x0f\\x43\\x88\\x18\\x80\\x3f\\xe0\\xe9\\x81\\x25\\x6e\\xad\\x55\\\n\\x12\\xb9\\xf6\\xb8\\x48\\x1d\\x0e\\x3c\\xd3\\x2e\\x84\\x88\\xa3\\x03\\x94\\x57\\\n\\x40\\x86\\xe9\\x31\\xb8\\x04\\x1f\\x24\\x0b\\x23\\xbc\\x17\\xca\\xd9\\x52\\x4d\\\n\\x54\\x44\\x88\\x97\\xbe\\xbf\\x45\\x98\\x96\\x63\\x42\\x0a\\x51\\x41\\xd7\\x1e\\\n\\x89\\xc4\\xc0\\x35\\x40\\x29\\x72\\x41\\x35\\x8d\\x66\\x5f\\x7c\\xc6\\x40\\x94\\\n\\xe4\\xf0\\xef\\xf1\\x5d\\x5c\\xe9\\xeb\\x99\\x56\\x3a\\x00\\xb1\\x90\\x35\\x3b\\\n\\x95\\x76\\xee\\x1c\\x64\\x41\\x3c\\x42\\xb1\\x14\\x51\\x09\\x9f\\xbf\\x5c\\x3a\\\n\\x03\\xa2\\xd8\\xb9\\x60\\xc0\\x83\\x07\\x28\\x13\\x5e\\x12\\x3b\\x5a\\x82\\x51\\\n\\x3d\\x59\\x0b\\x84\\x7b\\x51\\xaa\\x70\\xe8\\xa4\\x0e\\xa8\\x21\\xaa\\x36\\x3a\\\n\\x06\\xfd\\x83\\xc4\\x2c\\xc8\\x94\\xc2\\x9a\\x29\\xda\\xfe\\x82\\x2b\\xdd\\x08\\\n\\x43\\xc0\\x38\\xc1\\xeb\\xbb\\x99\\xda\\xe7\\xce\\x7f\\xd3\\xc0\\x99\\xfb\\xd7\\\n\\x26\\xc4\\xc3\\x52\\x54\\x74\\x8f\\xd0\\xf9\\xd7\\x88\\x9c\\x17\\x7f\\xe9\\xb8\\\n\\x45\\x22\\x83\\xe8\\x65\\x07\\xf5\\xa5\\x70\\xcc\\xfb\\xc7\\x8c\\xe8\\x46\\xd4\\\n\\x41\\x84\\x57\\x3b\\xb1\\x57\\x52\\x5e\\x23\\x2b\\x9b\\x44\\x05\\x6e\\xa3\\x2f\\\n\\x57\\x26\\xd1\\x31\\x18\\xdd\\x05\\x73\\xa8\\xf8\\x3e\\xc7\\xc0\\xfa\\x9b\\xa0\\\n\\x90\\x20\\x22\\x22\\xd5\\x6e\\x84\\x62\\xa7\\x06\\xf3\\x51\\x0c\\x11\\x48\\x99\\\n\\xa8\\x48\\x72\\x46\\xf2\\x67\\x71\\x41\\x67\\xa5\\x1a\\x9b\\x3f\\xda\\xe7\\x06\\\n\\x04\\x25\\x3a\\x3a\\x67\\x9e\\xcc\\x30\\xc6\\x94\\x0a\\x40\\x48\\x08\\x5a\\x08\\\n\\x92\\x86\\xa0\\x10\\x78\\x80\\x55\\x04\\x16\\x18\\x18\\xeb\\xb0\\x57\\xa9\\x68\\\n\\xd2\\x24\\x91\\xde\\x3b\\x0f\\x83\\xaf\\xc9\\x5b\\x4b\\xb2\\x38\\x01\\x1d\\x84\\\n\\x45\\xc6\\x5c\\x4b\\xda\\xaf\\xb6\\xad\\x01\\xc7\\xe0\\xab\\xd2\\x43\\x11\\xec\\\n\\x65\\x1d\\x16\\x86\\x45\\x1b\\x24\\x0b\\x03\\x5d\\x26\\x41\\x4a\\xc6\\xdc\\x0a\\\n\\xe9\\x55\\x56\\x64\\x00\\xc8\\x02\\x82\\x20\\x0c\\x68\\x95\\x89\\xd4\\xd0\\xee\\\n\\xa0\\x06\\x10\\x05\\x1d\\x3c\\xa8\\x8b\\x86\\x25\\x75\\x8c\\x12\\x40\\x3f\\x80\\\n\\x02\\xc9\\x4c\\x57\\x74\\xea\\x02\\x4a\\x8a\\x00\\x02\\xa9\\xf2\\xce\\x12\\xb2\\\n\\x91\\x2e\\x88\\x14\\xa2\\x94\\xc8\\xb0\\x08\\x0e\\x38\\x03\\x58\\x20\\xac\\x8e\\\n\\xc5\\x2c\\x80\\x93\\x06\\xf0\\x3a\\xc1\\x29\\x8f\\x89\\x2b\\x00\\x74\\xec\\x8e\\\n\\x56\\xf1\\x9a\\x33\\xd8\\xf4\\xd8\\xc4\\x01\\x43\\xbe\\x4a\\x87\\xa0\\xae\\x84\\\n\\x10\\x43\\x0c\\x63\\x58\\x01\\xca\\x5d\\x43\\x30\\x82\\x42\\x14\\xd0\\x57\\xb0\\\n\\x86\\x14\\x17\\x88\\xc2\\x11\\x03\\xb5\\xa4\\xaf\\x68\\x4e\\x6b\\xe0\\x00\\x54\\\n\\x8a\\x1d\\xa1\\xee\\xf5\\xa8\\x02\\x0a\\x30\\xfc\\x3f\\xfc\\x8f\\xfc\\x33\\x98\\\n\\xab\\xd1\\x09\\xf6\\xdb\\xff\\x00\\xef\\x74\\xce\\x15\\x47\\xd8\\xfe\\x2a\\x24\\\n\\xbf\\x5d\\xd8\\xf8\\xf3\\x26\\x0c\\x0f\\x8f\\xab\\xf5\\xa9\\x31\\xf9\\xf5\\x69\\\n\\x13\\x53\\xfb\\x33\\x4e\\x7f\\xa1\\x2f\\x53\\x78\\x5b\\x1f\\xd2\\x2f\\x9a\\xdf\\\n\\xf9\\x9d\\xfb\\xe6\\x3c\\x0b\\x59\\x9b\\xd1\\xf4\\x7a\\xff\\x00\\x89\\xff\\x00\\\n\\x5e\\xbc\\x4d\\xf8\\xbd\\x0c\\xfe\\xfe\\xcf\\x03\\xf9\\xe7\\x13\\xcf\\x0b\\x0a\\\n\\x1f\\x45\\x00\\x8d\\xac\\xd8\\x1b\\xc7\\x08\\x4a\\x55\\x2b\\x21\\xdc\\x5c\\x26\\\n\\x97\\xf8\\xbb\\x86\\x81\\x04\\x14\\x5d\\x52\\xde\\xfe\\xa4\\xa4\\xe0\\xd2\\xc1\\\n\\xce\\xee\\x19\\x85\\xbe\\x87\\x59\\xbb\\x9c\\xc9\\x42\\x4f\\xa5\\x14\\x94\\xb1\\\n\\xcd\\x35\\x23\\x90\\x17\\x8c\\xcc\\x0c\\x01\\x14\\xa9\\x97\\x13\\x07\\x26\\x33\\\n\\xb2\\xbc\\x68\\x43\\xe3\\x5a\\x91\\xa1\\x80\\xc6\\x7b\\x89\\x46\\x1c\\x50\\xd5\\\n\\xd8\\x81\\x40\\x3d\\x55\\x50\\xc5\\xc6\\xd3\\x39\\x6f\\x02\\x07\\xd1\\x30\\x65\\\n\\x5c\\xcc\\xc6\\x84\\x3b\\x4a\\x6a\\x5a\\x05\\x31\\x6a\\x5d\\x01\\x7b\\x0d\\x4f\\\n\\x38\\xc4\\x54\\x01\\x45\\x2a\\x6a\\x10\\x38\\xad\\x52\\x3c\\xaf\\x18\\x1c\\x44\\\n\\x51\\x8c\\x1f\\x83\\x68\\x56\\xf1\\x5e\\x14\\x90\\x01\\x41\\x13\\xb7\\x42\\x22\\\n\\x27\\x91\\xb4\\xb0\\xe8\\x93\\xa4\\x7b\\x92\\x1d\\x6a\\x87\\x8e\\xd7\\x2a\\x02\\\n\\x0b\\x22\\xf0\\xc4\\x93\\x43\\x51\\x78\\x23\\x09\\x45\\x23\\x0b\\xd8\\x4a\\x02\\\n\\xd7\\x14\\xc8\\x63\\x4a\\x1b\\x74\\x31\\xf6\\xd1\\x07\\x77\\xf1\\x3e\\x52\\xc1\\\n\\x26\\x30\\xbf\\x13\\x6e\\x4f\\xce\\x4a\\x59\\xd3\\xa6\\xcb\\x03\\x57\\xbd\\x6b\\\n\\x7a\\x25\\xae\\x0a\\xb0\\x8a\\x06\\xf7\\x4b\\xdc\\xbd\\x6e\\x11\\xbd\\xb2\\xbb\\\n\\x14\\x04\\x40\\x34\\xa4\\x65\\x3e\\x3b\\x6a\\x36\\x61\\xc1\\x81\\xd0\\x3a\\x43\\\n\\x49\\x8d\\x6d\\x2f\\x8d\\xcd\\xc7\\x8a\\x96\\x8d\\xd5\\x24\\x84\\x05\\xa3\\xbd\\\n\\x00\\x98\\x91\\x0a\\xf9\\x88\\xed\\x5f\\xbb\\x8c\\xe8\\x04\\x9d\\xdb\\x59\\x79\\\n\\x40\\xf5\\x8e\\xcc\\x94\\x1e\\x87\\xc9\\xd0\\xcd\\x5d\\xa9\\x27\\x8f\\x80\\x3a\\\n\\x07\\x43\\x1a\\x53\\xd3\\xdc\\x67\\x28\\x80\\x4d\\xd1\\x56\\x69\\x1f\\xba\\x7b\\\n\\x16\\x14\\x21\\xc4\\xc8\\x11\\xe9\\x2c\\x63\\xdb\\x9f\\x7b\\xc8\\x15\\x4e\\x3b\\\n\\x44\\x61\\x68\\xe7\\xf3\\xff\\x00\\xce\\xb8\\x24\\xaa\\x0c\\xfd\\x86\\x5c\\x7d\\\n\\x8e\\xf4\\xff\\x00\\x6a\\x0d\\x9c\\x6b\\x17\\xe9\\x14\\x50\\x8f\\x10\\x38\\x51\\\n\\x97\\x28\\x96\\x5c\\x3d\\x45\\xa4\\x25\\xf4\\x15\\xe1\\x55\\x00\\x58\\x4c\\x81\\\n\\x06\\x81\\xdf\\xb6\\xda\\xb2\\x45\\xa5\\x50\\xa8\\x3a\\x49\\x2a\\x32\\xbe\\x9c\\\n\\x43\\x1d\\x8b\\x3c\\x10\\xee\\x38\\x4a\\x25\\x0c\\x78\\x2a\\x76\\x18\\x54\\x54\\\n\\x00\\x26\\x14\\xa9\\xf8\\x10\\x98\\x82\\xc3\\xae\\xc0\\x18\\x08\\x14\\x5f\\xd2\\\n\\x58\\xaf\\x02\\xc6\\x19\\x05\\x10\\xde\\x09\\x17\\x28\\x16\\x1c\\xb1\\x4b\\x61\\\n\\x40\\x41\\xa2\\xf6\\x4e\\x07\\x13\\x03\\x99\\x62\\x8d\\x74\\x31\\xce\\xd4\\xa8\\\n\\xe9\\xaa\\x4d\\x47\\x20\\xc2\\xd0\\xc2\\x09\\x51\\x4b\\x01\\x46\\x75\\xfb\\xd7\\\n\\xc4\\xb0\\x1a\\x14\\x30\\x05\\x11\\x1e\\xb4\\x80\\x77\\xe3\\x4e\\x89\\xd3\\xd6\\\n\\x8a\\xa2\\x0a\\x3b\\x2b\\xb7\\xa9\\x9c\\x64\\x28\\x9a\\x10\\x34\\xa8\\x3e\\x00\\\n\\xab\\x6f\\x58\\x34\\x91\\x0d\\x00\\x47\\x61\\x23\\x4f\\x01\\xf4\\x08\\x60\\x1c\\\n\\xa9\\x88\\x05\\x8b\\x87\\x21\\xe3\\x2e\\x43\\xae\\xde\\xb9\\x13\\xd0\\x20\\xa0\\\n\\x38\\x0a\\x41\\xfc\\x3a\\xc9\\x97\\x95\\xda\\x02\\x11\\x05\\xb6\\x3b\\x11\\xda\\\n\\x8b\\x93\\x5a\\x7c\\x52\\x36\\x24\\x8a\\x80\\x4f\\x4d\\x9d\\x10\\x98\\x1c\\x42\\\n\\xd1\\xb4\\x2b\\x28\\xc4\\x67\\x96\\xe2\\x10\\xd5\\x0d\\x75\\x66\\x84\\x30\\x2c\\\n\\x01\\x28\\x15\\x10\\x91\\xcb\\xd8\\x17\\xc5\\x18\\x22\\xd2\\x5c\\x38\\x3a\\x10\\\n\\x33\\x9c\\x00\\x21\\x22\\x1a\\xbb\\x86\\xaa\\xb1\\x7e\\xd0\\x38\\x2d\\x0a\\xcb\\\n\\xac\\xeb\\xba\\x9d\\x10\\x94\\x5a\\xdb\\x57\\xa5\\x2e\\xf1\\x20\\xd1\\xa6\\xfe\\\n\\x21\\xff\\x00\\xf7\\x7f\\x85\\xda\\x99\\x4b\\xff\\x00\\x47\\xbf\\xe7\\xe7\\x08\\\n\\x9d\\x36\\xb8\\x06\\x06\\x4c\\x43\\x6b\\xe7\\x7c\\x12\\x14\\x92\\xa3\\x19\\x98\\\n\\xf4\\xae\\x76\\x64\\x31\\xbc\\x2d\\x27\\x53\\x10\\xa2\\x4f\\x44\\xab\\x5e\\x89\\\n\\x04\\x1e\\x62\\x25\\x01\\xb1\\x56\\x63\\xd4\\x04\\x70\\xb2\\xf6\\xda\\xf1\\x1a\\\n\\x68\\xab\\x86\\x0e\\x69\\x71\\xe9\\xea\\x19\\xe8\\xf0\\x21\\x6e\\x8e\\x8d\\x34\\\n\\xf5\\x63\\x63\\x1f\\x7a\\xf1\\x16\\x09\\x60\\xe8\\xe3\\x76\\x4e\\xb0\\xbf\\x09\\\n\\xc7\\x46\\x15\\x70\\x17\\xe2\\x44\\x07\\x50\\x00\\x4b\\x57\\x87\\xc4\\xa0\\x7a\\\n\\x2a\\x6b\\x12\\xcf\\xa0\\x37\\x69\\xce\\xbe\\xe2\\x44\\x8a\\x04\\x1a\\x52\\xb7\\\n\\xf7\\x18\\xf1\\x9c\\x21\\x8f\\xde\\x4d\\xba\\x98\\x40\\xa7\\xa7\\xde\\x2b\\xc4\\\n\\x00\\x0a\\xed\\x60\\x15\\x56\\x7c\\x8d\\x82\\xf1\\xae\\x11\\x61\\xf0\\x11\\x73\\\n\\x63\\xd8\\xfa\\x23\\xdb\\xc0\\xa6\\x74\\x68\\xd9\\x1e\\xe9\\x51\\x06\\xa5\\x10\\\n\\x0e\\x5b\\x68\\x55\\xa0\\xb8\\x01\\x11\\x36\\xa3\\x05\\xc2\\x92\\xaf\\x5d\\x40\\\n\\xa8\\xcf\\xaa\\xd1\\xf0\\x83\\xe4\\xb4\\xe0\\x8c\\x09\\x10\\x80\\x3b\\x22\\x20\\\n\\xb5\\x13\\x64\\xeb\\x38\\x8a\\x6a\\x03\\xfa\\x0a\\x01\\x7b\\x83\\x17\\xb1\\x10\\\n\\xe2\\x0a\\xd5\\x88\\xa1\\x70\\x30\\xaf\\xd7\\x50\\x30\\x92\\x86\\x00\\x67\\x22\\\n\\x01\\x58\\x44\\xbb\\x18\\x42\\x25\\x2d\\x83\\xa9\\x5f\\xad\\x1f\\x0e\\x2d\\x94\\\n\\xe3\\x5b\\x6e\\xda\\xb9\\x7f\\x00\\x25\\x48\\x3b\\xc5\\x87\\x08\\xdb\\x90\\x8d\\\n\\x02\\xa9\\x2a\\x57\\x52\\x97\\x10\\x89\\x90\\x51\\x27\\x46\\x09\\xa5\\x89\\xe9\\\n\\xb2\\xcd\\x56\\x2b\\x4c\\x3b\\x21\\x84\\x18\\xcc\\x5a\\x6f\\x5e\\xc4\\x47\\x26\\\n\\x82\\x75\\x4a\\xa2\\xee\\xf4\\xeb\\x9e\\xa9\\x42\\x25\\x1e\\x02\\xa9\\x28\\x35\\\n\\xd2\\x2f\\xe8\\xea\\x45\\x20\\x29\\xc1\\x2e\\x30\\x49\\x01\\xd9\\x52\\x09\\x77\\\n\\x90\\x62\\xe8\\x27\\x87\\x7e\\x10\\x84\\xef\\xb1\\x31\\xbc\\x86\\x98\\xc5\\xaf\\\n\\xa7\\x5a\\xb0\\x11\\xbd\\x7c\\xf9\\x4b\\x4a\\x03\\xaa\\x73\\x42\\xeb\\xfa\\x13\\\n\\xb5\\x17\\x80\\x75\\x7a\\xfa\\xa2\\x39\\x9d\\xc0\\xed\\x73\\xbb\\x9c\\x3e\\xc1\\\n\\x95\\x75\\xb3\\xf1\\x4d\\x5c\\x6c\\xf0\\xfc\\x01\\xeb\\x63\\x13\\xf5\\xb9\\xeb\\\n\\x75\\xe9\\xf5\\x9c\\x12\\x29\\x3f\\x8f\\xe7\\x4a\\xff\\x00\\x5d\\xf1\\xeb\\x85\\\n\\x6a\\xb7\\xb1\\x1b\\xd3\\xee\\xe3\\xad\\x47\\x73\\x8e\\xfe\\x68\\x4a\\x0c\\xaa\\\n\\x2c\\xd0\\x0e\\xaa\\x26\\x31\\x15\\xf6\\x45\\x27\\x74\\x81\\x3a\\xc2\\x00\\x95\\\n\\x6f\\x61\\x10\\xd3\\x17\\xd0\\x44\\xfc\\x9d\\x3c\\x50\\x01\\xee\\x46\\x32\\x11\\\n\\xdb\\xe9\\xa6\\x11\\x44\\x64\\x98\\x8d\\x5a\\x56\\xd4\\x24\\xb5\\xbb\\x6d\\xf5\\\n\\x56\\x80\\xac\\xe8\\x5c\\x47\\x01\\x14\\x04\\xf2\\xe6\\x0a\\x74\\x59\\x10\\x69\\\n\\x0a\\xe0\\x12\\x0a\\x47\\x32\\x21\\x36\\x96\\x85\\x51\\x89\\x46\\xab\\x54\\x84\\\n\\x4b\\x31\\x40\\x0b\\x8d\\x2a\\x83\\x44\\x12\\x8d\\x30\\xca\\x4f\\x42\\x63\\xf0\\\n\\x57\\xce\\xdf\\xb3\\x1e\\xf0\\x52\\x16\\xa1\\x01\\x46\\x2d\\x22\\xc8\\xef\\x7a\\\n\\x12\\x29\\xb0\\xba\\x97\\x14\\xae\\xb4\\x10\\x16\\x18\\xde\\x22\\x1b\\xd1\\x34\\\n\\xb0\\x2d\\xf4\\x11\\x7f\\xae\\x16\\x0c\\x4a\\xd5\\x2b\\x10\\x8b\\x53\\xa3\\xbe\\\n\\x85\\xad\\xd3\\x3c\\x00\\x7a\\xb4\\x4a\\x1a\\xbe\\x45\\xde\\x67\\x04\\xaa\\x97\\\n\\x55\\x91\\xc3\\xf5\\x6f\\xbf\\xd4\\x2e\\xbc\\xcc\\x94\\x5c\\x08\\x22\\x26\\x0a\\\n\\x86\\x5e\\x05\\x44\\x98\\x48\\x55\\x52\\x83\\x15\\x35\\x66\\xd5\\x5e\\x1d\\x0f\\\n\\xd3\\xd5\\x62\\x99\\x04\\x2b\\x6c\\xbc\\x07\\x10\\x30\\xea\\x62\\xd9\\x04\\x93\\\n\\x4b\\x5a\\xac\\xe2\\x77\\x18\\x09\\x20\\xb7\\x52\\xf6\\xb1\\x76\\x1c\\xc8\\x02\\\n\\xd4\\x10\\x55\\x54\\x56\\x6d\\x6e\\xba\\x98\\x3a\\x24\\xde\\xce\\xa2\\x6c\\x32\\\n\\xc6\\xb1\\xaf\\x55\\xad\\xed\\x92\\x75\\x94\\x9c\\x94\\x8c\\x0a\\x3a\\x2e\\x0e\\\n\\xbc\\x48\\x37\\x00\\x10\\x20\\x6d\\x05\\x6b\\x59\\xe5\\x14\\xe6\\x7f\\x8f\\x4f\\\n\\xd0\\xec\\xfd\\xef\\xf0\\xfc\\xeb\\x8a\\x52\\x03\\x7e\\x90\\x54\\x0f\\x0f\\x7e\\\n\\x67\\x4d\\x87\\x0e\\xf2\\xf0\\x01\\x7b\\x81\\xaa\\xab\\x17\\xfa\\x0b\\x88\\xf8\\\n\\xc2\\x2a\\xca\\x00\\x39\\x04\\x4e\\x96\\xc2\\xbf\\x0d\\x40\\xab\\xab\\xee\\xfc\\\n\\x2a\\x2a\\x76\\x5a\\x35\\x0b\\xc8\\x2e\\x12\\x45\\x3a\\xdd\\x4a\\xaa\\x8e\\x07\\\n\\xaf\\xac\\x1d\\x76\\x48\\x14\\x11\\xa4\\x7a\\x51\\xda\\xb6\\x10\\x47\\x81\\x20\\\n\\x2b\\x88\\xe6\\x84\\xa9\\x3f\\x87\\xee\\xbe\\xd0\\x76\\x1c\\x4b\\xec\\xca\\xef\\\n\\xc5\\x94\\xc2\\x43\\x96\\xdc\\x20\\x99\\x81\\x28\\xa9\\xf0\\xa8\\xa1\\x43\\x78\\\n\\x6b\\xb4\\x91\\xac\\x22\\xa5\\x43\\xe8\\xa0\\x00\\xd5\\xa0\\xb8\\xe0\\x36\\x32\\\n\\x96\\x20\\x53\\xd5\\xd9\\x11\\xd3\\x79\\x8a\\xa5\\xb9\\x60\\x0d\\xd7\\x61\\xfe\\\n\\xea\\x42\\x9c\\x5a\\x85\\x03\\x60\\x4a\\xbf\\x42\\x75\\x2a\\x24\\xe3\\x3e\\xd5\\\n\\xd9\\x66\\x22\\x30\\xb1\\x00\\x2f\\x5a\\xa8\\x04\\x55\\xa6\\x14\\x0a\\x6f\\x60\\\n\\x3a\\x34\\xac\\x98\\x0a\\x73\\x6d\\xa0\\xa4\\x21\\x55\\x60\\x2a\\xc0\\xb6\\x8a\\\n\\x8c\\x87\\x03\\xe6\\x80\\x22\\x6d\\x10\\x44\\xce\\xe8\\xed\\xb9\\xc4\\xf6\\x0e\\\n\\x89\\x57\\x42\\x87\\x41\\x2c\\xd7\\x36\\x97\\x81\\x4d\\x18\\x84\\x74\\x8e\\x85\\\n\\xdb\\x21\\xd1\\xf8\\x44\\xd8\\x19\\x8a\\x85\\x01\\xd5\\xc5\\x7c\\x55\\x49\\xd7\\\n\\x19\\xb9\\x1c\\x37\\x46\\xad\\x9f\\xa7\\x22\\xa1\\x62\\xaa\\xf5\\xee\\x54\\x83\\\n\\xdc\\xa5\\xda\\xa3\\xb4\\x61\\x01\\xe1\\xb5\\x0d\\x04\\x5a\\x51\\x6b\\xf8\\xd9\\\n\\xa0\\x49\\xdb\\xc5\\xe0\\x9e\\x2a\\x44\\x80\\xc2\\xe1\\x10\\x95\\x45\\xe3\\xc3\\\n\\x01\\x8c\\xd1\\x5c\\x36\\x20\\x84\\x80\\x2f\\xc5\\x38\\xb1\\xc1\\xa1\\x01\\x29\\\n\\xd2\\xd4\\xae\\x79\\xbf\\x83\\x14\\x3b\\x87\\xe1\\x67\\xdc\\xba\\x5e\\x8f\\xea\\\n\\x2f\\x52\\xa0\\xcc\\x4f\\xaa\\x65\\x84\\xc9\\xe7\\x13\\xaf\\x44\\x0b\\x5e\\xc4\\\n\\x7f\\x22\\x9d\\x4f\\x6a\\x9b\\xa0\\xc6\\xbd\\x18\\x34\\xbf\\xf5\\xda\\x1e\\x3c\\\n\\x6c\\x6b\\x19\\xd0\\x4c\\x12\\xf7\\xa7\\xf4\\x3f\\x27\\x15\\x63\\xaa\\xb7\\xd8\\\n\\x0e\\x12\\x74\\xb8\\x05\\x49\\x5e\\x51\\xd5\\x09\\x4c\\xad\\x11\\x71\\x1c\\xc6\\\n\\x3d\\x16\\x1b\\x24\\xe1\\x35\\x5d\\xe0\\x7a\\xd2\\x5d\\xf8\\x70\\x68\\xd9\\x82\\\n\\x31\\xaf\\xd5\\xe4\\xdb\\xdf\\xfc\\xf1\\xac\\x02\\xdd\\x03\\x45\\x50\\x40\\x7a\\\n\\x5a\\xf6\\x2a\\xf1\\x20\\xa4\\xf8\\xe8\\x83\\x04\\x54\\xed\\x1d\\x10\\x90\\xd7\\\n\\x05\\x41\\x17\\xc5\\x21\\x52\\xad\\x2a\\x85\\x03\\xbb\\xa7\\x8c\\x40\\xee\\x9a\\\n\\x8d\\xc6\\xff\\x00\\xa9\\x14\\x79\\x47\\x55\\x61\\xaf\\x51\\xd2\\x18\\x98\\x35\\\n\\x43\\xb6\\x7a\\x8b\\x2a\\x65\\x05\\x0b\\xae\\x82\\x88\\xd2\\x1a\\x63\\x09\\x24\\\n\\xf6\\xa0\\x51\\x0a\\xa4\\x55\\x47\\xde\\x19\\x8f\\x52\\xbc\\x34\\x83\\x0e\\xa5\\\n\\x02\\x92\\x20\\xae\\xeb\\x52\\x4b\\x56\\x52\\xaa\\x9a\\xaa\\x2b\\xb4\\x00\\x6c\\\n\\x1f\\x42\\x81\\xa5\\xd8\\x28\\x63\\x36\\xd6\\x0e\\xeb\\x24\\x01\\x48\\x44\\x13\\\n\\x06\\xbd\\xfd\\x0a\\xd5\\xc8\\xfc\\x0a\\x53\\xa4\\x0f\\xd4\\xda\\x7a\\xf5\\x82\\\n\\x09\\x60\\xcd\\x88\\x24\\x61\\x77\\x71\\x09\\x89\\xc7\\x70\\x8d\\x84\\x2c\\x31\\\n\\x71\\x59\\x59\\x77\\xf7\\xc1\\x2d\\x0e\\xd4\\xa3\\xf6\\x54\\xa7\\x71\\x38\\x12\\\n\\xb0\\x9c\\x4a\\x22\\x3a\\xeb\\x7c\\x3e\\xbb\\x97\\x83\\x20\\x81\\x4d\\x35\\x18\\\n\\x76\\x2c\\x34\\x75\\x00\\xe8\\x52\\x9c\\x85\\x8a\\x08\\x79\\xd4\\x1d\\x00\\x59\\\n\\x9d\\xa9\\xc1\\xae\\xb6\\x50\\xb2\\xd2\\x4a\\x10\\x4c\\x69\\xab\\x8f\\x07\\xab\\\n\\x12\\x62\\xe8\\x43\\x48\\x6d\\x94\\x69\\x5e\\x9d\\x25\\x6d\\x36\\xb0\\x80\\xba\\\n\\x5c\\x4d\\xed\\x7b\\x82\\x71\\xb0\\x82\\x8d\\x55\\x64\\x75\\x55\\xa3\\x61\\xb9\\\n\\xc2\\xd9\\xa8\\x22\\xab\\x83\\x01\\x0c\\x41\\x69\\xbd\\xf4\\x26\\x02\\x65\\x12\\\n\\x3a\\x0a\\x2b\\x5b\\x75\\xd8\\x99\\xc6\\x12\\x8a\\x30\\xa2\\xd8\\xec\\xb6\\x18\\\n\\xe5\\x01\\x9b\\xc0\\x58\\x0b\\x83\\x09\\x8e\\x2a\\xe7\\xfb\\xa7\\xbd\\x6f\\x25\\\n\\x23\\xb8\\xe7\\xb2\\x04\\xce\\xb0\\x62\\x02\\xfc\\xf7\\x9f\\xfe\\xff\\x00\\xf7\\\n\\xfd\\x72\\xe8\\x0a\\x2a\\xc7\\x56\\xcf\\x73\\x7a\\xf5\\x31\\xbc\\x5a\\x4a\\xc0\\\n\\x89\\x49\\xd8\\x32\\xba\\xb4\\x88\\x51\\x29\\x90\\xd9\\x1b\\x90\\x7e\\x4f\\x9e\\\n\\x5c\\x58\\x13\\x8f\\xe5\\x28\\xe1\\x58\\x23\\xa1\\x75\\x22\\xec\\x4a\\x35\\x34\\\n\\x49\\x45\\x05\\x49\\x44\\x66\\xa1\\x01\\x77\\x55\\x09\\xc6\\xe8\\x22\\x91\\x55\\\n\\x4a\\xab\\x59\\x6e\\x46\\x76\\x86\\x29\\x61\\xb8\\x6b\\x00\\xc4\\x65\\x91\\x01\\\n\\x34\\x84\\xbc\\x0e\\x60\\xcb\\x54\\x19\\x0c\\x28\\x50\\x36\\xf1\\xa6\\xda\\x29\\\n\\x71\\x28\\x10\\x03\\x62\\x83\\x7c\\x71\\xd0\\xa1\\x10\\x89\\xd8\\xc1\\x65\\x02\\\n\\x14\\x84\\x1c\\x5f\\x9c\\x73\\x99\\x4e\\xb0\\x10\\x88\\x42\\x69\\x03\\xa4\\xc8\\\n\\xf2\\x23\\x2e\\x5a\\x18\\x06\\xa0\\xb6\\xa1\\x12\\x18\\x8f\\x02\\x0b\\x17\\xbb\\\n\\x44\\x48\\x05\\x41\\x48\\x2c\\xbd\\xf0\\xa6\\x01\\x03\\xd8\\x01\\x16\\x38\\x2d\\\n\\x4a\\x02\\xce\\xcb\\xc1\\x29\\x0a\\xdb\\xda\\x8a\\x55\\x83\\x15\\x50\\x5a\\x43\\\n\\xae\\x0e\\xb0\\x09\\xa4\\x8d\\xf4\\xb8\\xe5\\x08\\x0f\\x43\\xc9\\xd5\\xec\\x20\\\n\\x45\\x0c\\x71\\x69\\xd0\\x3a\\x3a\\xd3\\x91\\x60\\xb7\\x71\\x54\\xb4\\x51\\x4c\\\n\\x53\\x65\\x5c\\x33\\x0d\\x4a\\xb1\\x69\\x28\\x2b\\xbd\\x37\\x4a\\xc2\\xc5\\xbc\\\n\\x51\\x82\\xa5\\x71\\xdc\\x2e\\xd4\\x3b\\xa0\\x1d\\x32\\xf1\\x56\\x4e\\x30\\x51\\\n\\x0a\\x0e\\xfa\\xd5\\x29\\x43\\x38\\xe0\\x00\\xf8\\x95\\xe3\\xd8\\xce\\xc3\\x2d\\\n\\xc0\\xde\\x36\\x14\\x0f\\xa2\\xc3\\x23\\x18\\xa5\\xf2\\xa2\\xac\\x78\\xcf\\x68\\\n\\x81\\x41\\x44\\xca\\xfe\\xa4\\x01\\x7d\\x2d\\x9a\\xb4\\x84\\xc4\\x88\\x75\\xd5\\\n\\x42\\x11\\x0f\\xe7\\x03\\x08\\x08\\xdb\\x4f\\x5f\\xc1\\xfc\\xce\\xf7\\xbc\\x38\\\n\\x82\\xd0\\xce\\xc1\\xdc\\x42\\x6d\\xa6\\x4d\\xbf\\x3c\\x63\\xbe\\xb3\\x2d\\x50\\\n\\x0d\\x46\\xb0\\x12\\x40\\x63\\x89\\x8a\\x76\\x94\\xff\\x00\\xfe\\xa5\\xcd\\x61\\\n\\x21\\x8c\\xe2\\x08\\x05\\x14\\x91\\x4e\\x85\\x5d\\x52\\xff\\x00\\x47\\x7b\\x9c\\\n\\xf5\\x45\\x04\\x2a\\x3b\\xed\\xf8\\xc1\\xfe\\xc2\\x70\\xae\\x44\\x5f\\x85\\x85\\\n\\x20\\x4b\\x07\\x87\\x7d\\xf4\\x68\\x41\\x40\\x5a\\x60\\xa8\\x5b\\xdb\\xb4\\xf5\\\n\\xc6\\x36\\x2c\\xed\\xb2\\xa8\\xaa\\x74\\xa3\\xd0\\x77\\x82\\x0d\\x2f\\x19\\xdc\\\n\\xb9\\xff\\x00\\xde\\xf7\\xf7\\xff\\x00\\x0e\\x87\\x8e\\x04\\x06\\xaa\\x5b\\x88\\\n\\x30\\x27\\xd4\\x16\\x20\\xf1\\x8a\\x69\\x6b\\x0c\\x50\\xaf\\x61\\x6e\\xf4\\x23\\\n\\x26\\x5a\\xec\\xe6\\xd2\\x90\\x71\\x01\\x00\\x9a\\xae\\x25\\x0a\\x00\\xa4\\x35\\\n\\x61\\x72\\xb3\\xfe\\xbb\\xc3\\xaf\\x9c\\x2e\\xb7\\xa8\\x0b\\x10\\xbf\\x92\\x9c\\\n\\x3f\\xc2\\xf0\\x8b\\x07\\x10\\x44\\x08\\x07\\x1c\\x34\\x83\\xac\\x73\\x93\\xd0\\\n\\x12\\x00\\x12\\xb2\\x89\\x0b\\x07\\x48\\xbd\\x3c\\xae\\x55\\x2e\\x87\\xd3\\xbf\\\n\\x43\\x5a\\xa1\\xef\\x41\\x77\\x80\\x2a\\x32\\xa1\\x32\\x3e\\x5e\\x98\\x39\\x99\\\n\\xb1\\x5d\\x2d\\x60\\x18\\x9e\\x8d\\x15\\x1d\\xc9\\xf4\\xea\\x6b\\x84\\x30\\x81\\\n\\xb3\\x24\\x19\\x44\\xda\\x85\\x06\\x3e\\xcd\\x64\\x7b\\x5b\\x56\\x44\\xaa\\x9d\\\n\\x3b\\xc6\\x2c\\x85\\xf4\\x7a\\x27\\x62\\xa1\\x81\\x26\\x07\\x48\\xbc\\x8c\\x28\\\n\\xc4\\xb5\\xa7\\x7a\\x7a\\xa2\\x74\\xe8\\x5f\\x01\\x2a\\x3f\\x82\\xd2\\xc7\\x68\\\n\\x92\\xab\\xbb\\x6a\\x01\\x26\\x17\\x01\\x2d\\x0f\\x4f\\xc4\\x1f\\x6b\\x45\\x04\\\n\\x6c\\x44\\xd9\\x20\\x88\\x3e\\x0e\\xfc\\xaf\\x97\\x8d\\xb1\\x82\\x21\\x64\\x44\\\n\\x50\\x8a\\x12\\xf4\\xa9\\x73\\x81\\xb2\\xd7\\xa5\\x82\\xcc\\x6f\\x58\\xe0\\x05\\\n\\x6e\\xed\\xa5\\x55\\xa0\\x7d\\x45\\xeb\\xe9\\x9d\\xc6\\xfd\\x38\\xb3\\x0a\\x0e\\\n\\xa7\\x45\\x7b\\x18\\x09\\x3b\\x45\\x58\\xcb\\x37\\x06\\x0c\\x61\\x11\\x49\\x74\\\n\\xdf\\x5d\\xbb\\xc2\\x94\\x15\\xe8\\x48\\x7c\\xc6\\xd4\\x3c\\xcc\\xab\\xef\\x2d\\\n\\x0d\\x80\\x45\\xb5\\x21\\x5e\\x86\\x40\\x00\\xa6\\x60\\x9f\\x00\\x24\\x0c\\xa3\\\n\\xdb\\x83\\x1f\\x3d\\x05\\x6e\\xc2\\x29\\x96\\x40\\xbd\\x69\\x0b\\xfa\\x7f\\xf5\\\n\\xd5\\x1f\\xac\\x0b\\xbe\\x85\\x02\\x7a\\xf6\\x27\\xcb\\x57\\xb8\\xb5\\xa2\\x2b\\\n\\x62\\x1f\\x87\\xc2\\xfd\\xdf\\xd7\\xae\\x50\\xd1\\xa7\\x05\\x18\\x0e\\x93\\xa4\\\n\\x5f\\xbf\\xf7\\xc7\\x2a\\x55\\x10\\x02\\x24\\xaa\\x08\\xda\\xc0\\xc4\\x7a\\x90\\\n\\x6b\\xb4\\x88\\x36\\x97\\xb5\\xa8\\x5c\\xde\\xc4\\xcb\\x35\\xe5\\x42\\x0a\\x1a\\\n\\x54\\x8a\\x85\\x6b\\xed\\x85\\xe4\\xb3\\x9c\\x10\\x8d\\x60\\x28\\x10\\x0f\\xbe\\\n\\x32\\x1d\\x1b\\x56\\xbb\\x40\\x70\\x2d\\x4a\\x89\\x33\\x3b\\xc7\\x88\\xc2\\x60\\\n\\x08\\xb3\\xe2\\xc1\\x3a\\x42\\x39\\x50\\xa0\\x0a\\xd1\\x94\\x02\\x88\\x08\\x50\\\n\\x28\\x84\\x21\\x83\\x93\\xe5\\x83\\x6d\\x51\\x00\\xd0\\x1d\\xa9\\x08\\x1d\\x71\\\n\\x82\\x12\\x42\\x8e\\xa1\\x22\\x80\\xf7\\x4d\\x53\\x7d\\xe0\\xfb\\x1b\\xca\\x84\\\n\\x1d\\x19\\x6a\\xe7\\x65\\x97\\xa8\\x90\\x1a\\x2e\\x88\\xf4\\x88\\x08\\x8b\\xd2\\\n\\x28\\x63\\x4d\\x41\\x95\\xc1\\xdd\\x3f\\x41\\x42\\xe3\\x0b\\x40\\x71\\x2e\\x64\\\n\\x35\\x10\\x13\\x56\\x86\\x05\\xae\\xa6\\x1e\\xbe\\x88\\xea\\x50\\x30\\x00\\xc1\\\n\\xaa\\x52\\x68\\x6b\\x02\\xbf\\x24\\x14\\xd7\\x23\\x1c\\x94\\x4f\\xa6\\x9c\\x3d\\\n\\xe8\\x88\\x1b\\x36\\xfe\\xfe\\x5f\\x3f\\x0c\\xbe\\x0a\\x8d\\x11\\xcd\\x44\\xf3\\\n\\x5a\\x53\\xb6\\xcd\\x70\\x09\\x80\\xc2\\x48\\x9d\\x9d\\xee\\x44\\x23\\x92\\x76\\\n\\xa8\\x24\\x1e\\x84\\xea\\x22\\x77\\x3e\\xb2\\x05\\x0f\\x68\\xab\\x51\\x2c\\x70\\\n\\x4f\\x63\\xe2\\x54\\x80\\x80\\x95\\x10\\x9c\\x34\\x69\\x55\\xd1\\x9f\\x4c\\xbb\\\n\\xf9\\x8e\\x5e\\xd4\\xe0\\x55\\xd6\\x2c\\x40\\x99\\x04\\xdb\\x85\\xad\\x0b\\xda\\\n\\xf4\\x10\\xb6\\xc7\\xaa\\x5a\\xa3\\x58\\xb2\\xea\\x2c\\x52\\x6f\\x1c\\x2c\\xc8\\\n\\x81\\x26\\x9a\\xbf\\x5f\\xd3\\xec\\x1e\\x25\\xda\\xa2\\x03\\xd5\\x1f\\x9a\\xb8\\\n\\xaa\\xcd\\x1e\\x0a\\x84\\x33\\xb5\\x41\\xf5\\x40\\x16\\xae\\xf5\\x8d\\x2b\\x24\\\n\\x9e\\x82\\x12\\x87\\xbd\\x01\\xdc\\xea\\xea\\xe7\\x0d\\xc1\\xba\\x1e\\x7e\\xb1\\\n\\x7d\\x51\\xca\\x75\\xb3\\x92\\x22\\x2e\\x6a\\xa9\\x1a\\x3d\\xaa\\xfb\\x72\\x84\\\n\\xe0\\x55\\x61\\x40\\x26\\x14\\xbd\\x03\\x3a\\x2a\\xfa\\x79\\x44\\x07\\xd0\\x06\\\n\\xfc\\x24\\x27\\xc0\\x0b\\xae\\x95\\xae\\x08\\x57\\xda\\x51\\x2d\\x2e\\x23\\x93\\\n\\x7f\\xa6\\x10\\xf4\\x3c\\x0b\\x5f\\xaa\\xef\\x64\\x92\\x81\\x27\\x85\\x65\\xe3\\\n\\x6e\\xbf\\xf4\\xff\\x00\\xe7\\xfe\\x7f\\x79\\x32\\xca\\x02\\x94\\x98\\x12\\x44\\\n\\xef\\x36\\x95\\xa6\\xf0\\xa0\\x86\\x14\\x95\\x57\\xc4\\x12\\x02\\x9b\\x02\\xf0\\\n\\x9a\\xc4\\xee\\xb0\\xa8\\xc3\\xa6\\x86\\x3b\\x0c\\x0e\\x1c\\xea\\x14\\x62\\xaa\\\n\\x2c\\x68\\xed\\xfb\\xde\\x07\\x11\\x1a\\x50\\x6a\\x84\\x95\\x0a\\xa0\\xe8\\x52\\\n\\xc2\\xef\\x05\\x60\\x5a\\x1c\\x2e\\x8a\\x69\\x86\\x32\\x88\\xba\\x92\\x14\\x41\\\n\\x86\\x00\\x51\\x5d\\xa1\\x59\\x3e\\x27\\x8a\\x3f\\x8a\\x01\\x59\\xe8\\x28\\xd1\\\n\\x44\\xd6\\x98\\x50\\x02\\xa1\\xa3\\x5b\\x4a\\xe9\\xc1\\x15\\x32\\xe2\\xe6\\xc6\\\n\\x9c\\x86\\x06\\xd6\\x20\\x84\\xad\\xc3\\x48\\xa9\\xcd\\x74\\xcc\\xb2\\x44\\x80\\\n\\x6e\\x18\\x2e\\x7f\\xc8\\x89\\x24\\xb4\\x8b\\x46\\x7a\\x20\\xa9\\x70\\x23\\x12\\\n\\x71\\x2e\\x94\\xaa\\x6c\\x45\\x6b\\x53\\xa5\\xdb\\x2f\\xe2\\x2b\\x6d\\x24\\x1e\\\n\\x82\\xe0\\x30\\x4c\\xbd\\x9b\\x55\\xc8\\xc8\\xc2\\x15\\x66\\x3a\\xaa\\xc4\\x1c\\\n\\x7b\\xd5\\xe0\\x51\\xae\\x89\\xf0\\xa3\\xf0\\x25\\x50\\x47\\x7b\\xce\\x17\\xc6\\\n\\xae\\x8c\\x4a\\xc1\\x62\\xd4\\x82\\x7f\\x20\\xa6\\xfd\\x22\\xd8\\x01\\xd0\\x34\\\n\\x74\\xcf\\xe0\\x4a\\x08\\x48\\x0c\\xd6\\xc6\\x96\\x31\\xb2\\x80\\x3b\\xe8\\x2c\\\n\\xa6\\x43\\x05\\x0f\\xc4\\x63\\x6a\\x84\\x90\\x79\\xa1\\x50\\xc2\\xc5\\xb2\\x80\\\n\\x2d\\x26\\x14\\x37\\x1c\\x1b\\x83\\xa1\\x4a\\x98\\x7e\\x81\\xc7\\x7a\\x83\\x04\\\n\\x70\\x8a\\xf6\\xe2\\x7d\\x1f\\xbd\\xf4\\x03\\xee\\xa1\\xba\\x96\\x2c\\x02\\x85\\\n\\x40\\x69\\x5f\\xd3\\x17\\x8b\\xd9\\x51\\x86\\xd2\\x93\\x01\\x09\\x52\\x7a\\xe2\\\n\\xc3\\xf6\\x04\\x84\\xc9\\x82\\x94\\x62\\xc7\\xa5\\x26\\x2d\\xe1\\x59\\xc6\\x0c\\\n\\xbf\\x43\\x7d\\x96\\x1d\\x2f\\x7f\\xf1\\x08\\x0c\\xe8\\xcb\\x4f\\x36\\xff\\x00\\\n\\x8f\\x7f\\xfb\\x06\\xf4\\x5a\\xd8\\x33\\xea\\xf9\\x3d\\xcd\\xf7\\x80\\x2e\\x40\\\n\\x22\\x0b\\x9a\\x0a\\x10\\xb3\\xf4\\xad\\xb7\\x9d\\xe1\\x92\\xaa\\x36\\xab\\x3a\\\n\\x3c\\x17\\x37\\xea\\x10\\xe1\\x95\\x52\\x6b\\x2a\\x54\\x50\\x48\\x77\\xa2\\xb0\\\n\\xe1\\xb2\\x91\\x74\\xd0\\xdc\\x56\\x95\\x57\\x17\\x37\\x99\\x6c\\x50\\x13\\x1d\\\n\\x88\\x12\\x95\\x14\\x01\\x48\\x34\\xe4\\xe6\\x68\\x13\\x91\\xa6\\x1a\\x56\\xd7\\\n\\xb2\\x01\\x80\\x25\\x41\\x80\\x6d\\x00\\x0a\\x00\\x14\\xbe\\xc0\\xde\\xd1\\x47\\\n\\xc8\\x13\\x03\\x0a\\x34\\x1f\\x40\\x55\\x4d\\x56\\xab\\xca\\x08\\x62\\xd8\\xb8\\\n\\x91\\x86\\x98\\x92\\x25\\xc9\\xc7\\x4d\\x22\\x0b\\x8c\\x18\\x4e\\xe7\\x42\\x43\\\n\\x28\\x3a\\xf3\\x31\\x4c\\x02\\x02\\x62\\xd7\\xf8\\x7d\\x5e\\xd4\\x02\\x46\\x94\\\n\\x75\\x42\\x44\\x35\\x21\\x42\\x20\\xcc\\xe6\\x80\\x72\\x35\\xde\\x26\\xbe\\x85\\\n\\xd0\\x44\\x5b\\x67\\x04\\x19\\x88\\xed\\x84\\x0c\\x61\\x9f\\x14\\xbf\\x8b\\x02\\\n\\x29\\x08\\x80\\x61\\x2b\\xd0\\x04\\x21\\xf7\\x80\\x3d\\x17\\x56\\x3b\\x0a\\xea\\\n\\xd1\\x7b\\x50\\xa6\\x28\\xde\\x73\\x74\\x2b\\xdf\\xba\\xbd\\x28\\x76\\xf7\\x28\\\n\\xbc\\x29\\xa0\\x90\\x03\\xb1\\x47\\x64\\xd4\\xac\\x91\\x24\\x54\\x95\\x89\\x41\\\n\\xd0\\x14\\x1a\\x8a\\x92\\xb8\\x63\\x5c\\x05\\x52\\x00\\x82\\xa1\\x48\\x1f\\x12\\\n\\x40\\x98\\xfa\\xf0\\x54\\x10\\x30\\x02\\x82\\x91\\x7c\\x11\\x11\\xb9\\xb9\\xb9\\\n\\x57\\x3a\\x1f\\x8e\\x8e\\xa8\\xfc\\x3d\\x5b\\x38\\x45\\x66\\x83\\x86\\x0f\\x4e\\\n\\x79\\x4e\\xed\\xfb\\x81\\xc7\\x7b\\x04\\xb9\\x2c\\x4a\\x2e\\xc0\\x36\\x59\\x43\\\n\\x82\\x10\\x1d\\x84\\x50\\x4a\\x6b\\x22\\x69\\xdf\\x5d\\x21\\xaf\\x1e\\xe1\\x8a\\\n\\x29\\x28\\x40\\x41\\xf6\\x1d\\xee\\xbc\\x0e\\xa0\\x38\\x52\\xc7\\xbc\\x9e\\x6e\\\n\\x06\\x91\\x9b\\xc9\\x44\\xd7\\x8c\\xdd\\x12\\x76\\x1b\\x2d\\xcf\\x78\\x25\\x68\\\n\\x4d\\x29\\xd8\\x6d\\xf0\\x4f\\x0a\\x8e\\x21\\xc3\\x43\\xe0\\xa6\\x43\\x51\\x15\\\n\\xb9\\xde\\xb2\\x6d\\xaf\\x34\\x5c\\x46\\xb1\\x4d\\x00\\x55\\x0e\\x96\\xc2\\xa1\\\n\\x99\\x91\\x36\\x41\\x01\\xef\\xb8\\x5f\\x8f\\xf7\\xae\\xe4\\x5e\\x63\\xc0\\x0d\\\n\\xac\\xc1\\x02\\xba\\x24\\x88\\xfa\\x35\\xeb\\x8d\\x18\\xd1\\x1a\\x7f\\x96\\x41\\\n\\xff\\x00\\x0b\\xfe\\x6f\\x27\\x85\\x95\\xdc\\x50\\x65\\x3e\\x08\\x4d\\x63\\x75\\\n\\xe3\\x08\\x28\\x0a\\x21\\x69\\xb2\\xe8\\x46\\xc5\\x68\\x51\\xad\\xdd\\x43\\x50\\\n\\x5a\\x0a\\x50\\x50\\x74\\x55\\xea\\x28\\x8d\\x8a\\x2e\\x93\\xb7\\x7a\\x48\\xe9\\\n\\x16\\x3b\\xe1\\x1d\\x5d\\xe9\\x82\\x0f\\x65\\x98\\xa2\\xf6\\x5f\\x38\\xa5\\x85\\\n\\x35\\xa1\\x20\\xf1\\x21\\x6e\\x1f\\xa1\\x34\\x59\\x05\\x2d\\xee\\xeb\\xd6\\x90\\\n\\xf4\\x07\\xc2\\x3a\\xb2\\x7a\\x62\\x17\\xb8\\x59\\x5e\\xda\\x45\\x94\\x5e\\xd0\\\n\\xd0\\x9a\\x0d\\x0b\\x16\\xcd\\x6f\\xdd\\x82\\xa8\\x9d\\x29\\xda\\x1a\\xe3\\x6d\\\n\\xee\\x2b\\xd2\\xaf\\x6f\\x06\\x44\\x80\\x18\\xfc\\x28\\x95\\xd2\\x36\\x5e\\xc7\\\n\\x88\\xc8\\x00\\xe6\\x29\\x2a\\x97\\xc2\\xf7\\x3b\\x02\\x00\\xf0\\x57\\x44\\x9a\\\n\\xa1\\x43\\x1a\\xb8\\x35\\xec\\x54\\x84\\xe1\\xf8\\x30\\xcd\\x0a\\x32\\x08\\xc6\\\n\\xc6\\x98\\x73\\xbb\\xc6\\xbb\\x7e\\xe9\\x74\\x8d\\x0a\\xc0\\xd7\\xea\\xbc\\xaa\\\n\\x53\\x8c\\x71\\x48\\x03\\x52\\x0e\\x46\\x28\\x06\\x13\\x90\\x28\\x8d\\x22\\x82\\\n\\x62\\xb4\\x9a\\xd8\\x7b\\x93\\x5a\\x88\\x51\\xee\\x01\\x48\\x60\\x0a\\xe2\\x89\\\n\\xc8\\x21\\x26\\x88\\x58\\x82\\x01\\xb7\\x71\\x06\\x87\\xd3\\x78\\x18\\x8a\\x8a\\\n\\x8c\\xc6\\x28\\x06\\x2b\\x35\\xa8\\x92\\x4d\\xa4\\x04\\x62\\x09\\xb0\\x8d\\x4d\\\n\\x92\\xe0\\x9c\\xe5\\x46\\x27\\x4c\\x30\\x47\\x81\\xc5\\x72\\x20\\x29\\xb7\\xd8\\\n\\x54\\xd1\\x7b\\x5a\\x5e\\xa7\\x48\\x59\\x5e\\x7e\\xc8\\xc5\\x0a\\x98\\xba\\x04\\\n\\xd7\\x6f\\xc4\\xd7\\x7f\\x01\\xa4\\x14\\xdc\\xd5\\xe2\\xc8\\xef\\x2d\\xd5\\x38\\\n\\x20\\xf8\\xa2\\x02\\x93\\xb1\\x90\\x32\\x03\\x41\\xe4\\xf4\\x11\\xb3\\xd9\\x64\\\n\\xc2\\x17\\xc2\\x70\\xf6\\x08\\x24\\x2d\\xeb\\xb9\\x31\\x96\\xef\\xb8\\xf3\\xaf\\\n\\x40\\x0f\\xec\\x12\\x5f\\xe6\\x1e\\xaf\\x67\\x05\\x02\\xb4\\x0e\\xc0\\x81\\x50\\\n\\x81\\x95\\x81\\x0a\\xe7\\x1a\\x1b\\x16\\xa6\\xcd\\x64\\xc2\\xc1\\x86\\x47\\x0e\\\n\\x22\\x0d\\x69\\x48\\x10\\x3d\\x6a\\x10\\x15\\x21\\x26\\x4e\\x2c\\x71\\x9c\\x22\\\n\\xb9\\x0b\\x42\\xc5\\x5b\\xee\\xec\\xe2\\xe9\\x96\\x92\\x34\\x34\\x65\\x97\\xb2\\\n\\xa3\\xfc\\xbc\\x5e\\x00\\x24\\x09\\x07\\xdd\\x81\\x05\\x23\\x44\\x35\\x53\\xb8\\\n\\x60\\x94\\x12\\xae\\x44\\x8d\\x20\\x5a\\xb7\\x85\\x91\\x2f\\x09\\xb8\\x4a\\x48\\\n\\x95\\xa9\\xa0\\x04\\xe3\\xc3\\xa0\\x5d\\x31\\x4b\\x46\\xd4\\x52\\x9a\\x54\\x44\\\n\\x64\\x0c\\xdf\\x00\\x4a\\xd5\\xba\\x82\\xe2\\x76\\xf0\\x28\\x1d\\xa8\\xb7\\x5b\\\n\\x2b\\x41\\xf0\\xe8\\x31\\xc4\\xf9\\xa9\\x86\\x0e\\x80\\x00\\x24\\xa5\\x58\\x47\\\n\\xa3\\x1b\\x6d\\xba\\x9c\\x07\\x5c\\xdd\\x30\\x6f\\xdf\\x82\\x80\\xae\\xca\\x65\\\n\\xd3\\x65\\x4e\\xe7\\x77\\xf8\\xf3\\x3a\\xe2\\x54\\x9c\\x4a\\xc8\\x61\\x08\\xce\\\n\\xe4\\x79\\x20\\xa3\\x75\\x8e\\xb3\\x8b\\x42\\x19\\x83\\x22\\x93\\x82\\x88\\x5b\\\n\\x1b\\x16\\x60\\x14\\x58\\x1e\\xf7\\x84\\xe3\\xc6\\x54\\x10\\x8a\\x30\\x58\\x95\\\n\\x82\\xae\\x18\\x64\\x64\\x1c\\x68\\x09\\x29\\x0b\\x08\\x31\\x54\\xaa\\x81\\xa8\\\n\\xca\\xc9\\x57\\xbb\\x6d\\xb0\\xc5\\x9d\\x0e\\x9c\\x39\\x92\\xdd\\x0f\\x34\\xf9\\\n\\x61\\x2c\\x0e\\x94\\xaa\\x9c\\x17\\x6e\\x80\\x09\\x71\\x85\\x76\\x4c\\xa3\\x5f\\\n\\x9b\\xdb\\x4c\\xb7\\xfa\\x18\\x6e\\xa8\\x3e\\x27\\xc5\\xd6\\x84\\x9a\\x80\\x6e\\\n\\xbd\\x06\\x0c\\x03\\xab\\x55\\xee\\xb1\\xe2\\x35\\xab\\x52\\x21\\xa6\\x90\\xfb\\\n\\xb7\\x7e\\x11\\xbc\\x01\\x61\\xc9\\xb8\\x0a\\x57\\x74\\x3a\\xee\\xbb\\x8c\\xe4\\\n\\x29\\x6a\\x72\\xd0\\x82\\x95\\xd6\\x48\\x76\\xce\\x03\\x8a\\x51\\xd6\\xe9\\x41\\\n\\x88\\x33\\xf5\\x96\\x5c\\xe1\\x40\\x45\\x50\\xe0\\xab\\xa3\\x00\\x23\\x56\\x8e\\\n\\x2d\\x8b\\xca\\x81\\x36\\x80\\xa4\\x55\\x10\\x23\\x54\\x64\\xcf\\x87\\x18\\xfd\\\n\\xe0\\x6d\\x05\\x13\\x15\\x72\\x49\\x42\\x5e\\xfa\\xe3\\x94\\x19\\x3a\\x06\\x05\\\n\\x8a\\x7f\\x18\\xc0\\x07\\x4f\\x68\\x08\\x96\\x4e\\xdc\\x22\\xa0\\x33\\x2c\\x31\\\n\\x61\\x29\\xde\\xb1\\x51\\x63\\xf4\\x50\\x7f\\x33\\xf8\\x72\\x66\\x5f\\x07\\xdb\\\n\\x17\\x31\\x63\\x97\\x20\\x7e\\x73\\x51\\x44\\x24\\x06\\x01\\x75\\xa2\\xbe\\x47\\\n\\x4b\\xdf\\x22\\x6d\\x65\\xd2\\x12\\x4f\\x55\\xd0\\x2f\\x73\\x28\\x00\\x11\\x9a\\\n\\x24\\x00\\x44\\x0a\\x1c\\x0e\\x52\\x96\\x89\\xc1\\x01\\xbc\\x58\\x93\\x15\\xfa\\\n\\x8b\\x7b\\x16\\xc7\\xd9\\xa8\\x45\\x63\\x44\\x24\\x78\\xd4\\x02\\x32\\x2f\\x48\\\n\\x83\\xa8\\x0c\\xc8\\x51\\x14\\x45\\x0b\\x1b\\xa7\\x3a\\x2f\\x23\\x19\\x6a\\xd0\\\n\\x85\\x33\\xe8\\x3c\\xa0\\x10\\x99\\xc4\\x3c\\xc7\\x09\\x02\\x34\\x7e\\x77\\x14\\\n\\x58\\x06\\x02\\x3f\\x82\\x8c\\xdd\\x30\\x21\\xdc\\x77\\xbb\\x50\\xde\\x0e\\x1a\\\n\\x4c\\xcf\\x70\\x07\\x78\\x47\\x14\\x2a\\x55\\xbc\\xad\\x35\\xca\\xd1\\xd4\\xfc\\\n\\xbd\\x99\\xe8\\x47\\x85\\xa6\\xb2\\x1d\\x35\\xf0\\x54\\xa6\\x9f\\x12\\xa2\\x74\\\n\\xfd\\xd0\\x4a\\xef\\xc2\\x2a\\xb1\\x0c\\xf0\\x70\\x9b\\xaf\\x46\\xf7\\x5d\\xf1\\\n\\x3e\\x29\\x15\\x6b\\xa0\\x4b\\xcd\\x0a\\x0d\\x90\\x3b\\xaf\\x5f\\xf6\\x12\\x60\\\n\\x05\\x42\\xc9\\x75\\x79\\x68\\x3e\\x9f\\x10\\x51\\x14\\xe9\\x48\\x30\\xf4\\x07\\\n\\xd3\\xf1\\x96\\xbb\\x0d\\xaf\\xba\\x4a\\xba\\xb7\\xa5\\x50\\xdf\\x7e\\x5f\\xff\\\n\\x00\\x50\\x23\\x04\\x80\\x02\\x1d\\x9c\\x75\\x1c\\x18\\xee\\xaa\\x26\\x85\\x00\\\n\\x1b\\x5a\\x0d\\x5c\\xae\\x22\\x90\\x90\\xee\\x38\\x46\\x68\\x62\\x6f\\xc9\\x8b\\\n\\x81\\x51\\xe8\\x7e\\xf1\\x7a\\xf5\\x05\\xea\\x94\\x32\\x79\\xac\\x52\\xd0\\x4c\\\n\\xe4\\x2a\\x1a\\x65\\x53\\x11\\x07\\xd1\\xa0\\xeb\\x0d\\xaf\\x17\\xd4\\xc4\\x3b\\\n\\x6d\\xa6\\x32\\x45\\x34\\x1b\\xd6\\x8a\\x6b\\xdb\\x3d\\x89\\x12\\x78\\x3a\\x26\\\n\\x06\\xa9\\xa8\\x24\\xa7\\x75\\x45\\xda\\xae\\xb4\\x4b\\x37\\x64\\xea\\x07\\x91\\\n\\xd4\\x01\\x0f\\xe2\\xb6\\x5f\\x5d\\xfa\\x5e\\x18\\x45\\x82\\xf9\\x7e\\x51\\xea\\\n\\x82\\xca\\x77\\xfb\\xbc\\xa8\\xa4\\x8d\\x03\\xad\\x0f\\x16\\xc7\\x40\\xae\\xa5\\\n\\x73\\x86\\x44\\x11\\x28\\xff\\x00\\x15\\x47\\x55\\x13\\x7b\\xcd\\xac\\xe3\\x10\\\n\\x28\\x22\\x91\\x06\\x26\\xe7\\xeb\\xd9\\x72\\xf1\\xd2\\xa3\\x31\\x5a\\x03\\x50\\\n\\x08\\x92\\xcf\\x90\\x03\\x86\\x1d\\x20\\x02\\x88\\xd2\\x2a\\xd2\\x6b\\x6e\\x74\\\n\\x55\\x38\\x64\\xf6\\x97\\x50\\x54\\x84\\xef\\x00\\x82\\x09\\xed\\xe1\\x84\\xd9\\\n\\x94\\x0a\\xc2\\x24\\x5a\\xa8\\x76\\x9d\\x17\\x69\\xbc\\xa8\\x20\\x00\\x0e\\x14\\\n\\xcc\\x28\\x32\\xdf\\xb7\\x80\\x93\\x4a\\x20\\x34\\x08\\x30\\x3e\\x1e\\xc5\\x4c\\\n\\xf9\\xc7\\x8a\\x18\\x15\\x45\\x40\\xdb\\x95\\x80\\x76\\x91\\x27\\x0e\\x2a\\x16\\\n\\xcc\\x51\\xfa\\x8b\\x91\\xfa\\xe2\\x18\\x2d\\x62\\x2e\\x61\\x93\\x51\\xb5\\xa9\\\n\\x81\\x5b\\xa0\\x91\\x81\\x23\\x80\\x6f\\xe2\\x41\\x28\\xe9\\x2d\\x54\\xb3\\x41\\\n\\x39\\xa8\\x88\\x82\\xaa\\x8d\\x1c\\x8e\\x62\\xb5\\xc7\\x95\\xa5\\xb9\\xca\\x0a\\\n\\x35\\x61\\x1e\\xe0\\x92\\xd1\\x4a\\x61\\x05\\x28\\xa6\\xcc\\x08\\xa4\\xce\\xb2\\\n\\xb3\\x86\\xf1\\x76\\x10\\xf4\\xee\\xf8\\x69\\x00\\xd7\\xda\\x72\\x21\\x6b\\x43\\\n\\x34\\xc9\\xdf\\xb9\\xdd\\x87\\x1a\\x98\\xa2\\x35\\xd0\\x6b\\x4f\\x22\\x87\\xb2\\\n\\xe9\\xbc\\x1e\\x88\\x98\\x55\\xa2\\x6d\\x59\\xd1\\xdd\\xe9\\xa2\\xac\\xde\\x54\\\n\\xb4\\x84\\x37\\xa7\\x8f\\x7b\\xdc\\x4a\\xf4\\x15\\xd9\\x00\\xb0\\x9e\\xa5\\xe8\\\n\\x68\\x00\\x74\\x83\\x54\\xe7\\x90\\x62\\xe2\\x7d\\xa1\\x90\\x40\\x50\\x3b\\x43\\\n\\xa8\\xa1\\x6a\\x14\\x74\\xda\\x0e\\xcb\\x61\\xe1\\x3a\\x3f\\x38\\x72\\x2e\\x80\\\n\\xe5\\x60\\x27\\x7a\\x7d\\x9b\\xd8\\xe1\\xc2\\x51\\x57\\xd1\\x96\\x9a\\xdc\\xc3\\\n\\x5c\\x1d\\x30\\x00\\x51\\x5d\\x26\\x83\\xd2\\x07\\xb7\\x08\\x75\\x70\\x3b\\xe3\\\n\\x7b\\x29\\x6d\\x9d\\x76\\xd1\\xfd\\x2d\\x95\\xce\\xf7\\x87\\x45\\x32\\x23\\x13\\\n\\x80\\x7c\\xae\\x85\\x9a\\x71\\x8f\\x0a\\x80\\x0a\\xc0\\xa5\\x62\\xc1\\x7d\\x06\\\n\\x27\\x64\\xe2\\xa7\\xa3\\x19\\xd0\\xa4\\xa3\\xb3\\x5f\\xf3\\xdb\\xd7\\x1f\\x8e\\\n\\xa0\\x45\\x0e\\xcb\\x0d\\x9d\\x29\\xd8\\xa4\\x92\\x71\\xb7\\xc2\\x74\\x1a\\x3b\\\n\\x6d\\x99\\x4a\\xa9\\xd3\\xd3\\xa8\\xe6\\x00\\x5a\\xf2\\xf6\\x0f\\xbf\\x3f\\xea\\\n\\x71\\x9c\\x3b\\xc3\\xf5\\x40\\x56\\x14\\x6d\\x3d\\xa1\\x90\\x80\\x4d\\x04\\x27\\\n\\x55\\x00\\x3d\\xef\\xcb\\xb9\\xfe\\x70\\x00\\x8d\\x57\\x42\\xa2\\x0b\\xe8\\x67\\\n\\xd5\\x5d\\x01\\x55\\x43\\x5a\\xfa\\x3d\\x10\\xfc\\xa1\\x18\\x08\\xc9\\x6b\\x25\\\n\\x35\\x40\\xaa\\x2e\\x90\\x20\\x00\\xce\\xc5\\x64\\x72\\x92\\x03\\x63\\x04\\xae\\\n\\x97\\x2d\\xcb\\xa9\\x84\\x76\\x39\\xcb\\x8c\\x81\\x36\\x89\\xd4\\xd7\\xb6\\xf5\\\n\\xcf\\x84\\x35\\x2d\\xa5\\x32\\x30\\x81\\xa3\\x02\\x81\\xdb\\x82\\x01\\x54\\x90\\\n\\xe8\\x00\\x07\\xa2\\x8e\\xc3\\xf2\\x71\\x19\\x45\\x82\\x2a\\xa2\\x76\\x4e\\x8c\\\n\\x47\\xef\\x73\\xa5\\xa4\\x42\\x20\\x7c\\x3b\\x6a\\x18\\xbd\\x6d\\x51\\x4a\\xad\\\n\\x49\\x31\\x45\\x0e\\x17\\x15\\xa7\\x46\\x58\\x9b\\xbc\\xc1\\xb2\\xd6\\x91\\x5a\\\n\\x00\\x6a\\x80\\xbf\\xc5\\xed\\xe2\\xe1\\x84\\xaa\\x2b\\x41\\x2f\\xa2\\x24\\x19\\\n\\x89\\xde\\x8a\\x88\\xcb\\x06\\xbd\\x5d\\x8b\\x8b\\x15\\x7b\\xbd\\x07\\x2e\\xa0\\\n\\x18\\x4a\\x13\\x5b\\x10\\xa0\\x00\\xa0\\xea\\xee\\x63\\xf9\\x5d\\xab\\x13\\xb5\\\n\\xac\\x90\\x8b\\x2f\\xc4\\xa5\\xd1\\xe9\\x76\\xb2\\x91\\x6a\\x5f\\xae\\x90\\xf9\\\n\\x4e\\xa8\\x29\\x40\\x61\\xeb\\xc7\\x41\\xfc\\xeb\\x2b\\xc4\\x04\\xe0\\xc4\\x4a\\\n\\x7a\\x18\\x04\\x84\\x0f\\xd0\\xc0\\x16\\x02\\x29\\x5c\\x09\\x12\\xc8\\x0b\\xd9\\\n\\xe9\\xaf\\x5c\\xee\\x22\\x14\\x1a\\x90\\x86\\xb7\\xdf\\xf5\\xdb\\x0e\\x8b\\xac\\\n\\x0b\\x21\\x64\\x0e\\xf4\\xbe\\x08\\x64\\x09\\xc3\\xdb\\x96\\xa2\\xa0\\x2f\\xb1\\\n\\xc4\\xcd\\xce\\x87\\xd6\\xd2\\x79\\xb8\\x10\\x18\\x90\\xdc\\xce\\xc9\\x3a\\x53\\\n\\x1d\\x2e\\x4d\\x28\\x4a\\x56\\xc1\\x3e\\x02\\x28\\xa8\\x28\\xb4\\x90\\xaa\\x51\\\n\\x4b\\x67\\x57\\xb8\\x40\\x58\\x8b\\x90\\x06\\x06\\x90\\x40\\x42\\x9e\\x07\\xd3\\\n\\x0c\\xdb\\x8a\\x91\\xa1\\xac\\x56\\x62\\x28\\xef\\x7b\\xa4\\xcf\\xef\\x36\\xa6\\\n\\x78\\x0a\\x5b\\xa7\\x74\\x75\\x14\\xec\\x45\\x4c\\x64\\xed\\x5d\\xd0\\xbd\\x81\\\n\\x02\\xa4\\x3b\\xd6\\x5e\\xa0\\xe6\\x22\\x7c\\x83\\x98\\x05\\x24\\x55\\x30\\x35\\\n\\x47\\x90\\x39\\x0a\\xb0\\xde\\x8e\\xc0\\xc4\\x02\\x9a\\x71\\x98\\x08\\x2b\\xdc\\\n\\xc8\\xb0\\xa9\\x0b\\xaa\\x86\\x89\\x86\\x89\\x69\\x50\\x17\\xa7\\x46\\x10\\x0c\\\n\\x72\\x80\\x38\\x3b\\x41\\x05\\x70\\xca\\x02\\x2a\\xae\\x16\\xf6\\x81\\x0f\\x28\\\n\\x80\\x26\\x87\\x82\\x77\\xdf\\xaa\\xdc\\x3a\\x46\\x8c\\x76\\x51\\x76\\x19\\x40\\\n\\x05\\xa4\\x96\\x6b\\x6c\\x65\\xe2\\x84\\x08\\x95\\xd7\\x62\\x9a\\x8a\\xcb\\x6e\\\n\\x22\\xd4\\xb0\\x71\\xcd\\xc2\\x55\\x64\\xbb\\x51\\x9d\\x0b\\xea\\xa7\\x06\\x0b\\\n\\x61\\xbe\\x4a\\xa2\\xea\\xb6\\xb0\\x40\\xf5\\x49\\xe6\\x14\\x40\\x4a\\xba\\x41\\\n\\x28\\xe8\\x90\\xde\\x10\\x68\\x47\\xcb\\x40\\x01\\x1c\\x00\\x84\\xeb\\x78\\x4d\\\n\\x31\\x11\\x22\\xe6\\x7b\\xa2\\x16\\x29\\x23\\x5c\\xe1\\x34\\x00\\x51\\x52\\x03\\\n\\xb6\\x26\\xfd\\x9b\\xaf\\xa7\\x03\\x45\\x4d\\x1b\\x5e\\x9d\\x4d\\x28\\x21\\xab\\\n\\x74\\x95\\x07\\xdd\\x62\\x15\\x06\\xd5\\xf0\\x92\\x9a\\xb2\\xd7\\x29\\x99\\xa1\\\n\\xd4\\x8a\\x0a\\x81\\xa4\\x84\\xb7\\x62\\x19\\xb4\\x44\\x09\\x0b\\x5a\\x05\\x7b\\\n\\x43\\xa8\\x97\\xbe\\x21\\x32\\x81\\x93\\x01\\xbd\\x4c\\xb5\\x7a\\xa1\\xef\\x06\\\n\\x72\\x0c\\x21\\xeb\\x3b\\x01\\xb7\\xb4\\xc7\\x45\\xaf\\x15\\x85\\x26\\x05\\x08\\\n\\xb6\\x81\\x3a\\x9a\\xd5\\x2d\\x4d\\xe5\\x80\\x91\\x10\\x5a\\x08\\x4d\\x55\\x0c\\\n\\x38\\xb7\\x7a\\x76\\x87\\x92\\xc3\\xa4\\xa4\\xbe\\x37\\x77\\x63\\xc4\\x7d\\xd4\\\n\\xc1\\x28\\x61\\x46\\x43\\x37\\xc9\\x26\\x71\\xd7\\xd4\\xfa\\x34\\x7b\\x4a\\x7a\\\n\\x6a\\x43\\x4d\\x52\\x72\\x9d\\x88\\xe2\\xd2\\x90\\x60\\xc1\\x45\\xce\\xef\\x8f\\\n\\x2f\\x91\\x05\\x03\\x48\\xf8\\xbb\\xf1\\x5a\\x26\\xe0\\x0e\\x22\\xc1\\x71\\x80\\\n\\x30\\x90\\xd4\\xb5\\xe9\\x79\\x24\\x74\\x48\\x9b\\x50\\x1d\\xad\\x56\\xd0\\x1d\\\n\\x64\\xe2\\xd1\\x7f\\xa4\\x02\\xb7\\x64\\xc5\\x9e\\x0c\\x09\\xa9\\x79\\xeb\\x84\\\n\\x23\\x0b\\x53\\x16\\x83\\xec\\x5e\\xb0\\xe3\\xc7\\x07\\xd0\\xb0\\xab\\x5b\\xbf\\\n\\xf9\\xc6\\x15\\xb4\\x2d\\x01\\xd4\\x04\\x4c\\x49\\xa1\\xf9\\xd7\\x40\\x20\\x04\\\n\\x42\\x54\\xad\\x5b\\xdb\\xfc\\x49\\x2d\\x4b\\x51\\x8e\\x3d\\x94\\x2a\\x42\\xb9\\\n\\xdb\\xa9\\xd8\\x24\\x2b\\x10\\xa5\\x41\\x49\\x11\\x18\\x44\\x61\\x35\\xe9\\xc1\\\n\\xd8\\x43\\x76\\x02\\x83\\x2a\\x3d\\xb4\\xbb\\xe1\\xe6\\x32\\x01\\xca\\xbb\\xcb\\\n\\x55\\x68\\xc3\\x60\\xe3\\x87\\x14\\xd9\\x1b\\x9f\\x12\\x96\\x6f\\x4d\\x9a\\x56\\\n\\x81\\xbc\\x69\\x18\\x28\\xd1\\x55\\x00\\x22\\x53\\x04\\xa8\\xd6\\xe7\\x15\\x41\\\n\\x06\\x5c\\x25\\x04\\xf5\\x15\\x0a\\x1a\\xc4\\x2b\\xc8\\x83\\xd4\\x0d\\x03\\xb8\\\n\\x03\\xd0\\x1e\\xb5\\x1a\\xd0\\xe3\\x1b\\x6d\\x02\\x34\\x32\\x8f\\x18\\x7e\\x19\\\n\\xa8\\x48\\x62\\x88\\x00\\xf5\\x25\\xbb\\x4e\\x80\\x01\\x80\\x08\\xe2\\x32\\xcd\\\n\\x15\\x14\\x68\\xa6\\x08\\xb7\\x55\\x44\\xab\\xc9\\x95\\x90\\x01\\xd2\\x54\\x40\\\n\\xae\\x90\\x77\\x44\\x70\\x39\\x48\\x50\\x45\\x08\\x1e\\x9d\\x23\\xad\\x36\\x9b\\\n\\x78\\x0d\\x5f\\x40\\x90\\x58\\xd7\\x44\\x6a\\xb4\\x8a\\xd0\\xc3\\x97\\x67\\xad\\\n\\x3e\\x04\\xba\\x46\\x44\\x6c\\xcb\\xdf\\x56\\x90\\x01\\x4d\\x98\\x93\\x55\\xee\\\n\\x60\\x86\\x68\\x28\\xb7\\xeb\\x22\\x23\\x5d\\xf4\\x77\\xbd\\x55\\xdd\\xe2\\xf8\\\n\\x11\\x06\\x80\\x22\\x21\\x6a\\x27\\x42\\xd5\\x01\\x45\\x04\\x22\\x24\\x52\\x24\\\n\\x25\\x63\\x05\\x81\\x5a\\x2e\\x9e\\x31\\xd0\\x15\\xb0\\xfe\\x82\\xb7\\x4e\\x14\\\n\\xe0\\x22\\x33\\x46\\x09\\x00\\x40\\x12\\x14\\xa1\\xe2\\x2d\\x9d\\x06\\xac\\x7c\\\n\\x70\\x08\\x05\\x1c\\x23\\x3d\\x91\\x5b\\x78\\xcc\\xa5\\x46\\xbd\\x0b\\xb8\\xa6\\\n\\x5b\\x91\\xf3\\x68\\x65\\x4d\\x43\\x36\\x08\\x4e\\xcd\\xa0\\xdd\\x5e\\x97\\x89\\\n\\x00\\x88\\x01\\xec\\x8e\\x8d\\x58\\x68\\x6d\\xd3\\x8a\\xaa\\xe4\\x3a\\xd7\\xb4\\\n\\x63\\x9f\\x17\\x7e\\x67\\x24\\x6b\\x38\\x32\\x0b\\xed\\xba\\x76\\x46\\x82\\xea\\\n\\x9c\\x81\\x1d\\x24\\x55\\xd1\\xd8\\x4d\\xec\\xc6\\xc6\\x41\\xe6\\xd0\\x88\\x0a\\\n\\x14\\x53\\x01\\x0d\\xca\\x04\\xa1\\xdf\\x16\\xf0\\xb4\\xd0\\x6b\\x2b\\xab\\xa6\\\n\\x0d\\xd3\\x09\\x08\\xef\\x14\\x81\\x80\\x82\\x05\\x21\\xe1\\x60\\xb4\\x9c\\x2a\\\n\\x34\\x1d\\x56\\xd2\\x4a\\xa2\\x45\\x06\\x29\\x1e\\x49\\xd0\\x80\\x00\\x9a\\x11\\\n\\x13\\x04\\xd4\\x60\\x62\\x0a\\xf2\\x6c\\x0d\\x58\\xd9\\x16\\xf6\\x2a\\x75\\x3a\\\n\\xe4\\xcb\\x38\\x71\\x28\\x40\\x45\\x8d\\x22\\xe5\\x7e\\xa3\\x13\\xcb\\x8b\\x7a\\\n\\x54\\xb1\\x21\\x01\\x4f\\x17\\x44\\xe4\\x7d\\xc8\\x42\\xa9\\x11\\x3b\\x88\\xa8\\\n\\x64\\x4f\\x10\\xa4\\x62\\xe0\\x11\\x18\\x81\\xd8\\x5a\\x1c\\x88\\xe7\\x50\\x54\\\n\\xb5\\xa5\\x81\\xad\\x9e\\xd2\\xcb\\x38\\x1b\\x73\\x3b\\x35\\x01\\x53\\x3a\\x61\\\n\\x1a\\x02\\x23\\xc2\\xb1\\xf8\\xf8\\x28\\xc4\\x40\\x80\\x34\\x31\\x30\\xe2\\xce\\\n\\x23\\x25\\xb1\\x10\\x0d\\x22\\xcf\\x50\\xf5\\xc0\\x86\\xdc\\x9a\\xc8\\xa7\\x50\\\n\\xa6\\x80\\xc4\\xa1\\xc1\\x78\\x27\\x0c\\x14\\x66\\x70\\x8b\\x55\\x52\\x9d\\x2e\\\n\\x54\\x45\\x90\\x9a\\x75\\x59\\xa3\\xa9\\x02\\x0a\\x2a\\x23\\xba\\x02\\xa8\\x84\\\n\\x29\\x20\\x21\\x00\\x9a\\xf2\\x79\\x24\\x84\\x85\\x29\\x15\\x42\\xc4\\x26\\xa5\\\n\\x5b\\xc1\\x85\\xd8\\x55\\x88\\x42\\x13\\xb8\\x2f\\x51\\xc4\\xc1\\x30\\xec\\x80\\\n\\xf6\\x14\\x54\\xb9\\x09\\xd7\\x78\\xba\\xf1\\x4e\\xc0\\xe4\\x83\\xda\\x21\\xc5\\\n\\x70\\xb9\\x19\\xc5\\x48\\x9f\\x0b\\x45\\x5a\\xb1\\x1d\\x07\\xd6\\x07\\x9c\\xeb\\\n\\x41\\x09\\x0a\\x97\\xe3\\x4a\\x69\\x03\\x43\\x0e\\x61\\x65\\x04\\x18\\xec\\xa0\\\n\\x2c\\xad\\x99\\x45\\xe2\\xbf\\xb0\\x50\\x42\\xc9\\xd4\\x5c\\xa7\\x4a\\xd0\\xed\\\n\\xd6\\x8f\\x63\\xd5\\xf5\\x67\\xf8\\xc2\\x21\\xaf\\x00\\xd1\\x4a\\x6a\\x0b\\x58\\\n\\x16\\x9d\\x65\\xe9\\x6d\\x68\\x2f\\x55\\x78\\x00\\xa8\\x30\\x0d\\x84\\x0c\\x0d\\\n\\xe9\\x7e\\xe4\\x89\\x22\\xd9\\xd2\\x88\\xb2\\x21\\xe3\\x27\\x08\\xcc\\x13\\xb4\\\n\\x33\\x4b\\x88\\xfd\\x40\\x50\\x20\\xef\\x08\\x45\\x30\\xc7\\x0f\\x3a\\x10\\x28\\\n\\x68\\xc5\\xc0\\xb7\\x93\\x20\\xbe\\x0a\\x1e\\xf7\\xfe\\xfe\\xff\\x00\\x78\\xa1\\\n\\xb5\\x84\\x66\\x95\\xba\\x46\\xcc\\x11\\xcb\\x67\\x12\\x64\\x41\\x19\\x62\\x99\\\n\\x16\\x7b\\x74\\x34\\xe1\\x01\\xf0\\x0a\\xed\\x4e\\xf8\\xbd\\xb1\\x66\\xf1\\xae\\\n\\xd4\\x0d\\x94\\x02\\xc8\\x3d\\xf6\\x27\\xc2\\x4a\\x70\\x82\\x64\\x2b\\x4a\\xb6\\\n\\x62\\x80\\x82\\x36\\x00\\xd5\\x2d\\x78\\x40\\x21\\xb0\\x91\\x15\\x74\\x1f\\xa1\\\n\\x42\\x3e\\x02\\x78\\xc5\\x12\\x08\\x2a\\xf4\\x15\\x4b\\x82\\x2c\\xa2\\xf1\\x8c\\\n\\x86\\x72\\xd0\\x11\\x7c\\x44\\x22\\xeb\\x54\\x38\\xae\\x23\\x69\\x1e\\x91\\x67\\\n\\x49\\xd9\\x17\\xa1\\x27\\x5c\\x2a\\x24\\x84\\x4a\\x5c\\x0d\\xf8\\x1f\\x7a\\xa2\\\n\\x8a\\xe2\\xe4\\x30\\x35\\xe8\\x03\\x54\\x30\\x77\\x33\\x57\\x31\\x10\\x22\\xe1\\\n\\x01\\x81\\x50\\xd0\\x8a\\xa3\\x7e\\x43\\x2a\\x92\\xa4\\x3d\\x91\\x0f\\x54\\xb4\\\n\\xa8\\xa1\\x54\\x94\\x50\\xe7\\x69\\x88\\x20\\x11\\x07\\x12\\x28\\x68\\xfd\\x47\\\n\\x78\\xb6\\xcc\\x69\\xd0\\x29\\x88\\x42\\x24\\xf5\\x1d\\x18\\x35\\xd8\\x02\\x20\\\n\\x0b\\x70\\x50\\x88\\x3a\\x40\\xa8\\xf8\\x3c\\x23\\xfd\\x88\\x86\\xaa\\x3d\\x35\\\n\\x42\\x4b\\x84\\x0d\\x8b\\x20\\xb2\\x44\\x1d\\x9f\\x30\\xa6\\x50\\x0a\\x0a\\xc7\\\n\\x0c\\x89\\x6e\\x80\\x01\\xa9\\x20\\xaf\\xdd\\xf8\\xef\\x44\\x90\\x78\\x03\\xe8\\\n\\x3b\\x0c\\x34\\x8a\\x4a\\xcc\\xc3\\x8e\\x22\\x5a\\x51\\xa0\\xa5\\xa3\\xa0\\x83\\\n\\xe0\\xf4\\xc6\\x3a\\xa4\\x0d\\x30\\x3b\\x00\\x74\\x8e\\xef\\x57\\xc8\\x2c\\x31\\\n\\x07\\xea\\xa4\\xd1\\x19\\xa5\\xc3\\xc2\\x9c\\x64\\x18\\x23\\x66\\x76\\x70\\x1d\\\n\\x52\\xba\\x07\\x5a\\x20\\x0d\\x85\\x4f\\x43\\x64\\x05\\x9e\\x80\\x7d\\xcd\\xe4\\\n\\x0e\\x89\\x63\\xa9\\x2b\\x00\\x7a\\x59\\x25\\x69\\xcd\\x7a\\x41\\x9a\\x02\\xf1\\\n\\x6a\\x85\\xbd\\xa8\\x38\\x1f\\x9e\\x17\\x40\\xb2\\xfa\\x79\\x7b\\x0b\\xa0\\x1c\\\n\\x34\\xd0\\x1b\\x0a\\x8b\\x4c\\xbe\\x8a\\x0b\\x7a\\x11\\x50\\x73\\x71\\xa5\\x15\\\n\\x01\\x30\\x29\\x14\\xae\\xea\\x29\\xfb\\x10\\xd2\\x24\\x57\\x24\\x14\\x25\\x5b\\\n\\x92\\x4a\\xa1\\xb6\\x02\\x72\\x90\\x01\\x64\\x28\\x39\\x54\\x69\\x93\\xb3\\x23\\\n\\x83\\x1c\\x02\\x84\\x15\\x00\\x38\\x6c\\xf8\\x5a\\x7d\\x69\\x62\\x80\\xb0\\x50\\\n\\xbc\\x12\\xc0\\x89\\x14\\x00\\x47\\x2b\\xd5\\x04\\xa6\\x6e\\x57\\x22\\x81\\x88\\\n\\x61\\x8e\\xb0\\x74\\xb6\\x53\\x26\\x86\\x03\\xc4\\x50\\xba\\x82\\x52\\x99\\x74\\\n\\x67\\x78\\x3a\\x0e\\x85\\x3d\\x02\\xab\\x9a\\x57\\xa5\\x40\\x20\\xcc\\xfb\\x28\\\n\\x6a\\x04\\xd0\\x6a\\x8c\\x3f\\x01\\x4a\\xa4\\xdf\\x8d\\x6e\\x9b\\xc4\\x81\\x88\\\n\\x87\\x09\\x70\\x6a\\x44\\xd1\\x06\\x00\\x22\\x18\\x64\\x00\\x40\\xaa\\xaf\\xb9\\\n\\x29\\x38\\xb3\\x34\\x62\\x8a\\xc8\\x51\\x0d\\xab\\x8a\\xbd\\xbe\\xf2\\x33\\x88\\\n\\x80\\x84\\x90\\x2d\\x61\\xab\\x73\\x28\\xc7\\x8b\\x7a\\x85\\x98\\x40\\xc0\\x49\\\n\\xa5\\xc6\\xa5\\x7e\\xf0\\x4d\\xc1\\xed\\x08\\xb5\\x00\\xc2\\x1a\\x2c\\x5c\\x7a\\\n\\x38\\x40\\xb1\\x02\\x80\\xb2\\x6a\\x73\\x20\\xce\\xf8\\xa8\\xc2\\x50\\x20\\x35\\\n\\x20\\xa5\\x94\\x60\\x76\\xc2\\x84\\x10\\x50\\x3a\\x92\\x21\\x9e\\xb1\\x95\\xce\\\n\\xd8\\xd0\\xe4\\x00\\xa1\\x30\\x52\\x1f\\xd0\\x60\\x01\\x79\\x08\\xc1\\x41\\x28\\\n\\xc2\\x11\\x55\\x96\\xd8\\x37\\x45\\xce\\xe7\\x00\\x22\\xc8\\xb5\\x30\\x2b\\xd3\\\n\\xf4\\x25\\x5e\\x10\\xca\\x35\\x22\\x3e\\xc1\\x29\\x0c\\x13\\x7a\\x1d\\x71\\x6c\\\n\\xcc\\x44\\x6a\\xb3\\xa4\\x28\\x22\\x63\\x0a\\xb3\\x4d\\x95\\x62\\x1f\\x51\\xa2\\\n\\xe7\\x49\\x87\\x96\\xf7\\x4e\\x95\\x58\\x54\\x1d\\xc2\\xa0\\x8a\\xa7\\x4b\\xfd\\\n\\x8b\\xae\\x24\\x22\\x08\\x21\\x21\\x0c\\x0b\\x50\\x7a\\x65\\x99\\xc2\\x61\\x81\\\n\\x40\\x9d\\x4f\\x45\\x3f\\xb1\\x84\\xea\\x9c\\x55\\x08\\xe8\\x15\\x2b\\x5c\\xa1\\\n\\xda\\x95\\xbf\\xa7\\x37\\x52\\x88\\xdb\\xa9\\x6f\\x67\\x4b\\x06\\xaa\\xbc\\x60\\\n\\x03\\xb0\\x7e\\x07\\xb0\\x5d\\x4a\\x39\\x6c\\x62\\x28\\x0d\\xea\\x61\\x4f\\xb3\\\n\\x4e\\xc8\\x9d\\xa2\\x7b\\xc8\\xc0\\x1d\\x2b\\x46\\xc6\\xc9\\x2d\\x7b\\xd9\\x66\\\n\\x01\\xc1\\xc9\\x07\\x60\\x1e\\xab\\xf3\\xce\\xbc\\xeb\\xa3\\x8a\\x6a\\xe8\\x16\\\n\\x31\\x69\\x6b\\x43\\x3c\\x7b\\x67\\x12\\xf2\\xac\\x06\\xa6\\x18\\x04\\xe8\\x10\\\n\\x9d\\xdf\\x46\\x84\\x3a\\x64\\x8a\\x11\\x48\\x0f\\xf3\\x6d\\x94\\xf7\\x8c\\x12\\\n\\x6b\\xe2\\x04\\x06\\x77\\x6a\\x29\\xea\\xa3\\x60\\xf1\\x24\\x7a\\x42\\xa7\\x62\\\n\\x3f\\x55\\x52\\x65\\x5d\\x2e\\xb0\\x72\\x01\\xb8\\xac\\x40\\x75\\x8e\\x3d\\xce\\\n\\x8c\\xb8\\x00\\x02\\x26\\x22\\x5a\\x1f\\x55\\x85\\x21\\xb2\\x81\\xc8\\x14\\x34\\\n\\xc4\\x99\\xa8\\xc2\\x86\\x19\\x96\\x0b\\xd0\\xa3\\xcc\\x96\\x93\\x2b\\xa2\\xa2\\\n\\xd8\\x76\\xff\\x00\\x67\\x0f\\x53\\x45\\x18\\x0f\\x1a\\xb7\\x16\\x00\\xb9\\xda\\\n\\x80\\xd0\\x60\\x5d\\xe4\\x21\\xa9\\x3d\\x6a\\x8a\\xc9\\x7a\\xe7\\x7b\\x07\\x35\\\n\\x20\\x1a\\x4b\\xb4\\x8b\\xd8\\x9a\\xa8\\xe5\\x83\\xf1\\x2a\\x50\\x25\\x30\\x7e\\\n\\x54\\xea\\x1c\\x80\\x6c\\x40\\xc1\\x12\\xa3\\xd8\\x40\\x54\\x77\\x43\\x77\\x87\\\n\\x9d\\xab\\x1a\\x02\\xdf\\x19\\x52\\x53\\xe7\\x5c\\x00\\xb0\\x0e\\x82\\xba\\x76\\\n\\x9d\\x76\\x74\\xe9\\x44\\x4e\\x2f\\x14\\x95\\xc0\\x08\\xa3\\x6f\\xbd\\x4f\\xa7\\\n\\x7d\\xf3\\x31\\xd4\\x10\\x8b\\x41\\xf9\\xe6\\x8d\\xf5\\x70\\x67\\x0e\\xd0\\x2e\\\n\\x35\\x0a\\x76\\x38\\x1e\\x3b\\x64\\x9e\\xf3\\xe9\\x08\\x57\\x4a\\xf4\\xc4\\xb1\\\n\\x45\\x71\\xca\\x5b\\x96\\xc9\\x51\\x95\\x82\\x00\\xde\\xb5\\x3f\\x18\\xce\\x08\\\n\\x20\\x30\\x82\\x89\\x09\\x5b\\x11\\x45\\x7e\\x64\\x48\\x36\\xa9\\xdb\\x47\\x9b\\\n\\x68\\x54\\x85\\x02\\x23\\x64\\x8f\\x11\\x64\\x12\\x17\\x54\\x48\\xbb\\xa2\\xb9\\\n\\x74\\xed\\x07\\x9d\\x59\\xa0\\x23\\x50\\xd5\\x45\\x83\\x41\\x49\\x64\\x65\\x39\\\n\\x43\\x09\\x41\\x72\\x91\\x85\\x02\\xa9\\x03\\x55\\x47\\x95\\xf5\\x4d\\x07\\xe0\\\n\\xe2\\x89\\xdb\\x50\\xa5\\x01\\x39\\x18\\x45\\x10\\xc7\\x5e\\xd9\\x95\\x89\\x7d\\\n\\x23\\xf5\\xe2\\x82\\x80\\x52\\x98\\xa5\\xb0\\x8c\\x87\\xd6\\x5d\\x0c\\x79\\x45\\\n\\x00\\x3a\\x05\\x29\\xe8\\x06\\x77\\xa9\\x1c\\x21\\x55\\x16\\x68\\x64\\xe9\\x90\\\n\\x53\\x21\\x98\\x62\\x8c\\x15\\x1f\\x12\\x4a\\x42\\x4a\\x5d\\x57\\x45\\x55\\xbf\\\n\\x50\\x6d\\x02\\x29\\x18\\x30\\x41\\xc8\\xa4\\x0a\\x46\\x38\\x89\\x29\\x4c\\x45\\\n\\x97\\x7c\\x76\\x2d\\x38\\x60\\x8f\\x37\\x29\\xf1\\xf8\\xab\\xd0\\x87\\xc7\\xc9\\\n\\xb7\\xbd\\xe3\\x38\\x74\\x69\\xec\\x0c\\x5b\\x80\\x16\\xc4\\xc6\\x26\\x61\\x20\\\n\\x02\\x88\\x0c\\x21\\x5a\\x81\\x8d\\x3b\\xcc\\x25\\x38\\xdc\\x1e\\xea\\x41\\x4a\\\n\\x7f\\xcf\\x43\\xf3\\x0d\\x54\\xe2\\x3f\\x9f\\xae\\x36\\x47\\x41\\xa5\\xb4\\xf1\\\n\\x08\\x83\\xc0\\x30\\x8a\\x2a\\x0a\\x27\\x88\\x48\\x4b\\x6e\\xac\\xe0\\xa4\\x11\\\n\\x0a\\x5a\\x1b\\xaa\\xa7\\x02\\x87\\xc1\\x1c\\x36\\x95\\x00\\xe9\\xb0\\x15\\xb9\\\n\\x98\\xbb\\x8c\\x3a\\x5e\\x43\\x90\\x40\\x4e\\x00\\x42\\xbb\\x24\\x3e\\xd2\\x20\\\n\\x72\\x19\\x92\\x22\\xe1\\x52\\x75\\x5f\\x9a\\x14\\x21\\xcc\\x48\\x58\\x18\\xda\\\n\\xea\\x98\\x2d\\x53\\xd9\\xd2\\x3c\\x6a\\x19\\x84\\x23\\x40\\xa2\\x90\\x17\\xb1\\\n\\xa5\\x7a\\xa3\\xc9\\xa7\\xfb\\x95\\x17\\x74\\x05\\xc0\\xb3\\x5e\\x8e\\xcc\\xa6\\\n\\x9a\\xa5\\xc1\\x19\\x97\\xf8\\x1b\\x17\\x86\\x55\\x00\\x96\\x80\\x45\\x50\\xaa\\\n\\xe3\\xa4\\x8b\\xd1\\x41\\x58\\x00\\x52\\x09\\x89\\xff\\x00\\x0b\\xdf\\x53\\x4f\\\n\\x4a\\xb0\\x00\\xfa\\xa4\\x24\\x58\\xd9\\x16\\x67\\x41\\x66\\xac\\x60\\xc0\\xb6\\\n\\xe0\\x67\\xf6\\x58\\x92\\xcd\\x31\\xb2\\xa1\\x0a\\x5b\\xd2\\x69\\x71\\xe9\\x9f\\\n\\xd1\\x2a\\x70\\xf1\\x56\\x60\\x82\\xc3\\xd8\\x32\\xec\\x17\\xb8\\xfc\\x55\\x9e\\\n\\x2e\\xea\\x28\\xd8\\x76\\xfb\\x99\\xb0\\x3a\\x08\\x73\\xd5\\x52\\x54\\x34\\x6f\\\n\\x58\\x2f\\x42\\x57\\x53\\x58\\x4e\\x87\\xff\\x00\\x83\\x5d\\xa8\\xc3\\xa3\\xe1\\\n\\x57\\x85\\xdd\\xee\\x22\\x9b\\x37\\xc3\\xb1\\xdf\\x53\\x31\\xc7\\xb7\\x7b\\x81\\\n\\x30\\x93\\x0d\\xd0\\x02\\x90\\xb9\\x53\\x30\\x6a\\x1a\\x48\\x20\\x0f\\x44\\x17\\\n\\xfe\\x5b\\x9c\\x76\\x36\\x51\\x03\\xb7\\xee\\xa2\\xbf\\x31\\x90\\xae\\xba\\x82\\\n\\x68\\x8f\\xc8\\x4c\\x5b\\xef\\x6d\\xd0\\xa4\\xbd\\x77\\xd6\\xf7\\xd3\\xb4\\x8e\\\n\\x77\\xe7\\x20\\x91\\x92\\xb1\\xaf\\x83\\x42\\x97\\x42\\x7c\\x2e\\xd5\\x03\\x5c\\\n\\x91\\xc0\\xed\\x04\\x46\\x25\\x2b\\x3b\\x48\\x71\\x52\\xc5\\x45\\xa7\\x05\\xd7\\\n\\x5e\\x44\\x40\\xc5\\xd0\\xc5\\x52\\x81\\x40\\xfa\\x6a\\x1f\\xd0\\xd2\\x0d\\x59\\\n\\xc1\\x16\\xac\\xad\\x54\\x42\\xd1\\x47\\x40\\x2b\\x11\\x98\\x51\\xf3\\x1c\\xb5\\\n\\x02\\x20\\x17\\x20\\x04\\x6f\\x61\\xc5\\x04\\xc0\\x29\\xb0\\xf0\\x04\\x8c\\x69\\\n\\x94\\xd5\\x39\\x12\\xe0\\x5a\\x0a\\xb3\\x74\\x7b\\x16\\x74\\xd5\\xfb\\x05\\x85\\\n\\x21\\x15\\xc3\\xdd\\x67\\x58\\x70\\x7e\\x9e\\x71\\x41\\xfc\\xc8\\xb2\\x85\\x28\\\n\\xaa\\x25\\x00\\x07\\x40\\x13\\x2e\\x04\\x45\\xa1\\x20\\xba\\x0d\\x3b\\x06\\x46\\\n\\x70\\xaa\\xc4\\xb5\\x50\\xe8\\xc4\\xed\\xc3\\xb3\\xc2\\x31\\x9d\\x55\\x14\\x09\\\n\\x72\\xab\\x2a\\xe9\\x66\\x1c\\x59\\x5a\\xb2\\x85\\x51\\x37\\xa1\\x07\\xa5\\x25\\\n\\x1b\\xcf\\x81\\x4a\\xa3\\x62\\x0a\\x10\\x5d\\x78\\x75\\x27\\x24\\x17\\x5d\\x10\\\n\\xb2\\x48\\x57\\x88\\xbe\\xbe\\xe0\\xa7\\x0e\\x6f\\xda\\xd2\\xb5\\x55\\xd0\\x0f\\\n\\xd5\\x55\\xf0\\xb1\\x05\\x09\\x90\\x1d\\x3e\\x14\\x7f\\x06\\x68\\x65\\xe5\\x66\\\n\\xd4\\xfa\\x8b\\xb0\\x6a\\x74\\x29\\x8f\\x40\\x8b\\xc2\\x16\\xd0\\x49\\x52\\x2e\\\n\\xe1\\x96\\x3d\\x66\\x74\\x74\\x14\\x5a\\x50\\x4e\\x8c\\x01\\x0b\\xa1\\x50\\x1e\\\n\\x0d\\x89\\xcf\\xb2\\x21\\x74\\x06\\x16\\x0a\\x14\\xdc\\xec\\x47\\x38\\xcd\\x95\\\n\\xa1\\x7a\\xa7\\x63\\xa0\\x04\\x5a\\x58\\x94\\x37\\x99\\x21\\x62\\x4d\\x86\\xbf\\\n\\xe4\\x3f\\x55\\xcd\\x4e\\x0d\\xa5\\xd4\\x5b\\x44\\x2a\\xac\\x29\\x14\\xe9\\x84\\\n\\xa7\\x2e\\xe6\\x0f\\x25\\x08\\x61\\x1a\\x02\\x63\\x7f\\x29\\x11\\x26\\xa4\\x69\\\n\\x0e\\x9a\\x3e\\xdf\\xef\\x20\\x66\\x70\\x9a\\x95\\xcb\\x29\\x67\\xd3\\xd2\\xb1\\\n\\x11\\xac\\x08\\xb5\\x98\\x26\\xa7\\xd0\\x6c\\x99\\x80\\x80\\x64\\x83\\xb4\\x56\\\n\\x3e\\x45\\xa8\\x05\\x44\\x22\\x51\\x18\\xc9\\x41\\xc0\\x0a\\x84\\x08\\x4c\\x14\\\n\\x68\\x84\\xc0\\xa0\\xc7\\x31\\x18\\x57\\x29\\x0f\\xf4\\xae\\x70\\x2a\\x51\\x80\\\n\\x11\\x88\\x88\\xcf\\x62\\xba\\x15\\x69\\xe3\\xb7\\xb9\\x93\\x65\\xa2\\x2e\\xc3\\\n\\x00\\x89\\xe3\\xe4\\x0d\\xc3\\xb4\\x3b\\xed\\x25\\x3a\\xee\\xf5\\x4b\\xbc\\x16\\\n\\x77\\x4b\\x4a\\x49\\x0b\\x68\\xae\\x81\\x8d\\x82\\x0c\\x38\\xd3\\x0a\\xa2\\x8a\\\n\\xc8\\xbe\\x4a\\x2f\\xa1\\xe9\\xc3\\x88\\x93\\xa5\\x54\\x34\\x69\\x83\\x91\\x90\\\n\\x6c\\xb4\\xb2\\x0a\\x07\\xab\\x61\\x02\\x93\\x40\\xf4\\xa0\\x97\\xe2\\xb2\\x08\\\n\\x94\\x25\\x82\\xc4\\xee\\xc2\\xe1\\x19\\x9b\\x15\\x34\\x11\\x90\\x31\\xd0\\x42\\\n\\x41\\x78\\x50\\x98\\xfa\\xa8\\xc4\\xc1\\xab\\xa0\\x61\\xa3\\x88\\x2c\\x09\\xa4\\\n\\x41\\x98\\xa8\\x54\\x36\\x84\\x01\\x22\\x6a\\xf1\\x4c\\x74\\x99\\x88\\x83\\xd0\\\n\\x30\\x30\\xf5\\x47\\x78\\x32\\xa3\\xa2\\x85\\x7b\\x10\\x5e\\xd1\\x52\\xa4\\xe0\\\n\\x37\\x6a\\x9d\\xd8\\xa0\\x65\\xc0\\xd1\\xed\\x10\\x74\\x00\\x40\\xaa\\xd0\\x08\\\n\\x16\\x82\\xa1\\x84\\x46\\xaf\\x05\\x33\\xbc\\x9d\\x6d\\x2b\\x00\\x53\\x02\\x42\\\n\\xd2\\x76\\x00\\xd2\\x0f\\x68\\x44\\x54\\x61\\x7b\\x9b\\x1e\\xb9\\xa0\\x45\\x45\\\n\\xc7\\x21\\xc1\\x50\\x3d\\xb8\\xd6\\x00\\x25\\x10\\x69\\x04\\xe7\\x43\\x03\\xfe\\\n\\x04\\x9d\\xf9\\x9d\\x8a\\x11\\xa0\\x4c\\x3f\\x7c\\x95\\xc3\\x6c\\x08\\x00\\xa9\\\n\\xd9\\x94\\xa4\\xed\\xe8\\x87\\x62\\xae\\xc4\\xac\\xa9\\x15\\xf3\\x7b\\x99\\x20\\\n\\x7c\\xbc\\xb1\\x56\\x84\\xc5\\xb2\\x02\\x14\\xea\\x27\\xa6\\x4d\\x1c\\x3e\\xea\\\n\\xc9\\x74\\x26\\xda\\xbb\\xea\\x85\\xec\\xbc\\x43\\x4d\\x81\\x62\\xab\\x45\\x30\\\n\\xc9\\x0e\\xd3\\xa7\\x16\\x8c\\x80\\x95\\x68\\xa3\\xd6\\x30\\x50\\x7a\\x30\\x82\\\n\\x49\\x12\\xd0\\xa2\\x42\\x91\\x44\\x41\\xec\\x07\\xf6\\x34\\xe6\\xdb\\x31\\x76\\\n\\x20\\xb1\\xd4\\xce\\xe6\\x05\\xf6\\x70\\xfa\\x66\\xf6\\x92\\x55\\x53\\x4a\\x9a\\\n\\x17\\xda\\x8c\\x9c\\x67\\x42\\x58\\x2e\\x9c\\x83\\x73\\x59\\x9d\\x76\\xf1\\x61\\\n\\xd0\\x26\\x82\\xff\\x00\\xaa\\x97\\xee\\xfe\\xf6\\xf2\\xa0\\x01\\x81\\xd9\\x48\\\n\\x74\\x62\\xcc\\xdc\\x68\\x46\\x2d\\x08\\xa1\\xea\\x03\\x10\\x2a\\x95\\x68\\x58\\\n\\x02\\x15\\x4b\\xb6\\x0a\\xa2\\x51\\x55\\x09\\x47\\x4a\\x0f\\xf9\\x72\\x33\\xba\\\n\\x30\\x9e\\xc9\\x0a\\x4d\\x90\\xfa\\x92\\x4d\\xaa\\xab\\x04\\x8a\\xc0\\x84\\xb8\\\n\\x64\\x05\\x56\\xca\\xe6\\x00\\x2c\\x53\\x53\\x6f\\x10\\x08\\x85\\xaa\\xd1\\x7a\\\n\\x4c\\xe5\\xa3\\x3b\\x28\\x1f\\xa7\\x55\\x19\\x52\\xf5\\x80\\x06\\xae\\x68\\x80\\\n\\xea\\x2c\\x8a\\xd6\\x37\\x89\\x82\\x08\\x05\\x59\\x04\\x31\\xd1\\xa1\\x67\\x8a\\\n\\x59\\xc4\\xd6\\x22\\x3b\\x30\\xe0\\x98\\x81\\x58\\x7a\\x6c\\x1b\\x7c\\x1f\\x0d\\\n\\x82\\x02\\x4b\\x94\\x16\\x8e\\x8d\\x2f\\x04\\xa1\\x7a\\x50\\x04\\xb7\\x18\\x32\\\n\\x98\\x8c\\xd5\\x39\\x72\\xf7\\x50\\x1d\\xc5\\x69\\xa3\\x06\\xb6\\xc4\\xa2\\x9c\\\n\\x54\\x2e\\xaa\\x0a\\x04\\x00\\x1c\\x51\\x47\\x7b\\x2f\\x36\\xdd\\x10\\x28\\x4a\\\n\\x3b\\x89\\x95\\x32\\xa3\\x9c\\x18\\x05\\x06\\xb1\\x2c\\x55\\x10\\x62\\x66\\x2e\\\n\\xb6\\xbc\\x6f\\x2c\\x05\\x9d\\x67\\x47\\x8d\\x2f\\x66\\x6e\\x4b\\xc0\\x10\\x25\\\n\\x0a\\x16\\x5a\\x8e\\x8a\\xac\\x3e\\xd0\\x50\\x9c\\x3a\\x31\\x0d\\x21\\x24\\x32\\\n\\x5a\\xab\\xad\\x35\\x81\\xc8\\x7c\\x3b\\x15\\x5a\\xea\\x34\\x17\\x5f\\x88\\xd9\\\n\\xc6\\xa4\\x21\\x48\\x28\\x57\\x04\\xa2\\x81\\xc9\\xb1\\xc5\\x55\\x20\\x62\\x07\\\n\\xc6\\xd4\\x00\\xb4\\x30\\x0f\\x93\\x4c\\xc2\\x88\\x04\\xf5\\x4e\\xa1\\x16\\x5b\\\n\\x70\\x0d\\xc8\\x4b\\xab\\x80\\x05\\x48\\x71\\x08\\x80\\xca\\x1f\\xd3\\xb4\\x98\\\n\\x83\\xa5\\x8d\\x13\\x04\\xc3\\x33\\x4b\\xc7\\xba\\x41\\x01\\x80\\x05\\x11\\x00\\\n\\xa0\\xc1\\x41\\x1a\\x24\\x2d\\xd8\\x07\\x65\\x1b\\x54\\xfd\\xed\\x5f\\x42\\x35\\\n\\x58\\x29\\x54\\x10\\x87\\x0c\\x63\\x05\\x48\\xde\\xdd\\xf1\\x08\\xb0\\x70\\x9f\\\n\\x90\\xc0\\x6a\\x01\\xd5\\x0e\\xb8\\xf7\\x61\\x29\\x34\\x16\\x9e\\x80\\x67\\xa1\\\n\\x54\\x4d\\xdd\\x62\\x95\\x3b\\x76\\x1a\\x4a\\x86\\x95\\x94\\x5e\\x13\\xe9\\x0c\\\n\\x80\\x51\\x09\\x5e\\xce\\xa3\\x4b\\xd5\\xe0\\xca\\x09\\xd5\\xd6\\xb6\\xac\\x51\\\n\\x85\\x2e\\x9f\\x11\\x11\\xd7\\x99\\x8a\\xe8\\x22\\xdd\\x5c\\xb6\\x4a\\x9c\\x0d\\\n\\x04\\x15\\x75\\x21\\x1c\\x22\\x4f\\x4a\\xc0\\xbe\\xdb\\x31\\x12\\x64\\x50\\xc2\\\n\\xe1\\x13\\x45\\x58\\x74\\xf0\\x01\\x26\\x26\\x80\\x8c\\x09\\x9a\\x85\\xd2\\x37\\\n\\xbc\\x38\\x75\\x18\\x98\\x80\\x9a\\x9a\\x06\\x75\\x80\\x0f\\x79\\x38\\x0b\\x56\\\n\\x81\\x50\\x2a\\x34\\x6c\\x40\\xf8\\x0e\\xa7\\x22\\x0d\\x90\\x21\\x02\\x33\\x00\\\n\\x23\\xd1\\x95\\x50\\x0e\\x29\\x03\\x3c\\x82\\x44\\xec\\xa8\\x8e\\x1a\\x2a\\x3b\\\n\\x51\\xc7\\x9e\\x34\\x90\\x6b\\xa0\\x40\\xce\\xc4\\x0a\\x1e\\x32\\x4f\\x4e\\xb4\\\n\\x52\\x05\\x20\\x09\\x33\\xe0\\xbb\\x3d\\xec\\x04\\x94\\x76\\xc6\\x58\\x44\\x71\\\n\\x24\\xe0\\x3c\\xc9\\x18\\x2c\\x14\\x2c\\x15\\xa8\\xae\\x35\\x62\\xb3\\x94\\x1d\\\n\\x0d\\x3c\\xa7\\x56\\xd4\\x42\\x90\\xa2\\xb9\\xdb\\x14\\xd6\\x09\\x3a\\x06\\x06\\\n\\x9b\\xea\\xcd\\x47\\x92\\x97\\x4a\\x95\\x42\\xaf\\x90\\xbe\\x22\\x8a\\x13\\x78\\\n\\x3a\\x89\\x2b\\x01\\x9a\\xb4\\x10\\xb1\\x37\\xa9\\x62\\xa2\\x54\\x12\\xac\\x58\\\n\\x14\\x89\\x00\\x41\\xc4\\x1e\\xda\\xf2\\x85\\xa3\\xc1\\x96\\x1e\\x10\\x6a\\xa6\\\n\\xee\\x96\\x88\\x25\\x11\\x3b\\x81\\xa2\\x91\\x61\\x95\\x3a\\x8d\\x33\\x17\\xe0\\\n\\xa2\\xaa\\xe8\\x95\\xa3\\x57\\x73\\xab\\xdf\\x9c\\x46\\xd6\\x40\\x00\\x12\\x33\\\n\\x42\\x18\\xa8\\x2f\\xb0\\x8c\\x53\\xc7\\x6d\\x00\\xa9\\x45\\x1e\\xfb\\x1a\\x56\\\n\\xe3\\xc5\\x29\\x04\\x72\\x89\\x50\\x98\\xe8\\xe8\\xe6\\x26\\x1e\\x57\\x45\\x48\\\n\\x4e\\xc3\\x46\\x61\\xd7\\x62\\xf5\\xed\\xe6\\xe8\\x44\\x10\\x07\\x47\\xe1\\xbd\\\n\\x69\\x0f\\x4c\\xd2\\xe5\\xec\\x44\\xfd\\x14\\x70\\x56\\xc4\\xea\\x0e\\x73\\xd0\\\n\\x40\\x05\\x6b\\xe1\\x4d\\x47\\xef\\xd3\\x7a\\x06\\xeb\\x19\\xd3\\x5b\\xfe\\x7a\\\n\\x5a\\x77\\xe3\\xfa\\xb3\\x19\\x04\\x09\\x80\\x68\\x2d\\x43\\xc0\\x3c\\x18\\xe2\\\n\\xd0\\x5a\\xae\\x11\\xaf\\x96\\xa7\\xca\\x1f\\xce\\x13\\x3e\\x15\\x30\\x5a\\x5c\\\n\\x81\\x98\\xc9\\xdc\\x91\\xe2\\x91\\x46\\xd4\\x53\\xa8\\xe0\\x86\\x01\\xa2\\xaa\\\n\\x0c\\xbc\\x16\\x40\\x16\\x0a\\x08\\xae\\x6f\\xa7\\x77\\xcf\\x13\\x82\\x24\\x00\\\n\\x00\\x04\\x90\\x43\\x58\\x01\\x1a\\x1d\\x84\\xe0\\x45\\xc8\\x27\\x45\\x22\\xb0\\\n\\x8a\\x00\\x79\\x74\\x78\\x8f\\x4f\\x1f\\x01\\x69\\x5b\\x8a\\x95\\x3f\\x5b\\x50\\\n\\x13\\x20\\x71\\xcd\\xe1\\x54\\x72\\x81\\x2b\\x5a\\xaf\\x0b\\x24\\x54\\x30\\xa6\\\n\\x8a\\xd1\\xd1\\xe8\\x81\\x16\\xc6\\x28\\x29\\xb0\\xa3\\xe9\\x42\\x06\\x55\\xd7\\\n\\x72\\x92\\x52\\x1a\\x90\\xf7\\x8c\\x47\\xf3\\x35\\xb5\\x9e\\x0e\\x8a\\x11\\x4a\\\n\\xdb\\x0b\\x7b\\x48\\x85\\x48\\xfb\\x89\\x28\\x25\\x23\\x52\\xc2\\x6a\\x39\\x02\\\n\\x43\\x1c\\x0d\\x5e\\x0c\\x79\\x02\\x2a\\x01\\x15\\x04\\x41\\x64\\x24\\x2f\\xba\\\n\\x62\\xea\\x41\\x0f\\x91\\x64\\x3b\\xfa\\x11\\x7a\\x5c\\x10\\x88\\x58\\x00\\xd7\\\n\\x5e\\x9b\\x52\\x8a\\x9b\\x4e\\x22\\x2e\\x68\\x04\\xbf\\x61\\x72\\x27\\xac\\x78\\\n\\xcc\\xb7\\x24\\xca\\xc0\\x37\\xbd\\x68\\x83\\xf6\\xf6\\x98\\xa4\\xda\\x1d\\x09\\\n\\x8c\\x28\\x2c\\x45\\x00\\x58\\x88\\x81\\x0d\\xdb\\x00\\xb5\\x4a\\x81\\x70\\x4c\\\n\\x48\\x31\\x49\\x50\\x76\\xe2\\xac\\x0a\\xc6\\x44\\x16\\x0b\\xd3\\x9d\\xa2\\xa5\\\n\\x70\\xd3\\xec\\xac\\x04\\xc7\\xe2\\x38\\x84\\x37\\x1b\\x52\\xec\\x31\\xdf\\x0e\\\n\\x27\\x8d\\x02\\x28\\x40\\x8a\\x51\\xa3\\xdc\\x29\\x13\\x0e\\x97\\xcd\\xe2\\x84\\\n\\x05\\x28\\x4a\\x4c\\x93\\x14\\x3b\\x0e\\x8b\\x05\\x41\\x6c\\xcc\\x17\\x44\\x2a\\\n\\x44\\xec\\x87\\x4b\\xda\\x74\\x31\\x9a\\x1d\\xd5\\x5f\\xaa\\x10\\x24\\xea\\xa2\\\n\\x41\\xcd\\x71\\x32\\x21\\xe2\\x28\\x96\\x89\\x4d\\xed\\x00\\x71\\xf5\\xd5\\xa2\\\n\\x3a\\x20\\x38\\x2f\\x2e\\x2f\\x58\\xd3\\x4d\\xa4\\x7b\\x14\\x02\\x89\\x80\\xaf\\\n\\x43\\xbe\\x03\\x80\\x0d\\xcb\\xa0\\x1a\\xa2\\xa1\\x27\\x41\\x01\\xe1\\x65\\x98\\\n\\x91\\x6d\\x34\\xf1\\x4e\\xd5\\xab\\x90\\x91\\x38\\x14\\x42\\x04\\x82\\x21\\xa7\\\n\\x7d\\x50\\x20\\x2e\\x19\\x38\\x41\\x0a\\xc9\\x01\\x3b\\x26\\x10\\x02\\x00\\x9e\\\n\\x36\\xf0\\xcc\\x04\\x18\\xfb\\x18\\xa3\\x3b\\xc6\\x96\\xf3\\xe8\\xa0\\x90\\x4e\\\n\\xbb\\x7a\\x6a\\x64\\x7e\\x12\\xf1\\x0c\\xca\\x00\\x46\\xe8\\x6b\\x6a\\x32\\x8a\\\n\\x1e\\x16\\xd3\\x63\\x3a\\xd0\\x5a\\xd5\\x14\\x7a\\x3f\\xaa\\x07\\x8a\\x06\\x89\\\n\\xca\\x32\\x26\\x88\\x37\\x10\\x62\\x91\\x1b\\x11\\x18\\x2d\\x5f\\x66\\x88\\xf5\\\n\\x0a\\x7d\\x84\\x37\\x8b\\xae\\x15\\x50\\x4a\\x04\\x13\\xa0\\x63\\x17\\x14\\x95\\\n\\xe2\\x00\\x62\\xf0\\x44\\x54\\xf6\\x22\\x1e\\xf6\\x5b\\xdf\\x34\\xc8\\xc8\\xc0\\\n\\x82\\xa0\\x07\\xd1\\x90\\x9e\\xd1\\xbc\\x0d\\x20\\x92\\x94\\x60\\x56\\x30\\x71\\\n\\x6b\\xdb\\xa0\\x9c\\xbc\\x22\\xad\\x40\\x2c\\xd5\\x16\\xa9\\x02\\x20\\xc8\\x27\\\n\\x1f\\x30\\xb1\\x51\\x55\\xe9\\xa8\\x2e\\x68\\x8f\\x77\\xe5\\x6a\\x15\\x75\\x5b\\\n\\x00\\x1d\\x7a\\x96\\x91\\xd1\\x80\\x30\\x07\\xe1\\x40\\xaa\\x5d\\x51\\x0b\\xb0\\\n\\xe9\\x8f\\x5e\\x70\\x4c\\xe0\\x3b\\x2b\\xa5\\x68\\x6a\\x01\\x73\\x7b\\xdd\\xe2\\\n\\x33\\xb6\\x9a\\xe9\\xa5\\x83\\xe9\\x96\\xd9\\x3b\\x04\\x6c\\x18\\xf4\\x55\\xec\\\n\\xac\\x9b\\x4f\\xe5\\x38\\x32\\x33\\x54\\x6a\\x12\\x20\\x16\\x94\\x88\\x76\\x2d\\\n\\x4e\\x4b\\x6c\\x12\\x0c\\x62\\x23\\x21\\x53\\x3b\\x3e\\x32\\x75\\xb3\\xa9\\x83\\\n\\x40\\xc2\\x4d\\x76\\x1a\\x99\\xfa\\x41\\x14\\x42\\xd3\\xd9\\x6d\\xd3\\x1a\\x43\\\n\\xd0\\x7b\\x38\\x46\\x28\\x48\\x94\\x4b\\xdf\\x9d\\xd0\\x91\\xf4\\x1c\\xbd\\xf9\\\n\\x40\\x10\\x69\\x6e\\x94\\xc2\\x9b\\x2b\\x59\\xe7\\x0e\\x9d\\x2a\\x05\\xa8\\xa3\\\n\\x22\\x28\\xc5\\x3e\\x98\\x67\\x05\\xda\\x88\\x74\\x04\\xd5\\x52\\x55\\xbb\\x5c\\\n\\xbf\\x5b\\x22\\x07\\x00\\xee\\x9a\\x1b\\xe2\\x66\\x84\\xdf\\xdd\\xa4\\x33\\x09\\\n\\x91\\x59\\xad\\x02\\x3f\\xd3\\xbe\\x8e\\x74\\x47\\xdb\\x9a\\xff\\x00\\xc7\\xfc\\\n\\xff\\x00\\xad\\xe4\\x79\\x30\\xec\\x09\\xd9\\x52\\x7a\\x54\\x17\\x6e\\x38\\x26\\\n\\xc0\\x40\\xbb\\xbd\\xc8\\xcb\\xdf\\x6f\\xf7\\x95\\x54\\x87\\x7d\\x69\\xaa\\xb5\\\n\\xf1\\xec\\xee\\x8d\\xe6\\x2d\\xc2\\x75\\x90\\x5f\\x3b\\xa1\\xbf\\x80\\x66\\x70\\\n\\x72\\xee\\x93\\xf9\\x9d\\x91\\xf7\\xfe\\x87\\xbe\\x1a\\x6d\\x74\\xf3\\x35\\xeb\\\n\\x31\\xfd\\xff\\x00\\x9b\\xc7\\x02\\x0c\\x08\\x68\\x40\\x73\\xc1\\xf2\\x1d\\x79\\\n\\x9c\\xa8\\xb5\\xf4\\xa9\\x34\\xba\\xf7\\x7f\\xc9\\x88\\x9c\\x16\\x00\\x48\\x00\\\n\\xa0\\x83\\x96\\x09\\xd5\\x07\\x81\\xc2\\xdc\\x90\\x7d\\xc1\\x42\\x0b\\x00\\xac\\\n\\x85\\x3a\\xb4\\x8c\\x16\\x14\\x26\\x7a\\x05\\xee\\xfa\\xe7\\xf9\\xf3\\x8d\\x82\\\n\\x12\\x1e\\x1e\\xdb\\xff\\x00\\x3c\\x01\\x06\\x02\\x4f\\xf1\\x1f\\x78\\xab\\xdf\\\n\\xe7\\xfd\\x67\\x04\\x1e\\x82\\x4b\\xea\\x7f\\x9e\\xbd\\x1f\\xda\\x00\\x25\\x11\\\n\\x11\\xb8\\xcb\\xef\\xc5\\xfd\\xbb\\x79\\x4a\\x89\\xa5\\x89\\xbb\\xe8\\xa8\\x1a\\\n\\x8a\\x6c\\x82\\x9c\\x24\\x8d\\x8c\\x2e\\x48\\xf2\\x7c\\xbf\\x8d\\x93\\x89\\xcc\\\n\\xd0\\x2e\\x04\\x9b\\x6f\\xf7\\x7e\\xfd\\x79\\x22\\x43\\x4b\\x40\\x86\\xf8\\xc9\\\n\\x71\\x8a\\xff\\x00\\x8e\\x84\\xc2\\x69\\x56\\xad\\x7d\\xe8\\x3f\\x97\\xd6\\xf2\\\n\\xdf\\x4c\\x6c\\xaf\\x8c\\x2d\\x82\\xda\\x12\\xd6\\xf9\\x2c\\x90\\x08\\x02\\x14\\\n\\xc1\\x0e\\xaf\\xab\\xdb\\xf9\\x06\\x97\\x24\\x16\\x0d\\x4a\\xc1\\x42\\x08\\xe4\\\n\\xe8\\x82\\x8a\\x8e\\x8f\\x23\\x15\\x10\\x27\\xbf\\xeb\\x84\\x21\\x01\\x93\\x28\\\n\\xbd\\xce\\xd8\\x27\\xff\\x00\\x7b\\xc9\\x6e\\xd8\\xf5\\x06\\x3d\\x08\\x9b\\x37\\\n\\xed\\x7f\\x23\\xe5\\x16\\x07\\x7c\\x81\\xf3\\x3b\\xb4\\x8a\\xf7\\x77\\x97\\x71\\\n\\xad\\x4c\\x60\\xa1\\xea\\x53\\xec\\xf9\\x98\\x71\\x63\\x32\\xc2\\xbd\\x0c\\xc6\\\n\\x2d\\x61\\x0a\\xde\\xe4\\x19\\x6c\\x14\\xcd\\x67\\xd5\\x65\\xd5\\xf6\\xde\\x21\\\n\\x51\\x22\\x3a\\x40\\x37\\xf8\\xbf\\xea\\x49\\xcd\\x10\\x2f\\x63\\xad\\xaf\\x7b\\\n\\xfc\\xef\\xae\\x67\\xec\\xff\\x00\\x80\\xc2\\x1e\\xcf\\xfc\\xac\\x9c\\x4e\\x3c\\\n\\xbb\\xe2\\xd7\\xe2\\x75\\x07\\xfa\\x17\\x85\\x70\\xa8\\x95\\xec\\x65\\xde\\xfa\\\n\\x0d\\xb7\\xf7\\x83\\x2f\\x74\\xa5\\x29\\x12\\x8c\\xb5\\x8b\\xf7\\x73\\x83\\x40\\\n\\xb6\\xa4\\xc9\\x44\\xcc\\x88\\x65\\x96\\xe6\\xf3\\x2c\\x00\\x61\\x3f\\x75\\x93\\\n\\x7c\\xc9\\x93\\xe1\\xca\\x11\\xd1\\x5f\\xed\\xff\\x00\\xd3\\xa7\\xff\\x00\\xc3\\\n\\x91\\x15\\x28\\x09\\xd8\\x6d\\x65\\x7f\\xff\\x00\\x2d\\xe4\\x21\\x92\\xa1\\x02\\\n\\xac\\x54\\x08\\xa9\\x4b\\xdc\\x53\\x99\\xe3\\x50\\x38\\x9d\\xef\\xfa\\x33\\xac\\\n\\xeb\\x95\\xaf\\x83\\xbf\\xc1\\xae\\x77\\xbd\\xf3\\x36\\x5f\\x39\\xb4\\x5f\\x27\\\n\\x6b\\x86\\x75\\xc7\\xd4\\xe8\\x7a\\xfa\\x00\\x92\\x55\\x94\\x65\\xa6\\xd7\\x81\\\n\\x13\\x39\\x36\\xce\\xa3\\x12\\x65\\x7b\\x3f\\xb7\\x6f\\xac\\xe5\\xb3\\xd1\\x5b\\\n\\x2d\\xff\\x00\\xaf\\xce\\xf8\\x48\\xc6\\xae\\xfe\\x7c\\x3e\\x7f\\xcb\\xad\\xe2\\\n\\x3f\\x61\\xab\\xb8\\x30\\x98\\x1f\\xd0\\x1f\\xde\\xf9\\xf9\\x97\\x40\\xeb\\x5f\\\n\\xcf\\x5d\\x07\\xed\\xe1\\x23\\xab\\x5c\\xf6\\x9e\\x7d\\x1b\\xdf\\x67\\x1c\\x05\\\n\\xc4\\x06\\xce\\xba\\x2f\\xcf\\xfb\\xfe\\xbc\\x64\\x55\\x58\\xfa\\xa8\\x7f\\x61\\\n\\x7d\\xf9\\xdb\\xc6\\x03\\x93\\x1b\\xf1\\xfb\\x72\\xfa\\xff\\x00\\xf3\\x54\\xa5\\\n\\x60\\xff\\x00\\x9f\\xfc\\xef\\xc9\\xd6\\xfb\\x70\\xfc\\x08\\x99\\x2b\\x93\\xa9\\\n\\x96\\x4f\\x5f\\x33\\x82\\xc7\\x47\\xa7\\x85\\x43\\x3e\\x75\\xfc\\xab\\xc5\\x93\\\n\\xcd\\xff\\x00\\xcd\\x7f\\xfb\\xfa\\xfd\\xe3\\x96\\xda\\xb7\\x66\\xc7\\x73\\xb7\\\n\\x5e\\xe9\\xf9\\xca\\xbe\\x1e\\x87\\x4e\\xc0\\xf7\\x72\\x7f\\x33\\x86\\x1a\\xf4\\\n\\x3f\\x59\\x05\\x7f\\xef\\xf5\\xd7\\x90\\x36\\x2a\\xa9\\x6e\\x80\\xdb\\xf2\\xdf\\\n\\xeb\\xf7\\x8f\\x00\\xaa\\x58\\x45\\x06\\x13\\xe6\\x14\\xfc\\x3e\\x12\\x82\\x1a\\\n\\x8e\\x7a\\x8f\\xff\\x00\\x4e\\x8f\\x39\\xff\\xc4\\x00\\x26\\x11\\x01\\x01\\x01\\\n\\x01\\x00\\x03\\x01\\x00\\x02\\x02\\x03\\x01\\x01\\x01\\x01\\x00\\x01\\x11\\x21\\\n\\x31\\x00\\x41\\x51\\x61\\x71\\x81\\x91\\xa1\\xb1\\xc1\\xd1\\xf0\\xe1\\xf1\\x10\\\n\\xff\\xda\\x00\\x08\\x01\\x02\\x01\\x01\\x3f\\x10\\x1a\\x19\\x87\\x34\\x7a\\xad\\\n\\x3e\\x7e\\x78\\x82\\x68\\x23\\xad\\x02\\x7a\\x64\\x57\\xa4\\x9b\\xc7\\xc9\\xbd\\\n\\xed\\xa9\\x98\\xaa\\xa6\\x66\\x4b\\x6d\\xeb\\x9b\\x60\\xc8\\xa4\\xb1\\xd2\\x7b\\\n\\xcf\\xe1\\xf3\\x21\\xbb\\x78\\x91\\x05\\xfa\\x18\\xfe\\x77\\xf4\\x3c\\xe1\\x6b\\\n\\x82\\x8d\\xc6\\x8d\\xc6\\xf7\\xf3\\xc7\\x46\\x49\\x90\\x00\\x01\\xb4\\xbb\\x0b\\\n\\xe9\\x6b\\x7c\\xc3\\xf9\\x70\\x13\\x41\\xc8\\x3d\\x34\\xba\\x01\\xe2\\x8b\\x63\\\n\\x96\\x98\\x64\\x5b\\x83\\x2c\\x1b\\xb0\\xe3\\x80\\x25\\x32\\x01\\x79\\x0d\\xe0\\\n\\x3a\\x5c\\xef\\x93\\x1f\\x0e\\xa0\\xd8\\x72\\x19\\x8a\\xd1\\xe6\\xbe\\x19\\xe2\\\n\\xd1\\x63\\xd6\\xde\\x3b\\x7e\\x5f\\xbc\\xf1\\xd1\\x02\\x6e\\x92\\x40\\x05\\x3f\\\n\\xef\\xb9\\xed\\xf2\\xff\\x00\\xbb\\xc1\\xe4\\xbf\\xdb\\x7d\\x6b\\x73\\x86\\x18\\\n\\x39\\x58\\xc8\\x2a\\xbd\\xfd\\xb7\\xdf\\x5a\\xb1\\xf2\\x51\\x82\\x04\\x69\\xd5\\\n\\xc6\\xfa\\x7d\\xbe\\x9f\\x45\\xbe\\x33\\xc2\\x4f\\x4a\\x8e\\x00\\xf4\\xc7\\x9c\\\n\\x49\\x2f\\x82\\xbd\\x0a\\x27\\xf4\\x60\\x1e\\x94\\x3d\\x17\\xb4\\x94\\xf4\\xa2\\\n\\x50\\x89\\x08\\x92\\xeb\\xb2\\x9d\\x88\\x84\\x2a\\x78\\x8c\\x1c\\x19\\x42\\x43\\\n\\xbb\\x80\\x07\\xad\\x3c\\x6b\\xb1\\x05\\x63\\x64\\x4e\\x5c\\x5e\\x1b\\xaa\\xcf\\\n\\x15\\x68\\x26\\x31\\xea\\x58\\xde\\xc1\\xe0\\xd4\\xdc\\x09\\x2c\\x66\\x04\\xca\\\n\\x9f\\xb7\\xac\\x3b\\xe9\\xfb\\xbe\\x43\\x62\\x01\\x98\\xd9\\xee\\xca\\xde\\xcc\\\n\\xf5\\xe2\\x64\\xd2\\x1d\\x07\\xd1\\x1f\\xdb\\x7d\\xbd\\xce\\x04\\x2b\\x28\\xc2\\\n\\x86\\xb9\\xf1\\xa6\\x45\\x48\\x84\\x87\\x72\\x01\\xee\\xa9\\x51\\x89\\x74\\x25\\\n\\xe7\\xf1\\xe2\\x89\\x0e\\x9b\\x1d\\xc8\\x8b\\x21\\xc9\\xbc\\xe2\\x5a\\x09\\x50\\\n\\x0d\\x7c\\xd2\\x61\\xad\\xbc\\x11\\xcf\\xbe\\x3a\\xa9\\x89\\x8d\\x53\\xe3\\x69\\\n\\x7d\\xe3\\xb4\\xb7\\xc7\\x0d\\xba\\xbd\\xcf\\xbd\\xdf\\x54\\xd8\\x1e\\xa7\\xb6\\\n\\x0a\\x91\\x14\\xdc\\xde\\x12\\x7d\\x9e\\xb7\\x65\\xe6\\x15\\x00\\x88\\x16\\xc7\\\n\\x34\\xf5\\xb9\\xfc\\x7c\\xf2\\x9f\\xcc\\x9c\\x0a\\x4f\\xcd\\x77\\xba\\xff\\x00\\\n\\x7e\\x26\\xc0\\xbf\\x9f\\xec\\xb5\\xa5\\xa9\\xe8\\xfe\\x3c\\xa5\\x40\\xc0\\xd7\\\n\\x39\\x55\\x9f\\xbe\\x33\\x60\\x3a\\x6e\\xbf\\xaf\\xb4\\xe1\\x2d\\xa7\\x82\\x79\\\n\\x0f\\x4e\\x60\\x70\\xd7\\x4d\\x3e\\xbd\\xfe\\x11\\xc6\\x90\\xb1\\x29\\x44\\x60\\\n\\xc0\\x6e\\xf7\\x1e\\x57\\x7c\\x53\\x2b\\xa0\\x34\\xb0\\x8f\\xbd\\x2a\\xfa\\x2f\\\n\\xf3\\xe4\\xf2\\x08\\x22\\xb4\\x53\\x7f\\x3b\\x5d\\xf7\\xbf\\x6f\\x85\\x96\\x8c\\\n\\x0d\\xac\\x76\\x7a\\x3d\\x4b\\xed\\x87\\x99\\x4d\\x7d\\xb9\\x6d\\x85\\x61\\xf8\\\n\\x36\\x9c\\xce\\x3c\\x37\\x34\\x39\\x87\\x50\\x74\\xfe\\x3d\\xbf\\xd0\\xcc\\x11\\\n\\x67\\x05\\x75\\x1c\\xdd\\xc9\\xce\\x81\\xe5\\xb8\\x05\\x7a\\x3e\\x7d\\x7d\\xff\\\n\\x00\\x11\\xc5\\xf4\\x78\\x41\\x35\\x00\\xb6\\x85\\x46\\x1b\\x15\\x21\\xa0\\x68\\\n\\xc6\\x97\\xd9\\x92\\x2e\\x22\\x86\\x08\\x1c\\x5a\\x1e\\x12\\xa0\\x9e\\xa4\\x5f\\\n\\x80\\x41\\x6f\\x53\\x49\\x4f\\x17\\x1f\\x8d\\x12\\x5a\\xea\\x52\\xd5\\x8e\\x8d\\\n\\xf9\\x3c\\x0c\\xc7\\x03\\x03\\x18\\x81\\x20\\x6a\\xdd\\x6d\\xf1\\x16\\x2c\\xe2\\\n\\xa1\\xe0\\x6f\\x89\\x6b\\xae\\x0a\\xf9\\x0d\\xf2\\x18\\x71\\x22\\x70\\x42\\xd3\\\n\\x37\\x31\\xcf\\x0c\\x49\\xac\\x2b\\x14\\x00\\x37\\xd3\\xad\\x88\\x2f\\xbf\\x1f\\\n\\xf4\\x25\\x07\\xa6\\xef\\xab\\x1d\\xa6\\x73\\xd3\\x22\\x7a\\x73\\x80\\xf1\\xfa\\\n\\x33\\x95\\x69\\x9c\\xf7\\xe2\\xe8\\x6b\\x44\\xdb\\x81\\xfc\\xae\\xfc\\xa2\\x9a\\\n\\xcf\\x12\\x51\\x61\\xdd\\x01\\x9e\\x88\\x51\\x33\\x0d\\xc3\\xd4\\xf3\\x07\\x73\\\n\\x70\\x1f\\x57\\xd2\\x5e\\x7d\\xb9\\x1d\\xf2\\x21\\x15\\x10\\xe5\\xb8\\xea\\x6c\\\n\\xaf\\x16\\xe3\\x65\\x6e\\x95\\xed\\xab\\xb4\\x19\\x19\\x7d\\xbe\\xda\\x58\\x44\\\n\\xf0\\x60\\x8c\\x03\\x76\\x27\\x0b\\xfc\\x1a\\x68\\xea\\x2e\\x78\\xfc\\x23\\x5e\\\n\\x8d\\x99\\x2e\\x87\\xfa\\xff\\x00\\xcf\\x0c\\x13\\x92\\x4d\\x12\\x55\\xf3\\xe6\\\n\\xbb\\xea\\x79\\x44\\xc9\\x4f\\xb3\\x21\\x44\\xab\\x68\\x91\\x2b\\xea\\xf8\\xb6\\\n\\xe2\\x85\\x2a\\x82\\xc4\\x30\\x55\\xf4\\x6b\\x98\\x79\\xa3\\xfb\\x60\\x9f\\xe0\\\n\\x02\\x4e\\xf4\\x1b\\x6a\\x6f\\x8f\\xc9\\x50\\x41\\x5e\\x83\\xfe\\x0e\\xd7\\xca\\\n\\xcb\\x67\\x37\\xaa\\x14\\xaa\\xf0\\x42\\x69\\x1e\\xdd\\x2b\\x4d\\x02\\x68\\x24\\\n\\x0c\\x7b\\x78\\x1c\\xb5\\xf1\\x28\\xec\\x9c\\xdf\\x44\\x3b\\x7b\\x09\\x7e\\x7b\\\n\\xac\\x3a\\x03\\x41\\x53\\x09\\x3e\\xd8\\xa8\\x61\\x73\\xa8\\x40\\x38\\x04\\x36\\\n\\x35\\x14\\xe7\\x7b\\xbe\\x43\\x54\\xa8\\x72\\x26\\x9f\\xb4\\xff\\x00\\x5f\\x7c\\\n\\x6e\\xb8\\xd0\\xc0\\x3f\\x47\\xcd\\x85\\xce\\xee\\x3a\\x63\\x87\\x2e\\x0e\\xf2\\\n\\x04\\x73\\x91\\x7f\\x7c\\x75\\x4c\\xc9\\xe2\\x00\\x3e\\xe4\\xc5\\xc1\\xfd\\xf1\\\n\\xf1\\xbe\\xe0\\x2c\\xd4\\xa2\\x10\\x4e\\x01\\x9d\\x9e\\x30\\x5c\\xc0\\x56\\x15\\\n\\xfe\\xbd\\xb9\\x56\\xfe\\x26\\x47\\xd4\\xa7\\xbb\\x67\\xda\\x18\\xb0\\x25\\x84\\\n\\x4f\\x7e\\x0e\\xc1\\xad\\xa1\\x01\\x27\\x41\\x6f\\x35\\x03\\x81\\xe0\\xaa\\x31\\\n\\x3b\\x6b\\x80\\x3d\\xb9\\xb9\\x3f\\x4f\\x27\\xd5\\xdd\\x69\\xa3\\x58\\xff\\x00\\\n\\x1c\\x77\\xf6\\xdf\\x20\\x86\\x53\\x00\\x84\\x94\\x22\\x99\\x3b\\x0c\\x3b\\xa9\\\n\\x14\\x79\\x81\\x83\\x12\\x23\\x98\\x89\\x67\\xc2\\x14\\x0b\\x8e\\x48\\xae\\x30\\\n\\x03\\xfc\\xad\\xae\\xff\\x00\\x14\\x6b\\x0a\\xc5\\x06\\xf0\\xdd\\x8d\\x31\\x67\\\n\\x3f\\x99\\x5a\\x24\\x23\\x28\\xd2\\xa2\\xca\\x93\\x5e\\x14\\x78\\x77\\x74\\x83\\\n\\xf3\\x10\\x56\\xa4\\x52\\x25\\x33\\x52\\x89\\x06\\xa5\\x86\\x36\\xd4\\x19\\xd8\\\n\\x57\\xf7\\x84\\xf1\\x94\\x10\\x20\\x00\\x0b\\x2e\\x1b\\xef\\x20\\x57\\x73\\xc6\\\n\\x06\\xa0\\x44\\xa5\\xeb\\xf3\\x28\\x17\\x9e\\xf9\\xa4\\xa5\\x4d\\x0f\\x6e\\xc3\\\n\\x3f\\x49\\xfb\\x3d\\x7c\\xf1\\x90\\x82\\x38\\x32\\x86\\x73\\x25\\x4a\\x99\\xfa\\\n\\xa7\\x9f\\x92\\x25\\xcb\\x67\\xbd\\xe6\\x4f\\xee\\x4f\\x7e\\x2d\\xd9\\xbf\\x86\\\n\\x9b\\xf1\\x32\\x3c\\xe1\\xe2\\x3c\\x6f\\x84\\x77\\xbe\\xf1\\x2c\\x38\\xfb\\xc7\\\n\\xd0\\x4d\\x8a\\x16\\x2d\\xcd\\xf7\\x6b\\xc3\\x7e\\x6f\\xda\\x59\\x28\\xae\\xaa\\\n\\x94\\x97\\xbf\\xfb\\xfe\\x4b\\xe7\\xb0\\x16\\x4d\\x61\\x5e\\x7c\\x57\\xe4\\xda\\\n\\xfd\\x3c\\x94\\x90\\x32\\x83\\x7f\\x9b\\xfc\\x3a\\x3e\\xc9\\xf2\\xb9\\x12\\xc3\\\n\\x0e\\xa0\\x53\\x76\\x39\\x17\\x77\\x08\\x40\\xd1\\xa6\\xe4\\x25\\x27\\xdf\\x6b\\\n\\xe8\\x27\\xd1\\x06\\x89\\x10\\x3c\\x59\\x1b\\xfe\\xe9\\x7d\\x8c\\xcf\\x13\\xfe\\\n\\x04\\xaa\\x5a\\x5f\\x90\\xaf\\xf4\\x7f\\x89\\x02\\x83\\x8c\\x36\\x1e\\xc4\\xdb\\\n\\x3b\\xed\\x9f\\x94\\x87\\x96\\x6b\\x71\\xf4\\xe0\\xf7\\xd7\\xf1\\x49\\x09\\x9c\\\n\\x04\\x2e\\x4e\\xb2\\x04\\x75\\xb8\\xfd\\x3d\\xbe\\x39\\x2f\\xd0\\x68\\x61\\x7d\\\n\\xb3\\x66\\x86\\x5f\\x9e\\x4a\\x4d\\x45\\xe9\\x28\\x27\\xec\\xe4\\x39\\x6e\\x37\\\n\\xc0\\x72\\x03\\x54\\x12\\x8f\\xec\\x81\\xde\\x7e\\x95\\x4d\\x61\\x4a\\x95\\x5c\\\n\\x41\\x60\\xa8\\x6b\\x1b\\xe3\\xa1\\x11\\x87\\xb1\\xfa\\x06\\xf5\\x20\\x7a\\x95\\\n\\xbe\\x26\\x5b\\xe9\\x92\\xd9\\x6d\\x14\\x6d\\x46\\x03\\x9b\\xdf\\x19\\xca\\x92\\\n\\xc2\\x0a\\x1c\\x53\\x5b\\x29\\xb0\\x96\\x08\\x93\\xf5\\x78\\x2e\\xe2\\x48\\x30\\\n\\x6f\\xbd\\xc7\\xdf\\x95\\x0e\\x20\\xa8\\x58\\x8e\\x95\\x6c\\x34\\xd6\\x87\\x24\\\n\\x05\\x1d\\x88\\xa2\\x68\\x40\\x48\\x40\\x14\\x5f\\x48\\x04\\x66\\x6b\\x84\\x46\\\n\\x89\\xd5\\xed\\x5c\\xbe\\xea\\x79\\x36\\x21\\xf1\\x1c\\x3e\\x5f\\x5d\\xe0\\xe5\\\n\\xcf\\x01\\x4d\\x1e\\x47\\x4a\\xa7\\xcd\\x48\\x7f\\x9d\\xaf\\x91\\xa0\\x03\\xc9\\\n\\xb6\\x09\\x77\\xe7\\x09\\x56\\x2b\\x8d\\x26\\x90\\x05\\xa6\\x7b\\xb6\\x6f\\x75\\\n\\xbf\\xce\\xa4\\x10\\x5c\\x4b\\xa1\\x2a\\x7a\\x2c\\xe3\\x55\\x27\\x74\\x4c\\xf0\\\n\\x3c\\xc9\\x61\\xea\\x0e\\xf3\\x16\\x99\\xed\\xec\\x97\\xc1\\x07\\x0c\\x3e\\xb7\\\n\\x0d\\xf1\\x72\\x63\\x50\\x16\\x30\\x8e\\xcc\\x21\\x0b\\x77\\x63\\xbb\\x10\\xa2\\\n\\x7a\\xe8\\x22\\x69\\x74\\xc7\\xec\\x62\\x95\\x09\\x2b\\x41\\x98\\x08\\xa2\\x17\\\n\\xab\\x28\\x78\\x9a\\x18\\x12\\x48\\x6d\\xbe\\xec\\x8b\\x42\\x7e\\x76\\xc9\\x98\\\n\\x91\\x46\\x12\\x81\\x22\\xd1\\x51\\x33\\x55\\xde\\x4a\\xa2\\xd7\\xf0\\x40\\xb8\\\n\\x25\\x87\\xbf\\x3b\\x61\\xaa\\x6e\\x29\\x01\\x45\\x54\\x03\\xbb\\x9f\\x3c\\xa2\\\n\\x24\\x62\\x08\\xe3\\x69\\xcc\\x69\\x88\\xe2\\x7c\\x10\\x80\\xa7\\x79\\x42\\xaa\\\n\\x3a\\x8a\\x7e\\x1e\\x2e\\x3a\\x2a\\x2c\\xd5\\x30\\x2b\\xed\\x05\\x42\\x97\\xc2\\\n\\x0f\\xc4\\xf6\\x4c\\x15\\x48\\xf4\\x5b\\xeb\\xc6\\x77\\x95\\x8a\\x5b\\x66\\x97\\\n\\x70\\x02\\xdf\\x22\\x0b\\x4a\\x8b\\x26\\xa0\\x75\\x61\\x5a\\xfa\\x45\\xf1\\xd5\\\n\\xc1\\x40\\x06\\x14\\xda\\xb1\\xc6\\x86\\xf1\\xa6\\x80\\x8e\\xfd\\x6b\\xb8\\xb4\\\n\\xff\\x00\\x3e\\x10\\x21\\xb5\\x90\\xf0\\xfa\\xd5\\xe4\\x0a\\xca\\x2d\\x3c\\x20\\\n\\x19\\x22\\x0a\\x2a\\x86\\x1d\\x91\\x22\\x6e\\xc0\\xae\\x5c\\x20\\x61\\x91\\x18\\\n\\xc4\\xf6\\x09\\x3d\\x67\\x83\\x85\\x0a\\x80\\x0d\\x71\\x32\\xfb\\xd3\\x83\\xef\\\n\\xc0\\xc0\\x2c\\x7a\\x27\\xa4\\xf9\\xfe\\x7d\\x35\\xfd\\xf1\\x80\\x40\\xb5\\xda\\\n\\x01\\x5d\\x6e\\x06\\xff\\x00\\xe7\\x88\\x83\\x70\\x66\\x30\\xf6\\x4e\\x94\\x2e\\\n\\xf0\\x2e\\x50\\x13\\x0b\\xee\\x36\\x13\\x0a\\x7f\\x1a\\xf3\\xe0\\x48\\xeb\\xa1\\\n\\xba\\x34\\xb2\\xdd\\x38\\xa2\\x77\\xc2\\x44\\x56\\x25\\x0f\\xdb\\xa6\\x1a\\x96\\\n\\x62\\x9e\\x3f\\xc4\\x4a\\x58\\x50\\x89\\xb4\\x0e\\x3d\\xa5\\xfb\\x66\\x93\\x0a\\\n\\x89\\xca\\x9f\\xbd\\xca\\xe6\\x84\\xbc\\x04\\x32\\x3d\\x84\\x98\\x81\\x4d\\x17\\\n\\xdf\\xb7\\x36\\x78\\x9f\\x4c\\xb7\\x23\\xc2\\x7b\\x61\\x1f\\x6f\\xfc\\x9e\\x10\\\n\\x40\\x99\\x82\\x01\\xdf\\x5b\\x0c\\x26\\x85\\xe7\\x57\\x88\\x0c\\x5b\\x69\\xfe\\\n\\xf7\\xfe\\x3e\\x73\\x17\\xdc\\x29\\xd2\\x1f\\x0f\\xb8\\x5c\\xfe\\xbc\\x18\\x02\\\n\\x8a\\xfe\\x3b\\xde\\x6f\\xfe\\xf8\\x61\\x30\\x06\\x60\\xe2\\x9f\\xc5\\xbf\\x93\\\n\\xfa\\xf1\\x01\\x62\\x48\\x15\\xc7\\xd8\\x43\\xec\\x9d\\xef\\x87\\x09\\xec\\x50\\\n\\xdf\\xd7\\xd1\\xdb\\xfd\\x13\\xd0\\x78\\x03\\x51\\x20\\x94\\x2f\\xae\\xa2\\x8b\\\n\\x79\\x8a\\xa2\\x3e\\x26\\x04\\x19\\x0a\\x41\\x80\\xd4\\x93\\xc4\\x5e\\xb4\\x23\\\n\\x58\\xd0\\x23\\xe8\\x24\\x0a\\x8a\\x54\\x4a\\x9e\\x05\\x22\\x7a\\x6d\\x24\\xf8\\\n\\xff\\x00\\xfa\\xfd\\x27\\x19\\x0b\\x05\\x26\\xdf\\x57\\x37\\xda\\x53\\xd5\\x2f\\\n\\x3c\\x4c\\x96\\xac\\x52\\xca\\x99\\x7d\\x50\\x44\\xcd\\x4b\\xbe\\x2e\\xde\\x00\\\n\\x30\\x03\\x8a\\x55\\xe4\\x61\\xf8\\x92\\x78\\x56\\xb9\\x0f\\x69\\x62\\x3d\\x4b\\\n\\x63\\x8b\\x2f\\x1f\\x14\\x16\\xb2\\x38\\x05\\x96\\xe6\\x38\\x4b\\x7e\\x78\\x25\\\n\\x02\\xd5\\xed\\x6f\\xf2\\x68\\x4f\\x7f\\x3d\\x75\\xf0\\x1a\\x18\\xb8\\xb3\\xf6\\\n\\xb6\\xe1\\xe8\\x9f\\xd3\\xe1\\xf9\\x89\\x57\\xb1\\xb1\\x0c\\x18\\x33\\x54\\xfe\\\n\\xa9\\x84\\xa2\\x88\\xe8\\x35\\x4c\\x49\\x16\\x86\\x89\\x07\\x7c\\x20\\x2c\\x08\\\n\\x87\\xfe\\x52\\x51\\xc5\\xae\\x7c\\x67\\x80\\xd0\\x6d\\x7a\\x53\\x8d\\x7e\\x08\\\n\\x61\\xc1\\xe5\\xf2\\xd0\\x22\\x43\\x83\\xaa\\xc1\\x2e\\x12\\x34\\x09\\xfb\\x05\\\n\\x32\\xd0\\xd4\\xdf\\x50\\x02\\x80\\xf4\\xea\\xb1\\x9c\\x9e\\x04\\x40\\x19\\x51\\\n\\xfe\\x40\\xe9\\x13\\xa6\\x2e\\xf0\\x67\\x86\\xa2\\x92\\x2d\\x86\\x63\\x48\\x5d\\\n\\xa7\\x3e\\xbe\\x44\\x82\\x18\\x63\\x4a\\xad\\xfc\\x78\\x27\\xba\\xb8\\x1f\\x18\\\n\\x70\\x30\\x7f\\xa0\\x7c\\x09\\xf6\\x5e\\x9e\\x41\\x46\\xca\\xa0\\x44\\x1e\\x87\\\n\\xbb\\x5a\\x7e\\x37\\xca\\x68\\x00\\x10\\x7d\\x8a\\x67\\xbf\\xf8\\x3b\\x1a\\x78\\\n\\x6e\\x05\\x4a\\xa0\\x3a\\x2e\\xf5\\xe0\\x63\\xd3\\x3b\\xe7\\x00\\x8a\\x92\\x1c\\\n\\x34\\x86\\x4b\\x5e\\xf6\\x0b\\xed\\x3c\\x02\\x42\\x2a\\x66\\x83\\xb0\\x71\\xbc\\\n\\xbd\\xce\\x6f\\x88\\x00\\x95\\x85\\x6f\\xfc\\xec\\xf2\\x7a\\xd1\\x08\\x17\\x05\\\n\\x06\\xa1\\x82\\x0c\\x0b\\xc0\\x00\\xe9\\x20\\x05\\x3a\\x0d\\x15\\xf7\\xd7\\x1f\\\n\\x04\\xbd\\x15\\x80\\x20\\xfd\\x56\\x3e\\x98\\x17\\x3c\\x64\\xab\\xcd\\x7b\\x05\\\n\\xc8\\x4e\\xb0\\xe3\\xd0\\xc8\\x35\\x81\\x42\\x24\\xc3\\x48\\x6b\\x79\\xf2\\xb6\\\n\\x6e\\x22\\xaa\\x0a\\x62\\x3b\\xee\\x3f\\xc1\\x74\\xf0\\xa2\\x50\\xa7\\xa0\\x35\\\n\\x1c\\x50\\x10\\x3d\\x37\\xe1\\x04\\x2a\\xed\\xf1\\x95\\x91\\xef\\x6a\\xb0\\xf0\\\n\\x51\\x25\\xb0\\x19\\x4c\\x56\\x37\\xb7\\x7d\\x4e\\xaf\\x90\\x46\\x14\\xc4\\xd5\\\n\\x97\\x28\\x85\\xf7\\xfd\\xd0\\xf1\\xfd\\xec\\x91\\x00\\xe6\\x80\\x35\\x2b\\xe8\\\n\\x2b\\xe3\\x09\\x10\\xb8\\x43\\xa9\\x39\\xa6\\xb2\\xfc\\xaf\\x55\\x1a\\x40\\xca\\\n\\x62\\x04\\x21\\x4d\\xca\\x35\\x61\\x02\\xf6\\xa8\\xc9\\x4e\\x20\\x3d\\x1e\\xa2\\\n\\x3d\\xf0\\xbc\\x29\\xfa\\x82\\x9d\\x79\\xa6\\x9e\\x4a\\xc3\\xc5\\xf8\\x0e\\x50\\\n\\x36\\x1b\\x77\\x8d\\xe9\\x77\\xf9\\xa9\\x60\\xa0\\x01\\xc0\\x31\\x93\\xbe\\xcb\\\n\\x03\\xf3\\xca\\xed\\x83\\x6b\\xdd\\x44\\xf9\\x4d\\xe5\\x7f\\x69\\x2d\\x83\\x53\\\n\\x58\\x3a\\xee\\x4e\\x64\\x8d\\xc9\\x1c\\x9f\\x2a\\x97\\x2f\\x67\\xa5\\xcf\\xf3\\\n\\xef\\xc1\\xa4\\x6d\\x67\\x43\\x9f\\x1b\\xb9\\x7d\\x63\\x57\\x62\\x87\\x6b\\x7a\\\n\\x02\\x83\\x21\\x70\\xcf\\x9f\\x97\\xc2\\x20\\x35\\x20\\xdb\\xa1\\xfb\\xd1\\xc9\\\n\\xfa\\xe7\\x8c\\x40\\xb9\\x52\\x9d\\x39\\x5c\\x46\\xca\\x63\\x55\\x1a\\x38\\x06\\\n\\x55\\x71\\xd0\\xcc\\xbf\\x0e\\x6b\\xd6\\x79\\xb4\\xc4\\xd4\\x00\\xfa\\xba\\x01\\\n\\xc6\\xfc\\x9f\\xd4\\x2e\\x23\\x36\\x7c\\x0e\\x7e\\x4f\\x7b\\x8f\\xd3\\xc4\\x8c\\\n\\x28\\x68\\x09\\x60\\x50\\xef\\x3b\\xe8\\xe1\\xb4\\x62\\x14\\x30\\x51\\xc0\\x27\\\n\\x11\\x06\\xca\\x4d\\x20\\x83\\xa8\\x1e\\x94\\xa2\\xc4\\x63\\x4c\\xe0\\x99\\x47\\\n\\xd5\\xf4\\x26\\xec\\x2f\\xba\\xfe\\xed\\x3f\\xac\\xf2\\xc8\\xc8\\x0f\\xfb\\x1f\\\n\\x8f\\xef\\x09\\xd3\\xc4\\x2e\\x28\\x2f\\xdc\\x1f\\xf3\\x83\\x9f\\xc9\\x9e\\x1d\\\n\\x7e\\xee\\x31\\x7f\\x9f\\xee\\xf3\\xfd\\x6f\\x80\\x29\\x9d\\x1f\\xe3\\x3f\\x9f\\\n\\xed\\xef\\xf5\\xe4\\xb0\\xa8\\x05\\x15\\xb7\\x18\\x54\\x02\\xa1\\x5d\\x41\\xc7\\\n\\x32\\xd2\\x71\\x98\\x15\\xa2\\x20\\x61\\x51\\x1d\\xf1\\x32\\xa5\\x58\\xb2\\x88\\\n\\x62\\x89\\x08\\x0b\\x10\\xf0\\x8c\\x70\\x11\\x92\\x36\\xb2\\xe2\\x24\\x3b\\x52\\\n\\x51\\x65\\x67\\xc0\\x0c\\x21\\x85\\x51\\x25\\xed\\x2c\\x10\\x81\\x72\\xd0\\x82\\\n\\x55\\xa0\\x93\\xeb\\x8e\\x09\\x66\\x38\\x5c\\xe8\\x82\\x09\\x7f\\x88\\xe0\\xa2\\\n\\x90\\xfc\\x64\\xc4\\xa4\\xe9\\x54\\x2a\\xad\\x42\\x26\\xfa\\xd9\\x21\\x93\\x1c\\\n\\x21\\xe0\\x2d\\x3c\\x7d\\x1a\\x0e\\x7a\\x3c\\xd7\\x31\\x25\\xd0\\xbd\\xf7\\xd7\\\n\\x88\\x1f\\xdc\\xc3\\xd8\\x9a\\x7c\\xcf\\x8f\\x0f\\xac\\xf2\\x90\\x30\\x20\\x08\\\n\\x00\\x95\\x26\\x03\\x56\\x9e\\xc6\\x0e\\x79\\x13\\x94\\x4b\\x57\\x9d\\x1f\\x7d\\\n\\x3a\\x97\\x3d\\xdb\\x36\\x02\\x9d\\x7e\\x0c\\xeb\\x8b\\x81\\xf9\\xd5\\x1f\\x2e\\\n\\x3b\\xdf\\xbe\\xc2\\xb9\\x75\\x24\\x53\\x12\\x86\\xc7\\xc0\\x44\\xfd\\x88\\x87\\\n\\x32\\xde\\xff\\x00\\x2b\\xfc\\x7b\\x1f\\x11\\xae\\xa1\\x8a\\x03\\x8c\\xee\\x63\\\n\\x7f\\xd1\\x3d\\xf9\\xab\\x32\\x3e\\xa7\\xc1\\xf5\\x6b\\xf3\\xd6\\x38\\x0f\\x83\\\n\\x6d\\x01\\xaa\\xdb\\x16\\xa5\\x7d\\x2f\\x03\\xfd\\xbc\\xc0\\xd5\\x8a\\x99\\x5c\\\n\\xdd\\x6e\\x00\\xfc\\x9b\\x7c\\xb6\\x52\\xda\\x84\\x84\\x00\\x2f\\x6a\\x20\\x51\\\n\\x54\\x4c\\x18\\x72\\x35\\xf8\\xe8\\xa7\\xdf\\xa4\\x5f\\x4d\\xb3\\xc7\\xc0\\x85\\\n\\x7e\\x1d\\x50\\xc9\\x80\\x17\\x8f\\xfc\\x06\\x46\\x98\\x4e\\x80\\x03\\xab\\x50\\\n\\xce\\xe3\\x84\\xd8\\x3a\\x8e\\xc0\\x6f\\x08\\xf4\\x6a\\x6a\\x61\\x99\\x5b\\x7c\\\n\\xf7\\xd8\\x5a\\x18\\x5d\\xd4\\x48\\x7a\\xdf\\xae\\xca\\xf8\\x40\\x9c\\xf5\\xad\\\n\\x9e\\xa9\\x9f\\xf5\\xe2\\x3f\\x3f\\xba\\x7f\\xef\\x88\\xe2\\x00\\x15\\x85\\x16\\\n\\x12\\xd0\\x29\\x43\\x06\\xa1\\x0f\\x2c\\xa9\\x8b\\x00\\xea\\x7a\\xdf\\xcc\\xe7\\\n\\x80\\xbe\\x68\\xd9\\xa8\\xdb\\xaa\\x05\\x60\\x50\\x7e\\x5c\\x84\\x80\\x44\\x0c\\\n\\xc4\\x62\\x5c\\xa5\\xf5\\x62\\x79\\xef\\x09\\x61\\x31\\xbc\\x4c\\x1d\\xfe\\x4f\\\n\\xf9\\x7d\\x24\\x31\\x12\\xf0\\x44\\x3d\\xee\\x87\\xab\\x09\\xe1\\xac\\x55\\x74\\\n\\x56\\x74\\x66\\xc0\\xe5\\x7e\\x25\\xcf\\x1f\\xb6\\x6c\\xac\\x06\\x96\\x09\\xf1\\\n\\xc3\\x57\\x3c\\x54\\xb3\\x28\\x5a\\xd1\\xc8\\x18\\x02\\x20\\x7c\\x0d\\xe1\\x10\\\n\\x60\\x41\\xd6\\xea\\x49\\xfe\\x2d\\xf1\\xe1\\x0b\\x43\\x58\\x04\\x75\\x9d\\x11\\\n\\xd6\\xf2\\xf9\\xed\\x07\\x4a\\x79\\x16\\x89\\x88\\x8f\\x5a\\xe0\\x18\\x5f\\x88\\\n\\x79\\x24\\x56\\x78\\x84\\x75\\x50\\x50\\x16\\x28\\x01\\x15\\x05\\x13\\x0b\\xcc\\\n\\x59\\x3c\\x38\\x9b\\xab\\x60\\x07\\x58\\x02\\xa3\\x28\\x2e\\x5e\\x0b\\xa2\\x84\\\n\\x74\\x47\\x2a\\xaa\\xed\\x1d\\x6b\\xfe\\x55\\xb3\\x25\\x14\\xeb\\x12\\xba\\x67\\\n\\xea\\x7c\\xf1\\x8d\\x28\\x4a\\xa2\\x6f\\x0c\\x7a\\x96\\x72\\xd5\\xbe\\x3a\\x1a\\\n\\x4f\\xa4\\xfd\\x55\\xf5\\x25\\xd7\\x69\\x9e\\x07\\x80\\x6d\\xa9\\x02\\x0f\\xe2\\\n\\x99\\x74\\x99\\xb9\\xe2\\x80\\x45\\x50\\x2a\\xe9\\x55\\xe1\\x36\\x5b\\xb6\\xf9\\\n\\x77\\x32\\x93\\x02\\x20\\xc4\\x22\\x18\\x4d\\xd3\\xdc\\x5c\\xa9\\x08\\x88\\x04\\\n\\x44\\x90\\x35\\xbd\\x9f\\x82\\xb6\\x14\\x01\\x99\\x82\\x99\\x01\\x18\\x06\\x3c\\\n\\x65\\x3a\\x2e\\x88\\x58\\xc0\\x8a\\xe1\\xa2\\xd7\\x4f\\x0d\\x71\\x88\\x57\\x4f\\\n\\xe7\\x34\\x73\\x7f\\x53\\x91\\xf0\\x44\\x18\\x0d\\x73\\x30\\x07\\x3d\\x4b\\xea\\\n\\xbf\\xc4\\x18\\x2b\\xe6\\xe8\\xf2\\xe0\\x19\\x02\\x2a\\x84\\xfd\\x90\\x62\\xda\\\n\\x93\\x04\\x10\\x58\\x00\\x0c\\x6d\\xa7\\xc8\\x44\\x0b\\xc0\\x1a\\xbc\\x83\\xee\\\n\\xfa\\xf0\\x2c\\x0e\\x75\\xfe\\x15\\xe2\\xa7\\xa3\\x5f\\x46\\xbe\\x50\\x25\\x4c\\\n\\x18\\x7b\\x3e\\xdb\\x4f\\x43\\xcf\\xcf\\x53\\x6d\\x31\\x42\\x96\\x73\\x5e\\xbf\\\n\\x17\\xa2\\x77\\xc1\\x04\\x20\\xa8\\xb8\\x8b\\x4e\\xdc\\xfd\\x45\\x21\\xcd\\xa1\\\n\\x4b\\x06\\xe4\\xe1\\x6f\\xd0\\xa4\\x26\\xa1\\x32\\x79\\xc0\\xad\\x6a\\xc0\\xb6\\\n\\xdc\\x24\\xd3\\x4c\\x8e\\x83\\x80\\x0e\\x80\\x8b\\x5e\\x85\\x7a\\xd9\\x88\\xc8\\\n\\xa0\\x90\\xc1\\x51\\x03\\x0a\\x46\\x8c\\x88\\xf8\\x99\\x62\\x80\\x48\\x16\\x69\\\n\\x94\\x91\\xe8\\x71\\x20\\xd9\\xef\\x65\\x49\\x2b\\x3b\\x58\\x4b\\x41\\xe7\\x96\\\n\\xc1\\x4b\\x34\\x5d\\x02\\xee\\x84\\x54\\xdf\\xe2\\x78\\x1f\\x35\\x27\\x79\\xde\\\n\\xaa\\x8b\\xef\\xdf\\xe8\\xb6\\x11\\x54\\x94\\x0a\\xdd\\x29\\x7f\\x47\\x68\\x93\\\n\\xc2\\x48\\x05\\x16\\x86\\xa0\\xc8\\x61\\xc2\\xb5\\xaf\\x91\\x5c\\x0e\\x15\\x71\\\n\\x91\\x4a\\xfa\\xca\\xcd\\xe4\\x2d\\x30\\xaf\\x0c\\x58\\x63\\x9f\\xc3\\xef\\x7d\\\n\\x5f\\x13\\x92\\x29\\x64\\x2f\\x13\\x44\\xff\\x00\\x27\\xf8\\xde\\x94\\x60\\xa2\\\n\\xb3\\xb3\\x25\\x2b\\xfd\\x71\\xdf\\xdf\\x14\\xb1\\x8a\\xa0\\x74\\xeb\\x1d\\x36\\\n\\xf5\\xab\\xf4\\x5b\\xb8\\x2c\\x15\\x09\\xef\\x07\\x8e\\x58\\xe3\\xf3\\x3c\\x6e\\\n\\x94\\x47\\x08\\xf8\\x65\\x01\\x73\\xf9\\xea\\xf8\\x50\\x96\\xae\\xa1\\x46\\xf5\\\n\\x64\\x74\\xaa\\x3d\\x39\\xe0\\x4b\\x64\\x87\\x40\\x48\\x7b\\x04\\x49\\xd4\\xc6\\\n\\xf4\\xa7\\x86\\xb9\\x00\\xb8\\x16\\x2c\\x73\\x72\\xb3\\x9a\\xf3\\x3c\\x15\\x47\\\n\\x07\\x23\\x16\\x7b\\x9f\\xcb\\x96\\x18\\xe7\\x98\\x6c\\x95\\x29\\x40\\xd4\\x94\\\n\\x05\\x27\\xbe\\xa8\\xa0\\x89\\x11\\x95\\x2c\\x1c\\x36\\x90\\xef\\x09\\xb9\\x38\\\n\\x27\\x03\\x57\\x97\\x65\\x7b\\xe9\\x5c\\xc8\\x4f\\xcf\\x0a\\x26\\xa2\\x70\\x98\\\n\\xd9\\x57\\x72\\xf7\\xdd\\xd7\\x7c\\xa5\\x35\\x34\\xb5\\xb5\\xba\\x8f\\xa0\\xf7\\\n\\xdd\\x30\\x29\\x59\\xa1\\x94\\x11\\xd7\\x00\\x37\\x39\\xff\\x00\\xe3\\xe3\\xe0\\\n\\x12\\x82\\x4b\\x31\\x5d\\x82\\x19\\x26\\x28\\xd7\\xa3\\x1c\\xc7\\xb2\\x7e\\x7c\\\n\\x33\\xf5\\xbb\\x96\\x14\\x4d\\x9c\\x35\\x50\\xf5\\x5b\\xea\\x2c\\xc8\\xd3\\xc0\\\n\\xeb\\xc9\\xa9\\x00\\x21\\x51\\x8c\\xfb\\x6f\\xcf\\x04\\x99\\xd0\\x0a\\x19\\x38\\\n\\x54\\x93\\x5d\\x40\\x57\\x0f\\x14\\xec\\x57\\x75\\x9e\\xa2\\xc0\\xc6\\x4d\\xef\\\n\\x79\\xe0\\x02\\x02\\x05\\x01\\x04\\x04\\x3a\\xe3\\x9e\\xdc\\xf8\\x73\\x9b\\x2f\\\n\\x6e\\x6b\\xd0\\x24\\x3e\\x1e\\xa4\\xba\\xa0\\x1d\\x45\\xb0\\x52\\x67\\x1c\\x3d\\\n\\xef\\xd6\\x71\\xd4\\x8a\\x04\\x58\\x22\\x44\\x39\\x70\\xf5\\x33\\x06\\xfb\\x9d\\\n\\x84\\x55\\x6a\\xc3\\x4d\\xa1\\x8f\\xab\\x14\\x54\\x9c\\x37\\x82\\x44\\xa2\\x54\\\n\\xd4\\x9f\\x54\\x25\\xf1\\x15\\xb5\\x02\\x14\\xa5\\xa2\\x59\\x82\\xba\\xeb\\xe2\\\n\\xcc\\x09\\xac\\x44\\x2a\\xa2\\x00\\x35\\x01\\x43\\x7c\\x1f\\x4f\\x48\\x38\\x3b\\\n\\xc5\\x12\\x05\\x1a\\x40\\x01\\x67\\xc0\\x82\\x14\\x51\\x44\\x0d\\x41\\x51\\x3c\\\n\\x92\\x93\\xd6\\x1f\\x00\\x68\\x1e\\x90\\xd4\\xf0\\x50\\xf5\\x8c\\x42\\xe2\\x20\\\n\\xab\\x1c\\x27\\x0a\\x7a\\x93\\x5a\\x54\\x8c\\x5e\\x9d\\xbc\\x1d\\x7d\\xd6\\x1e\\\n\\x3c\\xc7\\x40\\xa4\\x96\\xf7\\x18\\x28\\x86\\xb4\\xdf\\x47\\x90\\xd4\\x1e\\x60\\\n\\x92\\x7b\\x4f\\xee\\x6a\\x14\\x4b\\xe5\\xe7\\x61\\xd0\\x88\\x46\\x93\\x37\\xf8\\\n\\xde\\x25\\x7c\\xae\\x62\\xc7\\xb8\\x29\\x3a\\x94\\x21\\xfe\\x93\\xc8\\x66\\x58\\\n\\x12\\x3d\\xbd\\x19\\xd9\\xeb\\x96\\x21\\x07\\x28\\x82\\xb7\\x0f\\x73\\xe0\\x4e\\\n\\xc1\\x94\\xf0\\x91\\x13\\x15\\x59\\x27\\xd1\\x03\\x48\\x2f\\x80\\x59\\x48\\x04\\\n\\x41\\x1e\\xc2\\x27\\x5a\\x76\\x78\\x8a\\xc1\\xc9\\x00\\x77\\xf4\\xd7\\xe7\\xd9\\\n\\x64\\xf0\\x22\\x62\\x0a\\xe0\\x24\\xf9\\xd1\\x84\\xc6\\xf7\\xf4\\x95\\xa5\\x08\\\n\\xc4\\xa4\\x12\\x70\\x28\\x69\\x7e\\x1a\\x31\\xc6\\x9e\\x81\\xfe\\x42\\xee\\x72\\\n\\x7b\\x77\\xc2\\xa5\\x22\\x61\\x02\\x37\\xa8\\xe4\\x3f\\x9f\\xe3\\xc5\\xe8\\xc1\\\n\\x2b\\x8f\\xfa\\x39\\x86\\x7a\\xbf\\x9e\\x76\\xc9\\x08\\x42\\x99\\xfa\\x08\\xb6\\\n\\x59\\xdf\\x01\\x86\\xf5\\x09\\x40\\x8d\\xf9\\xdf\\x4b\\xf7\\x0f\\x27\\x20\\x7a\\\n\\xfc\\x62\\x7d\\x9a\\x07\\x31\\xf7\\x9e\\x09\\xc5\\x1b\\x2b\\x46\\xa8\\x84\\xe8\\\n\\xa4\\xa1\\x6b\\x7e\\x35\\x51\\x27\\xc6\\xcd\\x69\\x4d\\x5a\\xf8\\x6e\\x90\\x30\\\n\\x82\\x39\\x89\\x48\\xde\\xdf\\x9c\\x48\\x89\\xb0\\xf4\\x57\\x4c\\x1b\\x02\\xc5\\\n\\xc8\\x9e\\xbc\\xa2\\x16\\xda\\x74\\x57\\x41\\x85\\xc9\\x33\\xe0\\xe7\\x80\\xad\\\n\\x30\\x08\\x3c\\x5c\\x14\\xb9\\xd8\\xdf\\xf4\\xf8\\x68\\xa9\\x22\\xdd\\x1f\\x4c\\\n\\x84\\x6f\\xb4\\xfe\\xfc\\x52\\x3d\\xb2\\x00\\xc7\\xa1\\xfa\\x31\\xf6\\xcf\\x31\\\n\\xf8\\xa3\\x88\\x45\\x56\\x24\\x43\\xe8\\x7e\\x3f\\xc7\\x86\\xa5\\x1d\\x2d\\x4a\\\n\\x88\\x1a\\x36\\xc6\\x9a\\xc0\\x43\\x45\\x3a\\xb1\\x65\\x06\\x29\\x06\\x13\\x2d\\\n\\xbb\\xf8\\x17\\xc0\\x02\\x42\\x34\\x5b\\x5f\\xc6\\xff\\x00\\xbd\\x3d\\x3e\\x75\\\n\\xc7\\x81\\x30\\xf5\\x17\\x2d\\xe0\\xa1\\xce\\x93\\x10\\x24\\xa2\\xa0\\x1a\\x3c\\\n\\xa2\\x0c\\xee\\x36\\xf9\\x12\\x52\\x17\\x8e\\xeb\\xac\\x0b\\xa4\\x1e\\x00\\x1e\\\n\\x9a\\xe7\\xa7\\x77\\x3f\\x03\\x53\\x0f\\x4d\\x4b\\xfb\\x3c\\x38\\xab\\x40\\x84\\\n\\x06\\xc3\\x9d\\x76\\xfa\\x1b\\xe5\\x0a\\xb5\\x0f\\x43\\xda\\x54\\x5e\\xe5\\xe4\\\n\\x3e\\xa9\\x70\\xad\\x28\\x00\\x60\\x80\\x24\\xfe\\x7f\\x83\\xd8\\xe8\\xe5\\x19\\\n\\x1e\\xe3\\x9b\\xbc\\x9f\\xe0\\x85\\xc5\\x58\\x1d\\x28\\x68\\xd2\\xbb\\x71\\xa8\\\n\\xcd\\x00\\xdf\\x06\\xa4\\x9d\\xc8\\x0a\\xb0\\xb3\\x71\\xa3\\x3e\\x2f\\x93\\x61\\\n\\x9a\\x08\\xa8\\x74\\x2e\\x16\\x18\\xc1\\xd3\\xe0\\x01\\xa8\\x27\\xea\\xa1\\x98\\\n\\x9e\\xac\\x3a\\xf7\\xc0\\x49\\xbc\\xc1\\x62\\x3e\\xdb\\x4f\\x7d\\x8e\\x98\\x9e\\\n\\x04\\x8a\\x00\\x6c\\x2f\\x42\\x8f\\xe7\\x76\\xfe\\xbe\\x7b\\x05\\xcf\\x4b\\xa2\\\n\\xca\\xff\\x00\\x1d\\x9f\\xe3\\x9e\\x37\\x06\\xda\\x2a\\x03\\xc4\\x20\\x37\\xa7\\\n\\x69\\xf2\\xcd\\xf0\\x58\\x06\\xfa\\x22\\x7a\\xd4\\xef\\xa9\\xbf\\xcb\\xe6\\xb5\\\n\\x84\\x21\\xa8\\x15\\x1a\\x15\\x85\\x29\\x9e\\x11\\x18\\xf8\\x14\\x2e\\x28\\x55\\\n\\x20\\xb5\\x11\\x93\\xc4\\x71\\x73\\x20\\xd1\\x02\\x1a\\x52\\xc8\\x06\\xb0\\x7c\\\n\\xd5\\x02\\x9c\\x20\\xb2\\x9b\\x4f\\x78\\xd9\\xe8\\x9e\\x14\\x17\\x05\\xd4\\x81\\\n\\xe9\\x60\\x4c\\x5f\\x6c\\xf5\\xe1\\x70\\xc8\\x70\\x40\\x93\\x17\\x40\\x0f\\xa0\\\n\\xa6\\x19\\x94\\xc4\\x31\\x31\\x0a\\x3c\\x6e\\xf3\\xdf\\x98\\xef\\x74\\x19\\x03\\\n\\xd4\\xef\\x6a\\x26\\xa6\\x6e\\x8b\\xcc\\x15\\xdb\\x91\\x9a\\x22\\xaf\\x5a\\xf4\\\n\\x73\\x9e\\x5c\\x2c\\x40\\x69\\x5e\\x2c\\xa1\\x00\\xd0\\x07\\xfa\\xf3\\xa6\\x45\\\n\\x82\\x3b\\x2d\\x22\\x6a\\x92\\x8b\\x8a\\x00\\x57\\x4f\\x6c\\xcc\\x42\\x22\\x18\\\n\\x5d\\xaa\\xd3\\xc9\\x39\\x5c\\xa1\\xb3\\xb0\\x8d\\x06\\x54\\x3e\\x44\\x51\\x60\\\n\\x32\\x6c\\x2a\\x2e\\x41\\xa3\\x61\\xe3\\x50\\xa6\\x46\\x11\\x46\\x49\\xb6\\x0a\\\n\\x6d\\xa6\\x78\\xd4\\x5d\\x02\\xaf\\x29\\xdf\\xeb\\x37\\xdb\\xd7\\xc4\\x27\\x23\\\n\\xa9\\xc3\\xd5\\x1e\\x23\\x4b\\x1f\\xf7\\x1a\\x1b\\x2a\\x00\\x00\\x55\\xf4\\x06\\\n\\x39\\x99\\xb0\\xe3\\x0d\\x9c\\x10\\x51\\x8a\\xd1\\xd6\\x80\\xfe\\x7b\\x3c\\x11\\\n\\x6d\\x6c\\xab\\x3d\\xcb\\x8c\\xbb\\xfc\\x5f\\x6d\\x05\\x88\\x2b\\x78\\x07\\x75\\\n\\x44\\x2d\\xc8\\x1b\\xf6\\x0c\\x08\\xc9\\x91\\xe8\\x2b\\x94\\x37\\x16\\x27\\xe1\\\n\\xe4\\xb9\\xce\\xa1\\x43\\xf2\\x33\\xdc\\x5e\\xef\\xdf\\x30\\xdc\\x5b\\x06\\x42\\\n\\x8b\\x71\\x62\\x53\\xdf\\x95\\xd1\\xa2\\x4c\\x11\\x9b\\xff\\x00\\xc7\\x1f\\x78\\\n\\xbe\\x12\\x70\\xc8\\xe2\\xb8\\x87\\xa6\\xdd\\xfc\\x18\\xf9\\x5a\\x20\\xd2\\x85\\\n\\x17\\x37\\xd0\\x9f\\x3f\\x87\\x1f\\x27\\x6c\\x14\\x1b\\x5a\\x39\\x3d\\x1f\\x92\\\n\\x4c\\x9e\\x48\\x82\\x19\\xea\\x8f\\x5b\\x16\\xb0\\xf7\\x69\\x93\\xc6\\x14\\x17\\\n\\x19\\x75\\x9e\\xb0\\x84\\xd9\\xeb\\x7d\\xd7\\x80\\x22\\x7a\\xaa\\xdd\\x76\\x92\\\n\\x19\\x86\\xce\\xd7\\xaa\\x0d\\x31\\xe4\\x7d\\x99\\xfd\\xa5\\x7d\\x1b\\x9e\\x10\\\n\\x3c\\xe0\\xd7\\x88\\x6d\\x3f\\x73\\xf8\\x3f\\x29\\x00\\x40\\x65\\x70\\x76\\x27\\\n\\xc1\\x3b\\xf8\\xcb\\xe3\\xe5\\x50\\x00\\xab\\x1a\\x44\\x2b\\x07\\x34\\x92\\x68\\\n\\xa0\\x20\\xd1\\x4e\\xc7\\xe0\\x86\\xa8\\xfb\\xe7\\x1f\\x1a\\x21\\x49\\xd5\\xc8\\\n\\x14\\x1a\\xc3\\x3b\\xa4\\xb8\\xf0\\x74\\x81\\x2b\\x33\\x84\\x8c\\x6f\\xae\\xef\\\n\\x7d\\xbe\\x56\\x02\\xaa\\x03\\x4a\\x44\\x09\\x7a\\x7f\\x9d\\x5d\\xf1\\xd6\\x67\\\n\\x2b\\x4d\\xc3\\x69\\xfc\\x9a\\x0c\\xf7\\xe1\\x54\\x28\\x69\\x60\\x81\\x03\\x78\\\n\\xfc\\xe7\\x40\\xf3\\x48\\xb0\\x1c\\x23\\xf4\\x0c\\x1a\\x53\\xdb\\xf8\\x40\\x50\\\n\\x09\\x58\\x44\\x14\\x81\\x04\\xda\\x5e\\xa6\\xa5\\x11\\x62\\x29\\x81\\x8c\\x3e\\\n\\xc4\\x2c\\x4f\\x72\\x2b\\x0b\\x09\\x4d\\x1a\\x6d\\x30\\x12\\x4e\\x1a\\x22\\x02\\\n\\x95\\x9b\\x4a\\xc8\\x2c\\x3d\\x83\\x6f\\xda\\x33\\x7c\\x63\\xdd\\x09\\xe8\\xa9\\\n\\x0a\\x85\\x04\\x2a\\xbc\\x2f\\x94\\x44\\x86\\xa5\\x03\\x2e\\xe3\\x55\\xe3\\xeb\\\n\\x7f\\x2a\\x4e\\x9e\\x19\\xd9\\x0a\\xfe\\xbb\\x53\\xab\\x3d\\x79\\x54\\x80\\xd2\\\n\\x74\\xff\\x00\\x06\\xf3\\xd7\\xab\\xca\\x78\\x55\\x46\\x04\\x0d\\x27\\x11\\x8b\\\n\\xab\\x87\\xd9\\x3c\\x4e\\xfe\\xb4\\x1e\\x8a\\x8d\\x14\\xde\\x3b\\x86\\xef\\x8b\\\n\\xfb\\x84\\x5b\\x2a\\x2c\\x06\\x8b\\x8a\\x04\\xa3\\xd5\\x47\\x72\\x12\\xb6\\x24\\\n\\xfe\\x73\\x8a\\xa7\\xa8\\xf2\\x5b\\xa1\\x95\\xf1\\x43\\xee\\x14\\xab\\x0c\\x22\\\n\\x98\\xf0\\x3d\\xb1\\x81\\x38\\x5e\\x84\\xf7\\x7d\\x1e\\xb9\\x8e\\x8d\\xd3\\x37\\\n\\xfd\\x3b\\x43\\xdd\\x9f\\xe0\\xeb\\x70\\x62\\xba\\xae\\x57\\xfd\\xec\\x0a\\x07\\\n\\xa7\\xa1\\xa0\\x20\\x13\\xd9\\xd7\\xe7\\xd3\\xfc\\x7a\\x1f\\x09\\x8a\\x89\\x08\\\n\\xa5\\x28\\xbf\\x3d\\x5e\\xf9\\xe9\\xf8\\x1f\\xf0\\x9f\\x7e\\xfc\\xfa\\xfa\\xf1\\\n\\x21\\x30\\x6d\\xf5\\x1a\\x24\\x5f\\xda\\x5a\\x66\\x5b\\x1d\\x6a\\x7d\\xa5\\x2f\\\n\\xf8\\xcf\\xf8\\xf9\\x3c\\x7a\\x73\\xc4\\x03\\x8a\\x61\\x26\\x9b\\xa8\\x18\\x6e\\\n\\x79\\xb7\\x56\\x38\\x81\\xcf\\x08\\x87\\x17\\xa0\\xf0\\x9c\\x2b\\x3d\\x03\\x55\\\n\\x8f\\x45\\x04\\x84\\x1e\\x2c\\x2a\\x6a\\xb2\\xa0\\x15\\x80\\x42\\x4c\\x43\\x68\\\n\\x31\\x58\\x41\\x1a\\xf7\\xd2\\x42\\x14\\xe4\\x3a\\xdf\\x1b\\x00\\x45\\x2d\\xeb\\\n\\x38\\xa8\\x51\\x20\\xaa\\xa6\\x13\\x52\\x19\\x05\\x55\\xc6\\x25\\xc0\\x97\\xd0\\\n\\xf9\\x18\\xbb\\xa3\\xa0\\xbd\\xbe\\x09\\xbc\\x73\\xd7\\x95\\xd1\\x46\\x4a\\x81\\\n\\xa4\\x55\\x05\\xce\\x72\\xe7\\x8f\\xf1\\x23\\xa0\\x59\\x41\\x5e\\x38\\xa7\\x70\\\n\\x95\\x1d\\x24\\x80\\x10\\x28\\x2c\\x15\\x05\\x82\\xd7\\xca\\xb4\\xe3\\x38\\x29\\\n\\x9a\\x52\\x80\\x90\\x40\\x03\\xc7\\x8d\\x12\\x73\\xd1\\x0a\\x88\\x90\\x25\\xd0\\\n\\xf1\\x45\\x2c\\x1e\\x0c\\x42\\x98\\x02\\xa8\\x95\\x1e\\x56\\xd1\\x49\\x7d\\x28\\\n\\x1b\\xe9\\x6f\\xd7\\x1d\\x3d\\x04\\x39\\x83\\x72\\x72\\xd4\\xa7\\xbb\\x76\\x48\\\n\\x07\\x57\\xc3\\x00\\x8e\\xf0\\x0a\\x1e\\xf2\\x37\\x9f\\x47\\xe9\\xe1\\x86\\x52\\\n\\x81\\xe1\\xa1\\x1e\\x9b\\xca\\xff\\x00\\x34\\xd0\\xd2\\xd5\\x89\\xa4\\xa7\\xf1\\\n\\x97\\x58\\x91\\xfd\\x8c\\x00\\xfe\\x4d\\x60\\x43\\x57\\x7d\\xff\\x00\\xfb\\xe1\\\n\\x99\\xdd\\xbc\\x4a\\xc5\\x3f\\x5c\\x2c\\xcf\\x48\\x9e\\x2f\\xab\\x8b\\x8e\\xa2\\\n\\x95\\xb8\\x51\\xfe\\x3d\\x59\\xe5\\x03\\xc5\\x4f\\xa1\\xe8\\x73\\xa8\\xfa\\x2d\\\n\\xfa\\x78\\x06\\x8c\\xb1\\xee\\xf4\\x0b\\xf5\\x6c\\x86\\x7a\\xf3\\x35\\x20\\x2a\\\n\\x23\\xaa\\x7f\\x1c\\xf7\\xfd\\xff\\x00\\x84\\x46\\x7c\\xd9\\x22\\x44\\xb0\\x3e\\\n\\x6c\\x87\\xbf\\x9f\\x51\\xd3\\x5e\\xc0\\xe3\\x13\\x0f\\xf9\\xdf\\xa0\\x14\\xb1\\\n\\x3f\\xb9\\xbf\\xfc\\x5f\\xa0\\xf0\\x53\\x7a\\x53\\x53\\x8b\\x9d\\xfb\\xbd\\x71\\\n\\x4f\\x67\\x84\\xef\\x19\\x5e\\xaa\\x13\\xe2\\x32\\xfa\\x32\\xb4\\xdc\\x07\\x4b\\\n\\xcb\\x70\\x9c\\xbe\\xa8\\xd9\\xc1\\xab\\xb1\\x42\\x03\\xbd\\x2c\\xea\\x32\\xe5\\\n\\x9d\\x34\\xb5\\xb2\\x02\\x50\\x20\\x57\\xf3\\x03\\x3d\\x9a\\x34\\xb3\\xed\\x37\\\n\\xc1\\xd2\\x1a\\x03\\x8f\\x13\\xf6\\x81\\xa7\\x36\\xaf\\xb4\\x9b\\x3b\\x60\\x03\\\n\\xa2\\x7a\\x7d\\x11\\xbf\\xa9\\x2f\\x3c\\xcc\\x15\\xe8\\x1a\\xeb\\x20\\xe2\\xf4\\\n\\xff\\x00\\x25\\xa7\\x87\\x4d\\x83\\xa7\\xf4\\x38\\x34\\x35\\x73\\xef\\xf1\\xe2\\\n\\x4c\\x54\\xd7\\x72\\xb0\\xa3\\x1b\\xc9\\x1a\\x65\\x3b\\xe0\\xa0\\xb0\\x61\\x5e\\\n\\x8c\\xb3\\xdf\\x3d\\xc5\\xbc\\xfd\\xf1\\x13\\x2c\\x3f\\xa3\\x2b\\x94\\xec\\xe5\\\n\\xe4\\x77\\x9e\\x00\\xa4\\x6a\\xe9\\xd0\\x5e\\x1d\\x13\\x41\\x87\\xeb\\xe5\\xe0\\\n\\xc8\\x40\\x3d\\x87\\xce\\x17\\x7f\\xa9\\xbc\\xf0\\x4b\\x10\\x1e\\x1a\\x8a\\x7b\\\n\\x0a\\xfc\\xd3\\xba\\x2d\\xf1\\xc8\\x00\\xd0\\xfa\\x82\\x2c\\xcd\\x8f\\xff\\x00\\\n\\xbe\\x09\\x50\\x22\\xb2\\x03\\xa4\\xc8\\x4d\\x2d\\x8c\\x27\\x83\\xbe\\xaa\\x1c\\\n\\x17\\x46\\x14\\x08\\x95\\x9c\\x4d\\x5f\\x09\\x74\\x9d\\x96\\x8a\\x15\\xa8\\x89\\\n\\x04\\x34\\xcb\\x7c\\x5d\\xc9\\xcc\\x5f\\x6b\\xb9\\xb0\\x3d\\x21\\x1f\\x97\\x26\\\n\\x86\\xa7\\xa1\\x0b\\x82\\x1e\\xd6\\x42\\xaa\\x95\\x67\\x84\\x92\\x90\\x11\\x7a\\\n\\x88\\x4e\\x98\\x03\\x86\\x52\\xaa\\x91\\x02\\x2a\\xf5\\xb0\\x19\\xa7\\xd0\\x57\\\n\\x3a\\x0f\\xbd\\xa4\\x15\\x51\\xc6\\x36\\xa2\\xa3\\x36\\xe7\\xea\\xe3\\x48\\xa5\\\n\\xb3\\x11\\x90\\x6d\\xe9\\x6b\\x2c\\x13\\xa3\\x8e\\xc9\\x09\\xd3\\x57\\x68\\x1b\\\n\\xa2\\x0c\\x12\\x76\\x02\\x34\\x74\\x18\\x48\\x3d\\x89\\x4a\\x19\\xad\\xb3\\xc9\\\n\\xc5\\x20\\x72\\xe7\\x7d\\x4e\\xbf\\x7d\\x2a\\x47\\xc5\\x90\\xc0\\x7e\\x68\\x9d\\\n\\xc3\\xdc\\xde\\x98\\xde\\x78\\xb5\\xe3\\x5d\\x94\\xcc\\xeb\\xfe\\xfc\\xe9\\xc8\\\n\\x3b\\x0d\\x61\\x7d\\x6f\\xaf\\x6f\\xdd\\x70\\xf2\\x64\\x08\\x61\\x7d\\x13\\xf8\\\n\\x6d\\xf8\\x9f\\x86\\x78\\xd8\\x6a\\xcf\\xbf\\x3d\\xdf\\xbb\\xcf\\x75\\xbc\\xaf\\\n\\xf6\\xb3\\x3f\\x56\\xbf\\xc7\\xf5\\x81\\xfe\\xb7\\x75\\xf3\\x26\\x7e\\x13\\xff\\\n\\x00\\x9b\\xe2\\x55\\x06\\x30\\x5e\\x15\\x81\\xf8\\x24\\x14\\xd7\\x58\\xde\\xca\\\n\\xdd\\xc6\\x3a\\x28\\x24\\x31\\xaf\\x88\\x69\\x8b\\x35\\x69\\xd0\\x83\\x31\\xd0\\\n\\xbe\\x0e\\x55\\x88\\x96\\x0b\\x50\\xd1\\x5c\\xc2\\x8f\\x90\\x16\\x52\\xbd\\xcb\\\n\\x04\\x1b\\x22\\xc3\\xe0\\x68\\x38\\x40\\x31\\x95\\xf8\\x3b\\xc2\\x70\\xe1\\xe2\\\n\\x40\\x79\\x1a\\x01\\xb6\\x6b\\xa3\\xf8\\x3a\\x89\\x54\\x40\\x90\\x40\\xc1\\x4c\\\n\\x41\\x24\\x87\\x24\\xf1\\x50\\x99\\x02\\x40\\x60\\x58\\x03\\xed\\xfb\\x09\\xa7\\\n\\xbb\\x88\\xef\\x60\\x55\\xe8\\x45\\x00\\x52\\xb8\\x50\\xe7\\x2d\\xe8\\xaa\\x13\\\n\\x59\\x74\\xe2\\xd8\\x2d\\xaa\\x5f\\x98\\x19\\x8f\\xa2\\x58\\x85\\xc1\\x0a\\xff\\\n\\x00\\x0a\\x0f\\x2d\\x83\\x25\\xa9\\x13\\x55\\xaa\\x57\\xfc\\xbc\\xd8\\x28\\x41\\\n\\x41\\x1f\\xcd\\xa4\\x6e\\x48\\x42\\x3c\\x8e\\x25\\x6a\\xaa\\x00\\x50\\xd4\\x93\\\n\\xef\\x31\\xa7\\x19\\x38\\x6a\\xf0\\xe7\\x75\\xbf\\x22\\x56\\xfd\\x67\\x80\\x28\\\n\\x86\\x97\\xaa\\x44\\xe0\\x74\\xda\\x41\\x02\\x45\\x99\\x74\\xb6\\x55\\xf7\\x66\\\n\\xef\\x25\\xa9\\xf7\\xc9\\x4d\\xd8\\x81\\xa4\\xa7\\x5d\\x47\\x3e\\x67\\x21\\xe3\\\n\\x80\\x6d\\xe0\\xab\\x52\\xca\\x40\\xf9\\x89\\x54\\x10\\xc6\\x9c\\x3e\\x80\\x14\\\n\\x31\\x93\\x7d\\xe7\\xdf\\x5e\\x73\\x2a\\x46\\x29\\x82\\x3c\\x5a\\x2a\\x8f\\xb5\\\n\\x7a\\x79\\x6d\\xd7\\xed\\xfe\\x27\\x5f\\x9e\\x6a\\xb6\\x87\\x6b\\xce\\x6f\\xf4\\\n\\x19\\xfd\\x7a\\xf1\\xcb\\x14\\x55\\x9c\\xaf\\xbe\\x17\\x00\\xd7\\xd6\\x7a\\xf0\\\n\\x35\\x63\\x45\\xfd\\x77\\xd7\\x77\\xd6\\xfb\\xf1\\x0c\\xc4\\x04\\x06\\xb8\\x0b\\\n\\xed\\x0d\\xd2\\x5c\\xf9\\xeb\\xb0\\x30\\x20\\x93\\x1e\\x4a\\x4e\\xa7\\xdc\\x17\\\n\\xc0\\x51\\x71\\xb4\\xed\\x9b\\xa5\\x4e\\x90\\xed\\xfb\\xbe\\x00\\xc9\\x43\\x03\\\n\\xfe\\xc5\\x68\\x3b\\xfc\\xb0\\x81\\x2c\\x02\\x4e\\x92\\xf4\\xba\\x66\\x7f\\xdf\\\n\\x8a\\x84\\x70\\x3d\\x0b\\xfa\\x13\\x13\\xe3\\x39\\x76\\x9a\\x23\\x05\\xb9\\x94\\\n\\xc5\\xfc\\xf5\\x9d\\xa7\\xa4\\xf0\\xfb\\x77\\x8d\\x06\\x06\\x0d\\x9e\\x9e\\x8f\\\n\\xf3\\xe2\\x71\\x00\\x58\\x57\\xa9\\x87\\xa0\\x32\\x7c\\xd3\\x04\\xf2\\xe5\\x47\\\n\\xd1\\x6a\\x49\\x27\\x6f\\x70\\x20\\xfa\\xf7\\xe1\\x9c\\x0a\\x22\\x76\\x52\\xbd\\\n\\x78\\xfd\\xff\\x00\\x73\\x63\\x05\\xc8\\x07\\x45\\xfc\\xda\\x75\\xa8\\x43\\xe8\\\n\\x4c\\xa0\\xe1\\x70\\xb4\\x07\\xd9\\xdf\\xa7\\xab\\x77\\xcd\\x1f\\x45\\xbb\\xed\\\n\\xb8\\xf8\\x43\\xca\\x71\\xa5\\x41\\x31\\xbf\\xaf\\xc9\\xe9\\x8f\\x9b\\x40\\x45\\\n\\x08\\xc5\\x60\\x48\\x9a\\x01\\xef\\xbd\\x41\\x0d\\xf4\\x29\\xdb\\xda\\x90\\x44\\\n\\xeb\\xfe\\xf4\\xf1\\x67\\x80\\xa0\\x98\\x67\\x71\\xdf\\x93\\x7a\\x78\\x0a\\xc6\\\n\\x12\\xd4\\x48\\x51\\xf8\\xbf\\x20\\xde\\x33\\xad\\x20\\x31\\xa8\\x40\\x0a\\x8f\\\n\\xf4\\x8c\\x6f\\x3c\\x62\\x27\\xd6\\xce\\xb3\\x49\\x48\\xaa\\x7c\\xe7\\x80\\x55\\\n\\x16\\x02\\xf4\\x1a\\x96\\x11\\x89\\x09\\xd2\\x8d\\x04\\x00\\xca\\x40\\x8e\\x83\\\n\\x4a\\x75\\x7b\\x35\\xd6\\xc6\\x82\\x8c\\xa4\\x45\\x51\\x67\\xa9\\x5e\\x42\\xf9\\\n\\x53\\xe9\\x10\\x69\\x85\\x48\\x4d\\xa3\\x12\\x6f\\x08\\xd4\\xba\\xd1\\xae\\xef\\\n\\x70\\x54\\xc8\\x48\\x2c\\x9e\\x02\\x64\\x42\\x82\\xe4\\xbb\\xdb\\xc9\\xf2\\x7f\\\n\\x42\\x82\\xca\\x9e\\x98\\x74\\x42\\x55\\x2a\\xde\\xce\\x86\\x30\\x68\\x61\\x84\\\n\\x6c\\x69\\x59\\xec\\x2f\\xec\\x7c\\x86\\x0c\\x4a\\x0d\\x84\\x34\\xd5\\x41\\xac\\\n\\x9d\\x0c\\xf2\\x1b\\x1b\\xa2\\x83\\x21\\xc4\\x2a\\xd0\\x5e\\xd1\\xa1\\xa1\\x75\\\n\\xb2\\x54\\x70\\x32\\xe8\\x8a\\xb9\\x10\\xa8\\x04\\xc0\\x7d\\x4d\\x68\\x8a\\xa6\\\n\\x80\\x84\\x46\\x78\\x7d\\x58\\x66\\x10\\xe1\\xc0\\xc1\\x50\\xc6\\x46\\x50\\x2a\\\n\\xa4\\xce\\x67\\x1d\\x25\\xe5\\x83\\x33\\x23\\xf2\\xcf\\x05\\xaf\\xa0\\xb6\\x88\\\n\\x98\\x4e\\x30\\x1c\\x1a\\xd6\\xcb\\xe2\\x0c\\x46\\x4e\\xa3\\xc1\\xea\\xbf\\x7d\\\n\\x67\\xf7\\x7c\\x1f\\x82\\x92\\x48\\xd0\\x04\\x0c\\x46\\x91\\xf4\\x05\\xf1\\xa1\\\n\\x12\\xec\\x98\\xa1\\x21\\xe4\\x42\\x6a\\xab\\xe0\\x94\\x15\\x23\\x36\\x8c\\x55\\\n\\x47\\x4c\\x41\\x8b\\x57\\xee\\x42\\x32\\xd4\\xd0\\xb4\\xaa\\x65\\x5d\\x57\\xc0\\\n\\x20\\x2a\\x1b\\x73\\xa6\\xa1\\xab\\xe9\\xb7\\x29\\xe6\\xe5\\x28\\xc3\\xab\\x6f\\\n\\x20\\xc0\\x9b\\x65\\x7f\\x85\\x1e\\x5b\\x36\\x62\\xbd\\xc9\\x5f\\xa1\\x77\\xd3\\\n\\xe0\\x27\\x23\\x50\\x98\\x06\\xca\\xd3\\x2c\\x30\\x49\\xeb\\xc4\\x9f\\x67\\x8f\\\n\\x40\\x44\\x82\\x99\\x42\\xa5\\x4f\\x10\\x28\\x2d\\x15\\x84\\x07\\x0d\\x04\\x74\\\n\\x0a\\x1e\\x3b\\x76\\xb2\\x6e\\xba\\xb8\\xd1\\x45\\x87\\xd7\\x94\\x07\\xf5\\xcc\\\n\\x6e\\x06\\x74\\x9b\\x0c\\xbf\\x7c\\x6f\\x47\\x0a\\x42\\x81\\x64\\x43\\x6c\\xe2\\\n\\x2c\\xfd\\xf0\\xb0\\x95\\x21\\x40\\x92\\x58\\xbc\\x02\\xed\\x00\\xdf\\x3d\\x5a\\\n\\x0f\\xfc\\x69\\x05\\x13\\x6a\\x34\\xc3\\xcb\\x27\\x44\\x45\\x76\\xd5\\x29\\x37\\\n\\x7f\\x6b\\x88\\x52\\x2f\\x45\\x53\\xa5\\x34\\x5b\\xc4\\x7d\\x7f\\x63\\x7c\\x25\\\n\\xd0\\xbe\\xa9\\xb3\\x70\\xe1\\x62\\x10\\xc6\\x4f\\x28\\x52\\x41\\xa2\\x15\\x62\\\n\\x00\\x21\\x18\\x2c\\x05\\xfd\\x45\\xa8\\xb1\\xc4\\x44\\x86\\xa2\\xca\\xf7\\x52\\\n\\xfe\\xe2\\x84\\xcb\\x01\\x77\\x52\\x66\\x99\\x3f\\xc7\\x2d\\x35\\x92\\x37\\x57\\\n\\xb9\\x3f\\x7f\\x70\\x9f\\x7c\\x16\\x2f\\xb7\\x1f\\x9a\\x58\\x76\\xff\\x00\\xa2\\\n\\x77\\xa8\\x06\\x0c\\x31\\xcf\\xcc\\x63\\x63\\xfd\\x3e\\xa7\\x98\\xc1\\x07\\x3e\\\n\\xb9\\xee\\x1c\\xa9\\xef\\xd3\\xfc\\x0c\\x04\\x53\\x18\\x26\\xc9\\xb4\\xfd\\xf6\\\n\\x4d\\x6f\\x82\\x11\\x4f\\x30\\xfa\\xb6\\x60\\xf4\\x74\\x7a\\xf2\\x68\\xa4\\xb8\\\n\\x26\\xd1\\x21\\x49\\x46\\xcb\\x7e\\xf3\\xfa\\x1d\\xb8\\x41\\x38\\xdc\\x56\\x9a\\\n\\xf7\\xde\\xf8\\x38\\x80\\x84\\xea\\xa3\\x33\\xa3\\xc2\\x7e\\x22\\x78\\x34\\x05\\\n\\x27\\x80\\x1f\\xab\\x5b\\x4b\\x8f\\xdd\\x2c\\x04\\x30\\x88\\x14\\x26\\xae\\x9e\\\n\\xda\\x7d\\x39\\xf1\\x41\\xeb\\x15\\x43\\x08\\x6d\\x70\\xab\\xfc\\x15\\xc9\\x4c\\\n\\xda\\x4d\\x08\\x0f\\xa1\\xa2\\xec\\xc2\\x71\\xb0\\x5f\\x13\\x01\\xc9\\x50\\x40\\\n\\x47\\x36\\x18\\xb8\\x47\\xce\\x43\\x42\\xb5\\x94\\x1d\\x36\\x4e\\x6b\\xfb\\xd4\\\n\\xf3\\x42\\x3f\\x1a\\x45\\x02\\x7f\\x68\\xfb\\xdd\\x27\\x4f\\x1c\\x26\\x60\\x7c\\\n\\x1f\\x7e\\x8e\\x47\\x4d\\xff\\x00\\xc3\\x0a\\x3f\\xa3\\x08\\x13\\xa3\\x2b\\x9e\\\n\\xfd\\xef\\xd7\\xa0\\x54\\x10\\x21\\x35\\x6c\\xf4\\x15\\x3e\\x7b\\xf6\\x00\\x32\\\n\\x84\\xc1\\x82\\xea\\x62\\xd3\\x0e\\xa5\\x52\\xcf\\x3e\\xc0\\xc8\\x01\\xa4\\xe8\\\n\\x91\\x1e\\xbc\\x6b\\x43\\xc0\\x6a\\x28\\xa7\\xcc\\xca\\x70\\x74\\x0b\\x5d\\x29\\\n\\xbe\\x10\\x92\\x48\\x0e\\x72\\x69\\x7a\\x5f\\x51\\x21\\xeb\\xc6\\x0a\\x82\\x82\\\n\\xf0\\x49\\xd4\\x43\\x0e\\xbd\\xe9\\xfa\\x79\\x08\\x42\\x2f\\xad\\xd7\\xa5\\xf5\\\n\\x4f\\x82\\x5d\\xd3\\xcc\\x92\\x8a\\x73\\x8b\\xfb\\x0f\\x7f\\xcf\\xa0\\x26\\xf8\\\n\\x81\\x6c\\xf1\\x20\\x5e\\xbc\\x53\\x31\\xa6\\xf7\\xbe\\x14\\xfd\\x62\\xad\\x44\\\n\\xde\\xd4\\x9f\\x12\\x8c\\xc0\\x3c\\x42\\xa9\\x21\\x44\\x23\\xe0\\x5a\\xc0\\x57\\\n\\x79\\x36\\x81\\x1d\\x04\\x63\\x4f\\x64\\x09\\x85\\x63\\x05\\x88\\xf9\\xbe\\xc3\\\n\\x65\\x04\\x2d\\x03\\x22\\x88\\x53\\xaf\\xaf\\x57\\x14\\x98\\x12\\x46\\xa0\\xa8\\\n\\x62\\xd0\\x5a\\xc4\\x2a\\x60\\x80\\x4f\\x28\\x3e\\xc1\\x0a\\xbd\\xb1\\x31\\xaa\\\n\\x51\\x96\\xc1\\xd4\\x87\\x4b\\xcc\\x71\\xa0\\x78\\x2e\\x38\\x04\\x46\\x9a\\xf6\\\n\\x41\\x82\\x1d\\x8f\\x44\\x27\\x96\\x11\\x62\\x5b\\x1b\\x50\\x12\\x63\\x44\\x07\\\n\\xa3\\x45\\x48\\x26\\x01\\x21\\xf9\\x7d\\x38\\x18\\xff\\x00\\x8f\\x23\\x49\\xc1\\\n\\x25\\x84\\x18\\x40\\x6c\\xe6\\x2d\\x83\\x0d\\x17\\xd3\\xe5\\x68\\xcc\\xa9\\xa4\\\n\\x0c\\xba\\x39\\x3d\\x0b\\x15\\x14\\xb8\\x91\\x2a\\xb2\\x1f\\xce\\x8e\\xf9\\x31\\\n\\x14\\x46\\x93\\x40\\x9d\\xd1\\xd5\\xeb\\xa4\\xf0\\x7d\\xed\\xf1\\x03\\xfc\\x07\\\n\\xff\\x00\\xb7\\xca\\x62\\x54\\x45\\x7a\\xa0\\x2e\\x6c\\xc0\\xdd\\xbf\\x40\\x05\\\n\\x64\\x0a\\xa4\\x19\\x41\\x25\\x49\\xcd\\xa7\\xb3\\xa9\\x04\\xb8\\x81\\xe0\\xce\\\n\\x6f\\xa9\\x88\\xda\\x9e\\x3b\\x70\\x57\\xa8\\x99\\x68\\x3e\\xc6\\xc3\\x61\\x3b\\\n\\x74\\x45\\x5b\\xd0\\x00\\x88\\x71\\xf7\\xbc\\xc5\\xcb\\xe1\\xab\\x19\\x1c\\x2a\\\n\\x04\\x08\\x29\\xb1\\x3e\\x0b\\xda\\xe7\\xd2\\x81\\x2c\\x2b\\x0d\\x2f\\x31\\x66\\\n\\xb9\\x41\\xf2\\xa5\\x73\\xd1\\x03\\x06\\x4e\\xb1\\x6c\\x3a\\x42\\x87\\xbb\\x3e\\\n\\x54\\xea\\x31\\x11\\x02\\xa1\\x81\\x91\\x83\\xe7\\x11\\xf4\\x35\\x51\\x25\\xb8\\\n\\x70\\x0e\\x92\\x3a\\xe3\\x0a\\x40\\x69\\x4a\\x7d\\x31\\xf1\\xbb\\x02\\x4b\\x61\\\n\\x48\\xa4\\x6a\\x1f\\x9d\\x8b\\x7c\\x26\\xcb\\xd6\\x4d\\xe8\\xa7\\xd8\\xde\\xa4\\\n\\xae\\xcf\\x1a\\xd1\\x3b\\xc6\\xed\\x48\\x49\\x05\\x1c\\x07\\x6e\\x53\\xdc\\x20\\\n\\xc4\\x86\\x8e\\xb7\\x69\\x1f\\x47\\x80\\x57\\x56\\xa2\\xc3\\xd7\\xae\\xde\\x9f\\\n\\xe6\\x85\\x33\\x41\\x71\\x2b\\x05\\x04\\x8a\\x13\\x41\\x23\\x5c\\xf5\\xe2\\x80\\\n\\x59\\x6a\\x03\\xba\\xdb\\xf1\\xa3\\xfd\\x74\\x7c\\x4a\\xf3\\xb4\\x01\\xb8\\x1c\\\n\\xae\\x11\\x07\\x0d\\xed\\xde\\x21\\x28\\x68\\xe1\\x63\\x4b\\x55\\x6e\\xcf\\x92\\\n\\x67\\x93\\x9d\\x80\\xc0\\x56\\xf2\\xe3\\xa3\\x27\\xad\\xc7\\x67\\x87\\x82\\xaa\\\n\\x6e\\x07\\x3e\\xcf\\x79\\x17\\x9b\\x1f\\x05\\xad\\xc8\\xa2\\xb2\\xa9\\xeb\\xe7\\\n\\xa9\\xed\\xb7\\xc2\\x0b\\x1c\\x51\\xbc\\x67\\xe7\\xc2\\x90\\x3f\\x8a\\x78\\xbe\\\n\\xe4\\xa0\\x1e\\xb4\\xce\\x0b\\xed\\xff\\x00\\x6f\\xcf\\x31\\x84\\xb7\\x82\\x5a\\\n\\xc4\\x84\\xd5\\x72\\xb9\\x61\\xe3\\xac\\x3d\\x08\\x05\\xc8\\xb8\\x64\\x99\\xf2\\\n\\x9e\\x4b\\x50\\x74\\x4d\\x76\\x5d\\x28\\x6d\\xd7\\xf4\\xea\\xa0\\x0e\\x2c\\x15\\\n\\xd5\\x90\\xbd\\xde\\xe2\\xda\\x79\\x78\\xd8\\x62\\xaa\\x21\\x9e\\x91\\x22\\x7b\\\n\\xdb\\xdf\\x00\\x83\\x09\\x15\\x9e\\xff\\x00\\x43\\xfa\\x87\\xf5\\x4a\\x94\\x22\\\n\\xc0\\x42\\xe7\\x37\\x8c\\x29\\xfc\\x7d\\xfe\\x41\\x45\\xc5\\x23\\xc3\\x70\\xd6\\\n\\x6f\\x3f\\xdb\\xbe\\x19\\x4a\\x87\\xa4\\xa6\\x93\\xe9\\x24\\xc7\\xbf\\xdd\\x84\\\n\\x68\\x23\\x00\\xa1\\x44\\xea\\x59\\xec\\xfa\\x01\\x4f\\x2a\\xaa\\xea\\x09\\x7a\\\n\\xc3\\x60\\x9d\\x83\\xf6\\x78\\xc6\\x91\\xa5\\x33\\x5a\\xc8\\x3d\\x41\\xb0\\xf8\\\n\\xad\\x7c\\x31\\x02\\x9d\\xc1\\x9e\\xea\\xce\\x7f\\x88\\xfe\\xf8\\x81\\x0a\\xd2\\\n\\xfc\\xbe\\x82\\xc7\\xf5\\xff\\x00\\xdf\\x14\\x00\\x0a\\x43\\xb4\\x7d\\x69\\xd6\\\n\\x1b\\x43\\xa2\\xc3\\xc7\\x25\\x50\\x35\\x0c\\x44\\x6f\\xb4\\xcc\\x3d\\xfb\\xf5\\\n\\xc6\\xa0\\xfd\\x00\\xa8\\x6b\\x50\\x68\\x1f\\x37\\xc1\\xb4\\x72\\x3d\\x32\\x04\\\n\\x40\\xac\\xc6\\xa2\\x26\\xa4\\xcc\\x04\\x68\\x9a\\x35\\xe6\\xaf\\xb6\\xe8\\x04\\\n\\x06\\xa0\\x81\\xd2\\x43\\x2f\\xe9\\x4f\\x5d\\xf6\\xf8\\x22\\x23\\x67\\xe2\\x47\\\n\\x09\\xdf\\xbe\\xfd\\x3d\\xf3\\x42\\x84\\x5a\\xa8\\x66\\x3a\\xc2\\x1f\\x7f\\x3b\\\n\\xe2\\x41\\x70\\x8d\\xc0\\x3e\\x03\\x4a\\x1b\\xf7\\x77\\xc8\\x25\\xc9\\x8d\\x25\\\n\\x21\\x09\\x01\\x79\\x52\\x35\\x22\\x78\\xea\\xb1\\xf0\\x40\\x0b\\x90\\x36\\xaa\\\n\\xb0\\x1d\\x76\\x87\\x81\\xaa\\xc1\\xa4\\x8a\\x52\\x56\\xb5\\x44\\x3b\\xa6\\x27\\\n\\x89\\x5a\\x60\\x25\\x81\\x54\\x76\\x88\\x9a\\xe8\\x62\\xf8\\x63\\xfe\\xbc\\x96\\\n\\xaa\\x2a\\xd8\\x90\\x10\\xe3\\xc2\\x50\\x2a\\xa1\\x5e\\xc8\\x01\\x54\\xbe\\xd3\\\n\\x66\\x30\\xf2\\xd0\\x9b\\x42\\x23\\x2d\\xf5\\x0b\\x7a\\xfa\\x72\\x26\\xb5\\x45\\\n\\x42\\x3d\\x87\\xba\\x0b\\xf7\\xd8\\x4b\\xe1\\x30\\x84\\x8d\\x05\\xb0\\x3d\\x9c\\\n\\x21\\xb4\\x0e\\x59\\x41\\x5a\\x60\\x38\\xa9\\x05\\xd0\\x04\\x42\\xe5\\xf4\\xd1\\\n\\xe7\\x00\\x55\\x98\\x6a\\x8b\\x8c\\x5e\\x05\\x98\\x02\\xda\\x8c\\xc5\\x3d\\x00\\\n\\x8a\\xa3\\xe8\\xbf\\x87\\x88\\x68\\x20\\x95\\xb7\\xe5\\x6a\\x13\\x50\\x17\\xf0\\\n\\x78\\x13\\xa2\\x20\\xc1\\x28\\x9e\\x80\\x93\\xdf\\x4f\\x3d\\x4a\\x7c\\xdc\\x6f\\\n\\x14\\x7f\\xcf\\x8b\\x5f\\x62\\x91\\xd0\\xd6\\xe3\\x69\\xc0\\x7f\\x4e\\x08\\xc5\\\n\\x26\\x10\\x40\\x3c\\x95\\x7d\\x26\\x33\\x49\\x46\\x98\\x23\\x96\\xad\\x1e\\xf0\\\n\\xef\\xe9\\x74\\xd8\\x56\\x10\\x54\\x20\\xde\\xed\\x01\\x71\\xaf\\x78\\x83\\x46\\\n\\x96\\x0a\\x01\\x1b\\x62\\xa1\\x35\\x0f\\xb8\\x5c\\x98\\xe3\\x2a\\x5b\\xa7\\x44\\\n\\x35\\x70\\xd6\\xf3\\x5f\\x92\\xf8\\xbb\\xff\\x00\\x16\\x65\\xcf\\x7e\\xc5\\x49\\\n\\xcf\\xb6\\x5f\\x10\\xc0\\x58\\x39\\x6e\\x9b\\x4f\\xaf\\x70\\xcf\\xda\\x48\\x93\\\n\\x55\\x12\\x8b\\xef\\x3d\\xd6\\x1a\\x47\\xea\\xc4\\x4a\\xd6\\x32\\x5a\\xfb\\xbc\\\n\\x1e\\x9f\\xdf\\x5e\\x3b\\x2c\\x3c\\x56\\xe8\\x2a\\xd8\\x06\\xd6\\x2a\\xbe\\x11\\\n\\x56\\x50\\xb6\\x2c\\x18\\x60\\x1a\\x43\\xdc\\x3d\\x95\\xb9\\xc1\\xd0\\x69\\xc4\\\n\\x4a\\x41\\x01\\x7f\\x15\\xf3\\x4b\\xa1\\x08\\xf5\\x8d\\x33\\xd3\\x7d\\x64\\xbe\\\n\\xa3\\x12\\x62\\x1a\\x16\\x99\\x78\\x7f\\x53\\x9f\\xe3\\xc2\\x0c\\x1a\\x4e\\x3b\\\n\\xfe\\x4f\\xd8\\xdf\\xb7\\xb3\\xc6\\x50\\x83\\x92\\x34\\x7f\\x12\\xc5\\x72\\x07\\\n\\xea\\x6f\\x8a\\x91\\x50\\xc4\\xe8\\x2f\\xbb\\x1f\\xd9\\xe9\\xc0\\x2f\\x89\\x39\\\n\\x28\\x92\\x07\\xa3\\x96\\xd3\\x67\\xc3\\x99\\x41\\x02\\x70\\xea\\xc6\\xc7\\x24\\\n\\x83\\xcd\\x98\\xea\\x9e\\x40\\x42\\x50\\x5c\\x28\\xb1\\x3d\\xe4\\xa8\\x77\\x5c\\\n\\xf1\\x29\\x65\\x0d\\x6a\\xb9\\x51\\xe6\\x1d\\xfc\\x3e\\xbe\\x7b\\x71\\xab\\x48\\\n\\x09\\x8b\\x8d\\xfe\\x47\\x79\\xc3\\xc2\\x44\\xb0\\xfc\\x35\\xc7\\xf9\\x8d\\x6f\\\n\\xf5\\xd9\\xe3\\x30\\x5d\\x61\\x10\\xdd\\x2a\\x04\\x0f\\x54\\xa6\\x07\\x87\\x06\\\n\\xf4\\x41\\x35\\x00\\x1d\\xf6\\x58\\xe1\\x4f\\x0a\\xad\\x3a\\x29\\x65\\x18\\x12\\\n\\x05\\x80\\x99\\x39\\xe2\\xa2\\x55\\xa2\\x57\\xed\\xa4\\x38\\x1b\\xdb\\x5f\\x2b\\\n\\x90\\x80\\x0d\\x1b\\x6f\\xaa\\x2c\\x8c\\x32\\x7b\\x2c\\x1b\\x1f\\x3a\\x57\\x65\\\n\\xe8\\xf7\\x6f\\x31\\xc0\\xf2\\x27\\xa8\\xda\\x4d\\xa6\\xe7\\x7d\\x7e\\x2a\\xe4\\\n\\xe9\\x10\\x63\\x27\\x67\\xe7\\x6f\\xac\\x37\\x7c\\x29\\xa2\\xa0\\xfd\\xd9\\xfe\\\n\\xcf\\x9b\\xed\\x27\\x94\\x63\\x74\\x05\\x01\\x76\\xc7\\xf7\\x85\\x80\\x2f\\x96\\\n\\x54\\xc9\\x12\\x00\\x09\\x0a\\x01\\x9c\\x20\\x54\\x9e\\x20\\x40\\x5b\\xba\\x6f\\\n\\x41\\x40\\x34\\xd4\\x98\\x2a\\xb4\\x40\\x24\\x4e\\x67\\x15\\x59\\x30\\xb2\\x17\\\n\\xd7\\xc0\\x96\\xe2\\x01\\xb4\\x40\\x09\\x12\\xa8\\xc0\\xa1\\x05\\xc0\\x1a\\xc3\\\n\\x41\\x51\\x50\\x41\\xd5\\x31\\x06\\x2d\\x59\\xe0\\x73\\xeb\\xd0\\x78\\xde\\x9f\\\n\\xb2\\x2d\\xe2\\xc4\\xcf\\x13\\xfc\\x0e\\x9f\\xd8\\x01\\xb9\\x78\\x33\\xbe\\xbc\\\n\\x73\\xf8\\x12\\x64\\x2a\\xe2\\x52\\xc2\\x30\\xd6\\x27\\x97\\xae\\x3a\\x6a\\x88\\\n\\x95\\x0f\\xb6\\x1b\\x32\\x10\\x9e\\x21\\x0b\\x83\\x58\\x06\\x6d\\x89\\xc1\\xf8\\\n\\x6a\\xfc\\xf3\\xde\\xc0\\x27\\xa3\\xba\\xbd\\x49\\x3f\\x0f\\x25\\xf0\\xa8\\xa2\\\n\\x40\\xf6\\xa2\\x7d\\xa0\\xae\\x50\\xf7\\x9a\\x07\\x64\\x4f\\xc4\\x04\\x4e\\x76\\\n\\x63\\x7d\\x2b\\x3c\\x42\\xc4\\xfc\\x2a\\x6b\\x81\\x12\\xa4\\x0b\\x47\\x3b\\xe1\\\n\\x00\\x85\\x42\\xaa\\x52\\x20\\x12\\x1f\\xa5\\xa1\\x8f\\x90\\x01\\xa6\\x36\\x82\\\n\\x47\\xae\\x80\\x4d\\xfb\\xd2\\x9e\\x45\\x0c\\x0a\\xd5\\x00\\x05\\x29\\x0c\\xc5\\\n\\x68\\x01\\x9e\\x1f\\x3a\\x04\\xcc\\x49\\x41\\x44\\x46\\x15\\xf7\\x8d\\x58\\x8c\\\n\\xd4\\xa1\\x17\\xe0\\x2f\\x0d\\x11\\xb3\\x75\\xa3\\x34\\xa2\\x34\\xd7\\x04\\x54\\\n\\x7d\\x35\\xe0\\x84\\x0d\\x59\\x04\\x82\\xdd\\x06\\xb6\\xab\\xbc\\x6a\\x75\\x45\\\n\\x78\\x51\\x86\\xc0\\x2e\\x21\\x04\\x22\\x3c\\x8e\\x88\\x84\\xad\\x23\\xde\\x22\\\n\\xb2\\x52\\x00\\x00\\x78\\x06\\x6e\\x48\\x16\\x87\\xf2\\xa2\\xc2\\xfa\\x93\\x7c\\\n\\x14\\x55\\x18\\x22\\x96\\x62\\x65\\x64\\xd6\\xbe\\x1c\\xf1\\x88\\x02\\x09\\x70\\\n\\x19\\x86\\xed\\x88\\x4c\\xfc\\xf2\\xbc\\x29\\x5e\\x85\\x8e\\xaa\\x7c\\x6c\\x8a\\\n\\x0f\\xd2\\xa8\\xd8\\x25\\xc2\\x12\\x65\\x68\\xff\\x00\\x6a\\x5f\\x6f\\x2b\\x0b\\\n\\x89\\x58\\xac\\x3e\\x21\\x9f\\x33\\xc9\\x17\\x24\\xfc\\x21\\x0a\\x74\\xc1\\x5c\\\n\\xdd\\x37\\xc4\\x6c\\xe4\\x2c\\xbb\\x15\\x3f\\x45\\xad\\xc5\\x77\\xc0\\xa3\\x1a\\\n\\xc4\\x9d\\xf4\\xdf\\xeb\\x04\\xb8\\x7a\\xf1\\xd4\\xf5\\x7d\\x07\\x38\\x35\\x33\\\n\\x21\\xbe\\xa9\\x5b\\xac\\xa1\\x52\\xe4\\x32\\x4c\\x01\\x65\\xbf\\x63\\xe0\\x2c\\\n\\xb1\\x9b\\xa9\\xf4\\x64\\xfd\\x38\\x34\\x4f\\x2b\\x9e\\x66\\x3e\\x00\\x70\\xd4\\\n\\x84\\x5e\\xdb\\x95\\x17\\x20\\xe1\\xb8\\x38\\x63\\xbf\\xe6\\x87\\xe2\\x9e\\x2c\\\n\\x47\\xa2\\xc6\\xea\\x10\\x04\\xc1\\x7f\\x83\\xa7\\x57\\x5a\\x94\\x00\\x43\\x76\\\n\\xd4\\x1d\\xd5\\xc8\\x0b\\xe6\\x70\\x8d\\x7c\\x4d\\x28\\x41\\x0d\\xaa\\x32\\x41\\\n\\x04\\xb9\\x63\\x28\\xa3\\xaf\\xd6\\x84\\x4f\\xe7\\xc2\\x20\\x7d\\x26\\x92\\xa8\\\n\\x52\\x54\\x01\\x18\\x09\\xd0\\x4d\\xc4\\x12\\x1e\\x1d\\x1c\\x97\\x38\\x9e\\x54\\\n\\x30\\x04\\x56\\xa8\\x8a\\x0c\\xa9\\xcc\\xfe\\xe4\\x21\\x2d\\x69\\x4d\\x57\\xd4\\\n\\xf8\\xbc\\xf5\\xf3\\x07\\xc1\\x29\\xb1\\xf2\\x00\\x52\\x37\\xf9\\x6f\\xbe\\x26\\\n\\xb0\\x00\\x8d\\x31\\x54\\x34\\x58\\x83\\x77\\x99\\xef\\x28\\xab\\x23\\xa1\\x06\\\n\\x94\\xb6\\x8e\\x40\\x5d\\xa6\\x93\\xc0\\x8c\\x48\\x4a\\x52\\xaf\\x08\\xb0\\xa3\\\n\\xf8\\x70\\x3d\\xf8\\xb4\\xbd\\x90\\x14\\x17\\xea\\x84\\xe7\\xc1\\x9c\\xf2\\xb2\\\n\\x0d\\x8a\\xbe\\xd8\\xb7\\x60\\xce\\x75\\x2a\\x07\\x85\\xc4\\x70\\x45\\x9e\\x8b\\\n\\x86\\xbb\\xe8\\xd9\\x9c\\x3c\\x3f\\x70\\x1a\\x64\\x80\\x2a\\x82\\x08\\x00\\xa8\\\n\\x25\\x52\\xaf\\x4e\\x87\\x5e\\x43\\x84\\xb5\\x01\\x6c\\x1f\\x07\\x2a\\x29\\x10\\\n\\x1e\\xa2\\x92\\x1f\\x4f\\xe3\\x0a\\x15\\xf8\\x2a\\x0d\\x02\\x99\\x8d\\x10\\xa5\\\n\\x90\\xd2\\xbf\\x98\\x29\\x66\\x65\\x2e\\x8b\\x0a\\xb8\\xc7\\xc0\\xa8\\x27\\x82\\\n\\xd9\\x5b\\xee\\xe2\\x6a\\x9c\\x39\\x7c\\x6c\\x54\\xed\\x99\\xf4\\x0b\\x50\\x45\\\n\\xa3\\x00\\x5f\\xa2\\x08\\x75\\x00\\x2b\\x79\\x64\\x1d\\xf5\\x3b\\xb5\\x71\\xa0\\\n\\x6a\\xd6\\xc3\\x80\\xa2\\x5d\\x37\\x73\\xdd\\x42\\x24\\x5b\\x83\\x2b\\xa5\\x89\\\n\\x36\\x94\\x36\\xe7\\xdf\\x2a\\x72\\xc2\\x21\\xa8\\x7e\\x2f\\x1a\\xbc\\x27\\x5e\\\n\\x07\\x6a\\x38\\x8c\\x60\\x1d\\x1f\\xcf\\xce\\xa6\\xf8\\xa0\\x58\\x95\\x7f\\x4c\\\n\\xac\\x36\\xb5\\xf9\\xdc\\x15\\x0d\\x6a\\x8a\\x85\\xbb\\x31\\x13\\x2f\\x7b\\x75\\\n\\x7c\\x12\\xde\\x6d\\x3d\\x23\\xa2\\xa4\\xd2\\x92\\x51\\xc9\\x3c\\xd6\\x59\\xd8\\\n\\x8c\\x13\\xee\\x84\\xa2\\x00\\x65\\x2b\\xc9\\x9e\\x9a\\xa4\\xd8\\x20\\x20\\xc7\\\n\\x56\\x01\\x6b\\x5a\\xa6\\x28\\xe6\\x22\\xb8\\xaf\\x02\\x1e\\x70\\x4f\\xbe\\x21\\\n\\x70\\x21\\x2f\\x55\\x3a\\x01\\x0e\\x0b\\xb5\\x28\\xc1\\x90\\x24\\x71\\xd2\\x00\\\n\\xe4\\x90\\x08\\x21\\x7c\\x54\\x52\\x31\\x57\\xc3\\x15\\x05\\x33\\x08\\x80\\x1f\\\n\\xea\\x3c\\x0b\\x5c\\xc6\\xd2\\x67\\x77\\x3f\\x40\\x80\\x0c\\x14\\x87\\xb9\\xed\\\n\\x6d\\x54\\xf9\\xfd\\x3f\\x43\\x54\\x82\\x7a\\x70\\x30\\x11\\x88\\x03\\x14\\xa4\\\n\\x65\\x62\\x37\\x60\\x2b\\xa5\\xe7\\xb3\\x5f\\x6d\\x6f\\x83\\xd4\\xb2\\x34\\x63\\\n\\xdd\\x00\\xd4\\xc5\\x25\\x84\\x9e\\x53\\xf5\\x18\\xc7\\xba\\x54\\x75\\x49\\xcd\\\n\\x9b\\x52\\x2a\\xfb\\x89\\x0a\\x01\\x12\\x51\\x09\\x50\\xb5\\xa7\\x83\\x36\\x64\\\n\\x1d\\x43\\x20\\x5c\\x80\\xea\\xa3\\xc1\\x08\\x81\\xac\\x0d\\xeb\\x16\\x0f\\x5e\\\n\\xe2\\x79\\x9b\\x46\\x8d\\x5f\\xd2\\x0b\\x4a\\xba\\xe9\\x8f\\x8f\\xe3\\xa6\\xc5\\\n\\x4f\\x66\\x0d\\x71\\x45\\x12\\xf0\\x56\\x2a\\xb0\\x06\\x1a\\x0e\\x80\\x1d\\xb6\\\n\\xf7\\xc4\\x60\\x0d\\xea\\x8d\\x15\\x13\\x5d\\x6c\\x02\\x64\\xf0\\x13\\x1d\\xa0\\\n\\x02\\xb5\\x1b\\x6a\\xdf\\xce\\x19\\x0e\\x78\\xe1\\x10\\xa0\\x00\\x88\\x58\\x1b\\\n\\xfd\\x68\\xc7\\xe0\\x96\\xbb\\x6a\\xc3\\x78\\x62\\xd9\\x4d\\x9e\\xb1\\xbb\\xe2\\\n\\x26\\x99\\x51\\xa2\\x66\\x74\\xfc\\xfd\\xf7\\x32\\x4f\\x22\\x17\\x5b\\xed\\x9f\\\n\\xdf\\xf9\\x3f\\xe5\\xf3\\xb0\\x38\\x76\\x1f\\xfe\\xbf\\x9f\\xb7\\xca\\x1d\\xb0\\\n\\xd2\\x06\\x5f\\xaf\\x76\\xbe\\x87\\x16\\x9e\\x2e\\x89\\xec\\x23\\x25\\xbc\\x22\\\n\\xea\\x19\\xe9\\xe7\\x8d\\x22\\x42\\x6a\\x84\\x13\\x23\\x46\\x67\\x26\\x61\\xe1\\\n\\x38\\x40\\x83\\x03\\x29\\xc5\\x89\\x0f\\x71\\xc2\\x3e\\xfc\\x4a\\x36\\xa2\\x35\\\n\\xf4\\x23\\x07\\xa0\\x00\\x36\\x29\\xe0\\xd9\\x9e\\xc6\\x2f\\xa4\\x21\\x67\\x73\\\n\\xc7\\xe9\\x28\\x81\\x3b\\x00\\x32\\xa0\\xd6\\x90\\x3b\\x03\\xce\\x12\\x27\\xeb\\\n\\x84\\xe1\\x7d\\xaf\\x67\\x3f\\x35\\x35\\x21\\x46\\xed\\xa1\\xa9\\xfc\\xfc\\xf7\\\n\\x9e\\x42\\x0a\\xa0\\x44\\x10\\xe8\\xe3\\xd3\\x3d\\x06\\x73\\xcb\\x80\\x9d\\xc0\\\n\\xb1\\x20\\x1a\\x1a\\x02\\x99\\x79\\x55\\xf6\\x0f\\x7e\\xd1\\xdc\\x9b\\xc0\\x3b\\\n\\xf1\\xe7\\x7c\\x10\\x2a\\xe8\\x82\\x0a\\xe8\\xe2\\x2b\\xa2\\xf1\\x40\\x82\\x09\\\n\\x46\\xd1\\x26\\x8f\\x70\\x99\\xe0\\xe5\\x26\\xaa\\x01\\x15\\x79\\x01\\x05\\x86\\\n\\x9e\\x8f\\x0a\\xc4\\x2d\\x48\\x47\\xae\\x0f\\x4d\\x9c\\x0e\\x5c\\x51\\x9b\\x00\\\n\\x84\\x02\\x97\\xbc\\xb8\\x6d\\xef\\x97\\x08\\x53\\x0b\\x45\\x08\\x7b\\x61\\xbf\\\n\\x8c\\x9c\\xf2\\x1f\\x96\\x82\\x38\\x46\\x40\\x0b\\xd6\\x48\\xbe\\xd5\\x4f\\x25\\\n\\x56\\x28\\x28\\xc8\\x29\\x50\\x2a\\x77\\x46\\xc3\\x69\\xcf\\x23\\x0e\\x52\\x80\\\n\\xa6\\x39\\x1a\\x9d\\x8c\\x95\\x11\\x2b\\x78\\xb8\\x67\\x0f\\x58\\x03\\xd4\\xa4\\\n\\xdf\\x23\\x88\\x05\\x82\\x15\\x96\\xa0\\x04\\x41\\xa3\\x18\\x94\\x86\\x8d\\x8e\\\n\\xd0\\x82\\x1d\\x9e\\xa4\\x0c\\x02\\x06\\x2d\\x80\\xa0\\x12\\x16\\x5a\\xb9\\x64\\\n\\xe8\\xfb\\x7d\\xf6\\x80\\x00\\x65\\x85\\x0e\\x08\\x49\\x8f\\x3c\\xdf\\x50\\x37\\\n\\x31\\x2a\\x04\\xe8\\x00\\x47\\x88\\x7a\\xd5\\x2a\\xb6\\xc4\\xe6\\xd0\\x55\\x45\\\n\\x59\\x75\\xc2\\xfe\\xaa\\x0e\\x1b\\x20\\x11\\x63\\xda\\xf5\\x27\\x70\\xbf\\x8f\\\n\\x26\\xa2\\x40\\x54\\x08\\x49\\xa5\\x75\\x57\\x27\\x7c\\xfd\\xb8\\x2e\\x81\\xfd\\\n\\xf4\\x3f\\xe9\\x0f\\x61\\x12\\xdc\\x00\\x9c\\x11\\x76\\x07\\x2f\\x5a\\x42\\xf8\\\n\\x21\\x02\\x27\\x1a\\x0f\\xb2\\x91\\x91\\x8d\\x8f\\x8e\\x68\\xa8\\x6a\\x80\\x1d\\\n\\xeb\\x19\\x7b\\x1f\\x16\\xb6\\x16\\xd3\\x2e\\xfe\\x6b\\xf5\\xfe\\x27\\x3c\\x08\\\n\\xc0\\x78\\x5b\\x3b\\xb8\\x97\\xe9\\xd9\\x5f\\x2c\\xfb\\x46\\xfe\\x32\\x4b\\xce\\\n\\x7c\\x5f\\x12\\x9c\\xe1\\x60\\x28\\xac\\xe6\\x59\\x37\\x93\\x9e\\x5b\\x0f\\x58\\\n\\x4a\\x1c\\xac\\x51\\x9d\\xc2\\x5b\\xd0\\x3c\\x2e\\x0b\\x27\\xa9\\x3b\\x4c\\x30\\\n\\x0b\\x65\\x77\\xb1\\x78\\x65\\x96\\x48\\xcc\\xa9\\x28\\xd4\\x90\\x3e\\x9e\\x3e\\\n\\x00\\x74\\x00\\xb9\\xd7\\x66\\xb0\\x3f\\x8e\\xae\\xd3\\x6c\\x73\\x5d\\x1a\\x12\\\n\\x84\\x3a\\x8f\\x2c\\x80\\xa4\\x6c\\x07\\x40\\x70\\xfa\\x18\\x8b\\xe5\\x13\\xec\\\n\\x26\\x0f\\x05\\x03\\x2a\\x3e\\xed\\x41\\x99\\x8f\\xd9\\xc3\\x6f\\x71\\x10\\x82\\\n\\x2d\\x74\\xd1\\x36\\x76\\xe1\\x68\\xc8\\xba\\xf7\\x11\\xfe\\x0c\\x79\\x01\\xf0\\\n\\x82\\x10\\x02\\x15\\x0a\\x12\\x04\\x3e\\xf7\\x7d\\x6f\\x56\\x24\\xf4\\x53\\x0e\\\n\\xe4\\x2f\\x71\\xa7\\x0f\\x17\\xd0\\xc0\\xd6\\xf4\\x01\\x1e\\x7c\\x5c\\xcb\\xc6\\\n\\x5d\\xd8\\x88\\xa1\\xf7\\x80\\xa0\\x55\\x62\\x54\\x78\\x28\\xd5\\x2f\\x56\\x00\\\n\\x68\\x04\\x00\\x95\\x6d\\x8f\\x84\\x15\\x84\\x25\\x07\\x42\\x00\\x71\\xb3\\x9e\\\n\\xf6\\x79\\x28\\x28\\xb2\\x39\\x3d\\x3d\\xf3\\x39\\xb0\\x2e\\x8f\\x8b\\xde\\xd0\\\n\\x08\\x2a\\x3a\\x2b\\xa6\\xcb\\xfe\\x48\\xe1\\xaa\\x3a\\x5c\\x2b\\x17\\xa0\\x34\\\n\\x76\\x04\\x3c\\x37\\x8a\\x58\\xd8\\x37\\x97\\x5a\\x91\\x24\\x7d\\x8c\\xfd\\xb0\\\n\\x53\\x91\\x08\\x3f\\xb0\\x74\\xbb\\x49\\xbb\\xe6\\x4e\\x4f\\xe2\\x8a\\xdf\\x4e\\\n\\x3f\\x14\\xbf\\x1f\\x19\\x80\\xcf\\xed\\x75\\xd1\\x9f\\x8c\\x35\\x0d\\x87\\x8b\\\n\\x33\\xb0\\x02\\x62\\x8f\\xce\\xfe\\x5f\\xf9\\x62\\x8b\\x03\\x7e\\x00\\x77\\x7d\\\n\\x7b\\xfd\\x3c\\x10\\x1b\\x80\\x33\\x37\\xe6\\x3e\\xb9\\xfc\\x4f\\x18\\x2f\\x40\\\n\\xa3\\x5e\\x66\\xbd\\xdd\\x1c\\xce\\x6f\\x8b\\xa0\\x19\\x3d\\x82\\x40\\x21\\x53\\\n\\x7b\\x1b\\xb7\\xc9\\x80\\x51\\x1c\\xa8\\x51\\xb9\\xaf\\xc7\\xa1\\x7c\\x47\\xc5\\\n\\x5a\\xa5\\x6f\\x05\\xa7\\xa6\\xc2\\x03\\xdd\\xf1\\xbf\\x5d\\x02\\x4b\\x11\\x62\\\n\\x96\\x24\\x78\\x6a\\x3e\\x44\\x17\\xdf\\x6a\\xb2\\x7b\\x44\\x4e\\x19\\xdf\\x5e\\\n\\x8b\\x41\\x07\\x01\\xc2\\xa3\\xd0\\xe6\\x1a\\x77\\x37\\x5a\\x9c\\x53\\x90\\x67\\\n\\x5b\\xfa\\x79\\xb3\\x6c\\x0c\\x57\\xc9\\xd8\\x21\\x45\\x21\\xf7\\x90\\x6f\\xe7\\\n\\x8e\\x0e\\x01\\x14\\x41\\x26\\x20\\x3a\\x5c\\x67\\xf1\\x7c\\xa7\\x20\\x22\\x1c\\\n\\x24\\x3e\\xb2\\x2c\\xa5\\x8f\\x4f\\x20\\x14\\x35\\x59\\xf2\\x4b\\x58\\x77\\xac\\\n\\xfd\\x40\\xf3\\x08\\x2b\\x12\\x8a\\x11\\xd0\\xfe\\xd4\\x3d\\x0e\\xc9\\xe2\\x91\\\n\\x25\\x92\\xd5\\x19\\x69\\x76\\x7b\\xc3\\xf9\\xe9\\xe1\\x47\\x2a\\x19\\xce\\xc4\\\n\\x90\\xff\\x00\\x13\\xf2\\x7d\\xf1\\x97\\x01\\xa8\\x23\\xae\\x6b\\x73\\x92\\xfb\\\n\\xed\\x16\\xe1\\x15\\x02\\x40\\xf5\\x1a\\x9f\\xda\\xfe\\xf7\\xcc\\x22\\x83\\x3e\\\n\\x91\\xa0\\x63\\x6f\\xce\\x7b\\xfc\\xf1\\x44\\x85\\x08\\x46\\xa8\\xb6\\x94\\xf5\\\n\\x0c\\x34\\xbc\\xf1\\x41\\x32\\xa5\\x80\\x58\\xcd\\x28\\x25\\xeb\\x95\\x9e\\x03\\\n\\x0b\\x83\\x30\\x18\\xa0\\xd1\\x21\\x92\\xee\\xc2\\xd4\\xce\\x34\\xa2\\xa0\\x8c\\\n\\x88\\xd5\\x9d\\x2e\\x28\\x90\\x41\\x0f\\xd0\\xa8\\xd8\\x07\\x30\\x07\\xd6\\x2c\\\n\\x4d\\xa7\\x31\\x24\\x1b\\xf7\\xd4\\xce\\x1e\\x1e\\x90\\xd1\\xa6\\xda\\xc1\\x1a\\\n\\x2d\\xb1\\x95\\x07\\x86\\x32\\x26\\xdb\\x8a\\x23\\x15\\x75\\xce\\x81\\x48\\x2a\\\n\\x1b\\x8a\\x05\\x4a\\xa9\\x76\\x7d\\x1a\\xcb\\xeb\\x03\\xc7\\xba\\x03\\xa8\\xe0\\\n\\xa4\\x89\\x7f\\xc9\\x27\\xd4\\x9c\\x57\\x40\\xd2\\x8b\\x17\\x81\\x79\\x4c\\xfe\\\n\\xbb\\xc7\\xca\\x34\\xa8\\x69\\x94\\xac\\xc4\\x22\\xc7\\xd5\\xdc\\x2d\\x5f\\x11\\\n\\x90\\x60\\x58\\x08\\xe8\\x71\\xe0\\xb0\\xf7\\xe2\\x9b\\x8a\\xf1\\x42\\xa4\\x61\\\n\\x46\\xbe\\xf9\\xcf\\x4f\\x91\\xcc\\xc8\\x20\\xf5\\x08\\x9e\\x8d\\x69\\x8a\\x66\\\n\\x93\\x43\\xd3\\x59\\x6a\\x2d\\xc6\\x66\\x7b\\xfb\\xb2\\x36\\x01\\x68\\x11\\x95\\\n\\x83\\xfa\\x5f\\x62\\x61\\x7d\\x7c\\x06\\x91\\x0c\\x42\\xf4\\xdf\\x6f\\xa9\\xd8\\\n\\xaf\\xe5\\xf1\\x38\\x10\\x4c\\x20\\x1d\\x36\\x58\\xfc\\x17\\xeb\\xe3\\x15\\x09\\\n\\x9a\\x93\\x39\\x5b\\xd0\\x9d\\x9f\\x18\\x79\\xad\\x05\\x59\\x0d\\x2c\\xf6\\x28\\\n\\x1e\\xcd\\x3d\\x06\\xf8\\xaa\\x08\\x11\\x22\\x03\\x7a\\x5a\\x22\\x32\\xf5\\xbf\\\n\\x3c\\xec\\xcf\\x1b\\x1c\\xbd\\x52\\x68\\xd9\\xff\\x00\\x8b\\x21\\x8b\\x35\\x38\\\n\\x4e\\x3e\\x8b\\xd6\\x36\\xfe\\x1e\\x0e\\xc0\\x50\\x13\\x46\\xa7\\x15\\x2a\\x1c\\\n\\xc4\\x42\\x96\\x54\\xc2\\xc8\\x2a\\x35\\x90\\x07\\x3b\\x6b\\xa1\\x0d\\x16\\x61\\\n\\x03\\x84\\x14\\x1c\\x18\\x0e\\x9e\\xde\\x73\\x4a\\xaf\\x6d\\x0f\\xb0\\x8e\\xbf\\\n\\xa8\\x5f\\x7c\\x91\\xa6\\xcd\\x09\\xfc\\xe8\\x34\\xe4\\x65\\xfc\\x67\\x8f\\x16\\\n\\x8a\\x41\\x04\\xaa\\xf5\\xd3\\x36\\x5b\\xab\\xd4\\xc2\\x3c\\x25\\xd5\\x27\\xe6\\\n\\x29\\x2b\\xfc\\x1f\\x1f\\xdc\\x17\\x51\\x44\\x69\\xc1\\xf6\\x9e\\x84\\x6b\\x98\\\n\\x42\\x8e\\x53\\x8a\\xaa\\xce\\x33\\x84\\xde\\xd7\\xc6\\xd4\\xc1\\x8e\\x80\\x6a\\\n\\x21\\x74\\x63\\x52\\x14\\xf0\\x8d\\x28\\x80\\x56\\xb4\\xd6\\x69\\x95\\x16\\xec\\\n\\x0e\\x92\\xc0\\x7f\\x05\\x69\\xcd\\xe7\\xcf\\x78\\x37\\x8e\\xa2\\x02\\x86\\x35\\\n\\x51\\x91\\xa9\\xfc\\x24\\x01\\x6c\\x9e\\x2b\\x7d\\x88\\x2d\\x7d\\x2e\\xbb\\x29\\\n\\xde\\x6c\\x3c\\x49\\x13\\x06\\x45\\x90\\x49\\x2a\\x5d\\xd1\\xba\\xbc\\x17\\x91\\\n\\x99\\x0f\\x56\\x88\\x9e\\xde\\x9e\\x31\\xfb\\xac\\x8c\\xaf\\x04\\x48\\x55\\xb7\\\n\\xe7\\xcf\\x29\\x1c\\x10\\x33\\x5a\\xce\\x4b\\xc3\\xf3\\x64\\x99\\xe1\\x10\\x41\\\n\\x54\\x87\\x40\\xfe\\x59\\xb5\\x38\\xdf\\xdf\\x40\\x56\\xa3\\x02\\x55\\xae\\x41\\\n\\x0c\\xf6\\x3f\\xde\\xf0\\x7e\\x89\\x29\\x00\\xce\\x69\\xef\\x9f\\xe2\\x3e\\x28\\\n\\xc2\\x83\\x00\\xc4\\x64\\x3c\\x42\\x3e\\xda\\x41\\x23\\xc1\\x45\\x7e\\x6a\\xba\\\n\\x02\\xc2\\xe5\\xe8\\xf3\\xc1\\x8f\\x90\\x32\\x03\\x7e\\x8a\\xfd\\x21\\x9a\\x98\\\n\\x8f\\x8a\\xa0\\x2c\\x9b\\x64\\x31\\x3f\\xe7\\x65\\xf9\\x95\\x2c\\x11\\x00\\x22\\\n\\x43\\x20\\xd8\\x9f\\xd5\\xd0\\x39\\xe2\\xda\\xfe\\x05\\x03\\x89\\x59\\xdb\\x55\\\n\\x5e\\x0d\\xdf\\x11\\xe0\\x2a\\xe6\\x8b\\x02\\x5a\\xa5\\x09\\xad\\xb3\\xf2\\xdc\\\n\\x21\\xb4\\x98\\x00\\xbc\\x51\\x96\\x39\\xdf\\xef\\xc5\\x94\\x8b\\x42\\x51\\x14\\\n\\x40\\xa3\\xe9\\x3e\\xe2\\xdb\\xe3\\xc1\\x20\\x4c\\x10\\xc3\\x43\\x32\\x6f\\xeb\\\n\\xaf\\x8a\\x0a\\xf6\\xa2\\xa2\\x2b\\xc1\\x14\\x6f\\x3e\\x77\\x6a\\x6d\\x67\\xa2\\\n\\xba\\x0e\\x5f\\x89\\x4e\\xf0\\xab\\x7c\\x28\\x2f\\x35\\x9c\\xe1\\xbf\\x01\\x06\\\n\\xde\\xd7\\xc0\\x8d\\xe9\\xec\\xf5\\x1f\\x86\\xe5\\xb9\\x5f\\x58\\xd9\\x00\\x00\\\n\\x54\\x88\\x85\\x9b\\x48\\x3e\\xd4\\xb8\\x06\\x8c\\x18\\x36\\xb9\\x22\\xa8\\xfc\\\n\\x71\\xb2\\xf7\\x1f\\x2e\\x25\\x00\\xad\\x14\\x2d\\xff\\x00\\x63\\x7e\\xfb\\xf2\\\n\\xf4\\x10\\x01\\xaf\\x67\\x65\\x13\\x2a\\x38\\x47\\xde\\xd4\\x50\\x48\\x55\\xd2\\\n\\xdb\\x09\\xf5\\xf6\\x23\\x7a\\x1d\\x22\\x20\\x58\\x0f\\x1d\\x39\\xd6\\x5e\\xae\\\n\\x63\\xc6\\xf4\\x64\\x80\\x6e\\x18\\xf0\\x1e\\x28\\xcb\\x27\\xea\\xa3\\xe8\\x11\\\n\\xc1\\x52\\x94\\x13\\x53\\x60\\x6d\\x86\\x00\\xc4\\x9a\\xd8\\x34\\x50\\x54\\x22\\\n\\x69\\x39\\xa8\\x47\\x1c\\x04\\xa5\\x14\\xb9\\xa3\\x49\\xd3\\x84\\x28\\x78\\x33\\\n\\xc5\\x24\\x0f\\x04\\x49\\x14\\x7d\\x0a\\xe3\\x0d\\x83\\x0a\\x24\\xbd\\x8e\\x95\\\n\\x37\\x40\\xd8\\x74\\xaf\\x83\\x39\\xfa\\x44\\xc6\\xa2\\x54\\x6b\\x40\\xa8\\x4a\\\n\\xfa\\x43\\x11\\x50\\x39\\x24\\x01\\xfd\\x37\\xed\\x4f\\xef\\xc8\\x70\\x6a\\xab\\\n\\xdc\\x1e\\x2e\\xb0\\x9f\\xe8\\xe6\\x78\\x21\\x63\\x33\\x44\\x08\\xed\\xc2\\xfc\\\n\\xf9\\x7c\\x69\\x2a\\x61\\xb8\\xc3\\xc1\\xf5\\x7d\\xb5\\xe3\\xf0\\x99\\x65\\x55\\\n\\x84\\x07\\x5e\\xdd\\x68\\x27\\xcf\\xd1\\xf0\\xfb\\x8a\\x47\\xe8\\x3b\\xef\\xe3\\\n\\xcf\\xe4\\xf8\\xf8\\xd5\\x06\\x31\\x73\\x4f\\x8f\\xdf\\xd7\\x2f\\x93\\x46\\x87\\\n\\x74\\x08\\x40\\x77\\xf9\\x83\\xe9\\xe3\\xcc\\x61\\xd4\\xbd\\xa7\\x48\\xcc\\xb1\\\n\\xff\\x00\\xf9\\x39\\xe7\\xa0\\x80\\x7b\\xb4\\x5d\\xe5\\x2f\\xf5\\x80\\xfe\\xfb\\\n\\x08\\x9f\\x96\\xfd\\xf6\\x7e\\x71\\x99\\xcf\\xa2\\x98\\x62\\xc1\\x2e\\x63\\x77\\\n\\xe9\\x3f\\x89\\x65\\xf2\\x13\\xbb\\xae\\xd6\\x33\\xd1\\x2a\\x1f\\xf2\\xf8\\xc8\\\n\\x29\\xe8\\x9a\\x5e\\x7f\\x27\\xb9\\x27\\xdc\\x9e\\x6c\\x40\\x43\\xa6\\xbe\\xba\\\n\\x95\\xda\\xd3\\xdf\\xf1\\xe2\\x2c\\x43\\x74\\xd3\\x69\\xa8\\x5b\\x7d\\xdd\\x0e\\\n\\xf8\\x8c\\x14\\x2c\\x05\\x65\\x18\\xeb\\x01\\x3f\\xa7\\xd7\\xc4\\x6a\\xc9\\x30\\\n\\x51\\x0b\\xaf\\xbc\\xde\\xb3\\xc3\\xb7\\x37\\x30\\xfb\\xd6\\x9b\\x23\\x3d\\xe1\\\n\\xb7\\xc2\\x6d\\x00\\x30\\x69\\x81\\x9e\\xfd\\x8f\\xbb\\xfd\\x3c\\x3d\\x9d\\x53\\\n\\xf1\\x34\\x71\\xa7\\x3b\\xc7\\xed\\x27\\x82\\x60\\x4d\\x19\\x5a\\x37\\x04\\x85\\\n\\xc9\\x7e\\xfc\\x3c\\x2b\\x04\\xc4\\xaf\\x7f\\xdb\\xe8\\x4f\\x7b\\x78\\x52\\x4e\\\n\\x4f\\xcb\\xfa\\x9f\\xf2\\x9e\\xf6\\xe6\\x27\\x8e\\xe1\\xd4\\x27\\xa4\\xe0\\x45\\\n\\xa8\\xbf\\x69\\x59\\x7c\\x9e\\x3d\\x08\\x94\\x6b\\x28\\x87\\x21\\xa6\\x33\\x3f\\\n\\x2a\\x61\\xa9\\x88\\x3b\\xed\\x63\\xbf\\xfc\\x48\\x8b\\x1f\\x2b\\xab\\x07\\xf9\\\n\\x19\\xd7\\x75\\xff\\x00\\x1c\\x05\\x78\\x2e\\xb3\\xb8\\xbc\\x82\\xb7\\xb7\\xfa\\\n\\xbd\\x33\\xc3\\x1e\\xce\\x4b\\x09\\xfb\\xca\\x97\\x86\\xf3\\x66\\xa0\\x93\\x8f\\\n\\x64\\xd5\\x07\\x5d\\x4c\\x28\\x20\\xba\\x78\\x21\\x4e\\x98\\xc1\\x5e\\xd5\\x2d\\\n\\x2d\\xc0\\x5f\\x63\\xc5\\x0a\\x55\\x4c\\x33\\x4e\\x0f\\xe3\\xcd\\x67\\xbf\\xac\\\n\\x43\\x2a\\x9b\\xec\\xe9\\x87\\x1c\\x67\\xf5\\xe1\\x74\\x13\\x4a\\x95\\x58\\x18\\\n\\x09\\x79\\x65\\xf4\\x4f\\x04\\x16\\x7d\\x18\\x3f\\xd2\\x1f\\xf5\\xe3\\xc0\\xea\\\n\\x7e\\x4c\\x20\\x06\\x3c\\xae\\x07\\xf0\\x4c\\x52\\xd0\\x14\\x1b\\x12\\x40\\xa6\\\n\\x6a\\x1e\\x24\\x22\\xc6\\x2a\\x25\\x9e\\xd8\\x59\\xed\\xef\\x2e\\x5f\\x27\\x31\\\n\\x8a\\x4e\\xf5\\xd3\\x1f\\xaf\\x5d\\xc7\\xa2\\xc3\\x08\\x34\\x00\\x12\\x1e\\xa6\\\n\\x90\\x91\\xfa\\x6f\\x8b\\x32\\x97\\x41\\xaa\\x27\\x7b\\xfb\\x92\\x55\\x3d\\x78\\\n\\x09\\xa9\\x64\\xd1\\x02\\x28\\x3c\\x4a\\x43\\xda\\xc3\\xc0\\xc9\\xb8\\x1b\\xda\\\n\\x7d\\xc7\\x2e\\xd3\\xfc\\xa3\\xa6\\xa3\\xac\\x4c\\x5a\\x3d\\x40\\x5e\\xea\\x82\\\n\\xcb\\xe8\\xa8\\x51\\xa0\\x88\\x39\\x1a\\x95\\x40\\x75\\x60\\x7d\\xfa\\x8b\\x40\\\n\\x97\\x29\\x56\\x25\\x88\\xa3\\x18\\x7d\\x20\\xbe\\x2a\\xe8\\xad\\xc2\\xd5\\x41\\\n\\x42\\x65\\x25\\x38\\x29\\x33\\x57\\xf0\\x96\\x16\\xba\\x44\\x7d\\x5f\\x69\\x82\\\n\\x2b\\x00\\x26\\x6d\\x1b\\x57\\x32\\xf5\\x33\\xed\\xc9\\x24\\x03\\x94\\x60\\x28\\\n\\x23\\x94\\x07\\xba\\xfd\\xf1\\x40\\xe9\\x00\\x95\\xec\\x4f\\x0c\\xd9\\x18\\xa7\\\n\\x28\\xa0\\xae\\x1b\\x5e\\xdf\\x6a\\x91\\x70\\x72\\x70\\x02\\xf9\\x52\\xff\\x00\\\n\\xe0\\xa0\\xc0\\xa1\\x05\\xff\\x00\\xdd\\xd8\\xac\\x28\\x46\\xa4\\x83\\x4c\\x18\\\n\\x6e\\x60\\x22\\x7e\\x6f\\x80\\x94\\x9c\\x17\\xeb\\x48\\x85\\x26\\xb4\\x3f\\x2d\\\n\\x70\\xab\\x42\\x0a\\xc6\\x22\\x86\\x08\\xf0\\xe7\\xe3\\xc0\\xcb\\xd0\\x54\\x0a\\\n\\x28\\xbc\\x23\\xa8\\x9a\\xd5\\x83\\x3c\\xb6\\x41\\x5f\\x80\\xf5\\xa7\\x41\\xbb\\\n\\x5c\\xf4\\xed\\xb3\\x1c\\x01\\x10\\x38\\x3f\\x6a\\x14\\xa2\\x37\\xbe\\x61\\x54\\\n\\x43\\x00\\xdd\\xe8\\x2d\\x4c\\x9a\\xef\\xba\\x2a\\x16\\xe2\\x44\\x8d\\xd6\\xab\\\n\\x06\\x96\\x2a\\x40\\x9e\\x1c\\x0c\\x20\\x1f\\x06\\xe2\\x97\\xdb\\xdc\\xb6\\x94\\\n\\x72\\x68\\xbc\\xf6\\xea\\x81\\x82\\xe9\\x1e\\x48\\x6b\\xe5\\xd8\\x01\\x94\\x06\\\n\\x4f\\x57\\xb7\\x7f\\xe8\\xa5\\x71\\xd0\\xfe\\x80\\x82\\x71\\x11\\x86\\x5e\\x21\\\n\\x2f\\x8a\\xe2\\x3c\\xca\\x14\\x1d\\xa4\\x7f\\x8c\\x01\\xf7\\xe2\\x30\\x12\\x25\\\n\\x68\\x0b\\xfd\\x00\\x7e\\x7d\\x69\\xe0\\x2e\\xa4\\x91\\x69\\x38\\x4b\\x5e\\x25\\\n\\xc2\\xde\\xae\\xf9\\x15\\x60\\x13\\x6b\\xac\\xf5\\xff\\x00\\x98\\x40\\x35\\x9e\\\n\\x50\\x20\\x8b\\x10\\x99\\x13\\xd2\\xee\\x64\\xf7\\xfe\\x3c\\x40\\xca\\x69\\x70\\\n\\x28\\xe9\\x7f\\xd7\\x07\\xf7\\x0c\\xf1\\x9b\\x7a\\xaa\\x4f\\x66\\x38\\x0e\\xf1\\\n\\x7a\\x79\\x7e\\x98\\x53\\x52\\x24\\x29\\xb6\\x61\\x97\\xfc\\xc1\\x46\\x8f\\x89\\\n\\x74\\x21\\x73\\x7b\\xc5\\xe7\\xdf\\x1a\\x29\\x21\\x17\\x43\\x45\\x38\\xf1\\x0e\\\n\\xff\\x00\\x61\\x14\\x08\\x0b\\x05\\x29\\x99\\xf3\\xeb\\xfd\\x77\\x7c\\xa8\\xe0\\\n\\x41\\x8e\\xee\\xe8\\x49\\xfd\\x6d\\xfd\\xf1\\x1b\\x43\\x48\\x95\\x11\\xc9\\x88\\\n\\x13\\x54\\x9f\\xf2\\x02\\xda\\x09\\x5b\\x0a\\xa4\\x8e\\x00\\xb3\\xa8\\xd4\\x94\\\n\\x44\\x65\\xc4\\x34\\x58\\xb8\\x34\\xed\\x5f\\xe2\\x5f\\x12\\x1a\\x91\\xae\\xb7\\\n\\x65\\x50\\x6c\\xf5\\xfc\\xea\\x0a\\xe0\\x47\\x44\\x1a\\x1b\\x78\\x9e\\xf5\\xe4\\\n\\xd4\\xf4\\x9d\\xa1\\x34\\x85\\xc9\\x9e\\xeb\\xee\\x29\\xa2\\x9a\\x22\\x57\\x00\\\n\\x5a\\x75\\xf4\\x85\\x31\\xf7\\x7c\\x27\\x88\\x8d\\x15\\xd4\\x81\\x45\\x6d\\x4a\\\n\\xb6\\x38\\x4d\\x50\\x82\\x00\\x69\\xd5\\xa4\\x98\\x05\\x36\\x88\\x87\\x91\\xc0\\\n\\x4a\\xb5\\x34\\x06\\x94\\xa0\\x9c\\x23\\x56\\x93\\x09\\xb8\\xb1\\xec\\x6f\\xb5\\\n\\x43\\x12\\x22\\xe9\\x63\\x3c\\x7e\\x01\\xb0\\xdd\\xf7\\x09\\x26\\xba\\x8e\\x6f\\\n\\xe7\\x86\\x00\\xad\\x39\\x38\\x26\\xdd\\xc7\\xf2\\xe8\\x6f\\x94\\x4d\\x28\\x96\\\n\\x47\\x65\\x9d\\xd7\\xee\\xe6\\xfb\\x52\\x18\\x14\\x23\\xa1\\x27\\x3f\\x7a\\xfe\\\n\\x17\\xb4\\xc0\\x49\\x22\\x01\\x44\\x5e\\x29\\x04\\xe0\\xa3\\x08\\x09\\x52\\xb8\\\n\\x12\\x22\\xcf\\x6c\\x7a\\xbf\\xb7\\x5f\\x14\\x00\\xa0\\x30\\x5e\\x9a\\x27\\xbf\\\n\\x9f\\x37\\x96\\xf8\\x2c\\x91\\x19\\xab\\xd9\\xd3\\xeb\\x27\\xf5\\x9f\\x58\\x28\\\n\\x80\\xb0\\x2b\\xc7\\x14\\x55\\xe6\\x4e\\x0d\\xf0\\x00\\xba\\x68\\xef\\x1f\\xe3\\\n\\xe7\\x3c\\x4c\\xe5\\x87\\x8b\\x4f\\xab\\xb7\\xee\\x7d\\xe6\\xf8\\x63\\xb0\\xd4\\\n\\x55\\x85\\x4d\\x90\\x9b\\x6e\\x53\\x24\\x99\\x12\\xa8\\x57\\x26\\xeb\\xc5\\xcc\\\n\\xe7\\xc7\\x71\\xe1\\x08\\x69\\x8f\\xba\\x49\\xfa\\x42\\xd6\\x37\\xc2\\x5a\\xe2\\\n\\x50\\x00\\x69\\x43\\x89\\x7e\\x7d\\x7b\\xe0\\x4b\\x2d\\x95\\x11\\x94\\xa2\\x97\\\n\\x0f\\x5c\\xe1\\xe3\\x50\\xb4\\xa0\\x02\\xe9\\x8d\\x1f\\x6c\\x06\\xb9\\x23\\x05\\\n\\x18\\xd3\\xaf\\x7d\\x29\\x87\\xcc\\x3f\\xc7\\x86\\xd0\\x55\\x48\\x11\\x3e\\xef\\\n\\x02\\xf1\\x0e\\x67\\x7c\\x3f\\x81\\x37\\x82\\xfb\\xc3\\x29\\x10\\x56\\x37\\x2f\\\n\\x84\\x9e\\xd0\\x18\\x22\\xe0\\x08\\x4d\\xac\\x55\\x16\\xf9\\x2d\\x45\\x0c\\x27\\\n\\x27\\xf0\\x83\\xc1\\x5f\\x8f\\x88\\x0a\\x04\\x46\\xa8\\x0b\\x54\\x60\\x50\\xbd\\\n\\x5d\\x5f\\x00\\x24\\x64\\x5d\\xc5\\x3b\\x04\\x10\\xaf\\xc7\\xf5\\xd4\\xa2\\x88\\\n\\x87\\x40\\x11\\xba\\x76\\x16\\xf1\\x31\\x43\\x11\\xda\\xbe\\x9a\\x5a\\xd7\\xd9\\\n\\xec\\xf6\\xf9\\x89\\x92\\x03\\x6e\\x42\\x38\\x0f\\xbf\\x5f\\x30\\x77\\xcd\\x52\\\n\\x00\\x77\\xa1\\xc9\\x0c\\xff\\x00\\x3f\\xe0\\xf2\\x83\\x25\\x9c\\x41\\xfa\\xdb\\\n\\x99\\x6e\\xf7\\xd0\\xf8\\x84\\x45\\x81\\x04\\x2a\\x02\\xed\\x6a\\x98\\x6b\\xfb\\\n\\x8b\\x77\\x50\\x0a\\x01\\x0f\\x1a\\x81\\x65\\xd5\\xc7\\xc4\\x91\\xf2\\x84\\x19\\\n\\xc1\\x01\\x75\\x08\\x22\\xa3\\x79\\x5a\\x54\\x01\\x42\\x5d\\x64\\x06\\x12\\x02\\\n\\x78\\x8a\\xad\\x2a\\xb0\\x84\\xc0\\x81\\x65\\x4a\\xba\\x01\\x4a\\x57\\x45\\x4a\\\n\\x81\\x5a\\xfa\\x35\\x3e\\x73\\xd7\\x92\\xba\\x41\\x08\\xe8\\xf4\\x86\\x2c\\xac\\\n\\x30\\xed\\xac\\x80\\x95\\x10\\x04\\xb5\\x00\\x32\\x18\\x9f\\xdf\\x3a\\xcf\\x09\\\n\\x9a\\x40\\xe4\\x2b\\x06\\x10\\x38\\xd2\\xbc\\x13\\xef\\x85\\x40\\x91\\x17\\x02\\\n\\xc0\\xbd\\xc5\\xeb\\xfe\\xf7\\xca\\xbe\\x24\\x66\\xe2\\x83\\x4f\\x89\\x4f\\x97\\\n\\x86\\x55\\xc5\\x01\\x15\\x6b\\x8a\\x4b\\x73\\xbd\\x71\\x82\\xd6\\xb3\\x5c\\x00\\\n\\x22\\xa0\\xf6\\x10\\x2b\\xac\\xe2\\xe9\\xe5\\xa2\\xad\\x46\\x02\\x2f\\xc3\\x3e\\\n\\xe2\\xac\\x27\\x7c\\x62\\xe2\\x11\\x19\\xac\\x16\\x7f\\x30\\x7d\\xfa\\x2f\\x82\\\n\\x07\\xdd\\x55\\xf7\\xfd\\x7c\\x16\\x7a\\x3f\\xe7\\xc2\\x05\\x4e\\x57\\xd1\\x81\\\n\\x7e\\x3d\\x81\\x8f\\xb0\\x20\\xa9\\x06\\x25\\xc7\\x27\\xbd\\xf6\\x7e\\xb7\\xd2\\\n\\x79\\x0d\\xc8\\x20\\x56\\xaa\\xe8\\x87\\x1d\\x3f\\xc4\\x89\\x48\\x76\\xd1\\x28\\\n\\x14\\x01\\x35\\x0c\\xd0\\xdc\\x72\\xc0\\x40\\x8d\\x80\\xd3\\xf2\\xfc\\xfc\\xe8\\\n\\x9f\\x8c\\x8c\\x2d\\x52\\x4f\\xf8\\x6f\\x7f\\x9d\\x96\\xcf\\x05\\x9d\\x06\\xc0\\\n\\xc4\\xc8\\x9c\\xb0\\xe9\\xfe\\x04\\x0a\\x98\\x8d\\x21\\x2a\\x3d\\x25\\xb7\\xd1\\\n\\x5d\\x66\\xbe\\x0c\\x8d\\x32\\x2b\\x01\\x01\\x02\\x51\\x27\\xb1\\x57\\xa3\\x44\\\n\\xaa\\x58\\x88\\xac\\x0b\\x8c\\x6a\\xb1\\xfc\\xab\\x3c\\x21\\xe8\\x14\\x1d\\x6f\\\n\\x40\\xa1\\xaf\\xee\\xbe\\x9e\\x2e\\xc0\\x27\\x08\\x50\\x98\\xe2\\x7e\\x8e\\x37\\\n\\x5f\\x1e\\x0e\\x35\\x84\\x11\\x8c\\x0b\\x8d\\xc9\\xf7\\x57\\xc2\\x91\\x6f\\x60\\\n\\xd4\\xc0\\xa8\\xb5\\x6f\\xce\\x7a\\x67\\x86\\x4e\\x0a\\x14\\x0d\\x06\\x0f\\x7d\\\n\\x82\\x63\\x3d\\x3b\\x54\\x94\\x8b\\x61\\x64\\x72\\x40\\xde\\x17\\x19\\xd5\\x47\\\n\\xc5\\xad\\x01\\x76\\x6a\\x01\\x5b\\x80\\x51\\x8b\\xed\\x8a\\xd1\\x06\\x10\\xa8\\\n\\x0b\\x8a\\x3b\\x4c\\xd4\\x4f\\x5a\\x6b\\x8a\\x6a\\xa4\\x0b\\xf8\\x71\\xd8\\xb2\\\n\\x56\\xd1\\x00\\x8a\\x08\\x28\\x24\\xae\\x7e\\x62\\x61\\xfa\\xec\\x7c\\xa3\\x05\\\n\\x40\\x06\\xce\\xfe\\xc8\\x72\\xfe\\x71\\xef\\x84\\x1b\\x21\\x20\\xab\\x47\\x98\\\n\\x74\\x6d\\x4c\\xf6\\xfb\\x55\\x2b\\x40\\xc7\\xb3\\x09\\xdb\\x91\\xa6\\x3d\\x7e\\\n\\xa0\\x3a\\xb8\\xbf\\xb0\\xce\\x7a\\x9f\\xf5\\xeb\\x12\\x96\\x71\\xd2\\x3d\\xc9\\\n\\xc3\\xdf\\xb7\\x7f\\x9f\\x0a\\x3f\\xe4\\xb0\\xd3\\x82\\x54\\x27\\x48\\xae\\x37\\\n\\xc6\\xac\\x0d\\x75\\x0b\\x2e\\x58\\x7f\\x9f\\x57\\x7b\\xe3\\x1e\\xbf\\xd3\\x7f\\\n\\x58\\x3a\\xff\\x00\\x97\\xbe\\x4b\\xa5\\xd3\\x68\\xcd\\x11\\x1f\\x5f\\x53\\xd0\\\n\\xe9\\x83\\xe4\\xba\\x8a\\x08\\xd2\\x08\\x53\\xa5\\xec\\xef\\xf6\\xaa\\x10\\x24\\\n\\xa4\\xe5\\xdc\\x2f\\xe0\\xec\\xf5\\x31\\x7c\\xbc\\xb6\\x57\\x5d\\xcd\\x72\\x4b\\\n\\x31\\xa7\\x19\\xc0\\xf3\\x5b\\x99\\x17\\xd3\\x80\\xd0\\x76\\x27\\xbb\\xec\\x1b\\\n\\xb6\\xae\\x21\\x7a\\x36\\x1b\\xf2\\x7a\\x9b\\x08\\xd7\\xd6\\xc6\\x61\\x46\\x2a\\\n\\x16\\xe2\\x13\\xfa\\x78\\x3b\\xb5\\x07\\x28\\x22\\x3d\\x37\\xf7\\xfe\\xb5\\x73\\\n\\xc0\\x4e\\x40\\x63\\x2f\\xad\\x71\\x5c\\x8c\\x8d\\x9b\\xdf\\x19\\x85\\x0a\\x25\\\n\\x6d\\xeb\\xd1\\x12\\xfb\\x27\\x6a\\x79\\x8e\\xde\\x00\\xcc\\x89\\x6f\\x08\\x7b\\\n\\x13\\x1d\\x10\\xa0\\xfd\\x26\\xd6\\x6f\\xa7\\x55\\xa1\\x02\\x1f\\x16\\xc8\\x9f\\\n\\xb5\\x7f\\x94\\x56\\xa1\\x2f\\x53\\xf1\\xd6\\x8f\\x69\\x4f\\x72\\x48\\x44\\x65\\\n\\xae\\x3d\\x3d\\x77\\x64\\x1c\\x07\\x13\\x57\\x02\\x9a\\x38\\xde\\x8b\\x5c\\x7c\\\n\\xdd\\xd6\\xa3\\x97\\xb4\\x17\\x86\\x77\\xd7\\x0d\\xd0\\x02\\x00\\x3e\\xa2\\x21\\\n\\xef\\x61\\x2f\\xbe\\x7e\\xfb\\xf0\\xa8\\x91\\x35\\x80\\xf3\\x98\\x3f\\xd1\\xf6\\\n\\xf7\\x9e\\x30\\x05\\x08\\xb4\\xb7\\xd9\\x52\\xff\\x00\\xf3\\xd5\\xa9\\xe0\\x79\\\n\\x03\\x41\\x92\\x8a\\x4c\\xc7\\xfc\\x4f\\xf1\\xe4\\x1a\\x28\\x78\\xec\\x52\\x12\\\n\\x40\\xba\\x03\\x8a\\x84\\x28\\xd7\\xa4\\x01\\x29\\x2d\\x49\\xd6\\x87\\x77\\x7c\\\n\\x2f\\xad\\x48\\xe8\\xd6\\xb5\\xa7\\x9b\\xe8\\xcb\\x25\\x50\\x62\\x02\\x90\\x40\\\n\\x29\\x88\\x07\\xa7\\x51\\x4e\\x78\\x0c\\x0d\\x6f\\x1e\\x06\\x8b\\xd6\\x7e\\xe8\\\n\\xe1\\xe5\\x7a\\x2a\\x38\\x60\\x06\\x97\\xd3\\xea\\xe6\\x8f\\xa9\\xe1\\xae\\x0f\\\n\\x2a\\x62\\x58\\xcf\\xcf\\xbf\\xc3\\x4f\\x64\\x3b\\x41\\xec\\x82\\x0b\\xa6\\x73\\\n\\xf8\\x93\\xdf\\xeb\\x95\\x0b\\x4b\\xb2\\x3b\\x1f\\x9f\\xfb\\xe9\\xf0\\xe0\\x45\\\n\\x04\\x49\\x52\\x66\\xe3\\x7d\\xe5\\xbc\\x36\\x31\\x67\\x4c\\xb5\\xf5\\xa5\\xa1\\\n\\xd7\\xff\\x00\\x73\\xc0\\x30\\xd3\\xcf\\x3d\\x9d\\xc6\\x30\\x6e\\xbb\\xef\\xc0\\\n\\x42\\x69\\x0f\\x6e\\xce\\x9a\\xc9\\x9b\\x37\\xea\\x3e\\x01\\xb6\\x11\\xe8\\x30\\\n\\x35\\xfb\\x09\\x37\\x1e\\x0d\\x88\\xc3\\x6b\\x70\\xbf\\xd7\\xde\\xdb\\x02\\x0b\\\n\\x79\\xe9\\x88\\x0b\\x50\\x06\\xf5\\x09\\x8f\\xdd\\x3f\\xe6\\x3e\\x0e\\x31\\x2c\\\n\\x3d\\xa2\\x69\\xce\\x26\\xca\\x0f\\xcf\\x60\\x80\\x44\\x03\\xde\\xaa\\x33\\x69\\\n\\x2e\\x42\\xa1\\x85\\xf0\\x5b\\x7e\\xb4\\xf4\\x7d\\x66\\x83\\x33\\x7a\\x4b\\x6f\\\n\\x85\\xe9\\x20\\x53\\xe8\\xae\\xd6\\x4e\\x5d\\x6d\\x69\\xb9\\x91\\xf1\\xbd\\x3b\\\n\\x26\\x99\\x22\\xcf\\xf6\\x99\\xe6\\xb4\\xd5\\xac\\x16\\x0e\\x1b\\x57\\x3a\\x67\\\n\\x6c\\x78\\x4f\\x01\\x5a\\xa3\\x19\\xfb\\x0a\\xfc\\xff\\x00\\x13\\xd9\\xda\\x0a\\\n\\x2e\\x21\\xf2\\x12\\x07\\x7a\\x7d\\x9f\\xcf\\x82\\x97\\xa4\\x51\\xeb\\xf9\\x15\\\n\\x27\\xae\\x74\\x28\\xf9\\xe9\\x70\\x81\\x58\\x65\\xaf\\x1a\\x91\\xfe\\x2d\\x73\\\n\\x7c\\x81\\x17\\x64\\x56\\xb5\\x3b\\xcf\\x45\\x70\\x8f\\xae\\xf8\\x18\\x6b\\xc4\\\n\\x03\\x58\\xef\\xab\\x4e\\xe7\\xa8\\xba\\xf9\\x2c\\x57\\x0b\\x34\\x13\\x92\\x64\\\n\\xe5\\x3d\\x24\\x0a\\xbe\\x0a\\x83\\x7a\\xce\\x7a\\xff\\x00\\xb3\\x6b\\xb3\\xd2\\\n\\xf4\\xfe\\x92\\xbb\\xfa\\xff\\x00\\x0d\\xbb\\xc4\\x97\\xdf\\x91\\x61\\xed\\x26\\\n\\x1d\\x22\\x27\\x12\\xcc\\x7a\\xcd\\xe7\\x9a\\xf9\\x14\\x12\\xc2\\xfa\\x2b\\x14\\\n\\xf8\\x60\\x49\\x3c\\xd0\\xa0\\x31\\xe9\\x45\\xde\\x16\\x6e\\x6f\\xa7\\x24\\x7c\\\n\\x21\\xd4\\x36\\xc8\\x43\\xb4\\x89\\x97\\x8f\\xfa\\xdf\\x38\\x02\\x54\\x28\\x45\\\n\\x83\\x5b\\xc6\\x39\\xf4\\xd7\\xab\\x90\\x02\\x5f\\x4d\\xd3\\x1f\\xcb\\xff\\x00\\\n\\x35\\xe9\\x11\\x5a\\x80\\x3c\\x0b\\x92\\xde\\xd1\\x56\\xc3\\x4b\\x72\\x07\\x54\\\n\\x65\\xbd\\x4f\\x87\\xf0\\x6e\\xb9\\xee\\x3e\\x0e\\x26\\xde\\xb3\\x9e\\xff\\x00\\\n\\x8f\\x7f\\xe3\\x2b\\x3c\\xd2\\xb4\\x62\\xc3\\x6a\\x71\\xf5\\xb7\\x0f\\xff\\x00\\\n\\x7c\\x1e\\xbb\\xbb\\xd6\\x03\\xf1\\x27\\xf1\\x9c\\xc9\\x7c\\x7d\\x00\\x3e\\x94\\\n\\xff\\x00\\x80\\x3c\\x58\\x04\\xb2\\xb5\\x36\\xfb\\x91\\xbb\\xb6\\x8d\\xfd\\x8f\\\n\\x12\\x1a\\x06\\x72\\x15\\xea\\xed\\x9f\\xd8\\xa2\\x4f\\x19\\x46\\x52\\x21\\xb4\\\n\\x45\\x0d\\x38\\xde\\xff\\x00\\x7e\\x63\\x3e\\x46\\xcd\\x48\\xe1\\x8f\\x57\\xde\\\n\\xb3\\x93\\xc7\\x74\\x09\\x64\\x1b\\x5b\\x97\\xf3\\xe8\\xef\\xbb\\xe2\\x72\\xd0\\\n\\xc7\\xb1\\xa1\\x71\\xcf\\x1f\\x8b\\x3a\\x45\\xe3\\xa4\\x21\\xc5\\x43\\x42\\x50\\\n\\xf3\\x66\\x92\\xc2\\x38\\x81\\x4a\\x81\\xf4\\x92\\xb9\\xf8\\xe1\\x87\\x8b\\x8a\\\n\\xb6\\x18\\x8a\\x00\\x17\\xda\\x32\\x71\\x27\\x98\\x90\\x4e\\xa5\\xbb\\xf7\\xaf\\\n\\xdf\\x76\\xaf\\xa3\\xc2\\xad\\x31\\x89\\x78\\x4d\\xd2\\xd2\\x4a\\x1e\\xd7\\x3c\\\n\\x15\\x35\\x07\\x85\\x58\\x0c\\x96\\xb9\\x64\\xfb\\xd1\\xf0\\x5c\\x87\\x4b\\x1f\\\n\\x61\\xe0\\x73\\xd7\\xea\\x15\\xf2\\xb1\\x36\\xb5\\x2b\\x79\\xfa\\x70\\x76\\xce\\\n\\x1e\\x63\\xa4\\x91\\x40\\x05\\x04\\x53\\x0f\\x45\\xe7\\xbb\\xe0\\xaa\\x40\\x56\\\n\\xab\\xd8\\x54\\xbf\\x9a\\xf4\\xc7\\x84\\x40\\x80\\x02\\x19\\x38\\x7e\\xb1\\xdf\\\n\\x52\\x17\\x7c\\x0d\\xe0\\x64\\x81\\x91\\x77\\x97\\xd6\\xee\\x64\\xf7\\xe1\\xc3\\\n\\xee\\xb5\\x80\\xe3\\xd9\\x22\\xfd\\x8c\\xeb\\xdf\\x38\\x01\\x45\\x73\\xba\\x8f\\\n\\xb1\\xe3\\xf9\\x08\\xf9\\x43\\xb3\\x15\\x14\\x45\\x08\\xaa\\x25\\xf8\\x00\\x1d\\\n\\x16\\xb9\\x0e\\xaa\\x55\\x0b\\x0a\\xc0\\xe8\\x14\\xb5\\x81\\x30\\x19\\x00\\x5f\\\n\\x9b\\xc7\\xa8\\x99\\x55\\x1d\\x78\\x33\\x00\\x1a\\x08\\x15\\x14\\x68\\x9d\\x01\\\n\\xcf\\x53\\xc5\\xb6\\x65\\xd0\\x15\\x00\\x6b\\xc6\\xfc\\xdb\\xec\\x64\\x90\\xda\\\n\\xbb\\x16\\xaa\\x8a\\x5a\\x94\\x88\\x82\\xc7\\xc5\\xc6\\x40\\x82\\x88\\x7f\\x58\\\n\\xea\\x96\\xc8\\x13\\xd7\\x95\\xaf\\x71\\x3d\\x88\\xed\\x16\\x74\\xf8\\x7f\\x5e\\\n\\xfc\\x89\\xa0\\x6a\\x41\\xc1\\x89\\x4e\\xab\\xfc\\xb3\\x14\\x3c\\x1d\\x73\\x06\\\n\\x83\\xa5\\xc9\\x37\\x87\\xf4\\x67\\xf2\\x3a\\x10\\xa7\\x6a\\xbf\\x1d\\x38\\xbe\\\n\\x7e\\x5d\\x7c\\xa8\\x08\\x2e\\xeb\\x55\\xe4\\x56\\x9d\\xc7\\xd1\\x0f\\x7e\\x53\\\n\\xf6\\xa9\\x4a\\x4f\\x46\\xe3\\x2f\\x26\\x1c\\xf8\\xc8\\xca\\x0c\\x40\\x82\\xc9\\\n\\x72\\xf3\\x2b\\xeb\\x43\\x29\\xe6\\x7d\\xad\\x39\\xd7\\xba\\x7c\\x2e\\xf7\\xd3\\\n\\xf7\\xc4\\xd8\\x80\\x00\\x2e\\x24\\xb6\\x4d\\x3d\\xee\\x23\\xf3\\xc4\\x25\\x07\\\n\\x46\\x3d\\xe4\\xbd\\x6e\\x53\\x6f\\xae\\x04\\x85\\xac\\xfe\\x74\\xbe\\xe6\\xf3\\\n\\xe3\\x3f\\x5f\\x1d\\x00\\xb6\\x59\\xc6\\x4d\\x8b\\x5e\\x2e\\x2d\\xf0\\xc1\\x48\\\n\\x10\\xa7\\x1a\\x2c\\x8d\\x8a\\x33\\x2e\\x59\\xe0\\x8f\\x98\\xa4\\x25\\xd1\\x13\\\n\\x21\\x89\\xdd\\xfe\\xc0\\x68\\xe4\\xe0\\xdf\\xa7\\x36\\x50\\xf4\\x7a\\xf9\\x3c\\\n\\x36\\xb2\\x36\\x85\\xdb\\xc6\\xff\\x00\\x32\\xbe\\xfe\\x96\\x78\\x2c\\xdc\\x46\\\n\\x36\\xe8\\xf0\\x78\\x53\\xff\\x00\\xb9\\xe3\\x88\\x32\\xbf\\xcb\\xed\\x67\\x7f\\\n\\xc7\\x3f\\x88\\x34\\x32\\x4f\\xf3\\x17\\x97\\xd3\\xef\\x3f\\xc3\\xe2\\x81\\xc4\\\n\\xcb\\xd5\\xd6\\x6e\\x08\\xca\\xcd\\x92\\xc7\\xc6\\x5c\\x18\\x02\\xa0\\x7e\\x82\\\n\\x97\\x34\\x62\\xa3\\xc2\\xa0\\xda\\x88\\xec\\xe1\\xd2\\x89\\x27\\xaf\\xbe\\xfc\\\n\\xab\\x8a\\xcf\\xe7\\x3f\\xe7\\xfe\\xbc\\x8a\\x9e\\x9a\\x0b\\xa3\\x74\\x44\\x9e\\\n\\xef\\xd0\\x1e\\x31\\xc5\\x2b\\xd0\\x0d\\x58\\x55\\xcf\\x61\\x04\\xf5\\x4f\\x1d\\\n\\x19\\xea\\x1a\\x1a\\x4a\\x12\\x95\\xea\\x54\\x2e\\x09\\x7c\\x49\\x18\\x55\\xd4\\\n\\x74\\x9a\\x44\\xc2\\xce\\x45\\xe4\\x2f\\x99\\xe8\\x89\\x2d\\xa6\\x37\\x53\\x76\\\n\\x53\\xdb\\x7d\\xf8\\xa5\\xcb\\x22\\x5c\\x7e\\x06\\x4d\\x5c\\x34\\x19\\xb5\\x22\\\n\\xc0\\xe2\\x28\\x9d\\x08\\xb2\\x21\\x88\\xf7\\xec\\x23\\x97\\x1d\\xdb\\x43\\x8b\\\n\\x06\\xef\\x5b\\xf7\\x79\\xe5\\x9e\\x94\\x55\\xd0\\xef\\xe1\\x39\\x7e\\xf8\\xa3\\\n\\x16\\x15\\xfc\\x0d\\xb4\\xb7\\xbf\\xbc\\xb4\\xef\\x93\\x06\\xc8\\x5b\\x8f\\x67\\\n\\xc6\\x1c\\xdf\\xb9\\xeb\\xc5\\x4e\\xf0\\x7f\\x83\\xbd\\xbf\\xc6\\xfb\\xf0\\x5d\\\n\\x0f\\x2b\\x80\\x3e\\x91\\xb3\\x41\\xc2\\x1d\\x9b\\xfb\\xf8\\x91\\x38\\x80\\x34\\\n\\x28\\xab\\xed\\xbf\\xf0\\xfc\\x80\\x66\\x25\\x02\\x0e\\x97\\x4b\\xb4\\xe9\\x38\\\n\\x3e\\xec\\x60\\x7f\\xf7\\x23\\xfb\\xe6\\x1d\\xdc\\x1b\\xfd\\x30\\xa8\\x23\\x85\\\n\\x22\\x38\\x84\\x32\\xf3\\x09\\x4b\\xe7\\x00\\x3b\\x17\\xa7\\xd1\\xe8\\x9d\\x55\\\n\\xcb\\x7c\\x81\\x29\\x44\\x40\\x18\\x57\\xd2\\x4d\\xe2\\x65\\xa9\\x11\\x41\\xc0\\\n\\x8d\\x05\\xf4\\x11\\x7d\\xff\\x00\\x56\\x07\\x3c\\x28\\x8f\\xd4\\x87\\x4c\\x14\\\n\\x40\\xda\\x29\\xb9\\xe2\\x80\\x00\\x84\\x8c\\x51\\x7c\\x40\\x0e\\x74\\x5e\\x40\\\n\\xf0\\xc1\\x70\\xe0\\xd9\\x14\\xa6\\x6d\\x96\\x67\\x47\\x38\\xf9\\xb3\\x76\\x62\\\n\\xea\\x7e\\x3c\\x44\\x89\\xd8\\x0e\\x77\\xc1\\x99\\x21\\x1e\\x8a\\xfa\\x35\\x79\\\n\\x5d\\xaf\\xe7\\x0d\\x1d\\x28\\xc1\\x24\\x1d\\xb1\\xef\\x79\\xad\\x3d\\x57\\x98\\\n\\x6d\\x45\\x87\\x22\\x10\\x7a\\xef\\xd3\\xf8\\x0d\\x24\\xcb\\x95\\x6a\\xba\\xf4\\\n\\x12\\xc0\\x2a\\x81\\x11\\x03\\xa2\\xc4\\x3d\\xb8\\x55\\xdd\\x59\\x0d\\x97\\x6e\\\n\\x0c\\x50\\x09\\xe8\\x04\\x46\\x6d\\xc1\\x48\\xad\\xf0\\xc5\\x19\\x45\\x41\\x50\\\n\\x00\\x8a\\x82\\xa9\\x88\\x9a\\x57\\x84\\xe9\\xaa\\x83\\x40\\xd4\\x00\\x28\\x94\\\n\\x16\\xe0\\x57\\x30\\xce\\x07\\x05\\xb4\\x5e\\xc6\\xb0\\x8f\\x11\\xb5\\x6e\\xe3\\\n\\x32\\x4a\\x04\\x16\\x00\\x56\\x91\\x85\\x5f\\x00\\x03\\x55\\x58\\x06\\x00\\x2c\\\n\\xa2\\xe5\\xf6\\xd5\\x74\\x52\\x0c\\x60\\x1c\\xce\\xf3\\x5c\\x3d\\x4a\\x44\\x47\\\n\\xc4\\x84\\xd4\\x3f\\x46\\x27\\xaf\\x67\\xcc\\x75\\xf0\\x50\\x83\\x2a\\xbf\\xc8\\\n\\x44\\xeb\\x0c\\x42\\x8e\\xf9\\x06\\x96\\x02\\x82\\x9f\\xa2\\x41\\xf8\\xc4\\x4c\\\n\\xe0\\xfd\\x92\\xa9\\x04\\x1b\\x5b\\x36\\xab\\x90\\x7a\\x95\\xc0\\x36\\x80\\xc2\\\n\\x03\\xd0\\x45\\x2f\\x5a\\xbe\\xbd\\x1e\\x00\\x98\\xaa\\x9f\\xc3\\xd6\\xc8\\xdf\\\n\\x5d\\xfc\\xf2\\x8e\\x9e\\xe0\\xe1\\x6f\\x55\\x4f\\xdc\\xde\\x54\\xcf\\x0d\\x22\\\n\\x48\\x0a\\x95\\x50\\xa3\\xa9\\x36\\xcf\\xad\\x34\\xf0\\x04\\xaa\\x83\\xc4\\x8c\\\n\\x3f\\x1e\\xd3\\xf8\\xf4\\xc3\\xc1\\x65\\xeb\\x8e\\x03\\x85\\x1f\\xb7\\x7e\\x9d\\\n\\x4d\\xf1\\x92\\xf1\\x10\\xfc\\x80\\x51\\x0a\\xe9\\xcf\\xbf\\x91\\xd0\\x4b\\x0c\\\n\\x09\\x56\\x1a\\x94\\x29\\x1e\\x00\\x57\\xca\\x6a\\x2b\\x6b\\x60\\xa0\\x45\\x58\\\n\\x4d\\x95\\x8e\\x74\\x58\\x46\\xea\\x2a\\xfe\\x69\\xb3\\xf3\\x5c\\x90\\xf1\\x84\\\n\\x68\\x20\\x84\\x00\\x16\\x09\\x17\\x99\\xcb\\xcf\\x19\\x8d\\xc4\\xb0\\x51\\x44\\\n\\xd8\\x4e\\x15\\x18\\x91\\xb2\\x6c\\x75\\x2f\\x00\\x99\\xeb\\x9f\\x7f\\x53\\xd7\\\n\\x82\\x06\\x42\\xd4\\x50\\x73\\xd3\\x43\\x8f\\xff\\x00\\x8b\\x9f\\x89\\x01\\xe9\\\n\\x07\\xda\\x47\\x52\\x43\\xdf\\x8c\\xe1\\x86\\x7b\\x69\\x2d\\x3d\\xbb\\xe8\\x07\\\n\\xf8\\x09\\xe3\\x75\\x0d\\x0d\\x20\\xfd\\x4b\\x73\\xe3\\xbf\\xe3\\xc6\\x74\\x21\\\n\\x3b\\x74\\xe9\\x5a\\x6f\\x47\\xdf\\xef\\x7c\\x98\\xea\\xd1\\xbe\\x9b\\xcf\\x5a\\\n\\xf3\\xd7\\xbd\\x03\\xc3\\x3e\\xd0\\x01\\x9a\\xaa\\x5e\\xc3\\x57\\x0d\\xbd\\xe9\\\n\\x04\\xe1\\xdd\\xe8\\x43\\x5d\\xf7\\xfc\\xcc\\xc4\\x2e\\x56\\x52\\xc9\\x91\\xd9\\\n\\xf9\\xbf\\xc2\\x7c\\x7c\\x24\\x90\\x57\\x02\\x1a\\x0f\\x63\\x6f\\x61\\xd5\\xb9\\\n\\xcf\\x2d\\x52\\x9e\\xd0\\x56\\x80\\x54\\x88\\xd3\\x5d\\x7d\\x21\\xbe\\x65\\x1a\\\n\\x01\\x50\\xa0\\x98\\x15\\xd1\\x5c\\xe7\\xd5\\xa5\\x69\\xec\\xf1\\x64\\x27\\x78\\\n\\x0f\\xd3\\xef\\xf9\\xa3\\x7a\\x2e\\x88\\x96\\x65\\xf8\\xb0\\x9e\\xb9\\x9e\\x26\\\n\\xa0\\x2a\\xa6\\xac\\x6d\\x71\\x55\\x8a\\x25\\x46\\xbe\\x5d\\x95\\x8b\\x28\\x06\\\n\\xc2\\x8f\\xdc\\x02\\xbc\\x2f\\x9b\\x02\\xa2\\x38\\x39\\x07\\xc1\\xa1\\x8a\\x61\\\n\\x5c\\x97\\x23\\x02\\xb5\\x74\\x49\\xec\\xfc\\x35\\xfb\\x7c\\x80\\xe8\\xfe\\x45\\\n\\xab\\x42\\x51\\xaf\\xd7\\x2d\\x3e\\xa8\\x1d\\xb3\\x08\\x00\\xf3\\xeb\\x20\\xfb\\\n\\x23\\xa2\\xbe\\x2e\\x98\\x5c\\x14\\x2a\\x69\\xfb\\x9f\\x7b\\xdc\\x38\\xc8\\x36\\\n\\x81\\x5b\\x77\\xfa\\x5c\\xf2\\x41\\x50\\x85\\xde\\x0a\\x09\\xed\\xdf\\xff\\x00\\\n\\x3c\\xce\\x81\\x4c\\x14\\x30\\x18\\x5d\\xdd\\xbf\\xeb\\x4f\\x04\\x07\\xee\\xaf\\\n\\x83\\x25\\x0d\\xbc\\x84\\xa6\\x1e\\x35\\x9a\\x06\\x70\\x4b\\xd0\\x53\\x3f\\x68\\\n\\xfe\\x4f\\x16\\x44\\x68\\x71\\x2d\\x6b\\x5f\\x23\\x19\\xb5\\x8a\\x78\\x38\\x60\\\n\\xf8\\x14\\xc0\\xe8\\x16\\x42\\x3e\\xa1\\x7c\\x78\\xc1\\x40\\x14\\x57\\xc7\\x47\\\n\\xc4\\x97\\x8f\\xbf\\x3d\\x6f\\xae\\x32\\xfd\\xb3\\xda\\xa7\\xf6\\x7d\\x7c\\x4d\\\n\\x10\\x07\\x59\\x60\\x4b\\x90\\xc3\\xb5\\x8f\\x6e\\x00\\x97\\x29\\x17\\x66\\x68\\\n\\xc3\\x58\\xbd\\x0e\\xdf\\x17\\xca\\x0a\\x3b\\x89\\xb1\\x37\\x89\\x9e\\xb3\\xd7\\\n\\x85\\x24\\x00\\xd2\\x87\\x30\\x10\\xfd\\x7a\\xb2\\xc3\\xdf\\x8b\\x30\\x44\\x09\\\n\\xf4\\x14\\xda\\xd3\\xdd\\xcb\\x9f\\xc5\\x0e\\x9e\\x11\\x12\\xab\\xaa\\xcb\\x09\\\n\\x2f\\x4e\\x55\\xc0\\x7e\\x95\\x0f\\x98\\xa3\\x49\\x2d\\x53\\xdc\\xdc\\x73\\xc9\\\n\\xa0\\xb5\\x22\\x84\\xda\\x0f\\x4b\\x19\\x8e\\x30\\x8b\\x9e\\x55\\x94\\x9c\\x7b\\\n\\x69\\x29\\x05\\xc9\\x1a\\x06\\xc8\\x3b\\xd1\\x08\\xa1\\x02\\x00\\xb1\\x1a\\x71\\\n\\x22\\x01\\x63\\x34\\x5e\\x3e\\xcd\\xff\\x00\\x1b\\xf7\\x86\\xd8\\x40\\x70\\x0b\\\n\\x8e\\xa0\\x8d\\xcb\\xfb\\x9b\\xe1\\xf2\\x81\\x8c\\x99\\x0b\\x07\\x59\\x20\\x94\\\n\\x50\\x39\\xe0\\x16\\x00\\x15\\x10\\x1a\\x1f\\x5b\\x7f\\xc7\\x65\\xf1\\x0d\\x58\\\n\\x68\\x25\\x33\\xe0\\xfc\\xd0\\x5e\\x5f\\x69\\x52\\xa0\\x8e\\x23\\x0a\\x2f\\x47\\\n\\xaf\\xd3\\xdb\\xd7\\x86\\x0e\\x12\\x08\\x1a\\x3b\\xa0\\xde\\x0c\\xb0\\xed\\x7e\\\n\\x65\\x02\\xd9\\x80\\x47\\xe8\\xa9\\x70\\x47\\xeb\\xa7\\x9a\\xe2\\x1f\\x83\\xa8\\\n\\xc2\\x1d\\xda\\xfc\\x9c\\xf6\\x56\\xaa\\xad\\x76\\x8c\\x3d\\xf6\\xdb\\x18\\x76\\\n\\xe5\\xf2\\xdd\\xa4\\x81\\x99\\x18\\xae\\xc5\\xaf\\xe7\\xb4\\x7c\\x27\\x00\\xc4\\\n\\xf5\\xe8\\x06\\x15\\x7f\\x27\\xf1\\xb0\\xa4\\x00\\x5f\\xda\\xad\\xf7\\x13\\x87\\\n\\xf9\\xcf\\x5e\\x6b\\x10\\x91\\x08\\xa6\\x5c\\x60\\x91\\x27\\xfd\\x79\\xd8\\xb0\\\n\\x50\\x38\\x89\\xfd\\xec\\x70\\xc3\\xa6\\x78\\xec\\xc1\\x3e\\xd4\\x9f\\x31\\x03\\\n\\x63\\x9e\\x8e\\xbe\\x4b\\x44\\x01\\x70\\xb4\\x27\\x4a\\xd1\\xb9\\x39\\x33\\xf0\\\n\\x9a\\x98\\x81\\x02\\x61\\xc2\\x0e\\xf5\\x3f\\xe3\\xc9\\xa8\\x88\\x4f\\x45\\x43\\\n\\xbc\\xec\\x8a\\xd4\\x98\\xfb\\x16\\x56\\xf6\\x9d\\x13\\x8f\\xf4\\x55\\xa2\\xa7\\\n\\x91\\x43\\x52\\xb2\\x16\\xb4\\xa0\\xa9\\x19\\x83\\x5a\\x23\\x74\\x8e\\x16\\x55\\\n\\x00\\x0c\\x09\\x55\\x47\\x11\\x80\\x93\\x40\\x40\\xa2\\x44\\x45\\x34\\x1d\\xe7\\\n\\xe2\\xb3\\x9e\\x4c\\x14\\xd8\\xa6\\x43\\xd1\\x5e\\xbf\\xbf\\xe6\\x79\\x68\\x6c\\\n\\x94\\x4c\\x32\\xa3\\xa8\\xc5\\x5d\\x7e\\xb1\\x7c\\x80\\x00\\x73\\x50\\x21\\x2b\\\n\\x3f\\xa2\\xea\\x7f\\x93\\x14\\x1c\\x04\\x06\\xd7\\xd0\\xef\\xef\\xb7\\xc9\\x06\\\n\\xaf\\xa3\\xf1\\x75\\xf9\\xb9\\xff\\x00\\x33\\xc7\\xc4\\x80\\xda\\xb5\\x69\\xaf\\\n\\x38\\x8d\\x63\\x0f\\x6a\\x57\\x0d\\x5d\\x44\\x5a\\x0b\\x02\\xb0\\xa8\\x42\\xf9\\\n\\x50\\x82\\x65\\xea\\xf1\\xaf\\x57\\xab\\x86\\x9c\\x3c\\x1a\\x86\\xfd\\x4c\\x7e\\\n\\xfd\\xdf\\x67\\xde\\x20\\x12\\x01\\x85\\xd0\\x5a\\xba\\xfc\\xed\\x60\\x11\\x7b\\\n\\xe3\\x2d\\x58\\x2c\\x84\\x82\\x83\\x30\\xa6\\x7b\\xf8\\xf7\\xc6\\x7a\\x98\\x21\\\n\\x19\\x0c\\x5f\\xac\\x65\\x41\\x3f\\x6f\\x86\\xe9\\xf6\\xb4\\x30\\x5f\\xb1\\x80\\\n\\x47\\x5f\\x5b\\x9e\\x1d\\x43\\x08\\xd8\\x28\\x29\\x84\\x50\\x92\\x01\\x80\\x90\\\n\\x08\\xb1\\x0b\\x05\\x11\\x17\\x5c\\x11\\xd8\\x60\\xbf\\xbe\\x64\\xd2\\xa4\\xd1\\\n\\x65\\x80\\x34\\x80\\x29\\x62\\xa6\\xa0\\x36\\x65\\x54\\x18\\x6d\\x31\\x10\\x98\\\n\\x29\\x0a\\x2a\\x84\\xb3\\x16\\x28\\x6d\\x8c\\xc2\\x37\\xa0\\x2d\\x00\\x60\\xab\\\n\\x32\\x1d\\x0e\\x71\\xc2\\xef\\x7c\\x1b\\x74\\xdc\\x23\\x63\\xce\\x07\\xab\\xd6\\\n\\xf8\\x0f\\x03\\x54\\xaf\\x45\\x30\\x3d\\x7b\\x1f\\x61\\xcf\\x1d\\x0a\\x64\\x05\\\n\\x93\\x1d\\x0a\\x3e\\x9d\\xa6\\xdf\\x09\\x56\\xfe\\x94\\x0d\\xdb\\xee\\x1f\\xdf\\\n\\x19\\xb3\\xc6\\xb9\\x12\\xc0\\xe1\\x4a\\x6a\\x33\\x0a\\xe7\\xb6\\x9e\\x09\\xcd\\\n\\xf9\\xc0\\xa2\\x40\\xd0\\x36\\xf7\\xdd\\x24\\x67\\x93\\x2b\\x1b\\x10\\xeb\\x1a\\\n\\x81\\x82\\x36\\x1f\\x93\\xe8\\x19\\xa2\\x91\\x82\\x04\\xe8\\x38\\xad\\x0c\\x60\\\n\\x25\\xf1\\x87\\x21\\xaa\\x48\\x88\\x3e\\x8b\\xc0\\x43\\x0b\\xc2\\x2f\\x0d\\x30\\\n\\xa1\\x19\\x4a\\xb5\\x2c\\x8b\\x2d\\x8c\\x5f\\x14\\x25\\xa2\\x3d\\xea\\x70\\x3b\\\n\\xa7\\xb5\\x10\\xb4\\x5f\\x3f\\x34\\x07\\x86\\xbb\\xbc\\x63\\x85\\x73\\x89\\x7c\\\n\\x28\\x96\\x10\\x30\\x4b\\x20\\xc5\\xb9\\x6d\\x34\\x3d\\xa7\\x84\\x48\\x0c\\x14\\\n\\xdc\\x7b\\xeb\\xf0\\x17\\x9b\\xec\\xf2\\x3f\\xfe\\x1e\\x3f\\xd7\\xcf\\xff\\x00\\\n\\x9e\\x68\\xd0\\x17\\xfe\\x4f\\xbd\\xeb\\x9c\\x3c\\x78\\x24\\xce\\x9e\\xe0\\x65\\\n\\x6d\\xdf\\xe3\\x6b\\x9e\\x31\\xb8\\x22\\xa4\\xc8\\x56\\xb9\\xdf\\x63\\x3a\\xbe\\\n\\x98\\xf8\\x78\\xc3\\x1a\\x0b\\xa5\\x3b\\x73\\x62\\x3e\\xd9\\x73\\xc7\\x0a\\xdf\\\n\\x0a\\x48\\x96\\x22\\x29\\x1d\\x48\\xa5\\xf2\\x4b\\x0f\\x99\\x82\\x00\\x5e\\x18\\\n\\x4b\\xb2\\x2e\\x93\\xcb\\x94\\x44\\x91\\xb2\\x5e\\xd4\\x37\\xd7\\xdd\\xad\\x7c\\\n\\xbc\\x3c\\x29\\x29\\x28\\x68\\x84\\xab\\x8e\\xa7\\xbd\\x0c\\x54\\x81\\x42\\x2b\\\n\\x8c\\x03\\xe8\\xcd\\x91\\x12\\x69\\x11\\xf0\\xb2\\x0c\\x2d\\x71\\x10\\x53\\xbd\\\n\\x63\\xdc\\xdd\\x01\\x7c\\x45\\xed\\x66\\xb5\\x32\\xb4\\xec\\x7e\\x4f\\xe5\\x07\\\n\\xc4\\xca\\x22\\x85\\x8b\\xdc\\xf5\\xf6\\xdb\\xaf\\xc5\\x8f\\x63\\xda\\xa9\\x1a\\\n\\xbd\\x50\\xc1\\x86\\xee\\x82\\xe7\\x83\\xce\\x11\\x85\\x58\\x91\\xa7\\x02\\x1f\\\n\\x30\\x80\\x2c\\x86\\x10\\x00\\xd3\\xe8\\xde\\x6f\\x3e\\xb3\\xc1\\x52\\x90\\x87\\\n\\x83\\x5a\\xf3\\x75\\xbf\\xad\\x61\\xcf\\x04\\x5e\\x8a\\xc0\\xf6\\xf6\\xde\\xec\\\n\\xcf\\xd6\\x49\\xe0\\x28\\x8c\\x3a\\xd1\\xcc\\xf4\\x4f\\x9e\\x83\\xfb\\x7c\\x38\\\n\\xe1\\x9a\\x52\\xcf\\xb9\\xae\\x7f\\x7f\\x52\\x73\\x02\\x21\\x3d\\x40\\x76\\x42\\\n\\x37\\x07\\xa6\\x31\\x6e\\xf8\\xa4\\xa2\\x2d\\xc2\\x8a\\x6d\\xea\\x10\\x3f\\x53\\\n\\xf8\\x7c\\xa8\\x3d\\xc7\\xad\\x63\\x3d\\x63\\x4d\\xa3\\x3a\\xf6\\x78\\x61\\xff\\\n\\x00\\x05\\x67\\x25\\xff\\x00\\x1f\\xc7\\xe9\\x9e\\x3f\\x7e\\x0f\\x9a\\x62\\x29\\\n\\x4f\\x79\\xec\\x07\\x9e\\x29\\x06\\xd7\\x55\\xeb\\x3a\\xdf\\xb0\\x34\\xd7\\xc1\\\n\\xd2\\x08\\xac\\x69\\x4f\\x74\\xf4\\xa4\\x64\\x97\\x5f\\x2e\\x74\\x59\\x3f\\x44\\\n\\x86\\x2f\\x0d\\x7a\\x11\\x44\\x51\\xb0\\x50\\xec\\x51\\x0e\\x22\\x82\\xaf\\xdc\\\n\\x44\\x80\\x42\\x20\\xd4\\x34\\x28\\x7b\\xe8\\x7e\\x9c\\x0c\\xe2\\x04\\x6e\\x97\\\n\\x11\\x40\\xf9\\xf5\\x35\\x97\\x9c\\x3c\\x45\\x55\\xc0\\x2d\\xa1\\x84\\x28\\xae\\\n\\x5e\\x95\\xe3\\x93\\x4a\\x8a\\x43\\x42\\x90\\x1d\\x55\\xe3\\x66\\xd7\\xbe\\x67\\\n\\xe7\\x65\\x98\\x73\\x07\\xdf\\xf1\\xf4\\xaf\\x83\\x45\\x36\\x20\\x26\\x3e\\x4d\\\n\\x39\\x94\\x77\\xef\\x9b\\x9c\\x41\\xa0\\xa0\\x10\\x58\\x1d\\x49\\x60\\xb5\\xf1\\\n\\x0f\\x10\\xe4\\xa5\\x53\\xc0\\x18\\x08\\xc7\\xde\\x8f\\x83\\x0c\\x5b\\x41\\x11\\\n\\x47\\xc6\\x71\\x7d\\x7a\\xea\\xef\\x9d\\xfb\\xe7\\xfb\\xf6\\x52\\xcf\\xf1\\xeb\\\n\\xfb\\xf0\\x21\\xf3\\x6b\\x37\\xdf\\x3e\\xf3\\x3e\\xf8\\xd6\\x18\\xc9\\xef\\x6a\\\n\\x3a\\x1d\\x28\\x3f\\x9f\\xdf\\x82\\xc8\\x90\\x66\\x0b\\xd2\\xd2\\x0a\\xd9\\x3e\\\n\\xfd\\x20\\xb1\\x50\\xa3\\x00\\x45\\x4a\\xb6\\x15\\xfc\\xf0\\xab\\x91\\x45\\x8e\\\n\\x5b\\x52\\x02\\x52\\x0d\\x78\\x45\\x50\\xca\\xa0\\x1c\\xe0\\x14\\x9c\\x52\\xb9\\\n\\xfe\\x3c\\x88\\x36\\x18\\x09\\xc0\\xd0\\xa8\\x0a\\xeb\\xe2\\x0a\\xfd\\xf0\\xc8\\\n\\x98\\xe0\\x85\\x90\\x41\\xf0\\x75\\xb9\\x34\\x4d\\x38\\x51\\xbd\\xa8\\xfa\\x48\\\n\\x8a\\x94\\xb1\\x04\\x42\\x01\\x92\\x37\\x95\\x8e\\xf8\\x37\\xa4\\x08\\x84\\xa0\\\n\\x38\\x81\\xf4\\x8f\\x6d\\xf3\\x41\\x80\\x19\\x83\\x53\\x89\\xc2\\x17\\x68\\x0c\\\n\\x7c\\x76\\xd2\\x09\\x29\\x19\\x08\\x8a\\x42\\xff\\x00\\xf8\\x5c\\x4a\\x0b\\xaa\\\n\\xcf\\x7f\\xd9\\xbe\\xca\\x00\\x43\\xce\\xb0\\xf8\\x30\\xd0\\x8f\\x65\\xbb\\x58\\\n\\xcf\\x7b\\xe1\\x54\\x61\\x8d\\x11\\x78\\x3a\\x43\\x1d\\x24\\x85\\xf0\\x46\\x72\\\n\\x62\\x50\\x35\\x08\\xfb\\xb7\\x7e\\xed\\xae\\x28\\x8d\\x51\\x5b\\x98\\x16\\xfb\\\n\\xc5\\x6e\\x22\\xf8\\x93\\xf6\\x82\\x01\\x84\\xc1\\x03\\xad\\x87\\xf1\\x3c\\x18\\\n\\xc3\\x0a\\xc0\\x1f\\xba\\x28\\xaa\\xde\\xd1\\x2a\\xf7\\xcb\\xfb\\x45\\xdf\\xd1\\\n\\x72\\x42\\x65\\xcf\\xe1\\x87\\x86\\x0d\\x02\\x03\\x47\\xf1\\x68\\x0d\\xfc\\x72\\\n\\x33\\xca\\x2f\\x40\\x02\\x32\\x3c\\x20\\x1c\\x3d\\xcf\\x72\\x78\\x02\\x25\\x82\\\n\\x6a\\x5b\\xc1\\x57\\x6d\\x0f\\xe7\\x37\\x3c\\x7d\\x01\\x04\\x45\\x70\\xef\\xc4\\\n\\x0f\\xca\\x0f\\xd8\\x17\\xcf\\xbe\\x00\\x80\\x62\\x75\\x59\\xc1\\xb3\\xdf\\xac\\\n\\xf1\\xaa\\xd3\\x56\\x1c\\x18\\x5b\\x5c\\xe5\\xb2\\xdf\\x5e\\x58\\x11\\x48\\xdf\\\n\\x08\\x1e\\xbd\\xb7\\xfb\\xb0\\x3c\\x5f\\x58\\xd2\\x85\\x10\\x8b\\x6b\\xbc\\x5e\\\n\\x2f\\x4a\\x96\\x84\\x0e\\x00\\x39\\xb5\\xe9\\x51\\x1f\\x88\\xe9\\xe0\\x46\\xce\\\n\\x5f\\x12\\x28\\x63\\x0a\\x18\\xa0\\xcf\\xa3\\x22\\x82\\x91\\x80\\xc0\\xb6\\xc1\\\n\\x8f\\x7d\\xcd\\x58\\x52\\xe9\\xcc\\x22\\x2c\\x34\\xcc\\xb3\\xa4\\x15\\x21\\xa8\\\n\\xc9\\x46\\x4d\\x35\\x65\\xa6\\x00\\x0d\\x86\\x28\\x5c\\x26\\x1d\\x77\\xd0\\x8b\\\n\\xe9\\xc8\\xbe\\xc9\\x20\\x6a\\x8c\\xeb\\xd0\\x02\\xb7\\x62\\xad\\xca\\xb6\\xc8\\\n\\xb1\\x31\\x38\\x44\\xa5\\x61\\x06\\x1a\\xc2\\x74\\x81\\xb7\\xc1\\xc6\\x48\\x0e\\\n\\x18\\x12\\x00\\xa4\\x10\\xe5\\xb0\\x58\\x82\\x8f\\xc5\\x34\\x3f\\xb4\\xce\\xfc\\\n\\x82\\x28\\x3e\\x2a\\xf6\\x08\\x82\\xcf\\xe5\\xff\\x00\\xbd\\xc2\\x5f\\x5b\\xe3\\\n\\xa2\\x58\\x03\\xb0\\xb0\\xcc\\x7f\\x8e\\x3c\\xf3\\x20\\x3c\\x5b\\x42\\x56\\x5a\\\n\\x4e\\xde\\x1f\\x3f\\x46\\x4e\\x9d\\x48\\x08\\x49\\x08\\x07\\x1c\\xf4\\x4e\\x5f\\\n\\x14\\x9b\\x16\\xa2\\x90\\xde\\xca\\xf4\\xff\\x00\\x7e\\x3f\\x20\\xda\\x78\\xa5\\\n\\xbf\\x10\\x9a\\x5f\\x81\\x41\\xf2\\xf4\\x4e\\x4b\\x92\\x06\\x07\\x5e\\x9d\\x0a\\\n\\xe3\\x6f\\x88\\x83\\x66\\x37\\x6d\\xcc\\xf8\\xbe\\xff\\x00\\xdd\\x33\\xc4\\x5d\\\n\\x74\\x78\\x64\\x3b\\xff\\x00\\xef\\x99\\x53\\x68\\x46\\x10\\xdf\\xe4\\xbf\\xbf\\\n\\xeb\\xcb\\xaa\\x51\\x4c\\x45\\x01\\x7f\\x97\\x3e\\x2f\\xdd\\x2d\\x09\\x85\\xc5\\\n\\x9f\\xb6\\x54\\x50\\x49\\x8e\\xda\\x08\\xb4\\x04\\xb6\\xc6\\x0e\\xcf\\x88\\x6d\\\n\\x47\\xc4\\x64\\x30\\x04\\x42\\x30\\xd5\\xc6\\xfa\\x23\\x9f\\x60\\xf8\\xe0\\xd5\\\n\\xc1\\xc2\\x4a\\x64\\x06\\x99\\x9c\\xae\\x9e\\x02\\x30\\x6c\\x49\\xc1\\x14\\x93\\\n\\x49\\xb1\\x4e\\xfa\\x5a\\x38\\x0a\\x0f\\xe1\\x9b\\x50\\x60\\x43\\x30\\x71\\x80\\\n\\x22\\x86\\x93\\x41\\x15\\x15\\x6a\\xc6\\x07\\x05\\x57\\x89\\x2d\\xb4\\xa9\\x86\\\n\\x2a\\x20\\x06\\x00\\x55\\x00\\xa2\\x06\\xc8\\x44\\x4c\\x56\\xd3\\x82\\x8c\\x0e\\\n\\x19\\xef\\xc6\\x99\\x14\\x26\\x22\\x8a\\x21\\x04\\x56\\xa1\\xd3\\xf6\\xd2\\x59\\\n\\x30\\x01\\x42\\x22\\x55\\x1a\\x0f\\xa6\\xdf\\x0a\\x47\\x80\\x0d\\x03\\x01\\x05\\\n\\xd2\\x3d\\x28\\x7c\\x44\\xa3\\xf9\\x20\\x22\\x2a\\xad\\x23\\xf7\\xbb\\xbe\\x05\\\n\\x11\\x5f\\xec\\xf7\\xb0\\xce\\x3f\\x8f\\xfd\\xf8\\xa6\\xc7\\x20\\x09\\xf6\\x53\\\n\\xeb\\xe3\\x99\\x51\\x80\\x49\\x0a\\x8b\\x54\\x23\\xcf\\x98\\xa4\\xd4\\x12\\x87\\\n\\x64\\x45\\x14\\x23\\x90\\x36\\x6b\\xc8\\x85\\x10\\x46\\x00\\x19\\x93\\xe7\\x31\\\n\\xf0\\xa2\\xbf\\x8a\\xcf\\x4e\\x7d\\xdb\\xa3\\xe9\\xf8\\xed\\xb5\\xa0\\x9e\\x81\\\n\\x04\\x02\\xa8\\x79\\x11\\xe2\\x19\\xe0\\xe0\\x8a\\x00\\x4b\\x54\\x68\\x50\\xbf\\\n\\xd0\\xf0\\x33\\x08\\x5c\\x21\\xa2\\x6e\\x02\\x4a\\xa9\\x17\\x83\\xf3\\xd4\\x51\\\n\\x58\\x14\\x23\\xa7\\x61\\x46\\x9d\\xf0\\x81\\xc1\\x73\\x03\\xc4\\x14\\x10\\x25\\\n\\xae\\x43\\x2d\\x08\\x64\\x16\\x2c\\x7d\\x6e\\xff\\x00\\xcb\\xef\\xc4\\x0e\\xe6\\\n\\x1d\\xc7\\x33\\xef\\xe7\\x8b\\xc8\\xa4\\x31\\x16\\xf0\\xb2\\x6f\\xf3\\x9f\\xc7\\\n\\x8a\\x0a\\xd2\\x6a\\x0c\\xb3\\x50\\xa5\\xdf\\x69\\xdf\\x45\\x20\\xfa\\xb2\\x42\\\n\\x97\\xd8\\xb1\\xfc\\xa8\\xef\\x89\\x6d\\x9d\\xca\\xd3\\x73\\xdc\\x09\\x2e\\xff\\\n\\x00\\x37\\xc1\\xa0\\x02\\x2e\\xb8\\x34\\xbf\\x04\\x1f\\x7a\\x73\\xbe\\x52\\x08\\\n\\x2c\\xe2\\x00\\x45\\x36\\xe4\\x5e\\x0c\\xf2\\x68\\x4a\\x26\\xa0\\xc4\\x30\\x9a\\\n\\x89\\xef\\xbe\\x48\\x90\\xaa\\x12\\x1f\\x62\\x3d\\xff\\x00\\x1c\\x39\\xac\\x21\\\n\\x88\\x90\\x76\\x76\\x74\\x93\\x5a\\x7c\\xb9\\x16\\x98\\xb5\\xe8\\x21\\xd4\\xbb\\\n\\x9f\\xf7\\x89\\x3c\\x87\\x11\\x52\\x75\\x39\\x34\\x77\\x3f\\x8e\\xfa\\xf1\\x50\\\n\\x32\\xa0\\x0a\\x79\\x02\\x27\\x58\\x16\\x21\\x44\\x27\\x80\\x78\\x0a\\x7a\\x51\\\n\\xa4\\xcc\\x04\\x7e\\x1e\\xdf\\x11\\x11\\xe1\\x4a\\xb9\\x22\\x7e\\x03\\x77\\x1f\\\n\\xab\\x1f\\xe8\\xd5\\x0b\\x13\\xb0\\x8f\\x46\\xbe\\x44\\x17\\x3c\\xa4\\x9f\\xda\\\n\\x8c\\x6c\\xa3\\x18\\xf3\\xed\\x0d\\xea\\xa0\\xcb\\x08\\xc0\\x06\\xc8\\x89\\x0a\\\n\\x0b\\xbe\\xe1\\xe9\\xe1\\x3d\\xe8\\xca\\x01\\x8a\\x8c\\x49\\x6a\\x32\\xf8\\x5d\\\n\\x45\\x6d\\x68\\xa3\\x34\\xa2\\x2a\\x55\\x90\\x9e\\x55\\x8e\\x75\\x20\\x82\\xd0\\\n\\x42\\xc5\\x48\\xf0\\x9b\\x35\\xf1\\x6a\\x15\\xbc\\xf4\\x65\\x16\\xc3\\xde\\xf8\\\n\\x62\\x8e\\x1a\\x8e\\xa2\\xe0\\xa8\\x94\\x9f\\xce\\x2f\\x90\\x8d\\x05\\xcc\\x45\\\n\\x0b\\x43\\xb8\\x5d\\xb6\\x7e\\xf8\\x7f\\xd0\\x8f\\x60\\x41\\x11\\x8c\\x05\\x6a\\\n\\x82\\x6b\\xe5\\x5e\\x37\\x64\\x80\\x2a\\xa8\\x8a\\x50\\xe6\\x12\\x78\\xda\\x30\\\n\\x90\\xa0\\x81\\x0e\\x14\\xfb\\xb5\\xbf\\x0b\\xe4\\xfc\\xd0\\x65\\xc7\\xd3\\x7b\\\n\\xd3\\xd9\\x7e\\x90\\x8f\\x84\\x42\\xf0\\x19\\x9b\\x48\\x47\\x5c\\xf5\\xef\\xd6\\\n\\xf8\\x85\\x51\\x10\\x75\\xd7\\xde\\x82\\x3e\\xb3\\x3d\\x8f\\x80\\xb3\\xe1\\xa6\\\n\\x80\\x83\\xa4\\x5c\\xf5\\xc5\\xc8\\x00\\xf2\\xa0\\x24\\x62\\x46\\x1c\\x79\\xf9\\\n\\x28\\x4a\\xf8\\x16\\x24\\x51\\x41\\x87\\x44\\x39\\xf9\\x5a\\xce\\x83\\x68\\x15\\\n\\xc6\\x80\\xe1\\x1c\\xde\\x03\\x17\\x3d\\x23\\xf9\\xb0\\xa9\\x2b\\x02\\x30\\xef\\\n\\x67\\xad\\xdb\\x5f\\x65\\x4a\\xc8\\xe1\\xc2\\x90\\x1f\\x6d\\xfe\\x7b\\xa7\\x91\\\n\\x90\\x06\\xe8\\x3f\\xdb\\xf6\\x33\\x6e\\xfe\\x78\\x71\\x26\\x9c\\x43\\x1d\\x04\\\n\\x89\\xdc\\x76\\xe3\\xe2\\x3d\\xca\\xd0\\x24\\x1f\\x59\\xb7\\xe8\\xd0\\xc4\\x44\\\n\\x01\\x85\\x25\\x30\\x02\\xce\\xea\\x34\\x9f\\x89\\xc3\\xcb\\x3a\\x84\\x2c\\x0c\\\n\\x57\\x3d\\xeb\\x55\\x68\\xbe\\x5d\\xc6\\xcc\\x38\\x12\\x6f\\xf0\\x27\\x64\\x7c\\\n\\x17\\xa0\\x18\\x90\\xce\\x98\\x76\\x12\\xc5\\x50\\x67\\xb4\\x64\\xc0\\x8d\\x83\\\n\\x48\\x07\\xd0\\x2a\\x6a\\x8c\\xf2\\x49\\xc4\\xb5\\x44\\x24\\x44\\x61\\x45\\xa0\\\n\\x86\\xed\\xc2\\xd0\\x0c\\x6d\\x46\\x94\\x4e\\xb8\\x40\\x75\\x50\\x88\\x92\\x95\\\n\\x08\\x54\\x6c\\x78\\x31\\x40\\xb7\\x98\\x3e\\x50\\x01\\x01\\xa5\\x50\\x40\\xeb\\\n\\xd3\\x74\\x1a\\x1a\\x6b\\xe2\\x34\\x08\\xa1\\x5d\\x49\\xda\\xeb\\xbd\\x43\\xd6\\\n\\x78\\x55\\xf4\\xc0\\x10\\x01\\xc0\\x69\\x35\\x60\\x27\\xc6\\x6c\\x91\\x90\\x04\\\n\\x15\\xed\\x64\\x85\\x89\\x6a\\x0f\\x5a\\x48\\x00\\xa8\\x34\\x62\\xd6\\x3a\\xfe\\\n\\x70\\xbf\\x97\\x2c\\x1a\\xc2\\x39\\x07\\x69\\xef\\xf1\\x67\\x6f\\xf3\\x0e\\x11\\\n\\x60\\x8a\\xbf\\xc0\\xc6\\x66\\x5f\\x8f\\x69\\xe1\\x90\\x0e\\x02\\x91\\xf1\\x00\\\n\\x3f\\xe1\\xfc\\x03\\x3c\\x26\\x85\\x20\\x1f\\x42\\x40\\x52\\xe5\\x75\\xd7\\xdb\\\n\\xe2\\xcb\\xea\\x69\\x8f\\x6f\\xa0\\xff\\x00\\xae\\x1e\\x08\\x92\\xe4\\xf9\\xb0\\\n\\x8a\\xc7\\x2b\\x19\\xa7\\xfc\\xa7\\x1d\\xc8\\x2a\\x2b\\x31\\x1b\\xcf\\x7c\\xc6\\\n\\xc6\\xf9\\x52\\xb8\\xa5\\x0a\\x74\\x01\\x23\\xb1\\xe0\\xa9\\x7a\\x9c\\xc0\\x85\\\n\\x69\\xc8\\x46\\xa1\\x10\\x5e\\x91\\x1e\\x34\\x70\\x10\\x64\\x0a\\x00\\x14\\x7c\\\n\\x4b\\xeb\\x1e\\xf8\\xa4\\x24\\x04\\x23\\x21\\xfc\\x71\\x99\\xcf\\xbf\\xcf\\x96\\\n\\x2c\\x3f\\xbd\\xfc\\xcc\\xe7\\x8c\\x9f\\x64\\x10\\x5d\\x78\\x9e\\xc9\\x2d\\x86\\\n\\x6f\\x3c\\x35\\xd9\\xd1\\x4c\\x14\\xd2\\xbe\\xb5\\x0f\\x6b\\xe0\\x6c\\x04\\x82\\\n\\x12\\x4a\\x9a\\x50\\x2d\\x77\\x9f\\x67\\x8d\\xe2\\x90\\x6c\\x88\\xf5\\x8e\\xf1\\\n\\x08\\xe9\\x96\\x95\\x0a\\x91\\x2b\\xd3\\x32\\x35\\x3a\\x47\\x4f\\x6d\\xf0\\x5c\\\n\\x8a\\xb5\\x3a\\x61\\x52\\x0a\\x39\\x3e\\x9a\\xf8\\x45\\xab\\x40\\x2d\\x9e\\x18\\\n\\xb2\\x6f\\x0e\\x07\\x50\\xf2\\x18\\x02\\xe3\\xf1\\x1c\\x7f\\x8a\\xd9\\xb7\\xdf\\\n\\x4c\\x1b\\x41\\x4e\\x94\\x1a\\x9d\\x45\\x7a\\x2a\\xac\\xad\\x7c\\xa3\\x83\\x15\\\n\\x77\\xdf\\x34\\xe3\\xcb\\xbd\\xed\\x48\\x38\\xf4\\x8b\\x52\\xc0\\xee\\x17\\x97\\\n\\xd3\\xf3\\x54\\xa9\\x16\\x91\\x7b\\x05\\xa5\\xc4\\x07\\x67\\x5b\\x8c\\x6d\\x5a\\\n\\xd1\\x89\\x1c\\x27\\x23\\x08\\x95\\xf6\\x0e\\xc8\\x9a\\x95\\xad\\x34\\x68\\x00\\\n\\x26\\xc2\\xa1\\x5c\\xd7\\xc1\\x40\\x6a\\x1d\\x5d\\x2a\\x05\\xa7\\x34\\xd9\\xbf\\\n\\x43\\x9b\\x17\\x18\\x4f\\xe3\\xd3\\x67\\xdf\\x5e\\xb8\\xf8\\x14\\x81\\x2a\\xdc\\\n\\xb7\\xdf\\x1d\\xf8\\x2e\\x57\\x94\\x0e\\x54\\x12\\x82\\x1e\\xca\\xaa\\xfc\\x61\\\n\\xb1\\x7c\\x1e\\xeb\\x94\\x11\\xb1\\xa0\\xa4\\x70\\xe9\\x41\\x9b\\x97\\x72\\x46\\\n\\x92\\x50\\x08\\x04\\x56\\xbf\\xa1\\x9d\\xa2\\x85\\x03\\xf4\\x12\\xfb\\x7e\\xd9\\\n\\x8e\\xe0\\xf8\\xa8\\xb4\\x77\\x12\\xb8\\x9d\\x9f\\x00\\xdc\\x4f\\x19\\xa4\\xa2\\\n\\x66\\x44\\xaa\\x55\\x9e\\x82\\x7f\\x90\\xf3\\x6d\\x07\\x89\\x82\\x34\\xc7\\xeb\\\n\\x1f\\x96\\x41\\xf1\\xd9\\x98\\x6a\\xbd\\xd6\\x41\\xfa\\x8b\\x81\\xcf\\xbe\\x24\\\n\\x04\\x43\\x07\\x1a\\x8b\\x5a\\xb1\\x9f\\xff\\x00\\x7c\\x58\\x83\\xcc\\xd7\\xee\\\n\\xa9\\xfe\\x47\\x0d\\xcd\\xf0\\x41\\x40\\x29\\xee\\xa0\\xb6\\x29\\x49\\xbf\\xf6\\\n\\xe8\\xbc\\x04\\xa5\\xf6\\x30\\xd9\\xd9\\xa7\\xbf\\xf1\\xe0\\x2c\\xc0\\xb4\\x0f\\\n\\x72\\x63\\x03\\x78\\xe7\\x17\\x0f\\x1e\\x04\\xa9\\xb1\\xa3\\xf6\\xbb\\x72\\x9c\\\n\\xf4\\xd0\\xf1\\x3e\\x5b\\x23\\xb3\\x54\\xf7\\x98\\xe8\\xb9\\x7e\\x07\\x93\\x62\\\n\\x90\\x6e\\x9a\\x91\\xe5\\x66\\x73\\x9b\\x61\\xe3\\x50\\x45\\x11\\xef\\x03\\x7a\\\n\\x51\\x3e\\x77\\xde\\x4f\\x12\\x42\\x8e\\x46\\x12\\x39\\xdf\\x9c\\x9e\\x8e\\xf1\\\n\\x7c\\x7e\\x88\\xeb\\x05\\xae\\x34\\x76\\xd3\\xef\\x0e\\xf7\\xc1\\x2e\\x95\\x18\\\n\\x2a\\x29\\xdb\\x09\\x54\\xf4\\x1f\\x4f\\x39\\xa0\\x85\\x52\\xb1\\x1d\\xd1\\x12\\\n\\xb4\\x38\\xde\\xe9\\x0f\\x0a\\x0b\\xc5\\xb9\\x85\\x51\\x97\\xd1\\xcf\\x51\\xca\\\n\\x9b\\xae\\xad\\xe3\\x03\\xed\\x96\\xed\\x7b\\xe0\\x1c\\xd1\\x12\\x62\\x81\\x15\\\n\\x15\\x50\\x9d\\x06\\x1f\\x20\\xb1\\x85\\x55\\x5d\\x33\\x39\\xf5\\xaf\\xf9\\x65\\\n\\x55\\xbd\\xb2\\x28\\x0f\\x88\\x19\\x25\\x6a\\xaa\\xf8\\x51\\x30\\x99\\x14\\x2b\\\n\\x03\\xc2\\x91\\x10\\xe8\\x40\\x44\\xe0\\x32\\x41\\x49\\x5b\\x62\\xb3\\xf9\\x5b\\\n\\x95\\x9e\\x44\\xb2\\x62\\xe9\\xd9\\xa0\\x2d\\x30\\xc0\\xc2\\x5f\\x1a\\x7c\\x24\\\n\\x61\\x11\\x4c\\x30\\x2a\\x06\\x57\\x53\\xc4\\xe3\\x0a\\x15\\x85\\x5d\\xa2\\x14\\\n\\x11\\xdc\\x8e\\x5f\\x10\\x4a\\x6e\\x54\\xad\\x0d\\x28\\x05\\x11\\xaa\\x9b\\x1f\\\n\\x09\\x77\\x71\\x50\\x2e\\x81\\x5f\\xd4\\x1c\\x4f\\x5e\\x77\\x68\\xa5\\x44\\x56\\\n\\x0d\\x7d\\xaa\\xae\\x09\\xe0\\x81\\x2a\\x03\\x23\\x0b\\x95\\xeb\\xa6\\xdd\\x3a\\\n\\x76\\x91\\x50\\x51\\x5e\\xd6\\x6a\\x3d\\x8f\\xa7\\xae\\x64\\xf1\\xb0\\xfc\\x44\\\n\\x52\\x7f\\x45\\x67\\xfa\\xf2\\x48\\x04\\x89\\x47\\xa4\\x7b\\xd6\\x50\\xe7\\x06\\\n\\x71\\xf3\\x15\\x81\\x26\\x3f\\x97\\xf9\\x3e\\x39\\xbf\\xef\\xc9\\xf4\\x7c\\xc3\\\n\\xd5\\x73\\x2f\\xf7\\x6f\\x87\\x41\\x5a\\x9e\\xd0\\xbf\\xe1\\x88\\xff\\x00\\x13\\\n\\x27\\x8d\\x3f\\xe5\\xca\\xa1\\x45\\x70\\xc1\\x99\\xb4\\xa6\\x0a\\x80\\x50\\xe9\\\n\\x05\\x14\\x17\\x2e\\x47\\xa8\\xec\\xf0\\x08\\xc9\\xe8\\x9a\\x93\\xa5\\xb7\\xf5\\\n\\xde\\xeb\\xe3\\x09\\x00\\xec\\x40\\xea\\x99\\x4e\\xdf\\xe7\\xf8\\xf0\\x60\\x52\\\n\\xc2\\xfe\\xbf\\x93\\xa9\\xca\\xef\\x9d\\xbb\\x0f\\xb3\\xad\\x25\\xbf\\x92\\x7d\\\n\\x94\\xf8\\x3f\\x83\\x04\\x17\\xd1\\xfc\\x69\\xfb\\x7d\\xfc\\xf0\\xa5\\x58\\x26\\\n\\xda\\x19\\x9d\\xff\\x00\\xed\\xf1\\x58\\x19\\xfd\\x02\\xba\\x00\\xc8\\x01\\x9f\\\n\\x17\\xf7\\xc2\\x60\\x02\\x89\\x93\\x81\\x2e\\x8f\\xae\\xb5\\x75\\x3c\\x20\\x08\\\n\\x25\\xf7\\x8e\\xed\\xb4\\x1e\\x7d\\xfc\\xf3\\x18\\x07\\xf5\\xe9\\xb9\\xc3\\xfd\\\n\\x7d\\x3c\\x3e\\x0f\\x68\\x4e\\xfb\\x28\\xeb\\x0f\\xf3\\xc6\\xfa\\x70\\x3e\\xac\\\n\\x08\\xcc\\x63\\xb4\\x13\\x32\\x96\\xdc\\xbe\\x2e\\x04\\x09\\xf0\\xc5\\xd9\\xe8\\\n\\xed\\xff\\x00\\x21\\x3d\\x8d\\x20\\x46\\xc1\\xb1\\x34\\xb7\\xb8\\x74\\xf5\\xfd\\\n\\xf9\\x27\\x41\\x51\\xa0\\xb0\\x21\\x1f\\xbe\\xe9\\xb9\\xef\\x36\\x90\\x98\\xad\\\n\\xc8\\x11\\xb9\\x96\\x27\\xf3\\xeb\\x1c\\x06\\x58\\x2a\\xd7\\xab\\xb3\\x18\\x57\\\n\\x9b\\x87\\x80\\x3a\\x41\\x70\\x41\\x48\\xa6\\xb8\\x10\\xfe\\x04\\xea\\xc2\\x94\\\n\\xfb\\x87\\xa5\\x8e\\xe3\\xe9\\xde\\x18\\x17\\xc0\\xc3\\xb4\\x1d\\xaf\\xb0\\x73\\\n\\x6b\\xcf\\xe2\\x77\\xc9\\x45\\x41\\x48\\x00\\xf4\\x0d\\xf4\\xb1\\x7b\\xc3\\xdb\\\n\\xe1\\x41\\xc4\\x11\\xbc\\xe3\\x76\\xcf\\x63\\x88\\xc1\\xf9\\xe0\\x6f\\x77\\x56\\\n\\x38\\x48\\x9e\\x1f\\x09\\xc5\\x1e\\xf8\\x3b\\x22\\x45\\x5f\\x49\\x4d\\xce\\x47\\\n\\x68\\x0a\\x91\\x82\\xe3\\x42\\x51\\x7f\\x91\\x30\\xb7\\xe9\\x1b\\x1c\\xc8\\xbb\\\n\\x9d\\x4a\\x5a\\xef\\x3f\\xbf\\x7c\\xdf\\xdf\\x01\\xad\\x99\\xd8\\x51\\x27\\xa7\\\n\\x8c\\x9f\\xc1\\x49\\xe4\\x0f\\xa2\\x4d\\x95\\x91\\x7f\\xce\\x7f\\x4f\\x10\\x7d\\\n\\xd9\\x06\\x3e\\x8e\\xe6\\xfa\\x7e\\x7a\\x54\\xf2\\xc8\\xf5\\x3d\\xe8\\x83\\x50\\\n\\x39\\xf9\\xcf\\xe7\\x87\\x94\\xbd\\xa0\\xfc\\x3d\\x2b\\x69\\x14\\x9e\\xf6\\x8f\\\n\\x94\\x52\\x20\\x64\\x7d\\x64\\xe6\\x76\\x8c\\xf6\\x7e\\xf9\\x0d\\x74\\x98\\x48\\\n\\x24\\xf4\\x93\\xed\\x0f\\xff\\x00\\x1b\\x10\\x28\\x22\\xb6\\xbc\\xbd\\xe6\\xfd\\\n\\xfc\\x39\\x64\\xf7\\xb9\\xfb\\x7d\\xff\\x00\\x35\\xd3\\xdb\\xb7\\xda\\xcc\\xb2\\\n\\xdf\\x24\\x15\\x4e\\xef\\x7e\\x27\\xc5\\xf1\\x25\\x9a\\x83\\x99\\xf2\\xc0\\x1c\\\n\\xfe\\x87\\x0d\\x7c\\x1b\\x49\\x2d\\x5c\\xfe\\x7f\\xa7\\xbf\\xfe\\x74\\x25\\x18\\\n\\x81\\xe7\\x49\\x66\\xcf\\x7c\\x3f\\x81\\x77\\xca\\x89\\x1d\\x0f\\x85\\xc3\\xee\\\n\\x72\\x11\\xf9\\x7e\\xf9\\xd5\\x10\\x5b\\x5f\\x8a\\xd6\\x3a\\x85\\xfb\\xf6\\xcc\\\n\\x35\\x19\\xa8\\x47\\x23\\x02\\x96\\x70\\x2d\\xd2\\x98\\x79\\x56\\xa8\\x09\\x8b\\\n\\xc1\\x9f\\xc0\\xbc\\xf5\\x34\\x69\\xe4\\xb2\\xad\\x4b\\x80\\x24\\x50\\xe1\\x87\\\n\\x48\\xb0\\x8b\\x55\\xd2\\x51\\xdb\\x35\\x07\\x96\\x3a\\x5f\\xab\\xe1\\x30\\x08\\\n\\x21\\x25\\x73\\xeb\\x60\\x86\\xd5\\x8c\\xde\\xf8\\x46\\x3e\\xa8\\x44\\xd2\\xee\\\n\\x03\\xc0\\xfe\\x17\\xd0\\x5a\\xa3\\x8a\\x44\\xe9\\xa5\\xca\\x19\\x4c\\xab\\x61\\\n\\xe5\\xcd\\x80\\xe8\\x2f\\xdd\\xf6\\x9f\\xe7\\xc7\\x10\\x19\\xa1\\x93\\xa6\\x01\\\n\\x20\\xe3\\xe8\\x97\\x60\\xed\\x9f\\xdc\\xef\\xab\\xef\\xdb\\x39\\xfc\\x73\\xc4\\\n\\xcc\\x21\\x6c\\x31\\x46\\x29\\x01\\x3a\\x31\\x00\\xe6\\x95\\x55\\x0b\\x9f\\x89\\\n\\xf5\\x11\\x3b\\xed\\xdf\\xec\\x03\\x2b\\xa4\\x7d\\x10\\x50\\x6e\\x3d\\xbe\\xbd\\\n\\x78\\x7c\\x50\\x27\\x5b\\x37\\x7e\\x1c\\xf7\\xd7\\xf9\\xf0\\x40\\x11\\x80\\x7a\\\n\\xf5\\xd7\\x9d\\xfd\\xdf\\xdd\\x7c\\x7c\\xd5\\xf8\\x41\\x88\\x5b\\xda\\xe0\\xfe\\\n\\x4b\\x3d\\x6f\\x80\\xf4\\x18\\xfb\\xad\\xf5\\x82\\x7e\\xbb\\x36\\x59\\xe4\\xde\\\n\\x27\\xfd\\xdd\\xff\\x00\\xf2\\xff\\x00\\x1e\\x58\\x4f\\x40\\x97\\x29\\x1e\\x12\\\n\\xc5\\xfe\\x50\\xd4\\xe9\\x19\\x1c\\x54\\x26\\x18\\x04\\x43\\x04\\x06\\x2d\\x48\\\n\\xdc\\x02\\x8a\\x03\\x0c\\x0a\\xae\\xc2\\x5e\\x13\\x9b\\x18\\xab\\xed\\x69\\xcc\\\n\\x57\\x6c\\x37\\xd1\\xeb\\xd5\\x81\\x89\\x84\\x10\\x3d\\x7a\\xa0\\xfc\\xec\\xfd\\\n\\xcf\\x0a\\x2d\\x0f\\xcd\\x7f\\xde\\x7b\\xfc\\xf1\\x9a\\x1d\\x0c\\x0d\\x83\\x71\\\n\\xe8\\x3b\\xee\\xfd\\xf3\\x2d\\x8e\\xa9\\x2b\\x92\\x6f\\xfc\\x7b\\xd7\\xf1\\xf0\\\n\\x25\\xd7\\x0a\\x1f\\x44\\xff\\x00\\xed\\xef\\x1a\\xf8\\xfa\\x35\\x54\\x83\\xbd\\\n\\xae\\x9e\\xd1\\xf7\\xf1\\x8b\\xe5\\x4b\\xc2\\xa4\\x29\\x54\\x8a\\xad\\xfa\\x8a\\\n\\xa7\\x84\\x4a\\xc2\\x76\\xca\\x34\\x5a\\x4c\\xab\\xc7\\x17\\x85\\xc2\\xf4\\x53\\\n\\x2f\\x71\\x46\\x09\\xcf\\xbe\\xac\\x21\\x1c\\x8d\\xad\\xe7\\xbe\\x7b\\xf5\\xee\\\n\\xce\\x8b\\x43\\x28\\x21\\x04\\x70\\xd2\\x2b\\x80\\x7a\\x3b\\xd4\\xcf\\x08\\x00\\\n\\x60\\x20\\x12\\x20\\xc6\\x5b\\x5e\\x9f\\x57\\xc5\\xac\\x85\\x0c\\x50\\x1a\\x60\\\n\\x61\\x5d\\x63\\xa8\\x35\\x4a\\x31\\x84\\x1e\\xcc\\x23\\x3b\\x5f\\xf6\\x4e\\x77\\\n\\xc6\\x80\\xc7\\x40\\xad\\x23\\xc6\\xc2\\x33\\xfd\\xcd\\x43\\x49\\xa4\\x80\\x53\\\n\\x73\\x09\\xb1\\xd5\\x3f\\x57\\xc6\\xef\\x51\\x44\\x86\\x98\\x05\\xb0\\xab\\xef\\\n\\xdb\\x9e\\x25\\x56\\x06\\x52\\x34\\x99\\xf5\\x81\\xff\\x00\\x5d\\x74\\x41\\x0f\\\n\\x92\\x69\\xc5\\xbd\\x64\\xfd\\x13\\xe6\\x78\\xed\\x84\\xea\\x8d\\x5a\\xde\\x98\\\n\\x46\\x12\\x68\\x3b\\xe2\\xa8\\x92\\xfb\\x63\\xf2\\xf5\\xd3\\x9f\\x23\\x1e\\xf8\\\n\\xd2\\xda\\x64\\x0a\\x11\\x17\\xbf\\xf0\\x74\\x3c\\xac\\x91\\xab\\x90\\x43\\x1f\\\n\\xe0\\x1a\\xc2\\xa0\\x71\\xc7\\xa0\\xb0\\x5a\\xde\\x39\\x59\\x8e\\xd5\\x27\\x8b\\\n\\x76\\xb5\\x9c\\x3d\\xcd\\xd5\\xd8\\x38\\x13\\x19\\xea\\xa2\\xb4\\xda\\xe3\\x57\\\n\\xbe\\x17\\x8d\\x7f\\x9f\\xbe\\x10\\x6b\\x05\\x06\\xde\\x57\\xec\\xbe\\xd9\\x4e\\\n\\xc4\\x7c\\x15\\x50\\x9c\\x55\\xd6\\xee\\x64\\xf9\\x0f\\x7e\\xb6\\xf9\\x4d\\x04\\\n\\xd0\\x5f\\xef\\x67\\xee\\xbd\\xf8\\xf9\\x20\\xca\\x00\\x86\\x49\\x81\\xaf\\xb0\\\n\\xb7\\x3d\\x87\\x87\\x36\\x80\\x5f\\x8f\\xc2\\x20\\x60\\x7d\\xcf\\xf5\\xe3\\x00\\\n\\x45\\x13\\xbd\\x74\\xa8\\x97\\xef\\x0f\\xeb\\x50\\xf2\\x80\\x48\\xe8\\x63\\x9f\\\n\\xaf\\x36\\xe2\\xe7\\x0a\\x1c\\x10\\x8f\\x03\\x0e\\x71\\xfe\\xdd\\x79\\xe9\\xf9\\\n\\xe2\\x06\\x08\\xa0\\x3a\\xd3\\x1c\\xf9\\xbf\\xe4\\xf1\\x6d\\x20\\x4f\\xb3\\xbc\\\n\\xb9\\x99\\xdb\\xf1\\xde\\xf8\\xa2\\x26\\xa2\\x5b\\xfe\\x43\\x7b\\x6e\\xc7\\xf5\\\n\\x18\\xb1\\xd2\\x40\\x71\\xf6\\x0e\\x5c\\x59\\xea\\x4f\\x8f\\x91\\x01\\x0d\\x60\\\n\\x4d\\x37\\x77\\xf7\\xfa\\xb3\\x9e\\x2a\\x0b\\xcf\\x49\\x4f\\x70\\xfe\\x3f\\xaf\\\n\\x4d\\x0e\\xf8\\x8e\\x2d\\xc0\\x3f\\xbe\\x4d\\x12\\x94\\xb3\\x05\\xda\\x3f\\x60\\\n\\xa1\\x48\\xe2\\x98\\x90\\x6e\\x80\\xfa\\x95\\xd3\\xa2\\xa8\\xa9\\x8b\\x31\\x8a\\\n\\x51\\x4b\\x44\\x71\\x07\\x86\\xd8\\x20\\x45\\x85\\x53\\x4d\\xb6\\x98\\x7f\\xc6\\\n\\x92\\x80\\x02\\x2b\\x40\\x87\\x6c\\x82\\x1f\\x41\\x2e\\x5a\\xbc\\xb1\\x26\\x00\\\n\\x52\\x3c\\xba\\x64\\xa7\\xf5\\xe0\\xc2\\x44\\x08\\x55\\x08\\xe9\\xd4\\xff\\x00\\\n\\x45\\x9c\\xc4\\xd0\\xe1\\x7a\\x2e\\x19\\xfd\\x6e\\x87\\xb8\\xc0\\xf0\\x95\\x81\\\n\\xef\\x11\\x90\\x7e\\x2c\\x12\\x98\\xca\\x0e\\x34\\x24\\xa2\\x80\\x5c\\x4c\\xeb\\\n\\x99\\x00\\xfb\\xd3\\xc6\\x47\\x12\\x02\\xc2\\x9c\\x21\\x20\\xfb\\x08\\x78\\xb1\\\n\\x50\\x8f\\x1c\\x31\\xfc\\x93\\xfc\\x93\\xdf\\x87\\x19\\xa0\\x0b\\x84\\x3d\\x7a\\\n\\x7e\\xfe\\x9e\\xa8\\x78\\x2a\\x13\\x14\\x46\\x51\\x7f\\xb0\\xd1\\x88\\x1d\\xf3\\\n\\x4c\\x29\\xa4\\x2a\\xe2\\x77\\x47\\xf3\\xfd\\x73\\xc5\\xe0\\x60\\x59\\xed\\x3f\\\n\\x7a\\x67\\xbd\\xf8\\xbc\\xf0\\x02\\x20\\x1a\\x73\\xd9\\xe7\\xbc\\x29\\xf8\\x3e\\\n\\xfc\\xb3\\x85\\xfa\\xf7\\x2f\\xbf\\x5d\\x7f\\x37\\xc9\\x5b\\x22\\xb8\\x7b\\x3f\\\n\\xc1\\xfa\\xe7\\xf5\\x7c\\x4a\\x42\\x9d\\xb6\\x7c\\x3f\\x24\\xff\\x00\\xad\\x07\\\n\\xca\\xd8\\x47\\x53\\xab\\x9e\\xee\\x64\\x5e\\xfa\\xe3\\xe5\\xc0\\x78\\xa4\\x00\\\n\\x89\\xee\\x12\\x69\\xe9\\xbb\\xe0\\xc0\\x06\\xa1\\x43\\x02\\x21\\x8c\\xbc\\x40\\\n\\x56\\x2c\\x3f\\x32\\xa6\\x84\\x56\\xc2\\xf0\\x1b\\x6b\\x73\\x85\\x9e\\x04\\x11\\\n\\x3b\\x86\\x5d\\x71\\x3d\\x6b\\xf3\\xce\\x92\\x5f\\xd4\\x7d\\x7e\\x1e\\x8e\\x7e\\\n\\xef\\x8a\\x29\\x93\\x69\\x06\\x4b\\xf7\\x24\\x75\\x96\\xdf\\x50\\x48\\x85\\x9d\\\n\\x53\\xd3\\x99\\x30\\x72\\x63\\x1c\\xce\\xf9\\x82\\x65\\x22\\x4c\\xb9\\xbb\\xfa\\\n\\x14\\xfb\\x30\\x19\\x4a\\x22\\x99\\x18\\x8f\\x6f\\xdf\\xcc\\x57\\xe9\\xe0\\xd3\\\n\\x71\\x30\\xcc\\xbf\\x13\\x09\\xc5\\xbd\\xfd\\x47\\x16\\x1f\\x44\\x3a\\x40\\x0a\\\n\\x87\\x8d\\x73\\xe7\\x85\\x72\\x9b\\xd2\\xa1\\x62\\xe9\\xd5\\x3c\\x83\\x5f\\x03\\\n\\x8c\\x68\\x04\\x42\\xa0\\x84\\x5b\\x48\\xf4\\x42\\x79\\xd3\\x63\\x1b\\x2d\\x06\\\n\\xa9\\x0a\\xd7\\x82\\xe5\\xa8\\x9e\\x55\\x69\\xfd\\x70\\xa6\\xba\\x5e\\x56\\xa7\\\n\\x5a\\xb3\\xc0\\x13\\x1e\\xc3\\x9d\\x72\\x87\\x0b\\xd4\\xac\\xe7\\xac\\x51\\x11\\\n\\x1b\\xb8\\x14\\x66\\x7d\\xff\\x00\\x01\\x9c\\x95\\xcd\\x4b\\x41\\x0f\\xdd\\x2b\\\n\\x75\\x7f\\x9f\\x1f\\x8b\\x86\\x8e\\x9a\\x23\\x50\\xc1\\x5e\\x4d\\x00\\x83\\xe3\\\n\\x6e\\x57\\x87\\x52\\xb2\\x66\\x6c\\x5a\\xfd\\x0d\\xf2\\x00\\xe0\\x0d\\xbd\\x18\\\n\\xc0\\xaa\\xc2\\xdb\\xf2\\x5f\\x2c\\x1e\\x8d\\x7d\\xab\\x74\\xb7\\xd3\\xb3\\xfa\\\n\\x8a\\x60\\x25\\x27\\x51\\x6b\\xf6\\x07\\xcf\\x5b\\xcf\\x02\\x5d\\xa8\\x37\\xd6\\\n\\xb9\\x02\\x45\\xfb\\x03\\xe7\\x9b\\xa4\\xb1\\x2a\\x41\\xa0\\x11\\xb2\\xa9\\xa4\\\n\\xbe\\xfd\\xa9\\x8a\\xa2\\xa3\\xa5\\x43\\x71\\x14\\xa6\\x0d\\x08\\x78\\x64\\x9d\\\n\\x2d\\xc3\\x91\\x6e\\x7b\\x4e\\x75\\x33\\x6f\\x83\\x35\\x94\\xa8\\xd1\\x7b\\x3f\\\n\\x47\\xd7\\x3e\\xcb\\x2f\\x0d\\xcd\\x7e\\x7a\\x71\\x9d\\xe5\\x16\\x64\\xb9\\x95\\\n\\x64\\x93\\xa2\\x4c\\xa7\\xff\\x00\\x43\\xfe\\x7c\\x61\\xfb\\x38\\xf7\\xeb\\xfc\\\n\\xfb\\x8c\\x8b\\xc6\\x05\\x95\\x7a\\x9d\\xb1\\xdf\\x50\\x59\\xe8\\x5e\\xf8\\x37\\\n\\xb0\\x41\\x46\\x29\\xa9\\xcd\\x61\\xf7\\x9d\\xdf\\x00\\xa0\\x81\\x53\\x08\\xbb\\\n\\xea\\x9e\\xbf\\x3d\\xfa\\xc9\\x2c\\x50\\x8c\\x58\\x7f\\x34\\x3f\\x97\\xf8\\xa3\\\n\\x92\\x65\\x04\\x6c\\xa6\\x43\\x08\\xcd\\x66\\xbc\\x71\\x73\\xc2\\x48\\xc5\\x0e\\\n\\x37\\xb1\\xd5\\xdf\\x9e\\xf3\\xe4\\x11\\x2c\\x62\\xf5\\x54\\xe4\\xc8\\xde\\xbe\\\n\\xbf\\xad\\x09\\x4f\\x03\\x48\\x7f\\x0e\\x8c\\x7a\\xe5\\xf5\\x78\\x4a\\x42\\x4a\\\n\\x8a\\x04\\xd4\\x43\\x5e\\xfe\\xd6\\xf9\\x16\\x99\\xa6\\x83\\x67\\xf8\\x8e\\x14\\\n\\xd4\\x7d\\x1e\\x02\\xe9\\x6a\\x06\\x14\\xdd\\xce\\x7b\\xcc\\xf4\\x67\\x10\\x2a\\\n\\xce\\x05\\xb2\\x50\\x75\\xa1\\x76\\x4b\\x1f\\xa7\\x92\\x8a\\xab\\x4a\\x81\\x89\\\n\\x88\\x45\\xf5\\x70\\x46\\xf8\\x14\\x49\\x0a\\xe8\\x25\\x84\\x31\\xe1\\xdd\\x68\\\n\\x92\\xa2\\x17\\x26\\xcc\\xc9\\xba\\x52\\xc8\\x7b\\x3e\\x7d\\x31\\xc6\\x25\\xa0\\\n\\x1c\\x08\\x96\\x85\\x41\\x90\\x87\\x65\\xa8\\xab\\xaa\\x54\\x81\\xfe\\xff\\x00\\\n\\x20\\x7a\\x80\\xf1\\x12\\x09\\x1a\\x49\\x51\\x74\\x37\\x04\\xf5\\xa0\\x0f\\x8c\\\n\\x20\\xb1\\x64\\x6b\\xed\\x50\\x51\\xfa\\xb5\\xf4\\xcf\\x38\\xdd\\x61\\x16\\x25\\\n\\xf4\\xb5\\x23\\x43\\x49\\x07\\xac\\x99\\x58\\xb0\\x72\\x21\\x05\\x89\\x22\\xb8\\\n\\x48\\xa8\\x5a\\xd4\\x5b\\xa1\\x84\\xa6\\xde\\x70\\xe9\\x8f\\xb2\\x55\\xd6\\xaa\\\n\\x21\\xa9\\x8e\\xb3\\x02\\x70\\xd4\\x02\\x35\\x09\\x01\\x01\\xa3\\xae\\x31\\xd8\\\n\\x47\\x00\\x6f\\xb3\\x68\\x32\\x4a\\x4d\\xa6\\x47\\xf8\\x5b\\x1d\\x95\\x7c\\x2c\\\n\\x23\\x95\\x44\\x01\\xec\\x09\\x29\\x6e\\xe6\\x4f\\xc4\\x33\\xd7\\x03\\xd1\\xeb\\\n\\xb6\\x9f\\xb1\\x29\\xe4\\xb6\\x80\\x03\\x80\\x21\\xa1\\xa7\\x6b\\xae\\xd9\\x34\\\n\\x3d\\x01\\x12\\x32\\x2f\\xe6\\xaf\\xfa\\xca\\xfe\\x78\\xf6\\xa1\\xfa\\xd5\\x21\\\n\\xc7\\x2f\\x23\\x9f\\xe1\\xcf\\x16\\xd0\\x4a\\x26\\x90\\x8d\\xb2\\x69\\x5c\\x79\\\n\\x9a\\xf8\\xce\\x94\\xab\\xa8\\xba\\x2a\\x21\\x24\\x27\\x7c\\x98\\x11\\x89\\x11\\\n\\x0b\\x45\\x41\\x7a\\xb0\\xc2\\x0c\\x78\\x76\\x18\\x40\\xde\\xf7\\xc0\\x66\\x22\\\n\\xf1\\x06\\x0e\\xc3\\x6a\\x7f\\xde\\xe2\\xc6\\x3b\\xe1\\x86\\xd0\\x41\\x03\\xb8\\\n\\xb2\\x92\\x67\\xd5\\xf2\\xc0\\x75\\xe9\\x2f\\x78\\xfd\\x9b\\xeb\\x67\\x2a\\x78\\\n\\x47\\xc1\\xd4\\x57\\x8c\\xbe\\xfe\\x8d\\xc8\\xe7\\xa7\\x52\\x72\\x26\\x80\\x2a\\\n\\x2a\\xa1\\xb2\\x56\\x68\\x43\\xe2\\xf0\\xc9\\x5b\\x12\\x3f\\xc3\\xe6\\xfc\\x32\\\n\\xa7\\x8e\\x86\\x5b\\xb9\\x19\\x01\\xfc\\xc1\\x41\\xe1\\x00\\x54\\x00\\xc1\\xee\\\n\\xb7\\x99\\xfb\\xd7\\x9a\\x93\\x53\\xec\\x58\\x2e\\x97\\x1d\\x01\\x45\\x75\\xc9\\\n\\xd1\\x3c\\x5a\\xae\\x56\\x0e\\xf2\\x00\\xa8\\x3a\\xa1\\xe3\\xba\\x09\\x0a\\x4a\\\n\\x59\\x05\\xa4\\x44\\xb1\\x34\\x08\\xaf\\xc0\\x60\\x1f\\x0b\\xe1\\x5c\\xe5\\xf6\\\n\\xef\\xaa\\xda\\x79\\x63\\x01\\x7e\\xbb\\x46\\x7f\\x9f\\xe2\\x7f\\x14\\xb3\\xa5\\\n\\xfb\\x34\\x43\\x23\\xed\\xeb\\xd9\\x39\\x4b\\x25\\x5c\\x1a\\x00\\xca\\x43\\xf8\\\n\\xb7\\x2a\\xff\\x00\\x8e\\xf5\\xa6\\xd5\\x27\\x21\\x20\\x33\\xfe\\x28\\x0d\\x8e\\\n\\x78\\xa3\\xb4\\x88\\x41\\x89\\xfd\\xae\\x04\\xf6\\xe5\\xc5\\x3d\\x5b\\xee\\x88\\\n\\xfc\\x1d\\x1c\\x7f\\x79\\x6f\\x55\\x11\\x0b\\x54\\xca\\x8c\\xef\\x07\\xde\\x09\\\n\\x17\\xd3\\xa0\\xea\\xcf\\x6a\\x0f\\x4f\\xf2\\x7f\\x59\\x64\\x3c\\x0f\\x0f\\x02\\\n\\x24\\xff\\x00\\xfb\\xee\\x7f\\x2f\\xd2\\xeb\\x02\\xc1\\x78\\xe9\\xa9\\xdf\\xbb\\\n\\xfa\\x90\\xdf\\x1e\\x4f\\x6a\\x67\\x72\\xb6\\xfa\\x03\\xb6\\xbb\\xf9\\xe2\\xc1\\\n\\x80\\x00\\x5a\\x29\\x64\\x7d\\x5f\\x97\\x69\\x9c\\x41\\x0a\\x4c\\x28\\xc0\\x4f\\\n\\xd7\\x7e\\x9b\\xf1\\x3c\\x19\\x00\\xf1\\x02\\x11\\x1b\\xec\\x69\\x3b\\x6f\\x4f\\\n\\x02\\x4f\\x82\\x7d\\x44\\x39\\xf3\\x67\\x05\\xd3\\xc1\\x86\\x20\\x80\\x5a\\x5f\\\n\\x4b\\xea\\xbf\\x71\\xb1\\x9e\\x29\\x12\\xb6\\x01\\xe2\\xfa\\x4f\\xde\\xf2\\xa7\\\n\\xe7\\x80\\x6a\\x21\\x1f\\xcf\\xef\\xef\\xc3\\x37\\xe1\\xe8\\x68\\x8d\\xbe\\x87\\\n\\x5f\\xa9\\xcf\\xfd\\xcb\\x9e\\x34\\x64\\x08\\x25\\x01\\x03\\x1b\\xf5\\x4d\\x9e\\\n\\x99\\xa0\\xe5\\x58\\x66\\x7e\\xae\\xe7\\xdc\\xf7\\xf9\\xfc\\x0c\\x80\\x6b\\x10\\\n\\x65\\x3a\\xf7\\x07\\x8f\\xe1\\x7d\\x50\\x37\\x4a\\x2b\\x97\\x65\\x38\\xdf\\x6e\\\n\\x06\\x19\\xda\\x7d\\x23\\x10\\xc3\\x14\\x0d\\x1e\\x6f\\xb7\\xf8\\xf0\\xf5\\x01\\\n\\x17\\x5c\\x73\\x97\\x9c\\xfb\\x3f\\xad\\x0f\\x2b\\x06\\x04\\x41\\x77\\xb6\\xdf\\\n\\xe1\\xc9\\xdf\\x66\\xc2\\x24\\x41\\x04\\xcd\\x4f\\x5b\\x6c\\xa7\\xf7\\xf9\\x7b\\\n\\x12\\x40\\x8a\\x22\\xdc\\xf7\\x76\\xfc\\x7c\\xe6\\x88\\x5c\\x5e\\x83\\x3a\\x2c\\\n\\x7b\\x7f\\x8e\\xf9\\xa9\\x02\\xb2\\x14\\xb5\\x99\\xbd\\x01\\x98\\x9b\\x0f\\x2a\\\n\\xba\\x0d\\x80\\x04\\xa1\\xcb\\x01\\xbc\\x2a\\x1e\\xbc\\x5a\\x67\\x6d\\x89\\x41\\\n\\xd2\\x8f\\x40\\x9b\\x23\\xd3\\xc7\\xa1\\x04\\x1e\\x8a\\xb8\\x6b\\xa2\\x9b\\xb7\\\n\\xd9\\x3c\\x03\\x0a\\x6d\\x84\\x84\\xd1\\x14\\xb4\\xe8\\xca\\x46\\xf8\\xc8\\x06\\\n\\x8c\\x22\\x1e\\x87\\x1a\\xfc\\x0b\\xfd\\xa0\\x07\\x0c\\x79\\x62\\x70\\x1b\\x1c\\\n\\x1f\\xf2\\x5b\\xee\\xad\\x47\\xd7\\x9b\\x24\\x45\\x1c\\xf6\\x0c\\xa6\\x85\\xc2\\\n\\x6c\\x2b\\x18\\xd7\\xb9\\x79\\x43\\xc9\\x9d\\xf0\\x4a\\x81\\x80\\x81\\xdf\\x6f\\\n\\x37\\xdb\\x19\\x7d\\x39\\x1a\\x3d\\x23\\x5a\\x1c\\xe5\\xca\\x3e\\x0f\\xa1\\xa7\\\n\\x07\\x65\\x42\\x81\\x98\\xf3\\xe1\\x2b\\xdf\\x20\\x88\\x5a\\x3e\\xcd\\x89\\x81\\\n\\xca\\xbf\\x9b\\xec\\xb6\\xce\\x96\\x54\\xdf\\x7a\\x00\\xff\\x00\\x87\\x9f\\x9e\\\n\\x27\\xd0\\x91\\x0a\\x42\\x1f\\xc5\\xef\\x39\\x87\\xf0\\x83\\x81\\x4d\\x23\\x03\\\n\\x87\\xc8\\xb5\\xa8\\x87\\xce\\xf8\\xc7\\x01\\x11\\xa0\\xf4\\xca\\xe2\\x08\\xfd\\\n\\xe9\\x5f\\x64\\x81\\x0f\\x48\\x56\\xa6\\x76\\xcd\\x44\\xaa\\xdb\\x0c\\x09\\x7d\\\n\\x0b\\x18\\x08\\x06\\xca\\xb3\\xa5\\x3e\\x78\\x82\\xa3\\x5c\\x32\\x81\\x65\\x5e\\\n\\x98\\x48\\xed\\x05\\x56\\x01\\x8c\\x0c\\x33\\x90\\x20\\x06\\x10\\xf9\\xe2\\x7f\\\n\\x7f\\x45\\xd9\\x80\\x2c\\x1d\\x36\\xbd\\xcf\\x34\\xc3\\xda\\x32\\xe0\\x60\\x0a\\\n\\x14\\x1a\\x21\\x3c\\xba\\x7d\\x07\\x9b\\x34\\x43\\x20\\x7d\\x54\\x12\\x1e\\xd2\\\n\\xf7\\xe3\\xfe\\x5f\\xfe\\x5f\\xe3\\xc5\\x28\\x29\\xf9\\x10\\x05\\xb5\\xe7\\xa9\\\n\\x43\\xba\\xf8\\xd2\\xb1\\x1f\\x34\\x91\\x75\\x22\\xea\\x0e\\x72\\x9c\\x45\\xd4\\\n\\x93\\x1e\\xd0\\x98\\x30\\x2b\\x80\\xf5\\x52\\x38\\xc9\\x7b\\xcf\\x26\\x8b\\x58\\\n\\x75\\x43\\xcd\\xd0\\xdb\\x78\\xd3\\x25\\xcf\\x51\\x9f\\xc5\\xfb\\xe0\\xb0\\x58\\\n\\x27\\xf9\\x10\\x5a\\x28\\x69\\x46\\x28\\x9a\\x8f\\x7f\\x80\\x5e\\x88\\xa5\\xda\\\n\\x4a\\x39\\xd3\\x96\\x78\\x2f\\x6c\\xf4\\x04\\x92\\x8a\\xe2\\x84\\xa5\\x00\\xa9\\\n\\xe4\\x29\\x11\\x2f\\xc0\\x1f\\xf6\\xe2\\x35\\xfb\\xc0\\x1f\\x62\\xd4\\xe8\\x3f\\\n\\xf4\\x2c\\xfb\\xc9\\x7c\\xb1\\x15\\xba\\x1e\\xd4\\xbf\\x8f\\xcf\\xcf\\x5d\\x7c\\\n\\xf8\\x00\\x72\\x1f\\x2b\\xfb\\xb6\\x6e\\xcf\\x8c\\xf1\\x91\\x1d\\x94\\x1b\\xc2\\\n\\xea\\x53\\x83\\x80\\x8c\\xba\\xa4\\x6d\\x18\\x2a\\x11\\x5a\\x42\\xd3\\x06\\xbf\\\n\\x31\\xd9\\xe1\\xe9\\x34\\x6a\\xa6\\xec\\x6d\\x5d\\xfe\\xae\\x5f\\xb6\\x2b\\x10\\\n\\x5e\\x97\\x08\\x64\\xfc\\x81\\x79\\x57\\x3c\\x34\\x17\\x6b\\x5f\\x77\\xf8\\x3d\\\n\\xff\\x00\\x07\\x3c\\x12\\xbd\\xfa\\x9d\\xa5\\x79\\xde\\xf1\\xfe\\x2a\\xe4\\x99\\\n\\x2b\\x0a\\x53\\x58\\x2c\\xcc\\xfd\\xff\\x00\\xcb\\xe0\\xd9\\x68\\x53\\xd0\\x54\\\n\\x75\\xfe\\xfe\\xf9\\x20\\x28\\x07\\x4c\\x4a\\xc7\\x20\\x7b\\x93\\xfa\\xf0\\x8b\\\n\\x32\\xc2\\xa2\\xc4\\xe4\\xd7\\x77\\xe0\\x87\\x7c\\x3e\\x92\\x2a\\xb9\\xed\\x22\\\n\\x2c\\xf4\\xf4\\x0a\\x53\\x5f\\x04\\x22\\xe1\\xb3\\x1b\\x40\\xf6\\x34\\xb8\\xf3\\\n\\x2e\\xc7\\xc5\\xc0\\xe9\\x18\\x7f\\xe3\\x96\\x5e\\xff\\x00\\xd9\\x55\\x17\\x55\\\n\\x3d\\x15\\xf9\\x58\\x3f\\xdb\\xfd\\x3e\\x37\\x69\\xae\\x68\\xfd\\x7f\\x13\\xb0\\\n\\xfe\\xbc\\x68\\x0f\\x7a\\x85\\xdd\\x37\\x4f\\x5c\\xd0\\xaf\\x89\\x1d\\x86\\x1b\\\n\\x8a\\x05\\xce\\x01\\x27\\xed\\x5f\\x03\\x41\\xfb\\xb4\\xf5\\xfc\\xfd\\xf6\\x76\\\n\\x13\\x9e\\x54\\x0a\\x20\\x63\\x4b\\x09\\xa7\\xeb\\x9b\\xe8\\xc9\\xe1\\x2a\\x05\\\n\\x25\\xb1\\x5e\\x16\\x04\\x9f\\xc5\\xf6\\x5b\\x5a\\x59\\x57\\x18\\x1d\\xfa\\x91\\\n\\x9f\\x16\\x87\\xcf\\x11\\xc3\\xb1\\xe6\\xe4\\xee\\x1e\\xba\\xbe\\xb8\\x5c\\xf3\\\n\\x86\\xca\\x0e\\x61\\x9d\\x8f\\x73\\xbb\\xfe\\xc2\\x81\\x62\\x83\\x8c\\xb3\\x86\\\n\\x34\\xe6\\x95\\xbd\\xf0\\x7f\\x91\\x1f\\xcf\\x9c\\x9b\\xff\\x00\\x1b\\xe2\\x0a\\\n\\xa4\\x48\\xda\\xfb\\xec\\x1c\\x72\\xef\\xda\\x1b\\xe6\\x20\\x68\\x65\\x0d\\xf8\\\n\\x6c\\x36\\x53\\x53\\xb3\\xcb\\xec\\x30\\x01\\x18\\x9e\\xda\\x0f\\x68\\xd5\\xc5\\\n\\xaf\\x8c\\x09\\x44\\x51\\x6e\\x1d\\x80\\x0a\\x09\\x20\\x41\\xa4\\xf0\\xa5\\x75\\\n\\x57\\x2d\\x75\\xd9\\xa5\\x45\\x3a\\x28\\x8c\\x51\\x47\\x16\\x9b\\x5c\\xaa\\xe1\\\n\\x65\\x6c\\x24\\x11\\x43\\xa0\\xf4\\xab\\x25\\x88\\x43\\xa8\\x43\\x14\\x77\\xdb\\\n\\xdc\\xcb\\xfe\\x7d\\xff\\x00\\xeb\\xee\\x1e\\xac\\x34\\x9c\\x04\\x3d\\x7d\\x0f\\\n\\x9c\\xf5\\xe3\\xb4\\x62\\x16\\xab\\xfd\\x3f\\x80\\xf5\\xca\\x8a\\x44\\x88\\xa6\\\n\\xb0\\x38\\x5a\\x8a\\x62\\xaa\\x9c\\x28\\x6c\\x17\\xbd\\x43\\x35\\x5b\\xd4\\xe7\\\n\\x5f\\x8e\\x2b\\x1f\\x1d\\x4f\\xd0\\xa9\\xd4\\xe3\\xca\\x6e\\xe3\\xfc\\xc8\\x75\\\n\\x53\\xbc\\x71\\xb4\\xba\\x92\\x5c\\x05\\xa4\\x0f\\x5e\\x54\\xc8\\xde\\x63\\xf3\\\n\\xd7\\xbe\\xfa\\xee\\xf9\\x71\\xff\\x00\\x37\\xbf\\x3b\\x2f\\xba\\x33\\xe7\\xf7\\\n\\xe4\\x03\\x85\\x60\\xfa\\x40\\xae\\x5f\\x4f\\xac\\xe7\\x6f\\x87\\x4a\\x4d\\x95\\\n\\xd3\\x86\\x7d\\xb0\\xdb\\xfa\\x54\\xf1\\xdd\\x21\\x0b\\x23\\x23\\xdb\\x00\\x22\\\n\\x22\\x8d\\x1f\\x63\\xcb\\xb7\\xe0\\xc4\\x46\\x21\\xdb\\x99\\xdf\\xe2\\x79\\xf7\\\n\\x11\\x22\\x50\\x2e\\x5d\\xdc\\x50\\x11\\xf6\\x47\\x21\\x4c\\x0c\\x05\\x00\\x09\\\n\\xa0\\x18\\x37\\x16\\x66\\x22\\x11\\x35\\x99\\xd2\\x81\\x03\\x30\\xc6\\xc4\\x21\\\n\\x5d\\x2c\\x88\\x51\\x03\\xf3\\xc2\\xe0\\xc2\\x7b\\xbf\\x5f\\x73\\x4f\\xdf\\xff\\\n\\x00\\xbe\\x08\\xca\\x51\\xb7\\x96\\xe1\\xfc\\x3f\\x27\\xcf\\x1e\\x59\\x61\\x4e\\\n\\x5e\\x85\\xd6\\x46\\xdb\\x3d\\xef\\x94\\xf7\\x50\\x82\\x8d\\xbd\\x4a\\x80\\x1a\\\n\\xbb\\xe3\\x24\\x18\\x73\\x3d\\x70\\x8b\\xe8\\xfc\\x76\\x6d\\x0f\\x4b\\x48\\xa2\\\n\\xa0\\x64\\x60\\x9d\\x2f\\xba\\xae\\xd9\\xf9\\xf3\\x9b\\x0c\\x1c\\x5d\\xa1\\x7d\\\n\\xcd\\x3c\\xbc\\xb9\\x22\\xaa\\x84\\xc0\\xee\\x39\\x7e\\x85\\x80\\x0d\\x0c\\xb2\\\n\\x78\\x36\\xe0\\x18\\x41\\xef\\x48\\x08\\x63\\x01\\x48\\x08\\x22\\xa1\\x55\\x17\\\n\\x50\\xc4\\xf2\\x3e\\x84\\x52\\xf7\\x5a\\x55\\xc0\\x5b\\x66\\x7a\\x7c\\x3a\\xd8\\\n\\x46\\xf4\\x63\\x08\\x6b\\xb8\\x01\\xa6\\x6c\\xd4\\x6a\\xc7\\xfa\\xb6\\x01\\xcb\\\n\\xcf\\x7b\\xcf\\x16\\x01\\xd1\\x15\\x8a\\xf1\\x83\\x65\\x57\\xab\\x03\\xd7\\x89\\\n\\x5b\\x36\\x1a\\x0e\\x39\\xd4\\xee\\xc6\\x55\\x86\\x4d\\xf0\\x58\\x82\\x5a\\x7c\\\n\\x46\\xf1\\x41\\xe5\\xc0\\x50\\xc5\\x8b\\x7f\\xaa\\xb3\\xfb\\xfb\\xee\\xde\\xfb\\\n\\xe7\\x94\\x00\\x10\\xb5\\xbc\\x5f\\x6d\\xaf\\x3d\\x9c\\xfc\\x9e\\x53\\x65\\x14\\\n\\x82\\x3d\\xc4\\xee\\x7e\\x3d\\x9f\\x20\\x40\\x12\\xb2\\x27\\xa6\\xbf\\x47\\xeb\\\n\\xff\\x00\\x26\\xd7\\xc0\\x01\\xea\\x28\\xf4\\x95\\x5a\\xaf\\x5b\\x5d\\x22\\xee\\\n\\x78\\x11\\x06\\x88\\x24\\x4f\\xfc\\x7c\\xaa\\x7a\\xe8\\x23\\x3a\\x70\\x53\\x00\\\n\\x01\\xd4\\x45\\x74\\x03\\xa2\\xb6\\x1d\\x3a\\x8a\\xda\\x30\\x32\\x02\\x49\\x47\\\n\\xe3\\x4c\\xa0\\x95\\x16\\x2a\\xfd\\xbe\\x8c\\x7d\\xec\\x24\\x42\\xbc\\x3d\\x81\\\n\\x1f\\x82\\xdf\\x5e\\xc9\\x8c\\xca\\xc3\\x00\\xe3\\x94\\xcf\\xf3\\xb9\\x3f\\xa7\\\n\\xc0\\x24\\x04\\x16\\x03\\xd0\\x7e\\x69\\xf9\\xee\\x72\\xf9\\x45\\xd5\\x53\\x03\\\n\\xb7\\x7d\\x7c\\x0c\\xf9\\xf9\\xe5\\x88\\x08\\x17\\xb9\\x57\\x3d\\xee\\x62\\x13\\\n\\x8f\\xc7\\xc1\\x6c\\xac\\x09\\x71\\xa4\\x86\\x04\\xe8\\x3f\\xc6\\xd3\\xc1\\x22\\\n\\x16\\x87\\x2e\\x50\\xff\\x00\\x61\\xed\\xc5\\xab\\x9e\\x57\\x36\\x95\\xd2\\xcc\\\n\\x30\\x26\\x59\\xce\\x05\\xf2\\x6d\\xa8\\x47\\x6e\\x04\\xc8\\x5e\\xf2\\xbf\\x3f\\\n\\x7d\\x80\\x3f\\x4c\\x0f\\x9f\\x9f\\xe7\\xfe\\x63\\x90\\xbe\\x89\\xa2\\xef\\x57\\\n\\xe7\\x37\\x35\\xe6\\x95\\xff\\x00\\x50\\x5f\\x6f\\xe5\\x7b\\xee\\xab\\x7e\\x61\\\n\\xe2\\xac\\x69\\xae\\x34\\x3d\\x99\\xd3\\x83\\xec\\x9f\\x9e\\x30\\x9e\\xf5\\x7f\\\n\\xa6\\x2e\\x3c\\x3d\\xb7\\x86\\xc6\\x0d\\x34\\xa2\\x49\\xff\\x00\\x87\\xd6\\xbf\\\n\\xe7\\x53\\xca\\x0b\\x42\\x23\\x25\\x3a\\xec\\xa5\\x9f\\xd6\\xf3\\xc8\\x51\\x2d\\\n\\x9a\\x1e\\xec\\xb0\\x10\\x88\\x93\\xdc\\x13\\xc6\\x26\\x8a\\x84\\xf0\\xdc\\xbc\\\n\\x3d\\x8b\\x77\\x87\\x83\\x08\\x80\\x34\\xd8\\x02\\xae\\xb3\\xf4\\x5b\\xdf\\x63\\\n\\x55\\x50\\xe2\\xab\\x35\\x81\\x59\\xbb\\x87\\xef\\xcf\\x0c\\x68\\x03\\x48\\x45\\\n\\x03\\x07\\x62\\x3c\\x51\\x33\\x8b\\x3c\\x80\\xb8\\x79\\x8e\\x4a\\xae\\x1a\\x4d\\\n\\xa6\\x8e\\x57\\x3c\\x40\\x40\\xa6\\x09\\xc9\\x6d\\x1d\\xed\\x5a\\xdf\\x8f\\x8e\\\n\\x12\\x35\\x52\\xe0\\x1f\\x6b\\xd2\\xfb\\xe2\\x18\\x78\\x9b\\xc8\\x49\\x70\\xd8\\\n\\x9f\\x01\\x48\\x20\\x61\\x01\\xbe\\x29\\xbd\\x42\\x1c\\x3a\\x35\\x6e\\x9e\\x97\\\n\\x91\\x7b\\x3c\\x0f\\x31\\xeb\\xd0\\x82\\x20\\x10\\x98\\xe9\\xef\\xaf\\x8a\\x99\\\n\\x99\\xfc\\xe5\\x3f\\x9e\\xb1\\xbe\\xb7\\x0f\\x4e\\x53\\xab\\x30\\x6f\\xbf\\x47\\\n\\xff\\x00\\x7c\\x7c\\x10\\x10\\xb0\\xfe\\x77\\xd3\\xfb\\xc2\\x75\\x7d\\x5f\\x15\\\n\\x30\\x2f\\x77\\xe0\\xf2\\xb8\\x4e\\xa9\\x90\\xac\\x3c\\xd4\\xcc\\x74\\x28\\x57\\\n\\x5c\\xe9\\xe8\\xd0\\x5b\\x6b\\x34\\xf1\\x85\\x4a\\x8a\\x28\\xd2\\x8a\\x14\\xa4\\\n\\x63\\x7c\\x66\\x1c\\xd5\\x08\\x83\\xdd\\xfe\\x12\\xf7\\xee\\xaf\\x85\\xb8\\xc5\\\n\\x8b\\x1d\\x08\\x89\\xa6\\x0e\\x8f\\x4c\\x4d\\xf0\\x32\\x8b\\x12\\xc3\\x01\\x5d\\\n\\x22\\x26\\x9f\\xd7\\x86\\x42\\xaa\\x00\\xc5\\x2c\\x9e\\x80\\x19\\x7a\\x78\\x30\\\n\\x1c\\x97\\x0a\\xb5\\xb3\\xe1\\x4d\\x3a\\xa1\\xbe\\x04\\x29\\x3d\\xe7\\xf8\\xdd\\\n\\xcf\\x0f\\x87\\x12\\xc5\\x13\\x92\\xa4\\x92\\x69\\xc2\\x3f\\x76\\x87\\xe5\\x22\\\n\\x07\\x7a\\xd1\\x21\\x65\\xef\\xb6\\x00\\x30\\xe9\\xd0\\xa6\\xcf\\xd1\\x0c\\x1a\\\n\\x8d\\xab\\xc6\\x22\\x10\\xa5\\xac\\xb7\\x04\\x61\\x98\\x69\\x36\\x89\\xe0\\x59\\\n\\x52\\xc1\\x3d\\x25\\xfe\\xb3\\xbd\\xad\\x48\\x8c\\x46\\xe4\\x69\\x19\\xea\\x09\\\n\\xef\\x97\\xc7\\x39\\x1a\\x85\\x0c\\x6d\\x8f\\xb7\\x18\\xcb\\x77\\xc7\\xf0\\x31\\\n\\x92\\xc7\\x27\\x41\\x4f\\xa4\\x2f\\x05\\x64\\xa0\\x03\\x00\\x07\\x22\\x5e\\xef\\\n\\x67\\xa7\\xdf\\x88\\xd0\\xa2\\x16\\xd2\\x9a\\x87\\x3d\\x86\\xef\\xf3\\x71\\x58\\\n\\x11\\x00\\xdc\\x8a\\x4d\\xf4\\x56\\xdd\\x8b\\x63\\x96\\x58\\x5a\\x91\\x8e\\x1f\\\n\\x8a\\x5b\\xfb\\x38\\x8e\\xd4\\xf0\\xee\\xd3\\x42\\x17\\xa4\\x7b\\x02\\x15\\xf7\\\n\\x7b\\x6a\\xa0\\x40\\x38\\x7d\\xb4\\xef\\x45\\x9e\\xbb\\x4e\\xfb\\xf2\\xcc\\x70\\\n\\x94\\xb2\\xfb\\x4b\\x4d\\xef\\xcf\\xb2\\xc0\\x0e\\x87\\x0f\\x7d\\xfb\\x35\\x3f\\\n\\x85\\x67\\xf2\\x1e\\x13\\x34\\x2a\\xb0\\xa0\\x5e\\x29\\x54\\x8d\\xc1\\x33\\xb8\\\n\\xf1\\x3b\\x06\\x03\\x0a\\x14\\x56\\xd8\\xa0\\x1b\\x88\\x5d\\xef\\x9e\\xd1\\x23\\\n\\x38\\x17\\xfe\\x3a\\xfa\\x9d\\x8d\\xd5\\x49\\xa2\\x55\\x6a\\x38\\x08\\x01\\xf8\\\n\\xac\\x97\\xa4\\x59\\x93\\x68\\x5a\\x93\\x02\\x03\\x30\\x7b\\x07\\x39\\xe0\\x94\\\n\\x03\\x89\\xd4\\x4a\\x01\\xa2\\x48\\x2a\\x23\\x3c\\x4f\\x13\\xa0\\x31\\x83\\x14\\\n\\x35\\x38\\x17\\x0a\\x66\\x22\\x36\\x00\\x10\\xe1\\x39\\xfc\\x8f\\xbb\\x3a\\x1d\\\n\\xf3\\x27\\x80\\xff\\x00\\x26\\x50\\xee\\x6c\\x1b\\x9b\\x3f\\x40\\x28\\xd8\\x07\\\n\\x1f\\x4e\\xad\\xad\\xfb\\xf3\\xcc\\x40\\xa8\\x05\\x66\\xc2\\x5e\\xd9\\xef\\x77\\\n\\xf9\\xef\\x80\\xaa\\x21\\xce\\xa2\\xd7\\x6f\\xaf\\xe3\\x9c\\xee\\x79\\x33\\xe4\\\n\\x44\\x6e\\x7d\\x07\\x23\\x6d\\x33\\xd1\\x0b\\x50\\x82\\x10\\xa6\\xd4\\x1c\\x41\\\n\\x5e\\x3b\\xf1\\x8d\\xf1\\x5f\\x36\\xe2\\x56\\x60\\x58\\x27\\xef\\x3b\\xb9\\xe1\\\n\\x21\\x82\\x9b\\x37\\x44\\x0d\\xe8\\x2f\\xb5\\x8a\\x4c\\x3c\\x75\\xd5\\xab\\x5a\\\n\\x82\\x64\\xbb\\xbd\\xe1\\xe5\\xa1\\x0c\\x68\\x3d\\xf7\\xdc\\x7b\\xb7\\x86\\x1b\\\n\\x4b\\x60\\x29\\x69\\x4e\\x6f\\xb3\\x8c\\x0b\\xec\\xbe\\xef\\xab\\x06\\xf1\\x01\\\n\\x88\\x1c\\xd9\\x27\\xe5\\x39\\xbe\\x0c\\x93\\xa2\\x2d\\x7d\\x61\\x37\\x83\\xf0\\\n\\x57\\xb5\\xf0\\x34\\xa5\\x32\\x0f\\xa7\\x1b\\x79\\xdd\\x39\\x1d\\x4d\\x67\\x64\\\n\\xae\\xf2\\x55\\x9f\\xe3\\xef\\xfc\\x77\\xc1\\x09\\x45\\xf4\\x4d\\x57\\x67\\xc3\\\n\\x93\\xa8\\x6d\\xd1\\x6d\\xa1\\x88\\x28\\x6d\\x7e\\x8b\\x75\\x82\\xfa\\x72\\xd0\\\n\\x32\\x4a\\x16\\xa0\\xd6\\x86\\x70\\xe2\\x9f\\xdd\\x0f\\x92\\x48\\x05\\x12\\x29\\\n\\x78\\x38\\xff\\x00\\x00\\xf8\\x8c\\xc8\\x03\\x60\\xb0\\x25\\x85\\xab\\x00\\x7f\\\n\\x10\\xe2\\x8d\\x1a\\xc4\\xea\\x01\\xa0\\x25\\xc1\\x6d\\xe7\\x88\\x22\\x6e\\xe9\\\n\\xb5\\xce\\x90\\xaa\\x09\\xc8\\xfa\\x2d\\x43\\x20\\xb5\\xc9\\x34\\x23\\x3f\\x36\\\n\\x88\\x80\\xe3\\xc7\\xc1\\x0a\\x08\\xd1\\x0a\\x98\\xb1\\x31\\xfc\\x81\\x86\\xf6\\\n\\x04\\xa1\\x85\\x03\\xb1\\x87\\x5e\\xde\\xa3\\x9b\\xdc\\xd2\\xf5\\x99\\x47\\xa1\\\n\\x07\\x08\\xe8\\xe2\\x97\\xe6\\x84\\x7d\\xc9\\x4e\\xeb\\xaf\\x03\\x1d\\xe6\\xcb\\\n\\x3f\\x3c\\x1c\\x01\\xb0\\x20\\xa5\\x53\\x78\\x99\\x90\\xa5\\xb9\\xeb\\xcb\\x24\\\n\\x8c\\x08\\x69\\xdf\\xcf\\xce\\x77\\xa2\\xfc\\x52\\x2f\\xc9\\xdb\\x31\\xfc\\xd3\\\n\\xd7\\x5c\\x55\\xdf\\x3b\\x3b\\xd7\\xa1\\x56\\x9e\\xc6\\xf6\\x5c\\x0f\\xe9\\xe0\\\n\\x2b\\x81\\x2d\\x6a\\x87\\xc7\\x5e\\x1b\\x2f\\x8d\\xf4\\x20\\xa0\\x80\\x78\\x62\\\n\\x46\\x8f\\x1d\\x45\\x9e\\x7a\\xad\\x58\\x02\\x84\\x08\\x17\\xa1\\x62\\xe4\\x80\\\n\\x45\\x51\\xb0\\xd1\\x6c\\x78\\xbc\\xe1\\xfd\\x67\\x8e\\x29\\x86\\x32\\x84\\xad\\\n\\x88\\xea\\x77\\x02\\x6e\\x15\\x58\\x43\\x4d\\x80\\xa0\\x82\\x30\\xad\\xcd\\xfa\\\n\\x9e\\x0a\\xb0\\xea\\x34\\x2a\\xd7\\xf2\\xc0\\xfa\\xd2\\x81\\xc9\\xfd\\xa6\\x93\\\n\\xd9\\xfc\\x7e\\xde\\xef\\x8b\\xfa\\x26\\xae\\x34\\xc2\\xa6\\x7f\\x37\\x3c\\x94\\\n\\x1c\\x91\\x41\\x17\\xd3\\xe8\\xf7\\xc8\\xe1\\x24\\x63\\x05\\x05\\x14\\xd0\\x85\\\n\\x92\\x74\\x37\\x9f\\x9b\\xe6\\xad\\x00\\xdd\\x8b\\x54\\xcb\\x3e\\xee\\x93\\x9b\\\n\\xa1\\x0a\\xd2\\x04\\x13\\x2b\\x28\\x33\\xa7\\xae\\x4f\\x0c\\x36\\xb7\\xc5\\x2c\\\n\\x5f\\xe0\\xe7\\xc9\\xd8\\x78\\x5d\\xc2\\x40\\x90\\xb4\\xa3\\x91\\x05\\xce\\x3e\\\n\\xcf\\x05\\x86\\x16\\x9b\\xd3\\xdb\\x94\\x67\\xd3\\x55\\x77\\x3c\\x7a\\x34\\x02\\\n\\x95\\x07\\x8d\\x6e\\xfa\\x02\\xfb\\xee\\x78\\x59\\x08\\x0b\\x67\\x57\\xfb\\x5f\\\n\\xfe\\xe7\\xbf\\x36\\xe5\\x8d\\x14\\x6e\\xe9\\xe9\\x93\\xf9\\xf5\\x68\\x17\\xc7\\\n\\x37\\x02\\x8a\\x85\\x27\\xd9\\xeb\\x2c\\xee\\x20\\x13\\xc1\\x81\\x46\\x9c\\xba\\\n\\xf5\\xc5\\x31\\x03\\x89\\x5b\\xea\\xae\\x11\\x2d\\x45\\xcd\\xf7\\x33\\x37\\x63\\\n\\xc9\\x31\\x77\\x0c\\x06\\x0e\\x16\\xeb\\x09\\x7b\\xed\\xe3\\xb0\\xf2\\xe9\\x81\\\n\\x9b\\xd6\\x67\\xf3\\x3d\\xd3\\xdf\\xed\\x41\\xa3\\x98\\xec\\x19\\x53\\xe6\\xef\\\n\\xd0\\x77\\xd7\\x3c\\x27\\x10\\x04\\x74\\x44\\x2f\\x3d\\x91\\xb0\\x99\\xb6\\x1d\\\n\\xb9\\xa4\\x51\\xca\\x0a\\x72\\x9b\\xa4\\x3e\\xa4\\x7c\\x03\\x45\\x55\\x4a\\xa3\\\n\\xba\\xa9\\x0b\\xfc\\x5d\\x9a\\x6f\\x81\\xa7\\x16\\x42\\xfe\\xa3\\xdf\\x73\\x66\\\n\\x9e\\xef\\x95\\xf0\\x81\\x0d\\x59\\x60\\xe2\\x95\\x59\\x55\\xbc\\x7c\\xa5\\xbc\\\n\\x22\\xb0\\xa2\\x9a\\x2d\\xdf\\x5d\\x7d\\x0e\\xb3\\x03\\xad\\x25\\x21\\x64\\xce\\\n\\x7f\\x17\\xfd\\xbe\\x31\\xd0\\x2a\\xff\\x00\\x4f\\xd8\\x56\\xed\\xb8\\x79\\x94\\\n\\x58\\x1d\\x58\\x71\\x9a\\xff\\x00\\x21\\xf9\\x4f\\xcf\\x17\\xec\\x40\\x52\\x00\\\n\\xa9\\x68\\xbb\\x3b\\x64\\xaa\\xfd\\x9b\\xda\\x88\\x89\\x10\\xd3\\x73\\x24\\x73\\\n\\xf4\\xb7\\xc7\\x16\\xbe\\xad\\x6a\\xa8\\xb7\\xfd\\xe7\\x5b\\xf0\\xf2\\xdf\\x44\\\n\\x02\\xa8\\xd1\\x42\\xe1\\x25\\xc7\\x6d\\x93\\xc0\\xab\\x22\\xac\\x51\\x03\\x11\\\n\\xf4\\x0d\\xef\\xbf\\x69\\xd1\\x50\\x08\\x8b\\x01\\x74\\x1b\\xea\\x81\\x8d\\xb4\\\n\\xee\\x78\\xc0\\x9a\\xfa\\x4e\\x34\\x20\\x5f\\x45\\x67\\x2f\\xf3\\xe5\\xd8\\x06\\\n\\xb9\\x1f\\x9f\\x63\\xdf\\x6f\\xe9\\xea\\xcd\\xa8\\xb1\\x7a\\x6f\\x78\\x5f\\xf5\\\n\\x3d\\xe7\\x7c\\x48\\x74\\x29\\xad\\xfe\\x24\\x8c\\x7f\\x8b\\x93\\xf7\\xc1\\xc4\\\n\\x85\\xfc\\x90\\xf6\\x17\\x69\\xf6\\xbf\\xdb\\xe2\\x3c\\x4f\\x38\\x5d\\x9b\\xcb\\\n\\x8b\\x2b\\x7b\\x96\\xf8\\x85\\x45\\xf4\\xa7\\xa6\\xbf\\x3d\\xbf\\xe7\\xf8\\xe9\\\n\\xc0\\x51\\x4a\\x5d\\xd0\\x03\\x5a\\xbe\\xa4\\x0e\\xec\\x17\\x8b\\x16\\x88\\xcd\\\n\\xfd\\x98\\xa0\\x3f\\xf1\\x3b\\xe0\\x10\\x36\\xd8\\x5d\\x46\\x1c\\x0c\\xfc\\xca\\\n\\xff\\x00\\x85\\xe4\\x11\\xb4\\x22\\x22\\xda\\x04\\xef\\x3f\\xa7\\x88\\x9c\\xc2\\\n\\x70\\x15\\x66\\xa1\\x19\\x29\\x08\\xe1\\x52\\xf8\\xad\\x78\\x92\\xd3\\x64\\x00\\\n\\xb8\\x89\\xf4\\x06\\x02\\xd8\\x2a\\x8d\\x4e\\x34\\x8a\\x37\\xf3\\x67\\x3f\\x40\\\n\\xfb\\x3e\\x89\\x21\\x78\\x9b\\xf0\\x8d\\xb1\\x7c\\xc8\\x00\\x16\\xb1\\xd7\\xa0\\\n\\xf4\\xaf\\x57\\xae\\x67\\xd0\\x12\\x36\\xfb\\xfc\\x7e\\xcb\\xfe\\x7f\\x9f\\x31\\\n\\x6a\\xaf\\x1c\\xb6\\xfd\\x97\\x7f\\x0e\\x35\\xa8\\x78\\xb9\\xa8\\x80\\x32\\xb2\\\n\\x82\\x02\\x6b\\xea\\x27\\x00\\x1e\\x26\\x35\\xc8\\x1c\\x0d\\x9c\\x66\\x17\\xea\\\n\\xe5\\xbe\\x1c\\x6e\\x00\\x5a\\x3c\\x6e\\x3b\\xbc\\x3d\\x57\\xd4\\x06\\x29\\x31\\\n\\xb4\\x17\\x31\\xd2\\x7f\\xaf\\xf3\\xea\\x33\\xb4\\xf9\\xfc\\xce\\xe8\\x99\\xcf\\\n\\x8c\\xb3\\xcf\\x49\\x18\\x60\\xe8\\x5b\\x06\\x38\\xdb\\x87\\xbf\\x5e\\x09\\xae\\\n\\x95\\x7d\\x29\\x8d\\x83\\x1f\\xba\\x32\\x1f\\x92\\xa5\\xed\\x4b\\xcc\\xba\\x66\\\n\\xe2\\xc4\\xd9\\x98\\x79\\x25\\x66\\xd2\\x4e\\x23\\x5e\\x75\\xd6\\x12\\xfa\\xbe\\\n\\x0f\\x40\\x1d\\x56\\xd1\\x1c\\x68\\xa9\\x5d\\xd0\\xd3\\xdf\\x8e\\x39\\x81\\xe1\\\n\\x54\\xd5\\x74\\x5f\\xb4\\x28\\xd7\\xbb\\x90\\x25\\x22\\xd3\\x1e\\xa9\\x6b\\xcc\\\n\\xe0\\x6e\\x0f\\x93\\x8f\\xf7\\x03\\xbf\\x39\\x8f\\xa8\\x1e\\x0a\\x16\\x08\\x88\\\n\\x13\\x3f\\xab\\xbd\\x9c\\xfe\\x78\\x52\\x35\\x74\\x1e\\xf0\\x6f\\xa9\\x02\\x0c\\\n\\xfc\\xf2\\xdd\\x20\\xb4\\x9d\\xf1\\xfd\\xcc\\xcb\\x0b\\x99\\xe3\\xf7\\xa5\\x1d\\\n\\xf6\\x60\\x4b\\xff\\x00\\x7a\\x2b\\xf9\\xe3\\xc4\\xb0\\x03\\x6c\\x96\\x4f\\x6b\\\n\\x59\\xdd\\xa3\\xe9\\x00\\x8a\\x2a\\x22\\x12\\x7b\\x9a\\x94\\x07\\x3d\\x76\\x79\\\n\\x54\\xc3\\x06\\x3a\\x2b\\x8f\\x58\\x5d\\xd0\\x0b\\x21\\xe2\\x60\\x30\\x40\\x06\\\n\\x04\\x2b\\xdc\\xd3\\xe7\\xa3\\x79\\xe1\\x74\\x42\\x0b\\xd1\\xb1\\x93\\xef\\xd3\\\n\\x53\\x3c\\x12\\x90\\x1c\\x4a\\x9b\\xa6\\xae\\x6a\\xfd\\xe1\\xbe\\x49\\xbe\\xc6\\\n\\x53\\x0d\\x77\\xec\\x27\\xbf\\xd5\\xce\\x84\\x14\\x78\\x6b\\x86\\x87\\xa9\\x25\\\n\\x5e\\x6c\\xbe\\x4b\\x98\\x39\\x64\\x3d\\x0f\\x46\\x5c\\xe0\\xb7\\xc6\\x24\\xb4\\\n\\x7f\\x53\\x56\\x18\\x6f\\x73\\xfe\\x25\\x43\\x44\\x91\\xf7\\x10\\xf6\\x37\\x0f\\\n\\x90\\xa2\\x25\\x87\\x80\\xd8\\x05\\xc5\\xec\\xcf\\x84\\xe7\\x31\\x64\\x3c\\x9f\\\n\\xd9\\x06\\xd1\\x37\\xd8\\xe4\\xa7\\xf8\\x17\\xbc\\x81\\xca\\x09\\x1e\\xed\\x15\\\n\\xcc\\xff\\x00\\x2d\\xde\\x59\\xe0\\xdd\\x4b\\xfc\\xfe\\xcf\\x97\\xf4\\x64\\xf1\\\n\\xc5\\x7d\\x14\\x81\\xeb\\x61\\xbd\\xf9\\xeb\\x3a\\x65\\x14\\xb0\\xba\\xee\\xeb\\\n\\xfa\\x00\\xc1\\x8f\\xaa\\xef\\xc9\\x5c\\x5b\\x68\\x94\\xa0\\x1a\\x4b\\x52\\xff\\\n\\x00\\x35\\xf2\\x24\\x7d\\x09\\x71\\x3d\\x5c\\xd6\\x7e\\x43\\x6d\\xf0\\xa8\\x54\\\n\\xa8\\x5f\\x43\\xff\\x00\\x0f\\x5a\\x53\\xf5\\xf1\\x7d\\xe1\\xce\\xfd\\x71\\x2f\\\n\\xf1\\x39\\xe2\\x1a\\x68\\xd1\\xe6\\x5c\\xfe\\x60\\xff\\x00\\x53\\xd6\\x17\\x6d\\\n\\x83\\x0f\\xf0\\x73\\x9f\\xe3\\xbe\\xcf\\x01\\x34\\x40\\x46\\x16\\x39\\x17\\xa6\\\n\\x7b\\xf9\\xce\\x6b\\x57\\x78\\x0f\\xe0\\xdf\\x45\\x75\\xce\\x7e\\xf8\\xc5\\x48\\\n\\xe1\\x63\\x4d\\x9f\\xee\\xc0\\xbf\\xcd\\xf5\\x74\\xbe\\x85\\xec\\xb6\\xb1\\xef\\\n\\x64\\xdf\\xfb\\xf1\\x7b\\x34\\x7e\\xdf\\x56\\xe6\\x07\\xef\\x40\\xe7\\x81\\x14\\\n\\x4c\\x3f\\x89\\x26\\x4f\\xb4\\x7f\\x47\\x79\\xa5\\x1f\\x8e\\x7c\\x7f\\xbe\\x4c\\\n\\x8d\\x7e\\xe5\\x2b\\x5c\\xdf\\x6b\\x31\\xf8\\xad\\x7d\\x74\\xf7\\xbd\\x14\\x5d\\\n\\x7d\\x9f\\x6d\\x2f\\xbf\\x7c\\xf1\\xa0\\x5d\\xb3\\x44\\xeb\\x0c\\xf7\\xff\\x00\\\n\\xd6\\x6f\\x93\\x13\\x1c\\xa1\\xa5\\xfd\\x8b\\x02\\xdf\\xfa\\x43\\xc5\\x77\\x5a\\\n\\x3e\\xd5\\x5e\\xd4\\xb7\\xfa\\xf3\\x8f\\xe4\\xf7\\x9f\\xa9\\xff\\x00\\xe3\\xc7\\\n\\xf8\\xf3\\xd9\\x8e\\xe4\\xe1\\xc5\\xff\\x00\\x29\\xf7\\xdb\\xeb\\xc7\\x51\\xe2\\\n\\xbf\\xc2\\xfe\\x1b\\x8f\\xaf\\xf3\\xe1\\x49\\x69\\x89\\x34\\x8f\\xf9\\x20\\x67\\\n\\xe3\\xc3\\xc0\\x59\\x00\\xc5\\x43\\xa2\\x61\\xbd\\x5e\\xbe\\xb2\\x16\\xa1\\x20\\\n\\x54\\x68\\x82\\xa9\\xa7\\x5f\\x77\\x5c\\x37\\x54\\x79\\x8f\\x7e\\x41\\xe7\\x18\\\n\\x01\\x9b\\x31\\x0c\\xa7\\xb7\\x0d\\xfa\\xe2\\x28\\x4f\\xcf\\xff\\x00\\xaf\\x42\\\n\\x66\\xaa\\x84\\xf9\\x9d\\x73\\xe5\\xdf\\x9e\\xf0\\xe6\\x80\\xc5\\xdc\\x03\\x5d\\\n\\x77\\x29\\x1f\\xc4\\x65\\x00\\x2b\\x9e\\xe6\\xb9\\xbf\\xa7\\xcf\\x7f\\xe9\\xef\\\n\\x8f\\x12\\x80\\xcf\\xd1\\xb5\\x4f\\xfb\\x3f\\x3f\\x59\\x10\\x94\\x47\\xd5\\x29\\\n\\x93\\xb9\\x66\\xc7\\x3f\\x1f\\x32\\x28\\x1f\\xaf\\xe1\\xc2\\x7f\\x89\\xfc\\x7f\\\n\\x60\\xd2\\x86\\xb9\\x3d\\xeb\\xa8\\xaf\\xdb\\x5d\\x3b\\xe1\\xe1\\x66\\x80\\xc0\\\n\\x8c\\xe7\\x15\\x9c\\xab\\x40\\xa4\\x3c\\x4c\\x05\\x60\\x13\\x1e\\xaa\\x12\\x24\\\n\\x26\\xf2\\x49\\x7c\\x62\\x86\\xa6\\x9f\\x23\\x5a\\x83\\x4f\\x6c\\xfe\\xdf\\x21\\\n\\x75\\x60\\x3f\\x3a\\x72\\x35\\xf6\\x38\\x75\\xee\\x58\\xa0\\x3a\\xb4\\x1a\\x41\\\n\\xcb\\xfe\\x81\\x47\\xac\\x57\\xc5\\x98\\x82\\xbd\\x60\\xca\\xc7\\xf8\\xa0\\xdd\\\n\\x65\\xc4\\xa2\\x0e\\xc0\\x28\\xcd\\x53\\xd0\\xbd\\xf6\\x14\\x7e\\xe0\\xa3\\xa5\\\n\\x1a\\xd1\\x20\\x17\\x8a\\x3d\\x4f\\xe5\\x99\\xe4\\x18\\xbf\\xf7\\xff\\x00\\xbf\\\n\\xfb\\xe2\\x1a\\x14\\xa3\\xa2\\xd0\\x35\\x7f\\x93\\x55\\x5b\\x9e\\x0f\\xd3\\x48\\\n\\x86\\x86\\x03\\x95\\x6f\\x1f\\x99\\xe0\\x29\\x67\\x80\\x3a\\x78\\x59\\x53\\x0c\\\n\\xd0\\xf4\\x3e\\x4c\\x01\\x6a\\x01\\xff\\x00\\x42\\x72\\xea\\x57\\xd8\\x03\\xe1\\\n\\x05\\x4d\\xc2\\x25\\x2b\\x6d\\xb7\\xf0\\xa4\\xfc\\xf1\\x13\\x14\\x6f\\x0c\\x74\\\n\\xaa\\x72\\xe1\\xde\\x2f\\x8c\\x69\\x68\\x45\\xf1\\x8f\\x40\\xfc\\xf5\\x6a\\xef\\\n\\x95\\x32\\xb9\\x50\\x28\\xf4\\xce\\x6f\\x47\\x7b\\x3c\\x88\\x5e\\x2e\\x2d\\x4f\\\n\\x57\\xe7\\xa4\\x38\\xe8\\x5d\\xa1\\x72\\xd7\\xee\\x93\\xf9\\xda\\xfe\\x7f\\x5e\\\n\\x20\\xcc\\xc9\\x4f\\x64\\x66\\x66\\x72\\x1b\\x67\\xa3\\xc2\\x44\\x61\\x68\\x36\\\n\\x10\\xae\\x31\\x22\\xe4\\x36\\xa5\\xa0\\x3a\\x28\\x98\\x7c\\x1e\\x82\\x8c\\x17\\\n\\xba\\xd3\\xc9\\x4b\\x90\\xaa\\x58\\x35\\xb0\\x9c\\x9c\\x9f\\xae\\x8e\\x16\\x3c\\\n\\x2a\\xf0\\x46\\x33\\xd8\\x3e\\xfd\\xdf\\xcd\\xda\\xb8\\x13\\x1c\\x1f\\x93\\xfc\\\n\\xbf\\x3d\\x27\\xe6\\xa8\\x7c\\x0f\\x4c\\x23\\xde\\xbf\\xdc\\xf1\\xc1\\x50\\xb0\\\n\\x90\\xb7\\x41\\x17\\xd7\\x1e\\xa5\\x64\\x9e\\x48\\x76\\x87\\xb7\\x7d\\x19\\xea\\\n\\xb3\\x3e\\xc8\\x7a\\xf0\\x04\\x07\\xa6\\xde\\xcb\\x00\\xc9\\xce\\x97\\xb6\\x11\\\n\\x56\\xb6\\xc4\\x40\\x5b\\x2c\\xd0\\x10\\x94\\xb3\\xeb\\xc5\\xb0\\x19\\xe8\\xe1\\\n\\x30\\x14\\xab\\x74\\xf3\\x10\\xf2\\x7c\\x80\\x3a\\x7a\\x24\\x14\\x0e\\x37\\x3d\\\n\\xc1\\xda\\xf9\\x58\\x20\\x11\\x6d\\x3e\\xd0\\x39\\x38\\xe7\\xab\\xbe\\x2b\\x58\\\n\\x40\\x70\\x88\\xaa\\x87\\xab\\xfa\\x76\\x5f\\x88\\xa6\\x04\\x78\\x10\\x3f\\xca\\\n\\x58\\x9f\\x9f\\xbd\\x19\\x15\\x37\\x04\\xcf\\xe0\\xfc\\x3a\\x04\\xcd\\x7f\\x44\\\n\\xa8\\xc6\\x21\\xf2\\xf2\\x73\\xab\\x7d\\x93\\xf3\\xc6\\x04\\x62\\x5c\\x84\\x11\\\n\\x9c\\x4e\\x7f\\x75\\xfc\\x6e\\x5f\\x2e\\x3b\\x13\\x53\\x1f\\x5d\\x39\\x8f\\xb7\\\n\\xc4\\x4a\\xb4\\xec\\xbd\\x46\\x2c\\x9f\\xf4\\xd3\\x24\\xf2\\x15\\x82\\x9a\\x53\\\n\\xb2\\xa5\\x3d\\xfa\\xef\\x6a\\xf7\\x5a\\x95\\x58\\xe9\\x09\\xc2\\xb4\\x33\\xf8\\\n\\xb8\\x6f\\x8e\\x20\\x00\\xf6\\x8f\\xe2\\xfd\\xe7\\xa7\\xbc\\xc9\\xe3\\xd6\\x04\\\n\\x7e\\x57\\x7a\\x5f\\xab\\x79\\xbb\\xf9\\xe1\\x8c\\x84\\x45\\x2a\\x74\\xb2\\xf1\\\n\\xf5\\x7d\\x37\\xe2\\xc1\\x10\\xf1\\xc2\\x44\\x37\\x7d\\xeb\\xfd\\x67\\x8a\\xd2\\\n\\xc3\\xe8\\xbf\\xcd\\xef\\xbf\\xbe\\x3e\\x8f\\xb3\\xd3\\xec\\x7c\\x39\\xd3\\xfa\\\n\\x7f\\x3c\\xed\\x6b\\x50\\xa7\\xa8\\xcc\\xe4\\xf5\\x72\\x7f\\x97\\xc6\\x12\\x65\\\n\\xf5\\xcd\\x47\\x2f\\x27\\x39\\xad\\x49\\x9e\\x3b\\x0f\\x66\\xd3\\x63\\x21\\xce\\\n\\xef\\x3f\\x99\\x87\\x9e\\xe2\\x6d\\x30\\x53\\xd3\\x0c\\xdc\\xa3\\xc3\\xc5\\x28\\\n\\xa6\\x55\\xe2\\x80\\x7b\\x1d\\x64\\xef\\x7b\\x3c\\x1a\\xbb\\x01\\xaa\\xdf\\x82\\\n\\x4f\\xff\\x00\\x3d\\x35\\xf1\\x08\\x02\\x27\\xdc\\x11\\x88\\xc5\\x67\\x5c\\xe6\\\n\\xc3\\xc8\\x31\\x3d\\x1b\\x1e\\x36\\xd7\\x4d\\x58\\x34\\x98\\x51\\x8b\\xa1\\x49\\\n\\x08\\x68\\x04\\xf4\\xa6\\x7d\\x9f\\xcf\\x87\\x1f\\x09\\x40\\x86\\x2e\\xb8\\xf4\\\n\\x12\\x76\\xdf\\xe0\\x7d\\xa9\\xfb\\x27\\xff\\x00\\x38\\x7f\\x05\\xfc\\xf1\\x2c\\\n\\x65\\x25\\x86\\x39\\xbf\\x3f\\xe0\\xf2\\x92\\xc0\\x63\\x0b\\x0f\\x0c\\x5c\\x97\\\n\\x1f\\x67\\x3e\\xae\\x2a\\xce\\xc7\\x4f\\x7d\\xe6\\xfa\\xf4\\x6f\\x3c\\x5b\\x1a\\\n\\x9a\\xfc\\x6f\\xf2\\x73\\xee\\xe2\\x8a\\xfe\\x01\\x11\\x3a\\xd2\\xa3\\xf2\\xe4\\\n\\x1c\\xf7\\x43\\x89\\xe8\\xa4\\x44\\x84\\x42\\x89\\xcd\\x0f\\xa6\\xd1\\xd7\\x59\\\n\\xe3\\x34\\x60\\xf8\\x89\\xa5\\xf4\\x2f\\xe1\\x0d\\x52\\x30\\x05\\xda\\x38\\xde\\\n\\x89\\x82\\x4b\\xa6\\xf7\\xf7\\xdf\\x9b\\x0a\\xc2\\xf4\\xa8\\x53\\x52\\xca\\xbf\\\n\\x3e\\x7f\\x13\\x05\\x8c\\x05\\x5b\\xea\\xcf\\x74\\xb9\\x39\\x93\\xd1\\xe5\\xe1\\\n\\xf2\\x12\\x9f\\xce\\xf4\\x17\\x44\\xdf\\xf2\\xf8\\x18\\x11\\x84\\x7d\\x7d\\x24\\\n\\xff\\x00\\x5c\\xf1\\x0e\\x9b\\xee\\xa3\\xfd\\x1e\\x30\\x4a\\x6a\\x04\\x40\\x56\\\n\\x06\\x30\\xe5\\x8f\\x0a\\x62\\x5d\\x4c\\x44\\x90\\x4c\\x70\\x7a\\x2a\\x6d\\xfe\\\n\\xc6\\x20\\xd2\\xc8\\x34\\xc8\\xa0\\x4d\\x2b\\xc7\\xbe\\x23\\x80\\x14\\xc4\\x17\\\n\\x4a\\x4e\\xb6\\xa4\\xcf\\x7b\\xe1\\x2c\\x4f\\x70\\xda\\x04\\xa0\\xa0\\x4d\\x4d\\\n\\x4b\\xa1\\x12\\x6a\\x1d\\x80\\x08\\xeb\\x76\\xc3\\xa6\\xb6\\x78\\x5d\\x20\\x35\\\n\\x13\\xe9\\xa7\\xa2\\xec\\x57\\xe7\\xb0\\x43\\x49\\xc1\\x73\\xf8\\xfe\\x18\\x3d\\\n\\x70\\xcf\\x0a\\x8f\\x24\\x54\\x55\\xa1\\x91\\x20\\x4f\\x5f\\x33\\xc5\\xbe\\x80\\\n\\x1d\\x0d\\xb9\\xa9\\xd5\\x99\\x40\\x50\\x3c\\x03\\x20\\x9d\\x81\\x1d\\xad\\xe0\\\n\\x7a\\x4d\\xe4\\x73\\xc4\\x0e\\x0e\\x8c\\xcd\\x48\\xc9\\x94\\x32\\x73\\xc0\\x53\\\n\\xb0\\xa4\\x1c\\x93\\x0b\\xb2\\x61\\x17\\x2e\\x2c\\x2b\\xe8\\x1b\\x42\\x02\\x34\\\n\\x2a\\x76\\xc7\\x7f\\x28\\xa6\\x1e\\xa2\\xc5\\x4c\\x09\\x8c\\xf5\\xab\\xbe\\xf4\\\n\\x23\\x3f\\x63\\x70\\x3e\\x9e\\xf0\\xb5\\xef\\x67\\xaf\\x2c\\x01\\x88\\x8b\\x89\\\n\\x0a\\xe5\\x49\\x74\\xc4\\xf7\\x94\\x64\\x88\\x5a\\xa2\\x06\\x56\\x6c\\x38\\xbc\\\n\\xee\\x39\\xe1\\x34\\x17\\x48\\x0b\\x8a\\x4b\\x7a\\x8d\\x40\\xb5\\xf0\\x19\\x2a\\\n\\x02\\x85\\xc8\\x28\\x9e\\x8f\\xe1\\x13\\x42\\x63\\xff\\x00\\x68\\xa8\\x88\\x22\\\n\\x02\\x5e\\x8a\\x89\\xd4\\x3c\\x96\\x0f\\x03\\x30\\xa1\\xc4\\x89\\x6b\\x4e\\x97\\\n\\xc9\\xb6\\x3f\\x09\\xd9\\x04\\x1f\\xe1\\x9f\\x7f\\x73\\xc9\\xb9\\xc4\\xde\\x08\\\n\\x41\\xf6\\x49\\x93\\x64\\x9c\\xf0\\x68\\x73\\x12\\xf2\\x53\\xf0\\xac\\xc3\\x97\\\n\\xfd\\x0a\\xab\\x94\\x8f\\xee\\x64\\x8e\\x76\\xfc\\xcf\\x04\\x85\\xcc\\xcf\\x5b\\\n\\xef\\xe5\\xee\\x6f\\xde\\xc3\\xc3\\x45\\xba\\x41\\xa2\\x32\\xb7\\x3a\\x9c\\xfc\\\n\\xec\\x51\\x5b\\x51\\xcc\\x88\\x0f\\x75\\x48\\x5c\\xf9\\x99\\xb6\\xd4\\xc0\\xa7\\\n\\x7a\\x0f\\x63\\x4e\\xf2\\x35\\x7d\\x9e\\x11\\xda\\x7e\\x91\\x95\\x70\\xb9\\xe8\\\n\\x7f\\x8f\\xe3\\xc6\\x40\\x41\\x1c\\x19\\xd0\\xd7\\xdb\\x23\\x27\\x0a\\xf6\\x79\\\n\\x7b\\xb8\\x34\\x5b\\x0f\\xec\\x4f\\xfe\\xf4\\x4c\\x54\\xb2\\xa0\\xb7\\xee\\xfc\\\n\\x58\\xdb\\xc9\\xf6\\xf8\\x69\\xf0\\xa4\\x12\\x5f\\x78\\xcd\\x5e\\x99\\xb8\\xae\\\n\\xb5\\xf9\\x98\\xbc\\x3a\\x6f\\xbb\\x3f\\xf0\\xdf\\x0d\\x8f\\x86\\xe7\\xf1\\xdd\\\n\\xce\\xf7\\xdc\\xfe\\x64\\xd8\\x25\\x52\\x22\\x39\\xbc\\xfe\\x37\\xbe\\x2f\\xcb\\\n\\xe9\\xbf\\x1f\\xf4\\xd2\\x7f\\x7f\\x8f\\x90\\x25\\x29\\x81\\x62\\x21\\xbf\\x4a\\\n\\x7f\\x19\\x67\\xad\\x1c\\x43\\x06\\xca\\x32\\xce\\xea\\x7a\\x83\\x5f\\x63\\xe0\\\n\\x24\\xb4\\x13\\x03\\x7f\\x5f\\xc7\\x89\\xbe\\x93\\x9e\\x61\\x79\\x5d\\xc4\\x18\\\n\\xe9\\xd1\\x20\\xff\\x00\\x33\\x5b\\x8c\\xb9\\x83\\x21\\x6a\\x59\\xec\\xe6\\x99\\\n\\x2e\\x2c\\x60\\x22\\xdb\\xa8\\x35\\x46\\x9a\\x8c\\x68\\x65\\xad\\xcf\\x71\\x99\\\n\\x92\\x8a\\x26\\x36\\x16\\x36\\x7d\\xc7\\xe7\\x3c\\x99\\xc9\\xc5\\xa1\\x44\\x99\\\n\\xa3\\x7a\\x53\\x8e\\xcf\\x0c\\xe2\\x1a\\x10\\x80\\x72\\x44\\x52\\x2c\\x5c\\xa2\\\n\\x33\\x02\\x90\\x10\\x51\\xec\\x1a\\xc6\\xfe\\xed\\x8a\\x63\\x7c\\xe1\\xc2\\x76\\\n\\xe1\\xff\\x00\\x9e\\xcf\\x67\\xbe\\xf8\\xc2\\xcf\\x5c\\x6c\\x67\\x18\\x77\\x35\\\n\\x7b\\xeb\\x13\\xc0\\x25\\x4f\\x77\\x74\\x09\\x33\\xea\\x90\\xbe\\xb2\\xcc\\x84\\\n\\x41\\xfb\\x68\\xb6\\x42\\xcf\\x5b\\x3d\\xc6\\x5f\\x29\\xbd\\x5b\\xa5\\xa4\\xa0\\\n\\xbc\\x2a\\xfa\\xc3\\xfe\\x80\\x26\\x55\\x7a\\xce\\xc3\\x1a\\xf4\\xfe\\x3d\\xfb\\\n\\xf0\\x68\\x6f\\xd5\\xff\\x00\\xef\\xfa\\x3f\\xaf\\x0c\\xe5\\x3f\\x52\\x0b\\x9e\\\n\\xfd\\xde\\x51\\xf8\\x4e\\x9e\\x12\\xee\\xdd\\x98\\xaa\\xdf\\x4e\\xce\\x3f\\xec\\\n\\xd2\\xcf\\x62\\x9a\\xa3\\x58\\xc3\\x7f\\x3b\\xfb\\x97\\xc8\\x62\\xb0\\x94\\x70\\\n\\xe1\\x7f\\x7d\\x4c\\x16\\x1e\\x25\\x26\\x0c\\x94\\x8a\\xb2\\xbf\\x8c\\xd7\\xf9\\\n\\x59\\x9e\\x04\\x40\\x06\\xc5\\x85\\x0b\\x3d\\xfa\\x26\\xce\\x39\\x7a\\x01\\x94\\\n\\xcc\\xc1\\x96\\xb7\\xfd\\xff\\x00\\x1f\\xf6\\xd0\\xd9\\x06\\xf1\\xc2\\xab\\x48\\\n\\x1e\\xea\\x73\\xd8\\xa0\\x97\\x81\\x36\\x8d\\x08\\x59\\x9c\\x33\\x04\\xa9\\x3b\\\n\\xa2\\x32\\x18\\x9c\\x18\\xbf\\xcf\\xed\\x4b\\xe0\\x73\\xda\\x57\\x4f\\xee\\x12\\\n\\x73\\x3e\\x3e\\x39\\xcd\\x1d\\x06\\x61\\x66\\xd1\\x8f\\x3b\\x49\\x94\\x02\\xfa\\\n\\x78\\x47\\x00\\x3b\\x65\\xf4\\x0b\\xef\\xef\\x85\\xd2\\x88\\x26\\x04\\xb5\\x55\\\n\\xe0\\x37\\xb8\\x18\\xe0\\x44\\x83\\x2a\\xc6\\x28\\xa8\\x50\\xb4\\x80\\x14\\xa8\\\n\\x74\\x54\\x68\\x8d\\x90\\xa2\\x50\\xa3\\x3e\\x31\\x13\\x0c\\x19\\x25\\x26\\x54\\\n\\xbe\\xcc\\xf4\\xa5\\x04\\x68\\xf0\\x2d\\x5f\\xac\\xaa\\x12\\x01\\x4f\\x5f\\xdf\\\n\\x8a\\x57\\xe1\\x97\\xdd\\xbf\\xbf\\xc7\\xe8\\x7a\\x7c\\x6f\\x28\\x14\\x3d\\x82\\\n\\x09\\x3f\\x0f\\xa7\\xb3\\xa1\\xe3\\x89\\xf5\\x28\\x92\\x99\\x2f\\x2b\\xf1\\xe7\\\n\\x39\\x22\\x98\\x44\\x6c\\x14\\x45\\xac\\x05\\x74\\x29\\xa7\\xe6\\x78\\x21\\x20\\\n\\xee\\x88\\xf6\\x13\\xf9\\x00\\xdb\\xbd\\x6b\\xe0\\x98\\x52\\x3a\\x62\\x16\\xf6\\\n\\x4f\\xf5\\xaf\\xaf\\x26\\xeb\\x60\\x07\\x1c\\x07\\xd6\\xcb\\xd0\\x8a\\x9f\\x8c\\\n\\x25\\x61\\x01\\x52\\x45\\x8f\\x48\\x53\\xaf\\xd0\\xc0\\x7c\\x4c\\x74\\x05\\x85\\\n\\x49\\x62\\x7a\\xbf\\x22\\x9e\\xf3\\xc2\\x26\\x22\\x20\\xf8\\x8f\\xa5\\xd8\\xb3\\\n\\xf9\\xdc\\x1c\\xa7\\x21\\x1b\\x5f\\xde\\x6f\\xb9\\xfd\\x05\\xf2\\x68\\xb6\\x09\\\n\\x90\\x3f\\x32\\x4d\\xf5\\x11\\xb3\\xc8\\x57\\xb4\\x4f\\x58\\x40\\xe3\\xf4\\xe6\\\n\\x13\\x42\\x5f\\x53\\xa8\\x2d\\x60\\xb8\\xdf\\xdc\\xac\\x77\\xd9\\x26\\x06\\xf4\\\n\\xb2\\x7b\\x79\\x8f\\x0a\\xff\\x00\\x30\\x0f\\x35\\x40\\x52\\x61\\xd8\\x3e\\xf9\\\n\\xcc\\xe7\\xf4\\x7a\\xf0\\x91\\xaa\\x89\\xf8\\x9c\\xfe\\x0e\\x17\\xce\\x88\\x38\\\n\\x4a\\x80\\x8d\\x17\\xd0\\x37\\x75\\xf7\\xa1\\x7c\\xe7\\x0a\\x1f\\x77\\x9f\\xb7\\\n\\x27\\x27\\xf4\\xb7\\xff\\x00\\xf1\\x27\\xe0\\x4f\\xf4\\x7a\\x3f\\xd7\\xff\\x00\\\n\\xda\\x37\\xfe\\x17\\x82\\x25\\x85\\xf8\\x76\\xbc\\x7b\\xec\\xa5\\x01\\x60\\xad\\\n\\x27\\xbb\\x3f\\xc7\\x77\\xa6\\x78\\xa1\\xac\\x97\\x3e\\xdf\\x7e\\xb6\\x67\\xcf\\\n\\x9e\\x2a\\xff\\x00\\x12\\x3f\\xca\\x3f\\xcb\\x47\\x79\\x9f\\xc5\\x33\\xcb\\x5e\\\n\\x86\\xe4\\x6c\\x8f\\xfc\\x73\\xf9\\xc5\\x6b\\xa3\\x0f\\x8f\\xea\\x13\\xff\\x00\\\n\\x7e\\x59\\xe4\\x2c\\xe1\\xbf\\xef\\xd3\\xf8\\xbe\\x69\\x05\\x94\\x05\\x31\\x84\\\n\\x8f\\x7d\\x5f\\x77\\xbe\\x71\\x78\\x2b\\x70\\x46\\xfd\\x20\\x4d\\x59\\xfc\\xf9\\\n\\x09\\x57\\x8d\\xc4\\xef\\x1f\\xfe\\xf6\\xf1\\xc1\\x49\\x6b\\x43\\x8b\\x64\\xb6\\\n\\x7d\\x71\\xdc\\x5d\\xab\\xaf\\x84\\xef\\x00\\x23\\xd0\\x28\\xa6\\x03\\xef\\x0b\\\n\\x71\\x6d\\xd0\\xc2\\x14\\x3a\\x00\\x14\\x09\\x17\\x1e\\xb2\\x46\\x07\\xe0\\x22\\\n\\x22\\xf5\\xd4\\x30\\x86\\x97\\xe8\\x93\\xcc\\x86\\x5a\\x60\\x01\\xaf\\x3d\\x4f\\\n\\x49\\xfc\\x23\\x0f\\x05\\x2b\\x40\\x22\\x7a\\xcd\\x33\\x9c\\x88\\x56\\x7d\\xae\\\n\\x92\\x65\\x74\\xce\\x81\\xc2\\x4e\\xd7\\xb2\\x7b\\xf1\\x92\\xd0\\x6f\\x06\\x41\\\n\\xc1\\xcd\\x07\\xdb\\xfb\\x2b\\x9e\\x2e\\xb6\\xad\\x06\\xaa\\x49\\x29\\x43\\x83\\\n\\x75\\x73\\x75\\x3c\\xc4\\x21\\x56\\x3b\\xac\\xde\\x4e\\x28\\x7f\\x8f\\xb3\\xca\\\n\\x96\\xb3\\x4b\\x87\\x3e\\x69\\xf8\\x3f\\x92\\x9e\\x07\\xdb\\x99\\x8f\\xfd\\xef\\\n\\xd7\\xfa\\xf7\\x99\\xe4\\xb6\\x98\\xc2\\x3f\\x21\\xf5\\xe5\\xff\\x00\\x5a\\xf8\\\n\\x89\\x0f\\xbd\\xfe\\x5c\\xfc\\xbc\\x5f\\x5e\\x4c\\x39\\x47\\xdd\\x1f\\x7c\\xee\\\n\\x17\\xef\\x61\\x33\\xc2\\x84\\xdd\\x74\\xc8\\xd5\\xcf\\xf9\\xd6\\xe9\\x97\\xc0\\\n\\x2f\\xd4\\xf4\\xf3\\x7f\\xc1\\x77\\xe4\\xfe\\xbc\\xa2\\x82\\x54\\x8c\\x3a\\xbf\\\n\\x9f\\xf3\\xde\\x5f\\x23\\x56\\x0d\\x00\\xb9\\x5a\\x49\\xbd\\xef\\xf5\\x56\\x03\\\n\\x90\\x5b\\xbf\\x81\\x94\\x4d\\xfa\\x3b\\xb5\\xfc\\xd7\\xa9\\xae\\x01\\x99\\xd5\\\n\\xff\\x00\\x5f\\x27\\x38\\x77\\x9d\\x7b\\xa3\\xf9\\xb5\\x4e\\xba\\x65\\x79\\xe1\\\n\\x74\\x2d\\x23\\xe2\\x6b\\xc4\\x03\\xe3\\x08\\xeb\\x31\\x8b\\x67\\xa1\\x4a\\xa9\\\n\\x04\\x4f\\x26\\xc8\\x95\\xcf\\x14\\x24\\xf5\\xb6\\xeb\\x37\\xc5\\x54\\x7e\\x04\\\n\\x2d\\x36\\x8e\\x9a\\x64\\x99\\xa8\\x7b\\xcd\\x8a\\xf2\\x8e\\x4d\\x08\\x0a\\x90\\\n\\x34\\xbe\\x42\\x66\\x34\\x31\\xc8\\x5e\\x88\\x30\\x72\\x40\\x55\\x74\\x47\\x03\\\n\\x44\\xc1\\xc1\\x28\\x91\\xfa\\x0e\\xee\\x11\\x65\\x1c\\x00\\x5e\\x1a\\xfb\\x3d\\\n\\xbc\\x7b\\xca\\x61\\x20\\x65\\x71\\x4d\\x9a\\xc6\\x15\\x0a\\x8a\\x12\\x08\\xb6\\\n\\x0a\\xda\\x5a\\x4e\\x6d\\x9f\\x25\\xf3\\x20\\x4a\\xb8\\x95\\xe2\\xbb\\x66\\x7c\\\n\\xf8\\x7e\\x78\\xf9\\xe4\\xfa\\xcc\\x80\\xf5\\xd5\\xc5\\x90\\xc2\\x1e\\x15\\xee\\\n\\x38\\xe9\\x51\\x4d\\xba\\x13\\xd1\\xb6\\x77\\xca\\xef\\x16\\x09\\x52\\x8e\\x07\\\n\\x02\\xb2\\xcf\\xba\\x78\\xcd\\x44\\x85\\x45\\xb8\\xb4\\x69\\x1a\\x94\\x03\\x36\\\n\\xbe\\x0d\\xc9\\x6a\\x4a\\x55\\x46\\xc8\\x9c\\x42\\xc2\\x2d\\x5e\\x52\\xc1\\x82\\\n\\x2b\\x24\\xb0\\xdb\\x7f\\x57\\xe0\\x9e\\x65\\x80\\xc4\\x8b\\xc6\\x3d\\x1c\\xfc\\\n\\x1d\\x92\\x79\\x92\\xd5\\x52\\x65\\xf4\\xb3\\xa5\\x5b\\x47\\xec\\xe4\\x3c\\x2e\\\n\\x00\\x8d\\x80\\xa0\\xd5\\x35\\x70\\x2d\\x4b\\x22\\x65\\xf1\\xf0\\x8d\\x21\\x3f\\\n\\x49\\xbf\\xc5\\x65\\xde\\x4b\\x9e\\x61\\x55\\xc0\\x67\\xe4\\xfe\\x57\\xd1\\xeb\\\n\\x42\\xc8\\x22\\x8a\\x48\\xe1\\xa0\\x86\\x9c\\xe6\\x7f\\x3b\\x7c\\x9b\\x3c\\x13\\\n\\xfa\\x32\\x61\\x81\\xfd\\xf3\\xf3\\xc6\\x04\\xc4\\x06\\x16\\xff\\x00\\xaf\\x87\\\n\\xbb\\x87\\xf5\\xe2\\x5a\\x09\\xd5\\x03\\xa8\\x7a\\x3d\\xfe\\xff\\x00\\x3f\\x9e\\\n\\x0c\\xdd\\x93\\xbf\\xc9\\xa7\\xed\\xff\\x00\\xed\\xf1\\x08\\x55\\x3f\\xd9\\x23\\\n\\xd8\\xb7\\x79\\x38\\xc5\\x27\\x81\\x34\\x04\\x15\\x87\\xd7\\xf3\\x3d\\x9f\\x77\\\n\\xe3\\xc2\\x26\\xa4\\x5f\\xec\\x9f\\xf3\\xe5\\xb0\\x28\\x69\\x79\\x09\\x87\\xd1\\\n\\xc4\\x9f\\xf7\\xe3\\x09\\x76\\x0f\\x15\\xbc\\x8f\\x75\\xc2\\xa1\\xce\\xf9\\x69\\\n\\x08\\x39\\xaa\\x01\\xf3\\xe8\\x5e\\x0d\\x18\\x78\\x06\\x7e\\xe2\\xaa\\xf3\\xdf\\\n\\x1f\\x76\\x7b\\x05\\x26\\xd4\\x20\\x26\\x14\\xed\\x48\\xe9\\x82\\x18\\xdb\\xf7\\\n\\xf7\\xca\\x46\\x19\\x62\\x32\\x40\\xdf\\xb7\\xe8\\x7d\\xef\\x7c\\x03\\xa6\\x11\\\n\\x79\\xd9\\xfb\\x3b\\x1d\\x3f\\x9f\\xdf\\x12\\x08\\xe4\\x93\\xd7\\x51\\xfc\\xde\\\n\\x7f\\x1c\\xf5\\xe0\\xc2\\x5a\\x84\\x6a\\x02\\xca\\x3c\\x3d\\x53\\x94\\xef\\x85\\\n\\xb1\\xdc\\x4b\\xa4\\x56\\x8c\\xa5\\xab\\xe9\\xc3\\xdf\\x8c\\xe4\\x09\\xea\\xa4\\\n\\x5b\\x0a\\x2e\\xf7\\x6c\\xe9\\xd3\\x76\\xb5\\x6c\\x74\\x40\\xf4\\x08\\x0f\\x3d\\\n\\x42\\xd3\\xc5\\x80\\xf9\\xb7\\xa8\\x28\\x97\\x14\\xc5\\x88\\xd1\\x3e\\xf1\\x20\\\n\\x9e\\x6b\\x0b\\x22\\x2b\\x87\\xf0\\xf9\\xa0\\xba\\xa6\\xf1\\xb9\\xa6\\xb5\\xfc\\\n\\xfe\\x1f\\x7e\\x54\\x8d\\x41\\xe9\\xc5\\xb9\\x7d\\xbd\\x4d\\x25\\x67\\xbf\\x20\\\n\\xb0\\xa2\\xb6\\x0b\\x24\\xfe\\x5e\\x48\\x6b\\x9e\\x35\\xc4\\x34\\x70\\xfd\\xa8\\\n\\xa7\\xfc\\xa9\\x2f\\xb0\\x4f\\x02\\xb8\\x19\\xa3\\x76\\xc7\\xf5\\x86\\xfa\\x71\\\n\\xf5\\xe0\\x0d\\x8c\\x40\\x94\\x3a\\x4b\\xca\\x33\\xfe\\xcf\\x0f\\xb0\\x52\\x18\\\n\\x83\\x4e\\x60\\x0c\\x0f\\xe3\\xf9\\x0f\\x0b\\xd4\\x2a\\xda\\x38\\x08\\x0b\\x18\\\n\\xf7\\x3e\\xc9\\x39\\xe4\\x6a\\xa6\\xef\\x1e\\x33\\x47\\x1f\\x5d\\x9c\\x93\\xc6\\\n\\x8f\\x52\\x61\\xce\\x0f\\x9c\\x72\\x4f\\xe1\\xcf\\x7b\\x11\\x5f\\x68\\xb3\\x44\\\n\\x74\\x0b\\x9c\\x37\\xdf\\xb5\\xa6\\x88\\x9c\\x23\\x87\\xb7\\xda\\x1f\\xf8\\x1f\\\n\\x3c\\xd8\\xfe\\x73\\x6f\\x4d\\x3d\\x7e\\x7f\\x0b\\xe3\\x02\\x54\\x20\\x0d\\x87\\\n\\x54\\xad\\x05\\x5c\\x40\\xf7\\x37\\xcb\\x18\\x5a\\x10\\x68\\x01\\xc4\\x92\\xfb\\\n\\x3e\\xc7\\xe9\\x85\\x76\\xc0\\x82\\x99\\x8e\\x31\\xfb\\x6f\\x2e\\x38\\x44\\x8d\\\n\\x6b\\x00\\x02\\x12\\x9e\\xf3\\xb0\\xe3\\xe2\\x24\\x38\\x38\\x67\\xef\\x07\\xdd\\\n\\xf0\\x30\\x12\\x71\\x22\\x7f\\x1c\\x1d\\x9e\\xa9\\xbf\\xc5\\x6e\\xc3\\x9a\\x87\\\n\\x71\\x16\\x0d\\x15\\x81\\x4b\\xb3\\xac\\xf8\\x02\\x15\\x64\\xad\\x31\\xb1\\x44\\\n\\xa3\\x43\\xb9\\x83\\x95\\xab\\xaa\\x91\\x54\\x14\\xd0\\x43\\xca\\x97\\x8a\\xea\\\n\\x2b\\x4e\\x64\\x49\\x67\\x75\\xd7\\x5f\\x09\\xd6\\xd1\\x46\\x24\\x20\\x21\\x40\\\n\\x01\\x3a\\xba\\x85\\x82\\x1a\\x04\\x6d\\x55\\x50\\x9b\\xb5\\x88\\xb5\\xa0\\x07\\\n\\x86\\x72\\x8c\\xc2\\x51\\x58\\x17\\x08\\x80\\x1c\\x88\\x98\\xa3\\xca\\x04\\x58\\\n\\x38\\xc0\\x35\\x9e\\x65\\x1c\\x46\\xd1\\x68\\xc6\\xa2\\xfb\\x75\\x90\\x78\\x04\\\n\\x48\\x20\\x6a\\xa1\\x07\\x88\\xe0\\x7f\\x87\\xef\\x96\\x10\\xe1\\x1f\\x5e\\x69\\\n\\x11\\xe6\\x9a\\x7d\\x31\\xd2\\x00\\x88\\x89\\x20\\x01\\x67\\x4a\\xb5\\x78\\x4e\\\n\\x36\\x2b\\x8d\\xcd\\x8e\\x9a\\x84\\x70\\x27\\xb7\\xd3\\xeb\\x11\\x0a\\xa3\\x82\\\n\\x86\\x40\\xef\\x1c\\x5a\\x78\\x24\\x08\\xa8\\x68\\x7b\\x44\\x80\\x6b\\x44\\x4e\\\n\\x78\\xe1\\x08\\xf7\\x04\\xe8\\xce\\xb2\\xab\\xfa\\x49\\xed\\x59\\x2d\\x4b\\x1f\\\n\\xe0\\xae\\x6f\\xe3\\x6f\\xb7\\x08\\x24\\x12\\x00\\xea\\xab\\x75\\xee\\xdf\\x60\\\n\\x49\\xe3\\x04\\x96\\x7a\\x52\\xe0\\xd0\\x36\\xef\\x05\\x42\\x9e\\xde\\x34\\x21\\\n\\x8a\\xd5\\x16\\x23\\x9e\\xf0\\xdd\\x21\\xe0\\x50\\xb5\\xd5\\xa4\\xf6\\xba\\xe5\\\n\\x52\\xcb\\x34\\xaf\\x91\\x04\\xa2\\xb5\\xbf\\x1f\\xdc\\x40\\x36\\x9d\\x13\\xc5\\\n\\xe3\\x73\\x4b\\x90\\xaa\\xb4\\xba\\xb8\\xf5\\xa3\\xcf\\x16\\x5d\\x1a\\x88\\x91\\\n\\xd2\\xd0\\xaf\\xa6\\x2f\\xdb\\x80\\xab\\xec\\x65\\xe4\\x2b\\x6d\\x67\\xe5\\x3c\\\n\\x33\\x13\\xb2\\x61\\xe8\\x76\\xff\\x00\\x7e\\x97\\xc9\\x40\\x67\\x53\\x50\\x91\\\n\\xa6\\x32\\x52\\x13\\x9e\\x10\\x07\\x17\\x6b\\x7e\\x75\\xcd\\xff\\x00\\xca\\xf7\\\n\\xc2\\xb4\\x50\\xdc\\xcc\\x01\\x95\\xaf\\x7b\\x27\\xc9\\x3c\\x72\\x81\\xa0\\x57\\\n\\x22\\x81\\x4f\\xd6\\x7b\\x3f\\xb2\\x2a\\xfa\\xf3\\x71\\x70\\xa5\\x90\\x4e\\xf7\\\n\\x52\\xa6\\x60\\x9e\\x58\\x18\\x29\\x01\\x88\\xbd\\x55\\xbf\\x16\\xff\\x00\\x64\\\n\\xd6\\x91\\x84\\x20\\xcf\\x47\\x1c\\xf5\\x9d\\xf7\\xf7\\xcb\\x34\\x9a\\x7a\\x0d\\\n\\xc7\\xfb\\xa6\\x67\\x3f\\x9c\\xd4\\x02\\xbb\\x24\\x8c\\xa6\\x7b\\xfe\\x5c\\xff\\\n\\x00\\x3e\\x65\\x57\\xb1\\x3e\\xe7\\xe7\\x39\\xfe\\xf7\\xd3\\xe6\\x00\\x48\\x7e\\\n\\xf6\\xb7\\xd9\\xde\\x5f\\xcf\\x1d\\xc0\\x60\\xbd\\xf9\\xff\\x00\\x1b\\xeb\\xe1\\\n\\xfb\\x04\\x8a\\x5b\\x30\\x5a\\x23\\x5b\\x3d\\xf4\\x06\\x3a\\x98\\x49\\x92\\xa9\\\n\\xeb\\x38\\x42\\x23\\x6c\\xaf\\x52\\x67\\x89\\x6b\\x9a\\xd8\\x5e\\x44\\xd3\\x5e\\\n\\xcc\\xf9\\x79\\xdf\\x16\\x84\\x6a\\x14\\x8e\\x40\\x42\\xac\\xb5\\x98\\xbb\\xe3\\\n\\xb9\\x10\\x04\\x08\\x00\\xc0\\x21\\x7f\\x5d\\x38\\x50\\x87\\x80\\x2c\\x8a\\x31\\\n\\x23\\xaa\\x5a\\xbf\\xdf\\xfb\\xc7\\xe0\\x01\\x12\\xb0\\x93\\xfe\\x3f\\xe4\\xe4\\\n\\x9e\\x3a\\x50\\xc8\\x8d\\x77\\xe5\\x1f\\xb5\\xef\\xf2\\x79\\x4c\\x18\\xba\\x0f\\\n\\xfc\\x41\\xb3\\x0f\\xce\\xd6\\x19\\x0f\\xbc\\xaa\\x0d\\x44\\xe8\\x70\\xf7\\xfb\\\n\\x19\\xac\\x8d\\x5a\\x9a\\x86\\x51\\x12\\xde\\xcb\\x9d\\xfb\\xe5\\x52\\x42\\x1a\\\n\\x04\\xbf\\x42\\x49\\x3d\\x97\\x6c\\xcf\\x0c\\x08\\xac\\xe7\\xd4\\x37\\x39\\xcf\\\n\\x9f\\xf7\\xe3\\xb0\\x0a\\x30\\xaf\\xf1\\x77\\xd9\\x7d\\xde\\x7b\\xf1\\xa4\\x10\\\n\\xb6\\xb3\\x9b\\xc4\\xef\\x67\\x7d\\xc9\\x3c\\x21\\x0a\\x0a\\xbe\\xdc\\xfb\\x33\\\n\\x3e\\xfa\\xe5\\x85\\x63\\x8f\\x7a\\x1d\\x19\\xad\\x37\\xf8\\xfe\\x39\\xe1\\x30\\\n\\x49\\x54\\xa2\\xaa\\xe7\\x49\\x08\\x76\\x2f\\x3f\\xa5\\x80\\x10\\x18\\x37\\x10\\\n\\x47\\x0f\\xe1\\x1f\\xf3\\xf3\\xc9\\x27\\x0a\\x96\\xe3\\xc2\\xbc\\xd9\\x26\\xda\\\n\\x4b\\x70\\x89\\x61\\x41\\x58\\x9a\\x13\\x85\\x1c\\x39\\x8f\\x3c\\x8f\\x74\\x0d\\\n\\xf7\\xbf\\x75\\x60\\xff\\x00\\x36\\xd8\\x21\\xa4\\x8d\\x71\\x1b\\x51\\xd1\\x66\\\n\\xaa\\x1c\\x95\\x1f\\x12\\xc2\\x00\\x2f\\xa0\\x01\\xed\\xf4\\x7f\\xf1\\xe5\\x6d\\\n\\xdb\\xd1\\x00\\x29\\x59\\x6b\\x0f\\x9f\\xf2\\xb0\\x62\\xa2\\x93\\xa5\\x59\\x9f\\\n\\x53\\xef\\xde\\x75\\xec\\x1b\\xf8\\x00\\xeb\\x11\\x00\\x57\\x48\\xc4\\x3e\\x7e\\\n\\x70\\xd5\\xc4\\x60\\x50\\x52\\x16\\xad\\xf6\\x90\\x58\\xa7\\x4e\\xa4\\x51\\x42\\\n\\x10\\x03\\xd1\\x2a\\x3d\\x33\\x3b\\x49\\xb0\\x18\\xb3\\x4d\\x41\\x39\\x88\\x90\\\n\\xab\\x09\\x4e\\x81\\x88\\x46\\x88\\xa0\\xcd\\xf1\\x3b\\x9d\\x56\\x0a\\x8a\\x30\\\n\\xac\\x03\\xba\\x1c\\x3c\\x35\\xac\\x0f\\x33\\x2d\\xac\\x90\\x24\\xc4\\xc2\\x79\\\n\\xcd\\xf3\\x63\\xfa\\xd5\\x00\\x84\\x0a\\x2f\\xc8\\xa4\\xa6\\x24\\xb2\\x93\\x05\\\n\\x40\\x60\\x2c\\x31\\x69\\x76\\xca\\x4d\\x91\\xa9\\xb4\\xf4\\x61\\x5e\\x13\\x47\\\n\\x2a\\x70\\x92\\xa5\\x60\\x36\\x10\\xa0\\x60\\x3c\\xf0\\x48\\x75\\x19\\x8c\\x11\\\n\\x89\\x9d\\x7e\\x7a\\xb8\\x53\\xd2\\x3a\\x05\\xb8\\x68\\x4a\\x04\\xf7\\x19\\x30\\\n\\x48\\x9e\\xac\\xcf\\x16\\xad\\x20\\xd5\\xb3\\x72\\xd6\\x83\\x41\\x28\\xe4\\xd1\\\n\\x9c\\x78\\x3c\\x2c\\xfc\\xcf\\x01\\x92\\xd4\\x8f\\xd3\\x4b\\xb7\\xdc\\xbf\\x3d\\\n\\x8f\\x84\\xc2\\x5a\\xf4\\x49\\x0d\\x01\\xf8\\xa0\\xba\\xd1\\x04\\x31\\xc0\\x04\\\n\\x4f\\x0f\\x60\\x3b\\xcb\\x21\\x59\\xb3\\xc4\\x15\\x07\\x2d\\xba\\x0e\\x62\\x9b\\\n\\xf3\\xa2\\xee\\x3e\\x3b\\x30\\x88\\x68\\x84\\x47\\xd4\\x2a\\x76\\x86\\x9e\\xf3\\\n\\xc3\\xa4\\x00\\x79\\x67\\x5b\\xc7\\xbf\\xae\\x7e\\x7b\\x29\\xe3\\x8d\\x10\\x8d\\\n\\x1a\\x68\\x2e\\x2a\\x6d\\xcc\\xbe\\x13\\x45\\x19\\x8e\\x04\\x0b\\x1a\\x05\\x9e\\\n\\x8d\\x31\\x7d\\xd0\\xac\\x44\\x4b\\x5b\\xf1\\xf9\\xef\\x45\\xde\\x3e\\x0f\\xa5\\\n\\xbf\\xa2\\x3c\\xdc\\x77\\xdf\\xbf\\x12\\x06\\x07\\xb5\\x0e\\x72\\xd7\\xe1\\xa7\\\n\\xf1\\xe0\\x01\\x41\\xa3\\xe9\\xae\\x76\\x2b\\xe8\\xeb\\x09\\xeb\\x7c\\x96\\x2d\\\n\\x2e\\x41\\x46\\x02\\xe7\\xd8\\xf7\\x97\\xdf\\x96\\x04\\x35\\xd4\\x8f\\x4c\\xe3\\\n\\xd5\\xe0\\x7d\\x59\\x89\\xb1\\x83\\xa1\\x1a\\xdc\\xe5\\x53\\xfe\\xdf\\x7e\\x46\\\n\\x85\\x05\\xa5\\xf5\\xa3\\x2d\\x14\\xf7\\xbe\\xb9\\xbe\\x12\\xa7\\xd7\\xbf\\xf4\\\n\\xf3\\xf7\\xe7\\xf1\\xe8\\xd6\\xe2\\xb4\\x0c\\x5b\\x22\\xd7\\xf6\\x4f\\x9e\\xfc\\\n\\x84\\x13\\x04\\x5f\\x6d\\xa1\\xb1\\xfe\\x5f\\xfa\\x01\\x8a\\x9e\\x0d\\x27\\xa0\\\n\\xfa\\x1f\\xec\\xf0\\x95\\x69\\xf2\\xec\\x7f\\xae\\xcf\\xcf\\x9e\\x6f\\x28\\xd4\\\n\\x3e\\x47\\xf8\\xe5\\x1e\\xba\\x89\\xe4\\x01\\xbb\\x9e\\xb2\\x15\\xb8\\x7e\\x3d\\\n\\x8e\\x1e\\x33\\x07\\x48\\x36\\x62\\x74\\x51\\xf8\\x7a\\xfe\\x1a\\x9f\\x28\\xb1\\\n\\xc5\\xc9\\xce\\x3f\\x36\\x9f\\xe3\\xc7\\x5c\\x30\\x01\\xf7\\xc4\\x30\\xbf\\xdf\\\n\\x3e\\xf8\\xe1\\x1e\\xd3\\xd1\\xf4\\x40\\xf7\\x29\\xdf\\xf7\\xe2\\x84\\x06\\xce\\\n\\xb8\\xe1\\xee\\x93\\xd3\\xab\\x7e\\xd5\\xf3\\x14\\x8c\\x30\\x42\\xb8\\xb7\\xfa\\\n\\xbc\\x9e\\x08\\x18\\xfd\\x86\\x9d\\xc4\\xca\\x9f\\x9e\\xfc\\x16\\xa4\\x98\\x76\\\n\\xa0\\x3e\\x8c\\x73\\x5b\\xeb\\xcb\\x4a\\xa2\\xb0\\x48\\xab\\xcc\\xf5\\xe8\\x7d\\\n\\x7b\\xbb\\xe3\\xd1\\x5a\\x11\\xde\\xbf\\xd2\\xbe\\xe9\\xbd\\xa5\\x9c\\x2d\\x0a\\\n\\x82\\x5d\\x09\\x4e\\x22\\x23\\x44\\x3f\\x7e\\xf8\\xd8\\xee\\x3a\\x22\\x40\\xb5\\\n\\x8f\\xe2\\x4c\\xd3\\x92\\x9e\\x2a\\x2a\\x21\\x9e\\xf3\\x8b\\x50\\xcf\\x94\\xae\\\n\\xbc\\x3c\\x49\\x05\\x8c\\x8a\\xa2\\x3c\\x18\\xe5\\x7e\\xfa\\xf6\\x78\\xdc\\x03\\\n\\x99\\x22\\x00\\x58\\xb2\\x66\\x0c\\x6f\\xe7\\x81\\xb0\\x28\\x7b\\x61\\xfc\\x2c\\\n\\xed\\x33\\x4b\\xee\\xd7\\x44\\x40\\x94\\x56\\x3a\\xa3\\xd5\\xe1\\x1f\\xf7\\x41\\\n\\x28\\xcd\\x01\\xa2\\x28\\x61\\xdf\\x6f\\xa7\\xd3\\xde\\x04\\x90\\x9c\\xae\\xee\\\n\\x40\\xfc\\x14\\x10\\x43\\x93\\xc4\\x0c\\x14\\x0a\\x69\\x50\\x14\\xfc\\xb3\\xb6\\\n\\xb2\\x79\\x8d\\x86\\xab\\x04\\xa6\\xad\\x0d\\xbf\\xa8\\xf4\\xf0\\xa0\\x34\\xec\\\n\\x56\\xae\\x9c\\x5a\\x7a\\x5f\\xeb\\xb1\\xcf\\x15\\x3d\\x64\\xff\\x00\\x96\\xdf\\\n\\xbd\\xdf\\x06\\x30\\x22\\x97\\x99\\x1c\\x2e\\xfb\\xfe\\xdf\\x47\\xc7\\xd0\\x64\\\n\\x93\\x41\\x79\\xa6\\xe6\\x3d\\x1f\\x99\\xe0\\x86\\xb0\\x78\\xa0\\x2e\\xe8\\x87\\\n\\x7b\\x31\\x7b\\x87\\x88\\x29\\x55\\xa0\\xcd\\xb3\\x7e\\xf7\\x07\\x1f\\xd3\\xc2\\\n\\x0a\\x90\\x60\\x8d\\x66\\x13\\xaa\\xdd\\x14\\x7b\\xee\\x0f\\x3a\\x88\\x00\\xb5\\\n\\x21\\x02\\xc4\\x46\\x97\\x85\\x72\\x0b\\xa0\\x69\\xbd\\xd8\\xfb\\xde\\x7f\\x1e\\\n\\x1c\\x42\\xac\\x03\\x3f\\xa1\\x6d\\x96\\x50\\xec\\xcb\\xe1\\x49\\xd4\\x60\\x27\\\n\\xac\\x88\\xd3\\x59\\x6b\\x9d\\x53\\x3c\\xfd\\x80\\x03\\xf0\\x44\\x32\\x23\\x77\\\n\\x3d\\x9b\\x6a\\xb4\\xaf\\x5a\\xb0\\xa0\\x6a\\x71\\x41\\xa4\\x89\\xbb\\x52\\x28\\\n\\x40\\x01\\x1d\\xfe\\x93\\x1b\\x49\\xe1\\x7c\\xae\\x17\\x02\\x17\\x7b\\x3e\\xfd\\\n\\xf0\\xd7\\xc6\\x0a\\x5a\\x81\\x58\\x09\\x15\\xb0\\xa3\\x6b\\xbd\\xc5\\xaa\\x13\\\n\\xad\\xa5\\x9b\\x38\\xc3\\xda\\xb9\\xea\\xa6\\xea\\x66\\x83\\x22\\xa2\\x26\\x0a\\\n\\xd3\\x38\\x3c\\xaa\\xaf\\xe8\\x80\\xa0\\x26\\xa7\\x05\\x1b\\x65\\xe7\\x32\\x1d\\\n\\x8a\\x2d\\x47\\x52\\xe4\\x7f\\xc8\\x11\\x76\\x76\\xd7\\xd2\\x32\\xf3\\x7b\\xfb\\\n\\xee\\x25\\x00\\xd9\\x87\\x83\\xa1\\xaa\\x1d\\xc6\\x13\\x6f\\x12\\xc1\\xf9\\xcc\\\n\\xf0\\x5c\\x08\\x06\\xb8\\x96\\x36\\x9d\\x95\\x7e\\x30\\x3e\\x98\\x52\\x63\\xe9\\\n\\x11\\x57\\xfb\\xb3\\xfc\\x3f\\xda\\x4d\\x01\\xed\\x85\\x17\\x31\\x21\\xfd\\x5b\\\n\\x99\\x97\\x47\\xbe\\xe8\\x17\\x0d\\xcc\\x1f\\x02\\xc8\\xf8\\x4a\\x18\\x86\\x85\\\n\\x05\\xfc\\x3d\\x4b\\xbc\\x98\\x19\\xe6\\x62\\x53\\xcb\\xb0\\xae\\x4b\\x82\\x3c\\\n\\xf6\\xf4\\x93\\xc5\\x2d\\x2b\\xbe\\xd4\\xf5\\xee\\xc7\\xef\\xce\\x0f\\x7c\\xba\\\n\\x80\\xc0\\x3b\\x6d\\x48\\xfa\\xec\\x18\\xf2\\x37\\xcd\\x98\\x11\\x06\\xf4\\x7e\\\n\\xbb\\x61\\x3f\\xb1\\xee\\x71\\xe8\\xfc\\x9c\\x64\\x96\\x52\\xfd\\x2d\\xe5\\xcf\\\n\\x35\\x1e\\xd8\\x4d\\x4a\\x36\\xff\\x00\\x4f\\xfe\\x6e\\xae\\x9b\\x4d\\x3f\\x08\\\n\\x9f\\xe9\\xf7\\xde\\x32\\x79\\xe8\\x60\\x91\\xce\\x4a\\xaf\\xbf\\xfa\\x7b\\xe6\\\n\\x61\\x3d\\x9f\\x7b\\x0b\\xf9\\xff\\x00\\xde\\xbc\\x76\\x80\\x82\\xdf\\xf5\\xd3\\\n\\x43\\xd7\\x3a\\xf8\\x4f\\x81\\xa8\\xef\\xc2\\x67\\x1b\\xd4\\xf5\\xeb\\xbe\\x1b\\\n\\xd0\\x63\\xeb\\x91\\xf5\\x3d\\x7a\\xf7\\xdb\\x92\\x73\\xfc\\x47\\xfe\\xbc\\x95\\\n\\x7d\\x25\\xe8\\xbc\\x87\\xcf\\xe1\\xf9\\xef\\x73\\x16\\x85\\xa9\\x5e\\xd5\\xe0\\\n\\x86\\xfe\\xfd\\xfb\\x62\\xdb\\xa4\\xe0\\xb7\\x3f\\xcc\\x01\\x9d\\xcf\\x79\\x63\\\n\\x49\\x70\\x52\\x4c\\x5d\\x3d\\x39\\xec\\xfe\\xee\\x78\\x34\\x4d\\x1a\\xf7\\xbd\\\n\\xd8\\x3a\\xba\\x18\\xf9\\x6e\\xa8\\x89\\x3a\\x8c\\x6e\\xcd\\xfc\\xf5\\xbe\\x48\\\n\\x80\\xb1\\x19\\xd6\\xc2\\xeb\\x19\\xfa\\xb1\\x7b\\xe1\\x08\\x2f\\xb5\\xff\\x00\\\n\\x27\\xae\\xc5\\xf8\\x23\\x33\\xaa\\x46\\x26\\x0b\\xcf\\x58\\x40\\x82\\x1c\\x9e\\\n\\xbf\\xaf\\x02\\x61\\xd5\\xbf\\x1b\\xb8\\xc1\\x6f\\x6f\\x7f\\x3b\\xe2\\xa4\\xe0\\\n\\xdb\\x21\\x9a\\xc7\\x3e\\x55\\x3a\\xda\\x57\\x61\\xd4\\x2f\\xdf\\xdf\\xf1\\xe4\\\n\\xb6\\x7a\\x47\\x4a\\xac\\x76\\x72\\xec\\x3f\\x8b\\xe2\\x54\\xd0\\x6c\\x55\\xb7\\\n\\x6c\\x3f\\xc9\\x64\\xfd\\x43\\x1f\\x60\\x3d\\x77\\xd6\\x13\\x4b\\x78\\xbc\\xf2\\\n\\x59\\x51\\x19\\xff\\x00\\x7f\\xfb\\x7f\\xb3\\xc3\\xaf\\xa4\\xe8\\x65\\x0b\\xf8\\\n\\x90\\x3f\\x3b\\xf6\\x06\\xaa\\x9d\\xe5\\xa5\\x1f\\x4e\\xfc\\x3f\\x44\\xb9\\x3c\\\n\\x4f\\x70\\x3d\\x11\\x47\\x6f\\xb2\\x5f\\xd6\\xbc\\xfe\\xdc\\xc0\\x58\\x14\\x23\\\n\\x42\\xc4\\x9d\\x4e\\x1f\\x3f\\x27\\x82\\x49\\x6b\\x54\\x52\\xe8\\x9f\\x0c\\x70\\\n\\x82\\x96\\xf9\\x75\\xc4\\x29\\x61\\x83\\x05\\x9c\\x1c\\x87\\xf9\\xc3\\x6f\\x83\\\n\\x0b\\x37\\xfa\\xe7\\xa1\\xfd\\xaf\\x93\\x44\\x89\\x89\\x8a\\xcb\\x8e\\x9c\\x8c\\\n\\x3f\\x83\\x73\\xc4\\x14\\xae\\x7c\\xdf\\xf6\\x7f\\xbf\\xde\\xde\\xf8\\xc2\\x84\\\n\\x7a\\xd4\\xfe\\xcb\\x97\\x91\\xef\\x63\\x9e\\x39\\x95\\x0a\\x35\\xa0\\x88\\xdb\\\n\\x86\\xbe\\x8f\\x35\\xf3\\x81\\x87\\xb5\\x77\\x93\\xde\\x3c\\xd7\\x0a\\x7c\\xc0\\\n\\x11\\xa5\\x09\\xf8\\x6f\\xb4\\x37\\x9a\\xf2\\xf8\\x44\\x50\\x96\\x8b\\xed\\x87\\\n\\xba\\xe7\\x75\\x14\\x04\\x26\\xc8\\x1a\\x53\\x00\\x75\\xce\\xdd\\xd9\\xe1\\xdb\\\n\\x47\\xc8\\xfd\\x4e\\x5c\\xdf\\xf5\\xef\\xc5\\x11\\xc9\\x54\\x69\\x3d\\xba\\xfc\\\n\\x7b\\x2a\\xbe\\xfd\\x8a\\x51\\x8d\\x29\\x7a\\x54\\x6a\\x96\\xdb\\xb6\\xe4\\x51\\\n\\xb2\\x1e\\xb6\\xa5\\x95\\x5a\\xa3\\x01\\xa2\\x48\\x72\\xf9\\x79\\x0c\\xac\\x44\\\n\\x0d\\x48\\x40\\x08\\x31\\x24\\xf1\\x99\\x5e\\xbc\\x42\\xc2\\x23\\x14\\xa4\\xc5\\\n\\x0d\\x78\\xe8\\x36\\xe0\\xc1\\x30\\xde\\x98\\x03\\x40\\x75\\xe0\\xa2\\x33\\x5a\\\n\\x04\\x74\\x95\\xa1\\x7f\\xdf\\x80\\xe0\\x15\\xa4\\x01\\xd0\\xab\\x21\\x76\\x44\\\n\\x82\\x6d\\x21\\x92\\x15\\xa2\\xaa\\x5c\\x6b\\x9a\\xa9\\x7f\\x93\\x8a\\xe8\\x87\\\n\\x47\\xa9\\x88\\xbc\\x6e\\x7b\\xf4\\xf5\\xe5\\x7d\\x45\\x2a\\x89\\x80\\x4e\\x7e\\\n\\x61\\xef\\xe7\\x8f\\x92\\x40\\x02\\x91\\x52\\x07\\x83\\xfe\\x7c\\x46\\xd3\\x45\\\n\\xac\\xa6\\xd1\\x51\\x04\\xc3\\xee\\x5c\\xcf\\x02\\xb0\\x28\\x30\\xb2\\xed\\x38\\\n\\x0e\\x9b\\xf2\\x9b\\xe0\\xf5\\xe9\\x15\\x41\\x04\\xa5\\xa5\\xd8\\x2d\\xb3\\xfb\\\n\\xf2\\x09\\x06\\x82\\xa0\\x0d\\x73\\x5e\\xdf\\x5e\\xbf\\x94\\xf2\\xd5\\xb5\\x89\\\n\\xcf\\xa5\\x18\\x35\\x2d\\x42\\xf7\\xe4\\x0a\\x70\\x8b\\x6c\\x0b\\xe8\\x04\\xd1\\\n\\x1d\\x1f\\x27\\x1e\\x6b\\x47\\xd1\\x6b\\x7b\\x8c\\xeb\\xee\\x67\\x82\\x16\\x15\\\n\\x90\\xfd\\xcb\\x73\\x9f\\x0d\\xfd\\xf1\\x14\\x82\\x1c\\xa6\\x65\\xff\\x00\\x7f\\\n\\x7f\\x9f\\x05\\xe1\\x04\\x60\\x66\\xbc\\x71\\x2c\\xd7\\xe4\\xbf\\x3c\\xa4\\xc7\\\n\\x1e\\x8d\\x17\\xd5\\xfe\\x7e\\x7f\\x52\\x59\\x24\\xe6\\x30\\xa8\\xdc\\xf4\\xbb\\\n\\x33\\x03\\x34\\xe9\\x41\\x48\\x5b\\x4e\\x64\\x37\\x30\\x9e\\xf0\\x33\\xdf\\x84\\\n\\x4a\\x28\\x19\\x57\\x22\\x19\\x78\\xcc\\xf5\\xfb\\x83\\xe3\\xad\\x0e\\xfb\\x9b\\\n\\x1e\\xf4\\xe5\\x9f\\xcf\\x35\\xf2\\xd5\\x42\\x38\\x40\\xa9\\x2e\\x65\\xe4\\x37\\\n\\x93\\xa7\\x88\\xa6\\x28\\x83\\xce\\x91\\x39\\x3d\\x4a\\x4e\\x4c\\x31\\xb1\\x2c\\\n\\xd9\\xa7\\xa3\\x11\\x0b\\xf5\\x3f\\x70\\xf6\\xf8\\xd8\\x73\\x1e\\xfa\\xff\\x00\\\n\\x8f\\x5d\\x2d\\xe7\\x80\\x0e\\x9a\\x1e\\xf4\\xb8\\x22\\xfc\\x3a\\x3f\\x7c\\x15\\\n\\x84\\x50\\xc3\\xb5\\x6a\\xc2\\x7f\\x2f\\xf6\\xf8\\xf4\\x51\\x4e\\x84\\x36\\x36\\\n\\xd7\\x1f\\x58\\x6d\\x79\\xe0\\x87\\x20\\x91\\xc0\\x1a\\xe0\\x79\\x13\\x7b\\x38\\\n\\x88\\x24\\x16\\x0b\\xc0\\x9c\\x99\\xc8\\x30\\xe0\\x15\\x3f\\x64\\x11\\xa0\\x44\\\n\\x0d\\x02\\xfb\\x71\\xea\\x20\\x9b\\x4e\\xd4\\x4d\\x38\\xd7\\x8f\\x7b\\x36\\x57\\\n\\xbb\\x7e\\x65\\xf1\\x00\\x10\\xae\\x52\\x23\\xbe\\xde\\xe7\\xb8\\x0e\\xe7\\x94\\\n\\x80\\x19\\xfe\\x50\\xe7\\x7f\\x7d\\x7f\\x05\\x0f\\x2a\\x12\\x05\\x3e\\x9f\\x5c\\\n\\xa5\\x21\\xdc\\x13\\xf7\\xb4\\xc1\\xa8\\x2e\\x1a\\x84\\x8b\\x24\\xf7\\x8b\\xfc\\\n\\x79\\xe9\\x75\\x94\\x28\\x7f\\x22\\x3d\\xaf\\xa2\\x18\\xdb\\x99\\x92\\x02\\x20\\\n\\x7a\\xd9\\x0f\\xeb\\xeb\\xe1\\x20\\x30\\xac\\xbe\\x8a\\x49\\xec\\xff\\x00\\x5f\\\n\\x4f\\x12\\x2d\\x66\\xb2\\xf5\\x63\\x22\\x7f\\xbe\\x85\\xfe\\x7c\\xca\\x44\\x1f\\\n\\x0b\\x7d\\x1b\\xeb\\xbd\\xbe\\xdf\\x9e\\x28\\x00\\x0d\\x30\\x33\\xf7\\x80\\x83\\\n\\xcf\\xd7\\xb3\\x7c\\x6f\\xf9\\xe8\\x1b\\x26\\xe7\\x32\\x1f\\x7a\\xcc\\xf0\\xc8\\\n\\x97\\x3f\\x50\\x9f\\x0e\\xeb\\xf7\\xf4\\x47\\x81\\x02\\x44\\x53\\xac\\xac\\x50\\\n\\x5d\\xe1\\x7f\\x29\\xe3\\x46\\x29\\x68\\x66\\x91\\xa0\\xa0\\xc1\\x0b\\xea\\xbe\\\n\\x6a\\x92\\x6e\\xc9\\x6a\\x2a\\x58\\xeb\\x6f\\xb7\\x78\\x78\\xe4\\xa2\\x52\\x96\\\n\\x4c\\x18\\xb0\\xf4\\x42\\x6c\\xc2\\xf8\\x17\\xc0\\xd8\\x3f\\x4f\\x6f\\x2f\\xf1\\\n\\xef\\xc6\\x48\\x27\\xf2\\x1f\\x5f\\x4f\\xee\\x7e\\x79\\xa9\\x8d\\xad\\x21\\xe8\\\n\\x37\\xfc\\x56\\x7a\\x37\\x1f\\x41\\x3a\\xe0\\x09\\x36\\xea\\xdb\\x21\\xb4\\xea\\\n\\xa8\\x8a\\xc7\\x45\\xa1\\x51\\xa0\\x30\\x08\\x3f\\xd7\\x1e\\xb2\\x40\\x38\\x84\\\n\\x4e\\xf2\\xb2\\xfd\\xdf\\x12\\x4f\\x3d\\xa1\\x03\\xe3\\x55\\x6b\\xec\\x6f\\x47\\\n\\xc4\\x12\\x8d\\x33\\x50\\x6f\\x58\\xdc\\xe4\\x19\\x98\\x82\\xdc\\xa9\\x01\\x52\\\n\\x10\\xd2\\x7b\\x93\\xa1\\xf0\\x7a\\xf9\\x54\\x4d\\x8b\\x05\\x1b\\x19\\x4e\\x65\\\n\\x7b\\xd7\\xa4\\x83\\x71\\x32\\x9c\\x11\\xec\\x49\\xc0\\xbe\\xbe\\x12\\x80\\x82\\\n\\x86\\x2b\\x70\\x6b\\xe8\\xb2\\x95\\xf2\\x4a\\xa3\\x75\\x56\\x85\\x48\\x20\\x88\\\n\\xc4\\x07\\x69\\xbb\\xe0\\x57\\x32\\x93\\x01\\x3a\\xfd\\x1e\\x1f\\x9e\\xbc\\x21\\\n\\xcb\\x04\\x25\\x87\\xa4\\xd4\\xc8\\x27\\x21\\xbe\\x0b\\x84\\xe0\\x08\\x18\\x17\\\n\\x28\\x8d\\xfd\\xfe\\x3b\\x0f\\x51\\x78\\x11\\xb5\\x22\\x5d\\xaf\\xc2\\x78\\xa2\\\n\\xb9\\x74\\xaf\\x82\\xbf\\xd3\\x29\\xf3\\xf0\\x40\\xcf\\x21\\xe3\\xed\\x80\\x41\\\n\\xf7\\xad\\xa9\\xaf\\x88\\xc8\\x13\\x4a\\xd1\\xeb\\xd5\\xca\\x9b\\xf3\\x45\\x0f\\\n\\x52\\x41\\x55\\x5e\\x45\\x56\\x9c\\x3b\\xec\\xa3\\xe0\\x98\\x76\\x4b\\x64\\x06\\\n\\x04\\x68\\xa2\\x47\\x5d\\xdf\\x5e\\x4a\\x02\\x5a\\xe1\\xd4\\x54\\x35\\x17\\x2e\\\n\\x9b\\x3c\\x6a\\x28\\xa6\\xaa\\x48\\xc2\\xf0\\x64\\xcf\\x4f\\x70\\xf2\\xfa\\xa1\\\n\\xdb\\xa8\\x7e\\x4f\\xb7\\xdf\\xf1\\x8f\\x8c\\x40\\x48\\x6e\\x51\\x55\\xc2\\x4f\\\n\\xeb\\x20\\x34\\xa8\\x79\\x01\\x23\\x17\\xeb\\x8c\\xa0\\xfa\\x0d\\x3e\\x3d\\xef\\\n\\x8e\\xa2\\x24\\x2a\\x8c\\x34\\xb1\\x91\\xec\\x74\\x93\\xc4\\x3d\\x01\\x3f\\x3b\\\n\\x36\\x8b\\xc6\\xff\\x00\\xab\\x1f\\x5e\\x14\\x0f\\xa9\\xfe\\x9b\\xc9\\xfe\\x3f\\\n\\x3d\\xd9\\x1a\\xd6\\xc4\\x70\\x96\\xaf\\xb5\\xbd\\x14\\xf8\\xfc\\xdf\\x2f\\x0b\\\n\\x74\\xc9\\xd7\\xbd\\xb7\\x9d\\x87\\xf0\\x09\\xe0\\xf3\\xc9\\x14\\x26\\x96\\x67\\\n\\xc7\\xab\\xef\\xbb\\x9e\\x64\\xc6\\xa8\\xb3\\x88\\x7a\\x1f\\xf0\\xfb\\xf1\\x67\\\n\\xbd\\x10\\xce\\x71\\x5b\\x7f\\xab\\x9d\\xdf\\xe1\\x12\\x00\\x61\\x30\\xfa\\x08\\\n\\xf7\\x30\\x9c\\xe7\\xe3\\xe0\\x80\\xc3\\x99\\xfa\\x00\\xf6\\x22\\xf5\\x99\\xf9\\\n\\xf5\\x83\\x0e\\x9d\\x49\\x53\\x99\\x9f\\x30\\xec\\xf9\\xe3\\x29\\xa5\\x05\\x95\\\n\\x6f\\x04\\x58\\x47\\xfe\\x63\\xbc\\xf8\\x0e\\x7c\\x3f\\x8f\\xed\\xf9\\xfa\\x9f\\\n\\xdb\\x8f\\xb4\\xba\\x91\\xdf\\x8d\\x5f\\xbd\\xb3\\xd7\\x90\\xfa\\xad\\x2e\\x06\\\n\\x27\\xf6\\xb0\\xef\\xb9\\x22\\xe2\\x8e\\x2d\\x50\\x2f\\xcf\\x73\\xb8\\x7e\\x3c\\\n\\xf7\\xe0\\x3c\\x92\\x08\\x36\\x73\\x6e\\xb0\\x0e\\x73\\x5f\\x00\\xa8\\xf0\\x85\\\n\\x15\\x42\\xfa\\x3e\\x13\\x9f\\x2f\\x85\\x54\\x03\\x8a\\x0a\\x28\\x02\\x84\\x0d\\\n\\xf7\\x70\\x5b\\x12\\x09\\x12\\x92\\x01\\xb1\\x55\\x9c\\xd3\\x5a\\xf2\\x98\\xcb\\\n\\x82\\x90\\xb4\\x0c\\x94\\x8d\\xdb\\xee\\x0d\\x7e\\x21\\x66\\x1d\\xc3\\xbd\\x32\\\n\\xcf\\xe5\\x64\\xdd\\xa0\\x80\\xd0\\x32\\xde\\x25\\xef\\x06\\xd3\\x58\\xe1\\x05\\\n\\xb8\\x8f\\xc2\\x71\\xf6\\x4b\\xfc\\x43\\xe7\\x91\\x00\\x96\\xa0\\xff\\x00\\x83\\\n\\x67\\x1b\\xa4\\xf5\\x7b\\x7c\\x28\\xe0\\x19\\xda\\xf7\\xdb\\x8b\\x71\\x7d\\x7a\\\n\\xc7\\xcb\\xa8\\xd2\\x56\\x42\\x9d\\x0a\\xdb\\xca\\x4b\\xee\\xf9\\x22\\x55\\xb7\\\n\\x0f\\xb8\\xbb\\xfd\\x7e\\xf7\\xdd\\xf2\\x62\\xa0\\x57\\xec\\x11\\x91\\xb3\\x17\\\n\\x39\\xbe\\x03\\xf6\\x8f\\xcd\\xfc\\xd8\\x3e\\xa7\\xe1\\xfb\\x3c\\x30\\x7e\\x90\\\n\\xda\\x90\\x1c\\x9e\\xa5\\x1f\\x92\\xf9\\x47\\x7f\\xe0\\x8f\\xfd\\xfd\\xfc\\x6b\\\n\\x9b\\xe0\\x50\\x1a\\x72\\x3d\\xa8\\x59\\x49\\x9c\\x13\\x3d\\x02\\x0c\\xba\\xa2\\\n\\xca\\x6c\\xab\\x34\\x69\\x0c\\x0b\\xdc\\xf1\\x81\\x14\\x4f\\xad\\x0f\\xe6\\xb7\\\n\\x77\\x59\\xbe\\x96\\x24\\x6a\\x30\\xbd\\x93\\xdd\\x30\\xab\\xfc\\x4f\\x95\\xa7\\\n\\x69\\x45\\x53\\x8f\\x73\\x38\\xe4\\xde\\xf2\\x14\\x33\\x10\\xe1\\x07\\xf2\\xa9\\\n\\xbf\\x48\\x4f\\xf6\\xb0\\x43\\xd0\\x22\\xc8\\xe3\\x96\\xfb\\x6a\\x5e\\x3e\\x54\\\n\\x11\\x80\\x2d\\x0b\\xfd\\x87\\xaf\\xaa\\x1a\\x4e\\xf9\\x75\\x04\\x34\\x51\\x8f\\\n\\x7d\\xdb\\xfd\\x7e\\xe3\\x52\\xad\\xd3\\x76\\xe7\\xcf\\x62\\xc0\\x07\\xf1\\xee\\\n\\xe7\\x51\\x10\\xb8\\x81\\x42\\x4c\\x3f\\x89\\xd2\\x76\\xb8\\xe4\\x23\\xad\\x12\\\n\\xfb\\xce\\xe1\\xed\\xcf\\x7d\\x04\\x11\\x75\\x2a\\x3e\\x1d\\x69\\x9a\\xe6\\xec\\\n\\xc5\\x8d\\x5c\\xec\\x5b\\xea\\x5f\\xe0\\xd6\\x3a\\xc9\\xe1\\xec\\x65\\x20\\x9a\\\n\\xd6\\x1a\\xa4\\x0e\\x1a\\x45\\xf0\\xbb\\x4b\\x53\\x88\\x00\\xc7\\x6b\\xac\\x8b\\\n\\x6d\\xf0\\x1f\\xd9\\x3b\\x0d\\xb6\\x45\\x23\\x8e\\xa9\\xa3\\x3c\\x48\\x48\\xed\\\n\\x28\\x94\\x28\\x1a\\x59\\x4b\\x78\\x0e\\x54\\x3a\\x08\\x88\\x5a\\x0a\\x31\\x61\\\n\\x75\\x75\\x02\\xe1\\xd5\\xf1\\xd2\\x55\\x94\\xfb\\x0d\\xf8\\xff\\x00\\x89\\x0e\\\n\\x78\\xa6\\x07\\x66\\xeb\\x92\\xc5\\x7d\\x23\\x9a\\x84\\x00\\x7c\\x19\\xd4\\x21\\\n\\xa4\\x0c\\xa5\\x61\\x27\\xd4\\x2f\\x7d\\xf8\\x40\\xba\\x74\\x8e\\x50\\xd3\\x7f\\\n\\x7d\\x71\\xfd\\x9a\\xd4\\xa0\\x84\\x38\\xfd\\x03\\xe8\\xdf\\x7b\\xb4\\x5d\\x0f\\\n\\x2c\\x40\\xc4\\x73\\x11\\x11\\xf7\\x75\\x4e\\xf8\\x21\\x5b\\x88\\x2e\\x05\\xa0\\\n\\x8b\\xa8\\x3a\\x86\\x7e\\x8d\\x12\\xda\\x6b\\xaf\\x7a\\xdf\\xbd\\x3f\\xf3\\x35\\\n\\x5d\\x55\\x29\\xac\\xe2\\xe7\\x78\\x60\\x29\\xff\\x00\\x5e\\x21\\x04\\x76\\x23\\\n\\x77\\x56\\x27\\x3f\\xec\\xff\\x00\\x2c\\x1d\\xac\\x41\\xa8\\x8e\\x11\\x37\\xd1\\\n\\xe4\\xae\\xc9\\xe6\\x72\\x28\\x14\\xfd\\x3d\\x7a\\x52\\xf5\\xe2\\x92\\x49\\x7a\\\n\\x51\\xce\\x30\\x8f\\x47\\xd5\\xe7\\xf3\\x77\\xc3\\x58\\x4a\\x60\\x07\\xd5\\x81\\\n\\xf0\\x7f\\x2b\\x73\\x3c\\x88\\x31\\x0d\\x12\\xa3\\xc9\\x39\\xcc\\xff\\x00\\x1f\\\n\\xd2\\x16\\x06\\x9c\\x16\\xe1\\xcb\\xde\\xa7\\x24\\xec\\xe7\\x56\\x03\\x2b\\xb7\\\n\\xf8\\xf8\\x78\\x13\\xb1\\xf4\\xf8\\x7a\\x95\\x0e\\x1a\\x3c\\xe7\\x17\\x93\\xdf\\\n\\xdc\\xf2\\xea\\x1e\\x8e\\x77\\x5f\\x6a\\x4e\\x7f\\x11\\xfe\\x7c\\xdb\\xa2\\x50\\\n\\xb2\\x7a\\x59\\x3d\\xa4\\x3f\\x7d\\xf7\\xc8\\x53\\x48\\x23\\xdb\\x0c\\xbe\\x9a\\\n\\x67\\xf9\\xfd\\x3d\\x15\\x18\\xfe\\x83\\xa0\\x61\\x3a\\xaf\\xe7\\xf3\\x48\\x44\\\n\\x90\\x24\\x1f\\x1e\\x98\\xe6\\xff\\x00\\x53\\xcb\\x39\\x26\\x41\\x57\\x45\\x66\\\n\\x4d\\x17\\x6a\\x72\\xe7\\x94\\x1b\\x06\\x27\\xb2\\x9f\\xcf\\xfe\\xe1\\xbe\\x09\\\n\\x0d\\x54\\x81\\xac\\xfe\\x7f\\x3f\\x8f\\x23\\x07\\x2b\\x51\\x40\\xc2\\x8e\\x3f\\\n\\x4f\\xc4\\xf6\\x86\\xf9\\x70\\x90\\x8d\\x05\\x63\\x3a\\xec\\x35\\x2f\\x3d\\x59\\\n\\xe5\\x66\\x16\\x31\\x8c\\x08\\xaf\\x64\\x4b\\x67\\xb6\\x71\\x95\\x45\\xb4\\x43\\\n\\x82\\x28\\x10\\x6c\\x3f\\xfa\\xf8\\xff\\x00\\x1a\\x99\\x08\\x97\\x0d\\x36\\x7e\\\n\\xf9\\x0c\\xd1\\x12\\xd9\\x03\\xec\\x87\\xaf\\x47\\xae\\x44\\x3b\\x4f\\x61\\x6a\\\n\\x88\\x66\\xc4\\x10\\x82\\x79\\x3d\\x88\\x39\\x1a\\x24\\xad\\x5e\\x98\\x6c\\x0c\\\n\\x3c\\x61\\x89\\x7d\\x9d\\x1d\\x7b\\x87\\x43\\x93\\xe6\\x9e\\x68\\x38\\x20\\x4a\\\n\\x81\\x82\\xa0\\xb6\\x18\\x96\\xcf\\x73\\xcd\\xf6\\xe4\\x31\\x18\\xbb\\x89\\x3a\\\n\\x1c\\x3a\\x4f\\x17\\xca\\x44\\xa4\\x4a\\x5e\\x21\\x52\\x81\\x77\\xd4\\x9e\\x3b\\\n\\x08\\x15\\x03\\x0e\\x51\\xe7\\x36\\x07\\xcf\\x5e\\x2e\\xa9\\x2b\\xc6\\x41\\xac\\\n\\x3f\\x8c\\x11\\x6c\\x1c\\x90\\xb6\\x00\\x37\\x55\\x07\\xfb\\x46\\x6f\\xa3\\xdc\\\n\\x97\\xcb\\x11\\x28\\xd9\\x0f\\xd8\\x33\\xd1\\x84\\x59\\x67\\xcf\\x06\\x8d\\x34\\\n\\x4c\\x61\\xd4\\x9b\\xf0\\xfb\\x4f\\x70\\xf2\\xba\\x04\\x18\\xe5\\x79\\x54\\x0e\\\n\\x4e\\xfc\\x3c\\x68\\x6b\\x13\\x74\\x94\\xe7\\x42\\x3c\\x78\\x12\\x27\\x93\\x0c\\\n\\x5b\\x16\\x9f\\x82\\xa4\\x6d\\x77\\xa5\\xba\\xf9\\x03\\xc8\\x63\\x51\\xa8\\xc4\\\n\\x3e\\xd8\\x17\\xd8\\x1c\\x21\\xff\\x00\\x24\\xe8\\x4f\\xb5\\x98\\x0e\\xe3\\x45\\\n\\xf0\\xf0\\x05\\x51\\x1e\\xa2\\xfa\\x9d\\x5c\\x9b\\x3b\\xe1\\x95\\x01\\xec\\x5f\\\n\\xf9\\x14\\xfe\\x3d\\x79\\x64\\xce\\x88\\xe0\\x7a\\x3d\\x7d\\x3d\\x67\\xb7\\xf5\\\n\\x56\\xaa\\x41\\x22\\xad\\xe6\\x7c\\x4f\\xea\\xf5\\x3c\\xef\\x5d\\x55\\x29\\x46\\\n\\x0f\\xe3\\xb7\\x4f\\xec\\xce\\x0f\\x49\\x08\\x34\\x11\\xab\\x5f\\xf3\\x07\\x4f\\\n\\xea\\x0a\\xb0\\x12\\x7b\\x32\\x19\\xf4\\xaf\\xaf\\x24\\x85\\x41\\xee\\xbc\\x08\\\n\\x5e\\xee\\x1f\\x37\\x9e\\x71\\xc2\\x04\\x3c\\x55\\xf5\\xeb\\xb3\\x84\\x83\\xbe\\\n\\x10\\xed\\x52\\x0b\\x2a\\x00\\xb8\\x33\\x13\\xda\\x94\\x60\\xfc\\x51\\x00\\x38\\\n\\x83\\xf0\\x55\\xa2\\x1e\\xb3\\xb1\\x48\\x20\\xac\\x16\\x93\\xe5\\xc7\\xf4\\xfa\\\n\\xe2\\x25\\x36\\x17\\xfa\\x51\\x4a\\x92\\x41\\x67\\xf3\\x49\\x28\\xc7\\x85\\x31\\\n\\x48\\xba\\x1d\\x3b\\xc7\\xd4\\x94\\x9a\\x53\\x28\\x0a\\x28\\x82\\xa8\\xe3\\x35\\\n\\xbc\\x07\\xfa\\x66\\x78\\x19\\x52\\x02\\x8c\\xa7\\xa1\\x58\\x3b\\xfe\\x05\\xd2\\\n\\xf9\\xa3\\xc4\\xc8\\xa0\\x87\\x18\\x56\\x7f\\x1f\\xce\\x22\\xe8\\xcb\\xed\\x8e\\\n\\xf4\\x90\\xf6\\x6f\\x0a\\xe7\\x7c\\x81\\xb2\\x00\\xe5\\xb6\\x9f\\xcf\\xe7\\xd9\\\n\\xfb\\x41\\xa0\\x79\\x6f\\x75\\x03\\x08\\x37\\x9e\\xbf\\x45\\x6a\\x92\\x52\\xd5\\\n\\x65\\x3d\\x20\\x56\\x0c\\xf6\\xfe\\xe4\\x10\\x9c\\x5b\\xa0\\x87\\xb3\\xd3\\x7f\\\n\\x23\\xd5\\xe8\\xef\\x1c\\x20\\xcd\\x24\\xd8\\x7f\\xac\\x72\\x91\\xf1\\x88\\x75\\\n\\x83\\x70\\xa7\\x5d\\xbc\\xf7\\xef\\x0f\\x51\\x21\\x55\\x6e\\x17\\xfc\\x36\\xfd\\\n\\xf9\\x7e\\x9b\\xe3\\xad\\x1b\\x30\\xfd\\xff\\x00\\xa1\\x73\\xdf\\x92\\xc8\\x81\\\n\\x15\\xd0\\xb5\\x22\\x75\\x35\\x6c\\x87\\x82\\x54\\x21\\xb9\\xc0\\x67\\xbb\\x8f\\\n\\xae\\xee\\x3e\\x3d\\x26\\x1f\\x1a\\xe3\\x91\\x8b\\x35\\xe1\\xf7\\x93\\xc4\\x31\\\n\\x15\\x1f\\xe7\\x73\\xf9\\x3d\\xbe\\xfc\\xfe\\x50\\xe3\\x74\\x67\\xcf\\xbf\\xa4\\\n\\xcc\\xf7\\xe7\\xa8\\xc5\\xc9\\x04\\x8f\\xf6\\xff\\x00\\x5c\\xe2\\xbe\\x35\\x8e\\\n\\xdf\\xf3\\xb1\\xf8\\x7b\\xca\\x82\\x3e\\xbc\\x91\\x10\\x1d\\x3b\\xd2\\xa7\\xf3\\\n\\x7b\\x4f\\xe7\\x6c\\x04\\x79\\xe4\\x4d\\xb1\\xfe\\x99\\x8f\\x7d\\x3b\\x30\\x1e\\\n\\x17\\x50\\xc5\\x52\\x43\\xfb\\x33\\xd7\\xf3\\xdf\\x03\\xd1\\x41\\x00\\x4a\\x07\\\n\\x58\\xf5\\x1b\\x7f\\x9f\\x05\\xd4\\x34\\xd0\\xac\\x36\\x7a\\xf6\\x23\\x81\\xeb\\\n\\xc1\\xb0\\x4b\\x65\\x03\\x4b\\xf6\\xd0\\xbc\\xe5\\xd8\\x29\\x24\\x2d\\x69\\x35\\\n\\x50\\xf5\\xcc\\x9f\\xf3\\xe2\\xc0\\x7a\\xaf\\xbd\\x65\\xfe\\x7e\\x77\\x33\\xbe\\\n\\x32\\x6e\\x0f\\x6d\\xc5\\xe6\\x5f\\xe3\\xee\\x13\\xcc\\xa9\\x38\\xbc\\x88\\x83\\\n\\xd5\\xa2\\xb4\\xed\\xe5\\x7c\\x51\\xc2\\xa3\\x6a\\xa2\\x93\\x02\\x8f\\xec\\x3d\\\n\\xd2\\x93\\x52\\x87\\x12\\x30\\xab\\x49\\xc8\\xd9\\xdf\\x1e\\x16\\x1e\\xd5\\x61\\\n\\x43\\x62\\x22\\x0c\\x85\\x6a\\xe7\\x86\\x6c\\x09\\x7b\\x07\\x6a\\x84\\x1f\\xb0\\\n\\x7d\\x52\\x42\\x5c\\x61\\xa8\\xb6\\x05\\xa2\\xf4\\xfa\\x05\\x79\\x61\\xbf\\x53\\\n\\xec\\x7d\\xc1\\xa7\\xb7\\x69\\x90\\xf0\\x3e\\xac\\xee\\x7b\\x33\\x63\\x39\\x12\\\n\\x35\\x42\\xbe\\x08\\x13\\x2b\\x08\\x25\\xc0\\x59\\x7d\\x0a\\xef\\x8c\\x4e\\x43\\\n\\x8e\\x68\\x90\\xf7\\x07\\x9d\\x9a\\x87\\x00\\x0c\\xa6\\x52\\x00\\x41\\xd9\\x19\\\n\\x66\\x56\\x7f\\x92\\x32\\x04\\x2a\\x94\\xe0\\x63\\xa4\\xd3\\x29\\xe5\\xa3\\x61\\\n\\x7a\\x7d\\xf6\\xf2\\x1d\\x9c\\x19\\x55\\x3c\\x26\\x99\\xa5\\x3d\\x97\\xf7\\x9d\\\n\\x3b\\xd7\\xf1\\x38\\x8c\\xaa\\x7f\\x4c\\x4f\\x5f\\x13\\x8c\\x3b\\x3b\\xdf\\x04\\\n\\x5a\\x0d\\xb1\\xbf\\x40\\xa4\\xd1\\x7d\\x72\\xfa\\x8f\\x78\\x95\\x47\\xa8\\x19\\\n\\x93\\x5e\\x8d\\xbb\\xfa\\xbe\\x5d\\xba\\x1f\\x4a\\xaa\\xfd\\xfb\\x5f\\x67\\xfc\\\n\\xe1\\x0a\\x42\\xd2\\xa4\\xa6\\x98\\xda\\x97\\x9c\\xdf\\xa7\\x82\\xce\\xe6\\xa3\\\n\\xa5\\xfe\\x6a\\x58\\x71\\xcb\\x3c\\x9a\\x8a\\xe6\\x5a\\xb7\\xe3\\x96\\xd3\\x79\\\n\\xdd\\xfb\\xe6\\x22\\x68\\xd6\\x72\\x2a\\xde\\x7a\\x4f\\xf3\\x5f\\x5e\\x57\\xeb\\\n\\xfe\\x5f\\x18\\x49\\x23\\x01\\xb4\\x19\\x60\\x46\\xa7\\x4e\\xc6\\x3b\\xe5\\x4e\\\n\\xd0\\x86\\x51\\x42\\xed\\x83\\xdd\\x80\\xad\\x18\\x04\\x3d\\x51\\x62\\x0c\\xc2\\\n\\xf3\\x5e\\xdb\\xe9\\x3c\\x8d\\xc6\\xca\\x92\\x59\\x23\\x0c\\x3d\\x47\\xf4\\xf0\\\n\\x23\\xa0\\x43\\xf1\\xf0\\xd8\\x4a\\x22\\xae\\xe3\\x16\\xe1\\x52\\x75\\x36\\x2b\\\n\\x16\\xc3\\x59\\x2d\\x6b\\xe1\\xba\\x9c\\xf6\\xd1\\xa1\\x4b\\x58\\x3d\\x29\\xcb\\\n\\xe3\\x65\\xf0\\x31\\x07\\xaa\\x1e\\xb2\\xde\\xf0\\x7a\\xf3\\xc6\\x81\\x4c\\x3b\\\n\\x31\\x8a\\xc2\\x91\\x09\\x82\\x8a\\xdf\\x6d\\xa0\\x00\\xea\\x2d\\x40\\x6f\\x12\\\n\\xdc\\xc1\\xf0\\x45\\x00\\x0e\\x9a\\x06\\x41\\xca\\x0f\\x44\\x3b\\xe2\\xf8\\xc1\\\n\\xa3\\x40\\x7b\\x85\\x3e\\x68\\x55\\x88\\xbe\\x1b\\x43\\x60\\x65\\x48\\xc5\\x6d\\\n\\xc7\\x14\\x78\\x5f\\xcf\\x1a\\x08\\xa9\\x51\\x7a\\x37\\xa0\\xe8\\x8f\\x0e\\x87\\\n\\x83\\x89\\x30\\x91\\x14\\x46\\x83\\xec\\xc5\\x86\\x3d\\xf8\\x93\\x1e\\xca\\x50\\\n\\x8f\\x50\\x01\\x43\\x64\\xca\\xdb\\x7c\\x9e\\xa6\\x04\\xa4\\x04\\x0b\\x25\\xbe\\\n\\x94\\x27\\xd2\\x64\\x6c\\x38\\x48\\x8a\\xcf\\x64\\x08\\xdc\\xfb\\xd4\\xfd\\xf0\\\n\\x21\\x08\\x2d\\x35\\x7e\\xc3\\x5b\\x02\\xb0\\xe2\\x5a\\xa0\\x22\\xd7\\xa5\\x3e\\\n\\xc5\\x9f\\x9b\\x3d\\xf3\\xe4\\x03\\xf8\\x0a\\x25\\x11\\x31\\x57\\xed\\x19\\xd9\\\n\\xf3\\x98\\xd9\\xf3\\x0b\\xd5\\xfa\\x0e\\x71\\xfb\\xfe\\x7c\\x38\\xe4\\x3a\\x42\\\n\\x1a\\x5b\\xd9\\xbb\\xe8\\xfe\\x07\\xc5\\x18\\x38\\x90\\x99\\xc8\\xe2\\xfb\\xe4\\\n\\xd5\\x87\\x8a\\x0c\\x36\\x4d\\x70\\xae\\x05\\x14\\x0b\\xc4\\x3c\\x77\\xaf\\x42\\\n\\xe0\\xa0\\x70\\xd3\\x48\\xdc\\xbc\\xe1\\x90\\x07\\xb0\\x8a\\xcb\\xe8\\x86\\x9f\\\n\\xc4\\xdf\\x75\\x7a\\x68\\xb4\\x0a\\x5e\\xfa\\x7b\\xf7\\x7b\\x99\\xbe\\x04\\x84\\\n\\x30\\x29\\x93\\xbc\\xcc\\xff\\x00\\x1f\\x57\\xae\\x04\\x2a\\xc3\\xd8\\x75\\xfe\\\n\\x4b\\x8d\\x07\\x48\\x9f\\x6d\\x12\\x9a\\x50\\x8e\\x7f\\xbf\\xf1\\xd4\\x4d\\x28\\\n\\xb7\\x01\\x06\\x60\\x5b\\xfc\\x8e\\xeb\\x77\\xb7\\xcc\\x84\\x14\\x03\\x02\\x09\\\n\\xcc\\xed\\xfe\\x06\\x7f\\x3e\\x0e\\xb4\\x0a\\xbc\\x1a\\xd8\\xf3\\x7f\\xb9\\xbf\\\n\\x2b\\xe3\\x42\\xe0\\x6e\\xa4\\x27\\xa7\\x99\\xb1\\x7b\\xf6\\xd7\\xc0\\xcb\\xa3\\\n\\x0d\\xfc\\xd3\\x87\\x4d\\x6f\\x4f\\x6f\\x9a\\x0d\\x1e\\x10\\x57\\xbc\\xe6\\x6b\\\n\\x7b\\xbf\\x3c\\x76\\x12\\xe0\\x43\\x1e\\xb8\\x85\\xcb\\xdf\\x64\\x3d\\xd9\\x14\\\n\\x00\\x7d\\x03\\xfa\\x08\\xef\\xec\\xb5\\xd5\\x3c\\x50\\x95\\x12\\x4a\\x4f\\xec\\\n\\xb0\\x9f\\xb8\\xf8\\x63\\x6e\\x00\\xdd\\x23\\xdd\\x95\\x13\\x72\\x51\\x79\\x6a\\\n\\x1b\\x8e\\xb8\\x8d\\x10\\x52\\xaf\\xab\\x3c\\x93\\x3b\\x04\\xfb\\x48\\x1b\\x30\\\n\\x8a\\xbb\\xaf\\x8f\\x30\\xc5\\x00\\x3b\\x0a\\xf5\\xf1\\xdf\\xb3\\x6e\\x09\\x19\\\n\\x6e\\xe5\\xb8\\xda\\x53\\x04\\xd7\\xc1\\x85\\x43\\x4b\\x8c\\x40\\x94\\x34\\x20\\\n\\xe4\\x0f\\x11\\x1d\\x74\\xd9\\x29\\x8b\\x58\\x43\\x3e\\x78\\xa6\\xaf\\x82\\x94\\\n\\xa6\\x06\\x2d\\x75\\x71\\x46\\x8e\\x05\\xb2\\x0c\\x3e\\xc1\\x2d\\x52\\x35\\x1a\\\n\\x28\\xe5\\xb5\\x4b\\x97\\x98\\xbf\\xe8\\xdb\\xbb\\x32\\x78\\xe1\\x84\\xb7\\x53\\\n\\x5a\\x98\\xc9\\x37\\xd4\\xcd\\xc2\\xba\\xb4\\x99\\x40\\x69\\x1f\\x76\\x98\\xf1\\\n\\xb2\\x78\\xaa\\x94\\x23\\xc8\\xf6\\xca\\x03\\xde\\x55\\x37\\xeb\\xe0\\x14\\x4b\\\n\\xf9\\xf1\\x79\\xfe\\xff\\x00\\xcf\\x92\\x72\\xe0\\x33\\xe2\\xba\\xe0\\x34\\xe6\\\n\\x9b\\x73\\xc2\\x89\\x14\\xf0\\x50\\xa3\\xd8\\x2b\\x93\\xe1\\xdc\\xf1\\xf8\\x0b\\\n\\x80\\x19\\x85\\x75\\xf7\\xf3\\xaf\\x33\\x45\\x9d\\x42\\x28\\xd0\\x49\\x65\\xfa\\\n\\xff\\x00\\x5f\\xad\\x56\\x68\\x2b\\x6b\\xa0\\x88\\x54\\x28\\x6f\\x38\\xdf\\x2f\\\n\\x0e\\x65\\x08\\xd8\\x5e\\xdb\\x49\\x33\\x3e\\x77\\xc8\\x65\\x7f\\x35\\x3d\\xbf\\\n\\x3f\\xbc\\xe9\\x5f\\xbe\\x0c\\x0a\\x2c\\x0f\\xab\\xbe\\x82\\x3a\\xe6\\xf1\\x9e\\\n\\x5f\\xd5\\xf7\\x8e\\xff\\x00\\xd7\\x85\\x95\\x85\\x40\\x65\\x62\\xb7\\x32\\x13\\\n\\x9c\\x42\\x78\\x5c\\xaf\\x10\\x05\\x13\\x98\\x69\\x12\\xb9\\xc2\\xc3\\xc4\\xcd\\\n\\x3e\\x90\\x03\\x4e\\x17\\x25\\x7b\\xbe\\xee\\x8a\\xce\\x88\\xc4\\x0d\\x7a\\x6d\\\n\\xa7\\xd9\\x04\\x21\\x99\\xe3\\xa6\\x5b\\xfe\\xa6\\x9a\\x40\\x42\\x2c\\x92\\xe0\\\n\\x77\\x1e\\xf3\\x04\\x45\\x03\\x5c\\x45\\x45\\x34\\x7c\\xba\\x01\\x86\\x07\\xe8\\\n\\x56\\x90\\x39\\xca\\xdb\\x37\\x96\\xe7\\xb4\\x02\\x18\\x36\\xf7\\xe7\\xdf\\x79\\\n\\x34\\x41\\xa2\\xe0\\xac\\x1b\\x82\\x55\\x45\\x0e\\x13\\xc2\\xd4\\x8c\\x4a\\xa4\\\n\\x02\\x20\\x39\\x5b\\x57\\x54\\x50\\x97\\xaa\\x6a\\x30\\x54\\x18\\x34\\xc7\\x47\\\n\\x9f\\x1a\\x41\\x0a\\x34\\x89\\x75\\x7d\\xfa\\x39\\x25\\xf0\\x00\\x1a\\x65\\x23\\\n\\xd9\\x04\\xae\\xd6\\xf4\\xc4\\x1e\\x1b\\xa8\\x47\\x5a\\xf6\\x0b\\x71\\x83\\x6c\\\n\\xfc\\xf6\\xe7\\xc3\\xd4\\xa4\\x96\\x81\\x9f\\x20\\x3f\\xe9\\x4e\\xc0\\x8a\\x5d\\\n\\xf6\\x33\\x20\\x99\\x8f\\x77\\x88\\x63\\xe8\\x54\\xf4\\x65\\x11\\x79\\x1e\\x26\\\n\\x69\\x4f\\xc0\\x1a\\x40\\x20\\x94\\x11\\x0e\\x9c\\x22\\x8e\\x76\\xdf\\xdb\\xe3\\\n\\x88\\x1a\\x8d\\xc0\\xcc\\xf6\\x54\\x8f\\x64\\x61\\x0f\\x2d\\x01\\x46\\x0a\\x01\\\n\\xc1\\x7a\\xcd\\xd0\\x05\\x7e\\xf8\\x28\\x59\\x4f\\xb5\\xcd\\x04\\x10\\x81\\xda\\\n\\x9e\\xfd\\x1e\\x08\\x2a\\x94\\x15\\x08\\x8c\\x37\\x41\\x71\\xa8\\xa1\\x4f\\x1f\\\n\\x5c\\x01\\x47\\xb8\\x34\\x29\\x6f\\xd9\\x52\\x41\\x7c\\x4a\\xdf\\x05\\x6a\\x82\\\n\\x7d\\x81\\x4b\\x50\\x45\\x0f\\x13\\xb2\\x35\\x43\\x8a\\x31\\x04\\x21\\x80\\x87\\\n\\x87\\xb8\\x01\\x32\\x21\\xfe\\x2e\\xdf\\x55\\xd2\\xdb\\x22\\x78\\xea\\xf2\\x1c\\\n\\x4d\\x74\\x61\\xfc\\xfb\\x9e\\x20\\x63\\xee\\xb8\\x91\\x93\\xdf\\x3e\\xf7\\xd7\\\n\\x3c\\x2c\\x24\\x82\\x03\\x22\\xab\\x33\\xdb\\xe8\\xa6\\x1f\\x0f\\x04\\xf0\\xb1\\\n\\x51\\x75\\x90\\xe3\\x8c\\x55\\x59\\x76\\xcd\\x78\\x62\\x25\\xe0\\x36\\x72\\x4e\\\n\\xeb\\xf5\\xff\\x00\\x71\\x24\\x55\\x09\\x55\\x5f\\x1e\\x8e\\x95\\xcd\\x36\\xc4\\\n\\x9c\\xb4\\x5f\\x59\\x79\\x39\\x81\\xbf\\x3d\\xf7\\xc7\\xc3\\x42\\xf8\\xb5\\x7b\\\n\\x27\\x10\\xbf\\x30\\xec\\xf0\\x57\\xc2\\xc6\\xc1\\xdd\\x7d\\xa0\\x9b\\xc7\\x7f\\\n\\x3c\\x74\\x04\\x56\\xea\\xeb\\xf9\\x39\\xa7\\xb3\\x8c\\xf7\\xe2\\xc2\\x53\\xd8\\\n\\x95\\xc4\\xd6\\xe0\\x7e\\x77\\xd0\\x67\\x8f\\xb6\\xce\\x23\\xaf\\xbf\\x0d\\x54\\\n\\x6d\\x28\\x93\\x20\\x06\\x46\\xac\\x2e\\x43\\x09\\xc6\\x20\\xe7\\x2b\\xe6\\x64\\\n\\x46\\x50\\xce\\x0b\\x6b\\xed\\xcd\\xc9\\xe2\\xd8\\x02\\x81\\x86\\xe0\\x42\\xc5\\\n\\x43\\xfc\\x87\\xb3\\xe1\\xb0\\x36\\xc2\\xde\\xc8\\x68\\x07\\x09\\x90\\xfb\\xe3\\\n\\x6f\\xe9\\x0b\\x41\\x70\\x69\\x05\\x55\\x40\\x48\\xee\\xeb\\xe9\\xc0\\x69\\x3f\\\n\\xbd\\xb9\\x41\\x97\\xc4\\x56\\xc8\\x49\\x79\\x16\\xa0\\xc9\\xa0\\xc7\\xc4\\x6f\\\n\\x8c\\x8c\\xd2\\x37\\x5a\\xe4\\xd9\\x74\\xfb\\x15\\xec\\x28\\x74\\x8a\\xc1\\x18\\\n\\x99\\xde\\x94\\x5c\\x51\\xd6\\x09\\xd6\\x40\\x11\\xc0\\xd8\\x2a\\xe1\\xa9\\x52\\\n\\x36\\xb0\\xe1\\x85\\xc1\\xdb\\x1f\\x5d\\xa6\\x53\\xca\\x57\\x39\\x02\\xb4\\xe6\\\n\\x28\\x5c\\xb9\\x21\\x24\\xf1\\xf8\\x9b\\x8c\\x1c\\x2a\\x0e\\xa9\\x15\\x50\\xd1\\\n\\xed\\x98\\xf0\\xb4\\xc2\\x54\\x04\\x96\\x64\\x43\\xe5\\x09\\xe0\\x00\\xd3\\x93\\\n\\xe1\\xb2\\xe1\\x6c\\x75\\x90\\x04\\xfc\\x58\\x06\\x66\\x25\\xdf\\xf9\\x54\\x09\\\n\\x07\\x9e\\x08\\xd7\\x16\\xc6\\x8c\\xdd\\x86\\x72\\xe9\\x1f\\xd4\\xf1\\xa3\\xd2\\\n\\xa8\\x00\\x74\\x15\\xc4\\xbf\\x9d\\x6c\\xf2\\xa9\\xdf\\x51\\xac\\x4a\\x51\\xa7\\\n\\xd0\\x5b\\x97\\xc8\\xf5\\x43\\x45\\x31\\xea\\x4d\\x62\\xfa\\xef\\xd2\\x17\\x99\\\n\\xa9\\x34\\x08\\xea\\x91\\xe3\\x06\\x51\\xb8\\xf8\\x8a\\x40\\x8e\\x98\\x4a\\x6f\\\n\\xdf\\x67\\x59\\xdc\\xf1\\x5f\\x60\\x4e\\x27\\x2c\\xfd\\xd3\\x36\\xfc\\x67\\x8d\\\n\\x29\\x02\\xc2\\x8d\\x9f\\xcf\\x43\\xfe\\x27\\xa6\\x79\\x1c\\x8b\\xe2\\xe9\\x3e\\\n\\xb9\\xef\\xf3\\xc3\\xc8\\xfb\\x20\\xc0\\x2c\\x1d\\x80\\x7c\\x51\\x79\\xe2\\xd1\\\n\\x4a\\x97\\x28\\x21\\xca\\x2d\\x69\\x9f\\xae\\xdd\\x72\\x03\\xa1\\xaa\\x10\\x88\\\n\\x5a\\xb6\\x9a\\xe0\\x1e\\x32\\x93\\x0d\\x22\\x6b\\x6f\\x50\\x8b\\x83\\x02\\xc4\\\n\\xf6\\x32\\xcc\\xd5\\x8f\\x01\\x13\\x43\\x41\\xa3\\x03\\xc6\\xee\\x85\\x4d\\xcc\\\n\\xb8\\x55\\xa2\\x82\\x54\\x14\\x10\\x3b\\x04\\x54\\x8e\\x80\\xb6\\x6b\\xd8\\x68\\\n\\x05\\x3e\\x33\\x4a\\x7e\\x69\\x53\\x99\\x1a\\x66\\x43\\x1f\\x7a\\x1e\\x60\\x10\\\n\\x06\\x53\\xd8\\x3d\\x64\\xd5\\x55\\x86\\x56\\x3e\\xd1\\x35\\x00\\x70\\x27\\xb5\\\n\\x25\\x20\\x86\\xbf\\x20\\xa8\\xee\\xd4\\x76\\xc4\\x3b\\x29\\xd2\\x24\\x9d\\xf0\\\n\\x24\\x3b\\x90\\x34\\x59\\xfb\\x4e\\xf3\\x3d\\x3a\\x78\\x48\\x20\\x9e\\xd1\\x69\\\n\\xab\\xad\\x41\\x1b\\x7f\\xc5\\x6c\\x22\\x34\\xa0\\x15\\xf4\\xe6\\x06\\x66\\x8d\\\n\\x9e\\x14\\x1c\\x66\\x0c\\x3a\\xa1\\x70\\x3f\\xae\\xdf\\xdf\\x54\\xe8\\x55\\xf5\\\n\\xa7\\xae\\xa7\\xdb\\x99\\xef\\xcb\\xc8\\x57\\xb1\\x52\\xca\\x10\\x19\\xef\\xd8\\\n\\xfb\\xf2\\xa4\\xa8\\x41\\xc1\\x66\\x02\\x5f\\x78\\x7b\\xfe\\xf7\\xc6\\x3e\\x50\\\n\\x84\\x34\\x22\\xb3\\xf7\\xf1\\xce\\xfa\\xf1\\x40\\xa8\\x53\\xd4\\xe8\\xbe\\xc6\\\n\\xcc\\x7a\\xcf\\x5e\\x1c\\xe9\\x04\\x27\\xb6\\xb1\\x96\\x58\\x84\\xdf\\xcd\\x99\\\n\\xa0\\x40\\xad\\xc7\\x23\\x9a\\x73\\x9f\\x48\\x79\\xc3\\x2b\\x15\\x89\\x22\\x8d\\\n\\x28\\x80\\x42\\xaa\\x28\\x1a\\x73\\xdd\\x54\\x40\\x68\\x7b\\x9c\\x01\\x83\\x04\\\n\\x04\\xad\\xd4\\x3a\\x05\\x68\\x26\\x30\\x6c\\xa0\\x02\\xc9\\x94\\xb4\\xb1\\x0e\\\n\\xbb\\xb3\\x80\\xbb\\x9e\\x5b\\x40\\x43\\xa8\\x3e\\xdc\\xf7\\x8d\\xb2\\x7c\\x9e\\\n\\x1c\\xcd\\x84\\x66\\xc7\\x59\\x9e\\xff\\x00\\x9f\\x36\\x3d\\x54\\x86\\xc8\\x0e\\\n\\x4d\\x2f\\xdf\\x7f\\x7c\\xae\\x88\\x91\\x96\\xea\\x16\\x9c\\x4f\\xdf\\x7e\\xb7\\\n\\xc5\\xc5\\x08\\xe5\\x06\\xad\\x3a\\xdd\\xf5\\x63\\xe1\\x85\\x00\\x55\\x8f\\x54\\\n\\x5b\\xfc\\x4b\\xb8\\xd3\\xc7\\x18\\x88\\x88\\xfa\\x7f\\x0f\\x2f\\xf7\\x0d\\xfe\\\n\\x3c\\xfa\\xfb\\x0e\\xb2\\xfb\\xbf\\xc9\\xf3\\x4d\\x73\\x91\\xf0\\x03\\x84\\xfc\\\n\\xe3\\x4f\\x4d\\x73\\xff\\x00\\x7c\\xc3\\x21\\xc8\\xb0\\x22\\x40\\xf3\\x24\\x4b\\\n\\x8f\\xab\\xe2\\xa0\\x9a\\xc7\\x49\\x35\\x87\\xad\\x3f\\xad\\xe7\\x93\\xc2\\x5a\\\n\\x20\\x4a\\x37\\xa8\\x13\\x1f\\xf7\\xbb\\xe3\\xe7\\x31\\x0a\\x3e\\x31\\xa3\\x6e\\\n\\xb1\\x9e\\xaa\\x47\\xe6\\xb9\\x10\\x0c\\x50\\x70\\x94\\x52\\xde\\x67\\x93\\xc4\\\n\\x83\\x26\\x8e\\x52\\x0a\\x82\\xe4\\x40\\x29\\xe3\\xbe\\xa0\\xa1\\x4a\\x94\\x19\\\n\\x19\\xb8\\xb5\\x85\\xf1\\xa3\\xba\\x71\\x80\\xa6\\x08\\x42\\x19\\x52\\xc0\\x99\\\n\\x39\\x05\\x92\\x8f\\xd1\\xb4\\x22\\x3d\\xf2\\x8f\\x31\\x56\\xec\\x2d\\x51\\x88\\\n\\x71\\x18\\x1d\\x06\\xcc\\xc8\\x0b\\x0f\\x21\\x51\\x0b\\x17\\x17\\xda\\xf9\\x0c\\\n\\xd2\\xa5\\x4a\\x5a\\x9f\\xed\\xdf\\xf3\\x18\\x21\\x1e\\x19\\xa5\\x9b\\x52\\xee\\\n\\x2d\\xa7\\xa0\\xf1\\x7d\\x9a\\x11\\x00\\x81\\x6d\\xad\\x4b\\xd0\\x4b\\xc6\\x55\\\n\\x09\\xf4\\x6b\\xa2\\xa6\\xfb\\xae\\x03\\xa6\\x1f\\x04\\x81\\x84\\xeb\\x78\\x2a\\\n\\xd7\\x1b\\xbe\\xf4\\x64\\xa0\\x75\\x00\\x1b\\xf1\\x17\\xfe\\x18\\xf8\\x28\\x2c\\\n\\xa0\\xa0\\xb1\\xf6\\xf5\\x27\\xba\\x10\\xfe\\x1f\\x03\\x05\\x88\\x72\\x14\\xf6\\\n\\x52\\xfc\\x46\\x3a\\x9f\\x4e\\xd7\\x20\\x49\\x25\\xbd\\x87\\xaf\\xeb\\x7e\\x78\\\n\\x6c\\xea\\xd0\\xa8\\x0e\\xb7\\x45\\x65\\xb6\\x21\\xf3\\xc8\\xd9\\x71\\xfc\\x82\\\n\\xc1\\x44\\x85\\xa5\\x7c\\x22\\x5d\\xb6\\x10\\x8b\\x45\\x1e\\x98\\xff\\x00\\xbc\\\n\\x9e\\x40\\x25\\x24\\x94\\xac\\xad\\xc9\\x17\\xec\\xfb\\xb1\\xec\\xa8\\xb0\\x44\\\n\\x71\\xc2\\xe1\\x9f\\x1f\\xe7\\xd2\\x85\\xa4\\x83\\x83\\xef\\x9f\\xdf\\xcf\\xde\\\n\\x79\\x34\\x36\\x38\\x0a\\x89\\x30\\x6f\\x2a\\x58\\x87\\x27\\x0f\\x12\\xb7\\x32\\\n\\x6b\\x90\\xf9\\x0f\\xe7\\xf6\\xf9\\x44\\x7f\\xa2\\x4c\\x16\\xdc\\x59\\xcd\\x30\\\n\\xfa\\x2e\\x1c\\xd0\\x83\\x54\\xee\\xe5\\xa4\\x81\\x9e\\x16\\xe7\\x42\\x1e\\xc6\\\n\\xf0\\xde\\xa7\\xf1\\x35\\x3c\\x12\\xcb\\x90\\x4a\\xa4\\x2a\\xaa\\xd3\\x00\\xb1\\\n\\x11\\xef\\x8c\\x4f\\xd0\\xba\\x25\\x1a\\xd1\\x03\\x0b\\x77\\x3a\\x87\\xb4\\x11\\\n\\x90\\x45\\x43\\xdf\\xed\\xfd\\x2c\\x1f\\x00\\x96\\xa2\\x8b\\x40\\x39\\x00\\x3a\\\n\\x6b\\x08\\x83\\xc5\\x1a\\x29\\x18\\x9e\\x89\\x00\\x77\\x10\\x45\\xd1\\x3f\\x7c\\\n\\x85\\x50\\x83\\x18\\x06\\x04\\x5c\\x10\\xa9\\x96\\xf9\\x21\\x4e\\x4d\\xd0\\x02\\\n\\x22\\x60\\x29\\xc3\\xb4\\x5e\\x86\\xc8\\x74\\x2f\\x08\\x96\\x31\\x3d\\xab\\x36\\\n\\x1c\\x7c\\x0e\\xd9\\xec\\x37\\x77\\xbf\\x2e\\x7d\\x73\\x83\\x0a\\x41\\xd1\\x6b\\\n\\xaf\\x4f\\xbc\\xf9\\x6b\\xf8\\x1f\\x97\\xde\\xb6\\x2c\\xd0\\x8b\\xec\\xd9\\x39\\\n\\x69\\xfc\\xf8\\x3a\\x83\\x27\\x44\\x0a\\x78\\xd0\\x21\\x2f\\x4f\\xd1\\x9d\\x01\\\n\\x63\\x45\\x35\\x86\\x86\\x70\\xbf\\xb4\\xf6\\x78\\x21\\x03\\x9b\\x09\\x32\\x55\\\n\\x97\\xe6\\xfb\\xcb\\x64\\x09\\x6c\\x88\\x60\\xcf\\x74\\xe8\\x7b\\x62\\x2e\\xe2\\\n\\x81\\xc8\\x64\\x3f\\x9a\\x77\\xd1\\x43\\xbf\\x9e\\x4d\\x00\\xc1\\xe6\\x08\\xaf\\\n\\xa7\\xd2\\xaf\\x25\\x92\\xf8\\x94\\x02\\x4d\\x2c\\x0a\\xbb\\x36\\x88\\x03\\x76\\\n\\xdf\\x4f\\x81\\x14\\x97\\x42\\x57\\x48\\x48\\x2a\\x69\\xf1\\xf2\\x8b\\xf9\\x2d\\\n\\x84\\xf6\\x19\\x04\\x04\\x24\\xa0\\x50\\xbd\\x2e\\xba\\xd6\\x78\\x36\\xc4\\xc5\\\n\\x45\\x14\\xa1\\x05\\x42\\x60\\x4a\\xce\\x0a\\x7b\\xd1\\x07\\x8e\\xb9\\x84\\x24\\\n\\x00\\xce\\xcb\\xca\\xb7\\x95\\xa0\\xf8\\xef\\x3b\\x52\\x7e\\x2e\\xc3\\xbf\\xc7\\\n\\xe5\\xbb\\x7c\\x21\\x00\\xfa\\x9a\\xf4\\xf7\\x6e\\x13\\x3f\\xe3\\x7c\\x52\\x25\\\n\\x15\\xc3\\x17\\x0f\\xbf\\xdc\\x1c\\xb4\\xfe\\x51\\x2f\\x05\\x4e\\xfa\\x3f\\x29\\\n\\xfa\\x09\\x7f\\xa8\\xf8\\xbe\\xa0\\xdd\\xe2\\xe1\\xbd\\xcf\\xdf\\xc6\\x96\\x3e\\\n\\x18\\x07\\x64\\x0c\\xfa\\x53\\x3d\\x33\\xba\\xdf\\x5d\\xf1\\x26\\xc8\\x39\\xf4\\\n\\x19\\x99\\xfc\\x0e\\xff\\x00\\x7e\\xc5\\x4b\\xcb\\x7f\\x27\\xa3\\x0f\\xfb\\xf3\\\n\\x31\\xfd\\x79\\xee\\xcd\\xff\\x00\\x17\\xfa\\x4c\\xf1\\x3b\\x8b\\x4a\\xcc\\x3b\\\n\\x43\\xfc\\x37\\xe7\\xf5\\x3c\\xb1\\x14\\x23\\x50\\x5f\\xec\\x48\\x4a\\x3f\\xdf\\\n\\x01\\x87\\x2b\\x8c\\xf5\\xbe\\xb2\\x2c\\x5d\\x39\\xef\\xca\\xdd\\xa5\\x1b\\x68\\\n\\xae\\x03\\x51\\xd1\\x8d\\xf6\\x86\\x4d\\x92\\x2a\\xee\\x18\\x0a\\x2b\\xf0\\x81\\\n\\xbc\\x7c\\x7b\\x42\\x31\\xbe\\x99\\x3d\\x0e\\xa8\\xb2\\x76\\xf7\\xc8\\x1e\\x24\\\n\\xa8\\x29\\x03\\x80\\x96\\x92\\xab\\x47\\x03\\x8b\\x00\\xfe\\x2b\\x89\\x01\\x50\\\n\\xc5\\x29\\xe0\\x10\\x9a\\xa0\\x00\\x15\\xfc\\x09\\x57\\x49\\x39\\x9e\\x30\\xeb\\\n\\x10\\x18\\xa0\\xad\\x83\\x79\\x0e\\x16\\xc1\\x7a\\xf4\\x98\\x8d\\xa8\\xe9\\xaa\\\n\\x09\\xad\\x56\\x06\\xf8\\x15\\x68\\x0e\\x61\\x41\\x23\\xe4\\x4a\\xd0\\xf5\\x47\\\n\\x7c\\x70\\x1b\\x35\\x13\\x0f\\x50\\xfa\\xeb\\x9a\\x35\\x6d\\x31\\x6c\\x8a\\xb2\\\n\\x22\\x25\\x74\\xd6\\x1e\\x5f\\x7b\\xe0\\x84\\x11\\xb7\\x8f\\x1c\\xde\\x2e\\x06\\\n\\x5f\\xe7\\x3c\\xb0\\xf0\\x99\\xac\\xa4\\x89\\xf6\\xbc\\x72\\x67\\xcf\\x10\\x36\\\n\\x9e\\x67\\xd0\\xe6\\xc0\\xfb\\xc1\\x7d\\x5f\\x29\\x7e\\xf2\\xab\\x53\\x99\\xce\\\n\\xe6\\x36\\xca\\x79\\x3c\\x14\\x2e\\xba\\xe7\\x5b\\xf2\\x75\\xf1\\x47\\xc2\\xe4\\\n\\x28\\x0b\\x1d\\x91\\xca\\x7b\\x46\\x67\\x80\\x93\\x4e\\x16\\xf1\\x40\\x5b\\xef\\\n\\xd9\\x9b\\xf3\\xc7\\x90\\xca\\x51\\xe0\\x3d\\x02\\xa3\\xcd\\x61\\x64\\x9e\\x5b\\\n\\xf9\\xcc\\x7f\\x4f\\x4f\\xbc\\x85\\x77\\x24\\x99\\xc6\\x72\\x00\\xb5\\x9f\\x0e\\\n\\x67\\x7f\\x56\\x3e\\x75\\xb1\\xd7\\xa4\\xd4\\xe4\\xe5\\xfc\\x9b\\xc2\\x3e\\x13\\\n\\x48\\x23\\xb0\\x9b\\x5e\\xdb\\x7b\\xc7\\xe9\\xee\\xab\\x2b\\x4d\\x8e\\xea\\x64\\\n\\x70\\x9e\\xf9\\xd3\\x00\\x7c\\x73\\x75\\x18\\xc6\\x67\\x34\\xf5\\xff\\x00\\x3f\\\n\\xe7\\xc6\\x82\\x3d\\xa7\\xf1\\x5b\\xc8\\xb1\\x0e\\x71\\x6f\\x96\\xe1\\x00\\x98\\\n\\x32\\x38\\xcf\\x7c\\x06\\x30\\x57\\xc9\\xb9\\x75\\x08\\x97\\x56\\x2c\\x92\\xb3\\\n\\x71\\xaa\\xa5\\xd8\\xf0\\xdb\\x80\\x04\\x8b\\x21\\x0b\\xcc\\x41\\xf7\\xb0\\x4a\\\n\\x47\\x0d\\x20\\x02\\xaa\\xaf\\x80\\x91\\x20\\x51\\xb0\\x28\\xce\\xc2\\xa0\\xf0\\\n\\x7c\\x46\\xb2\\x46\\x10\\x94\\x8a\\x00\\x87\\x58\\x07\\x6a\\x79\\xd7\\x6d\\x35\\\n\\x14\\x11\\x18\\x8f\\xb0\\x84\\xd3\\x9e\\x06\\x38\\xf9\\xc5\\x21\\x01\\x01\\x80\\\n\\x5d\\x53\\xc2\\x8d\\x22\\x25\\x3a\\x77\\x4a\\x8a\\x70\\x9f\\x73\\x44\\xc5\\xb4\\\n\\x66\\x34\\xa2\\x2a\\xfa\\x67\\xe6\\x78\\xa2\\x15\\x74\\xcf\\x7a\\xe3\\xed\\x69\\\n\\x7e\\x3c\\xf3\\x02\\x8d\\x3d\\xf2\\xd3\\x7e\\xaf\\xee\\x66\\xbb\\xe1\\x1c\\x12\\\n\\x83\\xa5\\x2f\\xd1\\x52\\xe8\\x47\\x89\\xa9\\x10\\x4c\\xb6\\x25\\x0f\\xe2\\x91\\\n\\x21\\x11\\xdf\\x18\\x69\\xfc\\x0f\\xf5\\x3f\\xe6\\xdf\\x2c\\xf8\\x41\\x84\\xd3\\\n\\x04\\x8f\\x3a\\x58\\x66\\x6a\\xf8\\x6f\\x81\\x15\\x1f\\xa2\\xdb\\x93\\xaf\\xbc\\\n\\xec\\x7c\\xe4\\x11\\x20\\x8b\\x8f\\x54\\x4a\\xe6\\x36\\x6e\\xb7\\xc9\\x57\\x35\\\n\\xa5\\x15\\xad\\x4d\\x9d\\x6e\\xe7\\x81\\x48\\x68\\x52\\x20\\x93\\x8c\\xa0\\xb0\\\n\\x4b\\xe0\\x1a\\xe0\\x52\\x8b\\x20\\x8c\\x01\\x50\\x0f\\xc2\\x00\\xde\\x89\\x83\\\n\\x02\\x45\\x0c\\x17\\x41\\xf0\\xd6\\x38\\x68\\x48\\xac\\x82\\x85\\xf7\\x07\\xe1\\\n\\xe6\\x3a\\x32\\x2e\\x69\\xdd\\x20\\x97\\x34\\x93\\xd5\\xf0\\x46\\xf2\\x24\\x41\\\n\\x09\\xe8\\x2e\\x7f\\x86\\xe0\\xb1\\xdb\\xc7\\x4a\\x6e\\x45\\xdf\\xe0\\xfd\\x7f\\\n\\xad\\xf0\\x43\\xec\\xba\\x7d\\xd7\\xfa\\xbe\\xe7\\xfe\\xc0\\xaf\\xbf\\xf0\\xb9\\\n\\x5c\\x3b\\xc8\\x05\\x36\\x78\\xf0\\x49\\xe8\\x83\\x62\\x1e\\x89\\xe9\\xbf\\xe2\\\n\\xcf\\x1a\\xf1\\x41\\x5a\\x90\\xe0\\xef\\x71\\xc7\\x7f\\xe7\\x33\\x2a\\x20\\x1e\\\n\\xf0\\x53\\xdb\\x9a\\xee\\x5d\\xcd\\xf2\\xe8\\xc4\\x03\\xfe\\xdd\\xb8\\x68\\xd7\\\n\\x7e\\x7b\\xd9\\x6d\\x03\\xdf\\xf3\\xf7\\x3f\\xd6\\x61\\x3c\\x46\\x2d\\x01\\xb8\\\n\\xe9\\x81\\xfc\\x3d\\x49\\xc6\\xe7\\x8c\\xb6\\x0b\\xd0\\x0a\\x56\\x3a\\xfb\\x56\\\n\\x9d\\x8f\\x23\\x1f\\x93\\xaa\\x8a\\x5a\\x4d\\xa6\\xa2\\x7c\\xa7\\x8d\\x45\\x6a\\\n\\xc2\\x70\\x47\\x91\\x30\\x50\\xce\\xab\\xe3\\x2b\\x88\\xa1\\x29\\x07\\x42\\x9f\\\n\\x00\\x05\\x81\\x6d\\xc7\\x68\\xbd\\xa1\\xc0\\xd6\\xb1\\x03\\x0c\\xbf\\xd7\\x86\\\n\\x25\\x70\\x12\\x83\\xf2\\x36\\x0b\\x92\\xc8\\x11\\x47\\xc2\\x0b\\xfa\\xcb\\x51\\\n\\x69\\xc6\\x0a\\x7b\\xdc\\xfb\\x9e\\x0b\\x35\\xc1\\xc0\\x85\\xb8\\x48\\xcc\\x48\\\n\\xa0\\xb1\\xa3\\xe3\\x59\\x4a\\x83\\x50\\x5a\\xf0\\xb0\\xc2\\xef\\xf7\\x1f\\x04\\\n\\x4d\\x90\\x1b\\xa0\\x04\\x05\\x22\\xc8\\x55\\x70\\x42\\x46\\x5f\\x8c\\x81\\x22\\\n\\xa8\\xc5\\x95\\x10\\x1a\\x00\\xbe\\x3f\\x90\\x0c\\x41\\x80\\x08\\x49\\x02\\x4d\\\n\\xb1\\xbe\\x35\\xb0\\xb5\\x0d\\x04\\x59\\xe9\\x6c\\x53\\xe5\\xef\\x80\\x4a\\x80\\\n\\x95\\xaa\\xc6\\x09\\x88\\x9d\\xe7\\xc4\\xf3\\x3d\\x31\\x66\\xe5\\xff\\x00\\x2e\\\n\\xb7\\xde\\xbf\\x1b\\xe2\\xaf\\x41\\xbc\\x58\\x18\\x72\\x3b\\x5f\\xc3\\xaf\\x91\\\n\\x2b\\x6b\\x04\\x82\\x89\\x18\\xa2\\x93\\x3f\\x38\\x29\\x5a\\x00\\xca\\x70\\xfa\\\n\\x10\\xfc\\x64\\xdf\\xbe\\x3a\\x34\\x1c\\x33\\x8d\\x98\\xa5\\xc9\\xfc\\x6b\\x28\\\n\\x64\\x80\\x03\\x1b\\x9d\\xbb\\x99\\x9e\\xb4\\xd9\\x43\\x10\\x41\\x5a\\xe2\\x5a\\\n\\xea\\x31\\x7b\\xfa\\x19\\xcf\\x16\\x74\\xdc\\x04\\x38\\xc9\\x7e\\x1f\\x1b\\x61\\\n\\xef\\xc2\\xa2\\xcd\\x8b\\xec\\x8a\\xc7\\x0e\\xcc\\x3d\\x77\\xc0\\x52\\xc1\\x1c\\\n\\x15\\xac\\xc5\\xb5\\x52\\xd5\\x3b\\x51\\xa3\\xa8\\x70\\xf5\\x28\\x26\\x0d\\x6c\\\n\\x38\\xdf\\x9e\\x67\\x08\\x28\\x83\\x9e\\xc8\\xff\\x00\\x3d\\x19\\x56\\xae\\x3e\\\n\\x1e\\x7c\\x0e\\x85\\xc5\\x5d\\xff\\x00\\xae\\xce\\xf8\\x18\\x18\\xc2\\x68\\x9f\\\n\\xeb\\xfd\\xfb\\xf0\\x34\\x0a\\xcb\\x59\\x72\\x8d\\xb0\\x6a\\x0c\\xa4\\x39\\x12\\\n\\xc6\\x9b\\xd9\\x92\\x5f\\xe3\\x2b\\xdd\\x55\\xa7\\xe8\\x44\\xa2\\xb1\\x75\\xd5\\\n\\x18\\xa8\\xe1\\xbe\\x5a\\xd4\\x10\\xc4\\xa3\\x9d\\x0c\\x07\\x39\\x13\\x5f\\x0e\\\n\\xb6\\x2e\\x19\\x42\\x51\\xa1\\x28\\x51\\x4c\\xc0\\x4d\\x35\\xd3\\x87\\x5a\\x17\\\n\\xd8\\x58\\x2c\\x59\\xe5\\x5d\\x32\\x90\\xc8\\x56\\xa0\\x20\\x51\\x02\\x1e\\x63\\\n\\x68\\xb3\\x11\\x0c\\xc0\\xd3\\x5a\\x6b\\x27\\x2c\\xaa\\x31\\x52\\x29\\x11\\x0f\\\n\\xb8\\xfb\\x42\\x89\\x2b\\x22\\x76\\x1d\\x90\\xd1\\x42\\x88\\x82\\x57\\x60\\x01\\\n\\xa1\\x71\\x1a\\x64\\x76\\x92\\x7f\\x8d\\xf1\\xc9\\xa2\\x2a\\x11\\xa1\\x72\\xe6\\\n\\xf0\\x3f\\x4b\\xe9\\x7c\\x8f\\xe3\\x1c\\x86\\x8c\\x0a\\xd0\\x77\\xdd\\xc7\\x38\\\n\\x33\\xd2\\xbf\\x16\\xa7\\xa4\\x11\\x9d\\x0b\\x38\\x40\\x5a\\x24\\x4e\\x52\\xae\\\n\\xa0\\xd2\\x89\\xa9\\x2c\\x3c\\x82\\xe1\\x99\\xd3\\x6f\\xa8\\xfb\\xf5\\xfb\\x3d\\\n\\x73\\xcb\\xbc\\x40\\x28\\x41\\xa3\\xbb\\xb1\\x86\\x45\\x7d\\x87\\x8a\\x67\\xc1\\\n\\xa3\\x13\\x4b\\x18\\x40\\x40\\xaf\\x4f\\x67\\x44\\xa5\\x07\\x2b\\x43\\x84\\x56\\\n\\x31\\x64\\xfe\\x51\\x9c\\x61\\x2e\\x82\\x32\\x1c\\xa7\\x51\\xbb\\xc6\\x27\\xca\\\n\\x1f\\x48\\x69\\xaa\\xaa\\x01\\x65\\x40\\x66\\x59\\x01\\x09\\x29\\x2c\\x57\\xea\\\n\\x14\\xf9\\x30\\xc1\\x6c\\x30\\x00\\x4a\\xc1\\x48\\x2b\\x4d\\x55\\x55\\x2e\\x4b\\\n\\xd3\\x15\\x35\\x81\\xc5\\x2e\\xcc\\x27\\x14\\xf2\\x6b\\xc1\\x18\\x69\\x76\\xd1\\\n\\x96\\x99\\x9f\\xcf\\xb4\\x81\\x58\\x14\\x11\\x42\\x99\\x0f\\xa0\\x7a\\x30\\x74\\\n\\xf1\\x22\\x51\\x49\\xfe\\xe7\\x7f\\x1d\\xbf\\xdb\\x7c\\x43\\x88\\xb4\\x1e\\xc4\\\n\\x0d\\x93\\xde\\xd1\\xaf\\xaf\\x02\\xc4\\x61\\x89\\x47\\x83\\xbf\\x90\\x8e\\xdc\\\n\\xf8\\xf8\\xc2\\xa7\\xa1\\x64\\x4a\\x3b\\x34\\x20\\xc5\\x3d\\xf8\\x58\\xc1\\xbe\\\n\\x93\\x28\\x7d\\x89\\x97\\x97\\xf7\\xd7\\x84\\xd1\\xb1\\x5a\\x36\\xb2\\x9b\\xbb\\\n\\x83\\x3f\\xa7\\x8d\\x5f\\x80\\xd4\\x6a\\x8a\\x66\\x34\\xb7\\x9e\\x97\\xbe\\x57\\\n\\x46\\x08\\xc5\\x67\\xe5\\x2f\\xf7\\xfd\\x19\\xe3\\xc8\\x00\\xc2\\x96\\x87\\xba\\\n\\xc3\\x4f\\x6f\\xf5\\x2f\\x87\\x23\\x00\\x58\\x2a\\x3d\\x37\\xb1\\xc6\\xd9\\xeb\\\n\\xc2\\xf2\\xb7\\x3d\\xa3\\x4a\\xb7\\x90\\x5e\\x46\\xa1\\x06\\x49\\x05\\xa0\\xf5\\\n\\x7a\\x19\\x85\\x18\\x38\\x87\\x7c\\x49\\x10\\x60\\x90\\x3e\\xac\\x4a\\xeb\\x3e\\\n\\x87\\xaf\\x1c\\x92\\x75\\xd3\\xed\\x92\\x27\\x51\\xf4\\x65\\xa6\\xbe\\x2e\\xa0\\\n\\x5c\\x95\\x0d\\xba\\x65\\x0a\\xb9\\xf8\\xfd\\x56\\x32\\x97\\x6f\\x43\\x4e\\x9e\\\n\\xd6\\xc8\\xdf\\x5e\\x3e\\xa9\\x19\\x68\\x14\\xb3\\x0e\\x99\\xcb\\x13\\x30\\xf3\\\n\\x39\\x08\\x18\\x7d\\x81\\xca\\x18\\xa0\\x62\\x00\\x29\\xe3\\xaa\\x44\\x20\\x23\\\n\\x1a\\x09\\x9b\\x59\\x90\\x3d\\x2f\\x82\\x48\\x14\\x45\\x09\\xb9\\x6e\\xc2\\x0d\\\n\\x14\\x9a\\x66\\x40\\x89\\xa2\\x56\\x03\\x27\\xf3\\x6c\\x75\\x8f\\x8c\\x1a\\xc2\\\n\\x05\\xaa\\xe4\\x16\\x13\\xd1\\xe8\\x47\\x23\\x02\\xd4\\x06\\x98\\x74\\xa3\\xd8\\\n\\x57\\x2c\\x8f\\x35\\x7c\\xfa\\x4e\\x4f\\xa6\\x2b\\xff\\x00\\x59\\x9c\\xd9\\x86\\\n\\x9d\\xf6\\xa8\\xaf\\x16\\x87\\xa5\\x63\\x01\\x16\\x60\\x15\\x60\\xc0\\x9c\\x2c\\\n\\x72\\x1d\\x63\\x1b\\x35\\x8e\\x81\\x50\\x0b\\x0a\\xfa\\xa1\\x2a\\x72\\x78\\x3a\\\n\\x32\\xe9\\x26\\xbd\\x6b\\xed\\xe8\\x5a\\xcf\\xbb\\xe5\\x1d\\x68\\xd2\\x81\\xb2\\\n\\x2e\\x3b\\x9c\\xa3\\xfd\\xae\\x99\\x48\\x74\\x54\\x65\\xb1\\xc9\\x7f\\x36\\x79\\\n\\x62\\x51\\x20\\x80\\xac\\x39\\xb3\\xb8\\x43\\x24\\xf1\\xc5\\xa2\\x6a\\x14\\x84\\\n\\x96\\x15\\x87\\xad\\xaa\\x2f\\x89\\x97\\xf5\\xa8\\x62\\x25\\x2b\\x82\\x73\\xaa\\\n\\xe7\\x82\\x50\\xd9\\xc0\\x64\\x7d\\x0c\\xa8\\x1e\\xfc\\x2b\\xcb\\x2b\\x12\\xa2\\\n\\x64\\x08\\x8f\\xbf\\x61\\xde\\x79\\x89\\x0a\\xab\\xdd\\x7b\\x14\\xe2\\x1e\\xe2\\\n\\x1e\\x20\\x7a\\xe1\\x55\\xfe\\x19\\x96\\xff\\x00\\x3d\\xfc\\xf1\\x8d\\x58\\xaf\\\n\\xa2\\x02\\xaa\\x60\\xc5\\x8c\\xcf\\x1c\\x02\\x57\\x45\\x08\\x07\\xa9\\xb4\\xb5\\\n\\xf5\\x5d\\x11\\x40\\xd7\\x80\\x15\\xd8\\x62\\xaa\\x88\\x7b\\x22\\xe7\\x8d\\x70\\\n\\x00\\x0b\\xf8\\x0d\\x41\\xf4\\x16\\xf8\\x70\\xb2\\xa2\\x28\\xb2\\x42\\x5b\\x64\\\n\\x88\\x03\\xc4\\xcd\\x2a\\xa9\\x6b\\x30\\xc9\\xc2\\x18\\x66\\xf4\\xc1\\x28\\xae\\\n\\xb4\\x04\\xf0\\x0e\\x23\\x28\\x33\\x2d\\x9e\\x27\\xc8\\x83\\xca\\x18\\x64\\xa2\\\n\\x75\\x20\\xe0\\xc0\\xd0\\xd3\\x1c\\xe9\\x6b\\xc3\\x14\\x40\\xed\\x89\\x85\\x30\\\n\\x86\\x1c\\x70\\x9e\\x64\\xb8\\xcc\\x9f\\x72\\x7b\\xe8\\x9c\\x98\\x8e\\xf8\\xed\\\n\\x56\\xd0\\x43\\x9e\\x74\\x4f\\x96\\xe6\\x13\\xbe\\x23\\x63\\xba\\x28\\x02\\xa9\\\n\\x6e\\x0a\\xce\\xdf\\x2c\\x41\\x1d\\x30\\x12\\xba\\x14\\xe0\\x37\\x34\\x1f\\x4f\\\n\\x92\\x70\\x57\\x01\\xe8\\x83\\x79\\x1d\\xf8\\xde\\xb9\\xb3\\x59\\x33\\xf0\\x07\\\n\\xbd\\x14\\xeb\\x89\\x1d\\x3c\\x08\\x03\\xb0\\xa4\\x7d\\xc6\\x99\\xc8\\x6f\\xbe\\\n\\x9a\\xf9\\x07\\x5b\\xd5\\x40\\x85\\x51\\x5f\\x77\\xdf\\x8e\\xac\\x4a\\x22\\xf6\\\n\\x8a\\xa4\\xa1\\xed\\x22\\x1e\\x09\\x81\\x21\\x30\\x02\\x8e\\x63\\x36\\x38\\x75\\\n\\xc1\\xdc\\x2e\\x14\\x44\\x48\\x68\\xe9\\x4b\\x32\\x19\\xc2\\xdd\\x58\\x10\\x58\\\n\\xa2\\xc7\\x03\\x8f\\x55\\xb5\\x55\\x08\\x17\\x60\\x53\\xe8\\x8e\\x26\\xad\\xc4\\\n\\x88\\x14\\x3c\\x75\\x12\\xc2\\x71\\xb8\\x1e\\x81\\xfe\\x18\\x0e\\x66\\x78\\x50\\\n\\x30\\xc6\\x30\\x04\\x0f\\x6a\\x77\\xa9\\x75\\xed\\x9e\\x21\\x71\\x51\\x94\\x40\\\n\\x6a\\x3a\\xfb\\x4b\\x97\\x27\\x61\\xe1\\xfa\\x9c\\x73\\xf3\\x19\\xfc\\x5f\\xca\\\n\\xff\\x00\\x54\\xc1\\xe6\\x33\\xbf\\x1f\\xf3\\xef\\xff\\x00\\xa7\\x86\\x10\\x65\\\n\\x94\\xca\\xf3\\xa6\\x9f\\xef\\x73\\xbe\\x2c\\xec\\xea\\xc0\\x0a\\xb5\\x99\\xff\\\n\\x00\\x52\\xdb\\x3c\\x02\\x6d\\xb2\\x22\\x83\\xd9\\xa2\\x7c\\xca\\xf2\\xa7\\x8c\\\n\\x74\\x64\\x16\\x15\\xfc\\x82\\x0f\\xf1\\x9a\\xe4\\x4b\\x15\\x57\\x05\\x5a\\x2b\\\n\\x4f\\x73\\xb4\\xf9\\xf3\\xc6\\x30\\x76\\xf5\\xec\\x33\\x36\\xe4\\xc7\\xe3\\xe1\\\n\\xf5\\x52\\x88\\xd6\\x5d\\x00\\x25\\x91\\xe2\\x40\\xf4\\x9e\\x76\\x71\\x46\\x0b\\\n\\x11\\xbf\\x9f\\x83\\x8f\\x7e\\x30\\x1b\\x84\\x8a\\x22\\xa0\\x7c\\x73\\x9c\\x26\\\n\\xcf\\x1f\\x09\\x46\\x01\\x28\\x00\\xa7\\xf0\\xfb\\xff\\x00\\x80\\xad\\x07\\x10\\\n\\x13\\xdb\\x4b\\x8e\\xc6\\xf7\\xe1\\x10\\xf1\\x46\\x26\\x58\\x39\\x1c\\xa4\\x47\\\n\\x35\\xbc\\x82\\xf9\\x53\\x5e\\xe6\\xf0\\x81\\xb1\\x3a\\x9f\\xb8\\x2d\\x45\\xf2\\\n\\xc1\\xa7\\xcc\\x35\\xe8\\x7c\\x3f\\x83\\x3e\\x4f\\x32\\x78\\x41\\x31\\x00\\x73\\\n\\xa9\\x1f\\xbc\\xcc\\x7a\\xe8\\xe9\\x6b\\x28\\xa1\\x25\\xf4\\xfa\\x3d\\xce\\xcf\\\n\\x00\\xa0\\x28\\x22\\x0c\\xc0\\x9f\\x53\\x94\\xd6\\xdc\\xf1\\xb8\\xb2\\xec\\x80\\\n\\xa3\\x6a\\x4a\\x3b\\x47\\x4d\\x12\\x1e\\x1b\\x08\\x21\\x54\\x5f\\x90\\xb4\\x38\\\n\\x06\\xb6\\xe4\\x3c\\x50\\xc7\\x00\\xec\\x18\\x83\\x03\\xa9\\x1d\\x79\\x95\\x9b\\\n\\x96\\x08\\x06\\x28\\xd1\\x47\\x14\\x00\\x18\\x50\\x5a\\x30\\x9c\\x43\\xa4\\x21\\\n\\xc3\\x83\\x2c\\xed\\x57\\xc4\\x50\\xa5\\x2d\\x48\\xa9\\xc0\\x7d\\x27\\xbd\\xe9\\\n\\xe2\\x4d\\x46\\x9e\\xe7\\x8a\\x54\\x1a\\xde\\x15\\xaf\\x3c\\x0a\\xcf\\x6e\\xb3\\\n\\xaa\\x6a\\x02\\x99\\x48\\xc9\\x29\\x50\\x53\\xc0\\xe1\\xae\\x15\\x3f\\x0d\\x2e\\\n\\xce\\x25\\xf2\\xc7\\xa3\\x81\\x54\\x42\\xa6\\x50\\xa3\\xb1\\xa8\\x3c\\x40\\xa6\\\n\\x0a\\x02\\x18\\xd1\\x5e\\x96\\x15\\x74\\x01\\x3e\\x86\\x22\\xee\\xfb\\x9f\\xca\\\n\\x7b\\x94\\x9a\\x96\\x43\\x72\\xf8\\x72\\x20\\x61\\xea\\x21\\x1c\\x3b\\x7c\\x1e\\\n\\x76\\x26\\x93\\x48\\xee\\x97\\xf9\\x21\\xd7\\xc3\\x0a\\x00\\x92\\xa4\\x1e\\x24\\\n\\x30\\x52\\x5f\\x7d\\x31\\xf0\\x62\\x87\\x03\\xf4\\x4f\\xa7\\xb8\\x5e\\x68\\x87\\\n\\xe0\\x3b\\x51\\xd6\\x34\\x47\\x4e\\x4c\\x52\\x7b\\xf7\\xe4\\x6e\\xc7\\x38\\x3d\\\n\\x7b\\xb3\\x96\\x10\\xfc\\xf2\\x40\\x8b\\xa4\\x34\\x17\\xd7\\x4f\\xfd\\xea\\x6f\\\n\\x8f\\x99\\x50\\x1f\\x5d\\x44\\x82\\x71\\x7d\\x17\\xab\\xe4\\xf3\\x01\\x56\\x25\\\n\\xdf\\xae\\x6a\\x1f\\xda\\x1e\\x02\\x68\\xd0\\xfe\\x36\\xce\\xf5\\xdf\\x5d\\x84\\\n\\xcd\\xf0\\xbd\\x76\\x0b\\xee\\x42\\x13\\xa3\\x50\\x15\\x0f\\x1d\\x71\\x39\\xcd\\\n\\xc0\\x7a\\xa8\\xb9\\xd3\\xc3\\x07\\xe2\\x28\\x43\\x53\\x16\\x18\\x18\\x5f\\x93\\\n\\x14\\xa1\\x36\\xcb\\x99\\xe9\\x27\\x3f\\xf6\\x9e\\x14\\x12\\x29\\x86\\x88\\xc2\\\n\\x1d\\x0a\\x59\\xee\\x5f\\x7e\\x2f\\x00\\xa8\\x7a\\xd5\\xae\\xbe\\xa4\\x21\\xf3\\\n\\x90\\x4e\\x71\\xf4\\x05\\x44\\x00\\xbf\\xb5\\xf7\\xf0\\xf3\\x24\\x7a\\x00\\xa6\\\n\\x94\\xdb\\x3a\\x75\\x3a\\x88\\xe9\\xe2\\x20\\x82\\xc3\\xe8\\x2d\\xe9\\x97\\x3a\\\n\\x39\\x17\\x2f\\x96\\x1c\\x08\\x92\\xd1\\x1b\\xc4\\xc1\\x2a\\xbe\\x9b\\xd2\\xea\\\n\\x36\\x40\\x64\\x0e\\x05\\x0f\\xef\\xfb\\x9e\\x34\\xd0\\x87\\xe8\\xd1\\x49\\x5a\\\n\\x6b\\x30\\xfa\\xbe\\x47\\x86\\x88\\xfe\\x47\\x65\\xde\\x4e\\x6b\\x7d\\x92\\xd4\\\n\\x26\\xa5\\x97\\xf9\\x76\\x30\\xd3\\xfc\\xbb\\x3c\\x42\\x46\\xfa\\x41\\x51\\x30\\\n\\xc1\\x86\\x99\\x17\\xd0\\x82\\x27\\x48\\x52\\xb5\\x52\\xf4\\xb4\\xf6\\xd7\\xf7\\\n\\xc2\\x99\\x59\\x3d\\x8e\\x91\\x3f\\x80\\xcb\\x3b\\x03\\xc2\\x2d\\xab\\x9b\\x5d\\\n\\xaa\\x3c\\xfe\\xf9\\x98\\xde\\x1a\\x63\\x0b\\x72\\xc7\\x2f\\x0e\\xad\\x85\\x38\\\n\\x07\\x7c\\x4c\\x03\\x41\\x9f\\x6c\\x4e\\x17\\xf2\\xbf\\x7f\\x1f\\x37\\xa1\\x44\\\n\\xa7\\xe5\\xca\\xdb\\x87\\xf0\\x1c\\x6a\\x98\\x26\\xc4\\x17\\xd9\\x3d\\x73\\x2b\\\n\\xbe\\xd8\\x7a\\x9e\\x6f\\xad\\x08\\xad\\xe7\\xf4\\xfd\\x71\\xbe\\xbe\\xdf\\x20\\\n\\x7a\\x3f\\x87\\x72\\x7d\\x91\\x2f\\xf1\\xbe\\x8f\\x24\\x00\\x65\\x7c\\x08\\x3e\\\n\\x1c\\xac\\x7b\\x38\\x61\\xe0\\x2f\\x5b\\x88\\x37\\xfa\\xf5\\x6a\\xdd\\x77\\xf5\\\n\\xf0\\xa8\\x43\\x45\\x43\\x47\\x03\\x8b\\x53\\xf3\\x87\\x1f\\x30\\x58\\x79\\x14\\\n\\x0a\\x86\\xf0\\x44\\x06\\xff\\x00\\x2f\\x89\\x33\\x04\\xc6\\xda\\x09\\x8c\\x9f\\\n\\xaa\\x7f\\x9c\\xd2\\x08\\x15\\xda\\x1c\\xb1\\x66\\xce\\xb9\\xd9\\xeb\\xd7\\x82\\\n\\xa8\\x69\\x7d\\xfa\\x44\\xf5\\x54\\x8d\\xc3\\x80\\xbb\\xe0\\x00\\x11\\x86\\x75\\\n\\x46\\x6f\\x4e\\x19\\xdc\\xb4\\x7c\\xcd\\x07\\x20\\x64\\x5c\\x0d\\x4a\\x17\\x93\\\n\\x8c\\xec\\xf1\\x0a\\x14\\x40\\x87\\xaa\\x7f\\xfd\\x7d\\x6c\\x45\\x05\\x09\\x74\\\n\\x89\\xfc\\xe1\\x6b\\xf8\\xdc\\xfe\\x8b\\xe1\\xac\\x19\\x5d\\x5a\\x7c\\xf6\\x38\\\n\\x9f\\x14\\x66\\x3e\\x1b\\xe0\\x5a\\x2d\\x9c\\x2a\\x93\\xf7\\x3f\\x9f\\xcf\\x0a\\\n\\x54\\xe3\\x2d\\x54\\xe7\\x77\\x49\\x8f\\xf3\\xa2\\x2d\\xba\\xc5\\x0d\\x12\\x51\\\n\\x2e\\x4e\\x22\\x2a\\x3e\\xef\\x8c\\x36\\xc8\\xf5\\x2c\\xa2\\xf6\\xfd\\xa7\\x7f\\\n\\x6f\\x89\\x9a\\xba\\x5a\\x07\\x8e\\x90\\x80\\x09\\x6b\\xb7\\x78\\x89\\xb7\\x61\\\n\\xab\\xea\\x9e\\xbe\\xdc\\xf4\\x40\\x33\\xca\\x72\\x91\\x0c\\xa0\\x06\\x41\\x79\\\n\\x00\\x02\\x6a\\xab\\x09\\x29\\x90\\xb4\\xa3\\xd0\\x59\\x23\\x8d\\xf5\\xe3\\x25\\\n\\x0b\\x08\\x2a\\x21\\x19\\xab\\x0a\\x04\\x09\\xa1\\x3d\\xcc\\x9a\\x2d\\x4a\\x6a\\\n\\x8b\\xaa\\xb7\\x89\\x80\\x33\\xce\\x18\\x95\\x32\\x2d\\xa1\\x44\\x82\\x80\\xd8\\\n\\x78\\x95\\x4b\\x22\\x07\\xb0\\x01\\x0a\\x6b\\xf9\\xc1\\x7c\\xbc\\x95\\x85\\x27\\\n\\xad\\x15\\x20\\x4d\\xd0\\x84\\xf0\\xca\\xe9\\x99\\x4e\\xb0\\xd9\\x57\\x96\\xa4\\\n\\x92\\xc5\\x66\\x81\\x29\\x70\\x13\\x62\\x11\\xf6\\xdc\\x71\\x0b\\x12\\x04\\xb5\\\n\\xa7\\xe0\\x2d\\x13\\xaa\\x0d\\x34\\xf8\\xfc\\x7c\\x51\\x44\\x93\\xbd\\xfe\\x41\\\n\\xa1\\x37\\xca\\x81\\x7f\\xba\\xd5\\x4a\\x6a\\x4a\\x82\\x97\\xa4\\x2b\\x8c\\x88\\\n\\x82\\x25\\x84\\x86\\x21\\x4f\\xb7\\x5f\\x47\\x8b\\x53\\xa2\\x1b\\xc5\\xb2\\x6e\\\n\\xc2\\x7f\\xc6\\x4a\\xde\\x22\\xc1\\x95\\x06\\xb9\\x5f\\x43\\x76\\x70\\xf2\\x70\\\n\\xf2\\xd4\\x2b\\xed\\x73\\xea\\xb9\\x89\\xf3\\xca\\xdb\\x5f\\x40\\x0d\\xb4\\x55\\\n\\x9d\\x7a\\x5c\\xc4\\x37\\x20\\xc8\\x12\\x36\\x00\\x41\\xd5\\x41\\x30\\xda\\x78\\\n\\x57\\xe5\\x40\\x45\\x2b\\x1d\\x23\\x16\\x75\\xe1\\x54\\x43\\xa3\\xb5\\xb5\\x92\\\n\\xff\\x00\\x13\\x34\\x90\\x3c\\x24\\x9f\\x54\\x53\\x1d\\x86\\x84\\x0b\\xc0\\x5b\\\n\\x38\\xaa\\x75\\x2c\\xc2\\x0a\\xd6\\xa0\\x77\\xcb\\xec\\x07\\x49\\x53\\x65\\x0a\\\n\\x06\\x86\\x15\\x3c\\x71\\xf6\\x13\\x96\\x12\\x4b\\x44\\x80\\x4c\\x45\\x06\\x83\\\n\\xb5\\xe8\\xa0\\x6d\\x18\\x0b\\x2e\\x80\\xfa\\xec\\xf1\\x28\\xca\\x22\\x62\\x20\\\n\\x7a\\xbb\\x7b\\xa0\\xb1\\x18\\x46\\xd3\\x58\\x80\\xc2\\x56\\x98\\xe3\\x46\\xc5\\\n\\x3a\\xf0\\x12\\x50\\x4d\\x06\\x59\\x84\\x88\\x25\\xb4\\x77\\xa2\\xe1\\x11\\xb0\\\n\\x8c\\x9e\\xe2\\x19\\x4e\\x82\\x56\\x52\\x00\\x53\\x10\\xab\\x2a\\x9e\\xdd\\xe8\\\n\\xc6\\xac\\xc0\\x77\\x97\\xc4\\x8d\\x40\\xe7\\x09\\xe2\\xac\\x0f\\x01\\xa9\\x8d\\\n\\x12\\xc1\\x13\\xf2\\x9f\\x5e\\x10\\xb0\\xf0\\xe3\\x45\\x28\\x2c\\xff\\x00\\x2f\\\n\\x5e\\x55\\x1b\\xd6\\x48\\xbc\\x0f\\x5b\\xfe\\xbe\\x3a\\x67\\x92\\x20\\x34\\x2b\\\n\\xf4\\x35\\x90\\x3d\\x13\\x92\\xce\\xad\\xcb\\x62\\x98\\x2e\\x4b\\x0b\\xfc\\x1c\\\n\\xc3\\x8f\\x39\\x5c\\xe2\\x51\\x58\\xd2\\xd4\\x85\\xc7\\xc3\\x6d\\x22\\x4c\\x14\\\n\\xa4\\x8e\\xa3\\xde\\xe0\\x26\\xe1\\xe1\\xfe\\x20\\x8d\\xb8\\x43\\xe9\\xee\\x67\\\n\\xf3\\xe3\\x65\\xa2\\x10\\x26\\x07\\x72\\xff\\x00\\x2f\\x9f\\xdd\\x5b\\x06\\x86\\\n\\x16\\x9b\\xec\\xa9\\x9b\\xcd\\x48\\x45\\x28\\xd4\\x54\\x83\\x27\\x0e\\xb7\\xd5\\\n\\xf7\\xf9\\x2d\\x74\\x51\\xc9\\x62\\x3f\\x16\\x8f\\xc0\\x43\\xfa\\x96\\xe8\\xc8\\\n\\x1e\\x98\\xff\\x00\\xac\\xf9\\x9f\\x1f\\x1d\\x25\\x0d\\x26\\x4f\\xd5\\x7a\\x27\\\n\\xfd\\xcb\\x2f\\x8f\\x55\\xc8\\x9d\\x2d\\x3e\\x5f\\xf0\\x60\\xe5\\x8f\\x91\\x99\\\n\\x28\\x6d\\x09\\x65\\x57\\xbb\\xb0\\xa1\\xdd\\xf1\\xd4\\xc0\\x39\\x5e\\x7e\\x02\\\n\\x1a\\xff\\x00\\x35\\x17\\x08\\xda\\xce\\xa8\\xf6\\x1e\\xf5\\xfb\\xcd\\xce\\x78\\\n\\x92\\x25\\xab\\xa7\\x73\\x09\\x07\\x98\\xf4\\xc7\\x3b\\x1e\\x61\\x12\\x1d\\x7f\\\n\\x65\\x02\\x9c\\xfc\\x7a\\x96\\x44\\xc9\\x40\\x40\\x22\\x67\\xbb\\xcd\\x27\\xbf\\\n\\x0d\\xa1\\x60\\x46\\x6c\\x6e\\xa8\\x80\\xc6\\x89\\x7c\\x1e\\xc1\\x9c\\x0c\\x82\\\n\\xc0\\x9b\\xef\\x25\\xdd\\xbe\\x04\\x93\\x2b\\x37\\xbb\\x25\\xfd\\x29\\xea\\x67\\\n\\xef\\x80\\xba\\x36\\x85\\x6c\\x53\\x8d\\xbb\\x5d\\xe3\\x7c\\x79\\xc0\\x29\\x15\\\n\\x0b\\x44\\x12\\xed\\x19\\xd5\\xf5\\x2d\\x41\\xc7\\xa2\\xf4\\x59\\x69\\x7f\\x64\\\n\\x44\\x27\\x85\\x08\\x31\\x71\\x3a\\x0a\\x29\\xc7\\x3b\\x27\\xe3\\x37\\x70\\x68\\\n\\x51\\xd6\\xae\\xb7\\x01\\x9c\\x9c\\x0e\\x28\\xb0\\xc4\\x6a\\xa4\\x8b\\x7e\\x20\\\n\\xe8\\x7d\\xad\\x4c\\x06\\x5b\\xa8\\x88\\x0a\\xac\\xde\\x16\\x95\\x1a\\xf8\\x60\\\n\\x26\\x30\\xe2\\x71\\x30\\x9a\\x9f\\x81\\xc8\\x9e\\x6b\\x23\\x60\\x56\\x5f\\xc4\\\n\\x73\\x29\\x86\\x01\\x6c\\x22\\x58\\x2d\\x08\\x72\\x04\\x46\\x03\\x42\\x57\\xd7\\\n\\xa1\\x10\\x32\\xd5\\x84\\x56\\x00\\x11\\xf7\\xbb\\x7c\\x99\\x5f\\x39\\x8d\\x66\\\n\\xb1\\xb3\\x0a\\x67\\xb8\\xf8\\x19\\xcb\\x91\\xc3\\x12\\x0d\\x48\\xeb\\xe1\\x7b\\\n\\xe0\\x2a\\x90\\x09\\x28\\x0c\\x61\\x2a\\x31\\x5e\\xd2\\xf2\\xf8\\xa1\\x60\\x1d\\\n\\xda\\xb4\\xd8\\xf6\\xab\\x2f\\xaa\\xa0\\xf9\\x71\\xcd\\xb2\\x15\\x9d\\x50\\x04\\\n\\x3a\\xb3\\x4c\\xb0\\x2e\\x22\\x61\\xc8\\xa5\\x00\\x51\\x45\\x9d\\xa5\\xaa\\x1a\\\n\\x91\\xd4\\x45\\x0b\\x4f\\x51\\x4d\\xa3\\x7a\\xbd\\x51\\x94\\x82\\x18\\xd0\\xb4\\\n\\x69\\xeb\\x22\\xd7\\x38\\x5a\\x8f\\x41\\x23\\x0c\\x43\\x59\\x65\\xcd\\x4e\\xe4\\\n\\xf0\\x01\\x94\\x04\\xcd\\x94\\x72\\x1b\\xfa\\x7c\\xe7\\x91\\x95\\xa0\\xc8\\x94\\\n\\x54\\x4b\\xef\\x03\\x17\\xd9\\xf4\\x26\\x21\\x84\\x50\\xa9\\xd6\\xc2\\xbf\\xaf\\\n\\xd4\\x04\\x11\\x70\\xa3\\x81\\xd8\\xcc\\xb2\\x11\\xbe\\x54\\x13\\x0e\\x42\\x50\\\n\\x80\\x3b\\x8e\\x8b\\x26\\x5f\\x00\\x9c\\x46\\xd2\\x08\\x54\\x5d\\x52\\x6d\\x57\\\n\\xdb\\xe5\\x1d\\xc7\\xd5\\xad\\x5a\\x74\\x08\\x01\\xa1\\x38\\x78\\x6a\\xd4\\x9b\\\n\\x63\\x8b\\x88\\x49\\x29\\x3f\\xe5\\x9e\\xc9\\x46\\x03\\x2e\\x0b\\x16\\xf4\\xaa\\\n\\x1e\\xfc\\x03\\x70\\x84\\xb5\\x04\\x39\\x01\\xa1\\x06\\x0a\\xba\\x2b\\xa3\\xa9\\\n\\x90\\xbf\\x22\\x40\\xcd\\x22\\x81\\x2a\\x3d\\x9d\\x97\\x47\\xa3\\x80\\x27\\xba\\\n\\x32\\xae\\xea\\xf6\\x51\\xcc\\xd0\\x42\\x48\\x2d\\x35\\x58\\xb2\\x2d\\x8d\\xe3\\\n\\xd8\\x37\\x15\\x60\\x1a\\x69\\x1f\\x89\\xe2\\xee\\x30\\x80\\x1a\\x47\\xe8\\x56\\\n\\x8f\\xef\\xe2\\x2e\\x02\\xbb\\x2d\\x52\\x67\\xa1\\x25\\xe3\\xd5\\x49\\x1b\\xc4\\\n\\x36\\x90\\x2c\\x59\\x82\\x25\\xc6\\xf3\\xc2\\xea\\x88\\xbd\\x38\\x68\\x28\\xca\\\n\\x34\\x33\\x8d\\x0d\\x92\\x5c\\x24\\x4b\\x68\\xb9\\x7a\\xfd\\xa1\\xa4\\x58\\xcc\\\n\\x27\\xf3\\x2b\\x4e\\x91\\x56\\x78\\xdd\\x6d\\x3a\\xa0\\x89\\x44\\x67\\xa4\\x6a\\\n\\x29\\xed\\x5f\\x52\\x12\\xe8\\x49\\x48\\x50\\x18\\xd9\\x8c\\x82\\xd0\\x17\\x8b\\\n\\x18\\xf6\\x3b\\x57\\x12\\x1f\\x27\\xcd\\x64\\x25\\x49\\x42\\xe8\\x1b\\xbd\\x9f\\\n\\x87\\xb3\\x51\\x5c\\x6a\\x60\\x0a\\xc1\\xa4\\x21\\x58\\x4a\\x65\\xa8\\x2c\\x60\\\n\\xfa\\x10\\x68\\x7d\\xab\\x97\\xc0\\x48\\x3f\\x40\\x3a\\x54\\xe6\\x35\\xce\\x6a\\\n\\x9d\\xf1\\x92\\x6f\\x29\\x96\\xec\\x3d\\xba\\xaf\\xd2\\x1e\\x1a\\xd2\\xea\\x29\\\n\\x60\\x60\\x12\\xb2\\xae\\xcb\\xa8\\xd0\\x94\\x88\\x95\\xce\\x58\\x41\\xd4\\x4c\\\n\\x99\\x9e\\x2a\\xe3\\x84\\xc4\\x00\\x49\\xfd\\x97\\xf2\\xfd\\x78\\x42\\x46\\x50\\\n\\x20\\x27\\xf8\\x7a\\xc6\\xe6\\xef\\xe5\\x83\\xa1\\xae\\x56\\x84\\xd9\\xea\\xfb\\\n\\x0c\\xe6\\x78\\x66\\x20\\x51\\x69\\x85\\x72\\x76\\x81\\xdc\\x8f\\xf6\\xe1\\x26\\\n\\xba\\x1b\\xa8\\xa7\\x3d\\xbf\\x4e\\x5d\\xf3\\xba\\x39\\xba\\xf4\\x2f\\x88\\x88\\\n\\x2d\\xfc\\x02\\x06\\xa9\\x7a\\x99\\x21\\x40\\x47\\x78\\xd3\\xbb\\x68\\xec\\x9a\\\n\\xc6\\x9f\\x48\\xa2\\xfb\\xc9\\x4b\\x8f\\x85\\x50\\x44\\xa5\\x0e\\x8b\\x49\\x0f\\\n\\x77\\xeb\\x1c\\x9e\\x08\\x4a\\x88\\x7d\\x0a\\xfd\\x7c\\xa7\\xeb\\xec\\xd9\\xe5\\\n\\x73\\x3f\\xc4\\x95\\x7b\\xec\\x33\\x8d\\x54\\xf0\\x0c\\x55\\x61\\x1e\\x15\\xca\\\n\\x0c\\xc0\\x72\\xd9\\x90\\xf1\\xba\\x94\\xe0\\x09\\xd5\\x27\\x67\\xf1\\x96\\x9c\\\n\\xf2\\xce\\x58\\xb4\\x44\\x98\\x0f\\x6a\\x58\\x24\\xe7\\xb7\\x63\\xa4\\x69\\x64\\\n\\xb5\\xd4\\xe2\\xbe\\xf7\\x3e\\x3e\\x95\\x64\\xb4\\xe9\\x40\\x6b\\x3a\\xa5\\x37\\\n\\xd5\\x84\\x8d\\x4c\\x0d\\x03\\xa8\\x8e\\x30\\xb0\\x87\\x0f\\x22\\xdb\\xe2\\x04\\\n\\x44\\x60\\x15\\x90\\x88\\xff\\x00\\x30\\x18\\x26\\x11\\x70\\x04\\x51\\xb3\\x0b\\\n\\xf7\\x63\\x25\\x34\\xdc\\x83\\x56\\x44\\x74\\x08\\x4f\\x60\\x5d\\xe6\\x70\\x3f\\\n\\xc6\\x0a\\xc4\\x7a\\x4f\\xdf\\x77\\xbd\\xdb\\xe0\\x3d\\x01\\x0d\\x50\\x24\\xc2\\\n\\xa8\\xdb\\x26\\x35\\xbe\\x44\\xea\\x60\\x02\\x97\\x47\\xad\\xad\\x07\\x66\\x9e\\\n\\x18\\x1c\\x30\\x0f\\xa1\\x90\\xb2\\x19\\x27\\xf1\\x47\\xcc\\xe3\\xd0\\x00\\x44\\\n\\xf5\\x79\\x10\\x94\\xec\\xe7\\xd0\\xa2\\x3a\\x05\\x9d\\x4c\\x2b\\x02\\xe6\\x51\\\n\\x63\\xf0\\x7c\\x40\\x01\\xac\\x77\\xd3\\xcf\\xd2\\x7f\\x90\\xf2\\x01\\x48\\x6f\\\n\\xb7\\xf1\\x79\\x9d\\xbe\\xdd\\xf6\\x28\\x2e\\x6e\\x03\\xec\\x87\\xcc\\x7d\\xa7\\\n\\xac\\xcf\\x32\\x7a\\x05\\x60\\x20\\x94\\xaf\\x0b\\xc9\\x04\\xb3\\xc0\\xd0\\x90\\\n\\x14\\xf4\\x22\\xa3\\xa0\\xe5\\x97\\x87\\x7c\\x06\\x0b\\x93\\x0e\\x87\\x51\\xfa\\\n\\x94\\x31\\xc3\\x7c\\x9f\\x31\\x84\\x8d\\x2b\\x47\\x85\\xd3\\xe5\\x27\\xaf\\x4f\\\n\\x89\\x8b\\x70\\x8c\\x23\\x97\\xd0\\xba\\xf5\\x5e\\x4f\\x1c\\x09\\x0c\\x2c\\x30\\\n\\xf8\\xd9\\xb5\\xf6\\x88\\x83\\x4c\\x45\\x04\\x23\\x1f\\xa1\\x7a\\x1c\\x21\\x38\\\n\\x7e\\x0e\\x44\\xc4\\x1d\\x65\\xf7\\x1e\\xfd\\xfd\\xa7\\xea\\x7a\\xc6\\x4b\\x0e\\\n\\x1a\\x41\\x8b\\xb0\\x61\\xcc\\xec\\x42\\x3b\\x88\\x08\\x15\\x7a\\x41\\x00\\x5e\\\n\\x06\\xdc\\x77\\x2a\\x09\\x80\\x1f\\x7b\\x48\\xb9\\x7d\\x35\\x83\\xa4\\x1b\\xad\\\n\\xab\\x1a\\x81\\x72\\xba\\x7d\\x0d\\xd2\\xf8\\x9c\\x47\\xb7\\x05\\x06\\xa9\\xea\\\n\\xb4\\xed\\xbf\\x4d\\x47\\x84\\xf0\\x7d\\x0c\\xc9\\x41\\xea\\xc0\\xbd\\x9e\\x32\\\n\\x30\\xd7\\xb2\\x80\\x42\\x02\\x25\\x21\\xd4\\x0c\\xe4\\x94\\x72\\x99\\xb0\\x86\\\n\\x5d\\x8d\\xa3\\xed\\x19\\xaf\\x96\\xc0\\x2f\\xac\\x02\\xa0\\xba\\xbc\\x57\\x95\\\n\\x80\\xe5\\xaa\\xd4\\x88\\xaf\\x60\\x23\\x07\\x11\\x57\\x07\\x0e\\x6c\\x65\\xd1\\\n\\x65\\xec\\x74\\xec\\x89\\x89\\xf0\\x9c\\xc1\\x62\\xc9\\xa2\\x09\\x9a\\x72\\x4f\\\n\\xc5\\xe9\\xce\\x5f\\x13\\xc5\\x12\\x05\\xaa\\x2e\\x84\\x1c\\xdf\\x5d\\x1f\\xaf\\\n\\x95\\x8b\\x04\\x14\\xc3\\x87\\x14\\x8a\\x35\\x08\\x78\\x8c\\x3c\\x83\\x30\\x44\\\n\\xc1\\x83\\x56\\x24\\x5c\\x91\\x22\\x62\\x6b\\x8a\\xf6\\xf4\\x0a\\xc6\\xf5\\x92\\\n\\x5d\\xda\\x2b\\x0a\\x6d\\x4d\\x15\\x8f\\xdd\\xe3\\xe2\\xa6\\x25\\x49\\x54\\x2b\\\n\\xec\\x16\\xa2\\x42\\x67\\x4b\\x95\\xd0\\x4f\\x28\\x5b\\x1e\\x7c\\x27\\x64\\x71\\\n\\xf5\\x5f\\x33\\x95\\x10\\xda\\x0e\\x98\\xfa\\x2f\\xb2\\x9c\\x5c\\xf2\\xf8\\x14\\\n\\xcb\\xb4\\x1b\\x7d\\x2a\\xb6\\x06\\xc3\\x3b\\xe1\\xc7\\xa4\\x8e\\x1a\\x0f\\x47\\\n\\xa7\\x67\\x21\\xef\\xc0\\x45\\x4f\\xb0\\xb5\\x74\\xa0\\xa4\\x59\\x57\\x25\\x5d\\\n\\x5f\\x04\\x8c\\x90\\x56\\x8a\\x00\\xb0\\xaa\\x1c\\x92\\x01\\x0f\\x05\\xbc\\x16\\\n\\x55\\x9c\\x95\\x3d\\xd1\\x6b\\xe4\\xf3\\x0b\\xd2\\xa4\\x53\\x24\\x44\\xbc\\x27\\\n\\x02\\xfa\\x4f\\x20\\x15\\xee\\x5a\\x78\\x5b\\x2d\\x3d\\x92\\xbe\\xc3\\xc7\\xba\\\n\\xd2\\x57\\xf6\\x67\\xe6\\x1e\\xc7\\xdc\\xd9\\xe2\\x4a\\xbf\\x1f\\x77\\x3d\\x9b\\\n\\x7f\\xe3\\xa1\\x5f\\x3f\\xb4\\x0f\\x44\\x36\\xfb\\x06\\xdf\\xee\\x6c\\xc5\\xd7\\\n\\x88\\x36\\x7e\\x65\\xcb\\xfc\\x9e\\xcb\\x76\\x4a\\x86\\x6c\\x21\\xd2\\x86\\x4c\\\n\\x18\\x9f\\x5d\\xfc\\x9e\\x4d\\xfe\\x12\\xa6\\x49\\x36\\xf6\\xeb\\xac\\xfb\\x9e\\\n\\x2d\\x4a\\x84\\xd6\\x8b\\xce\\x61\\x5f\\x53\\xdf\\xde\\x9d\\x75\\x01\\x7b\\x60\\\n\\xf7\\xda\\xe8\\x15\\xef\\x85\\x38\\x21\\xc1\\xb8\\x10\\xb1\\x89\\xae\\xef\\x7b\\\n\\xb4\\x4e\\xfa\\xb5\\x8f\\x13\\x1f\\xec\\xe7\\x2c\\x41\\xf2\\x5b\\x30\\x0f\\xe3\\\n\\xea\\x3f\\xcb\\xeb\\x48\\x4f\\x1b\\xdb\\x31\\x2a\\x0d\\x4e\\x0e\\x1c\\x0a\\xdf\\\n\\xea\\x79\\x12\\x41\\x80\\xec\\x7a\\xdd\\x34\\xf7\\xec\\xe0\\x67\\x8e\\xf0\\x0e\\\n\\x80\\x92\\x45\\xe3\\x11\\x73\\xbf\\x12\\x0d\\x82\\xfb\\x29\\xf4\\x05\\x46\\x87\\\n\\x3f\\xe7\\x60\\x99\\xc5\\x01\\x4a\\x20\\x9e\\x7a\\xdf\\xa7\\xbc\\x64\\xf2\\xe1\\\n\\x7a\\x82\\x87\\x7a\\xc8\\x1f\\x42\\x7b\\x3c\\x2a\\x48\\x60\\x34\\xe1\\x35\\x37\\\n\\x11\\x27\\x4d\\xe4\\xf1\\xb4\\x07\\xde\\x05\\xfb\\x9e\\xfb\\xfc\\xa0\\xf8\\x96\\\n\\x89\\x27\\xaf\\xaf\\xef\\xdf\\x47\\xf8\\xe1\\xe7\\x08\\x00\\x5d\\x73\\x07\\xe5\\\n\\x7d\\x7f\\x6c\\x1f\\x13\\x08\\x61\\x38\\xcc\\x03\\x95\\x7f\\x3b\\xf3\\xca\\x12\\\n\\x45\\x1d\\x7f\\xcb\\xc0\\xeb\\x32\\x7d\\xb5\\x1a\\x91\\x2b\\xc1\\x8e\\xb9\\x23\\\n\\xc3\\x19\\x3e\\x9c\\x13\\x22\\xb6\\x68\\xb2\\x09\\x4f\\x6c\\xce\\x29\\x9e\\x46\\\n\\x41\\x04\\x31\\xaf\\x3d\\x5a\\xaf\\x1f\\x9c\\x0f\\x00\\xb5\\x2b\\x4f\\x61\\xd7\\\n\\xb3\\x91\\xe1\\x73\\xea\\x9e\\x92\\x9e\\x9f\\x42\\x8f\\x0a\\x3b\\x5d\\xef\\xaf\\\n\\x0d\\xae\\xa3\\x33\\xab\\x8b\\xdb\\x29\\xd3\\x7d\\xe3\\xe5\\xe5\\xb9\\x48\\x7b\\\n\\xe9\\xcc\\xf7\\xef\\x5e\\xf8\\x3a\\x75\\x20\\x0a\\x00\\xf9\\xda\\x6d\\x8e\\x1d\\\n\\x9e\\x29\\x82\\x0e\\x47\\xd4\\xcf\\x9e\\xad\\x93\\x38\\x37\\x45\\x1e\\x8d\\x1e\\\n\\x8a\\xce\\x01\\xb7\\xdd\\x8b\\x2c\\xbe\\x2b\\xd1\\x68\\x86\\x6f\\x14\\x35\\x6c\\\n\\xf4\\x10\\xe7\\x7c\\x41\\xea\\x16\\x8d\\xbd\\x11\\x19\\xc9\\xff\\x00\\x27\\x5f\\\n\\x1b\\xb9\\xa2\\x44\\xf7\\x9c\\xc9\\xf3\\x7e\\xdd\\xf1\\x7a\\x42\\xc6\\x40\\xe0\\\n\\x18\\x41\\xa4\\x85\\xab\\xfc\\xa3\\x6a\\xa4\\x2b\\x25\\x0d\\x55\\xac\\xf7\\x09\\\n\\x37\\xc1\\x52\\xc2\\x8c\\x42\\x36\\x2c\\x6a\\x2e\\xa4\\x3e\\x4d\\xd6\\x7f\\x0d\\\n\\xf6\\x90\\x3d\\x84\\x60\\x55\\x8f\\x5f\\xa4\\x45\\xa0\\x0e\\x3f\\x20\\x18\\x13\\\n\\x42\\xc7\\xc9\\x29\\xea\\xd0\\x08\\xdb\\x42\\xeb\\x45\\x84\\xe3\\xe2\\xb9\\x08\\\n\\x50\\x20\\x01\\x4c\\x88\\xb4\\x4e\\x57\\xe2\\x4a\\x54\\x8b\\x52\\x14\\xd1\\x11\\\n\\x89\\x39\\x09\\xb2\\x79\\x26\\x52\\xa4\\x00\\x99\\x04\\xae\\x1e\\x28\\xc6\\x9b\\\n\\x4a\\x1a\\x1a\\x1d\\x40\\xbb\\x60\\x81\\x3b\\x53\\xb4\\xbc\\x5f\\x24\\x30\\x69\\\n\\x17\\x0a\\xcb\\xfc\\x6c\\xd4\\x86\\x24\\x66\\x32\\x7a\\x28\\x98\\x4b\\xf0\\x72\\\n\\x0f\\x87\\x31\\x6b\\x58\\x99\\x72\\xf1\\x03\\x3b\\x9c\\x91\\x20\\x69\\x58\\x87\\\n\\x43\\x5b\\xff\\x00\\xc3\\xaf\\x41\\x20\\x03\\xd6\\x61\\x8f\\xd0\\xf8\\x11\\x76\\\n\\x29\\x7c\\x23\\x0c\\x0a\\x11\\xfc\\x12\\x71\\x4a\\x44\\xb6\\xaa\\x78\\x1c\\xe2\\\n\\x6b\\x4a\\x26\\xe0\\xf0\\xb5\\xfd\\x97\\x9e\\x19\\x48\\x85\\x2f\\x06\\x85\\xf6\\\n\\x9d\\x3a\\xe9\\xea\\xf9\\x0e\\xe6\\x55\\x45\\x34\\x48\\x55\\xbb\\xe8\\x8c\\x87\\\n\\x17\\x03\\x86\\x4e\\x0b\\x11\\x8f\\xb6\\x06\\xfe\\x5f\\x6f\\x92\\x5d\\x63\\x16\\\n\\x40\\x12\\x9e\\xa0\\x91\\x83\\xa9\\x07\\x3c\\x6d\\x9c\\x75\\xd0\\x07\\x43\\x86\\\n\\x55\\xef\\x51\\x6c\\xf0\\x4b\\x1c\\x50\\x75\\xb3\\x91\\x16\\x42\\xce\\x03\\x47\\\n\\x7c\\x73\\x36\\x1b\\xd4\\xad\\x0b\\xd3\\xd1\\xc3\\x1e\\x8d\\xea\\x50\\x8b\\x08\\\n\\xd4\\x53\\xb1\\x80\\xb2\\x03\\xc2\\x9d\\x4d\\x4a\\x02\\xc6\\x30\\x6e\\xb7\\xf8\\\n\\xc3\\xcb\\xc1\\x07\\xa4\\x47\\xac\\x34\\x41\\x98\\x3f\\x07\\xdc\\x98\\xe3\\x93\\\n\\xe7\\xfe\\xd5\\xb3\\x13\\x38\\x3c\\x10\\x1e\\x60\\x5a\\xb9\\xf0\\x9b\\xeb\\x08\\\n\\x87\\xf1\\xe5\\x2b\\x81\\xa0\\x5b\\x38\\xc2\\xe6\\x4f\\xc0\\xff\\x00\\x37\\x5b\\\n\\x66\\x40\\x23\\x6f\\xe1\\x21\\x5f\\xbc\\xe8\\xd2\\x6a\\x90\\x4c\\x5b\\x13\\x30\\\n\\xd2\\x0f\\xc7\\x8f\\x87\\x08\\x11\\x7a\\x43\\x44\\x5d\\x82\\x77\\x3f\\x4c\\x90\\\n\\x00\\xdb\\x50\\x45\\xbd\\x60\\x3e\\xbb\\xc1\\x18\\xc4\\x4a\\x85\\x13\\xeb\\x90\\\n\\xa8\\x84\\xec\\x49\\xc0\\xc6\\xaa\\xf0\\xa6\\xce\\xa3\\xc2\\x3e\\xf3\\xf2\\xd1\\\n\\x19\\x38\\xfc\\x00\\x96\\x84\\xb3\\x98\\x6f\\xf5\\x3c\\x66\\x1b\\x63\\x22\\xcf\\\n\\xac\\x9a\\x5a\\x1c\\xf7\\xf1\\xc6\\xb2\\x42\\x36\\x20\\xb5\\xa2\\x4c\\x1a\\x51\\\n\\x7b\\x8f\\x8d\\x0b\\x8d\\x38\\xfc\\x17\\x92\\x7a\\x84\\xd3\\x70\\x6e\\xd9\\x74\\\n\\x0d\\x0b\\xf1\\x94\\x0b\\x04\\xef\\x86\\x3d\\x73\\xd8\\x4b\\x84\\x15\\xf7\\x4b\\\n\\xb7\\xd7\\x91\\x5b\\x15\\x00\\x90\\x20\\x02\\x88\\x91\\xd2\\x3e\\x28\\x4a\\x39\\\n\\x04\\x43\\xc2\\x03\\xfa\\x0f\\x41\\x59\\xdd\\x4a\\x75\\x3d\\xac\\xef\\x4b\\x95\\\n\\xc0\\x70\\xf6\\xf8\\xda\\x4a\\xf4\\xb9\\x68\\xf1\\x5f\\xa5\\xbf\\xd9\\xca\\x44\\\n\\x85\\x48\\x91\\x1a\\x11\\xb0\\x58\\x04\\x7f\\xe3\\x4f\\x0b\\xd1\\x29\\xb6\\x69\\\n\\x40\\xba\\x67\\x0b\\x9f\\xc7\\x81\\xe9\\x78\\xfd\\x2a\\xda\\x12\\x1c\\x85\\x76\\\n\\xbe\\x8f\\x29\\xa4\\x43\\x05\\x4f\\x61\\x1a\\xd6\\xa2\\x34\\x99\\x93\\xf2\\xa2\\\n\\x13\\x20\\xa7\\x4b\\x1a\\xbe\\xe9\\xd2\\x12\\x04\\x75\\x20\\x7a\\x68\\x6a\\x4d\\\n\\x32\\x6f\\x89\\x06\\xa0\\x02\\xa0\\x33\\xb2\\xdd\\x15\\xfc\\x9f\\x1f\\x1e\\xe4\\\n\\x84\\xa7\\x29\\x7a\\x83\\xfb\\xeb\\xe9\\x27\\x9a\\x15\\xcd\\xa1\\x01\\xd6\\xe4\\\n\\x67\\xa7\\xdf\\x6d\\xa8\\xd8\\x58\\x71\\x5f\\xd6\\xb7\\x7d\\xef\\x6e\\xd6\\x14\\\n\\x1c\\x45\\x4e\\xdd\\xe8\\x4f\\xc6\\x78\\xcc\\x86\\x12\\x96\\x51\\xe8\\x69\\xe8\\\n\\xab\\x5d\\xa3\\x7c\\x20\\x81\\xeb\\xac\\x57\\xd2\\xe9\\xbe\\xcb\\x3d\\xcb\\xe2\\\n\\x38\\x01\\x52\\x03\\xf9\\x07\\x13\\x16\\xfb\\x19\\x9e\\x0b\\x13\\x71\\xf4\\xe6\\\n\\xa9\\xc9\\x91\\x77\\x2d\\x53\\xc2\\x9e\\xbb\\x83\\x41\\x1f\\x8a\\xf6\\xf2\\xd0\\\n\\x7e\\xf8\\xc5\\xee\\xae\\x83\\xdd\\x9c\\xf5\\x79\\xe9\\xff\\x00\\x1e\\x14\\x4a\\\n\\x10\\x41\\x03\\x58\\x81\\x60\\x73\\x0d\\x19\\x49\\x6e\\x3a\\xc4\\x0a\\xe1\\xc0\\\n\\x48\\x15\\x88\\x6d\\x6c\\x04\\x0e\\x82\\x00\\xa1\\x80\\x92\\x60\\xa8\\x3e\\x37\\\n\\x84\\x00\\x72\\xa2\\x02\\x8a\\xe1\\x8e\\x81\\x11\\x70\\x9e\\x2d\\x4a\\xeb\\x9f\\\n\\xa6\\xb0\\x11\\x7a\\xf8\\x97\\xa6\\xc1\\x60\\x26\\xb8\\x36\\x09\\x6c\\x9d\\x32\\\n\\x90\\x03\\x01\\x40\\xb8\\x15\\x47\\x0e\\x4f\\x48\\x4f\\x35\\xfd\\x8d\\xea\\x82\\\n\\xa5\\xf0\\xa6\\x0a\\x5c\\x8c\\xfa\\x89\\xca\\x81\\x80\\x89\\xd5\\x02\\xb7\\xda\\\n\\x11\\x89\\x4a\\x10\\xab\\x5b\\x13\\xf4\\x72\\xce\\x33\\xc9\\xd9\\x50\\x14\\x70\\\n\\x45\\x92\\xc2\\xce\\xe5\\xf4\\x5f\\x00\\xc8\\x44\\xaa\\xb2\\x51\\x20\\xad\\x46\\\n\\xfb\\xb9\\x4d\\x5f\\x09\\x1e\\x28\\x40\\x65\\x11\\x2c\\x72\\xba\\xaf\\x8a\\x34\\\n\\x95\\x40\\x26\\xc7\\xa1\\x80\\x54\\x81\\xb1\\x51\\x50\\x37\\x48\\x54\\xa2\\x64\\\n\\x85\\x3d\\xce\\xc9\\xe7\\x2b\\xbb\\x44\\x0f\\x15\\x8c\\xd1\\xc2\\xbb\\x18\\xf9\\\n\\x2e\\x36\\x38\\x31\\xa1\\x46\\x05\\x9c\\xc7\\xa0\\xf3\\x96\\x04\\x93\\x48\\xe3\\\n\\x4f\\xcd\\x07\\xfb\\xe1\\xe3\\xf7\\x4a\\x10\\x28\\x83\\x35\\x2a\\xd5\\xbf\\x7c\\\n\\x1e\\xf4\\x46\\x47\\x0c\\x43\\xa4\\x15\\x12\\x87\\x5e\\x04\\x39\\x8d\\x40\\x11\\\n\\x2a\\xdd\\x7f\\x5f\\xc8\\x4f\\x27\\xc4\\xa0\\x40\\xb8\\x40\\x1c\\x8a\\xc1\\xe0\\\n\\x4c\\x7c\\x15\\x12\\x00\\x91\\x44\\x32\\xa2\\x71\\x4c\\xfc\\x7f\\x1f\\x7e\\xec\\\n\\xd4\\x64\\x71\\x09\\x80\\xbf\\x3d\\xba\\xde\\x86\\xa1\\x50\\x1f\\xd0\\x08\\xc8\\\n\\x37\\x38\\x31\\x3c\\x60\\x5b\\xd8\\x56\\x25\\x21\\xb3\\xa4\\xb5\\xe1\\x6e\\x64\\\n\\x87\\xd9\\xb8\\x8a\\x8a\\x8e\\x74\\x6f\\x6a\\x94\\xd9\\xf5\\xa5\\x00\\x22\\x3d\\\n\\x3f\\x6a\\xfb\\x9e\\x0c\\x96\\x46\\x20\\x1b\\x25\\x21\\xd1\\xbd\\x76\\x9b\\x9e\\\n\\x1d\\xa5\\x17\\x02\\x89\\x6e\\xf3\\x89\\xe8\\xb6\\x79\\x2a\\xc0\\xdc\\xae\\xbc\\\n\\xe3\\xd9\\xe9\\xc7\\x2a\\x58\\x49\\xb3\\x71\\xaa\\x88\\xa0\\xd1\\x1c\\x25\\x07\\\n\\xa7\\xc4\\xf7\\x04\\x3c\\xe4\\x91\\x4c\\x75\\x70\\x91\\x7c\\xa3\\x06\\xc9\\xb0\\\n\\x4d\\x08\\x51\\x66\\x30\\x13\\x7c\\x69\\x48\\x15\\x41\\x42\\x76\\x1e\\xab\\x92\\\n\\x87\\x4d\\x68\\x05\\x01\\x50\\x18\\x57\\xb5\\x56\\xe3\\xe4\\xc3\\x28\\xab\\x8c\\\n\\x1a\\x27\\xa5\\x18\\x66\\xf3\\xc8\\xfd\\x5e\\x94\\xb2\\xfa\\xbf\\xc6\\xd8\\xfb\\\n\\x91\\xf2\\x82\\x10\\x81\\x21\\xaa\\x51\\xae\\xb7\\xdc\\xfa\\x33\\xc2\\x50\\x22\\\n\\xd0\\xb8\\x12\\xbf\\x00\\xb6\\x7a\\xd8\\x20\\x29\\xd3\\x40\\x92\\x86\\x9c\\x04\\\n\\x09\\xb8\\x71\\x3c\\x27\\x68\\x80\\x53\\x8a\\x82\\xec\\x57\\xd5\\x73\\xb9\\xac\\\n\\x9a\\xe0\\x29\\x14\\x70\\xd1\\x05\\xdc\\x13\\xcb\\xf7\\x05\\xa6\\x50\\xa3\\x27\\\n\\xa5\\x84\\xe7\\x6f\\x88\\xd3\\x13\\x29\\x21\\x65\\xb8\\xb4\\x76\\xff\\x00\\x32\\\n\\xf8\\xdc\\x04\\x10\\x68\\xf4\\x4b\\x37\\x5d\\x58\\xfc\\xe7\\x8b\\x54\\x05\\x40\\\n\\x81\\x5c\\x85\\x18\\xe4\\xf7\\x6d\\xe0\\x5e\\xeb\\xc8\\x2b\\xec\\x03\\x40\\x9a\\\n\\xa7\\x5f\\xbe\\x34\\x92\\x10\\x34\\x45\\x0a\\x51\\x8d\\xb7\\x7b\\x50\\x8a\\x22\\\n\\x84\\x15\\xe9\\x02\\x04\\xf5\\x74\\xe3\\xa9\\xdc\\xf7\\x92\\x22\\x9a\\x48\\xda\\\n\\x17\\xa1\\x53\\x4a\\x20\\x31\\x78\\x52\\x84\\x80\\x31\\x21\\xca\\x63\\x26\\x62\\\n\\xe9\\x25\\x5f\\x06\\xc3\\xde\\x46\\xbb\\x7d\\x78\\x6b\\x12\\x54\\x7e\\x09\\x08\\\n\\x84\\x3b\\xb4\\xf5\\xe3\\x0e\\x5a\\xc0\\x94\\x11\\x11\\x51\\x59\\x89\\x8b\\xd3\\\n\\xc1\\xbc\\xc0\\xd0\\xd2\\xb8\\x9b\\x38\\x5f\\xcb\\xd4\\xe5\\x4d\\x8a\\x96\\xb0\\\n\\xa2\\xe7\\x47\\x5f\\x5d\\xdf\\x33\\x65\\xf8\\x94\\x68\\x00\\x0f\\xa0\\xd2\\xab\\\n\\xf0\\xde\\xa8\\x28\\xc0\\x10\\xaa\\x45\\xbf\\x4c\\x46\\x78\\xa0\\xc7\\x91\\x15\\\n\\x1d\\xca\\x6c\\x58\\xb7\\x85\\xbc\\x30\\x49\\x2d\\x15\\x34\\x80\\x69\\x01\\x0a\\\n\\x4c\\x22\\xdf\\x01\\x5a\\x8c\\x05\\x22\\x8b\\x83\\x79\\x44\\x68\\xfe\\xae\\x17\\\n\\x70\\x1f\\xda\\xfe\\xea\\xff\\x00\\x5c\\x39\\xe5\\x0b\\xcb\\xe9\\x2a\\x92\\xf1\\\n\\x40\\xfe\\x07\\x60\\xff\\x00\\x59\\xc0\\x51\\x06\\x65\\x65\\xb8\\x9e\\xd7\\x80\\\n\\x77\\x6c\\x8a\\x22\\x69\\x50\\xac\\x96\\x11\\x84\\x88\\x47\\x70\\x48\\x98\\x21\\\n\\xa2\\x01\\x15\\x07\\x2a\\x94\\x08\\x22\\x61\\xa6\\x94\\x94\\x5a\\xc5\\xeb\\xe4\\\n\\x50\\x04\\x23\\x3c\\x22\\xc2\\x52\\xc2\\x3b\\x37\\xaf\\x14\\x08\\xde\\x7e\\x1c\\\n\\x61\\x0b\\x21\\x62\\x41\\x60\\x82\\x63\\x00\\x54\\x66\\x1c\\x52\\x06\\x12\\x0b\\\n\\xbe\\x12\\x70\\x84\\x14\\x50\\x77\\x9d\\x90\\xa0\\xa1\\xc2\\xbe\\x54\\x38\\xf5\\\n\\x50\\x35\\x00\\x06\\x01\\x61\\xa2\\x54\\x4c\\x1a\\x27\\xc8\\x6a\\x0c\\xfd\\x73\\\n\\xdc\\x00\\x23\\xc8\\x20\\xe4\\x40\\x31\\xbc\\xc0\\x18\\xc8\\x48\\x3c\\x58\\x42\\\n\\xae\\x3c\\x9c\\x24\\xe1\\x30\\xbe\\x68\\x27\\xab\\x0c\\x97\\x85\\x11\\x20\\x0e\\\n\\x82\\xa1\\x38\\xa6\\x00\\x58\\x5e\\xc4\\xaa\\x35\\x1a\\xbe\\xd8\\x24\\x78\\x8d\\\n\\x0d\\x11\\x20\\xea\\x1c\\x42\\x75\\xfc\\x78\\xb7\\x23\\x54\\x6e\\x79\\x76\\xcf\\\n\\x02\\x4e\\x1c\\xf2\\x7c\\x0c\\xc4\\x68\\xc5\\x07\\xef\\xbf\\xf8\\xa5\\x70\\x2a\\\n\\x40\\xc9\\xcb\\x52\\xde\\x96\\x6c\\x3a\\xc6\\x86\\xc5\\x79\\x11\\x29\\x30\\xa2\\\n\\x9c\\xae\\xaa\\x7b\\x79\\x42\\x14\\x21\\xf8\\x2d\\xe2\\xa9\\x8b\\x86\\x97\\x67\\\n\\x38\\x10\\xb8\\x58\\x9d\\xc5\\x19\\x3b\\xbf\\x31\\x55\\x0c\\xcd\\x29\\x79\\x38\\\n\\x26\\xcb\\xea\\x5e\\x9b\\x4c\\x8e\\x0a\\x40\\x8a\\xf1\\x8f\\xd0\\xd9\\xfb\\xe1\\\n\\x05\\xe2\\x32\\x35\\x50\\x01\\x77\\x4a\\x6f\\x3c\\x0a\\xe5\\x31\\xd4\\x9b\\x61\\\n\\x97\\x0d\\x8e\\xee\\x90\\x34\\x94\\x16\\x2e\\xc4\\x74\\xcd\\xe1\\x27\\x53\\x27\\\n\\xa7\\x80\\xc7\\xf7\\x43\\x39\\x57\\x93\\xdf\\x8c\\x33\\x5e\\x0a\\x10\\x35\\x85\\\n\\xb7\\xfd\\xa1\\x40\\x3c\\x6a\\x2a\\x2f\\x67\\x69\\x71\\x64\\xfd\\xf8\\x5f\\x02\\\n\\x2f\\xa8\\x2b\\x4a\\xc9\\xcd\\x46\\xb5\\x5f\\x9e\\x26\\x56\\x89\\x67\\x60\\x8a\\\n\\x8c\\x58\\x61\\xe4\\x71\\x7c\\x9c\\x02\\x39\\xe4\\x42\\xf0\\x00\\xd8\\x89\\xac\\\n\\x6a\\x2e\\xe9\\xa6\\xa0\\xcb\\x7b\\x47\\xc0\\x5c\\x47\\x46\\xd9\\x88\\x03\\xf3\\\n\\x99\\xaa\\x5a\\xc8\\x7d\\xc4\\x53\\xd6\\x74\\xa2\\x8b\\x49\\xa7\\x3c\\x65\\x63\\\n\\x31\\x36\\xe0\\x73\\x34\\x3d\\x9f\\x7e\\xf9\\xb2\\xa1\\x06\\x2b\\x3a\\x40\\xb9\\\n\\x3d\\x2f\\x1d\\x31\\xf0\\x29\\x0a\\xa8\\x25\\x6c\\xef\\xa0\\xe3\\xef\\xf1\\x97\\\n\\x65\\x14\\x3e\\x8c\\x31\\x6c\\x54\\x21\\x61\\xcc\\x2b\\x6d\\x8f\\x0a\\x11\\x31\\\n\\x45\\x02\\x02\\x51\\xd1\\xf0\\x61\\x2a\\x10\\x83\\x7a\\xa0\\x14\\x20\\xb8\\xb2\\\n\\x25\\x9e\\x0d\\x8c\\xab\\x10\\xa3\\x3e\\xa0\\xa2\\x8f\\xdf\\x13\\xd2\\x18\\x65\\\n\\x8d\\x59\\x5c\\xcb\\x83\\xfc\\xf3\\xc0\\xb8\\x24\\x2b\\x51\\x06\\x09\\x2e\\x6b\\\n\\x01\\x3b\\x6b\\xe4\\xc2\\xe1\\xf6\\x71\\x07\\x2b\\x97\\x09\\xd6\\xfa\\xf0\\xa9\\\n\\x03\\x68\\x83\\x04\\xca\\x3e\\x8e\\x9f\\xe3\\xc3\\x8a\\x14\\x41\\x80\\x8e\\xa8\\\n\\xd4\\x5f\\xf3\\xee\\x4f\\x36\\x50\\x52\\xc9\\x41\\x36\\x32\\x8f\\x63\\xaa\\x7d\\\n\\x3f\\x0a\\xfe\\xc1\\xb5\\x20\\x67\\x7e\\xb5\\xeb\\x10\\x0a\\x73\\xc1\\xa4\\xa6\\\n\\x00\\xd2\\x46\\x2f\\xb5\\x32\\x3e\\x28\\xae\\x32\\x13\\x16\\x0b\\x41\\x8a\\x7c\\\n\\x59\\x90\\xe1\\x0d\\x08\\x68\\x89\\xc3\\x0e\\x18\\x1e\\xab\\xd7\\xd7\\x85\\xc2\\\n\\x14\\xaa\\x7b\\x6e\\xdf\\x9f\\x90\\x7e\\xf8\\x93\\x0c\\x08\\xc3\\x7a\\x0a\\xe4\\\n\\xab\\xc5\\xe6\\x6f\\x9a\\x52\\x22\\x60\\xd7\\x0c\\x25\\x2a\\x65\\xac\\xbe\\x16\\\n\\x26\\x0a\\x75\\xfd\\x14\\x71\\x8c\\x07\\xe9\\xd9\\xe1\\xe3\\x05\\x5e\\x18\\x52\\\n\\xb8\\xaa\\x6e\\xbd\\x06\\x21\\x62\\xd0\\xac\\x2a\\xea\\x7f\\x45\\xba\\x32\\x70\\\n\\x8b\\x6b\\x04\\x54\\x44\\x5a\\x09\\x7b\\xd3\\xfd\\x88\\x11\\x00\\xc0\\x20\\x83\\\n\\xd4\\xbc\\xeb\\x86\\x7a\\x30\\x68\\x24\\x37\\xd7\\x2a\\x0e\\xfa\\x36\\xf6\\x78\\\n\\x3a\\x81\\x59\\xef\\xbd\\x10\\xef\\xbd\\xf2\\x57\\x4d\\x70\\xce\\xd9\\xc9\\x3f\\\n\\xc2\\xf3\\xf4\\xf1\\x5c\\x3d\\xc4\\x62\\x02\\x6a\\x94\\x1c\\x7b\\x2a\\x79\\x03\\\n\\xb4\\xe0\\xa3\\x1f\\x66\\x9d\\x01\\x4b\\x9a\\x3c\\x02\\x8d\\x4e\\xce\\x61\\x00\\\n\\x30\\x98\\x25\\xc2\\xab\\xe0\\xa3\\xb0\\x16\\x22\\x95\\x13\\xd3\\xfd\\xa3\\xb3\\\n\\x7c\\x0a\\x8a\\x02\\x4a\\x08\\xe3\\xb7\\xe3\\xe3\\xb4\\xf1\\xaa\\x8c\\xa6\\xb6\\\n\\x92\\x19\\xec\\x4b\\xb2\\x99\\xe9\\x24\\xc5\\xa2\\x8d\\x50\\x8c\\xbc\\xba\\x00\\\n\\x4a\\x8b\\xe0\\x0c\\x90\\xbd\\x7b\\x2e\\xb9\\xbf\\xc9\\xdb\\x25\\xf2\\x6e\\x9c\\\n\\x25\\xb4\\x20\\xf2\\x6c\\xf8\\xb9\\xdd\\x57\\x05\\xf7\\xa8\\x7d\\x0c\\x24\\x4b\\\n\\xbd\\xa5\\x3c\\x7f\\x10\\x72\\x2d\\x65\\x24\\x82\\x89\\xae\\x7a\\xc4\\x76\\x28\\\n\\xba\\x35\\x1f\\x08\\x56\\x41\\x63\\x58\\xbe\\x1c\\xc9\\xa5\\x3c\\xdd\\xfa\\x4b\\\n\\xae\\xeb\\xd7\\x84\\x90\\x35\\x92\\x04\\x4c\\xfb\\xf8\\xed\\xba\\x07\\x45\\xfc\\\n\\x58\\x09\\x47\\x62\\xd0\\x73\\x28\\x9a\\x5a\\xf8\\xb8\\x4d\\xc1\\x70\\xb0\\x41\\\n\\xa7\\x0d\\x52\\xe5\\xc2\\x2c\\x09\\x49\\x4b\\xf4\\xca\\x7f\\x02\\xdc\\xf7\\x91\\\n\\x25\\x02\\x09\\x16\\xa2\\x41\\x35\\x3f\\xe3\\xdd\\x6e\\x78\\xdf\\x22\\xa0\\x26\\\n\\xaa\\x7b\\xa2\\xe6\\x50\\x3f\\xda\\xc6\\xa3\\x48\\x75\\x06\\x3b\\xd1\\xd1\\x01\\\n\\xe4\\xf7\\xa3\\x69\\xf4\\x80\\xb1\\x46\\x67\\xb4\\x12\\x03\\x2d\\x5f\\x30\\xc1\\\n\\x22\\x0a\\xae\\xe4\\x28\\x77\\x0d\\xfb\\xc9\\xe2\\x13\\x36\\x83\\xd8\\xa5\\x84\\\n\\xd6\\x5f\\xd7\\xbd\\x43\\x27\\x70\\xe1\\x4a\\x9a\\xc8\\x62\\x93\\x03\\x32\\xcf\\\n\\x20\\x89\\x0d\\x5d\\x4a\\x5d\\x87\\x3f\\x8a\\x4b\\xb1\\x35\\xb0\\x9f\\x4b\\xd0\\\n\\x70\\xf7\\x50\\xe6\\x74\\x81\\xea\\x41\\x91\\xa8\\xc3\\x4f\\x69\\xcd\\xf8\\xdc\\\n\\x67\\xf3\\x94\\x40\\x45\\x3b\\xcb\\xdb\\x16\\x26\\x39\\x7c\\xee\\xd2\\x4b\\x37\\\n\\x0b\\x8e\\x6c\\xb5\\x01\\xab\\xb9\\x19\\x0e\\x8c\\x01\\xbc\\x9c\\xa3\\x7f\\x83\\\n\\x69\\xaf\\x68\\xde\\x89\\x91\\x02\\x26\\x25\\x7f\\x58\\x7b\\x89\\x51\\x86\\x81\\\n\\x22\\x01\\x45\\x8f\\xa6\\x01\\x25\\xf1\\x5a\\xda\\x7e\\xb5\\x79\\x4a\\xa8\\xdf\\\n\\x46\\xc0\\xce\\xcb\\x0a\\xc7\\xdb\\x5e\\xdf\\x68\\xfa\\x27\\xf5\\xea\\xa9\\x0a\\\n\\x80\\x87\\x68\\x57\\xb9\\xfe\\x79\\x66\\xd1\\x82\\xed\\x0e\\x0c\\xda\\x1f\\xe9\\\n\\x51\\x73\\x7c\\x74\\x51\\x02\\x86\\x1c\\x6d\\x00\\x6f\\xec\\xed\\xdb\\xe7\\xa0\\\n\\x0d\\x89\\x28\\x82\\x8a\\xe1\\xa8\\xaa\\x77\\x2a\\x53\\xa7\\x08\\xa2\\x26\\x0b\\\n\\x18\\x6c\\x93\\xc2\\x82\\x0a\\x01\\x61\\x45\\xc0\\x10\\x18\\x5e\\x5a\\x33\\xe6\\\n\\xae\\x80\\xdc\\x19\\xa9\\xaa\\xec\\x7e\\xf2\\xdf\\x1a\\x33\\x53\\x54\\x5d\\x10\\\n\\x69\\xe9\\x14\\x10\\xf4\\x9e\\x2c\\xf0\\x51\\xfb\\x17\\x1f\\x57\\xd7\\x18\\x67\\\n\\xef\\x97\\x2a\\x05\\xd1\\xdd\\x50\\xe5\\x63\\x8f\\xff\\x00\\x44\\x90\\xba\\x69\\\n\\xb2\\x45\\x3f\\x95\\xf4\\x7f\\x9f\\x30\\x7e\\x8c\\x78\\x44\\x28\\x8c\\x70\\x3b\\\n\\xf3\\xc1\\x24\\x5b\\x04\\xb7\\xd2\\xd8\\x7d\\x05\\x97\\x21\\x48\\xe2\\x04\\x48\\\n\\x7a\\x22\\x2b\\x13\\xfc\\xf3\\xf9\\xc9\\xe2\\x48\\x47\\x4d\\xd3\\x94\\xd4\\x4f\\\n\\x59\\x21\\xc3\\x12\\x79\\x71\\xc0\\x14\\x65\\x8f\\x2c\\xc0\\xee\\xca\\x5f\\x3d\\\n\\x6b\\x14\\x2b\\x0e\\x89\\xde\\x72\\xcf\\x55\\xc4\\xfa\\x30\\xf0\\x0c\\x39\\x9e\\\n\\xc9\\x40\\xc9\\xdb\\xe2\\x3a\\x56\\x69\\xe9\\x3f\\x84\\x74\\x26\\x7e\\x78\\x7d\\\n\\x44\\x01\\xcb\\x29\\x3b\\x20\\x02\\x8f\\x2f\\x4d\\x4f\\xe0\\x58\\x78\\x2f\\x30\\\n\\xbc\\xc4\\xd8\\x4f\\x5b\\x4e\\x1c\\x41\\xae\\xb0\\xd7\\xfe\\x7d\\xea\\x2f\\x8d\\\n\\xaa\\xcc\\x42\\xa8\\x91\\x5b\\x00\\xb7\\xf7\\xb7\\x30\\x9b\\x87\\x4b\\x28\\x7f\\\n\\xa4\\x66\\xb3\\x72\\xbe\\x39\\xb9\\x26\\x13\\x50\\x3c\\xcf\\x44\\xcc\\x3c\\xe9\\\n\\x09\\x04\\x43\\x7d\\x44\\xbf\\xd5\\x1b\\x91\\x3c\\x3d\\x18\\x93\\xe0\\xa6\\x1b\\\n\\x14\\xd6\\x2e\\xff\\x00\\x6a\\x74\\x2c\\x37\\x67\\xe6\\x99\\xff\\x00\\x7e\\x33\\\n\\xf2\\x55\\xe9\\x31\\x6b\\xc5\\xb5\\x86\\x57\\x21\\xe0\\xbe\\x92\\x42\\x22\\x81\\\n\\xa7\\xa7\\xe4\\xb5\\x5b\\x15\\x24\\x04\\x16\\x41\\xa2\\x16\\x2c\\x94\\x72\\x78\\\n\\x40\\x1a\\x56\\xaf\\x45\\x47\\xa6\\x9d\\xdc\\xfe\\x7c\\x40\\xf6\\x70\\x79\\x5a\\\n\\x31\\x80\\xf6\\x26\\x27\\xaf\\x1f\\x9b\\x21\\x0c\\x5a\\xf0\\xe7\\xb0\\x16\\x85\\\n\\xbe\\x1b\\xba\\xb4\\x04\\xa1\\xc4\\x8f\\x09\\x9c\\x14\\xfd\\xf2\\x61\\x9e\\x34\\\n\\x73\\x3d\\x06\\x4a\\x9a\\xea\\x51\\x60\\x1c\\x5a\\x99\\x28\\xa8\\xa2\\x40\\xa0\\\n\\xc2\\xd3\\xf8\\x08\\xd2\\x71\\x6e\\x6a\\xf8\\x0a\\x2b\\x33\\xd4\\x13\\x30\\x6b\\\n\\x21\\x74\\x02\\x10\\xb0\\x06\\xda\\x60\\xc9\\x4c\\x10\\x50\\xa4\\x11\\x46\\xe6\\\n\\xc2\\x28\\xe9\\xe0\\x89\\xa9\\xac\\x92\\x2b\\xb0\\xba\\x46\\xbe\\x8b\\x69\\xe3\\\n\\x2a\\x01\\xb2\\x72\\x75\\x5b\\xc5\\x27\\xaf\\xa7\\xc0\\x44\\x07\\x46\\x14\\x4a\\\n\\x84\\x41\\x7b\\xf2\\x4d\\xf2\\xb0\\xcd\\xc6\\xa3\\x4a\\xc4\\x3b\\x75\\x4e\\x46\\\n\\x33\\xc9\\x4d\\x89\\x2c\\x83\\x85\\x1d\\xbc\\x57\\xed\\x79\\x27\\xe4\\xb1\\x32\\\n\\x6d\\xb0\\x48\\x3f\\xbb\\xbc\\xb7\\x46\\xc4\\xf8\\x22\\x80\\x17\\x0c\\x8e\\x7c\\\n\\xd9\\x7a\\xf9\\x86\\xab\\x8d\\x14\\x3b\\x0e\\x71\\xb0\\x31\\x14\\xf0\\x91\\xc8\\\n\\x20\\x28\\x01\\xbc\\xf5\\x24\\xbb\\xef\\x05\\xef\\x63\\x49\\xb5\\x98\\xa8\\xb4\\\n\\x85\\x7f\\xb3\\x3c\\x7a\\xe5\\xf6\\xc9\\x63\\x77\\xd1\\x1d\\xbb\\xf9\\xc2\\x2a\\\n\\xa3\\x20\\xe1\\xa4\\x0c\\xf5\\xf7\\x60\\x25\\xb7\\x0c\\xd5\\x32\\xa2\\x05\\x21\\\n\\xc2\\x8a\\x14\\x5f\\x5e\\x75\\xf7\\x10\\x00\\x08\\xc4\\x46\\xb4\\x83\\x5c\\x7d\\\n\\xf8\\xcc\\x08\\x42\\x0c\\xd1\\x00\\xcf\\x61\\x68\\xf4\\xf0\\x6d\\x86\\x84\\x20\\\n\\xa7\\xa3\\xd1\\x31\\xe7\\x3b\\xd7\\x8b\\x3e\\xd4\\xab\\x45\\x21\\x39\\x98\\xc1\\\n\\xcc\\x9e\\x93\\xd7\\x57\\x00\\x22\\xe0\\x95\\x18\\x7f\\x52\\x71\\x61\\x84\\x9a\\\n\\x05\\x90\\xa8\\x02\\x92\\x1b\\xfb\\x7c\\x58\\xbe\\x96\\x9a\\x87\\x82\\x89\\x19\\\n\\xc3\\x33\\xc5\\x4c\\x1e\\x74\\x0e\\x06\\x28\\x78\\x10\\x19\\x5f\\x28\\x46\\x45\\\n\\xfe\\x42\\x89\\x2d\\x2f\\x7f\\x6f\\xc4\\x07\\xe5\\x85\\x37\\x26\\x55\\xa5\\x8c\\\n\\x1d\\xba\\x62\\x31\\x49\\x1d\\x93\\x62\\xc4\\x3e\\x07\\xf8\\x3e\\x82\\x03\\x44\\\n\\xb2\\x09\\x08\\x3d\\x08\\x8e\\xbb\\x4c\\x45\\x12\\xe6\\xf5\\x25\\xbe\\xca\\x83\\\n\\x10\\x51\\x82\\x08\\xc3\\xa4\\x30\\x2c\\x12\\xae\\xc5\\x84\\xa1\\x38\\x00\\xe2\\\n\\x13\\x2a\\x04\\x41\\x13\\x42\\xb0\\x0b\\xfa\\xa0\\x01\\x22\\x80\\xaa\\x1f\\x00\\\n\\x72\\x01\\xea\\xb3\\xc1\\x29\\x52\\x50\\x04\\xe5\\xb9\\x6e\\xb3\\xf3\\xd9\\x58\\\n\\x33\\xcf\\x02\\x20\\xb5\\xa0\\xaf\\xb2\\xdd\\x46\\xf6\\x16\\xe1\\xc7\\x91\\x19\\\n\\xa2\\xc5\\x4a\\xe9\\x6f\\x51\\xf1\\x34\\x0e\\x56\\xaf\\x0a\\x92\\xfc\\x2b\\x74\\\n\\xcf\\x04\\xf2\\xd9\\x93\\x43\\x8d\\xf7\\xdd\\x0d\\x5c\\x32\\x80\\x1a\\xc2\\x81\\\n\\x45\\xc7\\xa4\\x57\\x85\\x17\\xf4\\xf3\\x0d\\x82\\x04\\x2c\\x1b\\xaf\\x38\\x70\\\n\\x23\\x5c\\x7c\\x02\\x2f\\x73\\x09\\xd6\\x03\\x0e\\x28\\xcf\\x5f\\x78\\xeb\\x02\\\n\\x8b\\x15\\x23\\xd3\\x57\\xe5\\xe4\\xe7\\xb2\\xc6\\x08\\x30\\x15\\x57\\xb2\\x41\\\n\\xd4\\x28\\x7b\\x3c\\x7b\\x94\\x12\\xfc\\x22\\x23\\xa1\\x21\\xcb\\xfc\\xf8\\xee\\\n\\x60\\xe0\\x28\\x50\\xa1\\xef\\xdc\\xec\\x3a\\x3b\\x9e\\x62\\x8d\\x70\\xa0\\x94\\\n\\x91\\x76\\xa3\\x0b\\x17\\x4a\\xf8\\x94\\x2a\\xf0\\x03\\x44\\x11\\x2e\\x29\\xb8\\\n\\x7b\\x8b\\x6c\\x6a\\x0b\\x6b\\x4a\\xaa\\xfb\\xc3\\x6a\\xf9\\xb5\\xe4\\x12\\x83\\\n\\xea\\x28\\x7c\\x70\\x6b\\x52\\xf8\\xdb\\x23\\x55\\x6a\\xb7\\x48\\x8d\\x0d\\xa1\\\n\\x42\\x38\\xc2\\x78\\xae\\xa4\\x36\\x12\\x28\\xa9\\xe8\\x28\\xd3\\x91\\x7e\\x95\\\n\\xa0\\x0c\\x01\\x85\\xb0\\x20\\x15\\x04\\x74\\xef\\x8a\\x49\\x3b\\x60\\xb5\\xa4\\\n\\xf7\\x83\\x40\\xd7\\x99\\x25\\x84\\xc5\\x78\\xd9\\xaa\\xe1\\x01\\x7f\\xc8\\x1e\\\n\\x14\\x96\\x0e\\x00\\x1f\\xc4\\x03\\xf4\\x86\\xfe\\xf8\\x17\\x11\\x2f\\x51\\x85\\\n\\xc4\\x49\\xf1\\xf5\\xeb\\xc2\\x4d\\xbc\\xb4\\x05\\x3a\\xd0\\x50\\x78\\xb8\\xe7\\\n\\x99\\xb8\\xf8\\x23\\x49\\x0e\\x2f\\x2c\\x3d\\x3a\\xa1\\xe2\\x27\\xbb\\x11\\x6e\\\n\\x3e\\x80\\x07\\xf5\\x31\\x34\\x67\\x8b\\xd9\\x89\\x54\\x4e\\x5e\\xc0\\x34\\xa3\\\n\\xf6\\x3c\\xa6\\xbb\\x22\\x30\\xcc\\x08\\xd7\\x52\\x9a\\x7f\\x1e\\x1f\\x52\\x2d\\\n\\x7a\\x51\\x28\\xec\\x13\\xd8\\x56\\x4c\\x99\\xec\\x80\\x62\\x39\\x56\\xe0\\xa3\\\n\\x01\\x39\\x6c\\xf0\\xac\\x32\\x7c\\x69\\xa4\\x62\\x9b\\x0b\\xb1\\x5c\\xf2\\xff\\\n\\x00\\x4d\\x22\\x95\\x23\\x24\\x08\\x5a\\xe1\\x0b\\x10\\x6b\\x01\\xee\\x8c\\x10\\\n\\x07\\x00\\xd4\\x17\\x0c\\x02\\xd0\\xca\\x05\\x32\\x5a\\x4a\\x77\\xdf\\xb3\\xaf\\\n\\x58\\xcd\\x44\\x20\\xd3\\xc9\\x58\\x75\\xca\\x3d\\x28\\xd3\\x4d\\x2f\\x42\\x14\\\n\\x9c\\x92\\x3f\\x67\\xa1\\x7c\\x6c\\x85\\x80\\x92\\x9d\\x34\\x0d\\x6a\\x00\\x39\\\n\\xf3\\xc3\\xe2\\x15\\xa4\\xcf\\xe2\\x8f\\x9c\\xba\\xd6\\x94\\xf2\\xa0\\xd4\\x38\\\n\\x31\\x59\\x8b\\x7d\\x01\\x64\\xe4\\xf4\\xf5\\xac\\x21\\x0c\\x20\\xaa\\xa4\\x4a\\\n\\x89\\xf1\\x74\\xf2\\x45\\xc8\\x43\\xa2\\x61\\x52\\x97\\x5d\\x08\\x6a\\x31\\x08\\\n\\x45\\x20\\x26\\x10\\x1c\\x85\\x0a\\x2e\\xe7\\xe8\\x79\\x0c\\xda\\xb8\\xde\\x8c\\\n\\x2a\\x21\\x08\\x6c\\x3a\\x09\\xe6\\xf9\\x4d\\x2c\\x28\\x64\\x18\\x02\\x0f\\xa2\\\n\\x34\\xf1\\x23\\x32\\x75\\x54\\x1e\\x86\\x15\\x1f\\x7f\\x03\\x3c\\x07\\x2a\\x00\\\n\\xd5\\xb4\\x2a\\x38\\x80\\x1c\\xeb\\x7c\\x62\\x25\\x50\\x61\\xce\\xae\\x84\\x07\\\n\\x0c\\xfa\\xc0\\x64\\x72\\x76\\x38\\x22\\xd2\\x6a\\x41\\x41\\xbe\\x0c\\x40\\x23\\\n\\x5b\\x03\\x0a\\x31\\x05\\x15\\xc3\\x8b\\x5f\\x0f\\xe3\\x50\\x82\\x93\\x48\\xbb\\\n\\x35\\x67\\x19\\x47\\xc0\\x90\\xc9\\xaa\\xe3\\x23\\x00\\x4f\\x23\\x26\\x6b\\x67\\\n\\x8a\\x47\\x10\\x63\\x48\\x02\\xd2\\x94\\x2e\\xce\\xac\\xbe\\x39\\xb0\\xc6\\x91\\\n\\x35\\xa1\\x12\\x0f\\x9f\\x49\\x8a\\x42\\x50\\x2f\\x57\\x0a\\x64\\xe1\\x61\\xec\\\n\\xac\\x6a\\x2c\\x58\\x31\\x86\\x54\\xc1\\x53\\x40\\xa4\\xf6\\x1e\\x08\\x8a\\x3d\\\n\\x1d\\x29\\x41\\x01\\x2f\\xb4\\x30\\x38\\x78\\x99\\xdc\\x68\\x22\\x9a\\x76\\x73\\\n\\x3a\\x30\\x5e\\x2c\\x11\\x89\\x3b\\x43\\xd5\\x14\\x41\\x74\\x9c\\xfa\\xde\\x00\\\n\\x88\\x00\\xeb\\x8f\\xa0\\x00\\x73\\xed\\x84\\xbe\\x02\\x52\\x64\\xa5\\xa9\\x4e\\\n\\xb1\\xce\\x19\\xbf\\x71\\xba\\x56\\x97\\x07\\x40\\x88\\x90\\x23\\x6b\\xf6\\xe2\\\n\\xf1\\x85\\xf3\\x70\\xf6\\x84\\xa6\\x1d\\x5a\\xbe\\x0a\\x46\\x5a\\xd0\\x00\\x91\\\n\\xd9\\x97\\xab\\x2e\\xbc\\x0a\\xe5\\x42\\x64\\xba\\x17\\x43\\xec\\xb7\\x7e\\x8f\\\n\\x87\\x9c\\x5e\\xd6\\xdc\\x11\\xd0\\x74\\x22\\xd3\\x94\\x0b\\xb2\\x6b\\x42\\xdd\\\n\\x3a\\x30\\xb4\\x87\\x25\\xf1\\x23\\x04\\x92\\xce\\xc5\\x92\\x43\\x81\\x92\\x61\\\n\\x77\\xcc\\x92\\x80\\xb2\\x19\\xb4\\x01\\x29\\xcb\\x70\\xfc\\xf1\\xfa\\x51\\x8d\\\n\\x86\\xe7\\xd6\\x06\\x2f\\xd3\\x8e\\xf9\\x4a\\xb6\\x81\\x87\\x23\\x40\\x98\\xe4\\\n\\x1e\\xba\\xe7\\x8f\\x1a\\x32\\x8c\\x52\\x68\\x4f\\x5f\\x33\\xef\\xa7\\xc5\\xce\\\n\\xab\\x0d\\x37\\x77\\x0e\\x97\\xe7\\xa2\\xcf\\x10\\x60\\x2b\\xc8\\x16\\x15\\x6c\\\n\\x4d\\x59\\x05\\xfe\\x3c\\xc8\\x60\\xa9\\x06\\x09\\x53\\x2a\\x63\\xcb\\xfa\\x78\\\n\\xdb\\xa0\\x25\\x55\\x97\\x51\\xe8\\x9f\\x88\\x39\\xeb\\xc2\\x37\\x40\\x22\\x1a\\\n\\xca\\x78\\xa7\\xae\\x21\\x95\\xf3\\x81\\x34\\x3a\\x78\\x8e\\xaf\\xbf\\xc7\\xf2\\\n\\x78\\x0d\\xd7\\x28\\x44\\x10\\x15\\x0a\\xc4\\xa3\\xff\\x00\\x60\\x2f\\x03\\x54\\\n\\x97\\xab\\x12\\x4f\\x41\\xf3\\xcc\\xd5\\xd0\\x68\\xba\\x81\\x08\\xfc\\x77\\xd9\\\n\\xbe\\x13\\x10\\x51\\x4a\\x47\\x10\\x05\\xa4\\x18\\x1a\\xf7\\xc3\\xb8\\x1a\\x76\\\n\\xd9\\xa8\\x86\\xb3\\x4f\\x7f\\x33\\xc6\\x1d\\xd1\\x18\\x49\\xd4\\x2c\\x6c\\xa1\\\n\\xed\\xa8\\x79\\x48\\x75\\x3a\\x61\\x0d\\x8a\\xad\\x3e\\x06\\xec\\x58\\xb4\\x8e\\\n\\x97\\xa3\\x40\\x54\\xb5\\xf2\\xca\\xcb\\xe5\\xa7\\x90\\x76\\x0f\\x5b\\xca\\xf2\\\n\\xe1\\xdb\\x92\\x3e\\x75\\xf2\\x8b\\x4c\\x28\\x23\\x1f\\xda\\x72\\x3e\\x11\\x90\\\n\\x8e\\x06\\x13\\x43\\xbf\\xc2\\xe7\\x17\\xc5\\x48\\x28\\x28\\x87\\xb3\\x19\\xe9\\\n\\xdf\\xd7\\xbe\\x10\\xac\\xff\\x00\\x84\\x14\\xcb\\x89\\x0e\\x27\\x58\\xf8\\x68\\\n\\x74\\x34\\x3e\\xa4\\x9a\\x8b\\x2c\\xf9\\xa7\\x89\\xbc\\xe1\\xc1\\xbd\\x8a\\x95\\\n\\x0c\\x1c\\x07\\x11\\xc9\\xb6\\x62\\xb0\\xd1\\x8e\\x66\\xf3\\xdc\\xec\\xf0\\x74\\\n\\x54\\x35\\x53\\x70\\x83\\x4b\\x82\\x4f\\xdf\\x5e\\x18\\x14\\x90\\x43\\x0a\\x46\\\n\\xba\\xe8\\x3f\\xc3\\xe9\\xf3\\x06\\xd6\\x27\\xaa\\x32\\x81\\xdb\\x84\\x0e\\x14\\\n\\xcc\\xf2\\xaa\\x05\\x75\\xe8\\x9f\\x15\\x70\\x77\\x3d\\x98\\xb5\\x62\\x90\\xc7\\\n\\x50\\x8c\\xe9\\x28\\xac\\x29\\x35\\xe0\\x14\\xd0\\x6c\\x2e\\xa6\\x57\\x24\\xc2\\\n\\x79\\x64\\x27\\xb0\\x8a\\x21\\x27\\x07\\x7e\\xbf\\xaf\\x86\\xab\\x45\\x64\\x1b\\\n\\x42\\x27\\x93\\x48\\x69\\xaa\\x78\\x73\\x01\\x53\\xa2\\x03\\xba\\x1a\\x35\\xac\\\n\\x94\\xd9\\xe0\\x1e\\x29\\x58\\x9e\\xe8\\x11\\x18\\xa4\\xbd\\x7a\\xd6\\x28\\xec\\\n\\xe1\\x8e\\x4e\\x08\\xfa\\x05\\xd9\\x9f\\x03\\xb0\\x25\\x00\\x45\\x38\\x3c\\x68\\\n\\x2f\\x24\\x93\\xc5\\x82\\xd0\\x48\\x20\\x1e\\xf7\\xef\\xb5\\x38\\x8c\\xf1\\x22\\\n\\x3b\\xc2\\x02\\x14\\x04\\xa7\\x22\\x12\\x24\\xef\\x89\\xc4\\x18\\xc6\\x42\\x08\\\n\\x88\\xb7\\x91\\x00\\xe9\\xf5\\x40\\xb4\\x98\\xcc\\x9e\\xa1\\x0d\\x24\\x52\\x28\\\n\\xeb\\x76\\xd6\\x8c\\x0b\\x15\\x30\\x4d\\x4e\\x99\\x55\\xc2\\xa4\\x90\\x04\\xce\\\n\\x89\\x0a\\xa0\\x00\\x22\\x19\\x74\\x3a\\x15\\x1a\\x3e\\xbe\\xdd\\x51\\x94\\xc2\\\n\\x45\\xc1\\x22\\x1a\\x83\\x1d\\x38\\x41\\xaa\\x40\\xea\\xa6\\x4e\\xb0\\x80\\xa1\\\n\\xa8\\x25\\x34\\x90\\x0b\\x6e\\x89\\x68\\xc4\\xf4\\x03\\xb2\\x72\\xc0\\x90\\xf2\\\n\\xec\\x1d\\xa3\\xd7\\xaa\\xce\\x7f\\x17\\x12\\x78\\x21\\x4a\\xd1\\xe8\\x91\\x15\\\n\\xa8\\x29\\xd6\\x9e\\x04\\xd2\\x49\\x59\\x40\\x09\\x49\\x2d\\xdb\\xa3\\x27\\x88\\\n\\x08\\x04\\xe9\\x38\\x49\\x38\\x72\\x49\\x9d\\x22\\xc4\\xc8\\x1a\\xbd\\x8a\\xbd\\\n\\xbb\\x7d\\xea\\x64\\xf5\\xe4\\xca\\x00\\x55\\x26\\x38\\x34\\x2e\\xeb\\xd0\\x4c\\\n\\xd5\\x06\\x65\\x3a\\x76\\xb1\\xfe\\x11\\xb6\\xbe\\xa6\\xd7\\x3e\\xb4\\x08\\x98\\\n\\x53\\x61\\x7d\\x9e\\xbf\\xc7\\x6d\\x16\\xd9\\x77\\x2a\\x87\\x9b\\xbb\\xf5\\xdb\\\n\\xe3\\xa7\\x4b\\x25\\x0a\\x76\\x12\\x5c\\x71\\xc6\\xd9\\xe5\\x86\\x2f\\xba\\xec\\\n\\xa0\\x83\\xd7\\xae\\x69\\xbe\\x4c\\xae\\x8a\\x10\\x56\\x7a\\xe9\\xcf\\xc7\\xd9\\\n\\xe3\\xf6\\xe3\\x49\\xd8\\x96\\x62\\x3b\\x4c\\x7e\\xbe\\x24\\xd1\\x4f\\x48\\x3a\\\n\\x60\\x87\\xa6\\x67\\xd2\\x43\\x76\\x71\\x40\\xb2\\xd5\\x25\\xf8\\xee\\xe4\\xf8\\\n\\x4e\\x84\\x28\\x8c\\x54\\x78\\x6b\\xef\\x43\\xee\\x1e\\x35\\x69\\x2a\\xfa\\x86\\\n\\x26\\x43\\x5c\\xf7\\xcb\\xe2\\xc0\\x81\\x1c\\x07\\x5e\\x72\\x70\\x64\\xef\\xf1\\\n\\xe2\\x0a\\xf4\\x74\\xd7\\x82\\x63\\x3d\\x1b\\x6d\\x2c\\x0d\\x66\\x07\\xbc\\x42\\\n\\x0c\\x60\\x4d\\x1e\\x3f\\xc4\\x4d\\x88\\xb4\\x1d\\x57\\xd8\\xa2\\x3d\\x25\\xbc\\\n\\xce\\x2a\\x2a\\xc5\\xd1\\x46\\x84\\x13\\x7a\\xdb\\xea\\xb3\\x9e\\x71\\xc1\\xa4\\\n\\x33\\xe3\\xb3\\x0a\\x2d\\x9b\\xa5\\xb7\\xc2\\x9d\\x10\\x7f\\xe8\\x43\\x1d\\x37\\\n\\xaf\\x3d\\x78\\xc8\\x1e\\x09\\xe7\\x01\\x98\\x8e\\xd0\\x7a\\xbe\\x69\\x21\\x88\\\n\\x57\\xa8\\xcb\\x01\\x5d\\x2c\\xdb\\xe0\\xbf\\xd8\\x0d\\x56\\x83\\x8a\\x3d\\xcd\\\n\\xe8\\xcf\\xe4\\x89\\x5c\\xa8\\x05\\x4e\\x81\\xfa\\x25\\x8a\\x6f\\x1a\\x96\\x30\\\n\\x45\\x9a\\x14\\x14\\x53\\x45\\x84\\x5f\\x61\\xe1\\x33\\x69\\xd1\\x37\\x4b\\xf2\\\n\\x21\\xab\\x7d\\x8e\\x6d\\xa0\\x96\\x56\\x89\\x6d\\x41\\x9c\\x14\\x39\\x2f\\x71\\\n\\x23\\x2e\\xd5\\x60\\x57\\xaf\\x5f\\x6e\\x5e\\x4a\\x78\\x2c\\xb3\\x45\\x18\\x51\\\n\\xf4\\x78\\x94\\x9c\\xa2\\x1d\\x03\\xb6\\xbf\\x9d\\xe7\\x3c\\x53\\xa9\\x98\\x50\\\n\\x00\\x28\\xfd\\x5d\\xbf\\xe3\\x3c\\x3b\\xbb\\x55\\x60\\x53\\x33\\xfb\\xff\\x00\\\n\\x52\\x11\\xd8\\x0d\\x86\\xfb\\xb5\\x7f\\xcf\\xfc\\x67\\x88\\xb8\\x48\\xc3\\x20\\\n\\x43\\x8e\\x7f\\xf3\\x0f\\x3b\\x14\\x08\\x01\\x40\\x8c\\x1d\\x75\\x2b\\x59\\x82\\\n\\x6f\\x8d\\x20\\x48\\xab\\x8f\\x6a\\xbf\\xdf\\x2b\\xae\\xcf\\x2b\\xed\\x45\\xab\\\n\\xed\\x46\\x26\\x6b\\xfb\\xf5\\x5f\\x01\\xb0\\x6d\\xa7\\xb5\\x26\\xdb\\xff\\x00\\\n\\xc1\\xe0\\x08\\x06\\x5c\\x7f\\x19\\xff\\x00\\x0b\\xe0\\xa5\\xe9\\x0f\\xf7\\xe5\\\n\\xb1\\x28\\x1e\\xf1\\x03\\xec\\xfb\\xe3\\xaf\\x7b\\xb1\\x40\\x2c\\x6f\\x03\\xfc\\\n\\xff\\x00\\x5e\\x4b\\x3e\\xd2\\xa7\\x7f\\x6e\\xfe\\xff\\x00\\xe1\\x11\\x19\\xb8\\\n\\x8a\\x29\\xc3\\x32\\x2e\\x1e\\xbc\\x24\\xf7\\x10\\xf5\\x9c\\x48\\x77\\x0c\\xc3\\\n\\x9e\\x0b\\xc5\\x43\\x48\\x04\\xf7\\xf5\\xff\\x00\\xaf\\x6d\\x79\\xb0\\xc8\\x64\\\n\\xdf\\xfd\\xb3\\xe3\\xe3\\xf1\\xbc\\x6b\\xad\\xfe\\xc7\\xe1\\xe0\\xd2\\xe1\\xd1\\\n\\xe8\\x0e\\x9e\\x32\\xde\\x13\\x52\\x0c\\x49\\xca\\x89\\xc9\\xfb\\xbe\\x0c\\xa6\\\n\\xc7\\x04\\xe9\\xa0\\x9b\\x33\\xe4\\xb9\\xaf\\x9c\\x2e\\xb4\\xe7\\x41\\x47\\x9d\\\n\\xbf\\xf9\\xe8\\x8a\\x3c\\x42\\x26\\x35\\xaf\\x5e\\xae\\x4f\\x66\\x3e\\x08\\xda\\\n\\x09\\x2d\\x57\\x19\\x81\\xc3\\xe1\\xee\\xef\\x8a\\x04\\x98\\xa0\\x47\\xb9\\x6d\\\n\\xd0\\x7e\\x5f\\x9e\\x15\\xcb\\x7a\\x3d\\x0b\\xdb\\xf5\\x9f\\x3d\\x7b\\xf0\\xf1\\\n\\x31\\x02\\x50\\xb5\\x2d\\xaf\\x4f\\x87\\xc3\\xc7\\x55\\x40\\x2f\\x14\\x32\\xdd\\\n\\x8f\\x7e\\xef\\x93\\xff\\x00\\xf0\\xb1\\x3f\\x9e\\xee\\x05\\x75\\xbb\\x41\\xc5\\\n\\x30\\xa8\\xa9\\x23\\x57\\x29\\xaf\\x5a\\xf9\\x17\\x72\\xd7\\xbf\\xc0\\x6e\\x09\\\n\\xaf\\xd6\\xfd\\x44\\x1e\\x6b\\x16\\x2b\\xd4\\xbd\\x3f\\xcd\\xf1\\x4f\\x64\\x60\\\n\\xae\\xf4\\x8e\\xe9\\x3f\\x3c\\x6c\\x35\\x0e\\xfb\\xc7\\xfb\\x36\\x17\\x3b\\xbd\\\n\\xf0\\xb5\\xf4\\x5f\\x53\\x13\\x32\\x7f\\xaf\\x53\\xcb\\xda\\xab\\x07\\x9e\\xc2\\\n\\x82\\x18\\x19\\xce\\xbf\\x91\\x28\\xea\\x07\\x7e\\xbb\\xbd\\xde\\xff\\x00\\xdf\\\n\\x85\\x42\\x00\\x0a\\xf0\\x60\\xc4\\xa1\\x70\\x73\\xe8\\xf9\\x89\\x54\\x46\\xca\\\n\\x8d\\xf7\\xc6\\xcf\\xe3\\x9b\\xbe\\x6d\\xd5\\x05\\x8b\\xed\\x99\\x40\\x9e\\x34\\\n\\x14\\x45\\x95\\x84\\x0a\\x95\\x00\\x7d\\x27\\xad\\x69\\x07\\x48\\x39\\x62\\x01\\\n\\xcf\\x9d\\xcd\\xf7\\x99\\xe2\\x18\\x63\\xb7\\xb3\\x1b\\x9e\\xa7\\xa9\\xd6\\xdf\\\n\\x2d\\x59\\x72\\x14\\x00\\x90\\xe8\\x2f\\x8f\\xb2\\x00\\x68\\xab\\x5a\\xaa\\xbf\\\n\\x1f\\xef\\xc8\\x83\\x3a\\x8e\\x09\\xf6\\x52\\xd5\\x2c\\xe7\\xee\\xf8\\x19\\x15\\\n\\x27\\x59\\x65\\x9b\\x2b\\x7f\\xeb\\x99\\xe5\\xce\\x65\\x80\\x98\\xcc\\x45\\x22\\\n\\x23\\x6f\\xf1\\x23\\xf1\\xe9\\xfc\\xb8\\x1c\\x20\\xa1\\xff\\x00\\xad\\x20\\xb3\\\n\\x20\\xbd\\x43\\xdf\\xb4\\x7c\\x26\\x9b\\x2a\\x0a\\x2a\\x56\\xdf\\x77\\xf9\\xfc\\\n\\xcf\\x06\\x84\\xb3\\x5a\\x6e\\xbd\\xcb\\xae\\xcc\\xf5\\xe1\\x88\\x54\\xa2\\x4c\\\n\\x35\\x3c\\x56\\x25\\x73\\x4f\\x0f\\xe2\\xbe\\xd5\\x1d\\x7a\\x83\\x0a\\x1d\\x7b\\\n\\x99\\xe3\\xa1\\x44\\x0b\\x7d\\x2b\\xfe\\x7f\\xd6\\x9c\\x7c\\x74\\xb3\\x69\\x76\\\n\\xd9\\x3e\\xfc\\x63\\xf9\\xe2\\x88\\x16\\x47\\x35\\x6b\\xe7\\xff\\x00\\x7b\\xf1\\\n\\xbb\\x68\\x22\\xff\\x00\\x9f\\xfe\\xf9\\x09\\x3c\\x00\\x7d\\x68\\xfb\\xb5\\xfe\\\n\\x9f\\x7e\\x77\\x99\\x08\\x9f\\x7f\\x6b\\xf3\\xd4\\xf2\\x00\\x04\\x10\\x7d\\xe2\\\n\\xff\\x00\\xb5\\x5f\\xbf\\xe6\\xe9\\xd0\\x2b\\x20\\xf5\\xf9\\xff\\x00\\x2b\\xfe\\\n\\x27\\x9f\\xff\\xc4\\x00\\x21\\x10\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\n\\x01\\x01\\x01\\x01\\x01\\x00\\x00\\x01\\x11\\x21\\x00\\x31\\x41\\x51\\x61\\x71\\\n\\x91\\x81\\xa1\\xb1\\xc1\\xff\\xda\\x00\\x08\\x01\\x01\\x00\\x01\\x3f\\x10\\x07\\\n\\x56\\xfd\\xb0\\x43\\x95\\x4a\\x88\\x57\\x1c\\xad\\x79\\x36\\x47\\xb4\\x03\\x29\\\n\\x1a\\x91\\xbc\\x6a\\x84\\xa3\\x0d\\x43\\x73\\x40\\xc2\\x47\\x38\\x0d\\x7d\\x9e\\\n\\xf0\\x88\\x57\\x08\\xb0\\x5d\\x72\\x4b\\xe1\\x3d\\x93\\x86\\x54\\x10\\x25\\x92\\\n\\xea\\x01\\xee\\x9e\\xaa\\x26\\x0b\\xc4\\x16\\x39\\x1c\\x32\\xec\\x94\\x9a\\x02\\\n\\x29\\x40\\x29\\x26\\x35\\x41\\xdc\\x87\\x9a\\x13\\x22\\x16\\x70\\xc6\\xcf\\x1c\\\n\\x20\\x2a\\x0c\\xd8\\xc1\\xa5\\x16\\x5a\\x1d\\x08\\x17\\x3b\\x25\\x08\\x78\\x65\\\n\\x44\\x49\\x27\\xa6\\x82\\x30\\x99\\x0d\\x8f\\x43\\x37\\x47\\x4d\\x42\\xcd\\x57\\\n\\xd0\\x22\\x05\\x5e\\x6a\\xca\\x42\\xd5\\x82\\x13\\x50\\x7c\\x44\\xf3\\x62\\xd2\\\n\\x0d\\xa0\\x0b\\x5d\\xf3\\xc1\\x18\\x46\\x24\\x54\\x24\\x1b\\x30\\x00\\x89\\x06\\\n\\xaa\\x51\\x68\\x4c\\x0c\\x83\\xdf\\xac\\x80\\x00\\x43\\xd1\\x2d\\x53\\xcc\\xf6\\\n\\x0c\\xe9\\x0e\\x51\\x6c\\x88\\x6a\\xfb\\xd3\\x6a\\x9c\\x59\\xc4\\x78\\xc4\\xea\\\n\\x04\\x4b\\xde\\xb9\\x65\\x60\\x0c\\x56\\x49\\xad\\x31\\x30\\xc9\\x7d\\x25\\x98\\\n\\x80\\x81\\x4f\\xfc\\x11\\x96\\x99\\xb6\\x94\\xd6\\x28\\x5e\\x0a\\x8f\\x1e\\x9b\\\n\\x6a\\x61\\x62\\x5f\\x01\\x14\\xfb\\x5b\\x41\\x21\\x0c\\x6a\\x55\\xcf\\x22\\xd3\\\n\\xf0\\x57\\x0f\\x2f\\x03\\x78\\x13\\x02\\xa1\\x43\\xab\\x55\\x6a\\xe6\\x70\\x59\\\n\\x93\\xdf\\xf2\\x28\\xf8\\xae\\xec\\xce\\xb2\\xdf\\x7e\\xe9\\x58\\xa5\\x39\\x80\\\n\\xab\\xc3\\x29\\x1c\\xe8\\x26\\x1c\\x78\\x71\\xc0\\xde\\x3b\\x08\\x1b\\x85\\x18\\\n\\x4b\\xe1\\x52\\xb6\\xfb\\xf2\\x08\\xe1\\x78\\x45\\x1e\\x9a\\x22\\xa1\\xae\\x8e\\\n\\xf3\\x16\\x3f\\x18\\x61\\x1c\\x13\\x1e\\x91\\x08\\xa8\\x2d\\xfe\\x2c\\x31\\x14\\\n\\xc2\\x40\\x04\\x87\\x34\\xe5\\xe4\\xb9\\xcc\\x75\\x5d\\xc0\\xe2\\xa0\\xa1\\x4b\\\n\\x12\\x4c\\xee\\x4d\\xb6\\x99\\xbf\\xd0\\x32\\xf9\\x09\\xad\\x1d\\x5b\\xc3\\x29\\\n\\x7e\\xe3\\xe8\\x82\\x40\\xdb\\x90\\x30\\x20\\x30\\x70\\xa5\\x27\\x51\\x15\\x82\\\n\\x4a\\x50\\xfb\\x4d\\x2a\\x2d\\x0d\\x1c\\x48\\x9c\\x9c\\x1a\\x41\\x50\\xea\\x55\\\n\\xfd\\x03\\x81\\xa3\\x0e\\x41\\x5d\\xac\\x4b\\x17\\x51\\xf5\\x80\\x68\\x1b\\xd8\\\n\\x85\\x1f\\x5c\\xaf\\x9c\\x90\\xfe\\x01\\x16\\x82\\x7f\\xe9\\x89\\xa2\\x64\\x77\\\n\\x02\\x96\\x5e\\xa5\\x01\\x08\\x96\\x06\\x22\\x00\\xa3\\xee\\xb7\\x80\\xf2\\x36\\\n\\xa5\\x08\\x29\\x5f\\x00\\x35\\x33\\xc8\\x7e\\xd5\\x0d\\x95\\x65\\x58\\x05\\x44\\\n\\x2c\\x22\\xa5\\x31\\x20\\x63\\x53\\x95\\xc3\\xd2\\xf6\\xe0\\xee\\x16\\x31\\x44\\\n\\x36\\xc4\\x11\\x26\\x70\\xf0\\xc1\\x1d\\xa4\\xc6\\x85\\x5a\\x06\\x88\\x78\\xda\\\n\\x12\\x6f\\xcd\\x58\\x40\\x16\\xd1\\xf4\\x61\\x78\\xe8\\x27\\x46\\x03\\xc4\\xf5\\\n\\x11\\x5a\\x80\\x40\\xa6\\x9a\\x0c\\x58\\x31\\xb0\\x18\\x50\\x02\\xc8\\x1b\\x8b\\\n\\xe3\\xc5\\xc8\\x0f\\xe4\\x32\\xbc\\x65\\x78\\x84\\x68\\x9a\\x84\\x03\\xd4\\x98\\\n\\xf6\\x53\\xa7\\x6d\\xed\\x28\\x07\\xcf\\x8f\\x07\\x9d\\xca\\x01\\x2f\\x00\\xbd\\\n\\x42\\x2a\\x12\\x69\\x79\\x40\\x55\\x9b\\x12\\x98\\x59\\x62\\x14\\xc8\\xbd\\x0c\\\n\\x94\\x29\\x71\\x0e\\x5d\\x18\\x0f\\x01\\x4d\\x5e\\xb8\\x71\\x0a\\x66\\xa8\\x64\\\n\\x0d\\x00\\x16\\x56\\x18\\x57\\x49\\x0b\\x46\\x9e\\x95\\x34\\x2a\\xd2\\x8e\\x73\\\n\\x8d\\x74\\x18\\xa6\\x95\\x06\\x96\\x58\\x98\\x36\\x31\\xc0\\x92\\xc3\\xee\\xd8\\\n\\xab\\x2b\\x48\\x0c\\x07\\xa9\\x55\\xbe\\x38\\x08\\x42\\xaa\\xc1\\x81\\x54\\x16\\\n\\x20\\xb5\\x0d\\xc9\\x83\\x80\\xb1\\x56\\x8e\\x5c\\x70\\xcc\\xb2\\x24\\xb6\\x31\\\n\\x81\\x89\\x23\\x04\\x8b\\xfa\\x8b\\xba\\x09\\x22\\x17\\xa9\\xa9\\xf0\\xe2\\xd6\\\n\\xbf\\x00\\xf9\\x14\\xb1\\x26\\x60\\x85\\x4f\\x7f\\x51\\x88\\xf1\\x50\\x42\\x57\\\n\\x83\\x20\\xa1\\xdc\\x5b\\x2f\\x06\\x55\\xed\\x81\\x10\\x8e\\x74\\x0d\\xbf\\x09\\\n\\xa0\\x6d\\x7d\\x59\\x6c\\x81\\x55\\x84\\x95\\x0c\\x01\\x14\\x04\\x24\\xb4\\x9b\\\n\\x23\\x54\\x69\\x6a\\x5b\\x69\\xe3\\x10\\x84\\x14\\x40\\x22\\x09\\x10\\xb6\\x60\\\n\\xbd\\x24\\x8c\\xaa\\x8b\\x06\\x52\\x22\\x08\\xcd\\x41\\x7b\\x00\\x62\\xb1\\x22\\\n\\x08\\x34\\x01\\x24\\x91\\x02\\x44\\xa5\\x8c\\xb8\\x69\\x48\\x85\\x6b\\x79\\x40\\\n\\x85\\x48\\x18\\xc7\\xd2\\xe2\\x87\\x45\\xde\\x47\\x51\\x2d\\xa5\\x97\\x8e\\xee\\\n\\x25\\xf4\\x88\\xcc\\x15\\xd1\\xf0\\x58\\x25\\x21\\x48\\x86\\x79\\x10\\x3b\\x43\\\n\\x8e\\x02\\x40\\x31\\xae\\x5a\\x71\\xfd\\xa1\\xf7\\xc5\\x4c\\xc4\\x24\\xae\\x58\\\n\\x47\\xdc\\xac\\x19\\x79\\xfb\\x03\\x15\\x5f\\x06\\xbb\\x72\\x46\\x92\\x93\\xb8\\\n\\x3d\\x2f\\x4e\\x3f\\x59\\x53\\xac\\xfa\\x31\\xb7\\x30\\xd5\\xc3\\xa2\\x09\\x30\\\n\\x95\\xb0\\xac\\x04\\x38\\x08\\xc1\\x44\\x87\\x0c\\xe4\\x8f\\x88\\xfa\\x9e\\x19\\\n\\x61\\x8c\\xc8\\xae\\x82\\x4d\\x96\\x80\\x95\\x01\\x60\\x02\\xa3\\xb6\\xac\\x63\\\n\\xb7\\x70\\x5a\\x84\\xb4\\x61\\x88\\x83\\x5c\\x0d\\x56\\xbe\\x0e\\x61\\x54\\x5a\\\n\\x92\\x31\\x2b\\x8a\\x02\\x18\\x1c\\xf1\\x0f\\x3b\\x51\\xa8\\x34\\x21\\x5a\\xb9\\\n\\x9c\\x7e\\xf5\\xd1\\x8d\\xb2\\xd3\\xa0\\x54\\xe7\\xc5\\xe4\\xe4\\x80\\xbe\\xa5\\\n\\xd9\\x5b\\x1f\\x64\\x15\\x5e\\x25\\x41\\xa0\\x27\\xf0\\x6b\\x97\\x85\\x0d\\x6c\\\n\\x63\\xfa\\x22\\xcf\\x6a\\xa3\\x01\\xd7\\x43\\x18\\x86\\x89\\x8f\\xb1\\x00\\x39\\\n\\x49\\xa8\\xb1\\x3e\\x28\\x31\\x8a\\x21\\x4c\\x05\\x50\\x44\\x02\\x06\\x38\\x10\\\n\\x37\\xc0\\x12\\x57\\x5c\\x76\\x28\\xb8\\x2e\\xc0\\x01\\x54\\x1a\\x5f\\x82\\x13\\\n\\x7c\\xbc\\x08\\x23\\x44\\xd1\\xa9\\x69\\x11\\x3d\\xde\\x6c\\x19\\x2a\\x39\\x58\\\n\\xbe\\x89\\x58\\x37\\xd9\\x86\\x45\\xfb\\x65\\x91\\x03\\x01\\xd4\\xa6\\x17\\x1d\\\n\\x0e\\x3e\\x94\\x85\\x20\\x30\\x18\\x4a\\x11\\x44\\x79\\xa3\\xa2\\x9d\\x11\\x48\\\n\\x15\\xea\\x2a\\xf5\\xe4\\x22\\xb1\\x38\\x32\\xbc\\x1f\\x55\\x9e\\x20\\xb2\\x28\\\n\\x65\\x56\\xb5\\x42\\xb6\\x82\\x8f\\x19\\xef\\x40\\x90\\x12\\xc9\\x6e\\x2c\\x00\\\n\\x4c\\x44\\x16\\x5d\\x24\\x47\\x58\\x19\\x88\\x43\\x12\\xa5\\xe1\\x84\\xce\\xa7\\\n\\x9b\\x6c\\xa1\\x2a\\xd5\\x72\\x8e\\x6f\\x25\\x22\\x8e\\x29\\x83\\x5a\\x09\\x58\\\n\\x7e\\xc1\\x8a\\xd7\\x4a\\x13\\xde\\xca\\x60\\x30\\x4d\\xf2\\xaa\\x52\\x3e\\x88\\\n\\x01\\x12\\x48\\xfd\\x9e\\xba\\xd4\\x24\\x41\\x5b\\x1a\\x36\\x14\\x8f\\x34\\xf4\\\n\\xa7\\x11\\x72\\xf5\\x42\\x13\\x55\\x0a\\x60\\x70\\x42\\xb3\\x47\\x84\\xe4\\xc5\\\n\\xec\\x4d\\xa5\\xb9\\xe2\\x6a\\x2a\\x8d\\x81\\xe2\\xfc\\x9e\\x01\\x50\\x00\\x8b\\\n\\x40\\x70\\xa0\\x7c\\x04\\xb4\\x68\\xbc\\x02\\xb8\\x0c\\xd9\\x01\\x31\\x5e\\x01\\\n\\x45\\xd0\\xa8\\xf0\\x18\\x00\\xa8\\xed\\xfa\\x45\\x37\\xf1\\x00\\xc0\\xbc\\x5c\\\n\\x98\\xb1\\xa0\\x2c\\xf8\\x1a\\x20\\xa5\\x18\\x07\\x4a\\x2e\\x5e\\x03\\x54\\x68\\\n\\x32\\x91\\x2a\\x47\\xdc\\xa1\\x1a\\x4d\\x24\\x45\\x54\\x02\\x30\\x44\\xc6\\x25\\\n\\x4c\\x3c\\xd1\\x80\\x10\\x39\\x10\\xaa\\x59\\xd6\\x61\\x92\\x0f\\x5b\\x8d\\xca\\\n\\xde\\x11\\xc2\\x2a\\xf6\\x08\\x8a\\xa3\\x43\\x02\\xc3\\xd2\\x1e\\x1d\\x51\\x01\\\n\\xb4\\xab\\x13\\x2b\\xa1\\x0f\\x58\\x42\\x2f\\x21\\xc5\\xae\\x03\\xda\\xc8\\x6b\\\n\\x55\\x14\\x82\\x3d\\xa8\\x91\\x07\\x29\\x08\\x69\\xca\\x2c\\x16\\xab\\xc2\\x20\\\n\\xe9\\x71\\x86\\x2a\\x86\\xfc\\x57\\x9e\\x46\\x96\\x90\\xe4\\x2e\\xb0\\x5e\\xc0\\\n\\xa4\\xe3\\xd5\\xa5\\x3f\\xf9\\xc7\\x48\\xab\\x56\\xc1\\x98\\x9a\\x13\\x41\\x06\\\n\\x4a\\x81\\x00\\x96\\xe2\\x2d\\xa4\\x52\\xe5\\x4e\\xa0\\x91\\x7f\\xed\\xb1\\x22\\\n\\x68\\x29\\x12\\x53\\x41\\xe2\\x83\\x0a\\x48\\x0b\\x70\\x50\\xd4\\x69\\x7c\\xb4\\\n\\xe2\\x65\\xcb\\x61\\xcf\\x04\\xa1\\x4e\\x81\\x47\\x82\\x49\\x53\\x07\\xe9\\x13\\\n\\x74\\x68\\x45\\xd3\\xa7\\x33\\x10\\x01\\xca\\x6d\\xaa\\x3c\\x08\\x20\\x60\\xec\\\n\\xb1\\x49\\x86\\xad\\x60\\x80\\xa5\\x70\\x54\\x08\\x3c\\x8d\\x00\\x35\\xe8\\x0e\\\n\\x13\\x70\\x7a\\x59\\x40\\xa1\\x4d\\xda\\x48\\xdf\\x91\\x4d\\x3e\\xac\\x91\\x7c\\\n\\xc6\\xeb\\x1c\\xd8\\x85\\x46\\xa0\\x13\\xab\\x9a\\x9e\\xf2\\x82\\x7a\\xa8\\xa0\\\n\\x6c\\x82\\x63\\x78\\xb5\\x55\\x68\\x1a\\xd1\\x6c\\xd7\\x41\\x95\\x60\\x60\\x25\\\n\\x64\\xaa\\x98\\x8d\\x1a\\x86\\x74\\x10\\x3f\\x34\\x3e\\x60\\xf4\\x3a\\x2f\\x4c\\\n\\x40\\x80\\xc2\\xb9\\x46\\x0a\\x30\\xa6\\x78\\x57\\x74\\x19\\x65\\x14\\x19\\x92\\\n\\xf5\\x02\\x27\\x23\\x94\\x17\\x11\\x82\\x96\\xa5\\x4c\\x3f\\xfe\\xb9\\xcd\\x81\\\n\\xa5\\xba\\x5d\\x99\\x58\\xdd\\x7c\\xf8\\x98\\xf2\\xa5\\x69\\xf2\\x77\\x45\\x28\\\n\\x88\\x4b\\xcb\\x31\\x23\\xc5\\xe8\\x03\\xd7\\xba\\x81\\x09\\xa2\\x6b\\x59\\xb7\\\n\\x11\\x5c\\xca\\xb6\\x68\\x5e\\x85\\x12\\x2b\\xd5\\x57\\x26\\xa5\\x63\\x2d\\x01\\\n\\x47\\x94\\xb1\\x16\\x32\\x7f\\x90\\x18\\xe1\\x02\\x5e\\x2c\\x56\\xb7\\x08\\x12\\\n\\x28\\x05\\xb2\\x6a\\x41\\x2e\\x90\\x8d\\x75\\xa1\\x14\\xba\\xd1\\xe1\\xf0\\xfa\\\n\\xe9\\x45\\x79\\xa8\\x04\\x5a\\xcf\\x14\\x14\\x3a\\x11\\x5c\\xfb\\x0c\\xc9\\x10\\\n\\x5a\\x1d\\x34\\xa8\\x52\\x84\\x8e\\x13\\xda\\x23\\xb1\\xc7\\x89\\x0d\\x8f\\x9f\\\n\\x78\\xda\\xd0\\xd0\\xd0\\xea\\xd7\\x48\\xbe\\x4f\\xd0\\x20\\x5c\\x35\\x7e\\x2a\\\n\\x7c\\xc8\\x11\\xd2\\xe8\\xa2\\xc8\\x9c\\x85\\xf1\\xb1\\xeb\\x69\\xc8\\x6d\\xca\\\n\\xff\\x00\\x1e\\x99\\xee\\xda\\x20\\x88\\xcb\\x07\\xa8\\xe4\\x2b\\xd5\\x04\\xed\\\n\\x08\\x53\\x4d\\x4f\\xe8\\xdf\\xdf\\xee\\xb5\\xe6\\xad\\x1a\\x9c\\x52\\x49\\x5a\\\n\\x7e\\x44\\x39\\x89\\x1a\\x01\\xd3\\x55\\x84\\x86\\xde\\x97\\x70\\x54\\x92\\xd5\\\n\\x15\\x36\\x40\\xb5\\xba\\x15\\xd8\\x35\\x08\\x04\\x02\\xd4\\x45\\xc2\\xc2\\xb0\\\n\\x95\\x81\\x28\\x11\\xe9\\x70\\xee\\xfa\\x70\\x41\\x94\\x7c\\x1e\\xd0\\x96\\x6c\\\n\\x20\\x56\\x11\\xd0\\x39\\x91\\x28\\x54\\x52\\x80\\x08\\x04\\x50\\x1a\\x3d\\x23\\\n\\xd7\\x1d\\x69\\x28\\xc2\\x85\\xa0\\xac\\xc8\\x21\\x59\\xdb\\x86\\xe4\\x5a\\x24\\\n\\x01\\x14\\x94\\x0a\\x31\\x30\\xcb\\x58\\x01\\x70\\x08\\xa6\\xb0\\x78\\x58\\xb2\\\n\\xc5\\x0c\\x0c\\xda\\x02\\x2f\\xd0\\x99\\xc3\\x92\\x03\\x80\\x21\\x2a\\x01\\x08\\\n\\x10\\x15\\x22\\x3c\\x1e\\xe1\\x35\\x28\\x20\\x52\\x3a\\xd1\\x7c\\x03\\x84\\xa0\\\n\\x9d\\xa2\\x16\\x80\\x8e\\x28\\xa0\\x41\\xe6\\x8a\\x1a\\x84\\x70\\x92\\xa9\\x08\\\n\\x9a\\xdb\\x13\\x1f\\x14\\x0a\\x82\\x04\\xd0\\x4b\\xe3\\x08\\xa6\\xa9\\x14\\x14\\\n\\x54\\xb8\\xb1\\x59\\x71\\x8b\\x91\\xf2\\xa0\\xf2\\x8a\\x9d\\x17\\xa3\\xf9\\x1d\\\n\\x94\\x71\\x75\\x88\\xb4\\x0c\\x5e\\xe8\\x00\\x02\\xfa\\x11\\x86\\x04\\xb2\\x42\\\n\\x82\\x10\\x60\\x0b\\xb6\\x8c\\x0a\\x16\\x41\\xa1\\x01\\x14\\x20\\x28\\x16\\x1c\\\n\\x21\\x5a\\x14\\x47\\x3b\\xdf\\xdc\\xa1\\x36\\xe0\\x0a\\x18\\xd4\\x3c\\xf5\\x8b\\\n\\x08\\xc9\\x09\\x6c\\x73\\x61\\xe0\\x6b\\x8a\\x59\\x2f\\x96\\xe0\\xa0\\x14\\xf6\\\n\\x96\\x02\\x55\\x4a\\x94\\xdb\\x19\\x52\\x40\\xd0\\x22\\x82\\x20\\x8a\\xb4\\x84\\\n\\x35\\xfb\\x25\\x68\\xa1\\x0a\\x3e\\xd0\\xf2\\x69\\x04\\x09\\x7d\\xb9\\x25\\x11\\\n\\x34\\xa7\\xe3\\x9c\\x0a\\xca\\x7e\\xbc\\xc9\\x81\\x4e\\x36\\x0b\\xc2\\xd5\\x80\\\n\\x8c\\x32\\x50\\xfe\\x16\\x47\\xc2\\x8d\\xec\\x6a\\x92\\xde\\xa1\\x57\\x66\\xf6\\\n\\xa9\\x77\\x9e\\xa3\\x70\\xa5\\x03\\x54\\x80\\x14\\x19\\xe0\\x83\\x61\\x54\\x95\\\n\\x62\\xb0\\x84\\xdc\\x3a\\x84\\xa1\\x6b\\xc0\\x92\\x22\\xb7\\x24\\xb6\\xc5\\x65\\\n\\xbb\\xc7\\xc0\\xbd\\x0c\\xaa\\x0f\\x01\\xcf\\x0c\\x40\\xc9\\xf7\\xc0\\x83\\xfe\\\n\\xcf\\x93\\x31\\xba\\x51\\xc1\\x65\\x05\\x01\\x1f\\x46\\xde\\x72\\x80\\x52\\x41\\\n\\x11\\xc0\\x00\\xb6\\xa3\\xaf\\xd5\\xe6\\xca\\xc1\\x48\\xc3\\x4f\\x05\\x11\\x20\\\n\\xc4\\x90\\x30\\x0a\\x59\\xa8\\xd0\\x14\\xd3\\x86\\xdd\\x77\\xa4\\x90\\x04\\x27\\\n\\x08\\xb1\\xa1\\xc7\\x01\\xcb\\xbd\\x76\\xe7\\xb0\\x9e\\x78\\xaf\\x84\\x64\\xb8\\\n\\xd5\\x7b\\x11\\x06\\x45\\x25\\x6e\\x76\\xf6\\x38\\x80\\x02\\xb4\\xaa\\x53\\xa4\\\n\\x25\\xae\\x2d\\x11\\x60\\x59\\xe1\\x34\\xf4\\xc3\\xdb\\xe8\\x32\\x5d\\x83\\x7f\\\n\\xe7\\x03\\xfc\\x53\\x14\\x4b\\xb4\\x98\\x9b\\xee\\x95\\x30\\x56\\x93\\x8e\\x12\\\n\\x68\\x88\\x45\\xf0\\xd7\\xfc\\xe0\\x97\\x4b\\x70\\x46\\x8a\\x85\\x04\\xa7\\x99\\\n\\x2f\\x3e\\x8f\\x9a\\xb6\\x2b\\x4b\\x01\\x34\\x68\\x2a\\x13\\x4b\\x44\\x5c\\xc8\\\n\\x45\\x79\\xa2\\x20\\x86\\xaa\\x44\\x0f\\xd6\\x3e\\xa0\\x03\\x1d\\x2a\\x10\\x79\\\n\\x71\\x24\\x94\\xbb\\x33\\x14\\xa8\\x56\\x86\\x12\\x58\\x1f\\x02\\x18\\x9e\\x01\\\n\\x27\\xd2\\xc6\\xa8\\x24\\x02\\xfd\\xf3\\x3f\\x5b\\x40\\xb5\\x83\\xad\\xc1\\x6c\\\n\\x35\\x51\\x6c\\xdc\\xb4\\x80\\x0d\\x11\\x67\\xb8\\x66\\xd1\\x30\\xf8\\x4a\\x16\\\n\\xac\\x88\\x11\\xac\\x6e\\x04\\x35\\x12\\x82\\x74\\x46\\x3a\\x8a\\x2e\\x19\\xe8\\\n\\x0d\\x0a\\xef\\x6f\\x6c\\xc3\\x48\\x2d\\x29\\x7f\\x04\\x51\\x1a\\xad\\xe2\\x8a\\\n\\x14\\x02\\x88\\x52\\xdb\\x98\\x8c\\x7a\\x07\\x40\\xa2\\x2a\\x36\\xe4\\x32\\x2c\\\n\\x43\\x18\\x40\\xa2\\xcc\\x04\\x92\\xf5\\xa2\\x40\\x69\\xe6\\x93\\x8b\\xd2\\x07\\\n\\x0d\\x7c\\x99\\x88\\x70\\xc8\\x2b\\x13\\xb2\\xae\\x4f\\x42\\x04\\x91\\x6d\\x5d\\\n\\x07\\x2f\\x29\\x7f\\xc4\\xb5\\x8b\\x30\\x04\\x6e\\xb9\\x44\\xd3\\x00\\x19\\x08\\\n\\x52\\x5a\\x41\\xe0\\x88\\xaa\\xc9\\x14\\xa2\\x94\\x4d\\xf0\\x99\\x74\\x2e\\xd0\\\n\\xb9\\x01\\x6c\\x08\\x84\\x00\\xb4\\xbc\\x1d\\xa6\\xd8\\x16\\xa0\\x71\\x71\\xcc\\\n\\x9b\\xab\\x05\\x12\\x02\\x06\\xc9\\x10\\xc4\\x5e\\x01\\xbe\\x6c\\x06\\xe8\\x0d\\\n\\x45\\x83\\x10\\x07\\x01\\x45\\xc4\\xca\\x61\\x21\\x66\\x28\\x9c\\x19\\x61\\x8e\\\n\\xc0\\x40\\x0a\\x52\\x87\\xd6\\xf5\\xc7\\xee\\x3c\\x72\\x11\\x2d\\xf7\\x64\\x29\\\n\\xce\\x78\\xc4\\x1e\\x4e\\x5c\\x64\\xcf\\x07\\xd4\\x23\\x58\\xa8\\x12\\x62\\x2a\\\n\\x9e\\x6a\\x6a\\x96\\xf1\\x06\\x90\\x41\\xe2\\x06\\xc8\\x8a\\xa7\\xa4\\x3f\\x3a\\\n\\x30\\x1d\\x10\\x56\\x4d\\x50\\x0a\\xa0\\x85\\x86\\x99\\xcb\\xb2\\x19\\x64\\x59\\\n\\x22\\xac\\xa5\\x38\\x8a\\x00\\x58\\x59\\xf7\\xf3\\x23\\x3a\\x94\\x35\\x3f\\x53\\\n\\xf1\\x11\\xc8\\x3d\\x69\\x63\\x31\\x59\\xc7\\x8f\\x3f\\x8f\\xd0\\x18\\xc7\\xa1\\\n\\xdc\\x26\\xa4\\xe6\\x71\\xfa\\xa0\\xbb\\x5d\\x24\\x1b\\x15\\x43\\xcd\\xfd\\x1e\\\n\\xca\\x02\\x60\\x0a\\x58\\x49\\xc1\\x22\\x1b\\x02\\x0c\\x16\\x55\\x08\\x16\\x04\\\n\\x55\\xef\\x9e\\x00\\x40\\x36\\xa6\\x59\\x4c\\xcc\\x9f\\xc3\\xba\\x43\\xa5\\x37\\\n\\x35\\x2c\\xb8\\x9d\\xf5\\x8a\\xc0\\xa0\\xaa\\xd2\\x14\\x84\\xaa\\x25\\x9a\\x79\\\n\\x53\\x48\\x8a\\x4c\\x61\\x7c\\x3e\\x2a\\x0f\\x8e\\x65\\xd5\\x1f\\x2a\\x6e\\xaf\\\n\\x5d\\x73\\x86\\xa1\\x13\\xf4\\x8e\\xe1\\xf9\\x2b\\x42\\x21\\x01\\xdc\\x3b\\x0e\\\n\\xa1\\xa2\\x08\\x84\\xf1\\x06\\x76\\x49\\x01\\x8b\\x28\\xac\\x5e\\xcf\\x3a\\xef\\\n\\x5c\\x12\\xfc\\x16\\x10\\x46\\xd1\\x35\\xce\\x8d\\x52\\x81\\x70\\xa2\\x08\\xb8\\\n\\xa7\\x85\\x29\\x32\\x3f\\x8c\\x4d\\x3d\\x11\\x26\\x00\\x0a\\xb4\\x4b\\xb5\\xc2\\\n\\x06\\x42\\x68\\x48\\x08\\xce\\x03\\xca\\x4c\\x1a\\xd0\\x04\\x08\\x50\\x24\\x18\\\n\\x2e\\x5c\\x7e\\xaa\\x03\\x1a\\x82\\xb0\\x35\\xdf\\x18\\x81\\xb1\\xef\\x9e\\x21\\\n\\x31\\x5a\\x24\\x51\\xd2\\x86\\x44\\x48\\xe3\\x33\\xb3\\x46\\x24\\x43\\x86\\x24\\\n\\x28\\x03\\xc8\\x11\\xd6\\xad\\x45\\x05\\x04\\x49\\x52\\x19\\x33\\xc3\\x39\\x10\\\n\\x43\\x68\\xbe\\x04\\x20\\x18\\x20\\x14\\x02\\x21\\x1e\\x0a\\xe0\\xfa\\xc6\\xc3\\\n\\x14\\xd5\\x89\\x02\\x55\\x2a\\x2d\\x5a\\x04\\x4b\\xb6\\xa2\\x6b\\x0c\\x03\\x60\\\n\\x98\\xfa\\x71\\x5e\\x76\\x98\\xa5\\xc0\\x20\\xe0\\xbf\\xd2\\x4c\\xc9\\x69\\x63\\\n\\xf4\\xd1\\x55\\xd3\\x0a\\x04\\x3b\\x10\\x04\\x8e\\xa6\\xcf\\x96\\xd0\\x26\\x67\\\n\\x5f\\x24\\xa1\\x8c\\xf0\\x06\\xee\\x1e\\xa3\\xb7\\x46\\xc2\\xed\\x40\\xa2\\x46\\\n\\xb2\\x11\\x87\\xc0\\x06\\x88\\xea\\xe9\\x01\\x6d\\x7c\\x19\\x72\\xb2\\x0a\\x56\\\n\\x32\\xb0\\xc4\\xa0\\xa8\\x45\\x58\\xcc\\x32\\x8d\\x0f\\x40\\x75\\x69\\x0a\\x52\\\n\\x12\\xfd\\x66\\x0c\\xa2\\x1b\\x24\\x92\\x63\\xf5\\x61\\x20\\x5a\\xc6\\x10\\x2d\\\n\\xf4\\x11\\x11\\x15\\x74\\xc0\\x94\\x12\\x62\\xce\\x44\\x24\\xe6\\xb4\\xb8\\x75\\\n\\x40\\x67\\xe4\\x4b\\x10\\x2f\\x6f\\x19\\x4b\\x90\\x7e\\x56\\xe2\\x22\\xb2\\xb7\\\n\\x57\\xa4\\xbd\\xa3\\x1a\\xc4\\x18\\x4d\\x7a\\x9a\\x90\\x15\\xa0\\x4c\\x53\\x3f\\\n\\x7d\\x82\\x35\\x08\\xc0\\x43\\x11\\x41\\x5d\\xa5\\xca\\x04\\xb7\\x94\\x1a\\x0b\\\n\\x0e\\x4d\\x2b\\xd2\\x2a\\xa8\\xb6\\x1b\\xfe\\x12\\x60\\x96\\x0d\\x02\\x39\\x96\\\n\\x25\\x1a\\xc8\\x99\\x45\\x91\\x68\\x7a\\xd0\\x68\\xb2\\x0e\\x77\\x26\\x08\\x0f\\\n\\x73\\x09\\x13\\x51\\x04\\x4f\\x21\\x1a\\x07\\x87\\x43\\xd8\\x9a\\x36\\x00\\x67\\\n\\x99\\x3e\\x85\\x9c\\x51\\xf7\\x74\\x88\\x06\\xf1\\x51\\xb7\\xaa\\x74\\xfb\\x03\\\n\\x14\\x2c\\x47\\x08\\x7a\\x11\\x16\\xd2\\x77\\xf2\\x84\\x91\\xe1\\x4c\\x31\\xaa\\\n\\x24\\xae\\x72\\x76\\x6c\\x5e\\x81\\xb0\\x50\\x80\\x21\\x3a\\xf1\\xac\\x07\\xa8\\\n\\x01\\x54\\x1a\\xe0\\x20\\xba\\xaa\\x35\\x03\\x85\\xa5\\xae\\x9e\\xb5\\x9d\\x60\\\n\\xe6\\x64\\x02\\xa2\\x84\\x60\\x29\\xb5\\x29\\xe1\\x0e\\x91\\x4c\\xf2\\xe3\\x64\\\n\\x5e\\x17\\x48\\x77\\x67\\x20\\x48\\x14\\x74\\xa4\\x94\\x6b\\xd1\\x20\\x48\\x88\\\n\\x1a\\x12\\xfb\\x49\\x5d\\xa9\\x65\\x8b\\xeb\\x0a\\xe6\\xdc\\x96\\x20\\x0b\\xf3\\\n\\xf0\\x4f\\x45\\xb2\\xd1\\x82\\xd4\\x00\\xd0\\xec\\x68\\xaa\\xaf\\x1b\\x6e\\x7c\\\n\\x04\\xa2\\x83\\xdf\\xf7\\x93\\x5c\\xf5\\x83\\xd6\\x56\\x0c\\x7a\\x48\\xc6\\x74\\\n\\xb4\\xd3\\x0a\\xc0\\x40\\x80\\x85\\x18\\x1b\\x74\\x2e\\xfe\\xff\\x00\\x61\\x10\\\n\\xf5\\x92\\xa2\\x24\\x09\\xc1\\x08\\x3f\\x90\\x04\\x0b\\x01\\x13\\x44\\x4a\\x2d\\\n\\x00\\x98\\x38\\x49\\xc1\\x7e\\x08\\x20\\xa5\\x91\\x5c\\x9d\\xc0\\x87\\xa0\\x04\\\n\\x92\\x11\\x94\\xb8\\xbc\\x81\\xff\\x00\\x70\\xb6\\x29\\xc9\\x37\\x11\\xc7\\x8e\\\n\\xa6\\x86\\x04\\xd6\\x00\\x48\\x06\\x8f\\x9f\\x41\\x37\\x96\\x46\\xf4\\x81\\x02\\\n\\xa3\\x04\\xdc\\x20\\x76\\xc0\\x0e\\x22\\x71\\xd6\\x08\\x45\\xab\\x80\\x80\\xac\\\n\\x2a\\x98\\xac\\x47\\xc5\\x1a\\x79\\x52\\x9f\\x8d\\xd9\\xf3\\x62\\xf4\\x0b\\x1b\\\n\\x87\\x24\\x2c\\x10\\x92\\xb5\\x82\\x0d\\x2d\\xb5\\x72\\x33\\x96\\x95\\x19\\x49\\\n\\x94\\x60\\x15\\x15\\x75\\x28\\x42\\x28\\xc2\\xbf\\x85\\x43\\x00\\xc0\\x5a\\x12\\\n\\xe9\\x35\\x70\\xa6\\xac\\xb4\\x57\\xdc\\x15\\x02\\x81\\x88\\x33\\x6c\\xa0\\x59\\\n\\xa1\\xf5\\x7a\\x97\\x8f\\xaa\\x04\\xab\\x02\\xa8\\x2b\\x88\\xc1\\x6c\\x9e\\x23\\\n\\xea\\x40\\x98\\x8b\\x5f\\x05\\x07\\x14\\xc5\\x3e\\x9b\\x4c\\xd1\\x17\\x16\\xa7\\\n\\x05\\x43\\x8c\\x70\\x16\\x83\\x13\\xad\\x20\\x36\\x2f\\x21\\x62\\x1f\\xd1\\x90\\\n\\x04\\x4c\\x41\\x88\\xaa\\xfb\\x62\\xf3\\x2c\\xf0\\x39\\x13\\x17\\xa0\\x60\\xe5\\\n\\x8d\\x62\\x61\\x82\\xda\\x54\\x98\\x8c\\x2f\\x38\\x64\\xe1\\x1c\\x11\\x00\\x98\\\n\\x0e\\x33\\x42\\xaa\\x6c\\x1b\\xf4\\xd9\\x03\\x00\\x25\\x02\\x28\\x28\\x73\\x68\\\n\\x68\\xf2\\x4a\\x21\\x1a\\x61\\x0a\\x2e\\x92\\x4f\\x2e\\xdb\\x11\\xc0\\x66\\xbc\\\n\\x9f\\x88\\x1b\\x32\\x5e\\xf6\\xf0\\xb2\\x36\\x63\\xa7\\xc8\\x28\\xa1\\x71\\xd8\\\n\\x2d\\x3e\\xa2\\x9d\\x67\\x60\\x25\\xd2\\x56\\x7e\\xb0\\x59\\x72\\x57\\x41\\xd8\\\n\\x40\\x20\\x78\\x5a\\xe0\\x42\\x14\\x17\\x3e\\xf0\\x47\\x6a\\x45\\xf0\\x5a\\xb6\\\n\\xfd\\xd7\\x10\\x8c\\x1b\\x2c\\xeb\\xe4\\x80\\xb5\\x7c\\x1a\\x89\\x0c\\x09\\x02\\\n\\x81\\xae\\x85\\xf8\\xc3\\x03\\x21\\x5c\\xd9\\xcb\\x09\\xab\\x6a\\xe1\\x85\\x03\\\n\\xb0\\xe8\\x8b\\x76\\x85\\x04\\x16\\x36\\x8e\\xc2\\x71\\x39\\xd0\\x8a\\x20\\x12\\\n\\x31\\x19\\x88\\x4f\\x82\\xf3\\x40\\x61\\xcd\\x8d\\x91\\xb1\\x02\\xa4\\x38\\x45\\\n\\x73\\x55\\x90\\x2e\\xd1\\xa4\\x03\\x02\\x27\\xd2\\xbf\\xb1\\xcc\\x87\\x50\\x82\\\n\\x2e\\xa0\\x9e\\x8c\\xa9\\x60\\x27\\x9e\\x3e\\xd1\\x00\\xd3\\xc2\\xb5\\x49\\x1d\\\n\\x4a\\x21\\xa2\\xbf\\x86\\x6d\\x69\\x5e\\x3f\\xca\\x1c\\x92\\x02\\xb0\\x8c\\xd4\\\n\\xfd\\x7d\\xcf\\x7a\\x1c\\x69\\x4e\\x32\\x5a\\x11\\x01\\x63\\x84\\x3d\\xe1\\x60\\\n\\x06\\x21\\x21\\xda\\x22\\x25\\xe8\\xca\\x97\\xf1\\x56\\x1b\\x01\\x5a\\x55\\x19\\\n\\xd3\\x5c\\x23\\xe9\\xdc\\x86\\xad\\xe2\\xf3\\x99\\x99\\xc8\\xfb\\xf7\\x91\\xf1\\\n\\x68\\x9f\\x5c\\x24\\x89\\x51\\x5b\\x54\\x06\\xce\\x40\\x85\\x11\\xf9\\x2e\\xd5\\\n\\x23\\x4a\\x3e\\x8a\\x06\\xa0\\x55\\x97\\x8e\\xaf\\xf2\\x9a\\xa8\\xd5\\x45\\x46\\\n\\xc2\\x4b\\xd9\\x48\\x32\\x08\\xa9\\x58\\xa5\\x10\\x10\\x5a\\xc0\\xed\\x89\\x01\\\n\\xaa\\x5f\\x05\\x70\\xa8\\x81\\xc1\\xc5\\xf0\\x09\\xa1\\x01\\x37\\x0d\\x0a\\x0b\\\n\\x07\\x15\\xfb\\xa4\\x6b\\x33\\x60\\x9a\\x31\\xa1\\x44\\x46\\x03\\x52\\xc8\\xe4\\\n\\xbc\\x25\\xb7\\x15\\xb4\\x0b\\x1b\\x80\\xba\\xc9\\x62\\x48\\x08\\xbf\\x47\\x69\\\n\\x8d\\x64\\x98\\x63\\x27\\xea\\xf9\\x71\\x1d\\xde\\x24\\xd4\\x54\\x88\\x10\\x37\\\n\\x41\\x76\\x76\\x18\\x58\\x63\\xc2\\x02\\x04\\x32\\xc9\\xa5\\xbc\\x01\\x00\\xa3\\\n\\x20\\xec\\x04\\x07\\x92\\x21\\xe5\\xa1\\x40\\x6a\\x11\\x45\\xa5\\x05\\x24\\xf9\\\n\\x4f\\x1e\\xb5\\x3d\\xbd\\xe3\\x01\\x54\\xa1\\x0b\\x55\\x6f\\x1a\\xd4\\xa4\\x30\\\n\\x09\\x12\\x10\\xfe\\x1a\\x39\\xe5\\x8c\\xec\\x7c\\x71\\x45\\x97\\x11\\x82\\x78\\\n\\xb0\\x8d\\x64\\x9a\\xb1\\x4d\\xb8\\x96\\x2a\\x60\\xae\\x15\\xe8\\x39\\xb9\\x8e\\\n\\xf9\\x58\\x64\\x7e\\x23\\x19\\x40\\x3f\\x19\\x11\\x1f\\xd0\\x59\\x80\\x45\\xe4\\\n\\xf8\\x54\\xcd\\x21\\x38\\xa6\\x36\\x51\\x55\\x72\\x86\\x43\\x12\\x11\\x89\\x92\\\n\\x4b\\x15\\x54\\xb6\\x83\\x46\\xe0\\xa5\\xaa\\x36\\x8a\\xff\\x00\\x18\\x9f\\x4c\\\n\\x9c\\x27\\x04\\x24\\x57\\x4a\\x93\\xf8\\x5f\\x23\\x9c\\xf0\\x24\\x80\\x42\\xfd\\\n\\x44\\x12\\xe7\\x91\\xdf\\xc2\\xdf\\xe3\\x12\\x67\\xa3\\x2c\\xf5\\x09\\x51\\xbd\\\n\\x07\\xd8\\x2c\\xa1\\xea\\x81\\x04\\x29\\x38\\x80\\x6e\\x40\\xa7\\xc8\\x5e\\x7b\\\n\\x4e\\x81\\xe9\\xe4\\x41\\x3e\\x73\\x04\\x88\\xa8\\x95\\x75\\x0f\\x8d\\x36\\x05\\\n\\x1a\\x5c\\x18\\xe1\\x27\\x25\\x7d\\xb0\\xa4\\x62\\xa6\\x37\\x42\\x7e\\x97\\x13\\\n\\x14\\x2c\\x81\\xc7\\xb8\\xac\\x1b\\xa4\\x28\\xe3\\x2c\\xa8\\x86\\x0d\\x50\\x7f\\\n\\x66\\x95\\x8e\\xa2\\xfc\\x0b\\x27\\xb9\\x20\\x0c\\x25\\x1a\\x17\\x0e\\x4b\\xc8\\\n\\x65\\x63\\x92\\xbe\\x0a\\x05\\x04\\x3a\\xf5\\xc9\\xbf\\x4f\\x14\\x8d\\x92\\x92\\\n\\x35\\x0c\\x15\\x07\\x34\\x41\\x8f\\xbb\\x88\\xa6\\xd7\\x75\\x28\\x6d\\xb2\\x8c\\\n\\x4c\\xd0\\x56\\x85\\xe7\\x2a\\x59\\x0f\\x07\\x08\\x09\\xaf\\x2c\\x43\\x83\\x9c\\\n\\x78\\xb0\\xb8\\x94\\x26\\xa8\\xb7\\x0d\\x0b\\x13\\x89\\xc4\\x14\\x2b\\x11\\x3c\\\n\\x6c\\xb1\\x22\\x2f\\x17\\x79\\x90\\x02\\x84\\xb1\\x29\\x84\\xe4\\x54\\x3c\\x65\\\n\\x1f\\x81\\x42\\x96\\xc4\\xa9\\xae\\x6d\\xf0\\x25\\xa4\\x81\\xa0\\x67\\xad\\xeb\\\n\\xb2\\x92\\x2d\\xac\\x01\\xa4\\xaa\\xa8\\x81\\x19\\x1a\\x15\\x55\\xe1\\xe8\\xf8\\\n\\x30\\x40\\xc8\\xe2\\x62\\x6a\\x2d\\xb2\\x88\\x87\\xb8\\x37\\x30\\x3b\\x3d\\x59\\\n\\x8e\\xb7\\xa0\\x15\\xc0\\x16\\x1f\\xc4\\x17\\xa8\\x4a\\x0b\\x2a\\xe3\\xc5\\x25\\\n\\xd6\\xba\\x79\\x19\\x4c\\x79\\x84\\x42\\x62\\x20\\x57\\x11\\x66\\xc0\\x3c\\x08\\\n\\x01\\xb0\\x2a\\x2f\\xc3\\xb9\\x60\\x06\\x50\\x44\\x8a\\x43\\xf3\\xe7\\x27\\x51\\\n\\x74\\x30\\x13\\xf5\\x29\\x88\\xaa\\x6d\\x4a\\xca\\xec\\x4e\\x56\\x53\\x99\\x48\\\n\\xc4\\xa3\\xac\\x5a\\xde\\xa2\\x40\\xad\\xc7\\x58\\xa0\\xba\\x7b\\x02\\xcc\\x51\\\n\\x23\\x3c\\xcd\\x62\\xc0\\x0a\\x31\\x32\\xab\\x3e\\x4b\\xc4\\x1f\\x63\\x00\\x2d\\\n\\x87\\xe1\\x48\\xee\\x04\\x40\\xab\\xe2\\x1b\\xc4\\x3c\\x03\\x2a\\x00\\x47\\x80\\\n\\x60\\x01\\x71\\x97\\x7b\\xe0\\x41\\x87\\x19\\x3e\\x2f\\x9b\\xaf\\x01\\x91\\xa5\\\n\\x8f\\x7b\\x68\\xa0\\x20\\x0e\\xb3\\xe2\\xf4\\x45\\xcc\\x11\\x62\\x81\\xaa\\x55\\\n\\x78\\x25\\x0e\\x80\\x30\\xbd\\x56\\x94\\xf8\\x33\\x43\\xc5\\x18\\xa0\\xd4\\x07\\\n\\xa1\\x7f\\xcf\\x80\\x09\\x6b\\xc0\\x8f\\x0d\\x24\\x11\\x05\\x59\\x04\\x16\\x91\\\n\\x4f\\xc1\\x60\\x4f\\x9b\\x10\\xa2\\x2a\\xdd\\x2f\\x51\\xae\\x08\\x68\\x59\\x68\\\n\\x80\\x72\\x49\\x31\\x0a\\x4c\\x42\\xd2\\x6c\\x01\\xc5\\xa4\\x16\\x00\\x10\\xf0\\\n\\x58\\x43\\x4b\\x1a\\xa3\\x16\\x5c\\x09\\x14\\x1c\\x1b\\x03\\x34\\x20\\x42\\x91\\\n\\x1e\\x58\\x4b\\xaf\\x46\\x38\\x86\\x85\\x21\\x9a\\x12\\xa3\\x40\\xac\\xde\\x12\\\n\\x5d\\xc1\\x18\\x63\\x35\\x12\\xaf\\x07\\x36\\x88\\x82\\x3a\\xa4\\x10\\x31\\x28\\\n\\x3f\\x05\\x7e\\xcb\\xeb\\x44\\xa6\\x9a\\x22\\xa2\\x44\\x05\\x2d\\x98\\x60\\x74\\\n\\x61\\x4a\\xc3\\xf8\\x93\\x02\\x0d\\x5f\\x5a\\x19\\x10\\x55\\xac\\x23\\x5e\\x00\\\n\\x5e\\x93\\x61\\xde\\x08\\xd1\\xe1\\x05\\xd2\\xf8\\x52\\x4e\\x6c\\x92\\x80\\x29\\\n\\x4a\\x74\\x1a\\x38\\x2a\\xde\\x8c\\xf5\\xaa\\xc8\\x1b\\x7a\\x52\\xa0\\x40\\x3c\\\n\\x14\\x88\\x15\\x56\\x2d\\x73\\xd5\\x49\\xb4\\xa9\\xc6\\x84\\x1d\\xf4\\xd6\\xd0\\\n\\xbb\\x45\\x5b\\x00\\xd2\\x4f\\xd2\\x43\\x39\\xf0\\xad\\xa9\\x40\\x2d\\xe6\\xf1\\\n\\xee\\x09\\x96\\x83\\x71\\x25\\x28\\x2b\\x83\\x81\\x06\\x62\\x32\\x33\\x88\\x0b\\\n\\x26\\x00\\x33\\x89\\x98\\xf6\\x28\\x01\\xa4\\x12\\xec\\x28\\x7f\\xaa\\x13\\xb6\\\n\\xa5\\x38\\x8c\\x1a\\xb5\\x82\\x14\\xdd\\xf5\\x79\\x4f\\x12\\x10\\x83\\x52\\x95\\\n\\x50\\xd2\\x7a\\x4b\\xc9\\x4d\\x00\\x0b\\x42\\x2c\\x05\\x36\\xc0\\x9e\\x80\\x1c\\\n\\xfc\\x88\\xc2\\x9a\\x41\\x61\\xf0\\x14\\x51\\x02\\x67\\x0b\\x6f\\x4e\\x14\\x41\\\n\\x08\\x00\\x80\\x78\\x37\\x85\\x95\\x72\\xd8\\x34\\x64\\x44\\xec\\x51\\xc0\\x42\\\n\\x56\\xad\\xb6\\x15\\x15\\x0a\\x30\\x00\\x26\\x59\\x13\\x05\\x03\\xa6\\x05\\x05\\\n\\xa6\\x88\\x79\\x15\\xb8\\x83\\x28\\xc1\\x87\\x43\\x0b\\x14\\x4e\\x34\\x4c\\x51\\\n\\x7d\\x43\\x46\\xa5\\x21\\x91\\x7a\\xf3\\xb3\\x58\\xe9\\x2c\\x56\\x25\\xa1\\xe9\\\n\\x4e\\x7d\\xa6\\x4e\\x1f\\x50\\x25\\x4c\\x00\\x88\\xe7\\xa3\\x5b\\x31\\x2b\\xe0\\\n\\x08\\xfa\\xa8\\x0c\\xc3\\x99\\x26\\xe5\\x6a\\x21\\x21\\x00\\x56\\xd0\\x4f\\xbc\\\n\\x95\\x32\\x0d\\x12\\xd3\\x82\\xbe\\x77\\x62\\xd0\\x0c\\x1b\\xec\\x14\\xdc\\x1e\\\n\\x68\\xba\\x6b\\x00\\x61\\xa6\\x62\\x08\\x23\\xc7\\xe8\\x50\\x0b\\x4f\\xdc\\xc8\\\n\\x28\\x1a\\x50\\x3b\\x0a\\x45\\xd6\\x0d\\x0c\\x5b\\x2a\\x7e\\x9e\\x41\\x4a\\xf9\\\n\\x80\\xb8\\x0c\\x00\\xc2\\x98\\x8e\\x1a\\x14\\xab\\x3d\\x91\\x00\\x37\\x2a\\x06\\\n\\x56\\x80\\x0d\\x97\\x02\\x58\\xbc\\xc0\\xa0\\xfa\\x8d\\xfa\\x0a\\x79\\x33\\x5d\\\n\\x0a\\x1d\\x70\\x3c\\x8a\\x0e\\x4d\\xd1\\xa6\\xa9\\x48\\x2b\\xa1\\x40\\x80\\x04\\\n\\x34\\x7b\\x52\\xbe\\x00\\xae\\xa9\\x71\\x2b\\x7c\\x72\\x1c\\x07\\xd6\\x8e\\x85\\\n\\xb2\\x8d\\x61\\x2c\\x81\\xae\\x67\\xc3\\x9e\\xa6\\xc5\\xe6\\x00\\x21\\x74\\x11\\\n\\x0c\\xf2\\x34\\x06\\x4a\\x76\\x05\\x0d\\xf0\\x17\\x55\\x3a\\x25\\xa3\\x23\\x16\\\n\\x84\\x36\\xbc\\x71\\x84\\x22\\xc2\\x28\\x00\\xa8\\x45\\x60\\x41\\xe9\\x2e\\x1b\\\n\\x28\\xc0\\x0e\\xab\\x32\\x15\\x13\\xd4\\x05\\x46\\xd0\\x4e\\xbe\\xa2\\x68\\x12\\\n\\x1d\\x25\\x12\\x01\\xd2\\x22\\x44\\x32\\xff\\x00\\x28\\x6e\\x08\\x0b\\x50\\x42\\\n\\x82\\xc2\\xc0\\xa5\\x00\\xe2\\x8c\\x83\\x64\\x69\\x81\\xb1\\xe1\\x4b\\x48\\x25\\\n\\xc3\\xb6\\x40\\x6e\\xa1\\x8d\\xa5\\x2a\\xb4\\xc0\\x02\\x7e\\x52\\x14\\x03\\x1a\\\n\\x4e\\x8b\\x0d\\x17\\x84\\x7e\\x90\\xc8\\x60\\x90\\x95\\x42\\x03\\x42\\x84\\x82\\\n\\x85\\x9b\\xc4\\xb2\\xe3\\x47\\x92\\x79\\xae\\x78\\x34\\x80\\x40\\x08\\x09\\x39\\\n\\xa2\\x78\\xd7\\x9a\\x01\\x90\\x1a\\xaf\\x09\\x7d\\x47\\xab\\x64\\xd8\\x4c\\xf3\\\n\\x95\\x7f\\x27\\xa0\\x62\\xa8\\x4e\\x21\\xe6\\x40\\x02\\x23\\x54\\xe0\\x2d\\x05\\\n\\x23\\x92\\x7d\\x38\\x90\\x44\\xdf\\x10\\x1c\\xb8\\x50\\xf0\\x6a\\x01\\x3d\\x36\\\n\\x76\\x47\\xaa\\x14\\x5b\\xce\\x37\\x53\\xd0\\x74\\x4c\\xaf\\xa4\\xc8\\x5a\\x48\\\n\\xe2\\x28\\x89\\xa6\\xa9\\xcf\\xf6\\x16\\xf8\\x07\\x29\\x3e\\x01\\x30\\x68\\xaf\\\n\\x00\\xb0\\x03\\x3a\\x9d\\x74\\x1d\\x02\\x9e\\x84\\x90\\x94\\xdb\\x2f\\x21\\xa7\\\n\\xc4\\x7d\\x95\\x5f\\x52\\xa1\\x83\\xc1\\xa5\\x31\\x47\\xe4\\xdb\\xf4\\x0a\\x07\\\n\\xc0\\x70\\xfb\\x86\\xb8\\xb8\\x2d\\xbc\\x82\\x13\\x0e\\x12\\xf1\\x9a\\xc2\\x07\\\n\\x04\\x10\\xb5\\x7a\\xee\\xf5\\x6a\\xc4\\x89\\x7b\\xb0\\xc6\\xa0\\xbb\\xb7\\xa5\\\n\\x40\\xf9\\x87\\xc8\\x9c\\x1c\\x5b\\x87\\x86\\x4c\\x92\\x43\\x02\\xa7\\x03\\xfa\\\n\\x22\\xf4\\xc5\\x1d\\x0b\\x45\\x29\\x17\\xae\\x45\\x52\\x67\\x37\\x29\\x5f\\x5f\\\n\\x11\\xd3\\xf2\\x28\\x4d\\x69\\x14\\x30\\x44\\x22\\x63\\xb8\\xcb\\xac\\x7c\\x62\\\n\\xb3\\x6d\\x4e\\x20\\xc9\\x4c\\x94\\x46\\x58\\x16\\x27\\x22\\x88\\x75\\x11\\x82\\\n\\x00\\xb9\\x64\\xe7\\x0d\\x85\\x2e\\x61\\xf1\\x35\\xd8\\x45\\x08\\x1c\\xd5\\x73\\\n\\x14\\xe4\\x77\\x41\\x61\\x02\\x0a\\x00\\x72\\xc4\\x08\\x85\\x83\\xa0\\x00\\x43\\\n\\xa3\\x8f\\x90\\xe1\\x31\\x14\\x18\\xf4\\x00\\x3c\\xd6\\xc2\\x3b\\xc5\\x44\\xc0\\\n\\x1a\\x52\\x3c\\x95\\x42\\x14\\xf2\\xa8\\x04\\x41\\x20\\x24\\x80\\x4a\\xbb\\x00\\\n\\xf6\\x63\\x37\\x2c\\x0c\\x86\\x9b\\x6d\\x68\\x31\\x7c\\x21\\x9c\\xe8\\x6b\\x3b\\\n\\x9c\\x16\\xc0\\x86\\xde\\x04\\xa9\\xe4\\xd8\\x34\\x30\\x7a\\x68\\x54\\x00\\x35\\\n\\x1e\\xf5\\xcf\\x48\\xa8\\x47\\x40\\x11\\x5d\\x52\\xc0\\x2c\\x16\\x63\\x19\\x5a\\\n\\x70\\xaf\\xb0\\x31\\x5e\\x8f\\x17\\x02\\x2d\\x6c\\xb4\\xc2\\xdf\\x28\\x35\\xc0\\\n\\x65\\x0e\\xae\\x22\\x21\\xd6\\x83\\x5a\\xa6\\xbc\\x1f\\x19\\x28\\xe4\\x78\\x0b\\\n\\x3e\\xc8\\x6f\\x76\\x06\\xc0\\xe8\\xb6\\x90\\x55\\x85\\xb6\\x85\\xa9\\x4d\\x4d\\\n\\x8f\\xa9\\x42\\x18\\xb5\\xa3\\xc5\\x7e\\x19\\x00\\xa8\\x22\\x93\\x15\\x14\\xf0\\\n\\x72\\x53\\x70\\x95\\x48\\x53\\x65\\x03\\x59\\x5e\\x2b\\x96\\x25\\x0b\\xb2\\xa2\\\n\\x08\\xc4\\xd5\\x2c\\x42\\x8c\\x65\\x08\\x84\\x73\\xd2\\x88\\x75\\x60\\x43\\x1f\\\n\\xac\\x3a\\x9e\\x20\\x42\\x15\\x04\\x00\\x6f\\xda\\x9a\\x71\\x2c\\xb7\\x05\\x24\\\n\\xd7\\x8d\\x0c\\x26\\x89\\x86\\x99\\x12\\xb2\\xf2\\x12\\x63\\x97\\x05\\x55\\x52\\\n\\x9e\\x91\\x59\\x0b\\x0b\\x0a\\x94\\x61\\x2a\\x14\\xa6\\x01\\x1e\\x35\\x2e\\xda\\\n\\xd5\\x5d\\x9b\\x9b\\x42\\x48\\xaa\\x8a\\x62\\x5a\\x51\\x43\\x92\\x95\\x42\\x66\\\n\\x6b\\x58\\x5a\\xbf\\xba\\x1d\\x23\\x50\\x18\\xbd\\xc7\\x19\\x0b\\xfc\\x03\\x89\\\n\\xd6\\x11\\x14\\xe8\\x59\\x75\\x48\\x15\\x12\\xd5\\x38\\x20\\xa8\\x81\\x13\\x42\\\n\\x17\\x11\\x60\\x1f\\x23\\xfe\\xf0\\x21\\x68\\xb4\\x09\\x88\\x22\\x8d\\x0f\\xc5\\\n\\x92\\x87\\x1a\\x24\\x8e\\x12\\xb2\\xf3\\x49\\xa1\\xef\\xac\\xe5\\xfa\\x54\\x01\\\n\\x80\\x02\\xab\\xcf\\x13\\x59\\xef\\x80\\x99\\xfc\\x28\\x24\\x33\\x98\\xe0\\x82\\\n\\x0e\\x54\\x28\\xe9\\x90\\x94\\xc5\\x38\\x86\\xa4\\x9e\\xbf\\x0e\\xbd\\x80\\x82\\\n\\xa3\\xd8\\x2f\\x31\\xf4\\x9a\\x3a\\xe0\\x05\\x8b\\x21\\x24\\xaa\\xd7\\xcf\\xe9\\\n\\xe5\\x79\\x4d\\x23\\xfa\\x35\\x3a\\xe5\\xcf\\x21\\x4b\\xec\\x29\\x17\\x28\\xb6\\\n\\x40\\xa9\\x58\\xae\\xd4\\xf2\\xd2\\x00\\xea\\x12\\x46\\xfc\\x7f\\xc3\\x96\\x4e\\\n\\x32\\x07\\x18\\x4f\\x56\\x85\\x55\\x0d\\x50\\xf2\\x6b\\xd0\\xac\\x37\\x15\\x01\\\n\\x04\\xfc\\x4f\\xc0\\xdb\\x7e\\x8a\\x84\\x4c\\x8f\\x9e\\x90\\x74\\xed\\x55\\xed\\\n\\x45\\x0a\\x08\\xb2\\xac\\xd9\\xdd\\x44\\xd3\\x5f\\xeb\\x9e\\x85\\x51\\x1c\\x80\\\n\\x74\\xab\\x24\\x60\\x2c\\x11\\x2f\\x28\\x89\\x12\\xda\\x84\\x24\\x1e\\xa8\\x07\\\n\\x00\\x0e\\x54\\xb2\\x42\\xe8\\x17\\xf6\\xfc\\x23\\x19\\xc0\\x68\\xb2\\x47\\x9b\\\n\\x78\\x1e\\xf0\\x07\\x00\\xaa\\x6a\\x20\\xc2\\x52\\x7d\\x15\\x2f\\x89\\x8b\\x23\\\n\\xcc\\x7a\\x29\\xdf\\x19\\x4f\\x12\\x82\\x9e\\x97\\xeb\\xbb\\x9a\\x5f\\x00\\x84\\\n\\x1e\\xfd\\x69\\xa5\\x8f\\x4c\\xb9\\x55\\x41\\x70\\xeb\\x2d\\x19\\x81\\x72\\x0b\\\n\\x48\\x82\\x20\\xc4\\x80\\x02\\x63\\xd6\\x24\\x6f\\xea\\x30\\x71\\x48\\x80\\x64\\\n\\x3e\\xe6\\x55\\x88\\x41\\xb0\\x98\\xa9\\xa0\\xa1\\x70\\x6e\\xad\\x51\\xd1\\x6b\\\n\\x40\\x6b\\x10\\x1e\\x23\\x2b\\xb8\\x13\\xae\\xa5\\x1a\\xaa\\x85\\x80\\xc7\\xf9\\\n\\xec\\x10\\x8e\\x29\\x4d\\x3b\\xb4\\xb2\\x17\\x43\\x69\\xa9\\x29\\x47\\x23\\xa2\\\n\\xd7\\xd3\\xb3\\x08\\x0d\\x93\\xd2\\x29\\x01\\x1f\\xa8\\xb5\\xc9\\x3c\\xac\\x4b\\\n\\x84\\x14\\x4c\\xe0\\x87\\xc3\\xea\\xb0\\x8a\\x56\\xd6\\xbb\\x50\\xf4\\x44\\x4b\\\n\\x3a\\x99\\x44\\x06\\xc2\\x44\\x07\\x58\\x0a\\x2f\\x00\\xc2\\x20\\x21\\x05\\x12\\\n\\x70\\x57\\x81\\x15\\x21\\xfd\\x04\\x81\\xc4\\xa6\\xb1\\x92\\x95\\x75\\x06\\x19\\\n\\x50\\xfd\\x01\\x5b\\x90\\xf8\\xac\\x54\\x24\\x10\\x08\\x85\\x0f\\xde\\x4d\\x0b\\\n\\xb9\\x0f\\xd2\\x05\\x01\\x20\\x15\\x59\\x16\\xfd\\x26\\xc3\\x6a\\xd7\\x00\\xa0\\\n\\x60\\x67\\x02\\x05\\x04\\xcd\\x24\\x5f\\x39\\xb1\\x00\\xe4\\xd3\\x6c\\x27\\xbf\\\n\\x05\\x8b\\xb5\\x47\\x79\\x36\\x6e\\x12\\xb0\\x37\\x6b\\x92\\x74\\xd7\\x78\\x6e\\\n\\xad\\x85\\x49\\x59\\xb2\\x2d\\x8a\\xf2\\xc8\\xce\\xea\\xed\\x65\\x00\\xa6\\x29\\\n\\x7d\\x22\\x1d\\xf9\\xa9\\x2b\\x3f\\x51\\xa4\\x43\\x46\\xc3\\x91\\x8b\\x0e\\x30\\\n\\xe2\\x88\\x02\\xa5\\x41\\x5c\\x0e\\x99\\x35\\x24\\xb7\\xec\\x8d\\x54\\x20\\x05\\\n\\x79\\x8e\\x9a\\x25\\x92\\x63\\x48\\x01\\x7c\\x94\\x07\\x19\\x24\\x5a\\xe2\\x79\\\n\\x36\\x09\\x03\\x33\\xdf\\xa4\\x79\\x01\\x71\\xd2\\x00\\x0a\\x01\\x2d\\x92\\x8c\\\n\\xe0\\xb6\\xf1\\x2d\\x80\\x22\\xa7\\xf8\\x0e\\x19\\x9e\\x01\\xd8\\x8c\\x85\\x04\\\n\\x94\\x05\\x14\\x39\\xe1\\x4a\\x81\\x5d\\x06\\x24\\x8f\\x47\\xa3\\x8f\\xe5\\x0f\\\n\\x59\\x14\\x24\\x6e\\x27\\xbc\\xad\\x8b\\x5d\\x44\\xb4\\x40\\xff\\x00\\x84\\x1e\\\n\\xb0\\x70\\xab\\xff\\x00\\xa1\\x7a\\xac\\x25\\xd8\\x7d\\xec\\x50\\x40\\x70\\x20\\\n\\x88\\x9a\\x1f\\xa3\\x01\\x6b\\xd2\\x52\\x25\\xe7\\x9b\\xd0\\xf0\\x61\\xc7\\x3e\\\n\\xf4\\x57\\x92\\xcd\\xf1\\x66\\x80\\xf5\\xd0\\x50\\x0e\\x50\\x17\\x83\\x10\\xa0\\\n\\x01\\x5b\\x0d\\x53\\x10\\xda\\x51\\x48\\x4f\\xa0\\xd4\\x22\\xc8\\xfb\\x97\\x6a\\\n\\x52\\x06\\x96\\x7d\\x14\\xb1\\x00\\x41\\xfd\\x74\\x35\\x11\\x56\\x20\\x32\\x60\\\n\\x22\\x81\\x61\\x3e\\x6e\\x42\\x4a\\xb2\\x16\\xd9\\x41\\x7d\\x42\\x48\\x31\\x70\\\n\\xae\\x89\\x79\\x1d\\x9d\\x5f\\x00\\x08\\x50\\xe4\\x4e\\xba\\xc4\\x13\\xb9\\x56\\\n\\x51\\x5b\\xd3\\x4c\\xc7\\x7b\\x85\\xa2\\xba\\xc4\\xbe\\x34\\x95\\x20\\x47\\xe6\\\n\\xa1\\xa9\\x35\\x2a\\xec\\x9f\\x34\\xda\\xf2\\xa7\\xe0\\x57\\xbf\\x8a\\x25\\x46\\\n\\x2c\\x41\\x4a\\x48\\x10\\x40\\x33\\x9c\\x9d\\x15\\x36\\x33\\x81\\x17\\x80\\x0e\\\n\\x53\\xc3\\x09\\xeb\\x0c\\x10\\x52\\x67\\x09\\x10\\xe4\\x5a\\x52\\x32\\x58\\xdc\\\n\\xa8\\x14\\x2c\\x3c\\x11\\x73\\x90\\xa4\\xab\\x23\\x46\\xc1\\x44\\x4e\\x28\\xfa\\\n\\x19\\xcf\\xaa\\x11\\x50\\xab\\x23\\xa8\\x17\\xae\\x95\\x88\\x26\\xa3\\xf4\\x02\\\n\\x20\\x6d\\xd4\\x28\\x4b\\xc1\\x03\\x72\\x6e\\xbc\\x5b\\x58\\x11\\xc0\\x19\\xa7\\\n\\x43\\x42\\x55\\xc6\\x42\\x6e\\x48\\xab\\x87\\x32\\x65\\x2c\\x38\\x61\\x11\\x40\\\n\\x02\\x5f\\x30\\x35\\x88\\xa8\\x00\\x0d\\x8f\\x5b\\x12\\xbe\\x19\\xe2\\x51\\x0a\\\n\\xc9\\x30\\xa0\\x4e\\x24\\x94\\xe3\\x04\\x63\\x22\\x68\\x8e\\x44\\x02\\x29\\x20\\\n\\x6a\\x13\\x0d\\xea\\x00\\x95\\xaf\\x69\\xa3\\x62\\x1c\\x77\\x32\\x9c\\xd0\\xa1\\\n\\x0a\\x00\\x21\\x6b\\x0a\\x75\\xee\\x40\\x52\\x2d\\x2e\\x45\\x30\\xde\\xae\\x36\\\n\\x1e\\x24\\x87\\xe2\\x16\\x08\\x97\\xa9\\x12\\x22\\x4a\\x48\\x60\\x3a\\x4b\\x66\\\n\\x40\\xd3\\x0e\\x98\\x4c\\x42\\x0f\\xdb\\x11\\x28\\x19\\x09\\x20\\xaf\\x6f\\xb9\\\n\\x5f\\x8d\\xb6\\x21\\x69\\x25\\xcf\\x0a\\x77\\xe9\\xb7\\xec\\xe5\\x82\\x08\\x03\\\n\\x43\\x19\\x1a\\x10\\x30\\x00\\x0a\\xdf\\x2a\\x40\\x67\\x42\\xd5\\x99\\x72\\x13\\\n\\x9c\\x49\\xd8\\x06\\xaf\\x20\\xbf\\x46\\x14\\xa7\\x39\\x8f\\x01\\x4c\\x16\\x51\\\n\\xad\\x51\\x7c\\x40\\x50\\x8f\\xe8\\x8a\\x5d\\x59\\xab\\xa1\\x6a\\xf1\\x04\\x9d\\\n\\x00\\x44\\xc6\\x12\\x74\\x52\\xa8\\x65\\x14\\x17\\x90\\x41\\x0a\\x5b\\x0c\\x50\\\n\\xbb\\xa1\\x58\\xaa\\x62\\x62\\xfd\\xed\\xc4\\x27\\x08\\x13\\x61\\x14\\xe3\\x51\\\n\\xf8\\xbe\\x2a\\xb2\\xea\\x5c\\x2d\\xd5\\xa2\\x57\\xe1\\x61\\xe8\\x7a\\x0c\\xd8\\\n\\xea\\x6d\\x94\\x12\\x84\\x82\\xc3\\xd7\\xfd\\x63\\xce\\x41\\x45\\xd0\\x9e\\x1a\\\n\\xde\\x98\\xa3\\x44\\x2c\\x20\\x02\\x21\\x96\\xd6\\x60\\x34\\xb7\\xd3\\xcd\\x20\\\n\\x0d\\x43\\x10\\xa5\\x71\\x92\\xa4\\xf6\\xc7\\x24\\x51\\x71\\x22\\xd7\\x4c\\xda\\\n\\x41\\x16\\x06\\x05\\xfc\\x0b\\xc3\\x32\\xb9\\xc1\\x42\\x88\\x22\\x3b\\x0b\\x00\\\n\\x03\\x3f\\xeb\\xd7\\xc7\\x5c\\x29\\x0a\\x22\\x6c\\x2c\\x28\\x08\\x05\\x1a\\x98\\\n\\xaa\\xbc\\xf5\\x11\\x98\\x02\\x19\\x01\\xdf\\x0c\\x84\\x27\\x12\\x11\\x04\\x44\\\n\\xa0\\x25\\x04\\x8e\\x30\\x2f\\x05\\xb7\\x08\\x90\\x94\\x82\\x82\\x11\\x00\\xb5\\\n\\x5b\\x19\\x26\\x62\\x29\\x38\\x86\\x86\\xd6\\xe9\\xc8\\x05\\x8a\\xd0\\x0c\\x2d\\\n\\x88\\x08\\x41\\xb1\\x3b\\xa6\\xd0\\x9a\\x0e\\x2d\\x64\\x28\\x3b\\xe2\\x71\\x97\\\n\\x9d\\x80\\x0c\\xa1\\x16\\x85\\x81\\x54\\x35\\x7a\\x51\\xab\\x84\\x50\\x06\\xfd\\\n\\x1f\\x0d\\xb7\\x8f\\x6b\\x12\\xc3\\x6c\\xee\\x93\\x0f\\x38\\xb4\\x90\\x21\\xda\\\n\\x3e\\x8b\\xdf\\x09\\x0b\\xe3\\xf9\\xe6\\x80\\x26\\x14\\x88\\x1b\\x08\\x6b\\x1d\\\n\\x93\\x0c\\x89\\xa0\\x03\\x07\\xf9\\x22\\x69\\x4a\\xab\\xe2\\x0a\\x43\\x18\\x3e\\\n\\x01\\x68\\x02\\xd2\\x70\\x1a\\x4b\\x45\\x20\\xd0\\x85\\x22\\x3b\\xf5\\xe0\\xe3\\\n\\x8b\\xc9\\x90\\x37\\xc0\\x28\\x24\\xb9\\x68\\x80\\x72\\x8a\\x11\\x23\\xd3\\xab\\\n\\x29\\xeb\\xc7\\xf3\\x83\\x80\\xc6\\x29\\xb0\\x44\\x45\\x98\\x42\\xd9\\xc8\\xb1\\\n\\xd3\\x40\\x6a\\x94\\xa8\\xc9\\x15\\x25\\xf7\\xce\\x85\\x81\\x47\\xf5\\x98\\x52\\\n\\x80\\xd0\\x4b\\x6f\\x3b\\xbe\\x03\\x87\\x6c\\x01\\x1d\\xa3\\x92\\xa5\\x15\\x03\\\n\\xa8\\x92\\x5b\\x0a\\x11\\x89\\x78\\x5c\\x59\\xc5\\x71\\x34\\x45\\xd3\\xf4\\x41\\\n\\x2f\\x07\\x1c\\xac\\x31\\xc4\\x1b\\x52\\x46\\x41\\xc4\\x92\\x49\\x08\\x70\\xac\\\n\\x28\\x01\\xb5\\x34\\xac\\x29\\xf8\\xa8\\xc0\\xf2\\x28\\x02\\x18\\x57\\x97\\x4a\\\n\\x99\\x10\\x01\\x0a\\xdb\\xec\\x95\\xb4\\x08\\x24\\xb7\\x90\\xef\\x50\\x41\\xe2\\\n\\x46\\x55\\x88\\xb3\\xa8\\x42\\xd6\\x86\\x95\\x4e\\x67\\x34\\xa9\\x09\\x1b\\xf0\\\n\\x66\\x8e\\x04\\x35\\x5e\\x69\\xc9\\x32\\xbc\\xf2\\x91\\x5a\\x8b\\xd4\\xb0\\x40\\\n\\x3e\\x97\\x6b\\xcb\\x48\\x20\\x1d\\x41\\xa0\\x10\\x44\\x92\\x88\\x6a\\xf0\\x30\\\n\\x43\\x10\\x37\\x68\\xb3\\xe5\\x26\\x16\\x86\\x9d\\x14\\x10\\xca\\x0e\\x1a\\x40\\\n\\x86\\x20\\x22\\xa5\\x4a\\x24\\x59\\x17\\x0e\\xa8\\xda\\x8a\\xae\\xa9\\x66\\x32\\\n\\x90\\xda\\x1c\\x3e\\x90\\xa0\\xc8\\x6a\\x4a\\x6a\\x8a\\xa8\\x37\\xf9\\x69\\x00\\\n\\x24\\x81\\xb4\\x09\\xc9\\x8c\\x64\\x84\\x9f\\x4f\\xd0\\xd2\\x6c\\x7e\\x57\\x13\\\n\\xd6\\x68\\x34\\x0b\\x42\\x7e\\x64\\xde\\x2b\\xb8\\x00\\xa4\\x64\\x45\\xaf\\xe0\\\n\\x06\\x0f\\x47\\xe6\\x2a\\x5b\\x38\\x94\\x0d\\x42\\x0b\\xa3\\xdc\\xe6\\xa1\\x5e\\\n\\x42\\x56\\x42\\x07\\x86\\x01\\x02\\x9c\\x74\\xd4\\x20\\x86\\x85\\x4f\\x05\\xa5\\\n\\x31\\x02\\xd8\\x75\\x31\\xde\\xb1\\x2e\\x08\\xb3\\x28\\x0a\\xec\\x96\\xba\\x5e\\\n\\xd9\\x28\\x7b\\x37\\xf8\\x4a\\xe6\\x0a\\xa7\\x03\\xcb\\x9a\\x47\\x37\\x6d\\x51\\\n\\x5d\\x52\\x00\\x85\\x04\\xc3\\x0e\\x4f\\x42\\x92\\xf8\\x01\\x98\\x57\\x24\\xbf\\\n\\x86\\x29\\x5c\\x44\\x0d\\xa3\\x58\\xf3\\x61\\x30\\x79\\xe3\\x31\\x21\\xca\\x11\\\n\\x30\\x20\\x3b\\x07\\xc3\\x89\\x55\\x34\\xac\\x01\\x9a\\x01\\x1e\\x9f\\xf8\\x6f\\\n\\x25\\x4d\\x68\\x46\\xe4\\x52\\xc1\\x40\\xd4\\x2c\\x59\\x1e\\xf6\\xcc\\x42\\xa3\\\n\\x47\\x84\\x8a\\x3c\\x04\\xe6\\x60\\x81\\xbf\\x7d\\x4c\\x4c\\x34\\x30\\x43\\x5e\\\n\\x3d\\x24\\x50\\xc4\\xb2\\x11\\x5e\\xde\\xbc\\x22\\xac\\x39\\x2a\\xa0\\xb4\\x0a\\\n\\x34\\x2f\\x9c\\x31\\x26\\x42\\x20\\xc3\\x99\\x07\\x3e\\x7e\\x43\\xce\\x23\\xc3\\\n\\xaf\\xa0\\x30\\xa4\\x45\\x2a\\x85\\x80\\x54\\x02\\x44\\x91\\x4a\\xba\\xd2\\x0a\\\n\\x50\\xd6\\x06\\x72\\x36\\x58\\xa5\\x80\\x10\\x00\\x4e\\x50\\xa4\\x5e\\x66\\xd0\\\n\\x2f\\xc4\\xc6\\x2d\\x1c\\x58\\x20\\xfe\\x87\\xfa\\x0c\\x4c\\x04\\x0f\\x0c\\x49\\\n\\x24\\x01\\xcc\\x32\\xd8\\xd0\\x60\\x78\\x22\\x9d\\x92\\x29\\x32\\x57\\x14\\x02\\\n\\x16\\x09\\x51\\x7f\\x72\\xef\\xd3\\xea\\x81\\x36\\x20\\x35\\xab\\xd6\\xfb\\x3c\\\n\\xe8\\x22\\xd3\\x6e\\xf3\\x91\\xa1\\x80\\xc0\\x33\\x20\\x0b\\x45\\x53\\xe0\\x48\\\n\\xd5\\x92\\x4c\\xe9\\x50\\x87\\xc5\\x13\\xab\\x89\\x03\\x97\\x83\\x78\\xea\\x21\\\n\\x04\\x2a\\x80\\x0e\\x12\\x95\\x19\\x91\\x68\\x0d\\x06\\xe9\\x44\\xa9\\x58\\x02\\\n\\x16\\x19\\x20\\x86\\x14\\xe0\\x00\\x97\\x11\\xe9\\x70\\x8a\\xec\\x90\\x95\\x60\\\n\\x2a\\x70\\xe2\\xa1\\x80\\x27\\x0b\\x88\\x29\\x4d\\x10\\xc5\\xcd\\xaa\\xbd\\x90\\\n\\x83\\x07\\xe0\\xa0\\x46\\x84\\xb5\\x3f\\x4e\\x6c\\x57\\x54\\x8d\\xc0\\x82\\x2d\\\n\\x1f\\xac\\x94\\xb6\\xef\\xce\\xc8\\x8e\\x60\\xb4\\x44\\xea\\xd6\\x95\\xac\\xab\\\n\\xbe\\xe8\\xb7\\x04\\xde\\xa5\\xf5\\x8e\\x91\\x81\\x4a\\xb2\\xca\\x25\\xcd\\x4a\\\n\\xcb\\x94\\xed\\x45\\x43\\x18\\x31\\xfa\\xf0\\x8b\\x59\\x1b\\x16\\x7c\\x41\\x5c\\\n\\x12\\x18\\x2f\\x0c\\xf7\\x4b\\x57\\x60\\x01\\xc0\\x0f\\xc4\\x69\\x8a\\x18\\x35\\\n\\xb5\\x1d\\x02\\x5c\\xb0\\x6d\\x76\\x71\\x6d\\xf6\\xc5\\xa2\\x4f\\x74\\x35\\xc0\\\n\\x04\\x31\\xef\\x54\\x07\\x75\\x10\\x92\\xa8\\xbc\\xaa\\x5e\\x70\\x14\\x13\\x8c\\\n\\xd5\\x02\\xad\\x2c\\x51\\xc1\\xea\\x93\\x43\\x80\\xca\\x4c\\xa2\\xc5\\x35\\x1c\\\n\\x0a\\x4e\\xba\\x64\\xda\\xca\\xe5\\x12\\x2a\\x23\\x55\\x7a\\x05\\x86\\x51\\x05\\\n\\x71\\x11\\x04\\x29\\xc5\\x1d\\x10\\xb5\\xde\\xa4\\x51\\xd5\\x91\\x22\\x96\\xe3\\\n\\xc8\\x93\\x42\\x28\\x11\\x28\\xb1\\xf9\\xd8\\xb6\\x78\\xe1\\x47\\x70\\x01\\xa0\\\n\\x01\\x1e\\xb8\\xb6\\x61\\x4a\\x32\\x11\\x9f\\x11\\x27\\x81\\x01\\x05\\xdf\\x23\\\n\\x01\\x0c\\x5a\\x30\\xd8\\x86\\x80\\x68\\x08\\xb0\\x28\\x93\\x40\\x83\\xc3\\xa5\\\n\\xf3\\x5f\\x4a\\xc3\\x89\\x20\\x4e\\xe7\\x05\\xa0\\x49\\xb9\\xb0\\x35\\x16\\x04\\\n\\x50\\x3b\\x45\\x04\\x19\\x28\\x1c\\x35\\x0b\\xb2\\x2c\\x40\\x4c\\x1b\\x01\\xdb\\\n\\xad\\x91\\x40\\xd8\\x5f\\x22\\xb3\\x9a\\xd8\\xe2\\x03\\xf6\\x82\\x12\\x28\\x50\\\n\\x37\\xac\\xbf\\x48\\x1f\\xee\\x57\\x92\\xd5\\x2a\\xa2\\x88\\x9b\\x4a\\x02\\x22\\\n\\xb8\\x00\\x28\\x94\\x9e\\x5d\\xb7\\xba\\x20\\xbd\\x80\\x97\\x56\\xdc\\x52\\xba\\\n\\x3c\\x3b\\xb4\\x35\\x22\\xa9\\x69\\xdf\\x66\\x89\\xb8\\x38\\x94\\x09\\x7c\\x50\\\n\\x02\\x07\\xb6\\xa6\\xeb\\x0e\\x97\\x40\\x04\\x04\\x6d\\xb4\\x4e\\x9e\\x25\\x68\\\n\\x51\\x30\\x26\\x19\\xc8\\x60\\x00\\x1e\\x2a\\xd4\\x20\\xc8\\xc8\\x02\\x13\\x30\\\n\\x04\\x51\\x80\\xd9\\x4d\\x84\\x31\\xd8\\x14\\x15\\x47\\x29\\xbe\\x13\\xeb\\x00\\\n\\x69\\xb2\\xc9\\x83\\xcf\\x0b\\x7a\\xe5\\x33\\x13\\x2e\\x58\\x00\\x8d\\x55\\xff\\\n\\x00\\x0e\\xf3\\x9f\\x6f\\x2e\\x94\\x4a\\xdb\\x87\\xb0\\xf3\\x06\\x6a\\xdb\\x18\\\n\\x3b\\xc3\\x40\\x82\\x1a\\x86\\x95\\x40\\x40\\x9b\\x40\\x84\\x2d\\x13\\x24\\x00\\\n\\xee\\x03\\x69\\xf5\\x17\\x29\\x21\\xc5\\x2c\\xe2\\x70\\x57\\x4d\\xac\\x74\\x82\\\n\\xea\\x94\\x8c\\x07\\x0c\\xb4\\x2e\\xaa\\x7e\\xd4\\xe3\\xa4\\x3f\\x11\\xc9\\x20\\\n\\x75\\x81\\x55\\xaa\\xaa\\xad\\x09\\x5a\\x25\\x00\\x4a\\x20\\xa0\\xa0\\xfa\\x79\\\n\\xd2\\x31\\x51\\x95\\x59\\x0e\\xcc\\x52\\xd9\\x95\\x43\\x63\\x2c\\xf9\\x41\\xba\\\n\\xa2\\x9f\\x47\\x9f\\x52\\x9e\\x74\\x37\\x73\\x89\\xce\\x38\\x80\\x27\\xc5\\x7b\\\n\\x66\\xfa\\xcd\\x74\\x99\\x38\\x46\\x5d\\x50\\x81\\xb4\\xad\\x4a\\x13\\x26\\x8c\\\n\\x64\\x24\\x90\\x5d\\x88\\x3b\\x8a\\x03\\xe8\\x86\\xdf\\xb8\\x54\\x07\\xa4\\x4b\\\n\\x81\\x2d\\x2a\\xed\\xfb\\xba\\x5a\\x50\\xb5\\x12\\xb0\\xfd\\x43\\xed\\x23\\xa2\\\n\\xcc\\x46\\xce\\xb6\\x00\\x7e\\x55\\x15\\x55\\xa8\\x16\\x61\\xa0\\x04\\x59\\x97\\\n\\x93\\x0b\\x30\\x0f\\x8f\\xca\\xb7\\xd4\\x3d\\xac\\x9a\\xc8\\x69\\x93\\x06\\xb6\\\n\\xca\\x8c\\x40\\x25\\x13\\x50\\x05\\x9b\\x8b\\x4d\\x78\\x50\\x07\\xe9\\x54\\x7d\\\n\\x6f\\x11\\x2e\\x41\\x71\\xb2\\xe1\\xd0\\xbf\\xa1\\x1b\\x05\\x84\\xb4\\x8b\\x24\\\n\\xd7\\x48\\xd0\\x44\\x03\\x33\\x99\\x20\\xb4\\x44\\x6f\\x06\\x0b\\x4b\\x2a\\x90\\\n\\x3e\\x03\\x44\\xd2\\xd7\\x8f\\x85\\x40\\x80\\x08\\xa0\\x17\\x45\\x83\\x6e\\x28\\\n\\x74\\x26\\xb5\\xc5\\x0a\\x19\\x4e\\x3b\\xeb\\xcf\\x1e\\x6e\\x0a\\x43\\x3d\\xb2\\\n\\x91\\x47\\xd3\\x9a\\xc1\\x0b\\xe7\\x1a\\x09\\x71\\x16\\xc0\\xa8\\x0d\\x4f\\x94\\\n\\x56\\x4e\\xc7\\x9a\\xc9\\x14\\x94\\x8a\\x06\\xab\\x17\\xd4\\x87\\xf6\\x51\\x15\\\n\\x69\\x8c\\x84\\x76\\x2c\\x27\\xa7\\xf6\\x5b\\x44\\x59\\x9e\\x74\\x80\\xb0\\xf3\\\n\\xa4\\x2d\\x53\\xe1\\xa3\\xaa\\x09\\x7c\\x8d\\x60\\x3b\\xd8\\x01\\x15\\xc3\\x76\\\n\\x9c\\x3e\\x2b\\x25\\x84\\x32\\x24\\x71\\x1c\\x09\\x19\\xcb\\x4e\\x42\\x42\\xc4\\\n\\x10\\xb5\\x42\\x41\\x4c\\x4c\\x58\\x18\\xe4\\x84\\x26\\xc0\\x56\\x10\\x47\\x72\\\n\\x60\\x49\\xbe\\x10\\x08\\x24\\xa3\\x43\\xca\\x40\\x08\\x87\\xf2\\x10\\x1a\\x45\\\n\\xe8\\x57\\xac\\x3d\\xbf\\x1f\\xca\\x5c\\x19\\xcd\\xe6\\xa9\\x2b\\x45\\xb6\\x56\\\n\\x8e\\x46\\x64\\x71\\xa3\\x40\\xb7\\x81\\xb4\\xd9\\x16\\x3d\\x4c\\xe3\\x94\\x3a\\\n\\x80\\x94\\xb9\\x5a\\xc9\\xa8\\xef\\xce\\xd7\\x86\\x85\\xd2\\xd8\\x8f\\x10\\xa0\\\n\\x4b\\xf0\\xee\\x49\\x72\\x39\\x00\\xc4\\xdc\\x4a\\x83\\xc3\\x47\\x58\\xb4\\x91\\\n\\x08\\x86\\x0f\\x45\\xb2\\x15\\x55\\x97\\x75\\x2d\\x29\\x5b\\x42\\x4d\\x61\\x5e\\\n\\x25\\x1a\\x91\\x30\\x00\\x9b\\x44\\x00\\x30\\x00\\x01\\x05\\x79\\x50\\x72\\x2c\\\n\\x9d\\x0a\\x16\\xb2\\x35\\x25\\x7a\\xb6\\x14\\x13\\x39\\xa0\\x45\\x6f\\xa1\\x3d\\\n\\x64\\x40\\x08\\x80\\x05\\x04\\x80\\x80\\x18\\x94\\x41\\xd3\\x28\\x51\\x2c\\x20\\\n\\x50\\x02\\x8a\\x05\\x4f\\x25\\x0b\\x42\\xdc\\x03\\x52\\x0c\\xe2\\x5e\\xbf\\x18\\\n\\x00\\xb2\\x9a\\x3c\\x80\\x08\\x1b\\x03\\x7c\\x85\\x80\\x59\\x6b\\xc7\\xaa\\xd5\\\n\\x2b\\x26\\x81\\x2d\\x21\\x22\\x02\\x80\\x90\\x7b\\x4f\\x24\\xd2\\xb6\\x44\\xcf\\\n\\xe1\\xac\\xc0\\x6f\\x60\\xfc\\x45\\x3d\\x18\\x60\\x87\\x94\\x8d\\x2b\\x00\\xb5\\\n\\x96\\xe9\\x7b\\x55\\x20\\x4c\\x0e\\x38\\x5e\\x42\\xa0\\x44\\x83\\xb2\\xd1\\x44\\\n\\x62\\xe4\\x58\\xc3\\x15\\x00\\xc3\\x1a\\x35\\x0d\\x05\\x5b\\x9d\\x39\\xc6\\xb6\\\n\\x88\\x08\\xd5\\xf4\\x84\\x44\\xb2\\xa9\\xa1\\x87\\x2a\\x4a\\x28\\xb9\\x8d\\xcd\\\n\\x5c\\xfc\\x30\\x37\\x49\\x88\\x37\\x1c\\x4f\\xb6\\x61\\x2a\\x63\\xa0\\x33\\x84\\\n\\x81\\xe1\\xa9\\xc7\\x60\\xd4\\xaa\\xf8\\x27\\x89\\xbf\\x1d\\x6a\\x69\\x49\\x50\\\n\\x01\\xa8\\xa0\\x03\\x6a\\xb8\\x8f\\x4f\\x94\\x68\\xf9\\x47\\x20\\x43\\xa0\\x21\\\n\\x2f\\xd1\\xd7\\xd8\\x53\\x08\\x25\\xbb\\x80\\x6f\\x80\\x7d\\xe0\\xb4\\x16\\xb6\\\n\\x0f\\xac\\x54\\x02\\xe1\\x83\\x39\\x14\\xd4\\x8a\\x63\\xa1\\x81\\x59\\x02\\xdb\\\n\\x4c\\xbc\\x80\\xdb\\x38\\x04\\x9b\\x00\\x3d\\x06\\x14\\x3f\\x13\\xa6\\x88\\xf7\\\n\\xaa\\x20\\x35\\x2a\\x7f\\xa1\\xfe\\x49\\xcb\\x9d\\xea\\x40\\xb4\\x0a\\x7d\\xe9\\\n\\x51\\xf2\\x39\\x2e\\xf5\\x30\\x8b\\x3a\\x64\\x35\\x47\\xa3\\x36\\x40\\xd4\\xc9\\\n\\xc0\\x67\\x1a\\x2b\\x9e\\xa1\\xe1\\x89\\xf4\\x8d\\x22\\x36\\x04\\xd8\\x23\\x11\\\n\\xae\\xf6\\xd5\\x03\\xb0\\xb6\\xa0\\x38\\xfc\\x77\\x0b\\x60\\x15\\x90\\x34\\x00\\\n\\x35\\x2f\\x47\\x00\\x3a\\x19\\x3d\\x54\\x68\\xdc\\x1c\\x38\\xe7\\x06\\x96\\x82\\\n\\x04\\x88\\x52\\x28\\x9e\\x81\\x40\\x25\\xa5\\x34\\xd7\\x81\\x8f\\x9a\\x87\\xa9\\\n\\x34\\x62\\x50\\x0c\\xa4\\x94\\x00\\x3c\\x17\\x05\\x0c\\x3e\\xb0\\x71\\x80\\xb6\\\n\\xe7\\x73\\xe4\\x4e\\x8b\\x13\\x5a\\x48\\x0b\\x02\\x88\\x00\\x51\\x38\\x03\\xe5\\\n\\xd8\\xcc\\x82\\x0c\\x84\\xa7\\x25\\x35\\x36\\xdd\\x16\\x83\\x9a\\x52\\xa8\\x08\\\n\\x1e\\xc4\\x83\\x5d\\x3c\\x41\\x44\\x50\\x08\\xa8\\xa3\\xa0\\xc2\\x07\\x27\\xae\\\n\\x23\\x60\\x0c\\x1a\\x03\\xa5\\x05\\x69\\xc8\\x70\\xc4\\x11\\x29\\x01\\x2d\\xaa\\\n\\xcc\\x79\\xc8\\xe3\\x27\\x89\\xa8\\x71\\xa5\\xc4\\x50\\xde\\x11\\xc8\\x18\\x49\\\n\\x1c\\x04\\x26\\x4b\\xc6\\x38\\xf1\\xc4\\x6c\\x56\\xda\\xc0\\xf4\\xc1\\x5e\\x34\\\n\\x36\\xd8\\xda\\xad\\x02\\x1d\\x47\\xa5\\x04\\x80\\xc8\\xf3\\x0d\\xb8\\x15\\x04\\\n\\x8a\\x98\\x78\\xe5\\xa6\\x72\\xd0\\xa9\\x55\\x86\\x7c\\x86\\x0c\\x8c\\x3e\\x3a\\\n\\xf3\\x59\\xc8\\x70\\x09\\x39\\xb3\\x68\\x38\\x90\\x7e\\x94\\xa0\\xa5\\xd8\\x00\\\n\\xe6\\xb8\\xaf\\x15\\xb6\\x61\\x60\\xe2\\x00\\x01\\xd5\\xdb\\xcc\\x50\\x44\\xb4\\\n\\xb4\\x80\\xf8\\x3b\\xc0\\xac\\x09\\xe3\\x46\\x78\\x4c\\x22\\xb1\\xd9\\x66\\xfa\\\n\\x62\\x8a\\x40\\xe0\\x1e\\x41\\x95\\x25\\x8e\\x0f\\x6d\\x5e\\x5c\\xec\\x45\\x29\\\n\\x49\\x31\\xc7\\x74\\x5c\\x19\\x98\\x4c\\x33\\x41\\x82\\x76\\x0c\\x2c\\xa8\\xb0\\\n\\x88\\x57\\x48\\x64\\x3c\\xa7\\xaf\\xcf\\xc4\\xe2\\x50\\x21\\xbf\\x0c\\x40\\x63\\\n\\x8a\\x2a\\x30\\x4a\\x44\\x42\\x26\\xa1\\x8c\\x8b\\x86\\x36\\xe7\\x0a\\x50\\x98\\\n\\x08\\xa8\\xc9\\x51\\x7c\\x7c\\x60\\x01\\x20\\x53\\x0d\\x5e\\x8c\\x08\\x04\\x02\\\n\\xd4\\x24\\x45\\x86\\x1b\\x57\\xf0\\xa2\\x50\\x2f\\x55\\x26\\xb6\\x95\\xf1\\x48\\\n\\x6b\\xea\\x00\\x8e\\x1f\\x34\\xa7\\x30\\x07\\xe2\\x00\\x87\\x86\\xcb\\x20\\xc2\\\n\\xfc\\xdc\\xb5\\x90\\x54\\x84\\x10\\x06\\xc4\\xf6\\x2e\\xea\\x22\\x1c\\xd2\\x1c\\\n\\x73\\xab\\x01\\xbc\\x06\\x20\\xc5\\xc3\\x99\\x07\\xef\\x41\\xfb\\x88\\x43\\x86\\\n\\x10\\xd5\\x48\\x4a\\x27\\x20\\x72\\xca\\x87\\x2f\\x00\\x17\\xc3\\x04\\x14\\xcc\\\n\\x6c\\xbf\\xa7\\x0d\\x1b\\xa5\\xa0\\x7d\\x5e\\x36\\x89\\xe0\\x0a\\x0e\\x55\\x16\\\n\\x88\\xf3\\xd0\\xb7\\x6c\\x48\\x04\\x5e\\x1a\\x81\\xfd\\x3c\\x1e\\xc0\\x79\\x73\\\n\\x1c\\x21\\xa4\\x38\\x44\\x02\\x54\\x93\\x5c\\x94\\x58\\xac\\x9c\\xee\\x17\\x1b\\\n\\x91\\x41\\x00\\x46\\x6a\\xb3\\x96\\x86\\x87\\x16\\xc8\\x80\\x85\\x8c\\x0a\\xf6\\\n\\xa9\\xc7\\xab\\xc7\\x52\\x28\\xca\\x83\\xee\\x03\\x5a\\xe8\\xab\\x12\\x44\\xa4\\\n\\x29\\x09\\x15\\xe2\\xa2\\x71\\x43\\x90\\x84\\x21\\x69\\x37\\xeb\\x63\\x8c\\x2a\\\n\\xbc\\xe2\\x91\\x64\\x16\\x09\\x60\\x88\\x16\\xa7\\x2e\\xdc\\x19\\x69\\x06\\xbe\\\n\\x08\\xdf\\x69\\xa9\\x70\\x11\\x4b\\x20\\xa4\\x62\\x18\\x40\\x8d\\x44\\xbb\\x64\\\n\\xc6\\x83\\x45\\x34\\x1e\\x10\\x14\\x5c\\x6b\\x19\\xec\\x79\\xca\\x2b\\x94\\xe1\\\n\\x56\\x0f\\x65\\x35\\xf3\\x3f\\x87\\x01\\x0a\\x05\\xec\\x43\\x35\\xc1\\x48\\x93\\\n\\x12\\xf0\\x28\\x38\\x08\\x54\\x96\\x8c\\x14\\x53\\x3d\\x07\\xd9\\xa7\\xb6\\x9b\\\n\\xab\\x09\\x42\\x36\\xa3\\x1f\\x97\\xc2\\x56\\xe3\\x62\\x19\\x5f\\x0a\\x93\\x4f\\\n\\x87\\xe0\\x5e\\xb8\\x34\\x82\\x0d\\xca\\x5c\\x8b\\xf7\\x12\\xe9\\x06\\x45\\x28\\\n\\xa5\\x97\\x41\\x74\\x01\\x01\\x09\\xf8\\xf9\\xf4\\x49\\x11\\x14\\x8e\\x49\\x91\\\n\\x14\\x64\\x83\\xa2\\x1a\\xf0\\x0e\\x01\\xf5\\x92\\x7a\\x1a\\x12\\xa6\\x92\\x22\\\n\\xd1\\x49\\xa1\\x50\\x31\\x45\\xa2\\x00\\xdc\\x14\\x6c\\x86\\xa5\\x6e\\x0c\\xa2\\\n\\x38\\xc6\\x80\\x4a\\x06\\x85\\x70\\x82\\x7c\\xeb\\x0d\\x11\\x40\\xb5\\x28\\x5c\\\n\\xf8\\x7f\\xa0\\x0b\\xa5\\x24\\x41\\xf8\\xc5\\x8d\\x80\\x4b\\xea\\xc3\\x51\\x10\\\n\\x88\\x02\\xbf\\x12\\x72\\xb5\\x51\\x78\\xc8\\x4a\\x43\\x93\\xbc\\xe2\\xb5\\x0b\\\n\\x28\\x37\\x11\\xd4\\x02\\x18\\x3d\\xa2\\x8d\\x28\\x01\\xd8\\x7a\\x64\\x00\\x2e\\\n\\x02\\x2c\\x22\\x9d\\x50\\x46\\x19\\xd9\\x72\\x4d\\x26\\x09\\x28\\xe9\\x0a\\xc3\\\n\\x95\\x78\\xf9\\x00\\xb8\\x86\\xc2\\xd1\\x54\\xc3\\xce\\xb0\\x51\\x94\\x37\\x82\\\n\\x0d\\x9b\\x50\\x00\\x7a\\x12\\x96\\x95\\xc7\\xd0\\x25\\x01\\xf0\\x8a\\xaa\\x08\\\n\\xb1\\x1f\\x0b\\x69\\xc2\\xc8\\x2d\\x41\\xf2\\xad\\x07\\x9a\\x8a\\x12\\x50\\xcc\\\n\\x06\\xd0\\xc8\\xda\\xa1\\xcc\\x1b\\x4d\\xe0\\x14\\x68\\x60\\xaa\\x8c\\xe8\\x8f\\\n\\x14\\x0b\\xdd\\xd0\\xbf\\x22\\x84\\x27\\x82\\x0d\\x68\\xa6\\xd2\\xc1\\x00\\x46\\\n\\xe6\\x0a\\x89\\xbd\\x3c\\xe7\\x66\\x60\\x65\\x0a\\x3b\\x61\\x0c\\x86\\x93\\x7d\\\n\\xf1\\x38\\x08\\x4d\\xa4\\x0f\\x42\\xaa\\x21\\x29\\x21\\x10\\x9b\\x4d\\x45\\x4a\\\n\\x54\\xe0\\x80\\xa1\\x05\\x77\\x0c\\x43\\x54\\x43\\x52\\xd1\\xe4\\xef\\x09\\x16\\\n\\xa5\\x6a\\x5b\\x01\\xf4\\x90\\x78\\x16\\x10\\x50\\xc1\\x1d\\x1a\\x40\\x5b\\xba\\\n\\x08\\xf1\\x2d\\xa1\\x62\\x00\\x69\\x26\\xe3\\xa0\\x2c\\x82\\x9a\\x25\\x22\\x26\\\n\\x42\\x7c\\x8b\\x4d\\x21\\xc7\\x66\\x70\\x99\\xac\\x08\\xab\\x3c\\x18\\x13\\x90\\\n\\x23\\x83\\x08\\x05\\x4a\\xf7\\xac\\x76\\x2d\\x38\\x01\\xb6\\x81\\xcd\\x45\\xc9\\\n\\xb3\\xc1\\xb1\\x2d\\xc0\\xdb\\x18\\xab\\x20\\xa0\\x19\\xc7\\xf9\\xf9\\x88\\x6e\\\n\\x86\\x8b\\xe1\\x0b\\x4a\\x8d\\xc9\\x6a\\xc0\\x60\\x93\\xc0\\x5a\\xe1\\xe0\\x22\\\n\\x14\\xaa\\x3c\\x23\\x48\\x9a\\xf9\\xd0\\x78\\x0c\\x91\\xc1\\x52\\x4e\\xc8\\xfa\\\n\\xa5\\x03\\xf0\\x28\\xc6\\xa8\\x40\\x26\\x8a\\x62\\x47\\x0a\\x1f\\xe5\\x5d\\x2a\\\n\\x92\\x5d\\xd2\\xa0\\xd1\\x51\\x5e\\xc2\\x43\\xf5\\x28\\xa3\\x64\\x98\\xe8\\x4a\\\n\\x49\\x91\\x1d\\x17\\x92\\x02\\x00\\x14\\x54\\x2a\\x59\\xed\\xb8\\xb1\\xab\\x33\\\n\\x5e\\x5e\\x09\\x36\\x1b\\x64\\xba\\x83\\x2e\\xfc\\x8f\\x71\\x71\\x30\\x85\\x1f\\\n\\x5e\\x16\\x34\\xe9\\x29\\x59\\x0a\\x1a\\xb0\\x22\\x86\\x34\\xb0\\x58\\xea\\xd7\\\n\\x31\\x1c\\xd7\\x2b\\x15\\xa1\\x46\\x50\\x10\\x09\\xc7\\x39\\xb0\\x84\\xc5\\xd4\\\n\\xc2\\x0f\\x8c\\xd8\\x6b\\x71\\xe1\\xea\\x0b\\x49\\x6a\\x22\\x2b\\xc0\\xf8\\x07\\\n\\x32\\x75\\xc2\\x10\\x31\\xc0\\x7c\\x35\\x26\\xa0\\x48\\x58\\x12\\x47\\xc0\\x87\\\n\\x14\\x2d\\xbe\\xfb\\x47\\x51\\xf4\\xd0\\xa8\\xbd\\x04\\x54\\x55\\x0d\\xd3\\xa8\\\n\\x64\\xf2\\x80\\x52\\xa7\\x31\\x18\\xa2\\x12\\x53\\x16\\x52\\xc6\\x95\\x61\\xcf\\\n\\x95\\xa1\\xe3\\x0e\\x5b\\x69\\xeb\\x00\\xf6\\x90\\xad\\xaa\\x66\\x8a\\x41\\x81\\\n\\xf8\\x7a\\xe1\\xad\\x95\\xab\\x71\\x08\\xa7\\xd5\\x3e\\x87\\x5c\\x65\\x8b\\x8b\\\n\\xe1\\x27\\xdb\\xf4\\xaf\\x09\\x89\\xd8\\x35\\x51\\xe0\\x29\\x13\\xfb\\xb3\\x74\\\n\\x73\\xa4\\x52\\xd3\\x6c\\x8c\\xe3\\xa9\\x70\\x94\\x02\\x24\\x70\\xd3\\x03\\x50\\\n\\x1a\\x2c\\xd0\\x40\\x20\\x55\\x35\\x54\\x51\\x66\\xff\\x00\\xc9\\x28\\x91\\x03\\\n\\xe8\\x93\\x1d\\x2c\\x51\\xa8\\x10\\x14\\x20\\x16\\xbc\\x5f\\x9e\\x07\\x27\\xf9\\\n\\xea\\x51\\x49\\x0e\\x40\\xc2\\x02\\x39\\xa9\\x6f\\xd4\\x84\\x40\\x32\\xae\\x9b\\\n\\x92\\xf5\\x64\\xad\\xa2\\x8c\\x44\\x9a\\x40\\xe5\\xbe\\x80\\xae\\x04\\x50\\xd0\\\n\\x29\\x46\\x70\\x0f\\x24\\x40\\x41\\x46\\xb0\\x09\\x60\\x13\\x7e\\x0e\\xf1\\x51\\\n\\x86\\x8f\\xc7\\x95\\xa5\\x4b\\x27\\x87\\x3c\\x99\\x7f\\x4d\\x12\\x22\\x84\\x99\\\n\\x60\\x7d\\xbe\\x32\\xc5\\xf1\\xea\\x35\\xb6\\x38\\x55\\x51\\x08\\xd4\\x88\\xa8\\\n\\x06\\x49\\xf5\\xbc\\x69\\x9a\\x4b\\x62\\xc4\\x57\\x22\\x47\\x46\\x17\\x2a\\x0d\\\n\\x9b\\xac\\x4a\\x30\\x69\\xa0\\xfa\\x8d\\x29\\x05\\x34\\x7b\\xdd\\xa5\\x06\\x54\\\n\\x56\\xe1\\x46\\x09\\x02\\x2a\\x66\\x02\\x35\\xd0\\x56\\xc3\\x8a\\x6b\\x24\\x6d\\\n\\x8b\\x90\\x9a\\x24\\x32\\xa8\\x75\\x80\\xda\\xb6\\x49\\xc0\\xf9\\x0d\\x24\\x83\\\n\\xdf\\x6c\\x40\\x53\\x4a\\x70\\x24\\x83\\x8d\\x73\\x41\\x94\\x43\\xa2\\x73\\x21\\\n\\x14\\x36\\x85\\xff\\x00\\x1c\\x6a\\x19\\x92\\x46\\x30\\x8a\\x08\\xc2\\x95\\x95\\\n\\xe0\\x35\\x4d\\x99\\x12\\x16\\x72\\x2d\\x29\\x4c\\x27\\x17\\xa5\\xfe\\xe2\\x34\\\n\\x20\\x56\\x3f\\x02\\x00\\xd2\\xa5\\x56\\xfb\\xd0\\x59\\x11\\x30\\x92\\x9c\\xdb\\\n\\x6e\\xe3\\x91\\x0d\\x04\\x92\\x4e\\x07\\x84\\xd1\\x20\\x90\\x24\\x02\\xaa\\xd8\\\n\\x0a\\x13\\xd2\\x9c\\x27\\x2f\\xa0\\x9e\\xad\\xad\\xcd\\x80\\x28\\xa1\\x41\\x31\\\n\\x14\\x61\\xc0\\xb6\\x01\\x3e\\x60\\x85\\x11\\x04\\x32\\xf3\\x65\\x34\\x52\\x80\\\n\\xf0\\xac\\x17\\x4b\\xc2\\x41\\x20\\x7d\\x3c\\x0a\\x94\\x84\\x3b\\xe2\\x2a\\xed\\\n\\x10\\x7d\\x14\\x1d\\x90\\x00\\xf6\\x93\\x9c\\xf3\\x94\\x92\\x5a\\xa9\\x5c\\x18\\\n\\xed\\x71\\xbf\\x04\\x9d\\x01\\x59\\xed\\x41\\x94\\xe3\\xd3\\x1f\\xf6\\x25\\xce\\\n\\x85\\x23\\xac\\x51\\x68\\x15\\x38\\x24\\xed\\x94\\x2f\\xd1\\xed\\xdd\\x61\\x4c\\\n\\x02\\xbe\\xbd\\x14\\x8d\\xb6\\xa7\\xa0\\xb1\\x00\\x16\\x71\\x40\\x08\\xb4\\x73\\\n\\xca\\x5d\\x63\\x56\\xd8\\x96\\xa0\\x30\\x4e\\x0e\\xce\\x2f\\x48\\xa7\\xbd\\x47\\\n\\xd1\\x02\\x29\\x42\\xc0\\x89\\xe4\\x1a\\x08\\xc0\\x00\\xf8\\x8c\\x82\\x4b\\x62\\\n\\x92\\xa4\\x50\\x2a\\x90\\x12\\x7b\\x20\\x16\\x90\\x0d\\xf2\\x49\\x67\\x62\\x0c\\\n\\xc8\\x9b\\x38\\xa5\\x3c\\xd4\\x28\\x3f\\x4b\\x66\\x61\\xf0\\x42\\x72\\x09\\xcc\\\n\\x48\\x5d\\xa1\\x20\\x15\\x82\\x11\\x7e\\xa8\\x92\\xd4\\x63\\xd4\\x22\\xe5\\x54\\\n\\x8b\\x00\\x6f\\x2f\\x42\\xa9\\xc3\\x3c\\x38\\xaf\\x23\\x62\\x36\\xe6\\x2f\\x1e\\\n\\x64\\xd8\\x04\\x68\\x3a\\x13\\xb9\\x11\\x04\\x19\\x08\\xaa\\x7d\\xca\\x35\\xa8\\\n\\x2b\\xfe\\x11\\x26\\xa5\\x38\\xa1\\x42\\xb2\\xc1\\x83\\xd0\\xfe\\xf5\\x69\\x72\\\n\\x58\\x0b\\x28\\x54\\x50\\x52\\x75\\x40\\x5e\\x9a\\x90\\x6e\\x4b\\x81\\x60\\xdf\\\n\\x79\\x18\\x09\\x98\\x02\\xd1\\xf2\\x98\\x85\\x4d\\x66\\x9a\\x0e\\x37\\x42\\x62\\\n\\xe5\\x0e\\x65\\x07\\xee\\x17\\xa7\\x63\\xd0\\x0b\\x24\\x65\\x02\\xc5\\x0a\\xa9\\\n\\x82\\x3c\\xcc\\x11\\x70\\x89\\x43\\xab\\x14\\x89\\xf0\\xe8\\xcf\\xb8\\x61\\x47\\\n\\x1c\\x14\\x0a\\x68\\x11\\x40\\x70\\xd7\\xb9\\xc9\\x04\\x93\\x38\\x28\\x54\\x16\\\n\\x73\\xc3\\x70\\x9a\\x66\\x10\\x27\\xc4\\xa0\\x53\\xd3\\x2e\\xd2\\x9a\\x72\\x55\\\n\\x13\\xc6\\x94\\x52\\xe9\\xc8\\xa2\\x6e\\xe0\\xb0\\x81\\x32\\x68\\x41\\x41\\x13\\\n\\x24\\xf4\\x1c\\x0a\\xe5\\x08\\x29\\x22\\x50\\x78\\x8a\\xc8\\x13\\xa4\\xa1\\x03\\\n\\x80\\xa0\\x4b\\x2e\\x75\\x22\\xdb\\x69\\x12\\x16\\x4d\\x22\\x83\\xc4\\x80\\x45\\\n\\x02\\xc0\\x7f\\x51\\x11\\xe3\\x16\\xbe\\x17\\x32\\xae\\xc9\\x09\\xa0\\x0d\\x48\\\n\\x01\\x85\\x01\\xe9\\x39\\x07\\xd2\\x25\\xfd\\xfe\\xa9\\xff\\x00\\xde\\xa3\\xab\\\n\\x68\\xb8\\x9c\\xd7\\x02\\x00\\x83\\x17\\xc9\\x06\\x7a\\x8a\\xad\\x30\\x0f\\xf4\\\n\\x9b\\xa5\\x21\\x98\\x90\\xda\\x8c\\xa5\\x40\\x01\\x3e\\xb8\\xe9\\xe8\\x91\\xea\\\n\\x2a\\xaa\\x08\\x40\\xf2\\x3a\\xea\\x42\\x03\\x32\\x16\\x28\\x69\\xdd\\x8a\\x06\\\n\\x49\\x23\\x12\\x0d\\x56\\x5f\\x65\\x87\\x39\\xe5\\xba\\xe2\\x38\\xf7\\x14\\x65\\\n\\x29\\x5d\\xe5\\x36\\x82\\xe7\\x6e\\x68\\xc0\\x42\\x1c\\x2c\\x4a\\x06\\xe5\\x10\\\n\\x63\\x8a\\x04\\x70\\xf0\\x72\\x03\\xf5\\x08\\x07\\xcd\\x02\\x31\\x18\\x85\\x05\\\n\\xa8\\xaa\\x11\\x9b\\xca\\x00\\xc8\\x4f\\xdd\\x71\\x15\\xeb\\xe2\\x68\\x22\\xc4\\\n\\xb4\\x21\\x5c\\x47\\xf9\\xdd\\x0b\\x19\\xbc\\xd3\\x0d\\xae\\x5d\\x04\\x40\\xc4\\\n\\x64\\x84\\x80\\x25\\x8c\\x60\\x11\\xbd\\x2b\\x41\\x4c\\x86\\xc9\\xc5\\x04\\x38\\\n\\xbb\\x8f\\x24\\x8c\\x24\\xd4\\x25\\x13\\x18\\x02\\xa6\\x34\\x31\\x72\\xab\\x5a\\\n\\x4f\\xf2\\x4c\\x12\\x74\\x73\\x04\\x36\\x7a\\x12\\x5e\\xa5\\x54\\x3f\\x97\\xa7\\\n\\x15\\xac\\x5b\\x43\\x4f\\xca\\x58\\x09\\xda\\x7c\\x79\\x72\\xaa\\x0b\\xe8\\x0f\\\n\\xe9\\x0c\\x58\\xb5\\xea\\x08\\xeb\\x19\\x39\\x8d\\xb5\\xe0\\x15\\xc9\\x5a\\x81\\\n\\xbd\\xc9\\xea\\xfa\\x02\\xfd\\x50\\x07\\x58\\xf4\\x1b\\x4d\\xa0\\x52\\x06\\xa5\\\n\\x10\\x4c\\x80\\x02\\x48\\xa0\\x1a\\x22\\xf5\\x51\\x1b\\xe9\\x8a\\xf3\\x8b\\x3b\\\n\\x65\\x68\\xc4\\x40\\x84\\x03\\x21\\x6e\\x4e\\x0c\\x50\\x75\\x9e\\x80\\x59\\xb8\\\n\\x62\\x4e\\x97\\x0d\\xf3\\x45\\x5f\\x32\\x8a\\x29\\x7c\\x80\\x18\\x79\\x21\\x0b\\\n\\x63\\x20\\x0c\\x7b\\xc5\\x1d\\x6e\\xbc\\x4a\\x5f\\x0c\\x47\\x9a\\x3a\\x00\\xe1\\\n\\x8a\\xab\\x91\\xc4\\xa9\\x92\\x23\\x55\\x7c\\xe9\\x63\\x6d\\x10\\x46\\x70\\x51\\\n\\x09\\x3d\\x0b\\x01\\xb1\\xdf\\x8f\\x0f\\x00\\x51\\x40\\x59\\x03\\x2b\\x06\\xc0\\\n\\x50\\x12\\xd6\\x91\\xd5\\xa5\\xd0\\xac\\x64\\x39\\x5d\\xf5\\x25\\x42\\xe8\\xba\\\n\\xb8\\x1b\\x19\\x67\\x42\\x54\\xaa\\x51\\x86\\xc3\\x95\\xd0\\xe0\\x06\\x3f\\xe7\\\n\\xec\\x32\\x9c\\x16\\x65\\x00\\x20\\x87\\x11\\x60\\x0f\\x71\\xeb\\x23\\xca\\x2e\\\n\\x54\\x3f\\x3d\\x4b\\x92\\xb0\\xf1\\x36\\x36\\xbb\\x5b\\x74\\x04\\x11\\xbe\\x03\\\n\\xbc\\xc0\\xa5\\x42\\xdf\\xd9\\x71\\x35\\x8e\\x10\\x68\\x80\\x51\\x82\\x8a\\x40\\\n\\x36\\x34\\x6f\\x00\\xa3\\x7a\\x20\\x89\\x40\\x22\\x00\\x87\\x3f\\x97\\x97\\x00\\\n\\x81\\x78\\x80\\x57\\xc3\\xc0\\xd0\\x3f\\x93\\x85\\x80\\x59\\x0a\\xc4\\x0f\\x0c\\\n\\x15\\x55\\x04\\x8f\\xa1\\x47\\x01\\x24\\x1b\\x4d\\x96\\x2e\\x71\\x60\\xe3\\xc7\\\n\\x85\\xbd\\x01\\x43\\x28\\xd5\\x30\\x24\\xa0\\x06\\x44\\x8e\\x15\\x84\\x54\\xb1\\\n\\x31\\x31\\x86\\x12\\x01\\x36\\x30\\x5b\\xab\\xee\\x3a\\xab\\x36\\x08\\x40\\x10\\\n\\x26\\xca\\x02\\x30\\x38\\x23\\x7a\\x34\\x3d\\x05\\xac\\x6d\\x4a\\x7c\\x3b\\x2d\\\n\\xd6\\x29\\x8a\\x24\\xd5\\x13\\xb0\\xe6\\x9f\\x0d\\x8c\\x34\\x1a\\x01\\x28\\x6a\\\n\\x70\\xf8\\xca\\x38\\xbc\\x2c\\x70\\xf8\\x52\\xc2\\x1c\\x16\\x0c\\x84\\x00\\x15\\\n\\x2e\\x39\\xa2\\xad\\x9a\\x9a\\x73\\xf2\\xb8\\x85\\x21\\x42\\x4c\\x0a\\xa2\\xd3\\\n\\xc1\\xda\\x5e\\xb2\\x1e\\x46\\x9b\\xaa\\x48\\x41\\xf8\\xb1\\x01\\x65\\x8b\\x55\\\n\\x1a\\x29\\xb2\\x28\\xf8\\xab\\x38\\x4c\\xc0\\x2a\\x14\\x70\\xe0\\x3c\\x0a\\x28\\\n\\xfc\\x9c\\xf2\\xb1\\xc0\\x80\\x40\\x51\\x3c\\x78\\x60\\x70\\xfd\\x79\\xa7\\xd6\\\n\\x49\\x97\\x56\\x98\\x77\\xff\\x00\\xe0\\xe6\\x90\\x30\\xc9\\xf1\\xe5\\x21\\x27\\\n\\x83\\xf4\\x1c\\xe1\\x68\\x1f\\xed\\x02\\x00\\x8e\\x89\\x05\\x1a\\x5d\\xe0\\x80\\\n\\xc1\\x0c\\x3d\\x3d\\x76\\x8b\\xed\\xbb\\xef\\x33\\x34\\x5e\\xa4\\x05\\x2b\\x8e\\\n\\xf8\\x00\\x0e\\x60\\xcf\\x78\\x20\\x56\\xf0\\x90\\x66\\xa1\\xc9\\xca\\xcc\\xc0\\\n\\x6e\\x18\\x52\\xd0\\xc9\\x6b\\x47\\x75\\x54\\x4b\\xd0\\x0d\\x60\\x86\\x02\\x05\\\n\\x7c\\xf3\\xe0\\x48\\x07\\x5d\\x2a\\x60\\x96\\x01\\x10\\xe3\\x3a\\xe5\\x32\\xc2\\\n\\x3c\\x88\\x69\\x0d\\xe6\\xae\\x42\\x0f\\x41\\x06\\x08\\x6a\\x34\\x31\\x10\\x8e\\\n\\x14\\xb1\\xf4\\x17\\xd9\\x15\\x7d\\xa0\\xb4\\xe2\\xcb\\xee\\x28\\x94\\xca\\xc0\\\n\\xe1\\x80\\x9f\\xce\\x73\\xd2\\x1c\\x19\\xa6\\x39\\x12\\x31\\x93\\xb0\\x1e\\x65\\\n\\xe7\\x4c\\x05\\x18\\x81\\x1c\\x50\\x75\\xdc\\xf0\\xd8\\x82\\x10\\xfa\\x96\\x49\\\n\\xac\\x83\\x2a\\xac\\x4b\\x98\\x63\\x31\\x17\\x09\\x08\\x94\\x4b\\xb6\\x14\\x02\\\n\\x13\\x50\\xb3\\x5b\\x39\\xbf\\xc7\\xdd\\x70\\x15\\x22\\xe2\\x68\\x6d\\x47\\x57\\\n\\xcd\\x83\\x18\\x68\\x80\\x02\\x6a\\xe5\\x3d\\x6a\\xd5\\xab\\x27\\x32\\xea\\x7b\\\n\\xe8\\x13\\xe2\\x3c\\xab\\xa1\\xe8\\x84\\x10\\x40\\x42\\xa5\\xac\\x31\\x78\\xf6\\\n\\xa0\\x21\\xfa\\x97\\x8a\\x34\\xfd\\x82\\x07\\x0e\\xc9\\xcc\\x16\\xa5\\x48\\xc8\\\n\\x0d\\x45\\x48\\x0a\\xba\\xb1\\x29\\xcb\\xf1\\x72\\x68\\x80\\x0f\\xa9\\x38\\x0b\\\n\\x26\\x58\\x60\\x03\\xa4\\x50\\xf2\\x0b\\x04\\x20\\xa3\\x23\\x34\\x91\\x41\\x12\\\n\\xf1\\xd3\\xfa\\x1f\\x90\\x53\\x04\\x7f\\x06\\x08\\x87\\xbd\\xa3\\x96\\xbd\\xca\\\n\\x02\\x51\\xd0\\x69\\x01\\x01\\x6c\\x54\\xe2\\x82\\x06\\xa3\\x69\\xa1\\xcc\\x06\\\n\\x50\\x50\\x60\\x1c\\x83\\xcd\\x0c\\x6d\\xe0\\xf2\\x5c\\x9a\\x67\\xd6\\x29\\x2a\\\n\\x95\\x21\\x58\\x12\\xf2\\x89\\x98\\x6a\\x82\\xf1\\x8a\\x02\\x39\\x04\\x66\\x08\\\n\\x3c\\xe9\\xbe\\xb3\\x1b\\x91\\xe8\\xea\\xbe\\x16\\xa6\\x05\\xd0\\x84\\x48\\xc5\\\n\\x38\\x54\\xb1\\xb5\\xad\\x61\\x85\\x0a\\x91\\xf6\\xac\\x27\\x78\\x37\\xb1\\x34\\\n\\x8c\\x4a\\x9d\\xdc\\xca\\x11\\x97\\xac\\xa0\\x5c\\x0a\\x8a\\x71\\xc1\\xc7\\x4a\\\n\\x10\\xd5\\xf4\\x16\\x84\\x04\\xd5\\xee\\x9e\\xa4\\xd4\\x12\\xcc\\x01\\x53\\x27\\\n\\xa2\\xbc\\xd9\\x78\\x82\\x8a\\x10\\x11\\x91\\x5f\\x2b\\x15\\x3b\\xc8\\x09\\x05\\\n\\x28\\x8e\\x29\\xfb\\x41\\x29\\xb7\\x40\\x11\\x41\\x0a\\x64\\x1c\\x24\\x7d\\x4d\\\n\\x73\\x02\\x52\\x82\\xae\\x81\\xd1\\xe6\\x14\\x6c\\xe9\\x88\\x28\\x27\\xc0\\x3f\\\n\\xe1\\x63\\xfe\\x0b\\x19\\xd4\\x3c\\x22\\x8b\\x7d\\x7d\\xfd\\xa0\\xcd\\xf5\\x3c\\\n\\xf1\\x14\\x3b\\x84\\x8c\\x43\\xc2\\x31\\xf0\\xda\\x6c\\x14\\x27\\x46\\x89\\x54\\\n\\x98\\x4d\\x42\\xa1\\x9a\\x80\\x0e\\x4c\\x39\\x06\\xc3\\x3e\\x24\\x90\\x40\\x80\\\n\\xd8\\x0c\\xb8\\x3d\\x9a\\xc3\\x06\\xd4\\x75\\x8a\\xca\\xc0\\xc6\\x84\\xe7\\x9f\\\n\\x01\\x07\\x25\\x89\\x8c\\xfe\\x28\\x48\\xac\\xf1\\x46\\x85\\x8e\\xd0\\x69\\x80\\\n\\xa0\\x50\\xab\\x45\\xe1\\x51\\x28\\x39\\x82\\xd9\\x3b\\xf6\\xdb\\xcc\\x2c\\xb8\\\n\\x14\\x12\\x67\\x91\\xf4\\x9c\\xd6\\x36\\xa1\\x07\\x52\\xab\\x35\\x36\\x0b\\x0b\\\n\\x99\\x11\\x27\\x05\\x0d\\xc0\\x82\\xf8\\x51\\x60\\xcd\\x11\\x72\\x0b\\x56\\x16\\\n\\xc4\\xb2\\x61\\xd3\\x52\\xc3\\x6a\\x22\\x86\\x4a\\xa4\\xc2\\x09\\x51\\x79\\x73\\\n\\x44\\x55\\x96\\x04\\x6e\\xfa\\x32\\xf5\\x5e\\xa4\\x50\\x15\\x02\\x0c\\xf8\\x91\\\n\\x31\\xbd\\xf8\\x20\\x28\\xb2\\x00\\x6b\\x51\\x33\\x0e\\x55\\x60\\x5e\\x71\\x43\\\n\\xd5\\x05\\xbb\\x16\\x2d\\x15\\xe9\\x7f\\x00\\x92\\x31\\xb1\\x81\\x3e\\x2c\\xe3\\\n\\x45\\x34\\x05\\xc7\\x9a\\xe4\\x23\\x89\\x2d\\x27\\x40\\x8b\\x1f\\xe8\\xf0\\xe3\\\n\\xf8\\x6a\\x48\\x11\\xc2\\x8a\\x04\\xd2\\xa3\\x51\\x4e\\xbd\\x86\\x03\\x0b\\x54\\\n\\x0c\\x5b\\xbe\\x3e\\xe1\\xe7\\x5f\\x0a\\x44\\x51\\x10\\x20\\x61\\x22\\x51\\xc2\\\n\\x2b\\xa0\\x26\\x35\\x27\\x9d\\xe1\\x03\\x84\\x07\\x13\\x89\\xab\\x20\\xc0\\xe8\\\n\\x41\\x54\\xc1\\x59\\x77\\x8c\\xe8\\xd1\\x58\\x08\\xc3\\x06\\x22\\x5a\\x03\\xd1\\\n\\xc6\\xbe\\xe8\\x51\\x43\\x55\\xa1\\x93\\x28\\xe1\\x0c\\x8e\\xa4\\x04\\x20\\xc0\\\n\\x15\\x0d\\x2d\\x90\\x46\\x9f\\x05\\x54\\xa6\\x26\\xba\\xad\\x29\\x00\\x5c\\xb7\\\n\\x3e\\x54\\x34\\x04\\xc0\\x55\\x12\\xad\\x05\\x5e\\x63\\x00\\x2a\\x54\\xb8\\xa8\\\n\\x23\\x8f\\x74\\x39\\xd0\\x21\\xa9\\x08\\x27\\x1c\\x1a\\x10\\x2a\\x84\\x0c\\xa6\\\n\\x6a\\x9f\\x41\\x60\\x23\\x1e\\xd4\\xde\\x7c\\x4e\\xc0\\x06\\x20\\x73\\x14\\x54\\\n\\xe4\\xc8\\x9d\\x12\\xb4\\x18\\x09\\x0e\\x7e\\xbd\\xfe\\x38\\x88\\x92\\x4e\\x04\\\n\\x58\\xab\\x2c\\x89\\xa7\\x61\\xfa\\xc8\\xba\\x97\\x46\\x3f\\xe3\\x40\\x01\\xa3\\\n\\xe5\\xe0\\x9e\\xec\\x02\\xac\\x80\\x1b\\xce\\x68\\x43\\x43\\x23\\xd7\\x93\\x0d\\\n\\xba\\xea\\x04\\xd4\\x1a\\x22\\x26\\x3e\\x8a\\x69\\x12\\xf7\\x21\\xb0\\xa5\\x60\\\n\\x80\\xec\\x12\\x04\\xa2\\xc4\\x17\\x02\\xec\\xa1\\x07\\x5d\\x65\\xe6\\x15\\x59\\\n\\x82\\xc3\\x84\\xa8\\x98\\xa2\\x8a\\x5f\\x21\\x00\\x89\\xbe\\x00\\x53\\x22\\x01\\\n\\xf4\\x5d\\x1d\\x49\\xba\\xc5\\x50\\xa4\\x37\\x1b\\x52\\xb4\\x94\\x93\\xc0\\xbc\\\n\\x9a\\x22\\xc0\\x11\\xa9\\x8a\\x44\\x05\\xea\\x21\\x43\\x48\\x20\\xce\\x94\\x6c\\\n\\x6c\\xa3\\x51\\x8f\\xa0\\x06\\x02\\x00\\x59\\x5a\\x62\\x27\\xa4\\x8a\\x4c\\x84\\\n\\x94\\x5f\\x45\\x2f\\x88\\x83\\x2a\\x40\\x0a\\xc2\\x2a\\x31\\xc7\\x03\\x8c\\x36\\\n\\x22\\x4c\\x5f\\xdb\\x27\\x11\\xc3\\xa1\\x06\\x01\\x9b\\xcd\\xd9\\x67\\xad\\xa3\\\n\\xcb\\xe5\\x9d\\xde\\xb6\\x0a\\x1c\\x20\\x96\\x50\\x9a\\x34\\x4d\\xce\\xe2\\xe5\\\n\\x6b\\x13\\x45\\x15\\x55\\x0a\\xec\\xce\\x24\\x8f\\x92\\x87\\x85\\xbc\\x59\\x33\\\n\\x40\\x04\\x02\\x20\\x3c\\x28\\x18\\x4f\\x90\\x21\\x4e\\xa1\\x17\\xa8\\x0a\\x8d\\\n\\x20\\x9c\\x43\\x28\\x7e\\x08\\x53\\x91\\x5d\\x83\\x4b\\xae\\xce\\x8f\\x19\\x94\\\n\\x56\\x9c\\xd3\\x80\\xa0\\x20\\x28\\xc6\\x94\\x58\\x41\\x09\\x79\\x50\\x45\\x05\\\n\\xe0\\x46\\x52\\x63\\x8b\\x21\\x28\\x45\\xcb\\xba\\x08\\x24\\xb1\\xe6\\x5a\\xb8\\\n\\x51\\x17\\xf0\\x00\\x46\\x14\\xa0\\x31\\xdb\\x16\\x90\\x94\\x03\\x66\\x95\\xe8\\\n\\xb2\\x89\\x57\\x03\\xc3\\x4a\\x0c\\x43\\x0a\\x2b\\x59\\xda\\x02\\xcf\\x74\\x6d\\\n\\x43\\x04\\x28\\x63\\xa9\\x95\\xf0\\xed\\x77\\x9f\\x45\\x20\\x2a\\xa6\\x64\\xb2\\\n\\xf9\\xc8\\x90\\xb2\\x72\\xc0\\x18\\x08\\x0a\\x94\\xa7\\x86\\xe4\\xa0\\x81\\x0c\\\n\\xaa\\x05\\x61\\xa1\\x03\\x51\\x0d\\x14\\x97\\x0c\\x1b\\x55\\x78\\x7c\\x34\\xb8\\\n\\x27\\x13\\x5b\\xcc\\x62\\x20\\xbb\\x9b\\x01\\x80\\x12\\xc0\\x84\\x01\\x20\\x28\\\n\\x86\\xc9\\x3d\\x1d\\x08\\xb6\\xb2\\xa5\\x03\\x96\\x50\\xb3\\x8a\\x28\\xc3\\x52\\\n\\x70\\x86\\x1f\\xb9\\x56\\x53\\x63\\x18\\x6a\\x94\\x12\\xda\\x1b\\x92\\xd6\\x38\\\n\\x9a\\x8b\\x9c\\x35\\x27\\xb0\\x40\\x9c\\xd8\\xf1\\x71\\xba\\x29\\x68\\x0d\\xac\\\n\\x0b\\xcc\\xa0\\x5e\\x82\\x44\\x21\\x06\\xb7\\x6d\\xcf\\x53\\x4a\\x00\\x50\\x15\\\n\\x58\\x13\\x4a\\xf8\\x4b\\x79\\x6d\\x16\\x8a\\x22\\xec\\x96\\x8d\\xaf\\x09\\xde\\\n\\x80\\xd0\\x83\\xa2\\xa6\\x2a\\xc5\\xe2\\x71\\x72\\x40\\x51\\x10\\xe4\\x2d\\xfd\\\n\\x25\\x58\\x01\\x7d\\xa8\\x16\\x34\\x41\\x85\\x40\\x08\\x91\\x45\\x45\\xa0\\xc2\\\n\\xac\\xe9\\x53\\x08\\x3f\\x44\\x83\\xea\\x1a\\x09\\x75\\xad\\xe5\\x2a\\x5c\\x26\\\n\\x0f\\x40\\x51\\xb6\\x21\\x09\\x94\\xbe\\xc6\\x7c\\xc6\\x9d\\xf0\\xcd\\xf8\\xf3\\\n\\xef\\x9e\\xf1\\x5a\\x74\\x34\\x41\\x46\\xac\\x31\\xca\\xc7\\xce\\x29\\x87\\x49\\\n\\x24\\x04\\xa5\\x6c\\x50\\x14\\x47\\x0e\\x34\\x84\\x05\\x25\\x92\\x97\\x12\\x34\\\n\\xa2\\xcb\\xd5\\xb9\\x31\\xde\\xce\\x2a\\x1b\\x00\\x14\\x81\\xed\\xeb\\x08\\x1a\\\n\\x4e\\xca\\x4a\\x28\\x97\\xbb\\x40\\xe1\\x9e\\x6d\\x07\\xa8\\x87\\x8b\\x1e\\x45\\\n\\x90\\x68\\x99\\x5e\\x04\\xaa\\x4b\\xa1\\x38\\x8e\\xb6\\xa3\\x72\\xc4\\x55\\x42\\\n\\xa8\\x20\\x03\\x18\\x9a\\x3a\\x2a\\x50\\x39\\xe1\\x25\\x43\\x23\\x61\\xc2\\x02\\\n\\x02\\xd4\\xa9\\x00\\x3a\\xab\\xd6\\x83\\x50\\x69\\x00\\x2c\\x6f\\x34\\x12\\x1f\\\n\\x87\\x03\\x60\\x32\\x0c\\xd7\\x5c\\x44\\x89\\x4b\\x06\\xaf\\x12\\x51\\x88\\x16\\\n\\x13\\x35\\xda\\x96\\x80\\x0a\\x4d\\xc1\\x6f\\xc2\\x60\\x3a\\xa4\\x3a\\xa5\\x25\\\n\\xe2\\x88\\xd1\\xf9\\xaa\\x2c\\xad\\x15\\x54\\x80\\x7b\\xec\\x2a\\xe5\\xe0\\x85\\\n\\x01\\x0a\\x7a\\x30\\x18\\x82\\x61\\x95\\x00\\x55\\x4d\\x11\\x51\\xde\\xc4\\x19\\\n\\xc1\\xeb\\x8e\\xf9\\x6b\\xc8\\x87\\xb8\\x3a\\x5f\\xf3\\x4f\\x01\\x62\\x50\\x33\\\n\\x15\\x4c\\xa9\\x7d\\xc9\\x84\\x47\\x3c\\x76\\x95\\x68\\xd6\\x69\\xb8\\x48\\xb4\\\n\\xe2\\x28\\x55\\x61\\x64\\xdf\\x94\\x50\\x01\\x44\\x52\\x4e\\x13\\x54\\x42\\x0f\\\n\\xca\\x2a\\x29\\x50\\x22\\xf0\\x2c\\xf1\\x09\\x47\\x19\\xaa\\x96\\x03\\x62\\x0b\\\n\\xca\\xb2\\x54\\x57\\xc3\\x02\\xd4\\x6d\\xf1\\x5a\\x47\\xf0\\x24\\x62\\xd5\\x81\\\n\\x1a\\x13\\x88\\xe4\\x1f\\xa1\\x43\\x04\\x51\\xbf\\x90\\xaa\\x3e\\x28\\x8b\\x8c\\\n\\xc4\\x20\\xf0\\x77\\x0c\\x05\\x8a\\xc1\\x82\\x2a\\x29\\x14\\x99\\xd5\\x0d\\xcf\\\n\\x5e\\xaf\\xeb\\x1a\\xed\\x92\\x04\\xfd\\xea\\xd5\\x52\\x93\\x15\\x64\\x56\\x6a\\\n\\x7b\\xe4\\xa7\\x5e\\xc6\\xa9\\xcc\\xa8\\x8d\\xec\\x20\\x78\\x02\\x52\\x51\\x56\\\n\\x10\\x9c\\x89\\x37\\xa9\\xe0\\x20\\x1c\\xbb\\x04\\x42\\x83\\x53\\xaa\\xa9\\xc3\\\n\\xa9\\x30\\x82\\x02\\x45\\xdf\\x5c\\xbf\\x8f\\x49\\x08\\x42\\x40\\xbc\\x7a\\x69\\\n\\x12\\x31\\xee\\x3c\\x02\\x52\\x9e\\xc5\\xe6\\x97\\x2a\\x70\\x50\\x29\\x10\\x26\\\n\\x18\\xa4\\x01\\x1e\\x99\\xc9\\x82\\x5e\\x4b\\x35\\x01\\xf8\\x2e\\x67\\x1e\\xaa\\\n\\x99\\xca\\x47\\x80\\xeb\\x54\\x0d\\x55\\x78\\x8b\\xd5\\x92\\xe7\\x29\\xc9\\x03\\\n\\x4e\\xbe\\xb6\\x0c\\x48\\xbc\\x15\\x69\\xb8\\xf8\\x57\\xb4\\x08\\x6a\\x8a\\x46\\\n\\x92\\xc8\\x04\\xd0\\x33\\x02\\x84\\x08\\xb4\\x68\\x55\\x2b\\x2a\\x19\\xcf\\x6f\\\n\\xd2\\xb1\\x88\\x54\\x18\\x1f\\xfd\\xa1\\xaa\\x02\\x31\\x64\\xf6\\xf2\\xb2\\x6a\\\n\\x63\\x61\\x6e\\xb4\\x1a\\xe3\\x10\\xf8\\x75\\x64\\x70\\xbe\\xbc\\x0f\\xf9\\xaa\\\n\\xb4\\x14\\x79\\xd3\\x2c\\x56\\xd5\\x07\\xba\\x0c\\xb9\\x33\\x04\\xd1\\xde\\x69\\\n\\x2e\\x0d\\x4a\\xa7\\x0e\\x60\\x01\\x0a\\x22\\x50\\xea\\x68\\x28\\x2b\\x40\\xaa\\\n\\x0c\\xe0\\x45\\xaa\\x34\\xc0\\x7e\\x40\\xf8\\x83\\xa8\\x40\\x0d\\xf4\\x38\\x2c\\\n\\xd7\\x4c\\x14\\x92\\xd0\\x69\\xe2\\x47\\x26\\x80\\xb2\\x80\\x72\\x3c\\x0b\\x07\\\n\\x94\\xcc\\x86\\xdb\\x8e\\x86\\xd4\\xd2\\x45\\x2e\\x46\\xff\\x00\\x09\\xc9\\x74\\\n\\xda\\x81\\x01\\x4c\\x68\\x58\\x7b\\x80\\xc0\\xc2\\x5d\\x98\\x4d\\x51\\x79\\x21\\\n\\x91\\xb9\\xbc\\xb5\\x06\\x23\\xd0\\x2e\\x24\\x4e\\xcb\\x7f\\xcf\\x86\\x02\\x66\\\n\\x0d\\xdf\\xde\\x67\\x69\\x63\\x8e\\x08\\xa4\\xc5\\x42\\x88\\x26\\x3f\\xbc\\xd9\\\n\\x4a\\x7e\\x83\\xaa\\x32\\x87\\x25\\xca\\x3a\\x42\\x01\\x2c\\x14\\x42\\xe1\\x99\\\n\\xf4\\x86\\x22\\x7a\\xe4\\x53\\xdd\\x72\\xd5\\x52\\xb4\\x88\\x94\\xab\\xef\\xef\\\n\\x02\\x14\\x87\\xc4\\x80\\xff\\x00\\xc5\\xff\\x00\\xe7\\x19\\x9a\\x4d\\x82\\x99\\\n\\x9f\\xd1\\xff\\x00\\xb1\\x97\\x92\\xe2\\x11\\x11\\x09\\x2a\\x96\\x96\\x0a\\x62\\\n\\x6f\\x8f\\xa3\\x19\\x8a\\xc9\\x01\\x0f\\x48\\x5a\\x15\\x80\\x76\\x9b\\x29\\x2a\\\n\\x88\\x01\\x64\\xa4\\x08\\x43\\x51\\x55\\x3f\\x9e\\x3d\\x04\\x10\\x5a\\xec\\x2a\\\n\\x17\\xd8\\xf2\\xa3\\xcd\\x72\\x6d\\x20\\x01\\x1c\\x77\\xa4\\x00\\x6b\\x1c\\xa2\\\n\\x33\\x22\\x42\\x67\\x28\\x45\\x86\\xda\\xb3\\xc5\\xe4\\xb8\\x91\\xe8\\x2c\\xd1\\\n\\x62\\xb3\\x91\\xcc\\x27\\xae\\x0c\\xd2\\x1c\\x99\\x52\\xd7\\xaa\\x5a\\x5b\\x35\\\n\\x18\\xff\\x00\\x08\\xcb\\xa4\\xba\\x84\\x0a\\xd6\\x19\\xc9\\x94\\x11\\x18\\xc9\\\n\\xe5\\x01\\xb3\\x22\\x48\\xa9\\x10\\x02\\xd5\\x7a\\x03\\x91\\x4a\\x34\\x36\\xc4\\\n\\x50\\xb5\\x89\\x5f\\x9e\\x72\\x48\\xb2\\x43\\xca\\x34\\x2c\\x66\\x0b\\x28\\x0f\\\n\\x18\\x76\\x81\\x6a\\x5c\\x17\\x98\\x28\\xbc\\xc0\\x8d\\x45\\x4d\\x06\\xb1\\x94\\\n\\xe9\\x0b\\xe4\\x40\\x2c\\x04\\x75\\x8a\\xfe\\x03\\x57\\xde\\x05\\xae\\x02\\x5a\\\n\\x85\\x02\\x92\\x88\\x56\\x8f\\x78\\x54\\x13\\xec\\x18\\x35\\x54\\x34\\x91\\x53\\\n\\x81\\x6c\\xdc\\x7a\\x0a\\x0e\\xa1\\x12\\xbe\\x02\\x4d\\xc0\\xa4\\x34\\xf9\\xf4\\\n\\x02\\xf2\\x90\\x0f\\xe5\\x47\\xc3\\x82\\x6d\\x78\\x86\\x22\\x9c\\x8c\\xbf\\x6d\\\n\\x04\\xa1\\xc3\\x16\\x45\\x88\\x97\\x09\\x40\\x40\\x9e\\x42\\xaa\\x50\\xcd\\x02\\\n\\x95\\x5f\\x64\\xe2\\x73\\x77\\xe0\\x32\\x21\\x0b\\xad\\x50\\x81\\xc3\\x2d\\xe2\\\n\\x54\\x03\\x4c\\x2e\\x28\\xc5\\x5b\\x9b\\x3a\\xd0\\xa9\\x83\\x95\\x09\\x5c\\x08\\\n\\x47\\x23\\x96\\x1d\\xb5\\x12\\x41\\x89\\xaf\\x5d\\xb7\\x08\\x24\\xbc\\xd9\\x60\\\n\\xa4\\x0a\\x90\\x51\\x9b\\xc6\\x8a\\xee\\x02\\x85\\x07\\x60\\xa0\\x2c\\xd1\\xd4\\\n\\xd5\\x18\\x26\\x85\\x00\\xd0\\x32\\x45\\x50\\x3d\\x87\\xb0\\xee\\x49\\x41\\x04\\\n\\x25\\x50\\x2c\\x80\\x36\\xf3\\x9b\\xc3\\xb9\\xa5\\x02\\x41\\xd1\\x37\\x2b\\x8e\\\n\\x18\\x21\\xd4\\x79\\xb1\\x30\\x72\\x21\\xc0\\xc4\\xaf\\xbf\\x90\\xe5\\x59\\xc9\\\n\\x2c\\xf1\\x12\\xad\\xbe\\x47\\xe3\\x54\\x5c\\x0b\\x53\\x2d\\x79\\x17\\xbb\\x18\\\n\\xbd\\xd4\\x00\\x3b\\x4a\\x0a\\xae\\xb8\\xf1\\x5f\\x1b\\x44\\x30\\x54\\xf0\\xb3\\\n\\x26\\x85\\xa9\\x08\\x23\\xf8\\x57\\x4e\\x60\\x63\\xba\\x4e\\x48\\x19\\x11\\xeb\\\n\\xd0\\x1f\\x1d\\xe4\\xb2\\x35\\x60\\xa9\\xfb\\x6d\\x22\\x5e\\x42\\xc2\\xae\\xf5\\\n\\x39\\x70\\x6a\\x10\\x45\\x43\\xd2\\xb6\\xf9\\xae\\x86\\x80\\x9a\\x49\\x20\\xa4\\\n\\x20\\x68\\xf9\\x87\\x27\\x1f\\xc1\\x25\\xa8\\xa8\\x91\\x14\\x04\\xa0\\x88\\xcb\\\n\\x46\\xe4\\xa3\\x42\\x5b\\xf8\\x45\\x42\\xc7\\xa1\\x1c\\x6b\\x26\\xa0\\x8d\\x1f\\\n\\x61\\x52\\x1c\\x3a\\x3a\\x9f\\x83\\x03\\xd0\\xc3\\x52\\x8a\\x19\\xd9\\x81\\x4c\\\n\\x8b\\x0b\\x68\\xa3\\x30\\x90\\xe9\\x9c\\x81\\x06\\xfb\\x41\\x11\\x31\\x02\\x5e\\\n\\x97\\xcc\\x5b\\x94\\x92\\x9f\\x00\\xa8\\x23\\x7c\\xa0\\xca\\x8c\\x38\\x0d\\x7d\\\n\\x16\\xf2\\x1b\\x6f\\x1a\\xda\\x4c\\x04\\x86\\xa0\\xdc\\x01\\x69\\xba\\x34\\xab\\\n\\xa4\\x54\\x40\\x48\\xb4\\x01\\x29\\xeb\\x53\\x01\\xea\\x47\\x94\\x6d\\x11\\x08\\\n\\x52\\x40\\x2c\\x04\\x33\\x62\\x8a\\x4a\\x5d\\x0e\\x33\\x63\\x8e\\x32\\x11\\xb1\\\n\\x20\\x82\\x35\\xab\\xe8\\x8b\\x38\\x0a\\x24\\x50\\x97\\x80\\xd1\\x86\\x91\\xff\\\n\\x00\\x42\\x3c\\xb2\\x40\\x80\\xb8\\xe9\\x08\\x0a\\x51\\x55\\x3b\\x40\\xc9\\x21\\\n\\xd2\\x02\\x95\\x02\\xa9\\xf6\\x20\\xb9\\x19\\x4e\\x6e\\xb4\\x99\\x57\\x45\\x7d\\\n\\x2a\\x65\\x54\\xa3\\x7e\\x3b\\x20\\x28\\x25\\x4b\\x54\\xa7\\xb2\\x7d\\xdf\\xde\\\n\\x7a\\x10\\xa8\\x92\\xc2\\xb5\\x61\\x4e\\xca\\xf7\\xa3\\xc4\\x8f\\x60\\xe1\\xe4\\\n\\x2f\\x48\\x2b\\x3a\\x60\\x84\\x28\\x8e\\x1c\\x42\\x44\\x3d\\x0f\\x97\\xe5\\x26\\\n\\x9e\\x30\\x4b\\x02\\x8d\\x11\\x05\\x56\\x8e\\x5c\\x18\\xf4\\x02\\x91\\x28\\x84\\\n\\x22\\x90\\xe0\\xd2\\x36\\xce\\x0c\\x29\\xad\\x70\\x29\\x96\\xc4\\xb1\\x30\\x3a\\\n\\x10\\x11\\x49\\x10\\x05\\x05\\x8c\\x82\\x31\\x72\\x79\\x12\\x8e\\xce\\x08\\x22\\\n\\x13\\x45\\xd3\\xe1\\x0c\\x4d\\x89\\xeb\\x82\\x8b\\x10\\x4f\\x17\\x6e\\x5a\\xe8\\\n\\x62\\x19\\x0b\\xa1\\xd0\\x78\\x01\\x2e\\x4c\\x19\\x28\\x72\\x44\\x20\\xae\\xcc\\\n\\x58\\x59\\x1a\\xa8\\xc0\\xa6\\x11\\x27\\xe3\\x8f\\x34\\xc0\\x0a\\x8c\\x4c\\x04\\\n\\xcf\\x85\\xb8\\x3c\\x14\\xe2\\xed\\x40\\xd2\\x56\\xb8\\x8c\\x78\\xe8\\x1a\\xb4\\\n\\xc7\\x9b\\x56\\xb6\\xb6\\x31\\x0c\\x05\\x1d\\x46\\x32\\x88\\x5d\\x3a\\x02\\x5a\\\n\\xb6\\xf5\\x05\\xdf\\x70\\xe9\\xbb\\x45\\x83\\x02\\x4b\\xdb\\x80\\x86\\x2f\\xbb\\\n\\xb8\\xe2\\x4b\\x2b\\x49\\x94\\xab\\x62\\x10\\x50\\x51\\xdd\\x33\\x07\\x02\\x20\\\n\\x71\\x52\\x7e\\x55\\x96\\x85\\x86\\x2c\\xa5\\x60\\x16\\x75\\xcf\\xaf\\xd6\\xe1\\\n\\x28\\x94\\x17\\x01\\xbd\\x44\\x00\\xc3\\x13\\x61\\xa9\\xaf\\xe4\\x42\\xd4\\xbc\\\n\\x16\\xc5\\x2a\\x90\\x89\\xce\\x41\\x59\\xa0\\x67\\x54\\xf0\\x2a\\x9a\\x18\\x54\\\n\\xb4\\x15\\x14\\xce\\x4a\\x37\\x04\\xb4\\x97\\xf6\\x85\\x35\\x03\\x3c\\x28\\x63\\\n\\x76\\x19\\xa1\\x55\\x11\\x45\\x05\\x6f\\xc4\\x26\\x82\\x41\\xa9\\xc5\\x08\\x05\\\n\\x68\\x2b\\x0d\\x6d\\xa5\\x0b\\xdd\\x84\\x1d\\xac\\x0e\\x24\\x59\\x81\\x64\\xb0\\\n\\x04\\x9a\\xde\\xb6\\x05\\x59\\xd4\\x37\\x87\\x81\\x11\\x4d\\xf2\\xe5\\x62\\x84\\\n\\x96\\xa1\\x1d\\xbb\\x60\\x05\\x91\\xbd\\xe3\\x31\\xa5\\x6c\\x02\\x61\\x19\\x02\\\n\\xaa\\xcc\\x5b\\x22\\xf0\\x33\\x1d\\xb5\\x2e\\xcc\\xbf\\x66\\xe5\\x4d\\xd6\\x0c\\\n\\xe8\\x7c\\xa1\\x45\\xec\\x53\\xc5\\xe2\\xd0\\xe3\\x40\\x51\\x3e\\xc4\\x3e\\x9c\\\n\\x96\\x37\\x00\\x7c\\x00\\x0a\\x71\\xab\\xe5\\x9a\\x05\\x54\\x0a\\xa1\\x78\\x8f\\\n\\x91\\xf0\\xbb\\xb0\\x75\\x21\\x72\\x38\\x54\\x13\\x22\\x8a\\xe0\\x0d\\x5d\\xed\\\n\\x20\\x35\\x0c\\x27\\xe8\\xfe\\x87\\xe2\\x1a\\x7a\\x6e\\x1c\\x3a\\xae\\x14\\xea\\\n\\xe0\\x2f\\xa8\\x83\\xcb\\x7a\\x86\\x75\\xbd\\xc4\\x80\\x4b\\xf6\\xe8\\x09\\x4c\\\n\\xb3\\xed\\x08\\x93\\x95\\x1b\\xe5\\xd4\\xf9\\x43\\x55\\x22\\x72\\xc6\\xb8\\x0b\\\n\\x42\\xbd\\x5c\\xa1\\x51\\x80\\xed\\x26\\xa4\\xcf\\x5d\\x83\\x42\\x1e\\xbe\\xf4\\\n\\x9e\\x25\\xa4\\xac\\x0f\\x0d\\x7e\\x1c\\x40\\xa2\\xb8\\xab\\x65\\x7c\\x20\\x8b\\\n\\x4b\\x11\\xdc\\x28\\x2f\\xc9\\xf7\\x92\\x10\\x82\\x4d\\x85\\x48\\x19\\x30\\x62\\\n\\x06\\x01\\x54\\x93\\x16\\x20\\x21\\x8a\\x2c\\x24\\x0c\\x6b\\x65\\xa6\\x8b\\x13\\\n\\x56\\x07\\xbe\\xc8\\x2b\\xc0\\x0f\\x1a\\x58\\xee\\x9a\\xda\\x05\\x6b\\xb4\\x25\\\n\\x42\\xc9\\xe1\\xf0\\x90\\x40\\x29\\xa9\\x98\\x3c\\x2e\\xe9\\xe6\\xc9\\x19\\x68\\\n\\x69\\xab\\x54\\xa7\\x86\\x41\\x54\\x0a\\xa1\\xae\\xc5\\x62\\x21\\xe8\\x9a\\x60\\\n\\x42\\x88\\x2f\\x36\\x01\\x46\\xe0\\x6a\\x50\\x56\\x07\\x57\\x00\\xff\\x00\\x4d\\\n\\x17\\x5c\\x25\\x84\\xd4\\x60\\x80\\x14\\xb0\\x94\\xc7\\x33\\x06\\x80\\xfe\\x30\\\n\\x0f\\x08\\x07\\xd9\\x69\\x4b\\x53\\x55\\x0c\\x27\\x3c\\x50\\x2e\\xad\\xb7\\x1c\\\n\\x00\\x44\\x34\\xa1\\x30\\x57\\x8c\\x25\\xb1\\xeb\\xcb\\x14\\x78\\xd2\\x42\\x92\\\n\\x06\\xf3\\x32\\x21\\xed\\x03\\x0f\\xa0\\x28\\x54\\x2e\\xab\\xef\\x42\\x19\\xf3\\\n\\x78\\x54\\xa2\\x32\\xab\\xfa\\x79\\x57\\xae\\x20\\x38\\x52\\xe8\\x48\\xd7\\xe0\\\n\\xa0\\xe9\\x16\\x88\\x5f\\x42\\x0b\\xe9\\xe4\\x30\\x57\\xf4\\xf0\\x51\\xc0\\x41\\\n\\x75\\xca\\x61\\xed\\xaa\\x4d\\xfa\\xa0\\x81\\x9a\\xa7\\x54\\x27\\xc0\\x0b\\xe3\\\n\\x71\\xa0\\x0d\\x5b\\x5a\\x26\\x94\\x2a\\x8a\\x6a\\xb4\\x30\\x89\\x51\\x4f\\xa0\\\n\\x7b\\x4c\\x43\\x32\\x4a\\xb7\\x09\\x53\\x68\\x5a\\x46\\xc4\\x82\\x34\\x00\\x4e\\\n\\x0f\\x88\\x95\\xa2\\xb0\\x94\\x34\\xe3\\x96\\x2c\\x89\\x00\\x34\\x18\\x00\\x93\\\n\\xe6\\x9a\\x8f\\x19\\x73\\x64\\x10\\x2c\\x9d\\x71\\x54\\x47\\x8e\\xdc\\x03\\xf4\\\n\\xe2\\x6c\\x5a\\x03\\x52\\xfc\\x25\\xe8\\x04\\xd0\\x4a\\x56\\x83\\xe0\\x89\\x54\\\n\\x1f\\xfe\\xd5\\xe6\\xc3\\x02\\x9e\\x24\\xc5\\xe4\\x3d\\x2d\\x83\\x86\\x3d\\xa8\\\n\\x59\\x74\\x23\\xa4\\x83\\xc5\\x1a\\xde\\xc1\\x0a\\x93\\xa2\\x91\\x29\\x28\\x0f\\\n\\x02\\x23\\x38\\x17\\xfc\\x13\\xb1\\x12\\xeb\\x40\\x07\\xd6\\xa5\\xa5\\x86\\x24\\\n\\x88\\x82\\x66\\x44\\x9f\\x3a\\x1f\\x34\\x12\\xe0\\x23\\x48\\xbb\\x87\\x4d\\xe4\\\n\\x1c\\x25\\xac\\x60\\x38\\x08\\xdc\\xd0\\x10\\x1c\\xe0\\xe9\\x4d\\xce\\x01\\x53\\\n\\x0a\\x11\\x48\\x20\\xf2\\x3a\\x01\\xd5\\x82\\xcf\\xdf\\x55\\x48\\x5c\\x11\\x36\\\n\\x1b\\xe5\\xa2\\x83\\xe0\\x0b\\x85\\x77\\x32\\x81\\x78\\x85\\x1a\\xea\\x8d\\x04\\\n\\x24\\x40\\x38\\x5a\\x5d\\xc5\\xaf\\x0f\\x14\\x20\\x8d\\x03\\x8a\\x59\\x21\\xa2\\\n\\x87\\xe9\\x24\\x14\\x49\\x3a\\x0c\\xfb\\x4d\\x70\\x56\\x2d\\x85\\xe2\\x21\\xc6\\\n\\x82\\xc8\\x04\\x8f\\x81\\x8d\\x6b\\xc4\\xb8\\x1c\\xe0\\x3d\\x52\\xd1\\x14\\x58\\\n\\xf7\\x6e\\xc8\\x15\\xbe\\xf1\\x39\\x02\\x37\\xae\\x9a\\xd0\\xa9\\xac\\xe3\\x0d\\\n\\x45\\x8e\\xe8\\x0d\\x11\\xc7\\x35\\xab\\xc2\\xe0\\xed\\x24\\x01\\x3c\\x26\\xb4\\\n\\x01\\xa3\\x04\\xbd\\x39\\x2f\\xe0\\x51\\xe4\\x33\\xb2\\xa2\\x84\\x20\\x6f\\x3b\\\n\\x52\\xf2\\x44\\x30\\x52\\x9a\\x08\\xa6\\x6e\\x0a\\x46\\xd5\\xee\\x62\\x00\\x0b\\\n\\xa5\\x00\\x81\\xe4\\x44\\x85\\x64\\xa4\\x9a\\x58\\x20\\x02\\x11\\x18\\xe4\\xe4\\\n\\x08\\x40\\xaa\\x21\\x2b\\x64\\x02\\x9f\\x86\\xd9\\xb0\\xc0\\xeb\\x31\\x10\\x4a\\\n\\xa6\\x6f\\x31\\xec\\x05\\x6a\\x86\\x00\\x1f\\xaa\\x3c\\x68\\x78\\xa4\\x5f\\x9c\\\n\\x39\\x12\\x20\\xf0\\x4d\\xf8\\x48\\x54\\x90\\x52\\x39\\x75\\x01\\x0f\\x80\\x38\\\n\\x1f\\xb7\\xc0\\x9f\\x9c\\x07\\x05\\x15\\x6e\\xc0\\x54\\xce\\x47\\x57\\x83\\x6c\\\n\\x58\\xbc\\x22\\x48\\xfd\\x3e\\xa4\\x11\\x3e\\xa7\\x70\\xed\\x4a\\x66\\x32\\x25\\\n\\xb6\\x57\\x11\\x84\\x45\\xab\\x64\\x6e\\x2f\\xfd\\x82\\x06\\x5e\\x44\\x1f\\x44\\\n\\x16\\x91\\x63\\x50\\xab\\x00\\x78\\xaf\\x33\\x3d\\x02\\xb6\\x92\\xd7\\xc0\\x4b\\\n\\x39\\xb6\\x2a\\x58\\x02\\xc9\\x36\\xaa\\x23\\x3c\\x00\\x0c\\x05\\x44\\x27\\x18\\\n\\x80\\x8f\\xa1\\xf6\\x53\\xd7\\x82\\x21\\x8c\\x8a\\xb2\\xb0\\xd7\\xf6\\x94\\x15\\\n\\x33\\xff\\x00\\x5d\\x44\\x0f\\xc2\\x40\\x7a\\x6a\\x9a\\x0a\\xd3\\x48\\x21\\x81\\\n\\x06\\x6c\\x16\\xc0\\x04\\x2f\\x90\\x9a\\xcb\\xe3\\xf6\\xb4\\x04\\x91\\x80\\x49\\\n\\x89\\x93\\x65\\x9c\\x5f\\x5a\\x21\\x20\\x78\\xb4\\x02\\x97\\x84\\xe7\\x44\\x72\\\n\\x0a\\x45\\x84\\x4a\\x1d\\x20\\x44\\xf3\\xef\\x61\\xd0\\xa7\\xad\\xc1\\x30\\xb2\\\n\\x55\\x5e\\xc9\\x70\\x83\\xda\\x12\\xd4\\x62\\x21\\xc8\\x78\\xaf\\x42\\x3a\\xb4\\\n\\x64\\x40\\x12\\x4d\\x12\\x2a\\x01\\xd9\\x9e\\x07\\xbf\\x56\\x91\\x68\\xd8\\x3d\\\n\\x18\\xa4\\xde\\xf8\\x0c\\xd4\\x25\\x55\\x43\\x5e\\xad\\xb3\\x4b\\xa1\\x12\\x20\\\n\\x9e\\x96\\x8a\\x82\\x60\\xd0\\xde\\xb2\\x68\\x81\\x60\\x0d\\x1f\\xbc\\x87\\xc5\\\n\\x8c\\xdc\\x95\\x1a\\x42\\x6c\\x2a\\xa7\\x06\\x40\\x66\\xc8\\x01\\xd4\\x13\\x55\\\n\\xc4\\xe9\\xc0\\xaf\\x28\\x71\\x62\\x41\\x31\\x4c\\x56\\x67\\xe6\\x1f\\x58\\x84\\\n\\xaa\\xf0\\x36\\x9c\\x1e\\xde\\x97\\x57\\x81\\x44\\xd2\\x51\\x00\\x4c\\x74\\xbf\\\n\\x09\\x64\\x19\\x76\\x24\\x2c\\x6c\\xb8\\xce\\x1e\\x1c\\xe4\\xac\\xc2\\xf6\\x10\\\n\\x9d\\x18\\x15\\x4b\\x24\\xf8\\x84\\x07\\xab\\x6c\\x59\\x4e\\x3f\\xe4\\x78\\xa0\\\n\\x6b\\x40\\x21\\xc1\\x2a\\x85\\x60\\x11\\x13\\x30\\x82\\x98\\x89\\x15\\x80\\x48\\\n\\x84\\x9a\\x28\\x0c\\x41\\xd8\\x32\\xc3\\x31\\x38\\x6a\\x48\\x45\\xc1\\x10\\x2d\\\n\\x48\\x8a\\x27\\xa2\\x7f\\xe7\\x43\\x94\\xb2\\xc0\\x4d\\x3b\\x09\\x09\\x49\\x28\\\n\\x55\\x75\\xb4\\x71\\xd1\\x2a\\xcd\\xb6\\xc0\\x40\\x81\\x0d\\xa2\\x37\\x9f\\x34\\\n\\x19\\xd8\\x58\\x1a\\x64\\x21\\x06\\xb8\\x2d\\x2e\\xfd\\x08\\x40\\x10\\xc7\\x1e\\\n\\x5b\\xa7\\x65\\x89\\x8b\\x49\\x20\\xb1\\x17\\x09\\xf6\\xff\\x00\\x08\\x9e\\x22\\\n\\x15\\xc4\\x18\\x82\\xd7\\xb6\\x46\\x1c\\x10\\x6c\\x3a\\x00\\x1b\\xa1\\x48\\xa7\\\n\\x3a\\xd5\\x50\\x7d\\xa0\\x43\\x28\\x55\\x44\\xa0\\x71\\x75\\x84\\xbe\\xa1\\x46\\\n\\xe2\\x95\\xb3\\xa9\\x4b\\x65\\xde\\xa2\\x3d\\x38\\x04\\x14\\xd0\\x00\\x08\\x60\\\n\\x5e\\x93\\xe2\\x1e\\xc9\\xf9\\xc6\\xbe\\x32\\x8e\\x78\\x2f\\x56\\x75\\x58\\x48\\\n\\xcd\\x71\\xa2\\x28\\xed\\xbd\\xd8\\xcc\\x08\\x4b\\xe3\\xad\\x29\\x24\\x63\\xc5\\\n\\x46\\x6b\\xee\\x0a\\xb7\\x73\\x04\\x33\\x59\\x40\\xfc\\x73\\x69\\xa3\\x71\\x53\\\n\\x78\\xfb\\xd7\\x8f\\xb1\\x28\\x7e\\x23\\xda\\x76\\x12\\x25\\x8a\\x2c\\xfb\\x5e\\\n\\x6a\\x39\\x96\\x09\\x80\\x00\\xd3\\x06\\x24\\x9f\\x27\\x89\\x6d\\x18\\xac\\x06\\\n\\xca\\xc0\\x14\\xa8\\x6b\\xc5\\xc0\\xce\\x34\\x42\\xd4\\x26\\x2f\\x96\\x42\\x49\\\n\\x95\\x84\\x10\\x94\\xb7\\x94\\x1b\\x68\\x68\\x23\\xa5\\x42\\x7a\\x2a\\x06\\x28\\\n\\x11\\xca\\x4a\\x8a\\x6b\\xa4\\x90\\xe0\\x4c\\x2f\\x17\\xd6\\xde\\xb0\\xb3\\xc5\\\n\\x38\\xb2\\x0d\\x88\\x50\\x88\\x97\\xee\\x01\\xd5\\x65\\xcb\\x0d\\x4d\\x43\\x5d\\\n\\x34\\xb6\\x53\\x57\\x4f\\x2e\\xa8\\x19\\x91\\x88\\x97\\xa9\\xe8\\xc8\\xf0\\x05\\\n\\x55\\xb2\\x23\\x32\\xa0\\x7e\\xf0\\xe8\\x85\\x2d\\x76\\x6c\\x60\\x51\\x3f\\xad\\\n\\x30\\xb6\\x7c\\x6a\\x70\\x74\\xc5\\x45\\x85\\x34\\x55\\x52\\x23\\xd1\\x66\\x50\\\n\\xa6\\x03\\x15\\x11\\x8d\\xcd\\x0f\\x0a\\x42\\x5e\\x2a\\x40\\xe1\\x95\\x65\\x61\\\n\\xe0\\x60\\xc0\\xdf\\x9b\\x1c\\x95\\x7a\\x4d\\xb1\\x8b\\xc3\\x04\\x4f\\x61\\x81\\\n\\xd0\\xa4\\x41\\xc0\\x00\\x4d\\x12\\xd4\\x65\\x0a\\x84\\x80\\x9a\\xf8\\x71\\xd4\\\n\\x08\\x5d\\x13\\x35\\xfa\\x11\\xe5\\x94\\xa7\\x4c\\x15\\x70\\xe6\\x0f\\x41\\x64\\\n\\x55\\x58\\x9c\\x32\\x43\\x49\\xe8\\x4f\\xa3\\xf0\\x18\\xa2\\xa4\\x27\\x78\\x0c\\\n\\x12\\xc4\\x00\\x9e\\x85\\x41\\x60\\xf3\\xc7\\xe7\\x3d\\xe3\\x76\\x0a\\x23\\x9c\\\n\\x40\\x12\\x03\\x04\\x79\\x68\\x6c\\xeb\\xc5\\x51\\x92\\xc0\\x85\\x45\\x47\\x32\\\n\\x14\\x91\\x28\\x21\\x56\\x78\\x6f\\xc7\\x82\\x0c\\x02\\xd9\\x64\\x18\\x71\\x8f\\\n\\x97\\xf5\\x31\\x84\\x1b\\x43\\xa7\\x22\\x6e\\x09\\x6b\\x19\\xb3\\x8e\\x4b\\x20\\\n\\x28\\x84\\xc0\\x87\\x31\\xb5\\x4d\\x12\\x90\\x96\\x8f\\x83\\xd6\\x6d\\x36\\x82\\\n\\x0e\\x37\\x3e\\xe6\\x29\\x25\\x09\\x5b\\x22\\xeb\\xa3\\x14\\xd9\\xd3\\x16\\x13\\\n\\xc4\\x97\\xa8\\x9e\\x50\\x93\\xb7\\x68\\xfa\\x40\\x41\\x80\\x2f\\xf4\\x2b\\x05\\\n\\xb4\\x45\\xfc\\x21\\xa0\\x0d\\x1c\\xaf\\xfc\\x8f\\x13\\x9c\\xbe\\xcb\\x70\\x6c\\\n\\x18\\xdd\\x1c\\x98\\xee\\x01\\x29\\x28\\xe9\\x22\\x29\\xa4\\x93\\x4b\\x98\\x58\\\n\\x92\\x43\\x30\\xde\\x43\\x83\\x12\\x7a\\x9c\\xcc\\xa3\\xad\\xe2\\xa5\\x0f\\x0a\\\n\\x0e\\xc7\\xfe\\x09\\x63\\x9d\\x7e\\xc8\\xaf\\x90\\xc2\\x0d\\xed\\x4e\\x46\\x0a\\\n\\xed\\xe9\\xb0\\x2b\\x4d\\x0a\\xdd\\x16\\xc0\\xcf\\x11\\x1d\\xc7\\x0f\\x65\\xa7\\\n\\xb4\\x36\\x18\\x80\\x44\\xe0\\x9c\\xc4\\xc8\\xab\\x81\\xa6\\x58\\x43\\x3c\\x48\\\n\\x90\\x8e\\x94\\x12\\xe1\\x58\\xd4\\x56\\x87\\x8c\\x2c\\x64\\x66\\x63\\x86\\xaa\\\n\\xcd\\x15\\xc9\\xc9\\x28\\x6b\\x92\\x1f\\x80\\xa6\\xa8\\xd6\\x40\\x73\\x16\\xd9\\\n\\x03\\xae\\x08\\x6c\\x0e\\x74\\x61\\x14\\x90\\x52\\x00\\x12\\x8a\\xd5\\xc0\\x6e\\\n\\x73\\xe1\\x89\\x74\\xba\\x29\\x08\\x62\\x80\\x05\\x45\\x8e\\x02\\x00\\x7d\\xf2\\\n\\x0d\\xce\\xa1\\xf4\\x07\\x0a\\x5e\\xf5\\x32\\x62\\x80\\x3f\\x40\\x22\\x92\\x93\\\n\\x18\\x5e\\x19\\x60\\x81\\x7d\\xb3\\x68\\x1a\\x81\\x70\\xc6\\xb0\\xd5\\x6a\\x5d\\\n\\x18\\x03\\x05\\x04\\xea\\x03\\xa5\\x06\\x28\\x95\\x46\\x83\\x15\\x37\\x30\\xe6\\\n\\x49\\x01\\x83\\xc2\\x53\\x48\\xa0\\x2e\\x63\\x38\\xcc\\xd3\\x02\\x83\\x10\\xa0\\\n\\xcf\\xed\\xe4\\xc7\\xe9\\x25\\x66\\x0a\\x82\\x28\\x8f\\xe0\\x4a\\x1d\\xce\\x3a\\\n\\xc5\\x7d\\xcd\\xe0\\xb6\\x40\\x9a\\x28\\xe3\\x2d\\xb4\\x96\\x98\\x61\\xd1\\x9b\\\n\\xeb\\x5f\\x56\\xa8\\x90\\xa1\\xd8\\x68\\x3b\\xac\\xd1\\x25\\x48\\x28\\x51\\x81\\\n\\x4e\\x03\\x12\\x69\\x36\\x15\\x58\\x4f\\x28\\x8a\\xa7\\x7b\\x86\\xe2\\x12\\xa1\\\n\\xab\\xe0\\x81\\xd7\\xff\\x00\\x82\\x1a\\xfe\\x2a\\xd3\\x11\\xc2\\x2f\\x03\\xf0\\\n\\x95\\x62\\x04\\x08\\x08\\xe4\\x5b\\x94\\x12\\x50\\x0a\\x2b\\x94\\xa8\\xce\\x9e\\\n\\x86\\xee\\x03\\x15\\x57\\x1a\\xca\\x3c\\x11\\xf5\\x28\\x92\\x76\\x9a\\x9b\\xa0\\\n\\x14\\x87\\x19\\x60\\xf6\\x19\\xf0\\xd1\\xd4\\xc0\\x50\\xe6\\x4a\\xbf\\xd2\\x94\\\n\\xa3\\x70\\x80\\x88\\x0f\\x56\\x34\\xc3\\x5a\\x0a\\xd7\\x70\\x54\\xa9\\x9c\\xdf\\\n\\x52\\x54\\x6a\\x0a\\x98\\xb4\\x01\\xc0\\x26\\xab\\x43\\x9b\\xa6\\xc0\\x8f\\x0a\\\n\\x03\\xa9\\x05\\x02\\x77\\xdb\\x20\\x6a\\x46\\x84\\x60\\xc7\\x05\\x2e\\x85\\xe4\\\n\\xaf\\xcb\\x86\\x35\\x6b\\x03\\xe0\\x71\\x70\\x15\\xa9\\x47\\x19\\xb5\\xe3\\x52\\\n\\x14\\xe8\\x96\\x66\\xef\\xa3\\x49\\xab\\xbf\\x28\\x9c\\x8b\\xfe\\x69\\x70\\x00\\\n\\x60\\xf8\\x20\\x12\\xbb\\xee\\xd4\\xeb\\x48\\x08\\x8a\\x1e\\x8a\\x6f\\x82\\x50\\\n\\x88\\x27\\xba\\xb0\\x83\\x02\\xf2\\xc4\\x4c\\x20\\x55\\xc1\\xad\\x0d\\x09\\x08\\\n\\x9c\\x04\\xe8\\x21\\xf4\\x51\\x20\\x9f\\xdc\\x16\\xbf\\x79\\xad\\xc0\\x44\\xa6\\\n\\x65\\xac\\x24\\x98\\x89\\x78\\x3a\\xbe\\x49\\x72\\xd4\\x93\\x45\\x60\\x1a\\xa7\\\n\\xef\\x23\\x00\\xd7\\x7b\\x08\\x81\\xfd\\x4b\\x20\\xc0\\xaa\\xaa\\x23\\xf0\\x8a\\\n\\xa6\\x31\\x2b\\x4e\\x24\\x64\\x68\\x3d\\x09\\x63\\x7a\\x8d\\x20\\xfb\\xe1\\x85\\\n\\xf8\\x88\\x04\\x2d\\x19\\x13\\x48\\x62\\xb3\\xce\\xa0\\x90\\x81\\x03\\x42\\x19\\\n\\x55\\x25\\xc3\\xcf\\x2e\\x73\\xa9\\xaf\\x52\\x35\\xf6\\xd3\\x67\\xbf\\xd5\\x68\\\n\\x71\\x92\\x8b\\x86\\x5c\\x43\\x82\\xa2\\x95\\x95\\x44\\x81\\xc7\\xa1\\x56\\x44\\\n\\x6c\\x49\\x84\\x18\\x64\\x26\\x1e\\x47\\x4c\\x6e\\xe4\\x54\\xad\\x80\\x02\\x20\\\n\\xa2\\xaa\\x37\\x2a\\x50\\x08\\x80\\xa8\\x8e\\x00\\x8e\\x50\\xc5\\x00\\x1b\\x5c\\\n\\x42\\x2a\\xd3\\x44\\xbb\\x27\\x07\\x4a\\x41\\x21\\x06\\x00\\x31\\x3b\\x01\\xec\\\n\\x4b\\x63\\xd6\\x4c\\xd2\\x25\\x83\\xc3\\xa8\\xb6\\x10\\x95\\x27\\x07\\x56\\x0c\\\n\\x00\\x96\\x67\\x2a\\x58\\x80\\x28\\x57\\x02\\x07\\xc0\\x88\\x2e\\xda\\x45\\x74\\\n\\xed\\xf1\\x28\\xd8\\xa8\\xa0\\x00\\xd0\\xd0\\xf4\\xf0\\xd1\\x46\\x18\\x0d\\xd7\\\n\\x8d\\x4a\\xd0\\x1c\\x30\\x6f\\xa4\\x70\\x50\\x2d\\x40\\xd5\\x12\\x57\\xfc\\x7a\\\n\\x61\\x14\\x08\\xae\\x8d\\x46\\xe9\\x38\\xd4\\x7a\\x73\\x32\\x74\\xe5\\xab\\x52\\\n\\x93\\xd2\\xa8\\x7c\\x84\\x2b\\x20\\x15\\x25\\x86\\xcd\\x6f\\xb2\\xfe\\x5f\\xc5\\\n\\x00\\x8d\\x9a\\x83\\x4e\\x3a\\xd3\\x05\\x91\\xa3\\x0a\\xac\\x50\\xf0\\x55\\xbf\\\n\\xb2\\xe6\\xc7\\x7d\\x18\\x6f\\xf3\\xb4\\x03\\x90\\xbc\\xc0\\x2e\\xab\\x42\\xc4\\\n\\x41\\x77\\xe1\\x11\\xa0\\x0b\\x30\\x55\\x42\\x2c\\x52\\xcd\\x14\\x90\\x03\\x9c\\\n\\x0b\\x15\\xae\\xf0\\xe9\\x53\\xa4\\xc1\\x05\\x03\\xe9\\x0d\\x45\\x01\\xa0\\x09\\\n\\x42\\xc5\\xf4\\x02\\xa7\\x2d\\x1d\\x6a\\xfb\\x44\\x0d\\xe1\\xbc\\x8d\\x18\\x6b\\\n\\x25\\x44\\x05\\xac\\x09\\xe8\\x97\\x1e\\xac\\xf5\\x8d\\x59\\x31\\x87\\x10\\x59\\\n\\x8f\\x87\\xa8\\x5c\\xce\\x1a\\x80\\x81\\x30\\x60\\x12\\x3a\\x43\\xfa\\x5d\\x1a\\\n\\x54\\x33\\x41\\x14\\x51\\xe2\\xb4\\x42\\x09\\x25\\x79\\xf5\\x7d\\x40\\x10\\xf1\\\n\\xba\\x1c\\x06\\x80\\x57\\x2d\\xf4\\x9d\\x8f\\x7b\\xde\\xeb\\x3c\\x2e\\x26\\xc1\\\n\\x99\\x68\\x22\\x72\\xc9\\xb9\\xad\\x32\\x26\\xa0\\xee\\x16\\x74\\x51\\x7a\\x02\\\n\\xc2\\x53\\x2b\\xa8\\x74\\x81\\x9f\\xb8\\xe1\\x39\\x24\\x42\\xa9\\x22\\x73\\xe4\\\n\\x0b\\x4d\\x38\\x06\\xa0\\x7c\\x7f\\xc2\\x7a\\x2d\\x94\\x27\\x27\\x14\\xd9\\xc1\\\n\\x13\\x8c\\x63\\x9c\\x62\\x41\\x14\\x00\\x02\\x8a\\x2d\\xc0\\xde\\x02\\x13\\x2a\\\n\\x54\\x8a\\x4f\\xdc\\xde\\x64\\x03\\xb1\\x5a\\x22\\x1e\\xbe\\x9b\\xa6\\xd8\\xd4\\\n\\x5c\\xd3\\xb1\\x70\\xb1\\x11\\x76\\xfa\\xb8\\xd1\\x18\\x6b\\x0a\\x8d\\x1a\\xf1\\\n\\xac\\x6b\\x4d\\x77\\x8d\\x98\\xc6\\xcc\\x5e\\x83\\x0a\\x30\\x6d\\x9e\\x0c\\xae\\\n\\x1a\\xb9\\x7d\\x8b\\x9e\\xa5\\xd9\\x82\\xe8\\xbe\\x1c\\x24\\x0d\\x4b\\x16\\xdc\\\n\\xa5\\x22\\x62\\xe1\\x10\\x08\\x1c\\x8c\\xa2\\x38\\x27\\x11\\x2d\\x46\\xa1\\x59\\\n\\x89\\x1a\\x80\\x96\\x09\\xb0\\x71\\x82\\x99\\xb8\\xb5\\x2e\\xd1\\xac\\xf6\\x3b\\\n\\x22\\x43\\x8f\\xcb\\xb1\\x23\\xf4\\x58\\x94\\xbf\\x74\\xb2\\x29\\xcd\\xc4\\xa8\\\n\\x1d\\x20\\x5b\\x42\\xd6\\x08\\x0b\\x18\\x46\\x15\\x78\\xcf\\x85\\x38\\xcc\\x1b\\\n\\x8a\\x59\\x18\\xcc\\x07\\x37\\xba\\xea\\x95\\x0c\\x01\\xa3\\x10\\xb0\\x98\\x2e\\\n\\x6d\\x3c\\x2c\\x24\\x62\\x19\\x86\\xe8\\x19\\xb0\\x8b\\x93\\x33\\x53\\xdb\\x52\\\n\\xa5\\x1d\\x41\\xdf\\x94\\x98\\xcc\\xa4\\x45\\x54\\x7f\\x57\\xf2\\xac\\xd7\\x49\\\n\\x49\\x9a\\x45\\x2a\\x64\\x05\\x01\\x9c\\x1c\\x16\\x34\\x87\\x25\\x02\\x94\\x37\\\n\\xd7\\x9a\\xc4\\x17\\x69\\x4a\\x83\\x15\\x0d\\xc0\\x14\\x29\\x13\\xa6\\x6a\\x52\\\n\\x05\\xa3\\x40\\xa4\\x24\\x21\\xa4\\x09\\x7e\\x30\\x07\\x8d\\xd0\\x5f\\x7a\\x43\\\n\\x17\\xd3\\xd0\\x69\\x12\\x11\\x08\\xea\\x0f\\x9e\\xf4\\x9d\\x35\\x0a\\x52\\x8b\\\n\\xb0\\x56\\xa8\\xb1\\x7c\\x0e\\x13\\xf6\\x5c\\x1d\\x62\\x2b\\x10\\xaa\\x51\\x71\\\n\\xc9\\x8e\\x5a\\x29\\x49\\xf1\\x85\\x5a\\x00\\x64\\x2f\\xa7\\xd5\\xe5\\x6c\\x9a\\\n\\x20\\x86\\xac\\x3f\\xeb\\x0c\\x4d\\x27\\xc6\\x42\\x6e\\x8d\\xac\\x93\\x02\\xac\\\n\\x34\\xc5\\x06\\x70\\xce\\x5a\\x62\\xc8\\x84\\xa8\\x95\\x90\\x75\\x1a\\x8b\\x4b\\\n\\x00\\xf1\\xb4\\x1a\\x60\\x00\\x42\\x4e\\xf2\\x40\\x0f\\xe4\\x2d\\x82\\x7e\\xbe\\\n\\x16\\x8f\\x9d\\x30\\x2d\\x89\\xa6\\x80\\x37\\x6e\\xb5\\xf7\\x8a\\x9e\\xa5\\xd9\\\n\\x80\\x9e\\xd4\\xc1\\x28\\x08\\xb8\\x84\\x6e\\xb8\\xa4\\x91\\xe9\\xa9\\x84\\x53\\\n\\xc0\\x36\\xf2\\x02\\xc6\\x11\\x06\\xe2\\x2a\\x5f\\x45\\x80\\xa5\\x1d\\x9a\\x73\\\n\\x36\\x14\\x21\\x78\\x3b\\xc2\\x5c\\x7c\\x33\\x03\\x96\\x4c\\x23\\x5c\\x2b\\x02\\\n\\xef\\x36\\x46\\xf3\\x68\\x0a\\x3b\\x01\\x88\\x9d\\x38\\xe9\\x20\\x2f\\xc6\\x40\\\n\\x89\\xa5\\x0f\\x10\\x36\\x23\\x4b\\xc4\\x1a\\x23\\x72\\xa1\\xe0\\x2d\\x46\\xf8\\\n\\xab\\x4c\\x6c\\x80\\xc2\\x02\\xa3\\x43\\x8b\\x3e\\x25\\x5a\\xfa\\x08\\x31\\x00\\\n\\x8f\\x37\\xa6\\x93\\xf2\\x3b\\x81\\x0f\\x1a\\x28\\x70\\xa6\\x8c\\xc5\\xfb\\x0c\\\n\\x88\\x06\\x01\\x51\\xc1\\xda\\xe9\\x66\\x5a\\x90\\x89\\x36\\xb9\\xaa\\xf3\\x08\\\n\\x2c\\xad\\x39\\x5d\\x11\\x93\\x0c\\x31\\xc7\\xbb\\x69\\x30\\xc4\\x33\\x48\\x31\\\n\\x2b\\x8f\\x0f\\x40\\x08\\x01\\x92\\x6b\\x56\\x60\\x89\\x38\\xe3\\x87\\x0d\\x41\\\n\\x56\\x27\\xdb\\x54\\x16\\x6b\\xe3\\x60\\x45\\xdc\\x4a\\xe0\\x68\\x29\\x34\\xd2\\\n\\x40\\xd4\\x80\\x9b\\x4e\\x00\\x18\\x65\\x02\\x70\\x08\\xd5\\xb3\\x40\\x68\\xb0\\\n\\x5b\\x66\\xc9\\x66\\x03\\x78\\x1d\\xbd\\x12\\xea\\x50\\x35\\x89\\x18\\x7e\\x28\\\n\\xdd\\x10\\xed\\x34\\x83\\xe4\\x50\\xc6\\x03\\xab\\xf4\\x15\\x4e\\x12\\x65\\xbe\\\n\\xdd\\x61\\x41\\xfa\\x90\\x21\\x11\\xc7\\x29\\xae\\x78\\xd6\\x83\\x20\\x81\\x23\\\n\\x8f\\xfc\\x14\\x50\\xba\\x04\\x06\\x67\\xcd\\x0e\\xab\\x20\\xc8\\x70\\x5b\\x9f\\\n\\x68\\x01\\xb5\\x79\\xe6\\x59\\x95\\x63\\xc9\\x86\\xd0\\x60\\x47\\xca\\x09\\xd3\\\n\\x1b\\x24\\xaa\\x72\\x6f\\x62\\x1d\\x67\\x58\\x8f\\x74\\x51\\x7c\\x71\\xd1\\x74\\\n\\x74\\x62\\xcc\\x90\\x74\\x26\\x9a\\xe2\\x4b\\x6f\\x5e\\xa8\\x34\\x09\\xec\\x05\\\n\\xe6\\xb1\\x2f\\x62\\x04\\x3b\\x52\\xc8\\x3e\\x8a\\x98\\xe1\\x64\\x3b\\xef\\x63\\\n\\xa3\\xfa\\x35\\x54\\x48\\x6f\\x76\\xc3\\xd9\\xac\\x6b\\x70\\xf4\\x9b\\x2f\\x06\\\n\\x9d\\xa8\\x98\\xab\\x7a\\xe2\\x1c\\x42\\xe3\\x33\\x2a\\x94\\x1c\\x8e\\xb8\\x70\\\n\\x61\\xd2\\xfb\\x9a\\xfb\\xba\\x54\\x5b\\x40\\x78\\x83\\x61\\xf4\\x72\\xf2\\x78\\\n\\x00\\x43\\xa7\\x21\\xc8\\x24\\x81\\x6d\\xe0\\x78\\x39\\x28\\x12\\x14\\xba\\xd4\\\n\\x25\\x26\\x7c\\xa0\\xee\\x9f\\xe5\\x95\\x64\\x37\\xb7\\x2e\\x30\\x89\\x15\\x95\\\n\\x49\\x0a\\x70\\x73\\x08\\x80\\xc2\\x9e\\x87\\xa8\\xdb\\x16\\x8a\\xf3\\x5d\\x0c\\\n\\x98\\x06\\x88\\xe0\\x0d\\xe2\\x49\\x52\\xe3\\xa2\\x04\\x28\\x6a\\xf3\\x86\\x03\\\n\\x27\\x2f\\x41\\x8f\\x95\\x8d\\x3e\\xac\\x15\\x56\\x79\\x9d\\xd1\\xa5\\xaa\\x49\\\n\\x60\\xd0\\x5a\\x40\\x14\\xb6\\x2a\\xa7\\xa0\\x86\\x1e\\x21\\xd0\\xf5\\x3a\\x51\\\n\\x2b\\x0b\\x52\\x9c\\xb5\\x01\\xc1\\xf0\\xa1\\x43\\x1d\\x54\\xd0\\x43\\x76\\x98\\\n\\xa0\\x6f\\x08\\xb3\\x14\\x31\\x34\\xe8\\x4a\\x05\\x6f\\xaa\\xcb\\x16\\x8d\\xf5\\\n\\xa0\\x00\\xc5\\x3a\\x61\\x07\\x0c\\xe2\\x08\\xb5\\x2a\\x3f\\x10\\x5a\\xbf\\x88\\\n\\x5d\\x2f\\xa2\\x9f\\x60\\x70\\x55\\x00\\x12\\xba\\x06\\x30\\xc3\\xe5\\x50\\x54\\\n\\x32\\x00\\x1e\\xa0\\xa2\\x6e\\x91\\x9e\\x19\\x45\\x6e\\x87\\xe1\\xf2\\x8f\\xfd\\\n\\x34\\x29\\x03\\x11\\xd2\\xbd\\x62\\xb8\\x22\\xbd\\x12\\x15\\x69\\xe4\\x7d\\xe2\\\n\\x0c\\x48\\x18\\x60\\x91\\x45\\xe8\\x3a\\x4f\\x7d\\x56\\xd6\\x6b\\x2c\\x51\\x58\\\n\\x50\\x4a\\x2a\\x39\\xe1\\x01\\x41\\x11\\x52\\xc8\\x00\\x42\\xc2\\x0d\\x15\\x5e\\\n\\x0f\\x02\\x6f\\x7c\\x17\\x82\\xd3\\x1a\\x1a\\x70\\x07\\x40\\x49\\x9f\\x05\\x07\\\n\\xe4\\x40\\x27\\x8b\\x2a\\xbd\\x80\\x8f\\x63\\x29\\x8b\\x86\\xa3\\xfd\\x7a\\xbc\\\n\\xde\\x51\\x41\\x82\\x67\\x82\\x01\\xba\\x7a\\x87\\xbc\\xc2\\xa4\\x48\\xdc\\x1b\\\n\\x54\\x2a\\x31\\x01\\x14\\xa0\\x65\\x38\\x52\\xac\\x1f\\x73\\x72\\xae\\xa1\\x7e\\\n\\x55\\x26\\xf9\\xee\\x83\\xb2\\x22\\xcf\\xca\\xb6\\x72\\xc6\\x45\\x2a\\xbd\\x46\\\n\\x58\\x40\\xa3\\x00\\x43\\x7b\\x41\\x4b\\xda\\x04\\xc0\\x71\\x0b\\x49\\xb4\\x85\\\n\\xd6\\x48\\x68\\x25\\xa8\\x12\\x4b\\x5a\\xe0\\x34\\x10\\x0c\\x03\\xe4\\xa1\\x9a\\\n\\x90\\xc4\\x95\\xc5\\x20\\x94\\x31\\x29\\x85\\xf1\\xc1\\x28\\x2a\\x82\\x02\\x0a\\\n\\xb8\\x2e\\x31\\x5d\\x12\\x74\\x11\\x1a\\xe4\\x90\\x04\\x49\\x5a\\x32\\x7d\\x02\\\n\\xd8\\xa5\\x14\\x84\\x80\\x2d\\x20\\x0e\\xf9\\x6a\\xc2\\x0e\\x29\\xbd\\x54\\x9a\\\n\\xb0\\x63\\xc0\\x16\\x7c\\x61\\x8d\\x43\\x10\\x50\\x24\\x8e\\xba\\x39\\xe8\\x77\\\n\\xd2\\x32\\xe0\\x9b\\x03\\x6e\\x5b\\xc0\\xac\\x3b\\xd1\\xa0\\xd6\\x75\\x11\\x20\\\n\\x66\\xfd\\x18\\x7c\\xdd\\x35\\x22\\x21\\x21\\xe1\\x6d\\x30\\xe4\\xec\\xb0\\x22\\\n\\xc3\\xf5\\xfd\\x38\\x82\\xf4\\x3a\\xa9\\x49\\x80\\x3a\\xa1\\x53\\x6c\\xf1\\x4b\\\n\\x97\\x14\\x54\\x14\\xa1\\x00\\x42\\x6a\\xa0\\xfa\\x34\\xc0\\x70\\x93\\x93\\xea\\\n\\x2a\\xb8\\xa3\\x7a\\x0c\\x34\\xd1\\xad\\x6f\\x97\\x10\\xed\\x16\\x1c\\x7a\\xad\\\n\\xea\\x28\\xae\\xa6\\xc5\\x1a\\xc8\\xaa\\x4c\\xfb\\xbb\\xd3\\x18\\x53\\xf0\\xd2\\\n\\x5e\\xa4\\xfe\\xd5\\x5b\\x22\\x1e\\xad\\x41\\xdb\\x59\\x5b\\x55\\x48\\xe1\\xac\\\n\\xce\\x04\\x00\\x7c\\x9f\\x28\\x07\\xcc\\x58\\xcb\\xb5\\x9e\\x33\\x27\\xb8\\x75\\\n\\x83\\x23\\x70\\x8f\\x4c\\x36\\x16\\x40\\xf0\\x2f\\x9d\\x7e\\x52\\x84\\x4d\\x5c\\\n\\xd5\\x01\\xe6\\x61\\x87\\x14\\xba\\x6a\\x7c\\x20\\xb5\\xe8\\x65\\x66\\xf2\\x0f\\\n\\x86\\xeb\\x1b\\x46\\x37\\xa4\\x34\\x07\\x55\\xed\\xac\\xba\\xa0\\x2e\\x4a\\xd4\\\n\\x9d\\xb1\\x9d\\x49\\xa1\\x79\\x56\\x3d\\x40\\x92\\x36\\xe8\\x4a\\x08\\xec\\x00\\\n\\x39\\x90\\x86\\xf3\\xc9\\x80\\x71\\x11\\x26\\xc9\\xbb\\x8d\\x4e\\x0b\\x9f\\x6d\\\n\\x38\\x6e\\xb8\\x0a\\x8d\\xd1\\x79\\x42\\xd3\\x00\\xa3\\x5b\\x21\\x00\\x20\\x5c\\\n\\x10\\x8d\\x54\\x33\\xec\\x98\\x27\\xe0\\x00\\x18\\x20\\x48\\x1b\\xb0\\x7c\\x01\\\n\\x63\\xb1\\x91\\x7e\\x53\\x84\\xb8\\x41\\xac\\x02\\xbf\\x16\\x12\\x0c\\x02\\xc0\\\n\\x8b\\xf2\\x05\\x4e\\xa8\\xda\\x76\\x25\\x04\\x2a\\x71\\x25\\x2b\\xe1\\xb3\\x0b\\\n\\x8f\\x99\\x00\\xbf\\x82\\xa9\\x00\\x34\\x1c\\xba\\x0e\\x91\\x82\\x8d\\x44\\x00\\\n\\x28\\x11\\x06\\x88\\xce\\x1b\\xe4\\xaa\\x7a\\x48\\x89\\x10\\x07\\x28\\xed\\x59\\\n\\x2a\\xd5\\x41\\xf0\\x2d\\x02\\x50\\x03\\xc4\\x80\\x81\\x20\\x20\\x82\\x06\\x47\\\n\\x82\\xe4\\xcd\\xeb\\x10\\x92\\x04\\xda\\x3a\\x2a\\xca\\x82\\x04\\x7d\\x7b\\x63\\\n\\x92\\x98\\x86\\x2b\\x86\\x51\\x85\\xc4\\x79\\x5d\\x81\\x2a\\xff\\x00\\x5c\\x3e\\\n\\x6a\\x6d\\x3d\\x9f\\xe2\\xf1\\x1d\\xa9\\x98\\xed\\x40\\x01\\x48\\xca\\x3f\\x83\\\n\\x8a\\x48\\xb1\\xb3\\x08\\xa4\\x4e\\xa0\\x95\\x47\\xfc\\xe6\\x72\\x50\\x44\\xc8\\\n\\x81\\xa1\\x40\\x0f\\x6a\\x10\\xfe\\x70\\x63\\x58\\x19\\x18\\xba\\xb9\\xe9\\x4d\\\n\\x4f\\xe3\\xa4\\x48\\xcb\\x80\\xa0\\xb7\\x4a\\xfe\\xfb\\xf9\\xf3\\x96\\x6a\\xa1\\\n\\xab\\x7e\\x02\\x5d\\x05\\xa2\\x6b\\x56\\x4c\\x14\\xe3\\xac\\x8e\\x91\\x83\\xc5\\\n\\xa0\\xa0\\x32\\xec\\x74\\x60\\x3e\\x88\\xf0\\x03\\x05\\xe0\\x1e\\x27\\x2c\\x8e\\\n\\x20\\x09\\xe4\\x91\\x6a\\x53\\x10\\xb6\\xc7\\xb6\\x24\\x42\\xc4\\x60\\x4c\\x7e\\\n\\x12\\xa0\\x2a\\x00\\xc5\\x3a\\x3a\\xe9\\x1e\\xb1\\x61\\x1a\\x91\\xc8\\xaa\\x88\\\n\\x2d\\x5a\\xa8\\x4a\\x74\\xdb\\x78\\xb2\\x68\\x0d\\x01\\x23\\x0d\\x68\\x59\\x50\\\n\\xe8\\x3d\\x64\\x42\\x36\\x46\\x05\\x62\\xff\\x00\\xe2\\x2d\\x6b\\x2c\\x11\\xc5\\\n\\xe8\\x00\\x33\\x0a\\xe0\\xb8\\xc6\\x37\\x07\\x59\\x7c\\x0c\\xe1\\x15\\xc8\\x69\\\n\\x91\\x80\\xab\\x80\\xb9\\x5f\\xa0\\x68\\x26\\xe9\\x0b\\x55\\xb3\\xaa\\x60\\x59\\\n\\xa7\\xc0\\xd7\\xdd\\x82\\x3f\\xd7\\x70\\x1b\\xae\\x17\\x14\\x4d\\xc4\\xa0\\x58\\\n\\x75\\x8b\\x3b\\x8a\\xd8\\x55\\x79\\x0f\\x75\\x78\\x18\\x49\\x91\\x00\\x14\\x1b\\\n\\xc6\\x28\\x1c\\xe0\\x93\\x18\\x43\\x4d\\x47\\x4e\\xbc\\x09\\x1a\\x0a\\x64\\x65\\\n\\xc0\\x6a\\x69\\x4c\\x16\\x75\\xbc\\x05\\x00\\x6d\\x05\\x63\\x03\\x12\\x57\\x3c\\\n\\x6d\\x41\\x41\\x54\\xc0\\x43\\x25\\x0a\\xc2\\x4e\\x09\\xb0\\x86\\x81\\x84\\x11\\\n\\x2f\\x0c\\x2e\\xb9\\x62\\x40\\xac\\xe2\\xa2\\xa2\\x43\\x01\\xc3\\x8b\\x6f\\xa1\\\n\\x1f\\x23\\x9a\\x17\\x12\\x41\\x7c\\x44\\xbb\\x65\\x0c\\x3b\\x08\\xd2\\x18\\xc9\\\n\\x1e\\xf2\\x5d\\x21\\xbe\\xc3\\xa5\\xeb\\xcc\\xe4\\x0f\\x88\\xa7\\xb8\\x7b\\x29\\\n\\x1c\\x12\\xc1\\x40\\x22\\xa6\\x72\\xdf\\xc2\\xdc\\x74\\xe7\\x2f\\xda\\x15\\x30\\\n\\x41\\x01\\x8e\\x19\\x8a\\x08\\x4c\\x1d\\x92\\x5f\\x80\\x44\\xc3\\x72\\x87\\x66\\\n\\x61\\x26\\x20\\x52\\x3a\\x74\\xd8\\x0b\\x62\\xb8\\x53\\xd5\\x54\\x91\\x17\\x51\\\n\\xf7\\x5b\\x78\\xa6\\x80\\xcd\\x75\\x87\\x28\\xe6\\x1f\\x55\\xa4\\x54\\x81\\x94\\\n\\x37\\x29\\xe2\\xa7\\x29\\x3b\\x8e\\xe3\\xbc\\x74\\xe9\\xc8\\x14\\x05\\xe1\\xd9\\\n\\x22\\x0c\\xad\\x77\\x75\\x6b\\xfa\\xf2\\x22\\xd4\\xaf\\x1e\\xd9\\xa9\\x24\\xc7\\\n\\xa0\\x68\\xbe\\xe3\\x92\\x0d\\x39\\xcf\\xff\\x00\\x23\\x85\\xda\\xfe\\xab\\x8f\\\n\\x01\\x20\\x63\\xf6\\x89\\x82\\x74\\x1d\\x47\\x32\\x52\\x2b\\x44\\x58\\xdf\\x1c\\\n\\x43\\x08\\x81\\x0c\\xb0\\xe8\\x59\\x2a\\x32\\x61\\xc6\\x6c\\xe6\\xa9\\x96\\x24\\\n\\x36\\x0d\\xb8\\x26\\xa8\\x39\\x8a\\x6c\\x84\\x40\\x0e\\xb3\\xf5\\xad\\x3a\\xa7\\\n\\xcf\\x73\\xb0\\xa1\\xe7\\x0e\\xa2\\x0d\\xee\\xd5\\x95\\x52\\xe5\\x09\\xc7\\x22\\\n\\x4a\\x76\\xd7\\xb3\\x45\\x86\\x8c\\xc5\\x4e\\xb4\\xfe\\x08\\x24\\x79\\xd5\\xb8\\\n\\x96\\xc8\\xad\\xb0\\x3f\\x53\\x4d\\x58\\x79\\xd5\\x44\\xd8\\x59\\x61\\x3a\\x30\\\n\\xa6\\xd6\\x65\\x03\\x33\\x42\\xad\\x54\\x0a\\x55\\x04\\x11\\xe9\\x89\\x5b\\x63\\\n\\x6d\\x1e\\x92\\x48\\x84\\x5d\\xd1\\x76\\xc2\\xe2\\x01\\x86\\x58\\x5a\\x0b\\x86\\\n\\xae\\xa0\\xb1\\xc3\\x42\\x64\\x26\\xcd\\xa7\\x65\\x3d\\x08\\x04\\xa6\\x53\\x9d\\\n\\x11\\x36\\xbc\\x49\\x43\\x80\\x02\\xa0\\x6b\\x4f\\x05\\x69\\x50\\x38\\x5b\\xbe\\\n\\xe8\\xf2\\xa1\\x6c\\x02\\x8f\\xc1\\x67\\x3a\\x21\\x2a\\x51\\x70\\x0a\\x0d\\xf4\\\n\\x16\\xd3\\xc1\\x9e\\x34\\x4d\\x51\\x78\\xdf\\xb6\\xc3\\x4a\\x54\\x21\\xed\\xf0\\\n\\x28\\x95\\x44\\x8a\\x51\\xa9\\x50\\x67\\x21\\x75\\x39\\x2c\\x05\\x14\\x82\\xfb\\\n\\x03\\x82\\x72\\x83\\x02\\x01\\x9e\\xa9\\xaa\\xf5\\x28\\x39\\xcd\\xcc\\x04\\xb2\\\n\\x2d\\xa4\\xa6\\xf8\\xd1\\xea\\xa7\\x3a\\xc5\\xa0\\xad\\xa2\\x3f\\xbe\\x43\\x80\\\n\\x70\\xd8\\x00\\x8c\\xbe\\x60\\x9b\\x42\\x0b\\xe2\\xd5\\x1c\\x95\\x2a\\x78\\x99\\\n\\xe8\\x0c\\x20\\x83\\xb6\\xc0\\xe0\\x48\\xea\\x3a\\xa3\\xe1\\xa0\\x90\\xc3\\x00\\\n\\xc5\\xd7\\x97\\x9c\\x4f\\x72\\x5a\\xa8\\x1e\\x6a\\x06\\x0e\\x29\\x38\\xc4\\x3a\\\n\\xa5\\x68\\x2e\\x6d\\x56\\x8a\\x10\\x7a\\xcb\\x8c\\xc2\\x41\\x1b\\x0f\\xa3\\x6f\\\n\\x96\\x9d\\x67\\x19\\x66\\xa2\\x01\\x49\\x7f\\x6f\\x50\\x52\\xb2\\x8b\\x38\\xf0\\\n\\x0b\\x15\\xad\\x57\\xa0\\x2e\\x08\\x7f\\x4c\\x4e\\x30\\xd5\\x11\\xeb\\x45\\x34\\\n\\xaa\\x17\\x1f\\xc0\\xf5\\xf0\\xc7\\x3f\\x29\\x12\\x60\\x2e\\x15\\xd6\\xbc\\xa2\\\n\\x80\\x4a\\x2a\\xd9\\x0d\\x17\\x40\\x84\\xc6\\x29\\xc4\\x22\\x1c\\x28\\x41\\xdc\\\n\\x58\\x1e\\x8c\\x59\\x01\\x18\\xb5\\x0c\\x04\\x07\\x9b\\xaf\\x89\\x5e\\xf4\\xaa\\\n\\x44\\x01\\x98\\x81\\xc1\\x88\\xf2\\x2d\\xa1\\x03\\x25\\x40\\xe0\\x4a\\x63\\x81\\\n\\x5c\\x1b\\x1e\\xa4\\x26\\x85\\x00\\x80\\x92\\x4e\\xf2\\x25\\xb2\\x11\\x98\\x53\\\n\\x08\\x46\\xa9\\xa5\\x01\\x11\\x51\\x56\\x50\\xba\\xd0\\x1a\\x03\\x49\\x3f\\x1c\\\n\\xab\\xd0\\x60\\x24\\x64\\x4b\\x75\\x2d\\xfe\\x85\\xa9\\xc5\\x11\\x4e\\x2c\\x31\\\n\\xa9\\x91\\x08\\x03\\xd3\\xb3\\x97\\x6a\\xb2\\xa4\\x10\\x45\\x17\\x48\\x5c\\x5a\\\n\\x30\\x9f\\x72\\x3b\\x6e\\xf6\\xc4\\x39\\xbb\\x21\\x06\\x78\\x8e\\x29\\x29\\x07\\\n\\x06\\xaa\\xc2\\xb8\\x0a\\x8f\\x3f\\xaa\\xf8\\x06\\x14\\x1a\\x78\\xae\\x84\\x92\\\n\\x08\\x41\\x6b\\x19\\x9e\\x62\\xdb\\x28\\x81\\x22\\x50\\xa1\\x25\\x5a\\x20\\xa8\\\n\\xf4\\x80\\xd0\\xdb\\x2a\\x62\\xd2\\x5b\\x4c\\x05\\x8f\\x1e\\x8a\\xaf\\x67\\xe8\\\n\\x20\\xd8\\x14\\xe9\\xfa\\x77\\x82\\xdf\\xe8\\x11\\xa0\\x16\\x05\\xa4\\x1d\\x7a\\\n\\x03\\x5b\\x82\\xa0\\x1b\\x41\\xf0\\x83\\x4e\\x05\\xa6\\xf2\\xa6\\x12\\x8d\\xdf\\\n\\x71\\xc8\\x17\\x4a\\xed\\xb2\\x11\\x31\\x5a\\x41\\x18\\x05\\x0c\\x33\\xfa\\xa4\\\n\\x31\\x43\\xd0\\x94\\x76\\x8b\\x05\\x26\\xf0\\x09\\xd4\\xbd\\x9a\\xf3\\x29\\x08\\\n\\x3d\\x48\\x6a\\x12\\x35\\x4a\\xa4\\xde\\xad\\x4d\\x3c\\x99\\x12\\x93\\xb5\\x60\\\n\\xa7\\xec\\xc8\\xa1\\x4f\\x30\\x94\\xe8\\xae\\x4f\\x62\\x70\\x47\\x28\\xe7\\x4e\\\n\\xc7\\x8d\\xbc\\x31\\x00\\x12\\x92\\x82\\xcb\\x6b\\x1c\\x96\\xf9\\x46\\x6a\\x28\\\n\\x9c\\x85\\x5b\\xcf\\x70\\xac\\xdd\\xac\\xe6\\x48\\x9a\\x71\\x94\\x11\\x29\\x3a\\\n\\xb4\\x48\\xe0\\x80\\x78\\x3b\\x10\\x4c\\xe4\\x1b\\xc2\\x2c\\x00\\x08\\x70\\x1e\\\n\\xb2\\xc8\\x10\\x00\\x10\\x06\\x7c\\x18\\xb8\\x63\\x91\\x58\\x55\\x42\\x04\\xa9\\\n\\xaf\\x22\\x85\\xae\\xb0\\x8c\\xef\\x2a\\x5b\\xeb\\x21\\x3d\\x19\\xc6\\x64\\x34\\\n\\x1e\\x33\\x5d\\x96\\x8f\\xce\\xca\\xdb\\xea\\x12\\xe1\\x4c\\xaa\\xa5\\x33\\x13\\\n\\x9b\\xed\\x11\\x4a\\xd0\\xb0\\x04\\x43\\xad\\x2d\\x5e\\xc1\\x51\\xc7\\xc4\\x1b\\\n\\x63\\xc8\\xe2\\xd3\\xf2\\x0c\\x76\\x82\\xb3\\x51\\x43\\x53\\x04\\xd3\\x93\\xc1\\\n\\x05\\x28\\x98\\x7a\\x01\\x0c\\xaa\\xab\\xed\\xf8\\x73\\xec\\x11\\xa2\\x6c\\xf9\\\n\\xff\\x00\\xe5\\x2a\\x41\\x4a\\x04\\x50\\xdc\\xd0\\x5d\\xe1\\x64\\x86\\xc0\\x16\\\n\\x90\\x2a\\xa2\\x0a\\xc6\\x40\\x91\\xe8\\x00\\x12\\xab\\x4c\\xe0\\x02\\x96\\xe2\\\n\\x15\\x7a\\x87\\xc1\\x4d\\x10\\x15\\x03\\x9f\\x82\\x38\\x90\\xd6\\x78\\xaa\\x89\\\n\\xc1\\xc6\\x15\\x55\\xd3\\x49\\x68\\x01\\xdf\\x2b\\x48\\xfa\\x35\\x4c\\x0f\\xed\\\n\\x6c\\x4b\\xec\\xf6\\x96\\x06\\x8b\\x2f\\x28\\x7a\\x20\\x50\\x58\\xc8\\x1f\\x5a\\\n\\xce\\x0d\\xc1\\xd9\\xd4\\xb4\\xb0\\x29\\xcc\\x46\\x84\\x45\\x20\\x5a\\x28\\x21\\\n\\x40\\xd4\\x5e\\x30\\x8c\\x01\\x41\\xa5\\x34\\xed\\x94\\xa3\\x03\\x27\\x18\\x8f\\\n\\xa4\\x0c\\x12\\x14\\x09\\xe4\\x6b\\xee\\x00\\x1a\\x29\\xc3\\x77\\x3c\\x21\\x81\\\n\\x70\\x4d\\xc9\\x81\\x7b\\x70\\xf5\\x15\\x10\\xc3\\x0b\\x56\\x08\\xa8\\x5e\\x0d\\\n\\xe6\\xcc\\x64\\x58\\x2a\\xc1\\xa0\\x94\\x2f\\x19\\x6b\\x17\\xc2\\xa3\\x4c\\xfb\\\n\\x92\\x8c\\x0f\\xf0\\x40\\x94\\x0c\\x65\\x80\\x70\\x00\\x0c\\x24\\x7c\\x0e\\x7c\\\n\\xcc\\xbf\\x55\\x86\\x3e\\xf9\\xd6\\x20\\x9b\\x96\\xd2\\x5b\\x2a\\xc5\\xc5\\xf2\\\n\\x87\\xe0\\x08\\xc6\\xc1\\x07\\xe5\\xa0\\xac\\xcf\\x53\\xc9\\x4f\\x2f\\x93\\xf1\\\n\\x14\\x20\\x40\\x63\\x89\\xac\\x56\\x2c\\x50\\xfc\\x2d\\x02\\x6a\\xb9\\x38\\x35\\\n\\x52\\x41\\xc3\\x0a\\x10\\x2b\\x7c\\x1c\\x7d\\xe6\\x56\\x96\\x17\\x35\\xb0\\x28\\\n\\x18\\xb6\\x36\\xf3\\x7f\\x02\\xc1\\x84\\xbe\\x0d\\x00\\x71\\x86\\x3a\\x1e\\x6e\\\n\\xc4\\x1c\\xac\\x92\\x7a\\x12\\x3f\\xf4\\xe4\\x05\\xe1\\x40\\x32\\x7e\\x0c\\x0b\\\n\\xd2\\xbf\\x72\\xe5\\xb3\\x94\\xb5\\x0d\\x51\\x25\\x12\\x29\\x68\\x73\\x55\\x70\\\n\\x0b\\x0b\\x09\\x92\\x82\\x03\\x05\\x14\\x9c\\x0c\\x22\\xf2\\xaf\\xd0\\x26\\x0a\\\n\\x48\\x11\\x03\\x04\\x8c\\x40\\x0d\\x82\\x57\\x12\\xc4\\xe1\\x36\\x70\\x6e\\x8b\\\n\\x5f\\x52\\x41\\xf6\\x1e\\x90\\x19\\x3e\\xac\\x52\\x60\\x2d\\x0c\\x14\\x20\\x7e\\\n\\xc9\\x4d\\x0d\\x2d\\x39\\x50\\xc1\\x30\\x02\\xbe\\x8e\\xd0\\xf8\\x0f\\xd4\\xcb\\\n\\x68\\x09\\xa2\\xe7\\xac\\x3b\\x63\\xd6\\x9a\\x09\\x44\\x49\\x5b\\x69\\x16\\xca\\\n\\x5e\\x0b\\x62\\x30\\x23\\xf9\\x35\\x85\\x69\\x74\\xe9\\x2c\\x38\\xa1\\x4c\\x02\\\n\\x0b\\x10\\x1f\\xc3\\x51\\xe6\\xf1\\x6a\\x04\\x81\\x01\\xb9\\x27\\x45\\x5e\\xd2\\\n\\x23\\xed\\xb1\\x10\\x55\\x13\\x46\\xe0\\xaf\\xd9\\xfe\\x98\\xbc\\x30\\x61\\x1c\\\n\\xa1\\x41\\x94\\xb4\\x34\\x9d\\xaa\\x91\\x7d\\x2e\\x90\\xab\\x4d\\x20\\x31\\x82\\\n\\xed\\x43\\x68\\xa5\\x23\\x4c\\xea\\xb7\\xbd\\x59\\x63\\x4d\\x74\\xcf\\xb4\\x12\\\n\\xa1\\x06\\x45\\x01\\x28\\x30\\x6c\\xb4\\x25\\x9e\\x12\\x26\\xd2\\x03\\x09\\xe1\\\n\\xa8\\xef\\x05\\x78\\xd4\\x41\\xc8\\x5a\\x5c\\x5a\\x5e\\x59\\x7b\\x1c\\x87\\x01\\\n\\xd7\\x95\\x76\\x6b\\x17\\x5f\\x46\\x8c\\x61\\xc8\\xe3\\x46\\x00\\xfb\\x06\\xc3\\\n\\x38\\x2f\\x40\\x1c\\xe7\\xf5\\x82\\x81\\x14\\x4f\\x05\\x53\\xad\\xd1\\xc5\\x96\\\n\\x11\\x2d\\xf4\\x74\\x0e\\xe9\\xb0\\x12\\x47\\x32\\x92\\x05\\x81\\xa9\\x7c\\xc8\\\n\\x2a\\x40\\xdb\\x24\\xbf\\x31\\x04\\x42\\x0c\\xc7\\x92\\xd1\\x84\\x0c\\x89\\x41\\\n\\x56\\x86\\xdc\\x21\\x94\\xe1\\x24\\x51\\x51\\x38\\x4b\\xe8\\xe8\\xc0\\x52\\x91\\\n\\x61\\x98\\x0e\\xc7\\xc0\\x8c\\x56\\x38\\x91\\x55\\x56\\xc0\\x00\\x21\\xe0\\xf1\\\n\\xcb\\x80\\xc5\\xea\\xad\\x47\\xa8\\xc5\\x2b\\x76\\x89\\x55\\x3f\\x51\\xf0\\x55\\\n\\x78\\x58\\x32\\x67\\x26\\x33\\xf4\\x2c\\x8a\\x20\\xcf\\x5b\\x3d\\x13\\xb1\\x34\\\n\\xa8\\x73\\xe7\\x00\\x81\\x33\\x05\\xdb\\x69\\x71\\x82\\x31\\x15\\x68\\xfd\\x1a\\\n\\x62\\x03\\x75\\xf2\\x50\\x15\\x23\\xd0\\x42\\xa7\\x2d\\xde\\xe9\\x5a\\x09\\x57\\\n\\xd7\\xf3\\xcd\\x8d\\x6d\\xdb\\x3a\\x88\\xa7\\x20\\x30\\xc5\\x4f\\x14\\x62\\x0b\\\n\\x2d\\x60\\x20\\x12\\x43\\x06\\x87\\x00\\x82\\x90\\x19\\xcf\\x3b\\x6a\\x51\\x6c\\\n\\x0a\\x08\\xe4\\x87\\xa9\\x07\\xd7\\x7f\\x43\\x3d\\x4b\\x5a\\x4b\\xcb\\x5d\\x51\\\n\\x50\\xd8\\x66\\x04\\x26\\xc4\\xa0\\x3d\\xc4\\x2e\\x80\\x45\\x21\\x6d\\x42\\x60\\\n\\x8a\\xb9\\x20\\x5e\\x51\\x33\\x80\\x85\\x08\\x59\\x07\\xfd\\x5a\\x7e\\x73\\x93\\\n\\x92\\x99\\x10\\x2e\\xa6\\x93\\x55\\x29\\xca\\x0e\\x0d\\xd1\\x21\\x80\\x9a\\x48\\\n\\x80\\xf8\\x3c\\xb8\\xb5\\x02\\xb6\\xe2\\x05\\xd4\\x8d\\x4a\\x90\\xc9\\xc1\\x3c\\\n\\x6c\\x08\\x45\\x9a\\xae\\xd1\\x11\\xa0\\x5e\\x6b\\x76\\x5c\\x96\\x04\\x4d\\x04\\\n\\xfd\\x04\\x86\\xc4\\xd8\\x04\\x40\\xe1\\xa8\\x11\\x02\\x68\\x2e\\x6d\\x27\\xed\\\n\\xe4\\x15\\xf0\\xb0\\x3e\\xad\\x78\\x71\\xeb\\xc4\\x7f\\x85\\x55\\x56\\xd7\\xcc\\\n\\x26\\x1d\\x2f\\x86\\x20\\x51\\x35\\x98\\x28\\x82\\x51\\x58\\xe0\\xc2\\x81\\x80\\\n\\x00\\x4a\\x84\\x09\\xec\\xe8\\x9c\\x07\\x83\\x94\\x05\\x1d\\x34\\x38\\xe5\\xc3\\\n\\xf9\\x88\\x2e\\x8b\\x69\\x4a\\xd1\\xa8\\x8f\\x02\\x0c\\x12\\xa3\\x02\\x04\\x10\\\n\\x00\\x45\\x80\\xea\\xa5\\x8c\\xeb\\xbc\\x40\\x6c\\x62\\x36\\xb1\\x86\\x47\\x76\\\n\\xec\\x83\\x62\\x56\\x5f\\x60\\x8d\\x2a\\x9a\\x34\\x28\\x97\\x23\\x70\\x24\\x05\\\n\\x68\\x07\\x83\\x13\\x93\\xe0\\x12\\xde\\xc6\\x1a\\x2a\\xba\\xab\\x28\\x02\\x4e\\\n\\xea\\x0d\\x21\\xa7\\x52\\xb0\\x02\\x1d\\x40\\x2d\\x00\\x9f\\xd1\\x0a\\x11\\x0a\\\n\\x3a\\xd2\\x35\\x47\\xec\\x54\\xaa\\xc0\\x0b\\x49\\x50\\xf5\\x2a\\xc2\\x9d\\x9a\\\n\\x10\\x1d\\xcb\\x2a\\x93\\x80\\x61\\x0a\\xa2\\x05\\x20\\x80\\xaa\\x2b\\x81\\x09\\\n\\x4c\\x14\\xbe\\x76\\xb4\\x12\\xa6\\x84\\x28\\x8c\\x01\\x21\\xfa\\x21\\xa2\\x0a\\\n\\x55\\x71\\x6a\\x0b\\xd1\\xe0\\x5a\\x94\\x80\\x80\\x51\\x08\\xda\\x95\\x5e\\x68\\\n\\xd2\\x34\\x00\\x82\\x00\\x05\\x05\\xd1\\xc5\\x17\\xe1\\x56\\x03\\x59\\xe3\\xb7\\\n\\x03\\xac\\x04\\x36\\x21\\xdc\\xa7\\xd2\\xf1\\x80\\x09\\x31\\x0c\\xb5\\x94\\xcb\\\n\\xc4\\x40\\x12\\x04\\x45\\x21\\x0b\\xab\\x78\\xa3\\x5a\\x34\\x43\\x54\\x68\\x76\\\n\\x8a\\x19\\xe3\\x62\\x5d\\x2b\\x72\\x97\\x95\\x66\\x6f\\x20\\xa3\\x86\\x31\\x42\\\n\\x3a\\xf5\\x94\\x55\\xf6\\xae\\xa2\\x5a\\xb3\\x73\\x7c\\x91\\x6f\\xe0\\x47\\x66\\\n\\x50\\x68\\x39\\x37\\x69\\x5f\\x0d\\x6d\\x58\\x2c\\x2c\\xba\\x12\\xb6\\x61\\xc4\\\n\\xda\\x02\\xab\\xe8\\x87\\x81\\xc0\\xd9\\x43\\x49\\xd6\\xa3\\xdd\\x03\\xf0\\x77\\\n\\xcf\\xa4\\x68\\x06\\xf8\\x02\\x85\\x2c\\x71\\xfe\\xd2\\x80\\x19\\xe1\\x47\\xe8\\\n\\x39\\xa7\\xb4\\x46\\x41\\xc0\\xf8\\xd5\\xd2\\xf2\\x38\\xc6\\x6a\\x4a\\xe1\\xeb\\\n\\xdc\\x2e\\xc1\\x0e\\x36\\x66\\xb2\\x9c\\xae\\x29\\xb8\\x08\\xf4\\x14\\x53\\x51\\\n\\x3e\\x1e\\x0d\\x79\\xc3\\x72\\xca\\x9b\\x31\\xec\\x8d\\x0d\\x24\\x3a\\xfc\\x17\\\n\\xe4\\xc6\\xc0\\x13\\x74\\x94\\xd2\\x1d\\xab\\x3d\\x17\\x39\\x1f\\xf4\\x9c\\x27\\\n\\x14\\xe1\\xb0\\xf1\\x81\\x00\\xd8\\xc9\\x94\\x01\\xa9\\x08\\x13\\x16\\xde\\x58\\\n\\x3a\\xa3\\x57\\x8b\\x1b\\xc6\\x94\\xc0\\x2a\\xca\\xde\\xc1\\x04\\x49\\xd3\\xf7\\\n\\x11\\x10\\x2a\\xd6\\x29\\x8c\\x0a\\x8a\\xcb\\xd0\\x47\\xa2\\x23\\x10\\x08\\x54\\\n\\x8d\\x79\\xe7\\x3d\\x58\\xc9\\x11\\x6a\\xa8\\xed\\x98\\x18\\x32\\xd9\\xc4\\x14\\\n\\x48\\x86\\x08\\x36\\x6c\\x93\\x9f\\x76\\x46\\x9e\\x86\\xb6\\xa8\\x00\\xca\\x1f\\\n\\x10\\x74\\x27\\x58\\x9a\\xa3\\xfd\\x98\\x28\\x23\\xc1\\x15\\x3c\\x28\\x81\\x16\\\n\\x46\\xc2\\x57\\x99\\x60\\x37\\x87\\x9a\\x20\\xd7\\xad\\x03\\x0c\\xf2\\x4a\\xa9\\\n\\xd4\\x29\\xaa\\x81\\xfc\\xe4\\x80\\xfe\\x42\\x1d\\x24\\x25\\xa0\\xf4\\x82\\x9a\\\n\\x10\\xaa\\x7a\\x45\\x74\\xfb\\x27\\x06\\x56\\x9b\\x99\\xa1\\x0d\\x7b\\x00\\xe2\\\n\\xa9\\x60\\xa8\\x19\\x50\\xb6\\x78\\xa6\\x3f\\xfa\\xfb\\x20\\x89\\x91\\x6b\\x4c\\\n\\x22\\x94\\x23\\x47\\xa3\\x71\\xcc\\xe5\\xe8\\xa9\\x0a\\xa6\\x06\\x09\\x8f\\x26\\\n\\xaf\\xac\\x3a\\x1a\\x4b\\x5c\\x82\\x92\\x30\\x7d\\xe5\\x66\\xf4\\x38\\xde\\xe2\\\n\\x72\\xc9\\x81\\x20\\x05\\x01\\xba\\x07\\xcc\\x21\\x38\\x59\\x50\\xb9\\x89\\x80\\\n\\xee\\x82\\x6c\\x22\\xba\\xd0\\x1b\\x79\\xce\\x8a\\xdc\\x0a\\x39\\x1d\\x55\\x09\\\n\\xd0\\x5e\\x9d\\x84\\x21\\x0c\\x2f\\x57\\xd6\\x68\\xe7\\x80\\x5b\\x58\\x48\\x53\\\n\\x48\\xa4\\xe9\\x3a\\x75\\x64\\xd8\\x3c\\x50\\x79\\x47\\xf4\\x5e\\x36\\x3e\\x58\\\n\\xea\\x1e\\x8c\\x19\\x40\\x08\\x1c\\x18\\x5a\\x67\\x5b\\x29\\x44\\x78\\xe5\\x1b\\\n\\x36\\x2e\\x54\\xf9\\x04\\xd3\\x0c\\xa4\\x6a\\xda\\x50\\xe5\\xf1\\x33\\x06\\x5a\\\n\\x4a\\x38\\x27\\x71\\x58\\x81\\x88\\xd6\\xde\\x92\\x2e\\xb2\\x8e\\x42\\x1e\\x8a\\\n\\x00\\xc5\\x3c\\x1a\\x03\\x9e\\x08\\xea\\xc3\\xdf\\x8f\\xf7\\xb1\\x24\\x29\\xa4\\\n\\xd4\\x01\\x50\\x4b\\x8e\\x64\\x30\\x0a\\x05\\x1c\\x41\\x24\\x59\\xa2\\x29\\x0c\\\n\\x59\\x21\\x06\\x94\\x69\\xd7\\x2f\\x84\\x17\\x03\\x22\\x48\\xbe\\xd4\\xd7\\x24\\\n\\xa7\\x60\\xb8\\x0f\\xe9\\xa8\\x84\\x32\\x08\\xaa\\x9a\\xb8\\x09\\x96\\x0b\\x0d\\\n\\x9f\\xc8\\x8e\\x28\\x56\\xc6\\xa5\\x01\\xdd\\x12\\x04\\x84\\x58\\x45\\x85\\x4b\\\n\\xbd\\x66\\x59\\x84\\x01\\x21\\x7d\\xa5\\x82\\x14\\xc0\\x0d\\x20\\x10\\x02\\x81\\\n\\x21\\xfc\\x56\\xd5\\x09\\x59\\x20\\x39\\x22\\x41\\xa8\\x29\\x00\\xe9\\xe0\\x23\\\n\\x2a\\x96\\x0a\\x6f\\x4f\\x51\\x6c\\x86\\xde\\x96\\x7e\\x13\\xb8\\xcc\\x20\\x60\\\n\\x40\\xe1\\x10\\x88\\xf0\\xd1\\x25\\x4b\\xe4\\x90\\x11\\x74\\x16\\xa7\\x4f\\xb2\\\n\\x3a\\x21\\xe0\\xfa\\x06\\x8e\\x4f\\x49\\xc0\\x87\\x00\\x87\\xa0\\x91\\x10\\x2f\\\n\\xc9\\x14\\xea\\x4e\\x51\\xa9\\x02\\x25\\x2a\\x46\\x30\\xf0\\xd4\\x3c\\x14\\x84\\\n\\x81\\x16\\xe2\\x91\\x3b\\x72\\x2f\\x04\\x8f\\xa0\\x18\\x13\\xc0\\xfc\\x0b\\x21\\\n\\x15\\x82\\x25\\x9d\\xaa\\x1d\\xd6\\xf7\\xe6\\xef\\x0a\\x23\\x61\\x73\\xd2\\x4f\\\n\\xb3\\x60\\x17\\x8a\\x25\\x1f\\x05\\xf4\\x02\\x71\\x41\\x64\\x03\\xc0\\x7d\\x34\\\n\\x4d\\x73\\x98\\x79\\x9c\\xcf\\x8b\\x95\\x1a\\xc3\\xd2\\x6a\\x37\\x41\\xd7\\xf4\\\n\\xa8\\xe3\\xa0\\x97\\xfa\\x44\\x7b\\xa5\\x6b\\x36\\xae\\x43\\xda\\x5a\\x83\\x01\\\n\\xa8\\x30\\x54\\xa7\\x6b\\x70\\x03\\x3f\\xa0\\x1c\\x39\\x9d\\xe3\\x48\\xf1\\x8e\\\n\\x08\\x86\\xa5\\x88\\x15\\xd3\\x75\\xe0\\x1a\\xcb\\x47\\x33\\x92\\xce\\x88\\xa9\\\n\\x0c\\x56\\x79\\x57\\xc7\\xb0\\x3f\\x8e\\x8e\\x44\\xe7\\x66\\x43\\xe2\\xb0\\xab\\\n\\xb4\\x79\\x32\\x2c\\xec\\x74\\x39\\xd1\\xda\\x6b\\x85\\x8d\\x83\\x3b\\xfe\\x8c\\\n\\x37\\x80\\xeb\\x9b\\xaa\\x41\\x52\\xe1\\x68\\x84\\x97\\x0a\\x43\\x50\\x62\\xb7\\\n\\x94\\x3a\\xa7\\xae\\x03\\x0a\\x96\\xf2\\x11\\x43\\x84\\x77\\x84\\x5a\\x21\\xfd\\\n\\x38\\xad\\x82\\x9c\\x2d\\x71\\x5f\\x7e\\x46\\x2a\\xa0\\x18\\x09\\x17\\x9b\\x42\\\n\\xe0\\x2e\\x05\\x91\\x8c\\x89\\xc4\\xdf\\x03\\xd9\\xfd\\xae\\x89\\x41\\x90\\x01\\\n\\xf8\\x6a\\x1c\\x35\\x2d\\xa4\\x44\\x01\\x1a\\x15\\xad\\xe2\\x07\\x8c\\x86\\x88\\\n\\xb9\\x42\\x4d\\x55\\x18\\x91\\x73\\x2c\\x4a\\x5d\\x70\\x12\\xd1\\x34\\xd2\\xa0\\\n\\x2c\\x49\\x1a\\x50\\x79\\x47\\xab\\x22\\xf8\\x30\\x18\\xa4\\x22\\x61\\xd2\\xdc\\\n\\x9a\\x24\\x08\\x51\\x0d\\x86\\x44\\x0a\\x8a\\x6b\\xe0\\x28\\x95\\x18\\x48\\x22\\\n\\x9a\\x65\\x2d\\x63\\x4c\\x82\\xe3\\x97\\x44\\xdf\\xbd\\x4a\\x5f\\x68\\x44\\x25\\\n\\x60\\xc3\\x27\\xbb\\x12\\x20\\x10\\xfa\\x40\\xab\\x30\\x7c\\x1b\\x33\\xcd\\xe2\\\n\\xb7\\x55\\xa8\\x15\\xf9\\xa2\\x02\\xca\\x2c\\x22\\xec\\xa2\\x90\\x3d\\x12\\xaa\\\n\\xd8\\x00\\x0a\\x4a\\x60\\xf4\\x6c\\x39\\x71\\x80\\x85\\xd7\\x42\\x00\\x00\\x47\\\n\\x6d\\x8a\\x8d\\x71\\x3e\\x09\\xf6\\xf7\\x08\\x82\\x16\\x79\\x98\\x02\\x93\\x00\\\n\\x35\\x56\\xfa\\x75\\x92\\x11\\x0b\\x89\\xac\\x25\\x50\\x0b\\x0a\\x2e\\x1c\\x69\\\n\\xb0\\xf1\\x06\\x9e\\x9f\\xe1\\x31\\xe2\\xa4\\x64\\x07\\x10\\x8c\\x00\\x92\\xd1\\\n\\x44\\x3e\\x9f\\x07\\xa5\\x8d\\x06\\xc4\\x1d\\xbf\\xe7\\xe5\\x37\\xa4\\x63\\x41\\\n\\xb1\\x10\\xa0\\x45\\x60\\xfc\\x1c\\xd7\\x32\\x09\\x0e\\x24\\x33\\xfc\\x42\\x03\\\n\\xc4\\xad\\x81\\x55\\x2e\\xac\\x2b\\x51\\x62\\xb8\\x3c\\x53\\xa2\\xc3\\xbd\\x09\\\n\\x8d\\x10\\x31\\xea\\xa0\\x90\\xe4\\xd7\\xc1\\xdf\\x68\\xab\\xef\\xfb\\x50\\x69\\\n\\xdd\\x03\\xf4\\xca\\x3b\\x40\\x05\\xf5\\x3d\\x2c\\x11\\xdc\\x80\\x8b\\x35\\x55\\\n\\xcc\\x2c\\x40\\xb9\\x91\\x07\\x59\\x19\\x56\\x40\\x33\\x0c\\x0c\\xe0\\x21\\xb6\\\n\\xe1\\xca\\xe9\\x35\\x68\\x9b\\x5b\\xd5\\x02\\xa5\\x81\\x2a\\x95\\xce\\x03\\xa5\\\n\\x5d\\xd5\\x9d\\xc5\\x80\\x46\\xf0\\xd5\\xfb\\xdd\\x42\\x85\\x17\\x74\\xd4\\x63\\\n\\xc4\\x4c\\xc8\\xd1\\x76\\xa3\\xe9\\xf3\\xbd\\x7f\\x32\\x48\\x0b\\x01\\x20\\xca\\\n\\x30\\x0e\\xd7\\x13\\x20\\x28\\x11\\xa0\\xa0\\x6d\\x29\\x2c\\x19\\x0a\\x15\\x42\\\n\\x54\\xe8\\xac\\xda\\x42\\x7a\\x27\\x80\\x55\\x2c\\x02\\x16\\x91\\xd3\\x41\\xc4\\\n\\x18\\xc8\\x0a\\x51\\xc8\\x46\\x87\\x0a\\x2a\\x21\\xe9\\x46\\xb9\\x57\\xa9\\x8e\\\n\\xc8\\x51\\x95\\x0b\\x1e\\x0f\\x48\\x19\\xcc\\x32\\x49\\x67\\xf2\\x66\\xaa\\xa0\\\n\\x55\\x42\\x4b\\x9b\\x26\\x6a\\x36\\xc8\\x2f\\x5e\\x6c\\x16\\x2b\\x13\\x11\\x4e\\\n\\x64\\x46\\x72\\x10\\xf4\\x5a\\xa0\\xb2\\x57\\xc8\\x36\\x01\\xef\\x73\\x24\\x95\\\n\\x22\\x44\\x7c\\xdb\\x80\\x6c\\xc0\\xc3\\x5e\\x08\\xe5\\xa8\\x5b\\x3d\\x2b\\xb2\\\n\\xf0\\xba\\x83\\xe4\\x0b\\xc1\\x45\\x1f\\x69\\x52\\x4d\\x1c\\xf0\\x2b\\x7a\\x51\\\n\\x20\\xfa\\x22\\xf5\\xaa\\x2e\\xd1\\xef\\xf5\\xd0\\xec\\xe4\\x1a\\xa9\\x10\\xeb\\\n\\xc3\\x7d\\xb7\\x19\\xc4\\x96\\x86\\x49\\x01\\xc6\\xc1\\xbc\\x26\\xe0\\x20\\x42\\\n\\xa1\\x8a\\x03\\x25\\xa5\\x33\\x45\\x70\\x6b\\x45\\x88\\xd1\\x92\\x9b\\x73\\x0d\\\n\\x6b\\x61\\xdf\\x6a\\xc5\\xef\\x3d\\x0d\\x3c\\xc6\\x17\\x03\\xe0\\x98\\x94\\x04\\\n\\x7c\\x40\\x34\\x68\\x09\\xb5\\x60\\xc0\\x6e\\x43\\xd0\\xc4\\x20\\x0f\\x83\\x04\\\n\\x55\\x55\\xd9\\x2f\\x50\\xe0\\x7a\\x0c\\x94\\x30\\x07\\x58\\x8d\\xa4\\x99\\x11\\\n\\x24\\xbb\\x2f\\x90\\x07\\x27\\xdb\\xce\\x84\\x29\\x22\\x82\\x54\\x98\\x89\\xd0\\\n\\x8e\\x89\\x79\\x0b\\xeb\\x09\\xb0\\x49\\xcb\\x58\\x22\\x48\\xd0\\x93\\xf5\\x4e\\\n\\x31\\x44\\x6e\\x45\\x4b\\xc0\\x7e\\xd2\\xa8\\x65\\x8b\\xd9\\xd7\\x2e\\x90\\x33\\\n\\x00\\x05\\x86\\x42\\xe4\\x62\\x29\\x45\\x50\\xf4\\x55\\x69\\x45\\x30\\xc7\\x85\\\n\\x9a\\x92\\x42\\x29\\x1a\\x2d\\x02\\xca\\x05\\x62\\x00\\x90\\x24\\x05\\x20\\x21\\\n\\x45\\x81\\x1e\\x05\\x38\\x3b\\x62\\xf7\\x8a\\x48\\x8c\\x45\\x05\\x03\\x3b\\x61\\\n\\x38\\x7b\\xb3\\x68\\x0c\\x16\\x92\\xd1\\x53\\xc0\\xc3\\x01\\x00\\x40\\x30\\x13\\\n\\xe8\\xda\\x41\\x64\\x45\\xa6\\x44\\x87\\x5b\\x16\\xb0\\x7c\\x1c\\x55\\xdd\\x46\\\n\\x3a\\x8c\\x48\\x21\\x4c\\xd5\\xaa\\x2d\\x70\\xb3\\x76\\x40\\x90\\x10\\xa1\\x9a\\\n\\x1c\\xb6\\xd9\\xba\\xb1\\xa1\\xa6\\x60\\xa5\\x55\\x8c\\x0b\\x9a\\x0c\\x98\\x35\\\n\\xd4\\xe8\\xc0\\x40\\xe3\\x21\\x14\\x9e\\xeb\\x01\\x82\\xf0\\x31\\x37\\x2b\\xeb\\\n\\x55\\x84\\x16\\x57\\xd3\\x93\\x8b\\xa2\\x3b\\x3e\\x57\\x2d\\x4d\\x36\\x09\\x77\\\n\\x72\\x17\\x44\\x0e\\xd4\\x8a\\x20\\x40\\xfd\\x4f\\x46\\x2d\\x37\\xac\\x48\\x2a\\\n\\x8a\\xa4\\xd3\\x1c\\x64\\x1a\\x29\\x44\\x0d\\x6e\\x46\\xf0\\xf7\\x6b\\x74\\x0a\\\n\\x56\\x46\\x80\\x42\\xf0\\x10\\x47\\x5d\\x9a\\x03\\x79\\x20\\xc1\\x6c\\x84\\x0a\\\n\\x00\\x4d\\x81\\x94\\x5a\\x01\\x15\\x18\\xda\\xf0\\xc4\\x1e\\x8f\\x25\\xb4\\x45\\\n\\xc4\\x68\\xf2\\x38\\x68\\xb2\\xcc\\x9b\\x03\\x22\\x98\\xa0\\x6c\\x0e\\xda\\xda\\\n\\xe1\\x56\\x14\\x89\\x88\\x64\\x45\\x28\\x05\\x14\\x14\\x4c\\x60\\x0c\\x16\\xcc\\\n\\x10\\x9c\\x03\\xf6\\xd5\\x92\\x85\\x91\\x92\\x18\\x48\\x5e\\x05\\xb9\\x25\\xe4\\\n\\x0d\\x90\\x86\\xac\\x14\\xd3\\x89\\x43\\xc4\\xcb\\x21\\x96\\x83\\x0d\\x18\\x4e\\\n\\x32\\x59\\x49\\x34\\x0c\\x60\\x20\\x44\\xd9\\x82\\x65\\x56\\x45\\x15\\x20\\x0a\\\n\\x24\\x45\\x48\\xb5\\x08\\x5a\\x5f\\x1e\\x18\\x0d\\x2d\\xf0\\x6e\\xc9\\xb1\\xa3\\\n\\x16\\x47\\x29\\x70\\x82\\x28\\xe0\\x79\\xc2\\xc1\\x8d\\x85\\x4f\\xa8\\x66\\xc0\\\n\\x90\\x93\\xaf\\xde\\xe1\\x4f\\x46\\x91\\x05\\x58\\x0c\\xa4\\x38\\x6e\\x8a\\x01\\\n\\x69\\x89\\x8a\\xaf\\xbf\\x89\\x38\\x41\\xe3\\x70\\x58\\x0f\\xd2\\x01\\x56\\x10\\\n\\x39\\x64\\x1f\\x54\\x17\\x1c\\x86\\x09\\x57\\x42\\x86\\x7f\\x40\\x5e\\x46\\xd8\\\n\\x45\\x0f\\x41\\x38\\xa0\\x8c\\x0d\\x65\\x19\\xcb\\x58\\x50\\x22\\x01\\xd4\\xfa\\\n\\xb5\\x16\\x89\\x94\\x85\\xc3\\x3b\\x3c\\x59\\x27\\x2a\\x21\\x61\\x4b\\x60\\x8b\\\n\\x49\\xda\\x54\\xe8\\x42\\x06\\x5b\\x90\\x4a\\x22\\x02\\x4a\\xb8\\x52\\x81\\xb1\\\n\\x88\\x19\\x24\\xa0\\xa8\\xf4\\xb3\\xb8\\xcd\\x2e\\x8e\\x0e\\x45\\x5b\\x11\\x59\\\n\\xc4\\xc1\\x16\\x0b\\x06\\x29\\x2f\\x3e\\xa1\\x29\\x6d\\xc8\\xda\\x21\\xc2\\x97\\\n\\x78\\x75\\x02\\xf0\\x5e\\x6d\\x9e\\x44\\x02\\xcc\\xba\\xec\\x4e\\xc0\\xb1\\xfc\\\n\\x18\\x82\\xcd\\x18\\xe2\\x01\\xca\\x7e\\x3a\\x8f\\x86\\x90\\x13\\x48\\x03\\x83\\\n\\xf4\\x6a\\xb8\\x91\\x0a\\x54\\x55\\xd4\\x20\\x00\\xbb\\x78\\xe5\\x9e\\x01\\x28\\\n\\xa2\\x24\\x0e\\xa7\\x63\\x85\\x23\\xa7\\xaa\\x2e\\x8a\\x48\\x75\\x1d\\x30\\x21\\\n\\xab\\x3a\\x3c\\x5f\\x38\\x10\\x99\\x8a\\xf3\\xde\\x95\\x31\\x73\\x69\\xb1\\x9f\\\n\\x5b\\x52\\xb5\\x40\\xd1\\xaa\\x0d\\x83\\xd8\\xd1\\x31\\x2d\\x44\\x7d\\x11\\x03\\\n\\xa1\\x3a\\x62\\x32\\x5a\\xf3\\x29\\xc8\\x9a\\x6f\\x07\\xde\\x3e\\x5e\\x23\\xa4\\\n\\x37\\x3a\\x26\\x1c\\x28\\x5e\\x86\\x5b\\x43\\x41\\x21\\x97\\x3a\\x31\\x48\\x86\\\n\\x31\\xb2\\x1e\\x70\\xd1\\xa5\\x89\\xb1\\xcd\\x9e\\xe0\\x21\\xc4\\xa1\\xd0\\x18\\\n\\xca\\xbe\\xe8\\x2a\\x40\\x03\\xd7\\x95\\xc1\\x40\\x03\\x40\\x01\\x7c\\x16\\x39\\\n\\xf1\\x34\\xc2\\x19\\x28\\x86\\x28\\x5e\\xa2\\x51\\xc7\\xa1\\x98\\x71\\x7e\\x80\\\n\\x6d\\x8d\\x29\\xc1\\x7e\\xab\\x41\\x2b\\xe0\\x90\\x10\\x52\\x30\\xb8\\x7d\\x6f\\\n\\x32\\xb3\\x30\\xa3\\x8c\\x2f\\xb6\\x5b\\xb4\\xde\\x2a\\xe4\\xca\\x0f\\x5e\\x08\\\n\\xa5\\xe8\\xe3\\xb6\\x48\\x3a\\x02\\x26\\x04\\xbe\\xd7\\x1d\\xd8\\x24\\x81\\x11\\\n\\x55\\x22\\xd2\\x26\\xb5\\xae\\x0d\\xb6\\x28\\x26\\x42\\xb2\\x08\\x3e\\xa3\\x06\\\n\\x1d\\x64\\x11\\xb7\\xc0\\x8e\\x0f\\x0a\\x52\\xda\\xbc\\xce\\xe3\\x36\\x3a\\x78\\\n\\x24\\x91\\x61\\x43\\x9e\\x90\\x24\\x2f\\x28\\xc8\\x70\\x31\\xc2\\x21\\x78\\x70\\\n\\x09\\x22\\xd9\\x65\\x8a\\x52\\xfa\\xf7\\x61\\xc9\\xa1\\xb9\\x88\\x08\\x20\\x05\\\n\\x53\\x3e\\xb2\\xfa\\xb5\\x54\\xb4\\xc5\\x14\\x21\\x9c\\xfa\\x28\\x47\\xdc\\x07\\\n\\xc3\\x24\\xa2\\x81\\x44\\x45\\xfa\\x1d\\x95\\x28\\x66\\x74\\x8c\\xe5\\x02\\xcc\\\n\\x42\\x44\\xa8\\x07\\xed\\x17\\x59\\x1f\\x22\\x5e\\x0d\\x69\\x52\\x92\\xd7\\xe1\\\n\\x61\\x70\\x19\\xa7\\xe5\\x4b\\x3a\\x4d\\x66\\x10\\x85\\xb3\\xc8\\x50\\x1c\\x1d\\\n\\x59\\x2e\\xb6\\x24\\x2b\\x59\\x88\\x10\\x74\\x29\\xf0\\x74\\x6d\\x60\\x0d\\x70\\\n\\x1f\\x35\\x7c\\x4e\\xc3\\x44\\xe1\\xba\\x10\\x31\\x00\\xfa\\x5d\\x0f\\x19\\x12\\\n\\x98\\x02\\xfa\\x9a\\x09\\xb7\\x24\\x3e\\x71\\xd1\\x84\\x27\\x61\\x4d\\x03\\xa6\\\n\\xda\\x86\\x4f\\xb1\\xde\\x4a\\x14\\x10\\x3a\\x8b\\x01\\xaf\\x1b\\x07\\x67\\xc7\\\n\\x64\\xea\\xfa\\x51\\x3b\\xe5\\x40\\xa9\\x70\\xd1\\x54\\x04\\x16\\xeb\\x7d\\x91\\\n\\xa7\\x36\\x69\\x59\\xd3\\x5b\\x28\\x85\\x2c\\xa9\\xf3\\x14\\xfe\\xc8\\x12\\x15\\\n\\xb5\\x68\\x21\\x0c\\x69\\x5e\\xff\\x00\\x47\\x37\\x16\\x57\\xa1\\x55\\xe5\\x47\\\n\\x18\\x92\\x92\\x57\\x14\\xd8\\x80\\xc5\\x5f\\xa1\\xdb\\x22\\x02\\x23\\x54\\x13\\\n\\x63\\x09\\x62\\x33\\xf0\\xf6\\x60\\x43\\x85\\x00\\x21\\x80\\x07\\xac\\x9d\\x1c\\\n\\x2a\\x09\\xd7\\x80\\xac\\x7c\\x54\\x00\\xf2\\xf3\\xaa\\xfe\\xb9\\x3a\\xa8\\xd5\\\n\\xae\\x95\\xe7\\x61\\x2a\\x6f\\x29\\x10\\x4c\\x08\\x39\\x76\\xb5\\x19\\xfa\\xe3\\\n\\xe4\\x00\\x50\\x55\\xb6\\x7e\\xba\\x2e\\x8b\\x73\\x00\\xa0\\x12\\x04\\xab\\x77\\\n\\x6a\\x98\\xa7\\x59\\xb9\\x0d\\xc8\\xa6\\x20\\x55\\xe1\\x5b\\x7c\\x68\\xc7\\xb2\\\n\\x54\\xd7\\xc7\\xc3\\x99\\x24\\x8c\\x93\\x81\\x57\\x61\\xd5\\x92\\x54\\x18\\xa7\\\n\\x50\\x4b\\xd1\\x0a\\x52\\x06\\x92\\x07\\x17\\x3c\\xc7\\x8d\\x58\\xe9\\x2b\\x85\\\n\\x64\\x89\\xf0\\x63\\x1b\\x16\\x7d\\xbd\\x3a\\x0c\\x00\\x22\\x29\\x56\\xd5\\x30\\\n\\x50\\xf0\\x27\\xc8\\x44\\x96\\xa1\\x20\\xf9\\x51\\xda\\xda\\x0c\\x13\\x4a\\x1e\\\n\\x17\\x48\\x0d\\x07\\xcc\\xfa\\x32\\x77\\x8c\\xe6\\x56\\x98\\xd6\\x35\\x84\\x50\\\n\\x12\\x27\\x1e\\xed\\xa1\\x64\\x0a\\xe3\\xd5\\xeb\\xd0\\xf2\\xcc\\x11\\x6a\\xc0\\\n\\xd4\\xe5\\x7a\\x00\\xf4\\x70\\x4e\\xae\\xe1\\x08\\x38\\xd6\\x2f\\x69\\x22\\x96\\\n\\x8d\\x22\\xd1\\x15\\x89\\xd2\\x59\\xec\\xd0\\x99\\xa6\\x0c\\x10\\x08\\x73\\x62\\\n\\x45\\xad\\xc4\\x4c\\x0b\\x04\\xff\\x00\\x4e\\x65\\x08\\x90\\x85\\xb0\\x5a\\xc7\\\n\\xed\\x01\\xca\\x52\\x8e\\x70\\xe3\\x18\\x99\\x4a\\x07\\x09\\xce\\x9b\\x56\\xfd\\\n\\x4a\\x9e\\x70\\x34\\xa4\\x10\\x70\\x93\\x00\\x8b\\xaa\\x56\\x2a\\x1f\\x1e\\x07\\\n\\x14\\xba\\x96\\x5a\\x1c\\x02\\x8c\\xc4\\x24\\x0e\\xbd\\x05\\x6d\\x9b\\xba\\xa9\\\n\\x68\\xd5\\x21\\x72\\xa2\\xca\\x96\\x8a\\x32\\x9c\\x7e\\x81\\x4b\\x24\\xb4\\xa9\\\n\\x0f\\x15\\x69\\x09\\xaa\\x15\\x17\\xa0\\xf3\\xfc\\xc7\\x1a\\x2d\\x06\\x63\\x4c\\\n\\x08\\x55\\x9a\\x76\\xd6\\x0a\\x1a\\x12\\xa5\\x6b\\xbd\\x58\\xae\\x4f\\x28\\x84\\\n\\xd8\\x94\\x87\\xfd\\x05\\x7c\\xb8\\x18\\x03\\x60\\xd8\\x39\\xb0\\x78\\x35\\x74\\\n\\x18\\x9d\\x6f\\x4b\\x7c\\x54\\x30\\x88\\x73\\x39\\x6c\\x1a\\x34\\xef\\x0b\\xa1\\\n\\xe8\\x46\\x87\\xe1\\x3e\\x92\\x41\\x7a\\x6f\\x54\\x0e\\x0d\\x12\\xf8\\x0a\\x36\\\n\\xcc\\x1a\\xf8\\x2d\\x7d\\x95\\x3d\\xa8\\xce\\x2f\\x92\\x70\\xe5\\x4a\\x34\\xb9\\\n\\x66\\x7a\\x0e\\x18\\x25\\x00\\x64\\xc4\\x0a\\x17\\x7e\\x32\\x12\\x2d\\x00\\x2a\\\n\\x96\\x40\\x26\\x8d\\x52\\x53\\x20\\x76\\x41\\x29\\x5a\\xbf\\x3b\\xe0\\x9c\\xc5\\\n\\x5f\\x51\\xaf\\x64\\x44\\x4b\\x04\\x2c\\x03\\x04\\x10\\x1d\\xee\\x8a\\x29\\x18\\\n\\x64\\x3f\\xe3\\x60\\x96\\x1a\\x72\\xd0\\xec\\x60\\x23\\x00\\x6d\\x33\\x67\\x2a\\\n\\xb8\\x41\\xda\\x02\\x64\\x4c\\x5c\\x90\\x15\\x1c\\x4d\\x3d\\xe9\\xa2\\x41\\x0f\\\n\\x64\\x85\\x14\\xac\\x2a\\xe0\\x52\\x09\\x95\\x80\\xa5\\x35\\x02\\xc6\\xbd\\x18\\\n\\xf5\\xab\\xc7\\x20\\xf2\\x6a\\x02\\x1a\\x7c\\x18\\x22\\x42\\xe8\\xf3\\x4c\\x60\\\n\\x14\\x4c\\xa0\\x11\\x9d\\x83\\x8c\\xeb\\x64\\x04\\x69\\x71\\x22\\x20\\xa1\\x0d\\\n\\x86\\x7c\\xc0\\xa4\\x78\\xb2\\x1b\\x29\\xe2\\x48\\x17\\x0a\\xe2\\x9a\\xa2\\x25\\\n\\x8b\\xe2\\x5c\\xf3\\x9e\\x86\\x2e\\x50\\x87\\xc3\\x07\\xfc\\xe3\\x14\\xa8\\x80\\\n\\xe2\\x03\\xa8\\x94\\xa1\\x44\\x0b\\xd3\\x36\\x6d\\xad\\x5d\\xa4\\x50\\xf8\\xcc\\\n\\x21\\x2d\\xc9\\x98\\x00\\x3d\\x4c\\x07\\xa1\\x80\\x17\\xde\\x29\\xe1\\xf0\\xd5\\\n\\xf1\\xf9\\x08\\xa6\\x06\\xbc\\x0c\\x08\\x02\\xd8\\x02\\x48\\x72\\x60\\x37\\x7d\\\n\\xc8\\x71\\xf1\\x8e\\x08\\x80\\x01\\x62\\x4a\\xd3\\xc1\\x48\\x0f\\x03\\x46\\xb4\\\n\\x88\\xb0\\x05\\x4a\\x00\\x46\\x23\\x67\\xc4\\xbd\\x20\\x20\\x15\\x13\\xaa\\x02\\\n\\xc4\\x5c\\x88\\x0a\\x03\\x26\\x9a\\x6a\\x89\\x22\\x65\\x01\\x60\\x37\\x45\\xbe\\\n\\x82\\xe0\\x14\\x05\\x5d\\x15\\x0c\\xe8\\x70\\x08\\x88\\xaf\\x6c\\x15\\x49\\x56\\\n\\x5a\\x18\\x23\\xac\\xf0\\x5e\\xa3\\xf4\\x12\\x0d\\x65\\x10\\x19\\x0a\\x20\\x25\\\n\\xde\\x1d\\xb8\\xd8\\x3d\\x85\\x69\\x85\\xc6\\x0f\\x0d\\x46\\xfd\\x30\\x58\\x2d\\\n\\x8a\\x52\\x11\\xa4\\xd9\\xec\\x80\\x27\\x97\\xc9\\x02\\x55\\xc0\\x09\\xc9\\xfa\\\n\\x41\\x02\\x35\\x37\\x45\\x05\\x99\\xec\\x2e\\xd3\\x41\\xc7\\xc8\\x40\\x71\\x47\\\n\\xc2\\x78\\x25\\xd0\\x86\\x1a\\x81\\x14\\x41\\x85\\xa1\\x50\\x61\\x58\\x38\\x45\\\n\\x03\\x1e\\x6d\\x2d\\xc1\\x7d\\x38\\x88\\x2a\\xa4\\xa0\\x1c\\xce\\x0c\\xad\\x86\\\n\\x1a\\xc9\\x3b\\x23\\xca\\x88\\x81\\x85\\x64\\x80\\x8e\\x34\\xc8\\xe3\\xf3\\x8a\\\n\\x4a\\xd5\\xb8\\x2c\\xe4\\x14\\xa8\\x8c\\x2a\\x40\\x9f\\x6a\\x83\\x1d\\x61\\x3c\\\n\\x8d\\x45\\xa0\\x54\\x05\\x24\\xae\\xff\\x00\\x90\\x5e\\xf4\\x65\\x22\\x09\\x2c\\\n\\x04\\x18\\xc3\\x6e\\x0b\\x66\\x22\\x4c\\x54\\xbc\\x8a\\x20\\x71\\xda\\xdd\\x06\\\n\\xa7\\x11\\xe3\\x25\\xc5\\xc8\\x90\\x9f\\x63\\xaa\\x24\\xc0\\x60\\xa4\\x19\\x94\\\n\\x80\\xc2\\x76\\x20\\x07\\xc2\\xb8\\x22\\x78\\x93\\x2d\\x1b\\x90\\x08\\x49\\x21\\\n\\x3f\\x78\\x5b\\xca\\x46\\x4a\\x55\\x02\\x66\\x9f\\x04\\x48\\xae\\x99\\x28\\xf1\\\n\\x17\\xaf\\x97\\x80\\x7b\\x98\\x35\\x4c\\x12\\xcc\\x88\\x40\\x54\\xd0\\xa4\\x08\\\n\\x02\\xc8\\x08\\xaa\\x19\\xbd\\xe8\\x72\\x2b\\x2e\\x45\\x40\\x30\\x7d\\xb1\\x50\\\n\\xe0\\x06\\xb0\\x97\\x25\\x40\\x10\\x0b\\xd3\\x13\\xd7\\xe9\\xe0\\xbc\\x49\\xc3\\\n\\xa8\\xe2\\xe0\\xb4\\x96\\x00\\x38\\x08\\x93\\x92\\x25\\x39\\x00\\xa9\\x22\\xcb\\\n\\xe1\\x4c\\xf6\\xca\\x88\\x21\\x2e\\x3a\\x64\\x84\\x52\\x94\\xbb\\x6d\\x90\\x0b\\\n\\x35\\x05\\xa4\\x85\\xd2\\x60\\x96\\x76\\x52\\x8a\\x41\\x17\\x7b\\x5f\\x1e\\x9e\\\n\\x90\\x3e\\x55\\x6a\\x09\\x38\\x04\\x40\\xa1\\x8c\\x74\\xe3\\x18\\x80\\x87\\x84\\\n\\xb7\\xc4\\x5c\\x8d\\xa8\\x79\\x45\\x62\\xd0\\x28\\xf5\\x3e\\x96\\x2a\\xab\\x89\\\n\\x4c\\x11\\x01\\x04\\x17\\xc4\\x21\\xc8\\x1f\\xb0\\x00\\x95\\xe3\\x30\\x90\\x98\\\n\\xe7\\x88\\xac\\x81\\x8c\\x9e\\xc0\\x94\\x75\\x58\\x01\\x7e\\x40\\x0a\\x13\\x90\\\n\\x02\\x28\\x00\\x95\\x23\\xca\\xea\\x66\\x30\\x86\\x96\\x48\\x05\\x08\\xb2\\x03\\\n\\x8e\\x1b\\x09\\x81\\x90\\x46\\x54\\x22\\xd8\\x8e\\x27\\x56\\xe9\\x82\\xf4\\x61\\\n\\xd5\\x60\\x1a\\x23\\x9e\\x40\\x67\\xa2\\x2a\\xb4\\x91\\x1f\\x6e\\x36\\xeb\\x53\\\n\\xe2\\xb5\\x81\\x00\\x0d\\x82\\xf8\\xb4\\x22\\x0a\\xa8\\x03\\xe6\\x90\\xd7\\xf0\\\n\\x09\\x82\\xb2\\x68\\x45\\x3a\\x30\\x9a\\x8e\\x08\\xa3\\xfd\\x3a\\xbd\\x04\\x7a\\\n\\xc2\\xd5\\x80\\x57\\xc6\\x09\\xe5\\xe0\\xe4\\x02\\x78\\x95\\x35\\x62\\xe8\\x92\\\n\\x23\\x48\\x1b\\x0c\\xcf\\xd4\\x45\\x92\\x5a\\x94\\xe5\\x7b\\xa0\\x23\\x06\\xe9\\\n\\x10\\x5b\\x61\\xb2\\x44\\xc2\\xb4\\xdd\\x1a\\x42\\x8e\\x85\\x4e\\xf8\\xc2\\xf3\\\n\\x53\\x09\\x90\\x6a\\x73\\xde\\x24\\x01\\x0f\\xa1\\xea\\x28\\x8d\\x40\\x82\\xa3\\\n\\xbf\\xc2\\x7f\\xf6\\xd0\\x93\\x0a\\xa6\\xa4\\x9a\\x5c\\xd0\\x43\\xce\\x8e\\x03\\\n\\x9a\\x01\\x10\\x28\\x82\\x1b\\x06\\x27\\x36\\xba\\xe0\\xd3\\x6a\\x51\\xca\\xe0\\\n\\x0c\\xd3\\x75\\x88\\x68\\x9a\\x85\\x9a\\x94\\x6f\\xb5\\x01\\x20\\x75\\x68\\xb0\\\n\\xe1\\xf3\\x2a\\x82\\xb5\\xb6\\x92\\x98\\x0c\\xd0\\xb3\\x63\\x62\\x88\\xa0\\xd4\\\n\\x17\\xe6\\x31\\xa1\\x29\\xc0\\x62\\x62\\xca\\x2a\\xe9\\x42\\xdd\\x2c\\xc0\\x3d\\\n\\x0b\\x39\\xcb\\x51\\x8e\\x93\\x28\\xc6\\x45\\x21\\x39\\x13\\x77\\xa6\\x95\\x1a\\\n\\x71\\xbd\\xe4\\x41\\xe6\\xa8\\xa2\\x73\\xbe\\x8c\\x4d\\xa1\\xfb\\x28\\x9e\\x84\\\n\\x00\\x64\\xd6\\x62\\xe8\\x3f\\x09\\x69\\x41\\x38\\x90\\xbc\\x1c\\x06\\x2a\\x47\\\n\\x41\\xcd\\x0c\\xb8\\xa5\\xe1\\xeb\\x21\\x01\\x42\\x18\\x62\\x80\\xce\\x1d\\xf3\\\n\\xc9\\xb4\\x0d\\x05\\xa2\\xb3\\x29\\x19\\xcb\\xd9\\x7a\\x47\\xca\\x31\\x88\\x12\\\n\\x53\\x81\\x1b\\x09\\x86\\x00\\x83\\x79\\x00\\x46\\xd2\\x83\\xd0\\xa5\\x4e\\x20\\\n\\xc3\\x4e\\x51\\x44\\x42\\x22\\xc6\\x0a\\x73\\xdd\\xc8\\xc0\\x0a\\x14\\x34\\x75\\\n\\x31\\xe4\\x50\\x15\\x5e\\xf8\\x00\\x2a\\xc0\\xeb\\xc0\\xca\\xd9\\xe7\\x83\\x52\\\n\\x1e\\x2e\\x11\\x5c\\x24\\xc6\\x4a\\x3a\\xb6\\xa3\\x4f\\x30\\x3e\\x8c\\x05\\x89\\\n\\xa5\\x94\\x20\\x59\\x04\\x15\\x19\\x17\\x25\\x98\\x65\\x99\\x49\\x33\\xec\\x3e\\\n\\xed\\x8d\\xcd\\x53\\x1c\\xa1\\x45\\x5e\\x98\\x96\\x02\\x5a\\xcd\\x01\\x55\\x31\\\n\\x6a\\xd7\\x3e\\xb6\\x43\\xd8\\x92\\xf3\\x99\\x77\\x67\\x97\\xc8\\x61\\x83\\x90\\\n\\x2b\\x26\\x91\\x08\\xd8\\xf0\\x13\\x7d\\xed\\x02\\x84\\xc1\\x1f\\x2c\\x37\\x96\\\n\\x70\\x28\\x43\\x07\\x83\\xb8\\x55\\x5b\\x14\\x98\\x48\\x00\\xb5\\x1f\\x08\\x3e\\\n\\x4b\\xc4\\x05\\x44\\x28\\xbc\\x37\\xef\\xc7\\x41\\xa1\\xb7\\xc5\\x65\\x29\\xfc\\\n\\x4a\\x0a\\x32\\x8c\\x90\\xa8\\x6a\\x9e\\x14\\x7c\\xe5\\xca\\x8b\\x38\\xba\\x35\\\n\\x87\\xe6\\x20\\x17\\xae\\x3c\\xd3\\xa0\\x98\\x80\\x2a\\xc9\\x44\\x70\\xcb\\x54\\\n\\x18\\x39\\x16\\x0f\\xd6\\xf2\\x4a\\x69\\x67\\xe5\\x3c\\xc2\\x0a\\xb4\\x27\\x02\\\n\\x62\\x56\\x2e\\x4d\\xa2\\x60\\x12\\xc6\\xd9\\xaa\\x2d\\xec\\xd3\\xde\\x50\\x64\\\n\\x2c\\x63\\x40\\xfd\\x36\\x7f\\x4e\\xe8\\x7e\\x19\\x41\\xe7\\x27\\x09\\x71\\xd3\\\n\\xa0\\xb5\\x6d\\x66\\xe2\\x29\\x01\\xe3\\xf5\\x09\\x50\\x01\\x49\\xb6\\x20\\xd9\\\n\\x00\\x10\\xe5\\x21\\x9e\\x8b\\x03\\xc5\\x5b\\xe0\\x28\\x0a\\x65\\x97\\x80\\x38\\\n\\xd1\\x5b\\x23\\x59\\xf8\\xf3\\x93\\x32\\xb0\\x0e\\x14\\xa1\\xc0\\x7c\\x41\\x6c\\\n\\xae\\x15\\x0b\\xe8\\xd8\\x6e\\x80\\x97\\x37\\x35\\x1f\\x16\\x0c\\x0d\\x92\\x93\\\n\\x68\\xe9\\x05\\x4c\\x8a\\x42\\xa5\\x3a\\x89\\x4b\\xa0\\x11\\x72\\xf0\\xfa\\x69\\\n\\x58\\xaa\\xd6\\x13\\x46\\xbf\\x0a\\x0c\\x93\\x90\\x08\\x62\\xca\\x80\\x20\\x03\\\n\\xf0\\x15\\x4d\\x46\\x33\\x4a\\xb8\\xeb\\x90\\x60\\x69\\x52\\xaa\\xa0\\x17\\x14\\\n\\xd8\\x69\\x52\\x53\\x40\\x0a\\x30\\x83\\xa4\\xb5\\x74\\xc1\\x0a\\xcf\\x8e\\x2c\\\n\\x24\\x0f\\x78\\x8f\\x89\\x60\\xf8\\x07\\xa4\\x4a\\xb5\\xa4\\xc0\\xa6\\x71\\x72\\\n\\xe9\\x43\\xf3\\x45\\x13\\xf5\\x24\\x46\\x00\\x88\\xcd\\x3f\\x82\\x58\\xd0\\xca\\\n\\x32\\x20\\x04\\xc9\\x02\\xa0\\xad\\x52\\xb6\\x60\\x04\\x2f\\x20\\xe0\\xc8\\x0b\\\n\\x43\\x0a\\x34\\xf0\\xef\\x85\\xd9\\x04\\x0c\\xaa\\x34\\x23\\x10\\x45\\xdf\\x78\\\n\\xa2\\x58\\xfd\\x66\\x36\\x10\\x3b\\xae\\x94\\x72\\x48\\x4e\\x41\\xa6\\x62\\xac\\\n\\x40\\xa7\\xf2\\x13\\xae\\x16\\xe4\\x66\\x0d\\x90\\x53\\x01\\x05\\x2f\\xbf\\x21\\\n\\x3e\\xbf\\x01\\x0b\\x84\\xb1\\x4a\\x64\\x56\\xa7\\xac\\x28\\x41\\x20\\x5c\\xc5\\\n\\xce\\x30\\x46\\x64\\x63\\x70\\xd5\\x1c\\xbc\\x00\\x15\\x52\\x83\\x67\\x82\\x1a\\\n\\x28\\x05\\x16\\x82\\x88\\xb2\\xac\\x41\\x15\\x6e\\xaa\\x50\\xbc\\xf7\\x41\\x70\\\n\\xd2\\x89\\xfb\\x7e\\x06\\x98\\x07\\xdc\\xb8\\x46\\xdc\\x46\\x08\\x83\\xfc\\xcf\\\n\\x08\\x79\\x2f\\x89\\xf6\\x94\\x30\\x87\\x58\\xf1\\x4c\\x7b\\xfa\\x22\\x3a\\xbc\\\n\\xc3\\xef\\xdb\\x20\\x67\\x33\\x1a\\x84\\x35\\x55\\xd8\\xa4\\x20\\x0a\\x0c\\xce\\\n\\x7d\\x41\\x56\\x41\\x30\\x9a\\x00\\x8f\\xa3\\x47\\x87\\xa8\\x0d\\x40\\x6c\\x96\\\n\\xa0\\x81\\x51\\xf6\\x75\\xcf\\xca\\xd4\\xdc\\xcb\\x21\\x40\\x1d\\x6b\\x8c\\x41\\\n\\x67\\x70\\xea\\x02\\x22\\x06\\xa0\\x06\\x84\\x87\\xde\\xf7\\xa7\\x01\\x82\\xa9\\\n\\xb5\\x90\\x12\\xeb\\xa3\\x4c\\x44\\x57\\xca\\x07\\xbc\\xb4\\x81\\xe6\\xb4\\xa5\\\n\\x3e\\x67\\xb7\\x1b\\x48\\x2c\\x0e\\x40\\x62\\x26\\x2a\\x1a\\x56\\x88\\x03\\x54\\\n\\x0f\\xb7\\x5a\\xea\\x58\\x17\\xf7\\x30\\xa5\\x8f\\x54\\xb4\\x69\\xd7\\x6f\\xa3\\\n\\xb0\\x93\\x26\\xe0\\xb6\\xb0\\x73\\xfa\\xa5\\x18\\x08\\x0c\\xa4\\x35\\xaa\\x3a\\\n\\x86\\x07\\xc0\\xd4\\xb4\\xba\\x93\\x95\\xb2\\x34\\x2a\\xac\\x20\\xc0\\x8b\\x81\\\n\\x38\\x02\\x85\\x20\\x5c\\x3c\\x88\\x10\\xb6\\x9e\\x42\\x80\\xe8\\x5e\\x03\\xa1\\\n\\x28\\xa9\\x88\\x4b\\x51\\xc4\\x48\\x49\\xc0\\x82\\x24\\x0f\\xb8\\xd9\\x9a\\x8e\\\n\\x23\\x73\\x1b\\x15\\x0d\\x2b\\x54\\x46\\x98\\x87\\x48\\x19\\x22\\x6a\\xc3\\x63\\\n\\x58\\x8d\\x14\\x54\\x9c\\xea\\x92\\x9e\\x98\\x3a\\x27\\xb1\\x6b\\xe9\\x0e\\x06\\\n\\x97\\xd2\\x22\\x65\\x5c\\x32\\x1b\\xec\\x0e\\x18\\x8c\\x2c\\x6a\\xf2\\x00\\x32\\\n\\x98\\x46\\xa3\\xcb\\x04\\x5c\\x98\\x02\\x80\\x2c\\x2a\\x28\\xc4\\xe4\\x4d\\xd0\\\n\\xe3\\x0c\\x1a\\xc8\\x99\\x04\\x2d\\xc1\\xf6\\x12\\x4a\\xcb\\x6c\\x83\\x2e\\x91\\\n\\xe1\\x18\\x8a\\x04\\x25\\xc8\\x5a\\x82\\x34\\x47\\x94\\x30\\x82\\x9a\\x55\\xa4\\\n\\xe5\\x60\\x2a\\x90\\x68\\xce\\xc4\\xb9\\x92\\x42\\x50\\x07\\x12\\x48\\xd4\\x55\\\n\\x8d\\x6b\\x78\\x30\\x26\\xfc\\x26\\xf3\\xd3\\xa0\\xd1\\x68\\x27\\x51\\xe4\\x76\\\n\\x3d\\x18\\x5a\\x97\\x0a\\xb4\\x61\\x84\\x84\\x54\\xae\\x7d\\xb4\\x22\\xc8\\x8a\\\n\\xc1\\x93\\x7e\\xd4\\x45\\xaf\\xab\\x37\\x82\\x5b\\x9e\\xba\\xd3\\x80\\x81\\xa9\\\n\\x20\\x35\\xa7\\xa6\\xa0\\x80\\x23\\xe3\\xcf\\xb9\\xa3\\xa7\\x88\\x2c\\x83\\xa8\\\n\\x77\\xc6\\x41\\x8d\\xb8\\x6c\\xc3\\x0c\\x4b\\x98\\x42\\x7a\\x06\\x7c\\x41\\x57\\\n\\x32\\x60\\x48\\x20\\x18\\x15\\x85\\x62\\x6c\\x89\\x42\\xa4\\x47\\x07\\x94\\x70\\\n\\xed\\x3d\\x69\\x10\\x06\\xf4\\x11\\x5e\\x9c\\x91\\xce\\xf8\\x61\\x4c\\x3e\\xbc\\\n\\xd4\\x3c\\x90\\xe6\\xb2\\xf3\\x20\\xcc\\x8f\\xa6\\xb1\\x6a\\x72\\xf4\\x5f\\x30\\\n\\x98\\x2e\\x2e\\xb2\\x46\\xa2\\x04\\x48\\x5f\\x8f\\x27\\x82\\x83\\x28\\x02\\x12\\\n\\x00\\xa1\\x20\\x85\\x62\\x77\\x9e\\x8c\\x90\\xdb\\x51\\x55\\x90\\xe6\\xec\\xb8\\\n\\x06\\x40\\x52\\x59\\xb1\\x3f\\xb6\\x8f\\x6f\\xa2\\x9d\\x45\\x26\\x45\\x1d\\x3a\\\n\\xbc\\x65\\x8a\\x04\\x3c\\xb6\\xb3\\x42\\x44\\x89\\x36\\xf4\\xb8\\xa3\\x09\\xe2\\\n\\x41\\x99\\x82\\x78\\xfa\\x67\\x42\\x2a\\x11\\xb2\\xef\\x9a\\x88\\x80\\x09\\xe9\\\n\\x35\\xa4\\x40\\x60\\x46\\x16\\x0a\\xc2\\x19\\x05\\x70\\x40\\x43\\x61\\x0a\\xd4\\\n\\x72\\x11\\x58\\xc2\\x05\\x8c\\xcb\\x61\\x29\\x24\\x84\\x40\\xa0\\x9f\\xd3\\x33\\\n\\x58\\xe1\\xa2\\x08\\x01\\x47\\x21\\xe2\\xa4\\x4c\\xaf\\x46\\xbd\\x09\\x01\\x19\\\n\\x42\\xed\\x63\\xee\\x08\\xa0\\x74\\x0a\\xf0\\x64\\xe1\\x4e\\x40\\x03\\x30\\x2a\\\n\\x36\\xdc\\xa0\\x69\\xca\\xae\\x11\\x90\\x6d\\x0c\\x26\\x53\\x82\\x3a\\x9e\\xc1\\\n\\xb7\\x1a\\x4b\\x8d\\x31\\xe4\\xc1\\x79\\x42\\x21\\xee\\xb4\\x01\\x80\\x3a\\x35\\\n\\x52\\x8c\\x45\\x39\\x4a\\x8a\\xc2\\xc4\\x06\\xca\\x82\\x13\\x58\\xf4\\xc1\\xd4\\\n\\xc4\\x90\\xa0\\xc4\\x50\\x9a\\x48\\x12\\x15\\x57\\x1d\\x42\\x68\\x5d\\x6e\\xde\\\n\\x00\\x73\\x17\\xe8\\x11\\x09\\xc5\\xe1\\x82\\x45\\x9a\\x0d\\xbe\\x13\\xda\\xb7\\\n\\xe6\\x80\\x1b\\xa5\\xc0\\x0f\\x1e\\xb8\\x8e\\xbb\\xdd\\x04\\x00\\x62\\x91\\x6a\\\n\\xb2\\xcf\\x44\\x17\\xa7\\xf0\\x04\\xa1\\xb0\\xab\\x20\\x12\\x31\\xb2\\x0a\\x79\\\n\\x9b\\x73\\x92\\x0c\\x00\\x61\\x48\\xe9\\x7b\\x32\\xac\\x45\\x79\\x6a\\xc4\\x43\\\n\\xdd\\x43\\x29\\x90\\x07\\xe0\\xc3\\x6a\\x54\\x1c\\x2a\\x05\\x51\\xc0\\xc2\\x6a\\\n\\x3a\\xca\\xeb\\x51\\x26\\x49\\x08\\xc1\\x90\\x95\\xc1\\x0e\\x7a\\xf4\\x50\\xe2\\\n\\x24\\x00\\x2a\\x0a\\x39\\x48\\x54\\x44\\xa4\\x01\\xdf\\x05\\x33\\x24\\x12\\xbd\\\n\\x00\\x90\\x2f\\x52\\x0c\\xad\\x24\\xc8\\x60\\x2f\\x62\\x18\\xa6\\xf7\\xdd\\xcd\\\n\\x58\\x70\\x8e\\x15\\xa9\\x00\\x76\\x73\\xaa\\xa0\\x48\\x51\\xa3\\x08\\x50\\x0f\\\n\\xd0\\xad\\x05\\x03\\xe2\\x00\\x2a\\xb6\\xba\\x82\\x15\\x05\\x48\\x6a\\x99\\x8c\\\n\\x6b\\x1e\\x34\\x06\\x7a\\x3e\\xcd\\x3b\\x58\\x4c\\x1b\\xc9\\xfd\\xa4\\x8c\\x38\\\n\\xf2\\x66\\xb0\\x91\\x0b\\x23\\xa3\\xa9\\x51\\x68\\xbe\\x88\\x43\\x44\\xb4\\xa7\\\n\\x18\\x62\\x41\\xec\\x12\\xa5\\x37\\x04\\x41\\x70\\xa3\\xec\\x82\\x37\\xd2\\xaf\\\n\\x59\\x15\\x7c\\x11\\xa6\\x27\\xcd\\x81\\x6c\\x40\\x26\\xd1\\xe4\\xe9\\xae\\x10\\\n\\xf2\\x7c\\x0a\\xaa\\x21\\x49\\x79\\x81\\x00\\x09\\xac\\x8c\\x09\\xc6\\xad\\x01\\\n\\x02\\xc0\\x6c\\x1f\\x02\\x8b\\x00\\x43\\x61\\x83\\x51\\xf6\\xab\\xdd\\x88\\xe9\\\n\\x74\\x90\\xa6\\x35\\x6b\\xc8\\x3a\\x8d\\x82\\x04\\x10\\x54\\x14\\x5d\\xc6\\xa4\\\n\\x9e\\x19\\x57\\x06\\x0d\\xe5\\x7b\\x01\\x6e\\x33\\x62\\x4c\\x00\\xd2\\x42\\x1c\\\n\\x2b\\xe6\\x58\\x93\\x00\\x8d\\x3c\\xae\\x8e\\x27\\x25\\xa1\\xd0\\x5e\\x99\\x06\\\n\\x4b\\xc0\\x95\\xcd\\x38\\x4d\\x58\\x8a\\x04\\xb2\\x9a\\xbe\\x9a\\x33\\x36\\xa0\\\n\\x9e\\x99\\x38\\x47\\x1a\\x5c\\x3d\\x9a\\x55\\xed\\x74\\x2e\\x02\\x0c\\xcc\\x60\\\n\\x91\\x08\\x6b\\x7e\\x0a\\x46\\xaa\\x88\\x4f\\xe9\\xc1\\x48\\x04\\x83\\x0b\\x2a\\\n\\x78\\x14\\x16\\x59\\x85\\xf5\\x81\\x84\\x2f\\x1e\\x43\\xce\\xf0\\x39\\x9e\\xd8\\\n\\x42\\xf0\\xa3\\x41\\x25\\x3d\\x0c\\x2f\\x84\\xcc\\x1a\\x55\\x86\\x9a\\x8c\\x53\\\n\\xd1\\x39\\x6a\\xc9\\x81\\x85\\x4f\\xd8\\x86\\xa9\\xf1\\x0a\\xba\\x80\\x90\\xb1\\\n\\x7e\\x26\\x01\\x4d\\xa5\\xe5\\x77\\x14\\x3c\\x50\\x3c\\xb5\\xb5\\xa9\\xf4\\x41\\\n\\xe9\\xd9\\x5c\\x04\\x40\\x04\\x02\\x08\\x97\\x0d\\xea\\x8c\\x98\\x4e\\x90\\x12\\\n\\x21\\x91\\x68\\xa4\\xbc\\xaf\\xc8\\xae\\x05\\x29\\x12\\x21\\x81\\x8c\\x5e\\x02\\\n\\xd6\\x8e\\x24\\xbc\\x26\\x50\\x5d\\x82\\xa1\\x38\\x1b\\xa6\\x37\\xa5\\x44\\x6c\\\n\\x48\\xa9\\x04\\x70\\x82\\x06\\x04\\xd1\\x42\\x75\\x0a\\x49\\x5f\\x04\\xf4\\x49\\\n\\xf7\\x89\\xa6\\x73\\x0d\\x86\\x5a\\x2c\\x55\\x78\\x66\\x24\\x38\\x0f\\xe8\\x61\\\n\\x02\\x20\\x20\\xa1\\x2e\\xea\\xdd\\x99\\xfd\\x06\\x63\\x4f\\x18\\x88\\x16\\x00\\\n\\x70\\x83\\x35\\x70\\xd5\\x8a\\xf1\\x8f\\xe6\\xde\\x9c\\x4f\\xa1\\x60\\xeb\\xd3\\\n\\x27\\x9e\\x2c\\x96\\x27\\xc7\\x73\\xa7\\x20\\x89\\x51\\xb4\\xc5\\x7a\\x2b\\x6a\\\n\\xc6\\xaf\\x02\\x80\\xc9\\x15\\xca\\x7e\\x60\\x0d\\x97\\x23\\x90\\x32\\x38\\x43\\\n\\x00\\xb2\\x02\\x5d\\x35\\x01\\x1a\\x7c\\x8c\\xa2\\x6e\\x52\\x00\\xd1\\x49\\x43\\\n\\xd7\\x78\\xbf\\x2e\\x1b\\x4d\\x3b\\xd6\\xd3\\x17\\x58\\x0d\\xb2\\xa1\\x36\\x75\\\n\\x9f\\x7a\\x00\\x72\\xa9\\xd8\\x6b\\x11\\xf1\\x68\\x95\\xd1\\x7b\\xc4\\xf5\\x90\\\n\\x43\\xd5\\x80\\xa1\\x59\\x12\\x34\\x40\\xec\\x88\\x58\\x49\\x3a\\xc1\\x04\\x38\\\n\\x5f\\x3c\\x32\\xb6\\x5e\\xf0\\x7c\\xd2\\x6f\\x0d\\x80\\xbc\\x6d\\x46\\x07\\x0a\\\n\\x71\\x33\\xdf\\x12\\x43\\x86\\x35\\x6d\\x94\\xec\\x51\\x99\\x20\\x02\\x3a\\x36\\\n\\x97\\x54\\x3d\\x31\\x1e\\x83\\x4a\\x01\\x45\\xc6\\x5a\\x11\\xd6\\x10\\x1e\\x30\\\n\\x45\\xc1\\xfa\\x0e\\xac\\x1b\\x73\\x6a\\x9d\\x18\\x42\\xa5\\x8f\\x8f\\x3e\\xe6\\\n\\xb3\\x4f\\x3c\\x4e\\xdd\\x63\\x0f\\xa9\\x8b\\x11\\x8e\\x22\\xb9\\x96\\xba\\x47\\\n\\x15\\xd1\\x74\\xfe\\x94\\x17\\xa1\\x08\\xe1\\xc5\\x82\\x4b\\xe8\\x78\\x90\\xa8\\\n\\xaf\\x80\\x19\\x48\\xb1\\x0d\\x0d\\x02\\x93\\xc5\\x2c\\x91\\x5c\\x00\\xe6\\xae\\\n\\x00\\xa2\\x89\\x4d\\x31\\xa0\\x21\\xf3\\x4c\\xc6\\x5f\\x98\\xb5\\x43\\xf5\\x0a\\\n\\xcf\\xa1\\x1a\\x19\\x87\\xca\\x81\\x60\\x8d\\xe0\\xf8\\xc4\\x4d\\x84\\xb0\\x61\\\n\\x7c\\x10\\xa7\\x9c\\xa3\\x26\\x37\\x88\\x25\\x9c\\x81\\x08\\x5c\\xf6\\xa7\\xc7\\\n\\xb5\\x55\\x8a\\x21\\x66\\x9c\\x43\\x2d\\xcd\\x80\\x7c\\xa3\\xa3\\x65\\x6e\\x15\\\n\\x48\\x1b\\x1d\\x32\\x69\\xb1\\x1e\\x17\\x81\\xc4\\x9c\\x86\\xe7\\x02\\x58\\x0a\\\n\\x9b\\x5b\\x3c\\x1d\\x9c\\x8c\\x14\\x05\\x18\\xfd\\x34\\x8b\\xc0\\x16\\x47\\x75\\\n\\x08\\x2f\\x46\\xb1\\xa4\\x48\\x2b\\x98\\x20\\xca\\x3c\\x01\\x6c\\xa4\\x82\\xc0\\\n\\x0f\\xbb\\xba\\xf3\\xa9\\x93\\xa0\\x00\\x94\\x34\\x69\\x4e\\xcc\\xe9\\x33\\xd4\\\n\\x04\\xa8\\x1a\\x43\\x83\\xde\\xaa\\x41\\x00\\x19\\xb5\\x8a\\x68\\x61\\xc9\\x5a\\\n\\x2e\\x67\\xfa\\x10\\xaa\\x75\\x41\\x45\\x44\\x14\\x25\\x0f\\x72\\x09\\xea\\x42\\\n\\x7c\\x07\\x24\\x3a\\x49\\x77\\xee\\x02\\x7c\\x93\\xa6\\x8a\\xf3\\x27\\xa9\\x9d\\\n\\x9b\\x28\\xba\\x70\\x58\\xc4\\x12\\x68\\x40\\xb5\\x66\\x8e\\xc1\\x69\\x12\\x0d\\\n\\xb5\\x62\\x66\\xaa\\x23\\x88\\x52\\x08\\x8a\\x30\\x9d\\xb9\\x60\\x7d\\x2c\\x1e\\\n\\x72\\xa8\\xbe\\x4f\\xd6\\x2a\\xdf\\x40\\xdb\\x5a\\x0a\\x04\\xb2\\x78\\x09\\x55\\\n\\x45\\x00\\x85\\xc6\\xc1\\x6d\\x0e\\x0c\\xa0\\x35\\x2f\\x19\\x24\\x82\\xb8\\x81\\\n\\x13\\x82\\x82\\xed\\x5a\\x8a\\x08\\x82\\x5a\\xbc\\x81\\x78\\x4e\\x11\\xa9\\xa8\\\n\\x80\\x29\\x54\\xc6\\x82\\xd9\\xd5\\xb8\\x52\\xa4\\xd0\\xc2\\xa8\\x5c\\x70\\xb3\\\n\\x8a\\x21\\x62\\x50\\x3b\\x6c\\xfa\\x13\\xf5\\x7a\\x78\\xf5\\x03\\xd1\\x03\\xff\\\n\\x00\\x06\\xa9\\xfc\\x24\\x10\\x5c\\x1d\\xd7\\x70\\x0b\\xb6\\xb0\\x10\\xa0\\x90\\\n\\xd9\\x9c\\x44\\x6c\\x6c\\x16\\xdc\\xd4\\xde\\xd7\\x42\\x54\\x43\\x2c\\xf2\\xca\\\n\\x21\\x81\\xd3\\x19\\x47\\xe4\\x76\\x88\\x02\\xa3\\x48\\xc4\\xd1\\x49\\x50\\x7d\\\n\\x06\\x50\\x3f\\x7a\\x90\\x49\\xaf\\xd7\\xe4\\x60\\xbf\\xa7\\x1a\\x60\\x24\\x35\\\n\\x71\\xd5\\x5a\\x46\\x08\\xa0\\x1b\\x44\\x9f\\xee\\x42\\x33\\x61\\x20\\x69\\x14\\\n\\xe2\\x31\\x1a\\x09\\x44\\xad\\x87\\x19\\x0c\\xb1\\x54\\x5e\\x52\\x90\\x18\\x01\\\n\\xb8\\xaf\\x50\\xc2\\xe8\\x98\\xb0\\x08\\x58\\xa0\\x2c\\x55\\x00\\x07\\xeb\\x24\\\n\\x32\\xc5\\x21\\x8a\\x62\\x08\\xbb\\x13\\x83\\xcc\\x28\\x84\\xf6\\xb9\\xa4\\x28\\\n\\xf3\\x34\\xea\\x54\\xe3\\xd0\\x08\\xd5\\xed\\x49\\x2b\\x20\\xe0\\x29\\xdd\\xaa\\\n\\xe7\\x82\\x68\\x09\\x15\\x12\\xf5\\x1c\\xcb\\x38\\x3b\\x30\\x6c\\xbd\\x9d\\x0f\\\n\\x84\\x24\\x2a\\xaa\\x56\\xd4\\x44\\xbe\\x5e\\xa7\\xe0\\xf4\\x6c\\xc0\\x14\\x8a\\\n\\x40\\x6f\\xfa\\x87\\x3c\\xb4\\x88\\x00\\x11\\x82\\xcc\\x1c\\x0f\\x33\\x54\\x74\\\n\\xf2\\xb3\\x46\\x92\\x44\\x83\\x28\\xac\\x78\\xb3\\xae\\x95\\xe0\\x01\\x63\\x4e\\\n\\x7c\\xe0\\xf0\\xc0\\x38\\xb3\\x66\\x02\\x9a\\xa7\\x20\\x4c\\x47\\x4c\\x1a\\x2c\\\n\\x09\\xa0\\x1f\\x27\\x38\\xa3\\x3a\\x01\\x94\\xe7\\xe5\\x2a\\x00\\x01\\x11\\x89\\\n\\x8b\\x94\\x0f\\x88\\x6e\\x22\\xc5\\xcc\\x42\\xa1\\xd9\\x0c\\x27\\xee\\xc5\\x45\\\n\\xe5\\x63\\x52\\x5f\\x97\\x01\\x54\\x37\\x91\\xa0\\x54\\xf0\\xfd\\x60\\x64\\x74\\\n\\xad\\xf0\\x1c\\x99\\x44\\x9b\\x17\\x85\\x13\\x35\\xf6\\x80\\xee\\x4b\\x0a\\x0a\\\n\\x39\\x6b\\x21\\xea\\x40\\x0c\\xe0\\x28\\x15\\x06\\x80\\x4e\\xa2\\x4d\\x41\\x8c\\\n\\xa0\\xa6\\xcf\\x54\\xf6\\xdf\\x75\\x78\\x68\\x54\\x64\\xb4\\xfa\\x0a\\xc7\\xe1\\\n\\x81\\x29\\x25\\x82\\x3c\\xc7\\x3a\\x88\\x7d\\x48\\xd2\\xeb\\x4a\\x92\\x23\\x42\\\n\\x4e\\x21\\x8c\\x6a\\xca\\x18\\x1b\\xaa\\xfe\\xc3\\xe2\\x56\\x2c\\xb0\\x6a\\x44\\\n\\x1f\\x0c\\x18\\x33\\x03\\xd7\\x51\\x83\\xfe\\xf1\\x1d\\x03\\x44\\x88\\x3e\\x88\\\n\\xe9\\xc0\\x82\\x14\\xaa\\x33\\x04\\x82\\xa8\\x03\\xd1\\xa5\\x44\\x04\\x85\\x32\\\n\\xb5\\x08\\x11\\x12\\xdf\\xc8\\x99\\x13\\x42\\x82\\x02\\x34\\xc8\\x48\\x40\\xfe\\\n\\x95\\x11\\xb6\\x48\\x7c\\x8b\\xa8\\x91\\x6a\\x61\\xdc\\xed\\x82\\x5a\\x83\\xa2\\\n\\xdc\\xb9\\x6f\\x45\\x60\\x55\\x03\\x3c\\xb4\\xc0\\x80\\x51\\x53\\x5b\\xd9\\xcc\\\n\\x25\\x13\\x21\\x55\\x67\\xb4\\xb9\\xd8\\xfc\\x28\\x09\\xaf\\xe2\\x90\\x15\\x32\\\n\\x59\\xad\\x17\\x4d\\x17\\xc3\\x4b\\xe8\\x30\\x05\\x25\\x9e\\xb9\\x55\\xac\\xb4\\\n\\x85\\x78\\x68\\x35\\x91\\xdc\\x84\\xff\\x00\\x8a\\xc0\\x04\\x96\\xa8\\xb7\\x08\\\n\\x29\\x1b\\x81\\x68\\x10\\x8c\\xf2\\x10\\xa5\\xb9\\x25\\xbc\\xe2\\x31\\x4d\\x18\\\n\\x18\\xad\\xcc\\x2b\\x84\\x09\\x1c\\xa0\\xea\\x9c\\xb5\\xb4\\x88\\x83\\x2e\\x5c\\\n\\x20\\x40\\x90\\x8a\\x9c\\xd5\\x3c\\xa5\\x40\\x58\\xae\\x62\\x4a\\x78\\xb9\\x69\\\n\\xbc\\xb0\\x28\\x75\\x74\\xcc\\x28\\x85\\x0d\\x24\\x64\\xa2\\xd7\\xd6\\x85\\xf4\\\n\\x05\\x83\\xda\\x83\\x57\\xab\\x2a\\x41\\xb0\\xac\\xa7\\x0f\\x65\\x60\\x39\\x42\\\n\\xe8\\x89\\xb4\\x4d\\x68\\x03\\x7a\\xeb\\x4f\\x94\\x28\\x31\\x6e\\x24\\x4b\\x8a\\\n\\x12\\x73\\x45\\x0b\\xd4\\xea\\x9a\\xe0\\xe3\\xe8\\x11\\x51\\x7b\\x5f\\x7e\\x44\\\n\\x46\\x98\\xb0\\x54\\xb1\\xf5\\x6f\\x1e\\x37\\x03\\x21\\xa9\\x1a\\x78\\x08\\x5b\\\n\\xe8\\x05\\x73\\x23\\xcc\\xc4\\x55\\x64\\x26\\xa2\\xfa\\xde\\x75\\xf9\\xe4\\x6c\\\n\\x32\\x40\\x3e\\x50\\x1a\\x79\\xc6\\x69\\x12\\x68\\x84\\x9b\\xc2\\xf4\\x39\\x0d\\\n\\x22\\x80\\x10\\x45\\x09\\x02\\x84\\x90\\x5b\\x07\\xd1\\x30\\x6d\\xad\\x79\\xec\\\n\\xa2\\x51\\x43\\x0b\\x80\\x99\\xa0\\x40\\x12\\x0a\\x12\\x12\\x30\\xb9\\xee\\x25\\\n\\x45\\x18\\xa2\\x3a\\xd8\\x2c\\x16\\x44\\x16\\xf5\\x38\\x0c\\xa1\\x40\\xb1\\x74\\\n\\xf0\\x34\\x40\\xeb\\x36\\xf5\\x6b\\x29\\xc9\\x24\\xc8\\x00\\x41\\x0f\\x02\\x78\\\n\\xf9\\x28\\xdb\\x04\\x6b\\x4b\\xef\\xbb\\x4f\\x06\\x03\\x56\\x62\\xc1\\x44\\x79\\\n\\x6d\\x10\\x59\\x9b\\x94\\x62\\xa8\\x09\\x50\\xa6\\x7a\\x74\\xff\\x00\\xee\\x46\\\n\\x8e\\xd8\\x62\\x94\\xa0\\x55\\x38\\x37\\xb4\\x48\\x84\\x7e\\x48\\xae\\x0e\\x9f\\\n\\x65\\x15\\x04\\x20\\x32\\xd4\\xb8\\xdc\\x00\\xc0\\xc5\\x08\\xcb\\x31\\x5c\\x08\\\n\\xd9\\x28\\xc8\\x9c\\xd0\\x25\\xef\\xc5\\x80\\x21\\xec\\x6a\\xd8\\x51\\xda\\x5e\\\n\\x08\\x51\\x54\\x98\\x2e\\x11\\xe3\\x3d\\x10\\xc3\\x46\\x02\\x42\\xc9\\x49\\x20\\\n\\x68\\x08\\xb1\\x38\\x53\\x00\\x38\\x98\\xc9\\x7e\\xca\\x2c\\x3c\\x20\\x83\\x43\\\n\\x95\\x30\\x20\\x0e\\x59\\x21\\x93\\x7a\\xc5\\x6b\\x0d\\x46\\x67\\x87\\x28\\x00\\\n\\xe0\\x98\\x69\\xc8\\x8c\\xe4\\x5c\\xa5\\x21\\x42\\x19\\x19\\xd4\\x2a\\x5d\\x57\\\n\\x47\\xb6\\xf3\\x03\\x8d\\x35\\x02\\x81\\x2a\\x17\\x82\\xb6\\xdb\\x5d\\x0b\\xa3\\\n\\x74\\x30\\x90\\xf1\\xe8\\x16\\x95\\xca\\x95\\x60\\x41\\x96\\x5d\\x60\\xf8\\xea\\\n\\xc0\\xaa\\xfe\\x65\\x4d\\x97\\x01\\xac\\x1d\\x62\\x2e\\x28\\x8f\\x3e\\x0a\\xe3\\\n\\xc8\\x34\\x4a\\xb0\\x06\\x28\\xe3\\x17\\x02\\x78\\x2a\\x64\\x70\\x4b\\x25\\x26\\\n\\xf6\\x61\\xba\\xf1\\xa1\\x51\\x2a\\xbe\\x4e\\x0c\\xcd\\x41\\x52\\x1f\\xaa\\x88\\\n\\x1b\\xa4\\xb0\\x44\\x01\\xc4\\x29\\xcb\\xd2\\x6e\\x8e\\x12\\x91\\x47\\x9c\\x54\\\n\\x0e\\xd7\\x28\\x21\\xa5\\x75\\x24\\x24\\x22\\x40\\x13\\x44\\x79\\x19\\xc3\\x04\\\n\\x80\\x85\\x02\\x11\\xe0\\xea\\xc1\\x35\\xca\\xca\\xd2\\xe6\\x67\\x68\\x09\\x8a\\\n\\x2d\\x3c\\x24\\xf2\\x36\\xb1\\x85\\x12\\xa0\\x06\\xa1\\x32\\xc1\\x88\\x50\\x08\\\n\\x42\\xd0\\x9c\\xf2\\x93\\x84\\xb2\\xd0\\x31\\x15\\x2a\\xc2\\xa2\\x2b\\x5c\\xc6\\\n\\xd8\\x18\\x43\\x05\\xc6\\x28\\x49\\x98\\x0e\\x45\\x0b\\x67\\xbf\\x0d\\xb4\\x15\\\n\\x2b\\x54\\xf4\\x72\\x65\\x68\\x29\\xc0\\x12\\x98\\x56\\x17\\xbf\\x07\\xa8\\x05\\\n\\x42\\x8d\\x69\\x4c\\x48\\x14\\x20\\x48\\xcb\\xcb\\x8d\\x2f\\xdb\\xc1\\x06\\x78\\\n\\x9f\\x48\\xe1\\x18\\x03\\x0c\\x10\\x6c\\xb4\\x16\\xb0\\x96\\x44\\xa5\\x83\\x06\\\n\\xf2\\xa0\\x96\\x71\\x14\\xa1\\x3c\\xac\\x23\\x0a\\xd7\\xf2\\xcc\\x41\\x83\\xcb\\\n\\xd4\\x8a\\x90\\xb8\\xd4\\x5a\\x90\\x5b\\xe4\\xe7\\x0e\\x4b\\x3e\\x84\\xb2\\x6f\\\n\\xa0\\x3a\\x21\\x82\\x8c\\x06\\x22\\xa2\\x01\\x88\\x48\\x74\\x33\\x8c\\x32\\x83\\\n\\x01\\x45\\x47\\x96\\xa1\\x87\\xb3\\xd6\\x6d\\x04\\x30\\x89\\x7c\\x0d\\x40\\x14\\\n\\x45\\xd4\\x23\\xc1\\x68\\x40\\x29\\x43\\xa6\\xe1\\x61\\x7d\\x95\\xa1\\xeb\\xd4\\\n\\x34\\x36\\x57\\x20\\x20\\xdb\\x25\\x0c\\x05\\x3c\\xa4\\x58\\xa4\\x62\\xb4\\x3d\\\n\\x74\\x3e\\xce\\x26\\xf0\\xee\\x70\\x06\\xef\\xe9\\xc2\\x9c\\xce\\x9a\\x31\\xce\\\n\\x50\\x06\\x00\\xab\\x86\\xe7\\xdb\\xd4\\xee\\x78\\x96\\x0e\\x39\\xaa\\x26\\x3a\\\n\\x02\\x1c\\x36\\x08\\x92\\x8c\\x36\\xfe\\x04\\x06\\x4a\\x35\\x40\\x04\\x25\\xa1\\\n\\x03\\x71\\x98\\x66\\x48\\xa9\\x2a\\xe7\\x29\\x4a\\x4e\\x6a\\x34\\xf5\\x58\\xa5\\\n\\x9e\\x06\\x2e\\xd8\\x55\\x7a\\x1d\\x85\\xbe\\xf5\\x07\\x18\\xa6\\x8f\\xae\\xd8\\\n\\x86\\xac\\xb4\\x52\\xa4\\x41\\xe8\\xdc\\x8d\\xad\\x37\\xa9\\x69\\x8c\\x55\\x89\\\n\\x3d\\x19\\x20\\x18\\x1c\\xb1\\x65\\x40\\x0a\\x4b\\x74\\x17\\x8c\\x68\\x47\\xf6\\\n\\x16\\xe1\\x05\\xe1\\xe1\\x14\\xd2\\x62\\xeb\\x17\\x48\\xcf\\xda\\xf5\\x4d\\x1a\\\n\\x0a\\xa8\\x81\\x86\\xa9\\x45\\x83\\xdb\\x86\\x4b\\x6b\\x06\\xd7\\x23\\x0c\\x21\\\n\\x1d\\x0a\\x89\\xbf\\xe5\\x46\\x6c\\x52\\xd0\\x20\\xaf\\xa7\\x60\\x14\\x10\\x8b\\\n\\x20\\x39\\x4a\\x93\\x62\\xac\\xb3\\xe1\\x08\\x61\\xdd\\xe0\\x28\\x3a\\x8c\\x6d\\\n\\xe2\\x0c\\xe8\\x54\\x7a\\x0e\\x60\\xf0\\x88\\xe6\\x90\\x0d\\x08\\x23\\x46\\x8c\\\n\\x1e\\x92\\x0a\\x2c\\x9b\\xbe\\x35\\x12\\x51\\x41\\x79\\x54\\x8a\\x63\\xc7\\x8e\\\n\\x74\\x85\\x44\\x65\\x90\\x5c\\x80\\x62\\xd9\\x0a\\x2c\\xd0\\x90\\x8a\\x1c\\x31\\\n\\x44\\x30\\x00\\x5b\\x40\\x90\\xf9\\x58\\x00\\xf6\\x98\\x70\\x4f\\xce\\xfe\\x66\\\n\\x68\\x3c\\xf8\\x6f\\x10\\x29\\x47\\x8f\\xc1\\x34\\x05\\x1b\\x00\\x14\\x54\\x71\\\n\\x0d\\x44\\x90\\xb4\\x72\\x0a\\xd8\\xe2\\xbf\\xd5\\x07\\x40\\x20\\x00\\x00\\x90\\\n\\x81\\xc4\\xe7\\x05\\x06\\x13\\x52\\x65\\x94\\xa7\\xd2\\x6a\\xbe\\x09\\x67\\x90\\\n\\x57\\x91\\x41\\xe0\\x32\\xc4\\x24\\x78\\x93\\x46\\x22\\x65\\x4a\\x98\\x21\\x3d\\\n\\xc1\\x46\\x85\\xa5\\x02\\x89\\x00\\x03\\x96\\xd3\\x17\\x08\\x60\\x15\\x61\\x83\\\n\\x02\\xda\\xc9\\x18\\x30\\x60\\x01\\xe8\\x26\\x95\\x05\\x76\\x07\\x4f\\x54\\xb8\\\n\\x8e\\x09\\x38\\xb6\\x24\\x2f\\x1e\\x15\\x52\\x6b\\x13\\xb6\\x55\\x2a\\xc1\\xcd\\\n\\x04\\x90\\x4e\\x1e\\x05\\xca\\x2a\\x31\\x48\\x29\\xf6\\xac\\x66\\x4a\\xc2\\xfd\\\n\\x92\\x0d\\x07\\xe1\\x35\\x0d\\x61\\xf8\\x51\\x8d\\x2e\\x89\\x61\\x6c\\xd7\\xd5\\\n\\xe1\\x94\\xe7\\x92\\x8f\\xdc\\xd1\\x27\\x57\\x93\\x6c\\x13\\x3d\\x2c\\x0c\\x8c\\\n\\x88\\x93\\x9c\\x5b\\x2e\\xf7\\x98\\x0b\\x83\\x70\\x00\\x90\\xe6\\xa9\\x42\\x90\\\n\\x34\\xfa\\x4f\\x27\\xe4\\x73\\xed\\x90\\x6c\\x4b\\x77\\x28\\xd6\\x69\\x3c\\x5e\\\n\\x13\\xdb\\xa7\\xdf\\xb1\\x89\\x82\\x05\\x28\\x61\\xfb\\x83\\xb6\\xa2\\x8d\\xd6\\\n\\xa8\\xb4\\xa0\\xa4\\xce\\x90\\x01\\xcf\\x95\\x66\\xb5\\x52\\xe8\\x36\\x1c\\x3d\\\n\\x47\\x1d\\x8d\\x29\\x26\\x8c\\xa0\\x01\\x4c\\x0c\\x2a\\x38\\x50\\x50\\xae\\x85\\\n\\x37\\x0b\\x39\\x11\\x68\\x62\\xa0\\x2b\\x2a\\x78\\x46\\xa1\\x52\\x2a\\x1d\\x50\\\n\\xce\\x0b\\x4a\\xa4\\x10\\xb0\\xa9\\xa9\\x38\\xca\\x66\\x93\\xc3\\x0b\\x89\\x48\\\n\\x17\\xc8\\x28\\x5e\\xa1\\x14\\xa8\\x7c\\x86\\xa0\\xf8\\x07\\x32\\x98\\xde\\x25\\\n\\xb2\\xa8\\xa1\\x29\\xbf\\x59\\xcd\\x08\\xd7\\x2c\\xf8\\x75\\x15\\x38\\x2f\\xd2\\\n\\x14\\x30\\x0b\\x12\\x89\\x61\\x45\\x0d\\x80\\x0e\\x93\\x40\\x90\\x45\\x08\\x11\\\n\\x96\\x41\\x40\\xa5\\x70\\x79\\xe5\\xae\\x9b\\x0c\\xc0\\xb4\\x71\\xd7\\xc9\\xc0\\\n\\xa4\\xe3\\x17\\x44\\x12\\xa5\\x37\\x28\\xdb\\xd9\\x3b\\x1d\\x0c\\xa2\\x4d\\x49\\\n\\xe8\\x81\\x14\\x40\\xe0\\x24\\xd2\\x57\\x42\\x1b\\x0c\\x10\\x20\\xa2\\xb3\\xd3\\\n\\x0a\\x9e\\xfb\\x38\\x69\\x65\\xa2\\x4d\\x58\\x82\\x28\\x95\\xd0\\xdb\\xd7\\xd5\\\n\\x82\\x69\\x6f\\xb4\\x41\\xc6\\x65\\x16\\x65\\xea\\x48\\xbf\\xb6\\x79\\x28\\xe8\\\n\\xbc\\xc0\\x13\\x59\\xb7\\x40\\x35\\x00\\x69\\x38\\x15\\x3e\\xd2\\x26\\xfd\\x73\\\n\\x09\\x8a\\x5b\\x77\\x1d\\x18\\x97\\x04\\x2b\\x57\\x96\\x89\\x25\\xa8\\x1b\\xfe\\\n\\x90\\x20\\x51\\x03\\xc0\\xd1\\x28\\x38\\x2a\\x18\\xc8\\x1f\\x84\\x8e\\x57\\xf7\\\n\\xc7\\x17\\x69\\x42\\x8c\\x3a\\x55\\x06\\xfa\\xb6\\x00\\x0b\\x74\\x46\\x6a\\x59\\\n\\x42\\x91\\x83\\x48\\x0a\\x80\\x42\\x2d\\xa2\\x21\\x57\\x10\\x0e\\x20\\x0f\\xd0\\\n\\x3d\\x3c\\x9a\\x32\\xaa\\xca\\xa8\\x2a\\x8d\\x09\\x02\\x7a\\xbe\\x46\\xcf\\xb9\\\n\\x00\\x51\\xf8\\x17\\x99\\x61\\xe7\\xa9\\xa9\\x2b\\x56\\x51\\x53\\xee\\x2a\\xf5\\\n\\x14\\xc7\\x2e\\x7c\\xf6\\xa9\\xd0\\xce\\x6e\\x98\\x48\\xe4\\x95\\x48\\x3e\\x96\\\n\\x8d\\x51\\x5f\\x8d\\xb7\\x80\\x08\\x18\\x92\\x01\\x4a\\x15\\x5e\\x2b\\xf5\\x05\\\n\\x58\\x21\\xf6\\x52\\xaa\\xd4\\x34\\x1f\\x68\\x2c\\xaa\\x7e\\xa1\\x1c\\x0c\\x3e\\\n\\x23\\x7a\\x87\\xc9\\x78\\x8a\\x45\\x09\\x10\\x38\\xff\\x00\\x30\\x12\\x4f\\x92\\\n\\x01\\x94\\xa1\\xd7\\x07\\x47\\xe2\\x20\\x28\\x2b\\x8a\\xf4\\x88\\x8a\\xad\\x20\\\n\\x5c\\xa7\\x99\\x83\\x3b\\xc6\\x3c\\x4e\\x8c\\x67\\x18\\x66\\x45\\x7c\\xc0\\x8a\\\n\\x57\\xcf\\xb2\\xc3\\xa9\\x96\\x90\\x92\\x92\\xd3\\x94\\x54\\x80\\x48\\x75\\xb9\\\n\\x10\\x50\\x95\\x6d\\x55\\xa7\\x2b\\x0b\\xbe\\x7d\\x56\\x81\\xf2\\x87\\xe0\\x84\\\n\\x0a\\x20\\x42\\x44\\x67\\x2f\\xb9\\xa0\\x8c\\x70\\x6a\\x99\\x09\\xda\\x1a\\xf9\\\n\\x02\\x08\\xf8\\x54\\x89\\xf6\\x96\\x25\\x8e\\x19\\xb9\\x8e\\x95\\x7a\\xbb\\xde\\\n\\xb0\\x24\\x4a\\xd0\\x3e\\x10\\xfc\\x28\\x08\\xd1\\x60\\xb6\\x22\\x74\\xb0\\x0a\\\n\\x12\\x1f\\x04\\x24\\xd5\\x70\\xa3\\x26\\x2b\\x25\\x56\\x41\\x5c\\x48\\x9b\\x8b\\\n\\x51\\x18\\x70\\x53\\x00\\x0c\\x25\\x08\\xcc\\xec\\x58\\xdd\\xe0\\x80\\x0d\\x89\\\n\\xc2\\x4f\\xc4\\x81\\x06\\xba\\x10\\x72\\x01\\xdd\\xda\\xb2\\x90\\x2d\\xa1\\xc2\\\n\\x59\\x26\\x65\\xa6\\x46\\x01\\xa1\\x0d\\x31\\x15\\xc9\\x31\\xc6\\x00\\x68\\xb4\\\n\\x49\\x2f\\x18\\xde\\x14\\x08\\xba\\xa2\\xd8\\x8c\\xc7\\x1c\\x4b\\xc0\\x4c\\x06\\\n\\x21\\x44\\x2a\\xa2\\x8d\\x12\\x53\\xe9\\xe0\\x16\\x43\\xc5\\x18\\xc9\\x29\\x91\\\n\\xea\\x11\\x81\\x37\\xd0\\x2b\\x64\\xc1\\x44\\xa0\\xd4\\x42\\x23\\x5a\\xae\\x20\\\n\\xd2\\x81\\x86\\x31\\x7a\\x21\\x41\\x0c\\x83\\xb6\\x02\\x44\\x34\\xf5\\x89\\x87\\\n\\x64\\x50\\x22\\xc2\\x2b\\x49\\x35\\x79\\x5c\\xd7\\x10\\x92\\xd4\\xa0\\xdb\\x2b\\\n\\x21\\x50\\x41\\x35\\xbc\\x84\\x24\\xcd\\xbe\\xc8\\x25\\x3d\\x0b\\x48\\x72\\x9d\\\n\\x2c\\x0b\\x34\\x2e\\x84\\x02\\x10\\x8f\\xc7\\x2d\\x22\\x2c\\x2e\\x1d\\x74\\xe1\\\n\\x46\\x00\\xe2\\xa0\\x4a\\x6b\\xac\\xe1\\xb9\\x27\\x8d\\x77\\x06\\x90\\x02\\x4d\\\n\\x22\\xa6\\xb6\\x13\\x18\\x3c\\xee\\xa1\\x2e\\x15\\x30\\x80\\x86\\x49\\x0f\\x39\\\n\\x6a\\x5c\\x04\\x9a\\xd1\\x97\\xa0\\xca\\x29\\x3c\\x65\\x76\\xef\\x1e\\x83\\xef\\\n\\xa0\\x1c\\x06\\x80\\xbd\\x20\\x39\\xeb\\xf3\\x42\\x00\\xe5\\x40\\x8b\\x66\\xc0\\\n\\xaf\\x37\\xe2\\x14\\x35\\x86\\xa3\\x43\\x8f\\x8f\\x43\\xf4\\xaa\\x40\\x25\\x10\\\n\\x34\\x6e\\x38\\x22\\x02\\x30\\xc0\\xb2\\xaf\\x83\\xd9\\xae\\xaa\\xfc\\x8b\\x14\\\n\\x6e\\xa2\\xa8\\xad\\x01\\x40\\x82\\xbb\\x64\\x05\\xa2\\xd4\\x22\\xa6\\x82\\xae\\\n\\x58\\x25\\xec\\xfb\\x14\\x0a\\x94\\x0a\\x13\\x6e\\x91\\x7c\\xb1\\xbd\\x4d\\x08\\\n\\x04\\x63\\x5b\\x59\\x42\\x30\\xb7\\x00\\xc6\\xd6\\x1b\\x08\\x2f\\x6a\\x09\\x3d\\\n\\x3e\\x3c\\x3f\\x12\\x26\\x1e\\xe4\\x2a\\x00\\xf7\\x91\\x5b\\x35\\x90\\xab\\xe2\\\n\\x93\\xf6\\x44\\x2a\\xad\\x75\\xa4\\x56\\xb5\\xe7\\x3a\\xbe\\xb0\\xed\\x61\\xf4\\\n\\x88\\xd8\\xd5\\xe8\\x8e\\xd6\\xa1\\xac\\x9f\\x11\\xd4\\x82\\x03\\xcb\\xa3\\x5b\\\n\\xe9\\xe0\\xdd\\xcd\\x58\\x3c\\x35\\xa1\\xf6\\x55\\x1f\\xaf\\x32\\xd4\\xa5\\x7a\\\n\\xc8\\x7e\\xc9\\x5e\\x8c\\x1b\\x34\\x89\\x58\\xe8\\x0d\\x9a\\xca\\x8d\\x0b\\xd5\\\n\\x51\\xd6\\xae\\x12\\x60\\x04\\x75\\x23\\xca\\x34\\xe9\\xb1\\x9a\\x74\\x15\\x58\\\n\\x60\\x4e\\xc1\\x31\\x28\\xbf\\x5c\\x8f\\xc7\\x62\\x20\\xa2\\xbc\\x89\\x82\\x28\\\n\\x21\\xe8\\x61\\x88\\x19\\x69\\x52\\x39\\xd1\\x78\\x6d\\xa6\\x3b\\x3a\\xd9\\xa4\\\n\\x00\\xa0\\x60\\x21\\xd9\\x03\\xe4\\xa4\\x08\\x33\\x50\\xb6\\x3a\\x29\\x93\\xab\\\n\\x33\\x52\\x0a\\x33\\x00\\x09\\x97\\x00\\x93\\x64\\xdb\\x4e\\x81\\x94\\x06\\xd0\\\n\\x55\\x78\\xc8\\x6f\\x50\\x5c\\x4f\\x23\\x08\\x2a\\x0e\\x84\\xb3\\x60\\xbd\\x0c\\\n\\x17\\x0d\\x55\\x84\\x8a\\x55\\x79\\xdf\\x36\\x9c\\x54\\x06\\x0d\\x20\\x1c\\x0a\\\n\\x34\\x05\\x45\\x2a\\xa4\\x20\\x48\\x01\\x3b\\xf4\\x0e\\x5b\\x43\\xaf\\x4c\\xd8\\\n\\x82\\x2f\\x28\\xc9\\x8e\\x36\\x56\\xdd\\x7d\\x66\\x85\\xa6\\x93\\x30\\xd1\\x01\\\n\\x67\\xb1\\x5e\\x50\\x09\\x19\\xc6\\x7e\\x71\\xff\\x00\\x2b\\x96\\x45\\x19\\x9d\\\n\\x03\\xc8\\xcd\\xbd\\x40\\x7e\\xa0\\xaa\\x78\\xb9\\x11\\xbd\\x0d\\x75\\xfe\\xd8\\\n\\x61\\x0b\\x50\\x5e\\x26\\x54\\x37\\xb9\\x57\\x48\\x82\\x03\\xa3\\xe7\\xb8\\x50\\\n\\xf5\\x38\\x31\\xb7\\x4c\\x01\\x01\\xbc\\xd2\\xcb\\x66\\xab\\x2d\\x49\\x00\\xf2\\\n\\x6c\\xad\\xc1\\x0a\\x63\\x34\\xa7\\x92\\x9c\\xfb\\x52\\xdd\\x87\\x23\\x85\\x8b\\\n\\x0e\\x00\\x1f\\xc0\\x02\\xb9\\x9d\\x11\\xc4\\x95\\xeb\\xd6\\x11\\x68\\xd6\\xf6\\\n\\x10\\x87\\x01\\xd1\\x08\\x9b\\x37\\xc8\\x63\\xcb\\x95\\xa8\\x23\\x2a\\x4e\\xbe\\\n\\x1e\\x42\\x9a\\x04\\x49\\xf0\\x9d\\x01\\xb8\\x63\\xae\\x84\\x5b\\x8d\\x46\\x85\\\n\\x72\\x11\\xb1\\x0e\\x78\\xc4\\xa7\\x32\\xc4\\xc1\\xf1\\x61\\x5a\\x49\\x0f\\x77\\\n\\x11\\xa0\\x30\\x81\\x95\\x34\\xb1\\x50\\xee\\x2c\\x57\\xd0\\x02\\xf0\\xb9\\xf2\\\n\\x23\\xe5\\x8a\\x86\\x46\\x40\\x18\\x5e\\xbc\\x21\\xb3\\x22\\x1c\\x00\\x08\\x5a\\\n\\xbe\\x04\\x3d\\x96\\xcc\\xc8\\xfb\\x14\\x93\\x41\\xfe\\xbd\\x00\\x84\\x4a\\xaa\\\n\\xa5\\x04\\x6a\\xfa\\x34\\x51\\xb3\\xad\\xc4\\x31\\x05\\x0f\\x2a\\x4b\\x02\\x68\\\n\\x22\\x00\\x93\\x28\\x99\\x8a\\xa0\\x88\\x2d\\x20\\x5f\\x61\\xc3\\x0c\\x41\\x74\\\n\\x33\\x31\\x08\\x52\\x81\\x56\\x02\\x02\\x46\\x2b\\x22\\xc1\\x69\\x86\\x8c\\xa5\\\n\\x05\\x51\\x41\\x5c\\xc6\\x06\\x82\\xa5\\x73\\xd2\\x10\\x10\\x5a\\x0d\\x12\\xdb\\\n\\x01\\xb3\\xf1\\x05\\x8f\\x6e\\x0b\\x0d\\x21\\x76\\xf4\\xfc\\x99\\x1a\\xa1\\x78\\\n\\x16\\x20\\x40\\x33\\xa6\\x10\\x80\\x8b\\xfe\\xda\\x5a\\x20\\x70\\x42\\x8a\\x00\\\n\\xc0\\x94\\x27\\x93\\x40\\xba\\x89\\x88\\x95\\xa1\\x55\\x21\\xce\\x86\\x04\\xdb\\\n\\x28\\x3a\\x40\\xee\\x1e\\x05\\x16\\x6c\\x43\\x02\\x50\\x57\\x57\\x5b\\xed\\x93\\\n\\x51\\x20\\x31\\x24\\xa2\\x58\\x86\\x80\\xa0\\x46\\x24\\x7f\\x3c\\x55\\x3d\\xa0\\\n\\x04\\xee\\xc0\\xbe\\x62\\x32\\x4c\\xfb\\xf4\\x35\\x2d\\xad\\xba\\xd1\\x5e\\xa0\\\n\\x22\\x2e\\xd7\\xf6\\xdd\\x4c\\xbc\\xc1\\x32\\xe8\\x04\\x4b\\xf0\\x3c\\x62\\x90\\\n\\x1e\\x8e\\xa1\\x67\\x03\\xb4\\x9e\\x79\\x38\\xb5\\xb0\\x3c\\x79\\x61\\x80\\x9b\\\n\\x70\\xba\\xc9\\x0e\\x79\\x81\\xcc\\x97\\xc8\\x44\\x82\\x8f\\x97\\xe8\\x6a\\x20\\\n\\x61\\x85\\x18\\x17\\xa1\\xdc\\xac\\x10\\xeb\\x42\\x1a\\xc6\\x92\\x08\\x71\\x71\\\n\\x90\\x50\\x62\\x87\\x52\\x84\\x4d\\xc9\\x9c\\x52\\x27\\x05\\xa5\\x19\\x4e\\x35\\\n\\x6b\\x89\\xe8\\xc6\\x84\\x02\\x0a\\x50\\x5c\\x1f\\x0b\\xa4\\x97\\xf1\\xd0\\x23\\\n\\xd4\\x43\\x42\\x82\\x80\\x65\\xc8\\x4a\\xf5\\x31\\x8a\\xd6\\xb9\\x6d\\xf4\\x83\\\n\\xaa\\x0b\\x82\\x4a\\x72\\x89\\x30\\xec\\x89\\xb7\\x65\\x33\\xd1\\x09\\xe0\\x9b\\\n\\xa7\\xa4\\x57\\x3b\\xe7\\xe1\\xa3\\x12\\x60\\x63\\x23\\x7d\\xf1\\x6f\\x65\\x6b\\\n\\x52\\xec\\xd9\\x39\\x02\\xea\\x04\\x72\\x02\\x11\\x70\\x0c\\x93\\x06\\xc2\\x03\\\n\\x86\\xd2\\x21\\x1f\\x47\\xb5\\x99\\xf5\\xda\\x81\\xaf\\x86\\x90\\x77\\x46\\xd8\\\n\\x3f\\x69\\xf4\\x3a\\x3e\\x29\\x40\\xfa\\xa9\\x48\\xc1\\x8a\\x47\\xa4\\xa1\\xee\\\n\\xa0\\xed\\x77\\xd2\\x4b\\xbd\\x51\\xda\\x1c\\xa3\\x4b\\xc5\\xd1\\xbb\\x29\\x45\\\n\\x41\\x77\\x8b\\xc3\\x4e\\x95\\x77\\xca\\x00\\x1c\\x3c\\x0b\\x53\\xa9\\xec\\xaa\\\n\\x7c\\x0b\\x02\\x6a\\xa4\\x4b\\x29\\x1f\\x16\\x91\\x7a\\xc5\\xa2\\x44\\x71\\x82\\\n\\xf3\\x8a\\x07\\xa5\\x0c\\xc3\\x95\\xb2\\x54\\xef\\x9a\\xc2\\xb2\\xa2\\x82\\x00\\\n\\xf4\\x99\\x29\\xe3\\xd9\\x47\\xcc\\xe8\\xd2\\x56\\x86\\x85\\x87\\x0d\\x99\\xce\\\n\\x00\\xb5\\x83\\x43\\x24\\x8c\\x5a\\x78\\x7f\\x72\\x83\\xa0\\x7c\\x73\\x4f\\x50\\\n\\x2b\\xc5\\x67\\x78\\xaa\\xb9\\x0a\\x42\\xf5\\xd3\\x1e\\x0b\\xe6\\x74\\x14\\xea\\\n\\xc3\\xa1\\x48\\x50\\x87\\x2e\\x00\\x62\\xa1\\x74\\x80\\xf1\\x49\\x25\\x85\\x3d\\\n\\xe0\\x29\\xf2\\xd3\\xc3\\xa3\\xc3\\x7a\\x0e\\x3c\\x65\\x44\\x18\\x6a\\xeb\\x8f\\\n\\x6a\\x92\\x2d\\x51\\x9e\\x8c\\xfe\\xd4\\x20\\x42\\x67\\x49\\x1a\\xce\\xf6\\x5c\\\n\\xad\\x2e\\x33\\x4a\\x40\\x4a\\xc7\\x65\\x54\\x65\\x6f\\x07\\x13\\xcd\\x20\\x6d\\\n\\x15\\xa8\\x6d\\x29\\x38\\xde\\x6b\\x81\\x73\\xc5\\x9d\\x41\\x20\\x90\\xa2\\xf9\\\n\\x6e\\x24\\x99\\x46\\xbc\\xb4\\x9a\\x2f\\x54\\x35\\x7d\\xfe\\xb1\\x0f\\x9e\\x22\\\n\\x4f\\xb5\\x2a\\x14\\x5e\\x75\\x6b\\xeb\\xca\\xe3\\x59\\x27\\xc1\\x25\\x05\\xa7\\\n\\x00\\x82\\x81\\x5c\\x53\\xcd\\x86\\xef\\x94\\x07\\x32\\x45\\xc2\\x34\\x74\\xc2\\\n\\x6a\\x1b\\xe3\\xb9\\xe0\\x79\\x69\\x1b\\xc1\\xb7\\x65\\x04\\xa1\\x06\\xe9\\x89\\\n\\xe7\\xd6\\x91\\x7a\\xae\\x58\\x06\\x7e\\x9b\\x14\\x47\\xb8\\x71\\x49\\xd6\\x95\\\n\\x87\\x14\\x05\\xf0\\x4d\\x05\\xd4\\xce\\x11\\x31\\xd1\\xaa\\x07\\xb7\\x91\\x9b\\\n\\xe0\\x92\\x41\\x1a\\x23\\x32\\xd1\\xb8\\x10\\x52\\xb9\\xfe\\xa6\\x71\\xb8\\xb5\\\n\\xc8\\x9f\\xdd\\x07\\x03\\x8e\\x5e\\x17\\x05\\xd4\\x5c\\xac\\xd2\\x81\\x05\\x2e\\\n\\xc9\\x78\\x2e\\x77\\x2b\\xc8\\xc8\\x84\\x7a\\x49\\x8a\\xd9\\x33\\x3a\\x0e\\xf2\\\n\\xf9\\x51\\xe8\\x04\\x65\\x0c\\xc4\\x2e\\x9e\\xc2\\x27\\xa3\\x6f\\x68\\x46\\x41\\\n\\xd9\\x8a\\xd2\\xd4\\x16\\x80\\x08\\x83\\x6f\\x7f\\x20\\x98\\xc5\\xa0\\x82\\x91\\\n\\xde\\xe4\\x9c\\x6a\\x11\\x85\\xcc\\x34\\xa9\\xd4\\x97\\x3d\\xf9\\x8a\\x06\\x66\\\n\\xc1\\x8d\\x22\\x14\\x43\\x35\\x6d\\x65\\x58\\xae\\x25\\x0b\\x50\\x70\\x6c\\x56\\\n\\x39\\xa5\\xc7\\x02\\x26\\x4c\\x55\\xa0\\xab\\x8d\\xce\\xd4\\xf0\\x02\\xaa\\x32\\\n\\x2d\\x79\\x4e\\x3b\\x66\\xd1\\x5a\\x60\\xb0\\xd0\\x66\\x89\\xcd\\x30\\x14\\x88\\\n\\x44\\xbc\\xb1\\x80\\x0f\\x77\\x10\\x52\\x32\\x64\\x7b\\x80\\x02\\x67\\x87\\x61\\\n\\xb3\\xb2\\x23\\x5a\\x0e\\x07\\x43\\x36\\x83\\x80\\x88\\xd1\\x00\\x98\\xa4\\x1c\\\n\\xa3\\xa6\\x55\\x60\\x15\\x06\\x02\\x6e\\x94\\x9c\\xa1\\xc4\\x0c\\x06\\x70\\x54\\\n\\x78\\xd6\\x0b\\x1b\\xdf\\x2a\\x62\\xb2\\xc1\\x94\\x4a\\x1e\\x78\\x62\\xa6\\x18\\\n\\xb7\\x20\\x34\\x02\\x8c\\x20\\x54\\xf7\\x24\\x24\\x10\\x70\\x3d\\x26\\xb0\\xa2\\\n\\x96\\x5a\\x98\\xe4\\x58\\x48\\x12\\x9b\\x10\\xb1\\x30\\x15\\x08\\x67\\x42\\xf0\\\n\\xde\\x95\\xa5\\x98\\xe5\\x96\\x7e\\x30\\x4b\\x8d\\x8a\\x50\\xa8\\x8e\\x1d\\x0e\\\n\\x12\\xdb\\xe3\\x34\\x72\\x43\\xb7\\xeb\\x83\\xa0\\x17\\x4b\\x5f\\xa2\\xf4\\xbc\\\n\\x73\\x50\\x4b\\xa2\\xdb\\x17\\x36\\x63\\x40\\x97\\xa6\\xbe\\x30\\x5a\\x86\\x6c\\\n\\x09\\x84\\x6c\\xf5\\x25\\xac\\x9a\\x90\\x24\\xaa\\x00\\x38\\x16\\x53\\x92\\x9a\\\n\\x44\\xca\\xc9\\x52\\x09\\x06\\x6b\\x24\\x79\\x8c\\x00\\x92\\x1a\\xc2\\x72\\x0c\\\n\\x88\\x89\\x23\\x53\\xeb\\x88\\xde\\x01\\xdd\\x34\\x44\\xf1\\xc9\\xf1\\xb4\\x08\\\n\\xb8\\x60\\x6c\\x84\\x9c\\x20\\x12\\x2f\\x85\\x43\\xd0\\x11\\x29\\x5a\\x31\\xba\\\n\\xf4\\x31\\xaa\\xbd\\x64\\xc9\\x6b\\xa3\\x11\\xea\\x91\\x11\\xaf\\xa9\\x1d\\xce\\\n\\x01\\x58\\x41\\x7b\\x10\\xd1\\x21\\xb1\\x20\\x0b\\x08\\xd2\\x18\\x40\\xbd\\xa1\\\n\\x32\\xa2\\xa6\\x8c\\x16\\x8a\\x8d\\x23\\x2b\\xc0\\x50\\x78\\x58\\xe8\\xd7\\xfc\\\n\\x8e\\x2a\\xb7\\x0c\\x6b\\xad\\x62\\x4d\\xcb\\x75\\x80\\xce\\x84\\xe0\\x1c\\x26\\\n\\x60\\xae\\xca\\x17\\x06\\x0d\\x53\\x63\\x6a\\x85\\x34\\xd0\\xaf\\x90\\x42\\x57\\\n\\xa7\\x86\\xc8\\xcf\\xea\\x24\\x1d\\xc2\\x81\\x43\\xe3\\xe1\\x09\\xd5\\x7a\\xa9\\\n\\xba\\x49\\xca\\xb9\\x5c\\x2b\\xc2\\xb6\\x53\\xe5\\xaa\\x2c\\x7f\\x10\\x7d\\x4f\\\n\\xa5\\x69\\x1e\\x4f\\x3d\\xe0\\xc4\\x82\\x09\\x52\\xd2\\xcc\\x2b\\x51\\x83\\x81\\\n\\x3d\\xb7\\x05\\x71\\x03\\x41\\x16\\x1a\\xdb\\x01\\x00\\xf0\\x04\\xf7\\x8a\\x0e\\\n\\xb1\\x4c\\xbe\\x54\\x0f\\x0b\\x51\\xd7\\xa8\\x7c\\x39\\xe4\\x0e\\xc7\\x0b\\x08\\\n\\xab\\x2a\\x80\\x6c\\x34\\xcc\\x4a\\x72\\xdd\\x21\\xd2\\xc0\\xb1\\x2a\\xd4\\x0a\\\n\\x6d\\xf0\\x22\\x64\\xe4\\xf0\\x28\\x48\\xf1\\x14\\x2d\\xf8\\xa2\\x1c\\xfa\\xc4\\\n\\xc7\\x80\\xb6\\x32\\xc5\\xd5\\xc1\\xc1\\x05\\x4f\\x82\\x62\\xa6\\xca\\x97\\x11\\\n\\x8a\\xc8\\x1c\\x82\\xe1\\x7d\\x01\\xd6\\xf0\\x1f\\x9f\\xfe\\x93\\xfe\\x37\\xe0\\\n\\x54\\x39\\x3b\\x90\\x50\\x8b\\xbb\\x85\\xa4\\xb0\\x0f\\x08\\x39\\x16\\xa9\\x15\\\n\\x01\\x05\\x1c\\x1a\\xe0\\xc5\\xcf\\xdb\\x92\\x07\\x19\\x68\\x6a\\xbd\\x4a\\x75\\\n\\x6d\\x5b\\xd5\\xf5\\xe4\\x70\\x72\\xa1\\x81\\x1c\\x11\\xb8\\x6a\\xa1\\x09\\x4d\\\n\\x17\\x8d\\x60\\x0d\\x30\\xa1\\x5b\\x00\\xa2\\xc2\\xd1\\xe9\\xe8\\x12\\x12\\xdd\\\n\\xe5\\xd4\\x9e\\xd8\\x78\\x39\\x54\\xb6\\x9d\\x6b\\x67\\x31\\x5e\\xa3\\x9d\\x7c\\\n\\xd3\\x98\\x3a\\x63\\x55\\xfd\\xc1\\xe3\\x6d\\xa7\\x05\\x9b\\xea\\x30\\x90\\x3a\\\n\\xea\\xbc\\x00\\x57\\xc4\\x71\\xaf\\x0f\\x3c\\xd7\\x42\\xa2\\xb2\\x88\\x15\\xd4\\\n\\xa9\\x45\\x0e\\x42\\x4a\\x39\\x6f\\x87\\xc2\\xcc\\x3e\\x84\\xe4\\xe4\\x00\\x05\\\n\\x9b\\x20\\xd9\\x87\\x2e\\x41\\x9a\\x0d\\x2c\\x83\\x13\\x08\\x51\\x5a\\xbe\\x4e\\\n\\x06\\x39\\xbc\\x2a\\xe3\\x10\\x85\\x18\\x71\\xe2\\x70\\xd2\\x00\\xdd\\xd3\\x45\\\n\\xab\\xcc\\x2c\\x70\\x1c\\xac\\xbe\\x71\\x02\\x43\\x94\\x2e\\x1a\\x79\\x52\\xac\\\n\\xe0\\x60\\x2a\\x31\\xb7\\xc6\\x50\\x28\\x27\\x79\\xf0\\x7e\\x15\\x10\\x8d\\x21\\\n\\x69\\x78\\xb6\\x20\\x03\\x4a\\x8d\\x51\\x04\\xca\\x40\\x2f\\x8b\\xb5\\x0c\\xc8\\\n\\xf7\\x82\\x80\\x71\\x78\\xd6\\x2c\\xb0\\xe9\\x1b\\x20\\x5e\\x14\\x9c\\x05\\xe2\\\n\\x8a\\xae\\x06\\x80\\x32\\xb8\\x74\\xc3\\x05\\xfd\\x70\\x9a\\xf9\\xb1\\x51\\xe8\\\n\\xcc\\xcb\\x18\\x1e\\x4a\\x4e\\x70\\x5f\\xf2\\x0a\\xcd\\x51\\x8f\\x0d\\x8e\\xc5\\\n\\x18\\x06\\x9d\\x43\\x39\\x03\\x56\\x2e\\x41\\xea\\xf2\\xf4\\xe7\\xee\\xe1\\x31\\\n\\x99\\x81\\xfa\\x02\\x87\\xb8\\xea\\x43\\x27\\xd8\\x34\\x21\\xed\\x7f\\x01\\xec\\\n\\xd2\\x96\\x8e\\x93\\x16\\x25\\x91\\x5e\\x06\\xb2\\x41\\x35\\x0a\\xd2\\x2e\\x54\\\n\\xbc\\x74\\xa4\\xd6\\x12\\x29\\xd5\\x82\\x81\\x23\\x3d\\x50\\x53\\xc9\\x2a\\x40\\\n\\x9f\\x55\\x0a\\x67\\x4e\\xdf\\x11\\xc8\\xdd\\x06\\x40\\xe3\\x19\\xf0\\x20\\x31\\\n\\xba\\x00\\x46\\x08\\xcf\\x11\\x61\\xe4\\xac\\x26\\x93\\x44\\x82\\x40\\x3d\\x90\\\n\\x1c\\xd6\\x5c\\xa4\\xa4\\xf1\\xae\\x9f\\x1e\\xba\\xbc\\xec\\xe3\\x56\\x00\\x43\\\n\\xf8\\xa7\\xbc\\x40\\xaf\\xa4\\x66\\x56\\x91\\xac\\x40\\xff\\x00\\x76\\x0c\\x7d\\\n\\xe5\\xe3\\x02\\xc6\\x88\\xa3\\x20\\x1b\\x2f\\xd4\\x28\\x88\\x8e\\x79\\x13\\x4a\\\n\\x1b\\x40\\xc0\\xd0\\x20\\xd4\\x62\\x75\\x75\\xb2\\xd4\\xa1\\x48\\xf0\\xc0\\x00\\\n\\x9e\\x4b\\xeb\\x65\\x8b\\x04\\x1a\\x48\\xab\\x11\\x95\\x8b\\x16\\xaa\\x0c\\x12\\\n\\x3a\\xd4\\x9b\\x84\\xd7\\x69\\x21\\xc4\\x01\\x96\\x44\\x10\\x0f\\x84\\x0c\\xa2\\\n\\x09\\xbd\\xdd\\xb6\\x16\\x2b\\x80\\x21\\x4e\\xc8\\x57\\x82\\x1b\\x06\\x32\\x9e\\\n\\x90\\xc9\\x61\\x41\\x82\\x1d\\xb3\\x65\\xd7\\x3d\\x57\\x4b\\x0e\\x9a\\x07\\x69\\\n\\x7a\\x84\\xa7\\x30\\xaa\\x6b\\x40\\xf5\\x42\\x81\\x5a\\x20\\xba\\x4b\\x77\\x4b\\\n\\x86\\x9c\\xee\\x55\\x50\\x93\\xa9\\xcb\\x74\\xa2\\xbb\\x2d\\x55\\xa8\\x0a\\x8d\\\n\\x7d\\xc3\\x97\\xf2\\xd2\\x0b\\x0a\\x74\\x2a\\x0e\\xcf\\xfa\\xd2\\xa9\\x47\\x19\\\n\\xe6\\x68\\x02\\x31\\xb7\\x28\\x90\\x84\\x13\\x08\\xba\\x31\\x00\\xc3\\xda\\x06\\\n\\xc2\\xc0\\xb4\\x5c\\x0c\\x95\\xb1\\x0d\\xd0\\xac\\x09\\x2a\\xd2\\xc3\\xaf\\xbd\\\n\\x7a\\x58\\x5e\\xcc\\xc1\\xab\\x17\\xb4\\xd8\\x6d\\x71\\xca\\x45\\xa5\\xd0\\xdd\\\n\\xa4\\x48\\xd8\\xf0\\x60\\x50\\x67\\x5c\\xa0\\xa7\\xcd\\x27\\xb0\\x63\\x60\\xae\\\n\\x4a\\x6f\\xe1\\xc3\\x15\\x4c\\xbf\\x02\\xcb\\x47\\x35\\x93\\x82\\xa0\\xe2\\xa3\\\n\\x52\\x58\\x20\\x16\\x12\\x82\\xaa\\xc7\\x19\\x03\\x0a\\x6e\\x3a\\x6b\\x2e\\x20\\\n\\x54\\x7f\\x7c\\x77\\x47\\x80\\x1e\\x92\\x05\\x00\\x19\\x1a\\xfc\\xaa\\x98\\x41\\\n\\xab\\x8e\\x66\\x06\\x85\\x64\\x2e\\x80\\x79\\xa1\\x0a\\xab\\x54\\x15\\x59\\xe2\\\n\\xac\\x50\\xc8\\x0b\\xd4\\xcd\\xc5\\xf2\\x11\\xe2\\xb2\\x07\\x48\\xb4\\xa2\\xa7\\\n\\x83\\xcc\\x80\\x5e\\x02\\xd6\\xf2\\x56\\x10\\xd2\\x0e\\xde\\x44\\x90\\x82\\x6e\\\n\\x72\\xfc\\x81\\x29\\x77\\xcd\\x06\\xf0\\xc5\\x1e\\x51\\x26\\xa7\\x06\\x4f\\xd5\\\n\\xa7\\x39\\xaf\\x48\\x5f\\xba\\xd4\\x4b\\x91\\xeb\\xac\\xf5\\x36\\x4e\\xc0\\xc5\\\n\\x55\\x7a\\x83\\x09\\x7b\\x75\\xb9\\xc4\\x05\\x02\\x9e\\x00\\x25\\x3e\\x5d\\x42\\\n\\x34\\x60\\xb9\\x11\\x21\\xb2\\xdd\\x46\\xc4\\x18\\x0a\\x9f\\x6a\\xb3\\xa9\\x18\\\n\\xd1\\x6e\\x0d\\x42\\x80\\x52\\xc9\\x28\\x78\\xa1\\x42\\x22\\x0c\\x46\\x4b\\xa3\\\n\\x2a\\x11\\x36\\x18\\x82\\xcb\\xca\\xb2\\x51\\xb5\\x0b\\x0f\\x10\\x77\\x00\\x3a\\\n\\x10\\x96\\x0a\\xb4\\x2b\\x0c\\xa7\\x16\\xaf\\xd0\\x10\\x6d\\x38\\x9d\\xf1\\x04\\\n\\x21\\xcc\\x0d\\x06\\x1b\\xae\\x38\\xea\\x57\\x85\\x31\\x14\\x07\\x8e\\x1d\\x0e\\\n\\x1c\\xde\\x0d\\xdf\\x48\\x60\\xa0\\x3b\\xb2\\x2b\\xda\\x05\\x94\\xea\\x4f\\xaa\\\n\\xe8\\x0f\\x8b\\x9d\\x66\\x0d\\x6a\\x27\\x0f\\x1c\\x9f\\x0f\\xae\\xac\\xa8\\x2a\\\n\\x84\\x00\\x86\\x25\\x41\\xcf\\xee\\x59\\x46\\xc6\\x9a\\x1b\\x80\\xcd\\x1e\\x50\\\n\\x57\\x59\\x58\\x30\\x12\\x05\\xb0\\x60\\x3f\\x6f\\x12\\x77\\x71\\xd1\\x04\\x9a\\\n\\x08\\xdc\\x15\\x4c\\x39\\xb3\\x0d\\x11\\x00\\x85\\xc8\\x27\\x08\\xd0\\x97\\xd3\\\n\\x88\\x18\\x58\\x00\\x3a\\xa9\\x6f\\x00\\x57\\x40\\x22\\x97\\x4b\\xb3\\xb0\\xc1\\\n\\x26\\x38\\x26\\x3f\\xa1\\xf0\\xb9\\x68\\x12\\x5b\\x24\\xf1\\x00\\x88\\xa5\\x17\\\n\\xc6\\x94\\x51\\xb1\\xb1\\xd5\\x96\\x96\\xc7\\x28\\xf6\\x2b\\xba\\x84\\x03\\x0d\\\n\\xc9\\xf4\\x3c\\x86\\x0a\\x67\\xa4\\x40\\x81\\x62\\x60\\xb6\\x20\\x17\\xd5\\xa3\\\n\\xe8\\x18\\xb4\\x0e\\xb6\\x87\\xb2\\x4d\\x4d\\x14\\x8a\\x45\\x2a\\x4c\\x84\\x46\\\n\\x77\\x77\\x1a\\x7a\\xd7\\x40\\x78\\x9e\\x88\\xe2\\x04\\x0e\\xba\\x38\\x6c\\x00\\\n\\x66\\x9e\\x88\\x90\\x91\\x6e\\x41\\x3c\\x0d\\x93\\xae\\xd8\\x2a\\x87\\x01\\x34\\\n\\x8d\\xcb\\x33\\x9f\\x6a\\xa2\\x11\\xca\\xa8\\x1f\\x8e\\x4a\\x04\\x00\\xdd\\x05\\\n\\x2d\\x2a\\x29\\x2d\\xa5\\x05\\xd8\\xb7\\x4d\\x55\\x5a\\x00\\x88\\xc8\\x14\\x44\\\n\\xe7\\x69\\x5d\\x70\\x92\\x75\\x82\\x69\\x88\\x6a\\xa7\\x22\\x73\\x9d\\x78\\x2f\\\n\\xca\\x0c\\x1a\\x0e\\x22\\x66\\x5c\\x6d\\x3f\\xd8\\xc2\\x32\\x88\\x0e\\x15\\x0a\\\n\\x96\\xea\\x27\\x2a\\x44\\x54\\xdc\\x5c\\x20\\x02\\x67\\x26\\x94\\xca\\x6a\\x31\\\n\\x4c\\x81\\xa4\\xad\\xfe\\x46\\x00\\x45\\x19\\x02\\x80\\x39\\x45\\x91\\x16\\x00\\\n\\xe5\\x3d\\x91\\x27\\x7d\\x71\\x96\\x06\\x3a\\x01\\x74\\x45\\xd3\\x8b\\x59\\x21\\\n\\xd6\\xc2\\x3f\\xd4\\x78\\xf5\\xe7\\x3f\\x53\\x60\\x98\\x1a\\x86\\x83\\x54\\x4f\\\n\\x68\\xa1\\xc7\\x72\\x90\\x5d\\x3c\\x8c\\x45\\x34\\xa8\\x03\\x83\\x98\\xb7\\x21\\\n\\xc6\\x6b\\x42\\x94\\x80\\x30\\x17\\x32\\xd1\\x6a\\x46\\x40\\xe7\\x49\\x17\\x58\\\n\\x31\\x53\\x56\\x30\\x2c\\x12\\x11\\x55\\x0b\\x80\\xa3\\x0a\\x4a\\xe9\\x3d\\x23\\\n\\x08\\x83\\xf5\\xc0\\x2a\\xa7\\x84\\x31\\xc8\\xb2\\x9d\\x98\\xe3\\x56\\x1d\\x76\\\n\\x27\\x1e\\x02\\xd0\\xf1\\xd8\\xff\\x00\\xa1\\x48\\x17\\x71\\x54\\x78\\x31\\xc6\\\n\\x17\\xb0\\x6e\\xa4\\x81\\x02\\x31\\x14\\x05\\x5d\\x26\\x27\\x22\\xa6\\x0a\\x34\\\n\\x01\\x68\\x8d\\x8c\\x78\\x96\\xf2\\x3a\\x31\\xef\\x8a\\xe7\\xdf\\x87\\xa0\\x12\\\n\\x76\\x00\\x2a\\x09\\xf3\\xb6\\x4f\\x08\\x2a\\x3f\\xbb\\xe3\\x8a\\x15\\x9e\\x17\\\n\\x2a\\xe2\\xf2\\x62\\xa6\\x73\\x1c\\x3a\\xc2\\x7b\\x09\\x4e\\xbb\\xb7\\xc8\\xb4\\\n\\xa6\\x17\\xca\\x81\\x86\\xd8\\xba\\x19\\x6b\\xd2\\x48\\x29\\x19\\x9a\\x8b\\xd9\\\n\\x34\\xc3\\xf4\\x64\\xe6\\x7c\\x77\\xd3\\xea\\x64\\xa8\\x69\\x28\\x4b\\xbc\\xd1\\\n\\x6c\\xd8\\x54\\xb9\\x9a\\xf1\\x3c\\x7b\\xcc\\x92\\xc5\\x22\\xe0\\x23\\xfb\\x9d\\\n\\xe4\\xa6\\x20\\xa1\\x5a\\x51\\xb0\\xa0\\x20\\x0f\\xdd\\xdf\\x8c\\x04\\x42\\xe4\\\n\\x00\\xac\\x0f\\x7e\\x07\\x4d\\x73\\xa3\\x0c\\xff\\x00\\x44\\x20\\x22\\x31\\xd2\\\n\\x3c\\xa2\\x52\\x83\\x20\\x3e\\xd7\\x46\\x98\\x4d\\x78\\x4e\\x81\\x34\\x14\\xc0\\\n\\x52\\xc0\\xf1\\x17\\x43\\x07\\xe5\\x58\\xe1\\xf0\\x9f\\xe2\\xec\\xde\\x85\\x11\\\n\\x05\\xe7\\x2d\\x20\\x54\\x52\\x3c\\x97\\x41\\x26\\xc0\\x25\\x5a\\xc6\\x3d\\x4e\\\n\\x59\\xdb\\x8b\\x06\\x48\\x09\\x32\\xbc\\x33\\xde\\x1a\\x73\\x6e\\xb8\\x5e\\x61\\\n\\x81\\x7d\\x01\\x62\\x81\\x2a\\xa6\\x68\\xcc\\x31\\xca\\x61\\x94\\x1f\\xb0\\x98\\\n\\x64\\x1d\\xc6\\x3a\\x42\\x66\\x87\\x34\\x84\\x6a\\x97\\xa8\\x28\\x69\\x1e\\x68\\\n\\xe3\\x21\\x08\\x40\\xe4\\x12\\xe4\\x9d\\x29\\xc2\\x00\\x10\\x82\\x4b\\x29\\x57\\\n\\xcc\\xeb\\x4f\\x25\\x84\\x56\\x12\\x36\\x18\\xfd\\x1e\\xf8\\xd7\\x82\\xad\\xa8\\\n\\x5f\\x48\\x40\\x18\\x74\\xd8\\x67\\x2e\\x18\\xa9\\x83\\xab\\x71\\xc7\\xd1\\xcd\\\n\\x94\\x3b\\x0b\\x08\\xd6\\xcb\\xc3\\x4e\\x3a\\xdc\\xca\\xfa\\x44\\x14\\x61\\x3d\\\n\\x29\\x18\\x79\\xb3\\x36\\x49\\x04\\x4b\\xa5\\xe6\\xf6\\x06\\xed\\xd4\\x5f\\xaa\\\n\\x34\\x97\\xa1\\xca\\x22\\xd9\\xaf\\x08\\xa7\\x52\\x0b\\x09\\xf5\\xcf\\xea\\x08\\\n\\xf7\\x50\\xed\\x97\\x53\\xe9\\x19\\x15\\x16\\x57\\x22\\x41\\xf4\\xc1\\x56\\x85\\\n\\x88\\xb0\\x66\\x40\\xf6\\x80\\xd1\\xa0\\x79\\x45\\xed\\x03\\xb5\\xca\\x7a\\xaa\\\n\\x9e\\x3c\\xe6\\x91\\xf6\\x66\\xa0\\x8a\\xa3\\x02\\x30\\x00\\x13\\xd0\\xab\\x8a\\\n\\xe2\\xb9\\x24\\x47\\x58\\xd1\\x35\\x02\\xef\\x8a\\x48\\x09\\x84\\x5e\\x86\\x59\\\n\\x1d\\x0c\\x21\\x58\\x7c\\x22\\x4e\\xc3\\x30\\xcf\\xa4\\x80\\x06\\x08\\x48\\x7a\\\n\\x60\\x52\\xa1\\x50\\x8c\\x57\\x94\\xba\\x5a\\xde\\xbc\\x10\\x67\\x89\\x4b\\x13\\\n\\x0f\\x46\\x64\\x8a\\x8b\\x41\\x7d\\x43\\xa2\\x29\\x10\\xf5\\x4b\\x35\\x1f\\x31\\\n\\xc0\\xcb\\x34\\x37\\x8d\\xb3\\x9b\\xa5\\xd0\\x5a\\xa8\\x51\\x1c\\x21\\x93\\x95\\\n\\x6a\\x2a\\x54\\x3a\\x62\\x96\\xd0\\x31\\xf6\\x8b\\x97\\x54\\x00\\x72\\x4d\\xb8\\\n\\x00\\x2b\\x6e\\x45\\x87\\xb2\\xfe\\x16\\x8a\\x38\\xb9\\xb4\\xf2\\x6b\\xdc\\x65\\\n\\x45\\x8d\\x22\\x76\\x75\\xfd\\xb4\\x47\\xd3\\x05\\x20\\x03\\xb1\\x09\\x57\\xda\\\n\\x48\\x8b\\x44\\x80\\x28\\x82\\x82\\x04\\x23\\x0f\\x61\\x84\\x70\\x83\\x40\\x75\\\n\\x57\\x20\\x52\\x84\\xcd\\x70\\x94\\xc9\\x10\\xb1\\x81\\xc7\\xa5\\x27\\x05\\x48\\\n\\xab\\x21\\x5f\\x9a\\x8e\\xda\\x25\\x36\\x4b\\xf6\\x5f\\xa5\\x68\\x9a\\xdc\\xec\\\n\\xb4\\x89\\x05\\x70\\x9d\\x46\\x3f\\x3c\\xe8\\x0a\\xc3\\x32\\xba\\xdc\\x00\\xa8\\\n\\x42\\x44\\x83\\x19\\x16\\x5d\\x71\\x8b\\x71\\xb3\\x86\\xb2\\x4a\\xd0\\xf4\\x43\\\n\\x27\\x16\\xf0\\x45\\xc8\\x3d\\x48\\xe0\\x08\\x68\\xd2\\xa4\\xd6\\xfb\\x68\\x46\\\n\\x59\\xb4\\x95\\xed\\x33\\x69\\xca\\xc3\\x21\\x52\\xc8\\x3a\\xa9\\x45\\xdb\\xe0\\\n\\x58\\x49\\x2e\\xc0\\xa7\\x22\\x3a\\x9b\\xa3\\x42\\x5c\\x78\\x6b\\x88\\x41\\xc6\\\n\\xbe\\x62\\xf3\\xcd\\x6a\\x64\\x40\\xda\\x49\\x15\\xdd\\x3c\\x69\\x30\\x4d\\x41\\\n\\x51\\xb1\\x4a\\xa5\\x3f\\x25\\x91\\x09\\x43\\xd2\\x81\\x50\\x38\\x89\\x00\\x00\\\n\\xb8\\x0a\\x07\\x68\\x02\\x22\\x74\\x2b\\x19\\xf7\\x28\\xa2\\xc4\\x02\\xac\\x91\\\n\\xf0\\x4e\\xc5\\x95\\x4e\\x52\\x81\\xfd\\x04\\x5e\\x22\\x75\\x98\\xf3\\xfa\\x80\\\n\\x52\\xa8\\x40\\x31\\x42\\xb1\\xf6\\xfa\\xdc\\x85\\xfa\\x11\\x55\\x45\\xe1\\xe9\\\n\\xc6\\x42\\x80\\x1a\\xe7\\x7e\\x29\\x51\\xed\\x42\\x88\\x94\\x28\\x81\\xb4\\x9f\\\n\\x71\\xf3\\xb5\\x94\\x14\\x10\\xe3\\x6c\\x20\\x4c\\x29\\x5f\\x64\\xc1\\x51\\xa0\\\n\\x85\\x54\\xb6\\x9b\\x52\\x5f\\x03\\x31\\x4f\\x97\\x48\\x14\\x06\\x9c\\x25\\x92\\\n\\x27\\x32\\x3f\\x21\\x43\\x22\\xe7\\xdc\\x0e\\x78\\x3d\\x2c\\xd0\\x8a\\x58\\x0b\\\n\\x3c\\x43\\xc0\\x9e\\x41\\x0c\\x6b\\xb7\\x48\\xa8\\x2e\\xc2\\xc9\\x00\\x07\\x54\\\n\\x69\\x2b\\xd9\\x25\\x02\\xa8\\x22\\xdb\\xc2\\x40\\x6f\\x6c\\x4b\\xdb\\x72\\x45\\\n\\x98\\x8a\\x18\\x58\\x12\\x49\\x18\\x08\\x43\\x4c\\x20\\xc5\\x00\\x09\\x19\\xd0\\\n\\x50\\x30\\x3d\\xf8\\x66\\x28\\xa8\\xa2\\xc6\\x0a\\x97\\x97\\x29\\xf5\\xb0\\x51\\\n\\x6c\\xf4\\xbd\\xd5\\x54\\x08\\x1a\\x35\\xde\\x59\\x4a\\x03\\x77\\x4c\\xd0\\x0c\\\n\\xe9\\x87\\x85\\xe4\\xa0\\xf5\\x02\\x3d\\xc1\\x03\\x9c\\x0c\\x95\\x8d\\x71\\xac\\\n\\xa8\\xab\\x16\\xa4\\x35\\x5b\\x10\\x52\\x09\\x96\\x40\\xd5\\x54\\x89\\x5f\\x37\\\n\\xb7\\xa1\\x83\\xb3\\x48\\x89\\x3c\\x08\\x71\\x48\\x1a\\x2c\\x0b\\xec\\xcc\\xb0\\\n\\xea\\x3b\\xf3\\x4f\\x53\\x8c\\x03\\x0e\\x43\\xee\\x1f\\xf9\\x3a\\x4b\\x72\\x89\\\n\\x89\\x7d\\xc7\\xe5\\xc7\\xc0\\x67\\xcc\\x18\\x45\\xd6\\x5b\\xd1\\xb4\\xb9\\x83\\\n\\x9d\\x28\\xf9\\x05\\x01\\x94\\x47\\xb8\\xeb\\x76\\x06\\xc4\\x71\\x0c\\xa4\\x1e\\\n\\x44\\x62\\xa7\\x1e\\x90\\x56\\x42\\x5b\\x52\\xb3\\x84\\xd9\\x63\\xe5\\x09\\xa8\\\n\\xcc\\x62\\x92\\x88\\x2f\\x62\\xe4\\xe6\\x92\\x50\\x00\\xf4\\x63\\x08\\xc1\\x79\\\n\\x89\\x87\\xfc\\x38\\xbb\\x8b\\x34\\x15\\x7d\\x9c\\xdf\\x04\\x8f\\x22\\x8f\\x24\\\n\\x53\\x93\\x16\\x56\\xd3\\x9e\\x29\\x45\\xb9\\x9b\\x21\\x03\\xa3\\xf1\\x9e\\x49\\\n\\x1b\\xb8\\x55\\xaa\\x15\\x50\\x06\\x59\\x57\\x84\\xa8\\x9a\\xba\\x19\\x5b\\xaf\\\n\\x66\\x83\\xdf\\x2c\\xda\\x6e\\xcf\\x4e\\x4c\\x1a\\x24\\x36\\x49\\x52\\x3c\\x40\\\n\\x1b\\x59\\x41\\xfa\\x20\\x87\\x46\\xc3\\x80\\x81\\xc5\\xc4\\x00\\x60\\x3e\\x2f\\\n\\x59\\x6e\\x24\\x1c\\xd5\\x32\\x2d\\x07\\x3c\\xee\\x65\\x74\\xea\\x00\\x3b\\x89\\\n\\xbf\\x21\\xc0\\x8b\\x9c\\x06\\x83\\x2f\\xe7\\x8a\\xaa\\xaf\\x08\\xa0\\xe8\\x5a\\\n\\x5a\\x8e\\x12\\x0e\\x87\\x36\\x4c\\xbc\\x79\\x55\\xb0\\xac\\x8b\\x97\\xd8\\x74\\\n\\x47\\x18\\xa5\\x06\\x64\\x22\\x51\\x12\\x13\\x0a\\x95\\x83\\x02\\xb4\\x09\\x03\\\n\\x1f\\x90\\xee\\x16\\x7d\\x66\\x05\\x09\\x50\\x18\\x70\\x34\\x80\\xab\\x67\\xe6\\\n\\xe2\\x53\\x9a\\x14\\x95\\x33\\x92\\xad\\xe6\\x44\\xbb\\x91\\x06\\x95\\x6b\\x44\\\n\\xa5\\xbf\\xd0\\xed\\xc8\\x03\\xe7\\x52\\xc0\\x74\\xa2\\x16\\xa1\\x1f\\x81\\x61\\\n\\x95\\x69\\x20\\x54\\xb6\\x16\\x13\\xdd\\x84\\x6e\\x31\\x46\\x92\\xd9\\x33\\xa2\\\n\\x16\\xe3\\x21\\x41\\x54\\x69\\xa0\\x92\\x75\\x9e\\x38\\x92\\xb2\\xc0\\x60\\xd2\\\n\\x80\\x29\\x19\\x22\\x47\\xb0\\x05\\xfa\\xdc\\x36\\x76\\xa8\\x15\\xc9\\xf5\\x38\\\n\\x51\\x81\\x11\\x02\\xc5\\x88\\xb3\\x49\\x6b\\x78\\x6e\\xd6\\x14\\x17\\x84\\xc7\\\n\\x2b\\xf7\\xb5\\x48\\xac\\xe3\\xf4\\x19\\x09\\x22\\x9c\\x06\\x08\\x71\\x01\\x37\\\n\\x52\\x9e\\x80\\x81\\xd2\\xd1\\x2c\\x04\\x46\\x25\\x21\\x17\\x20\\x00\\xf6\\xda\\\n\\xaf\\x9b\\x6d\\xd2\\xc1\\x45\\x42\\x9a\\x21\\xab\\x1f\\x05\\x4b\\x00\\x5c\\x33\\\n\\x16\\x20\\x1d\\x04\\x52\\x1e\\x1e\\xe0\\x2e\\xa1\\x52\\x85\\x54\\x09\\x31\\x11\\\n\\x57\\xa9\\xa7\\xea\\x1f\\xa9\\xa7\\xf0\\xb3\\x90\\x4f\\xea\\xa5\\x1a\\x31\\x65\\\n\\x1f\\x3e\\xa4\\xaf\\xa6\\x2e\\x21\\x07\\xd9\\xc1\\xa6\\x1b\\x82\\x42\\x5c\\x49\\\n\\x03\\xfc\\xc7\\x42\\xa2\\x56\\x91\\x5e\\x7c\\x29\\x44\\x5e\\x58\\x60\\xb0\\x0f\\\n\\x0e\\x06\\xec\\x00\\x05\\x46\\x00\\x50\\x0a\\xa1\\x15\\x2b\\x0f\\x71\\x87\\x28\\\n\\x65\\x22\\x95\\x99\\x00\\x06\\x60\\xbe\\x42\\x55\\x42\\x4c\\x0a\\x83\\x6a\\x71\\\n\\x61\\x9a\\x92\\x0c\\x58\\x5e\\x14\\x68\\x52\\x19\\x1a\\x8e\\x36\\x0c\\xcc\\x22\\\n\\x14\\x9c\\xf4\\x6a\\x10\\x0a\\x68\\x35\\xd0\\x5d\\x20\\x06\\x45\\x1e\\x46\\x84\\\n\\x80\\xc8\\x26\\x69\\x5a\\x28\\x11\\x85\\x38\\x72\\x89\\x23\\x55\\x07\\x89\\x8a\\\n\\x00\\x68\\xe3\\x22\\x56\\x79\\x0f\\xc9\\xaa\\x8d\\xd9\\x7e\\xfe\\x1c\\xc5\\x3e\\\n\\xa5\\x32\\x2e\\x21\\x1e\\x3c\\xc1\\x0e\\x8b\\xb0\\xe4\\x06\\x81\\xeb\\x37\\x1f\\\n\\x19\\xee\\x10\\xb8\\xd0\\x80\\xd0\\xd3\\xaa\\x85\\x40\\x50\\x3c\\x5d\\x60\\x81\\\n\\xc1\\x8b\\x7e\\x8a\\x21\\x07\\xb0\\x2b\\xb9\\xc6\\xa7\\xbd\\x47\\x40\\x12\\x01\\\n\\x58\\x71\\xc5\\xc1\\xa6\\x29\\xc2\\x06\\x8b\\xed\\x5b\\x88\\x1d\\x1c\\xb6\\xb5\\\n\\x9c\\x18\\xfc\\xa7\\xc3\\x70\\xb4\\x32\\xdd\\x25\\x48\\xac\\xfc\\x80\\x0d\\x62\\\n\\xe1\\xf5\\x6f\\x09\\x03\\x30\\x3b\\x2e\\x8e\\xf6\\xf2\\x8a\\x91\\x7b\\x69\\xc6\\\n\\x95\\x47\\x41\\x35\\x6b\\x77\\x8c\\x6a\\x55\\x02\\xab\\x71\\xfb\\x2d\\x70\\xe3\\\n\\x40\\xd6\\x0e\\x27\\x8c\\x0a\\x92\\x11\\xa4\\x71\\x1f\\x85\\x19\\x5f\\x3e\\x8d\\\n\\xe1\\x1e\\xfa\\x64\\x40\\x8c\\x1b\\xfc\\xab\\x6e\\x4f\\x81\\x20\\xee\\x4d\\xcd\\\n\\x02\\x41\\x60\\x32\\x27\\xfc\\x27\\x1a\\xf0\\xb6\\x2b\\x58\\x63\\xc1\\x91\\x74\\\n\\x36\\xbb\\xaf\\x14\\xd9\\x1d\\x26\\xae\\xcc\\x1e\\x3c\\xd0\\xb2\\xcc\\x72\\x8e\\\n\\xe4\\xa8\\x55\\x57\\x43\\xfd\\xcc\\x21\\x80\\x6b\\xd0\\xbb\\x89\\xce\\x16\\xf8\\\n\\x0f\\x98\\x97\\xc5\\x3c\\xea\\x11\\xf4\\x4c\\xda\\x7e\\x8c\\x4f\\x55\\x15\\xde\\\n\\xbf\\x99\\x62\\x00\\x10\\xb4\\x04\\xa5\\x6c\\x35\\x88\\x62\\x13\\xa3\\xcd\\x83\\\n\\xff\\x00\\xc6\\xcd\\x14\\xbe\\xaf\\x8c\\x51\\x53\\x69\\x92\\x54\\x10\\x2c\\x84\\\n\\xd1\\xa3\\x58\\x16\\x7c\\x83\\x54\\x1b\\x9a\\xbf\\x14\\x51\\x2c\\xa2\\x38\\x69\\\n\\x23\\x6c\\x64\\x93\\x19\\xc2\\x4c\\x2c\\x70\\x3e\\x4e\\x9c\\xc0\\x52\\x6f\\xae\\\n\\x3c\\x97\\x52\\xae\\xc8\\xe6\\xa8\\x2d\\xa1\\xff\\x00\\xb6\\x5e\\xc7\\x1e\\x0c\\\n\\x25\\x70\\x5a\\x63\\x79\\x0d\\x69\\x13\\x7a\\xd1\\x34\\x06\\x7d\\x55\\xe0\\x44\\\n\\xd5\\x23\\x90\\x3a\\x33\\xc2\\x01\\xfa\\x5f\\x59\\x89\\x75\\x18\\x3b\\x62\\xe9\\\n\\x8c\\x82\\x3a\\x01\\x29\\x20\\x35\\xe9\\xcc\\x49\\x23\\x83\\xf8\\xe0\\x90\\x82\\\n\\x9d\\x2c\\x70\\x69\\xc0\\x57\\xec\\x35\\x27\\xa9\\xbb\\x5b\\x57\\x21\\x31\\x8a\\\n\\xc0\\xa1\\x2b\\xd1\\xbf\\x63\\xa4\\x41\\x6c\\x0a\\xd2\\x8d\\x43\\x2e\\x8a\\x74\\\n\\x1a\\xb3\\x18\\x88\\x11\\xc1\\x2f\\x2c\\x08\\x5f\\x8f\\x89\\xc3\\x40\\x5b\\x4d\\\n\\x61\\x78\\x8f\\xa2\\x15\\xa9\\x46\\x13\\x16\\x2a\\x14\\x60\\x94\\x32\\x17\\x1e\\\n\\xd1\\x20\\xc3\\xd9\\xa9\\xea\\xb6\\xf0\\x60\\xb5\\xfb\\x10\\x14\\x2c\\x40\\xb8\\\n\\x58\\xff\\x00\\xa4\\xde\\x40\\x32\\x68\\xb3\\xd6\\xa9\\x8a\\x01\\x8a\\xad\\xfd\\\n\\x39\\xa3\\x1e\\x2a\\x15\\x12\\x43\\x92\\x0a\\xfa\\x80\\x84\\x95\\x26\\xa3\\x18\\\n\\x26\\x06\\xd4\\x40\\x24\\x42\\x88\\xe1\\x86\\xaf\\x8c\\xb1\\x55\\xbd\\x54\\xe3\\\n\\xc3\\x8b\\xa4\\x3a\\x28\\xa7\\x08\\x8b\\x85\\x30\\x73\\x95\\xe4\\x1a\\x90\\xc1\\\n\\x8a\\x48\\xd0\\xbb\\x1b\\x4b\\x76\\x9c\\x31\\x92\\x15\\xe8\\xe9\\x14\\xf0\\x0c\\\n\\x74\\x77\\x2f\\xd0\\xa1\\x62\\x62\\xe2\\x03\\xcc\\x32\\xf9\\x84\\xb0\\x08\\xd4\\\n\\x73\\x80\\xae\\x3f\\x8c\\x1a\\x1c\\x82\\x01\\x21\\x2f\\x0e\\x67\\x64\\xef\\x89\\\n\\x12\\x4b\\x18\\x23\\x4c\\x12\\xf5\\x08\\xe8\\x11\\xbf\\x87\\x50\\x48\\xa6\\xaa\\\n\\x2d\\x1a\\x8c\\x90\\xad\\x13\\x6d\\x0d\\x27\\xd4\\x03\\x20\\x1a\\x1a\\x18\\x79\\\n\\x14\\x15\\x07\\x87\\xf5\\x01\\x23\\x52\\x27\\x14\\xb4\\xc8\\xfc\\xe4\\x93\\x91\\\n\\x82\\x37\\x91\\x28\\xcb\\x1a\\x8c\\xa3\\x27\\x09\\x00\\x17\\x24\\x64\\x00\\x91\\\n\\xf5\\x1c\\x51\\xd9\\x2c\\x38\\x4c\\x0c\\xb6\\x9d\\x31\\xf7\\x24\\x24\\x06\\xb5\\\n\\xa2\\x10\\x8d\\x26\\x4c\\x5d\\x74\\x61\\xf1\\x3a\\x85\\x0c\\xf2\\x42\\xf0\\x71\\\n\\x84\\x39\\x7d\\xa0\\x40\\x18\\xf2\\x47\\x98\\x13\\x19\\xc9\\x18\\x09\\x60\\x89\\\n\\xe2\\x8a\\x26\\xf8\\x92\\x83\\xc6\\x01\\x2a\\x70\\x4a\\x88\\xc1\\xb0\\xb2\\x0b\\\n\\xd0\\x8c\\xc1\\xca\\xd3\\x0c\\x93\\xc7\\xb2\\x65\\xff\\x00\\x6a\\x2a\\xe9\\xb3\\\n\\x74\\x12\\xf9\\x12\\x33\\x7c\\x9a\\xaf\\x36\\xf0\\xb8\\x7c\\x8a\\x79\\x7b\\x34\\\n\\x49\\xd8\\x4a\\x13\\x26\\xca\\x91\\xae\\x4b\\x46\\x25\\x3f\\x0b\\x18\\x18\\xb7\\\n\\x16\\x2a\\xa0\\x51\\x9b\\xc7\\x05\\xa1\\x86\\xc0\\x57\\x80\\x59\\xe0\\x8e\\xa7\\\n\\xc4\\xaf\\x50\\x15\\xcd\\x32\\xfd\\x75\\xae\\x46\\x26\\x1b\\x2c\\x73\\x42\\xef\\\n\\x9b\\x49\\x57\\x6e\\x05\\x00\\x59\\x58\\x0e\\xa6\\x38\\x25\\x40\\x35\\xa0\\x04\\\n\\xe0\\xbe\\x45\\x5a\\x7c\\xf3\\xdc\\x8c\\xa9\\x2f\\x8e\\x94\\x70\\xf4\\xb8\\xd7\\\n\\x98\\xe0\\x06\\x16\\x53\\x7e\\x27\\xa1\\x67\\x23\\xb5\\xb1\\x05\\xd0\\xf0\\x29\\\n\\x19\\xd2\\x43\\x2f\\x08\\x45\\x62\\x40\\x43\\x33\\x81\\x18\\x31\\x87\\x07\\x1b\\\n\\x89\\x11\\x89\\x11\\xa4\\x07\\xf5\\x0e\\x5a\\xef\\x51\\x59\\x05\\xac\\x51\\x70\\\n\\x51\\x79\\x44\\x51\\x5b\\xe3\\x47\\x00\\x9e\\x02\\x31\\xda\\x53\\x69\\x29\\x90\\\n\\x92\\x1c\\x8e\\x01\\x5a\\x35\\x17\\x04\\x04\\x0e\\x65\\x27\\x1a\\x58\\xd2\\x2e\\\n\\x50\\xb5\\xe8\\x55\\x00\\xea\\xba\\x90\\x8d\\x13\\xa6\\xc3\\x39\\x71\\xdd\\x5c\\\n\\x57\\x57\\x1d\\x2c\\x2c\\x28\\xb4\\x70\\x0e\\x43\\x21\\x86\\x34\\x20\\xab\\x1e\\\n\\x04\\x29\\x55\\xe6\\xd0\\x25\\x5b\\xa0\\x4e\\xc9\\xc1\\x46\\xae\\x13\\x74\\xcd\\\n\\xa5\\xdc\\x1c\\x28\\x83\\xb7\\x20\\x43\\xf1\\xd0\\x3c\\x8f\\x33\\xf3\\x50\\x38\\\n\\x48\\x2a\\x13\\xc8\\x39\\xe2\\xfb\\xb5\\x9d\\x40\\xa1\\x05\\x34\\x5a\\x81\\x78\\\n\\x0c\\x7d\\xb0\\x9a\\x46\\x4e\\x50\\x3a\\x45\\xde\\xe4\\xe2\\x12\\xa4\\xa0\\xad\\\n\\x94\\x05\\x4a\\x06\\x49\\x4a\\x6c\\x47\\xda\\xd7\\x1f\\x44\\x78\\x01\\x3a\\x9b\\\n\\xad\\x18\\xb8\\x41\\x42\\x1b\\x11\\xcd\\x2b\\x82\\x19\\x2f\\x19\\x5e\\xe6\\x4f\\\n\\xd1\\xd4\\x4b\\x6a\\x43\\x00\\xb6\\xd3\\x86\\xe6\\xd8\\x6b\\x43\\x10\\x1e\\x05\\\n\\x21\\x1a\\x45\\x71\\x46\\xa1\\x88\\xaa\\x80\\xae\\x91\\xb2\\xf4\\x86\\x1d\\xb8\\\n\\x1e\\x4a\\x6c\\x84\\x28\\x56\\xd3\\x10\\xa3\\x39\\x74\\x0a\\x36\\x10\\x02\\x11\\\n\\xc6\\x18\\x91\\x8d\\x05\\xce\\x63\\xdb\\x54\\x63\\x6b\\x06\\xb3\\x0d\\xaa\\x5e\\\n\\x4d\\x43\\xc4\\x6b\\x3d\\x10\\x1e\\xfb\\x4a\\x50\\xf4\\x83\\x0e\\x25\\x2f\\x18\\\n\\x68\\xb3\\x55\\x65\\x74\\xf0\\x2e\\x3e\\x8e\\xa6\\x90\\x86\\x09\\x56\\xb1\\x05\\\n\\x71\\x74\\x86\\xe2\\x2e\\x62\\x15\\x21\\xc8\\xa7\\x0f\\xbc\\x1e\\x6f\\x7c\\x51\\\n\\x24\\x58\\x40\\x48\\xf0\\x3e\\x74\\x06\\x93\\x55\\xb4\\xa3\\xbc\\x6d\\x7f\\x76\\\n\\xa8\\xd1\\x90\\x52\\x9f\\xd9\\x1b\\x8b\\x31\\x20\\xd8\\x8c\\x42\\x67\\x18\\x94\\\n\\xd5\\x14\\xc5\\x84\\x36\\x0c\\x45\\x94\\xdd\\xc2\\xd0\\x28\\x5b\\x5c\\xb3\\xa4\\\n\\x8b\\x70\\x0b\\x0b\\xce\\xec\\x33\\xcd\\x22\\x58\\xc0\\xab\\x9b\\x77\\x9b\\xac\\\n\\x08\\x7a\\xad\\x4d\\x03\\xd9\\xfd\\x78\\x48\\xd3\\x12\\x58\\x12\\x15\\x2d\\x40\\\n\\x06\\xf0\\xd4\\xc0\\x20\\xa0\\x92\\x1e\\x52\\x93\\x66\\xf6\\x31\\x31\\x48\\x89\\\n\\xd0\\x53\\x61\\xf1\\xd8\\x23\\xab\\x23\\x6e\\x5c\\xcb\\xb2\\x11\\xa4\\x2e\\x20\\\n\\x3b\\x93\\x68\\x21\\xbb\\xb3\\x42\\x38\\x0e\\x68\\x70\\x3a\\xb1\\x35\\x88\\x6c\\\n\\x42\\xe6\\xa3\\x0d\\xc5\\x41\\x70\\x88\\x03\\x94\\x03\\xc5\\xc6\\x78\\x19\\xb0\\\n\\x73\\x2a\\x95\\x20\\x00\\xc9\\xd5\\x37\\x1b\\x28\\x51\\x18\\x82\\xf8\\x85\\x5a\\\n\\x28\\x2f\\x8b\\x25\\x65\\x77\\x27\\x2b\\xb4\\x04\\xd2\\x16\\x89\\xfe\\x3a\\xb3\\\n\\x19\\xa9\\xc3\\x64\\x33\\xa0\\xb9\\x0a\\x40\\x5a\\x60\\xab\\x50\\x86\\x78\\xdf\\\n\\x9b\\x94\\x49\\x82\\x98\\xe5\\xc4\\x77\\x46\\xe8\\xb3\\xaf\\xb9\\x05\\xaf\\xe7\\\n\\x43\\xe8\\xc2\\xf5\\x0a\\xa2\\xd4\\x01\\x25\\x60\\x80\\x46\\x86\\xe4\\xa0\\x26\\\n\\x37\\x98\\x43\\x4d\\x43\\x91\\xa0\\x96\\x97\\x26\\xd2\\xa6\\x49\\x08\\x02\\xd4\\\n\\xf9\\x63\\xb2\\xc6\\x5b\\xe1\\x80\\xc7\\x14\\x3e\\x3d\\x6c\\xc7\\xba\\x49\\x82\\\n\\xb4\\xb1\\x14\\xc1\\x07\\x7f\\x56\\x61\\xc0\\xc6\\x09\\xe0\\x41\\x33\\x87\\xb3\\\n\\x83\\x1d\\xc1\\xbc\\x50\\x59\\x21\\x7f\\x33\\x8e\\x5e\\x94\\xd7\\xbf\\x02\\x98\\\n\\x47\\x6d\\x42\\xe3\\xda\\xef\\x32\\x9e\\xdf\\x16\\x00\\xb7\\xa0\\xb8\\xca\\xb9\\\n\\x81\\x89\\xd1\\x9a\\xfd\\x92\\x21\\x38\\x3e\\x96\\x85\\xca\\xc5\\xc5\\x71\\xe9\\\n\\xad\\xc5\\x7f\\x32\\x9f\\x93\\xbc\\x37\\xd2\\xdf\\xfd\\x74\\x17\\x53\\x97\\x44\\\n\\x00\\x76\\x54\\x64\\x39\\x08\\x69\\xed\\x81\\x07\\xda\\x81\\x4e\\x74\\xcc\\xb3\\\n\\x43\\x87\\xae\\x6d\\x2d\\x0f\\x13\\x80\\x11\\x70\\x88\\xd6\\x95\\x2e\\x88\\x63\\\n\\xee\\xd0\\x0f\\x4f\\x8f\\xb9\\x74\\xc3\\xb5\\x26\\xc4\\x02\\xdc\\xb4\\xaa\\x7f\\\n\\xe2\\xf4\\xf0\\xa8\\x95\\x06\\x22\\x2b\\x67\\x45\\xe6\\xcc\\x07\\xaf\\x04\\x38\\\n\\x22\\x57\\xa2\\xa9\\xea\\x37\\xb3\\x59\\x67\\x13\\xc5\\x93\\x9a\\x72\\x5c\\x6e\\\n\\xa6\\xc8\\xd3\\xef\\x03\\xc9\\xab\\x10\\x40\\xe7\\xa1\\x79\\x46\\x50\\x93\\x61\\\n\\x64\\x95\\x04\\x1c\\x72\\xf2\\xe8\\x29\\x34\\x64\\xd2\\x03\\xb7\\x3e\\x1a\\xa4\\\n\\x85\\x90\\xed\\xd4\\x27\\x6e\\x63\\x85\\x16\\xc2\\x15\\x12\\x30\\x97\\x4b\\x4f\\\n\\x38\\x47\\x34\\xb2\\xfe\\x95\\x9a\\x8b\\x37\\x17\\x97\\x1a\\x08\\xfa\\x00\\xe9\\\n\\x02\\x25\\x51\\xfa\\x02\\xdd\\xd3\\x80\\xe7\\x08\\x9b\\x43\\x08\\x39\\xa9\\xe6\\\n\\xce\\x69\\x60\\x92\\x1e\\xa5\\x69\\x56\\xfa\\xac\\xee\\xee\\x49\\x01\\x0b\\x65\\\n\\x82\\xf1\\xab\\x4a\\x70\\x2b\\x28\\x6a\\x32\\x47\\x86\\xa5\\x0f\\x64\\x91\\x84\\\n\\x46\\x22\\x32\\xb2\\xc8\\xe1\\x01\\xf6\\xef\\xd2\\xb0\\x97\\xeb\\x18\\xaf\\x7e\\\n\\x4e\\x38\\x4a\\xf3\\xdb\\xb3\\x62\\xa4\\xaa\\x71\\x4a\\xe1\\x56\\xdc\\x0a\\x5d\\\n\\x70\\x14\\x42\\x5a\\x09\\x88\\x40\\xa1\\x44\\x59\\x70\\x9c\\x9d\\xa2\\x30\\x85\\\n\\xaa\\x50\\xcc\\x1b\\x68\\x39\\x5f\\xc4\\x63\\x84\\x62\\xcd\\x12\\xc3\\x43\\x80\\\n\\xa2\\x76\\x40\\xc2\\x55\\x2e\\x86\\xa0\\x70\\x53\\x58\\x9b\\xbc\\x67\\xbd\\x11\\\n\\x00\\x4e\\xdc\\xf8\\x15\\xa1\\x81\\x99\\x80\\x08\\x1a\\x7a\\xea\\xe1\\x94\\x1d\\\n\\x6b\\xe7\\x80\\x50\\xce\\xb5\\xbc\\x88\\x68\\x98\\x34\\x25\\x97\\x68\\x1b\\x8e\\\n\\x00\\x69\\x04\\x83\\x4b\\x77\\xba\\xbd\\xc4\\xe7\\x85\\xc5\\x45\\x23\\xeb\\x74\\\n\\xad\\x86\\x06\\x66\\x52\\x63\\x4a\\xaa\\xe1\\x39\\x62\\x6a\\x3f\\xa1\\x80\\x5e\\\n\\xca\\x57\\x81\\x65\\xfd\\x6e\\x80\\x35\\x12\\x84\\xf5\\x07\\x1a\\xd6\\x66\\x24\\\n\\x96\\x5a\\x61\\x0a\\x1d\\xbc\\x0d\\x90\\x1b\\xc1\\x20\\x9f\\x01\\x04\\x5b\\xd7\\\n\\x5f\\x14\\xb6\\x53\\xef\\x14\\x6e\\x77\\x04\\x90\\xa6\\x41\\x04\\xdb\\xa2\\x02\\\n\\x03\\xb2\\x67\\xee\\xa6\\x46\\xed\\xaa\\x42\\x63\\x82\\xf0\\xe7\\x6d\\xb5\\x4f\\\n\\x65\\xbd\\xe1\\x20\\x67\\x15\\x38\\x0e\\xf5\\x86\\x21\\x8b\\xd9\\x93\\xd6\\x86\\\n\\xba\\xe8\\x14\\x30\\x42\\x04\\x67\\x81\\x94\\x52\\xc1\\x59\\x0e\\x42\\xdc\\x10\\\n\\x92\\x04\\xf5\\xad\\x16\\x0b\\x40\\xc3\\x1d\\xbb\\x33\\xbc\\x5e\\x86\\xb4\\x2c\\\n\\x35\\x08\\x45\\x16\\xf4\\x36\\x89\\x5d\\x4a\\xd4\\x14\\xd7\\xa2\\xc4\\xbd\\x25\\\n\\x16\\x8a\\x8d\\x29\\x78\\x08\\x81\\x19\\x7c\\x42\\xce\\xa8\\x21\\xb4\\x76\\x3c\\\n\\x73\\xb0\\x7f\\x42\\x08\\x53\\x9e\\xb6\\x80\\x43\\x0d\\x27\\x01\\x00\\x32\\xe3\\\n\\x23\\x08\\x4d\\x12\\xe6\\xdc\\x77\\x47\\x25\\x82\\xc2\\x64\\x9d\\x40\\x8a\\x9e\\\n\\x10\\x6c\\xd4\\x1e\\x44\\xe8\\x56\\xa6\\x58\\x2e\\x27\\xd5\\x43\\xb5\\x52\\x73\\\n\\x56\\x02\\x11\\xcc\\xee\\x8c\\xa8\\x19\\x44\\x17\\x75\\x3e\\x9b\\x33\\x0b\\x42\\\n\\x7d\\x04\\x06\\x36\\x15\\x06\\xe8\\x1d\\x00\\x24\\x2c\\x75\\x7b\\x81\\x55\\x6c\\\n\\xb4\\xcd\\xbf\\x34\\x8a\\xd3\\x93\\x19\\x9a\\x08\\x00\\x54\\xb3\\x2b\\x69\\x47\\\n\\x76\\x3d\\x1b\\xf8\\x57\\x10\\x09\\x0c\\x18\\x1a\\x01\\x10\\x29\\xc1\\x0a\\x87\\\n\\xba\\x46\\x3a\\x13\\x61\\x1b\\x48\\xdd\\x2a\\x7c\\xa2\\x95\\xdd\\x58\\x4f\\x9c\\\n\\xb1\\xf0\\xe8\\x6a\\x86\\x91\\x40\\x35\\x49\\xa0\\x82\\xf8\\xf4\\x77\\xc2\\x18\\\n\\xe5\\xce\\xe5\\x0e\\x0e\\xa2\\x6e\\x34\\x34\\x0c\\xce\\x27\\x04\\xa2\\x71\\xd8\\\n\\xb6\\x2c\\x02\\x89\\x0b\\x5a\\xf3\\x73\\xa3\\x84\\x65\\xac\\x22\\xa2\\xa5\\x62\\\n\\x4c\\xcb\\x41\\x62\\x6e\\x2f\\x66\\x81\\xc7\\x69\\xb6\\x28\\x5a\\x9b\\x21\\xbc\\\n\\xcc\\x16\\x6b\\x6c\\x03\\x0c\\xac\\x01\\x9e\\x8a\\x02\\x5c\\xcc\\x17\\x0a\\x13\\\n\\x66\\x01\\x27\\xa2\\x3f\\x8d\\x40\\x71\\x22\\x16\\xc2\\x7c\\xfc\\x30\\x65\\x88\\\n\\x9c\\x22\\x23\\x93\\x14\\x95\\xc7\\x5b\\xaa\\x46\\x7f\\x0b\\x44\\x4b\\x20\\x21\\\n\\x41\\x20\\x8f\\xcc\\x5e\\x9a\\x1e\\x3e\\x17\\x1d\\x8d\\x60\\x89\\x0d\\x98\\x02\\\n\\x51\\x10\\xa9\\x3d\\x42\\xa8\\x5a\\xd3\\x54\\x74\\xa7\\x2a\\xa5\\xff\\x00\\x42\\\n\\x1c\\xb6\\x88\\x92\\x16\\x00\\x42\\x0a\\x0f\\xd0\\x82\\x49\\xc8\\xa7\\x77\\x8d\\\n\\x05\\x95\\x31\\x63\\x51\\xf1\\x02\\xb6\\x65\\x15\\x07\\xb8\\xda\\x0e\\xb5\\x00\\\n\\x53\\x21\\x4f\\x09\\x72\\x31\\xcc\\x17\\xc6\\xe7\\x1d\\x24\\x5a\\x88\\xf5\\xcb\\\n\\xde\\xc9\\x30\\xa1\\xcc\\xd3\\x22\\x16\\x89\\x67\\xdb\\xa6\\xe6\\x58\\x82\\x2b\\\n\\xe4\\x51\\x0a\\x5c\\x04\\x8f\\x41\\x30\\xd6\\x4f\\x6c\\x8e\\x22\\xe5\\xf0\\xc4\\\n\\x40\\x63\\x09\\x5e\\xb9\\x83\\x58\\xb0\\x21\\x08\\xbf\\x40\\xc3\\xd2\\x5b\\x2c\\\n\\x5c\\x8b\\xcc\\xda\\x0c\\x0b\\xa9\\x21\\x3c\\x42\\x05\\x4d\\xb4\\x40\\xb8\\xa6\\\n\\x96\\xba\\xa4\\x1b\\xbe\\x84\\x82\\x42\\xee\\x4a\\xbd\\x31\\x2b\\x21\\x63\\x94\\\n\\x8e\\x0b\\xda\\x80\\x3f\\xb7\\x89\\x14\\x03\\xa1\\xe2\\x2a\\x9e\\x61\\xdc\\xda\\\n\\x62\\x9b\\x5e\\x1f\\x52\\xb7\\x82\\x3b\\x86\\x98\\x14\\x16\\xa0\\x8f\\x13\\x80\\\n\\x13\\x52\\x9b\\x00\\x2c\\x13\\x75\\x78\\xba\\xae\\x1e\\x34\\x4c\\xaa\\x94\\xb7\\\n\\xb0\\x90\\xbc\\x9b\\x15\\x9a\\xf3\\x7a\\xe2\\x60\\x6e\\xb2\\x4d\\x05\\x74\\xc1\\\n\\xf9\\x10\\x54\\x90\\x50\\x64\\xcc\\x2d\\x43\\xa9\\x04\\xfa\\xb1\\x4b\\x4a\\x48\\\n\\xf4\\x60\\xc4\\xa2\\x1b\\xc7\\x0f\\xa5\\xa4\\x31\\x05\\x78\\x69\\x87\\x87\\xc5\\\n\\xac\\x79\\x32\\xa1\\x31\\x01\\xa9\\xaf\\xec\\x6b\\x96\\x5f\\x33\\x59\\x86\\x53\\\n\\x1d\\xa2\\x99\\x23\\xc2\\x1d\\x31\\xb5\\x0b\\x46\\xab\\x76\\x70\\x08\\xf9\\x15\\\n\\xe5\\xaf\\x26\\x21\\x14\\xa0\\x8b\\x70\\xa0\\x64\\x9d\\x46\\x15\\x04\\xe4\\x1f\\\n\\x84\\x6c\\x0a\\x1d\\x50\\x85\\x48\\xe5\\x04\\xc7\\x3a\\xad\\xd9\\xc2\\x18\\x4b\\\n\\xe0\\xd6\\x40\\xaa\\x59\\xb0\\x05\\x00\\xc8\\xdc\\x29\\x1c\\x69\\x37\\x46\\x51\\\n\\x6d\\x9e\\xee\\x52\\x2f\\x06\\x43\\x4f\\xaf\\x5d\\x39\\x51\\x5d\\xd3\\x33\\x8c\\\n\\x9b\\x8c\\x1e\\x75\\xa2\\xbc\\x06\\xd4\\x09\\x10\\x23\\xec\\x49\\xa7\\x59\\x63\\\n\\x59\\xad\\x95\\x24\\xd4\\xfa\\xdc\\x5e\\x0d\\x1c\\x00\\xd3\\x14\\xb4\\xe0\\x07\\\n\\x96\\x5e\\xfa\\x0d\\x42\\x28\\xfb\\x94\\x3c\\xa3\\x5a\\x38\\xea\\x58\\x88\\x0d\\\n\\xeb\\xa7\\x1f\\xa9\\x4b\\xd0\\x2e\\x2d\\x03\\x80\\xa9\\xc2\\x8e\\x93\\x50\\x41\\\n\\x03\\x52\\x92\\xb2\\x84\\xb2\\xce\\xa2\\xa3\\xa0\\x30\\x01\\xf7\\x2e\\x79\\x04\\\n\\x3b\\x37\\x79\\x7e\\x2c\\x83\\xe2\\xc3\\x2f\\x02\\x0e\\xe1\\x05\\xc2\\x51\\xf0\\\n\\x18\\x5b\\xfa\\xf2\\x58\\x88\\x6b\\x5e\\x46\\xab\\x35\\x86\\x08\\xa5\\xd8\\x42\\\n\\xf4\\xb2\\x65\\x0b\\xad\\x32\\x36\\x2d\\xe8\\x53\\xdc\\x01\\x97\\xa7\\xe2\\xca\\\n\\x16\\x50\\x0e\\x02\\x69\\x8b\\xbb\\xbd\\xd3\\x7a\\x0a\\xd7\\x42\\xb8\\x90\\x09\\\n\\x9e\\xdb\\x49\\x2a\\x28\\xb7\\x95\\x2e\\x2c\\x43\\x37\\x94\\x09\\x17\\x3f\\x16\\\n\\x15\\x1c\\x4f\\xe9\\x03\\xb3\\xad\\xb3\\xb8\\xf7\\x42\\xe2\\x0d\\x23\\x94\\x8a\\\n\\x9b\\xe4\\x32\\xdd\\x93\\x3d\\xa4\\x00\\x52\\xc6\\x15\\x63\\x35\\xd1\\x5e\\x50\\\n\\xdf\\x93\\x55\\xce\\x26\\x08\\x58\\x7a\\x03\\x72\\xcb\\x62\\x51\\x2c\\xd4\\x67\\\n\\x45\\x32\\xdf\\x57\\x8d\\x92\\x04\\x50\\xec\\xb5\\x16\\x3c\\x19\\x40\\x50\\x67\\\n\\x18\\x56\\x60\\x45\\x86\\x25\\x39\\x2a\\x16\\xdf\\x64\\x48\\x2d\\x52\\x95\\x15\\\n\\x2f\\x10\\x43\\x89\\x0b\\xc2\\x10\\xeb\\x06\\x32\\xf5\\xcf\\x1f\\x78\\xe1\\x00\\\n\\x28\\x0a\\x24\\xb7\\xd3\\xd3\\xe4\\xdd\\x07\\xa8\\xb4\\x1e\\xb4\\xe0\\x94\\x2f\\\n\\x55\\xf0\\xc0\\x1b\\x60\\x41\\x02\\x40\\xf0\\x32\\xbd\\xea\\x61\\xec\\x89\\x65\\\n\\x2a\\x52\\x6c\\x84\\xa7\\x47\\x87\\x38\\x08\\x1f\\x00\\x7e\\x4e\\x6b\\x6a\\xc5\\\n\\x12\\x00\\x43\\x79\\x48\\xcb\\xaf\\xb4\\x1d\\xef\\x06\\xee\\x01\\x22\\x47\\xb7\\\n\\x2b\\x40\\x8d\\x50\\xa0\\x75\\x88\\x7d\\x8e\\x11\\xd8\\x7e\\xdb\\x84\\x45\\xe4\\\n\\xbb\\xf0\\x08\\x6a\\x91\\x8b\\x50\\xe3\\x87\\x1f\\x47\\x96\\xd6\\x7f\\x25\\xc0\\\n\\x43\\x70\\x78\\xc7\\xa8\\x0c\\x6a\\xe9\\x24\\x00\\x13\\xc4\\xab\\x5b\\x61\\x6a\\\n\\x52\\x46\\x4e\\x4e\\xc8\\xc2\\x93\\x23\\xe3\\x8b\\xc6\\xef\\xf0\\xa2\\xa7\\x98\\\n\\x50\\x02\\x06\\x62\\xf1\\x9e\\x11\\x38\\x3b\\x30\\xc0\\x34\\x15\\x20\\x08\\xf1\\\n\\x5a\\xe4\\xf1\\xeb\\x63\\x52\\x49\\x50\\x88\\x18\\x8a\\x72\\xf2\\x27\\xcf\\x55\\\n\\xda\\xd6\\xe8\\x32\\xb7\\x47\\x61\\x13\\xa2\\xb7\\xc8\\x14\\xd2\\x23\\x9e\\xb1\\\n\\x66\\xf8\\x08\\x70\\xbc\\xa1\\x6d\\x37\\x8d\\xdb\\x12\\xda\\x94\\x8d\\xca\\x58\\\n\\xf3\\xc3\\x3f\\x2e\\x14\\xd0\\x77\\xde\\xb2\\x81\\xa5\\xe2\\xc8\\x1a\\x0a\\x95\\\n\\x5c\\x9c\\x2f\\x11\\xab\\x3c\\xa4\\x26\\x82\\xaa\\xdc\\x4d\\xdd\\x50\\x0f\\x8a\\\n\\xbf\\x9c\\xe6\\x9e\\x97\\x10\\xce\\x3a\\x8a\\xc4\\x15\\xb6\\x9a\\xfa\\x15\\xab\\\n\\x4a\\x24\\x2b\\x80\\x48\\x68\\x3c\\x60\\x66\\x3e\\xab\\x05\\x74\\x08\\x4d\\xa4\\\n\\x64\\xcd\\xcd\\xeb\\x90\\x51\\xa1\\x0b\\xe8\\x08\\xab\\x02\\xcb\\x15\\x91\\x99\\\n\\x41\\x07\\xa0\\xa8\\xb9\\x13\\x04\\x8e\\xe5\\xb2\\xf3\\xd6\\x70\\x82\\x7c\\xe6\\\n\\x1e\\xd9\\xd0\\x90\\x5c\\x2c\\x7d\\xd5\\x41\\xde\\x32\\x02\\x76\\xeb\\xe9\\x38\\\n\\x03\\x3d\\xca\\xcd\\x83\\x48\\xd3\\x18\\x35\\xcd\\x47\\x2d\\x15\\xcd\\xa2\\x9c\\\n\\x69\\xe5\\x92\\x85\\x4a\\x8d\\x24\\x48\\x58\\xd4\\xe1\\x41\\x63\\x71\\xc1\\xb6\\\n\\x03\\xae\\xb2\\xae\\x33\\xfa\\x98\\x3c\\x05\\xa4\\x82\\x96\\x89\\x54\\xb2\\x47\\\n\\x33\\x12\\x7e\\xd0\\x16\\xcf\\x92\\xf8\\x4a\\x03\\x92\\x26\\xaa\\x7a\\x70\\x53\\\n\\x72\\x88\\xbe\\xb5\\x5a\\x2f\\xa1\\x13\\xc6\\x0c\\xe4\\x95\\x18\\x2c\\x4c\\xdf\\\n\\xd7\\x38\\xd7\\x9a\\xf7\\x31\\x05\\x58\\x3f\\x07\\xb5\\x31\\x8c\\xd3\\x0d\\xea\\\n\\x97\\x49\\x03\\xcc\\x81\\x26\\xe1\\x4d\\x25\\xab\\x05\\x47\\x29\\xeb\\xb3\\xea\\\n\\xcb\\x94\\x10\\x84\\xb5\\xe0\\xc2\\x3c\\xac\\xd0\\x7c\\xf9\\xce\\x42\\xa1\\x2a\\\n\\x6a\\x21\\x2c\\x3e\\xa1\\x4e\\xa3\\xb3\\x35\\x71\\x12\\x91\\x91\\x85\\x33\\x43\\\n\\xa0\\x31\\xd9\\xeb\\x58\\x8a\\xaa\\x86\\x0d\\x76\\x2b\\x33\\xbe\\x09\\x47\\x2f\\\n\\x20\\x1d\\x72\\x2b\\xa0\\x47\\xfb\\x3c\\x64\\x39\\x5a\\x79\\x42\\x66\\x60\\xbc\\\n\\xa5\\x7f\\x24\\xb7\\x7a\\x11\\x6a\\xa3\\xb1\\xa8\\x16\\x65\\xd0\\xeb\\x40\\xd9\\\n\\x61\\xa6\\x92\\x59\\x32\\x0b\\xb2\\xa5\\xea\\x6d\\xb7\\x58\\xc9\\x5a\\x52\\x31\\\n\\xe9\\x0f\\x40\\xa1\\x1c\\x8f\\xcd\\x68\\x7d\\xd5\\x02\\x80\\x89\\x49\\x18\\x04\\\n\\x6f\\x19\\x0d\\xce\\x83\\x2c\\xe5\\xb4\\xc2\\xd2\\xbc\\x28\\x2a\\x2d\\x85\\x4d\\\n\\x9b\\x81\\x12\\x6c\\x81\\xa4\\xd7\\xcc\\x5c\\x28\\xd4\\x8c\\x95\\x41\\xc6\\xbc\\\n\\x5b\\x03\\x24\\x60\\x1e\\x30\\x5b\\x9b\\xc1\\xa6\\xd0\\x15\\xf9\\x87\\xa0\\x94\\\n\\x05\\xa3\\x7b\\x13\\x95\\x30\\x2f\\x0c\\x5c\\x35\\x71\\x42\\x32\\x11\\x42\\x1f\\\n\\x4a\\xa2\\x88\\xa4\\x15\\x49\\xe8\\x3d\\x43\\x81\\x51\\xc0\\x11\\xe8\\x84\\xa6\\\n\\xea\\xb1\\xd1\\xcc\\x25\\xe6\\x50\\x86\\x04\\x15\\x43\\x9a\\x04\\x6b\\x31\\xab\\\n\\x41\\x06\\xa7\\x0a\\x1e\\x22\\xa3\\x07\\xec\\x17\\xbb\\x5a\\x84\\x71\\xd4\\x95\\\n\\xc8\\x23\\x5a\\x1f\\xd5\\x22\\x4a\\x7c\\x1f\\x0d\\x3c\\x87\\x89\\xa2\\x43\\x8c\\\n\\x82\\xb0\\x50\\x34\\xf8\\x95\\xdd\\x47\\xfb\\x96\\x46\\x9d\\x44\\x94\\x00\\x24\\\n\\xdc\\x7c\\xf4\\xa1\\x0e\\x48\\xb9\\xa5\\xa0\\x18\\x85\\xa7\\x9c\\x41\\xf5\\x1f\\\n\\x40\\x35\\x10\\x45\\x46\\x76\\x3b\\x52\\x57\\x08\\xa0\\x1b\\x1f\\xda\\x72\\x6f\\\n\\x27\\xb8\\xa8\\x2d\\x5a\\xa7\\x4a\\x7d\\x42\\xbb\\xb8\\xba\\xcc\\x56\\x16\\x62\\\n\\x72\\x24\\xcf\\x9f\\x6a\\x51\\xff\\x00\\xa3\\xf0\\xaa\\x76\\xf6\\x26\\x7b\\xe9\\\n\\x53\\x86\\x37\\xfa\\xbc\\x6a\\xe7\\xe0\\x8a\\xad\\x96\\xc2\\x9a\\xe0\\x0f\\x49\\\n\\x65\\x95\\xf8\\x69\\x00\\x68\\xe7\\x11\\x8b\\xc5\\xc2\\x3b\\x25\\x7d\\x50\\x29\\\n\\x10\\xb7\\xbb\\x47\\xa4\\xb1\\x70\\x5e\\xab\\x25\\xb9\\x97\\x12\\x2d\\x50\\xcc\\\n\\x37\\x71\\x50\\xeb\\x90\\xa2\\xa0\\x85\\x99\\xce\\xb4\\x3a\\xe7\\xe0\\x3c\\x11\\\n\\x31\\xd1\\x5c\\x17\\xef\\xfd\\x3a\\x98\\x05\\x89\\xe2\\xbd\\x83\\x51\\x8a\\x4c\\\n\\x31\\xee\\x50\\xe2\\x21\\x68\\xed\\x44\\x88\\x48\\x1e\\x9d\\x90\\x4e\\xbe\\x5b\\\n\\x5b\\x8c\\x43\\xbd\\x06\\x18\\xab\\x21\\x00\\x03\\x26\\x96\\x3a\\x42\\xed\\x02\\\n\\x88\\xd3\\xc2\\xbd\\xb6\\xd1\\xa0\\x60\\x2e\\x81\\x39\\x86\\xa8\\x6f\\x14\\x07\\\n\\x88\\x88\\x06\\xa8\\x84\\xdc\\x47\\x40\\x08\\x2e\\xf4\\x4d\\xcf\\x30\\xc6\\xb2\\\n\\x79\\x29\\x61\\xe6\\x80\\xf0\\x1d\\x9a\\xaf\\x1a\\xc5\\xee\\x91\\xee\\x91\\xd8\\\n\\xb3\\xd9\\x6e\\x12\\x30\\x29\\x9c\\x14\\xa4\\xf2\\x2f\\x60\\xae\\xa1\\x07\\xa6\\\n\\xad\\x71\\xc0\\xba\\x65\\x55\\x44\\x2d\\xbc\\xc6\\x4f\\x65\\x98\\x85\\xa9\\xcc\\\n\\x5d\\x20\\xb5\\x1b\\xc8\\x4e\\x28\\x10\\xad\\x22\\x00\\x38\\x63\\xe1\\x7c\\xeb\\\n\\x62\\xf5\\x0d\\x6a\\x3c\\x46\\x8f\\xba\\xc6\\xba\\x20\\x98\\xf0\\x20\\xd2\\xb9\\\n\\x7b\\x21\\xaf\\xff\\x00\\x54\\x41\\x22\\x99\\x0f\\xf0\\x7d\\x8e\\x46\\x22\\x00\\\n\\xbb\\x44\\xa5\\xa6\\x4a\\xd3\\x4c\\x2a\\xa4\\x04\\x78\\x96\\x7c\\xd8\\x29\\x44\\\n\\x01\\x62\\x64\\xa7\\x5e\\x45\\x21\\x59\\xbc\\xeb\\xa2\\xa8\\x55\\x53\\x10\\xc6\\\n\\xa3\\xaf\\xbe\\x2f\\x0b\\xe2\\xe3\\x13\\x03\\xa8\\x5f\\xc0\\x11\\x5a\\x75\\x52\\\n\\x21\\xed\\x80\\xb2\\x85\\x83\\x3c\\xe3\\x67\\xa5\\x35\\x8b\\xce\\x04\\x10\\x01\\\n\\xc1\\xb3\\xf0\\x4b\\x66\\x98\\x6e\\x6c\\xda\\xe4\\xdc\\xfb\\x75\\xcc\\xab\\x51\\\n\\xf1\\xf8\\x21\\x08\\xb0\\x70\\xb2\\x49\\x07\\x16\\x2e\\x27\\xb5\\x52\\xf3\\xac\\\n\\x24\\xf1\\x8d\\x43\\x94\\x30\\xdf\\x97\\xdc\\x75\\x2a\\x04\\x48\\x9e\\x27\\x4e\\\n\\xb4\\x24\\x42\\xd5\\x78\\x4d\\x89\\xc3\\x39\\xd0\\x69\\xb6\\x10\\xe8\\x65\\xb3\\\n\\x87\\xb5\\xe2\\x22\\xe6\\x09\\x6c\\x35\\x14\\x01\\x40\\x35\\x1a\\x2e\\x57\\x23\\\n\\x1b\\xb1\\x24\\x0a\\x4c\\xd4\\x97\\xf4\\x72\\x64\\xef\\xc3\\xed\\x00\\xc9\\xa1\\\n\\x40\\x0f\\xc1\\x8e\\xaf\\x5e\\xc5\\xfe\\x02\\xe8\\x08\\xa4\\x09\\xc2\\xc2\\x99\\\n\\xaa\\xb6\\xf3\\x0d\\x92\\x42\\x36\\xe5\\xaa\\x32\\x31\\x91\\x12\\xd0\\x85\\xe7\\\n\\x1b\\x22\\xe6\\x74\\x23\\x01\\x98\\xe8\\xe0\\x15\\xb3\\x40\\x1b\\x30\\x5c\\xc6\\\n\\x43\\x01\\xd1\\xa5\\x36\\x3a\\xc4\\x2f\\x6d\\x8a\\x47\\x39\\x00\\xb5\\x49\\x52\\\n\\x2f\\x16\\x04\\x01\\x5c\\x37\\x44\\x87\\x44\\x53\\x0a\\x10\\xad\\x9e\\x16\\xa4\\\n\\x7e\\xd2\\xa6\\x15\\x89\\x74\\x11\\xcd\\x70\\x20\\x09\\x81\\x32\\x8d\\x74\\x3b\\\n\\xd1\\x6c\\x33\\xf2\\xd0\\xa0\\x6c\\x8c\\x00\\x77\\xc8\\x65\\x8d\\x9b\\x23\\x5d\\\n\\x0f\\x98\\x0d\\xec\\xbf\\x73\\xd3\\xf2\\xae\\x85\\x53\\xb9\\x00\\xcf\\x2b\\xcb\\\n\\x7a\\x19\\x0d\\xaa\\x47\\x3f\\x2e\\x0e\\x70\\x48\\x01\\x17\\x25\\x02\\xdd\\xaf\\\n\\xb9\\x26\\xe6\\x5b\\x71\\x0a\\xba\\xa9\\x90\\xce\\xca\\x8c\\x96\\xf2\\xa2\\xa4\\\n\\x70\\xc8\\xff\\x00\\xd4\\xe5\\xc8\\xdb\\x85\\x06\\xe2\\x48\\x83\\x77\\x73\\x71\\\n\\x68\\x5f\\xb8\\xb7\\xc1\\x1c\\x0e\\xa0\\x85\\x2a\\x7e\\x6d\\x0d\\x65\\x86\\xe4\\\n\\x42\\x03\\x28\\xc4\\x3f\\x2a\\x5e\\xc3\\x32\\x8b\\x14\\x4e\\x84\\xd1\\xbd\\x0b\\\n\\x56\\x21\\xcb\\x4a\\xb5\\x82\\xee\\xa9\\x0e\\x37\\x05\\x47\\x61\\x90\\xe0\\x3d\\\n\\xf0\\x0d\\x8a\\x28\\xc6\\x20\\x7f\\x86\\xb7\\xab\\x3c\\x16\\xf5\\x52\\x1a\\xc9\\\n\\x64\\x81\\x7d\\x3b\\x17\\x60\\x98\\x26\\x80\\xc5\\x54\\x49\\xe0\\xff\\x00\\x73\\\n\\xc9\\x26\\x25\\x1f\\x40\\x31\\x38\\x20\\xc8\\xb0\\x01\\x80\\x81\\x09\\x27\\x83\\\n\\x28\\xc4\\xf2\\xbc\\x28\\xad\\x63\\x17\\x02\\xae\\x12\\xfd\\xe8\\x6e\\x12\\x4e\\\n\\xe2\\xc2\\x57\\x51\\x4f\\xe4\\xc6\\x12\\x30\\x99\\xd3\\xc2\\x84\\xed\\xac\\xe4\\\n\\x9a\\x77\\x5a\\x7b\\x76\\xde\\xe4\\x5d\\xc2\\x12\\x5d\\x1f\\x72\\xd7\\x7a\\x0e\\\n\\x5d\\x26\\x59\\x2f\\x58\\xb1\\x3e\\x02\\x0c\\x9e\\x0f\\x2f\\x77\\x48\\x98\\x4b\\\n\\xc1\\x90\\xb5\\x70\\x62\\xb6\\x93\\x06\\x18\\x03\\xb1\\x16\\x1a\\x0b\\x0b\\x82\\\n\\xba\\x51\\x03\\x48\\xa1\\x80\\x36\\xf2\\xc8\\x3b\\x7e\\x90\\xeb\\x64\\xc3\\x09\\\n\\x1f\\x0f\\xa0\\x3b\\x2e\\x0b\\x11\\x19\\x04\\xda\\x3a\\x49\\x88\\x5f\\xf7\\xa1\\\n\\xee\\xed\\x9d\\x6d\\x21\\x25\\x55\\x4d\\x4a\\x75\\x52\\xe4\\x77\\x65\\xd2\\x01\\\n\\xb6\\x19\\xbb\\x3d\\x10\\x8a\\x62\\x89\\xd1\\x98\\x71\\x01\\x30\\x1c\\x01\\x21\\\n\\xa0\\x36\\x6e\\xc2\\x1e\\x8a\\x7c\\x44\\x20\\x8a\\x42\\x4b\\x5b\\xcc\\x7e\\x84\\\n\\x84\\x8a\\xab\\xa4\\x6c\\x56\\xe3\\x3e\\x84\\x9c\\x4b\\x19\\x40\\xc9\\x0a\\x05\\\n\\xdb\\xa4\\x1b\\x13\\x3c\\x4c\\x54\\x11\\x62\\xc2\\x84\\xb8\\x62\\x04\\x5b\\x2a\\\n\\xd6\\x1a\\x18\\x42\\xa0\\x03\\x04\\x17\\x03\\xf6\\x98\\xcb\\x9b\\x40\\x28\\xfe\\\n\\x8a\\x70\\xb5\\x93\\x4a\\x0c\\x23\\xe5\\xd5\\x37\\xfa\\xd5\\x2d\\x63\\xb3\\x23\\\n\\x38\\x84\\x35\\xd5\\x45\\x2e\\xc0\\x34\\xa2\\x1d\\x28\\x0f\\x17\\x36\\x44\\x38\\\n\\xd6\\x45\\xa7\\x16\\x4b\\x02\\xe1\\x80\\x16\\xce\\x94\\x39\\x75\\x93\\x92\\x5c\\\n\\x07\\x15\\x4a\\x41\\x03\\x11\\x9b\\x5c\\x3c\\x3a\\xb9\\xfa\\xb6\\x79\\xd1\\xfd\\\n\\xc1\\xfd\\x4e\\x6a\\xf8\\x48\\xe4\\x9d\\xcc\\xa5\\xd8\\x35\\xee\\xcb\\x09\\x8e\\\n\\xb7\\x90\\xbc\\x88\\x26\\x36\\x9d\\x38\\x00\\xe9\\x4a\\x8b\\x06\\x82\\xa2\\x0f\\\n\\x6d\\x6f\\x04\\x4e\\x40\\xc3\\x56\\x04\\x23\\x38\\x6c\\xe1\\xec\\xcb\\xc6\\xb0\\\n\\xc4\\xa8\\x68\\x9f\\x4a\\x2e\\xe6\\xf0\\x44\\xf1\\xef\\x32\\x70\\xc3\\x84\\xcf\\\n\\x8a\\xab\\x92\\x45\\x59\\x1d\\x97\\x38\\x7a\\x31\\x8b\\xbe\\xbb\\x75\\x59\\x80\\\n\\x20\\x03\\xda\\x47\\xc0\\xec\\xc5\\xa8\\x39\\x8c\\x8f\\xcc\\x7b\\x0b\\x9f\\xd4\\\n\\xd0\\x0e\\x2d\\xbd\\x72\\x48\\xd7\\xa2\\xbf\\x62\\xca\\x8a\\x41\\xee\\xd6\\x57\\\n\\x75\\x28\\x0b\\x74\\x08\\x08\\x03\\x51\\x30\\x50\\x91\\x30\\x0a\\x30\\xa2\\x75\\\n\\x37\\xf6\\x11\\xe5\\x60\\x8b\\x8d\\xe2\\x23\\x0b\\x84\\x0f\\xea\\xd2\\xba\\x60\\\n\\xe0\\x9e\\xd8\\x8a\\x86\\xe4\\xa4\\x40\\x24\\x00\\xe0\\x73\\xd4\\x22\\x32\\x95\\\n\\x15\\x80\\x00\\xb8\\xb9\\xa4\\x76\\x77\\x03\\x00\\xd7\\x10\\x07\\xbb\\xac\\x68\\\n\\xa4\\x4f\\x06\\x86\\xd8\\xfa\\xb5\\x7e\\x02\\xd0\\xba\\x63\\x49\\xce\\x45\\xb5\\\n\\x95\\x99\\x6b\\x66\\x5f\\x49\\x6f\\x0e\\x91\\x37\\x02\\x62\\x62\\x14\\x04\\x2e\\\n\\x90\\xf2\\xa0\\x09\\xa4\\x74\\x35\\x06\\x9d\\x26\\xd0\\x8b\\x24\\x79\\x70\\xe8\\\n\\x67\\x12\\xf4\\x0a\\xca\\xe2\\xcf\\x7f\\x12\\x94\\x4b\\x7b\\x1b\\xae\\xfc\\x8a\\\n\\x76\\x0c\\x0a\\xde\\x3b\\x0c\\x3c\\x88\\xf8\\x84\\xe9\\xf4\\x3f\\x47\\xfb\\x93\\\n\\xbe\\x0c\\x34\\xa0\\xd4\\x5f\\x61\\xaa\\x85\\x39\\x8d\\x52\\x44\\xe8\\xef\\xd6\\\n\\x92\\x01\\x4e\\x2e\\xe9\\xbd\\x05\\x93\\x24\\xa3\\x36\\x63\\xb0\\x88\\x20\\x71\\\n\\x0e\\x98\\xbe\\x6f\\x89\\x04\\xb2\\xbe\\x1d\\xac\\x07\\xe2\\x3f\\xa7\\x68\\x38\\\n\\x21\\x17\\x75\\xd0\\xdd\\x8c\\xf2\\x7f\\xab\\x8d\\x8b\\x89\\x16\\xab\\x40\\x2f\\\n\\x05\\xe8\\xe7\\x22\\xa4\\x49\\xec\\x14\\x45\\x80\\xa0\\x20\\x87\\x12\\xe6\\x13\\\n\\xb7\\x46\\xcf\\x15\\x66\\x0e\\x78\\xec\\x72\\x4e\\x53\\x70\\x87\\xa9\\x55\\x34\\\n\\xd4\\x22\\x9b\\x3e\\x33\\x27\\x4a\\xa0\\x17\\xc8\\x81\\xe1\\x16\\x9d\\x17\\x01\\\n\\xe0\\x13\\x81\\x5f\\xf2\\xf7\\xa8\\x25\\x28\\x64\\x42\\x8f\\x08\\x16\\x80\\x2f\\\n\\x47\\x90\\xbe\\x80\\x02\\x90\\xd4\\x2f\\x82\\x90\\x43\\x8e\\x68\\x20\\x43\\x86\\\n\\x10\\x66\\x09\\xd9\\xd4\\xb8\\x03\\x86\\x87\\x19\\xaf\\xe8\\x48\\x6d\\x37\\x3a\\\n\\xad\\x53\\x60\\xda\\x3a\\xdd\\x7a\\x1a\\x69\\xc9\\x0c\\x80\\x65\\x96\\x4c\\x40\\\n\\x47\\x78\\xf1\\x58\\x50\\xc6\\xdf\\xba\\x28\\x8a\\x0a\\x40\\x3b\\x21\\x3c\\x6e\\\n\\xd3\\x81\\x18\\xc1\\x84\\x14\\xcc\\x0b\\xe1\\x7d\\x50\\x2c\\xe4\\xf9\\xbd\\x96\\\n\\x27\\x9b\\x39\\x16\\xe0\\x03\\xce\\xe5\\xe8\\x02\\xc8\\x68\\x38\\xaa\\x38\\x50\\\n\\xb1\\x4a\\x17\\x7e\\xb4\\xdb\\x1c\\x8a\\x15\\xb5\\xca\\x29\\xf9\\x65\\x10\\x30\\\n\\x3b\\xdc\\x08\\x94\\x54\\xfb\\x68\\x01\\x6e\\xae\\x78\\xc6\\x83\\xd0\\x8f\\x0f\\\n\\x50\\x22\\x19\\x1b\\x0e\\x4c\\x13\\x85\\x7f\\xd0\\xbc\\xac\\xb2\\xff\\x00\\xcf\\\n\\xd8\\x0d\\xe8\\x28\\xb4\\x4f\\x90\\xe4\\x46\\xa4\\x90\\x0e\\x76\\x53\\x65\\x49\\\n\\x6a\\x09\\x0a\\xb1\\x80\\x0e\\xb1\\xd3\\x76\\x86\\x56\\x9b\\x6c\\x55\\x62\\xf1\\\n\\x6a\\xf9\\x65\\xc5\\x41\\x76\\xac\\x14\\x00\\x46\\x2a\\x95\\x49\\x00\\xb9\\xc5\\\n\\x08\\x17\\x82\\xcb\\xc4\\x82\\x56\\x33\\x05\\xd0\\x93\\x8e\\x0a\\xb1\\x55\\xbe\\\n\\x84\\xf6\\x94\\x88\\x1c\\x0e\\xfd\\xfb\\x44\\x71\\xd9\\xf8\\x43\\xc9\\x51\\xcc\\\n\\xcc\\x8a\\xdc\\x31\\x62\\x87\\xe8\\x99\\x19\\xcd\\x72\\x2b\\x4c\\x24\\x5a\\x58\\\n\\xb6\\xf8\\xb6\\x1a\\xd5\\x0d\\xb9\\xa7\\xb1\\xca\\x38\\x80\\xf8\\xc2\\x2e\\xc5\\\n\\x20\\x88\\x28\\x70\\x22\\xf5\\x80\\xe1\\xcd\\xc0\\x7b\\x53\\x7d\\x7a\\x9c\\x65\\\n\\x71\\x1c\\x1c\\x69\\x9b\\x42\\x47\\x85\\xb4\\x02\\x90\\xa5\\xf7\\xc6\\x54\\x21\\\n\\x15\\x60\\x50\\xa8\\x2a\\x0b\\x85\\xf1\\xc1\\x47\\x6f\\x99\\x42\\x5d\\x6e\\x71\\\n\\xae\\xb5\\xd8\\xe9\\x90\\x97\\xdc\\x47\\x10\\x72\\xeb\\x30\\xed\\x7c\\x6a\\x49\\\n\\xbe\\xd4\\x24\\x96\\x8e\\x5a\\x3c\\x8a\\x42\\x96\\xc9\\x55\\x18\\xf8\\x1e\\x42\\\n\\x02\\xe2\\x8c\\x8b\\xac\\xe6\\xc0\\xc1\\x4f\\x7d\\x9d\\x68\\x5e\\x46\\x5d\\x80\\\n\\x10\\x1d\\xbd\\x42\\x90\\xc6\\x93\\x91\\x96\\x52\\x50\\x80\\x19\\x15\\x35\\x06\\\n\\x23\\x21\\x6d\\x6a\\x05\\x9e\\x34\\x2f\\x9c\\x11\\x5c\\xb8\\x1d\\x46\\x51\\x40\\\n\\xd9\\x53\\x95\\x7b\\x77\\x4a\\x0d\\x5b\\x02\\x22\\x44\\x9c\\x80\\x9c\\x22\\xa6\\\n\\xd4\\xa6\\x29\\x5a\\x42\\x33\\x28\\x32\\x23\\xd5\\xa8\\xca\\x8b\\xce\\x7f\\xce\\\n\\xae\\xd0\\x6a\\xc7\\x18\\x8c\\xc8\\x23\\x9d\\x44\\x58\\x6a\\x23\\x89\\x1e\\x81\\\n\\xde\\x47\\x37\\x67\\xe7\\x50\\x6e\\x49\\x19\\xc3\\x76\\xf7\\x29\\x6c\\x8f\\x4e\\\n\\x8c\\xe4\\x31\\xf5\\xf3\\x0d\\x74\\xd8\\x2d\\x1a\\x08\\x91\\x23\\xe1\\x50\\x23\\\n\\x18\\x4b\\x24\\x8e\\xf1\\x42\\x49\\x33\\x51\\x73\\xf6\\x1a\\x87\\x79\\x89\\x96\\\n\\xfd\\x49\\xbe\\x7b\\x2c\\x05\\xdc\\x12\\xf0\\x1e\\xc2\\x7c\\xe6\\x93\\xf0\\x23\\\n\\xa2\\xae\\x03\\x59\\xc0\\x66\\x8a\\x12\\xd5\\x34\\x37\\xaf\\xb6\\x84\\xc3\\xd0\\\n\\x3b\\x03\\x0a\\xe9\\xc0\\x9a\\x86\\x0d\\x88\\x80\\xe3\\x6c\\x0b\\x8c\\xe3\\x62\\\n\\x4c\\xcb\\xb1\\x1e\\xa0\\x28\\xe5\\xb0\\x7d\\xdd\\xa6\\x10\\xd7\\x96\\x28\\xeb\\\n\\xc8\\x3a\\x13\\xa5\\x3e\\x2f\\x04\\x5f\\x9c\\xa2\\x20\\x9b\\x5c\\x30\\x15\\x58\\\n\\x7f\\xd7\\x30\\xb1\\xb4\\xd6\\x80\\x09\\x1e\\x11\\x98\\x86\\x26\\x16\\x66\\x3a\\\n\\x20\\x8e\\x11\\x61\\x85\\x3f\\x64\\xbc\\xb7\\x73\\xbd\\xe4\\x02\\x2f\\x44\\x56\\\n\\xf0\\x57\\xd5\\x2c\\x2a\\x15\\xde\\xb6\\x9c\\x89\\x4a\\x0e\\x21\\x02\\x76\\x1c\\\n\\x4a\\x8a\\x89\\x85\\x3d\\x39\\x96\\x11\\x2e\\xe2\\x07\\x26\\x84\\xdc\\xba\\x92\\\n\\x3d\\xfe\\x06\\x11\\x13\\x12\\x00\\xe4\\x70\\x7f\\x95\\x66\\x28\\x40\\x31\\x04\\\n\\x12\\x2c\\x81\\xb1\\x6e\\x8c\\x6f\\x33\\x36\\x41\\x81\\xbb\\x1b\\xbf\\x1b\\x78\\\n\\x55\\x90\\x0d\\x68\\x38\\xc4\\x16\\xa8\\xd4\\x70\\x7f\\xc6\\x22\\x23\\x85\\xc0\\\n\\x41\\xa9\\x3e\\x29\\xa4\\x89\\x60\\x9d\\x20\\x77\\x67\\x18\\xdd\\xb2\\x95\\xf9\\\n\\xa8\\x28\\x23\\xc0\\x0f\\xa8\\x9d\\x68\\x9f\\x04\\x1e\\xa6\\x0a\\x95\\x35\\x00\\\n\\x29\\x46\\x4b\\x8d\\x6b\\xdb\\x80\\x51\\x44\\x12\\x88\\xc2\\xa3\\x80\\x40\\xa8\\\n\\x8c\\x43\\x4f\\x16\\x10\\x14\\xc8\\x0c\\x3f\\xc5\\x52\\x19\\x21\\xdc\\xa6\\x83\\\n\\x52\\xb0\\x39\\x07\\x11\\x34\\x2a\\xc1\\x61\\xa4\\x76\\x21\\x8e\\xa0\\x12\\xbd\\\n\\x38\\x4a\\x22\\x30\\xd0\\x43\\x66\\x71\\x5a\\x35\\x70\\x34\\xf0\\x85\\xd3\\x21\\\n\\xa4\\x48\\x8c\\xe1\\x31\\x30\\x5e\\x0a\\xd8\\x0b\\x6d\\x3d\\xa5\\xc1\\xa7\\x82\\\n\\xc1\\xcb\\x67\\x25\\x45\\x60\\x7d\\xb5\\x10\\x91\\xde\\x55\\x84\\x56\\xb9\\xc3\\\n\\xa5\\xe4\\x38\\x2e\\xe8\\x43\\xd6\\x29\\xc6\\x2d\\x40\\xd2\\x7c\\xbd\\xe4\\x08\\\n\\x2f\\x53\\x01\\x1a\\x80\\xcd\\x6d\\x6d\\x4f\\x62\\x2f\\x66\\xb8\\x78\\x0f\\xb0\\\n\\x31\\x52\\x2c\\xd3\\xc7\\x88\\xb9\\x4c\\x2a\\x41\\x33\\x91\\x36\\x87\\x20\\xc6\\\n\\xa5\\xd6\\x4b\\xe0\\xba\\x94\\x36\\x86\\x7c\\xbc\\xa6\\x99\\xaa\\xf3\\x05\\xb9\\\n\\xd8\\xbe\\x19\\x59\\xde\\x08\\x39\\x8c\\x27\\x09\\x8c\\x92\\x4e\\x08\\x72\\xe4\\\n\\x46\\xc9\\xc6\\x2c\\x5a\\x88\\xf6\\xde\\x42\\xc4\\x6b\\x11\\x2c\\x22\\x26\\x1b\\\n\\xc5\\xc4\\x61\\xb2\\xf3\\xbc\\x35\\x24\\xaa\\x71\\x02\\x0c\\x09\\x04\\x2b\\xba\\\n\\x02\\xe9\\xc0\\xa1\\xe1\\xe3\\x6e\\x56\\x50\\x12\\xce\\x2b\\x90\\xc4\\xca\\xc0\\\n\\xcc\\xfa\\x05\\x88\\xba\\x1d\\xc8\\xea\\xb7\\xb2\\xfb\\x9a\\x80\\x0c\\x08\\x07\\\n\\xc2\\x84\\x62\\x3e\\x05\\x71\\xca\\x42\\x3a\\xe4\\x05\\xe5\\x21\\xba\\xff\\x00\\\n\\x8b\\x4e\\xe8\\x91\\xdc\\x2c\\xa2\\x58\\x54\\x6a\\x3d\\xdb\\xfc\\xc4\\x38\\x17\\\n\\xb9\\x5f\\x1a\\x0c\\x57\\xa0\\x89\\x7c\\x00\\xb5\\x40\\xc5\\x42\\x73\\x74\\x8c\\\n\\x30\\x48\\x32\\x10\\x22\\x3d\\xf2\\x09\\x08\\x31\\xc7\\x0d\\x41\\x61\\x42\\x01\\\n\\xf6\\x15\\x6a\\xa1\\x18\\x15\\xf0\\x18\\x00\\x0a\\x96\\x49\\x47\\x94\\xfa\\x9b\\\n\\x5e\\x89\\x02\\xf6\\x13\\x4a\\x45\\x7f\\x35\\x59\\xae\\x78\\x70\\x16\\x68\\x6e\\\n\\x01\\x51\\x11\\xac\\x00\\x21\\xea\\x33\\xd9\\x4d\\x36\\x65\\xa9\\xe5\\x2a\\xed\\\n\\x22\\x76\\xdf\\x06\\x73\\xf6\\x1a\\x62\\x59\\x31\\x38\\x76\\xbb\\x2e\\x86\\xa7\\\n\\x4e\\x3a\\xa7\\xb4\\x4b\\x4f\\xe8\\x91\\x12\\xc0\\x63\\xce\\x88\\x19\\x48\\xc5\\\n\\x28\\xd8\\x58\\x48\\xab\\xc0\\x5e\\x4d\\x24\\x5b\\xce\\x5b\\x11\\x0d\\x95\\x65\\\n\\x55\\x24\\x8b\\xa8\\x88\\x2a\\x5e\\x8e\\x53\\x69\\x08\\xe4\\xa4\\x29\\xc0\\x0b\\\n\\xd2\\xb8\\x4b\\x4d\\xa5\\x0c\\xbd\\x18\\xef\\x55\\xef\\x36\\xf4\\x00\\x50\\xe4\\\n\\xca\\x2e\\x8d\\x24\\xbc\\xad\\xda\\x80\\xf3\\xe3\\x0a\\x0d\\xd4\\x4d\\x38\\x9e\\\n\\xa4\\x48\\xc4\\xd2\\x4b\\x6f\\x24\\xc7\\x9c\\x82\\x33\\xf6\\xa0\\x0b\\xb5\\x97\\\n\\xa0\\x8e\\x57\\x1c\\xa2\\x07\\xa5\\xbd\\x71\\x14\\x4c\\xe1\\x47\\x5d\\xf3\\xa0\\\n\\xf7\\x26\\x11\\x58\\x75\\xea\\x13\\xe1\\xe5\\x64\\x54\\xd4\\x00\\xab\\xd3\\xec\\\n\\x78\\x28\\xde\\x72\\x54\\x18\\x60\\xbe\\xe3\\x4e\\xd2\\x04\\x24\\x40\\x4f\\xd0\\\n\\x91\\x61\\xa9\\x42\\x0c\\xa6\\x8e\\x28\\x55\\x87\\x03\\xf4\\x45\\x17\\xc3\\x03\\\n\\x01\\x94\\xb8\\xbc\\x79\\x8a\\x01\\x39\\x88\\xc1\\xe1\\x08\\x2f\\x44\\x06\\xbc\\\n\\x9d\\x4f\\x80\\x45\\xa1\\xd3\\xd4\\xb0\\x10\\xaa\\x06\\xa3\\xa4\\xb6\\x97\\x5c\\\n\\x44\\xfe\\x9d\\x74\\x16\\x46\\x49\\x9c\\xd5\\xd1\\x6d\\xc6\\x24\\x8a\\xc5\\x51\\\n\\x2b\\x82\\x82\\xf8\\x8e\\x67\\x20\\x54\\x01\\x8b\\x08\\x39\\x5a\\x7f\\x32\\xdf\\\n\\x5c\\x19\\x26\\x4f\\x5c\\x76\\x63\\xa3\\xdc\\x3a\\x87\\xd6\\x88\\x15\\xc7\\x31\\\n\\xc8\\xf0\\x0d\\xa7\\x41\\x56\\xb5\\x74\\xcb\\x32\\x1b\\x9f\\x35\\x04\\x50\\x2d\\\n\\x67\\x05\\xa6\\x91\\x3c\\x7d\\x8a\\x22\\x12\\x0c\\xea\\x2a\\x07\\xdd\\x0b\\x8d\\\n\\xf2\\xdf\\x9a\\x5a\\x24\\x37\\xab\\xba\\x5e\\x97\\xf5\\x0a\\x34\\x03\\x46\\x70\\\n\\xad\\x55\\xa4\\xe6\\xbc\\x78\\x40\\x3d\\xc2\\x6d\\x63\\xe5\\x00\\x0c\\x02\\xe8\\\n\\xd9\\x09\\xc8\\x02\\xe2\\x24\\x0d\\x4c\\x6d\\x42\\x04\\xc5\\x49\\x5f\\x94\\x42\\\n\\x46\\xc1\\xc9\\x7e\\x90\\x86\\x21\\x0b\\x02\\xa1\\x50\\x4e\\x2f\\x92\\x79\\x17\\\n\\x6a\\x37\\xde\\xfb\\x5c\\x44\\xea\\x41\\x84\\xe4\\x2f\\x3e\\x2d\\x98\\x5b\\xf0\\\n\\x0f\\x23\\xcb\\xc1\\x21\\x41\\x69\\xe0\\xfc\\x5e\\x87\\x2a\\x56\\xc4\\x5a\\x14\\\n\\x50\\x77\\x7e\\xe8\\x50\\xdf\\x77\\xfd\\x03\\xad\\x83\\x79\\x8b\\x54\\xcd\\xdf\\\n\\x2a\\x8c\\x47\\x1a\\xc5\\xb3\\x78\\x4a\\x3f\\x0c\\x00\\x91\\x37\\xab\\xde\\x27\\\n\\xac\\x55\\x8d\\xea\\x7f\\x50\\x7d\\x1c\\xf0\\x0b\\x1e\\xaa\\xa1\\x97\\x3a\\x84\\\n\\x0f\\xf7\\xd5\\xd8\\x14\\xac\\x8c\\xf0\\xd1\\x89\\x0d\\xcd\\xcd\\x4a\\x08\\xf9\\\n\\x22\\xf0\\x22\\x0b\\x40\\x54\\x07\\x51\\x37\\x8b\\x18\\x56\\xf6\\x17\\x02\\x44\\\n\\xd8\\x12\\x64\\x15\\x4d\\x77\\x8c\\x66\\x78\\xe1\\x91\\x15\\x36\\x2f\\x8e\\xfc\\\n\\x74\\x96\\x9e\\x18\\x55\\x17\\x83\\x3c\\x6c\\x2c\\x31\\x6a\\x91\\x52\\x43\\x2c\\\n\\x14\\x39\\x48\\xf0\\x8c\\x38\\x41\\xf4\\xa0\\x89\\xa2\\x81\\x72\\x79\\x81\\x9b\\\n\\x4e\\x94\\x43\\x58\\x40\\x38\\xcb\\xf6\\xc1\\x2f\\xa5\\xa5\\xc2\\xef\\x5e\\xf9\\\n\\x68\\xc6\\x96\\x54\\xc1\\x3b\\x58\\xe8\\x3b\\x58\\x6d\\x08\\xf9\\xed\\x18\\x3c\\\n\\x1c\\x14\\xd9\\x55\\xbd\\x93\\x0a\\xa1\\x71\\xae\\x55\\xd1\\x4a\\x09\\xf8\\xfa\\\n\\x29\\x41\\x40\\xf5\\xc5\\x1d\\x47\\xaa\\x4c\\x14\\x0c\\x17\\xa9\\xba\\x8a\\x58\\\n\\x9b\\xe8\\x84\\xed\\xae\\x53\\xb8\\x01\\xbf\\x11\\x3a\\x1e\\x2e\\x8f\\x49\\x93\\\n\\xa4\\xd3\\x92\\x7f\\x9b\\xa8\\xfa\\x59\\xc6\\x44\\x0d\\xcb\\x33\\xe9\\x73\\x32\\\n\\x1c\\xd9\\xec\\x14\\xbe\\x51\\xba\\x18\\x42\\x0b\\xbb\\x01\\xee\\xc1\\x60\\x09\\\n\\x93\\x05\\x4a\\xba\\x17\\x13\\x18\\x48\\x6a\\xb4\\xc4\\x67\\x4d\\xe5\\x7b\\x04\\\n\\x21\\x50\\x55\\x04\\xa3\\x2b\\xcc\\x63\\xf4\\x2d\\x59\\x54\\x65\\x94\\x50\\x41\\\n\\xc2\\xd6\\xb1\\x88\\x24\\x68\\x16\\x1c\\x4b\\x4f\\xaa\\xfb\\x29\\x64\\xf2\\xd3\\\n\\x63\\x52\\xf3\\xe5\\xa0\\xbb\\x35\\x67\\xa0\\x36\\xb6\\xa0\\x84\\x07\\xde\\x0b\\\n\\x7a\\xc8\\x05\\xc2\\x79\\x11\\xb6\\xcf\\x80\\x8e\\xd4\\xd2\\x71\\x76\\x61\\x30\\\n\\x40\\x80\\xc4\\x49\\x1a\\x2a\\x1f\\x08\\x5e\\x5d\\xc3\\x27\\x85\\xb2\\xf5\\x20\\\n\\xad\\x39\\xf8\\xa0\\x03\\xa8\\x80\\xe2\\x33\\xdb\\x10\\x55\\x0f\\x23\\x40\\x8e\\\n\\xe2\\x8e\\x05\\x59\\x83\\x22\\x89\\xaa\\x00\\xb5\\x08\\x55\\xb4\\x4e\\x36\\x8b\\\n\\x17\\x6b\\x93\\x80\\x25\\x02\\xb9\\x41\\xbd\\x8f\\xb9\\x64\\x26\\xb9\\x28\\x66\\\n\\xc4\\x41\\x38\\x21\\x00\\x17\\x97\\x2f\\xd3\\x88\\x58\\x0c\\x10\\x40\\x56\\x01\\\n\\x48\\x4d\\x47\\xf1\\x7f\\x29\\x1a\\x39\\x57\\x02\\xbb\\x3b\\xa0\\x55\\xfb\\x90\\\n\\x31\\x1a\\x1c\\x0a\\xdc\\x12\\xc0\\xdd\\x68\\x91\\x08\\x08\\x45\\xa9\\xb5\\xfd\\\n\\xd9\\xbf\\x06\\x6b\\x7a\\x4c\\x22\\x4b\\x32\\x21\\x08\\x74\\x9c\\x11\\xa0\\xc3\\\n\\x96\\x3c\\xf0\\x21\\xc2\\x3f\\x0b\\x6b\\xbc\\x16\\x99\\x70\\x92\\xc9\\x90\\x5c\\\n\\x81\\xd1\\xfa\\x9d\\x43\\x48\\xc2\\x09\\x32\\x90\\xf0\\xe0\\x24\\x82\\x9b\\x21\\\n\\x2c\\x3e\\x93\\x0f\\x22\\x1e\\xec\\xf7\\xa1\\x87\\x0a\\x60\\x81\\x87\\x14\\xd1\\\n\\x28\\x37\\x21\\xac\\x8a\\x73\\x58\\xe5\\x45\\x92\\x0b\\x47\\x6d\\x99\\x18\\xf1\\\n\\xc5\\x4a\\x06\\x30\\x91\\x12\\x89\\xe4\\xef\\xca\\x1f\\x57\\x94\\x9a\\x78\\x3b\\\n\\xde\\x44\\x22\\x25\\x54\\xd5\\x7b\\x74\\xd9\\x10\\x79\\x0d\\xe8\\x01\\x4a\\xe0\\\n\\x49\\x26\\x10\\x24\\x06\\xf7\\x19\\x33\\x06\\xe0\\x4f\\xce\\x42\\xc7\\xc1\\xa8\\\n\\x38\\x5f\\xb6\\x2d\\x5b\\x20\\x4c\\x38\\x8f\\xb3\\x4d\\x53\\xb3\\x5e\\x16\\x88\\\n\\xd5\\x70\\xd9\\xe3\\xdd\\x53\\xed\\x0d\\xa8\\x47\\x83\\xbe\\xd0\\x85\\xb3\\xa2\\\n\\x9b\\xf8\\xb3\\xa9\\x0e\\x99\\x9e\\x79\\x2c\\x80\\x48\\xac\\x13\\x83\\x6c\\x8a\\\n\\x20\\x1d\\xc0\\x78\\xa4\\x15\\x07\\x31\\x2a\\xd8\\x22\\x9b\\x00\\x92\\x0a\\xfe\\\n\\xb8\\xa0\\xe3\\xc8\\xf9\\xc0\\x76\\x39\\x08\\x4b\\x1f\\xb2\\x2d\\xe7\\xf3\\xeb\\\n\\x28\\x81\\x1c\\x3a\\x2f\\x69\\xc5\\xd4\\xf1\\x56\\x09\\xba\\x0b\\xc7\\xc1\\x78\\\n\\xb4\\x05\\x11\\x16\\x28\\x52\\x00\\x2b\\xe6\\x3c\\x31\\xa8\\x84\\x00\\x16\\xa5\\\n\\x8f\\xa0\\xb9\\x18\\xde\\xf1\\x07\\xac\\xb7\\x65\\x94\\xdc\\x61\\x29\\x6e\\x8c\\\n\\x47\\xdf\\x0a\\xf4\\xb4\\xdc\\xad\\xe2\\x24\\x02\\x15\\x86\\x20\\x1d\\x37\\x17\\\n\\xc4\\x1b\\x5a\\xd1\\xc0\\x9a\\x8d\\xa0\\xb3\\x05\\xa7\\x70\\x44\\x8d\\x09\\x61\\\n\\xb9\\x40\\x0a\\x4d\\x49\\x29\\x09\\x72\\xbb\\xd5\\x54\\x4b\\xd8\\x46\\x85\\xe8\\\n\\x9d\\x52\\x28\\x1f\\x6c\\x44\\xe5\\x04\\x29\\x69\\x24\\x45\\xeb\\x43\\x62\\x60\\\n\\xd8\\xe7\\x90\\x00\\xc1\\x27\\x56\\x0a\\xc1\\x15\\x25\\x83\\x3c\\xb3\\xc0\\x75\\\n\\x45\\x91\\x3a\\x41\\xc0\\x96\\x80\\xfc\\xe6\\xf2\\xc8\\x52\\x8f\\x13\\x1f\\x2f\\\n\\x07\\x90\\x53\\x13\\x04\\xb0\\x72\\x1f\\x71\\x13\\xf7\\x59\\x46\\x46\\x97\\x90\\\n\\xab\\x16\\x2a\\xc6\\x46\\x42\\x20\\x81\\x31\\x3d\\x1c\\xab\\x80\\x32\\xd7\\x85\\\n\\x21\\x4e\\x8d\\x35\\x2c\\xe9\\x6a\\xfa\\x75\\x49\\x63\\x00\\x59\\x04\\x47\\x73\\\n\\x5f\\x2e\\x08\\x81\\x40\\x13\\xef\\x37\\xcb\\x9c\\x85\\xf2\\x0f\\x22\\x48\\x43\\\n\\x4b\\xd7\\xe6\\x3a\\x03\\x5f\\x10\\x10\\x80\\xab\\xbe\\xae\\x85\\x14\\xca\\x2e\\\n\\xd0\\x4a\\x84\\xc1\\xbc\\x51\\x48\\x35\\x0d\\x0c\\xac\\x48\\x93\\x07\\x29\\x10\\\n\\x04\\xa0\\xeb\\x58\\xe7\\x2b\\xb4\\x74\\xea\\xaa\\x0c\\x93\\x76\\xcf\\x23\\xb9\\\n\\x9e\\x7f\\x64\\x43\\x92\\x10\\x49\\xa7\\x95\\x23\\xa5\\x20\\x47\\x47\\xd6\\xb2\\\n\\x50\\xe9\\xe9\\x27\\xf7\\xa2\\x06\\x2e\\x0b\\xad\\xf9\\x3c\\x90\\x88\\x91\\xa2\\\n\\xe1\\x37\\x66\\xa4\\x1e\\x3f\\x0c\\xbc\\xf0\\x8c\\x13\\xa7\\x52\\xa4\\x31\\x54\\\n\\x04\\xc3\\x9b\\x2b\\x53\\x93\\xbf\\x6e\\x45\\x61\\x61\\x56\\x10\\xbe\\xcb\\x9c\\\n\\x44\\xd0\\x18\\xd6\\xbb\\xbd\\x42\\x16\\x48\\x0c\\x10\\x01\\x40\\x08\\x24\\xfb\\\n\\xe8\\xeb\\x63\\x3b\\x8c\\xc7\\x37\\x41\\xa4\\x54\\xb7\\x25\\x0c\\xd6\\x8f\\xc7\\\n\\x1f\\x50\\x42\\xaf\\x40\\xdc\\xfc\\x1b\\x44\\xad\\x13\\x09\\x65\\x78\\x1b\\xe2\\\n\\x87\\x20\\xae\\x47\\x48\\x20\\x87\\x0e\\x8d\\xe2\\x56\\x00\\x71\\xc2\\xf5\\xd7\\\n\\x16\\xeb\\x8f\\xd9\\x72\\x48\\x7e\\x91\\x49\\x2c\\x49\\x14\\x10\\x56\\x25\\x29\\\n\\x82\\x56\\xde\\x71\\x90\\xe2\\x02\\x69\\xe3\\xe1\\x91\\xd7\\x04\\x4a\\x5b\\xda\\\n\\xaf\\xd7\\xd5\\x70\\xc3\\x8f\\xc6\\xae\\x37\\x4c\\x86\\xe9\\x4f\\x2f\\xef\\x13\\\n\\x82\\xae\\x74\\x2b\\xc8\\x8a\\x6d\\xea\\x05\\xdb\\x71\\xff\\x00\\x08\\xb7\\x8c\\\n\\x63\\xef\\x6d\\xa8\\x38\\x49\\x4c\\xc5\\x1a\\x31\\x00\\x57\\x80\\x4d\\x60\\x3f\\\n\\x61\\xe5\\xe1\\xa7\\x41\\xc0\\xa2\\x8b\\x4e\\x82\\xdf\\x08\\xda\\x95\\x70\\xce\\\n\\x25\\x00\\x08\\xb0\\x1f\\x2d\\xe3\\x78\\xcf\\x2a\\x4f\\x61\\xbc\\xe7\\xf5\\x30\\\n\\x71\\x7e\\x88\\x40\\x83\\x3b\\x18\\x7e\\xc0\\x5a\\x21\\x45\\xa8\\xa8\\x05\\xa4\\\n\\x00\\xa4\\x0b\\x05\\xd4\\xea\\xa1\\xd6\\x6a\\x82\\x90\\x25\\x75\\x79\\x7c\\xb2\\\n\\x9a\\x07\\x62\\x84\\x49\\x08\\x9a\\x45\\xe9\\x7b\\x6d\\xc7\\x4c\\xd0\\x42\\x59\\\n\\x1f\\x00\\xce\\x28\\x18\\x04\\x0d\\xab\\xe4\\x92\\x39\\x86\\x72\\x10\\xa3\\xb3\\\n\\x20\\x50\\xda\\x79\\x11\\xe0\\xee\\xd2\\xca\\x20\\xdc\\x88\\x28\\x51\\x0a\\x1c\\\n\\x40\\x8b\\x61\\x19\\x05\\x62\\x8a\\x86\\x8b\\xf9\\xd5\\xe1\\xa1\\xf5\\xbe\\x2f\\\n\\x2a\\xe5\\xc1\\xea\\xb4\\x4c\\x95\\x44\\xce\\x39\\xaa\\x8d\\xe1\\xc3\\x9f\\x84\\\n\\xec\\xa8\\x5a\\x0c\\x9a\\x04\\x95\\xff\\x00\\x27\\xb8\\x1a\\xc1\\x55\\xa9\\xc8\\\n\\x97\\x23\\x4a\\xa3\\xb0\\x0d\\xa1\\x23\\x89\\x4c\\x7b\\x7a\\x1b\\x43\\x35\\xf2\\\n\\xfe\\xb9\\x79\\x34\\x6e\\x2a\\x80\\xb0\\x50\\x2b\\xf0\\x33\\x94\\xb8\\x48\\x7b\\\n\\x01\\x54\\x20\\x03\\x95\\xb6\\x70\\x92\\x6e\\x79\\x00\\x43\\x70\\xc5\\x31\\x7e\\\n\\xf5\\x71\\x24\\x56\\x8a\\x06\\x41\\xa8\\x10\\x54\\x3e\\x48\\x34\\x6d\\x47\\x65\\\n\\x19\\x00\\xa1\\x3c\\x03\\x88\\x2b\\xbc\\xbd\\xc2\\x43\\x40\\x4a\\xd3\\xef\\x43\\\n\\x73\\x68\\x9b\\xa1\\x46\\xfb\\xbc\\x20\\xe0\\x75\\x88\\xe9\\x66\\xc2\\x00\\x48\\\n\\x54\\x12\\xea\\x23\\x8d\\x1e\\x0f\\xc8\\x87\\x0e\\x08\\x60\\x13\\x01\\xd6\\x8e\\\n\\x49\\xa6\\xc9\\xc9\\xb5\\x9a\\xc9\\xd4\\xcb\\xea\\x8a\\x46\\xa8\\xa6\\x42\\x68\\\n\\xe1\\x22\\x9c\\x04\\x3c\\xf0\\x84\\x08\\x3e\\x87\\x36\\x36\\x16\\xc6\\x32\\x61\\\n\\xe1\\x82\\x12\\xa9\\x67\\x1b\\x42\\xa2\\x44\\x32\\xad\\x40\\xb2\\x31\\x25\\x50\\\n\\x79\\x1e\\xd0\\x30\\x52\\x14\\xbb\\x78\\x68\\x0b\\xb1\\xaf\\x93\\xa2\\x6a\\xd6\\\n\\xeb\\xcc\\xe2\\xaf\\x87\\x6d\\xf9\\x34\\x00\\xc1\\x04\\x5b\\x58\\x84\\xba\\x5f\\\n\\x50\\x22\\x55\\x54\\x0b\\x75\\xf8\\x82\\x79\\x27\\x40\\x41\\x94\\xa1\\x4a\\x88\\\n\\x57\\x5d\\xff\\xd9\\\n\"\n\nqt_resource_name = \"\\\n\\x00\\x09\\\n\\x0c\\x78\\x54\\x88\\\n\\x00\\x6e\\\n\\x00\\x65\\x00\\x77\\x00\\x50\\x00\\x72\\x00\\x65\\x00\\x66\\x00\\x69\\x00\\x78\\\n\\x00\\x23\\\n\\x03\\xb3\\xa2\\x67\\\n\\x00\\x62\\\n\\x00\\x61\\x00\\x74\\x00\\x65\\x00\\x6d\\x00\\x61\\x00\\x6e\\x00\\x2d\\x00\\x69\\x00\\x6e\\x00\\x2d\\x00\\x74\\x00\\x68\\x00\\x65\\x00\\x2d\\x00\\x62\\x00\\x72\\\n\\x00\\x69\\x00\\x65\\x00\\x72\\x00\\x2d\\x00\\x70\\x00\\x61\\x00\\x74\\x00\\x63\\x00\\x68\\x00\\x2d\\x00\\x63\\x00\\x72\\x00\\x6f\\x00\\x70\\x00\\x2e\\x00\\x6a\\\n\\x00\\x70\\x00\\x67\\\n\"\n\nqt_resource_struct = \"\\\n\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\\n\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\\n\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\\n\"\n\ndef qInitResources():\n    QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)\n\ndef qCleanupResources():\n    QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)\n\nqInitResources()\n"
  },
  {
    "path": "briarids/resource.py",
    "content": "# -*- coding: utf-8 -*-\r\n\r\n# Resource object code\r\n#\r\n# Created by: The Resource Compiler for PyQt5 (Qt v5.10.1)\r\n#\r\n# WARNING! All changes made in this file will be lost!\r\n\r\nfrom PyQt5 import QtCore\r\n\r\nqt_resource_data = b\"\\\r\n\\x00\\x04\\x28\\xdf\\\r\n\\xff\\\r\n\\xd8\\xff\\xe0\\x00\\x10\\x4a\\x46\\x49\\x46\\x00\\x01\\x01\\x01\\x01\\x2c\\x01\\\r\n\\x2c\\x00\\x00\\xff\\xe1\\x77\\x84\\x45\\x78\\x69\\x66\\x00\\x00\\x49\\x49\\x2a\\\r\n\\x00\\x08\\x00\\x00\\x00\\x0d\\x00\\x0e\\x01\\x02\\x00\\x25\\x00\\x00\\x00\\xaa\\\r\n\\x00\\x00\\x00\\x0f\\x01\\x02\\x00\\x12\\x00\\x00\\x00\\xd0\\x00\\x00\\x00\\x10\\\r\n\\x01\\x02\\x00\\x0c\\x00\\x00\\x00\\xe2\\x00\\x00\\x00\\x12\\x01\\x03\\x00\\x01\\\r\n\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x1a\\x01\\x05\\x00\\x01\\x00\\x00\\x00\\xee\\\r\n\\x00\\x00\\x00\\x1b\\x01\\x05\\x00\\x01\\x00\\x00\\x00\\xf6\\x00\\x00\\x00\\x28\\\r\n\\x01\\x03\\x00\\x01\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x31\\x01\\x02\\x00\\x0c\\\r\n\\x00\\x00\\x00\\xfe\\x00\\x00\\x00\\x32\\x01\\x02\\x00\\x14\\x00\\x00\\x00\\x0a\\\r\n\\x01\\x00\\x00\\x3b\\x01\\x02\\x00\\x25\\x00\\x00\\x00\\x1e\\x01\\x00\\x00\\x13\\\r\n\\x02\\x03\\x00\\x01\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x98\\x82\\x02\\x00\\x37\\\r\n\\x00\\x00\\x00\\x44\\x01\\x00\\x00\\x69\\x87\\x04\\x00\\x01\\x00\\x00\\x00\\x7c\\\r\n\\x01\\x00\\x00\\xb4\\x3e\\x00\\x00\\x44\\x61\\x76\\x69\\x64\\x20\\x48\\x75\\x6d\\\r\n\\x70\\x68\\x72\\x65\\x79\\x73\\x20\\x32\\x30\\x31\\x34\\x20\\x20\\x20\\x20\\x20\\\r\n\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x00\\x00\\x4e\\x49\\x4b\\\r\n\\x4f\\x4e\\x20\\x43\\x4f\\x52\\x50\\x4f\\x52\\x41\\x54\\x49\\x4f\\x4e\\x00\\x4e\\\r\n\\x49\\x4b\\x4f\\x4e\\x20\\x44\\x37\\x31\\x30\\x30\\x00\\x2c\\x01\\x00\\x00\\x01\\\r\n\\x00\\x00\\x00\\x2c\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x47\\x49\\x4d\\x50\\x20\\\r\n\\x32\\x2e\\x31\\x30\\x2e\\x32\\x00\\x32\\x30\\x31\\x38\\x3a\\x30\\x36\\x3a\\x31\\\r\n\\x32\\x20\\x30\\x39\\x3a\\x31\\x30\\x3a\\x33\\x37\\x00\\x44\\x61\\x76\\x69\\x64\\\r\n\\x20\\x48\\x75\\x6d\\x70\\x68\\x72\\x65\\x79\\x73\\x20\\x28\\x47\\x61\\x6c\\x61\\\r\n\\x74\\x61\\x73\\x29\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x00\\\r\n\\x00\\x44\\x61\\x76\\x69\\x64\\x20\\x48\\x75\\x6d\\x70\\x68\\x72\\x65\\x79\\x73\\\r\n\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\\r\n\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\\r\n\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x00\\x00\\x27\\x00\\x9a\\x82\\x05\\x00\\x01\\\r\n\\x00\\x00\\x00\\x56\\x03\\x00\\x00\\x9d\\x82\\x05\\x00\\x01\\x00\\x00\\x00\\x5e\\\r\n\\x03\\x00\\x00\\x22\\x88\\x03\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x27\\\r\n\\x88\\x03\\x00\\x01\\x00\\x00\\x00\\xe8\\x03\\x00\\x00\\x00\\x90\\x07\\x00\\x04\\\r\n\\x00\\x00\\x00\\x30\\x32\\x33\\x30\\x03\\x90\\x02\\x00\\x14\\x00\\x00\\x00\\x66\\\r\n\\x03\\x00\\x00\\x04\\x90\\x02\\x00\\x14\\x00\\x00\\x00\\x7a\\x03\\x00\\x00\\x01\\\r\n\\x91\\x07\\x00\\x04\\x00\\x00\\x00\\x01\\x02\\x03\\x00\\x02\\x91\\x05\\x00\\x01\\\r\n\\x00\\x00\\x00\\x8e\\x03\\x00\\x00\\x04\\x92\\x0a\\x00\\x01\\x00\\x00\\x00\\x96\\\r\n\\x03\\x00\\x00\\x05\\x92\\x05\\x00\\x01\\x00\\x00\\x00\\x9e\\x03\\x00\\x00\\x07\\\r\n\\x92\\x03\\x00\\x01\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x08\\x92\\x03\\x00\\x01\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x09\\x92\\x03\\x00\\x01\\x00\\x00\\x00\\x10\\\r\n\\x00\\x00\\x00\\x0a\\x92\\x05\\x00\\x01\\x00\\x00\\x00\\xa6\\x03\\x00\\x00\\x7c\\\r\n\\x92\\x07\\x00\\xca\\x3a\\x00\\x00\\xae\\x03\\x00\\x00\\x86\\x92\\x07\\x00\\x2c\\\r\n\\x00\\x00\\x00\\x78\\x3e\\x00\\x00\\x90\\x92\\x02\\x00\\x03\\x00\\x00\\x00\\x36\\\r\n\\x30\\x00\\x00\\x91\\x92\\x02\\x00\\x03\\x00\\x00\\x00\\x36\\x30\\x00\\x00\\x92\\\r\n\\x92\\x02\\x00\\x03\\x00\\x00\\x00\\x36\\x30\\x00\\x00\\x00\\xa0\\x07\\x00\\x04\\\r\n\\x00\\x00\\x00\\x30\\x31\\x30\\x30\\x01\\xa0\\x03\\x00\\x01\\x00\\x00\\x00\\x01\\\r\n\\x00\\x00\\x00\\x02\\xa0\\x04\\x00\\x01\\x00\\x00\\x00\\xb0\\x04\\x00\\x00\\x03\\\r\n\\xa0\\x04\\x00\\x01\\x00\\x00\\x00\\x20\\x03\\x00\\x00\\x17\\xa2\\x03\\x00\\x01\\\r\n\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\xa3\\x07\\x00\\x01\\x00\\x00\\x00\\x03\\\r\n\\x00\\x00\\x00\\x01\\xa3\\x07\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\\r\n\\xa3\\x07\\x00\\x08\\x00\\x00\\x00\\xa4\\x3e\\x00\\x00\\x01\\xa4\\x03\\x00\\x01\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\xa4\\x03\\x00\\x01\\x00\\x00\\x00\\x01\\\r\n\\x00\\x00\\x00\\x03\\xa4\\x03\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\\r\n\\xa4\\x05\\x00\\x01\\x00\\x00\\x00\\xac\\x3e\\x00\\x00\\x05\\xa4\\x03\\x00\\x01\\\r\n\\x00\\x00\\x00\\x76\\x02\\x00\\x00\\x06\\xa4\\x03\\x00\\x01\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x07\\xa4\\x03\\x00\\x01\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x08\\\r\n\\xa4\\x03\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x09\\xa4\\x03\\x00\\x01\\\r\n\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x0a\\xa4\\x03\\x00\\x01\\x00\\x00\\x00\\x01\\\r\n\\x00\\x00\\x00\\x0c\\xa4\\x03\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x0a\\x00\\x00\\x00\\xa0\\x0f\\x00\\x00\\x38\\x00\\x00\\x00\\x0a\\\r\n\\x00\\x00\\x00\\x32\\x30\\x31\\x34\\x3a\\x30\\x37\\x3a\\x32\\x39\\x20\\x31\\x37\\\r\n\\x3a\\x33\\x30\\x3a\\x33\\x32\\x00\\x32\\x30\\x31\\x34\\x3a\\x30\\x37\\x3a\\x32\\\r\n\\x39\\x20\\x31\\x37\\x3a\\x33\\x30\\x3a\\x33\\x32\\x00\\x04\\x00\\x00\\x00\\x01\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x32\\x00\\x00\\x00\\x0a\\\r\n\\x00\\x00\\x00\\x68\\x10\\x00\\x00\\x0a\\x00\\x00\\x00\\x4e\\x69\\x6b\\x6f\\x6e\\\r\n\\x00\\x02\\x10\\x00\\x00\\x49\\x49\\x2a\\x00\\x08\\x00\\x00\\x00\\x38\\x00\\x2b\\\r\n\\x00\\x02\\x00\\x24\\x00\\x00\\x00\\xae\\x02\\x00\\x00\\x2c\\x00\\x02\\x00\\x85\\\r\n\\x04\\x00\\x00\\xd2\\x02\\x00\\x00\\x32\\x00\\x02\\x00\\x14\\x00\\x00\\x00\\x58\\\r\n\\x07\\x00\\x00\\x35\\x00\\x02\\x00\\x10\\x00\\x00\\x00\\x6c\\x07\\x00\\x00\\x3b\\\r\n\\x00\\x02\\x00\\x20\\x00\\x00\\x00\\x7c\\x07\\x00\\x00\\xa3\\x00\\x01\\x00\\x01\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xb6\\x00\\x02\\x00\\x16\\x00\\x00\\x00\\x9c\\\r\n\\x07\\x00\\x00\\xbb\\x00\\x02\\x00\\x1a\\x00\\x00\\x00\\xb2\\x07\\x00\\x00\\xbf\\\r\n\\x00\\x02\\x00\\x02\\x00\\x00\\x00\\x30\\x00\\x00\\x00\\xc0\\x00\\x02\\x00\\x15\\\r\n\\x00\\x00\\x00\\xcc\\x07\\x00\\x00\\x22\\x00\\x03\\x00\\x01\\x00\\x00\\x00\\x01\\\r\n\\x00\\x00\\x00\\x8a\\x00\\x03\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x1e\\\r\n\\x00\\x03\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x1b\\x00\\x03\\x00\\x07\\\r\n\\x00\\x00\\x00\\xe2\\x07\\x00\\x00\\x19\\x00\\x0a\\x00\\x01\\x00\\x00\\x00\\xf0\\\r\n\\x07\\x00\\x00\\x0e\\x00\\x07\\x00\\x04\\x00\\x00\\x00\\x00\\x01\\x0c\\x00\\x1c\\\r\n\\x00\\x03\\x00\\x03\\x00\\x00\\x00\\xf8\\x07\\x00\\x00\\x18\\x00\\x07\\x00\\x04\\\r\n\\x00\\x00\\x00\\x00\\x01\\x06\\x00\\x12\\x00\\x07\\x00\\x04\\x00\\x00\\x00\\x00\\\r\n\\x01\\x06\\x00\\x09\\x00\\x02\\x00\\x14\\x00\\x00\\x00\\xfe\\x07\\x00\\x00\\x17\\\r\n\\x00\\x07\\x00\\x04\\x00\\x00\\x00\\x00\\x01\\x06\\x00\\xa8\\x00\\x07\\x00\\x31\\\r\n\\x00\\x00\\x00\\x12\\x08\\x00\\x00\\x87\\x00\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x08\\x00\\x02\\x00\\x0d\\x00\\x00\\x00\\x44\\x08\\x00\\x00\\x07\\\r\n\\x00\\x02\\x00\\x07\\x00\\x00\\x00\\x52\\x08\\x00\\x00\\xb1\\x00\\x03\\x00\\x01\\\r\n\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x13\\x00\\x03\\x00\\x02\\x00\\x00\\x00\\x00\\\r\n\\x00\\x80\\x02\\x02\\x00\\x03\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\xe8\\x03\\x16\\\r\n\\x00\\x03\\x00\\x04\\x00\\x00\\x00\\x5a\\x08\\x00\\x00\\xa2\\x00\\x04\\x00\\x01\\\r\n\\x00\\x00\\x00\\x00\\xaf\\xd0\\x00\\x84\\x00\\x05\\x00\\x04\\x00\\x00\\x00\\x62\\\r\n\\x08\\x00\\x00\\x8b\\x00\\x07\\x00\\x04\\x00\\x00\\x00\\x48\\x01\\x0c\\x00\\x83\\\r\n\\x00\\x01\\x00\\x01\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x95\\x00\\x02\\x00\\x05\\\r\n\\x00\\x00\\x00\\x82\\x08\\x00\\x00\\x0d\\x00\\x07\\x00\\x04\\x00\\x00\\x00\\x00\\\r\n\\x01\\x06\\x00\\x04\\x00\\x02\\x00\\x08\\x00\\x00\\x00\\x88\\x08\\x00\\x00\\x9e\\\r\n\\x00\\x03\\x00\\x0a\\x00\\x00\\x00\\x90\\x08\\x00\\x00\\x1d\\x00\\x02\\x00\\x08\\\r\n\\x00\\x00\\x00\\xa4\\x08\\x00\\x00\\x89\\x00\\x03\\x00\\x01\\x00\\x00\\x00\\x21\\\r\n\\x00\\x00\\x00\\xa7\\x00\\x04\\x00\\x01\\x00\\x00\\x00\\x7c\\xa6\\x00\\x00\\xab\\\r\n\\x00\\x02\\x00\\x10\\x00\\x00\\x00\\xac\\x08\\x00\\x00\\x01\\x00\\x07\\x00\\x04\\\r\n\\x00\\x00\\x00\\x30\\x32\\x31\\x31\\x0c\\x00\\x05\\x00\\x04\\x00\\x00\\x00\\xbc\\\r\n\\x08\\x00\\x00\\x05\\x00\\x02\\x00\\x0d\\x00\\x00\\x00\\xdc\\x08\\x00\\x00\\x0b\\\r\n\\x00\\x08\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\xb9\\x00\\x07\\x00\\x04\\\r\n\\x00\\x00\\x00\\x01\\xff\\x00\\x00\\xb7\\x00\\x07\\x00\\x1e\\x00\\x00\\x00\\xea\\\r\n\\x08\\x00\\x00\\x97\\x00\\x07\\x00\\x48\\x02\\x00\\x00\\x08\\x09\\x00\\x00\\xb8\\\r\n\\x00\\x07\\x00\\xac\\x00\\x00\\x00\\x50\\x0b\\x00\\x00\\x25\\x00\\x07\\x00\\x0e\\\r\n\\x00\\x00\\x00\\xfc\\x0b\\x00\\x00\\x98\\x00\\x07\\x00\\x21\\x00\\x00\\x00\\x0a\\\r\n\\x0c\\x00\\x00\\xb0\\x00\\x07\\x00\\x10\\x00\\x00\\x00\\x2c\\x0c\\x00\\x00\\x23\\\r\n\\x00\\x07\\x00\\x3a\\x00\\x00\\x00\\x3c\\x0c\\x00\\x00\\x91\\x00\\x07\\x00\\x42\\\r\n\\x2e\\x00\\x00\\x76\\x0c\\x00\\x00\\x1f\\x00\\x07\\x00\\x08\\x00\\x00\\x00\\xb8\\\r\n\\x3a\\x00\\x00\\x24\\x00\\x07\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\\r\n\\x00\\x00\\x00\\x34\\x38\\x20\\x34\\x39\\x20\\x34\\x38\\x20\\x34\\x38\\x20\\x31\\\r\n\\x20\\x34\\x20\\x31\\x20\\x38\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\\r\n\\x20\\x30\\x20\\x30\\x20\\x30\\x00\\x34\\x38\\x20\\x34\\x39\\x20\\x34\\x38\\x20\\\r\n\\x34\\x39\\x20\\x33\\x35\\x20\\x30\\x20\\x31\\x32\\x38\\x20\\x32\\x20\\x31\\x37\\\r\n\\x30\\x20\\x31\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\\r\n\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x20\\x30\\x00\\x00\\x34\\x38\\x20\\\r\n\\x34\\x39\\x20\\x34\\x38\\x20\\x34\\x38\\x20\\x31\\x20\\x30\\x20\\x30\\x20\\x30\\\r\n\\x00\\x34\\x38\\x20\\x35\\x30\\x20\\x34\\x38\\x20\\x34\\x38\\x20\\x30\\x20\\x30\\\r\n\\x00\\x32\\x35\\x36\\x2f\\x32\\x35\\x36\\x20\\x32\\x35\\x36\\x2f\\x32\\x35\\x36\\\r\n\\x20\\x32\\x35\\x36\\x2f\\x32\\x35\\x36\\x20\\x32\\x35\\x36\\x2f\\x32\\x35\\x36\\\r\n\\x00\\x32\\x32\\x32\\x20\\x37\\x20\\x36\\x20\\x31\\x39\\x20\\x31\\x38\\x20\\x33\\\r\n\\x37\\x20\\x32\\x31\\x20\\x30\\x00\\x34\\x38\\x20\\x35\\x30\\x20\\x34\\x38\\x20\\\r\n\\x34\\x38\\x20\\x32\\x35\\x35\\x20\\x32\\x35\\x35\\x20\\x32\\x35\\x35\\x20\\x30\\\r\n\\x00\\x36\\x30\\x20\\x31\\x20\\x31\\x32\\x20\\x30\\x20\\x31\\x33\\x32\\x20\\x31\\\r\n\\x20\\x31\\x32\\x20\\x30\\x00\\x00\\x00\\x00\\x94\\x17\\xb4\\x0f\\x94\\x17\\xb4\\\r\n\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x01\\\r\n\\x00\\x06\\x00\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\\r\n\\x20\\x20\\x20\\x20\\x20\\x20\\x00\\x30\\x31\\x30\\x36\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\\r\n\\x20\\x20\\x20\\x20\\x20\\x00\\x00\\x41\\x46\\x2d\\x43\\x20\\x20\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x70\\x17\\xa0\\x0f\\xb8\\x0b\\x00\\x00\\x0a\\x00\\x00\\x00\\xb8\\\r\n\\x0b\\x00\\x00\\x0a\\x00\\x00\\x00\\x28\\x00\\x00\\x00\\x0a\\x00\\x00\\x00\\x28\\\r\n\\x00\\x00\\x00\\x0a\\x00\\x00\\x00\\x4f\\x46\\x46\\x20\\x00\\x00\\x46\\x49\\x4e\\\r\n\\x45\\x20\\x20\\x20\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x34\\x33\\x36\\x36\\x35\\x31\\x30\\\r\n\\x00\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\\r\n\\x00\\x26\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x21\\x02\\x00\\x00\\x00\\x01\\x00\\\r\n\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\\r\n\\x00\\x41\\x55\\x54\\x4f\\x31\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x00\\x00\\x30\\\r\n\\x31\\x30\\x30\\x00\\x00\\x01\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x30\\x32\\x31\\\r\n\\x38\\x28\\x01\\xd8\\x8c\\xe6\\x1f\\x26\\x16\\xf6\\x55\\xb2\\xe4\\xe8\\xc3\\x69\\\r\n\\xea\\x3a\\x59\\x53\\x18\\xb4\\x27\\x65\\x7e\\x66\\x1d\\xaf\\x0c\\x40\\x4b\\x21\\\r\n\\xd2\\x52\\xa1\\xcb\\xc0\\x8c\\x2f\\x9d\\xe6\\xfe\\xe5\\xa7\\x34\\x98\\xd3\\xd9\\\r\n\\xba\\x6a\\xe9\\x43\\x68\\x64\\x37\\xd5\\x4e\\x96\\xad\\x9f\\x5c\\xf0\\x5b\\x91\\\r\n\\xa2\\x82\\x31\\xbb\\x10\\x3c\\x3f\\x0d\\xb6\\x2e\\x75\\x97\\x84\\x48\\xe3\\x18\\\r\n\\x89\\x58\\x78\\x1b\\xba\\x13\\xba\\x42\\x5d\\x1e\\xc1\\xac\\xae\\x0d\\x96\\x22\\\r\n\\x30\\x80\\xc3\\x89\\x62\\x98\\x4c\\x15\\xba\\x5d\\x07\\x85\\xd6\\xb1\\xf1\\xbb\\\r\n\\x5c\\xc8\\x0b\\x21\\x0a\\xc6\\x55\\xb7\\xec\\xf4\\xce\\x5b\\xfc\\x73\\x7b\\x73\\\r\n\\x41\\x99\\x51\\xd9\\xb2\\x91\\x5f\\xd7\\x6c\\x8b\\x90\\x72\\x21\\xaa\\x01\\x22\\\r\n\\x28\\x12\\x9b\\x0c\\x5a\\x56\\x65\\x07\\xbc\\x24\\x5f\\x6d\\x4e\\x02\\x89\\xe3\\\r\n\\x10\\x74\\xe3\\xed\\x02\\x4e\\x6d\\x5f\\x24\\xbc\\x27\\x65\\x76\\x69\\x13\\xdf\\\r\n\\xfb\\x1b\\x29\\x45\\xa9\\x21\\x75\\x90\\x8c\\x56\\xed\\x5d\\x9c\\xb6\\x9d\\x53\\\r\n\\xe4\\x47\\x74\\x79\\x55\\x87\\x7f\\x8f\\xf4\\xe6\\xbd\\x55\\xcc\\x0a\\x21\\x0b\\\r\n\\xc8\\x58\\xbb\\xe9\\xe2\\xd6\\x9d\\x1f\\x44\\x84\\x67\\x55\\xf6\\x62\\xb1\\x79\\\r\n\\x90\\xca\\x23\\x55\\xad\\xc0\\xad\\x03\\xcb\\x1c\\x47\\xf5\\x34\\xaa\\x31\\x2f\\\r\n\\x99\\x77\\x4a\\x74\\x49\\x91\\x95\\x23\\x2c\\xb3\\x0f\\x86\\x3d\\x2c\\xb9\\x34\\\r\n\\x80\\xbf\\x83\\x4e\\xf6\\x5e\\x9d\\x62\\x94\\x6a\\xd6\\x17\\x76\\x10\\x51\\xff\\\r\n\\x79\\x36\\xda\\x10\\x9b\\x8d\\xb4\\xe1\\xec\\xe2\\x9f\\x1e\\x8c\\xc2\\xc9\\xa3\\\r\n\\x50\\xd0\\x23\\xb6\\x43\\x2a\\xad\\x1f\\x64\\x58\\x77\\xda\\xb7\\x1a\\x50\\x68\\\r\n\\x38\\x68\\x6b\\x41\\xea\\xe6\\xb1\\x2d\\xcc\\x2e\\x3f\\x1d\\xde\\x39\\xdf\\x73\\\r\n\\x20\\x00\\xb3\\x5c\\x82\\x6b\\xb9\\x8f\\x34\\xad\\xf6\\x56\\x47\\x88\\x27\\xc9\\\r\n\\x08\\x30\\xfb\\xb4\\x3a\\x22\\xc5\\xd9\\x9c\\x44\\xbe\\x0d\\x2e\\x22\\xe9\\x83\\\r\n\\xf0\\x30\\x42\\x29\\xe3\\x6e\\xcc\\xe7\\x1c\\xdc\\x9f\\x05\\x56\\x7a\\x71\\x3b\\\r\n\\xd8\\x48\\x8b\\xb9\\x92\\x46\\xcd\\x2f\\x74\\x74\\x57\\xe5\\x66\\xd2\\xe1\\xeb\\\r\n\\xd8\\x60\\xcb\\x19\\x32\\x1e\\xdd\\x6f\\xd4\\x0c\\x17\\xb1\\xa7\\xd5\\x8e\\x54\\\r\n\\xa7\\x78\\x1b\\x91\\xda\\xb2\\xe4\\x58\\x33\\x5b\\xd0\\xed\\xce\\x82\\x09\\x27\\\r\n\\x91\\x6f\\x6c\\xf6\\x8d\\xce\\xed\\xdf\\xa4\\xc3\\xa8\\x1a\\xf9\\xda\\x91\\x1b\\\r\n\\x78\\xa8\\xab\\x80\\x2a\\xa6\\xf5\\x0b\\x0c\\xd3\\x6f\\xd0\\x1e\\x34\\x19\\xd7\\\r\n\\x60\\xc1\\xf3\\xe8\\xd2\\x77\\xfd\\x5f\\x74\\x78\\x37\\xde\\x46\\x9a\\xa1\\x8b\\\r\n\\x48\\xd8\\x3b\\x71\\x7a\\x56\\x05\\x87\\xdc\\x07\\xff\\xcf\\x6e\\xe0\\x29\\x43\\\r\n\\x31\\x55\\x83\\xe9\\x23\\x8b\\x0d\\xbf\\x45\\x18\\xc7\\xc5\\x96\\x3a\\xb1\\xfb\\\r\n\\x15\\x09\\xcb\\x61\\xcb\\x06\\x15\\xf6\\xae\\x37\\x89\\xbf\\xbd\\x90\\x3b\\xb2\\\r\n\\x00\\x20\\x13\\xd9\\x72\\xde\\x1d\\x2d\\x14\\xcc\\x57\\xb5\\x19\\x29\\xc1\\x69\\\r\n\\xea\\x3a\\x59\\x53\\x18\\xb4\\x27\\x65\\x7e\\x66\\x1d\\xaf\\x0c\\x40\\x4b\\x21\\\r\n\\xd2\\x52\\xa1\\xcb\\xc0\\x8c\\x2f\\x9d\\xe6\\xfe\\xe5\\xa7\\x34\\x98\\xd3\\x94\\\r\n\\xbc\\x06\\xeb\\x51\\x6a\\x4b\\x19\\xe2\\x5c\\xa1\\xbf\\xa8\\x4e\\xc7\\x49\\xc1\\\r\n\\xa1\\x73\\xce\\x46\\x6d\\x30\\x31\\x30\\x30\\x00\\x00\\x65\\x00\\x8f\\x1b\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x64\\x01\\x0c\\x00\\x00\\x00\\x5c\\x01\\x0c\\x00\\x00\\x00\\x01\\x00\\x30\\\r\n\\x32\\x30\\x34\\x32\\x2f\\x5e\\x72\\xcf\\x5d\\x57\\x8e\\xa6\\x1f\\x3b\\x68\\xda\\\r\n\\xf1\\x1b\\xd4\\x35\\x37\\x43\\x77\\xb6\\x25\\x67\\x7c\\x64\\x1f\\xad\\x0e\\x46\\\r\n\\x00\\x30\\x31\\x30\\x30\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x30\\x31\\x30\\x30\\x56\\x49\\x56\\x49\\x44\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x56\\x49\\x56\\x49\\x44\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xc3\\x00\\x00\\\r\n\\x00\\x02\\x80\\x81\\x82\\x81\\x82\\x7e\\xff\\xff\\xff\\x30\\x32\\x32\\x37\\x11\\\r\n\\x3d\\xe9\\x43\\xfe\\x1d\\x2f\\x14\\xd3\\x57\\xb5\\xe6\\x66\\xc1\\x6b\\xe8\\xb4\\\r\n\\x5c\\x51\\x1a\\xb6\\x25\\x67\\x7c\\x68\\x17\\xad\\x0e\\x8a\\x43\\x23\\xd0\\xbf\\\r\n\\xa9\\xc9\\xc2\\x86\\x26\\x9f\\xe4\\xe3\\xec\\xa5\\x36\\xae\\xda\\xdb\\xb8\\xbc\\\r\n\\xe0\\x41\\x6a\\xfb\\x39\\xd7\\x4c\\x28\\xa3\\x9d\\x5e\\x2f\\x55\\x93\\xa0\\x87\\\r\n\\x3e\\xb9\\x12\\x28\\x30\\x0f\\xb4\\x37\\x7a\\x95\\x86\\x6b\\xec\\x4b\\x88\\xa6\\\r\n\\x76\\x31\\xba\\x2c\\x4b\\x47\\x1c\\xc4\\x3f\\x8d\\xae\\x9c\\x67\\x03\\x70\\x02\\\r\n\\xd3\\xa9\\x62\\xee\\x4d\\x7f\\x84\\xb6\\x2d\\x85\\xd6\\xfc\\xda\\xbb\\x58\\xfe\\\r\n\\x20\\x21\\x0a\\x80\\x7e\\xb7\\xec\\x72\\xe4\\x7d\\xfe\\xe4\\x52\\x73\\x40\\x56\\\r\n\\x7e\\x99\\xb2\\x9e\\x5d\\xef\\x54\\x39\\x12\\x9b\\x51\\x02\\x89\\x41\\x33\\x80\\\r\n\\x9b\\xc1\\x5a\\xbe\\x65\\x78\\xbd\\x25\\x5f\\x6d\\x4e\\x02\\x89\\xe3\\x10\\x11\\\r\n\\xe3\\x89\\x02\\x4b\\x2c\\x85\\xda\\x9d\\x27\\xca\\x89\\x7b\\x51\\xab\\xf8\\x08\\\r\n\\x2b\\x77\\xab\\x4c\\x4b\\x95\\xb3\\x75\\xee\\x80\\x61\\xe2\\x99\\xb2\\xdf\\x8f\\\r\n\\x8c\\xa4\\xad\\x7e\\x83\\x6c\\xb5\\x44\\x3f\\x3f\\xdd\\x98\\x20\\x0f\\xc9\\x0b\\\r\n\\xba\\xef\\xfa\\x22\\x7a\\xa9\\xa3\\x4c\\x80\\x40\\xee\\x91\\x56\\x68\\x4f\\xa2\\\r\n\\xfc\\x64\\xa2\\x6b\\x72\\xf3\\x3b\\x40\\x44\\x3d\\x16\\xa8\\x36\\xaf\\x9e\\x16\\\r\n\\x4d\\xb2\\x4d\\x31\\x92\\xdd\\x2b\\x55\\x08\\xcc\\x39\\x31\\xb1\\x2d\\x88\\x75\\\r\n\\x94\\x47\\xf5\\xad\\x9b\\xf6\\x93\\x86\\xd1\\xb0\\x61\\xe3\\x46\\xd6\\x6f\\x37\\\r\n\\xdc\\xdc\\x92\\x78\\xad\\xec\\xf4\\x84\\x98\\x12\\x89\\x89\\xce\\x22\\x57\\x8f\\\r\n\\x24\\x70\\x4a\\xa7\\xaa\\x66\\x63\\x24\\x60\\xd4\\xb1\\xc3\\x56\\x08\\x3f\\x14\\\r\n\\x6d\\x00\\xed\\x77\\xbd\\x4a\\xc4\\xd1\\x27\\xa2\\xd6\\x2f\\xd1\\xcd\\x27\\x0a\\\r\n\\xbb\\x3c\\x9a\\xe5\\xb5\\x1a\\x33\\x0a\\xf1\\xe1\\x01\\x29\\x69\\x11\\x0f\\x62\\\r\n\\xf3\\x78\\x32\\x17\\xcd\\x60\\x94\\x11\\xb7\\x07\\x26\\xfc\\xe1\\x4c\\xf8\\x35\\\r\n\\x4b\\x28\\xeb\\xba\\xc5\\x5b\\x0c\\x05\\x8f\\xca\\x5e\\xe7\\x79\\x4d\\xd0\\x77\\\r\n\\x83\\x9a\\x82\\x6e\\xdd\\xc0\\x6b\\x12\\x47\\x8f\\x76\\xd3\\xf9\\xf2\\xb8\\xfa\\\r\n\\xd3\\x19\\x32\\x1e\\xdd\\x6f\\xd4\\x0c\\x17\\xf5\\xa6\\x2a\\x81\\xab\\xa8\\x78\\\r\n\\x1b\\x91\\xda\\xf6\\xe5\\xa7\\x3c\\xa4\\xdf\\xed\\xce\\x82\\x09\\x63\\x90\\x90\\\r\n\\x63\\x09\\x82\\xce\\xed\\xdf\\xa4\\x3c\\xa7\\xe5\\xf6\\xda\\x91\\x1b\\x78\\xa8\\\r\n\\xab\\x81\\x2a\\xa6\\xf5\\x17\\x0c\\xd4\\x6f\\xdd\\x1e\\x32\\x19\\xd3\\x60\\xc0\\\r\n\\xf3\\xf9\\xd2\\x7e\\xfd\\x4f\\x74\\x6c\\x37\\xd5\\x46\\x8a\\xa1\\x8b\\x48\\xd8\\\r\n\\x3b\\x71\\x7a\\x56\\x05\\x87\\xdc\\x04\\xff\\xcd\\x6e\\xe2\\x29\\x43\\x30\\xf0\\\r\n\\x83\\xe9\\x22\\x2e\\x0d\\xbf\\x44\\x9c\\xc7\\xc5\\x96\\x3a\\xb1\\xfb\\x18\\x08\\\r\n\\xcb\\x61\\xca\\x06\\x15\\xf7\\xac\\x34\\x8f\\xbd\\xbe\\x92\\x39\\xb3\\x00\\x20\\\r\n\\x13\\xd9\\x72\\xde\\x1d\\x2f\\x14\\xcc\\x57\\xb5\\xe6\\xea\\xc1\\x6b\\xe8\\x38\\\r\n\\x5b\\x51\\x1a\\xb6\\x25\\x67\\x7c\\xcc\\x97\\xc7\\x15\\xea\\xc1\\x49\\xcb\\xf7\\\r\n\\x2b\\xa3\\xd9\\x29\\xa5\\xf5\\xff\\xc4\\xe5\\x87\\x34\\xb8\\xd3\\xff\\xba\\x61\\\r\n\\xe9\\x63\\x68\\x41\\x37\\xf7\\x4e\\xae\\xad\\xb6\\x5c\\xdc\\x5b\\xb8\\xa2\\x87\\\r\n\\x31\\xae\\x10\\x24\\x3f\\x18\\xb6\\xba\\x73\\x03\\x82\\xca\\xe5\\x34\\x8c\\x98\\\r\n\\x7b\\x31\\xba\\x16\\x45\\x47\\x1c\\xf6\\x41\\xe7\\xb5\\x0a\\xe1\\x69\\x6b\\x18\\\r\n\\x4b\\xc3\\x79\\xef\\x4c\\x33\\x81\\x24\\x07\\x84\\xd6\\xfa\\xe9\\xab\\x58\\xc8\\\r\n\\x0b\\x20\\x0a\\xc6\\x55\\xb6\\xec\\xf4\\xcf\\x14\\xf6\\x7d\\x64\\xd8\\x56\\x5a\\\r\n\\x75\\xb4\\xaf\\x61\\xa2\\xba\\x51\\xa3\\x91\\xd4\\x2c\\x66\\x04\\x63\\x2b\\x71\\\r\n\\x9f\\x69\\x5a\\x6f\\x7f\\x29\\xbd\\xf2\\x40\\xda\\x4f\\x34\\x93\\x0b\\x0f\\xf3\\\r\n\\xe6\\x09\\x03\\x8b\\x6f\\x5f\\x24\\x14\\xaf\\x0f\\x6d\\x5a\\x11\\x9b\\xf8\\x28\\\r\n\\xa2\\x05\\xaa\\x26\\x0d\\x97\\x8c\\x54\\xf6\\x47\\x9e\\xb2\\x97\\x52\\xe0\\x40\\\r\n\\xa5\\x66\\x52\\xfe\\xca\\xce\\xf4\\xec\\x81\\x4f\\xc6\\x0a\\xc9\\x14\\xc8\\xf0\\\r\n\\x33\\x9b\\xe1\\xd6\\x85\\x07\\x5c\\x30\\xf8\\x49\\xee\\x65\\xd2\\xc3\\xb0\\xfc\\\r\n\\x11\\x73\\xa2\\xec\\x86\\x3e\\xc4\\xbc\\x99\\x5a\\x16\\x5e\\x8f\\x7a\\x98\\x89\\\r\n\\x3b\\xfb\\x4a\\x29\\x5f\\x68\\x2c\\x1c\\x87\\x57\\x25\\x12\\xb9\\x33\\x80\\xa7\\\r\n\\x1b\\x5d\\xf2\\x1b\\xe7\\xaf\\x94\\xbf\\xc5\\x2f\\x66\\xf3\\x4a\\xea\\x68\\x34\\\r\n\\x06\\xce\\x9a\\xdd\\x19\\xe6\\xfc\\x84\\xf3\\x37\\x8e\\x46\\x05\\xbc\\x50\\xd0\\\r\n\\x23\\x49\\x42\\x39\\xaf\\x1f\\x64\\x29\\x98\\xda\\x49\\xc2\\x54\\x5b\\x38\\x0f\\\r\n\\x6e\\xc1\\xea\\xc0\\x48\\xa8\\x33\\x12\\x2d\\x1d\\xde\\x6b\\xd9\\x13\\x20\\x80\\\r\n\\xb3\\x39\\x92\\xbe\\xbd\\x8f\\x34\\xac\\xf7\\x15\\x06\\xca\\x61\\xcb\\x08\\x18\\\r\n\\xfb\\xb1\\x3a\\x96\\xc5\\xc7\\x9c\\x44\\xbf\\x0d\\x2e\\x22\\xe9\\x83\\xf0\\x30\\\r\n\\x43\\x29\\xe2\\x6e\\xcd\\xff\\x04\\xdc\\x87\\x67\\x54\\x7a\\x70\\xa0\\xd9\\x30\\\r\n\\x8a\\x77\\xab\\xa0\\xfc\\x37\\x6c\\x74\\x4f\\xfd\\x7e\\xd2\\xf9\\xf3\\xc0\\x60\\\r\n\\xd3\\x19\\x32\\x1e\\xdd\\x7e\\xd4\\x0c\\x17\\xf5\\xa6\\x2a\\x81\\xaa\\xa8\\x79\\\r\n\\x1b\\x8b\\xda\\xd5\\xe5\\xa7\\x3c\\xa5\\xdf\\xed\\xce\\xbc\\x08\\x63\\x90\\x9e\\\r\n\\x63\\x09\\x82\\xcb\\xed\\xdc\\xa6\\x3c\\xa7\\xe5\\xf6\\xda\\x91\\x18\\x78\\xab\\\r\n\\xab\\x60\\x28\\xf3\\xf1\\x17\\x0c\\xca\\x6f\\xdd\\x1e\\x32\\x19\\xd3\\x60\\x50\\\r\n\\xf2\\xf9\\xd2\\x6a\\xfc\\x48\\x75\\x6d\\x36\\xd4\\x47\\xca\\xe1\\x8a\\x08\\xd9\\\r\n\\x3a\\x70\\x7b\\x57\\x08\\x80\\xdd\\x05\\xfe\\xcc\\x6f\\xa2\\x69\\x42\\x70\\xf1\\\r\n\\x82\\xe8\\x23\\x2f\\x00\\xb8\\x45\\x9d\\xc6\\xc4\\x97\\x7a\\xf1\\xfa\\x58\\x09\\\r\n\\xca\\x60\\xcb\\x07\\x18\\xf7\\xac\\x34\\x8f\\xfb\\xbe\\xe6\\x22\\xcb\\x22\\x8f\\\r\n\\xe1\\xd8\\x72\\xaa\\x06\\xb0\\x36\\xcc\\x56\\xc1\\xfd\\x92\\xe3\\x6b\\xe8\\x6d\\\r\n\\x5b\\x51\\x1a\\xb6\\x25\\x67\\x7c\\x64\\x1f\\xd9\\x15\\x3a\\x6b\\x23\\xd1\\x50\\\r\n\\xa2\\xc9\\xc2\\x8e\\x2d\\x9f\\xe4\\xfc\\xe7\\xa5\\x36\\x9a\\xd1\\xdb\\xb8\\x68\\\r\n\\xeb\\x41\\x6a\\x66\\xe5\\xc9\\x4c\\x94\\x9f\\xb6\\x5f\\xed\\x0b\\x93\\xa0\\xed\\\r\n\\x3e\\xba\\x12\\x79\\x3e\\x4f\\xb7\\x28\\x77\\x95\\x86\\xfe\\xe1\\x19\\x82\\x3e\\\r\n\\x3d\\xf8\\xb4\\xda\\x4c\\x68\\x45\\x57\\x30\\xcc\\xb2\\x75\\x48\\x42\\x6c\\x67\\\r\n\\xe2\\x28\\x62\\xee\\x4d\\x9a\\x84\\x08\\x06\\x85\\xd6\\x50\\xd0\\xb9\\x58\\x14\\\r\n\\x2a\\x23\\x0a\\xe4\\x57\\x95\\xee\\xcc\\xcd\\x74\\xfc\\x50\\x7b\\x73\\x40\\x54\\\r\n\\x53\\xcb\\xb8\\x38\\x1b\\x26\\x5a\\x11\\x9e\\x5a\\x7f\\x75\\x0e\\xac\\x34\\x61\\\r\n\\xba\\x96\\x46\\xef\\x44\\xa6\\x3c\\x2b\\x5f\\x84\\x4e\\x4f\\x88\\xe3\\x10\\x22\\\r\n\\xc8\\x8b\\x02\\xd1\\x7b\\x5d\\x24\\x97\\x25\\x72\\x74\\x60\\x13\\x9c\\xfa\\x2a\\\r\n\\x29\\x01\\xaa\\x27\\x75\\x97\\x8c\\x55\\xef\\x5d\\x9e\\xb3\\xe1\\xc9\\x31\\x8b\\\r\n\\xda\\xd5\\x49\\xfb\\x7d\\xcf\\xf4\\xec\\xb7\\x55\\xc6\\x0a\\x22\\x21\\xc8\\x5d\\\r\n\\xbb\\xf1\\xfa\\x6b\\xda\\xf8\\x2f\\x7b\\x80\\xb2\\x11\\x9d\\x5e\\x3c\\x4f\\x8f\\\r\n\\xfc\\x92\\x5d\\x59\\x72\\xc0\\x33\\xe3\\xf8\\xbe\\xe9\\xc5\\xce\\x84\\x67\\x57\\\r\n\\xb4\\x1e\\xb5\\x7d\\x6b\\x88\\xb3\\x4b\\xf0\\xc2\\xc1\\xe4\\x66\\xda\\x7f\\x5f\\\r\n\\x6c\\xa6\\x0d\\xa1\\x62\\x51\\x69\\xb3\\x28\\xca\\x99\\x91\\xbe\\x14\\x96\\x47\\\r\n\\x24\\x2e\\x65\\xc9\\x5a\\x1a\\x03\\x1b\\x62\\xd2\\x73\\x3d\\x06\\x5c\\xaf\\x2f\\\r\n\\xdc\\xb6\\xbd\\xf0\\x42\\xe1\\xbb\\x83\\x98\\xda\\x49\\xe5\\xae\\xb4\\xc7\\x17\\\r\n\\x9c\\x3e\\x15\\x9d\\x8b\\xf8\\x33\\xeb\\xd0\\xe0\\x23\\x8f\\x36\\xee\\xde\\xff\\\r\n\\x4c\\xc7\\x6d\\x01\\x43\\x70\\xcb\\x53\\x08\\xea\\xf9\\xb5\\x98\\x34\\xd7\\xe7\\\r\n\\x04\\x4e\\xc5\\x69\\x3a\\x30\\xe3\\xbb\\x40\\xf2\\xd1\\xdd\\x14\\x2c\\x0f\\xcf\\\r\n\\xbc\\xd6\\x0d\\xb1\\x12\\x00\\xcb\\x23\\x78\\xfa\\xa9\\x87\\x8e\\xd0\\xa7\\xb7\\\r\n\\x74\\x5e\\x75\\xb1\\x2a\\xe0\\x81\\x8b\\xb0\\x02\\x81\\x0c\\x06\\x2c\\x3f\\x9f\\\r\n\\x2c\\xe6\\xcd\\xe1\\x21\\x9b\\x2b\\xf3\\xe8\\x0a\\x59\\xd5\\x72\\x75\\xd5\\x87\\\r\n\\xe4\\x6e\\x21\\x09\\x0a\\x58\\xc3\\x5b\\x20\\x12\\x31\\xfb\\x76\\x94\\x67\\x6f\\\r\n\\x9c\\xf6\\x7d\\x21\\x12\\xb0\\x5b\\xc3\\x58\\x1a\\x09\\x25\\xee\\xec\\x07\\x57\\\r\n\\x54\\x7e\\xd5\\x59\\x0a\\x68\\xe3\\x2b\\x90\\x22\\xe1\\xcd\\xe6\\x2e\\x9f\\x3f\\\r\n\\x0c\\x06\\x2d\\x81\\x02\\xb0\\xa2\\x93\\xc8\\x2a\\xb9\\x55\\xde\\xd4\\xb6\\x27\\\r\n\\xc6\\x8e\\x85\\xa8\\xfa\\x7a\\x23\\xfb\\x00\\x32\\x91\\x59\\xd6\\xb8\\xcf\\x0f\\\r\n\\x7c\\x16\\xdd\\xd1\\xf2\\x44\\xbb\\x63\\x38\\x3a\\x69\\x65\\x4e\\x04\\xe7\\xf7\\\r\n\\xb4\\x9e\\x35\\xf8\\xeb\\x22\\x43\\x4b\\x70\\x40\\x41\\x69\\xc6\\x4c\\xfb\\xdf\\\r\n\\xec\\x26\\x8d\\x71\\x62\\xd0\\x4b\\x33\\xa8\\x4a\\x19\\x14\\xbe\\xd4\\x17\\xc7\\\r\n\\xa4\\xae\\xe5\\x49\\xda\\x18\\x87\\x9b\\xe0\\x52\\xf1\\x3d\\xa4\\xdd\\x26\\xaf\\\r\n\\x5c\\x36\\xbd\\x70\\xd2\\x60\\x1b\\x03\\x18\\x58\\xc1\\x65\\x2e\\x24\\x47\\x97\\\r\n\\x12\\xbe\\x95\\x99\\x4a\\x2a\\xf3\\x6b\\x50\\x62\\xa1\\x04\\xa6\\x6c\\x5f\\x7f\\\r\n\\xcc\\x46\\xed\\xc1\\xc2\\xf0\\x47\\xd3\\x88\\x6a\\x79\\x35\\x1e\\xb4\\x77\\x67\\\r\n\\x84\\xce\\x83\\xe9\\xba\\xb8\\x80\\x3b\\xc0\\x72\\x51\\x5d\\xbe\\xdc\\x87\\x4f\\\r\n\\x3c\\x56\\x9d\\x31\\xb2\\x80\\x78\\xa3\\xf8\\x7a\\x29\\x05\\x0e\\x04\\xa5\\x37\\\r\n\\xf4\\xde\\xf5\\x39\\xa8\\x68\\x13\\x0b\\x30\\x82\\x11\\xad\\x8e\\xac\\xaf\\x1f\\\r\n\\xac\\x66\\x4d\\xe3\\x22\\x30\\xaa\\x73\\x68\\x8a\\xd9\\x41\\xfe\\xd4\\xd7\\x07\\\r\n\\x64\\xee\\xa5\\x89\\x9b\\xd8\\x49\\xdb\\xa0\\x92\\xb1\\xfd\\x77\\x1c\\x7f\\xef\\\r\n\\x1c\\x76\\xfd\\xb1\\x02\\xa0\\x5b\\x43\\xd8\\x9a\\x89\\xa5\\xe6\\x64\\xb7\\xd7\\\r\n\\xd4\\xfe\\x55\\xd9\\x8a\\x68\\x5b\\xab\\x10\\xa2\\x61\\x49\\x76\\xae\\x1f\\xbf\\\r\n\\x8c\\x84\\xad\\x25\\x82\\x30\\x4a\\x13\\x48\\xaa\\x39\\xf5\\xce\\xd7\\x27\\xa7\\\r\n\\x44\\x0e\\x05\\xab\\x32\\xf8\\x8a\\x7b\\x80\\xb2\\x11\\x95\\x5e\\x3c\\x0d\\x8f\\\r\n\\xfc\\x96\\x5d\\x50\\x52\\x40\\x73\\xe3\\xb8\\xba\\xe9\\x65\\xce\\x84\\x6f\\x77\\\r\n\\xb4\\x1e\\xb5\\x79\\x6a\\xa8\\xdb\\x4b\\xf0\\xc2\\xc1\\xed\\x66\\xcc\\x7f\\x5f\\\r\n\\x6c\\xa6\\x0d\\xa5\\x6e\\x58\\x69\\xb3\\x20\\xca\\x99\\x84\\xae\\x34\\x97\\x47\\\r\n\\x24\\x2e\\x65\\xc9\\x5a\\x38\\x03\\x1b\\x62\\xd2\\x71\\x3d\\x36\\x58\\xaf\\x2f\\\r\n\\xdc\\xb6\\xbd\\xf3\\x52\\xe0\\x93\\x83\\x98\\xda\\x49\\xe5\\xac\\xa6\\xc7\\x17\\\r\n\\x94\\x3e\\x15\\x19\\x4a\\xfc\\x73\\xeb\\xd0\\xe2\\x21\\x2d\\x24\\xec\\xdf\\xff\\\r\n\\x4c\\xc6\\x6d\\x41\\xc3\\x20\\xc3\\x53\\x08\\xea\\xf9\\x35\\x3e\\x35\\xff\\xe7\\\r\n\\x04\\x4e\\xc5\\x7d\\x3a\\x38\\xf3\\xbb\\x40\\xf2\\xd1\\xdd\\x96\\x7a\\x1f\\xef\\\r\n\\xbc\\xd6\\x1d\\x81\\x22\\x10\\xfb\\x23\\x78\\xfa\\xa9\\x8d\\x8e\\xc4\\x26\\xb7\\\r\n\\x74\\x5e\\x75\\xa9\\x2a\\xc8\\x91\\x8b\\xb0\\x02\\x81\\x2d\\x86\\x0c\\xbd\\x9f\\\r\n\\x2c\\xe6\\xcd\\xe1\\x22\\x90\\x0b\\x12\\x17\\x91\\xa6\\x2a\\x81\\xa8\\x57\\xf0\\\r\n\\x08\\x68\\xdb\\x96\\xe4\\xa5\\x3c\\xa4\\xdf\\xed\\xce\\x82\\x0b\\x62\\x90\\x90\\\r\n\\x62\\x09\\xbe\\x54\\xe0\\xb3\\xb6\\x51\\x58\\xe0\\xb7\\x00\\x6f\\x3a\\x78\\x07\\\r\n\\x54\\xa0\\x6a\\x96\\xf5\\x37\\x0c\\xa2\\x6e\\xb7\\x20\\xcd\\xc6\\x2c\\x8f\\x3f\\\r\n\\x29\\x16\\x6d\\xa1\\x02\\xb0\\x8b\\xb3\\xc8\\x2a\\xba\\x75\\x5e\\x74\\xb7\\x25\\\r\n\\xc4\\x8e\\x85\\xa9\\xfa\\x78\\x27\\xfb\\x08\\xa2\\x91\\x1d\\xd6\\xbc\\xcf\\x0f\\\r\n\\x7c\\x14\\xd5\\xd1\\xf2\\x40\\xbb\\x63\\x20\\x38\\x69\\xc5\\x4e\\x04\\xa7\\xff\\\r\n\\x34\\x98\\x31\\xf9\\xea\\x08\\x53\\xcb\\x70\\x0a\\x44\\x6d\\xc6\\x4c\\xff\\x9f\\\r\n\\xfc\\x20\\x09\\x21\\xe2\\xd0\\xeb\\xcc\\x57\\xb5\\xe6\\xea\\xc1\\x6b\\xe8\\x38\\\r\n\\x5b\\x51\\x1a\\xb6\\x25\\x67\\x7c\\x64\\x1f\\xad\\x0e\\x42\\x49\\x23\\xd0\\x50\\\r\n\\xa3\\xc9\\xc2\\x8e\\x2d\\x9f\\xe4\\xfc\\xe7\\xa5\\x36\\x9a\\xd1\\xdb\\xb8\\x68\\\r\n\\xeb\\x41\\x6a\\x66\\x35\\xd7\\x4c\\x94\\xaf\\x9d\\x5e\\xf2\\x59\\x93\\xa0\\x80\\\r\n\\x33\\xb9\\x12\\x3e\\x3d\\x0f\\xb4\\x2c\\x77\\x95\\x86\\x4a\\xe1\\x4b\\x88\\x98\\\r\n\\x7b\\x31\\xba\\x16\\x45\\x47\\x1c\\xc4\\x3f\\x8d\\xae\\xa2\\x69\\x03\\x70\\xb0\\\r\n\\xc3\\xa9\\x62\\xee\\x4d\\x7f\\x84\\x5c\\x07\\x85\\xd6\\xfa\\xf1\\xbb\\x58\\xc8\\\r\n\\x0b\\x21\\x0a\\xc6\\x55\\xb7\\xec\\xf4\\xcf\\x7d\\xfe\\x52\\x79\\x73\\x40\\xe0\\\r\n\\x53\\x99\\xb2\\x9e\\x5d\\xef\\x54\\x8c\\x97\\x75\\x26\\xaa\\x01\\x2b\\x28\\xf8\\\r\n\\x9b\\x11\\x5a\\x76\\x65\\x27\\xbc\\x24\\x5f\\x6d\\x4e\\x02\\x89\\xe3\\x10\\x10\\\r\n\\xe3\\x89\\x02\\x4e\\x6d\\x5f\\x24\\xbc\\x27\\x65\\x76\\x5a\\x11\\x9b\\xf8\\x28\\\r\n\\x2b\\x01\\xaa\\x26\\x75\\x97\\x8c\\x54\\xef\\x5d\\x9e\\xb2\\x99\\x53\\xe0\\x40\\\r\n\\x73\\x79\\x52\\xfe\\x7d\\xcf\\xf4\\xec\\xb7\\x55\\xc6\\x0a\\x21\\x0b\\xc8\\x58\\\r\n\\xbb\\xf1\\xfa\\xd6\\x85\\x07\\x5c\\x84\\x7f\\x4d\\xee\\x62\\xa9\\xc3\\xb0\\x70\\\r\n\\x03\\x69\\xa2\\xae\\x8d\\x3f\\xc4\\x1c\\x47\\x45\\x16\\xba\\x31\\x7b\\x98\\x88\\\r\n\\x4b\\xe1\\x4a\\x86\\x95\\x77\\x2c\\xb4\\x0f\\x3d\\x3e\\x12\\xb9\\x33\\x80\\xa0\\\r\n\\x93\\x59\\xf2\\x5e\\x9d\\xaf\\x94\\x4c\\xd7\\x35\\x66\\x6a\\x41\\xeb\\x68\\xb8\\\r\n\\xdb\\xd1\\x9a\\x36\\xa5\\xe7\\xfc\\xe4\\x9f\\x2d\\x8e\\xc2\\xc9\\xa3\\x50\\xd0\\\r\n\\x23\\x49\\x42\\x0e\\xad\\x1f\\x64\\x7c\\x67\\x25\\xb6\\x1a\\x51\\x5b\\x38\\xe8\\\r\n\\x6b\\xc1\\xea\\xe6\\xb5\\x57\\xcc\\x14\\x2f\\x1d\\xde\\x72\\xd9\\x13\\x20\\x00\\\r\n\\xb3\\x39\\x92\\xbe\\xbd\\x8f\\x34\\xac\\xf7\\x15\\x06\\xca\\x61\\xcb\\x08\\x18\\\r\n\\xfb\\xb1\\x3a\\x96\\xc5\\xc7\\x9c\\x44\\xbf\\x0d\\x2e\\x22\\xe9\\x83\\xf0\\x30\\\r\n\\x43\\x29\\xe2\\x6e\\xcd\\xff\\x04\\xdc\\x87\\x05\\x56\\x7a\\x71\\x3b\\xd8\\x48\\\r\n\\x8b\\xa1\\x8a\\x46\\xd5\\x37\\x6c\\x74\\x4f\\xfd\\x7e\\xd2\\xf9\\xf3\\xc0\\x60\\\r\n\\xd3\\x19\\x32\\x1e\\xdd\\x6f\\xd4\\x0c\\x17\\xf5\\xa6\\x2a\\x81\\xab\\xa8\\x78\\\r\n\\x1b\\x91\\xda\\xf6\\xe5\\xa7\\x3c\\xa4\\xdf\\xed\\xce\\x82\\x09\\x63\\x90\\x90\\\r\n\\x63\\x09\\x82\\xce\\xed\\xdf\\xa4\\x3c\\xa7\\xe5\\xf6\\xda\\x91\\x1b\\x78\\xa8\\\r\n\\xab\\x81\\x2a\\xa6\\xf5\\x17\\x0c\\xd4\\x6f\\xdd\\x1e\\x32\\x19\\xd3\\x60\\xc0\\\r\n\\xf3\\xf9\\xd2\\x7e\\xfd\\x4f\\x74\\x6c\\x37\\xd5\\x46\\x8a\\xa1\\x8b\\x48\\xd8\\\r\n\\x3b\\x71\\x7a\\x56\\x05\\x87\\xdc\\x04\\xff\\xcd\\x6e\\xe2\\x29\\x43\\x30\\xf0\\\r\n\\x83\\xe9\\x22\\x2e\\x0d\\xbf\\x44\\x9c\\xc7\\xc5\\x96\\x3a\\xb1\\xfb\\x18\\x08\\\r\n\\xcb\\x61\\xca\\x06\\x15\\xf7\\xac\\x34\\x8f\\xbd\\xbe\\x92\\x39\\xb3\\x00\\x20\\\r\n\\x13\\xd9\\x72\\xde\\x1d\\x2f\\x14\\xcc\\x57\\xb5\\xe6\\xea\\xc1\\x6b\\xe8\\x38\\\r\n\\x5b\\x51\\x1a\\xb6\\x25\\x67\\x7c\\x64\\x1f\\xad\\x0e\\x42\\x49\\x23\\xd0\\x50\\\r\n\\xa3\\xc9\\xc2\\x8e\\x2d\\x9f\\xe4\\xfc\\xe7\\xa5\\x36\\x9a\\xd1\\xdb\\xb8\\x68\\\r\n\\xeb\\x41\\x6a\\x66\\x35\\xd7\\x4c\\x94\\xaf\\x9d\\x5e\\xf2\\x59\\x93\\xa0\\x80\\\r\n\\x33\\xb9\\x12\\x3e\\x3d\\x0f\\xb4\\x2c\\x77\\x95\\x86\\x4a\\xe1\\x4b\\x88\\x98\\\r\n\\x7b\\x31\\xba\\x16\\x45\\x47\\x1c\\xc4\\x3f\\x8d\\xae\\xa2\\x69\\x03\\x70\\xb0\\\r\n\\xc3\\xa9\\x62\\xee\\x4d\\x7f\\x84\\x5c\\x07\\x85\\xd6\\xfa\\xf1\\xbb\\x58\\xc8\\\r\n\\x0b\\x21\\x0a\\xc6\\x55\\xb7\\xec\\xf4\\xcf\\x7d\\xfe\\x52\\x79\\x73\\x40\\xe0\\\r\n\\x53\\x99\\xb2\\x9e\\x5d\\xef\\x54\\x8c\\x97\\x75\\x26\\xaa\\x01\\x2b\\x28\\xf8\\\r\n\\x9b\\x11\\x5a\\x76\\x65\\x27\\xbc\\x24\\x5f\\x6d\\x4e\\x02\\x89\\xe3\\x10\\x10\\\r\n\\xe3\\x89\\x02\\x4e\\x6d\\x5f\\x24\\xbc\\x27\\x65\\x76\\x5a\\x11\\x9b\\xf8\\x28\\\r\n\\x2b\\x01\\xaa\\x26\\x75\\x97\\x8c\\x54\\xef\\x5d\\x9e\\xb2\\x99\\x53\\xe0\\x40\\\r\n\\x73\\x79\\x52\\xfe\\x7d\\xcf\\xf4\\xec\\xb7\\x55\\xc6\\x0a\\x21\\x0b\\xc8\\x58\\\r\n\\xbb\\xf1\\xfa\\xd6\\x85\\x07\\x5c\\x84\\x7f\\x4d\\xee\\x62\\xa9\\xc3\\xb0\\x70\\\r\n\\x03\\x69\\xa3\\xae\\x8d\\x3f\\xc4\\x1c\\x47\\x45\\x26\\xb9\\x05\\x35\\x7a\\x96\\\r\n\\x09\\xff\\x4a\\xe2\\x95\\x76\\x6e\\xb5\\x0f\\x3d\\x3e\\x12\\xb9\\x33\\x80\\xa0\\\r\n\\x93\\x49\\xf2\\x5f\\xf9\\x9b\\x8a\\x57\\xbd\\xbd\\xce\\x6c\\x41\\x33\\x69\\x9b\\\r\n\\xdb\\xd1\\x9a\\x36\\xa5\\xe6\\xa3\\xe5\\x9e\\x2d\\xba\\xc2\\xc9\\xa3\\x50\\xd0\\\r\n\\x23\\x4b\\x43\\x0f\\xad\\x1f\\x64\\x7c\\x67\\x25\\xb4\\x1a\\x51\\x5b\\x38\\xe8\\\r\n\\x6b\\xc2\\x80\\xfd\\xb5\\x57\\xa6\\x4b\\x2f\\x1d\\xdb\\x72\\xd9\\x11\\x20\\x00\\\r\n\\xb3\\x39\\x83\\xaf\\xac\\xba\\x94\\x68\\x57\\xd1\\x06\\x09\\x41\\xf0\\x08\\x18\\\r\n\\xf8\\xb1\\x3a\\x95\\xc5\\xc7\\x9e\\x44\\xbf\\x0e\\xaa\\x11\\x6d\\xb0\\x50\\x01\\\r\n\\x0e\\xe4\\x8b\\x8f\\xa4\\x1e\\x6d\\x45\\xef\\x9d\\x7e\\x52\\x59\\x13\\xe5\\x83\\\r\n\\x89\\xca\\xf8\\x46\\xd5\\x20\\x6c\\x7c\\xcd\\x3d\\x77\\xd2\\x06\\x0c\\xaa\\x7e\\\r\n\\xe3\\x18\\x33\\x1e\\xdd\\x6f\\xd4\\x0c\\x17\\xf5\\xa6\\x2b\\x80\\xab\\xa8\\x69\\\r\n\\x1a\\x91\\xfe\\xd5\\xe7\\x95\\x1d\\xb4\\xde\\xed\\xce\\x82\\x09\\x62\\x90\\x90\\\r\n\\x63\\x09\\x82\\xce\\xed\\xdf\\xa4\\x3c\\xa7\\xe5\\xf6\\xda\\xb0\\xe4\\x87\\x57\\\r\n\\x54\\x7e\\xd5\\x59\\x0a\\xe8\\xf3\\x2b\\x90\\x22\\xe1\\xcd\\xe6\\x2c\\x9f\\x3f\\\r\n\\x0c\\xf9\\xd2\\x7b\\xfd\\x4f\\x74\\x6c\\x37\\xd5\\x46\\x8a\\xa1\\x8b\\x48\\xd8\\\r\n\\x3b\\x71\\x7a\\x56\\x1b\\x87\\xdc\\x04\\xff\\xcd\\x6e\\x44\\x55\\x63\\x30\\xf0\\\r\n\\x83\\xe9\\x22\\x2e\\x75\\x25\\xc3\\x84\\xcf\\xc5\\x96\\x53\\x28\\x04\\xe4\\x0d\\\r\n\\xad\\x9e\\x20\\x07\\x47\\xf7\\xac\\x35\\x0f\\xbc\\xbe\\x92\\x39\\xb3\\x00\\x22\\\r\n\\x13\\xd9\\x72\\xde\\x1d\\x2f\\x14\\xcc\\x57\\xb5\\xe6\\xea\\xc1\\x6b\\xe8\\x38\\\r\n\\x5b\\x51\\x1a\\xb6\\x25\\x67\\x7c\\x64\\x1f\\xad\\x0e\\x42\\x49\\x23\\xd0\\x50\\\r\n\\xa3\\xc9\\xc2\\x8e\\x2d\\x9f\\xe4\\xfc\\xe7\\xa5\\x36\\x9a\\xd1\\xdb\\xb8\\x68\\\r\n\\xeb\\x41\\x6a\\x66\\x35\\xd7\\x4c\\x94\\xaf\\x9d\\x5e\\xf2\\x59\\x93\\xa0\\x80\\\r\n\\x33\\xb9\\x12\\x3e\\x3d\\x0f\\xb4\\x2c\\x77\\x95\\x86\\x4a\\xe1\\x4b\\x88\\x98\\\r\n\\x7b\\x31\\xba\\x16\\x45\\x47\\x1c\\xc4\\x3f\\x8d\\xae\\xa2\\x69\\x03\\x70\\xb0\\\r\n\\xc3\\xa9\\x62\\xee\\x4d\\x7f\\x84\\x5c\\x07\\x85\\xd6\\xfa\\xf1\\xbb\\x58\\xc8\\\r\n\\x0b\\x21\\x0a\\xc6\\x55\\xb7\\xec\\xf4\\xcf\\x7d\\xfe\\x52\\x79\\x73\\x40\\xe0\\\r\n\\x53\\x99\\xb2\\x9e\\x5d\\xef\\x54\\x8c\\x97\\x75\\x26\\xaa\\x01\\x2b\\x28\\xf8\\\r\n\\x9b\\x11\\x5a\\x76\\x65\\x27\\xbc\\x24\\x6f\\x68\\x6f\\x5e\\x06\\xd1\\xd0\\x01\\\r\n\\xe0\\xa9\\x02\\x4e\\x6d\\x5e\\x24\\xbc\\x27\\x65\\x76\\x4e\\x02\\x13\\xd8\\xa8\\\r\n\\xfb\\x04\\xaa\\x26\\x75\\x9b\\x8c\\x30\\xfd\\x61\\x19\\xb2\\x88\\x2b\\x7a\\x2a\\\r\n\\x3b\\xf7\\xdc\\xce\\x4d\\xbf\\xc8\\xe1\\xdb\\x47\\xab\\x0a\\x21\\x0b\\xc8\\x58\\\r\n\\xbb\\xf1\\xfa\\xd2\\xc5\\x07\\xdd\\x84\\x7f\\xde\\xec\\x22\\x8d\\xc3\\x30\\x70\\\r\n\\x63\\x69\\xa2\\xa8\\xe9\\x3f\\x4c\\x14\\x4f\\x65\\x1e\\x89\\xb0\\x53\\x30\\x88\\\r\n\\x4b\\xd8\\xda\\x86\\x95\\x77\\x2c\\x9d\\x06\\x34\\x3e\\x12\\x99\\x33\\xa0\\xa0\\\r\n\\x96\\x01\\xf2\\x5c\\x9f\\x6c\\x94\\x4c\\xd7\\x35\\x65\\x6a\\x41\\xeb\\x68\\xb8\\\r\n\\xdb\\x51\\x9a\\x36\\xa5\\xe7\\xfd\\xe5\\x9f\\x2d\\x8e\\xc2\\xc9\\xa3\\xd0\\xd4\\\r\n\\x23\\x49\\x42\\x0e\\xad\\x1f\\x64\\x7c\\x67\\x25\\xb6\\x1a\\x51\\x5b\\x38\\xe0\\\r\n\\x69\\xc1\\xea\\xa4\\xb5\\x57\\xcc\\x6b\\x2f\\x1c\\xdf\\x72\\xd9\\x94\\x2d\\x11\\\r\n\\xcb\\xa3\\x93\\xbf\\xe9\\x1f\\xbb\\x23\\x79\\x9a\\x89\\x5a\\xf1\\x59\\x99\\x95\\\r\n\\x74\\x21\\xab\\x06\\x4b\\x4a\\x12\\xcb\\x31\\x82\\xa3\\xaf\\x65\\x08\\x60\\xbe\\\r\n\\xcd\\xa2\\x68\\xe0\\x91\\x9c\\x5b\\xbf\\xd3\\xf0\\x8b\\x1e\\x15\\x5f\\xbc\\xc7\\\r\n\\xef\\xa1\\x8a\\xc8\\xd6\\x3c\\x99\\x74\\x73\\xfc\\xfa\\xb5\\x69\\x7c\\xbe\\xe1\\\r\n\\xb7\\x7d\\x32\\x5e\\x9d\\x7c\\xd4\\x83\\xb4\\x65\\x28\\x2a\\xdd\\xa8\\xe3\\xb2\\\r\n\\x64\\xb1\\xde\\xf6\\xe5\\xa7\\x3c\\xa4\\xdf\\xed\\xce\\x82\\x09\\x63\\x90\\x90\\\r\n\\x63\\x09\\x82\\xce\\xed\\xdf\\xa4\\x3c\\xa7\\xe5\\xf6\\xda\\x91\\x1b\\x78\\xa8\\\r\n\\xab\\x81\\x2a\\xa6\\xf5\\x17\\x0c\\xd4\\x6f\\xdd\\x1e\\x32\\x19\\xd3\\x60\\xc0\\\r\n\\xf3\\xf9\\xd2\\x7e\\xfd\\x4f\\x74\\x6c\\x37\\xd5\\x46\\x8a\\xa1\\x8b\\x48\\xd8\\\r\n\\x3b\\x71\\x7a\\x56\\x05\\x87\\xdc\\x04\\xff\\xcd\\x6e\\xe2\\x29\\x43\\x30\\xf0\\\r\n\\x83\\xe9\\x22\\x2e\\x0d\\xbf\\x44\\x9c\\xc7\\xc5\\x96\\x3a\\xb1\\xfb\\x18\\x08\\\r\n\\xcb\\x61\\xca\\x06\\x15\\xf7\\xac\\x34\\x8f\\xbd\\xbe\\x92\\x39\\xb3\\x00\\x20\\\r\n\\x13\\x26\\x5e\\xdc\\x03\\x3b\\x2d\\xe4\\x67\\x89\\xcc\\x37\\xf0\\x15\\x4b\\x38\\\r\n\\x5b\\xde\\x95\\xd2\\x0f\\xba\\x4d\\x2a\\x99\\xa3\\x06\\xcd\\xc6\\x47\\xfa\\x82\\\r\n\\xd9\\x01\\x62\\x8b\\x2d\\x10\\x6b\\x98\\xcd\\x78\\x07\\xe4\\x51\\xdd\\xb8\\xe7\\\r\n\\x64\\x25\\x6a\\x66\\x34\\xd7\\x4c\\xb4\\xaf\\x63\\xb1\\x4d\\xa4\\x6c\\x5f\\x7f\\\r\n\\xcc\\x46\\xee\\xc1\\xc2\\xf0\\x4b\\xd3\\x88\\x6a\\x71\\xa5\\x1c\\xb4\\x77\\x67\\\r\n\\x04\\xca\\x54\\xa9\\xb2\\xb8\\xe3\\x3b\\xc0\\x72\\x01\\x5d\\x96\\xfc\\x8f\\x4f\\\r\n\\x3c\\x54\\x9d\\x19\\xb0\\x80\\x7b\\xa3\\xf8\\x7b\\x09\\x05\\x0e\\x44\\xa7\\x37\\\r\n\\xf4\\xde\\x84\\x39\\x2a\\x48\\x13\\x0b\\x30\\x82\\x05\\xcd\\x86\\x8c\\xff\\x1f\\\r\n\\xac\\x6e\\xed\\xf1\\x22\\x10\\xab\\x73\\x68\\x8a\\xf9\\x55\\xff\\xd4\\xd7\\x07\\\r\n\\x64\\xee\\xa5\\x89\\x9a\\xd8\\x43\\xdb\\xa0\\x92\\xb9\\xfd\\x7e\\x1c\\xeb\\xef\\\r\n\\x1c\\x76\\xfd\\xb1\\x9a\\xa0\\x9b\\x43\\xc8\\x9a\\x89\\x85\\xce\\x64\\x07\\xdf\\\r\n\\xd4\\xee\\x71\\x99\\x0a\\x68\\x73\\xab\\x10\\xa2\\x25\\x4f\\x66\\x8c\\x1f\\xbf\\\r\n\\x8c\\x86\\xbd\\x81\\x82\\x30\\x0b\\x13\\x48\\xaa\\x39\\xf5\\xde\\xf4\\x37\\x27\\\r\n\\x44\\x0e\\x25\\x09\\x78\\xf8\\xa3\\x7f\\x80\\x32\\x11\\x9d\\x5f\\x3c\\x4f\\x8f\\\r\n\\xdc\\x87\\x59\\x41\\x73\\xc0\\x3b\\xe3\\xb8\\xba\\xe9\\x45\\x8e\\x84\\x67\\xf7\\\r\n\\xb4\\x5e\\xbf\\x79\\x4a\\x88\\xd3\\x4b\\xf0\\xc3\\xc1\\xfd\\x46\\xcc\\x7f\\x5f\\\r\n\\x6c\\xa4\\x0d\\xa1\\x62\\x50\\x6b\\xb3\\x28\\xca\\x19\\x95\\xbe\\x14\\xb7\\x47\\\r\n\\x24\\x2e\\x45\\xc9\\x7a\\x18\\x03\\x1b\\x61\\xd2\\x75\\x3d\\x17\\x5c\\xaf\\x2f\\\r\n\\xdc\\x96\\xbd\\x71\\x72\\xe0\\x9b\\x83\\x98\\xd9\\x48\\xe5\\xbe\\xa4\\xc6\\x17\\\r\n\\x94\\x36\\x05\\x39\\x4a\\xa8\\x33\\xeb\\xd0\\xe2\\x21\\x84\\x37\\xec\\xdf\\xfb\\\r\n\\x4c\\xc6\\x6d\\x43\\x40\\x70\\xcb\\x53\\x28\\xea\\xd9\\x3d\\x8a\\x34\\xf7\\xf7\\\r\n\\x04\\x4e\\xc5\\x68\\x3a\\x38\\x63\\xbb\\x40\\xe2\\xd1\\xdd\\x16\\x7c\\x0f\\xcf\\\r\n\\xbc\\xc6\\x0d\\x91\\x76\\x00\\xfb\\x23\\x78\\xea\\xe9\\x85\\x9e\\xc4\\x27\\xb7\\\r\n\\x74\\x4e\\x55\\xb9\\x22\\xcc\\x93\\x9b\\xb0\\x03\\x01\\x2c\\x84\\x0c\\x3f\\x9f\\\r\n\\x2c\\xa6\\xcd\\xe1\\x22\\xd0\\x2b\\xf3\\xe8\\x4a\\x70\\xf5\\x7e\\x55\\x57\\x87\\\r\n\\xe4\\xee\\x25\\x09\\x7a\\x58\\xc3\\x5b\\x20\\x16\\x21\\x65\\xf6\\x9c\\x6f\\x6f\\\r\n\\x9c\\xf6\\xdd\\x31\\x14\\x20\\x5b\\xc3\\x58\\x1a\\xc9\\x25\\x6e\\xf4\\x87\\x57\\\r\n\\xd4\\x7e\\xd1\\x59\\x0a\\xe8\\xf3\\x2b\\x90\\xa2\\xe1\\xcd\\xe6\\x2c\\x9f\\x3f\\\r\n\\x0c\\x27\\x2d\\x81\\x12\\xf0\\x8a\\x93\\xc8\\x2a\\xb9\\x77\\x50\\x74\\xb7\\x27\\\r\n\\xc4\\x8f\\x85\\xa9\\xf2\\x78\\x23\\xfb\\x00\\x32\\x71\\x1c\\xd6\\xbc\\xcf\\x4f\\\r\n\\x7c\\xb6\\xdf\\xd1\\x73\\x40\\xbb\\x63\\x38\\x3a\\x6d\\xc9\\xa7\\x04\\xe6\\xf7\\\r\n\\x34\\x9a\\x35\\xfb\\xea\\x08\\x53\\xcb\\x70\\x42\\x41\\x6d\\x86\\x4c\\xff\\xdf\\\r\n\\xec\\x26\\x8d\\x31\\xe2\\xd0\\xeb\\x33\\xa8\\x48\\x01\\x19\\x3e\\x94\\x17\\xc7\\\r\n\\xa4\\xae\\xe5\\x48\\xdb\\x98\\x83\\x9b\\xf0\\x52\\xc1\\xbd\\xb7\\xdc\\x2f\\xaf\\\r\n\\x5c\\x36\\xfd\\x71\\xd2\\x60\\x1b\\x03\\x18\\x4a\\xc9\\x75\\x0e\\x24\\x4f\\x97\\\r\n\\x14\\xb6\\xd5\\x9b\\xae\\x28\\xb3\\x6b\\x50\\x62\\xa7\\x0d\\xe6\\x6c\\x5f\\x7f\\\r\n\\xcc\\x46\\xfd\\xc5\\xd2\\xf0\\x4b\\xd3\\x88\\x6a\\x5b\\xf5\\x1e\\xb4\\x77\\x67\\\r\n\\x84\\xce\\x05\\xe9\\xba\\xb8\\xe3\\x3b\\xc0\\x52\\x55\\x5d\\x16\\xfc\\x8f\\x4f\\\r\n\\x3c\\x56\\x98\\x11\\xb3\\x80\\x7b\\xa3\\xf8\\x6a\\x69\\x15\\x4e\\x44\\xa7\\x36\\\r\n\\xf4\\xdf\\xf5\\x39\\xaa\\x48\\x13\\x0b\\x30\\xa2\\x00\\xad\\x86\\x8c\\xb5\\x1f\\\r\n\\xac\\x66\\x4d\\x65\\xa2\\x10\\xab\\x73\\x68\\x88\\xd9\\x54\\xef\\xd4\\x97\\x07\\\r\n\\x64\\xae\\xa5\\x89\\x9a\\xd8\\x43\\xdb\\xa0\\x93\\xb5\\xe9\\x76\\x5c\\xef\\xef\\\r\n\\x3c\\x74\\xfd\\xb1\\x92\\xa0\\xdb\\x43\\xd8\\x9a\\x8d\\x85\\x6f\\x24\\x05\\xd7\\\r\n\\xd6\\xde\\x55\\xd9\\x8a\\x6a\\x79\\xab\\x10\\xa2\\x61\\x4d\\x66\\x8c\\x9f\\xb7\\\r\n\\x8c\\x86\\xad\\x01\\x82\\x32\\x09\\x93\\x4c\\xaa\\x39\\xf5\\xde\\xf4\\x33\\xaf\\\r\n\\x4c\\x0e\\x05\\x29\\x7a\\xf8\\xe3\\x1b\\x02\\xb2\\x11\\x9d\\x56\\x3c\\x4f\\xaf\\\r\n\\xfc\\x96\\x5f\\x51\\x72\\xc3\\x3b\\xe3\\x28\\xba\\xe9\\x45\\xc6\\xa6\\x67\\x76\\\r\n\\xb4\\x1e\\xb5\\x79\\x6a\\x88\\xc1\\x4a\\xf0\\xc2\\xc1\\xed\\x46\\xcc\\x7f\\x5b\\\r\n\\x28\\xa6\\x0d\\xa1\\x62\\x10\\x69\\xb3\\x29\\xca\\xd9\\x95\\xbe\\x14\\x97\\xc7\\\r\n\\x34\\x2e\\x65\\xc9\\x5a\\x18\\x8b\\x1b\\x60\\xd2\\x71\\x3d\\x36\\x5c\\xaf\\x0f\\\r\n\\xdc\\xa6\\xbd\\xf1\\x52\\xe0\\x9a\\xa3\\x9c\\xda\\x49\\xe5\\xae\\xac\\xc7\\x17\\\r\n\\xb4\\x3e\\x15\\x19\\x4a\\xa8\\x33\\xaf\\xd2\\xe2\\x21\\x8d\\x26\\xfc\\xdf\\xfb\\\r\n\\x48\\xc6\\xed\\x41\\x42\\x70\\x4b\\x53\\x48\\xea\\xf9\\x37\\x9e\\x34\\xe7\\xf7\\\r\n\\x04\\x4e\\xc5\\xe9\\x3a\\x38\\x63\\xb3\\x50\\xf2\\xd9\\xdd\\x16\\x7c\\x0f\\xcf\\\r\n\\xbc\\x56\\x1d\\x91\\x32\\x02\\xfb\\x23\\xf8\\xfa\\xa9\\x85\\x86\\xdc\\x27\\x37\\\r\n\\xf4\\x5e\\x75\\xb9\\x2a\\x88\\x9b\\xab\\xb0\\x02\\xa1\\x2d\\x06\\x0c\\x3f\\x87\\\r\n\\x6e\\xe6\\xcd\\xe1\\x22\\x50\\x2b\\xd3\\xe8\\x0a\\x59\\xd5\\x5f\\x54\\x5f\\xa7\\\r\n\\xf4\\x6e\\x25\\x09\\x1a\\xd8\\xc2\\x5b\\x28\\x12\\x31\\x7d\\xf6\\xdc\\x6f\\x6b\\\r\n\\x9e\\xf6\\x7d\\x31\\x12\\x21\\x42\\x43\\x58\\x1a\\x09\\x25\\x6e\\xec\\xc7\\x53\\\r\n\\x74\\x7e\\xd5\\x59\\x0a\\xec\\x73\\xa9\\xb0\\x22\\xe5\\xcd\\xe6\\x8c\\xd3\\x2f\\\r\n\\x0c\\x06\\x2d\\x81\\x0a\\xb0\\x8b\\x92\\x88\\x2a\\xb9\\x75\\x4e\\x74\\xb7\\x27\\\r\n\\xc4\\x8e\\x85\\xa9\\xfa\\x68\\x2b\\xfb\\x08\\x32\\xb1\\x1d\\xd6\\x3c\\xcf\\x1f\\\r\n\\x29\\x16\\xdd\\x91\\xb2\\x40\\xbb\\x67\\x39\\x3a\\x69\\xc5\\x4e\\x04\\xb7\\xb7\\\r\n\\x34\\x9e\\x3d\\xf9\\xe2\\x08\\x42\\xcb\\x78\\x42\\x41\\x6d\\xc6\\xcc\\xdf\\xdf\\\r\n\\xec\\x36\\x8d\\x21\\xf2\\xd0\\xeb\\xa3\\xa8\\x4a\\x19\\x1d\\x3e\\x94\\x17\\xa7\\\r\n\\xa4\\xae\\xe5\\x49\\xda\\x98\\x83\\x93\\xe0\\x52\\xf1\\xbd\\xb6\\xdd\\x27\\xab\\\r\n\\x5c\\x36\\x3d\\x71\\xd2\\x60\\x1b\\x03\\x18\\x5a\\xc9\\x65\\x2e\\x24\\x47\\x87\\\r\n\\x14\\xbe\\x95\\xd9\\xca\\x28\\xb7\\x6b\\x00\\x62\\xa1\\x0d\\xa6\\x4c\\x1f\\x7f\\\r\n\\xcc\\x46\\xed\\xc1\\xc0\\xf1\\x43\\xb3\\x88\\x6a\\x79\\x35\\x1e\\xbc\\x77\\x67\\\r\n\\x86\\xce\\x45\\xe9\\xba\\x79\\xe3\\x3b\\xc0\\x72\\x51\\x5d\\x96\\x6c\\x8f\\x4f\\\r\n\\x3c\\x56\\x9d\\x11\\xb2\\x40\\x7b\\x67\\xf8\\x7a\\x29\\x05\\x0e\\x44\\x86\\x37\\\r\n\\xf4\\xde\\xf5\\x39\\xaa\\x48\\x1f\\x0f\\x30\\x82\\x01\\xad\\xa6\\x8c\\xbf\\x2f\\\r\n\\x8c\\x66\\x4d\\x61\\xa2\\x10\\xab\\x73\\x58\\x8a\\xd9\\x55\\xee\\xd4\\xd7\\x07\\\r\n\\x64\\xee\\xa5\\x89\\x9a\\x98\\x43\\xdb\\xa0\\x92\\x91\\xfd\\x76\\x1c\\xec\\xef\\\r\n\\x1c\\x72\\xfd\\xb1\\x92\\x60\\xdb\\x43\\xc8\\x9a\\x89\\xa5\\xee\\x66\\x05\\xff\\\r\n\\xd4\\xfe\\x15\\xd9\\x8a\\x60\\x73\\x6b\\x10\\xa2\\x61\\x4d\\x66\\xac\\x3f\\xbf\\\r\n\\x8c\\x86\\xad\\x23\\x82\\x31\\x09\\x13\\x18\\xaa\\x39\\xf5\\xde\\xf4\\x37\\x87\\\r\n\\x44\\x0e\\x05\\x29\\x7e\\xb9\\x82\\x7b\\x80\\xb2\\x11\\x9d\\x56\\x3c\\x4f\\x8f\\\r\n\\xd8\\x96\\x5d\\x51\\x72\\x80\\x39\\xf7\\xa8\\xba\\xe9\\x45\\xce\\x84\\x67\\x75\\\r\n\\x24\\x1e\\xb5\\x79\\x6a\\x88\\xd3\\xdb\\xf0\\xc2\\xc1\\xed\\x46\\xcc\\x7f\\x5f\\\r\n\\x6b\\xa6\\x0d\\xa1\\x26\\x50\\xeb\\xb3\\x28\\xca\\x99\\x95\\xba\\x14\\x93\\x77\\\r\n\\xa4\\x2e\\x65\\xc9\\x5a\\x38\\x01\\x1b\\x60\\xd2\\x73\\x3d\\x36\\x14\\xbf\\xa7\\\r\n\\xde\\xb6\\xbd\\xf1\\x52\\xf0\\xdb\\xa3\\x98\\xda\\x48\\xe5\\xac\\xbc\\xc7\\x07\\\r\n\\x94\\x3e\\x15\\x19\\x4a\\xa8\\x33\\xeb\\xd2\\xe2\\x21\\x8d\\x26\\xee\\xd5\\xf3\\\r\n\\x44\\xc6\\x6d\\x41\\x42\\x50\\xcb\\x4a\\x88\\xea\\xf9\\x35\\x1e\\x36\\xf7\\xe5\\\r\n\\x85\\x4e\\xc1\\x69\\x3a\\x38\\x6a\\xbb\\x42\\xf2\\xd1\\xdd\\x16\\x7c\\x04\\xcf\\\r\n\\xbc\\x96\\x1d\\x91\\x32\\x02\\xfb\\x23\\x70\\xfa\\xa9\\x85\\x8e\\xc4\\x27\\x97\\\r\n\\x74\\x5e\\x75\\xb9\\x2a\\x88\\x13\\x9b\\xf8\\x02\\x81\\x2d\\x06\\x0c\\x3f\\x9f\\\r\n\\x2f\\xe6\\x4d\\xe1\\x22\\xf2\\x13\\xb3\\xaa\\x0a\\x59\\xd5\\x7e\\x54\\x57\\x87\\\r\n\\xec\\x6e\\x25\\x09\\x1a\\x58\\xd3\\x5b\\xa0\\x12\\x31\\x7d\\xf6\\x9d\\x6f\\x69\\\r\n\\x1c\\xf6\\x7d\\x31\\x12\\x28\\x59\\xc7\\x50\\x1a\\x09\\x25\\x6e\\xec\\xc7\\x52\\\r\n\\x50\\x7e\\xd5\\xd9\\x0a\\xe8\\xf3\\xa9\\x80\\x22\\xe1\\xcd\\xe6\\x2d\\x9f\\x3f\\\r\n\\x8d\\x06\\x2d\\x81\\x02\\xb0\\x91\\x93\\x48\\x2a\\xb9\\x75\\x5e\\x7e\\xb7\\x27\\\r\n\\xc4\\x8e\\x85\\xab\\xfa\\x79\\x03\\xfb\\x06\\x32\\x91\\x1d\\xd6\\xbc\\xcf\\x1f\\\r\n\\x7d\\x06\\xdd\\xd1\\xf2\\x40\\xbb\\x47\\x38\\x3a\\x69\\xc5\\x4e\\x04\\xc7\\xf7\\\r\n\\xb4\\x9e\\x35\\xf9\\xea\\x08\\x53\\x8b\\x30\\x42\\x41\\x6d\\xc6\\x5c\\xff\\xdf\\\r\n\\xed\\x26\\x8d\\x21\\xe2\\xd0\\xeb\\x37\\xa8\\x4a\\x19\\x15\\x3e\\x84\\x17\\xc7\\\r\n\\xa4\\xae\\xe5\\x41\\xda\\x99\\x82\\x8b\\xe0\\x52\\xd1\\xbd\\xb6\\xd4\\xaf\\xaf\\\r\n\\x4c\\x36\\x39\\x71\\xf2\\x60\\x1f\\x82\\x18\\x5a\\xc9\\x6d\\x2e\\x65\\x47\\x97\\\r\n\\x18\\xbe\\x95\\x99\\xea\\x2c\\xa3\\x6b\\x91\\x62\\xa1\\x0d\\xa6\\x6c\\x5f\\x5f\\\r\n\\xcc\\x06\\xed\\xc1\\xc2\\xf0\\x4b\\xeb\\x09\\x6a\\x79\\xb5\\x1e\\xb4\\x03\\x47\\\r\n\\xc4\\xce\\x55\\xe9\\xba\\xb0\\xc3\\x2b\\xe2\\x72\\x51\\x4d\\x96\\xf4\\x8f\\x0f\\\r\n\\x3c\\x56\\x9d\\x11\\xb2\\x80\\x5e\\xbb\\xf8\\x7a\\x29\\x01\\x0e\\x44\\xae\\x37\\\r\n\\xf6\\xde\\xf5\\x39\\xaa\\x6c\\x12\\x4b\\x30\\x82\\x51\\xad\\x86\\x85\\xbb\\x1e\\\r\n\\x2c\\x66\\x4d\\x61\\xa2\\x10\\xaf\\x71\\x68\\x8a\\xd9\\x55\\xfe\\xd4\\xd7\\x27\\\r\n\\x66\\xee\\xa5\\x89\\x9a\\xf9\\x03\\xf9\\xa0\\x92\\xb0\\xfd\\x76\\x11\\xeb\\xef\\\r\n\\x1c\\x76\\xfd\\xb1\\xd2\\xa0\\xdb\\x43\\xd8\\x9a\\x89\\xa5\\xee\\x64\\x07\\xd5\\\r\n\\xd4\\xfe\\x5d\\xd9\\x8a\\x69\\x33\\xaf\\x12\\x22\\x61\\x4d\\x66\\xac\\x1f\\xbf\\\r\n\\x8c\\x86\\xad\\x01\\x82\\x10\\x0f\\x13\\x48\\xaa\\x3d\\xf5\\xde\\xf6\\xb7\\xa7\\\r\n\\x40\\x0e\\x05\\x29\\x7a\\xfc\\xa7\\x7b\\x80\\xb2\\x11\\x9d\\x56\\x2e\\x0f\\x8b\\\r\n\\xfc\\x96\\x5d\\x51\\x72\\xc4\\x33\\xe3\\xb8\\xba\\xe9\\x45\\xce\\x85\\x77\\x77\\\r\n\\xb4\\x1e\\xb5\\x79\\x6a\\x88\\x51\\x4b\\xf4\\xc2\\xc1\\xed\\x46\\x4c\\x7f\\x5f\\\r\n\\xec\\xb6\\x0d\\xa1\\x62\\x50\\x69\\xb3\\x20\\xc2\\x99\\x95\\xbe\\x16\\x13\\x47\\\r\n\\xa4\\x2e\\x65\\xc9\\x5a\\x18\\x02\\x1b\\x60\\xd2\\x71\\x3d\\x36\\x5c\\xaf\\x7f\\\r\n\\xdc\\xb2\\xbd\\xf1\\x52\\xe0\\x3b\\x83\\x9d\\xda\\x4b\\xe5\\xae\\x24\\xc7\\x36\\\r\n\\x90\\x3e\\x15\\x19\\x4a\\x88\\x33\\xeb\\xd1\\xe0\\x21\\x8d\\x26\\xec\\x7f\\xfe\\\r\n\\x4c\\xc6\\x6d\\x41\\x42\\x71\\xc9\\x56\\x0a\\xea\\xf9\\x35\\x9e\\x34\\xf6\\xe7\\\r\n\\x14\\x4e\\xc5\\x69\\x3a\\x38\\x63\\xbb\\xc8\\xf2\\xd1\\xdd\\x16\\x7c\\x8f\\xcf\\\r\n\\xbc\\xd6\\x1d\\x91\\x32\\x00\\xbb\\x23\\x68\\xf2\\xa9\\x85\\x8e\\xc5\\x26\\xb6\\\r\n\\x75\\x5e\\x75\\xb9\\x2a\\xc8\\x93\\x89\\x30\\x02\\x81\\x25\\x06\\x0e\\x3f\\x9f\\\r\n\\x6c\\xe6\\xcd\\xe1\\x22\\x95\\x2b\\xf3\\x68\\x02\\x49\\xd5\\x7e\\x54\\x57\\x87\\\r\n\\x64\\x6e\\x25\\x09\\x3a\\x18\\x83\\x0b\\x30\\x12\\x31\\x7d\\xf6\\x9c\\x6f\\x6f\\\r\n\\x94\\xf6\\x7d\\x31\\x12\\x20\\xdb\\xc3\\x1c\\x1a\\x09\\x25\\x6e\\xe4\\x87\\x56\\\r\n\\x54\\x7e\\xdd\\x59\\x0a\\xec\\xf3\\x2b\\x90\\x22\\xe1\\xcd\\xe4\\xad\\x9c\\x3f\\\r\n\\x08\\x06\\x2d\\x81\\x02\\xf0\\xeb\\x9f\\x48\\x2a\\xb9\\x75\\x5e\\x74\\x97\\x87\\\r\n\\x4a\\x8e\\x85\\xa9\\xfa\\x78\\x2a\\xeb\\x01\\x32\\x91\\x1d\\x56\\xbc\\xcf\\x0f\\\r\n\\x7c\\x16\\xdd\\xd1\\xf2\\x41\\xbb\\x6b\\x38\\x3a\\x69\\xc5\\x4f\\x05\\xe7\\x76\\\r\n\\x74\\x9e\\x35\\xf9\\xea\\x50\\xd3\\xc2\\x70\\x42\\x40\\x6d\\xc6\\x4c\\xff\\xdf\\\r\n\\xac\\x26\\x8d\\x21\\xe2\\xd4\\xe9\\x33\\xaa\\x4a\\x19\\x15\\x3e\\x94\\x3f\\xc7\\\r\n\\xe4\\xae\\xe5\\x49\\xda\\x98\\x83\\x1f\\xf0\\x52\\xf1\\xbd\\xb6\\xd4\\x27\\xaf\\\r\n\\x5c\\x36\\x3d\\x71\\xd2\\x20\\x1b\\x03\\x18\\x5a\\xc9\\x75\\x2e\\x24\\x07\\x9f\\\r\n\\x14\\xbe\\x95\\x99\\xca\\x68\\xf3\\xfb\\x50\\x62\\xa3\\x09\\xa6\\x2c\\x5d\\x6f\\\r\n\\xcc\\x46\\xed\\xc1\\xc2\\xf1\\x4b\\x53\\xa8\\x6b\\x79\\xb5\\x1e\\xb4\\x7f\\x66\\\r\n\\x06\\xce\\x45\\xe9\\xba\\xf9\\x83\\xab\\xc2\\x72\\x51\\x5d\\x96\\xfc\\x8f\\x4f\\\r\n\\x3c\\x56\\x9d\\x11\\xb2\\x80\\x3b\\xb3\\xd8\\x7a\\x29\\x05\\x0e\\x44\\x27\\x3a\\\r\n\\xd4\\xfe\\xf5\\x29\\xaa\\x4a\\x13\\x2b\\x30\\x82\\x01\\xad\\x84\\x89\\xbf\\x1f\\\r\n\\xac\\x66\\x4d\\x61\\x82\\x10\\xab\\x72\\x6e\\x8a\\xd9\\x55\\xfe\\xd4\\xd7\\x47\\\r\n\\x64\\xee\\xa5\\xc9\\x9a\\xd8\\x53\\xcb\\xa0\\x92\\xb1\\xfd\\x76\\x2c\\xef\\xce\\\r\n\\x7e\\x76\\xfd\\xb1\\x92\\xa4\\xda\\x43\\xd8\\x9a\\x89\\xa5\\xee\\x6c\\x0f\\xff\\\r\n\\xd6\\xfe\\x55\\xd9\\x8a\\x7a\\x73\\xab\\x16\\xa2\\x61\\x4d\\x66\\xac\\x0e\\xaf\\\r\n\\x0c\\x87\\xad\\x01\\x92\\x22\\x8b\\x01\\x4a\\xaa\\x39\\xf5\\xde\\xf4\\x37\\x27\\\r\n\\x44\\x0e\\x85\\x29\\x7a\\xd8\\x83\\x3b\\x91\\xb2\\x11\\x9d\\x56\\xbc\\x6f\\x8f\\\r\n\\xec\\x96\\x5c\\x51\\xfa\\xc4\\x3b\\xd7\\xb0\\xba\\xe9\\x45\\xca\\x84\\x7f\\x77\\\r\n\\xb4\\x5e\\xb5\\x79\\x6a\\x88\\xdb\\x4b\\xc1\\xc2\\xc1\\xed\\x4e\\xfc\\xff\\x4f\\\r\n\\x70\\xa6\\x0d\\xa1\\x6b\\x51\\x6f\\xb3\\x2a\\xca\\x99\\x95\\xbe\\x14\\xa7\\x57\\\r\n\\x25\\x2e\\x65\\xc9\\x5a\\x18\\x23\\x5b\\x20\\xd2\\x71\\x1d\\x36\\x5a\\x2f\\x2f\\\r\n\\xdc\\xa6\\xbd\\xf1\\x52\\xe0\\x9b\\x23\\x98\\xda\\x49\\xe5\\xae\\xa2\\xc3\\x07\\\r\n\\x94\\x3e\\x05\\x19\\x4a\\x29\\x35\\xeb\\xf0\\xe2\\x21\\x8d\\x26\\xec\\xde\\xff\\\r\n\\x2c\\xc6\\x6d\\x41\\x42\\x30\\xda\\x53\\x08\\xea\\xf9\\x35\\x9e\\x74\\xf6\\xe7\\\r\n\\x04\\x4e\\xc5\\x69\\x3a\\x78\\x67\\xbb\\x40\\xf2\\xd1\\xdd\\x16\\x3c\\x0d\\xcf\\\r\n\\x98\\xd6\\x1d\\x91\\x33\\x02\\xfb\\x63\\x78\\xfa\\xa9\\x85\\x8e\\xc4\\x27\\x37\\\r\n\\x70\\x5e\\x75\\xa9\\x2a\\xc8\\x93\\x9b\\xb0\\x02\\x81\\x2d\\x06\\x0c\\x39\\x9d\\\r\n\\x3c\\xe6\\xcd\\xe1\\x22\\x91\\x23\\xf3\\xe8\\x0a\\x59\\xd5\\x7e\\x5c\\x56\\x87\\\r\n\\xe4\\x6e\\x25\\x49\\x1a\\xdc\\xcb\\x7b\\x20\\x12\\x31\\x7d\\xf6\\x1c\\x6f\\x6f\\\r\n\\x9c\\xf6\\x7d\\x31\\x12\\x22\\x5b\\xc3\\x1c\\x1a\\x09\\x25\\x6e\\x6c\\x87\\x53\\\r\n\\x54\\x7e\\xf5\\x59\\x0a\\x6c\\xf3\\x2a\\x18\\x02\\xe1\\xcd\\xe6\\x2d\\x9f\\x3e\\\r\n\\x0c\\x06\\x2d\\x81\\x02\\xb4\\x83\\x93\\xc8\\x6a\\xb1\\x75\\x5e\\x74\\xb7\\x24\\\r\n\\xec\\x8e\\x85\\xa9\\xfa\\xf8\\x23\\xeb\\x50\\x32\\x91\\x1d\\xd6\\xbc\\x0d\\x0d\\\r\n\\x6c\\x16\\xdd\\xd1\\xf3\\x50\\x3a\\x63\\x38\\x3a\\x69\\xc5\\x6e\\x20\\xe7\\xf3\\\r\n\\x34\\x9e\\x35\\xf9\\xea\\x08\\xd3\\x4b\\x70\\x42\\x41\\x6d\\xc6\\x0d\\xf7\\xdf\\\r\n\\xec\\x26\\x8d\\x21\\xe2\\xd8\\xab\\x33\\xa2\\x4a\\x19\\x15\\x3e\\x94\\x17\\xc6\\\r\n\\xa6\\xae\\xe5\\xc9\\xda\\x1a\\xf7\\x93\\xe0\\x52\\xf0\\xbd\\xb6\\xdc\\x2e\\xaf\\\r\n\\x5c\\x36\\x3d\\x71\\xd2\\x70\\x1a\\x03\\x18\\x5a\\xc9\\x65\\x2e\\x24\\x47\\x97\\\r\n\\x14\\xbe\\x95\\x99\\xca\\x64\\xf1\\x3b\\x50\\x62\\xa1\\x0d\\xa6\\x6c\\x1f\\x77\\\r\n\\xcc\\x06\\xfd\\xc1\\xc2\\xf0\\x68\\xd3\\x8b\\x6e\\x79\\xb5\\x1e\\x34\\x77\\x6f\\\r\n\\xa4\\xce\\x45\\xe9\\xba\\x3a\\xe2\\xbb\\xe9\\x32\\x71\\x5d\\x96\\xea\\x9f\\x4f\\\r\n\\xbc\\x56\\x9d\\x11\\xb2\\x80\\x7b\\xa7\\xf8\\x7a\\x29\\x05\\x0e\\x44\\xa7\\x37\\\r\n\\xf4\\xde\\xf5\\x39\\xaa\\x40\\x17\\x0b\\x10\\x82\\x01\\xad\\x96\\x8c\\xbf\\x1f\\\r\n\\xa4\\x66\\x4d\\x61\\xa2\\x13\\xa9\\x73\\x6a\\x8a\\xd9\\x55\\xfe\\xf4\\x77\\x0f\\\r\n\\x65\\xee\\xa5\\x89\\x8a\\xd8\\x43\\xfb\\xa0\\x92\\xb1\\xfd\\x76\\x1d\\xff\\xef\\\r\n\\x18\\x76\\xfd\\xb1\\x92\\xa1\\xff\\x63\\xd8\\x9a\\xa9\\xa5\\xee\\x7e\\x06\\xd3\\\r\n\\x94\\xfe\\x55\\xf9\\x8a\\x78\\x73\\xe9\\x50\\xa2\\x61\\x4d\\x66\\xac\\x9f\\xbf\\\r\n\\x8c\\x86\\xad\\x11\\x82\\x00\\x8b\\x13\\x48\\xaa\\x3d\\xf1\\xde\\xb4\\x35\\xb5\\\r\n\\x46\\x0a\\x05\\x29\\x7a\\xfa\\xa3\\x7b\\x80\\xb2\\x11\\xcd\\x56\\xbc\\x4f\\x8f\\\r\n\\xfc\\x96\\x5d\\x51\\x72\\xc0\\x3b\\xe3\\x38\\xba\\xe9\\x45\\xce\\x85\\x47\\x77\\\r\n\\x3c\\x1e\\xb5\\x79\\x6a\\x8a\\xd3\\x4b\\xf0\\xc2\\xc1\\xed\\x46\\xcc\\xff\\x0b\\\r\n\\x6e\\xa6\\x0d\\xa1\\x62\\x50\\x6d\\xb7\\x38\\xca\\x99\\x95\\xbe\\x10\\xd7\\x45\\\r\n\\x24\\x2e\\x65\\xc9\\x58\\x7c\\x03\\x1b\\x40\\xd2\\x71\\x3d\\x36\\x68\\xaf\\x2f\\\r\n\\xd4\\xb6\\x3d\\xf1\\x52\\xe0\\x8b\\xc3\\x18\\xda\\x49\\xe5\\xae\\xa4\\xc3\\x57\\\r\n\\x94\\x3e\\x15\\x19\\xca\\xac\\x3b\\xef\\xd1\\xe2\\x20\\xad\\x26\\xac\\xdf\\xff\\\r\n\\x4c\\xc2\\x6f\\x61\\x42\\x74\\xcb\\x53\\x88\\xea\\xd9\\x35\\x9e\\x34\\xf5\\xe3\\\r\n\\x24\\x4e\\xc5\\x69\\x3a\\x19\\x73\\xbb\\x40\\xf2\\xd1\\xdd\\x16\\x7c\\x8f\\x4b\\\r\n\\xa4\\xd6\\x1d\\x91\\x12\\x08\\xeb\\x3b\\x60\\xfa\\xa9\\x85\\x8e\\xc4\\x2e\\xbf\\\r\n\\x64\\x5e\\x75\\xb9\\x2a\\xc8\\x90\\x03\\x31\\x02\\x81\\x3d\\x06\\x00\\x3f\\xdf\\\r\n\\x2d\\xe6\\xdd\\xe1\\x22\\x80\\x2b\\x73\\x68\\x0a\\x5b\\xd5\\x7e\\x56\\x57\\x87\\\r\n\\xe4\\x6e\\x25\\x09\\x1a\\x58\\xc3\\x1b\\x22\\x12\\x31\\x7d\\xf6\\x9c\\x2f\\x6f\\\r\n\\x9c\\xf6\\x7d\\x31\\x12\\x60\\x5b\\xf3\\x78\\x1a\\x09\\x2d\\x6e\\xe4\\x97\\x57\\\r\n\\xd4\\x7e\\xd5\\x59\\x0a\\xe8\\xf7\\x2b\\x90\\x22\\xe1\\xcd\\xe6\\x2c\\x87\\x3f\\\r\n\\x2c\\x06\\x2d\\x81\\x00\\xb0\\x93\\x97\\xc8\\x2a\\xb9\\x75\\x5e\\x74\\xb7\\x27\\\r\n\\xc4\\x8e\\x84\\xa9\\xfa\\x5a\\x2b\\xb3\\x00\\x12\\xb1\\x1d\\xd6\\x84\\xcf\\x07\\\r\n\\x34\\x16\\xdd\\xd1\\xf0\\x40\\x9b\\x63\\x38\\x1a\\x79\\xc5\\x4e\\x44\\xe6\\xf7\\\r\n\\x34\\x9e\\x35\\xf9\\xea\\x08\\x73\\xcf\\x74\\x42\\x41\\x2d\\xc6\\x4c\\xff\\xdf\\\r\n\\xec\\x26\\x8d\\x21\\xe2\\x90\\xe9\\x33\\xe8\\x4a\\x18\\x15\\x3e\\x94\\x57\\xc7\\\r\n\\xa4\\xae\\xc5\\x49\\xda\\x98\\x83\\x9a\\xc0\\x52\\xf1\\xbd\\xb6\\xdc\\xbf\\xa7\\\r\n\\x1c\\x36\\x3d\\x70\\xd2\\x60\\x9a\\x03\\x5d\\x5a\\xc9\\x65\\x2e\\x24\\x07\\x1f\\\r\n\\x04\\xbe\\x95\\x91\\xca\\x28\\x3b\\x6b\\x50\\x6a\\xa1\\x0d\\xa6\\x2c\\x5f\\x7f\\\r\n\\x4e\\x46\\xed\\xc1\\xc6\\xd0\\x4b\\xf3\\x88\\x4a\\xf9\\xb5\\x1e\\xb4\\x77\\x67\\\r\n\\x84\\xce\\x45\\xe9\\xba\\x39\\xe3\\x3f\\xc0\\x72\\x51\\x5d\\x96\\xdc\\x0f\\x4f\\\r\n\\x38\\x56\\x1d\\x11\\xb2\\x82\\x3a\\xa3\\xf8\\x7a\\x29\\x05\\x0e\\x45\\xa3\\x37\\\r\n\\xb4\\xde\\x75\\x39\\xaa\\x48\\x19\\xcb\\xb0\\x82\\x01\\xad\\x86\\x8c\\xbf\\x1f\\\r\n\\xac\\x67\\x4d\\x61\\xa2\\x85\\xae\\x73\\x69\\x8a\\xd9\\x55\\xfe\\xf5\\xd7\\x87\\\r\n\\x64\\xee\\xb5\\x89\\x9a\\xd8\\x43\\xfb\\xe0\\x92\\xb1\\xf5\\x76\\x1c\\xe7\\xed\\\r\n\\x1c\\x76\\xfd\\xb1\\x92\\xa0\\x5b\\x43\\xd8\\x9a\\x89\\xa5\\xee\\x64\\x8f\\xd2\\\r\n\\xd4\\xfe\\x55\\xd9\\x8a\\x68\\x71\\xeb\\x14\\xa2\\x61\\x4d\\x66\\xac\\x1e\\xbf\\\r\n\\xac\\x86\\xad\\x01\\x82\\x60\\x0a\\x13\\x58\\xaa\\x39\\xf5\\xde\\xfc\\x77\\xa7\\\r\n\\x44\\x0e\\x05\\x29\\x7a\\x98\\xa3\\x7b\\xa0\\xb2\\x01\\x9d\\x56\\x2c\\x4d\\x8d\\\r\n\\xfd\\x96\\x5d\\x51\\x72\\xe3\\x3b\\xe3\\xb8\\xba\\xe9\\x45\\xca\\x84\\x27\\x75\\\r\n\\xb4\\x1e\\xb5\\x79\\x6a\\x08\\xd3\\x4b\\xf0\\xc2\\xc1\\xed\\x46\\xce\\x7f\\x5d\\\r\n\\x6e\\xa6\\x0d\\xa1\\x62\\x50\\x6f\\xb3\\x28\\xca\\x19\\x95\\xbe\\x1c\\x95\\x47\\\r\n\\x24\\x2e\\x65\\xc9\\x5a\\x3a\\x03\\x1f\\x60\\xda\\x71\\x3d\\x36\\x4c\\xaf\\x0f\\\r\n\\xde\\xb6\\x3d\\xf1\\x52\\xf0\\xfb\\x83\\x98\\xda\\x48\\xe5\\xae\\xa4\\xc5\\x17\\\r\n\\x94\\x3e\\x15\\x19\\x4a\\xac\\x33\\xab\\xd0\\xe2\\x20\\x8d\\x26\\xec\\x9f\\xfb\\\r\n\\x4c\\xc6\\x6d\\x41\\x42\\x50\\xcb\\x53\\x28\\xfa\\xf9\\x35\\x9e\\x34\\xf7\\xf7\\\r\n\\x05\\x4e\\xc5\\x69\\x3a\\x38\\x61\\xbf\\x80\\xf2\\x51\\xdd\\x16\\x7c\\x0f\\x8f\\\r\n\\x3e\\xd6\\x1d\\x91\\x32\\x10\\xff\\xa7\\x78\\xfa\\xa9\\x85\\x8e\\xc4\\x27\\xb7\\\r\n\\x70\\x5e\\x75\\xb9\\x2a\\x48\\xb7\\x8a\\x98\\x02\\x81\\x2d\\x06\\x4c\\x1f\\x0d\\\r\n\\x2d\\xe6\\xcd\\xe1\\x22\\x30\\x2b\\xfb\\xe8\\x2a\\x59\\xd5\\x7a\\x54\\x57\\x07\\\r\n\\xe0\\x6e\\x25\\x09\\x1e\\xdc\\xc3\\x5b\\x30\\x12\\x30\\x7d\\xf6\\x98\\x6f\\x6d\\\r\n\\x9c\\xf6\\x7d\\x31\\x12\\x20\\x5b\\xc3\\x58\\x1a\\x09\\x25\\x6e\\xc4\\x87\\x57\\\r\n\\x58\\x7e\\xd5\\x59\\x0a\\xe8\\x73\\x2a\\x55\\x22\\xc1\\xcd\\xe6\\x2c\\x9b\\x3f\\\r\n\\x0f\\x06\\x2d\\x81\\x02\\xb1\\x8b\\x93\\xc8\\x2a\\xb9\\x75\\x5e\\x74\\xb7\\x6f\\\r\n\\xd4\\x8e\\x85\\xa9\\xfa\\x58\\x0b\\xfb\\x40\\x32\\x91\\x1d\\xd6\\x3c\\xcf\\x0f\\\r\n\\xe8\\x16\\xdd\\xd1\\xf2\\x40\\xbb\\x27\\x38\\x3a\\x69\\xc5\\x4e\\x1c\\xf7\\xf7\\\r\n\\x30\\x9e\\x35\\xf9\\xea\\x00\\x43\\xcb\\x52\\x02\\x41\\x6d\\xc6\\x0c\\xff\\xdb\\\r\n\\xec\\x26\\x8d\\x21\\xe2\\xd0\\x4b\\x33\\xa8\\x4a\\x19\\x15\\x2e\\x94\\x1f\\xc7\\\r\n\\x86\\xee\\xe5\\x49\\xda\\x98\\x83\\x93\\xf0\\x52\\xf5\\xbd\\xb6\\x5c\\x2f\\xaf\\\r\n\\x54\\x36\\x3d\\x71\\xd2\\x60\\x1b\\x0b\\x1c\\x5a\\xc8\\x65\\x2e\\x74\\x47\\x97\\\r\n\\x1c\\xbc\\x95\\x99\\xca\\x28\\x93\\x6b\\x18\\xe2\\xa1\\x2d\\xa6\\x6c\\x5f\\x7f\\\r\n\\xc8\\x46\\xed\\xc1\\xc2\\x71\\x4b\\xd3\\x8a\\x6a\\x79\\xb5\\x1e\\xb4\\x75\\x67\\\r\n\\x84\\xce\\x45\\xe9\\xba\\xb8\\xe1\\x3b\\xc0\\x72\\x51\\x5d\\x96\\x9c\\x8f\\x4f\\\r\n\\x34\\x56\\x9d\\x11\\xa2\\x80\\x7b\\xa3\\xfb\\x7a\\x29\\x05\\x0e\\x46\\x87\\x27\\\r\n\\xf4\\xde\\xf5\\x39\\xaa\\x58\\x13\\x0b\\x78\\x82\\x20\\xad\\xc6\\x0c\\xbf\\x1f\\\r\n\\xac\\x6e\\x4d\\x61\\xa2\\x10\\xbb\\x72\\x60\\x8a\\xd9\\xd5\\xfe\\xd5\\x97\\x9f\\\r\n\\x60\\xee\\xa5\\x89\\x9a\\xd8\\xc3\\xdb\\x82\\x92\\xb1\\xfd\\x76\\x1c\\xe7\\xef\\\r\n\\x1d\\x76\\xfd\\xb1\\x90\\xa0\\xd9\\x03\\xc8\\x9a\\x89\\x25\\xee\\xc4\\x07\\xc7\\\r\n\\xd4\\xfe\\x55\\xd9\\x0a\\x68\\x73\\xab\\x10\\xa2\\x61\\x4d\\x6e\\xad\\x1f\\x9b\\\r\n\\xc5\\x86\\xad\\x01\\x82\\xb4\\xcb\\x1b\\x48\\xaa\\x39\\xf5\\xde\\xf4\\x37\\xe7\\\r\n\\x4c\\x0e\\x05\\x29\\x7a\\xfa\\xa3\\x6b\\xa0\\xb2\\x11\\x9d\\x76\\x3c\\x6f\\x0f\\\r\n\\xfc\\x96\\x5d\\x51\\x72\\xe8\\x39\\xe3\\xb0\\xba\\xe9\\x45\\xce\\x84\\x67\\x77\\\r\n\\xb4\\x1e\\xb5\\x79\\x6a\\x80\\xd3\\x4b\\xb9\\xc2\\xc1\\xed\\x46\\xcc\\x6e\\x5e\\\r\n\\xe8\\xa6\\x0d\\xa1\\x62\\x58\\xfb\\xb3\\x20\\xca\\x99\\x95\\xbe\\x14\\xc7\\x47\\\r\n\\x24\\x2e\\x65\\xc9\\x5a\\x1c\\x03\\x13\\x60\\xd2\\x71\\x3d\\x36\\x56\\x6f\\x23\\\r\n\\xfc\\xb6\\xbd\\xf1\\x52\\xb0\\x9b\\x83\\x98\\xda\\x49\\xf5\\xae\\xa4\\x56\\x17\\\r\n\\x94\\x3e\\x15\\x19\\x4a\\xa8\\x33\\xfb\\xd4\\xe2\\x21\\x8d\\x26\\xec\\xdd\\xff\\\r\n\\x4e\\xc6\\x6d\\x41\\x4a\\x70\\xc7\\x53\\x8e\\xea\\xf9\\x15\\x9e\\x34\\xf7\\xe7\\\r\n\\x04\\x0e\\xc5\\x69\\x3a\\x38\\x62\\x9b\\x40\\xf2\\xd1\\xdd\\x16\\x3c\\x0f\\xdd\\\r\n\\xb9\\xd6\\x1d\\x91\\x12\\x00\\xbb\\xa3\\x68\\xfa\\xa9\\x85\\x8e\\xc7\\x2f\\xb7\\\r\n\\x74\\x5e\\x75\\xb9\\x2a\\xc8\\x99\\x88\\x81\\x02\\x81\\x2d\\x06\\x0c\\x3f\\xbf\\\r\n\\x38\\xe6\\xcd\\xe1\\x66\\x90\\x3a\\xf2\\xe8\\x0a\\x59\\xd5\\x7e\\x54\\x57\\x97\\\r\n\\xe4\\x6e\\xa5\\x09\\x1a\\x59\\xc3\\x53\\x34\\x32\\x31\\x7d\\xf6\\x9c\\x6f\\x0b\\\r\n\\xdc\\xf6\\x7d\\x31\\x22\\x60\\xdd\\xcb\\x58\\x1a\\x09\\x25\\x6e\\xe4\\x26\\x9f\\\r\n\\x54\\x7e\\xd5\\x59\\x1a\\xe8\\xf3\\x23\\x94\\x22\\xe1\\xcd\\xe6\\x64\\x9f\\x3b\\\r\n\\x9c\\x06\\x2d\\x81\\x03\\xb0\\x8b\\x83\\xca\\x2a\\xb9\\x35\\x5e\\x7d\\xb7\\x37\\\r\n\\xc4\\x8e\\x85\\xa9\\xfa\\x28\\x66\\x7b\\x20\\x32\\x91\\x1d\\xd6\\x38\\xca\\x0f\\\r\n\\x7c\\x16\\xdd\\xd1\\xf2\\x43\\x3a\\x63\\x39\\x3a\\x69\\xc5\\x4e\\x04\\xe6\\xf7\\\r\n\\x3c\\x9e\\x35\\xf9\\xea\\x0c\\x53\\xcb\\x60\\x42\\x41\\x6d\\xc6\\x64\\xff\\xcf\\\r\n\\xec\\x26\\x8d\\x21\\xe2\\xd0\\xf3\\xf3\\x38\\x4a\\x19\\x15\\x3e\\x94\\x97\\xd7\\\r\n\\xa4\\xae\\xe5\\x49\\xda\\x88\\x83\\x93\\x60\\x52\\xf1\\xbd\\xb6\\x9c\\x3f\\xaf\\\r\n\\x58\\x36\\x3d\\x71\\xd2\\x30\\x1b\\x03\\x0b\\x5a\\xc9\\x65\\x2e\\xb4\\x47\\x9e\\\r\n\\x3d\\xbe\\x97\\x99\\xca\\x28\\xb3\\x6a\\x54\\x62\\xa1\\x0d\\xa6\\x6c\\x5f\\x7f\\\r\n\\xcc\\x46\\xed\\xc1\\xc2\\xf0\\x4b\\x91\\x88\\x6a\\x79\\xb5\\x1e\\xb8\\x77\\x67\\\r\n\\xc4\\xce\\x45\\xe9\\xba\\xba\\xe3\\x3b\\xc0\\x72\\x11\\x5d\\x96\\xfd\\x8e\\x4b\\\r\n\\x35\\x56\\xbd\\x11\\xb2\\x8c\\x7b\\x33\\x78\\x7a\\x29\\x05\\x0e\\x4c\\xb7\\x37\\\r\n\\xf4\\xde\\xf5\\x39\\xaa\\x58\\x13\\x4b\\x10\\x82\\x01\\xad\\x86\\x8c\\xef\\x0f\\\r\n\\xad\\x6e\\x4d\\x61\\xa2\\x90\\x8b\\x43\\x48\\x8a\\xd9\\x55\\xfe\\xd4\\x56\\x17\\\r\n\\x64\\xee\\xa5\\x89\\x92\\xd8\\x07\\xfb\\x80\\x92\\xb1\\xfd\\x76\\x1c\\xe9\\xef\\\r\n\\x5c\\x56\\xfd\\xb1\\x92\\xa2\\xdb\\x43\\xc8\\x9a\\x89\\xa5\\xee\\x24\\x07\\xd3\\\r\n\\xd4\\xfc\\x55\\xd9\\x8a\\x68\\x73\\x8b\\x80\\xa2\\x61\\x45\\x66\\xee\\x1d\\xbf\\\r\n\\x8d\\x86\\xad\\x01\\x82\\x21\\x0b\\x93\\xc8\\xaa\\x39\\x75\\xde\\xd6\\x35\\xa7\\\r\n\\x54\\x0e\\x05\\x39\\x7a\\xf8\\xab\\x4b\\x85\\xb2\\x11\\x9d\\x56\\x3c\\x4f\\x8f\\\r\n\\x54\\x96\\x5d\\x51\\x72\\xc0\\x3b\\xeb\\xbc\\xba\\xe9\\x45\\xce\\x84\\x27\\x6f\\\r\n\\x9d\\x1e\\xb5\\x59\\x6a\\x88\\xd3\\xdb\\xf0\\xc2\\xc1\\xed\\x46\\xcc\\xfd\\x1f\\\r\n\\x6a\\xa6\\x0d\\xa1\\x62\\x58\\x68\\xb3\\xac\\xca\\x99\\x95\\xbe\\x14\\x93\\x47\\\r\n\\xe4\\x2e\\x65\\xc9\\x5a\\x18\\x03\\x1b\\x61\\xd2\\x71\\x3d\\x36\\x1d\\xeb\\x2f\\\r\n\\x1c\\xb6\\xbd\\xf1\\x52\\xf0\\x99\\xe3\\x98\\xda\\x49\\xe5\\xae\\xa4\\xe7\\x17\\\r\n\\x94\\x3e\\x15\\x19\\x4a\\xa8\\x31\\x69\\xd4\\xe2\\x21\\x8d\\x26\\xac\\xdb\\xbf\\\r\n\\x48\\xce\\x6d\\x41\\x42\\x34\\xcb\\x53\\x28\\xea\\xf9\\x35\\x9e\\x34\\xb7\\x67\\\r\n\\x24\\x1e\\xc5\\x69\\x3a\\x30\\x63\\xeb\\x40\\xf2\\xd1\\xdd\\x16\\x7c\\x0f\\xcf\\\r\n\\xfa\\xd6\\x1d\\x91\\x32\\x00\\xfb\\x2f\\x78\\xfa\\x29\\xc5\\x8e\\x44\\x26\\xb7\\\r\n\\x94\\x5a\\x75\\xb9\\x2a\\x89\\x17\\x8b\\xb0\\x02\\x81\\x2d\\x06\\x08\\x3d\\xbb\\\r\n\\x24\\xe6\\xcd\\xe1\\x22\\x99\\x4f\\x73\\xe8\\x0a\\x59\\xd5\\xfe\\x56\\x57\\x87\\\r\n\\xe4\\x6e\\x25\\x09\\x1a\\x4c\\xe3\\x5a\\xa0\\x12\\x31\\x7d\\xf6\\xcc\\x67\\x6f\\\r\n\\x9c\\xf6\\x7d\\xb1\\x12\\x20\\x5b\\xc3\\x59\\x1a\\x09\\x25\\x6e\\xa4\\x85\\x57\\\r\n\\x54\\x7e\\xd5\\xd9\\x0a\\xe8\\xf1\\x6b\\xba\\x22\\xe1\\xcd\\xe6\\x2c\\x9f\\x3f\\\r\n\\x4c\\x06\\x2d\\x81\\x02\\xb0\\x83\\x90\\xc9\\x2a\\xb9\\x75\\x5e\\xf6\\x97\\x23\\\r\n\\xec\\x8e\\x85\\xa9\\xfa\\x78\\x23\\xdb\\x00\\x32\\x91\\x1d\\xd6\\x38\\xcb\\x0d\\\r\n\\x7c\\x16\\xdd\\xd1\\xf2\\x40\\xbb\\x73\\x3a\\x32\\x69\\xc5\\x4f\\x24\\xe7\\xd7\\\r\n\\x30\\x96\\x35\\xf9\\xea\\x02\\x52\\x8b\\x70\\x42\\x41\\x65\\xc6\\x4c\\xf7\\xdf\\\r\n\\xec\\x26\\x8d\\x21\\xe2\\xd6\\xeb\\x37\\xb0\\x4a\\x19\\x1d\\x3e\\x94\\x07\\xc7\\\r\n\\xa4\\xae\\xe5\\x59\\xda\\xd9\\x83\\x9b\\xb1\\x52\\xf1\\x9d\\xb6\\xdc\\x2f\\xaf\\\r\n\\x5c\\x36\\x3d\\x71\\xd2\\x74\\x1b\\x83\\x18\\x4a\\xc9\\x65\\x2e\\x22\\x47\\x96\\\r\n\\x14\\xbe\\x95\\x99\\xca\\x28\\xa3\\x63\\x50\\x26\\xa1\\x0d\\x86\\xed\\x5e\\x7b\\\r\n\\x8c\\x46\\xed\\xc1\\xc2\\x70\\x4b\\xd3\\x88\\x6a\\x79\\xb5\\x1e\\xb4\\xd6\\x67\\\r\n\\x8c\\xee\\x45\\xe9\\xba\\xb8\\xc3\\x33\\xc0\\x70\\x51\\x5d\\x96\\xfc\\x8f\\x4f\\\r\n\\x3c\\x56\\x9d\\x11\\xb2\\x00\\x7b\\xab\\xb8\\x7a\\x29\\x05\\x0e\\x44\\xa7\\x73\\\r\n\\xd0\\xde\\xf5\\x39\\xaa\\x48\\x13\\x8b\\x30\\x82\\x01\\xad\\xd6\\x8c\\xbf\\x3f\\\r\n\\xad\\x66\\x4d\\x61\\xa6\\x11\\xa3\\x63\\x48\\x8a\\xd9\\x51\\xfe\\xd4\\xd7\\x07\\\r\n\\x6c\\xee\\xa4\\x89\\x9a\\xd8\\x4b\\xdb\\x20\\x92\\xb1\\xfd\\x76\\x1c\\x6f\\xef\\\r\n\\x0c\\x76\\xfd\\xb1\\x90\\xa6\\xdb\\x43\\xd9\\x9a\\x89\\xa5\\xee\\x64\\x03\\x97\\\r\n\\x90\\xfe\\x55\\xd9\\x8a\\x68\\x73\\xeb\\x38\\xa2\\x61\\x4d\\x66\\xad\\x1f\\xbf\\\r\n\\x8c\\x06\\xad\\x01\\x82\\x38\\x03\\x1b\\x48\\x8a\\x39\\xf5\\xde\\xf4\\x3d\\x27\\\r\n\\x64\\x0e\\x05\\x29\\x7a\\xfa\\xb3\\x7b\\x80\\xb2\\x11\\x9d\\x56\\xbc\\x6f\\x8f\\\r\n\\x3d\\x96\\x5d\\x51\\x72\\xc5\\x33\\xf1\\x38\\xba\\xe9\\x45\\xce\\x84\\x67\\x76\\\r\n\\x34\\x1a\\xb5\\x79\\x6a\\x88\\xd3\\x4b\\xf2\\xc2\\xc1\\xed\\x46\\xd8\\x7f\\x5f\\\r\n\\x6c\\xa6\\x0d\\xa1\\x62\\xd0\\x68\\xb3\\x28\\xca\\x99\\x9d\\xbe\\x30\\x97\\x57\\\r\n\\x24\\x2e\\x65\\xc9\\x5a\\x10\\x0b\\x19\\x64\\xd2\\x71\\x3d\\x36\\x58\\xcf\\x2f\\\r\n\\x5a\\xb6\\xbd\\xf3\\x52\\xe0\\x9b\\x82\\x98\\xda\\x49\\xe4\\xae\\xe2\\xd7\\x17\\\r\n\\x94\\x3e\\x15\\x59\\x4a\\xe8\\x33\\xeb\\xd8\\xe2\\x21\\x8d\\x16\\xac\\xff\\xff\\\r\n\\x4c\\xc6\\x6d\\x41\\x42\\x70\\xcb\\xd2\\x09\\xea\\x79\\xb5\\x9e\\x34\\xf7\\xc7\\\r\n\\x05\\x4e\\xc5\\x69\\x3a\\x38\\x63\\xbb\\x41\\xf2\\xd1\\xdd\\x06\\x3d\\x0b\\xcf\\\r\n\\xfc\\xd6\\x1d\\xd1\\x32\\x12\\xfb\\x2b\\x78\\xfe\\xa9\\xc5\\x8e\\xc4\\x2f\\x35\\\r\n\\x44\\xde\\x75\\xb9\\x2a\\xc0\\xf1\\x8b\\xb0\\x12\\x89\\x2d\\x06\\x0c\\x77\\x9f\\\r\n\\x2c\\xe6\\xcd\\xe1\\x20\\x90\\x2f\\x73\\xe8\\x0a\\x59\\xc5\\x7e\\x54\\x4f\\x83\\\r\n\\xc4\\x6e\\x25\\x09\\x1a\\x58\\xc1\\xdb\\x20\\x12\\x31\\x7d\\xf6\\x1c\\x2d\\x6e\\\r\n\\x9c\\xf6\\x7d\\x31\\x10\\x20\\x5b\\x83\\xf8\\x1a\\x09\\x25\\x2e\\xe5\\x87\\x57\\\r\n\\x5c\\x7e\\xd5\\x59\\x0a\\xe1\\xe3\\xa9\\xb0\\x22\\xf1\\xcd\\xe6\\x2c\\xd7\\x7f\\\r\n\\x0c\\x06\\x2d\\x81\\x02\\xb0\\x89\\x92\\xa8\\x2b\\xb9\\x75\\x5e\\x74\\xb7\\x27\\\r\n\\xc4\\x8e\\x85\\xa9\\xfa\\x78\\x73\\xfb\\x02\\x32\\xb1\\x1d\\xd6\\x3c\\x4f\\x2f\\\r\n\\x7c\\x16\\xdd\\xd1\\xf2\\x40\\xb3\\x73\\x38\\x3a\\x79\\xc5\\x4c\\x0c\\xe7\\xf7\\\r\n\\x34\\x9e\\x35\\xf9\\xee\\x08\\x53\\xcb\\xf8\\x52\\x41\\x6d\\xc6\\x7c\\xff\\xdf\\\r\n\\x6c\\x26\\x8d\\x21\\xe2\\xe0\\xea\\x77\\xa8\\x4a\\x19\\x15\\xbe\\x94\\x37\\xd3\\\r\n\\x2d\\xae\\xe5\\x49\\xda\\x98\\x83\\xba\\x60\\x52\\xf1\\xbd\\xb6\\x9c\\x2f\\xbf\\\r\n\\xce\\x36\\x3d\\x71\\xd2\\x60\\x4b\\x03\\x18\\x5a\\xc9\\x65\\x2e\\xb6\\x47\\x95\\\r\n\\x14\\xbe\\xb5\\x99\\xfa\\x08\\xbb\\x6b\\xd0\\x62\\xe0\\x0d\\xa6\\x6c\\xdf\\x7b\\\r\n\\xcc\\x46\\xed\\xc1\\xc2\\xf0\\x43\\xd2\\xc9\\x6a\\x79\\xb5\\x1e\\xb6\\x77\\x67\\\r\n\\x80\\xce\\x41\\x69\\xba\\xb9\\xe3\\x3b\\xc0\\x72\\x51\\x5d\\x96\\xfc\\xca\\x4f\\\r\n\\x1e\\x5e\\x9d\\x11\\xb2\\x80\\x39\\xa3\\xf8\\x7a\\x29\\x05\\x0e\\x44\\xa7\\x37\\\r\n\\xe4\\xde\\xf5\\x39\\xaa\\x88\\x13\\x01\\x30\\x82\\x01\\xad\\x86\\x8c\\xbf\\x1f\\\r\n\\xb4\\x66\\x4d\\x61\\xa2\\x30\\xaa\\x51\\x68\\x8a\\xd9\\x55\\xf6\\xd5\\xc7\\x47\\\r\n\\xe4\\xae\\xa5\\x89\\x9a\\xf8\\x43\\x5b\\xa2\\x92\\xb1\\xfd\\x76\\x1c\\xe7\\xee\\\r\n\\x1c\\x76\\xfd\\xb1\\x92\\x60\\xdb\\xc3\\xd9\\x9a\\x89\\xa5\\xee\\x6c\\x07\\x47\\\r\n\\xc0\\xfe\\x45\\xd9\\x8a\\x28\\x71\\xab\\x08\\xa2\\x61\\x4d\\x66\\xac\\xbf\\xaf\\\r\n\\x8c\\x86\\xbd\\x01\\x82\\xb8\\x0b\\x02\\x48\\xaa\\x39\\xf5\\xde\\xf4\\x37\\x87\\\r\n\\x46\\x0e\\x05\\x29\\x72\\xf8\\xa3\\xbb\\xc0\\xb2\\x11\\x9d\\x56\\x1c\\xde\\x0f\\\r\n\\xf4\\x96\\x5f\\x51\\x72\\xc0\\x19\\xe2\\xb8\\xba\\xe9\\x05\\xce\\x84\\x07\\x76\\\r\n\\xb4\\x1e\\xb5\\x79\\x2a\\x08\\xf3\\x4b\\xf0\\xc2\\xc1\\xed\\x46\\xc4\\x7f\\x5f\\\r\n\\x6c\\xb6\\x0d\\x81\\x62\\x50\\x6d\\xb1\\x23\\xca\\x99\\x95\\xbe\\x94\\x06\\x47\\\r\n\\x2c\\x2e\\x65\\xc9\\x5a\\x18\\x43\\xdf\\x6c\\xd2\\x71\\x3d\\x36\\x5c\\x0f\\xa7\\\r\n\\xbe\\xb6\\xbd\\xf1\\x52\\xe0\\x9b\\x83\\x18\\xda\\x49\\xe5\\xae\\x2c\\x87\\x17\\\r\n\\x94\\x3e\\x15\\x19\\x4a\\xa9\\x32\\xca\\xd0\\xe2\\x21\\x8d\\x26\\xec\\xdb\\xe7\\\r\n\\x4c\\xc6\\x65\\x45\\x42\\x70\\xcf\\x42\\x08\\xea\\xf9\\x35\\x9e\\x34\\x77\\xe7\\\r\n\\x04\\x4e\\xc5\\x69\\x3a\\xb8\\x63\\xb3\\x41\\xf2\\xd1\\xdd\\x16\\x7c\\x0d\\xef\\\r\n\\xbe\\xd6\\x1d\\x91\\x32\\x00\\xfb\\x23\\x78\\xfa\\xa9\\x85\\x8e\\xc5\\x6f\\xb7\\\r\n\\x74\\x5e\\x76\\xb9\\x2a\\xc8\\x93\\x0b\\xb0\\x02\\x81\\x2d\\x06\\x0c\\x7f\\x8f\\\r\n\\x2d\\xe6\\xcd\\xe1\\x22\\x82\\xab\\xd1\\xec\\x0a\\x59\\xd5\\x7e\\x46\\x57\\x87\\\r\n\\xe4\\x6e\\x25\\x09\\x1a\\x58\\xe3\\x7b\\x20\\x12\\x31\\x7d\\xf6\\x9c\\x4f\\x7f\\\r\n\\x1c\\xf6\\x7d\\x31\\x12\\x20\\x1b\\xc3\\x58\\x1a\\x09\\x25\\x6e\\xe4\\x87\\x37\\\r\n\\x54\\x7e\\xd5\\x59\\x0a\\xe8\\xf3\\x2b\\x90\\x26\\xe1\\xcd\\xe6\\x2c\\x9e\\x3f\\\r\n\\x0c\\x06\\x2d\\x81\\x02\\xb0\\x8b\\x17\\xc8\\x2a\\xbb\\x35\\x56\\x20\\xb7\\x27\\\r\n\\xc0\\x8e\\x85\\xb9\\xfa\\x38\\x33\\xfb\\x38\\x32\\x91\\x1d\\xd6\\xb5\\xcf\\x0d\\\r\n\\x76\\x16\\xdd\\xd1\\xf2\\x40\\xbb\\x73\\x3c\\x3a\\x69\\xc5\\x4e\\x04\\xe6\\xbd\\\r\n\\x71\\x9e\\x35\\xf9\\xea\\x08\\x53\\x9b\\x70\\x42\\x41\\x6d\\xc6\\x4c\\xbf\\xdf\\\r\n\\x6c\\x26\\x8d\\x21\\xe2\\xd1\\xab\\x53\\xa8\\x4a\\x18\\x15\\x3e\\x96\\x5b\\xc7\\\r\n\\xe4\\xae\\xe5\\x49\\xda\\x98\\xd7\\x9b\\xe2\\x72\\xf1\\xbd\\xb6\\xdc\\x0b\\xaf\\\r\n\\x5e\\x36\\x3d\\x71\\xd2\\x60\\x53\\x83\\x10\\x5a\\xc9\\x65\\x2e\\x2c\\x07\\x97\\\r\n\\x94\\xbe\\x95\\x99\\xca\\x29\\xb5\\x6f\\x50\\x62\\xa1\\x0d\\xa6\\x6d\\xdf\\x5b\\\r\n\\xcc\\x46\\xed\\xc1\\xc2\\xe0\\x4b\\xf3\\x08\\x6a\\x79\\xb5\\x16\\xb4\\xf7\\x46\\\r\n\\xa4\\xce\\x45\\xe9\\xba\\xd9\\xe3\\x3a\\xc0\\x72\\x51\\x5d\\x96\\xfc\\x8f\\x4f\\\r\n\\x3c\\x56\\x9d\\x11\\xb2\\x80\\x7f\\xa3\\xe8\\x7e\\x29\\x05\\x0e\\x45\\xa7\\x35\\\r\n\\x74\\xdc\\xf5\\x39\\xaa\\x4a\\x13\\x0f\\x30\\x82\\x01\\xad\\x86\\x8c\\xbb\\x1f\\\r\n\\xac\\x66\\x4d\\x61\\xa2\\x10\\x2b\\x73\\x68\\x8a\\xd9\\x55\\xfe\\xd4\\xf7\\x0f\\\r\n\\x66\\xee\\xa5\\x89\\x9a\\xd9\\x43\\xd3\\x20\\x92\\xb1\\xfd\\x56\\x1d\\xef\\xcf\\\r\n\\x9c\\x76\\xfd\\xb1\\x92\\xa8\\xdb\\x61\\xd8\\x9a\\x89\\xa5\\xee\\x64\\x87\\xd7\\\r\n\\xd6\\xfe\\x55\\xd9\\x8a\\x68\\x73\\x29\\x10\\xa2\\x41\\x4d\\x66\\xa8\\x1f\\xbf\\\r\n\\x84\\x86\\xad\\x00\\x82\\x32\\x8f\\x13\\x48\\xaa\\x39\\xf5\\xde\\xf4\\x33\\xa7\\\r\n\\x44\\x0e\\x05\\x29\\x7a\\xf9\\xa3\\x3b\\x80\\xb2\\x11\\x9d\\x56\\x3d\\x4f\\x8f\\\r\n\\xfc\\x82\\x5d\\x51\\x70\\xc8\\x1b\\xe3\\xba\\xba\\xe9\\x45\\xde\\x8c\\x67\\x57\\\r\n\\xbc\\x1e\\xb5\\x79\\x6a\\x88\\x95\\x03\\xf1\\xe2\\xc1\\xed\\x42\\xdc\\x7b\\x5f\\\r\n\\x6c\\xa6\\x4d\\xa1\\x62\\x10\\x6b\\xb3\\x60\\xca\\x99\\x95\\xbe\\x14\\xb7\\x47\\\r\n\\x24\\x2e\\x64\\xc9\\x5a\\x38\\x03\\x1b\\x60\\xd2\\x71\\x3d\\x36\\x5d\\xaf\\x8f\\\r\n\\xd6\\xb4\\x9d\\xf1\\x52\\xe2\\x9b\\x83\\x98\\xda\\x49\\xe5\\xae\\xe4\\xd7\\x15\\\r\n\\x94\\x3e\\x15\\x19\\x4a\\xa8\\x33\\xea\\xd0\\xe2\\x61\\x8d\\x26\\xec\\xde\\xbf\\\r\n\\x4c\\xc6\\x6d\\x41\\x42\\x70\\xcb\\x53\\x08\\xea\\xf9\\x35\\x9e\\x76\\xf7\\xf7\\\r\n\\x06\\x4e\\xc5\\x69\\x3a\\x28\\x63\\xbb\\x40\\xf2\\xd1\\xdd\\x16\\x7c\\x1f\\xcf\\\r\n\\xbc\\xd6\\x1d\\x91\\x32\\x40\\xfb\\x23\\x78\\xfa\\xa9\\x85\\x8e\\xc4\\x27\\xb7\\\r\n\\xf5\\x5e\\x75\\xa9\\x2a\\xd8\\x93\\x8b\\xb4\\x02\\x81\\x2d\\x06\\x0c\\x7f\\x8f\\\r\n\\xac\\xe6\\xcd\\xe1\\x22\\x90\\x2b\\xf3\\xe8\\x0a\\x59\\xd5\\x7e\\x14\\x77\\xd7\\\r\n\\xe4\\x6e\\x25\\x09\\x1a\\x54\\x83\\x5f\\x20\\x12\\x31\\x7d\\xf4\\x9c\\x6f\\x6f\\\r\n\\xbc\\xf6\\x7d\\x31\\x12\\x20\\x19\\xc7\\x59\\x1a\\x09\\x25\\x6e\\xe4\\x0f\\x57\\\r\n\\x54\\x7e\\xd5\\x59\\x0a\\xe8\\x71\\x2b\\x99\\x22\\xe1\\xcd\\xe6\\x6c\\x9f\\x3f\\\r\n\\x0c\\x06\\xad\\x81\\x12\\xb0\\xab\\x93\\xc8\\x2a\\xb9\\x75\\x5e\\x74\\x27\\x2f\\\r\n\\xe5\\x8e\\x85\\xa9\\xfa\\xf8\\x22\\xdb\\x00\\x32\\x91\\x1d\\x96\\xbc\\xfe\\x0c\\\r\n\\x78\\x16\\xdd\\xd1\\xf2\\x40\\xbb\\x62\\x38\\x3a\\x69\\xc5\\x4e\\x04\\xe7\\xe7\\\r\n\\x1c\\x9a\\x35\\xf9\\x6a\\x88\\xd3\\xdb\\x7c\\x42\\x41\\x6d\\xc6\\x4c\\xff\\x1f\\\r\n\\xbc\\x26\\x8d\\x21\\xe2\\xd0\\xeb\\x6b\\xf8\\x4a\\x99\\x15\\x3e\\x94\\x07\\xc7\\\r\n\\x9c\\xae\\xe5\\x49\\xda\\x19\\x83\\x9b\\xe0\\x52\\xf1\\xbd\\xb6\\xdd\\x2b\\x2f\\\r\n\\x5c\\x36\\x3d\\x71\\xf2\\x61\\x0b\\x07\\x18\\x58\\xc9\\x65\\x2e\\x24\\x47\\x87\\\r\n\\x14\\xbc\\x95\\x99\\xca\\x28\\xb3\\x73\\x54\\x62\\xa1\\x0d\\xa6\\x7e\\x5f\\x7e\\\r\n\\xcc\\x46\\xed\\xc1\\xc2\\xf0\\x49\\xf3\\xa8\\x6a\\x79\\xb5\\x1e\\x34\\x57\\x67\\\r\n\\x94\\xce\\x45\\xeb\\xba\\xb8\\xe3\\x3b\\xc8\\x72\\x51\\x5d\\x96\\xbe\\x8f\\x47\\\r\n\\x9c\\x56\\x9f\\x11\\xba\\x00\\x6b\\xa3\\xfb\\x7a\\x29\\x05\\x0e\\x44\\xa7\\x35\\\r\n\\xd4\\xdf\\xf5\\x39\\xea\\x58\\x13\\x0b\\xb0\\x82\\x01\\xad\\x86\\x84\\xbf\\x1f\\\r\n\\xac\\x66\\x4d\\x61\\xa2\\x00\\xab\\x33\\x69\\x8a\\xd9\\x55\\xfe\\xd4\\xd6\\x07\\\r\n\\x64\\xee\\xa5\\x89\\x9a\\xd8\\x43\\xdb\\xa0\\x92\\xb1\\xbd\\x76\\x1c\\x6e\\xef\\\r\n\\xd8\\x76\\xfd\\xb1\\x92\\xa0\\xdb\\x53\\xd9\\x9a\\x89\\xa5\\xee\\x60\\x17\\xd7\\\r\n\\xd4\\xf6\\x55\\xd9\\x8a\\x20\\x72\\xab\\x30\\x22\\x65\\x4d\\x66\\xac\\x1f\\xbf\\\r\n\\x8c\\x86\\x2d\\x01\\x82\\x38\\x8b\\x93\\xc8\\xaa\\x39\\xd5\\xde\\xf4\\x37\\xa3\\\r\n\\xe4\\x0e\\x05\\x29\\x7a\\xf8\\xe2\\x6f\\x00\\xb2\\x11\\x95\\x56\\x3c\\x8f\\x8f\\\r\n\\xac\\x96\\x5d\\x51\\x72\\xa8\\x7a\\xc0\\xb8\\xba\\xe9\\x45\\xce\\x8c\\x6f\\x53\\\r\n\\xb4\\x1e\\xb5\\x79\\x6a\\x80\\xd3\\x4b\\xf0\\x42\\xc1\\xec\\x46\\xcc\\x7d\\x59\\\r\n\\x64\\xa6\\x0d\\xa1\\x62\\x50\\x6b\\xb3\\x28\\xca\\x99\\x95\\xbe\\x14\\x87\\x57\\\r\n\\x24\\x2e\\x61\\xc9\\x5a\\x58\\x03\\x1b\\xe8\\xd2\\x71\\x3d\\x36\\x5c\\xaf\\x3f\\\r\n\\xcc\\xb6\\x3d\\xf1\\x52\\xe0\\x9b\\x81\\xd8\\xd8\\x49\\xe5\\xae\\xa4\\xc7\\x37\\\r\n\\x14\\x3e\\x15\\x19\\x4a\\xa8\\x3f\\xeb\\xd1\\xe2\\x21\\x8d\\x26\\xec\\xde\\xff\\\r\n\\x4c\\xc6\\x6d\\x41\\x42\\x60\\xdb\\x53\\x09\\xea\\xf9\\x35\\x8e\\x34\\xd7\\xe7\\\r\n\\x44\\x4e\\xc5\\x69\\x3a\\x38\\x63\\xbb\\x40\\xf2\\xd1\\xdd\\x16\\x78\\x0f\\xcb\\\r\n\\xac\\xd6\\x9d\\x91\\x32\\x00\\xfa\\x23\\xf0\\xfa\\xa9\\x85\\x8e\\xc4\\x2c\\xbb\\\r\n\\xfd\\x5e\\x77\\xb9\\x2a\\xc8\\x93\\x93\\x30\\x02\\x81\\x2d\\x06\\x0c\\x3f\\x9f\\\r\n\\x24\\xe2\\xcd\\xe1\\x22\\xd4\\x2b\\xa7\\xec\\x0a\\x59\\xf5\\x7e\\x54\\x57\\xa7\\\r\n\\xe4\\x6e\\x25\\x09\\x1a\\x5c\\xe7\\x5b\\x30\\x1e\\x31\\x7d\\x76\\x9b\\x6f\\xea\\\r\n\\x8c\\xf6\\x7d\\x31\\x12\\xa0\\x5b\\xcb\\x58\\x1a\\x09\\x25\\x6e\\xed\\xc7\\x57\\\r\n\\x54\\x7e\\xd5\\x59\\x0a\\xe8\\x3b\\x2b\\x94\\x22\\xe1\\x8d\\xe6\\x2c\\xdf\\x3f\\\r\n\\x0c\\x06\\x2d\\x81\\x02\\xb0\\x8b\\x92\\xc8\\x2a\\xb9\\x75\\x7e\\x14\\xb7\\x27\\\r\n\\xe4\\x8e\\x85\\xa9\\xfa\\xf8\\x23\\xf3\\x00\\x32\\x91\\x1d\\xd6\\xbd\\xef\\x2f\\\r\n\\x7c\\x16\\xdd\\xd1\\x72\\x40\\xba\\x47\\x38\\x3a\\x69\\xc5\\x4e\\x04\\xe3\\xf7\\\r\n\\x76\\x9e\\x35\\xf9\\xea\\x09\\xd2\\x8b\\x70\\x42\\x41\\x6d\\xc6\\x44\\xff\\x9f\\\r\n\\xec\\x26\\x8d\\x29\\xe2\\x50\\xab\\x33\\xa8\\x5a\\x19\\x15\\x3e\\x94\\x17\\xc3\\\r\n\\xbd\\xae\\xe5\\x49\\xda\\x98\\xc3\\x9b\\xa0\\x52\\xf1\\xbd\\x36\\xdc\\x27\\xbf\\\r\n\\x5c\\x36\\x3d\\x71\\xd2\\x20\\x0b\\x03\\x48\\x5a\\xc9\\x65\\x2e\\x25\\x45\\x95\\\r\n\\x1c\\xbe\\x95\\x99\\x5a\\x3c\\xf3\\xeb\\x12\\x62\\xa1\\x2d\\xa6\\x64\\x5f\\x77\\\r\n\\xe4\\x46\\xe5\\xc1\\xc2\\xf0\\x6a\\xd3\\x88\\x6a\\x79\\xb5\\x1e\\xb4\\x77\\x67\\\r\n\\x8f\\xce\\x45\\xe9\\xba\\xb8\\xe3\\x3a\\x54\\x72\\x51\\x5d\\x96\\xfc\\x2f\\x4f\\\r\n\\x3c\\x56\\x9f\\x11\\xf2\\x00\\x7b\\x87\\xf8\\x7a\\x29\\x05\\x0c\\x44\\xbf\\x37\\\r\n\\xf4\\xde\\xf5\\x39\\xaa\\x4c\\xaa\\x0b\\x30\\x82\\x03\\xad\\xa6\\x84\\xfe\\x1f\\\r\n\\xac\\x66\\x4c\\x61\\xa2\\x19\\xaa\\x73\\x62\\x8a\\x59\\x55\\xfe\\xf4\\xc7\\x07\\\r\n\\x64\\xee\\xa5\\x89\\x9a\\xd8\\x43\\xdb\\xa0\\x92\\xb0\\xfd\\x77\\x1c\\xfb\\xaf\\\r\n\\x9c\\x76\\xfd\\xb1\\x92\\xe0\\xdb\\xc3\\x58\\x9e\\x89\\xb5\\xee\\x64\\x07\\xd3\\\r\n\\xd6\\xfe\\x55\\xd9\\x9a\\x6a\\x53\\xaa\\x11\\xa2\\xe1\\x4d\\x66\\xac\\x1f\\x3d\\\r\n\\x8d\\x86\\xad\\x01\\x82\\x20\\x0f\\x12\\x08\\xaa\\x39\\xf5\\xde\\xf4\\x37\\xb7\\\r\n\\x04\\x0e\\x05\\x29\\x7a\\xfa\\xa3\\x7b\\x00\\xb2\\x11\\x9d\\xd6\\x3e\\x4f\\xae\\\r\n\\xfe\\x96\\x5d\\x51\\x72\\x40\\x7b\\xe2\\xa8\\xba\\xe9\\x45\\xce\\x84\\x67\\x75\\\r\n\\xb4\\x16\\xb5\\x79\\xea\\x88\\xdb\\x4b\\x60\\xc2\\xc1\\xed\\x46\\x8c\\x7f\\x57\\\r\n\\x6c\\xa6\\x0d\\xa1\\x62\\x51\\x6f\\xb3\\x25\\xca\\x91\\x95\\x9e\\x14\\x97\\x47\\\r\n\\x24\\x3e\\x65\\xc9\\x5a\\x98\\x02\\x19\\x40\\xd2\\x71\\x3d\\x36\\x57\\xad\\x6f\\\r\n\\x9c\\xb6\\xbd\\xf1\\x56\\xe0\\xdb\\x82\\x90\\xda\\x49\\xe5\\xae\\xa4\\xc7\\x17\\\r\n\\x90\\x3e\\x15\\x19\\x4a\\x20\\x73\\xab\\x90\\xe2\\x21\\x8d\\x26\\xec\\xdf\\xff\\\r\n\\x4c\\xc6\\x6d\\x41\\x42\\x70\\x43\\x17\\x4c\\xea\\xf9\\x35\\x9e\\x30\\xff\\xe7\\\r\n\\x04\\x4e\\xc5\\x69\\x3e\\x38\\x63\\xbb\\x48\\xf2\\xd1\\xfd\\x16\\x4c\\x03\\xcf\\\r\n\\xbc\\xd6\\x1d\\x91\\x32\\x00\\xfb\\x23\\x78\\xfa\\xa9\\x85\\x8e\\xc4\\xa7\\xb7\\\r\n\\x74\\x5e\\x75\\xb9\\x2a\\xca\\x91\\x83\\xb0\\x02\\x81\\x2d\\x06\\x09\\x3f\\x9f\\\r\n\\x2c\\xa6\\xed\\x61\\x22\\x91\\xab\\xb3\\xf8\\x0a\\x59\\xd5\\x7e\\x44\\x56\\x8f\\\r\n\\xe4\\x6e\\x25\\x09\\x1a\\x58\\xc3\\xdb\\x20\\x32\\x31\\x7d\\xf6\\x9c\\x6f\\x6f\\\r\n\\x9e\\xf6\\x7c\\x31\\x16\\x24\\x5a\\xe3\\x51\\x1a\\x09\\x25\\x6e\\xc6\\xc7\\x57\\\r\n\\x50\\x7e\\xd5\\x59\\x0a\\xc4\\xf3\\x39\\x90\\x22\\xe1\\xcd\\xe6\\x38\\xdf\\x2f\\\r\n\\xec\\x06\\x2f\\x81\\x02\\xb0\\xcb\\x8b\\xc1\\x2a\\xb9\\x75\\x5e\\x78\\x95\\x22\\\r\n\\xc4\\x8e\\x85\\xa9\\xda\\x78\\x23\\xbb\\x00\\x32\\x91\\x1d\\xd6\\xbc\\xcf\\x2f\\\r\n\\x75\\x16\\x9d\\xd1\\xf2\\x40\\xb2\\x2b\\x38\\x3a\\x69\\xc5\\x4e\\x04\\xef\\xf7\\\r\n\\x34\\x9e\\x35\\xf9\\xea\\x08\\x53\\xcb\\x73\\x42\\x61\\x6d\\xc6\\x0c\\xff\\xdf\\\r\n\\xac\\x26\\x8d\\x21\\xe2\\x98\\xcb\\x33\\x68\\x4a\\x19\\x15\\x7e\\xd4\\x17\\xc7\\\r\n\\xac\\xae\\xe5\\x49\\xda\\xd8\\xb6\\x93\\xe4\\x52\\xf0\\xb9\\xb6\\xdc\\x2e\\xaf\\\r\n\\x7c\\x36\\x3d\\x71\\xd2\\x60\\x1b\\x13\\x18\\x5a\\xc9\\x65\\x2e\\x25\\x45\\xd7\\\r\n\\x14\\xb6\\xd5\\x99\\xca\\x2a\\xb3\\xfb\\x50\\x62\\xa1\\x0d\\xa6\\x2c\\x5d\\xff\\\r\n\\x8c\\x46\\xed\\xc1\\xc2\\xf0\\x4b\\xd1\\x88\\x6a\\x79\\xb1\\x1e\\x3c\\x77\\x6d\\\r\n\\x8c\\xce\\x45\\xe9\\xba\\xb8\\xe3\\x3b\\x43\\x72\\x51\\x5d\\x96\\xf0\\x8f\\x0e\\\r\n\\x3c\\x16\\x9d\\x51\\xb2\\x84\\x7b\\xa3\\xe8\\x7a\\x29\\x05\\x0e\\x44\\x27\\x35\\\r\n\\xa6\\xde\\xf5\\x79\\xaa\\x48\\x33\\x03\\xb0\\x82\\x01\\xad\\x86\\x8c\\xbf\\x1d\\\r\n\\xac\\x26\\x4d\\x61\\xa2\\x00\\xa9\\x73\\x68\\x8a\\xd9\\x55\\xfe\\xd4\\xd7\\x07\\\r\n\\x64\\xee\\xa5\\x89\\x9a\\xd8\\x43\\xdb\\xa0\\x92\\xb1\\xfd\\x76\\x1c\\xef\\x2f\\\r\n\\x1c\\x76\\xfd\\xb1\\x92\\xa9\\xdb\\x43\\x58\\x9a\\x8d\\xa5\\xee\\x64\\x07\\x97\\\r\n\\xc4\\xfe\\x75\\xdd\\x8a\\x6a\\x73\\x6b\\x54\\xa2\\x61\\x4d\\x66\\xec\\x1d\\xbf\\\r\n\\xcc\\x86\\xad\\x01\\x8a\\x30\\x0b\\x13\\x48\\xaa\\x39\\xf5\\xde\\xf0\\x37\\xa7\\\r\n\\x55\\x0e\\x05\\x2d\\x7a\\xfc\\xb3\\x63\\xc0\\xb2\\x11\\x9d\\x56\\x3c\\x47\\x8f\\\r\n\\xbc\\x96\\x5d\\x51\\x72\\x7b\\xad\\x6f\\x33\\x84\\xe9\\x45\\xce\\x3e\\x98\\x88\\\r\n\\x4b\\x00\\xb5\\x79\\x6a\\x8c\\xd3\\x4b\\xf0\\x3d\\x20\\x12\\xb9\\xc3\\xf5\\xa2\\\r\n\\x93\\x18\\xb6\\x12\\x9d\\xae\\x94\\x4d\\xd7\\x34\\x66\\x6a\\x41\\xeb\\x78\\xb8\\\r\n\\xdb\\xd1\\x9a\\x36\\xa5\\xe7\\xfc\\xe4\\x9f\\x2d\\x8e\\xc2\\xc9\\xa3\\x50\\xd0\\\r\n\\x23\\x49\\x42\\x0e\\xad\\x1f\\x64\\x7c\\x67\\x25\\xb6\\x1a\\x51\\x1a\\x7c\\xa4\\\r\n\\x6b\\x95\\xa7\\xb6\\xb5\\xad\\xcc\\x14\\x2f\\x1d\\xde\\x72\\xd9\\x47\\x6d\\x50\\\r\n\\xb3\\xda\\x6f\\xc1\\xbd\\x9f\\x0a\\xad\\xf7\\x31\\x06\\xca\\x61\\xd9\\xde\\x67\\\r\n\\xfb\\x93\\x41\\x8c\\xc5\\x80\\x9f\\x44\\xbf\\x3f\\x2e\\x22\\xe9\\x32\\x0e\\x4f\\\r\n\\x43\\xd1\\x20\\x6e\\xcd\\xe9\\x04\\xdc\\x87\\x30\\x8e\\x05\\x71\\x3b\\x26\\x50\\\r\n\\x8b\\xbb\\x89\\x46\\xd5\\x05\\x6c\\x74\\x4f\\xc8\\x6e\\xd2\\xf9\\xc6\\xd0\\x60\\\r\n\\xd3\\xf7\\x36\\x1e\\xdd\\x6f\\xd4\\x0c\\x17\\xf5\\xa6\\x2a\\x81\\xab\\xa8\\x78\\\r\n\\x1b\\x91\\xda\\xf6\\xe5\\xea\\x8d\\x74\\xdf\\xed\\xce\\x82\\x09\\x63\\x90\\x90\\\r\n\\x63\\x09\\x82\\xce\\xed\\xdf\\xa4\\x3c\\xa7\\xf0\\xf6\\xda\\x91\\x1b\\x78\\xa8\\\r\n\\xab\\xd0\\x29\\x09\\x66\\x5a\\x4e\\x7b\\xf0\\x90\\x5c\\x9d\\xbc\\x9e\\x22\\x6f\\\r\n\\x5e\\xaf\\x96\\xd1\\x4d\\x04\\x26\\xdc\\x2c\\x86\\x16\\x3a\\x80\\xcf\\x0e\\x68\\\r\n\\x1d\\x3c\\x38\\xe6\\x2d\\xc4\\x98\\xb4\\xd7\\x8e\\x20\\x52\\x01\\x01\\x33\\x40\\\r\n\\xab\\xad\\x64\\x9e\\x24\\xee\\x53\\x2c\\xec\\x94\\x98\\x8a\\x9d\\xaa\\x1b\\xb8\\\r\n\\xe7\\x22\\x98\\xb6\\x3b\\xb3\\xea\\x84\\xbf\\xf0\\xfc\\x22\\x7d\\xfe\\x42\\x90\\\r\n\\x5a\\x94\\x30\\x6e\\x4f\\x79\\x50\\x7c\\x02\\xfe\\xb4\\x5a\\x01\\x38\\xb8\\x88\\\r\n\\x9d\\x15\\x5c\\x06\\xee\\x2a\\x3e\\xd4\\xd2\\xee\\x4a\\xf2\\x84\\x60\\x9e\\xe0\\\r\n\\x6e\\x8b\\xc1\\x3e\\xe0\\xdb\\xa2\\x4c\\x29\\xf4\\x21\\x2a\\x01\\x8a\\xb6\\xd8\\\r\n\\x3a\\x10\\x69\\xd6\\xe4\\x94\\x1e\\x24\\x7c\\xd9\\x18\\x42\\x8c\\xde\\xe2\\x30\\\r\n\\xda\\xf4\\x50\\x8e\\xd3\\x42\\xf6\\x9c\\x81\\xc3\\xc2\\xfa\\x1b\\x00\\xda\\x29\\\r\n\\x1e\\x62\\xea\\xa7\\x2e\\x03\\x5a\\x75\\x4f\\xc0\\xec\\x13\\x1b\\x40\\x34\\x01\\\r\n\\xb0\\xea\\x2c\\x5f\\x3e\\x3d\\x87\\xed\\x74\\xc1\\x90\\x4b\\x82\\xea\\x4f\\x79\\\r\n\\x7e\\x70\\x04\\x77\\x23\\xe6\\xef\\x45\\xb9\\x3e\\xac\\xe3\\x01\\x37\\x06\\x51\\\r\n\\x29\\xd4\\xf0\\x2f\\xd3\\xa2\\x16\\x3d\\x03\\x38\\x64\\x1b\\x9d\\x7d\\x6c\\x49\\\r\n\\x3b\\x55\\x1c\\xc4\\x70\\x6a\\xfe\\x96\\x49\\x2e\\x0a\\xb0\\x9f\\xa1\\x15\\xa2\\\r\n\\xf5\\xcd\\x44\\xfc\\x7b\\x1b\\x14\\x0e\\x6f\\x21\\x47\\xe9\\xf7\\xd9\\xf9\\x9b\\\r\n\\xcd\\x50\\xab\\x95\\x93\\xd3\\xca\\xe7\\x09\\x0c\\x95\\x01\\x7f\\x18\\xb2\\xf3\\\r\n\\x94\\x2a\\x02\\x4d\\x92\\x8c\\xa6\\x5f\\x43\\x11\\x80\\xb9\\xd6\\x5a\\xdd\\xeb\\\r\n\\x42\\xa0\\xf6\\x62\\x85\\x45\\x5f\\x30\\x7f\\x1c\\xf9\\xd6\\xaa\\x92\\xbe\\xc4\\\r\n\\x07\\x38\\xa1\\x1a\\x89\\x72\\x86\\xa8\\x57\\x08\\x54\\x0e\\x24\\x36\\xda\\x3c\\\r\n\\x55\\xb7\\x0e\\x32\\xb4\\x3c\\x7e\\x00\\x83\\x6e\\x6e\\xa6\\x2b\\x77\\xc6\\x14\\\r\n\\x04\\x14\\xb0\\xea\\x04\\xec\\xd0\\xf8\\x4e\\x76\\x28\\xde\\xd8\\xa9\\x6b\\x0c\\\r\n\\x42\\x95\\xdc\\x82\\x3c\\xb6\\xeb\\x50\\x03\\x7c\\x80\\x76\\x54\\xf2\\x53\\x64\\\r\n\\xbe\\x0a\\x10\\xba\\x33\\x5b\\x22\\xc8\\xc7\\x68\\xf4\\xae\\xe4\\x16\\x7a\\x5c\\\r\n\\xd1\\x8c\\xa8\\x52\\x77\\x01\\x88\\xa0\\xe9\\x59\\x98\\xc7\\xe5\\x5e\\x62\\xb5\\\r\n\\x8f\\x7a\\xd6\\x0b\\x81\\xcd\\x31\\x19\\xcb\\x56\\x54\\x67\\x1c\\x8f\\x4e\\xb5\\\r\n\\x84\\xfc\\x78\\x3b\\x56\\x8a\\xde\\xe9\\x26\\x40\\x6c\\x8f\\x48\\xd5\\xb4\\x9d\\\r\n\\xe7\\x6d\\xa4\\xc0\\xd7\\xb2\\x46\\x72\\x9c\\x46\\x12\\xd4\\x6a\\x79\\xdd\\xe6\\\r\n\\x90\\xe5\\xcc\\xe8\\xce\\x73\\x5c\\xda\\x02\\xb9\\x4f\\x7d\\x8c\\xb1\\xc1\\xcf\\\r\n\\xa6\\x48\\x33\\xb1\\xa8\\x2b\\x92\\xa3\\x62\\xa4\\xad\\x85\\xf4\\xe0\\xfa\\xd7\\\r\n\\x6d\\xc2\\x8a\\x59\\x98\\xe4\\x6e\\x0b\\x5c\\xa9\\x88\\x2d\\x8c\\x32\\x85\\x3f\\\r\n\\xeb\\x58\\x8e\\x61\\x62\\x9d\\xa7\\x93\\x28\\xb4\\xe1\\x75\\x03\\x4a\\x76\\x07\\\r\n\\x38\\x4e\\xf1\\xc0\\xf4\\x17\\x0c\\xd4\\x6f\\xdd\\x1e\\x32\\x19\\xd4\\x60\\x3f\\\r\n\\x0c\\xfd\\xd2\\x6f\\xfd\\x43\\x74\\x90\\xc8\\x29\\xb9\\x85\\xa1\\x80\\x48\\x20\\\r\n\\xc4\\x8a\\x85\\x5a\\x05\\x8f\\xdc\\xf1\\x00\\xcc\\x6e\\xec\\x29\\x42\\x32\\x0c\\\r\n\\x82\\x1f\\x23\\xd3\\x0c\\xb3\\x46\\x6f\\xc6\\x29\\x97\\xc6\\xb0\\xfc\\x1a\\xfa\\\r\n\\xca\\x96\\xcb\\x02\\x17\\xf2\\xae\\xc0\\x8e\\x44\\xbf\\x65\\x38\\x4c\\xff\\xdf\\\r\n\\xec\\x26\\x8d\\x21\\xe2\\xd0\\xeb\\x33\\xa8\\x4a\\x19\\x15\\x3e\\x94\\x17\\xc7\\\r\n\\xa4\\xae\\xe5\\x49\\xda\\x98\\x83\\x9b\\xe0\\x52\\xf1\\xbd\\xb6\\xdc\\x2f\\xaf\\\r\n\\x5c\\x36\\x3d\\x71\\xd2\\x60\\x1b\\x03\\x18\\x5a\\xc9\\x65\\x2e\\x24\\x47\\x97\\\r\n\\x14\\xbe\\x95\\x99\\xca\\x28\\xb3\\x6b\\x50\\x62\\xa1\\x0d\\xa6\\x30\\x31\\x30\\\r\n\\x30\\x02\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x44\\x61\\x76\\\r\n\\x69\\x64\\x20\\x48\\x75\\x6d\\x70\\x68\\x72\\x65\\x79\\x73\\x20\\x32\\x30\\x31\\\r\n\\x34\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\\r\n\\x20\\x02\\x00\\x02\\x00\\x00\\x01\\x01\\x02\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\\r\n\\x00\\x08\\x00\\x00\\x01\\x04\\x00\\x01\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\\r\n\\x01\\x04\\x00\\x01\\x00\\x00\\x00\\xaa\\x00\\x00\\x00\\x02\\x01\\x03\\x00\\x03\\\r\n\\x00\\x00\\x00\\x1a\\x3f\\x00\\x00\\x03\\x01\\x03\\x00\\x01\\x00\\x00\\x00\\x06\\\r\n\\x00\\x00\\x00\\x06\\x01\\x03\\x00\\x01\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x15\\\r\n\\x01\\x03\\x00\\x01\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x01\\x02\\x04\\x00\\x01\\\r\n\\x00\\x00\\x00\\x20\\x3f\\x00\\x00\\x02\\x02\\x04\\x00\\x01\\x00\\x00\\x00\\x5b\\\r\n\\x38\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x08\\x00\\x08\\x00\\xff\\xd8\\xff\\\r\n\\xe0\\x00\\x10\\x4a\\x46\\x49\\x46\\x00\\x01\\x01\\x00\\x00\\x01\\x00\\x01\\x00\\\r\n\\x00\\xff\\xdb\\x00\\x43\\x00\\x08\\x06\\x06\\x07\\x06\\x05\\x08\\x07\\x07\\x07\\\r\n\\x09\\x09\\x08\\x0a\\x0c\\x14\\x0d\\x0c\\x0b\\x0b\\x0c\\x19\\x12\\x13\\x0f\\x14\\\r\n\\x1d\\x1a\\x1f\\x1e\\x1d\\x1a\\x1c\\x1c\\x20\\x24\\x2e\\x27\\x20\\x22\\x2c\\x23\\\r\n\\x1c\\x1c\\x28\\x37\\x29\\x2c\\x30\\x31\\x34\\x34\\x34\\x1f\\x27\\x39\\x3d\\x38\\\r\n\\x32\\x3c\\x2e\\x33\\x34\\x32\\xff\\xdb\\x00\\x43\\x01\\x09\\x09\\x09\\x0c\\x0b\\\r\n\\x0c\\x18\\x0d\\x0d\\x18\\x32\\x21\\x1c\\x21\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\\r\n\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\\r\n\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\\r\n\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\x32\\xff\\xc0\\x00\\x11\\x08\\\r\n\\x00\\xaa\\x01\\x00\\x03\\x01\\x22\\x00\\x02\\x11\\x01\\x03\\x11\\x01\\xff\\xc4\\\r\n\\x00\\x1f\\x00\\x00\\x01\\x05\\x01\\x01\\x01\\x01\\x01\\x01\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\x09\\x0a\\x0b\\xff\\\r\n\\xc4\\x00\\xb5\\x10\\x00\\x02\\x01\\x03\\x03\\x02\\x04\\x03\\x05\\x05\\x04\\x04\\\r\n\\x00\\x00\\x01\\x7d\\x01\\x02\\x03\\x00\\x04\\x11\\x05\\x12\\x21\\x31\\x41\\x06\\\r\n\\x13\\x51\\x61\\x07\\x22\\x71\\x14\\x32\\x81\\x91\\xa1\\x08\\x23\\x42\\xb1\\xc1\\\r\n\\x15\\x52\\xd1\\xf0\\x24\\x33\\x62\\x72\\x82\\x09\\x0a\\x16\\x17\\x18\\x19\\x1a\\\r\n\\x25\\x26\\x27\\x28\\x29\\x2a\\x34\\x35\\x36\\x37\\x38\\x39\\x3a\\x43\\x44\\x45\\\r\n\\x46\\x47\\x48\\x49\\x4a\\x53\\x54\\x55\\x56\\x57\\x58\\x59\\x5a\\x63\\x64\\x65\\\r\n\\x66\\x67\\x68\\x69\\x6a\\x73\\x74\\x75\\x76\\x77\\x78\\x79\\x7a\\x83\\x84\\x85\\\r\n\\x86\\x87\\x88\\x89\\x8a\\x92\\x93\\x94\\x95\\x96\\x97\\x98\\x99\\x9a\\xa2\\xa3\\\r\n\\xa4\\xa5\\xa6\\xa7\\xa8\\xa9\\xaa\\xb2\\xb3\\xb4\\xb5\\xb6\\xb7\\xb8\\xb9\\xba\\\r\n\\xc2\\xc3\\xc4\\xc5\\xc6\\xc7\\xc8\\xc9\\xca\\xd2\\xd3\\xd4\\xd5\\xd6\\xd7\\xd8\\\r\n\\xd9\\xda\\xe1\\xe2\\xe3\\xe4\\xe5\\xe6\\xe7\\xe8\\xe9\\xea\\xf1\\xf2\\xf3\\xf4\\\r\n\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xff\\xc4\\x00\\x1f\\x01\\x00\\x03\\x01\\x01\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x03\\x04\\\r\n\\x05\\x06\\x07\\x08\\x09\\x0a\\x0b\\xff\\xc4\\x00\\xb5\\x11\\x00\\x02\\x01\\x02\\\r\n\\x04\\x04\\x03\\x04\\x07\\x05\\x04\\x04\\x00\\x01\\x02\\x77\\x00\\x01\\x02\\x03\\\r\n\\x11\\x04\\x05\\x21\\x31\\x06\\x12\\x41\\x51\\x07\\x61\\x71\\x13\\x22\\x32\\x81\\\r\n\\x08\\x14\\x42\\x91\\xa1\\xb1\\xc1\\x09\\x23\\x33\\x52\\xf0\\x15\\x62\\x72\\xd1\\\r\n\\x0a\\x16\\x24\\x34\\xe1\\x25\\xf1\\x17\\x18\\x19\\x1a\\x26\\x27\\x28\\x29\\x2a\\\r\n\\x35\\x36\\x37\\x38\\x39\\x3a\\x43\\x44\\x45\\x46\\x47\\x48\\x49\\x4a\\x53\\x54\\\r\n\\x55\\x56\\x57\\x58\\x59\\x5a\\x63\\x64\\x65\\x66\\x67\\x68\\x69\\x6a\\x73\\x74\\\r\n\\x75\\x76\\x77\\x78\\x79\\x7a\\x82\\x83\\x84\\x85\\x86\\x87\\x88\\x89\\x8a\\x92\\\r\n\\x93\\x94\\x95\\x96\\x97\\x98\\x99\\x9a\\xa2\\xa3\\xa4\\xa5\\xa6\\xa7\\xa8\\xa9\\\r\n\\xaa\\xb2\\xb3\\xb4\\xb5\\xb6\\xb7\\xb8\\xb9\\xba\\xc2\\xc3\\xc4\\xc5\\xc6\\xc7\\\r\n\\xc8\\xc9\\xca\\xd2\\xd3\\xd4\\xd5\\xd6\\xd7\\xd8\\xd9\\xda\\xe2\\xe3\\xe4\\xe5\\\r\n\\xe6\\xe7\\xe8\\xe9\\xea\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xff\\xda\\\r\n\\x00\\x0c\\x03\\x01\\x00\\x02\\x11\\x03\\x11\\x00\\x3f\\x00\\xab\\x2e\\xe0\\xc0\\\r\n\\x87\\x1c\\xfd\\xd0\\x0f\\xe1\\x59\\x1e\\x21\\xb7\\x96\\xf6\\xc7\\xfb\\x3c\\x3a\\\r\n\\xac\\xb2\\x38\\x66\\x24\\xf5\\x50\\x46\\x4f\\xe7\\x8e\\x2a\\xed\\xdd\\xfc\\x56\\\r\n\\x76\\xc6\\x59\\x58\\xed\\x1d\\x08\\xeb\\x54\\x34\\x59\\x5f\\x54\\x9a\\x5b\\xb9\\\r\n\\xd1\\x72\\xae\\x56\\x31\\x8e\\x55\\x78\\x38\\xae\\x38\\x4b\\x99\\x26\\xb6\\x3c\\\r\n\\xb8\\xa6\\xbd\\xe3\\x4b\\x46\\xd2\\xe3\\xb1\\xb6\\x0b\\x1a\\xed\\x53\\x92\\x41\\\r\n\\xe7\\x9e\\x32\\x6b\\xa3\\x8d\\x0a\\x2e\\x5d\\x80\\x4e\\xa0\\xd6\\x3c\\xfa\\x95\\\r\n\\xae\\x94\\xa0\\x4a\\xc7\\xcc\\x39\\x2a\\x80\\xe4\\x9a\\xc4\\xbd\\xd6\\xde\\xfe\\\r\n\\x63\\x1f\\x30\\xdb\\xb6\\x4e\\x7f\\x8b\\xa1\\x3c\\xfb\\x71\\xd2\\xb4\\x53\\xe9\\\r\n\\x11\\xc6\\x0e\\x6c\\xa9\\xe3\\x0f\\x10\\xdb\\x5e\\xde\\x2e\\x9d\\x6e\\xd2\\x36\\\r\n\\xc3\\x97\\x20\\xfc\\xa5\\x87\\xb7\\x7a\\xa9\\x6f\\xaa\\x5b\\x08\\x51\\x27\\x81\\\r\n\\x59\\x30\\x08\\x7d\\x80\\xe3\\xd8\\xf1\\xcf\\xd6\\xb0\\x7e\\xd1\\x01\\xd4\\x8d\\\r\n\\xc0\\xb6\\x08\\xc3\\x85\\x56\\x3f\\xa9\\xf7\\xab\\xb6\\x52\\x28\\xb9\\x85\\x1c\\\r\n\\x37\\x97\\xbc\\x11\\x8f\\x42\\x6b\\x1a\\x8f\\x53\\x59\\xfb\\xb6\\x8a\\x3a\\x39\\\r\n\\xed\\x56\\xe2\\xcb\\xc8\\x8c\\x79\\x4e\\x14\\xb2\\x18\\xc9\\x39\\x3e\\xa3\\xeb\\\r\n\\xe9\\x4f\\xb9\\x80\\xbc\\x16\\xb6\\x28\\x4e\\x58\\x86\\x90\\x67\\x1f\\x2a\\xf1\\\r\n\\xcf\\xd4\\x93\\x55\\xad\\x67\\xb8\\x47\\x2d\\x76\\x55\\x95\\x40\\xdc\\x08\\xfb\\\r\n\\xae\\x3f\\xa6\\x45\\x6a\\xd8\\xd8\\xbc\\xce\\xf7\\xb3\\x33\\xc7\\x2b\\x1f\\x96\\\r\n\\x3f\\x48\\xc6\\x40\\x07\\xd0\\xf7\\xfc\\x6b\\x48\\x4d\\xc6\\x9b\\x7d\\x59\\xd5\\\r\n\\x19\\xba\\x54\\xa5\\x26\\xee\\xde\\xc6\\x5d\\xed\\xa4\\xab\\x24\\x04\\x97\\x9c\\\r\n\\xa9\\x26\\x30\\x89\\xc2\\x9f\\xeb\\xd3\\xa9\\xad\\x49\\xf5\\x39\\xbc\\x3f\\xa7\\\r\n\\x5b\\xb4\\xe8\\xd7\\x3e\\x78\\x91\\x65\\x62\\xd9\\x30\\x47\\x8c\\x60\\x37\\xa9\\\r\n\\xc9\\xf9\\x73\\xdb\\xb6\\x6b\\x66\\x08\\x63\\x0a\\x77\\xc7\\x88\\xfb\\xed\\xff\\\r\n\\x00\\x3c\\xd7\\x0d\\xe2\\xeb\\xc9\\x52\\xea\\x4f\\xde\\x15\\x85\\xc9\\x5f\\x2f\\\r\n\\x1c\\x05\\x52\\x48\\x1f\\x8e\\x56\\xb0\\x85\\x3d\\x6e\\xce\\x3a\\x2d\\xf3\\x5c\\\r\n\\x62\\xe8\\x30\\x1b\\xc8\\x6e\\xb4\\xfb\\x92\\x60\\x93\\xee\\x89\\xbe\\xeb\\x83\\\r\n\\x90\\x40\\x7e\\x80\\xfb\\x30\\x5f\\xa9\\xeb\\x53\\xf8\\x9a\\xce\\x69\\x6e\\x63\\\r\n\\x8d\\xcb\\xc4\\xab\\x1c\\x67\\x1d\\x9f\\x8e\\x4f\\xbf\\x4a\\xc5\\xb0\\xbb\\xbd\\\r\n\\xb1\\x75\\x9a\\x69\\xa4\\x8e\\x37\\xc0\\x7d\\xd1\\x97\\x8e\\x45\\xf4\\x23\\x8f\\\r\n\\xd3\\x91\\xda\\xbb\\x63\\x32\\x5c\\x5b\\xc5\\x25\\xa3\\xa5\\xc5\\xbf\\x90\\x24\\\r\n\\x6b\\x59\\x01\\x2d\\x81\\x9c\\xb0\\xf6\\xe3\\xb7\\x23\\xbf\\xad\\x54\\xef\\x1b\\\r\n\\x1b\\xce\\xd2\\xd5\\x1c\\x62\\xb4\\x56\\x97\\xab\\x25\\xd8\\xb8\\x31\\xf0\\x09\\\r\n\\x88\\x82\\x47\\xd0\\x55\\xc7\\x6b\\x2b\\xe9\\x4c\\xd6\\x72\\x6f\\x9a\\x3e\\x54\\\r\n\\x1f\\x95\\xcf\\xa6\\x41\\xfe\\x75\\xac\\x6c\\xf4\\xbd\\x45\\xcf\\xd8\\xae\\xe3\\\r\n\\x8e\\x42\\x70\\x12\\x7e\\x14\\x9e\\xf8\\x6e\\xdf\\x8e\\x07\\xbd\\x32\\x5f\\x0e\\\r\n\\x4c\\x8c\\x62\\xc2\\xc3\\x38\\x88\\xc8\\x08\\x04\\x10\\x07\\x73\\x91\\xc8\\x3d\\\r\n\\x88\\xef\\x8a\\xd5\\x46\\xe8\\x98\\x51\\x72\\x7e\\x5d\\x59\\x5e\\xcd\\x4d\\xc0\\\r\n\\x12\\xc9\\x0a\\xab\\x15\\xf9\\x49\\x5c\\x36\\x3b\\x83\\xf8\\xfa\\xd6\\xc4\\x30\\\r\n\\x31\\x57\\x91\\x57\\x72\\x2f\\x27\\x03\\x24\\x7d\\x6b\\x26\\x09\\x04\\x22\\x5b\\\r\n\\x2c\\x87\\xbc\\x54\\xdb\\x18\\x08\\x72\\x4e\\x78\\x20\\x74\\xfc\\xfb\\x76\\xab\\\r\n\\xd0\\x6a\\x93\\xe9\\xd6\\xa3\\xcc\\x81\\x9c\\x85\\x26\\x57\\xdb\\x90\\x31\\xc7\\\r\n\\x4f\\xae\\x28\\x51\\x51\\x49\\x26\\x5c\\xb0\\x72\\x53\\x51\\xbe\\x8f\\x63\\x31\\\r\n\\xb5\\x39\\x66\\xd4\\xb9\\x82\\x64\\x82\\x4c\\xa2\\x00\\x98\\xce\\x3b\\xfa\\xff\\\r\n\\x00\\xfa\\xaa\\xd5\\xcc\\xcb\\xb5\\xa2\\x8c\\x2e\\xe2\\x3e\\xff\\x00\\xd7\\xd3\\\r\n\\xd2\\xa0\\xbf\\xd5\\x1c\\xe6\\xea\\xc2\\x61\\x1c\\x92\\x15\\x0c\\x82\\x6d\\xaa\\\r\n\\xa3\\x1c\\xe0\\x1f\\x53\\xfe\\x79\\xa9\\x64\\xd4\\x6f\\x58\\x27\\x9c\\x91\\xce\\\r\n\\x8e\\xb8\\x65\\x6c\\x70\\x7e\\xbf\\xad\\x67\\x56\\x2e\\x2e\\xfd\\x59\\x8d\\x58\\\r\n\\x4a\\x93\\xb2\\x5a\\x97\\x2f\\xe2\\x4b\\xfd\\x2c\\xe9\\x42\\x54\\xf3\\xc4\\x69\\\r\n\\xb1\\x37\\x6d\\x25\\x76\\x8e\\xa4\\xf0\\x7e\\x6c\\x53\\x34\\x1d\\x3e\\x4d\\x32\\\r\n\\x4d\\x28\\x5f\\xc7\\x22\\xcc\\x24\\x08\\x14\\x0f\\x56\\xe0\\x9f\\xcc\\x53\\x6f\\\r\n\\x25\\xb6\\x79\\x21\\xba\\xb5\\x3e\\x53\\xcb\\x18\\x05\\x8f\\xf0\\x91\\xf2\\x90\\\r\n\\x3d\\x3b\\x73\\xef\\x52\\x58\\x5f\\x5e\\x69\\x57\\x57\\x19\\x02\\xe2\\x07\\x9d\\\r\n\\x36\\x23\\xb6\\xed\\xaa\\xe7\\xb7\\xa6\\x0e\\x0d\\x67\\x39\\x27\\xa3\\xd3\\x52\\\r\n\\xb9\\xa1\\x64\\x9e\\xe9\\x96\\xaf\\x1f\\xfb\\x63\\x42\\xf3\\xc7\\x17\\x36\\x2d\\\r\n\\x89\\x15\\x4f\\xf0\\x1e\\xff\\x00\\xe7\\xde\\xb3\\xe0\\xb8\\xcc\\x71\\x87\\x3c\\\r\n\\x39\\x20\\x0f\\xaf\\x6a\\xd3\\xdb\\x16\\x8d\\x7a\\x2e\\xe1\\x8c\\xcd\\xa5\\x5d\\\r\n\\x82\\xb2\\x37\\x1f\\xbb\\xec\\xca\\xde\\xff\\x00\\xe1\\x59\\x97\\x36\\x8d\\xa7\\\r\n\\xdd\\x35\\xba\\xb7\\x9a\\xa1\\xf2\\xaf\\x8e\\xaa\\x46\\x45\\x4c\\xa9\\x34\\x29\\\r\n\\x50\\x73\\x92\\x8b\\xd1\\xec\\x57\\xd2\\xac\\x20\\x83\\xc4\\x11\\x8b\\xd4\\x90\\\r\n\\xc4\\xb2\\x03\\x1e\\xc1\\x92\\xe7\\xb0\\xad\\x5d\\x7b\\x5c\\xb5\\x5d\\x51\\xb4\\\r\n\\xfd\\x52\\xdc\\xcb\\x62\\x4f\\x0e\\xa0\\x6f\\x84\\xfa\\xa1\\xf6\\xee\\x29\\xfa\\\r\n\\x60\\x71\\x7a\\xb7\\x45\\xb2\\xb0\\x23\\xbe\\xec\\x64\\x29\\x0a\\x71\\x9a\\xce\\\r\n\\xbc\\x82\\x19\\xed\\x62\\xbd\\xbf\\x8e\\x5f\\xb5\\x00\\x40\\xc9\\xc2\\xbb\\x1f\\\r\n\\x6c\\x7a\\xd5\\xde\\xd1\\x47\\x4e\\x26\\x8a\\xa4\\xf9\\x22\\xee\\x75\\x5e\\x28\\\r\n\\xb5\\x8e\\xef\\xc2\\x71\\x6a\\x8a\\xb0\\xde\\xcd\\x6e\\x82\\x45\\x94\\x29\\xc1\\\r\n\\x4e\\x14\\x90\\x07\\x43\\x8d\\xa4\\x83\\xdc\\x35\\x71\\x16\\x1a\\x91\\x95\\x80\\\r\n\\x9e\\x66\\x31\\xb8\\x56\\x11\\x80\\x15\\x41\\xde\\xbb\\x78\\x1c\\x75\\xae\\xcf\\\r\n\\xc2\\x49\\x74\\x90\\x5d\\xdb\\x49\\x65\\x33\\x59\\xdc\\xc3\\x94\\x59\\x81\\x50\\\r\n\\x7e\\x5e\\x70\\xcc\\x00\\x27\\x6e\\x7a\\x7b\\x57\\x33\\x07\\x87\\x0a\\x6b\\x32\\\r\n\\x59\\xdd\\x6a\\x16\\x91\\x00\\x32\\x0a\\x39\\x76\\xda\\xa4\\x60\\xfc\\xa0\\x81\\\r\n\\xc0\\xee\\x6b\\x5b\\x29\\xc7\\x53\\x04\\x9c\\xb4\\x44\\x5e\\x24\\xd3\\xc5\\xd5\\\r\n\\xd8\\x9e\\xd4\\x7e\\xfd\\x42\\xc5\\x34\\x7d\\x9b\\x3f\\x71\\xbd\\xb3\\x82\\xbf\\\r\n\\x50\\x3d\\x6b\\x19\\xc8\\x9a\\xf5\\x16\\xdd\\xb7\\x43\\x07\\xee\\xd4\\x8f\\x6e\\\r\n\\xa7\\xf1\\x24\\x9a\\xec\\xe7\\x97\\x49\\xb7\\xd5\\x24\\xbd\\x2d\\x75\\x72\\x0d\\\r\n\\xba\\x29\\x48\\xd1\\x63\\x0e\\xae\\xc7\\x1c\\x92\\x7a\\x60\\x9e\\x9d\\xaa\\x7b\\\r\n\\x0b\\x2d\\x12\\x7d\\x52\\x7b\\x0b\\x5b\\x54\\x82\\xe5\\x14\\x48\\xa6\\x65\\x67\\\r\n\\x0e\\xa7\\xf8\\x93\\xe6\\x0b\\xc7\\x70\\x54\\xd7\\x1a\\x9f\\x2c\\x6f\\x2d\\x91\\\r\n\\x9a\\x6f\\x97\\x53\\x92\\x28\\xd7\\x30\\x89\\xa2\\x00\\x82\\xa6\\x16\\x8c\\x7f\\\r\n\\x79\\x58\\x10\\x4f\\xd4\\x10\\x3f\\xe0\\x26\\xaf\\xfd\\x86\\xee\\x34\\x5b\\x2f\\\r\n\\xec\\xf3\\x14\\x4a\\x84\\xf9\\xb3\\xa7\\x94\\x92\\x1c\\x75\\x32\\x1c\\x63\\x9e\\\r\n\\x83\\x35\\xd5\\x4d\\xe1\\xfd\\x66\\xda\\x29\\x3e\\xcb\\xa9\\x8d\\x80\\x1d\\x91\\\r\n\\xc3\\x1a\\xc0\\xdd\\xba\\xec\\x00\\x1f\\xad\\x73\\xfa\\x04\\x2f\\xa9\\x6a\\xb7\\\r\n\\x31\\x5f\\xcd\\x2b\\xdd\\x28\\x02\\x59\\x24\\x7d\\xaf\\xc7\\x41\\xb7\\xa1\\x1f\\\r\n\\x5f\\x5f\\x7a\\xba\\x78\\x9a\\x52\\x8b\\x92\\x7b\\x0b\\x9d\\x17\\x60\\xd1\\x52\\\r\n\\xc6\\xd3\\x4f\\x59\\x6f\\xe3\\x55\\x87\\x39\\x8e\\x32\\x64\\xdf\\x23\\x1c\\xe0\\\r\n\\x10\\x08\\x20\\x6e\\x3d\\xf9\\xe2\\x8d\\x50\\xd9\\xa6\\xa3\\x1e\\x9f\\x75\\x13\\\r\n\\x4c\\xcd\\x1e\\xe1\\x29\\x21\\x49\\xe4\\x8f\\x46\\xfe\\xee\\x3a\\x57\\x41\\x14\\\r\n\\x29\\x6c\\x16\\x38\\xe3\\x08\\x88\\x3e\\x55\\xc5\\x73\\x7e\\x2c\\xd3\\x56\\xf2\\\r\n\\xe2\\xc2\\x68\\xe4\\x48\\x5d\\xdd\\xa2\\xdc\\x49\\xc7\\x3b\\x9f\\x3f\\x9e\\xef\\\r\n\\xce\\xb0\\x8e\\x2a\\x35\\x1e\\xa8\\x5e\\xd5\\x4b\\x42\\x85\\x86\\xa5\\x15\\xfc\\\r\n\\x47\\xe5\\xda\\xdd\\x1e\\x26\\xfe\\x13\\xfd\\x45\\x3e\\xe7\\x52\\xb2\\xd1\\x74\\\r\n\\xf5\\x31\\xa0\\x12\\x49\\xc9\\x00\\x74\\xf7\\x23\\xd2\\xb9\\xbd\\x53\\x57\\x11\\\r\n\\xeb\\xd2\\xb5\\xa2\\x27\\x97\\xbb\\xe5\\xc8\\xce\\xec\\xf7\\x1e\\x80\\xfa\\x7a\\\r\n\\x55\\x5f\\x9a\\xfa\\xf1\\xe4\\x12\\xab\\x2c\\xab\\x87\\x8c\\xf0\\x53\\xe8\\x3e\\\r\n\\xb5\\xd3\\x0c\\x1a\\x4d\\xb4\\xfd\\xd7\\xd0\\xde\\x34\\x53\\x57\\x46\\x9d\\xbc\\\r\n\\x12\\x6a\\x3a\\xa8\\x9a\\x69\\xdb\\xc8\\x77\\x52\\x65\\x63\\xc0\\xcf\\x18\\xa8\\\r\n\\x26\\xd6\\x16\\xf2\\xfe\\xe6\\x31\\x0e\\xd5\\x03\\x60\\x27\\x8d\\xd8\\xe3\\xf0\\\r\n\\xaa\\xd1\\xde\\x4a\\x96\\xb2\\x59\\xa8\\x00\\x86\\x01\\xf8\\xe7\\x8e\\x9f\\xd6\\\r\n\\xa2\\x2d\\x1c\\xcb\\xb2\\x75\\xc1\\x1c\\x09\\x17\\xa8\\xfa\\xfa\\xd7\\x42\\x7d\\\r\n\\x2c\\x4f\\x35\\xb4\\x2c\\xb5\\xa4\\x57\\xd1\\xc8\\xd0\\xb1\\x89\\xd0\\x61\\x83\\\r\n\\xff\\x00\\x9e\\x2b\\x4e\\xdb\\x42\\xbd\\x3a\\x34\\x73\\xdb\\x22\\xce\\xfb\\xbe\\\r\n\\x65\\x07\\xe6\\x4f\\x4c\\x7a\\xf5\\xcd\\x43\\x6b\\xa0\\x5d\\x4d\\x0a\\xdc\\x34\\\r\n\\xeb\\x10\\xc6\\x77\\x0c\\xe6\\x45\\xf7\\x15\\xd7\\xf8\\x71\\x27\\x5b\\x59\\xbc\\\r\n\\xf4\\xf2\\x9a\\x49\\x3c\\xc8\\xd7\\x7f\\x25\\x71\\xd3\\x1d\\xba\\x54\\xce\\xdc\\\r\n\\xb6\\x22\\xa4\\x93\\x8e\\x9d\\x0c\\xb8\\x6d\\x22\\x67\\xb5\\x86\\x4d\\xc8\\x37\\\r\n\\x82\\xe0\\x12\\x0b\\x11\\xeb\\xf8\\x8a\\xe9\\xd5\\x01\\x41\\x9c\\x92\\x39\\xcf\\\r\n\\xb5\\x57\\x9e\\xd6\\x29\\x6e\\x52\\x62\\x3f\\x78\\x8d\\x91\\x8e\\xff\\x00\\x5f\\\r\n\\xce\\xac\\xee\\x95\\x1b\\xe5\\x20\\xfb\\x63\\xf5\\xa6\\xe4\\x9d\\xad\\xd1\\x13\\\r\n\\x5a\\xaa\\x9a\\x8a\\x8f\\x44\\x3d\\x0a\\x92\\x41\\x6c\\x46\\x3e\\xf1\\x3f\\xe7\\\r\n\\xa5\\x70\\x7a\\xfa\\x35\\xee\\xa6\\x39\\x0f\\x02\\xb8\\x3b\\x59\\x46\\x78\\xe8\\\r\n\\x7e\\x87\\xfc\\x0d\\x75\\x3e\\x23\\xbc\\x8e\\x2d\\x16\\x54\\x59\\x84\\x72\\xce\\\r\n\\x0c\\x40\\x83\\x8c\\x12\\x39\\xae\\x47\\x4b\\xbd\\x33\\x58\\x35\\x9d\\xe4\\xf0\\\r\n\\xf9\\x80\\x84\\x86\\x63\\xd1\\x4f\\xa1\\x3e\\x9f\\xca\\x84\\xba\\x9a\\x50\\xa7\\\r\n\\x74\\xdf\\x53\\x0f\\x52\\x4b\\x98\\x59\\x9e\\x60\\xc8\\xb2\\x0c\\x81\\xb8\\x1d\\\r\n\\xc2\\xba\\x3b\\x35\\x2f\\xa4\\x69\\x33\\x5a\\xca\\xc6\\xe6\\x24\\x91\\x18\\x46\\\r\n\\x70\\xc8\\x54\\xe5\\x6a\\xfc\\x3a\\x21\\xbb\\x88\\x0d\\x4a\\xd4\\xf9\\x91\\xe5\\\r\n\\x57\\x23\\x0c\\xfd\\xba\\x74\\xc5\\x69\\xda\\xe8\\xb1\\x5b\\xc0\\x23\\x89\\x36\\\r\n\\x37\\x56\\x0f\\xf3\\x28\\x1d\\xc7\\xa5\\x4a\\x77\\xd1\\x92\\xaa\\x45\\x6f\\xb9\\\r\n\\xce\\x2c\\xf1\\x5f\\x45\\x2c\\x57\\x06\\x0b\\x6d\\x4e\\x40\\x54\\xed\\x20\\x47\\\r\n\\x3f\\x39\\x19\\xec\\x8e\\x71\\xf4\\x3e\\xdd\\xef\\x5b\\x5d\\x0d\\x32\\x16\\xb2\\\r\n\\x96\\xe2\\x49\\x23\\x7e\\x3e\\xc9\\x76\\x49\\xd8\\x71\\xd0\\x74\\x2a\\x7e\\x84\\\r\n\\x56\\xad\\xcf\\x85\\x6c\\x27\\x32\\x3b\\xdb\\x6c\\x76\\x20\\x8d\\x87\\x07\\x81\\\r\n\\x81\\xc7\\x4c\\x7e\\x15\\x15\\xc4\\x77\\x30\\xc8\\x96\\xf2\\xaa\\x1f\\xdd\\x81\\\r\n\\x1d\\xeb\\x60\\x14\\x23\\xa2\\xc9\\xdf\\x1c\\x75\\x19\\x23\\xf4\\x15\\xb6\\x9b\\\r\n\\x1d\\x54\\x6a\\x42\\xaf\\xb9\\x7e\\x53\\x36\\xda\\xce\\x2b\\x99\\xcb\\xc1\\x3c\\\r\n\\xb1\\x34\\x6b\\xb4\\xc5\\x27\\x24\\x0f\\x67\\x03\\x91\\xd7\\xa8\\x06\\xa9\\x8d\\\r\n\\x66\\x09\\xe3\\x9a\\xdb\\x86\\x97\\x7b\\x07\\x9c\\x1c\\x30\\xe4\\x00\\xc0\\x83\\\r\n\\x9f\\x5a\\xd4\\x9a\\x4b\\xe5\\xbc\\xd9\\x22\\x5b\\xc3\\x26\\xc0\\x65\\x2c\\xc4\\\r\n\\xb1\\x63\\xdf\\x70\\x04\\x1e\\x3d\\x0f\\x35\\x42\\xd6\\x7d\\x33\\x4a\\xb8\\x9a\\\r\n\\x79\\xdd\\xe6\\x49\\xc8\\x56\\x58\\x6d\\xff\\x00\\xf6\\x66\\x60\\x7f\\x4a\\x9d\\\r\n\\x0a\\x94\\x79\\x77\\xdc\\x45\\xb1\\x3a\\x26\\x94\\x66\\x8e\\xe1\\x64\\x92\\xea\\\r\n\\x55\\x26\\xe0\\x49\\xbd\\x70\\x4e\\x70\\x48\\xe4\\x77\\x3c\\xd2\\x4d\\x69\\x16\\\r\n\\xc1\\x17\\x9c\\x09\\x66\\xf3\\x37\\x29\\xca\\xb7\\x1c\\x81\\xf9\\xd5\\xc4\\xbf\\\r\n\\xb3\\xd4\\x05\\xcd\\x95\\xad\\x93\\xdd\\xc4\\xae\\x64\\x8e\\x01\\x38\\x4e\\x0e\\\r\n\\x78\\x00\\xa9\\x2d\\x8e\\xfc\\xd5\\x4b\\x4f\\x12\\x1d\\x3d\\x8c\\x52\\xe9\\x16\\\r\n\\xeb\\x06\\x42\\xb2\\xfc\\xcc\\x57\\x1e\\xc4\\xe3\\xf4\\xa1\\xa7\\x2d\\xc8\\xac\\\r\n\\xee\\x94\\x53\\x19\\x06\\x93\\xe6\\xc3\\x2d\\xbc\\x8a\\xdb\\x03\\x79\\x91\\xe7\\\r\n\\xe9\\xf3\\x0f\\xc4\\x73\\xf8\\x56\\xc5\\x86\\x8f\\x78\\xab\\x1c\\x89\\x04\\xcf\\\r\n\\x09\\x18\\x0c\\x54\\x85\\xe0\\xf1\\xcd\\x5d\\x1a\\xeb\\xc1\\x65\\x15\\xe4\\x32\\\r\n\\xc7\\x1a\\x38\\x03\\x6a\\x2a\\xa0\\xcf\\xa1\\x20\\x7a\\x54\\x77\\x3a\\x9b\\x4b\\\r\n\\x78\\xd0\\xb5\\xa3\\x6c\\x70\\x1a\\x49\\xd5\\xb6\\x85\\x5f\\x72\\xdd\\xfd\\xaa\\\r\n\\xea\\x28\\x72\\xea\\x8e\\x5a\\x91\\xe5\\xd1\\x93\\xdd\\xc7\\x1d\\x90\\xb8\\x83\\\r\n\\x51\\x92\\x01\\x63\\x76\\xcc\\x24\\x8b\\x71\\x72\\x41\\x3d\\x46\\xd0\\x70\\xc2\\\r\n\\xb3\\xaf\\xa0\\xb7\\xb6\\x45\\x5f\\xb4\\xcd\\x72\\x56\\x35\\x50\\xe1\\x42\\x86\\\r\n\\x18\\xe0\\x83\\x93\\x53\\x47\\x73\\xe1\\xef\\xed\\x57\\x06\\x6f\\x39\\x9b\\x69\\\r\n\\x0c\\xe8\\xdb\\x31\\x8e\\x09\\x20\\x1c\\xf6\\xe9\\xeb\\x50\\x5f\\xa3\\x5c\\xca\\\r\n\\xb1\\x6f\\xb4\\xda\\x0e\\x51\\xad\\xb3\\x8c\\x7a\\x60\\xf3\\x51\\x29\\x36\\x8f\\\r\n\\x47\\x2f\\x6a\\x75\\x39\\x64\\xb6\\xd8\\xd3\\xd3\\xd1\\x2c\\x74\\xb9\\xcb\\x8b\\\r\n\\x08\\xbc\\xe5\\x1b\\x8d\\xd3\\x17\\x25\\x7f\\x88\\x6d\\x04\\xf6\\xf6\\xaa\\xf7\\\r\n\\xb7\\xd7\\x32\\xd9\\x4f\\x25\\x95\\xf0\\x6b\\x18\\xe2\\xf9\\x4d\\xa7\\xee\\x8a\\\r\n\\x61\\x87\\x07\\x81\\x9e\\x33\\xcf\\xb1\\xaa\\x96\\xda\\x77\\x96\\xec\\x14\\xe3\\\r\n\\xcc\\xf9\\x98\\xe3\\x39\\xea\\x3b\\xfd\\x6b\\x52\\x0b\\x78\\xed\\xad\\xa7\\x82\\\r\n\\x08\\x90\\x86\\x46\\x5f\\xba\\x36\\x92\\x7b\\x54\\x3b\\xdb\\xb1\\xc7\\x8b\\x9c\\\r\n\\xbd\\xb4\\x95\\xce\\x62\\xc2\\xfb\\xec\\x9a\\xb4\\x1a\\x98\\xb8\\x79\\x64\\x46\\\r\n\\x46\\x21\\xdb\\x24\\xa8\\xf5\\xfa\\x83\\x5b\\xda\\xbc\\x47\\x4f\\x7b\\x89\\x21\\\r\n\\x6c\\xc7\\x21\\xf2\\xc0\\xc7\\xca\\xb1\\xe0\\xb8\\x27\\xd4\\x94\\x20\\x56\\x6c\\\r\n\\xda\\x6c\\x73\\xdb\\x6d\\x81\\x3f\\xd2\\x22\\x52\\x02\\xa8\\xe4\\xaf\\x5d\\xa7\\\r\n\\xdc\\x73\\x8f\\x50\\x3d\\x45\\x5e\\x9e\\xe2\\x39\\xbc\\x33\\x14\\xa0\\xee\\x61\\\r\n\\x6c\\xd1\\xb0\\x6f\\xef\\x44\\xc1\\x7f\\x54\\x75\\xfc\\x05\\x2a\\x4f\\xdd\\xb9\\\r\n\\x9d\\x17\\xd4\\xcb\\xb8\\x68\\x6e\\xf4\\xdb\\x6b\\x99\\x37\\x42\\x99\\x0d\\xbe\\\r\n\\x2f\\xe1\\xda\\xad\\x8e\\x0f\\x51\\xd6\\x91\\x04\\xd7\\x56\\x2f\\xf6\\x3b\\xb8\\\r\n\\xc5\\xd4\\x58\\x6b\\x49\\x73\\xb5\\xf2\\x4f\\xcc\\x9c\\xfe\\x63\\xaf\\x39\\xf5\\\r\n\\xa8\\x10\\x09\\xb4\\x68\\x6d\\x90\\xec\\xdc\\x92\\xa2\\xe7\\xfb\\xc1\\xb2\\xbf\\\r\n\\x9e\\x31\\xf8\\xd5\\x0b\\x49\\x8c\\x56\\x4d\\x98\\x55\\xdc\\xf0\\xa1\\x89\\xc6\\\r\n\\x41\\xe3\\x18\\xf7\\xac\\xd5\\x92\\xbf\\x9b\\x21\\x5b\\xf1\\x3d\\x43\\x45\\xd5\\\r\n\\xe6\\x6b\\x68\\x17\\x53\\x8d\\x23\\xbb\\x78\\xf7\\x10\\xbc\\x86\\x1e\\xbe\\xc7\\\r\n\\xda\\x99\\x73\\x15\\xbc\\x17\\x72\\xdc\\x24\\x7b\\x1e\\x61\\xcb\\x83\\xc3\\x01\\\r\n\\xd3\\x8f\\x51\\x91\\x5c\\xa7\\x87\\xee\\x20\\xd6\\xae\\x43\\xdb\\x37\\xd8\\xc4\\\r\n\\x72\\xa8\\x78\\x5a\\x52\\x59\\x41\\x38\\xce\\x0e\\x01\\x27\\x9e\\x38\\xfd\\x6b\\\r\n\\xb8\\x6b\\x13\\x01\\x21\\x6e\\x24\\xda\\x01\\xcf\\xcb\\x80\\x7d\\xf1\\xff\\x00\\\r\n\\xd7\\xaf\\x27\\x17\\x08\\xd0\\x93\\x94\\x1e\\xfd\\x08\\xa9\\x0b\\x2b\\x3d\\x2e\\\r\n\\x67\\xb9\\xc0\\x1b\\x81\\x3b\\xbb\\x03\\x82\\x7d\\xbe\\x95\\x9f\\xad\\xe9\\x2f\\\r\n\\xaa\\xd8\\x43\\x6e\\x66\\x8e\\x2d\\x92\\x6f\\x66\\x70\\x4e\\x38\\xc7\\x00\\x11\\\r\n\\x5b\\xce\\x8e\\xd0\\x79\\xd0\\xbc\\x52\\x95\\x07\\xa2\\x80\\x7e\\x95\\xc4\\xf8\\\r\n\\x83\\x55\\xb8\\xbd\\xd0\\xae\\x8c\\x51\\xbc\\x13\\xac\\xaa\\xad\\x1b\\x70\\xc0\\\r\n\\x64\\x82\\x4f\\xd7\\x8a\\xbc\\x2b\\x9d\\x66\\xbd\\x9e\\x96\\x1d\\x1a\\x76\\x95\\\r\n\\xd3\\x31\\x57\\x49\\xb7\\x82\\x3f\\xb5\\x14\\xf3\\x84\\x43\\x69\\xc8\\xe9\\xe9\\\r\n\\x59\\x6c\\xea\\xc4\\x95\\x8c\\x2b\\x93\\xcb\\x63\\x9a\\xd6\\xd3\\x20\\xd5\\x35\\\r\n\\x5b\\xa8\\xee\\xa3\\x5f\\x22\\xc9\\x72\\x24\\x59\\xc6\\x06\\x3b\\x90\\x3b\\xfd\\\r\n\\x2a\\xdd\\xcd\\xde\\x93\\x63\\xf3\\x59\\xe9\\xc9\\x72\\x7f\\xe7\\xa4\\xdc\\xa8\\\r\n\\x3f\\x4e\\x6b\\xd9\\xb5\\xa5\\xab\\xb9\\xbb\\x94\\x95\\x8c\\x14\\x00\\x6e\\x2e\\\r\n\\x85\\xb3\\xd5\\xc0\\xe7\\xf3\\xef\\x52\\x3e\\x9c\\xb3\\x2e\\x62\\x3f\\x31\\x52\\\r\n\\x70\\xcd\\x8e\\x73\\x5a\\xad\\xe2\\xab\\x89\\xa2\\x11\\xdc\\xc6\\x9e\\x56\\x78\\\r\n\\x44\\x00\\x28\\xfa\\x03\\xc5\\x41\\x35\\xc4\\x44\\x47\\x24\\x26\\xd8\\xb3\\x0d\\\r\n\\xc9\\x19\\x90\\x23\\x0c\\xf6\\xc0\\x3c\\x55\\xdd\\xde\\xed\\x07\\x33\\x93\\x27\\\r\n\\x5d\\x64\\xc3\\x6b\\x0d\\xb2\\xc6\\xe2\\x70\\xa1\\x32\\x48\\x60\\x3b\\x67\\x35\\\r\n\\x66\\xd6\\xe4\\x43\\x74\\xf7\\xb2\\xee\\x65\\x0a\\x36\\x7c\\xdf\\x30\\x1d\\xf9\\\r\n\\xfa\\xd6\\x44\\xf1\\xbd\\xbc\\xf1\\xa4\\x71\\xc2\\x92\\xc9\\xf2\\x85\\x57\\x04\\\r\n\\xa7\\xe2\\x32\\x0d\\x3b\\x55\\xbb\\x92\\xd6\\xd4\\x44\\x54\\xb3\\xb0\\xdb\\xd3\\\r\n\\x23\\xbf\\x5a\\xde\\x10\\x8a\\x4d\\xb3\\xb2\\x95\\x08\\xc6\\xf2\\x96\\xa8\\xf4\\\r\n\\x2d\\x12\\xea\\xd7\\x59\\x96\\xdc\\xdb\\xb1\\x75\\x97\\x91\\xc7\\xe7\\x57\\x3c\\\r\n\\x40\\x3c\\x9d\\x49\\xe1\\xb7\\x0a\\x85\\x63\\x03\\x68\\xe3\\x9a\\xe4\\xfe\\x13\\\r\n\\xa3\\x4b\\xe2\\x67\\x5c\\x90\\xa2\\x2d\\xcc\\xa3\\xa6\\x73\\xc7\\xf5\\xad\\xef\\\r\n\\x12\\x5d\\x40\\x7c\\x43\\x73\\xe5\\xb6\\x76\\x60\\x36\\x3d\\x45\\x70\\xd6\\xf6\\\r\n\\xb4\\xe9\\x37\\x1d\\x75\\xfc\\x0e\\x27\\x4a\\xd0\\xbc\\x57\\x53\\xce\\x35\\xfb\\\r\n\\xdb\\xcd\\x5f\\x55\\x6b\\x38\\xad\\xe4\\xf3\\x62\\xf9\\x12\\x3c\\x72\\x07\\x73\\\r\n\\xf8\\xd6\\xdf\\x87\\x3c\\x3f\\x3c\\x57\\x6a\\xda\\x84\\x01\\x51\\x57\\x78\\x57\\\r\n\\x20\\x8d\\xfd\\x33\\x8e\\xfc\\x73\\x4c\\xb8\\xf1\\x25\\xae\\x98\\xb7\\x37\\x12\\\r\n\\xac\\x2d\\x77\\x33\\xe0\\x2c\\x4c\\x18\\xed\\x03\\x03\\x71\\xed\\xeb\\x8a\\xc0\\\r\n\\x5f\\x12\\x6a\\x57\\xb7\\xaa\\x44\\x8d\\xb7\\xa9\\x48\\xc9\\x1c\\x75\\xa6\\x9d\\\r\n\\x66\\xed\\xcb\\x64\\x5a\\x84\\x92\\xb6\\xc7\\xb0\\xa8\\xb2\\x90\\x2b\\xb1\\x77\\\r\n\\x61\\xc7\\xcb\\xda\\xa6\\xd9\\x6e\\x62\\xdb\\x1c\\x38\\x19\\xfe\\xf5\\x79\\xbe\\\r\n\\x97\\xab\\xdd\\x4d\\x6f\\x3a\\x09\\x64\\x59\\x62\\x6c\\xe5\\x9b\\x20\\x83\\xc8\\\r\n\\xfe\\x58\\xfc\\x45\\x6d\\xe9\\xba\\xdd\\xd3\\x38\\x59\\xa6\\x20\\x67\\x20\\x95\\\r\n\\x18\\xc7\\xa5\\x75\\x46\\x12\\x68\\xcd\\x61\\x66\\xf6\\x3a\\x89\\x61\\x91\\x88\\\r\n\\xd9\\xb8\\xf1\\x83\\x82\\x32\\x6a\\xa5\\xde\\x9e\\xf3\\xdb\\xba\\x32\\x6c\\x42\\\r\n\\x30\\xc5\\x0e\\x09\\x1f\\x5a\\xca\\xd5\\x35\\xfd\\x4b\\x4d\\x64\\xb9\\xf2\\xa1\\\r\n\\x9a\\xcd\\x8e\\x09\\x04\\x9d\\xa7\\xb7\\x35\\xcc\\xeb\\x3e\\x39\\xbf\\xba\\xcc\\\r\n\\x10\\xc5\\xe5\\xc7\\x8e\\x4e\\x79\\xfe\\x55\\x32\\xe6\\xd9\\x99\\xfb\\x19\\xa7\\\r\n\\x66\\x5a\\xbc\\xb1\\xbb\\x89\\x7e\\xcd\\x3c\\xf1\\xc9\\x6e\\x41\\x10\\x5d\\x02\\\r\n\\x0b\\x42\\x7d\\x18\\x77\\x5c\\xe7\\xdc\\x75\\x1d\\xc1\\xc1\\x9d\\x2e\\x21\\xbf\\\r\n\\x91\\x6e\\x20\\xda\\x09\\xd8\\xc9\\x9c\\xa8\\xcf\\x20\\x8c\\x67\\x20\\x8e\\xf5\\\r\n\\x42\\xfa\\xe2\\xea\\xe2\\x18\\x65\\x32\\x30\\x57\\x05\\x48\\xcf\\x46\\x1d\\x7f\\\r\n\\x4c\\x1f\\xc6\\xaf\\xd8\\xdc\\x7f\\x68\\xda\\xa5\\xad\\xcc\\x9b\\x67\\x8b\\xfd\\\r\n\\x54\\xc4\\xe3\\x1c\\xf0\\x1b\\xfd\\x92\\x7b\\xf6\\x3c\\xf7\\x35\\x32\\x8b\\x8a\\\r\n\\x4c\\xef\\x72\\x95\\x48\\xa8\\xc9\\xea\\xb6\\x2c\\xdb\\xe9\\x65\\x6e\\x62\\x90\\\r\n\\x0f\\x2f\\xe6\\x1c\\xf3\\x81\\x5b\\x7a\\x83\\xc6\\xec\\x22\\xb8\\x85\\x1e\\x54\\\r\n\\x18\\x67\\x63\\xc9\\x03\\xa6\\x4f\\xff\\x00\\xae\\xb2\\x2c\\x7c\\x45\\xa8\\xe8\\\r\n\\x62\\x65\\x66\\x88\\xdc\\xec\\x31\\xe1\\x94\\xb1\\x43\\xbb\\xbe\\x4f\\x5e\\x2a\\\r\n\\x29\\x3c\\x5a\\xd7\\xa7\\xcc\\xbd\\x49\\x1d\\xb1\\x82\\x51\\xb2\\x0f\\x3e\\x9d\\\r\n\\xab\\x4b\\xa4\\xb4\\x32\\x57\\x8a\\xb1\\xae\\xd0\\x47\\x32\\x14\\xde\\x92\\xc2\\\r\n\\xe0\\x2a\\x02\\x3e\\x58\\xd8\\x0e\\x3e\\x83\\x27\\x07\\xd8\\x9a\\xd6\\xd0\\xa4\\\r\n\\xb7\\xbc\\xd3\\x24\\xb6\\xbe\\x88\\x24\\xf1\\x7e\\xed\\xd0\\x8f\\xb8\\x7d\\xbd\\\r\n\\xb8\\xae\\x52\\x0b\\xd5\\x76\\x37\\x36\\xd9\\x5e\\x39\\xc9\\xf9\\x58\\x7a\\x11\\\r\n\\x56\\xed\\x6f\\x88\\xd7\\x62\\xb9\\x18\\x8f\\xce\\x05\\x9c\\x21\\xea\\x79\\x1c\\\r\n\\xe7\\xa6\\x4e\\x0d\\x64\\xe4\\xaf\\x74\\x65\\x2d\\x55\\xd9\\x77\\x56\\x82\\x1d\\\r\n\\x2e\\x44\\x55\\x44\\x68\\xb6\\x05\\x0c\\x07\\x6c\\x9c\\x7e\\x95\\x5a\\xc3\\x50\\\r\n\\x47\\x9c\\xe0\\xae\\x33\\xc6\\xea\\x9f\\x53\\x95\\xe6\\x8f\\x66\\xd0\\xc5\\xba\\\r\n\\x2f\\xa5\\x4d\\xa5\\xf8\\x4e\\x7b\\x8d\\xb3\\x4e\\xde\\x5f\\xa2\\x81\\xcd\\x25\\\r\n\\x1e\\x6b\\xf2\\x9f\\x41\\x86\\x93\\xa5\\x4a\\x3c\\xc7\\x41\\x12\\x49\\x78\\xc8\\\r\n\\xa3\\x62\\xfc\\xb9\\xf6\\xc7\\xad\\x62\\x4b\\xae\\x46\\x2f\\xa2\\xb3\\xb7\\xf2\\\r\n\\xde\\xd8\\xc8\\x50\\xca\\x09\\x21\\x8e\\x3a\\x8f\\xc4\\x55\\x95\\xb4\\xbc\\xd1\\\r\n\\x65\\x94\\xc9\\x1f\\xda\\x11\\xdc\\x0d\\xdb\\x72\\x4a\\x60\\xf1\\xfa\\xd6\\x55\\\r\n\\x9f\\x87\\x9a\\x5b\\xfb\\x88\\xac\\x90\\xad\\xa8\\xc4\\xd1\\xb3\\x83\\xb7\\x93\\\r\n\\xf7\\x41\\xf5\\x04\\x54\\xd4\\xba\\x8a\\x6f\\xa1\\xe0\\x62\\x3d\\xea\\x92\\x93\\\r\n\\x33\\x98\\xcb\\x64\\xdf\\x6a\\x5b\\x95\\x41\\x06\\xe4\\x21\\x8f\\xdf\\x19\\xc8\\\r\n\\xfc\\xb9\\xfc\\xab\\xa2\\xb5\\x6b\\x7d\\x5b\\x42\\x95\\x82\\xaa\\x15\\x99\\x64\\\r\n\\x62\\x8b\\xf7\\x8b\\xa9\\x8c\\x96\\x03\\xa7\\x25\\x32\\x7d\\xb3\\xd2\\xa3\\xd5\\\r\n\\x74\\x75\\x48\\x9c\\x48\\x92\\x02\\x18\\x82\\x52\\x3d\\xc8\\x73\\xeb\\xcf\\x3f\\\r\n\\x4e\\x39\\xa6\\x68\\x56\\x26\\x08\\x2f\\x45\\xb5\\xc0\\x65\\x92\\xd1\\x88\\x68\\\r\n\\x98\\xfc\\xac\\x98\\x71\\x9c\\xfd\\x31\\xcd\\x44\\x3b\\xa2\\x69\\x2d\\x4c\\x2b\\\r\n\\x95\\x92\\xce\\x14\\x8d\\x17\\x6d\\xcd\\xbc\\xfb\\xca\\xb7\\x41\\x85\\xfe\\x5c\\\r\n\\x0a\\xad\\x3d\\xcd\\xbb\\x4d\\x24\\x62\\x27\\x52\\xc4\\xec\\x00\\xf0\\x38\\xc8\\\r\n\\xff\\x00\\x3e\\xd5\\xab\\xac\\xaa\\xdc\\x34\\x13\\xcc\\xbb\\x5e\\x43\\xb4\\xb9\\\r\n\\xe4\\x12\\xa4\\xed\\x24\\x7b\\x80\\x3f\\x0a\\xc4\\xd5\\x52\\x74\\x9e\\xd1\\xa2\\\r\n\\xce\\x5c\\x00\\x11\\x7f\\x88\\x83\\x42\\x57\\xd0\\xce\\x36\\xdb\\xd4\\xb1\\xa5\\\r\n\\x5e\\x2d\\xa8\\x92\\xec\\x27\\x2f\\xf2\\x95\\xce\\x03\\xf1\\xf9\\xf7\\x3f\\x95\\\r\n\\x77\\x16\\xbe\\x20\\x92\\xda\\xde\\xcd\\x0c\\x32\\xdc\\xda\\xb4\\x20\\x92\\x7e\\\r\n\\xfa\\x8e\\xd9\\x3d\\xf8\\x1d\\xeb\\x06\\xc2\\xf7\\x4d\\xb2\\x78\\x2c\\x2e\\xe4\\\r\n\\x8e\\x4b\\x93\\xfc\\x6c\\x80\\xf9\\x67\\xb0\\xdd\\xf4\\xc0\\xad\\xe7\\x01\\x55\\\r\n\\x81\\xf9\\x95\\xb8\\x23\\xf9\\xd7\\x0e\\x2a\\xa4\\x6e\\xa1\\x52\\x37\\x44\\xca\\\r\n\\x4b\\x9b\\x55\\xa1\\xa1\\x04\\xd6\\xea\\xff\\x00\\x6b\\xb5\\x9d\\xd5\\x65\\x5c\\\r\n\\x98\\x64\\x5c\\x06\\xf7\\xcd\\x57\\xbd\\xb1\\xd3\\xb5\\xa4\\x69\\xe1\\x68\\xd6\\\r\n\\x66\\x5f\\x2d\\xdb\\x19\\x04\\x03\\xd0\\x80\\x7a\\x82\\x2b\\x32\\xe0\\x66\\x07\\\r\n\\x8c\\xb4\\x9e\\x59\\x8c\\xae\\xc1\\xcf\\x6e\\x08\\x1e\\xa2\\xb3\\xad\\x97\\x55\\\r\n\\xb7\\x45\\x91\\xe2\\x8f\\xe5\\x38\\x72\\x8e\\x01\\x93\\xb0\\x3d\\x3d\\xab\\x0a\\\r\n\\x58\\x77\\xfc\\x4c\\x3c\\xec\\xd7\\x7f\\xd4\\xd2\\x9c\\x53\\x5c\\xd1\\x69\\x18\\\r\n\\x3a\\xaf\\x88\\xdb\\x52\\x1e\\x5f\\xef\\x23\\x8c\\x9e\\x15\\x1f\\x6e\\x7e\\xbc\\\r\n\\x55\\x7b\\x6d\\xf3\\x49\\x22\\x5b\\x29\\x2e\\xab\\x97\\xdc\\x40\\x52\\x3d\\xcf\\\r\n\\x4a\\xe7\\x99\\x91\\xa4\\x60\\xed\\xb1\\x06\\x71\\x81\\x57\\xac\\x67\\xb2\\x9e\\\r\n\\xca\\xf3\\x4e\\x96\\x73\\x68\\x65\\x31\\xbc\\x72\\xbe\\x4a\\x92\\xb9\\xe1\\xb1\\\r\n\\xd8\\xee\\xed\\xe8\\x2b\\xdf\\x8d\\x15\\x08\\xf2\\xc7\\x43\\xa7\\xd9\\xf4\\xb9\\\r\n\\x6e\\xe2\\xc6\\x59\\xd1\\xa4\\x57\\x19\\x5e\\xbe\\x54\\x81\\x80\\xad\\x0b\\x4f\\\r\n\\x0e\\xda\\x5c\\xe9\\x90\\xde\\xa4\\xd3\\x19\\x86\\x7c\\xd5\\xc6\\x43\\x10\\x7a\\\r\n\\x7b\\x71\\x55\\xa1\\xd3\\x67\\xb7\\xb3\\x13\\x2c\\xb1\\x4d\\x39\\x42\\x44\\xb1\\\r\n\\x93\\x80\\x07\\x43\\x92\\x05\\x68\\xe8\\xda\\xa2\\xdc\\xcf\\xf6\\x7f\\x26\\xe2\\\r\n\\x29\\xd8\\x00\\xeb\\xd5\\x18\\x8e\\x87\\xd8\\xd4\\xbe\\x64\\xb4\\x32\\x6d\\xed\\\r\n\\x11\\xba\\x34\\x51\\xb4\\x92\\x5f\\x6e\\x66\\x8e\\x3c\\x90\\x1d\\x31\\x86\\x3e\\\r\n\\x9f\\x4f\\xf0\\xaa\\xba\\xa3\\xc8\\xcb\\xe6\\x3a\\x86\\x8d\\xd8\\xe1\\x88\\xe5\\\r\n\\x5b\\xd4\\x1f\\xc6\\xba\\x89\\xb5\\x0b\\x1d\\x2a\\xcc\\x5b\\x43\\x12\\x34\\xb2\\\r\n\\xb6\\x0e\\x7e\\xe8\\x2d\\xdc\\xff\\x00\\x85\\x61\\xde\\x2a\\xc9\\x03\\xc0\\x22\\\r\n\\x2f\\x1a\\xe0\\x84\\x53\\x8e\\x9c\\x7f\\x5a\\xd2\\x53\\xd1\\x44\\xda\\x55\\x6d\\\r\n\\x05\\x4e\\xd6\\xb9\\xd8\\xfc\\x21\\xd2\\x65\\x4b\\x5b\\xad\\x5a\\x59\\x30\\xeb\\\r\n\\x94\\xd9\\xec\\x2b\\x89\\xf1\\x55\\xe9\\xbd\\xd5\\x35\\x5f\\xb3\\xb3\\xae\\x27\\\r\n\\xcb\\x64\\xe0\\x30\\x27\\x1d\\xbd\\x08\\x15\\xeb\\x7e\\x15\\xb8\\x83\\x4b\\xf8\\\r\n\\x7f\\x2c\\xce\\x82\\x26\\x54\\x66\\x71\\x8c\\xe2\\xbc\\x3a\\xe2\\x73\\x2d\\xe3\\\r\n\\xb9\\x21\\xbe\\xd0\\xcc\\xa7\\x3e\\xa7\\xbf\\xb5\\x12\\x6a\\x29\\x24\\x57\\x32\\\r\n\\x8a\\x49\\x75\\x23\\x83\\x42\\x49\\x62\\x8e\\x5d\\x43\\x50\\x82\\xce\\x30\\x3a\\\r\n\\x31\\xdf\\x23\\x0f\\x5d\\xa3\\xfa\\xd6\\x95\\xb4\\x5e\\x1e\\xb6\\x9e\\x24\\x42\\\r\n\\xf2\\x3b\\x7f\\xcb\\x49\\xb3\\x93\\xe8\\x02\\x8f\\x5f\\x7a\\xc5\\xf2\\x9d\\x94\\\r\n\\xc7\\x37\\x2b\\xd1\\x64\\x5e\\xab\\xf5\\x14\\x96\\x88\\xb1\\x5e\\x2c\\xb3\\xbb\\\r\n\\x04\\x56\\xfb\\xe8\\x32\\x7e\\xa0\\xd6\\x32\\xf7\\x93\\xbb\\x31\\x94\\x93\\x56\\\r\n\\x47\\x5d\\x6f\\x75\\x32\\xea\\x71\\xc2\\x59\\x22\\xb6\\x95\\xd5\\x22\\x41\\x18\\\r\n\\x07\\xb0\\xc9\\x1d\\x80\\x3e\\xb5\\xd4\\xcf\\x60\\xbf\\x61\\xd9\\x0d\\xa3\\xc4\\\r\n\\x83\\x3b\\x64\\x0d\\xb9\\x8f\\xb9\\xcf\\x43\\xf4\\xfd\\x6b\\x80\\xb8\\x9e\\xd2\\\r\n\\x15\\x56\\x86\\xe5\\x65\\x52\\x0f\\x42\\x73\\x9e\\x70\\x7f\\x3a\\xf4\\x0d\\x0b\\\r\n\\x59\\x92\\xfa\\xca\\x18\\xa5\\xe4\\xb7\\xca\\x4e\\x32\\x09\\xff\\x00\\x3f\\xd6\\\r\n\\xb5\\xc3\\x3b\\x2e\\x56\\x5e\\x1e\\x4f\\xe1\\x65\\x3d\\x1e\\x78\\x6e\\xd2\\x6d\\\r\n\\x22\\x76\\x73\\x29\\x53\\xb4\\x49\\xc8\\x71\\xfe\\x35\\xca\\x6a\\x76\\xab\\x63\\\r\n\\x78\\x60\\x98\\xe3\\x1f\\x74\\x9e\\xe3\\xb5\\x74\\x7a\\xdd\\x85\\xd6\\x9f\\x7e\\\r\n\\xb7\\xf6\\xa0\\xab\\xa1\\xdc\\xb8\\x1e\\x95\\x76\\xf8\\xd9\\xeb\\x36\\xd6\\xf7\\\r\n\\xaa\\xb1\\x24\\x8e\\x9f\\xbc\\x0c\\xbc\\xc6\\xc3\\xa8\\x07\\x1c\\x7a\\xd7\\x43\\\r\n\\x47\\x44\\xe1\\xcc\\x73\\x43\\x41\\x9b\\xec\\x4c\\xb7\\x49\\xe4\\xc4\\xcc\\x24\\\r\n\\x46\\x62\\x3d\\x3d\\xba\\x71\\x8a\\x93\\xfe\\x11\\xed\\xc4\\x35\\xbc\\xe9\\xb5\\\r\n\\xd7\\x18\\x0b\\xc9\\xf6\\xe6\\xb4\\x96\\xc6\\x4b\\x88\\x7c\\xc4\\x9e\\x49\\x82\\\r\n\\xe0\\x08\\xa4\\x6e\\x07\\x1c\\x71\\x9c\\x7a\\xd6\\x6d\\xe2\\x47\\xa3\\xcd\\x08\\\r\n\\xb8\\xdb\\x25\\xc8\\x8c\\x5c\\x5c\\xb3\\x11\\x10\\x19\\xe7\\xcb\\x50\\x39\\x27\\\r\n\\xd4\\xf3\\x51\\xec\\x9c\\xde\\x84\\x3a\\x50\\x8a\\xf7\\x88\\xaf\\x3c\\x3f\\x75\\\r\n\\x3d\\x99\\x69\\x99\\x84\\xf1\\x2f\\xcb\\x27\\x0c\\x25\\x8c\\x74\\x04\\x82\\x79\\\r\n\\x5f\\xe5\\xf4\\xaa\\x9a\\x72\\x58\\xe9\\xeb\\x27\\xf6\\x8d\\xb8\\x90\\x9e\\x37\\\r\n\\x9e\\x80\\x63\\xb6\\x07\\x5f\\xc8\\xd7\\x69\\x33\\xb5\\xd4\\x71\\x5d\\x69\\xe1\\\r\n\\xd6\\x16\\x55\\x65\\x2e\\xa4\\x11\\xd3\\x20\\x8e\\xfe\\x9d\\xfa\\xfd\\x4d\\x53\\\r\n\\xd5\\xd2\\x19\\x34\\xa3\\x3f\\xd9\\xed\\xc0\\x8c\\x64\\x00\\x80\\xe1\\x81\\xc1\\\r\n\\x04\\x0e\\xbc\\xf7\\xfc\\x6b\\x38\\xd3\\xe4\\xd3\\xa1\\xb5\\x3f\\xdd\\xcb\\x9e\\\r\n\\xd7\\xb7\\x73\\x02\\x68\\x74\\x9b\\x7b\\x4b\\x99\\x8b\\x4f\\x6c\\x55\\x14\\xa2\\\r\n\\x07\\xff\\x00\\x5c\\x58\\xf0\\x46\\x47\\x41\\xfa\\xfa\\xd5\\x5d\\x1e\\xfd\\xa0\\\r\n\\x9d\\xee\\x14\\x09\\x40\\xfd\\xda\\x24\\x87\\x91\\x9c\\x74\\xed\\x8e\\x05\\x69\\\r\n\\xe9\\xf6\\x76\\xfa\\xe8\\x91\\x5e\\xd9\\x65\\x54\\x5d\\xb1\\xb0\\x3b\\x79\\x3d\\\r\n\\x57\\x1e\\x9d\\xea\\xd4\\x96\\x3e\\x1d\\xd2\\x6c\\x9a\\xd2\\x6f\\x30\\x4e\\x8e\\\r\n\\x43\\xb2\\x38\\x0c\\xf9\\xe3\\x19\\x20\\xe0\\x7b\\x8e\\x6a\\x2e\\xad\\x6b\\x6a\\\r\n\\x4b\\xdf\\x9e\\x2a\\xc4\\xa2\\x48\\x7c\\xd8\\xef\\x0b\\x2e\\xec\\x0f\\x95\\x47\\\r\n\\x02\\xba\\xab\\x5d\\x62\\x38\\xd6\\x26\\xf2\\xcb\\x06\\x1d\\xab\\x8a\\x49\\x6d\\\r\n\\x5a\\xdc\\x7d\\x86\\xdf\\x6c\\x5e\\x84\\x96\\xe7\\xdc\\x9a\\x70\\xd4\\xae\\xad\\\r\n\\x54\\x5c\\x84\\x0f\\x14\\x47\\xe6\\x4c\\xd7\\x3f\\x34\\xa1\\xb1\\xeb\\x55\\xb4\\\r\n\\xa8\\x5c\\xee\\x2e\\x35\\x36\\x74\\x26\\x38\\x51\\xce\\x3e\\xeb\\x8c\\xe7\\xdb\\\r\n\\xd2\\xb0\\xf4\\xbd\\x52\\x69\\xf5\\x29\\x5e\\x68\\xc8\\x91\\x72\\xa4\\x31\\xe4\\\r\n\\x2f\\x1d\\x33\\xdb\\x8e\\x95\\x0d\\x8f\\x89\\x20\\xbc\\xdb\\xe6\\x43\\xe4\\xb1\\\r\n\\xe4\\x77\\x0c\\x3d\\x45\\x69\\xef\\xb7\\xb9\\xc3\\x8d\\xa2\\x61\\xd1\\xfd\\x7d\\\r\n\\x8d\\x5b\\xa9\\xed\\x61\\x69\\x2b\\x1e\\x27\\x2f\\xb4\\x46\\xa2\\xca\\x24\\xe0\\\r\n\\xfb\\x92\\x6a\\x08\\xed\\x6d\\x63\\xb9\\x5b\\x82\\x18\\x48\\x72\\x32\\x18\\xf7\\\r\n\\x52\\x0f\\x1d\\x3a\\x1a\\xa4\\x2e\\xd5\\x53\\xe6\\x6d\\x87\\x3b\\x58\\x13\\xd0\\\r\n\\xff\\x00\\xf5\\xea\\xb5\\xde\\xa5\\x1c\\x47\\xef\\xee\\xc0\\xce\\x01\\xaf\\x1f\\\r\n\\x13\\x52\\xa4\\x6a\\xa8\\x51\\x5a\\xf7\\x3c\\xe9\\x2e\\x4a\\x97\\x8f\\x43\\x17\\\r\n\\x5c\\xb3\\x30\\x09\\x23\\x79\\x96\\x4d\\xcd\\xba\\x35\\x1d\\x50\\x63\\x1c\\xd3\\\r\n\\x4d\\x85\\xd4\\x36\\x90\\xcd\\x22\\xc7\\x97\\x8c\\xf9\\x0a\\xc3\\xe6\\x57\\x19\\\r\n\\xe4\\x7d\\x41\\xad\\x3d\\x4e\\xca\\x57\\xd5\\x56\\x58\\x5a\\x31\\x1b\\x46\\xc0\\\r\n\\x86\\x63\\x97\\x3d\\x14\\x01\\xef\\xcd\\x50\\x8a\\x36\\x37\\xd0\\xdd\\xcc\\x48\\\r\n\\x31\\xc7\\xe5\\x9c\\x93\\x8c\\x74\\xae\\xf8\\x42\\xaa\\x8d\\xde\\xa3\\xa9\\x09\\\r\n\\x46\\x4d\\x7a\\x91\\x5b\\xf8\\x5a\\xca\\x59\\x0c\\x97\\x0d\\x23\\x16\\x5d\\xac\\\r\n\\x0b\\x0c\\x02\\x7b\\xf4\\xed\\x56\\xed\\xa3\\xbd\\xb5\\x8a\\xde\\xd9\\x22\\x37\\\r\n\\x11\\xa2\\xe3\\xce\\x2e\\x02\\x90\\x3b\\xfa\\xfe\\x95\\x5e\\xe6\\xed\\xf5\\x3b\\\r\n\\xa9\\x6d\\x2d\\x1b\\x65\\xaa\\xf1\\x73\\x3a\\xf5\\x27\\xfb\\xa9\\xfd\\x4d\\x76\\\r\n\\x7a\\x7c\\x96\\xb7\\x08\\xd1\\xca\\xaa\\x8d\\x1a\\x64\\x02\\x70\\x0a\\x8e\\xe6\\\r\n\\xb1\\xae\\xe6\\xa9\\xea\\xaf\\x7f\\xc0\\xb8\\xab\\x46\\xd2\\xb3\\x6f\\xa3\\xe9\\\r\n\\xff\\x00\\x04\\xe7\\xca\\x88\\xa4\\x54\\x90\\x80\\x4f\\x4c\\xf7\\xab\\xcf\\x6f\\\r\n\\x62\\xb0\\xa2\\x4f\\x22\\xc6\\x31\\xc3\\x3b\\xe0\\x03\\xff\\x00\\xd7\\xa5\\x9b\\\r\n\\x57\\xd2\\x8d\\xca\\x2c\\x16\\xb1\\xce\\xe4\\xba\\x87\\x7e\\x3e\\xee\\x33\\x81\\\r\n\\x8f\\x71\\xf9\\xd7\\x3b\\xaa\\x5f\\x47\\xaa\\x4c\\x93\\xcb\\x6c\\x93\\x47\\x82\\\r\n\\x86\\x31\\xc1\\x8c\\x8f\\xaf\\x6f\\xf3\\xe9\\x59\\x53\\xa1\\x2d\\x2d\\xa2\\x66\\\r\n\\x7c\\x9c\\xa8\\xe4\\x75\\x4d\\x15\\x34\\xbb\\xd7\\xb7\\x96\\x49\\x24\\x00\\xfc\\\r\n\\xae\\x23\\x2a\\x1f\\xe9\\x9a\\x66\\x9b\\xa5\\x41\\x79\\x78\\xa8\\x62\\x26\\x35\\\r\n\\xf9\\x9d\\x98\\xe7\\x8f\\x4a\\xdf\\xd5\\xaf\\xe4\\x92\\x34\\xb3\\xb8\\xb7\\x59\\\r\n\\x67\\x49\\x4f\\x96\\xfb\\x79\\x20\\xff\\x00\\x0f\\x5f\\x5a\\xd6\\xd3\\xb4\\xe8\\\r\n\\x61\\x27\\xcb\\x8c\\x6d\\x4e\\x59\\xbd\\x5a\\xbd\\xc8\\x46\\x4d\\xd9\\x9b\\x4e\\\r\n\\x72\\x86\\x8f\\x72\\x1d\\x46\\x11\\x6d\\xe1\\xfb\\xc9\\x15\\x4e\\x7c\\xa2\\x8a\\\r\n\\x07\\xa9\\x18\\xe3\\xf3\\xac\\x2d\\x39\\x5f\\x4d\\xd2\\xc5\\xdc\\xd9\\x33\\xc8\\\r\n\\x30\\x8a\\xc3\\x9c\\x57\\x65\\x79\\x24\\x56\\xc1\\x23\\x90\\x28\\x45\\xe5\\xbd\\\r\n\\xfd\\xab\\x1a\\x7b\\x43\\xae\\x5d\\x66\\xd9\\x37\\x6d\\xf5\\xe0\\x0f\\xce\\xb7\\\r\n\\x7a\\x6b\\x63\\xa7\\x0d\\x1f\\x67\\x4f\\xda\\x49\\x7a\\x19\\xb2\\xcd\\xfe\\x84\\\r\n\\xea\\x40\\x59\\x65\\x20\\x95\\x62\\x38\\x03\\x9c\\xfb\\x56\\xce\\x93\\x04\\x57\\\r\n\\xa3\\xcc\\x31\\x81\\x28\\xf7\\x38\\x15\\x97\\xac\\xe8\\x91\\x69\\xd6\\xb6\\xd2\\\r\n\\xca\\xd2\\x39\\x76\\x31\\xc8\\xc3\\xa2\\xe7\\xa7\\xe1\\x9e\\xf4\\xed\\x22\\xe8\\\r\n\\xd9\\x16\\xb6\\xf9\\x95\\xd7\\xe5\\x60\\x7a\\xe6\\xb9\\x64\\x9b\\x5c\\xcf\\x52\\\r\n\\xa3\\x6a\\xf2\\x4d\\x9d\\x2c\\x73\\x5c\\x2e\\x95\\x77\\xa4\\xc2\\xe5\\xde\\xe0\\\r\n\\xb6\\x5c\\x9f\\xba\\x0d\\x71\\x1a\\x8e\\x8c\\xfa\\x54\\x52\\x19\\x25\\x2c\\x57\\\r\n\\x0e\\x37\\x0c\\xfd\\x78\\xae\\x86\\xf3\\x53\\xfb\\x00\\x59\\xd7\\x96\\x39\\xe4\\\r\n\\xd7\\x27\\xa9\\xea\\x72\\x5e\\xde\\xb9\\x96\\x66\\xde\\xeb\\x8c\\x75\\x04\\x7b\\\r\n\\x55\\x35\\x74\\x55\\x68\\x45\\x2d\\x08\\x65\\x0b\\x35\\xc0\\x29\\x19\\x08\\xc3\\\r\n\\x73\\x32\\x9e\\xe7\\xbf\\xe7\\x55\\x6f\\x52\\x48\\x5b\\x1b\\x37\\xa1\\xc6\\x08\\\r\n\\xfe\\xb5\\xa1\\x6b\\x18\\x89\\x54\\x1c\\x87\\x5c\\xab\\x02\\x79\\x1c\\xe7\\xb5\\\r\n\\x5a\\x9e\\x58\\x8d\\xa2\\x47\\xb4\\x87\\x46\\x24\\xb7\\xa8\\xe3\\x15\\x36\\xbb\\\r\n\\x39\\xa4\\xd5\\xf4\\x32\\xc5\\xba\\x45\\x02\\x49\\xe5\\x96\\x66\\x00\\x85\\x61\\\r\n\\xc0\\x3d\\xc5\\x6f\\xe9\\xd7\\x97\\x11\\x79\\xf6\\x70\\xb0\\x12\\x4b\\x0f\\x9b\\\r\n\\x1a\\x15\\xcf\\xef\\x57\\x9c\\x7e\\x23\\x23\\xea\\x6b\\x2e\\x34\\x8a\\x42\\xc2\\\r\n\\x57\\x62\\x13\\xf7\\x8d\\x83\\xd1\\x47\\x5a\\x86\\x1b\\xd7\\x8f\\x51\\x8a\\xee\\\r\n\\x30\\x44\\x8b\\x26\\xf5\\xf6\\x20\\xd6\\x76\\x95\\x87\\x4e\\x4e\\x2e\\xe7\\xa2\\\r\n\\x69\\x1a\\xcc\\xba\\x9e\\x8b\\x0c\\xc5\\xf6\\x33\\x96\\x1b\\x5c\\xee\\x5c\\xae\\\r\n\\x01\\x07\\xd8\\x82\\x3f\\x3a\\xcf\\xba\\x6b\\x6b\\x79\\x65\\x96\\xd5\\x9a\\x11\\\r\n\\x23\\x01\\x2d\\xbe\\x72\\xaa\\xfd\\x32\\x3e\\xbe\\x95\\x6f\\x4e\\xb6\\x10\\x69\\\r\n\\xd7\\x8f\\x6e\\x4f\\xd9\\x2e\\x18\\x4b\\x06\\xe1\\xc2\\x2b\\x8c\\xe0\\x7d\\x3a\\\r\n\\x7e\\x15\\x8f\\x2c\\xb3\\x44\\x16\\x29\\x10\\xb0\\x7c\\x98\\xdd\\x06\\x4b\\x1f\\\r\n\\x53\\xea\\x07\\x1c\\xd7\\x54\\x2a\\x73\\x25\\x73\\xb5\\x29\\x72\\xdc\\xbd\\xa0\\\r\n\\xc9\\x25\\xa4\\x33\\x6d\\xdc\\x57\\x24\\x04\\x3f\\x77\\xad\\x49\\xac\\x69\\xfa\\\r\n\\x6e\\xbb\\x0c\\x73\\x5d\\x4b\\x30\\xb9\\x5c\\x9c\\xee\\x1b\\x0b\\x1e\\x0f\\x1d\\\r\n\\xbe\\xe8\\xe3\\xdb\\xb5\\x55\\xb1\\x9c\\xc6\\x43\\x5c\\x28\\xc0\\x27\\x39\\x00\\\r\n\\x8c\\xf1\\xfe\\x27\\xf3\\x15\\xb1\\x15\\xba\\x4f\\x1c\\x6d\\x14\\xc6\\x35\\x41\\\r\n\\x90\\xa8\\x07\\xcc\\x3a\\x9c\\xfb\\x55\\xad\\x04\\xf5\\x34\\x74\\xd7\\xfe\\xcf\\\r\n\\xb0\\xf2\\xa5\\x2d\\x2c\\x42\\x31\\x85\\x73\\xdf\\x8c\\x63\\xf2\\xe9\\x58\\x73\\\r\n\\x91\\x15\\xa5\\xd0\\x68\\x98\\x0c\\x96\\x45\\x6c\\x0f\\x9b\\xa9\\x0b\\xec\\x47\\\r\n\\x3c\\x7a\\x1a\\xb7\\x7d\\x7d\\x67\\x67\\x6b\\x1c\\x93\\x3c\\x65\\x12\\x51\\x90\\\r\n\\xc7\\x19\\x3d\\x70\\x2b\\x0b\\x5b\\xd7\\x85\\xeb\\x59\\xcb\\x2c\\x3b\\xc6\\xe2\\\r\n\\xe0\\x8e\\x15\\x57\\x91\\xd3\\xad\\x29\\xbb\\x46\\xfd\\x49\\x72\\xb3\\x26\\xd1\\\r\n\\x75\\xab\\xd2\\x19\\x1e\\xd9\\x90\\x93\\x85\\x64\\x40\\xf9\\x62\\x4f\\xd3\\x03\\\r\n\\x03\\xdf\\xb5\\x27\\x89\\x74\\xb7\\xd5\\xef\\xa1\\x86\\x45\\x65\\xb8\\x84\\x70\\\r\n\\x55\\x40\\x57\\x1e\\xff\\x00\\x88\\xaa\\x11\\x3c\\x51\\x44\\x82\\x37\\xf2\\xde\\\r\n\\x39\\x01\\x04\\x3e\\x77\\xf3\\xdf\\xdf\\x06\\xba\\x6b\\x6b\\xb9\\x13\\x54\\x13\\\r\n\\x4a\\xa5\\x91\\xd4\\x6d\\x27\\x90\\x2b\\x9a\\xa4\\x9c\\x57\\x3a\\x2f\\x96\\x4e\\\r\n\\x4a\\x1d\\x6e\\x65\\xb5\\x90\\xb1\\xd2\\x9e\\x14\\x42\\x1b\\x1c\\x60\\xe7\\x14\\\r\n\\xb0\\x46\\xbf\\x67\\x8a\\x19\\xa3\\xe5\\xc1\\x07\\x8c\\xe4\\x11\\x52\\xea\\x73\\\r\n\\x4b\\x3d\\xcb\\x79\\x72\\x01\\x19\\x39\\xe3\\xa5\\x4d\\x69\\x23\\x5d\\x5c\\xc6\\\r\n\\x4a\\x0f\\x90\\x60\\x7a\\x57\\x3d\\xd6\\xcc\\xf5\\x6b\\x54\\x50\\xf7\\x7a\\x58\\\r\n\\xcd\\x6d\\x26\\x3b\\x76\\x4b\\x59\\x1e\\x52\\xb1\\x67\\xcb\\x20\\x2f\\x43\\xcf\\\r\n\\xf7\\xb3\\xfa\\x55\\xdb\\x7b\\x65\\x8c\\x10\\x5e\\x52\\x3a\\x83\\xbb\\x07\\xf9\\\r\n\\x56\\xdc\\x96\\xe8\\xb6\\xdb\\x03\\xfc\\xde\\x87\\xad\\x47\\x35\\x94\\x6f\\x0b\\\r\n\\x37\\x9a\\x51\\xb1\\xf5\\xab\\xba\\x8e\\x88\\xf0\\x39\\xf9\\x7e\\x1d\\x8a\\x53\\\r\n\\xc9\\x6e\\x23\\x2d\\x22\\x79\\xc8\\x53\\x63\\x16\\x24\\xf1\\xe9\\xc1\\x15\\xcf\\\r\n\\xcb\\x3c\\x70\\xbd\\xc0\\x62\\xbe\\x52\\xb7\\x29\\xc9\\x18\\x38\\xe4\\x73\\x9e\\\r\n\\x7e\\xbf\\x95\\x4b\\x3d\\xd4\\x16\\x57\\x6d\\x01\\xf3\\xee\\x18\\x2f\\xdf\\x49\\\r\n\\x02\\x8e\\x7b\\x2a\\xe3\\x9f\\xc6\\xa2\\xb2\\x8a\\xdb\\x54\\x9c\\x99\\x12\\x54\\\r\n\\x88\\x7f\\xac\\x39\\x0a\\xca\\x01\\xf4\\x3e\\xf8\\xfc\\x2b\\x29\\x27\\x1f\\x43\\\r\n\\x96\\x53\\x95\\xef\\xd0\\xea\\x2e\\xa6\\x79\\xb4\\xb8\\xe6\\x85\\x3c\\xb7\\x5b\\\r\n\\x75\\x9a\\x39\\x09\\xc1\\xc8\\xeb\\xb7\\xd7\\x0a\\x0f\\xaf\\x4a\\xe5\\x2e\\xe2\\\r\n\\xd4\\xa6\\xb6\\x79\\x70\\x42\\x17\\x3e\\x6d\\xc4\\x92\\x0e\\x33\\xdf\\x1c\\x73\\\r\n\\xdc\\x7d\\x6b\\xa3\\xb8\\xb4\\xb6\\x82\\xdf\\x4f\\x9e\\x3b\\x9d\\xd6\\xd6\\xcc\\\r\n\\x4b\\x09\\x57\\x96\\x52\\x79\\x03\\x1e\\xd9\\x1f\\x4a\\xe4\\xaf\\xe2\\xb9\\xb8\\\r\n\\x9e\\xfa\\x57\\x8c\\x2c\\xbe\\x7e\\xc1\\x1c\\x2b\\x80\\x15\\x72\\xa3\\x0a\\x3a\\\r\n\\x0c\\x0a\\xd2\\x2d\\x5b\\xd0\\xea\\x94\\xb4\\xe6\\xb7\\x6f\\xbd\\x97\\x6d\\x75\\\r\n\\x8b\\x6b\\x0b\\x54\\xb3\\x8e\\x02\\xca\\xa0\\xe0\\xa1\\xc6\\x4f\\x7c\\xe7\\x3c\\\r\n\\xd6\\x9c\\x3e\\x22\\x13\\xc7\\x2a\\x45\\x6e\\xc9\\x2b\\x46\\xc4\\xf9\\x83\\x1d\\\r\n\\x01\\x3f\\xd2\\xb9\\x4c\\xc7\\x67\\x71\\x97\\x59\\x18\\xb9\\xdc\\xe5\\x48\\xda\\\r\n\\xa3\\xe9\\x8c\\x9e\\xf5\\xa3\\x62\\xa2\\x5d\\x61\\x60\\x47\\x20\\x48\\x7c\\xb5\\\r\n\\x07\\xb1\\x65\\xc6\\x07\\xe6\\x2b\\x39\\x52\\x5f\\x79\\xca\\xe3\\xae\\xbb\\x9a\\\r\n\\x76\\x17\\x56\\xcd\\x36\\x9c\\x54\\x19\\x8b\\xbc\\x81\\xa4\\xe4\\x6d\\x66\\x0b\\\r\n\\x9c\\xf3\\xcf\\x3c\\x67\\xda\\x92\\x1b\\x46\\x26\\x59\\xec\\xe5\\x20\\x33\\xe7\\\r\n\\x24\\x67\\x6b\\x63\\xbf\\x62\\x08\\xfd\\x45\\x64\\xd8\\xda\\xba\\x5d\\x69\\xa4\\\r\n\\x1f\\x9d\\x6e\\x8b\\x10\\x33\\xc0\\x25\\x73\\x56\\x85\\xe4\\xda\\x5d\\xce\\xf8\\\r\n\\xd4\\xb8\\xdb\\xb5\\x80\\x19\\x07\\x07\\x1c\\x81\\x57\\x74\\xd2\\x1d\\x4d\\x52\\\r\n\\xb7\\xf5\\xb1\\xa5\\x24\\x69\\x00\\xfb\\x43\\xdb\\x19\\x9d\\x71\\x86\\x07\\x71\\\r\n\\x61\\xd3\\x38\\x1d\\x0f\\x6f\\xc2\\xb7\\xad\\x66\\xb7\\x9e\\xd1\\x65\\xb6\\x28\\\r\n\\x55\\x80\\x60\\x06\\x00\\xce\\x3a\\x1f\\xca\\xa3\\xb5\\xf2\\x04\\x33\\x3c\\xa8\\\r\n\\x02\\x46\\x30\\x41\\x39\\xcf\\x18\\x03\\x1d\\xb1\\xc5\\x64\\x68\\xac\\x8d\\x73\\\r\n\\x76\\xd0\\xe3\\x61\\x71\\x93\\x9e\\xa7\\x9e\\x95\\xd7\\x07\\xcb\\x07\\x34\\xcd\\\r\n\\x5c\\x5c\\xe9\\xba\\x92\\xe9\\xfd\\x58\\x4b\\x78\\xdf\\x53\\xd5\\x89\\x9f\\x2b\\\r\n\\xb4\\x6e\\x0a\\x47\\x5f\\xaf\\xb7\\x35\\xd0\\x59\\xe9\\x4d\\x13\\x37\\x96\\x30\\\r\n\\x5b\\x92\\x71\\x5a\\xba\\x2d\\xa4\\x4e\\x85\\x9b\\xa9\\xeb\\xc5\\x69\\xdc\\x81\\\r\n\\x64\\x43\\x01\\x95\\x22\\x94\\xa5\\x29\\xa7\\x20\\xab\\x39\\x54\\x5c\\xcf\\x6e\\\r\n\\xc7\\x2b\\xa8\\xd8\\x47\\x3c\\x0d\\x6d\\x75\\x10\\x91\\x0f\\x50\\x4e\\x3f\\x1f\\\r\n\\x6a\\xc8\\xd3\\xb4\\x9d\\x3b\\x59\\x56\\xb9\\xb6\\xf3\\xe0\\x28\\xc5\\x09\\x71\\\r\n\\xd4\\x8f\\x7e\\xf5\\xd1\\x6a\\x77\\x04\\x2b\\xca\\x89\\xf3\\x1e\\x3e\\x6e\\xe6\\\r\n\\x9b\\xa7\\x43\\xb4\\x2e\\xd5\\xc1\\x61\\xcd\\x65\\x26\\xd6\\xa9\\x99\\x52\\x9b\\\r\n\\x83\\xb1\\x85\\xac\\x78\\x60\\x4f\\x6d\\x1c\\x09\\x39\\x0e\\xbd\\x19\\x87\\x15\\\r\n\\xcf\\xa7\\x84\\x6e\\xcc\\xa8\\xf2\\xcb\\x0a\\xba\\x9e\\x1a\\x30\\x49\\xc1\\xfc\\\r\n\\x38\\xaf\\x4a\\xba\\x85\\x9d\\xc1\\x00\\x60\\x0f\\x5e\\xb5\\x9f\\xa9\\xdc\\x59\\\r\n\\xe9\\xd6\\x45\\xee\\x27\\x8a\\x21\\xd0\\xee\\x6c\\x13\\xc7\\x4f\\x53\\x54\\x9b\\\r\n\\x48\\x72\\xad\\x3e\\x6b\\x1c\\x03\\xe9\\xd6\\xd6\\x52\\xc9\\x14\\x6c\\x5d\\x54\\\r\n\\xe0\\x92\\x7a\\x9e\\xe6\\xa1\\x82\\xda\\x19\\xf7\\x01\\x6d\\x7d\\x74\\xb9\\xeb\\\r\n\\x6c\\xa0\\xa8\\xfa\\xb1\\xa9\\xee\\x35\\xb4\\x74\\x67\\xd3\\xa4\\x86\\x14\\x00\\\r\n\\x92\\x36\\x85\\x6f\\xc0\\xf5\\xae\\x7d\\xb5\\x7b\\xdb\\xc9\\xbc\\xa6\\xbb\\x68\\\r\n\\x90\\x8e\\x59\\x98\\x92\\x47\\xd4\\xf3\\x44\\x6e\\xf6\\x2a\\x0a\\xee\\xfb\\x9b\\\r\n\\x77\\x5a\\x75\\x95\\xb6\\x9f\\x37\\x9d\\x3a\\x59\\xb4\\xd8\\x40\\x25\\x98\\x48\\\r\n\\xc0\\x03\\x93\\x90\\x80\\xe0\\xf4\\xe2\\x93\\x4b\\xd2\\xad\\x27\\xc4\\xb6\\xff\\\r\n\\x00\\x68\\xbf\\x51\\x26\\xd5\\xd9\\x88\\x80\\x3e\\xfd\\x4e\\x3f\\x2a\\xd0\\x6f\\\r\n\\x03\\xb5\\xfd\\xa4\\x60\\xdd\\xac\\x2b\\x14\\x6a\\x08\\x23\\x24\\xb1\\xf9\\x98\\\r\n\\x9f\\x4e\\xb8\\xfc\\x2b\\xa0\\xd0\\xf4\\x4b\\x3d\\x16\\x16\\x31\\x32\\xbb\\x30\\\r\n\\xf9\\x9c\\xf4\\xc7\\x24\\x7f\\x3a\\xd5\\xc7\\xa3\\x3a\\xe1\\x4a\\xe5\\x9b\\xcb\\\r\n\\x75\\xb1\\xd3\\x22\\xb5\\x86\\x30\\x22\\x8c\\x72\\x07\\x20\\x77\\x35\\xca\\x5d\\\r\n\\x6b\\x36\\xf6\\x72\\x32\\x80\\x58\\x48\\xdf\\x34\\x8b\\xfc\\x23\\x3f\\x74\\x7b\\\r\n\\x57\\x41\\x75\\x71\\x24\\xcd\\x99\\xe4\\x5c\\x49\\x20\\x8e\\x35\\xc1\\x1f\\x31\\\r\n\\xe3\\xb5\\x57\\xb5\\xb2\\x82\\x75\\x91\\xee\\xed\\x23\\x2e\\xb9\\x65\\x6d\\xfb\\\r\n\\x84\\x83\\x1d\\xbb\\x71\\xd0\\x8a\\x6a\\x0d\\x3d\\x4e\\xb9\\x4a\\x3c\\xb6\\x45\\\r\n\\x0b\\x09\\xad\\x35\\xad\\x4a\\xde\\x38\\x24\\x53\\xbe\\x4f\\xde\\x83\\x91\\x95\\\r\n\\x19\\x2c\\x46\\x7d\\x85\\x69\\x5f\\x5c\\xc9\\x25\\xdb\\x4c\\xc7\\x08\\xcc\\xc4\\\r\n\\x00\\x39\\xc7\\x60\\x00\\xad\\xab\\x08\\xac\\x0c\\x37\\x33\\x47\\x00\\x85\\x36\\\r\n\\x88\\x81\\x29\\xb4\\x82\\x73\\xb8\\x73\\xe9\\xd2\\xb0\\x12\\x55\\x9e\\xe7\\x52\\\r\n\\xb6\\xb6\\x55\\xdd\\x6e\\x52\\x68\\xcb\\x1e\\xdc\\xa7\\xf5\\x15\\x15\\xaa\\x7b\\\r\n\\x25\\xcd\\xb9\\xcb\\x52\\xa7\\x2c\\x4e\\x73\\x56\\xbb\\x8b\\x57\\xb6\\xb7\\x9e\\\r\n\\xdf\\x28\\xb1\\x4a\\x7e\\x67\\x5e\\x9d\\x3b\\x77\\xe8\\x2a\\x29\\xf5\\x38\\xe3\\\r\n\\xd3\\xe3\\x58\\xa0\\x8c\\xe1\\xc4\\x79\\x90\\x6e\\xf9\\x48\\x38\\x3f\\x4c\\xe6\\\r\n\\xb4\\xef\\xa3\\xdf\\x68\\xb6\\xd9\\x45\\x8c\\x01\\x1a\\x33\\xf5\\x2f\\xdb\\xf0\\\r\n\\xea\\x3f\\x3a\\xc5\\xd3\\xad\\x12\\x7b\\x93\\x14\\x9b\\xb6\\x4c\\xdb\\x70\\x57\\\r\n\\x1b\\x76\\x90\\x41\\xe7\\xdc\\x1c\\xd6\\x34\\xea\\x3a\\xae\\xef\\x63\\x96\\x0f\\\r\n\\x9d\\xeb\\xb1\\x0d\\xeb\\x47\\x39\\x40\\xca\\x63\\x7d\\x99\\x05\\x09\\xe3\\x04\\\r\n\\xaf\\x4f\\xaa\\xd7\\x55\\xe1\\x9b\\x97\\xbc\\xb1\\x6b\\x29\\xa6\\xcb\\xc7\\xf7\\\r\n\\x5f\\xbf\\xff\\x00\\x5a\\xb3\\xad\\x75\\x0d\\x3b\\x47\\x10\\x9b\\xab\\x24\\xbd\\\r\n\\x9d\\x95\\xb2\\xd9\\x18\\x5c\\xb1\\x24\\x0c\\xfb\\x93\\x5b\\xfa\\x4d\\xde\\x8f\\\r\n\\xa9\\xcc\\x4e\\x9e\\x8d\\x05\\xc1\\xe5\\xa3\\x6a\\xae\\x56\\xe2\\xd2\\x3a\\xf0\\\r\n\\xfa\\xd6\\x4f\\x9a\\xc5\\x5b\\xb8\\xad\\x6d\\xc9\\x4f\\x38\\x96\\x1d\\x46\\x6a\\\r\n\\xe6\\x88\\xa8\\xca\\x15\\x5c\\x06\\xcf\\x20\\x9e\\x95\\x91\\xac\\xc1\\x25\\xb5\\\r\n\\xc9\\x2f\\xb4\\x3e\\xee\\x9e\\xd5\\x1c\\xea\\xcb\\x6a\\x2e\\xd6\\x46\\x59\\x47\\\r\n\\xdd\\xda\\x71\\x5c\\xf2\\x8e\\xb6\\x67\\xa7\\x8d\\x82\\x9d\\x17\\xca\\x77\\x77\\\r\n\\x51\\xa3\\x05\\x65\\x3c\\x83\\x59\\x77\\x7e\\x6c\\x71\\xb0\\x2b\\xb9\\x40\\xe9\\\r\n\\xd3\\x35\\x1f\\x86\\xae\\x66\\xbd\\x8f\\x33\\xee\\x2a\\x30\\x09\\x27\\xbd\\x6b\\\r\n\\xeb\\x4d\\x05\\xbd\\xab\\x38\\x00\\xb6\\x3b\\x73\\x4a\\x74\\xda\\xd3\\xa9\\xf3\\\r\n\\xb2\\x8b\\x4a\\xc7\\x96\\x5f\\xdd\\x19\\xae\\x65\\x32\\x2c\\x8a\\xaa\\xdb\\x8c\\\r\n\\x6a\\xf8\\xe4\\x71\\xc8\\xeb\\x53\\x69\\x9a\\xfc\\xa9\\x72\\x1a\\x40\\x00\\x18\\\r\n\\xc0\\x1d\\x48\\xe9\\x59\\xd7\\x16\\xb7\\xcf\\x79\\x23\\x92\\xaf\\x1c\\xaf\\x9f\\\r\n\\x35\\x30\\x47\\xf9\\xf6\\xad\\x2d\\x3f\\xc2\\x5a\\xdd\\xf4\\x52\\xdf\\x43\\x68\\\r\n\\xcc\\x90\\xfc\\x8c\\xe8\\x32\\x08\\x20\\xe0\\x8f\\x5f\\xc2\\xb5\\x95\\x35\\x38\\\r\n\\xda\\x40\\xe1\\x7d\\x19\\xad\\xaf\\xdc\\xef\\xf0\\xfc\\x9e\\x5c\\x85\\x9e\\x79\\\r\n\\xc6\\xc0\\xc4\\x9c\\x64\\x01\\x81\\xe9\\xde\\x9f\\x72\\xb2\\x5d\\x4b\\x0c\\x92\\\r\n\\xcd\\x0c\\x26\\x78\\x51\\xa4\\x21\\x4b\\x16\\xc0\\x2a\\xc3\\x8e\\x7e\\xf2\\x9e\\\r\n\\x82\\xb2\\x60\\xde\\x6f\\x66\\xb5\\x11\\x96\\x82\\xd9\\x0a\\xcb\\x11\\x5e\\x4b\\\r\n\\x2f\\x53\\xcf\\x42\\x39\\xfc\\xaa\\xd4\\xef\\x19\\xf0\\xc1\\x9d\\xa6\\x00\\xac\\\r\n\\xc6\\x30\\xc3\\xd3\\xef\\x74\\xf5\\xce\\xee\\x3d\\xeb\\x04\\x9c\\x3d\\xd5\\xbf\\\r\n\\xf9\\x9b\\xcf\\x9a\\x34\\xd4\\x7a\\x94\\x75\\x5d\\x2e\\x7d\\x2d\\x62\\xbb\\x05\\\r\n\\x25\\xb5\\x95\\x06\\xc9\\xa2\\x7d\\xc0\\x1c\\x77\\x1d\\xbf\\x1a\\x65\\x95\\xf2\\\r\n\\xc3\\xa9\\x47\\x2b\\x2e\\xc9\\x22\\x2b\\x26\\x47\\x3b\\xd7\\x00\\x8f\\xca\\xb4\\\r\n\\x2c\\xee\\xd3\\x51\\x82\\x5b\\x72\\x0c\\xab\\xb4\\x02\\x07\\x1e\\x68\\xf5\\xf6\\\r\n\\x6a\\xcc\\x36\\x46\\xd6\\xe9\\x1b\\x7e\\xe0\\x0f\\xca\\xc4\\x63\\x72\\x1e\\xd5\\\r\n\\xbf\\x32\\xb6\\xa7\\x3a\\x92\\x6a\\xcc\\xd9\\xd5\\x6d\\xda\\xd7\\x51\\x58\\x15\\\r\n\\xbf\\xd5\\xdd\\x12\\x8d\\xea\\x01\\xc8\\xfc\\xc1\\xa8\\xb5\\x44\\x48\\xae\\xa5\\\r\n\\x42\\x08\\x22\\x46\\x19\\xcf\\x6e\\xbf\\xd6\\xad\\x6a\\x4e\\x53\\x4b\\xb3\\xbb\\\r\n\\xc9\\x72\\xab\\x16\\xf3\\x9c\\x67\\x18\\x46\\xcf\\xe2\\xa6\\xb3\\xbc\\x41\\x24\\\r\n\\xf0\\x5e\\x5c\\x1b\\x6c\\x94\\x79\\x77\\x02\\xca\\x09\\xc7\\x3d\\x33\\x52\\x97\\\r\n\\x7d\\x84\\xe3\\x6d\\x3c\\xcd\\xfb\\xe9\\xe5\\xd4\\x49\\xb5\\x80\\xaa\\xa4\\x40\\\r\n\\xb4\\xf2\\x00\\x14\\x7e\\x9f\\x97\\xf9\\x35\\x99\\xa8\\x78\\x8e\\x1d\\x3e\\xc6\\\r\n\\x29\\x34\\xeb\\x78\\x8c\\x31\\x37\\x97\\x2a\\x93\\xb8\\x96\\xeb\\xd7\\xfc\\xf2\\\r\n\\x29\\xfa\\x9c\\xf2\\xd9\\x69\\xd1\\x58\\xdb\\x99\\x33\\x27\\xcf\\x3b\\xa8\\xe7\\\r\n\\x68\\xeb\\xfe\\x03\\xf1\\xac\\x2b\\x1d\\x37\\xcc\\xb8\\x67\\xbe\\x0b\\x69\\x65\\\r\n\\x22\\x94\\x09\\x21\\xc1\\xc1\\xe8\\x42\\xf5\\x27\\x38\\x35\\xd4\\xe5\\xce\\xff\\\r\n\\x00\\xba\\x76\\x39\\x2a\\x8b\\x4f\\x85\\x6c\\x7b\\x06\\x81\\x76\\x97\\x3a\\x54\\\r\n\\x32\\x64\\x02\\xca\\x1b\\x00\\xe7\\x15\\xa1\\x2c\\xad\\x24\\x65\\x5f\\x9e\\xc2\\\r\n\\xb9\\xaf\\x0f\\x42\\xd6\\x1a\\x5c\\x31\\x48\\xf9\\xc7\\xca\\xa7\\xb1\\x03\\x81\\\r\n\\xf8\\x57\\x41\\xe6\\x80\\x99\\x3d\\x2b\\x99\\x4a\\x7f\\x09\\x8b\\x4e\\xd6\\xec\\\r\n\\x60\\xcd\\x75\\x04\\xba\\x8b\\xda\\x64\\x09\\x13\\x07\\x6f\\xa8\\xe4\\x66\\xb5\\\r\n\\xf4\\xf2\\xb1\\xa8\\x57\\xe0\\xaf\\x53\\x58\\xc2\\xce\\xd1\\xf5\\xa3\\x79\\xb8\\\r\n\\x99\\x58\\x60\\x1f\\x6a\\xbf\\x15\\xc7\\x97\\x78\\xc8\\x61\\xca\\xaa\\x93\\xbd\\\r\n\\x8e\\x69\\x54\\x9a\\x4b\\x95\\x19\\x38\\xfb\\xd6\\x45\\xab\\xd9\\xa4\\x9d\\x58\\\r\n\\x5a\\x2e\\xe7\\xe9\\xbb\\xd2\\xbc\\x97\\xc6\\x9a\\x65\\xc4\\x17\\x3e\\x64\\xd3\\\r\n\\x4b\\x3c\\xdf\\xc4\\x58\\x74\\x1f\\xd0\\x57\\x73\\xaf\\xf8\\x82\\xeb\\x4f\\xb3\\\r\n\\xf3\\x2d\\x19\\x44\\x87\\xa0\\xd9\\x9a\\xf3\\xe9\\x7c\\x63\\xe2\\x29\\x9d\\xbc\\\r\n\\xcb\\xd9\\x16\\x3c\\x1e\\x1a\\x35\\xc1\\xfd\\x2b\\x5a\\x4e\\x4d\\x5c\\xd2\\x9f\\\r\n\\x33\\xd6\\xc7\\x35\\x11\\x93\\x04\\x29\\xe3\\xa1\\xae\\x93\\xc2\\x7e\\x1d\\x6d\\\r\n\\x6b\\x56\\x88\\xbe\\xcf\\x26\\x16\\x57\\x91\\x5f\\x3f\\x30\\x07\\xa0\\xa8\\xd1\\\r\n\\x86\\xaa\\xa2\\xee\\xea\\x28\\xe3\\x48\\xdb\\x63\\xf9\\x31\\x04\\xdc\\xc7\\xd7\\\r\n\\x1c\\x57\\xa4\\xf8\\x62\\xda\\x1d\\x3e\\xc5\\x5d\\x10\\x2b\\x4e\\x77\\xb1\\x3e\\\r\n\\x9f\\x4e\\xd5\\xaf\\x37\\xbd\\x6b\\x1d\\x14\\x97\\x3c\\xec\\x69\\xea\\x02\\xde\\\r\n\\x28\\xd8\\x6e\\x8d\\x03\\x1c\\x91\\x8c\\x6e\\x3f\\x5a\\xce\\xbc\\xbf\\x12\\xec\\\r\n\\x45\\xfd\\xde\\x06\\x40\\x42\\x07\\xd3\\xb7\\xb1\\xa8\\xef\\xd9\\x26\\xba\\x33\\\r\n\\x30\\x52\\x14\\x6e\\x53\\x9e\\x45\\x43\\xe5\\x4a\\xa8\\x92\\xec\\x55\\x54\\x23\\\r\n\\x00\\x2f\\x3d\\x73\\x9f\\xd3\\x1f\\x4a\\xd6\\xcf\\x64\\x75\\xdd\\x6e\\x43\\x73\\\r\n\\xa7\\x89\\x60\\x8e\\x69\\x77\\x89\\x22\\x91\\x4e\\x08\\xc9\\x90\\x02\\x07\\x1e\\\r\n\\x98\\xc1\\xe7\\x9e\\xbe\\xd5\\x62\\xc5\\x62\\x96\\xf5\\x2d\\x6d\\x40\\x58\\x91\\\r\n\\xe4\\x98\\x36\\x7a\\x16\\xea\\x38\\xf7\\x1f\\xca\\xb4\\x52\\x50\\xbf\\xbc\\x8f\\\r\n\\xf7\\xb2\\x63\\x63\\x28\\x19\\x2e\\xc3\\xa1\\x3e\\x9e\\xbf\\x9d\\x5f\\xd3\\x22\\\r\n\\xb3\\x55\\x69\\x8c\\x48\\xb2\\x49\\x93\\xb7\\x00\\x8f\\x5f\\xf2\\x6b\\x45\\xa2\\\r\n\\xd4\\xc9\\xea\\xc8\\xaf\\xa6\\xf2\\x34\\xa7\\x77\\x20\\xac\\x51\\x97\\x75\\x03\\\r\n\\x9c\\x91\\x9e\\x9f\\x4c\\x57\\x03\\x6f\\xae\\x5b\\xfd\\xb9\\x62\\x39\\x51\\x72\\\r\n\\xb8\\xdc\\xc8\\x17\\x69\\x2a\\x70\\x78\\x1c\\xf2\\x47\\x53\\x5d\\xbc\\xc5\\xee\\\r\n\\x84\\xa2\\x12\\xc2\\x69\\xa3\\x25\\x4e\\xc1\\x8d\\xdd\\xbf\\xfd\\x55\\xe7\\xb7\\\r\n\\x1a\\x59\\x5b\\xc4\\xfb\\x4c\\x0d\\x04\\xca\\x77\\x79\\x7b\\xf8\\x03\\xb0\\x07\\\r\n\\xd3\\x8f\\xe9\\xef\\x5c\\xd8\\x88\\x68\\x9c\\x8e\\x7a\\xdc\\xb6\\xbb\\xe8\\x3a\\\r\n\\xd9\\xf5\\x07\\xd1\\xae\\x26\\x99\\x58\\xcb\\xe6\\x81\\xf3\\xe0\\xa6\\x31\\xf4\\\r\n\\xf4\\x2d\\xf8\\xd5\\xe5\\x90\\x5d\\x69\\xf0\\x24\\x49\\x18\\x92\\x32\\xdf\\x3c\\\r\n\\x63\\xb9\\x53\\xc8\\xfc\\x70\\x6a\\xd4\\x76\\xc1\\x74\\xcb\\xab\\x54\\x39\\x6b\\\r\n\\x81\\xf6\\x8d\\xa7\\xb6\\x65\\x55\\x1f\\xc8\\xfe\\x75\\x08\\xb6\\xfb\\x0c\\x8f\\\r\n\\x6e\\x81\\xb7\\xa8\\x0c\\x49\\x1c\\x1c\\xfa\\x57\\x34\\x66\\xd4\\xb4\\x5a\\x33\\\r\n\\x18\\xbb\\xb5\\x65\\xa7\\xfc\\x12\\x96\\xbd\\x6b\\x6d\\xfd\\x87\\xa6\\xa5\\xb5\\\r\n\\xa6\\xeb\\x84\\x47\\x9a\\xea\\xe8\\x67\\x07\\x71\\xce\\xdf\\xd0\\x9a\\xcb\\xf0\\\r\n\\xe5\\xfd\\xfc\\x53\\xb3\\x59\\x42\\x36\\xc8\\x71\\xbc\\xaf\\xdd\\xf5\\xe6\\xba\\\r\n\\x2b\\xcb\\x87\\xb6\\xb3\\xb9\\x47\\x8f\\x74\\x33\\x2e\\x23\\x19\\xc0\\x70\\x8a\\\r\n\\x03\\x01\\xef\\xc3\\x56\\x57\\x86\\xe6\\x54\\xbf\\x7b\\x78\\x1c\\x79\\x0c\\x77\\\r\n\\x0c\\x8f\\xf3\\x83\\xed\\x5b\\xd4\\x7e\\xed\\xce\\xca\\x56\\xf6\\xc9\\x37\\x63\\\r\n\\x63\\x50\\x79\\x24\\xbd\\x84\\x4a\\x03\\xca\\xa3\\x2d\\x58\\x7a\\x84\\xd3\\xcb\\\r\n\\x71\\x2a\\x45\\xca\\xa7\\xcd\\xb3\\xb1\\xe6\\xba\\x1d\\x4d\\x1e\\x27\\x79\\xa0\\\r\n\\x28\\x64\\x58\\xc1\\x01\\xc8\\x1b\\x8e\\xe0\\x3f\\xae\\x3f\\x1a\\xb7\\xa5\\x68\\\r\n\\xdf\\x68\\x99\\x5c\\x2e\\x11\\xb2\\x7e\\x6e\\xb8\\x3c\\xe3\\xf0\\xe6\\xb9\\x5b\\\r\n\\xb6\\xbb\\x9d\\x38\\xda\\xed\\xc7\\xd9\\xc5\\x33\\x2e\\xc2\\xfe\\x5b\\x3b\\x60\\\r\n\\xf1\\x46\\xc3\\x72\\xe7\\x9f\\x5f\\x4a\\xcc\\xd4\\x75\\xbb\\xdd\\x5b\\xcf\\xb7\\\r\n\\x8c\\xb8\\x91\\x1f\\x6c\\x6a\\x9d\\x49\\xe7\\x1f\\xc8\\xfe\\x75\\xe8\\x77\\xba\\\r\n\\x5d\\xb4\\x50\\x13\\xb4\\x28\\x00\\xe7\\x8a\\xf3\\x79\\x2e\\x57\\x4f\\xd4\\xee\\\r\n\\x1a\\x04\\xfd\\xfc\\xcc\\xd1\\xa9\\xec\\xb8\\xe7\\xf5\\x20\\x0f\\xce\\xb6\\x83\\\r\n\\x53\\x57\\x47\\x9d\\x4e\\xd2\\x65\\x78\\xa7\\x9a\\xd6\\x35\\x7d\\x46\\x6b\\x72\\\r\n\\xd9\\xc4\\x96\\xfb\\xb7\\xb1\\xc7\\xa8\\x50\\x40\\x3d\\x3a\\x9a\\xd4\\xf0\\xf7\\\r\n\\x89\\xae\\xac\\x3c\\x4b\\x6b\\xe4\\x46\\xd2\\x42\\xec\\x54\\xaa\\x90\\x72\\xa4\\\r\n\\x72\\x46\\x70\\x07\\x1e\\xe2\\xb9\\x0b\\x8f\\x2e\\x0b\\xa9\\x56\\x3c\\xb4\\x72\\\r\n\\x36\\xf4\\xc7\\x38\\x53\\xfd\\x70\\x69\\x04\\x53\\x48\\xc0\\x20\\x62\\xaa\\xd9\\\r\n\\x2d\\x8e\\x07\\xe3\\x54\\xac\\xda\\x90\\xf9\\x52\\x9f\\xa1\\xdf\\xdc\\xe9\\x37\\\r\n\\x3a\\x5e\\xb5\\x79\\x7d\\x2b\\x05\\xfb\\x6c\\x8c\\x17\\xa0\\x67\\x24\\xe0\\x9c\\\r\n\\x02\\x46\\x32\\xdd\\x73\\xd7\\xd7\\x15\\x99\\x66\\x2d\\x35\\x0d\\x06\\xfa\\x06\\\r\n\\x52\\xcc\\xcf\\xe7\\xfc\\x83\\xa3\\x29\\x51\\xc0\\xfa\\x39\\xad\\x8b\\x9d\\x52\\\r\n\\x1f\\x11\\xc7\\x6a\\x61\\xb4\\x61\\x75\\x68\\x82\\x5d\\xd1\\xa0\\x01\\x42\\x90\\\r\n\\x59\\x78\\xed\\x9e\\x47\\xd7\\xdb\\x9c\\x9d\\x2e\\xd3\\xc8\\x96\\x58\\x4c\\x4e\\\r\n\\x16\\xe1\\xee\\x62\\x0d\\x8c\\x64\\xb2\\xf1\\x8f\\xc8\\x7e\\x54\\xa6\\xa3\\x7e\\\r\n\\x64\\x5c\\xf5\\xb5\\xbf\\xab\\x94\\x34\\xa8\\xad\\xed\\x25\\x77\\x4d\\xe1\\x95\\\r\n\\x77\\x0d\\xe4\\x1c\\x90\\x7a\\x54\\xf1\\x15\\xbf\\x32\\xc3\\x24\\x91\\x47\\x3c\\\r\n\\x2c\\x4f\\xcc\\xc0\\x6e\\x53\\xdc\\x66\\xb1\\xa3\\xbc\\x9a\\x32\\xf1\\xa3\\x05\\\r\n\\x1b\\x70\\x38\\xe1\\x97\\xa9\\xfc\\x78\\x07\\xf3\\xa9\\x12\\xe9\\x24\\xb9\\x9d\\\r\n\\xe4\\x8c\\x19\\xa2\\x24\\x0f\\xf6\\x90\\xff\\x00\\xfa\\xea\\x2d\\x77\\x73\\x93\\\r\n\\x95\\xdf\\x53\\xab\\x81\\x56\\xeb\\xc3\\x8e\\x93\\x61\\x5a\\x29\\x8e\\x49\\x1c\\\r\n\\x61\\xc6\\xf5\\x1d\\x3d\\x43\\x63\\xeb\\x59\\x77\\x77\\x01\\x25\\x05\\x41\\x70\\\r\n\\x06\\x4b\\x15\\xc3\\x15\\x20\\x63\\x8f\\x5c\\xe6\\x9f\\xa0\\x4d\\x0c\\xcd\\x35\\\r\n\\x8c\\x9b\\xc3\\x5c\\xc5\\x84\\x20\\xf0\\x58\\x7c\\xcb\\xc7\\xaf\\x1b\\x7f\\x1a\\\r\n\\x6c\\x5a\\x5c\\xd7\\xb3\\xa4\\x57\\x04\\x2a\\x46\\xbc\\xbb\\x36\\x07\\x53\\x8c\\\r\n\\x1f\\x7e\\x28\\xb5\\xd5\\x8b\\xa9\\x0d\\x7d\\x4e\\x83\\x50\\xd6\\xde\\x5f\\x10\\\r\n\\xdb\\x5b\\xc0\\xb1\\x3c\\x28\\xc4\\x02\\xa3\\x2c\\xc0\\x8e\\xdc\\x01\\xfe\\x7a\\\r\n\\xd6\\x0d\\x9f\\x86\\x6e\\x2e\\xf5\\x73\\x24\\xe4\\x84\\xde\\x58\\x46\\x48\\x1c\\\r\n\\x7e\\x19\\xae\\xcf\\xc2\\x9e\\x1b\\xd2\\x75\\x9d\\x76\\x63\\x75\\x33\\x34\\x82\\\r\n\\x1c\\xdb\\xe1\\xcf\\xca\\xdc\\xe7\\x1c\\xf2\\x3b\\x72\\x6a\\x6b\\x7d\\x39\\xb4\\\r\n\\x8d\\x4e\\x5b\\x6b\\x8f\\xde\\xdc\\x2b\\x10\\xcc\\x7a\\x63\\xb6\\x2b\\x49\\x39\\\r\n\\x24\\x9c\\x56\\xfb\\x95\\x7b\\x24\\xe2\\x8d\\x3b\\x7b\\x38\\x92\\xda\\x22\\xcc\\\r\n\\x02\\xa2\\x80\\x06\\x3a\\x01\\x59\\x7e\\x29\\xd4\\xa3\\xb0\\xd3\\x1c\\x40\\xad\\\r\n\\x2c\\x9f\\xc2\\x3b\\x1a\\xd8\\x69\\x0e\\xef\\x9b\\x00\\x1e\\xde\\xd5\\x8d\\xaa\\\r\n\\x7d\\x8e\\xe7\\x51\\x6d\\x3d\\xe2\\x2c\\x76\\x86\\xc6\\x0f\\x2a\\x7d\\xe8\\x4c\\\r\n\\xa7\\x26\\x95\\xca\\xbe\\x0e\\x79\\xf5\\x1b\\x21\\x25\\xc1\\xc4\\xc4\\xf3\\xc6\\\r\n\\x2b\\x6f\\x56\\xb4\\xb8\\x4b\\x49\\xc4\\x47\\x0e\\xc3\\x19\\xaa\\xb6\\x96\\x92\\\r\n\\x59\\xdc\\x2c\\x56\\xd8\\x41\\x8e\\x80\\x56\\x3f\\x8c\\xfc\\x47\\x7d\\xa2\\x40\\\r\n\\x83\\x82\\xef\\xd0\\xf6\\xac\\xdd\\xa4\\xad\\x6d\\x6e\\x67\\x19\\x5e\\xf6\\xdc\\\r\n\\xe2\\xf5\\x7b\\xa9\\xde\\xfa\\xe6\\xd6\\x72\\xcb\\xb2\\x26\\x65\\x24\\xf5\\xc5\\\r\n\\x63\\xe9\\x56\\x32\\xea\\xa2\\xe6\\x18\\x9b\\x01\\x42\\xe5\\xdb\\xb7\\x3f\\xfd\\\r\n\\x6a\\x92\\xde\\xf6\\x6d\\x6b\\x57\\x97\\xcd\\x3f\\x33\\xda\\xcd\\xfa\\x23\\x1f\\\r\n\\xe9\\x4e\\xd0\\x6e\\x58\\xdb\\x5d\\x69\\xf6\\xee\\x21\\xba\\x9c\\x8d\\x8f\\xea\\\r\n\\x40\\x3f\\x2f\\xe3\\xfc\\xeb\\xa5\\xa7\\x0a\\x7a\\x1b\\x28\\xb5\\x1b\\x2d\\xcd\\\r\n\\x4d\\x3e\\xc2\\x39\\x2f\\x57\\x4d\\x12\\xbc\\x81\\xdc\\x17\\x58\\xc7\\x42\\x07\\\r\n\\xe9\\x9a\\xf4\\x39\\x66\\x58\\x07\\x96\\x89\\xf2\\xc4\\x98\\xc1\\xef\\xed\\x9a\\\r\n\\xc1\\xf0\\x9e\\x99\\xfd\\x9f\\xa6\\xb5\\xdb\\xdb\\x14\\xba\\x98\\x16\\x62\\xe7\\\r\n\\xe7\\xc7\\xf4\\x14\\x5d\\x48\\xf3\\xcc\\x15\\x91\\x99\\x43\\x29\\x7e\\x4e\\x07\\\r\n\\x50\\x09\\xed\\x8e\\x69\\xc2\\x0d\\x2d\\x4d\\xe8\\xc7\\x92\\x2d\\xbd\\xd9\\x62\\\r\n\\x6b\\xc4\\x9c\\xcb\\x20\\x51\\xc6\\x14\\x64\\x1e\\x38\\x3d\\x31\\xef\\x4a\\x6e\\\r\n\\x85\\xb4\\x64\\x4d\\x70\\xd9\\x70\\xa7\\x6b\\x0c\\x80\\x09\\xe9\\x9f\\xf1\\xf4\\\r\n\\xaa\\xcd\\x61\\x3d\\xaa\\xb4\\xcc\\x7e\\x5f\\xb8\\x0e\\x3b\\x76\\xcf\\xf3\\xfc\\\r\n\\x2b\\x42\\xc5\\x63\\x92\\x18\\xd6\\x49\\x32\\xb1\\xae\\xe6\\xc8\\xcf\\x19\\x38\\\r\n\\x1f\\xce\\xb7\\x5b\\x83\\x65\\xa3\\xab\\x09\\xdc\\x22\\xaa\\xae\\x54\\x61\\xb1\\\r\n\\xfc\\x5f\\x5f\\x4a\\x82\\x57\\x5b\\x47\\x12\\x43\\x81\\x2b\\x2e\\xd0\\xc1\\x00\\\r\n\\xe7\\x8c\\x7f\\x2c\\x7e\\x35\\x7e\\x3b\\x48\\xe3\\x9c\\xc3\\x20\\x5f\\x30\\x74\\\r\n\\xc7\\x45\\x20\\x0f\\xd3\\x8a\\xa3\\xad\\x46\\xb1\\x5a\\x34\\xc1\\x09\\x91\\x4e\\\r\n\\x30\\x14\\x1f\\xe7\\x4d\\xab\\xfb\\xbd\\xc8\\xe6\\xb1\\xb1\\xa3\\xdd\\x24\\xda\\\r\n\\x8a\\x46\\xa8\\xa2\\x26\\x02\\x5f\\xf7\\x58\\x7d\\xe5\\x1f\\x8d\\x73\\x9f\\x13\\\r\n\\x25\\x91\\x35\\xf8\\x8c\\x48\\xf1\\x81\\x10\\xf9\\x97\\xa3\\x72\\x6a\\xc7\\x87\\\r\n\\x67\\x90\\x5f\\x28\\x7c\\x07\\x38\\x24\\x67\\x86\\x1d\\x88\\xf7\\xf5\\xf5\\xc0\\\r\n\\x3e\\xb5\\xa1\\xe2\\x4b\\xd8\\x75\\x5b\\x69\\x22\\x92\\x28\\xd6\\x58\\x8e\\x55\\\r\n\\xd8\\x0c\\x91\\xdf\\x9f\\x4f\\xfe\\xbd\\x65\\x52\\x5c\\xd1\\xe5\\x90\\x9c\\x53\\\r\n\\xd1\\x9c\\xb4\\x3a\\x82\\x5d\\xdb\\xde\\xdd\\x82\\xea\\x91\\x58\\x28\\x51\\x8e\\\r\n\\x72\\x85\\x32\\x73\\xf5\\xe6\\xb4\\xa3\\xb7\\x9f\\x51\\x8a\\x0b\\xa8\\x81\\xfd\\\r\n\\xda\\xee\\x03\\xd7\\x1d\\x8f\\xeb\\x58\\xba\\x3d\\x84\\xb1\\x58\\xea\\x76\\xd2\\\r\n\\x11\\xf3\\x42\\xe1\\x08\\xe8\\xc0\\x83\\xfe\\x03\\xf2\\xae\\xab\\x47\\x2d\\x65\\\r\n\\x60\\x9b\\x5b\\xf8\\xf9\\x1e\\xc7\\xaf\\xf3\\xae\\x78\\x72\\x2d\\x08\\xa6\\xa2\\\r\n\\x91\\xcd\\xeb\\xb6\\x44\\x35\\xb2\\xc7\\x98\\xe4\\x24\\x4a\\xc4\\x0c\\x8d\\xca\\\r\n\\x0e\\x09\\xaa\\x16\\x96\\x76\\x9a\\x75\\xcc\\xf2\\xa3\\xb0\\x52\\x04\\x91\\x29\\\r\n\\x1c\\xaa\\x9e\\x83\\xdf\\xae\\x2b\\xb7\\xf1\\x5d\\x85\\xb4\\x49\\x02\\x45\\x37\\\r\n\\xef\\x6e\\xb3\\x8c\\x9e\\x99\\x18\\xfc\\x3b\\x0a\\xe0\\xf5\\x28\\xee\\xad\\xb4\\\r\n\\xcb\\x08\\xd1\\x17\\xcc\\x65\\x09\\x29\\x03\\x90\\x15\\x9b\\x1f\\xcc\\x7e\\x55\\\r\n\\xa4\\xa2\\x94\\x79\\x51\\xb5\\x29\\x28\\xcd\\x3b\\x5c\\xd2\\x78\\x61\\xbc\\xb4\\\r\n\\x0d\\x75\\xe6\\x15\\x1c\\x8c\\x75\\xeb\\x5d\\xe6\\x93\\x6f\\x14\\x56\\xd1\\xb4\\\r\n\\x67\\x8d\\xbc\\x0e\\xf5\\xc9\\x69\\x51\\x45\\x6f\\x7b\\x1c\\x57\\x18\\x68\\x24\\\r\n\\x8b\\x82\\x7d\\x7d\\x2b\\xa4\\x8e\\xe5\\x2d\\x9c\\xa4\\x6a\\x56\\x30\\x2b\\x82\\\r\n\\xcd\\x75\\x35\\xc5\\x39\\x7b\\xd5\\x1f\\x51\\x75\\xb3\\x37\\xd9\\x1d\\xd3\\x81\\\r\n\\xd8\\x57\\x93\\x6a\\xb0\\x5c\\x3d\\xf2\\xdc\\xc3\\x14\\xcc\\xe8\\x43\\x6d\\xda\\\r\n\\x79\\x1d\\x47\\xe5\\xd3\\xf0\\x15\\xea\\x3a\\x8e\\xae\\x91\\x45\\x90\\x4f\\x23\\\r\n\\x23\\x1d\\xeb\\x9b\\xb8\\xd5\\x23\\x57\\xdd\\x15\\xf9\\xdf\\xc1\\x6c\\x31\\x61\\\r\n\\xf4\\x14\\x46\\xab\\xa7\\xb2\\x3c\\xaf\\x68\\xe1\\xaa\\x47\\x2f\\x26\\x92\\x93\\\r\n\\xc6\\x1e\\x59\\xd6\\xd8\\x44\\x18\\xef\\x6e\\x9b\\x09\\xca\\xf7\\xf4\\x6c\\x7e\\\r\n\\x15\\x4a\\xee\\x06\\xb9\\x94\\x25\\xb4\\xb1\\xc9\\x6b\\x08\\x0a\\x81\\x18\\x96\\\r\n\\x39\\xee\\x46\\x33\\x9e\\x3a\\xe3\\x15\\xd8\\x5d\\xce\\x2f\\xa0\\x53\\x1d\\xdc\\\r\n\\x8a\\x46\\x54\\x90\\x01\\x1c\\x73\\xdf\\xdb\\x8f\\xce\\xaa\\x2e\\x04\\x43\\x26\\\r\n\\x27\\x20\\x63\\x2d\\x0a\\x9c\\xfe\\x94\\xd6\\x25\\x45\\x6a\\x8b\\x96\\x21\\x2d\\\r\n\\x5a\\xdc\\x8f\\xc2\\xdf\\x6e\\xb5\\x91\\x52\\x33\\xe5\\xc8\\xac\\x64\\x65\\x63\\\r\n\\xd1\\x70\\x72\\x4f\\xa7\\x41\\xef\\x5b\\x1a\\xca\\xac\\x9a\\x8e\\x9f\\xac\\x24\\\r\n\\x8d\\x1f\\x92\\xeb\\x19\\x83\\x67\\xdd\\x62\\x7a\\x7b\\x0f\\xeb\\xf5\\x15\\x4e\\\r\n\\x5b\\xcf\\xec\\x7b\\x14\\x90\\x47\\x0f\\x9d\\x34\\x80\\x28\\x8d\\x76\\x65\\x78\\\r\n\\xf4\\xc7\\xa8\\xaa\\x71\\xeb\\x32\\x35\\xcc\\x05\\xa2\\xca\\xdd\\x26\\xf9\\x01\\\r\n\\x39\\xf9\\xb7\\x11\\xdf\\xbf\\x15\\xa6\\xae\\xd3\\x48\\x72\\x4e\\x09\\x4a\\x28\\\r\n\\xc3\\x92\\x25\\x8f\\x52\\xbc\\xb1\\x3c\\x18\\xa5\\x6f\\x25\\xbd\\x39\\xe3\\xf0\\\r\n\\xa2\\x18\\x1e\\x6b\\x8d\\xdb\\x78\\x00\\x07\\xc7\\x6c\\xf5\\x18\\xab\\x5a\\xc9\\\r\n\\x82\\x1b\\xff\\x00\\x36\\xea\\xda\\x46\\xdc\\x15\\x96\\x68\\x9b\\x69\\x23\\x1d\\\r\n\\x79\\xc8\\x3d\\x3d\\x2a\\xed\\xb6\\x89\\x77\\x7a\\x52\\xee\\xc4\\x4a\\xb1\\x15\\\r\n\\x3c\\xce\\x9b\\x43\\x1c\\x77\\x6e\\x9f\\x9d\\x28\\xb7\\x64\\xfb\\x8a\\x72\\x52\\\r\n\\x7c\\xdd\\x19\\x63\\x4d\\x6d\\x2a\\xc2\\xea\\x23\\x1a\\x5d\\x48\\xd1\\x6d\\x06\\\r\n\\x53\\xb4\\x6d\\xf4\\x38\\xe7\\xb8\\x1c\\xd5\\xfb\\x8b\\xcd\\x3a\\xde\\xe6\\x2f\\\r\n\\xb5\\x58\\xc6\\x90\\x3c\\x61\\xc4\\x85\\x8b\\xb2\\x67\\x1f\\x28\\xe7\\xb1\\xca\\\r\n\\x91\\xea\\xb5\\x56\\x1d\\x19\\xa0\\x58\\xda\\xeb\\x50\\x86\\x15\\x75\\x2b\\x2c\\\r\n\\x11\\x7e\\xf4\\xb0\\xf4\\xca\\xf1\\xfa\\xd6\\xba\\xc3\\x61\\x25\\x94\\x30\\xdc\\\r\n\\xda\\x49\\x3c\\x09\\xf3\\x19\\x26\\xc8\\x6d\\xa7\\xa9\\xc0\\xe9\\xf3\\x60\\xe3\\\r\n\\x9f\\xbc\\x4f\\xad\\x17\\xb7\\x99\\x3c\\xf7\\x5d\\xcd\\x7d\\x0a\\xee\\x5b\\x4d\\\r\n\\x56\\xda\\x58\\xa2\\x5d\\x8c\\x70\\xcd\\xce\\x54\\x77\\xfd\\x6b\\xb3\\xd7\\xe2\\\r\n\\x57\\xb8\\x8e\\xeb\\x6a\\x96\\x65\\xc1\\x6c\\x57\\x33\\xa5\\x08\\xe4\\xb4\\x3b\\\r\n\\x50\\xfc\\x87\\x86\\xc7\\x24\\xf5\\xcd\\x74\\x96\\xec\\xd7\\xda\\x73\\x47\\x23\\\r\n\\x03\\xb3\\x90\\x6b\\xaa\\x0a\\xd0\\xb1\\xbd\\x2f\\x86\\xc6\\x34\\x92\\x86\\x80\\\r\n\\xed\\x1f\\x30\\xc8\\xc9\\x15\\x52\\x0f\\x2a\\x79\\x15\\x9f\\xef\\xc7\\x90\\x0e\\\r\n\\x71\\x91\\xdc\\x1f\\xc7\\xf9\\x9a\\xd1\\x96\\x5b\\x67\\xcc\\x0e\\x55\\x58\\xfb\\\r\n\\xf3\\x58\\x6a\\x92\\x45\\xab\\x34\\x71\\xa3\\x34\\x1b\\x81\\x0c\\x4e\\x71\\xc5\\\r\n\\x61\\x52\\xf1\\x57\\x46\\x35\\x65\\xd1\\x1a\\x5b\\xf1\\x27\\x99\\xf7\\x42\\xfe\\\r\n\\xb5\\xc4\\x7c\\x48\\x93\\x7e\\x98\\x25\\x31\\x97\\xde\\xc1\\x15\\x80\\xc8\\x5c\\\r\n\\x72\\x7e\\x95\\xdc\\xdc\\xec\\x00\\x42\\x70\\x15\\xb1\\xf8\\xd5\\x4d\\x56\\xde\\\r\n\\xc6\\x7d\\x37\\xec\\xd2\\x22\\x10\\xd9\\x0a\\x08\\xcd\\x63\\x4e\\x56\\x92\\x94\\\r\n\\x99\\x9d\\x29\\x72\\xbb\\xb3\\xc6\\xbc\\x23\\x19\\x5d\\x76\\xde\\x77\\x8d\\x8c\\\r\n\\x24\\x49\\x11\\x20\\x77\\x68\\xd8\\x01\\xfa\\xd6\\xa7\\x84\\xbc\\x38\\x64\\xbb\\\r\n\\x5d\\x42\\xf5\\x3f\\x71\\x13\\x65\\x07\\xf7\\xd8\\x67\\x9f\\xf7\\x41\\xae\\xc3\\\r\n\\x4a\\xf0\\xa0\\xb2\\xb0\\x28\\x8c\\x19\\xd6\\xe1\\x66\\x43\\x80\\x3d\\xaa\\xc3\\\r\n\\x37\\xd9\\x2d\\xa3\\xb6\\x4d\\xaa\\x02\\x90\\x50\\x29\\x39\\xf4\\x1d\\x3e\\x9f\\\r\n\\xe7\\x8a\\xf4\\x28\\xd5\\x55\\x13\\x5d\\x99\\xdb\\x4a\\x6a\\x77\\x20\\xbd\\x96\\\r\n\\xe6\\x59\\x10\\x64\\x88\\xe4\\x50\\x14\\x9f\\x94\\x11\\x9e\\x73\\xf9\\x7f\\x2a\\\r\n\\xb1\\xa7\\xdb\\x79\\x0d\\xba\\x29\\x14\\xb9\\xfb\\xa0\\x60\\xe5\\x70\\x38\\xf7\\\r\n\\xcf\\x43\\x4c\\x10\\xb4\\xf1\\xb1\\x68\\xf0\\x8a\\x40\\x54\\x72\\x01\\x27\\x3e\\\r\n\\x9d\\xfd\\x71\\xfe\\x35\\x73\\x4e\\xb4\\x93\\xed\\x67\\x39\\x6f\\x29\\x80\\x07\\\r\n\\xdf\\xb7\\x1f\\x89\\xfc\\x85\\x5f\\x32\\x6b\\x4d\\x4d\\x1c\\xe2\\xd7\\x72\\xc3\\\r\n\\x45\\x1b\\xb4\\xd6\\xeb\\x0f\\xc8\\x30\\xa0\\x13\\x9d\\xa7\\x03\\x8c\\xf7\\x00\\\r\n\\x92\\x3f\\x0a\\x4b\\x14\\x09\\x68\\xd1\\x00\\x18\\x6e\\x2b\\x91\\x9c\\xb7\\x3e\\\r\n\\xbf\\x4c\\xd5\\xd5\\x8c\\x16\\x31\\xb1\\xc2\\x85\\x3b\\x88\\xf5\\x23\\xaf\\xf2\\\r\n\\xaa\\xc9\\x2c\\x76\\xf6\\x9b\\x7c\\xc0\\x92\\x43\\x23\\x15\\x38\\x00\\x30\\x0c\\\r\n\\x3a\\xd6\\xfc\\xa9\\x24\\xae\\x67\\x17\\x2b\\x8c\\xb7\\x91\\x1c\\x96\\x97\\x01\\\r\n\\x80\\x39\\xe0\\xe4\\xff\\x00\\x9e\\x2a\\xbd\\xd6\\xcb\\x99\\x04\\x4d\\x82\\x47\\\r\n\\x23\\x23\\x23\\x3d\\xb3\\x52\\xd8\\xea\\x71\\xdf\\xc3\\x33\\x28\\x0c\\xe9\\x20\\\r\n\\x0c\\x00\\xc6\\x06\\x31\\x91\\xed\\xc7\\xf9\\xcd\\x47\\xa8\\x13\\x6d\\x28\\x9f\\\r\n\\x80\\xac\\x46\\x18\\xf1\\xc8\\xf5\\xa8\\x93\\x57\\x4c\\xae\\xa4\\x46\\xda\\x1d\\\r\n\\x3c\\xfd\\xab\\xcc\\xc3\\xf0\\x10\\x7a\\xf3\\xc5\\x36\\xe9\\x43\\x48\\x24\\xe9\\\r\n\\xb8\\x96\\x5c\\xf6\\xc8\\xe4\\x1a\\xa5\\xab\\x6a\\x51\\xdf\\xa5\\xbc\\x30\\x33\\\r\n\\x47\\x2a\\xcb\\x96\\x18\\x3d\\x07\\xbf\\xe2\\x2a\\xdc\\x59\\x96\\x39\\x03\\xf4\\\r\n\\xdd\\x9f\\xa7\\xbd\\x61\\x59\\x39\\x3b\\xa0\\x51\\xe8\\x60\\x5a\\x46\\x90\\x5f\\\r\n\\x4b\\x1c\\x2e\\xfe\\x4c\\xf1\\x48\\xc9\\x93\\xc0\\xc7\\x04\\x7e\\x19\\xff\\x00\\\r\n\\x39\\xae\\x9a\\xd9\\xa3\\x5d\\x14\\xbd\\xc9\\xda\\x59\\xf6\\x0c\\xf5\\xe3\\xa9\\\r\n\\xaa\\xd0\\x69\\xc9\\x17\\x9d\\xbd\\x03\\x23\\x82\\xca\\xa4\\x9e\\x1b\\xa7\\x1e\\\r\n\\x99\\xe3\\xf4\\xf4\\xa8\\xb5\\xab\\xa1\\x6d\\xa6\\x5b\\xc0\\x77\\x11\\xb3\\x38\\\r\n\\xdb\\xbb\\x05\\x8f\\x7c\\xfa\\x71\\x5c\\xb5\\x54\\x91\\x8c\\x93\\x5a\\x85\\xe4\\\r\n\\x46\\xfe\\xda\\xd5\\x99\\xe4\\x73\\x19\\x2b\\x80\\xd8\\xc8\\x38\\xa8\\x6e\\xf4\\\r\n\\xe9\\x35\\x9d\\x52\\x1f\\x21\\xc7\\xee\\x15\\x99\\xc0\\xfa\\xf3\\xfa\\x83\\x53\\\r\n\\x5a\\xf9\\x86\\xc9\\x5e\\x31\\x9d\\xbd\\x31\\xdf\\xf0\\xad\\xab\\x48\\xde\\xc6\\\r\n\\xcd\\xee\\x52\\x35\\x12\\x98\\xf0\\x73\\xdf\\xad\\x54\\x1b\\xd6\\xfb\\x58\\xe8\\\r\n\\xa7\\xa3\\x47\\x33\\xa9\\x66\\xc6\\xc8\\xcb\\xb0\\xb6\\xc3\\x90\\xb9\\xe4\\x01\\\r\n\\xe9\\x59\\x30\\x78\\xbf\\xfb\\x43\\x51\\x8e\\x26\\x80\\x05\\x1c\\x6e\\x04\\xe7\\\r\n\\x07\\x8e\\x7f\\x31\\x56\\xf5\\x7d\\x4a\\x45\\xb8\\x8e\\x49\\x63\\xf9\\x01\\xe4\\\r\n\\x31\\x00\\x63\\xf1\\xac\\xed\\x16\\x02\\xba\\xf4\\x90\\x98\\x94\\x82\\x08\\xc2\\\r\n\\xa1\\x24\\x83\\xc8\\x35\\x94\\x61\\x0d\\x51\\xa6\\x2a\\xa3\\x8b\\x74\\x9e\\xdb\\\r\n\\x9b\\xac\\xb3\\xcd\\x04\\xfb\\xa3\\xc8\\x88\\x95\\x5c\\x75\\x2b\\xfe\\x3f\\xe3\\\r\n\\x5c\\x0e\\xa0\\xd7\\x36\\xe4\\x27\\xcc\\x8a\\x78\\x2a\\x47\\x42\\x0f\\x4a\\xf6\\\r\n\\x88\\x2d\\x10\\xc0\\xbb\\xd0\\x02\\x47\\xcd\\x91\\x8a\\xc8\\xd5\\xfc\\x27\\x0e\\\r\n\\xa2\\x4b\\x46\\xa0\\x1c\\x72\\x0f\\xf3\\xcd\\x45\\x19\\xa5\\x26\\xa4\\x8f\\x3a\\\r\n\\x32\\x5c\\xd6\\x67\\x95\\xda\\xcd\\x23\\xc1\\x71\\x0f\\x9a\\xf9\\x2a\\x24\\x8f\\\r\n\\x04\\xfd\\xe5\\xcf\\x1f\\x91\\x3f\\x95\\x57\\x8c\\x5c\\x5d\\xc9\\x1c\\x26\\x49\\\r\n\\x19\\x9c\\x81\\xcb\\x13\\xd4\\xff\\x00\\xf5\\xeb\\xa8\\xbd\\xd0\\xed\\x74\\xab\\\r\n\\x92\\x66\\xba\\x45\\x31\\xe1\\xb6\\x80\\xcc\\x4f\\xa8\\xe9\\x8a\\x6c\\x5a\\x2c\\\r\n\\x76\\x3a\\xa4\\x6f\\xf6\\xb8\\x9e\\x38\\x47\\x9c\\xa9\\xb4\\x80\\x46\\x32\\x9c\\\r\n\\xf4\\xea\\x47\\x53\\xde\\xba\\xb9\\x95\\xf6\\x37\\xba\\xb5\\x84\\xf1\\x14\\xe9\\\r\n\\x2c\\xb6\\xc5\\x1b\\x29\\x12\\xbc\\x58\\x1d\\x8a\\x63\\x23\\xf3\\xcd\\x2b\\x62\\\r\n\\x3b\\x68\\x24\\xf2\\x59\\xda\\x04\\x3f\\xc5\\x81\\x96\\x19\\x19\\xfc\\xcf\\x71\\\r\n\\x55\\xdb\\x4e\\xb9\\xfe\\xcc\\x91\\x65\\x46\\x69\\x04\\xfb\\xc3\\xa8\\xdc\\x1f\\\r\n\\x78\\x20\\xf4\\x3c\\xf2\\x05\\x54\\xb9\\x6c\\xcd\\x7b\\x0e\\x79\\x48\\xd1\\xb3\\\r\n\\xf4\\x01\\x4d\\x3b\\x76\\x07\\x25\\x24\\x74\\x3a\\x2d\\xd3\\x4b\\x62\\x96\\xd0\\\r\n\\x8b\\x68\\x5d\\x8b\\xac\\x12\\xec\\x0d\\xb1\\xb8\\x24\\x2e\\xf2\\x4f\\x7f\\xd2\\\r\n\\x96\\xda\\xd6\\xfa\\xf8\\x5b\\x41\\x3d\\xc3\\xcf\\x34\\x6f\\x2b\\x19\\x25\\x25\\\r\n\\x88\\x6d\\xc1\\x57\\xaf\\xa6\\x1b\\xf2\\xac\\xad\\x3d\\x04\\x3a\\x4b\\x5e\\x44\\\r\n\\x7e\\xd0\\xf0\\x4e\\xad\\x18\\xe8\\x32\\x7d\\x7d\\x0e\\x6b\\xa2\\x37\\x57\\x17\\\r\n\\x3a\\x7c\\x1a\\x8d\\x99\\x31\\x3b\\x48\\x89\\x70\\x80\\x74\\x5c\\xe7\\x83\\xf9\\\r\n\\xe6\\xb2\\x56\\x4f\\x53\\x29\\x25\\xbf\\x73\\x51\\x7c\\x37\\x63\\x14\\xb2\\x1f\\\r\n\\xb6\\x90\\x5f\\x82\\xa4\\x8c\\x31\\x03\\x1c\\xfa\\xf6\\xa6\\xb6\\x91\\x26\\x9c\\\r\n\\xb0\\xbc\\x12\\x23\\x94\\x62\\xca\\xae\\x01\\x4e\\x41\\x04\\x1f\\x6e\\x7a\\x57\\\r\n\\x22\\x6e\\x66\\x46\\x91\\xe7\\xb8\\x55\\x30\\xc9\\xe6\\x60\\x1d\\xc7\\x03\\xd7\\\r\n\\x1e\\xbc\\x57\\x43\\xa6\\x6b\\x1f\\x6d\\xb4\\x54\\x49\\x19\\xd9\\x89\\xc9\\x3e\\\r\n\\xdd\\x7f\\x9d\\x74\\x53\\xe4\\x9a\\x6a\\xc5\\x43\\x96\\x5e\\x47\\x61\\xa4\\x28\\\r\n\\xb7\\xb2\\x8d\\x55\\xf2\\x58\\x02\\x4f\\xa0\\x35\\x79\\xaf\\x96\\xc8\\x80\\xb8\\\r\n\\x55\\x7e\\xad\\x54\\x60\\x95\\x9e\\xd5\\x09\\x89\\x62\\x8d\\x86\\xd5\\x00\\xfa\\\r\n\\x0a\\x94\\xaf\\x95\\x6a\\xa6\\x43\\xbb\\x1c\\xf4\\xe8\\x3d\\xeb\\x25\\x7b\\x2f\\\r\n\\x40\\x8b\\xb2\\x4c\\xe4\\xbc\\x45\\xa8\\x6a\\x3a\\x76\\xa7\\x0b\\x24\\x46\\x68\\\r\n\\x14\\x8d\\xe8\\xa7\\x05\\xfd\\x71\\xdf\\xf2\\xad\\x7d\\x3f\\x58\\x4b\\x9b\\x25\\\r\n\\xb9\\x68\\xbc\\xb6\\x63\\xc2\\x9e\\xa0\\x52\\xf8\\x86\\xe7\\x4b\\x7b\\x6b\\x7b\\\r\n\\x99\\x2d\\xbc\\xd0\\xe4\\x21\\xe3\\x91\\x83\\x9c\\x7f\\x9f\\x4a\\xe7\\x74\\xbd\\\r\n\\x52\\x1b\\xdb\\xe5\\xb5\\x8a\\x33\\xe5\\x12\\x4a\\x92\\x7a\\x0c\\x91\\x58\\x55\\\r\n\\x8c\\xad\\x6f\\xc4\\xc2\\xa2\\xb9\\xd6\\xfd\\xa9\\x67\\x74\\xe0\\x13\\x54\\xae\\\r\n\\x2e\\x36\\x4e\\xd8\\x5c\\xaa\\xf4\\x3f\\xd2\\xa6\\x96\\x25\\x8e\\x55\\x2b\\xf2\\\r\n\\xe3\\xbd\\x4e\\xd6\\x10\\xcf\\x6a\\x64\\x07\\xf7\\x98\\xeb\\x9a\\xe4\\xb3\\x4a\\\r\n\\xcc\\x9b\\x5a\\x05\\xeb\\x49\\x83\\xda\\x6f\\xda\\x01\\xdb\\x93\\x8e\\x95\\x93\\\r\n\\x75\\x1a\\x99\\x9d\\x95\\x54\\x2f\\xde\\xde\\xc0\\x12\\x0f\\xa8\\xfc\\xcd\\x5f\\\r\n\\xb6\\x8c\\x88\\x0c\\x43\\x00\\xe0\\x8c\\xfe\\x15\\x05\\xcd\\xa9\\xf2\\x19\\x54\\\r\n\\xee\\x6f\\x42\\x2b\\xd0\\xa3\\x18\\xb4\\xa4\\x8e\\x8a\\x10\\x4e\\x3c\\xc4\\x3f\\\r\n\\x63\\x86\\x61\\x0c\\x86\\x37\\x6f\\x4d\\xa7\\xbf\\x40\\x6a\\xd4\\x44\\x5a\\xcc\\\r\n\\xb0\\x64\\xe5\\x81\\xe4\\x9e\\x73\\xc6\\x0f\\xe7\\x8a\\xa7\\x61\\x33\\x5b\\x9f\\\r\n\\x9c\\x80\\x17\\x8c\\x13\\xd3\\xbd\\x5d\\xba\\x22\\x79\\x92\\x78\\x54\\x08\\xbf\\\r\n\\xe5\\xa3\\x9e\\xc7\\x1d\\x01\\xfc\\x2b\\xba\\x29\\x49\\xfa\\x1b\\xb9\\x45\\x0c\\\r\n\\xb6\\x8c\\xa5\\xc7\\x92\\xc3\\x28\\xdb\\xb2\\xde\\xe7\\xa5\\x63\\x5d\\x69\\xf3\\\r\n\\x8d\\xc9\\x24\\x85\\xe3\\x50\\xc5\\x57\\x18\\xda\\x33\\xd7\\x3d\\xfa\\xe6\\xb5\\\r\n\\xbe\\xd5\\x6f\\x04\\x42\\x49\\x09\\x6c\\x9c\\xaa\\x8f\\x5e\\xc3\\xf3\\xa9\\x24\\\r\n\\x21\\xe5\\x59\\x14\\x6e\\x56\\x5d\\xea\\x01\\xeb\\xea\\x28\\x94\\xec\\xd4\\xbb\\\r\n\\x9c\\xfc\\xce\\x2d\\x37\\xb3\\x39\\xfd\\x33\\x4c\\x92\\x0b\\xa7\\x9a\\xdc\\xb6\\\r\n\\x03\\x00\\xc8\\x7a\\x30\\x3d\\x72\\x6a\\xef\\x8b\\x65\\x16\\xfa\\x1c\\x2d\\x95\\\r\n\\xce\\x48\\x04\\x9e\\x4f\\x1c\\x57\\x4b\\xa3\\x5a\\xa4\\x36\\xf7\\x0e\\xe8\\x14\\\r\n\\x1e\\x17\\x9e\\xb5\\x87\\xe2\\x61\\x6d\\x36\\x98\\x22\\x31\\x24\\xb8\\x7d\\xa0\\\r\n\\x67\\x04\\x7d\\x0f\\x63\\x55\\x35\\x76\\x9a\\x3a\\x22\\xd3\\x39\\x6d\\x2d\\x4c\\\r\n\\xf0\\x45\\x2c\\xad\\xf7\\x46\\x07\\xa6\\x7b\\x76\\xfa\\xfe\\x75\\xaf\\x14\\xc5\\\r\n\\x11\\x91\\x17\\x2e\\xd8\\x23\\xd7\\xa5\\x55\\xb0\\xb0\\x22\\x19\\x96\\xdf\\x74\\\r\n\\x80\\x2e\\x42\\x37\\xde\\x1f\\xe3\\x55\\xb5\\x29\\x24\\x5b\\x24\\x90\\x3b\\x23\\\r\n\\x10\\x06\\xee\\x98\\x70\\x7a\\x56\\x73\\x92\\x89\\x72\\x92\\x89\\xa9\\x0c\\xf3\\\r\n\\xde\\x5a\\x34\\x22\\x2c\\x88\\x97\\x01\\x8b\\x01\\x8c\\x9c\\xf7\\xfc\\x6a\\x96\\\r\n\\xab\\x24\\x5e\\x4b\\x49\\x23\\xab\\x64\\x85\\xfb\\xc0\\xf2\\x3a\\x7e\\x75\\x55\\\r\n\\x2f\\x52\\x47\\x85\\xdd\\x91\\xcb\\xc4\\x8f\\x20\\x8c\\xe7\\x04\\x8c\\xe2\\xb4\\\r\n\\xee\\x74\\xd6\\xb9\\x48\\xda\\x69\\x17\\xe7\\x50\\x64\\x8c\\x0c\\x9f\\x63\\xf8\\\r\n\\x1c\\x57\\x9a\\xeb\\x4a\\xa4\\xdc\\x1a\\xb3\\x39\\x7d\\xa3\\x94\\x9c\\x59\\xa3\\\r\n\\xa4\\xda\\x2b\\xe8\\xf0\\x8c\\x7c\\xc7\\x05\\x80\\xed\\x9a\\xd6\\xb9\\xb7\\x3f\\\r\n\\x65\\x48\\xcf\\x23\\xd4\\xf5\\xa8\\xf4\\xd8\\xf6\\xdb\\xec\\x18\\xf9\\x46\\xdf\\\r\n\\xaf\\xbd\\x4b\\x7b\\x73\\xb1\\x59\\x4e\\x06\\x4e\\x01\\xf4\\xae\\xaf\\x23\\xb2\\\r\n\\x3f\\x11\\x82\\xda\\x74\\x73\\x5c\\xcd\\x1b\\x1f\\xba\\x4a\\xf0\\x7b\\x8a\\xcc\\\r\n\\xbf\\xd0\\x55\\xee\\x20\\x99\\x33\\x11\\x52\\xa0\\xba\\xe0\\x60\\x7b\\x8e\\xff\\\r\n\\x00\\x4e\\x3a\\xd6\\xa2\\x4f\\xe5\\x4c\\x25\\x25\\xf6\\xce\\xe5\\x81\\x65\\xc0\\\r\n\\x3c\\xf2\\x45\\x6a\\x04\\x8e\\xe0\\xf9\\x8c\\x46\\xdc\\x57\\x05\\x5a\\x92\\x8c\\\r\n\\xda\\x8f\\x43\\xcc\\xab\\x39\\x39\\xb3\\x2d\\x6e\\xa7\\xb5\\xd3\\xca\\x83\\xe6\\\r\n\\xbc\\x78\\x04\\xaf\\xa7\\xe3\\x50\\xf8\\x7b\\x57\\xb8\\xd5\\x7c\\xc1\\x2c\\x52\\\r\n\\x46\\x23\\x7c\\x2c\\x84\\x1c\\x35\\x5e\\xb8\\xb7\\x1e\\x69\\x20\\x10\\x92\\x7c\\\r\n\\xa4\\x7a\\x51\\xa7\\x69\\x46\\xde\\xdd\\x8c\\x47\\x73\\x70\\x0a\\x9e\\x9e\\xf5\\\r\n\\x78\\x57\\xcd\\x2d\\x4a\\xa4\\xef\\x3b\\x1c\\xcf\\x89\\xa3\\xb4\\xd7\\x75\\x01\\\r\n\\x63\\x6f\\x70\\x96\\xfa\\x82\\x9d\\xca\\x1b\\x84\\x9b\\x1c\\x15\\xcf\\x63\\xcd\\\r\n\\x65\\xad\\xbd\\xd3\\x78\\x7a\\x7b\\x69\\x23\\xf2\\x6e\\xa0\\xc5\\xbb\\x19\\x48\\\r\n\\x4f\\x93\\x70\\x65\\x39\\x3c\\x70\\x43\\x0f\\xca\\xb6\\xf5\\xab\\x5f\\xec\\x99\\\r\n\\xa6\\xba\\x8a\\xc4\\xcf\\x71\\x29\\xc3\\xba\\x83\\xbb\\x9f\\x4e\\xb5\\x9b\\x6b\\\r\n\\xa2\\x6a\\x7a\\x84\\x9f\\x69\\x93\\x4c\\xb8\\x58\\xee\\xe3\\x11\\xdc\\x64\\xfc\\\r\n\\xcb\\xd4\\x02\\x41\\xe4\\x90\\x70\\x7f\\x0a\\xee\\x6a\\xf2\\xb2\\xea\\x74\\xb7\\\r\n\\x69\\x79\\x33\\x23\\x4e\\x4b\\xeb\\x7b\\x8f\\xb2\\x3c\\xf1\\x48\\x93\\x03\\x86\\\r\n\\x86\\x70\\xd8\\x3d\\x71\\xf2\\x9e\\x3a\\x1e\\xdd\\xea\\xdc\\x76\\x30\\xdb\\x47\\\r\n\\x73\\x71\\x71\\x1a\\xdc\\x5c\\x32\\xb3\\x05\\x38\\x0b\\x18\\xc1\\xfb\\xc3\\x39\\\r\n\\x63\\xd3\\xd8\\x77\\x27\\xa5\\x4b\\xa5\\x78\\x48\\xc5\\x7a\\xad\\x76\\x19\\x26\\\r\n\\x82\\xe1\\x80\\x5d\\xc3\\x82\\x30\\x54\\x1c\\x76\\xc8\\x35\\xb5\\x1e\\x8f\\x63\\\r\n\\x3d\\xd4\\x93\\x5c\\x5c\\x92\\x24\\xe0\\x43\\x18\\xc1\\xe7\\xae\\x4f\\xe7\\x59\\\r\n\\x4a\\x7c\\xb7\\x6b\\xa1\\x97\\x32\\x49\\xb8\\xf4\\x30\\x74\\xcb\\xcf\\xb4\\x25\\\r\n\\xce\\xdc\\x88\\xa2\\x89\\x64\\x6b\\x89\\x00\\x70\\xa0\\x73\\xf2\\xa0\\x01\\x54\\\r\n\\x70\\x70\\x30\\x6b\\x72\\xda\\x7b\\x9d\\x45\\xef\\x2d\\x7c\\xa9\\x09\\x92\\x04\\\r\n\\x68\\x95\\xc6\\x13\\x23\\x9c\\x13\\xd3\\x9c\\xe0\\xfd\\x29\\xb0\\x5a\\xc3\\x6e\\\r\n\\x08\\xb4\\x8f\\xc8\\xb1\\x8d\\x8e\\x4a\\x38\\x0d\\x21\\xe8\\x7a\\xfa\\x0e\\xf4\\\r\n\\xf3\\xab\\x79\\x77\\xb1\\x05\\x93\\xc8\\xb5\\x8f\\x91\\x6e\\xb8\\xf9\\xb3\\xd1\\\r\n\\x99\\xbb\\xe0\\x76\\xf6\\x15\\xc9\\x2a\\xca\\x6d\\xbe\\xa7\\x34\\xea\\xa9\\x37\\\r\n\\x63\\x36\\xfb\\x4b\\xd3\\xad\\xe5\\x95\\x92\\x19\\x2f\\x25\\x98\\x82\\xeb\\x1b\\\r\n\\x1d\\xac\\xde\\x84\\xff\\x00\\x41\\x51\\xc5\\x74\\xd6\\x92\\x88\\x2d\\xa1\\x8f\\\r\n\\x2b\\x9f\\x33\\xcb\\x1f\\x24\\x67\\xfb\\xa3\\x1d\\x71\\xd3\\x26\\x9e\\xf6\\xd3\\\r\n\\xc5\\xaa\\x5e\\x4a\\xc5\\x47\\x96\\xac\\x62\\x39\\x27\\x03\\xf8\\x48\\xfc\\xf3\\\r\n\\xf8\\x55\\x0b\\x7b\\x73\\x6f\\x6a\\xd2\\x5c\\xc9\\x2b\\x22\\x2e\\x56\\x35\\x7c\\\r\n\\x12\\xa4\\xe0\\x16\\x3d\\x87\\x23\\xfc\\x2b\\x78\\x4d\\xbd\\x5b\\x2e\\x32\\x4d\\\r\n\\xde\\x4c\\xf4\\xd9\\x49\\x69\\x3c\\xb5\\x2a\\x13\\x76\\x57\\x1c\\x63\\xde\\xa0\\\r\n\\x91\\x58\\xe5\\xd6\\xe5\\xc8\\x60\\x43\\xa9\\xe8\\x7f\\xcf\\x34\\xcb\\x7e\\x74\\\r\n\\x8d\\xc7\\xef\\x6e\\x6e\\x7b\\xf4\\xa8\\x81\\x25\\x79\\xf7\\xfe\\x54\\x4e\\x6f\\\r\n\\x92\\xcf\\xa8\\xb9\\x9d\\xac\\x32\\xd7\\x4e\\x8e\\x69\\x66\\x49\\x25\\xf9\\x14\\\r\n\\xac\\xa9\\xc6\\x7e\\x65\\x3d\\x7f\\xa5\\x64\\x5a\\x5a\\x46\\x35\\xa5\\xba\\x7b\\\r\n\\x9c\\x3f\\x98\\x4a\\x46\\x14\\x05\\x2d\\xce\\x4d\\x6d\\x59\\x71\\x38\\xc7\\xa1\\\r\n\\xaa\\x01\\x17\\xed\\xb1\\x36\\xd1\\x9f\\x37\\xae\\x3d\\xeb\\x18\\x4d\\xf2\\xd9\\\r\n\\xf4\\x12\\x93\\x69\\x2e\\xc6\\xe3\\x9f\\xb4\\x44\\x41\\x40\\x08\\xc9\\xa6\\x28\\\r\n\\xfb\\x24\\x04\\x96\\x3d\\x3d\\x69\\x6d\\x49\\x2c\\xd9\\x3e\\xb4\\xc9\\xb9\\x8d\\\r\n\\x73\\xcd\\x4a\\x1a\\xd5\\x05\\x95\\xd4\\xb3\\x48\\x85\\x54\\xb2\\x33\\x6c\\x07\\\r\n\\xde\\xb4\\x81\\x2f\\x09\\x05\\x70\\xe4\\x74\\xa6\\xdb\\x00\\xb6\\x36\\xe4\\x00\\\r\n\\x3f\\x7e\\x3a\\x52\\x02\\x7c\\xee\\xa6\\xbd\\x0a\\x29\\x46\\x16\\x3a\\x68\\xe9\\\r\n\\x1b\\x14\\x90\\xb2\\x66\\x25\\x0b\\x90\\xdf\\x31\\x3e\\x94\\x4f\\x75\\xe6\\x5a\\\r\n\\x7d\\x9e\\x37\\x00\\xe4\\x2b\\x71\\x8c\\x7f\\x8f\\x6f\\xce\\xa1\\xbe\\xff\\x00\\\r\n\\x5d\\x28\\xec\\x53\\x91\\x49\\x28\\x1f\\xda\\x2e\\x31\\xc7\\x9a\\xbf\\xfb\\x2d\\\r\n\\x72\\xd3\\xad\\x29\\xc7\\x91\\xed\\x7b\\x7e\\x28\\xe7\\x53\\xba\\xe5\\x7e\\x6b\\\r\n\\xf1\\x44\\x89\\x77\\x6b\\x0d\\x98\\x5b\\x82\\x36\\xc6\\xa5\\x59\\x9c\\x8e\\xfd\\\r\n\\x48\\xfa\\x66\\x9f\\x05\\xf4\\x37\\x76\\x2b\\x34\\x20\\x8f\\x25\\xfa\\x11\\x83\\\r\n\\x8a\\xe3\\xb5\\xb9\\x1c\\xeb\\xac\\x85\\xd8\\xa8\\x53\\xf2\\xe7\\x8e\\x86\\xba\\\r\n\\xdd\\x30\\x03\\xa7\\x4d\\x91\\xd7\\xaf\\xe5\\x5d\\xd5\\x95\\xe8\\xee\\x6d\\x5d\\\r\n\\x5e\\x9d\\xc9\\x35\\x1d\\x4c\\xc5\\x71\\x25\\xa8\\x56\\x1b\\xc8\\xda\\x00\\x24\\\r\n\\x72\\x32\\x1b\\x8e\\xdf\\xe1\\x59\\x8f\\x6e\\xd7\\x56\\x11\\x2c\\x80\\x89\\x83\\\r\n\\x16\\x6c\\x36\\x46\\x6a\\xc1\\x39\\xbc\\x4c\\xf3\\xfe\\x8f\\xfd\\x6a\\xc4\\x7f\\\r\n\\x74\\x7f\\xba\\x7f\\xad\\x67\\x4a\\x72\\xea\\xca\\xa3\\x26\\xcc\\xed\\x32\\x54\\\r\n\\x86\\xf0\\x05\\x72\\xad\\xfe\\xd5\\x45\\xac\\x4d\\x2c\\x77\\x4e\\xb6\\xf1\\xa0\\\r\n\\xce\\x5b\\xa0\\xc0\\xfc\\xea\\xbc\\x9c\\x30\\x23\\x83\\xea\\x2a\\xed\\xf8\\x06\\\r\n\\x00\\xc4\\x0d\\xc1\\x3a\\xf7\\xac\\x6b\\xd5\\x76\\xb0\\xaa\\xca\\xf1\\xd4\\x65\\\r\n\\xa3\\xcd\\xab\\x35\\xb4\\x12\\xc0\\xab\\xb4\\x8f\\xde\\x81\\x9d\\xfd\\x73\\x9a\\\r\n\\xde\\x7b\\x79\\x63\\x69\\xe5\\x58\\xc1\\x19\\xda\\xa3\\x1d\\xb1\\x54\\xfc\\x32\\\r\n\\x73\\x80\\x7a\\x07\\xe3\\xf2\\xae\\x92\\x0f\\x99\\x70\\x79\\x1e\\xf5\\x34\\x25\\\r\n\\xed\\x27\\xcf\\x2d\\xec\\x67\\x87\\x9f\\x3c\\xf9\\x9e\\xe5\\x0b\\x51\\xe4\\xa8\\\r\n\\x52\\xa0\\x74\\xfc\\xaa\\xae\\xa1\\x0a\\x5c\\x4c\\x21\\x43\\xb9\\x81\\xdc\\x4f\\\r\n\\xa5\\x5f\\xba\\xe1\\x4e\\x3d\\xab\\x09\\xd8\\xae\\xa1\\x70\\x41\\x20\\x88\\xfb\\\r\n\\x56\\xcd\\x6f\\x63\\xb6\\xf6\\x4d\\x9c\\xe7\\x8b\\xdd\\x49\\xb2\\x86\\x1f\\x95\\\r\n\\xa0\\x76\\xdc\\xe5\\x4e\\xee\\xdc\\x0e\\xd8\\xff\\x00\\x0a\\x87\\x4a\\xd7\\x2e\\\r\n\\x44\\xd1\\xc2\\x23\\x66\\xdb\\x80\\xc4\\xb7\\x03\\xf2\\xe9\\x5d\\x35\\xc4\\x69\\\r\n\\x26\\x9f\\x0e\\xf4\\x56\\xca\\x36\\x72\\x33\\x9e\\x05\\x71\\xba\\x70\\x01\\x03\\\r\n\\x80\\x03\\x1b\\x8e\\x48\\xeb\\xc7\\x4a\\xc6\\x69\\x38\\x73\\x1c\\xd3\\x82\\x8c\\\r\n\\x4e\\xea\\xde\\xe5\\x6f\\x23\\x1e\\x7a\\x90\\x53\\x0e\\x14\\x21\\xf9\\xbd\\xab\\\r\n\\x46\\x17\\x8e\\xdf\\x7c\\xb2\\x00\\x81\\x86\\x48\\x1d\\x29\\xb6\\x80\\x14\\x62\\\r\n\\x47\\x7a\\xab\\xae\\x1c\\x59\\x36\\x38\\xeb\\xd3\\xe9\\x58\\xab\\x44\\xe6\\x56\\\r\n\\xbd\\xc9\\x44\\xb6\\x37\\x32\\x49\\xe7\\x14\\x64\\xc6\\x70\\xdc\\x8f\\x6a\\x76\\\r\n\\x93\\xe2\\x5d\\x33\\x45\\xb7\\x96\\x35\\x8c\\x64\\x37\\xdc\\x1d\\xb3\\x5c\\x6c\\\r\n\\xec\\x56\\xe6\\xe5\\x54\\x90\\xbe\\x44\\x47\\x00\\xf1\\xf7\\x05\\x56\\xbb\\xfb\\\r\n\\xd2\\xff\\x00\\xbd\\xfd\\x4d\\x76\\xd1\\xac\\xe0\\xe0\\xe3\\xa1\\xbc\\x65\\xf0\\\r\n\\xfa\\x9a\\x9a\\xce\\xa7\\x1d\\xf6\\xa7\\x3d\\xf2\\xa3\\x24\\x52\\x2a\\x90\\x31\\\r\n\\xd1\\x94\\x9c\\x30\\xf6\\x20\\x91\\xff\\x00\\x01\\x35\\x1f\\x87\\x76\\xb2\\xcd\\\r\n\\x77\\x32\\x31\\x57\\x23\\x6e\\x0f\\x3c\\x9c\\x7e\\x5c\\xd5\\x89\\xa2\\x8f\\xfb\\\r\n\\x00\\x7e\\xed\\x3e\\xea\\xff\\x00\\x08\\xf5\\x5f\\xf1\\x35\\x66\\xd6\\x18\\x86\\\r\n\\x8d\\x91\\x1a\\x02\\x36\\x00\\x76\\x8e\\x9e\\x60\\xa8\\xae\\xd5\\xa5\\x2e\\xad\\\r\n\\x8a\\xab\\x5c\\x8e\\xcb\\x72\\x95\\xad\\xed\\x93\\x5e\\x34\\x02\\x70\\x56\\x44\\\r\n\\x62\\xf0\\xfd\\xed\\xbe\\xe0\\xf6\\x35\\x89\\xa9\\xda\\xdf\\x49\\xab\\xc3\\x0c\\\r\n\\x11\\x96\\x89\\x5c\\x3b\\x49\\xd1\\x4a\\x13\\xcb\\x64\\xf0\\x06\\x38\\x1f\\x8d\\\r\n\\x65\\x68\\xc4\\x8d\\x62\\x40\\x0e\\x07\\xd9\\xa4\\x35\\xd9\\x4a\\x03\\xe9\\xf6\\\r\n\\x8a\\xc0\\x32\\x9b\\x87\\x5c\\x1e\\x46\\x33\\xd3\\xe9\\x5c\\x50\\xa3\\x1a\\x75\\\r\n\\x3b\\x9c\\xaa\\x0a\\x9c\\xb4\\x2a\\xc5\\x6f\\x25\\xb5\\xa3\\x5d\\xde\\x2a\\xbc\\\r\n\\x50\\xae\\xc9\\x76\\x48\\x1b\\x2c\\xb9\\x18\\xcf\\xa9\\xca\\xd5\\x5d\\x06\\x2f\\\r\n\\xed\\x0b\\xdb\\xa6\\x95\\x0b\\x9b\\xa4\\x38\\x2e\\x38\\xc6\\x41\\x03\\xf4\\xae\\\r\n\\x8e\\xfd\\x57\\xfb\\x1a\\x75\\xc0\\xda\\xd2\\xb6\\x46\\x38\\x3f\\x2f\\xff\\x00\\\r\n\\x58\\x56\\x3f\\x86\\xff\\x00\\xe3\\xf2\\xcf\\xfe\\xb9\\x9f\\xeb\\x5b\\x51\\xa4\\\r\n\\xa5\\x75\\xea\\x5c\\x20\\x99\\xff\\xd9\\x00\\xff\\xdb\\x00\\x43\\x00\\x01\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\xff\\xdb\\\r\n\\x00\\x43\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\\r\n\\x01\\x01\\x01\\xff\\xc2\\x00\\x11\\x08\\x01\\x2c\\x01\\xc2\\x03\\x01\\x11\\x00\\\r\n\\x02\\x11\\x01\\x03\\x11\\x01\\xff\\xc4\\x00\\x1e\\x00\\x00\\x03\\x01\\x01\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x07\\x08\\x05\\x04\\\r\n\\x09\\x03\\x02\\x01\\x00\\x0a\\xff\\xc4\\x00\\x1d\\x01\\x00\\x02\\x03\\x01\\x01\\\r\n\\x01\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x06\\x03\\x04\\x07\\\r\n\\x02\\x01\\x00\\x08\\x09\\xff\\xda\\x00\\x0c\\x03\\x01\\x00\\x02\\x10\\x03\\x10\\\r\n\\x00\\x00\\x01\\x1d\\x48\\xc5\\x33\\x09\\xfb\\xfc\\xa5\\x63\\xce\\x42\\x6e\\xbe\\\r\n\\x84\\x48\\x92\\xe2\\xb5\\x09\\xac\\x9d\\xe7\\xd3\\xb3\\xe5\\xa2\\xbb\\xa3\\x96\\\r\n\\x21\\xff\\x00\\x7e\\xca\\x6f\\xcc\\x35\\x7e\\xed\\xac\\x6f\\xcb\\x77\\xfd\\x96\\\r\n\\xe1\\x8b\\xf5\\xf0\\xb4\\xd5\\xd6\\x4c\\x82\\xee\\x3e\\x7a\\xb2\\xd5\\xb9\\xc0\\\r\n\\x28\\xca\\x3f\\x45\\x9d\\x6e\\xc3\\x5a\\xd0\\xcd\\x4e\\x7e\\x0f\\x5a\\xa6\\x60\\\r\n\\x44\\xe9\\xe1\\xd0\\xa4\\xf2\\x7d\\xcf\\xdd\\x90\\x74\\x41\\xc6\\x04\\xcd\\xae\\\r\n\\x4a\\x15\\xab\\x28\\x06\\xf2\\xd0\\xdb\\x8d\\x7d\\x95\\x67\\xf6\\x11\\x56\\x69\\\r\n\\x4e\\x5a\\x5c\\xfc\\x28\\x76\\x57\\xe2\\x63\\x32\\xdd\\xe8\\xcb\\x03\\x48\\xe5\\\r\n\\x30\\xcc\\x1b\\xfe\\x29\\x38\\xf2\\x7a\\xe2\\xcb\\x21\\x39\\x7b\\x10\\xa1\\x59\\\r\n\\xbc\\x8c\\x9d\\xd5\\x88\\x33\\x23\\x4c\\x16\\x2e\\xd2\\x5d\\x2d\\x0f\\xf7\\xbc\\\r\n\\x9a\\xf6\\x44\\xd2\\x9d\\x76\\x02\\x24\\x49\\xb6\\xfa\\x94\\x05\\xf5\\xdc\\xb2\\\r\n\\x7d\\xac\\x2b\\xdd\\xd0\\x21\\x13\\xe8\\x9c\\x05\\xf4\\xfa\\xf8\\x8a\\xb3\\xe6\\\r\n\\xd1\\x17\\x79\\xec\\x35\\x16\\x60\\xd0\\x2c\\xfa\\xf7\\x1b\\xb6\\xc0\\xed\\x69\\\r\n\\xdf\\xa6\\x00\\xd2\\xf3\\x96\\x82\\x3e\\x5e\\xb8\\x9e\\x66\\x9b\\x2b\\x1c\\x49\\\r\n\\xf1\\xda\\x26\\xb1\\xd6\\x58\\x55\\x59\\xf6\\xd5\\x00\\x02\\xc0\\x16\\xa5\\x4e\\\r\n\\x93\\xfb\\x11\\x97\\x0c\\xc7\\x03\\x52\\xcf\\x0d\\x56\\x6a\\x54\\x86\\x5b\\xa4\\\r\n\\x5b\\x8a\\xc9\\x56\\x80\\x85\\xf0\\x9a\\x75\\x8f\\x8d\\x3a\\xf4\\xd9\\x68\\xd8\\\r\n\\x45\\xcf\\x43\\x4a\\x7c\\xf5\\x82\\xe4\\xba\\x3d\\x08\\x8a\\x43\\xf8\\x05\\x37\\\r\n\\xca\\x7c\\xbe\\x73\\xe7\\xf0\\xe5\\x2b\\x00\\x99\\x2a\\x94\\xa7\\xbe\\x43\\xcd\\\r\n\\x6d\\xc2\\xba\\x29\\xb6\\x9e\\x21\\x29\\xed\\xf5\\x9b\\x24\\xe5\\x51\\x89\\xa5\\\r\n\\x3c\\xbd\\xca\\xd5\\x3f\\x1d\\x59\\x29\\xa4\\xb9\\x7f\\x5e\\x0f\\x91\\x98\\xaf\\\r\n\\x94\\x0e\\x18\\xce\\x24\\xbe\\x2f\\x7e\\xca\\x54\\x81\\x8a\\x92\\xd8\\x73\\x91\\\r\n\\x1e\\x84\\x7c\\x52\\x7e\\x22\\xdd\\x32\\x45\\xcf\\xe8\\x75\\x1f\\xc8\\x45\\x16\\\r\n\\x84\\xad\\x64\\x64\\x9a\\x0c\\xde\\xdf\\xd8\\x99\\xce\\x00\\xc0\\x8d\\x68\\xfa\\\r\n\\xc1\\x28\\x94\\xd3\\x6c\\x6b\\xe4\\xda\\x9c\\x57\\xf4\\x24\\x49\\x4c\\x8a\\x61\\\r\n\\x74\\x08\\xde\\x58\\x30\\x09\\xc9\\xf4\\x80\\x6c\\xfa\\x7b\\x2c\\xb1\\xb1\\xa5\\\r\n\\xac\\x9d\\xe7\\xd3\\xa6\\x09\\x72\\xb3\\x28\\x4c\\xf9\\x96\\x9f\\x9a\\x91\\xd3\\\r\n\\xa0\\xca\\xb2\\xe8\\x98\\xbf\\xdf\\x75\\x28\\x68\\xe6\\x46\\x30\\x40\\xc0\\x01\\\r\n\\xfe\\x1f\\x85\\x5f\\x6a\\xd6\\xef\\x50\\x68\\xb1\\x7e\\x73\\x0d\\x52\\x1e\\xbe\\\r\n\\xf0\\x5d\\xf2\\xe1\\x2f\\x9a\\xd0\\xc6\\xe5\\xbc\\xc6\\xd0\\xce\\x91\\x18\\x15\\\r\n\\x4c\\xe0\\x77\\xd6\\xda\\xed\\x54\\x0b\\x57\\xa8\\x06\\xda\\x56\\x0a\\x8d\\x27\\\r\n\\x56\\x2a\\x3f\\x7c\\x8d\\x69\\x47\\x43\\x66\\x97\\x0a\\xf3\\x59\\xe6\\x94\\xa7\\\r\n\\xfd\\x9d\\x90\\xdc\\xb7\\x8f\\x85\\xd0\\xd1\\xf1\\x73\\x1b\\x25\\x65\\xca\\xe8\\\r\n\\xdc\\xf5\\xed\\x8c\\xf8\\xc4\\xb1\\xd3\\x52\\x0d\\xfa\\x30\\xc7\\x6f\\xd3\\x19\\\r\n\\x15\\x15\\x5d\\x96\\xd1\\x74\\x22\\x8b\\xbe\\x9f\\x32\\x29\\x27\\x28\\xd0\\xa9\\\r\n\\x2d\\xd1\\x60\\xf7\\x61\\xb3\\x51\\x83\\x22\\x0f\\x67\\x82\\x46\\xa2\\xe7\\x77\\\r\n\\x36\\x0f\\xd2\\xee\\x3b\\x30\\xcb\\xa3\\xb9\\x87\\x67\\x1c\\x17\\x0a\\x4d\\x4d\\\r\n\\x6d\\xae\\x50\\x6a\\x7f\\x55\\x2c\\xf8\\x36\\xd7\\xa5\\x16\\xf8\\xe6\\x02\\x38\\\r\n\\xe0\\x00\\x56\\xf3\\xf6\\x91\\xc6\\xcc\\xc9\\x96\\xb8\\xae\\xbd\\x83\\x72\\x39\\\r\n\\x0b\\x45\\xbe\\xd9\\x94\\x66\\x03\\xae\\x89\\x1a\\x0a\\x82\\x74\\x21\\xcc\\x17\\\r\n\\xe1\\xdb\\xcc\\xc1\\x59\\x16\\x4c\\xb4\\x7a\\x62\\xdf\\xa7\\xef\\xa2\\x7f\\x9f\\\r\n\\xd5\\x98\\x2b\\x15\\xfc\\xf4\\xda\\x8b\\x3d\\x29\\x53\\x25\\x5d\\xa3\\xc2\\x6e\\\r\n\\x92\\xc0\\xdb\\x64\\xca\\xdc\\x77\\xe6\\x22\\xab\\x65\\x04\\x31\\x53\\xbb\\x14\\\r\n\\x9d\\xa2\\x42\\xb6\\x29\\x6d\\xbc\\x7d\\xa5\\x56\\x31\\x70\\x80\\x7f\\x38\\xa4\\\r\n\\x6f\\x39\\xc6\\x81\\x0f\\xa0\\x3d\\xd5\\xaa\\x6f\\xb4\\x36\\x6d\\xf9\\xd7\\x7e\\\r\n\\xdd\\x6f\\xc4\\x72\\xec\\xfd\\x27\\x9f\\xdd\\xbd\\x2b\\x66\\xa8\\xb0\\xaf\\xc6\\\r\n\\xfc\\x96\\xab\\x21\\x1d\\x29\\xe4\\x95\\xa1\\x65\\xdf\\xf9\\xc2\\x81\\x35\\x51\\\r\n\\xa3\\xf7\\xcb\\x71\\xc5\\x7f\\xe1\\xcd\\x5f\\xa7\\x92\\x7c\\x3e\\x76\\x22\\xa0\\\r\n\\x86\\x21\\x36\\x7d\\xfc\\x60\\x20\\x47\\x76\\x0d\\x8a\\xf0\\x3b\\x57\\xa4\\xfc\\\r\n\\x1b\\xd1\\x39\\x69\\x1a\\x4f\\x83\\xd7\\xa8\\xab\\xf9\\xbf\\xde\\x4c\\x21\\x22\\\r\n\\xa1\\x51\\x0d\\x5e\\xb6\\x91\\xdb\\x16\\x91\\xc6\\x99\\x88\\xab\\xa1\\x26\\x31\\\r\n\\x8a\\x2b\\xb4\\x76\\xd6\\x88\\x25\\xd5\\x09\\x06\\xcf\\x50\\x3f\\x2f\\xad\\x76\\\r\n\\x7b\\x02\\xbc\\xea\\xef\\xe9\\x96\\x0e\\x0b\\x32\\x67\\x44\\xda\\xa1\\x34\\xe7\\\r\n\\x35\\xee\\x17\\x88\\x54\\xfa\\x48\\x9e\\xb0\\x29\\xd8\\xda\\x2e\\xb0\\xa4\\xbd\\\r\n\\x78\\xc6\\x08\\x49\\xa5\\x62\\xd9\\xaf\\x65\\x2c\\x30\\x48\\xae\\x88\\x44\\xcf\\\r\n\\x0e\\xfb\\x9b\\xf5\\x5b\\x08\\x20\\xb7\\xd7\\xd6\\x97\\x53\\xe4\\xe7\\xd7\\x32\\\r\n\\xe9\\x22\\x81\\xb3\\xcc\\xb1\\x42\\x97\\x0d\\xed\\x95\\xa7\\xb5\\xd7\\xfd\\xd9\\\r\n\\x56\\x55\\x23\\x50\\x78\\xff\\x00\\x88\\x62\\xef\\xc9\\x5d\\x14\\x3a\\xf4\\xc2\\\r\n\\x3d\\xd2\\x7a\\x86\\xe8\\x60\\xa1\\x02\\x81\\x09\\x4c\\x07\\x2a\\xbb\\xc5\\x2d\\\r\n\\x9b\\x8a\\x1f\\xc7\\x14\\x6a\\x91\\xd1\\x2f\\x03\\x8d\\x6a\\x4b\\xfa\\x32\\x73\\\r\n\\x8f\\x52\\x22\\xab\\xf9\\xb3\\x1f\\xcc\\xd6\\x9c\\x97\\x89\\x99\\x6b\\x85\\xd3\\\r\n\\x2f\\x75\\x91\\xd6\\xb5\\x85\\x3b\\x38\\xc9\\x29\\x89\\x4d\\x19\\xb1\\x8a\\x86\\\r\n\\xa0\\xd8\\x3f\\x7f\\xbd\\x6a\\x1a\\x57\\x1b\\x1d\\xce\\x93\\x74\\x9d\\x86\\x87\\\r\n\\x39\\x4b\\x83\\x95\\x4b\\xc0\\x1b\\x64\\x2b\\x6d\\x18\\xba\\x6c\\xe3\\x39\\x3d\\\r\n\\x8b\\x84\\xc1\\x46\\x8d\\x0b\\x54\\xfc\\x59\\xe3\\x6a\\x4f\\x1b\\x5d\\x72\\xc7\\\r\n\\xe7\\xd3\\x91\\xd5\\xe9\\x71\\x4a\\xe3\\xd7\\x65\\xfa\\x77\\x27\\x3d\\xae\\xf7\\\r\n\\x79\\xb7\\x10\\xdd\\x75\\x44\\x9c\\x3f\\x43\\x2d\\x78\\xc9\\x19\\x95\\x31\\x23\\\r\n\\x1d\\xb6\\x5f\\xed\\xd2\\x1d\\x7e\\xa9\\xfa\\x8b\\xab\\xa4\\xe4\\x4d\\xa6\\xab\\\r\n\\x3b\\x08\\x49\\x59\\x6c\\x4a\\x09\\x36\\x6e\\x5a\\xd6\\x9e\\x94\\xd5\\x12\\xa1\\\r\n\\x4d\\x43\\x76\\x63\\x3d\\xe0\\x61\\xa9\\x62\\x20\\x06\\x3b\\x69\\xfd\\x88\\x52\\\r\n\\xd6\\x5d\\x5d\\x83\\x2b\\xdf\\xd0\\xfb\\x73\\xfe\\x66\\x62\\x97\\xca\\xbb\\xd7\\\r\n\\xa1\\x57\\xab\\xd0\\xff\\x00\\x1e\\x29\\xfb\\x67\\x70\\x5b\\x82\\x18\\x24\\x0c\\\r\n\\x08\\xf3\\x11\\x7e\\x35\\x71\\x01\\x0d\\xac\\xf6\\xae\\x7a\\x5a\\xfc\\xc8\\x33\\\r\n\\x71\\x64\\x4a\\xff\\x00\\xc9\\xcb\\x25\\xf4\\x7b\\x28\\x9f\\xd3\\x2e\\x7e\\x7b\\\r\n\\x91\\x16\\x7b\\x42\\x53\\x8a\\xa6\\xc3\\xc5\\x2c\\x7f\\x1d\\x19\\x3a\\x22\\xf3\\\r\n\\xea\\x21\\x3c\\x38\\xcd\\xdb\\x20\\x68\\x7d\\x5f\\x8a\\xad\\xcd\\x9d\\xae\\xd6\\\r\n\\xd3\\x89\\x20\\x02\\xf3\\x61\\x68\\x9b\\xc1\\x80\\x54\\x71\\x3f\\x9a\\xe6\\x5b\\\r\n\\x8f\\xba\\x62\\xf4\\x4c\\x76\\x72\\xff\\x00\\xb8\\x1f\\x53\\xb9\\x34\\xbb\\xf7\\\r\n\\x14\\xac\\x43\\x74\\xfe\\xe3\\x87\\xc9\\xc8\\x1b\\x32\\xd2\\xe7\\xea\\x05\\x75\\\r\n\\x9c\\xf8\\x58\\x3e\\x57\\xf8\\x25\\x5b\\x76\\x73\\x15\\xc1\\x56\\x54\\xe4\\x43\\\r\n\\x88\\x68\\xd5\\x0f\\x5a\\x59\\xb5\\x98\\x28\\x4e\\xb4\\xda\\x83\\x56\\xbf\\x43\\\r\n\\x74\\x1c\\x7d\\x67\\x53\\xf9\\xb8\\x6b\\xf3\\x80\\xf5\\x9c\\x6f\\xf0\\x87\\xea\\\r\n\\x22\\x6a\\x2a\\xf8\\x8c\\x54\\x06\\xad\\x2e\\x48\\x9b\\x06\\x51\\x47\\x15\\x66\\\r\n\\x3f\\xf7\\x58\\x14\\x09\\x70\\xab\\x78\\xa5\\x3a\\xef\\x35\\x8d\\xe7\\x83\\x86\\\r\n\\x53\\x5c\\xed\\xad\\xf7\\x68\\x5d\\x9c\\xac\\x71\\xfa\\x0b\\x40\\x3c\\xcd\\x11\\\r\n\\x97\\x17\\x89\\x28\\x98\\x28\\xef\\x11\\x9c\\xbc\\x3f\\x7c\\x04\\x49\\x6e\\xc2\\\r\n\\x0c\\x37\\xe3\\x5f\\xe3\\x64\\x1c\\xc5\\x5d\\x03\\x6a\\xdc\\xb1\\xbf\\x34\\xe0\\\r\n\\xf7\\xf6\\xe4\\xf9\\x03\\xfe\\x79\\xcd\\x61\\x2d\\xad\\xa3\\x9c\\x45\\x7a\\x20\\\r\n\\x24\\x95\\x19\\x75\\xa3\\x16\\x9e\\xfa\\xed\\xd7\\xd5\\xe3\\x8e\\x8e\\xfa\\xce\\\r\n\\xef\\xdf\\xa4\\x7c\\x00\\xd1\\xb5\\x26\\xf8\\xea\\x2b\\x03\\xb2\\x07\\xb4\\x37\\\r\n\\x63\\x1d\\x06\\x17\\x77\\x4a\\xb9\\x3e\\xaf\\xaa\\x0b\\x72\\xb5\\x6c\\x1b\\xa4\\\r\n\\xdd\\x20\\xd7\\x1b\\x4c\\x36\\xe1\\x05\\xcf\\xd3\\x41\\x13\\x99\\x77\\x0d\\x2f\\\r\n\\x43\\x16\\xfc\\xc5\\xd9\\x22\\x44\\x0d\\x9f\\xc4\\xeb\\xbe\\x30\\x26\\xe1\\x4c\\\r\n\\x3e\\x2b\\xde\\xe6\\x9d\\xe3\\xd5\\xc4\\x14\\xe3\\x03\\x28\\xe7\\x5d\\xfd\\x69\\\r\n\\x74\\xc3\\xf8\\x0b\\xf1\\x4c\\x77\\x03\\x83\\x6d\\x3b\\x8d\\x8d\\x1d\\x40\\x1d\\\r\n\\xbd\\x4a\\x33\\x94\\x42\\xbe\\x4c\\x7f\\x45\\xc9\\xb0\\x45\\x57\\x78\\xaf\\xd3\\\r\n\\x1b\\x2d\\xd7\\x20\\xc8\\x78\\x49\\xc8\\xaf\\xe8\\xa7\\xf9\\xab\\x4b\\xc0\\xb7\\\r\n\\x1b\\x4c\\xcb\\x84\\xec\\xad\\x95\\xd3\\xab\\xc3\\x3d\\xa1\\x2e\\x7f\\xcc\\xbf\\\r\n\\xc8\\x79\\x2a\\xf3\\x51\\x63\\x23\\x56\\xea\\x2b\\xdb\\xdc\\x34\\xbc\\x05\\x45\\\r\n\\x34\\x4d\\xa4\\x52\\x67\\x2c\\x7c\\x96\\x52\\x0a\\xb7\\x08\\x3b\\x8e\\x08\\xe3\\\r\n\\xb2\\xc6\\x01\\x09\\x97\\x0b\\xee\\xc5\\x59\\x9f\\x1b\\x4e\\xb5\\x87\\xaa\\x0b\\\r\n\\xd4\\x11\\xa0\\x27\\xa6\\xa5\\x10\\xf1\\xb2\\x9a\\xd9\\xb8\\xbd\\x56\\x03\\x58\\\r\n\\x32\\xb0\\xa4\\x07\\x7e\\xa9\\x5d\\x1e\\x51\\x77\\xd1\\x2b\\xf2\\x87\\xf3\\x5b\\\r\n\\x10\\xcd\\x59\\x7b\\x35\\x02\\xf5\\x61\\x93\\x12\\x73\\x6a\\xaa\\xd4\\x69\\xf9\\\r\n\\x59\\xd7\\x63\\x92\\x12\\x3d\\xc4\\xbf\\x30\\xc1\\xb1\\x5e\\x0f\\x42\\xb0\\xd5\\\r\n\\xde\\x74\\x80\\x9f\\x92\\xc6\\x05\\xdb\\xf8\\x57\\xec\\xbb\\x78\\x4c\\x31\\x32\\\r\n\\x97\\xc4\\x88\\xc8\\x34\\x98\\xc4\\x33\\xcb\\x6d\\x2c\\x5a\\xf1\\x88\\xcb\\x6f\\\r\n\\xb3\\xab\\x3d\\x5d\\x5a\\x6b\\x15\\x3d\\xf6\\xbc\\x6f\\xf1\\x3b\\x04\\xe2\\x9b\\\r\n\\x93\\xdc\\x85\\x2d\\x7a\\x45\\x79\\x83\\xcb\\xdc\\xf4\\x62\\x31\\xc6\\x49\\x86\\\r\n\\xf4\\x7d\\x83\\x43\\x3f\\x69\\x59\\x78\\xcb\\x70\\x8d\\xa8\\xe1\\x4f\\xa4\\x1a\\\r\n\\xfc\\xfc\\x86\\x1e\\x97\\x2e\\xd1\\x10\\x37\\x7a\\x53\\x78\\xac\\xaf\\x22\\x85\\\r\n\\x82\\x23\\xb6\\x30\\x22\\x48\\x03\\x75\\x71\\x25\\x13\\xab\\xe9\\xa6\\x20\\xaa\\\r\n\\xa4\\x15\\x20\\xde\\x39\\xdd\\x1c\\xbb\\xae\\xab\\xc8\\xe8\\xb6\\x23\\x2a\\x9b\\\r\n\\xb0\\x82\\xb0\\x6f\\x49\\x89\\x31\\x2b\\x3c\\xca\\x51\\xbf\\x73\\x84\\xa5\\x21\\\r\n\\x4a\\xea\\x56\\x56\\xa6\\x59\\x76\\x94\\xb2\\x9e\\x79\\x3f\\x18\\x93\\xbe\\xed\\\r\n\\xbd\\x29\\x2b\\xa1\\x78\\x35\\xe8\\x1e\\x2e\\xb4\\x44\\xa8\\x0f\\x93\\xcb\\x03\\\r\n\\xef\\x66\\xc8\\x5d\\xa5\\x01\\x0d\\x65\\x16\\xdc\\x5d\\x48\\xdd\\x67\\x5f\\x9a\\\r\n\\x9d\\x01\\xe3\\x1b\\x27\\x6b\\x7e\\xc5\\xa6\\xed\\x71\\x6a\\x2b\\xe5\\x69\\x87\\\r\n\\x6d\\xc5\\x02\\xb3\\x9a\\x24\\xc6\\x2f\\xfb\\x06\\x68\\xb9\\x04\\x67\\xbc\\x8d\\\r\n\\xa6\\x38\\x16\\x00\\x2f\\x90\\x45\\x4e\\x85\\xac\\x1b\\x24\\xa1\\x4f\\x2f\\x8e\\\r\n\\x57\\x3e\\x96\\xfb\\xb3\\x7a\\x59\\xee\\x94\\xd5\\xa5\\xae\\xa0\\xa1\\x29\\x83\\\r\n\\x17\\x29\\x1b\\x52\\xb6\\x48\\x06\\x4c\\x88\\xe8\\xe1\\x09\\xbf\\x9d\\x62\\xf8\\\r\n\\x8b\\x3b\\x7d\\x57\\x3f\\xe8\\xcc\\x65\\xec\\x35\\x08\\xf1\\x9f\\x75\\xa6\\x58\\\r\n\\x7e\\x2e\\x6e\\x1a\\xf0\\x38\\x51\\x66\\x57\\xcc\\x0d\\x63\\x1f\\xb3\\x11\\xa0\\\r\n\\xa1\\x0a\\x2b\\x9f\\xa6\\xd4\\x01\\x62\\xda\\x0e\\xa5\\x9a\\xb6\\x2f\\xa8\\x5e\\\r\n\\x91\\x2b\\xb2\\x8e\\x99\\xdb\\xc2\\xb7\\xfb\\x8c\\x66\\x39\\x1a\\xe1\\xa9\\x87\\\r\n\\x3c\\x69\\x7f\\x74\\x1f\\x98\\xb9\\x6e\\x5f\\xb6\\xc9\\xdb\\x3a\\xb1\\x8f\\xd9\\\r\n\\x6a\\xbe\\x22\\xfe\\x8f\\xd3\\xf3\\x7b\\xe1\\xd1\\xf4\\x41\\xe2\\xfd\\x61\\x55\\\r\n\\x0f\\xb7\\xdc\\x54\\xa0\\x90\\xeb\\x76\\xd7\\xc6\\xf7\\x44\\xd4\\x60\\x33\\xb4\\\r\n\\x11\\xe3\\xff\\x00\\xf4\\x2c\\xc2\\xd3\\xe6\\xb2\\xe8\\x6f\\x3e\\x86\\xf7\\xf4\\\r\n\\xa3\\x0a\\xf6\\xfd\\x4c\\xfb\\xd1\\xb3\\xc5\\x8e\\x3d\\x5e\\x0b\\x56\\x3f\\x39\\\r\n\\x57\\xac\\xad\\xf1\\x8d\\x29\\xfe\\x1e\\x46\\xc8\\xad\\x42\\x5f\\xf3\\xd7\\x4f\\\r\n\\x44\\x95\\xb5\\xac\\xec\\x77\\xed\\x17\\xc7\\xc2\\xe1\\x6a\\x8b\\xdd\\x53\\x99\\\r\n\\xfd\\x75\\x31\\x0d\\x52\\x63\\x69\\xa0\\xfd\\x00\\x3f\\x59\\x67\\x46\\x63\\x45\\\r\n\\xb1\\x19\\xf9\\x03\\x19\\x4f\\x01\\x37\\x70\\x5d\\xe1\\x37\\xea\\xe7\\xce\\x9a\\\r\n\\x1c\\xfd\\xbf\\x94\\xe5\\xbf\\x3f\\xce\\xc3\\xb1\\x6b\\x7a\\x91\\xfd\\x22\\x6c\\\r\n\\x3c\\xa0\\x0f\\xc4\\xb3\\x36\\xc1\\x05\\xc9\\x64\\x74\\x2f\\x41\\x76\\x62\\x23\\\r\n\\xe4\\xd9\\x1a\\x89\\xef\\x8a\\xcc\\xab\\xa3\\x91\\xcd\\x1a\\x0c\\xb0\\xfe\\xb1\\\r\n\\xa3\\xea\\x46\\x2f\\x7b\\xeb\\xa7\\xe2\\xe3\\x67\\x85\\xcf\\xd2\\x67\\x1b\\x28\\\r\n\\xa5\\x21\\x34\\x51\\xf2\\x28\\x0e\\x65\\xe0\\x00\\x89\\x90\\xe1\\xa4\\x7b\\xe8\\\r\n\\x4c\\xc7\\x85\\x4a\\x8a\\x92\\xb7\\x95\\xf9\\x6c\\xc9\\xa1\\x42\\xa0\\xb5\\xdb\\\r\n\\x4f\\x15\\x90\\xfa\\x13\\x7b\\xf5\\x29\\x7a\\xf1\\x7a\\xd1\\x8e\\x2f\\xcd\\x09\\\r\n\\x43\\x25\\x7b\\x14\\x0a\\xf8\\x3b\\xda\\xa4\\x4b\\x0e\\xf8\\x94\\x8b\\xc2\\xd3\\\r\n\\xbd\\x41\\x8b\\xae\\xac\\xa5\\x80\\x0b\\x4e\\x04\\x53\\x33\\xd7\\xc9\\x55\\x54\\\r\n\\x0c\\x73\\x77\\x0a\\x44\\x8b\\x36\\x6a\\xe6\\xa5\\x93\\x4a\\x11\\xaa\\x18\\xbb\\\r\n\\x39\\x7f\\x35\\x7f\\xbd\\x39\\x9b\\x90\\xbc\\x33\\xc8\\x2e\\xdc\\x03\\x22\\xe2\\\r\n\\xcd\\x29\\x2f\\xf6\\xb6\\x0d\\x9d\\x39\\xe1\\x62\\x6d\\x27\\xf3\\x2c\\x44\\xf9\\\r\n\\xed\\x34\\x2b\\x73\\xb5\\x9a\\xa6\\x9d\\x4a\\x64\\xac\\x13\\x2b\\xcf\\x00\\x06\\\r\n\\xf9\\x52\\x1e\\x5e\\xfe\\x71\\xd4\\x2f\\xa1\\xbe\\xfc\\xbc\\x8f\\xf5\\x2f\\xb4\\\r\n\\x07\\x00\\x6a\\x76\\x25\\xd8\\x10\\x3e\\x91\\x50\\x90\\x6c\\xf9\\xc6\\xc1\\x92\\\r\n\\xb8\\x88\\x6e\\xa5\\x9c\\x93\\x1c\\x64\\xb5\\x99\\x5b\\xbc\\x74\\xac\\xbc\\x3a\\\r\n\\x04\\x3e\\xdd\\xf2\\xc2\\x15\\x42\\x7c\\x21\\xe0\\x72\\xd5\\xdd\\xaf\\xac\\x9e\\\r\n\\xd7\\xa9\\x51\\xf9\\xa2\\xd0\\x8f\\xd5\\xf6\\x6c\\x58\\x9c\\xeb\\x58\\xe4\\x82\\\r\n\\xa6\\xc5\\x5b\\x74\\x39\\x1a\\x50\\x79\\x0a\\x0c\\xba\\xf6\\xaf\\xdf\\xba\\x92\\\r\n\\x81\\x10\\x1d\\xb3\\x47\\xed\\x46\\x77\\x6a\\xf5\\xcf\\x3d\\x0f\\x84\\xf9\\xc1\\\r\n\\xa1\\xd2\\xe9\\x1a\\xe0\\xcd\\xf1\\x9c\\xa3\\x72\\xa0\\xa8\\x30\\xbd\\x26\\x57\\\r\n\\x76\\xc1\\x03\\x8c\\xbc\\xf8\\x08\\xd1\\xd5\\x64\\x74\\x53\\x6a\\xd5\\xa3\\x62\\\r\n\\xd9\\x79\\x9c\\xd8\\x96\\xd6\\x2b\\x83\\x94\\x64\\x98\\x6e\\x7c\\xd7\\x2b\\xec\\\r\n\\x39\\x53\\xa1\\x74\\xe4\\xf3\\xa2\\xb5\\x9d\\xda\\x0e\\x93\\xa2\\x18\\xba\\x7e\\\r\n\\xfa\\xef\\xdf\\x91\\xc8\\x92\\xd0\\xbb\\xc5\\xa6\\x79\\x64\\xea\\xc4\\xd0\\x87\\\r\n\\x3b\\x39\\xe5\\xe7\\x1f\\x8e\\x6c\\x9e\\x31\\x65\\x61\\xf7\\x05\\x9a\\x28\\x8b\\\r\n\\x22\\xe6\\xc4\\x85\\x3e\\x0a\\x8b\\x60\\x53\\x4f\\xc0\\x5f\\x6a\\xdc\\x5f\\x11\\\r\n\\xe1\\x16\\xf7\\xae\\xb9\\xd0\\x95\\x38\\x59\\xce\\x1b\\x85\\x3f\\xd6\\xe1\\x6e\\\r\n\\xd1\\x3a\\x48\\x02\\x6e\\xd4\\xfc\\x76\\x79\\x1f\\x65\\x73\\xc4\\x63\\xef\\x9a\\\r\n\\x31\\xcd\\xb3\\x6a\\xa0\\x07\\x3c\\x4e\\xab\\x76\\x42\\xac\\xd7\\xb5\\x80\\x12\\\r\n\\x50\\xd1\\x4a\\x3f\\x11\\xfa\\x34\\x56\\x53\\xf9\\x44\\x53\\xca\\x46\\x9c\\xe9\\\r\n\\x3b\\xf9\\xeb\\x88\\x50\\xfd\\x02\\xf6\\x34\\x83\\x87\\x1e\\x57\\x4f\\x50\\x13\\\r\n\\x88\\x3e\\xa7\\x96\\x73\\x3e\\xa8\\x97\\x86\\x92\\xfd\\x9c\\xc8\\x90\\x3c\\xc4\\\r\n\\x42\\xa7\\xc4\\x23\\x4f\\x1f\\xd2\\x5d\\xe2\\x3e\\xe4\\x6e\\x48\\x19\\x30\\xe5\\\r\n\\x5d\\x81\\x14\\x72\\xdd\\xf4\\x19\\xba\\xb0\\xe7\\x51\\xf1\\x6e\\xa6\\xd1\\x7f\\\r\n\\xb0\\x4e\\xd9\\x97\\xb6\\x69\\x31\\x6f\\x30\\x25\\x16\\x01\\x30\\x79\\x9d\\xbe\\\r\n\\x09\\x89\\xfe\\x31\\xd7\\x0d\\x88\\x40\\x37\\x21\\x64\\xfa\\xa9\\xdf\\x29\\xfd\\\r\n\\x3b\\xa2\\x19\\x89\\x6f\\xe5\\x3c\\x5d\\xff\\x00\\x45\\x0d\\xfb\\xdd\\x3a\\x19\\\r\n\\x5e\\x3a\\xb6\\xa3\\x1d\\x22\\xec\\xd3\\x39\\xc5\\xe7\\xc0\\xc0\\xc2\\x2e\\xbb\\\r\n\\x71\\xc7\\x3f\\x27\\x5c\\x19\\x75\\x1e\\x65\\xda\\x1f\\x7b\\x02\\xa2\\x6c\\x76\\\r\n\\xc9\\x8b\\x71\\xc6\\x15\\xc8\\xca\\xf2\\x11\\x2d\\xab\\xbf\\xaa\\x24\\xfb\\x62\\\r\n\\x59\\x17\\x73\\xd2\\x69\\x46\\x32\\x0b\\xe7\\x82\\x40\\x2a\\x7d\\xa0\\xa8\\x93\\\r\n\\x26\\x23\\x2c\\x70\\x61\\xf5\\x81\\x5a\\x47\\x2c\\xb9\\x69\\xeb\\x41\\xc7\\xe9\\\r\n\\xc8\\xe5\\xeb\\xe4\\x2f\\x24\\x96\\xdb\\x68\\xd9\\x14\\xb6\\x53\\xdc\\xcb\\x5b\\\r\n\\x37\\x8d\\x59\\x09\\xe8\\xa6\\x2b\\x3b\\xd9\\x06\\x28\\xd9\\x36\\xc1\\xf8\\xb3\\\r\n\\xda\\xb5\\xad\\x44\\xe6\\xd5\\xa4\\x17\\xbf\\xa2\\xc1\\x04\\x83\\xa1\\x81\\xa2\\\r\n\\x30\\xc1\\x27\\x79\\xe0\\x69\\xff\\x00\\x2e\\xcb\\x63\\xac\\x45\\xfc\\x83\\x10\\\r\n\\xcd\\xbd\\xaf\\x04\\x53\\x84\\xda\\xbd\\x03\\x2a\\x6a\\xbf\\x03\\x97\\x86\\xa3\\\r\n\\x93\\x48\\x7f\\xa0\\xf3\\x1d\\xfb\\x50\\x1f\\x62\\x09\\x6c\\xa4\\x19\\x1d\\xe7\\\r\n\\x0e\\xf8\\xe4\\x26\\x13\\xfd\\x2d\\x46\\x8c\\x52\\xb2\\xe6\\xf0\\x73\\xba\\x92\\\r\n\\xdf\\x00\\xf9\\xb9\\xb8\\xb9\\x4f\\xe8\\x9a\\xf6\\x82\\x6d\\x63\\x37\\xa0\\x14\\\r\n\\x34\\xcc\\xee\\x35\\x40\\x3a\\x80\\xbf\\x35\\x10\\xe8\\xdf\\xb2\\xb3\\x42\\xc0\\\r\n\\x70\\x20\\xbf\\xa7\\x48\\x5c\\xf7\\xe8\\x89\\x25\\xec\\xc6\\xda\\xc8\\xea\\x7b\\\r\n\\x37\\x1a\\xe3\\x6c\\xd4\\xe7\\x93\\xbd\\xad\\x7b\\x43\\x0b\\x20\\xc6\\xb3\\x94\\\r\n\\x49\\xbd\\x21\\xad\\xd8\\x3b\\xce\\x06\\x3b\\x60\\xa9\\x80\\xd8\\x46\\x2e\\x88\\\r\n\\xdc\\xac\\xa4\\x65\\xd3\\xa5\\xcd\\x1d\\xa8\\xa5\\xa8\\xcb\\x6c\\x49\\x85\\xbe\\\r\n\\xe8\\xc0\\x79\\x69\\x3c\\x03\\xfb\\x67\\x1c\\x0e\\x12\\xc0\\xc7\\xda\\x81\\x2d\\\r\n\\x89\\x87\\x65\\x1f\\x23\\xdf\\x0d\\xd7\\x62\\xc1\\x38\\xc0\\x79\\xbc\\x50\\x16\\\r\n\\x9c\\xef\\xde\\xc9\\x16\\x25\\xab\\xe9\\xb8\\xe7\\x27\\xad\\x5e\\xfd\\xb4\\xe8\\\r\n\\xb6\\xa0\\xea\\xa6\\x24\\x08\\x56\\xe0\\x52\\x69\\x78\\x73\\x0e\\x99\\x6c\\x4c\\\r\n\\x77\\xc7\\x80\\x12\\xa2\\xf2\\xe3\\x80\\x14\\x29\\xf6\\x22\\xdd\\x4b\\xb2\\x83\\\r\n\\xb0\\x8d\\xf4\\x08\\x5e\\x8f\\xb8\\x27\\x70\\x01\\xa9\\x6f\\x92\\xb2\\x25\\x1f\\\r\n\\x17\\xe6\\x76\\x3d\\x8e\\x55\\x3d\\x91\\x19\\x0c\\x22\\x6b\\x6c\\xee\\x78\\xf7\\\r\n\\xae\\x79\\x7e\\xa2\\x73\\x35\\x97\\xed\\x2d\\x6e\\x23\\xd9\\x19\\xdd\\xe2\\x53\\\r\n\\xba\\x78\\x47\\x95\\x5d\\xdb\\x75\\xc5\\x0c\\x76\\x8c\\x1e\\x46\\x10\\x6e\\x11\\\r\n\\xd3\\x19\\xb5\\x84\\x8e\\xd4\\x9e\\xb9\\xd0\\x7a\\xc6\\xb8\\xed\\x99\\x21\\x76\\\r\n\\x9a\\x86\\x67\\xa5\\x29\\x67\\xf5\\xb8\\xca\\x87\\x42\\x1d\\x74\\x5a\\x62\\x3a\\\r\n\\x80\\x15\\xd9\\x2a\\x5a\\x25\\x03\\xee\\xa7\\x61\\x93\\xa1\\xc9\\xe5\\xd9\\xba\\\r\n\\x36\\x10\\xaa\\xfe\\xaf\\xb8\\x29\\xfd\\x9f\\xb1\\x73\\xa4\\x27\\xdf\\x2f\\xfa\\\r\n\\x81\\x60\\x8d\\x36\\x15\\xe9\\x05\\x5a\\xea\\x10\\xb2\\xf0\\x11\\x55\\xc6\\xcc\\\r\n\\xd1\\x52\\x62\\x2c\\x29\\x94\\x52\\xd1\\xab\\xc1\\xf1\\x22\\x1c\\x98\\x73\\x64\\\r\n\\x24\\x68\\x63\\xfb\\xac\\xd7\\x78\\xcc\\xb6\\x58\\x2b\\x5c\\x63\\x8a\\xdc\\x27\\\r\n\\x4b\\xf5\\x88\\x44\\x86\\x65\\x5a\\xfc\\x9a\\xf6\\x92\\x52\\xce\\xfe\\x1a\\x00\\\r\n\\x06\\x20\\xeb\\xb9\\xbd\\xae\\xfe\\x09\\x4b\\xbb\\x43\\xe2\\xa8\\x15\\x20\\x5b\\\r\n\\xcc\\x71\\xe8\\x24\\x40\\xa9\\x55\\xcd\\x73\\x05\\xe4\\xa2\\xe6\\x75\\xea\\x0d\\\r\n\\xb7\\xc2\\xc0\\xb7\\xbd\\xc0\\x14\\x83\\x87\\x7d\\x92\\xe5\\xad\\x74\\x97\\x58\\\r\n\\x6f\\x9a\\x45\\x39\\xd2\\x08\\xbf\\x9e\\x29\\xb2\\x1a\\x7b\\x4d\\xca\\x15\\x22\\\r\n\\xb0\\x70\\xff\\x00\\x03\\xa1\\x2b\\xd1\\x61\\x73\\x3b\\x46\\x83\\x16\\x31\\x41\\\r\n\\x5f\\x0b\\xc1\\x86\\x46\\xdb\\x82\\x04\\xc8\\x9e\\x28\\x69\\x0e\\x74\\xeb\\xf4\\\r\n\\x99\\x0b\\x6e\\x22\\xbf\\x78\\x88\\xba\\xe2\\x34\\x97\\x30\\x37\\x2a\\xa5\\xd1\\\r\n\\xce\\xc7\\x3d\\xed\\x53\\x32\\x87\\xe1\\xe0\\xcb\\xd3\\x86\\x40\\xb3\\x9c\\xaa\\\r\n\\xb6\\xb9\\xd3\\x58\\x91\\x6c\\x45\\xdd\\x87\\x0e\\xee\\x82\\x1d\\xd6\\x6f\\x9a\\\r\n\\x42\\x2d\\x23\\x84\\x5e\\x9b\\x2a\\x2d\\x7a\\x77\\x04\\x80\\x07\\x31\\x27\\x31\\\r\n\\xa5\\x2b\\xc1\\x59\\x7c\\x76\\xad\\x1f\\x2f\\x59\\xd8\\x27\\xab\\x75\\xcc\\xab\\\r\n\\x44\\xe9\\xe4\\x82\\x8e\\x17\\x96\\xca\\x62\\x9b\\x56\\x10\\xf2\\xdb\\xb2\\xeb\\\r\n\\xcc\\x25\\x60\\x39\\x2e\\x0e\\xc2\\x4e\\xa1\\x21\\x3a\\xe0\\x97\\xaa\\x81\\x6b\\\r\n\\xe8\\xa3\\xcc\\x3e\\xbb\\x98\\xb9\\x2f\\x34\\xed\\x6e\\x34\\x4c\\x3c\\xd1\\x7d\\\r\n\\x5e\\xbb\\x27\\xa3\\x94\\xb3\\x8a\\x13\\x0e\\x29\\x56\\xb6\\x11\\x76\\xc1\\x03\\\r\n\\x54\\x7c\\xcd\\x60\\xd7\\x85\\x5c\\x59\\x24\\x8a\\x8b\\xbe\\x5f\\x15\\x6a\\x00\\\r\n\\xee\\x52\\x0a\\x74\\x72\\xad\\xf7\\x78\\xdc\\x3f\\x77\\xd7\\x6a\\xcf\\x23\\x5f\\\r\n\\x2b\\xa9\\x57\\x5d\\x56\\x48\\x58\\x1e\\xea\\xe7\\x82\\xe9\\x78\\x7b\\xd1\\x9e\\\r\n\\x61\\x4a\\x49\\x03\\x52\\x08\\xa6\\xb1\\x5b\\xbb\\xe3\\xe6\\xcf\\x53\\x2a\\xfa\\\r\n\\x98\\x90\\x99\\x89\\x41\\x79\\x5e\\x8f\\xaf\\xab\\xd7\\x54\\x74\\xd9\\x9e\\x91\\\r\n\\xbe\\xc8\\x17\\x94\\x77\\xbf\\x3a\\xd1\\x65\\xb9\\xa1\\xa8\\xd0\\x45\\xd2\\xee\\\r\n\\x42\\x61\\xe0\\xc6\\xbc\\xec\\x25\\x94\\xef\\x41\\xdd\\x74\\x4f\\x1f\\x28\\x14\\\r\n\\xa0\\x95\\xfe\\xff\\x00\\x44\\xb1\\x1a\\x3a\\xc4\\xf2\\x06\\x01\\xad\\x0c\\x6a\\\r\n\\x5f\\x6f\\x51\\xf6\\x4d\\x2b\\x3d\\x01\\xf3\\x8c\\x7e\\x3a\\xd0\\xf6\\x9f\\xe8\\\r\n\\x8f\\xd4\\x9d\\xb8\\xfe\\x26\\x97\\x20\\x79\\x6f\\x2d\\x2f\\x6d\\x97\\xa3\\xd4\\\r\n\\x9a\\x87\\xca\\xa5\\x39\\x6c\\xbc\\xe4\\x44\\xc0\\x31\\xc2\\xfa\\x6a\\x24\\x88\\\r\n\\x69\\x89\\x41\\x89\\x56\\xf2\\xf4\\xbb\\x24\\xcb\\x62\\xfe\\xe7\\x1c\\xb3\\xa0\\\r\n\\xf3\\xda\\x79\\xb4\\x5e\\x5b\\x1e\\x29\\x26\\xac\\x26\\x3c\\x86\\xc9\\x21\\x1f\\\r\n\\x1b\\xa3\\x83\\x25\\x86\\x8c\\xfb\\xc3\\xda\\x76\\x7c\\xf1\\x57\\x59\\x9f\\x84\\\r\n\\x0b\\x2f\\x2d\\x33\\x05\\x1b\\x9f\\x89\\xca\\x3d\\xec\\x84\\x58\\x86\\x99\\xa0\\\r\n\\x11\\xab\\xe5\\x82\\x5a\\xed\\x75\\x9d\\x89\\x67\\x39\\x90\\x78\\x72\\x81\\x32\\\r\n\\xd8\\xe3\\xc2\\x4b\\x41\\xb7\\x2f\\xa6\\xba\\x93\\x5b\\xc2\\x5f\\xee\\x02\\x8a\\\r\n\\xd4\\xae\\xeb\\x69\\x6a\\xa8\\xa1\\x1b\\x31\\xae\\x92\\x31\\xac\\x9e\\xb4\\xf0\\\r\n\\x6e\\xac\\x22\\x00\\x47\\x70\\xdc\\x32\\xc8\\x69\\x05\\x9f\\x8f\\x63\\x94\\x7e\\\r\n\\x52\\x0e\\x9f\\xaa\\xa8\\xd3\\xac\\xed\\x50\\x4c\\xfc\\x6c\\xf5\\x0e\\x1e\\x87\\\r\n\\xa7\\x99\\xe0\\x16\\x21\\x79\\xfb\\xaf\\xd7\\x98\\x5a\\x0c\\x6f\\xae\\x2e\\x96\\\r\n\\xac\\x52\\x35\\xa7\\xda\\xc1\\x9a\\x9c\\x6c\\x71\\x89\\x5d\\x66\\xc6\\x41\\x0b\\\r\n\\x80\\xeb\\xb4\\x2e\\x7b\\x0c\\x16\\x83\\x26\\x8f\\x2f\\x9e\\x5a\\xe5\\x12\\x5b\\\r\n\\x2a\\xd5\\x27\\x0f\\x75\\x88\\x6c\\x71\\xf1\\x9b\\xc7\\x25\\x3e\\x94\\xb7\\x6b\\\r\n\\x47\\x0b\\x3d\\x4d\\x6b\\x88\\x8d\\x9a\\xd5\\x19\\xeb\\x91\\x80\\x45\\x11\\x63\\\r\n\\x83\\x61\\xe9\\xc3\\xd2\\xbd\\x74\\x62\\x45\\xcd\\xe2\\xa4\\xf9\\x8e\\x7f\\x22\\\r\n\\x91\\xb8\\x9d\\x90\\x36\\xea\\x52\\x71\\x97\\x99\\x02\\xe6\\x52\\x63\\x24\\x79\\\r\n\\x5e\\x02\\x40\\x19\\x40\\xf3\\xc9\\x4f\\xb8\\x8b\\x3f\\xb4\\x37\\x09\\xf9\\xd2\\\r\n\\x37\\x9e\\x20\\xb9\\xb7\\xf6\\x12\\xe0\\x93\\x8e\\xfd\\xd6\\xa7\\xdd\\x73\\xbd\\\r\n\\x98\\x9d\\x9f\\xb0\\xab\\x20\\xa1\\x01\\xfb\\x24\\x6a\\xb2\\x06\\xbf\\x2d\\xb7\\\r\n\\xea\\x38\\x33\\x54\\x7d\\xd3\\x92\\xd5\\x14\\x34\\xb6\\x5b\\xbc\\xe4\\x3e\\x52\\\r\n\\xad\\x05\\x34\\x10\\xb8\\x39\\xdb\\x0f\\x4c\\x71\\x4d\\x8c\\xd4\\xfc\\xf7\\x6a\\\r\n\\x72\\xcf\\x97\\xde\\xce\\xe0\\xa0\\xd2\\xd4\\xbd\\x02\\x6b\\xd9\\xc8\\x48\\x4c\\\r\n\\xb5\\xb4\\x3b\\x0e\\xad\\x93\\x62\\x82\\x75\\xe6\\xad\\xfa\\x9f\\xaf\\xc7\\x5f\\\r\n\\x31\\x01\\xdc\\x16\\x67\\x09\\xd8\\x37\\x98\\x2f\\x26\\xcf\\x5c\\xa1\\xc6\\x64\\\r\n\\x15\\x6f\\xd8\\xe2\\x6c\\x32\\xcc\\xe2\\x57\\x78\\x9b\\x4d\\x87\\x20\\x50\\x3f\\\r\n\\x74\\x83\\xdf\\xa7\\xc3\\x79\\x5b\\xae\\xba\\xa5\\x74\\xb0\\x3f\\xac\\x72\\x5c\\\r\n\\x93\\xa0\\x59\\xf3\\x5d\\x95\\xe0\\xb9\\x72\\xf2\\x25\\x85\\x58\\xec\\x7f\\x9f\\\r\n\\x98\\x24\\x6d\\xf3\\x5a\\xca\\xf6\\x79\\xc0\\x7f\\x99\\x5e\\x18\\x43\\x78\\x9d\\\r\n\\xc0\\x62\\x42\\x5a\\x95\\xbf\\x55\\x98\\x2c\\x2e\\xfd\\x03\\x92\\x93\\x62\\xe4\\\r\n\\x4d\\x3b\\x63\\xe7\\xa9\\x0c\\x4a\\x44\\x98\\xfd\\x11\\x5c\\xa1\\x56\\xcd\\xd9\\\r\n\\x1f\\x02\\x24\\xcb\\xc4\\xa6\\x91\\xc2\\xfd\\x1b\\x29\\x4f\\xfa\\x9e\\x52\\x2b\\\r\n\\xa2\\x06\\x3f\\xd1\\x4f\\x25\\x2f\\x19\\x2e\\xa3\\xc1\\xb2\\xca\\xc3\\xbe\\x2b\\\r\n\\xb7\\x0b\\x66\\xb3\\x96\\x4c\\x2a\\xc2\\x4a\\xf9\\x1d\\xc2\\x53\\x24\\x2c\\x29\\\r\n\\xa2\\xe2\\xf3\\xde\\x7e\\xfc\\xc9\\x5f\\xb0\\xc3\\x76\\x09\\x67\\xd2\\xb3\\xe1\\\r\n\\x46\\x66\\x18\\x80\\x3a\\x9b\\x1a\\xf9\\xb2\\xa6\\x36\\x8c\\x40\\x5e\\xf1\\xf5\\\r\n\\xca\\x15\\xc2\\xb9\\x0a\\x73\\xf9\\xaa\\xce\\xbf\\xaa\\xaf\\xf9\\xd6\\xa9\\x62\\\r\n\\x22\\xf1\\xe8\\x08\\x0d\\x54\\x98\\x91\\xb2\\xec\\x32\\x58\\xe9\\x17\\x26\\x76\\\r\n\\xc6\\x2f\\xfe\\x49\\xd8\\x51\\xcf\\xeb\\x84\\x60\\x8b\\x79\\x51\\x5d\\x7c\\x65\\\r\n\\xbd\\x4b\\x70\\xea\\xa8\\x12\\xb6\\x51\\x41\\xba\\xc5\\x2d\\x3f\\x56\\x7c\\x7a\\\r\n\\x4f\\x74\\x5e\\x88\\x77\\x33\\xa1\\xa9\\x0a\\x66\\x12\\xc8\\x02\\xb0\\x31\\x34\\\r\n\\x3b\\x0f\\x4e\\x67\\x29\\x28\\x68\\x2b\\xb9\\xa3\\x4f\\x69\\x70\\x85\\x0f\\xe8\\\r\n\\x63\\x4d\\xbd\\x21\\x5f\\x4a\\x83\\x06\\x79\\x98\\xfa\\xe2\\x91\\xb5\\x7a\\xe6\\\r\n\\xce\\x55\\x10\\xfd\\x79\\xe8\\x23\\xbe\\x86\\x45\\x03\\x0a\\x54\\xca\\xf7\\x17\\\r\n\\xdc\\x1c\\xf7\\x1f\\x0d\\xea\\x9a\\xf1\\x7c\\x5d\\x3d\\x1d\\x10\\xd7\\xd6\\x16\\\r\n\\x2e\\x1c\\xd5\\x05\\xe8\\x0d\\xeb\\xde\\x64\\x89\\xee\\x26\\x1a\\x1e\\x9d\\xe8\\\r\n\\x8b\\x20\\x89\\x0a\\x84\\xa7\\x13\\x8d\\x08\\xa7\\x8e\\x84\\x7c\\x55\\x5e\\x3e\\\r\n\\x08\\xaf\\x2e\\x79\\x31\\x9a\\x1e\\x72\\xce\\xba\\xc8\\x99\\xde\\x88\\x96\\xfe\\\r\n\\x96\\x7b\\xac\\x1c\\x8e\\xc9\\xb1\\x0e\\xc9\\x2b\\x0e\\x78\\x4b\\xdd\\x62\\xee\\\r\n\\xe4\\xa2\\x6a\\x31\\x04\\x2c\\xe4\\xca\\x76\\x0d\\x16\\x4a\\x60\\xb0\\xc2\\x58\\\r\n\\x57\\x33\\xb3\\x6f\\x3b\\xbe\\x4f\\x6d\\xc8\\xd0\\xa9\\x72\\x6a\\xb0\\xbb\\x61\\\r\n\\x47\\x77\\xd6\\x1d\\x05\\xcf\\xce\\xa4\\x84\\x67\\x6c\\xcc\\x9f\\x4f\\x6d\\x7d\\\r\n\\xad\\xfa\\x88\\xac\\xb8\\x6c\\x28\\x6f\\x54\\x36\\x16\\x74\\x0e\\x79\\x55\\xa8\\\r\n\\x18\\xc3\\x29\\x37\\x74\\x7e\\xb7\\x94\\x2c\\x9f\\x1b\\xf2\\xe1\\x2c\\x69\\x1b\\\r\n\\x52\\x5e\\x4b\\x35\\x3f\\xb3\\x41\\xd9\\x17\\xce\\x3b\\x1c\\x15\\xde\\xaf\\xbb\\\r\n\\xed\\x0e\\x45\\xd9\\x63\\xd7\\xf0\\xc6\\x79\\x5b\\xbd\\x94\\x55\\x4d\\x49\\x03\\\r\n\\x04\\x02\\xbe\\xbd\\x44\\x55\\x9c\\xf2\\x4b\\x0e\\xb2\\x91\\x1a\\x38\\x7d\\xe6\\\r\n\\x0a\\x77\\x18\\x05\\x48\\x19\\x25\\x3f\\xbe\\xfc\\x34\\xf0\\x1c\\x97\\xf2\\x1d\\\r\n\\x89\\x72\\xc1\\x2a\\x5f\\xda\\x8b\\xa5\\xd0\\xbc\\x5d\\x5e\\xe4\\x8c\\xe8\\xc9\\\r\n\\xa5\\x7f\\xba\\xf0\\xf6\\x03\\xd6\\xe9\\x36\\x3e\\x8b\\xed\\x08\\xb0\\xd7\\x45\\\r\n\\x54\\x9d\\x1d\\x5a\\x0d\\x47\\xc1\\xa5\\x6b\\xd7\\x15\\x7e\\x7f\\x7d\\x55\\x6f\\\r\n\\xd7\\x9c\\xb0\\x38\\xc5\\x99\\x82\\xde\\xa2\\x6a\\x6f\\xeb\\x11\\xf4\\xc2\\x81\\\r\n\\x41\\xf5\\xad\\xe8\\x84\\xd5\\x00\\x38\\x5a\\x6e\\x0a\\xa3\\xdc\\x27\\xc4\\x67\\\r\n\\xac\\x3e\\x24\\x6b\\x2e\\x3d\\xd7\\x3c\\x6f\\xda\\xeb\\x04\\x2f\\xbe\\xac\\xda\\\r\n\\x2c\\x01\\x24\\xc3\\x13\\x55\\x7c\\x07\\x0b\\xb6\\x64\\xd2\\x60\\x85\\x27\\x6d\\\r\n\\x29\\xfe\\x16\\x20\\xea\\xe2\\x97\\xec\\x1c\\xe8\\x27\\x81\\x99\\xe0\\xae\\xbf\\\r\n\\xd3\\xfd\\x54\\x81\\xab\\x3a\\x92\\xa6\\xd1\\x5b\\x0a\\xd9\\xb6\\xc5\\xb7\\xc5\\\r\n\\x5c\\x16\\xe6\\x05\\xc8\\xdf\\x14\\x27\\xec\\xb0\\xf2\\x57\\xbe\\xae\\x8a\\xb9\\\r\n\\xa3\\xe0\\x0f\\xaf\\xce\\xbf\\x8a\\xb5\\xa7\\x42\\x97\\xd1\\x85\\xfc\\x1c\\xbb\\\r\n\\x23\\x3a\\x06\\x65\\xfc\\x4b\\x5f\\x39\\x7c\\xb1\\x2e\\xb8\\x47\\x76\\x20\\x78\\\r\n\\x70\\x23\\x50\\x42\\xeb\\x08\\x44\\x62\\x26\\x6e\\x6a\\x41\\x4f\\x38\\x87\\x9a\\\r\n\\xd3\\xf4\\x5c\\x37\\xa6\\x55\\x63\\x7c\\xb4\\x14\\x6a\\x27\\x57\\x2a\\x9c\\xe1\\\r\n\\xf9\\x91\\x74\\x7f\\xf6\\x95\\x25\\xaa\\xb2\\xf1\\xd1\\x61\\x3c\\xa9\\xc3\\x3f\\\r\n\\x77\\x6c\\x28\\x0a\\x35\\xf8\\x8f\\xac\\xb7\\x1b\\x8a\\xa7\\x47\\x34\\x91\\xa6\\\r\n\\xab\\xde\\x28\\xf2\\x60\\xff\\x00\\x38\\x63\\x77\\xf3\\x3c\\x00\\x41\\xf7\\xcf\\\r\n\\x79\\xc7\\xd0\\x33\\xec\\xd8\\x2f\\x51\\x9c\\x71\\x00\\x3a\\xd9\\x0e\\xb6\\x0a\\\r\n\\xa4\\x3d\\x40\\xb9\\xcf\\xbb\\xfc\\x05\\x95\\x55\\x64\\x58\\xe4\\x03\\xe8\\xfa\\\r\n\\x16\\x72\\x84\\x86\\xfd\\xb5\\xb6\\xe0\\x82\\xfb\\x97\\x47\\x36\\x63\\x98\\x39\\\r\n\\xce\\xd7\\x01\\x44\\xae\\x03\\x69\\xc5\\x94\\x17\\x0a\\xc0\\xd0\\x03\\xb6\\xe4\\\r\n\\x27\\x92\\xa2\\x1c\\xf2\\xc2\\x18\\x61\\x66\\x77\\xe6\\xbd\\x2a\\x8f\\x9a\\xfe\\\r\n\\x22\\xea\\xdf\\x7c\\x4e\\x1d\\x05\\xd0\\x8a\\x85\\x4c\\x87\\xf5\\xa2\\xb9\\x6c\\\r\n\\x95\\x2b\\x62\\xc5\\x3e\\x2d\\x06\\xf1\\xe2\\xac\\x91\\xce\\x94\\x1f\\xa6\\x79\\\r\n\\x6d\\x5b\\x6d\\xa1\\x7d\\xbe\\xa5\\xa3\\x47\\xe1\\x10\\x74\\x1d\\x31\\xd9\\x79\\\r\n\\xd0\\x07\\x7f\\x34\\xc4\\x0d\\x5d\\x25\\x28\\x7f\\xcc\\xe6\\x92\\x84\\x78\\xda\\\r\n\\x7b\\x53\\xf4\\x86\\xae\\x6f\\x25\\x81\\x48\\x27\\xc9\\xee\\x2e\\xf8\\xbb\\x74\\\r\n\\x86\\x5c\\x21\\xd5\\x68\\x84\\x2f\\xfa\\xc5\\xe4\\xe6\\x0d\\x5e\\xf5\\x65\\xae\\\r\n\\xbc\\x59\\xbf\\xce\\x57\\xcf\\xdf\\xb4\\x10\\x8b\\x1d\\xb8\\x06\\x93\\x53\\x78\\\r\n\\x05\\x83\\xcc\\x8c\\x55\\x31\\x13\\x57\\x10\\x32\\xca\\x37\\xfd\\x29\\xd6\\x76\\\r\n\\xe8\\xa4\\x80\\x86\\x6a\\x92\\xc2\\xb6\\x6d\\x38\\x30\\x27\\x56\\xb4\\xfa\\xaa\\\r\n\\x72\\xf5\\x6f\\xdd\\xf1\\xd2\\x0b\\xd3\\x3c\\xd0\\x69\\x8f\\x0c\\x70\\xdc\\xaf\\\r\n\\xac\\x99\\xd9\\x8b\\xe0\\x53\\xac\\x58\\x26\\xfd\\x75\\xf2\\xe6\\x11\\x55\\x02\\\r\n\\xd9\\x2a\\x27\\xa5\\xf1\\x33\\xd6\\xd4\\x54\\xc3\\x6c\\x5f\\xbf\\x58\\xbe\\xb9\\\r\n\\x64\\xc1\\x11\\xd6\\x5d\\x9e\\xd1\\x8e\\x2d\\xa5\\xd5\\x88\\x74\\x71\\x55\\x14\\\r\n\\x09\\x5b\\x9e\\x10\\xc1\\xeb\\xd5\\xdc\\xb0\\x7c\\x13\\xed\\x9e\\xca\\xbc\\x02\\\r\n\\x7d\\x23\\x12\\x1a\\x6b\\xfd\\x3b\\x50\\x52\\xb8\\x16\\xfd\\x20\\xa7\\x92\\x98\\\r\n\\x24\\x47\\x72\\xc3\\x79\\x92\\x41\\xbb\\x43\\x72\\xaa\\x12\\x1f\\xf6\\xdc\\xaf\\\r\n\\xdd\\x5a\\xee\\xa4\\xc4\\x8b\\xd4\\xa4\\x52\\xc7\\x30\\xa9\\x52\\x3a\\x9a\\xc3\\\r\n\\x13\\x8f\\x77\\xad\\x7b\\xc4\\x32\\x97\\x12\\x90\\x89\\x3e\\x9d\\x5a\\x68\\xd3\\\r\n\\x51\\x0d\\x9a\\xce\\x7e\\xc9\\x48\\x42\\x75\\x19\\xa2\\x86\\x5d\\x99\\xde\\x4d\\\r\n\\x45\\xc5\\x76\\xd3\\x5d\\xe7\\x46\\xb8\\xde\\x53\\x64\\xd6\\xad\\x2d\\x70\\x9d\\\r\n\\x61\\xa5\\x97\\xef\\xe1\\x56\\x15\\xf0\\x98\\x4e\\x4c\\x64\\xa7\\xf2\\xec\\x7a\\\r\n\\x9c\\x8b\\xa0\\x57\\x21\\xfb\\xc9\\x41\\xc0\\xb4\\x2a\\x44\\x61\\x2b\\xc7\\x6e\\\r\n\\x67\\x53\\x69\\x6a\\x26\\x7f\\x1b\\x68\\xa2\\x9d\\x85\\x2e\\xf4\\x51\\x94\\x5a\\\r\n\\x3f\\x7c\\xd5\\xb0\\x2e\\x94\\x02\\x19\\xf8\\xb2\\x07\\xfa\\x13\\xbc\\xe6\\x63\\\r\n\\x81\\xc2\\x7e\\xfb\\x70\\x3e\\x80\\x78\\xbe\\x0e\\x2e\\xfa\\xa5\\xa6\\xf6\\xe6\\\r\n\\x90\\xdf\\xc3\\xc5\\x8d\\xf5\\xc0\\x3b\\x4f\\x04\\x05\\x87\\xac\\xf0\\x02\\x85\\\r\n\\x46\\xd6\\x7c\\x0e\\x6e\\x1a\\xc2\\xc8\\x54\\x2b\\x3c\\x79\\x8e\\x72\\xf1\\xb4\\\r\n\\x13\\x33\\xa5\\x90\\xa3\\xa8\\xf0\\xa5\\x8f\\xe8\\xb2\\x2b\\xf6\\xa5\\x49\\x30\\\r\n\\x1c\\x5d\\x78\\xea\\xe9\\xaf\\x66\\xb1\\x6d\\x7b\\xc9\\x7a\\x53\\x0d\\xa8\\x64\\\r\n\\x58\\xb1\\x50\\x42\\xb9\\xb6\\x57\\x59\\xe8\\x45\\x7b\\x1d\\x93\\x0b\\xf7\\xdc\\\r\n\\x6f\\x8e\\xbe\\x73\\x0a\\x5c\\x09\\xf4\\x86\\x7f\\x1c\\x25\\xf8\\x0f\\x48\\x56\\\r\n\\x9f\\xbc\\xb4\\xb9\\xd5\\xec\\x19\\x2d\\x02\\x23\\x5c\\x5e\\x39\\x9b\\xa1\\xa6\\\r\n\\x6b\\x8b\\xca\\xb1\\xf7\\x4f\\x16\\xe3\\x3b\\x3d\\xc4\\xb9\\x40\\x9c\\x99\\xef\\\r\n\\x98\\x2a\\xfc\\x17\\x26\\x8e\\x6b\\x2e\\x00\\x8f\\xee\\x8c\\x54\\x05\\xba\\xb7\\\r\n\\x58\\x88\\xfb\\x28\\x97\\x23\\x78\\xbc\\x0f\\x4c\\xea\\xed\\x20\\x15\\x5c\\x06\\\r\n\\xdb\\x6e\\xf3\\x19\\xb8\\xcd\\x00\\x2b\\x09\\xa6\\x5f\\xcc\\x1c\\xf3\\x16\\x53\\\r\n\\x30\\xce\\x97\\xd7\\xad\\xce\\xc0\\x45\\xac\\xd2\\x55\\x6d\\x7e\\x95\\x25\\xf2\\\r\n\\x60\\xd5\\xf7\\xa7\\xd3\\x1c\\xc3\\x0e\\x05\\x08\\x3f\\x59\\xf2\\xd1\\x8a\\xf8\\\r\n\\x6e\\x72\\xe5\\xd0\\x05\\xec\\xdf\\x44\\x59\\x18\\x5e\\x0d\\xfd\\xdc\\x67\\x48\\\r\n\\xc2\\x13\\xaf\\x2e\\xc8\\x74\\x2a\\x54\\x07\\x5e\\x87\\x8a\\xe1\\x89\\xfd\\xdb\\\r\n\\xb6\\x13\\x99\\xdd\\xb7\\x07\\x59\\x94\\x48\\xfe\\x25\\xd5\\x8d\\xc2\\xad\\x13\\\r\n\\xbc\\x61\\xdd\\x5f\\x5e\\xfb\\x20\\xa8\\xa5\\x9b\\x8e\\x55\\x99\\xfa\\x87\\x1b\\\r\n\\x8d\\xda\\x11\\x41\\x6a\\x6b\\xb8\\x4c\\x74\\x9d\\xc0\\x8b\\x67\\x08\\xcb\\x13\\\r\n\\xf4\\x3b\\xc1\\x44\\x9d\\x11\\x22\\xb9\\xef\\x1c\\xbc\\x86\\x0e\\x82\\x50\\x54\\\r\n\\x01\\xa7\\x37\\x75\\x1d\\x3a\\xa2\\xe1\\x8f\\xb6\\x2f\\x72\\x06\\xbe\\x9a\\x67\\\r\n\\xa5\\x33\\xf3\\x3a\\xe9\\x03\\x35\\x2b\\x2b\\x0a\\x78\\xe1\\x1e\\x3b\\x73\\x4d\\\r\n\\xec\\x23\\x3a\\x59\\x29\\x75\\x67\\xe8\\x4e\\x5a\\x1c\\x06\\x3f\\xa1\\xd9\\x8e\\\r\n\\xad\\x39\\x69\\x44\\x9d\\x3c\\x2c\\x54\\xde\\x9c\\x73\\x71\\xd0\\x1e\\x2a\\xb4\\\r\n\\x30\\x60\\x10\\xe2\\x5c\\x13\\x35\\x71\\xe8\\x6d\\xb8\\xda\\x23\\x95\\x10\\x64\\\r\n\\xe1\\xf0\\xe1\\xc2\\xe5\\x58\\x91\\x35\\x41\\xff\\x00\\x70\\xbc\\x65\\xa6\\x57\\\r\n\\xbd\\xa1\\x53\\x2e\\xe0\\xf4\\x71\\xa6\\xa1\\xee\\xb9\\xa2\\xe0\\x90\\x27\\x28\\\r\n\\x7d\\x22\\x45\\x6d\\x41\\x80\\x71\\x94\\x19\\x41\\x62\\xbd\\xbf\\x7b\\x8b\\x8b\\\r\n\\xe6\\x59\\x36\\x4e\\x9e\\xe6\\x3d\\xbb\\xd6\\x70\\xac\\xf6\\xa1\\x61\\x35\\xd9\\\r\n\\x66\\x5c\\xd3\\xf7\\x7f\\x50\\xf7\\xea\\x09\\x4b\\xa2\\xfd\\x71\\xf0\\xb4\\x44\\\r\n\\x0f\\x15\\xcd\\x97\\xfb\\x86\\xb2\\xac\\x44\\x44\\xe4\\x26\\x43\\xd0\\x75\\xe1\\\r\n\\xeb\\x30\\xc5\\x88\\xbe\\x1b\\xbb\\xc8\\xaf\\xd9\\xf2\\x45\\x5a\\x3e\\x8b\\xcb\\\r\n\\x34\\x8a\\x85\\xc5\\x6d\\x66\\x1b\\xa7\\x8e\\x7d\\xa5\\xf1\\x75\\x13\\x8d\\x89\\\r\n\\xf7\\xf1\\x52\\x9e\\xa6\\x2b\\x92\\x97\\x69\\xba\\x37\\xe0\\xc1\\x44\\xe4\\x05\\\r\n\\x27\\x7b\\x57\\xce\\x60\\xe9\\xe5\\x46\\x9a\\x0b\\x26\\xcb\\xfe\\x9a\\x53\\x98\\\r\n\\xe6\\x40\\xa5\\x43\\x53\\xf3\\x47\\x61\\xd4\\xcc\\xc4\\x46\\x51\\xe7\\x29\\xa2\\\r\n\\x0c\\xa3\\xf4\\x72\\xe9\\x0c\\x30\\xa7\\x7a\\x75\\x67\\x94\\x95\\x8a\\x7b\\xac\\\r\n\\x29\\xc0\\xa3\\xa6\\x67\\x1d\\xff\\x00\\x7a\\x45\\x36\\x98\\xed\\xbb\\x42\\xfa\\\r\n\\xdd\\x48\\xf9\\xc3\\x82\\x01\\x4c\\x29\\x5a\\xe5\\x90\\xbb\\x03\\x30\\xc6\\x75\\\r\n\\x54\\x87\\x27\\xcc\\x19\\x41\\x69\\x2d\\xcf\\x84\\xe5\\x6d\\x76\\x7e\\xd6\\x15\\\r\n\\xec\\xfe\\x4b\\x91\\xf4\\x2c\\x8f\\x79\\x86\\x8c\\x7d\\xe2\\xb0\\x2d\\x95\\x22\\\r\n\\xec\\x31\\xb4\\xa8\\x4d\\x49\\xfe\\xa8\\x2d\\xbe\\xbb\\xf6\\x95\\xbb\\x9f\\x62\\\r\n\\x53\\xad\\x57\\xe9\\x7d\\x1e\\xaf\\x39\\x34\\x2d\\x07\\x66\\x2e\\x56\\x78\\xd6\\\r\n\\x6b\\xf8\\xd2\\x5f\\xbe\\x42\\x17\\xc6\\x64\\xaa\\x51\\x65\\xb9\\x68\\xfd\\x2b\\\r\n\\xa3\\x23\\xc9\\x33\\x07\\x13\\x48\\xca\\x54\\xc9\\xf1\\xb3\\x38\\x95\\xc0\\xf1\\\r\n\\x15\\x5f\\xf5\\xe4\\x94\\x51\\xb3\\xe1\\x4e\\xec\\xd3\\xf2\\xf6\\xe3\\x64\\x2f\\\r\n\\x82\\xcc\\xe2\\x52\\x0a\\x12\\x6e\\xa3\\x56\\x82\\x65\\xcd\\x97\\x25\\xf3\\x7a\\\r\n\\x42\\x18\\x73\\x76\\xf5\\x56\\x1f\\x4c\\xd0\\x06\\xce\\x21\\x50\\x9f\\xab\\x82\\\r\n\\xed\\x47\\x76\\x5b\\x8f\\xaa\\xd3\\x56\\x75\\xf5\\x23\\x73\\x12\\xa9\\x10\\x91\\\r\n\\xfc\\xba\\x43\\x2e\\x68\\x65\\x19\\xa0\\xba\\xcf\\x9c\\xda\\x31\\xe4\\x03\\x49\\\r\n\\xfa\\x0d\\x28\\x00\\x13\\x07\\x38\\x97\\xc8\\xdc\\xab\\xf5\\x78\\xd8\\x2c\\x71\\\r\n\\x9a\\x8f\\x8d\\x13\\xdc\\xff\\x00\\x7c\\xee\\x55\\x13\\x9c\\xe4\\x74\\x16\\x5e\\\r\n\\xdc\\xa3\\x68\\x96\\xce\\x53\\x2f\\xa9\\x42\\xed\\x42\\xf3\\x6a\\xef\\xfc\\xd0\\\r\n\\xe9\\x91\\xcf\\xa3\\xb8\\x7e\\x76\\x09\\x77\\xae\\xda\\x01\\x3f\\x9a\\xeb\\xa4\\\r\n\\x5a\\xee\\xdc\\xd4\\x93\\x8b\\x13\\x3d\\x42\\x5c\\xab\\x03\\xcd\\x3e\\xe7\\xbe\\\r\n\\x50\\xd6\\x7c\\xf6\\x13\\x20\\x28\\x98\\x80\\x87\\xf3\\x4c\\x42\\xe5\\x25\\x22\\\r\n\\xe5\\x35\\x11\\x3e\\x9f\\xa8\\x6d\\x97\\x67\\x1c\\x83\\xd5\\xfd\\x2f\\x94\\xb3\\\r\n\\xd9\\xdb\\x0c\\x3c\\x66\\xcf\\x11\\x21\\x1e\\x5e\\x99\\x96\\x77\\x62\\x90\\xe0\\\r\n\\xcf\\xbe\\x82\\xc6\\x43\\x2a\\xdd\\x9c\\x69\\x98\\xc7\\xc4\\x00\\xa1\\xf7\\x86\\\r\n\\x8a\\x67\\xe0\\x69\\x48\\x8c\\x53\\xf9\\xca\\x37\\x9f\\xe7\\xc8\\xe0\\xd3\\xb7\\\r\n\\x5a\\xd7\\x07\\x93\\x7e\\xcb\\xf8\\x0d\\x69\\x49\\xa4\\xaf\\xf5\\xec\\xcd\\xd6\\\r\n\\x12\\xa7\\xff\\xc4\\x00\\x27\\x10\\x00\\x02\\x03\\x01\\x00\\x01\\x05\\x01\\x01\\\r\n\\x00\\x03\\x01\\x01\\x01\\x00\\x00\\x03\\x04\\x02\\x05\\x06\\x01\\x00\\x07\\x12\\\r\n\\x13\\x14\\x15\\x11\\x16\\x22\\x23\\x24\\x21\\x25\\x32\\xff\\xda\\x00\\x08\\x01\\\r\n\\x01\\x00\\x01\\x05\\x02\\x60\\xfd\\x14\\x7e\\xc4\\xd6\\x81\\xd9\\x0a\\xea\\x67\\\r\n\\xe8\\x8d\\xa1\\x77\\x3c\\x87\\x13\\x5c\\x1f\\xf0\\x1c\\x3b\\xf2\\xf2\\xd9\\x9f\\\r\n\\xaa\\x85\\xa9\\xe4\\xe5\\xe5\\x79\\x2a\\x8e\\x26\\x2a\\x69\\xa1\\x1b\\x2a\\xd8\\\r\n\\x9c\\x19\\x1e\\x58\\x94\\x9a\\x92\\x1e\\x5d\\x13\\xad\\x57\\x79\\x5a\\xaf\\x6a\\\r\n\\xa7\\x9f\\x69\\x96\\x54\\xd9\\x8d\\x7d\\xdd\\x1d\\xad\\x3d\\xcd\\x03\\xd9\\x1e\\\r\n\\xc1\\x90\\xe9\\x09\\x62\\xeb\\x3f\\xc6\\x7b\\x5b\\x9a\\xa1\\xb5\\x6e\\x56\\xb5\\\r\n\\x22\\x73\\xb5\\xe3\\x25\\x57\\x20\\x1a\\xa7\\x5a\\x00\\x3d\\xb0\\x5f\\xe1\\x63\\\r\n\\xb7\\x0e\\xa8\\x85\\x75\\x6b\\x8e\\x58\\x2f\\x10\\xaf\\x2e\\x5a\\x93\\x8d\\x75\\\r\n\\xa6\\x02\\xe0\\xee\\x86\\xcd\\x66\\x8a\\x15\\x4c\\x32\\xf0\\xad\\x96\\x53\\x4d\\\r\n\\xaf\\xab\\x62\\xb7\\x41\\x5c\\xec\\xb8\\x46\\x87\\x27\\x51\\x1a\\xbf\\x61\\x9c\\\r\n\\x5e\\x68\\xd9\\xdc\\xb5\\x8d\\xe6\\x73\\x50\\x7c\\x3d\\x2b\\xf9\\xa9\\xfa\\x9d\\\r\n\\x9b\\xa1\\x42\\xe7\\x97\\xe7\\x8b\\x15\\xc4\\x3d\\x93\\xde\\xa5\\x51\\x95\\x94\\\r\n\\xab\\xd3\\xfd\\x7b\\x1b\\xc6\\xf8\\xf5\\x9d\\x4f\\x54\\x99\\x56\\x9b\\x63\\xf3\\\r\n\\x3a\\x8d\\x38\\x60\\xf9\\xd5\\x6d\\x6c\\xcc\\x4b\\x47\\x8a\\xcd\\xc6\\xd9\\x04\\\r\n\\xad\\xea\\x52\\x31\\x4b\\x8e\\xf6\\x97\\xdf\\xc2\\x04\\x11\\xf7\\x93\\x49\\x64\\\r\n\\xbd\\x4c\\x2b\\xab\\x14\\x14\\x17\\x14\\x63\\xe2\\xc3\\xe7\\x06\\xc5\\xbd\\x75\\\r\n\\x7c\\x3d\\x45\\xdd\\xb8\\xe9\\xea\\xfa\\x62\\x23\\x0f\\x9d\\xb5\\xb3\\x86\\xb4\\\r\n\\x39\\x21\\xed\\x5a\\x4a\\x2e\\x1f\\x2b\\x3d\\xb7\\x96\\xb2\\xf6\\x77\\x80\\xca\\\r\n\\xbd\\xf6\\x2e\\xd7\\x5a\\x38\\xe1\\x31\\x67\\x9c\\xbb\\x43\\xbc\\x6e\\x74\\x31\\\r\n\\xcf\\x1c\\x56\\x99\\xe7\\x6b\\x60\\xea\\xd0\\x2c\\x22\\x3b\\x6a\\xd6\\x05\\xa8\\\r\n\\xbe\\x19\\x6c\\x17\\x5e\\xd4\\x29\\x2a\\x34\\xf8\\x2f\\x67\\x89\\x56\\x8d\\xc5\\\r\n\\x2f\\xb3\\xf6\\x76\\x16\\xf4\\x78\\xfb\\xcf\\xb3\\x67\\x53\\x76\\x58\\x7f\\x3e\\\r\n\\x17\\x6f\\x75\\x2d\\x53\\x5d\\xb5\\x9b\\xc9\\x3d\\x1d\\x05\\x45\\xa1\\x95\\xd4\\\r\n\\xb5\\xf5\\xee\\x2f\\x07\\xcd\\x56\\x46\\xaa\\x71\\xfe\\xd5\\x14\\xdc\\x2d\\x95\\\r\n\\x10\\x84\\xd5\\x04\\xad\\xbf\\xcd\\xea\\x43\\xd5\\x2d\\x3d\\x31\\xf5\\x00\\xea\\\r\n\\x2d\\xea\\x6d\\x17\\xfa\\x5c\\xa5\\x7c\\x99\\x5d\\x4c\\xc3\\xc7\\xfd\\x2b\\xab\\\r\n\\x75\\xe9\\xee\\xac\\xea\\x1b\\xca\\xa2\\xba\\xe4\\x68\\x4f\\x2a\\x72\\x46\\x78\\\r\n\\xed\\x15\\xeb\\xb7\\x58\\x39\\x23\\x56\\x1a\\x9c\\xfa\\xd5\\x88\\xdb\\xd4\\x35\\\r\n\\x5b\\x4a\\xee\\xa5\\x8b\\x0f\\x50\\x8d\\x05\\xef\\x57\\xd0\\x56\\xfd\\x78\\xce\\\r\n\\x51\\xf2\\xc6\\xd5\\x3a\\xd0\\xe6\\x6c\\x1c\\xbe\\x6c\\x2b\\x8f\\x81\\x8f\\x55\\\r\n\\x5c\\x57\\x3a\\xaa\\xc1\\x2d\\x27\\xd9\\xd2\\x35\\x7e\\xed\\x43\\x9d\\x49\\xa5\\\r\n\\x53\\x4c\\x13\\xf6\\x49\\x76\\x48\\x8d\\x65\\x2b\\xaf\\x2c\\xe6\\x82\\xc6\\x5d\\\r\n\\x55\\x4c\\xbf\\x6a\\x85\\x08\\xc2\\x31\\x51\\x5a\\xf3\\xb1\\xb2\\x65\\xf3\\xbc\\\r\n\\xd3\\xce\\x77\\xc5\\x42\\xd9\\x79\\x8d\\xfb\\x16\\xb2\\x09\\xf4\\x34\\x27\\x35\\\r\n\\x3d\\x3d\\xa2\\xf6\\x99\\xcb\\x3a\\x89\\x4e\\xb9\\xb0\\xab\\x67\\x9f\\xb6\\x83\\\r\n\\x94\\xd3\\x89\\xcb\\xf6\\x9f\\x9e\\x88\\x7a\\x10\\x81\\x8b\\x7b\\x48\\x6a\\x2b\\\r\n\\xad\\x2c\\x7b\\x46\\xc7\\x2f\\x6d\\xe2\\x8a\\x1a\\xc5\\x9c\\x3e\\xb5\\x3a\\xd0\\\r\n\\xdb\\xb4\\xab\\x4f\\x55\\xe2\\xf4\\xaf\\xe6\\x73\\xb7\\x15\\x0b\\xec\\x29\\x71\\\r\n\\x3a\\x94\\x44\\x5b\\x3a\\x26\\x33\\xda\\x05\\x4b\\xde\\xc9\\x9e\\x1b\\xe1\\xd5\\\r\n\\xbe\\xdd\\x4d\\x65\\x8e\\x62\\x86\\xec\\x9e\\xc4\\x0f\\xdc\\x16\\xa6\\x0a\\x64\\\r\n\\x75\\x95\\xdc\\xa3\\xbe\\xc8\\x61\\x74\\x17\\x3e\\x6c\\x32\\x03\\x74\\xc2\\x0e\\\r\n\\x2d\\xcf\\x2b\\xf3\\xf9\\x47\\xa5\\x6d\\x4f\\xba\\xea\\xa7\\xcf\\x6b\\x87\\xe4\\\r\n\\x60\\xc8\\x9a\\xcd\\xe7\\x2a\\x6c\\x97\\xe0\\x16\\x58\\x43\\x3c\\x83\\xe7\\xaa\\\r\n\\x14\\xeb\\x9a\\xac\\x39\\x6d\\x41\\x83\\x13\\xcf\\xa2\\xd0\\x50\\x3c\\xc1\\x31\\\r\n\\x29\\xb4\\xaf\\x86\\xb5\\x4a\\xa1\\x6b\\x9d\\x9b\\x36\\x84\\x5a\\xb3\\xdf\\x5f\\\r\n\\x16\\x08\\xa0\\x1a\\x46\\x10\\xf3\\x92\\xfa\\xa3\\x55\\x79\\xd8\\xf2\\xbe\\x61\\\r\n\\x8a\\x24\\x37\\xc0\\x9e\\x4d\\x50\\x9e\\x10\\xfe\\x87\\x80\\x80\\xbf\\x8d\\x47\\\r\n\\xcd\\x95\\x7c\\x88\\x2a\\x84\\x8a\\xf3\\xec\\x76\\x89\\x8e\\xe1\\x5a\\x28\\xb5\\\r\n\\x21\\xd4\\x7d\\x2b\\x3b\\xea\\x8b\\x6a\\x73\\x23\\xab\\xb8\\xcf\\xa6\\x8e\\x97\\\r\n\\x17\\xa2\\xf3\\x60\\x78\\x53\\x70\\xcb\\xb8\\xb5\\x88\\x87\\x48\\x1a\\xdb\\x2a\\\r\n\\x6e\\x45\\x63\\x5d\\xf6\\xb5\\xb1\\x52\\x9c\\x8b\\x28\\xc0\\x66\\xf1\\x1a\\x14\\\r\n\\x23\\x0b\\x3f\\xb7\\x9b\\xa4\\xd2\\x92\\x2c\\x7c\\x00\\x69\\x34\\x26\\xd6\\x69\\\r\n\\x8d\\xd5\\x02\\x6a\\xa2\\xcd\\xb0\\xef\\x33\\xbc\\x80\\x53\\xed\\x14\\x07\\x6e\\\r\n\\xee\\x97\\x2d\\xa1\\x73\\x43\\x7f\\x9d\\x45\\x78\\x70\\x58\\x44\\x79\\xe9\\xb6\\\r\n\\xdb\\x3c\\xd3\\x7a\\xdb\\xdb\\xa4\\x23\\xd3\\x5e\\x0f\\x36\\xd2\\x73\\x69\\xdc\\\r\n\\xed\\xf0\\xa2\\xe0\\x80\\x5c\\x9e\\xbe\\x83\\x43\\x59\\xa0\\xae\\xe7\\x08\\xd0\\\r\n\\x7d\\x4c\\xc1\\xfc\\x0c\\xe4\\xe5\\x25\\x68\\x8b\\x25\\xe7\\xd2\\x9b\\xfe\\xdd\\\r\n\\xef\\x38\\x5c\\x62\\x3e\\xa3\\xb8\\x92\\x54\\x7a\\x50\\x5d\\x46\\x47\\xf7\\x89\\\r\n\\x8b\\x35\\x6b\\xab\\x9a\\xbe\\x1d\\xf4\\xab\\x2b\\xfa\\x63\\xee\\xad\\x87\\x96\\\r\n\\x85\\x7d\\xa1\\x1e\\x44\\x16\\x69\\xb8\\x3b\\x0c\\xcf\\xb0\\x54\\xb9\\x27\\x65\\\r\n\\x45\\x40\\x27\\xc5\\x6b\\x60\\x11\\x9e\\x02\\x10\\xe2\\x39\\xff\\x00\\x27\\xe1\\\r\n\\x26\\x10\\xf1\\x60\\xc6\\x23\\xd6\\xc0\\x16\\xcc\\x00\\x27\\x12\\x06\\x58\\xbf\\\r\n\\xdc\\x84\\x85\\x1d\\x36\\xb2\\xb4\\x40\\xd8\\x52\\x59\\x68\\xa8\\xae\\x6d\\xeb\\\r\n\\xab\\xac\\x11\\x05\\x5d\\x21\\xa3\\xfb\\xce\\x2e\\x9a\\xb4\\xd9\\xdb\\xdf\\x34\\\r\n\\x0a\\xff\\x00\\x9f\\x57\\xfd\\xa9\\x8d\\x14\\x30\\x53\\x77\\xba\\x59\\x91\\xdb\\\r\n\\x5f\\xa3\\x3a\\x8e\\x76\\xad\\x3e\\x4a\\x95\\x78\\x29\\x6b\\x3a\\x3e\\x2d\\xd0\\\r\n\\x2b\\x14\\x4f\\x3a\\x8b\\x8b\\x24\\x10\\xec\\xf3\\x27\\x66\\x87\\x37\\x47\\x07\\\r\n\\xda\\xaf\\x19\\x72\\xa3\\xd4\\xc8\\x9d\\xa9\\x79\\x79\\x7e\\x33\\xe9\\xd8\\x86\\\r\n\\x69\\x31\\xe4\\x05\\x0a\\xb6\\x34\\x8a\\x2d\\xa1\\x6a\\xe5\\xdf\\xfb\\xd0\\x7d\\\r\n\\xa6\\xf3\\xe2\\x0e\\x70\\x4a\\xe6\\xeb\\x59\\xec\\xf1\\x35\\xdb\\x3c\\xde\\x96\\\r\n\\xae\\xf1\\x56\\xbb\\x64\\xc7\\xc9\\xe7\\x66\\x09\\x0b\\x9d\\x9f\\xf2\\x53\\xe4\\\r\n\\xf9\\xa1\\xa8\\x72\\xd6\\x8a\\x3e\\x99\\xaf\\xed\\xd2\\x67\\xd7\\xa3\\x7a\\xbe\\\r\n\\xca\\x0e\\x2b\\x6d\\xa8\\x35\\x95\\xa4\\x01\\xf4\\xee\\x04\\xca\\xcb\\x67\\xd8\\\r\n\\xe0\\x2e\\x08\\x75\\x5e\\xa6\\xef\\x7d\\xce\\x46\\xbe\\xdb\\xf6\\x9b\\xc3\\xb9\\\r\n\\xd3\\x36\\xd8\\x55\\x7d\\x7b\\xea\\xd6\\x05\\xe0\\x23\\x01\\x0d\\x72\\x00\\x9c\\\r\n\\xea\\xe1\\x84\\xbd\\x4b\\xd0\\x96\\x86\\x86\\xa9\\x8a\\xed\\x7c\\x4d\\x20\\x56\\\r\n\\xb7\\xa6\\xa5\\xb3\\xb3\\xe2\\x58\\xfb\\x10\\x36\\x92\\xac\\x00\\x9a\\x5c\\xbd\\\r\n\\xdb\\x8b\\xfe\\x3e\\x97\\x31\\x70\\xc5\\x25\\x66\\xb0\\x75\\x35\\xd9\\xda\\xf6\\\r\n\\xa3\\x52\\x8d\\x69\\xb6\\x8b\\x42\\xe0\\x78\\x6c\\xf5\\x75\\x92\\xd5\\xd4\\xee\\\r\n\\xe4\\x6c\\x35\\xd5\\x66\\xd3\\xb9\\x53\\x95\\xd2\\x81\\x68\\x62\\x12\\x87\\x25\\\r\n\\x5f\\x94\\x54\\xf0\\x56\\x94\\xf0\\xed\\x8d\\x8d\\x77\\x96\\x3a\\x4d\\x13\\x75\\\r\n\\xe9\\x66\\xee\\x34\\x73\\x2d\\x24\\xea\\xd1\\xfb\\x04\\x8d\\x8a\\xb7\\x3a\\x46\\\r\n\\xc9\\x69\\x50\\x0b\\x7e\\xe6\\x12\\xfa\\xab\\x31\\x9a\\x18\\xf4\\x66\\xaf\\x72\\\r\n\\xb6\\x59\\xbb\\x42\\x1f\\x0d\\xbd\\x40\\x13\\x05\\x03\\xa5\\xae\\xcc\\x68\\x05\\\r\n\\xf5\\xee\\x69\\x86\\xc3\\x13\\xaa\\x3e\\xc3\\x8b\\x2d\\x6e\\xe0\\xae\\x16\\xb2\\\r\n\\x2c\\x20\\x29\\x54\\xba\\x29\\xae\\xb4\\x97\\x08\\x50\\x53\\xc6\\xda\\xfa\\xd0\\\r\n\\x3f\\xa9\\xb6\\xbd\\x36\\xf2\\xeb\\xf5\\x2d\\x53\\x60\\xb1\\xf0\\x91\\xac\\xb8\\\r\n\\xf2\\xc5\\x32\\x09\\x20\\x9f\\xad\\xa8\\x58\\x4b\\x9e\\x02\\xc4\\xa1\\x85\\x16\\\r\n\\x58\\x16\\x7d\\x73\\x3d\\x5b\\x57\\x0c\\x45\\x13\\xf4\\x32\\x3f\\x23\\xce\\xff\\\r\n\\x00\\x79\\xd8\\xc0\\x3e\\xf0\\xc8\\x7c\\x9f\\x56\\x3a\\xe1\\xf3\\x7b\\x60\\x9d\\\r\n\\xdb\\xf9\\xee\\xa8\\x83\\x53\\x5d\\x4d\\x80\\xa8\\xa9\\x0e\\x98\\x00\\x9b\\x65\\\r\n\\x62\\x49\\xc2\\xc3\\xcf\\xcc\\xf9\\xa2\\xc2\\xff\\x00\\xd1\\xe9\\xf2\\xed\\x91\\\r\n\\x41\\xa0\\xd6\\x9e\\x6d\\xd4\\xfd\\xdb\\x66\\xe3\\x41\\x5e\\x0e\\xea\\x21\\x41\\\r\n\\x0b\\x6f\\x54\\x2d\\x1f\\x46\\x32\\xd9\\x68\\x6a\\xce\\xb5\\x9f\\x0d\\x55\\xa7\\\r\n\\xb2\\x47\\xb0\\x3a\\x8c\\x57\\xd4\\x3f\\xfa\\xd0\\x8b\\x7a\\xf7\\xac\\x9a\\xdc\\\r\n\\x56\\x27\\x53\\x4f\\xea\\x35\\x75\\xa4\\xac\\xeb\\x32\\xb3\\xf0\\x0a\\x80\\xf2\\\r\n\\xed\\x7c\\x63\\x05\\x57\\x00\\xe2\\x99\\x8b\\xf2\\x3c\\xaf\\x16\\x6d\\xd5\\xcf\\\r\n\\xa3\\x07\\xa6\\xe7\\xeb\\x36\\x5a\\x46\\x20\\xc6\\x7e\\xa6\\x65\\x96\\x6b\\x4c\\\r\n\\xbf\\x1e\\x4d\\x42\\x99\\x75\\x67\\x77\\xa0\\xa3\\x9e\\x71\\x6a\\x5b\\xca\\x92\\\r\n\\xae\\x9c\\x24\\x78\\x03\\x83\\x50\\x55\\x0f\\x07\\x5c\\x8d\\xcd\\x6d\\x7d\\x2b\\\r\n\\xe7\\xb2\\xa6\\xe5\\x41\\xbb\\xce\\xd1\\xba\\x74\\x54\\xcf\\x27\\x5e\\x9f\\xe6\\\r\n\\x21\\x2e\\x7d\\xb6\\x3b\\xd4\\x92\\x53\\xdb\\x3a\\xc3\\x31\\x39\\xa8\\x6f\\x8f\\\r\n\\x27\\x33\\xce\\x89\\xdb\\x4e\\x2d\\x27\\x4c\\xc5\\x95\\xa5\\x57\\xcf\\xd0\\x40\\\r\n\\x71\\x94\\xab\\xf3\\xea\\xf6\\xbb\\xee\\xf4\\x5c\\xd0\\xe8\\x45\\x57\\x58\\xfb\\\r\n\\x1f\\x1c\\xeb\\xe6\\x45\\xbb\\x89\\xca\\xab\\x41\\x12\\xd2\\x9d\\xc9\\xc7\\x3c\\\r\n\\x69\\xf8\\xc5\\x4c\\x3d\\x9f\\x14\\xba\\x18\\x91\\x92\\x70\\xcb\\xa5\\xfc\\xd4\\\r\n\\xab\\x74\\x49\\x2d\\x7c\\x2d\\x7f\\x9f\\x7e\\x64\\xf1\\x16\\x24\\x73\\x9a\\xa2\\\r\n\\x3d\\xed\\x0c\\x1d\\x42\\xcc\\xc3\\x46\\xf2\\xbc\\xb4\\x55\\x5f\\x2c\\x58\\x21\\\r\n\\x5b\\x48\\x55\\x59\\xcb\\xb5\\xa8\\x41\\x70\\x81\\x32\\x10\\x41\\xe5\\xd6\\x4e\\\r\n\\x2b\\xf4\\xa3\\x01\\x2b\\x4c\\xac\\xa4\\xe1\\x53\\xec\\x7e\\x1e\\x33\\xd7\\xb4\\\r\n\\x35\\x09\\xc7\\x46\\x79\\x83\\x43\\x45\\x76\\xc5\\x45\\xad\\x31\\xab\\x19\\xb7\\\r\n\\xd6\\xd1\\xb0\\x83\\x95\\x0a\\xf7\\xf3\\xb3\\xe6\\x5e\\xce\\xb2\\x2b\\x31\\x38\\\r\n\\xb8\\xba\\xfe\\x63\\x65\\x3a\\x98\\x64\\x2e\\x5f\\xae\\x0a\\x4f\\x57\\xde\\x2d\\\r\n\\x61\\x5f\\x73\\x58\\xda\\x8f\\x09\\xe1\\xe8\\x31\\x5c\\x0d\\xd1\\x6a\\x69\\xba\\\r\n\\x55\\x65\\xfd\\x36\\x98\\x1d\\x19\\x3b\\xf2\\x47\\xc5\\x17\\x65\\xae\\xb3\\x91\\\r\n\\xd2\\xa4\\x24\\x64\\xc0\\xce\\x25\\x91\\xb1\\xe0\\xd9\\x55\\x0f\\x2b\\x06\\xd3\\\r\n\\x5e\\x0d\\x7e\\x7b\\xec\\xb5\\x8d\\x52\\x5a\\xe7\\xee\\xff\\x00\\x69\\xab\\x78\\\r\n\\xc1\\x1c\\xe4\\x4a\\x06\\x21\\xea\\x4d\\x65\\x8d\\x73\\xd4\\x3e\\x9d\\xda\\x5c\\\r\n\\xf8\\x0c\\x0d\\x5a\\xbd\\x1d\\x90\\x56\\x8f\\x2d\\xcc\\xc8\\xc6\\xc9\\x8b\\xe7\\\r\n\\x7f\\x92\\xf3\\xd9\\xfc\\x8c\\xab\\x80\\x6e\\xfe\\x48\\x7f\\x96\\xe4\\xaa\\xae\\\r\n\\xe6\\x9e\\xaf\\x25\\x69\\x06\\x17\\x53\\x60\\x9b\\x08\\x48\\x5e\\x23\\x59\\x29\\\r\n\\x8a\\xaa\\x89\\xff\\x00\\xb1\\xa0\\xae\\xb1\\xad\\x97\\xc9\\xda\\xf2\\x41\\xe5\\\r\n\\x2d\\xfc\\xba\\xa9\\xfd\\x2a\\xcc\\x6e\\x97\\xed\\x20\\xcb\\xa0\\x66\\x17\\x43\\\r\n\\x3a\\x47\\xe3\\xc7\\xf9\\x69\\xac\\xc3\\x32\\x0d\\xa4\\x60\\x6d\\xae\\xaa\\xab\\\r\n\\x17\\x4e\\xdc\\x8a\\x45\\x2e\\xe4\\x3b\\x05\\x6f\\x5b\\x00\\x94\\xcc\\xdc\\x8f\\\r\n\\xeb\\xe8\\x46\\xed\\x95\\x83\\xc3\\x6f\\x3d\\x64\\xaf\\x17\\x13\\x4d\\x42\\xc9\\\r\n\\x7f\\x1c\\x59\\xe7\\x5b\\x31\\x24\\xa8\\xb2\\x11\\xb3\\x15\\x5c\\x69\\xed\\x6a\\\r\n\\xf9\\x53\\x6f\\x73\\x34\\xad\\xb4\\x0b\\x72\\x54\\xba\\xe5\\xed\\xd7\\xe5\\x90\\\r\n\\x3f\\x97\\x36\\xe7\\x65\\x6c\\x0c\\x5c\\xd1\\xac\\x7a\\xbc\\x66\\x7b\\xb3\\xf5\\\r\n\\x29\\x5a\\xf1\\x8f\\x73\\x26\\x62\\xc3\\x91\\x6a\\x0c\\xd8\\x57\\xa9\\xd6\\x0a\\\r\n\\x17\\x05\\xfa\\x1d\\x6c\\xf2\\x73\\xda\\x17\\xad\\xbe\\xe3\\x3e\\x90\\x04\\x9d\\\r\n\\xd8\\x6a\\xc0\\x3e\\x51\\x03\\xbe\\xdf\\x2c\\xad\\xd3\\x76\\xf7\\x43\\xaa\\x42\\\r\n\\x94\\x77\\x1b\\x7b\\x27\\xfc\\x4e\\xe4\\x9d\\x4a\\x8a\\xd3\\xac\\x21\\x1d\\x1d\\\r\n\\xd0\\xf9\\x5b\\x7d\\x6a\\xc7\\x2d\\x74\\xad\\x20\\x0a\\xaf\\x55\\xc6\\x5e\\xe8\\\r\n\\x7d\\x54\\x55\\x21\\xda\\x6d\\xda\\xb1\\x3d\\xeb\\x46\\xfb\\x28\\xb6\\xd2\\x4c\\\r\n\\x18\\x43\\xd9\\x85\\x1b\\x27\\x94\\x7d\\x5f\\x53\\x6c\\xe9\\x72\\xe5\\xdf\\x82\\\r\n\\xe6\\x1c\\x6d\\x19\\xc4\\xe1\\x45\\x92\\x21\\xa3\\x9c\\x56\\xaf\\x9c\\x95\\xb7\\\r\n\\xb1\\x7c\\xa7\\xf2\\xe9\\xc8\\xca\\x2b\\x26\\xd5\\x8f\\x95\\xb8\\xbb\\x41\\x8a\\\r\n\\x90\\x76\\x14\\xf6\\xb6\\x00\\x4f\\x67\\x45\\x9f\\x4c\\xe4\\xe5\\x3d\\x6f\\x7e\\\r\n\\x85\\xc6\\x79\\xc8\\x4b\\x99\\xc7\\x05\\xe3\\x7c\\x24\\xb2\\x76\\xe4\\x85\\xa5\\\r\n\\x42\\xe0\\xea\\xc4\\xd6\\xc0\\xdf\\xa3\\x98\\x83\\xf6\\x2c\\x00\\xe1\\x27\\x84\\\r\n\\x1c\\xbf\\x84\\xf6\\x76\\x2c\\x2d\\xc9\\xab\\xaa\\x95\\x84\\x53\\x9e\\xb8\\x06\\\r\n\\x5f\\xfd\\x5d\\x7f\\x99\\xff\\x00\\x4c\\x91\\xa5\\x36\\x87\\x6b\\x56\\x31\\x71\\\r\n\\xc0\\x3f\\x26\\x14\\x20\\xa6\\xc3\\x81\\x1f\\x95\\xfa\\x6f\\xc6\\x97\\x36\\x0f\\\r\n\\xbb\\x33\\x68\\x47\\x1f\\x32\\x95\\xec\\x1c\\xd7\\x21\\xe3\\x6a\\xae\\xb8\\x96\\\r\n\\xf3\\xd0\\xc1\\x46\\x5a\\xaf\\x5a\\x2e\\x8b\\x4f\\x9c\\x6b\\x4c\\x95\\x5a\\xc5\\\r\n\\xdf\\xb3\\xd8\\x36\\xe9\\xdd\\x3f\\x0a\\x4f\\x2a\\x51\\xeb\\x40\\xce\\xe6\\x9b\\\r\n\\xae\\xf1\\xc1\\x72\\x6e\\x85\\x66\\xab\\xfc\\xa8\\xbd\\x13\\x52\\xdc\\xe5\\x3b\\\r\n\\x5f\\x37\\x91\\xeb\\x11\\xea\\x1d\\xf3\\xaa\\x7d\\xbc\\xe8\\x43\\xf3\\xca\\x97\\\r\n\\xee\\x78\\xf3\\x9f\\xb0\\xa4\\xcd\\xfc\\x18\\xe2\\x6f\\x18\\xa8\\x71\\x78\\x54\\\r\n\\x3b\\x0f\\x71\\x8f\\x19\\x19\\x65\\xcd\\x71\\xa3\\x22\\x6f\\x2c\\x25\\x97\\xfd\\\r\n\\x66\\x68\\xa8\\x56\\x44\\x4b\\x29\\x1e\\xf2\\xda\\x81\\x36\\xbc\\x26\\x31\\xd4\\\r\n\\x4b\\x9b\\xa9\\xa7\\x47\\x46\\xda\\x81\\x71\\x4b\\x3c\\x82\\x65\\x8f\\x56\\xbc\\\r\n\\xa0\\x88\\x06\\xbd\\x96\\x2e\\x41\\x5a\\x48\\x20\\xc1\\xb9\\x0d\\x5d\\x79\\xdb\\\r\n\\x00\\xe5\\xcc\\x8d\\x6a\\x36\\xf7\\x11\\xb1\\xce\\xe9\\xd7\\xd0\\x86\\x5d\\x8c\\\r\n\\xa5\\xd2\\xf2\\x7c\\x22\\xc1\\x91\\x7d\\xaa\\x24\\xbf\\xc4\\xb7\\x3c\\xb7\\xdb\\\r\n\\x16\\xcb\\x91\\x25\\x71\\xcb\\xf6\\xd3\\x31\\x62\\xae\\x80\\x9c\\x6a\\x9f\\x92\\\r\n\\x86\\x32\\x86\\xac\\xf7\\x96\\x18\\x2a\\x75\\x67\\x30\\x55\\x5a\\x1f\\xdb\\x1a\\\r\n\\x7a\\x9b\\x2e\\x92\\x3e\\x5d\\x10\\xcd\\xf3\\xd0\\xbc\\x4c\\x3a\\x87\\xae\\xb6\\\r\n\\xea\\xa9\\x53\\x75\\xde\\xba\\x9d\\x35\\x2d\\x9d\\x91\\x90\\xf4\\xaa\\x2a\\xc6\\\r\n\\x1d\\xc7\\x53\\xaf\\xc7\\x14\\xf8\\x16\\xfd\\x59\\x3d\\x42\\xca\\xe9\\xd7\\x5b\\\r\n\\xb1\\xcb\\x4e\\xf0\\xab\\x51\\xd9\\x44\\x75\\xf6\\xd4\\xd7\\x15\\xf2\\xac\\x66\\\r\n\\x23\\x8f\\x79\\x4f\\x5a\\xd4\\xa2\\x96\\x5a\\x20\\xe1\\x31\\x76\\x32\\xe9\\x29\\\r\n\\x6c\\x73\\xcf\\x5e\\xe4\\x53\\xf6\\x53\\x80\\x15\\x36\\x9c\\xd1\\xa2\\xe0\\x6b\\\r\n\\xeb\\x73\\xda\\xbb\\x4b\\xe9\\xe6\\x7a\\xf6\\x64\\xb6\\x15\\x6a\\x53\\xd9\\x16\\\r\n\\xf0\\x00\\x8a\\xe8\\x79\\x5d\\x6f\\x1e\\xac\\xae\\xa0\\x72\\x19\\x2e\\x0f\\x1f\\\r\n\\x34\\x5a\\x2b\\x20\\x79\\x9a\\xb5\\x39\\x7c\\x8b\\xb1\\x9c\\x20\\x4e\\x18\\x9f\\\r\n\\x08\\xbb\\x39\\x09\\x32\\xab\\x67\\x42\\xda\\x6f\\x14\\x7f\\xfe\\x8a\\x75\\x57\\\r\n\\x28\\xda\\x25\\x4d\\xf7\\x5c\\xa4\\xcc\\x53\\x55\\x32\\x6a\\x10\\x65\\x59\\xad\\\r\n\\xd0\\x59\\x3c\\xc4\\xa1\\x31\\xc5\\x71\\x43\\xa6\\xec\\x15\\x17\\x9f\\x85\\x1e\\\r\n\\xf9\\x32\\x76\\x1e\\x41\\xd3\\xad\\x2c\\x72\\xdc\\x7a\\xc0\\x9b\\x4b\\x2b\\x66\\\r\n\\x2b\\xdf\\xbd\\xf1\\x35\\x52\\x72\\x61\\xb6\\x56\\xd9\\x3c\\xde\\x3c\\x9f\\xe8\\\r\n\\x74\\xb4\\x32\\xe5\\x7c\\x16\\x0f\\x43\\x5d\\x54\\xdb\\x4f\\x7a\\x67\\x49\\x2a\\\r\n\\x9c\\xe7\\xaf\\xce\\x06\\x56\\x6a\\x8f\\xec\\xd5\\x23\\x7e\\xff\\x00\\x16\\xb2\\\r\n\\x9b\\x3d\\x33\\xae\\x11\\x8f\\x33\\xd2\\x02\\x8a\\xb8\\x69\\x58\\x93\\xd3\\xab\\\r\n\\x38\\x45\\x66\\xa0\\x91\\x87\\xb2\\xaa\\xe4\\x39\\xe9\\xd5\\xe8\\x2b\\x1d\\xdd\\\r\n\\x65\\xa4\\xec\\x2a\\xea\\x39\\x99\\xb8\\xb4\\xd7\\xfd\\xae\\xb6\\xc9\\x6a\\xc6\\\r\n\\x8d\\xa5\\xcd\\x8a\\xeb\\x7d\\xfe\\x00\\xdc\\xab\\x37\\x65\\x86\\xec\\xf8\\x7c\\\r\n\\xac\\x86\\xf5\\xd2\\xd6\\x6e\\xc1\\xca\\x1b\\x85\\x0d\\xcc\\xbd\\xa5\\x55\\x5d\\\r\n\\x10\\xb4\\x6e\\x9d\\x95\\x8b\\x3f\\x11\\x74\\x4a\\xad\\x4f\\xd1\\x3f\\xd9\\x29\\\r\n\\x31\\xf8\\xcd\\x72\\x2e\\x02\\x19\\xb6\\x28\\xdb\\x09\\x39\\xec\\x83\\x11\\x18\\\r\n\\x78\\xd7\\xc7\\x11\\xb7\\x29\\xcf\\x68\\x66\\x3e\\x24\\xc0\\xa0\\x5c\\xd3\\x6a\\\r\n\\x2c\\x2c\\xad\\x86\\xa7\\xc6\\xb5\\x95\\xd2\\xb4\\x95\\x98\\xf4\\xcf\\x6b\\x4f\\\r\n\\xf8\\xc5\\xf1\\xea\\x0b\\x16\\xc5\\x47\\x91\\xb2\\x4e\\x1a\\xa6\\x2c\\x20\\xcf\\\r\n\\x65\\xea\\x07\\xf5\\xae\\xf6\\x66\\x83\\x8b\\x04\\x39\\xcd\\x73\\x34\\x5a\\x03\\\r\n\\xd0\\xe1\\x6e\\x9e\\x95\\x4f\\xd7\\x2c\\x5f\\xbd\\xcb\\x3d\\x9b\\xd1\\xca\\xe8\\\r\n\\x91\\xb7\\x5e\\xa1\\x53\\x69\\x18\\xbf\\xb6\\x31\\x7b\\xc6\\x13\\x8d\\xac\\xef\\\r\n\\xa8\\x1e\\x88\\xe8\\x3d\\x4e\\xbe\\x4e\\xe3\\x55\\xf2\\x7c\\x6f\\xb5\\x51\\x19\\\r\n\\x33\\xff\\x00\\xd9\\xad\\xf4\\xbf\\xee\\xa6\\xbd\\xab\\x10\\x6e\\x5c\\xaa\\xe8\\\r\n\\xa9\\x2c\\x67\\xcb\\x7a\\xbb\\x6e\\x48\\xb7\\x95\\x1f\\x60\\x57\\x75\\x4c\\xae\\\r\n\\x6a\\x6d\\x37\\x2f\\x72\\x0e\\x2d\\x5e\\x82\\x4b\\xd5\\xa2\\xcc\\x51\\xc5\\xad\\\r\n\\x63\\x7c\\xed\\x9c\\xf5\\x97\\x98\\xed\\x9c\\xf4\\xb9\\xc6\\xa9\\xcb\\x39\\x2d\\\r\n\\xff\\x00\\xe8\\xa7\\xb5\\x67\\xea\\xda\\x66\\x08\\xe3\\x17\\xa6\\xad\\x8f\\xc2\\\r\n\\xcf\\xa8\\x8a\\x85\\x4e\\xef\\x0f\\x73\\x32\\x4d\\x82\\x46\\x23\\x21\\xc8\\xcb\\\r\n\\xd6\\x59\\xe3\\xd4\\xed\\xac\\xe3\\x25\\xee\\x84\\x78\\x06\\xca\\x04\\xf0\\xe4\\\r\n\\xfc\\xd3\\xcd\\xa1\\x0e\\x6d\\xb8\\x21\\x04\\x57\\xb0\\x1b\\xdb\\x7a\\x42\\x5c\\\r\n\\x57\\x3f\\x46\\x15\\x03\\x24\\xfe\\xc9\\x9d\\xd1\\x29\\x53\\x5b\\x51\\x48\\xe6\\\r\n\\x8d\\xd5\\x6c\\x18\\x14\\x97\\xb0\\x4d\\xaa\\xf7\\x7d\\x48\\x5c\\xdc\\xb1\\xd2\\\r\n\\x5b\\x16\\xa2\\xd0\\xfc\\xb2\\x04\\x2e\\x2e\\xbb\\x08\\xa8\\x63\\x4f\\x95\\xac\\\r\n\\x76\\x3d\\xa3\\x3c\\xf9\\x8c\\xcd\\x08\\x32\\x51\\x29\\x4e\\x24\\xb4\\x21\\xec\\\r\n\\xe8\\x79\\x1a\\xa4\\x89\\x2e\\xb8\\xcd\\x97\\xd1\\x16\\x82\\x34\\xc6\\x74\\x8c\\\r\n\\x08\\x95\\x49\\x66\\x2f\\xa7\\x0c\\xee\\x91\\x87\\x1b\\xb9\\x64\\x3f\\xd8\\xbc\\\r\n\\xb0\\x8f\\xe7\\x62\\xd7\\x62\\x49\\xc0\\x13\\xea\\xdf\\x31\\x43\\x5e\\x76\\x7c\\\r\n\\xad\\x59\\x4f\\x8d\\x1d\\x5f\\xd8\\xcb\\x67\\xb5\\xdf\\x6d\\x6b\\x26\\x50\\x66\\\r\n\\x76\\xb4\\xd6\\xd8\\xeb\\x8b\\x93\\x7c\\xea\\x63\\x2d\\x4f\\xd9\\x10\\xea\\x38\\\r\n\\x0d\\xe6\\x13\\x4e\\xd5\\xaf\\xa6\\xc3\\x7e\\x8d\\x42\\x09\\x3b\\x80\\xa9\\xf2\\\r\n\\x29\\x73\\xa0\\x02\\x0a\\xf9\\x44\\xc5\\x52\\x3e\\x42\\xe9\\x36\\x7b\\xea\\x5d\\\r\n\\x69\\x01\\x69\\x98\\xa1\\x63\\xbd\\xb7\\x87\\x55\\x4a\\x88\\x7f\\x7a\\x1a\\x2a\\\r\n\\xbe\\x3f\\x54\\x3f\\x7c\\xa9\\x13\\x1d\\xa8\\x62\\x8f\\x6d\\x65\\x04\\xa7\\x63\\\r\n\\xfc\\x9d\\x57\\xbd\\x16\\x24\\xdd\\x75\\x8f\\xb5\\x27\\x7a\\xef\\x02\\x44\\x5d\\\r\n\\xb8\\x36\\x7e\\x2c\\x3e\\xea\\x8a\\xab\\x11\\x68\\xee\\x4b\\x0e\\x76\\x30\\xf8\\\r\n\\x4a\\x1b\\x7b\\x15\\x12\\xa3\\xac\\x04\\x6c\\x6b\\x16\\xae\\xf6\\x64\\xea\\x44\\\r\n\\xda\\xd3\\xff\\x00\\x51\\x47\\xcf\\x3d\\x41\\xaf\\x31\\x59\\xe3\\x2c\\x9b\\x95\\\r\n\\xd5\\xc5\\xb1\\x71\\x31\\x04\\x71\\x73\\x9d\\x56\\x9f\\x25\\x97\\xb2\\x83\\xfa\\\r\n\\x6b\\x3e\\x17\\xa8\\xc8\\x35\\x22\\x2b\\x0b\\x35\\x3c\\xc4\\xf9\\x2e\\xb4\\x05\\\r\n\\xe0\\xb7\\x25\\xd6\\xfa\\xde\\x69\\x28\\x82\\xf6\\x22\\xe5\\x57\\xd8\\xfb\\x95\\\r\n\\x68\\x23\\x24\\xe3\\x6b\\x59\\xf6\\xa2\\xbd\\x6b\\xd1\\x69\\xde\\x31\\x3f\\x29\\\r\n\\x23\\xf0\\x77\\x1e\\xe2\\xc3\\xbf\\xf4\\xfa\\x25\\xa3\\xdf\\xc0\\x85\\x22\\x3f\\\r\n\\xb7\\x24\\x8b\\x39\\x91\\x82\\xe6\\xb8\\x40\\x8f\\xae\\xfd\\x12\\xf6\\xea\\xc2\\\r\n\\x52\\xac\\x14\\x0d\\xe3\\x8d\\x41\\x75\\xfb\\x47\\x66\\x47\\xb5\\x0e\\xa7\\xa3\\\r\n\\x5f\\x35\\x48\\xd2\\x2d\\xd0\\x20\\xf3\\xa9\\xc9\\x1b\\x3e\\xba\\x2a\\x18\\xd6\\\r\n\\xc6\\xec\\x26\\x28\\x90\\xad\\x22\\xca\\xd2\\x1c\\xfd\\x2b\\xc2\\x75\\x36\\x63\\\r\n\\x17\\x0b\\xe0\\xd7\\xf6\\xf8\\x3b\\x08\\x82\\x4d\\x90\\xfe\\xcb\\xab\\x12\\x77\\\r\n\\xaf\\xda\\x11\\x53\\x4a\\x13\\x67\\x33\\xaa\\x1d\\x65\\xb3\\xfd\\xc9\\x54\\x3c\\\r\n\\xa7\\x6c\\x97\\xad\\x0c\\x5c\\x6e\\x25\\x0b\\x7a\\x25\\xfc\\x8c\\xa4\\xf5\\x3a\\\r\n\\x5a\\x49\\x5a\\x53\\xd0\\x3a\\xd0\\xb3\\x95\\xd0\\x0d\\xd8\\xbb\\x5c\\x19\\x76\\\r\n\\x9b\\x4a\\x41\\x3a\\x38\\xa6\\xcb\\xaa\\x52\\xa6\\x84\\x17\\x4d\\x78\\x72\\xc8\\\r\n\\xc3\\x91\\x2c\\x64\\x18\\x28\\xcd\\x6f\\x38\\x5a\\xbc\\x8b\\xb6\\xa1\\xfc\\x88\\\r\n\\x15\\x1a\\x02\\x45\\x41\\xf1\\xd9\\x9e\\x27\\x67\\x88\\x12\\xef\\x60\\x43\\x82\\\r\n\\x73\\x7e\\x23\\xae\\x5a\\x44\\x9a\\xb0\\x1c\\x00\\x94\\x55\\x9d\\x44\\xe3\\x2e\\\r\n\\x74\\x6a\\x48\\xc0\\x28\\x63\\x5f\\x5a\\x0e\\xc2\\x2c\\xde\\x2e\\xcb\\xd6\\x3a\\\r\n\\x83\\xc8\\xa8\\x86\\xee\\x6a\\x70\\xcc\\x91\\x28\\xd7\\xb7\\xc3\\x4a\\x50\\x01\\\r\n\\x04\\xed\\x7d\\xdb\\x9d\\x55\\x72\\x7b\\x8b\\xda\\xe8\\xdd\\xd8\\x6a\\x45\\x6a\\\r\n\\x25\\xe2\\x83\\x35\\xe8\\x01\\x36\\x6b\\xb1\\xad\\x30\\xaa\\x59\\xc7\\x3f\\xf7\\\r\n\\xe8\\x1e\\xf7\\x01\\xc7\\xdc\\x60\\x90\\xb3\\x1f\\x6b\\xea\\x85\\x1f\\xac\\xaa\\\r\n\\x04\\x0a\\xe3\\x5a\\x5f\\x68\\xb4\\x65\\x97\\x8f\\x55\\xdd\\x91\\x85\\xa3\\x41\\\r\n\\x19\\xd8\\x0c\\x04\\x8d\\x76\\x3c\\x17\\x45\\x6f\\x33\\x69\\x5b\\x96\\xa9\\xba\\\r\n\\x05\\x06\\x41\\x55\\xbe\\xed\\x7f\\xc7\\x32\\x01\\x11\\x42\\xb0\\xf6\\x6a\\xc8\\\r\n\\x6a\\x54\\xfc\\x85\\x46\\xa5\\x79\\x49\\x6c\\x77\\x3b\\x0c\\xec\\x98\\x92\\x16\\\r\n\\x5c\\xdb\\xab\\xce\\x69\\x11\\x07\\xcd\\x96\\xa6\\x67\\xee\\xd4\\xd6\\x96\\x44\\\r\n\\x04\\x7e\\x08\\x59\\xdb\\x08\\x26\\x67\\x96\\xb3\\xf2\\x8e\\xa2\\xbc\\x62\\x8c\\\r\n\\x23\\xc9\\x3d\\x59\\x0a\\x5d\\x97\\x60\\xc2\\x0d\\x22\\x7f\\xfe\\x6a\\x27\\x20\\\r\n\\x83\\xdf\\x36\\x17\\x42\\x36\\x5d\\x70\\x66\\x4c\\x2e\\xf3\\xfb\\x18\\xf7\\xbe\\\r\n\\xff\\x00\\x0a\\x6f\\xe1\\x6a\\x38\\x57\\x2d\\x6c\\x5b\\xed\\x9b\\xdc\\x84\\xa6\\\r\n\\xdf\\xa7\\xf1\\xfd\\x44\\x34\\x53\\xf8\\xe4\\xf8\\x41\\x35\\x63\\x98\\x9a\\xde\\\r\n\\x43\\xeb\\x82\\x14\\x0b\\xd8\\x58\\xcd\\x6b\\x70\\xac\\x42\\x38\\x79\\xf9\\xa8\\\r\n\\xdb\\x58\\x58\\x5e\\x29\\xd6\\x6c\\x69\\xc0\\xa3\\xb4\\xf2\\x66\\xe2\\x15\\x93\\\r\n\\xcd\\x68\\x51\\x75\\x93\\x55\\x44\\x66\\x7e\\xd7\\xdd\\xde\\x94\\x42\\xea\\x72\\\r\n\\x13\\x8c\\xd5\\x06\\x31\\x89\\xc8\\x65\\xf9\\xc9\\xff\\x00\\xf7\\xec\\xc8\\x43\\\r\n\\xd1\\xdb\\x17\\xa9\\x1e\\x01\\xaa\\x8d\\x7d\\x41\\x46\\x6a\\x95\\x24\\x35\\x2a\\\r\n\\xec\\x3b\\x35\\x7b\\x67\\xfe\\xa5\\xb4\\x94\\x88\\x65\\xff\\x00\\x96\\xbe\\x5c\\\r\n\\x59\\x66\\x4c\\xe4\\xcb\\xca\\xec\\x3f\\x26\\xd5\\x92\\x63\\x28\\xd7\\xcd\\xb2\\\r\n\\x99\\xea\\x6c\\x7e\\x06\\xa1\\xf9\\xbd\\xe7\\x80\\x82\\x6a\\xf8\\xb5\\xf2\\x69\\\r\n\\xd8\\xfb\\x61\\xee\\xd1\\x58\\x4d\\x28\\x52\\x57\\x7e\\xdb\\xa4\\xaa\\xe9\\x64\\\r\n\\xba\\x12\\xf6\\x4c\\x12\\x07\\x2c\\x06\\x81\\x38\\x92\\xd9\\x7d\\x4f\\x21\\x83\\\r\n\\x08\\x89\\xa2\\xca\\x05\\xb8\\x1b\\x0f\\xa7\\x50\\xf1\\xc3\\x5c\\x9c\\x8e\\x65\\\r\n\\x14\\xa9\\x5b\\xa2\\x1f\\x21\\xf5\\xe9\\xd4\\x29\\x6c\\x3d\\x39\\xf6\\xd1\\xd2\\\r\n\\x45\\xa5\\x3f\\xc1\\xfc\\x1e\\x09\\x3c\\xbd\\x77\\x33\\xc2\\x04\\x2b\\xec\\xcf\\\r\n\\x39\\xb4\\xed\\x9a\\x55\\x0c\\x23\\xa1\\x4d\\xa9\\x5b\\x4c\\x4c\\xa4\\xbf\\x09\\\r\n\\x49\\x89\\xf6\\x92\\x4f\\x9b\\x43\\x56\\x29\\x5f\\x24\\x77\\x34\\x94\\xd6\\xc0\\\r\n\\x03\\x3c\\xd3\\x58\\xb4\\xc5\\x8d\\x92\\xef\\x73\\xf3\\x4b\\x07\\x32\\xaf\\x72\\\r\n\\xde\\xb8\\xd4\\x22\\x87\\x8d\\xaa\\xb0\\x3c\\xa6\\x08\\xa6\\x6a\\xa5\\xa7\\xd2\\\r\n\\x1a\\x11\\x9c\\x3e\\x0f\\x6a\\xe6\\x23\\x1e\\x6a\\x6e\\xa0\\x4e\\x0b\\xf3\\xb9\\\r\n\\xe4\\xf4\\x4d\\xff\\x00\\x68\\x34\\x3c\\x19\\x2b\\x38\\x1e\\x37\\x5d\\x68\\xe2\\\r\n\\x7b\\xed\\x05\\x5d\\x9c\\x1b\\x26\\x26\\xf4\\xd1\\x81\\x3a\\xa1\\x45\\x6b\\x2a\\\r\n\\xe5\\xb2\\x4d\\x82\\xb3\\x43\\x64\\x99\\x2a\\xec\\x71\\x61\\x9c\\x2d\\x4b\\xc1\\\r\n\\x45\\x3f\\x64\\x7b\\xe0\\x46\\xc1\\x56\\xbd\\xcb\\x7d\\xe5\\xf2\\x97\\x56\\x47\\\r\n\\x69\\xd0\\x09\\xee\\x67\\xb2\\x21\\x5e\\x41\\xab\\xf6\\xc5\\x44\\x43\\xc8\\xdc\\\r\n\\x43\\x91\\x95\\xa2\\xb1\\x2a\\x38\\xfa\\x00\\xe7\\x22\\x1e\\xfb\\xbc\\xb0\\x07\\\r\n\\xfd\\xdc\\x07\\x4c\\x52\\x22\\x20\\x42\\xca\\xbe\\xea\\xc9\\xc7\\x56\\xa5\\x4c\\\r\n\\x1c\\x1e\\x56\\x31\\x26\\xe6\\xb6\\xb7\\xba\\xdb\\xfb\\xa6\\x00\\x88\\x9b\\x69\\\r\n\\x8c\\x8a\\x6d\\xde\\x55\\xb4\\xc8\\x14\\x5a\\xdd\\x9f\\xb4\\x37\\xe8\\x5c\\x78\\\r\n\\x8b\\x7a\\x7d\\x66\\xf7\\x95\\xbe\\x97\\xb8\\x37\\x35\\x0c\\x9b\\xef\\x90\\x65\\\r\n\\x6d\\x51\\xe5\\xab\\x5d\\xd3\\xe9\\x01\\xf0\\x12\\x4e\\x15\\x4f\\x26\\x8c\\x94\\\r\n\\xd0\\x23\\x9c\\xb4\\xba\\x55\\xbf\\x4c\\x2d\\x55\\x16\\x59\\x17\\x6a\\xe5\\xa0\\\r\n\\x6c\\xbd\\x1c\\xce\\x7e\\xce\\x73\\xea\\x71\\xa7\\xdd\\x47\\xc5\\x6e\\x44\\xec\\\r\n\\x55\\x5b\\xa7\\xeb\\x89\\x13\\x90\\xf5\\x0b\\xeb\\xa6\\x1e\\x9e\\x1d\\x5c\\xe0\\\r\n\\xe2\\xeb\\x22\\xc4\\xfa\\x9a\\x17\\xff\\x00\\x50\\x2a\\x55\\x33\\x55\\xe5\\x87\\\r\n\\x24\\xfc\\x72\\x97\\x2c\\x7e\\x8e\\xaf\\x81\\xd9\\xab\\x19\\x7d\\x8a\\xea\\x6e\\\r\n\\xf7\\xa9\\xe8\\x78\\x3b\\x23\\xe1\\x66\\x2e\\x35\\x19\\xc6\\xc2\\x1e\\xd5\\x3b\\\r\n\\xe2\\x86\\x7b\\xe5\\xd1\\x34\\xaa\\x28\\x67\\x3b\\xcb\\x2b\\x81\\x47\\xfe\\x54\\\r\n\\xc1\\x17\\xc5\\xf5\\xc7\\x38\\x34\\x79\\x29\\x36\\x5c\\x21\\x7b\\x66\\x43\\x11\\\r\n\\x95\\x61\\xde\\x09\\x31\\x76\\x3c\\x6d\\x43\\x90\\xa1\\x0f\\xf3\\x97\\xee\\x24\\\r\n\\x94\\x1c\\xd7\\x55\\xd9\\x4a\\xcd\\x79\\x26\\xb3\\x2c\\x18\\xf3\\xc8\\xd0\\xa0\\\r\n\\xed\\x9f\\x30\\x15\\x17\\x4e\\xd7\\xfa\\x7d\\x9b\\xaa\\xe8\\xa2\\x3e\\x76\\xcd\\\r\n\\x70\\xb6\\xf1\\x4a\\xa1\\x1b\\xaf\\x05\\xcd\\x7d\\x8d\\xb5\\xbf\\x68\\xdc\\xcd\\\r\n\\x3c\\x17\\x2c\\x34\\xcf\\x02\\x29\\x62\\x9d\\x25\\xce\\x57\\xe2\\x2d\\x78\\xd9\\\r\n\\xad\\x84\\xc2\\x38\\x2c\\xd9\\xd6\\x46\\x57\\x54\\xcc\\x69\\x3f\\xca\\x55\\xa7\\\r\n\\xea\\xfd\\xba\\xd2\\xac\\xd4\\x52\\xe9\\x63\\xa0\\xa3\\x37\\xc7\\x6a\\x1f\\x8c\\\r\n\\xf5\\x01\\xf9\\xa3\\x7f\\x0f\\x63\\x19\\x13\\x38\\xc1\\xeb\\xfe\\x2e\\x0a\\xf5\\\r\n\\xa1\\x84\\x1b\\x0a\\xef\\xf4\\x0c\\xaf\\x49\\x67\\x16\\x3b\\x95\\xb6\\x4d\\x97\\\r\n\\x3d\\x38\\xbc\\xcf\\x9e\\xe5\\x98\\xda\\xd8\\x3f\\x3f\\xaa\\x15\\xb8\\x5f\\xf1\\\r\n\\x02\\x76\\xb8\\x5e\\x53\\x39\\x2b\\x35\\xed\\xeb\\x84\\xd7\\x52\\x51\\x72\\x59\\\r\n\\x54\\xff\\x00\\x4f\\x99\\xcb\\x59\\x9a\\xb7\\x6f\\x7c\\xb7\\x49\\xcf\\x8d\\x88\\\r\n\\xf8\\x19\\x54\\x42\\x2e\\xb6\\xf6\\x86\\xc2\\x55\\x95\\x99\\x2a\\xca\\xb7\\x93\\\r\n\\x68\\xa9\\x73\\xff\\x00\\x38\\x9e\\xf8\\xf9\\x61\\x08\\x1a\\x2d\\xc7\\xeb\\x8e\\\r\n\\x4b\\xff\\x00\\xdb\\x58\\xbf\\x26\\x30\\x86\\x1c\\x1b\\x5c\\xe4\\x3b\\xae\\xdb\\\r\n\\x30\\xa7\\x97\\xae\\xdb\\xb0\\x48\\x1e\\x51\\xec\\xda\\x81\\x02\\x48\\xf9\\xe8\\\r\n\\x7e\\x73\\xed\\x35\\xf5\\x15\\xa9\\x05\\x5d\\x72\\x53\\x95\\xc1\\xa4\\x09\\x7f\\\r\n\\x58\\x70\\x89\\x85\\x96\\x35\\x99\\x64\\x08\\x9b\\x14\\xb2\\x1f\\xd2\\xf8\\x90\\\r\n\\x42\\xbf\\x45\\xd5\\x46\\xce\\x35\\x4a\\xf1\\x89\\xbd\\x44\\x64\\xfd\\xb7\\xe5\\\r\n\\xc3\\xb9\\xec\\xfd\\x25\\x92\\xbf\\x69\\x7a\\xe4\\x2d\\x3d\\x3b\\xb0\\x07\\xa7\\\r\n\\x1f\\x1c\\xa5\\xcc\\x0b\\xf4\\x8a\\x4a\\x5a\\x45\\x6e\\x56\\xea\\x61\\x35\\x9b\\\r\n\\xcc\\x8a\\xa3\\xbf\\xa1\\x17\\x5c\\xce\\x13\\x95\\xf3\\x8e\\x89\\x68\\xc7\\x41\\\r\n\\xae\\xe3\\x49\\xc7\\x46\\xab\\xe6\\x11\\x17\\xbb\\x2a\\x36\\x8c\\x65\\x8d\\x80\\\r\n\\xdd\\x2b\\xa0\\xa7\\x73\\x9c\\xe6\\xde\\xfa\\x4a\\x37\\x57\\x41\\x56\\x57\\xb0\\\r\n\\x06\\xa9\\xb1\\x01\\x33\\xe1\\x75\\x75\\xd8\\x61\\x52\\xda\\xb4\\x19\\x2c\\xc6\\\r\n\\x36\\x51\\x65\\x03\\x84\\x62\\xd0\\xbd\\xf0\\xf4\\xbf\\x51\\x4e\\x79\\x77\\x66\\\r\n\\xc1\\x8b\\x61\\x5c\\xb6\\x4e\\xb8\\x97\\xe3\\xd4\\x56\\x7a\\x67\\x62\\x4f\\xf5\\\r\n\\x55\\x8e\\xf2\\x60\\x9f\\xfd\\x9d\\x97\\xf7\\xfb\\xb7\\xba\\x25\\x3f\\x2a\\x9d\\\r\n\\x5e\\xd6\\x0a\\x17\\xa0\\x91\\x2c\\xe2\\xb8\\x18\\x01\\xed\\x87\\x65\\x99\\xfa\\\r\n\\xa8\\x6c\\x69\\x2c\\x8e\\xcc\\x61\\xde\\x93\\x8b\\xf2\\x3c\\xcf\\x54\\x4a\\xc6\\\r\n\\xc6\\x82\\xa5\\x1a\\x0a\\xdb\\x2b\\x54\\x94\\xf2\\x16\\x01\\x3f\\x7e\\xec\\x4a\\\r\n\\x79\\x26\\xcc\\xbc\\xb5\\x19\\x18\\xf2\\xda\\xd0\\x8c\\xca\\xba\\xbc\\x46\\xaa\\\r\n\\x99\\x91\\x60\\xda\\xcb\\x8b\\x81\\xea\\x47\\xa5\\x6b\\x97\\x0e\\xd7\\x4d\\xad\\\r\n\\x66\\xaa\\x83\\xeb\\x2b\\x4c\\xe2\\x9f\\xcb\\x04\\x45\\xf4\\xf6\\x7d\\xb9\\xd1\\\r\n\\xd5\\x69\\x55\\x35\\x43\\xd5\\x19\\xb7\\xdc\\xe2\\x95\\x82\\xac\\xab\\x5c\\x72\\\r\n\\x65\\xad\\x1f\\xf7\\xbe\\x35\\x54\\x72\\xc6\\x02\\x70\\x81\\xba\\x23\\x42\\x52\\\r\n\\xad\\xb9\\xcd\\x43\\x63\\x94\\xa9\\x6d\\xbb\\x7a\\x35\\x79\\x60\\xdf\\xea\\x8b\\\r\n\\xd2\\x67\\x6c\\xd2\\xd0\\xe8\\x32\\xf4\\xc2\\xae\\xbf\\x6e\\x4b\\xd3\\x61\\x6d\\\r\n\\xe0\\xcb\\xd6\\x65\\xb0\\x03\\x14\\xcc\\x98\\x60\\xb8\\x21\\x13\\x24\\x5e\\xcf\\\r\n\\x58\\xd6\\xe1\\x58\\x95\\x66\\x99\\xcb\\x18\\xa3\\x3b\\x39\\x72\\x2d\\x71\\xc7\\\r\n\\xe1\\xcc\\xba\\xa5\\x48\\x57\\x76\\xc4\\xd4\\x59\\xf4\\xc6\\x2b\\xe3\\xa0\\x3a\\\r\n\\x37\\x35\\x1f\\x2f\\x16\\x1c\\xfb\\x1f\\x3d\\xdc\\xef\\x9b\\x5a\\x42\\xdd\\xf7\\\r\n\\x3f\\x47\\xf9\\x69\\x4c\\xc8\\x8a\\x46\\x69\\x68\\x06\\xdf\\x55\\xda\\x70\\x5b\\\r\n\\xfa\\xd7\\x7b\\x12\\xc7\\xd6\\x5d\\x91\\xfa\\x7d\\x72\\x17\\xc9\\x53\\x67\\x8e\\\r\n\\x59\\x60\\x33\\xcb\\x2e\\xd7\\xcf\\xce\\xad\\x66\\x15\\xac\\xd9\\xf6\\xab\\x06\\\r\n\\x4d\\x3e\\x14\\x81\\xe1\\x2d\\x13\\x4c\\xdc\\x18\\x91\\xa5\\x52\\xc5\\x97\\x7a\\\r\n\\x34\\x13\\x88\\x8e\\x36\\xb6\\x27\\xf9\\xec\\xdb\\xcf\\xf7\\xa6\\x5e\\x83\\xb6\\\r\n\\x2f\\xeb\\x1b\\x8d\\xcd\\x42\\x15\\x32\\x4f\\xa6\\x24\\xfb\\xe2\\x96\\x23\\x8e\\\r\n\\x8b\\x58\\x9a\\xd6\\x65\\xc9\\xdb\\x10\\x71\\x90\\x7a\\xd2\\xc5\\xb0\\xed\\x42\\\r\n\\x1c\\xaf\\x81\\x2c\\x68\\x2a\\x3e\\xc8\\x8f\\x9f\\x08\\x85\\xa9\\xab\\x08\\x16\\\r\n\\xcb\\xae\\xb5\\x55\\x96\\xb4\\xa7\\xb6\\x4c\\x5d\\xe7\\xc5\\xce\\x98\\x72\\xa6\\\r\n\\x73\\xe9\\xde\\xe8\\xa7\\x43\\xa6\\xa2\\x72\\xb8\\xc0\\xa2\\xce\\x86\\x35\\xa9\\\r\n\\x6c\\xd7\\x9d\\x2e\\xac\\x37\\x8c\\x2c\\x02\\xda\\x86\\x52\\x55\\x55\\x6b\\x63\\\r\n\\x53\\x0f\\x9d\\xbd\\xfa\\xfd\\x83\\x96\\x85\\x9b\\x3d\\x8e\\x50\\xbf\\xcb\\x7a\\\r\n\\x6b\\x8f\\xc6\\x63\\x0a\\xd8\\xea\\x97\\x9e\\x5a\\x8a\\x39\\x3b\\x93\\xe9\\x3c\\\r\n\\x2c\\xb8\\xbf\\x8b\\x16\\x52\\x83\\xd6\\x20\\x4c\\x44\\xb1\\x21\\xcb\\x55\\xf6\\\r\n\\xbb\\x06\\xea\\x60\\xc3\\xb6\\x2e\\x8d\\x63\\x6b\\x2d\\x78\\xc8\\x2c\\x55\\x5a\\\r\n\\x4d\\xc6\\x11\\x54\\x35\\x00\\xf9\\x6d\\xac\\xe7\\xc5\\x6d\\xe9\\x41\\x3a\\xfa\\\r\n\\xa3\\xb2\\x58\\x81\\xb6\\x40\\x36\\x57\\x00\\x5a\\x23\\x02\\x19\\x13\\x54\\x56\\\r\n\\x83\\x8b\\x09\\xc1\\xe9\\xa3\\x7b\\x5d\\x5e\\x27\\x6d\\x26\\xc5\\x47\\x16\\x33\\\r\n\\x5e\\x5b\\xfa\\x7d\\x5f\\xa5\\x09\\x56\\x9a\\x2d\\xd4\\x42\\x61\\x5a\\xb4\\x50\\\r\n\\x2e\\x6b\\x4c\\x84\\x99\\x0a\\xc2\\xe1\\x59\\x7e\\x6a\\x7e\\x65\\xb5\\x87\\x62\\\r\n\\xe6\\x45\\x9f\\x85\\xe8\\xbe\\x02\\x0a\\xe2\\xe2\\xba\\x2a\\x66\\xd5\\x54\\xc9\\\r\n\\xd6\\x2c\\xbc\\x02\\xcc\\xa1\\xc8\\xec\\xcf\\xd3\\x29\\x6e\\xd7\\x7a\\x32\\x76\\\r\n\\x4c\\x9f\\xe2\\x91\\x4e\\xa2\\x27\\xb3\\x88\\xbb\\x4e\\x91\\x2b\\x08\\xfd\\xb2\\\r\n\\xd7\\x59\\x0f\\x7a\\x1a\\x2a\\xc0\\x65\\x12\\xf5\\x12\\x43\\x62\\xc8\\x50\\x92\\\r\n\\x4c\\x59\\xa6\\x73\\x0f\\xe7\\x23\\x55\\xf0\\xef\\xce\\xa5\\x53\\x45\\xb1\\xca\\\r\n\\x0d\\x3a\\xaa\\x76\\xff\\x00\\xd7\\xd7\\x43\\xcd\\xb6\\x95\\xca\\x6e\\x55\\xda\\\r\n\\x9d\\x9c\\x90\\x33\\x8f\\x3c\\x7c\\x45\\x07\\xe5\\x47\\xf3\\x25\\xc8\\xc5\\x25\\\r\n\\xc1\\x0f\\x50\\xb4\\x6a\\x54\\x8b\\x05\\x76\\xfd\\xc3\\x6a\\x21\\x29\\x70\\xaa\\\r\n\\x96\\x25\\xd2\\x49\\xa8\\x3a\\x1b\\x1f\\xd1\\xb5\\x7e\\x3c\\x1b\\x29\\xd7\\x35\\\r\n\\x6f\\x4f\\x0c\\xcb\\x42\\x57\\x35\\x54\\x85\\xbd\\xcb\\xec\\xc5\\x60\\x16\\xc6\\\r\n\\x0b\\x12\\x16\\x30\\x20\\xe6\\x02\\x58\\x3c\\x1e\\x74\\x29\\xc6\\xf7\\xaa\\x57\\\r\n\\x31\\x60\\x77\\x40\\xd8\\x0b\\x10\\x8a\\xeb\\xab\\xdb\\x01\\xfe\\x55\\xe8\\x2b\\\r\n\\x48\\x35\\x6a\\xf6\\xac\\x89\\xbd\\x15\\x25\\xa2\\xe3\\xca\\x4c\\x22\\x5b\\xd3\\\r\n\\xc8\\x35\\xf7\\xea\\xd7\\x48\\xd5\\xbc\\xd9\\x84\\x30\\x41\\x3c\\xe2\\xac\\xd7\\\r\n\\x65\\x6a\\x62\\xb2\\xd1\\x24\\x26\\xd3\\x14\\xb5\\xad\\xc7\\x3d\\x52\\x0f\\xaa\\\r\n\\x1f\\xe2\\xd1\\xb0\\x91\\x3b\\xe6\\x92\\x52\\x24\\xef\\xd7\\x83\\x04\\xad\\x6e\\\r\n\\x5d\\x54\\xb9\\x07\\x9a\\x7a\\xf5\\x16\\xf3\\x95\\x01\\x45\\xb1\\x0b\\x25\\xc3\\\r\n\\x14\\xd8\\x9b\\xdb\\x04\\x55\\xf5\\x17\\x1e\\xc5\\x93\\xdb\\xb5\\xa2\\x5c\\xba\\\r\n\\x1d\\x5e\\xcd\\x2e\\xfc\\xd2\\x56\\xa9\\x6f\\xb4\\x74\\xe9\\x71\\xf5\\xcb\\xd4\\\r\n\\x5b\\xe4\\xc8\\x29\\xe9\\x81\\x52\\xc8\\xa4\\x83\\x02\\xd5\\x34\\x49\\x87\\x20\\\r\n\\xb7\\xd7\\xaf\\x56\\x7d\\x75\\x85\\x14\\x27\\x9d\\x2f\\x8c\\xf1\\x9f\\x66\\xbe\\\r\n\\xa5\\xa6\\xfc\\xc8\\xd0\\x4e\\xba\\x55\\x36\\x0b\\xc4\\x4f\\x38\\xaf\\x23\\xa7\\\r\n\\x3d\\x57\\x40\\x28\\xaf\\x1d\\xb5\\xb7\\x25\\xf7\\x73\\x31\\x5a\\x8f\\x2d\\x71\\\r\n\\x76\\xf5\\xa3\\xd8\\xcc\\xc0\\xf3\\x89\\x30\\xe8\\x67\\x66\\x7b\\x99\\xbe\\x14\\\r\n\\x3a\\x11\\x33\\x52\\x61\\xae\\xeb\\x94\\x3d\\x94\\xa1\\x50\\xd7\\xd4\\x4a\\xbc\\\r\n\\xe3\\x65\\xd0\\x95\\x71\\x07\\xde\\x0e\\xd3\\xb1\\xd3\\xd8\\x54\\x97\\xe7\\x43\\\r\n\\xd4\\x3c\\x09\\x90\\xb9\\xe7\\xc6\\x85\\x85\\xe0\\xbd\\xbe\\x9e\\xe2\\x3f\\xfe\\\r\n\\x67\\x5e\\x93\\x2b\\x69\\x12\\x1d\\x9a\\xd2\\x74\\x48\\xea\\x4a\\x36\\x6b\\x47\\\r\n\\x4c\\xcc\\x7f\\xbf\\x98\\x4b\\x75\\x33\\xc4\\x69\\x45\\xfe\\x48\\xcc\\x66\\xe8\\\r\n\\xb8\\x3b\\xfa\\x6a\\xd3\\x4e\\x39\\x7c\\xd4\\xca\\x9e\\x36\\x90\\x12\\x7b\\xa3\\\r\n\\x12\\x8a\\x67\\xec\\x67\\xe4\\xb2\\x8e\\x30\\x65\\x72\\xd7\\x53\\x3b\\x9f\\x8f\\\r\n\\xd5\\x86\\xc8\\xef\\x29\\xed\\x29\\x99\\xff\\x00\\x30\\xa9\\xcd\\x54\\xcb\\x31\\\r\n\\xf9\\x24\\x9b\\x2a\\xb8\\x38\\x72\\x44\\x21\\x03\\x54\\xb3\\xb7\\x55\\xc5\\xbb\\\r\n\\x1f\\xf9\\x9d\\xbf\\x8d\\xd5\\xd7\\x34\\xcd\\xee\\x4e\\xaf\\x5b\\x8f\\x49\\x61\\\r\n\\xd0\\x49\\x53\\x30\\x51\\xfb\\x3b\\xc8\\xda\\x3d\\x05\\x69\\x51\\xb8\\x4e\\xd6\\\r\n\\x4d\\x21\\xc8\\xc2\\xba\\xbc\\xdd\\x86\\xc9\\xa7\\x29\\x50\\x7f\\x51\\x60\\xe1\\\r\n\\xf3\\x8c\\x4c\\xfa\\xbd\\x60\\x3f\\x2f\\x4b\\x5b\\xf1\\x6b\\x68\\x7d\\x32\\xac\\\r\n\\x7f\\xef\\xbd\\x33\\x81\\x37\\xd9\\x9f\\x27\\x50\\xb4\\x99\\x48\\x34\\x05\\x02\\\r\n\\x49\\x0a\\x24\\xb1\\xae\\x1a\\x2e\\x15\\x84\\x3b\\xc8\\xac\\x40\\xd8\\xab\\x28\\\r\n\\x73\\xcb\\x9f\\x84\\xd6\\xb4\\x1f\\xdf\\x9f\\x96\\xcc\\x25\\x53\\x6b\\x6d\\xfb\\\r\n\\xb4\\xf7\\xd9\\xd6\\xc2\\xfb\\x0a\\x41\\x9f\\x4f\\xf2\\xa0\\x88\\xe7\\x47\\x2e\\\r\n\\xc2\\xeb\\x76\\xb5\\x6d\\x6d\\x5d\\xdd\\x19\\x09\\x2f\\x52\\x82\\xd8\\xac\\xb2\\\r\n\\x75\\x91\\x35\\x36\\x05\\xc8\\xa8\\x27\\x9e\\x8f\\x8b\\xd8\\xf0\\x63\\xb1\\xb6\\\r\n\\x88\\xb8\\x4b\\x28\\xd8\\xbb\\x64\\xed\\x3b\\x3c\\x4a\\xca\\xbd\\x18\\x5a\\xd6\\\r\n\\xd4\\xbc\\xd2\\xc9\\xa6\\xaf\\x08\\xa8\\xe4\\x4a\\x34\\x23\\x4c\\x26\\xf5\\xd7\\\r\n\\x1f\\x1d\\xe5\\xab\\x6a\\xdc\\x16\\x72\\xb4\\x46\\x7a\\x96\\xd6\\xe2\\xaf\\xd1\\\r\n\\xdc\\x01\\x0c\\x2d\\x89\\xa0\\xb7\\xa7\\x56\\x7f\\x44\\x15\\x78\\x9c\\xf2\\xbf\\\r\n\\xb7\\x67\\xfd\\x4b\\x55\\x50\\xca\\x62\\xa6\\x1f\\x21\\xe9\\xf5\\x80\\x63\\x5b\\\r\n\\xb4\\xcd\\xa7\\xfa\\xeb\\x80\\x60\\xf0\\xe9\\x8b\\xcf\\x95\\x56\\x63\\x4f\\x41\\\r\n\\x3a\\xa6\\x9a\\x1f\\x7b\\x1a\\xe2\\xc4\\x63\\xf5\\x04\\x5c\\xb2\\xe5\\x90\\x78\\\r\n\\xa3\\xf4\\x33\\xf8\\xef\\xbd\\x56\\x5f\\xab\\xee\\x71\\x55\\x16\\xd6\\xd6\\xd3\\\r\n\\x6e\\xbe\\xb1\\x77\\xad\\x58\\x9a\\x80\\x1b\\x2c\\x14\\x35\\xf0\\x74\\x90\\x07\\\r\n\\xdd\\x5c\\xb5\\xb2\\x5a\\xc4\\x75\\xb5\\xcb\\x29\\xd9\\xf4\\xa2\\x45\\x73\\x0c\\\r\n\\x6d\\x1b\\xfb\\x03\\xd7\\x16\\x44\\x18\\x0d\\xfa\\x4c\\x35\\x29\\xd3\\x13\\xdc\\\r\n\\x26\\x2e\\xfe\\xfd\\x33\\xc9\\xbf\\x26\\x73\\xb4\\x45\\x81\\x7b\\x69\\xd6\\x6a\\\r\n\\x5b\\xdf\\x5b\\xb1\\x65\\x45\\x9d\\x5c\\x87\\x06\\xe9\\x9e\\x86\\xe6\\x9e\\x24\\\r\n\\x44\\x45\\x84\\xd6\\x60\\xce\\x2e\\x54\\x7e\\xeb\\x4c\\xa8\\xcb\\x7f\\x79\\x7d\\\r\n\\x3c\\x65\\xec\\x35\\xd0\\x16\\xec\\x2f\\x99\\x1f\\x0f\\xa3\\x6f\\xf1\\xff\\x00\\\r\n\\xd7\\x3b\\xdf\\x39\\xa2\\xbd\\x71\\xbd\\xe9\\xfe\\x8d\\x09\\x3f\\xb3\\x86\\x9e\\\r\n\\xad\\xa6\\x49\\x22\\x5b\\xd6\\x5e\\x5b\\x64\\xf1\\xd3\\x86\\x5b\\x55\\x40\\x3d\\\r\n\\x0b\\x3b\\x0d\\x05\\x8b\\xe5\\xfd\\xc0\\xbb\\xc0\\xb3\\xf5\\x67\\x73\\x6d\\x1a\\\r\n\\xa8\\xa9\\x8c\\x7a\\x30\\x5e\\x2d\\x87\\xd3\\x21\\x96\\xb0\\xfa\\x51\\x7c\\x8a\\\r\n\\x1c\\xbf\\x0f\\x0a\\x7e\\x90\\x2c\\x4b\\xe2\\x9a\\x6c\\xf0\\x82\\x97\\x08\\x52\\\r\n\\x10\\xa2\\x07\\x9a\\x7e\\x1e\\x55\\x0e\\x7c\\xff\\x00\\x62\\xae\\xa5\\x8e\\x43\\\r\n\\x79\\x54\\xfe\\x93\\x61\\x93\\xa0\\x0e\\x55\\x23\\x04\\xf6\\xa9\\xa2\\xb8\\xf8\\\r\n\\xc2\\xbf\\x44\\x1e\\x56\\x42\\x5f\\x7a\\xbf\\xdc\\x63\\xd8\\x8f\\x90\\xf2\\x0b\\\r\n\\x47\\x8a\\x93\\xe7\\x83\\xbc\\x70\\x50\\x03\\xcd\\xf4\\x32\\x52\\x23\\x2f\\x27\\\r\n\\xf5\\x2b\\xc1\\x57\\x63\\xf6\\x48\\x78\\x44\\x24\\xb0\\x9c\\x5e\\x26\\x64\\xbf\\\r\n\\x2d\\x4e\\x25\\x49\\xf1\\xeb\\x9b\\xd5\\x99\\xf0\\x73\\x91\\x6a\\x85\\x29\\xd4\\\r\n\\xac\\x9d\\x12\\x9a\\x3b\\xe6\\xea\\x26\\xab\\x1b\\x1e\\x16\\x0b\\xbf\\x7e\\xdb\\\r\n\\x31\\xc5\\x58\\x1e\\x64\\xa2\\xab\\x37\\x1e\\xd6\\x54\\xd9\\x79\\x72\\xac\\xe1\\\r\n\\x38\\x47\\xdd\\xca\\x89\\xf0\\xa8\\x40\\x73\\x80\\xf2\\xd5\\x67\\xb0\\xbd\\xbf\\\r\n\\xb3\\x85\\xb5\\x62\\x3c\\x9b\\x8c\\xd8\\x05\\x8b\\x43\\xb5\\x20\\x85\\xba\\xf6\\\r\n\\xc7\\xdb\\x7f\\xcc\\x4a\\xa7\\x65\\x8e\\xcc\\x06\\x6b\\xc8\\xb4\\xe3\\x9c\\xcb\\\r\n\\x4b\\x65\\x1b\\x1a\\xd5\\xfe\\x3e\\xd0\\x27\\xde\\xd1\\xaa\\x2f\\x60\\xe1\\xda\\\r\n\\xd2\\xa4\\xf4\\x5e\\x5a\\x49\\xfc\\x47\\x3a\\xc0\\x9a\\xd7\\xf5\\xad\\x26\\xad\\\r\n\\x4b\\xdc\\x64\\xf1\\x14\\x01\\xc6\\x95\\xe5\\x83\\x7f\\x96\\xbc\\xeb\\xbd\\x46\\\r\n\\xc5\\x8b\\xa7\\xa9\\xcc\\x14\\x98\\x3a\\xf5\\x94\\x93\\x6e\\xd9\\xc3\\xe5\\x99\\\r\n\\x22\\xba\\xe6\\x00\\x38\\xca\\xfc\\x64\\x65\\x40\\x4c\\x2b\\x50\\x6f\\x8c\\x3e\\\r\n\\x5d\\x2d\\x25\\xac\\xee\\x06\\x70\\x48\\xb6\\x42\\x60\\xc6\\x80\\x7d\\xf7\\x11\\\r\n\\x88\\x99\\xaa\\x62\\x22\\x26\\xb9\\x88\\x2d\\x9f\\xa2\\x79\\x8e\\xd4\\x7f\\x3e\\\r\n\\xc2\\xf6\\xb5\\x86\\xec\\xbf\\x39\\x57\\x2b\\x29\\x89\\xd4\\x6a\\x2d\\x49\\xee\\\r\n\\x79\\x49\\xc7\\xab\\xc4\\x9c\\x72\\x74\\xc2\\x0d\\x53\\x97\\x77\\xc0\\x91\\xa4\\\r\n\\xe0\\x67\\x69\\x68\\x3a\\xb5\\xdf\\xcc\\x08\\x0d\\x57\\x06\\xbc\\x33\\x81\\x29\\\r\n\\x84\\xc4\\xb4\\x59\\x0e\\xfc\\x8d\\x64\\x8e\\x0f\\x13\\xae\\xe8\\x9a\\x79\\x09\\\r\n\\x20\\xd6\\x30\\xdf\\x5a\\x18\\xf5\\xca\\xdc\\x29\\x63\\x31\\xda\\xd7\\x97\\xdf\\\r\n\\xe3\\x1d\\x34\\x7c\\xb2\\xab\\xe7\\xbd\\x77\\x11\\xd4\\xd7\\x0f\\x61\\x60\\x3b\\\r\n\\xc0\\x5e\\x98\\xaf\\xe7\\x2e\\x1a\\x5f\\xc4\\xac\\xcd\\xc4\\xfa\\xc7\\xf7\\xb4\\\r\n\\x32\\x23\\x0e\\x32\\x13\\x46\\x19\\xe3\\x87\\xe5\\xd3\\x10\\x70\\x9f\\xee\\x1c\\\r\n\\x0e\\x5b\\x14\\x76\\x49\\x54\\x52\\x8d\\x32\\xb7\\xed\\xf8\\x40\\xd7\\xfc\\x9d\\\r\n\\xb8\\xfa\\xca\\xc6\\x27\\x77\\xc4\\x6b\\xbf\\xe8\\xb1\\x4a\\x28\\x78\\xc9\\x5d\\\r\n\\xfb\\x50\\xa2\\x1c\\x0f\\xd9\\xd7\\x34\\xf0\\xd2\\xfb\\x76\\x72\\x80\\x96\\x59\\\r\n\\x42\\x89\\x99\\x5d\\x32\\x36\\xa0\\xcd\\xff\\x00\\x55\\x1b\\xb7\\xa5\\xe5\\xa4\\\r\n\\x4a\\x1b\\x08\\xb2\\x9f\\x19\\x49\\x87\\xfe\\x03\\x3c\\xfd\\xe8\\xc0\\x88\\xe3\\\r\n\\xf5\\x15\\x1f\\xca\\xa2\\x6a\\x45\\xe2\\x4a\\x40\\x1a\\x96\\x7d\\xfa\\xf4\\x86\\\r\n\\xfb\\xa2\\xb4\\xa9\\x14\\x5a\\x56\\xbe\\xaa\\x24\\x74\\xf0\\x0a\\xeb\\x58\\xa1\\\r\n\\xd3\\x12\\xe2\\xa6\\xc4\\x53\\xbe\\x5b\\xdd\\x0c\\x81\\x2b\\xfa\\xba\\xff\\x00\\\r\n\\x14\\x45\\xfd\\x1f\\xf3\\xa3\\x50\\xc3\\xbd\\xae\\x45\\x45\\xed\\x74\\xb6\\x2b\\\r\n\\x8a\\x3a\\x16\\xad\\xf2\\x8f\\x38\\x31\\xd1\\xd1\\xa1\\x4f\\xcb\\x29\\xd2\\x9a\\\r\n\\xac\\xb4\\xa4\\xf8\\xb4\\x55\\xd1\\xb9\\x35\\x85\\xd4\\x47\\x2c\\xb6\\x4f\\x3d\\\r\n\\xa4\\xa9\\xf3\\x65\\x5c\\xb8\\xf4\\x05\\x72\\xaa\\xa6\\xdb\\x45\\x74\\xc2\\xf6\\\r\n\\x19\\xe7\\x2c\\x1a\\x42\\x20\\xff\\x00\\x8e\\x4e\\xbf\\x81\\x08\\x66\\x42\\x79\\\r\n\\xd7\\x06\\x97\\x2e\\x5b\\x6d\\xb1\\x6a\\x75\\xaf\\xa3\\x6b\\x4d\\xb6\\xa5\\x7f\\\r\n\\xb3\\x74\\x63\\xf3\\xee\\xf2\\x50\\x09\\x39\\x39\\xb8\\xd7\\xd7\\x65\\x0b\\x31\\\r\n\\x85\\x80\\x4f\\xdf\\x1b\\x18\\x80\\xc2\\x13\\x26\\x3c\\x93\\x55\\x79\\xae\\xbd\\\r\n\\x4d\\x54\\x41\\xf5\\xfe\\x8a\\x56\\x31\\xfb\\xa0\\x09\\xc8\\xb1\\x75\\xb5\\xac\\\r\n\\x45\\x9e\\xa2\\x68\\x9d\\x9a\\x40\\x79\\x40\\xa3\\x34\\x4c\\xc3\\x9d\\x15\\x56\\\r\n\\x82\\xca\\x42\\x69\\x11\\xf5\\xbf\\x3e\\x0f\\x8b\\x83\\x77\\x81\\x45\\x1b\\x8f\\\r\n\\xa0\\xd3\\xd6\\x08\\xb2\\xbb\\x9c\\xfb\\x10\\xba\\x20\\x82\\x6a\\x34\\x79\\x1a\\\r\n\\x84\\x51\\xe4\\xbb\\x65\\xce\\xfc\\x76\\x49\\x70\\x63\\x56\\x98\\x0c\\x81\\xda\\\r\n\\xbf\\xb0\\x95\\x46\\x72\\x7f\\x7e\\xa5\\x92\\x89\\x7b\\xbd\\x5f\\x16\\x1e\\x6e\\\r\n\\xfc\\x3a\\x45\\x0c\\xe4\\x52\\x53\\x7d\\x8f\\x69\\xa9\\xe1\\x1a\\x10\\x6e\\x77\\\r\n\\x04\\x64\\x46\\x4e\\xd4\\xe8\\x91\\xef\\x8d\\x95\\xe9\\xa8\\xeb\\xd2\\xf2\\xdd\\\r\n\\xb0\\x3a\\xce\\x7e\\xe3\\xec\\xd6\\xdb\\x58\\xb5\\xf8\\x97\\xef\\x0e\\x39\\xc7\\\r\n\\x70\\x69\\x75\\xc6\\xcb\\x95\\xa5\\x69\\xeb\\x6f\\xc8\\x97\\x34\\x0d\\x77\\x94\\\r\n\\xea\\xb3\\x0a\\xe6\\x1a\\x92\\x7e\\x3b\\x1f\\xb6\\x1a\\x95\\x4d\\xde\\x6a\\xa8\\\r\n\\x9d\\x99\\xf3\\xd4\\xa0\\xae\\x78\\xcc\\x9a\\x72\\x8f\\xce\\x31\\x24\\xc7\\xfc\\\r\n\\x5f\\x87\\xb6\\x4b\\x7c\\x82\\x7a\\xbe\\x5f\\xc9\\x1c\\xd1\\x91\\x1a\\x94\\xc0\\\r\n\\x0a\\x86\\xe3\\x0e\\xd7\\xac\\xb9\\xbb\\x7a\\xb1\\xfc\\x4d\\xa8\\x88\\x3d\\x80\\\r\n\\xe5\\xc3\\x4f\\xec\\xa1\\xf5\\x43\\x22\\xcd\\x32\\xf3\\xb1\\xa5\\x14\\x96\\xff\\\r\n\\x00\\xd5\\xca\\xcb\\x80\\xbe\\x1b\\x6a\\x49\\x8f\\xab\\xab\\xc2\\x1b\\xa4\\x74\\\r\n\\x28\\x89\\xa0\\x01\\x98\\x02\\xef\\x90\\x55\\xd6\\x9a\\x5e\\x66\\x13\\x32\\xbe\\\r\n\\xa7\\xf7\\x8a\\x2a\\x82\\x02\\x93\\xd1\\xe1\\x39\\xa8\\x6b\\xa2\\x59\\x49\\xf7\\\r\n\\x83\\x61\\x50\\xc4\\x32\\x54\\xe6\\x63\\xe7\\xe8\\x9b\\xda\\x54\\x2f\\xfd\\xc5\\\r\n\\xd4\\xd5\\x56\\x2f\\xbf\\x7c\\xe2\\xa7\\xc0\\x73\\x4a\\x9b\\x7b\\x73\\xe7\\x43\\\r\n\\x3d\\x4e\\xa2\\xc6\\x22\\x7f\\x63\\x67\\x64\\xbe\\x4a\\x4b\\xda\\xd0\\x49\\xff\\\r\n\\x00\\xff\\x00\\x46\\xdb\\xef\\x93\\x45\\x9a\\xa8\\x57\\x36\\x9d\\x3e\\x20\\x96\\\r\n\\xb5\\x39\\xd5\\xe9\\xe9\\x21\\xa0\\xbf\\xfb\\x52\\x19\\x2b\\xe8\\xaa\\x97\\xea\\\r\n\\x33\\xf3\\xf5\\x6b\\xfb\\xe5\\x7d\\x9d\\x8d\\x87\\x4d\\x19\\x30\\x35\\xd6\\xe2\\\r\n\\xea\\x23\\x70\\xb5\\x79\\xb7\\x17\\xcb\\x56\\xf2\\xf3\\x58\\xb3\\x2c\\xe5\\x6e\\\r\n\\x49\\x71\\x33\\xc2\\x03\\x18\\x61\\xc8\\xf5\\x45\\x00\\x40\\xb1\\x5f\\xc1\\xb4\\\r\n\\x1e\\xcb\\xf9\\x2a\\xe1\\xf0\\xf6\\x4b\\x77\\xe3\\x10\\x8f\\xf3\\x22\\xe7\\x41\\\r\n\\x0b\\xc6\\x24\\xea\\xa1\\x83\\x0b\\xa8\\x39\\x2c\\xbc\\x54\\xb4\\x0d\\xd1\\x45\\\r\n\\xc9\\x4a\\x63\\x8b\\x4c\\xb4\\xc7\\xc7\\xf5\\x26\\x68\\x42\\x36\\x4d\\xfd\\xab\\\r\n\\x1a\\xaa\\xc8\\xf1\\x89\\x90\\x8b\\xdd\\x5e\\x44\\x42\\x9e\\x57\\xae\\x4e\\xb9\\\r\n\\x07\\x42\\x2e\\xa9\\x4a\\x7b\\x2a\\xea\\xca\\x1e\\x2d\\x3a\\x9f\\xfd\\x1c\\xe7\\\r\n\\x27\\xc8\\x36\\xdf\\xc3\\x1b\\x42\\x25\\xd9\\x2a\\xdc\\x62\\xc7\\x65\\xc6\\x45\\\r\n\\xf0\\x0c\\x03\\xb1\\x5e\\x25\\xf0\\xe8\\x0a\\xc2\\x29\\xd3\\x8c\\x69\\xb8\\x81\\\r\n\\x64\\xae\\xab\\x4a\\xf5\\x27\\x6a\\xed\\x1e\\xd4\\xa7\\x51\\x56\\xed\\x88\\x28\\\r\n\\x32\\xe5\\x6d\\x74\\x6a\\x54\\xae\\x46\\x97\\x13\\x4e\\xbf\\x96\\x8e\\x57\\x26\\\r\n\\xb0\\x2b\\xac\\x4b\\xcb\\xcb\\xde\\x9d\\x7c\\xd7\\x13\\xce\\x4a\\xf6\\xbe\\xd0\\\r\n\\x77\\x9a\\x64\\xe7\\x25\\x29\\xa8\\xb9\\x3f\\x27\\xa0\\xe7\\x26\\x8f\\x05\\x55\\\r\n\\x28\\x16\\x2b\\x18\\xda\\x61\\x0d\\xab\\xa6\\x39\\x33\\xdb\\x49\\xdb\\xfc\\xce\\\r\n\\x8b\\x39\\x54\\x8f\\x7d\\x3c\\x38\\x8b\\x6d\\x25\\xe0\\x6f\\x1d\\x14\\xc3\\xda\\\r\n\\xe7\\x4f\\xfc\\x3b\\x51\\xe7\\x40\\xc8\\xf9\\x39\\x7f\\x27\\xd9\\x82\\x30\\x14\\\r\n\\x41\\x13\\xb4\\x75\\x97\\x8f\\x69\\xc4\\x05\\x25\\x70\\xf0\\x7a\\xeb\\x35\\x63\\\r\n\\xb1\\x5d\\x3a\\xe8\\x57\\x59\\x3b\\xce\\xa5\\x61\\xfc\\xfa\\x22\\xb7\\xba\\x3c\\\r\n\\xb8\\x17\\x9c\\x34\\xc7\\x29\\x90\\x94\\xc5\\xf6\\x35\\x73\\x5c\\xbd\\xb2\\x37\\\r\n\\x0b\\x57\\xd9\\x2d\\x49\\x94\\xcd\\x5b\\x78\\xc5\\x12\\xab\\x58\\xba\\xb4\\x43\\\r\n\\xc3\\xa3\\x08\\x86\\xb8\\x52\\xe7\\x58\\xef\\x78\\xbd\\xe7\\xcd\\xc0\\x53\\xc2\\\r\n\\x7f\\xa7\\xa3\\xb5\\xb2\\xa0\\xd7\\xd1\\x6a\\x24\\x41\\x22\\xf7\\x5c\\xec\\xe2\\\r\n\\x01\\x85\\x04\\x8c\\x74\\x69\\xfa\\x59\\x78\\xff\\x00\\xf6\\x20\\x7b\\x28\\x2b\\\r\n\\xb0\\xe5\\xa8\\xde\\xaf\\x7c\\x39\\xea\\xde\\x83\\x70\\x35\\xa8\\xb7\\x31\\x69\\\r\n\\x94\\xa9\\xa8\\x22\\x7b\\xb6\\x2f\\x6a\\x7e\\xc7\\x11\\x20\\x74\\x22\\x61\\x61\\\r\n\\x43\\xc5\\xec\\x47\\x36\\x9d\\x6a\\x36\\x9e\\x4d\\x30\\x3b\\xe6\\x6d\\x93\\x5d\\\r\n\\x69\\xdb\\xc4\\x16\\x2d\\x3b\\xc0\\x94\\xcb\\x86\\x1c\\x5e\\x53\\x59\\xa5\\xca\\\r\n\\x30\\x7b\\x33\\x23\\x58\\x0d\\x69\\xd4\\x42\\x76\\x75\\x4c\\x56\\xf1\\x90\\xcc\\\r\n\\xa3\\x21\\xc3\\xd9\\x42\\x20\\x88\\x61\\x67\\x63\\xf1\\xf9\\xc8\\x33\\x15\\xe4\\\r\n\\x16\\x20\\xcc\\xbb\\xf3\\x45\\xa8\\xfd\\x43\\x8c\\x5c\\x8c\\xe1\\x62\\x18\\xf9\\\r\n\\x10\\xc3\\x83\\x05\\xd9\\xd8\\x83\\x9b\\x61\\xcd\\xb7\\x19\\x8d\\x95\\x6d\\xbb\\\r\n\\x8c\\x8a\\xa7\\xb6\\x65\\xb2\\x25\\x20\\x8a\\x82\\x8d\\xae\\xc0\\x84\\x0b\\x08\\\r\n\\x44\\x9f\\x24\\x64\\x9b\\xaa\\xb0\\xdb\\xa9\\x2c\\xe8\\x03\\x96\\x46\\x6d\\xba\\\r\n\\x5a\\xf9\\xb1\\x6e\\xd2\\x65\\xeb\\x82\\x17\\xd6\\x20\\x48\\x2e\\x71\\x92\\xfe\\\r\n\\x8b\\x4f\\xb5\\xf8\\xc0\\xbd\\x12\\xe4\\xbe\\xfb\\xf6\\x2a\\x8e\\x84\\xae\\x79\\\r\n\\x52\\xdc\\xc2\\x69\\x92\\x47\\x3c\\x27\\xc4\\xca\\xcd\\xf2\\xf3\\x8d\\x75\\xba\\\r\n\\x7c\\x09\\x35\\x81\\xae\\xb3\\x7f\\xd4\\xb6\\x87\\x2d\\x15\\x8b\\xba\\x30\\xe9\\\r\n\\x2d\\x7e\\x59\\x63\\x54\\x92\\xa3\\xb2\\xbe\\x9f\\xf6\\x93\\x47\\x5c\\xe5\\xbe\\\r\n\\xc8\\x1c\\xb1\\xae\\xcc\\xe4\\x6d\\x1a\\xbc\\xcf\\x66\\x3b\\x01\\x6c\\x2c\\x8d\\\r\n\\x50\\xb6\\x7e\\x2d\\x2c\\xe1\\x68\\x46\\x62\\x65\\xff\\x00\\xf6\\xb2\\xcf\\x7a\\\r\n\\x08\\xc2\\x72\\xe0\\x9b\\xe7\\xfc\\x90\\x2c\\xc6\\xdd\\xe8\\xe2\\x47\\x53\\x41\\\r\n\\x75\\xed\\x7e\\x49\\x7d\\x9e\\xcb\\xbf\\x5b\\xa4\\x94\\xc1\\xc0\\x08\\xbd\\x6c\\\r\n\\x02\\x15\\x13\\x44\\x97\\xc4\\x12\\xcf\\xfb\\x73\\x1e\\x7c\\x7c\\xec\\x8e\\x5b\\\r\n\\x20\\xc0\\x76\\x0a\\xf3\\xde\\xa5\\xc5\\xf5\\x9b\\x96\\x14\\xc3\\x1f\\xca\\x98\\\r\n\\xa1\\xf9\\x92\\x2c\\xa3\\x56\\x80\\x60\\x3a\\xe1\\xc6\\x3c\\x15\\xb7\\x7d\\xa8\\\r\n\\x98\\x50\\x87\\x94\\x6c\\x96\\x73\\xb2\\x50\\x1f\\x62\\xbd\\xb2\\x40\\xd4\\x5c\\\r\n\\x8f\\x4a\\x09\\xcb\\x9d\\x9a\\xe1\\x2c\\x0d\\xcf\\xe7\\x4b\\xde\\xf4\\x35\\x04\\\r\n\\x9f\\x1e\\x40\\xc4\\xb1\\xb0\\xb1\\xa4\\xad\\x68\\xcb\\x56\\x82\\xc6\\xee\\x84\\\r\n\\xe4\\x8d\\xe2\\x11\\x81\\xe7\\xc1\\xc3\\xfb\\x75\\xde\\x8d\\x59\\x7f\\xe8\\x51\\\r\n\\x0b\\x47\\x18\\xa6\\xb1\\xef\\xc8\\x37\\x21\\xc9\\x31\\x5d\\x46\\x90\\x6a\\xac\\\r\n\\xa9\\x91\\x9d\\xcd\\x45\\x32\\x3f\\x2e\\xd0\\x10\\x13\\x7e\\x9f\\x4e\\x7f\\xbb\\\r\n\\x99\\x3c\\xff\\x00\\x4e\\x6b\\x0a\\xc6\\xf6\\x9d\\x60\\x02\\xc3\\x62\\x11\\x35\\\r\n\\x28\\xff\\x00\\xce\\x62\\x9c\\xbe\\x2f\\xff\\xc4\\x00\\x49\\x11\\x00\\x02\\x01\\\r\n\\x02\\x04\\x05\\x01\\x05\\x05\\x06\\x05\\x03\\x02\\x05\\x03\\x05\\x01\\x02\\x03\\\r\n\\x04\\x11\\x00\\x12\\x21\\x31\\x05\\x13\\x22\\x41\\x51\\x61\\x06\\x14\\x32\\x71\\\r\n\\x81\\x23\\x42\\x91\\xa1\\xf0\\x15\\x33\\x52\\xb1\\xc1\\xd1\\x24\\x62\\x72\\xe1\\\r\n\\xf1\\x07\\x43\\x82\\x16\\x53\\x34\\x63\\x92\\xa2\\xc2\\x10\\x44\\xd2\\x54\\x73\\\r\n\\x93\\xb2\\xd3\\xff\\xda\\x00\\x08\\x01\\x03\\x01\\x01\\x3f\\x01\\xb6\\x9e\\xb6\\\r\n\\xf8\\x7b\\x7e\\xbe\\xb8\\xe9\\x53\\xe2\\xfb\\x5f\\x7b\\xfa\\x7e\\x3a\\x62\\x18\\\r\n\\x0c\\x8e\\x91\\x05\\xcc\\x4b\\xad\\x86\\x6b\\x75\\x13\\x72\\x01\\xda\\xdd\\xfb\\\r\n\\xfc\\xbc\\x71\\x3a\\x98\\xf8\\x7a\\xc0\\x58\\x8c\\xca\\x80\\x46\\x81\\xae\\x7a\\\r\n\\x40\\x50\\x4d\\xf5\\xca\\x2c\\x35\\xef\\x7b\\x62\\x79\\xe4\\xa8\\x91\\xe5\\x76\\\r\n\\xcc\\x58\\xdf\\xc0\\x03\\xb0\\x16\\xd8\\x78\\xc0\\x63\\x9a\\xc4\\x7f\\x3f\\xe7\\\r\n\\x80\\x35\\xed\\xbe\\x83\\xfa\\xe2\\x18\\xe4\\x96\\x4c\\x91\\xa1\\x96\\x42\\x6e\\\r\n\\xa8\\xbb\\xb1\\xff\\x00\\x8b\\xdf\\x13\\x71\\x2a\\xda\\x0e\\x17\\x92\\x1b\\x41\\\r\n\\x35\\x29\\x4e\\x74\\x31\\xd8\\x2a\\xa3\\x7d\\xec\\xd6\\x3a\\xea\\x2f\\xe1\\xb3\\\r\n\\x5f\\xce\\x2a\\xf8\\x8f\\x1a\\x14\\xd4\\xd5\\xb4\\x7c\\x42\\xa0\\xad\\x45\\xf3\\\r\n\\x41\\x75\\x21\\x18\\x1b\\x36\\x5b\\xf6\\x3d\\x80\\x5b\\xfe\\x38\\xe0\\xbe\\xd9\\\r\n\\xcb\\x29\\xf7\\x4e\\x22\\xea\\xb3\\x6a\\x91\\xce\\x02\\xd8\\xb5\\xf4\\xcc\\x84\\\r\n\\x5b\\x30\\xd8\\x9f\\x1b\\x0b\\xe3\\xff\\x00\\x52\\xf1\\x5a\\x1e\\x25\\x54\\x4c\\\r\n\\xfc\\xe8\\x9a\\x76\\x52\\x86\\xc6\\x3b\\x03\\x94\\x34\\x6a\\x41\\xcb\\xd3\\xd8\\\r\n\\x0f\\xf7\\xf6\\x62\\xb2\\x5e\\x26\\x92\\x4b\\x34\\x30\\x84\\xa5\\x26\\x45\\xa8\\\r\n\\x8d\\x19\\x24\\x67\\xcb\\xf0\\x17\\xcd\\x66\\x5d\\x76\\xd0\\x7a\\xe3\\x8c\\xcf\\\r\n\\x04\\x14\\xf9\\x63\\x0d\\x3b\\x37\\xdb\\x54\\x5a\\x3b\\xb8\\x2a\\xa4\\x08\\xe3\\\r\n\\xb0\\x24\\x65\\x17\\x6c\\xd6\\xf8\\x99\\xbd\\x31\\xc6\\x26\\x86\\x4a\\xcf\\x79\\\r\n\\x51\\x35\\x34\\x31\\x39\\x95\\x04\\xf6\\x92\\x42\\x4b\\xe7\\xbb\\x86\\x00\\x65\\\r\n\\xec\\x3a\\x40\\xb5\\x89\\xf3\\x8a\\xde\\x3d\\x3c\\xe5\\x61\\xa4\\x52\\x8b\\xf1\\\r\n\\x73\\x14\\x59\\xcb\\x6f\\x70\\x16\\xe0\\x6b\\xa0\\xb5\\xb6\\xfc\\x68\\xaa\\x38\\\r\n\\xcd\\x5d\\x30\\xa6\\xe3\\x74\\xb1\\xf1\\x0a\\x77\\x88\\x1a\\x47\\xac\\x4b\\xd6\\\r\n\\x53\\x6a\\x40\\x92\\x29\\x94\\x89\\x94\\x79\\x59\\x1b\\x50\\x36\\x0b\\x8a\\x8e\\\r\n\\x0b\\x1c\\x94\\x54\\xc7\\x87\\x55\\xc7\\x78\\x64\\xcc\\x9c\\xfc\\xd1\\x99\\x24\\\r\n\\x6c\\xb7\\x41\\x2d\\x8a\\x47\\x27\\xdd\\x11\\xc9\\x94\\x9d\\x2c\\x5f\\x15\\x14\\\r\n\\xb5\\x30\\xc4\\xd1\\xd5\\x42\\xf1\\x67\\x43\\x98\\x38\\xdf\\x30\\xd0\\x86\\x17\\\r\n\\x56\\xd3\\x50\\x54\\x91\\xa7\\xa1\\xc1\\x66\\x68\\x2b\\xa0\\x90\\xdf\\xdd\\xe9\\\r\n\\x65\\x45\\x1a\\x1b\\x85\\x21\\xc1\\x3a\\xfa\\xf6\\x1d\\xb1\\xc0\\xa9\\x24\\x34\\\r\n\\xf2\\xb2\\xa9\\xcb\\x29\\x0a\\xc7\\x61\\x9b\\x53\\x96\\xf7\\x1f\\x3e\\xf8\\x96\\\r\n\\x8d\\x12\\xa5\\x92\\x65\\x0c\\x7d\\xdc\\x38\\xd4\\x1e\\xbc\\xd9\\x42\\x0b\\x6b\\\r\n\\xb6\\xb7\\xfe\\x58\\xac\\x85\\x22\\x66\\x57\\x80\\xc3\\xb7\\xc7\\xd1\\xb9\\xba\\\r\n\\x6e\\x35\\x24\\xe8\\xbf\\x86\\x21\\x9a\\x6a\\x51\\x92\\xff\\x00\\x61\\x7b\\xb2\\\r\n\\x1d\\x6c\\x4f\\x83\\xa9\\xfe\\x60\\xe3\\x88\\x34\\x75\\x0a\\xe4\\x37\\xee\\x62\\\r\n\\x0c\\xab\\x6e\\xa2\\xe5\\xba\\xad\\xf4\\xf3\\x8a\\x6a\\xc8\\x67\\xe0\\xa3\\x38\\\r\n\\x09\\x51\\x0c\\x6b\\x12\\x8f\\xbb\\x2b\\x29\\x16\\x24\\x6e\\x1b\\x2e\\xb7\\xef\\\r\n\\x6f\\x95\\xc2\\xfc\\x20\\x75\\x66\\xd4\\x9e\\xf7\\xf5\\xed\\xfc\\xb0\\xc3\\x50\\\r\n\\x05\\x89\\x24\\xfd\\x3e\\xf6\\xf8\\xa7\\xa7\\x12\\xba\\x47\\x73\\xd4\\xc0\\x58\\\r\n\\x0d\\xf6\\xdf\\xe5\\xaf\\xcb\\x7c\\x71\\x0a\\x49\\x92\\x59\\x25\\xb3\\x64\\x57\\\r\n\\x2b\\xa8\\x37\\xd3\\xa4\\x58\\xf8\\x03\\xf2\\xef\\x8e\\x03\\x57\\x2a\\x24\\x84\\\r\n\\xb3\\x53\\xc0\\xa8\\x03\\xce\\x9a\\x29\\xbb\\x66\\x08\\xfa\\xd8\\xdf\\x5c\\xb6\\\r\n\\xea\\xd7\\xd3\\x07\\x8b\\x24\\xd2\\xcf\\xc9\\xbf\\x50\\x64\\x19\\x9a\\xf7\\x16\\\r\n\\xd5\\xb3\\x6b\\xab\\x69\\x7b\\x6b\\xdb\\x53\\x88\\x59\\x69\\x6a\\xe8\\xea\\x82\\\r\n\\x96\\x51\\xac\\xb6\\xb9\\xee\\x75\\x04\\x6e\\x2d\\xe7\\xc1\\xd7\\x13\\xb0\\xa9\\\r\n\\xa5\\x9e\\x2c\\xea\\xd2\\x4d\\x14\\x8b\\xa1\\x03\\xa1\\xd0\\xe5\\xb7\\xd0\\xdb\\\r\n\\x1c\\x23\\x87\\xcb\\xc4\\x23\\xad\\x82\\xf9\\x72\\xaa\\x33\\x48\\xe4\\xac\\x51\\\r\n\\x94\\xca\\x6f\\x24\\x8d\\x70\\xa0\\x0c\\xdd\\xfe\\x5e\\x31\\x51\\x35\\x25\\x1f\\\r\n\\x13\\xca\\x88\\xce\\xcd\\x34\\x2e\\xf5\\x24\\xde\\x35\\x56\\x82\\x06\\x4e\\x40\\\r\n\\xbe\\xfa\\x66\\x62\\xdb\\xa9\\xd0\\x0c\\x7b\\x47\\x04\\xa1\\xe5\\x69\\x64\\x69\\\r\n\\x4c\\xbf\\xe2\\x21\\x92\\x46\\xd5\\xd0\\xee\\xba\\xff\\x00\\xed\\xdc\\x0b\\x0e\\\r\n\\xc4\\x1e\\xf7\\xc4\\xdc\\xc8\\x61\\x75\\x8c\\xae\\x49\\x40\\x79\\x06\\xe7\\x32\\\r\n\\x5f\\x50\\x6d\\x8a\\x46\\x6b\\x8b\\x83\\xa6\\xb9\\xbb\\x1f\\xc7\\xf3\\xd7\\x1c\\\r\n\\x3e\\xaa\\x78\\x8a\\x64\\x61\\x66\\x05\\x40\\x72\\x72\\xb0\\x27\\x55\\xbf\\x6b\\\r\n\\x6e\\x2f\\xfe\\xf8\\x96\\x99\\xa9\\x68\\x6b\\xdb\\x24\\x61\\xdf\\x24\\x87\\x93\\\r\n\\xde\\xd9\\x35\\x07\\x4f\\x53\\xbf\\xe5\\x8e\\x2f\\x4f\\x49\\x23\\xc5\\xca\\xfb\\\r\n\\x09\\xa7\\x89\\x65\\x45\\x6b\\x04\\x95\\xcd\\xc3\\x2b\\x1f\\xb8\\xf9\\xaf\\x66\\\r\n\\xf8\\x4f\\x71\\x7d\\x5b\\x86\\xd4\\x41\\x28\\xfd\\x9b\\x3a\\x30\\x6a\\x85\\x74\\\r\n\\x60\\xfa\\x7d\\xbc\\x20\\x34\\x59\\x7c\\x13\\x1e\\x71\\x98\\x6e\\x42\\xad\\xbb\\\r\n\\xe2\\x94\\x52\\x51\\x17\\xa6\\x9a\\x79\\x65\\x78\\x9c\\xa8\\x8a\\x9a\\x2f\\x81\\\r\n\\x2c\\x59\\x33\\x4b\\x2b\\x28\\x26\\xda\\x36\\x45\\xb0\\x3b\\x13\\x87\\xac\\x8a\\\r\n\\x18\\x58\\xd3\\x51\\xc4\\x92\\x0b\\x14\\xa8\\xa9\\x3e\\xf5\\x32\\xb5\\xfe\\x21\\\r\n\\xcc\\x02\\x34\\x3a\\xea\\x15\\x08\\xfe\\x78\\xe3\\xfc\\x42\\xae\\x7a\\x18\\xd6\\\r\n\\xa2\\x79\\x27\\x49\\x60\\xcd\\xd4\\x5b\\x2a\\xc8\\xb3\\x31\\x04\\x20\\xb2\\x2e\\\r\n\\x8a\\x50\\x05\\x51\\xa5\\x86\\xc3\\x1e\\xcb\\x35\\x3c\\xfc\\x33\\xed\\x55\\x6c\\\r\n\\xa4\\x53\\xcb\\xd9\\x6f\\xff\\x00\\x6d\\xf4\\xd7\\xac\\x1c\\xa4\\x9d\\xac\\x31\\\r\n\\xef\\x53\\xf0\\x88\\xcc\\xc4\\x99\\x69\\xa3\\x69\\x22\\x23\\xc3\\xa3\\x59\\x53\\\r\n\\x6b\\x59\\xba\\x42\\x9f\\x5f\\x1a\\xe2\\x96\\x9c\\xfe\\xc9\\x7c\\xd9\\x0d\\x45\\\r\n\\x41\\x6a\\xf9\\xda\\x3d\\x54\\xcd\\x2e\\xac\\xba\\x6d\\x91\\x72\\x20\\x1f\\xc2\\\r\n\\xa3\\xe5\\x84\\x57\\x35\\x95\\x12\\x20\\x7b\\xc2\\x33\\x02\\x36\\x05\\x6d\\x97\\\r\n\\x6d\\xfc\\x62\\x5b\\x45\\x4f\\x41\\x50\\xc4\\x37\\x3e\\x56\\x72\\xda\\xdf\\xf7\\\r\n\\x64\\x28\\xb7\\xe3\\x7b\\x77\\xfa\\xe2\\x4e\\x23\\x0a\\x4e\\x22\\xf7\\x37\\xaa\\\r\n\\x93\\x57\\x02\\x37\\x31\\xa0\\xbe\\xa3\\x30\\x08\\x49\\x1e\\x48\\x22\\xd6\\xdc\\\r\n\\x60\\xf1\\x0a\\x82\\xe1\\x61\\x8d\\x2d\\x9c\\x73\\x0c\\x4b\\xcb\\x44\\x0c\\x06\\\r\n\\x64\\xbd\\xac\\xd9\\x77\\x6d\\x71\\x2e\\x5a\\xea\\x3a\\x88\\x6c\\x2f\\x0c\\xf4\\\r\n\\xbd\\x51\\xb1\\x1a\\x96\\x75\\xbe\\x96\\x1a\\x77\\xee\\x49\\xf3\\x89\\xda\\x9f\\\r\n\\x84\\x3d\\x34\\x34\\xb7\\x9e\\xbd\\x9e\\x3e\\x67\\x51\\x69\\x69\\xe3\\xdc\\xac\\\r\n\\x6e\\xa3\\xa1\\xdc\\xf4\\xb1\\xcc\\x48\\x00\\x02\\x32\\xb3\\x63\\x8c\\x50\\x2c\\\r\n\\x95\\x96\\x76\\xc9\\x5d\\x53\\x00\\x69\\xdc\\x9b\\x53\\x33\\x2a\\xfe\\xf6\\x31\\\r\n\\xad\\x98\\x9e\\x89\\x01\\x01\\x59\\x86\\x75\\x55\\xcc\\x40\\xff\\x00\\xd3\\xf5\\\r\n\\x3f\\xfc\\xcf\\xa3\\xa5\\xbe\\x9d\\x58\\x43\\x7d\\xd7\\x33\\xf4\\xe4\\x00\\xe9\\\r\n\\xe0\\xe6\\xec\\x6f\\xbd\\xcf\\xcb\\x16\\x25\\x8e\\x96\\x51\\x6e\\xe0\\x9f\\x5d\\\r\n\\x6d\\x8a\\x3a\\x79\\x65\\xcf\\x2c\\x76\\x8c\\x46\\xa5\\xee\\xfb\\xb1\\xd0\\x9c\\\r\n\\xbd\\xc6\\x50\\x0d\\xfc\\xed\\x6d\\x71\\x3c\\xf2\\x54\\x37\\x32\\x46\\xcd\\x94\\\r\n\\x65\\x17\\xd7\\xa5\\x05\\xbe\\x9e\\x7f\\xe7\\x17\\xba\\xdc\\x5b\\x45\\xf9\\x1b\\\r\n\\x1b\\xeb\\xf3\\x1a\\x62\\x35\\xcc\\x4f\\x8d\\x3e\\x5b\\x02\\x6e\\x7e\\x57\\x38\\\r\n\\x4a\\x72\\xe4\\xdb\\xa8\\x8c\\xbf\\x0f\\xf9\\xb6\\x50\\xd7\\xd0\\xfa\\x6f\\xbe\\\r\n\\x98\\xe1\\x7c\\x36\\x3a\\x28\\x92\\x42\\x91\\xbd\\x57\\x51\\x2d\\x62\\xc6\\x30\\\r\n\\x76\\x01\\x8e\\x97\\x2a\\x75\\x2b\\xf5\\xbe\\x98\\xe3\\x31\\x95\\xa8\\x8e\\x46\\\r\n\\x27\\x91\\x57\\x19\\xa4\\x9b\\x5d\\x33\\xbf\\x54\\x6c\\x7f\\xf2\\xf5\\x1a\\x0f\\\r\n\\xc1\\x26\\x3e\\xe1\\x25\\x14\\xa7\\xaa\\x9e\\x56\\xe5\\xdb\\xe7\\xf4\\xd3\\x4f\\\r\n\\xe5\\x88\\x38\\x7c\\x7c\\x42\\x01\\xaf\\x2a\\xa2\\x28\\x8b\\xab\\x81\\xda\\x36\\\r\n\\xb9\\xbd\\xb7\\x24\\x5c\\x5f\\x70\\x36\\xc3\\xf3\\x24\\x9a\\xce\\x0d\\xc9\\xf5\\\r\n\\x17\\x22\\xc0\\x69\\xe4\\xe8\\x6d\\xb8\\xc7\\xb3\\x14\\x11\\xd1\\x70\\x2a\\x2a\\\r\n\\x5b\\x7d\\xb5\\x54\\x9c\\xc6\\x93\\x45\\xfb\\x04\\x8d\\x7e\\xeb\\x6a\\x35\\xcd\\\r\n\\x76\\xf8\\x72\\xa8\\xfa\\x7b\\x69\\xc5\\x2a\\xa9\\x5e\\x29\\x69\\x67\\x89\\x63\\\r\n\\x8e\\xa7\\xa8\\xfb\\xc4\\x6b\\x25\\xaf\\x65\\x0f\\x00\\x63\\x21\\x89\\xc5\\xc1\\\r\n\\x7c\\xb9\\x09\\xd2\\xe3\\x14\\xe2\\x7e\\x31\\xc4\\x65\\xd9\\x69\\xed\\x34\\xb3\\\r\n\\xdd\\xef\\x14\\x34\\xc8\\xa4\\xbb\\x12\\x77\\xd8\\x05\\xcc\\x4b\\x1b\\xe2\\x27\\\r\n\\xe1\\x5c\\x3e\\x68\\x66\\xa7\\x12\\xd4\\x22\\xc7\\x70\\xb2\\x0b\\x12\\xf7\\x22\\\r\n\\xe4\\x8d\\x02\\x77\\x16\\xec\\x7b\\x6a\\x31\\x45\\xc6\\xaa\\x2b\\xe4\\x63\\xee\\\r\n\\x2a\\x2c\\xa1\\x5a\\x45\\x97\\x24\\x70\\xc5\\x7e\\xf9\\xd0\\xeb\\xae\\xa6\\xc6\\\r\n\\xfb\\x01\\xae\\x3d\\xf9\\xe9\\x23\\x91\\xe2\\x71\\x30\\x60\\x73\\xc4\\xe0\\x49\\\r\n\\x13\\xad\\xc5\\xd5\\x97\\x4c\\xc0\\xef\\x7d\\xc6\\xe3\\x11\\xd5\\x55\\xfb\\x98\\\r\n\\xf7\\x48\\x56\\x54\\x64\\x0c\\xdc\\x26\\xb4\\xf3\\x06\\x5d\\xcf\\xba\\xdc\\xe6\\\r\n\\xc8\\xb7\\xb8\\x0a\\x55\\xd4\\x5a\\xd7\\x1b\\x83\\xc1\\xab\\xaa\\x19\\xa0\\x76\\\r\n\\xe1\\x55\\x67\\xa2\\x6a\\x6a\\x86\\x32\\x51\\xb9\\x04\\xdc\\x2c\\xff\\x00\\x14\\\r\n\\x60\\x8b\\x86\\x59\\x96\\xc7\\x60\\xfa\\x5b\\x1c\\x46\\x4a\\xfe\\x0a\\x3d\\xce\\\r\n\\x24\\xff\\x00\\x0f\\x23\\x9a\\x98\\xaa\\x3a\\x58\\x59\\xee\\x04\\x6b\\x20\\x2c\\\r\n\\x8e\\x40\\xd6\\xc0\\x9d\\x31\\x13\\xcb\\x9f\\x33\\xb3\\x16\\xbf\\xde\\xed\\xe9\\\r\n\\xfd\\x7b\\xe1\\x6a\\x39\\x88\\x45\\x40\\x12\\x07\\xcb\\x9b\\x99\\xd5\\x60\\x35\\\r\n\\x16\\xcc\\x34\\xd7\\x5c\\x49\\x4f\\x49\\x20\\x39\\x5f\\x94\\xcc\\x7a\\x41\\x39\\\r\n\\x85\\xfc\\x05\\xed\\xa7\\x6c\\x70\\x9f\\x60\\xe6\\xad\\xa2\\x96\\x79\\xe7\\x82\\\r\n\\x26\\x9d\\x09\\xa7\\x46\\x0c\\x5a\\x43\\xe6\\xe0\\x74\\xe6\\x1f\\xe6\\x16\\x0a\\\r\n\\x7d\\x03\\x1a\\x7a\\xaa\\x78\\x25\\xa0\\x9e\\x95\\x84\\xf4\\x73\\xc8\\xd3\\x4a\\\r\n\\x99\\x99\\x54\\x29\\x31\\x20\\xb0\\xd9\\x4d\\xb4\\x3d\\xfe\\x67\\x01\\x5b\\x4b\\\r\n\\x00\\x73\\x5c\\x12\\x37\\xb0\\x22\\xfa\\x8e\\xd6\\xbd\\xad\\x6b\\xe8\\x6f\\xdb\\\r\n\\x11\\x82\\xf2\\x01\\x75\\x4c\\xcd\\x60\\xc4\\xd9\\x54\\x33\\x65\\x2c\\xc4\\x7c\\\r\n\\x39\\x7f\\x30\\x6c\\x3d\\x78\\x77\\x11\\xa0\\x81\\xe2\\x86\\x64\\x9c\\x3a\\x3c\\\r\n\\xac\\xf2\\xa5\\x3c\\x92\\x24\\x84\\x66\\xc8\\x03\\x28\\xb5\\xb2\\x8b\\xdc\\x68\\\r\n\\x4f\\x9b\\xdf\\x12\\x71\\xae\\x0d\\x55\\x74\\xe7\\xc6\\xa8\\xea\\xce\\x56\\x55\\\r\n\\xc8\\x6e\\x2d\\xa0\\xf2\\xff\\x00\\xe5\\xdf\\xf0\\xc5\\x69\\xa0\\x35\\x92\\x2c\\\r\n\\x55\\x08\\x94\\x86\\x08\\xe5\\x40\\xa4\\xac\\x6d\\x29\\xcb\\x78\\x9c\\xfd\\xd6\\\r\n\\xf5\\xdf\\x5d\\xf5\\xc4\\x75\\xae\\x92\\x8f\\x75\\x82\\x9d\\x53\\x45\\xca\\x17\\\r\n\\x3f\\xa1\\x6c\\xcd\\x73\\x9b\\xbf\\x61\\x8e\\x07\\xc6\\xa8\\x92\\x14\\xa1\\xae\\\r\n\\xa5\\x86\\x45\\x0b\\x95\\x65\\x64\\x19\\xae\\xfb\\x82\\x6c\\x7c\\xe9\\x7d\\x31\\\r\n\\xfb\\x23\\x84\\x54\\xcf\\x04\\xc6\\x66\\xa2\\x63\\x95\\x12\\x06\\x70\\x82\\x44\\\r\n\\x17\\x65\\x5e\\xe1\\x06\\xf6\\x3b\\x81\\xb7\\x60\\x66\\xa1\\xe2\\x34\\x7c\\x6b\\\r\n\\x8b\\xf0\\xc8\\x96\\xf4\\x34\\xf2\\x73\\xa5\\x86\\x2b\\x15\\x11\\xd5\\xa0\\x31\\\r\n\\x49\\xd9\\x9f\\xa0\\xea\\x6d\\x61\\x6d\\x37\\xc7\\x11\\x6a\\x69\\x66\\xab\\xa7\\\r\n\\xbb\\x73\\x61\\x8b\\x87\\xc9\\x19\\xd0\\x5d\\x7d\\xd6\\x04\\x6b\\xde\\xfa\\x80\\\r\n\\xbf\\x87\\xcf\\x01\\x7f\\x6d\\xf0\\x17\\x86\\xd7\\xaf\\xe1\\xbf\\x68\\x9e\\x5e\\\r\n\\x2b\\x65\\x3a\\xfd\\xe2\\x63\\x25\\x6d\\xa1\\xce\\xa3\\x4b\\xdb\\x0f\\x75\\x05\\\r\n\\x2d\\x6e\\x89\\x2d\\x7b\\x82\\x3b\\xef\\xfc\\xc5\\xb1\\xc1\\xbd\\x9a\\xae\\xe2\\\r\n\\x0f\\x0c\\xb1\\x42\\xc2\\x16\\x08\\xaf\\x70\\x7e\\x22\\x3c\\x69\\x7b\\x9d\\xf1\\\r\n\\x4f\\xec\\x1d\\x32\\x70\\x3b\\xcb\\x4e\\x0d\\x4a\\xa8\\x65\\xb7\\xdd\\x23\\xe7\\\r\n\\xf5\\xbd\\xc6\\xd8\\xae\\x8a\\x58\\x28\\x38\\x98\\xa9\\x62\\x79\\x51\\xcc\\x23\\\r\n\\x6f\\xf5\\xfd\\x9a\\xed\\xa7\\x4f\\x61\\x63\\xdb\\x0a\\x5a\\x58\\xa9\\xa5\\x93\\\r\n\\xed\\x04\\x68\\x10\\xe6\\x3b\\xee\\x07\\xcf\\xd3\\xf9\\x5f\\x14\\xf2\\xd2\\x38\\\r\n\\xa5\\x15\\x31\\xd9\\x85\\x42\\xa4\\x15\\x96\\x21\\xa2\\x94\\x1c\\xe9\\x9f\\xb9\\\r\n\\x40\\x45\\x9a\\xc7\\x4d\\xc8\\xc7\\x15\\x58\\xe9\\x38\\xb5\\x3d\\x49\\xca\\x69\\\r\n\\xab\\x06\\x57\\xca\\x6e\\x35\\x1a\\x30\\xb0\\xd7\\xac\\xde\\xfd\\xc1\\xc3\\xc7\\\r\n\\x4b\\x51\\x3c\\x34\\xf1\\xf5\\x46\\x11\\xa6\\x98\\x8f\\xe1\\x1f\\x02\\xdb\\xc9\\\r\n\\x3b\\xfa\\x79\\xc7\\x1e\\xa2\\x89\\x28\\x44\\x60\\x75\\x2a\\x4a\\xca\\x36\\xb2\\\r\n\\x16\\x62\\x2d\\xf2\\xfc\\x8d\\xb1\\xec\\x8c\\x80\\x45\\x58\\x08\\x1c\\xb5\\x28\\\r\n\\xac\\x8d\\xb1\\x46\\xcc\\xaf\\xa7\\x7f\\x87\\x43\\xea\\x3d\\x31\\x39\\x8c\\xf1\\\r\n\\x25\\xe1\\xf2\\x4a\\xcd\\x42\\xcd\\x1f\\x11\\x62\\xdf\\x16\\x7c\\x85\\x60\\x8c\\\r\n\\xda\\xc3\\x28\\x60\\x19\\xc9\\xb9\\x20\\x0f\\x9e\\x23\\xa8\\x97\\x86\\xcc\\x40\\\r\n\\x6e\\x6c\\x0c\\x1e\\xc9\\x7b\\xa8\\x04\\x1d\\x0e\\x96\\xfa\\x8d\\x3f\\x3c\\x51\\\r\n\\x36\\x5f\\x79\\x98\\x9c\\xa8\\xed\\xbe\\xa4\\x8b\\x9b\\x90\\x00\\xb9\\x3a\\xd8\\\r\n\\x01\\xe7\\x4c\\x08\\xeb\\x2a\\x47\\x2a\\x92\\x87\\x88\\x4c\\x20\\x90\\x35\\x3c\\\r\n\\xb3\\xd3\\xc9\\x14\\x1c\\xb2\\x0e\\x6c\\xad\\x31\\x40\\x00\\x24\\xe8\\xba\\x7e\\\r\n\\x38\\xa5\\xa4\\x1e\\xf4\\xe2\\xb2\\xae\\x92\\x9d\\xe7\\xb0\\xc8\\x93\\xac\\x93\\\r\n\\xaa\\x26\\xe8\\x39\\x61\\x82\\x67\\xd0\\x1e\\xab\\x8b\\x58\\x6f\\xab\\xfe\\xc1\\\r\n\\x8a\\xa1\\xa2\\x15\\xf5\\x2f\\x25\\x39\\x72\\xb1\\x40\\x81\\x60\\x32\\xe5\\xb1\\\r\n\\x46\\x92\\x65\\xbe\\x66\\xd0\\x16\\x29\\x20\\xd0\\x5b\\x1c\\x22\\x58\\x69\\xe9\\\r\n\\xb8\\xa5\\x54\\x74\\x0b\\x4d\\x12\\x80\\xe1\\xe5\\xa9\\x7a\\x8e\\x6c\\xc5\\xf3\\\r\n\\x83\\x97\\xec\\xd0\\x01\\x75\\x6b\\x28\\x53\\x9b\\xbd\\xb4\\xc5\\x6f\\x14\\xaa\\\r\n\\xa6\\x92\\x2f\\x77\\x9a\\x99\\x5e\\xa1\\xa3\\x93\\x2d\\x3c\\x71\\xab\\x5a\\x66\\\r\n\\x05\\xb3\\xca\\x11\\x9c\\x9d\\xd7\\xf7\\x9b\\x9b\\x9b\\x63\\xda\\x1a\\x5b\\x55\\\r\n\\x53\\x54\\xc7\\xd2\\x2a\\xa9\\xd1\\x9c\\xb7\\xfe\\xe7\\x52\\xb1\\xbe\\xb6\\xd9\\\r\n\\x49\\x16\\xbd\\xfc\\x9c\\x03\\x00\\x00\\x1a\\xd9\\x41\\x02\\xc4\\x08\\x09\\x03\\\r\n\\xd0\\x1e\\x60\\xb8\\xf1\\xa0\\xc4\\x7d\\x26\\xdb\\x36\\xb9\\x7f\\x1b\\x8b\\xf7\\\r\n\\xec\\x2f\\xdf\\x14\\xd4\\xd2\\xd5\\x4a\\x21\\x45\\xb9\\xb1\\xbe\\x8c\\x46\\x9a\\\r\n\\xe6\\x36\\x3a\\x01\\xa6\\xfb\\xe8\\x35\\x27\\x5e\\x22\\xab\\x4d\\x0c\\x31\\xc5\\\r\n\\x1b\\x28\\xe5\\xe5\\x63\\xa8\\x19\\xc5\\xb3\\x1d\\x4d\\xee\\xe6\\xe7\\x7b\\x01\\\r\n\\xa6\\xc7\\x05\\x73\\x06\\x24\\x8b\\x8b\\x1d\\x2d\\xa8\\x6d\\x2d\\x6f\\xae\\xb6\\\r\n\\xc4\\x50\\x99\\x6e\\x74\\x00\\x1c\\xb6\\xd8\\x1f\\x23\\xd7\\xfa\\x7d\\x71\\x05\\\r\n\\x00\\x7b\\xe6\\xba\\xc4\\x97\\xbb\\x1e\\x97\\x6e\\xd6\\x55\\x36\\x60\\x0d\\xfe\\\r\n\\x26\\x1a\\x0e\\xd7\\x38\\xe1\\xb4\\x74\\xef\\x0b\\x20\\x85\\x02\\xf8\\x23\\xed\\\r\n\\x0b\\x30\\xf8\\xae\\x7c\\x58\\x65\\xb0\\x00\\x6b\\x8a\\x81\\x37\\x0e\\x81\\x5e\\\r\n\\x10\\xf3\\x20\\x23\\x36\\x6b\\xb3\\x6e\\x73\\x1b\\xfa\\x7e\\x03\\xf2\\xc5\\x55\\\r\n\\x44\\x1c\\x56\\x86\\x78\\xd1\\x82\\x4e\\xaa\\x1e\\x34\\x63\\x66\\x12\\xc6\\x73\\\r\n\\x74\\xdf\\x7b\\x8b\\xe2\\x09\\x43\\x33\\xe7\\xdd\\x86\\x56\\x1f\\xe7\\xcb\\x63\\\r\n\\xae\\xfe\\x9f\\x8e\\x38\\x24\\x23\\xdd\\xa0\\xa9\\x53\\x63\\x1d\\x43\\xc3\\x20\\\r\n\\xf4\\x7f\\x86\\xfe\\x97\\xb8\\xf2\\x2f\\xf8\\x70\\x6a\\x1e\\x17\\xc4\\x6b\\xa2\\\r\n\\xe1\\xf5\\x85\\x91\\x96\\x50\\x79\\x91\\x22\\x49\\x26\\x52\\x42\\xd9\\x92\\xc1\\\r\n\\x98\\x66\\x02\\xe0\\x37\\xae\\x2b\\x6b\\x05\\x1c\\x15\\x31\\xdf\\x48\\x57\\xdd\\\r\n\\x69\\x4e\\x55\\x8c\\x88\\xd6\\xf7\\x72\\x3f\\x88\\xad\\x85\\xbd\\x77\\xc7\\x1c\\\r\n\\xab\\x87\\x88\\xde\\x56\\xa8\\x35\\x32\\x80\\x62\\xc8\\xa8\\xa9\\xca\\x45\\x90\\\r\n\\xb0\\x8f\\x35\\xba\\x97\\x53\\x96\\xd9\\x8e\\xf7\\xb5\\xf0\\x0b\\x27\\xd9\\xc6\\\r\n\\x0c\\x68\\xe4\\xdd\\x46\\x80\\xae\\x9a\\x37\\x76\\xd4\\x5e\\xc7\\x4c\\x51\\xc7\\\r\n\\x45\\x2c\\xf1\\x47\\x54\\xe2\\x28\\xc0\\xea\\x73\\x60\\xa8\\xa3\\x5c\\xa4\\x9d\\\r\n\\x81\\xd7\\x61\\xe9\\xdf\\x11\\xad\\x26\\x46\\x11\\xa0\\xe4\\x68\\x23\\x58\\xb4\\\r\n\\x53\\x6b\\x10\\xff\\x00\\xe6\\xce\\x2c\\x77\\x3a\\xe0\\x43\\x1c\\x89\\x21\\x89\\\r\n\\x8a\\xc6\\xa0\\x00\\x18\\xdb\\x5b\\x6b\\xbe\\xa7\\xf9\\x6a\\x3b\\xe2\\x9e\\xb2\\\r\n\\xa4\\x4e\\x0c\\x92\\x31\\x34\\xe7\\xa7\\x53\\x75\\xb1\\xb5\\x87\\x8d\\x3f\\xdf\\\r\n\\x15\\xef\\xc3\\xb8\\xa2\\xe5\\x9d\\x52\\x8b\\x88\\xb7\\xee\\xeb\\xc0\\xb4\\x55\\\r\n\\x1a\\x68\\x95\\x56\\x17\\x46\\x23\\xfe\\xea\\xdc\\x7f\\x16\\x9a\\xe2\\x47\\xad\\\r\n\\xe0\\xac\\xd1\\x16\\x67\\x8b\\x31\\x12\\x52\\xd5\\x22\\xcb\\x48\\xe8\\xea\\x08\\\r\n\\x92\\x3b\\x93\\x1b\\x07\\xbd\\xd6\\x48\\xac\\xd6\\x1f\\x15\\xf1\\xfb\\x3a\\x82\\\r\n\\xbe\\x14\\xa8\\x8e\\xdc\\x1a\\xa2\\xa1\\x4b\\x47\\x15\\x4c\\x99\\xe8\\x6a\\x18\\\r\n\\x02\\x4f\\x26\\x4c\\xdc\\xf8\\x0b\\x92\\x72\\x09\\x55\\x93\\x65\\x57\\x26\\xd7\\\r\n\\xa9\\xa2\\xa8\\xa3\\xb4\\x75\\x30\\x95\\x04\\xd9\\x5e\\xf9\\xd1\\xd4\\x6c\\x52\\\r\n\\x41\\xd0\\xd7\\x1f\\xc3\\xd5\\xb6\\x82\\xe3\\x0d\\xec\\xcf\\x19\\x4a\\x24\\xe2\\\r\n\\x92\\xf0\\xba\\xc8\\xf8\\x7c\\x8e\\xae\\x95\\x2f\\x04\\x8b\\x19\\x47\\x03\\x2b\\\r\n\\x0b\\x8d\\x55\\xc1\\x19\\x5f\\x2f\\xd4\\x0d\\xf8\\x5d\\x62\\x49\\x4f\\x4b\\x1c\\\r\n\\x53\\x46\\x0c\\xd9\\x22\\x8e\\x17\\x12\\xe8\\x5d\\x96\\x28\\x55\\x14\\x83\\x6b\\\r\n\\x90\\xa7\\x2d\\xc8\\x3a\\x29\\x04\\x69\\x8e\\x31\\xec\\x2f\\x07\\x79\\x2f\\x36\\\r\n\\x6a\\x69\\x6b\\x2c\\xaf\\x51\\x1d\\x43\\xcd\\x35\\x41\\x65\\x02\\x4a\\x92\\x84\\\r\n\\xf2\\xa2\\x58\\xa5\\x8e\\x52\\x3e\\xc9\\x48\\x54\\x91\\x1f\\x34\\x88\\xa7\\x1e\\\r\n\\xd6\\x70\\x0f\\xfd\\x2f\\x5e\\xdc\\x39\\x58\\x48\\xc5\\x51\\x9d\\x8e\\x57\\x74\\\r\n\\xe7\\xd2\\xc7\\x3a\\xc6\\x5a\\xc7\\x94\\xcb\\xcd\\x50\\x62\\x0d\\x99\\x1c\\x32\\\r\n\\x3b\\xc9\\x6c\\xc3\\xfe\\x9d\\xfb\\x39\\xc3\\xa6\\xa6\\x15\\xfc\\x52\\x91\\x6a\\\r\n\\xaa\\x2b\\x04\\xf1\\x70\\xe4\\x7a\\x6e\\x77\\x2e\\x3a\\x2b\\x99\\x65\\x8e\\x9c\\\r\n\\x2b\\x89\\x89\\xe5\\xc8\\xa6\\x6b\\x17\\x83\\xec\\xf4\\x22\\x47\\x90\\x71\\x7f\\\r\n\\x66\\x38\\x3f\\x11\\xa8\\xa1\\xae\\xa7\\x6f\\xd9\\xcd\\x95\\xe3\\xad\\x4c\\xb4\\\r\n\\x82\\x39\\xa4\\xcc\\xac\\x1d\\xa9\\xa9\\xea\\x18\\xc8\\x63\\x50\\x1d\\x9d\\x57\\\r\n\\x55\\xa9\\x19\\x43\\x1a\\x62\\x07\\x1e\\xe0\\x91\\xd3\\x19\\xb8\\x7d\\x4d\\x32\\\r\n\\x29\\x06\\xf1\\xcb\\xcb\\xe9\\x74\\x0c\\x40\\x96\\x1c\\xc3\\x69\\x0a\\x6b\\x75\\\r\n\\xcc\\xa0\\x64\\x60\\x0e\\x98\\xa8\\xe1\\x34\\x44\\x4d\\xca\\x79\\x21\\x9a\\x07\\\r\n\\x41\\xf1\\x31\\x56\\x8e\\x40\\x75\\xb6\\xc0\\xe7\\x19\\x6c\\x0d\\xac\\x76\\xc5\\\r\n\\x2d\\x05\\x44\\x75\\x54\\xec\\x14\\xbf\\xdb\\xa6\\x62\\xa0\\x82\\xcb\\x9b\\x5e\\\r\n\\xc4\\x59\\x94\\xf5\\x6d\\xfd\\x71\\xc5\\xaa\\x28\\x78\\x15\\x59\\x74\\xa7\\xe6\\\r\n\\xd4\\x4b\\x1a\\xb5\\x3a\\x95\\xbd\\x3d\\x30\\x03\\x2f\\x31\\xbf\\xf7\\x64\\xcc\\\r\n\\xb7\\x50\\x4f\\x41\\x19\\x9b\\x70\\x31\\xc3\\xf8\\xe2\\xd7\\x40\\xe9\\x31\\x79\\\r\n\\x67\\x8b\\xed\\x15\\x88\\xea\\x2a\\x0d\\xd8\\x26\\x96\\x39\\x45\\xfa\\x76\\xca\\\r\n\\x4e\\xd8\\xa0\\xe3\\x67\\x86\\x7b\\x53\\xcf\\x40\\x95\\x54\\xdc\\x4e\\x08\\x22\\\r\n\\xa8\\x8d\\xf5\\x6e\\x58\\xfb\\x31\\x90\\xea\\x56\\x44\\x31\\xe9\\xda\\xc6\\xc7\\\r\n\\xd3\\x88\\xfb\\x3f\\x17\\x15\\xf7\\xde\\x37\\xc2\\x59\\xad\\xef\\x12\\xd3\\x3c\\\r\n\\x4d\\xf7\\x92\\x28\\xd1\\x2c\\x47\\xdc\\x64\\x91\\x5a\\xc4\\x68\\xc3\\xe9\\x7e\\\r\n\\x19\\x50\\xfc\\x2e\\x78\\x26\\x64\\x21\\x4f\\xd9\\xcc\\x35\\xea\\x8c\\x92\\xa7\\\r\n\\x30\\x36\\x00\\xab\\x5f\\x7f\\x07\\xe7\\x8f\\x69\\x68\\x7d\\xd6\\xa4\\xd4\\x25\\\r\n\\x84\\x52\\x90\\xf1\\xff\\x00\\xe4\\x09\\x20\\xee\\x2d\\x73\\xfc\\xf4\\xc7\\xfd\\\r\n\\x36\\xab\\xa7\\x92\\x38\\x63\\x7a\\x73\\x99\\xd5\\x7e\\xe8\\xb2\\x9b\\x0e\\xad\\\r\n\\xbb\\x81\\xb0\\xf2\\x31\\xed\\x15\\x72\\xd1\\xf0\\xe9\\xcf\\xc2\\x99\\x34\\xb6\\\r\n\\xe3\\x7f\\x9e\\x9f\\x2c\\x7b\\x41\\x57\\xfe\\x1c\\x74\\x06\\x8e\\x59\\x03\\x4d\\\r\n\\x19\\x39\\x4b\\xc4\\x08\\x90\\xa0\\xd7\\xbe\\xc7\\xc5\\xf1\\x51\\x4b\\xc2\\x1e\\\r\n\\x8e\\xdc\\x25\\xea\\x83\\xba\\xa3\\xc9\\x4f\\x57\\x90\\x08\\x59\\x8f\\xc3\\x13\\\r\n\\xae\\xae\\x10\\x12\\x33\\x30\\xb7\\x9d\\x71\\x53\\x4d\\x45\\x45\\x0d\\x22\\xd5\\\r\n\\xcb\\x35\\x4d\\x4c\\x4c\\xb2\\x08\\x61\\x7e\\x5c\\x2a\\x64\\xbb\\x59\\x99\\x75\\\r\n\\x77\\xca\\x46\\x72\\x6d\\x61\\xa2\\xe9\\xbd\\x05\\xb8\\xaf\\x0b\\xaa\\xa3\\x62\\\r\n\\x12\\x6a\\x29\\x5a\\x5a\\x73\\x7c\\xd9\\x62\\x94\\x96\\x45\\xcd\\xa9\\xca\\x8e\\\r\n\\x19\\x49\\xd7\\x70\\x7e\\x54\\x9c\\xe7\\x76\\x99\\xc3\\x47\\x2e\\x78\\xa1\\xb8\\\r\n\\xbf\\xfd\\xb5\\x19\\xb4\\x1a\\x91\\xb1\\x3e\\x96\\xf9\\x60\\xd2\\x9e\\x29\\x92\\\r\n\\x32\\xac\\xd6\\x8a\\x74\\xe6\\x20\\x39\\x49\\x7b\\x2a\\x69\\xa9\\xf5\\xb0\\xef\\\r\n\\x8e\\x19\\xc2\\x2a\\xb8\\x7c\\xb5\\x4f\\x3d\\x65\\x0d\\x28\\x53\\x69\\x92\\x5a\\\r\n\\xb4\\x67\\x28\\x33\\xea\\xd1\\x46\\x64\\x23\\x4b\\x59\\x6d\\x9b\\x5b\\x6f\\x71\\\r\n\\x8a\\x4a\\x0a\\x2b\\xc5\\x53\\x2f\\x10\\x7a\\x86\\xe2\\x2e\\xc1\\x1a\\x9e\\x96\\\r\n\\x45\\x87\\x2b\\x59\\x63\\x56\\x6a\\x92\\xa4\\xaa\\x65\\x07\\xec\\xd4\\x12\\x0e\\\r\n\\x9a\\x62\\x7a\\xda\\x1e\\x10\\x65\\x82\\xbb\\x87\\xfd\\xa1\\x46\\x11\\xd4\\x73\\\r\n\\x1e\\x6a\\x69\\x89\\x16\\xba\\xae\\x50\\xc8\\x2f\\xf1\\xc7\\x98\\x30\\x1b\\x31\\\r\n\\xd0\\xe3\\xff\\x00\\x52\\xd3\\xd3\\x45\\x4c\\x68\\xaa\\xe9\\xe3\\x79\\x8c\\x82\\\r\n\\x58\\xa9\\xf8\\x70\\x81\\x29\\xec\\x6c\\xaa\\xd2\\x4d\\xce\\x77\\x2e\\x3a\\x83\\\r\n\\x2c\\x8e\\x40\\x1d\\x56\\x6d\\x07\\x10\\xa8\\xe2\\x0b\\x14\\x12\\xd7\\xc1\\x3c\\\r\n\\xb4\\xd5\\x30\\xbd\\x4d\\x35\\x44\\xcc\\xef\\x1c\\xa8\\xa4\\x03\\xca\\x6b\\x90\\\r\n\\x07\\x6d\\x76\\xd5\\x6d\\xa6\\x24\\xa8\\xa5\\x92\\x20\\x21\\xa7\\x58\\xe7\\x31\\\r\n\\x6b\\x30\\x19\\x72\\x8b\\x68\\x9a\\x01\\xe7\\x7d\\x0e\\xc6\\xe4\\xe0\\x35\\x46\\\r\n\\x59\\x6b\\x25\\x8a\\x29\\xe1\\x8f\\x95\\x1c\\x97\\xc8\\xbf\\x11\\xb2\\x92\\x97\\\r\n\\x0c\\xe5\\x8f\\x4d\\xf2\\xb6\\xe4\\xb6\\x9a\\xe1\\xf8\\x84\\xae\\x26\\x8e\\x36\\\r\n\\xe4\\xc6\\xfa\\x98\\xd7\\x45\\x61\\x9a\\xf6\\x3d\\xac\\xa4\\x28\\x02\\xdb\\x0d\\\r\n\\x75\\xc7\\xbc\\xeb\\x1e\\x7b\\x92\\xa5\\x72\\x36\\xb9\\x94\\x83\\x70\\x6f\\xb5\\\r\n\\xbf\\xcb\\x7b\\x76\\xb6\\xa7\\x11\\x71\\x7a\\x9e\\x24\\x1a\\x96\\xaf\\x94\\x4c\\\r\n\\x11\\x73\\x29\\xdd\\x05\\x8b\\x05\\xf8\\xb3\\x75\\x6a\\x6d\\xa9\\x00\\x68\\xc2\\\r\n\\xdb\\x1c\\x72\\xbc\\xda\\xfd\\xf7\\xff\\x00\\xf9\\xe2\\x98\\x88\\x2a\\x23\\x6a\\\r\n\\xb4\\x79\\x23\\xca\\xfc\\xc5\\x17\\xfb\\xf7\\x53\\xa9\\xb1\\x1e\\x9d\\xbd\\x77\\\r\n\\xc7\\x07\\xe2\\x34\\x10\\xa9\\x8e\\x38\\xc2\\x21\\x6b\\x99\\x37\\x90\\xf8\\x57\\\r\n\\xbd\\xcb\\x5b\\xf8\\x97\\x4e\\xf8\\xf6\\x80\\xc7\\x27\\x2a\\x48\\xa4\\x43\\x75\\\r\n\\x66\\x0a\\x1b\\x5b\\x36\\xcd\\x94\\x0d\\xfb\\x6b\\xa8\\xc5\\x2d\\x2f\\x39\\xbb\\\r\n\\xae\\x82\\xcd\\xd9\\xc9\\xde\\xe7\\xb0\\x1a\\xfc\\xce\\x9b\\x1c\\x08\\x11\\x25\\\r\n\\x78\\x4a\\x06\\x64\\x17\\x04\\x69\\xb8\\xdc\\x0d\\x87\\x8e\\xfa\\x69\\xdb\\x10\\\r\n\\x52\\xcb\\x69\\x2a\\x5d\\x87\\x26\\x2d\\x77\\xb1\\x63\\xe3\\xf3\\xd4\\xfa\\x62\\\r\n\\x96\\xa3\\x93\\x0c\\x93\\x8d\\x9e\\x3c\\x9b\\xff\\x00\\xde\\xd0\\x21\\xb7\\x8e\\\r\n\\xfa\\x5b\\x6c\\x53\\xd5\\x46\\x53\\x24\\x9a\\x9f\\x86\\xc7\\xd7\\x4f\\xcf\\x1c\\\r\n\\x4f\\x82\\x86\\x1e\\xf1\\x4a\\xdc\\xb6\\xb6\\x62\\x17\\x63\\x7d\\xf4\\x03\\xbe\\\r\n\\x83\\xe5\\x86\\x59\\x21\\xa8\\x74\\x7b\\xf5\\x75\\x1e\\xda\\x8f\\xd7\\x8f\\x1a\\\r\n\\xe2\\x93\\x88\\x54\\x41\\x0c\\xf4\\x94\\xb0\\xb4\\xd2\\x54\\xe4\\x0b\\x63\\xf0\\\r\n\\x3a\\x95\\xca\\xfa\\x0e\\xc2\\xe0\\xed\\xb0\\xdb\\x5c\\x7b\\x15\\xc2\\xd1\\x63\\\r\n\\xad\\xe2\\xd5\\x92\\x54\\x53\\x71\\x38\\x80\\x89\\x63\\x91\\x72\\xc7\\x50\\x5c\\\r\n\\x96\\x13\\xc5\\x23\\x65\\xca\\xd1\\xe5\\x51\\x25\\xae\\x1b\\x32\\x95\\xf8\\xad\\\r\n\\x8f\\x6e\\xbd\\xa0\\x9e\\x7a\\xe5\\xe1\\xd4\\xf3\\xe5\\x8a\\x24\\x43\\x51\\xcb\\\r\n\\x6e\\xb7\\x90\\xa8\\x25\\x5d\\xc5\\x8e\\x9b\\xb2\\x7a\\xd9\\xbc\\x62\\xae\\x7f\\\r\n\\x78\\x91\\x5c\\x43\\x0c\\x36\\x55\\x50\\xb0\\x47\\xcb\\x43\\x6f\\xbc\\x45\\xef\\\r\n\\x98\\xee\\xc4\\xf7\\xc0\\x56\\x26\\xca\\xb9\\x8f\\xc4\\x74\\x63\\xb7\\xfa\\x6f\\\r\n\\xdb\\xfe\\x70\\xa3\\x35\\xcd\\xb5\\xbe\\x86\\xdf\\xad\\x3c\\xe2\\x86\\x55\\xf7\\\r\n\\x7a\\x7c\\xc1\\xc6\\x78\\xba\\x46\\x43\\xbc\\x60\\x01\\xeb\\x66\\xec\\x6d\\x8a\\\r\n\\x99\\x23\\xa7\\x81\\x10\\x75\\x54\\xb7\\x56\\x83\\x6b\\xdb\\xe2\\x3e\\x3b\\x7f\\\r\n\\x7c\\x27\\xbc\\xc5\\x39\\xcc\\xaa\\x73\\x06\\x36\\xd6\\xf6\\x3a\\xfc\\xfc\\xed\\\r\n\\x8a\\xac\\xb2\\x53\\xf3\\x35\\xcc\\x08\\x5f\\x07\\x5d\\x0f\\xa8\\xb0\\xf5\\x07\\\r\n\\x14\\x32\\xa5\\x45\\x35\\x57\\x0f\\xe2\\x01\\xaa\\x28\\x23\\xa6\\x49\\xe9\\xcd\\\r\n\\xef\\x55\\x4a\\x34\\x2f\\xee\\xf2\\x1d\\x58\\x0b\\x66\\x30\\xbd\\xd1\\xb2\\xd8\\\r\n\\x5b\\x50\\x78\\x85\\x24\\xc2\\x8a\\x96\\xba\\x9e\\x54\\xab\\xa3\\x82\\x24\\x8a\\\r\n\\x3a\\x88\\x6e\\x14\\xc6\\xa7\\x49\\x5d\\x00\\x06\\x29\\x02\\xf4\\x4b\\x1b\\x7c\\\r\n\\x0d\\xad\\xb2\\x8b\\xe3\\x85\\x44\\x55\\x68\\xcd\\x5d\\x44\\x8f\\x43\\x2c\\xb1\\\r\n\\xad\\x4a\\x64\\x59\\x15\\x62\\xcd\\xd5\\x22\\xab\\xec\\xea\\xa4\\x9c\\xc8\\x14\\\r\n\\x92\\xa0\\x31\\x3d\\xe3\\xe3\\x53\\xf0\\x64\\x10\\x09\\xa1\\xe3\\x54\\x71\\xa2\\\r\n\\x1a\\x39\\xe2\\xa9\\xf7\\x63\\x1c\\x2e\\xe8\\xdc\\xb9\\xa9\\x82\\x9e\\x6a\\xba\\\r\n\\xa1\\xcd\\x19\\x58\\xd9\\xc7\\x4c\\xce\\xc9\\x64\\xc7\\x1a\\x92\\xa6\\x09\\xa1\\\r\n\\x92\\x91\\x9e\\x2c\\xb5\\x52\\xd4\\x7d\\x91\\x10\\xb9\\xbb\\x2c\\x8a\\x02\\x85\\\r\n\\xc9\\xd0\\x6e\\xc9\\x92\\xc4\\x1d\\x23\\xca\\x2f\\x8a\\x0f\\x6e\\x11\\x29\\x21\\\r\n\\x15\\x12\\x47\\x0a\\xd4\\xfb\\xbf\\x30\\x43\\xca\\xe4\\xd6\\xd4\\x41\\x20\\x95\\\r\n\\x1a\\xa1\\xa7\\x5a\\x8c\\xce\\x24\\x04\\x48\\x97\\xe5\\xc8\\xd6\\x04\\x59\\x50\\\r\n\\x0e\\x3f\\xc6\\x57\\x8f\\xf1\\x7a\\xc1\\xcd\\x4a\\x89\\x4f\\x36\\x7a\\xb2\\xc5\\\r\n\\xd4\\x19\\xa2\\x2c\\xc0\\x72\\xef\\x1e\\x73\\x99\\x82\\xbc\\xc9\\xf7\\x48\\x54\\\r\n\\xb8\\x5c\\x70\\x1e\\x2e\\x28\\x60\\x86\\x28\\x4c\\xd0\\x84\\x9d\\xa9\\xe2\\x22\\\r\n\\x46\\x2a\\x2a\\x66\\x12\\xc9\\x32\\x5c\\xae\\x85\\x54\\x10\\x4b\\xea\\xc8\\x51\\\r\n\\x4d\\xec\\xd7\\x8a\\xb0\\xcb\\xcb\\x89\\xcc\\xc9\\x1a\\xe5\\x27\\x94\\xc9\\x0e\\\r\n\\x83\\x99\\x94\\xc4\\xec\\x97\\x42\\x18\\xa9\\xbc\\x60\\x5e\\xf6\\x3a\\x5c\\x63\\\r\n\\x8d\\x42\\xfe\\xd4\\xf1\\x56\\x8b\\x86\\x52\\xe4\\x3c\\x3a\\x9e\\x3a\\x49\\xd7\\\r\n\\xde\\xa5\\x54\\x48\\xd0\\x97\\x8a\\x47\\x69\\x4b\\x67\\x96\\x77\\x91\\xd9\\x92\\\r\n\\x14\\x5c\\xa2\\xc4\\xa8\\xdc\\xf1\\x5e\\x09\\xc4\\x28\\x09\\x13\\xa9\\x49\\x6d\\\r\n\\x22\\xb4\\x39\\xb3\\x92\\x3f\\x7d\\x19\\x0c\\x2e\\x8c\\xad\\xab\\x21\\x17\\x06\\\r\n\\xde\\xa3\\x06\\x45\\xa5\\x58\\x45\\x3c\\x82\\x49\\x27\\x89\\x65\\x96\\x40\\x3f\\\r\n\\x76\\x08\\x5b\\xc6\\x84\\x5b\\x2d\\x8d\\xf3\\x1d\\x2f\\xa8\\xda\\xf8\\x9a\\x99\\\r\n\\x38\\xae\\x48\\xea\\x18\\x73\\x46\\x60\\x8f\\xb7\\xfe\\x3e\\xba\\x6a\\x0f\\xa1\\\r\n\\xd6\\xf8\\x9b\\x83\\x55\\x70\\xf2\\x2a\\xa9\\xe7\\x5c\\xf1\\xfd\\xcb\\xe5\\x60\\\r\n\\x00\\xdc\\x7d\\xd7\\x04\\x5d\\x48\\xb5\\x8e\\xc7\\x43\\x85\\x35\\x0b\\x55\\x4b\\\r\n\\x55\\x28\\x20\\x89\\xb2\\xe6\\xb5\\xb4\\xd4\\xe9\\x6f\\x87\\xcf\\xf2\\xd3\\x1e\\\r\n\\xce\\xfb\\x43\\x27\\x0b\\xa5\\x81\\x84\\x79\\xe9\\xab\\x67\\xac\\x35\\x2a\\xcd\\\r\n\\x72\\xca\\x6b\\x24\\x00\\xea\\x08\\xcc\\x8b\\xaa\\xdb\\x71\\x70\\x48\\xbe\\x9c\\\r\n\\x6f\\x83\\xa5\\x62\\xc5\\xc5\\x28\\xdb\\x35\\x0c\\x8b\\x9a\\x48\\xd0\\x6c\\xcc\\\r\n\\x01\\x0c\\x2d\\xa8\\x3b\\xe6\\xfe\\x84\\x62\\xbe\\x24\\xe2\\x5c\\x3e\\x24\\x53\\\r\n\\x9e\\x5a\\x2a\\x85\\x8e\\x51\\xfc\\x31\\xb9\\x36\\x67\\x3a\\xdf\\xb5\\xbb\\x1b\\\r\n\\x9f\\x5c\\x7b\\x1d\\xc2\\xa1\\xa6\\xa1\\x8a\\x55\\xcb\\x7c\\xb1\\xec\\x3b\\x81\\\r\n\\xf3\\xf4\\xfc\\x71\\xed\\xef\\x14\\x72\\x20\\xa4\\x8d\\x0d\\xcb\\x72\\xf7\\x21\\\r\n\\x1b\\x36\\xe1\\xb7\\xdf\\x60\\x6d\\xdc\\x6f\\x8a\\xca\\x75\\xe2\\x72\\x45\\x1c\\\r\n\\x91\\x56\\x43\\x1c\\x31\\xf5\\xca\\x91\\xf5\\x47\\x2b\\x7c\\x4a\\xd7\\xb2\\x10\\\r\n\\xa1\\x45\\xec\\xc4\\x30\\x3a\\x69\\x6b\\x54\\xc1\\x49\\x4c\\x0d\\x3c\\x35\\xb0\\\r\n\\xc6\\xa5\\x42\\xcf\\x3c\\xf3\\x8f\\x79\\x90\\xdb\\x44\\x4a\\x78\\x79\\x8c\\xb1\\\r\n\\x8d\\xb5\\xdd\\x9a\\xe7\\xc9\\xa8\\x1c\\x1b\\x35\\x31\\x9a\\xb2\\xb2\\xad\\x9e\\\r\n\\x75\\x09\\xee\\xb0\\x84\\x02\\xd6\\x00\\x39\\xaa\\x31\\xf4\\xeb\\xad\\x96\\xf6\\\r\n\\xee\\x31\\x4b\\x51\\x45\\x4b\\xc5\\x16\\x9a\\x1a\\x59\\x63\\x5a\\x8b\\x53\\xb4\\\r\n\\xd2\\xce\\xc4\\x9e\\x62\\x8e\\x50\\xe4\\xc6\\xa2\\x35\\x02\\x40\\xab\\x72\\xce\\\r\n\\xdb\\xeb\\xdf\\x07\\x89\\x54\\x52\\x54\\x4b\\x4a\\x62\\x81\\x39\\x6c\\xe3\\xec\\\r\n\\xa1\\x41\\x98\\x03\\x6b\\x8c\\xd9\\xf5\\x00\\x03\\xbd\\xc8\\xef\\x8e\\x1b\\xc5\\\r\n\\x11\\x29\\xf3\\xd4\\x4a\\xf1\\xcd\\x29\\x65\\x89\\x66\\xcc\\x37\\xbd\\x8a\\x93\\\r\n\\x65\\xb0\\x1d\\x87\\xf3\\xc5\\x5b\\xfb\\xad\\x67\\xb4\\x31\\x8b\\x37\\x36\\x40\\\r\n\\xb1\\x5f\\xae\\xcd\\x35\\x40\\xb1\\x5d\\xcd\\xf9\\x6e\\xc0\\xb7\\x9d\\x71\\x0b\\\r\n\\xf2\\x38\\x5d\\x6f\\x0f\\x9c\\xff\\x00\\x88\\xa2\\x54\\x9e\\x98\\xb6\\x99\\x95\\\r\n\\x58\\x16\\x0a\\x77\\x1b\\x5b\\x4d\\x7a\\xb1\\x53\\x5f\\x0c\\xfc\\x3c\\x2d\\x44\\\r\n\\x0b\\x55\\x0c\\x86\\x31\\x69\\x3e\\x23\\x98\\x1e\\xa0\\xc8\\x73\\xa3\\x2f\\xc4\\\r\n\\xa7\\xb1\\x16\\x20\\xdb\\x2e\\x2a\\x22\\xa8\\xe0\\x51\\xd6\\x40\\xf4\\x14\\xf5\\\r\n\\x50\\xf1\\x2a\\x68\\xd2\\x1a\\x89\\xd1\\x9e\\x6a\\x60\\x64\\x59\\x04\\xd0\\x14\\\r\n\\x36\\x49\\xb4\\x28\\xc5\\xb4\\x28\\x48\\xcb\\xd4\\x0e\\x1a\\x6e\\x27\\x53\\x4d\\\r\n\\x4a\\x64\\x35\\x2f\\x4d\\x0d\\xa9\\x69\\xcc\\xae\\xfc\\x84\\x66\\xbb\\x98\\xe3\\\r\n\\x2e\\xdc\\xb4\\xd5\\xb3\\x38\\x04\\x7f\\x11\\xde\\xe6\\x9f\\x9f\\x45\\x52\\xdc\\\r\n\\x32\\xb9\\x11\\x2a\\x40\\xcd\\x11\\xce\\xb6\\x39\\xd4\\x30\\x8c\\xb2\\x12\\x97\\\r\n\\x60\\x43\\x06\\x5b\\xe2\\xb2\\xb6\\x4a\\x0a\\xe5\\xc8\\x91\\x86\\x89\\xaf\\x24\\\r\n\\x13\\x01\\x51\\x0b\\x48\\xd7\\xfd\\xe2\\xb8\\xca\\xca\\x33\\x5c\\x0c\\xb6\\x1d\\\r\n\\xb5\\x1a\\x09\\x29\\x65\\xe5\\xe5\\x47\\x8a\\x45\\x12\\x7b\\xcb\\xb3\\xe7\\x59\\\r\n\\x5e\\xec\\xc3\\x96\\x99\\x57\\x96\\x8a\\x34\\xca\\x0b\\x5c\\xeb\\xde\\xd8\\x69\\\r\n\\x06\\x66\\x20\\xab\\x9d\\xb6\\xb5\\x8e\\xfb\\xed\\x8f\\x67\\xe8\\x25\\x9d\\x85\\\r\n\\x5a\\xfd\\xa4\\x09\\x9a\\x3e\\x70\\x07\\x47\\x74\\x62\\x61\\x7e\\xd7\\x65\\xbb\\\r\n\\xae\\xa6\\xe0\\x13\\xf3\\x6e\\x0a\\xae\\xcc\\xdc\\xc9\\x46\\x66\\x2d\\x6c\\xfe\\\r\n\\x4d\\xfc\\x62\\xbf\\x86\\x88\\x88\\x91\\x2e\\x50\\x16\\xeb\\x20\\x59\\x09\\xd9\\\r\n\\x5a\\xd6\\xd3\\x5d\\x09\\xf9\\xf6\\xc4\\x7c\\xd4\\xbb\\x14\\x01\\xd1\\xc2\\xf2\\\r\n\\xc6\\xfa\\x5a\\xff\\x00\\x0d\\xae\\x0f\\x8f\\x5f\\x5c\\x50\\xf0\\xa9\\xf8\\xa3\\\r\n\\x08\\xd1\\x02\\x65\\x3c\\xd9\\xa7\\x6d\\x39\\x51\\x28\\xfd\\xde\\xbd\\x3e\\xa8\\\r\n\\xbb\\xb1\\xb8\\xc5\\x70\\x92\\x09\\x82\\xa4\\x3c\\xa8\\x22\\x39\\x23\\x23\\x5c\\\r\n\\xf6\\xd4\\xbc\\x9f\\xe6\\x36\\x24\\x0d\\x86\\xca\\x00\\xc2\\xc8\\x25\\x9e\\x96\\\r\n\\x51\\xb4\\xbf\\x63\\x21\\xf1\\x9b\\xe1\\xb9\\xff\\x00\\x56\\x9a\\xf9\\xc3\\x52\\\r\n\\xa2\\x43\\xee\\xe1\\x01\\x8d\\xe3\\x2a\\x7a\\xb5\\x3b\\x6a\\x6d\\xdf\\x6f\\xe7\\\r\n\\x7c\\x55\\xab\\xd2\\x8f\\x76\\xd7\\x96\\xcc\\x1d\\x4d\\xf6\\x23\\xb1\\xf3\\x6f\\\r\n\\x3a\\x5b\\xf2\\xc2\\x47\\x5a\\xab\\xcc\\x4b\\x38\\x5e\\xa0\\x08\\xea\\x36\\xf1\\\r\n\\xe6\\xde\\x75\\xbe\\x3d\\xf2\\xa5\\xa3\\x8c\\x49\\x13\\x01\\xf0\\xe7\\x5e\\xc6\\\r\n\\xf6\\xd4\\x6d\\xa7\\x9b\\x8b\\x7a\\x5b\\x1c\\x65\\x29\\x52\\x48\\xad\\x23\\x73\\\r\n\\x32\\xfd\\xa9\\x61\\xa0\\x63\\xa8\\x51\\x6d\\x89\\xd7\\xc6\\x9f\\x94\\x72\\xcb\\\r\n\\x0b\\x21\\x83\\x46\\x62\\xb9\\x3c\\x93\\x72\\x3a\\x4f\\xaf\\x71\\xf4\\xc7\\x0a\\\r\n\\xa1\\x9e\\x3e\\x0b\\x04\\x75\\x4d\\x24\\xb3\\x0a\\x73\\x2c\\x86\\xf7\\x73\\x65\\\r\n\\x25\\x50\\x13\\xf0\\xd9\\x8d\\x97\\xf2\\xc7\\x11\\x77\\x7a\\xfa\\xb7\\x60\\xca\\\r\n\\xde\\xf1\\x2d\\xd5\\xda\\xe5\\x4f\\x31\\xba\\x4b\\x0d\\x34\\xdb\\xf2\\xf4\\xc1\\\r\n\\xbb\\x0f\\x1a\\x81\\xa7\\xd3\\xbf\\xa7\\xf5\\xc4\\x72\\xc9\\x15\\xf9\\x6e\\xe1\\\r\n\\x99\\x59\\x1a\\xda\\x12\\xac\\x35\\x17\\x1d\\x8f\\x7b\\x5b\\xc7\\x9c\\x43\\x0c\\\r\n\\x95\\x0e\\x90\\x45\\xd4\\xce\\x46\\x9d\\xcd\\xf4\\xc7\\xb8\\xcd\\xc2\\xa1\\xa6\\\r\n\\xce\\x03\\x2c\\xd4\\xe0\\xad\\x8e\\x6b\\x30\\xbf\\x31\\x7d\\x19\\x0f\\xc4\\xba\\\r\n\\x1d\\x74\\xd2\\xc4\\x9c\\x99\\x8b\\xbc\\xa1\\x86\\x60\\x65\\x9b\\x61\\x6e\\xcb\\\r\n\\xb7\\xc2\\xb6\\xb7\\xf4\\xc4\\xac\\x8f\\x50\\xad\\x19\\x46\\x55\\x16\\x39\\x48\\\r\n\\x3a\\x7a\\xdb\\xc8\\xbe\\xf8\\x96\\x35\\x75\\x68\\x49\\x00\\x48\\xb1\\xbc\\x67\\\r\n\\xff\\x00\\x30\\x09\\x1f\\x5b\\x6d\\xbe\\x0c\\x2b\\x4b\\xc4\\x92\\x8d\\x01\\x09\\\r\n\\x35\\x0b\\x53\\x92\\x6e\\x7e\\xd0\\xa3\\x6b\\xf2\\x6b\\x13\\x6f\\x5c\\x70\\x57\\\r\n\\xab\\xa4\\xa6\\xca\\x14\\x48\\xab\\x24\\x91\\xd4\\xc3\\x22\\xfd\\x8c\\xf0\\x87\\\r\n\\xd5\\x5a\\xf7\\xb3\\x01\\x7b\\x48\\xba\\x8b\\x58\\xdd\\x74\\xc7\\xec\\xaa\\x66\\\r\n\\xa6\\x41\\x10\\x6e\\x4b\\xe4\\x75\\x4c\\xf9\\xbd\\xdf\\x37\\x56\\x52\\xbf\\x11\\\r\n\\x4b\\xfd\\xed\\xbc\\x81\\x6d\\x78\\x8d\\x3f\\x16\\xa7\\x73\\xee\\x5c\\x4e\\x45\\\r\n\\x03\\xe2\\x8e\\x5c\\x8c\\xa1\\x53\\xa7\\x2c\\x44\\xad\\xec\\x7c\\x69\\xb6\\x8d\\\r\n\\x6c\\x53\\x7b\\x43\\x59\\x17\\x3a\\x9f\\x8a\\xc3\\x1c\\x8a\\xaa\\x39\\x5f\\x66\\\r\n\\x7e\\xd5\\x41\\xca\\xcb\\x60\\x48\\x4c\\xca\\x6e\\xae\\x33\\x28\\xc9\\x62\\xba\\\r\n\\xe3\\xdc\\xe8\\x2b\\x52\\x92\\x58\\x6c\\x90\\xb4\\x8e\\x7d\\xd9\\xdf\\x29\\x62\\\r\n\\xc6\\xee\\x20\\x6b\\xf4\\xb0\\xf8\\x82\\xad\\xc0\\x3f\\xc3\\x7b\\xe2\\x7e\\x1d\\\r\n\\xcd\\xe7\\xc9\\x4f\\x4e\\xdc\\xe6\\x81\\xa0\\x35\\x03\\x2a\\xc8\\xaa\\xd6\\x51\\\r\n\\x9d\\xfe\\x37\\x2d\\x60\\x74\\x04\\x8c\\xbf\\x11\\xc1\\xe1\\xf4\\xc9\\x0d\\x2d\\\r\n\\x3d\\x9e\\x4e\\x49\\x2c\\x65\\x13\\x59\\x5e\\x67\\xb1\\x90\\x48\\xbf\\x17\\x39\\\r\n\\x8e\\x5f\\xb5\\x2c\\x1f\\xc3\\x0e\\xab\\xd2\\x37\\x1b\\xa8\\xe2\\x14\\xf4\\xa3\\\r\n\\x2c\\x34\\x2c\\xf7\\x9a\\x48\\x5a\\xd3\\xc7\\x4e\\x01\\x01\\x09\\x62\\xff\\x00\\\r\n\\x7b\\x28\\xba\\x0b\\x9b\\xdc\\x6f\\x89\\x6a\\xa9\\xb8\\x32\\x73\\x60\\x6c\\xc6\\\r\n\\xef\\xcd\\x8d\\x95\\x79\\x8d\\xa5\\xd8\\x9d\\x14\\xc8\\x16\\xdf\\xbc\\xb6\\xfa\\\r\n\\x69\\x8e\\x3d\\x5d\\xfb\\x56\\x59\\x78\\x94\\x55\\x56\\x68\\xe0\\x51\\x4e\\xa1\\\r\n\\xf3\\x23\\xbc\\x64\\xb5\\x9f\\x4b\\x8c\\xa8\\x59\\x6d\\xb8\\xf1\\xe6\\x13\\x21\\\r\n\\xeb\\x7b\\x86\\xb6\\x55\\xff\\x00\\x4f\\xf9\\x75\\xee\\x77\\xee\\x34\\xef\\x88\\\r\n\\xec\\x57\\x35\\x88\\x60\\x2c\\xb9\\x49\\xf3\\xb6\\x9b\\x7c\\xc7\\xf7\\xc3\\x67\\\r\n\\x25\\x97\\x39\\x3f\\x15\\x89\\x39\\xb4\\x3a\\xda\\xe7\\xf0\\xc4\\x96\\x58\\xf5\\\r\n\\x01\\xb2\\x0c\\xc0\\x91\\x7d\\xbf\\xdb\\x7c\\x70\\x9a\\x5a\\xc9\\xa8\\x29\\x95\\\r\n\\x69\\x66\\x7e\\xb9\\xca\\xd9\\x58\\x68\\xf3\\x13\\x9a\\xe7\\xb1\\xbd\\xc1\\xfc\\\r\n\\x37\\xc7\\xb3\\x55\\xcf\\xc3\\x4c\\x94\\x1c\\x4a\\x6a\\x7f\\x76\\xa8\\xbe\\x4a\\\r\n\\x59\\x2a\\xe0\\x13\\x86\\x3a\\x1b\\x27\\x35\\x88\\x16\\x3a\\x5a\\xdd\\x42\\xfd\\\r\n\\xf1\\xc3\\x7d\\x8f\\x77\\xe3\\x12\\xa4\\x53\\x49\\xca\\xaf\\x85\\xdb\\x92\\x10\\\r\n\\x3c\\x79\\x3b\\x06\\x93\\x3a\\xae\\x70\\x40\\xcb\\xe2\\xe3\\x1c\\x37\\x84\\xb7\\\r\n\\x0b\\xa7\\x58\\xe4\\x96\\x42\\xa1\\x46\\x84\\xa2\\xa8\\x0a\\x3b\\xf4\\x9f\\xaf\\\r\n\\x56\\x9a\\xe3\\xdb\\x6f\\x69\\x78\\x1d\\x2c\\x81\\x55\\x83\\xd4\\x16\\x0b\\x23\\\r\n\\xaf\\xdb\\x3a\\xd8\\x5a\\xca\\xc4\\xb6\\x83\\xc2\\x10\\x37\\x1d\\xf1\\x59\\xc5\\\r\n\\xda\\xae\\x66\\x9b\\x34\\xa4\\x96\\xb2\\x67\\x2d\\x90\\xc4\\x18\\xf4\\xe4\\xb9\\\r\n\\xd4\\xf7\\xd3\\xf9\\xe2\\x67\\x3a\\xdd\\xfa\\xe4\\xc8\\xf9\\xb4\\xb6\\x53\\xe2\\\r\n\\xd7\\x22\\xda\\x02\\xa4\\xe9\\x8a\\xc8\\xe7\\x8e\\x4a\\x71\\x22\\xe5\\x53\\x26\\\r\n\\x74\\x65\\xcb\\xd6\\x08\\xde\\xc2\\xf6\\x3d\\xcd\\xf5\\xc4\\x73\\xb8\\x93\\x99\\\r\n\\x9d\\x8b\\xaa\\xd9\\x09\\xd4\\x87\\x1f\\x07\\x56\\xf6\\x0d\\xaf\\xd3\\x1c\\x4d\\\r\n\\xff\\x00\\xc5\\xf0\\xfa\\xf8\\xec\\x56\\xb6\\x14\\x90\\x9e\\xe5\\xb2\\xaa\\x48\\\r\n\\x34\\xff\\x00\\xc6\\xfd\\xf4\\xbf\\xa6\\x1e\\x3a\\x56\\x58\\x80\\x09\\x2c\\x54\\\r\n\\xb4\\xe3\\xee\\x86\\x56\\x66\\x45\\x72\\x76\\xed\\x7b\\x79\\xd4\\xed\\x8e\\x23\\\r\n\\x0b\\x7e\\xdd\\x68\\xec\\x02\\xbd\\x54\\x2c\\x46\\x96\\x54\\xba\\xb5\\xb5\\xd4\\\r\n\\x85\\x17\\x2a\\x2f\\x60\\x3b\\x63\\x8b\\x50\\xd5\\x7b\\xa4\\x45\\x8a\\xca\\xdc\\\r\n\\xb9\\x24\\x4a\\x94\\xb8\\x73\\x1f\\xfe\\xc4\\x83\\xef\\x58\\x10\\x43\\xf8\\xcd\\\r\n\\x7c\\x47\\x30\\xf7\\x48\\x63\\x23\\x31\\x8e\\x66\\x57\\xe5\\xb1\\x36\\x41\\xd6\\\r\n\\x86\\xda\\x1f\\x8a\\xe3\\xe1\\xd8\\x91\\x89\\x78\\xa7\\x0f\\x7a\\x01\\xcf\\x4e\\\r\n\\x70\\x6b\\xc5\\x1e\\x9f\\x78\\xa5\\xdd\\x0f\\x85\\x61\\xa3\\x03\\xa5\\xec\\x41\\\r\n\\xbd\\x88\\xa8\\xa4\\xa6\\x9e\\x87\\x99\\xc3\\x2a\\x8c\\x71\\xac\\xe5\\xcf\\x0b\\\r\n\\xa9\\x32\\xd9\\x5c\\xaa\\x86\\x92\\x19\\x73\\x34\\x64\\x1d\\x02\\x82\\xd9\\xad\\\r\n\\xe2\\xe3\\x1c\\x5d\\x1a\\x92\\xa3\\x84\\xf1\\x15\\xe0\\x91\\xd1\\x2a\\xd3\\xc0\\\r\n\\xf2\\x53\\x3c\\xd5\\x12\\x8a\\x89\\x69\\x88\\x49\\x9e\\x64\\x90\\xab\\xc7\\xcf\\\r\n\\xb0\\x93\\x2c\\x72\\x14\\x50\\xfa\\x1d\\xd7\\x1c\\x4e\\xa1\\x2a\\x6b\\xe6\\xa9\\\r\n\\x8e\\x35\\x89\\x2a\\x98\\x4c\\xb1\\x06\\x2f\\x90\\x36\\x9c\\xbc\\xcd\\xab\\x64\\\r\n\\x20\\xfa\\xeb\\xaf\\xaa\\x75\\x16\\xb9\\xb2\\xe5\\xb0\\x63\\x6b\\x0e\\xab\\x5f\\\r\n\\x4d\\x4f\\x9d\\x7e\\x5b\\x61\\x9f\\x32\\x2c\\x7c\\xb5\\x16\\xbe\\x67\\xb1\\x2c\\\r\n\\xfd\\xfe\\x56\\x16\\xd2\\xc3\\x1e\\xcd\\xad\\x44\\x5e\\xf0\\xe5\\x9e\\x28\\xb9\\\r\n\\x57\\xb1\\x5b\\xdd\\x99\\x94\\x2f\\x2c\\x5f\\xe2\\xb0\\x39\\x9c\\x7c\\x2b\\xa1\\\r\n\\x20\\x1c\\x2c\\xd7\\x00\\xe7\\x97\\x50\\x3f\\xee\\x43\\xff\\x00\\xfc\\xf1\\x43\\\r\n\\x59\\xc3\\x38\\xb5\\x3a\\x1b\\x0a\\x67\\x11\\x28\\x9f\\x28\\x69\\x22\\xe6\\xb0\\\r\n\\xf8\\x5a\\xf6\\x65\\x04\\xed\\xbe\\x5b\\x6e\\x75\\xbc\\xbe\\xce\\xc3\\x20\\x82\\\r\n\\xa2\\x2a\\x88\\x01\\xb6\\x43\\x90\\x93\\xd3\\x71\\x95\\x8f\\xf0\\xb5\\xaf\\xbd\\\r\n\\xfb\\x5f\\x6c\\x54\\x24\\x70\\x44\\xb4\\x54\\xb7\\xe4\\xc5\\x6c\\xcd\\xf7\\xe6\\\r\n\\x96\\xdd\\x52\\x39\\xef\\x6f\\x85\\x46\\xc0\\x76\\xd4\\xde\\x68\\x96\\xae\\x26\\\r\n\\xa7\\x36\\xbb\\x02\\xc0\\x8f\\xe3\\x5d\\x46\\x29\\x63\\x56\\xe1\\xd5\\x59\\x98\\\r\n\\x24\\xd1\\xb1\\x21\\x6f\\xff\\x00\\xb6\\x45\\x8e\\x5b\\xdc\\x6a\\xa0\\x29\\xf5\\\r\n\\xee\\x71\\x2f\\x1b\\xac\\x22\\x39\\x36\\x45\\x41\\x75\\x03\\x7d\\x2d\\xb8\\x00\\\r\n\\xef\\xeb\\x88\\xf8\\x84\\x55\\xeb\\xd5\\x94\\x9d\\x41\\x42\\x06\\x6f\\x5d\\xf5\\\r\n\\xb7\\xcb\\x14\\xd5\\x92\\xd2\\xfd\\x8c\\x86\\xf1\\xec\\x8f\\xe3\\xb5\\x8e\\x96\\\r\n\\xdf\\x0b\\x59\\x0a\\xd3\\xc9\\x9e\\xdb\\x33\\x0f\\xf3\\x7a\\xf7\\xb1\\xec\\x2d\\\r\n\\x8e\\x34\\x99\\x20\\x46\\x50\\xa3\\x9b\\x26\\x77\\xd5\\x8b\\x6d\\xd2\\xa3\\x7e\\\r\n\\x9f\\xc3\\x5c\\x50\\xd7\\xb4\\x12\\xc3\\x50\\xa3\\x3a\\x52\\xcc\\xac\\x62\\x6f\\\r\n\\x85\\xad\\xf7\\x42\\x9d\\x0d\\xbd\\x06\\xf8\\xa4\\xf6\\xea\\x82\\xb7\\x83\\x55\\\r\n\\xc8\\x9f\\x63\\x5e\\xb1\\xd8\\x53\\x1d\\x89\\x09\\x95\\x44\\x63\\x76\\x04\\xea\\\r\n\\x6d\\x73\\xf5\\xc3\\xb9\\x96\\x49\\x64\\x7b\\x16\\x79\\x1c\\xb2\\x8d\\x3a\\x8b\\\r\n\\x13\\xf3\\xf5\\xd4\\xdf\\x1b\\x03\\xe8\\x73\\x69\\xdb\\xd3\\xe7\\x60\\x30\\x36\\\r\n\\x04\\x77\\xfd\\x6b\\x8e\\x07\\x17\\xdb\\x9a\\xa0\\x48\\xf7\\x7b\\x64\\x61\\xb7\\\r\n\\x35\\x81\\x0b\\x98\\x11\\xad\\xb5\\x36\\xdb\\x6d\\x2d\\x7c\\x47\\xcb\\xe2\\x14\\\r\n\\x8f\\x0c\\xea\\x16\\x56\\x50\\x41\\x6d\\xe2\\x9d\\x6f\\xcb\\x99\\x6c\\x35\\x47\\\r\n\\x1d\\x13\\x0b\\x5f\\x21\\x0d\\xf7\\x31\\x5b\\x9e\\x26\\xab\\xa4\\x68\\xe5\\x8a\\\r\n\\xa0\\x66\\x5b\\x14\\x2d\\x1b\\x5f\\x4d\\x40\\xec\\x3b\\x1d\\xed\\xf8\\xe3\\x86\\\r\n\\xcc\\x29\\xe9\\xe6\\x46\\xb1\\xcb\\x2d\\xe4\\x90\\x5f\\x33\\x5b\\xee\\x9d\\xba\\\r\n\\x54\\xed\\xeb\\xb8\\xc4\\x55\\x14\\xcf\\x15\\x2d\\x53\\x38\\xe4\\xa6\\x64\\x95\\\r\n\\x8d\\xc0\\x4b\\xfc\\x21\\xaf\\xa7\\xc6\\x2c\\x37\\x3e\\x30\\xdc\\x77\\x85\\xc3\\\r\n\\x59\\x24\\x8d\\x20\\x9b\\x2b\\x29\\x47\\xb3\\x92\\xbb\\x82\\x07\\x4f\\xdd\\x07\\\r\n\\x43\\xeb\\xbd\\xb1\\xff\\x00\\xa9\\x78\\x64\\xec\\xd1\\x24\\x92\\x45\\x63\\x7c\\\r\n\\xf9\\x08\\x47\\xf2\\x07\\xde\\xb9\\xbe\\xfd\\xec\\x71\\xc2\\xbd\\xa1\\x91\\x9a\\\r\n\\x25\\x49\\x93\\x3d\\xca\\xab\\xe6\\xdc\\x0f\\x84\\x32\\x35\\xb5\\xcb\\x6b\\xe9\\\r\n\\xdf\\x1c\\x23\\xd9\\xea\\x4e\\x3f\\x3a\\xd7\\xd4\\xd4\\x9a\\x1a\\x59\\x33\\x45\\\r\n\\x29\\x85\\x16\\x58\\xf3\\xfc\\x41\\xe3\\xb3\\x5e\\x30\\x75\\xb8\\x65\\x75\\x53\\\r\n\\x97\\xee\\x82\\x71\\xc5\\xfd\\x85\\xe0\\xa9\\x4f\\x23\\x45\\x5b\\x2c\\xb3\\x46\\\r\n\\x62\\x44\\xa7\\xaa\\x8a\\x20\\xc7\\x9b\\x72\\x32\\xb4\\x39\\xb9\\x76\\x50\\xad\\\r\n\\xd6\\x55\\xae\\xda\\x29\\x5b\\x90\\xbc\\x26\\x86\\x08\\xcd\\x3c\\x95\\x12\\x5d\\\r\n\\x19\\xe4\\x55\\x51\\x77\\x52\\x6e\\x07\\x56\\xda\\x76\\x64\\x5d\\xec\\x49\\xd7\\\r\n\\x13\\x57\\x41\\xc2\\x69\\x17\\x99\\x2c\\x8f\\x0e\\x65\\xb7\\x31\\x8b\\x4b\\x9b\\\r\n\\x40\\x16\\xe6\\xcc\\xc3\\xbd\\xb5\\xb7\\xf3\\xaa\\xa0\\x7e\\x27\\x4b\\xcf\\xe1\\\r\n\\x75\\xe9\\x13\\xb1\\x79\\x9d\\x79\\x36\\x67\\x61\\xd3\\xd7\\x72\\x87\\xe2\\xd2\\\r\n\\xeb\\x7b\\x6f\\xb0\\xc7\\xb3\\x2b\\x5e\\x07\\x10\\x3c\\x56\\x9d\\xa2\\xb4\\x4b\\\r\n\\x0c\\x7f\\x68\\xb9\\xe5\\x93\\x36\\x75\\x91\\x50\\x12\\x50\\x01\\x1b\\x1c\\xe3\\\r\n\\xe2\\xb6\\x9a\\xd8\\x1e\\x23\\xc2\\xe3\\xac\\x8f\\x34\\x53\\x2b\\x8b\\x08\\xcb\\\r\n\\x4d\\x35\\x88\\x2d\\xd4\\x16\\x36\\xb5\\xd9\\x7e\\xe9\\xbe\\xbe\\x75\\x16\\xc4\\\r\n\\xbc\\x1e\\xb2\\x17\\xc9\\x4f\\x04\\x85\\x23\\x0c\\x24\\x91\\x88\\x10\\xb3\\x31\\\r\n\\xfb\\xad\\x29\\x54\\x75\\xd8\\x03\\xb6\\xfa\\xdf\\x1f\\xb3\\x1a\\xff\\x00\\x69\\\r\n\\x51\\x47\\x1e\\xa0\\x59\\x66\\xe7\\x1b\\xde\\xd6\\xc9\\x4c\\x27\\xc8\\x46\\x97\\\r\n\\x07\\x2d\\xfb\\x0b\\x83\\x6a\\xde\\x1f\\x43\\x43\\x22\\x46\\xf3\\xce\\xf9\\xe1\\\r\n\\x49\\x57\\x95\\x10\\xea\\x0e\\xa0\\x82\\xce\\xf2\\x2e\\xb7\\xba\\xd8\\x47\\xa5\\\r\n\\xb6\\x26\\xe7\\x1e\\xf3\\x43\\x1e\\xd4\\x0e\\xc4\\x1b\\x67\\xa8\\xa8\\x76\\x16\\\r\n\\xd6\\xd7\\x58\\x51\\x14\\x6b\\xeb\\x7e\\xd8\\x7e\\x2b\\x26\\x6e\\x5d\\x27\\xba\\\r\n\\xd2\\xdd\\x6f\\xcc\\x86\\x04\\x19\\x34\\xd8\\x3c\\xbc\\xc9\\x4b\\x1f\\x25\\xb4\\\r\n\\xdf\\x7c\\x53\\xcf\\x3c\\xf1\\x46\\xd5\\xd5\\x12\\xb1\\x20\\x97\\xbb\\xb9\\x1a\\\r\n\\xdd\\x82\\xaa\\x96\\xca\\x3a\\x40\\x1b\\x6d\\xdb\\x15\\x25\\x05\\x5a\\xb6\\x7b\\\r\n\\x2a\\xda\\x48\\xd8\\x5f\\x43\\x7c\\xbc\\xb6\\xb0\\xd5\\xad\\x66\\xfd\\x0c\\x7b\\\r\n\\x05\\xed\\x52\\x4f\\x04\\x31\\x2d\\x3b\\xcb\\x3c\\x0a\\x10\\x4c\\x35\\x36\\xd0\\\r\n\\xd9\\xb4\\xb0\\xfa\\x1b\\xfc\\xb1\\x2b\\x35\\x74\\x6e\\x92\\x15\\xb3\\xa9\\x5e\\\r\n\\x9d\\xf2\\x91\\x72\\x33\\x5b\\x4f\\xa6\\xb8\\xff\\x00\\xa8\\x5c\\x3a\\x86\\x86\\\r\n\\xa2\\x4c\\x96\\x46\\x47\\xb0\\x63\\x99\\xdd\\x8b\\x78\\x3f\\x7a\\xda\\x93\\xdb\\\r\n\\xb1\\xde\\xcd\\x11\\xa1\\x00\\x02\\x8d\\x21\\x04\\x80\\x32\\x80\\x34\\x3b\\xdf\\\r\n\\xee\\xdf\\x4b\\x2d\\xb3\\x6b\\x63\\x89\\x57\\x20\\x7c\\xd1\\x98\\xd5\\x06\\x7c\\\r\n\\x8c\\x0e\\x63\\x71\\xd0\\xb7\\x36\\xcb\\x9b\\x71\\x61\\xa8\\xb1\\xbe\\x21\\xa8\\\r\n\\xa6\\xa8\\x92\\x9c\\x57\\x3b\\xda\\x02\\xe1\\x5a\\x05\\x03\\x30\\x29\\xf6\\x4e\\\r\n\\x55\\xfc\\x11\\x69\\x17\\x4d\\x8e\\xbb\\xb6\\x26\\x92\\x22\\xc0\\xa2\\x80\\x2e\\\r\n\\x41\\xff\\x00\\x37\\x83\\xa7\\xe3\\xbe\\x2c\\x67\\xf6\\x6e\\x3a\\x98\\xc6\\x69\\\r\n\\x38\\x74\\xfa\\x8f\\x11\\xcd\\x99\\x4d\\xff\\x00\\xca\\x3e\\x21\\xea\\x07\\x6c\\\r\n\\x0a\\xe1\\x41\\xc3\\x29\\x66\\xbe\\x69\\x65\\x91\\x56\\xa5\\x37\\x08\\x18\\x30\\\r\n\\x5d\\xaf\\xbf\\x2f\\x4b\\x5f\\x53\\xe3\\x41\\x51\\x92\\xbb\\xda\\x18\\x5a\\x3e\\\r\n\\x94\\x60\\x1c\\x5c\\x6a\\x0a\\xc6\\x74\\x26\\xdd\\xd8\\x5b\\xc9\\xd3\\xe5\\x8a\\\r\n\\x79\\xdb\\x96\\xd0\\xd4\\x37\\xd9\\xa8\\x3c\\x86\\x20\\xd9\\x24\\xb5\\xc6\\x63\\\r\n\\xe1\\xac\\x01\\x02\\xfa\\x1f\\x98\\xc5\\x15\\x07\\xbd\\xf1\\x73\\x49\\x4f\\xd1\\\r\n\\x99\\xe7\\x90\\x5f\\x6c\\x88\\xad\\x21\\xdb\\x5d\\x35\\x51\\x7d\\x2f\\xbe\\x83\\\r\n\\x1c\\x57\\x87\\xc1\\xc3\\xaa\\xd2\\x9e\\xa2\\xa6\\x36\\xe6\\x0e\\xb8\\xe3\\x6c\\\r\n\\xe2\\x07\\x1a\\x23\\x16\\x1b\\x69\\xf8\\xdc\\xe9\\xa6\\x3f\\x64\\xd5\\x1a\\x09\\\r\n\\x2b\\x97\\x9d\\x1f\\x0e\\x39\\xb3\\xc8\\x15\\xcc\\x19\\x83\\x80\\xa1\\xdb\\x45\\\r\n\\xbe\\x60\\xa5\\x08\\x24\\x8f\\x4d\\xb1\\x05\\x6b\\x29\\x8e\\x9f\\x88\\x47\\x15\\\r\n\\x75\\x1e\\x74\\xcb\\xcd\\x05\\xb2\\xea\\x2f\\x96\\x55\\x6e\\x64\\x40\\x8d\\x0d\\\r\n\\x8a\\x9b\\x0d\\x7b\\x63\\x89\\xf0\\xbe\\x1d\\xcc\\x43\\x2f\\x0f\\x7a\\x59\\x24\\\r\n\\x0a\\xd1\\x34\\x35\\x4e\\xd1\\xc9\\x19\\x01\\x96\\x45\\x32\\x09\\x03\\x02\\xa4\\\r\n\\x49\\x1e\\xdb\\xec\\x2f\\x83\\xc2\\x78\\x7a\\xc2\\xc2\\x1a\\xba\\x81\\x21\\x2d\\\r\n\\x75\\x92\\x25\\x95\\x7a\\x4d\\xad\\xd2\\x51\\xd4\\x6a\\x4b\\x31\\x07\\x60\\x02\\\r\n\\xf7\\x3c\\x3f\\x81\\x53\\xbb\\x0e\\x7b\\xb4\\x81\\x72\\x66\\x71\\xf6\\x54\\xd1\\\r\n\\x12\\xc0\\x0e\\x6c\\x85\\x18\\x85\\x27\\x4b\\xdb\\x4f\\x23\\x7c\\x45\\x41\\x5a\\\r\n\\xde\\xfa\\x81\\x7a\\xe8\\xa2\\x79\\xa7\\x56\\x39\\x42\\x46\\x85\\x13\\x96\\x8a\\\r\n\\x07\\x51\\x3a\\x5b\\x20\\xca\\x05\\xd8\\x1b\\x5b\\x02\\x37\\xb0\\xfb\\x79\\x47\\\r\n\\xa6\\x69\\x34\\xf4\\xc7\\x0c\\x8d\\x63\\x80\\xd3\\xc4\\xa5\\x19\\x5c\\x99\\x14\\\r\n\\xfc\\x5c\\xc2\\x05\\xcb\\x1b\\x9b\\xf8\\x07\\xc7\\x7c\\x53\\xe7\\x8e\\x10\\x4d\\\r\n\\xee\\x86\\xe4\\x79\\x5d\\x88\\xf9\\xf6\\xbf\\x9c\\x5a\\x92\\xa8\\x22\\xa1\\xe4\\\r\n\\xce\\x47\\x55\\xfe\\x12\\x4f\\x93\\xb7\\x8d\\x71\\x59\\x49\\x35\\x04\\xe0\\x1f\\\r\n\\xba\\x6f\\x98\\x02\\x23\\x75\\x20\\x6a\\x09\\xdf\\xf1\\xbf\\xa6\\x2a\\x94\\xc1\\\r\n\\x5b\\x30\\x1f\\xbb\\x98\\x06\\xf9\\xe7\\xdf\\xf1\\x3a\\x1c\\x53\\xe4\\x70\\x53\\\r\n\\xc7\\x6b\\x8d\\x05\\xf4\\xfc\\xb0\\xf4\\x4a\\xd6\\x68\\x89\\x89\\xc1\\xb8\\x65\\\r\n\\xb6\\xa7\\xd7\\xe9\\xe9\\x8a\\x89\\xea\\x29\\x20\\x4f\\x79\\x8c\\x39\\x90\\xb7\\\r\n\\x24\\x92\\x06\\x70\\xa3\\xe3\\xb5\\xb3\\xe5\\x53\\xa1\\x60\\x2d\\x7d\\xb1\\xc2\\\r\n\\xaa\\x25\\xad\\x32\\xa4\\xe5\\x55\\x22\\x55\\x70\\x3b\\x00\\x2f\\x7d\\x4e\\xfe\\\r\n\\xb8\\xac\\x9a\\x3e\\x27\\x0b\\xc3\\x4b\\x1c\\x93\\xfc\\x79\\x32\\x23\\x16\\x56\\\r\n\\x1a\\x2d\\xac\\x2f\\x66\\x3a\\x1f\\xae\\x0c\\x6b\\x12\\xc6\\x9c\\xcc\\xd2\\x30\\\r\n\\x26\\x64\\xca\\xc1\\xa1\\x70\\xc4\\x65\\x24\\xe8\\x6e\\x3a\\xaf\\xeb\\x63\\xb6\\\r\n\\xb1\\xbb\\xc2\\x55\\xe3\\x39\\x59\\x49\\xea\\xd7\\x7d\\x2d\\xe9\\xf8\\x61\\x47\\\r\n\\x31\\x89\\x17\\xcc\\xc5\\x9d\\xcf\\x96\\x3f\\x16\\xdf\\xe6\\xbd\\xad\\xb7\\x7c\\\r\n\\x30\\x51\\x96\\xc4\\x9f\\x23\\xbf\\xaf\\xcc\\xfa\\x83\\x89\\x2a\\x22\\x76\\x8f\\\r\n\\x2d\\x3c\\x51\\x04\\x87\\x96\\x15\\x33\\x0d\\x40\\xfd\\xe3\\xd8\\xdd\\xe4\\x27\\\r\n\\xe4\\x3b\\x0d\\xb1\\xec\\xfc\\x70\\x25\\x2f\\x22\\x73\\x08\\x92\\x73\\xce\\xc8\\\r\n\\x6e\\x26\\x56\\xd9\\x43\\x7a\\x85\\xb6\\x86\\xda\\x1d\\xb1\\xcb\\x6e\\x85\\x86\\\r\n\\x56\\xce\\x58\\x08\\xf2\\x5d\\x9c\\x9f\\xe1\\x00\\x6a\\x6f\\xb1\\x16\\x37\\xc7\\\r\n\\x16\\xa1\\xf7\\xd4\\x35\\x31\\xb0\\xa7\\xe2\\x14\\xe8\\x3d\\xe0\\x94\\x5f\\xb5\\\r\n\\x45\\x16\\x57\\x64\\x3a\\x68\\x3a\\x18\\x8f\\xae\\xf7\\xc5\\x45\\x71\\x93\\x32\\\r\n\\xc7\\x1c\\x25\\xac\\x52\\x67\\x0a\\x02\\xc9\\x6d\\x98\\x2e\\xd9\\xbb\\xdc\\xff\\\r\n\\x00\\x6c\\x17\\xa9\\x95\\x42\\xf3\\x1f\\x96\\xa5\\x9b\\x20\\x6e\\x8f\\x4e\\x91\\\r\n\\xd3\\xf2\\xbe\\x0c\\x4b\\x6b\\x6b\\x7b\\xf5\\x79\\xf3\\xfc\\xf1\\x65\\x03\\x4e\\\r\n\\xe4\\xdf\\xe8\\x34\\xfc\\xff\\x00\\x9e\\x14\\xb2\\xd9\\xc3\\x75\\x0b\\xe5\\xea\\\r\n\\x22\\xc6\\xdd\\x8d\\xf7\\xf0\\x36\\x38\\xf6\\x43\\xdb\\x5a\\xbe\\x16\\x0f\\x0e\\\r\n\\x9a\\x54\\x8e\\x92\\x4d\\x56\\x50\\x13\\x32\\xcc\\x54\\xa1\\xce\\x58\\xf5\\x2b\\\r\n\\x21\\xb1\\x04\\xe5\\x0c\\x01\\xb6\\xf8\\x5e\\x39\\x0d\\x42\\x88\\x20\\x64\\xf7\\\r\n\\x86\\x55\\x74\\x85\\xcc\\x7f\\x6d\\xf7\\x83\\x45\\x91\\xf2\\xac\\xa4\\x6c\\xa4\\\r\n\\x1c\\xf7\\xe8\\x19\\xb0\\x9c\\x17\\x8a\\xf1\\x3a\\xbf\\x7c\\xa4\\xa7\\xae\\x95\\\r\n\\x42\\xb0\\x92\\x38\\xa9\\x0b\\x47\\x61\\x7c\\xe1\\x59\\x9a\\x2c\\xcc\\x8d\\xf7\\\r\n\\x54\\x33\\x68\\x75\\xc7\\xb4\\x50\\x52\\x51\\xc9\\x4d\\x07\\x11\\x4a\\xde\\x68\\\r\n\\x7e\\x6f\\x25\\xb9\\x70\\xa8\\xb6\\x5b\\x19\\x09\\xe6\\xb2\\xe5\\x04\\x1c\\xa1\\\r\n\\x75\\xee\\x46\\xf8\\x8f\\x8c\\xd1\\xc7\\x1c\\x0f\\x4d\\x10\\x42\\x33\\x29\\x2f\\\r\n\\x33\\x93\\x1f\\x50\\xb0\\x06\\x34\\x88\\x75\\x02\\x58\\x8b\\x9f\\x1a\\x61\\x7d\\\r\n\\xa1\\xa4\\x8d\\xc4\\x73\\x22\\x38\\x6e\\xa6\\xca\\xad\\xa1\\xde\\x39\\x14\\xc9\\\r\n\\x2b\\xa1\\x74\\xd5\\x7e\\x16\\xd1\\x8e\\x50\\xa7\\x1c\\x4a\\x6a\\xfa\\xb8\\xd2\\\r\n\\x5e\\x1b\\x52\\xe6\\x18\\x89\\x0f\\x1d\\x34\\x85\\x25\\x37\\x23\\xf7\\x8b\\x1f\\\r\n\\x2e\\xe3\\xb8\\x5b\\x5f\\xd0\\x93\\x7c\\x4a\\x0b\\xb6\\x77\\x0e\\xcc\\xbf\\xbc\\\r\n\\x2e\\x4b\\x5f\\x5d\\x7e\\x2d\\x41\\x07\\x5f\\x3f\\x96\\x38\\x3c\\xb4\\x83\\xfc\\\r\n\\x2d\\x62\\xa0\\x81\\xc9\\xe5\\xca\\x4e\\x47\\x89\\x8e\\xb9\\x8c\\xb6\\x27\\x29\\\r\n\\x6d\\xc1\\xf3\\xa6\\x97\\xc7\\xb5\\x14\\x96\\x3c\\x3e\\x5a\\x54\\xe7\\x43\\xee\\\r\n\\xc2\\x1e\\x62\\x9c\\xe5\\x4a\\xb9\\xd4\\xda\\xf9\\x95\\xaf\\xa1\\xd8\\x5a\\xd6\\\r\n\\xbe\\x26\\x51\\x95\\x8e\\x72\\xd7\\x53\\x98\\x14\\xb3\\x2d\\x88\\xba\\xfa\\xeb\\\r\n\\x6f\\x1b\\x9d\\x3b\\xe0\\x49\\x4d\\x05\\x3a\\x73\\x98\\x99\\x66\\xfb\\x5e\\x58\\\r\n\\xd5\\xec\\xdb\\x2d\\xbb\\x68\\x3c\\xed\\xb6\\x20\\x82\\xba\\xb1\\x6f\\x08\\x34\\\r\n\\xd1\\x6b\\x73\\x72\\x4d\\x86\\xed\\xb9\\xf3\\xfe\\x5b\\x6b\\xaf\\x98\\xf8\\x44\\\r\n\\xcd\\x53\\xee\\xeb\\x9a\\x66\\x10\\x86\\xbb\\x86\\xdd\\x8e\\xad\\xa1\\xd4\\x5a\\\r\n\\xdb\\xe6\\xef\\x8f\\x62\\x38\\x37\\x18\\xa3\\x98\\x3b\\xd3\\x30\\x8c\\x30\\x62\\\r\n\\xca\\x56\\xd6\\xff\\x00\\x4d\\x81\\xd7\\xd3\\x5f\\x38\\xa2\\xa7\\x80\\x42\\xcd\\\r\n\\x98\\x66\\xcb\\x9c\\x9b\\xdb\\x56\\xfc\\x3b\\x81\\xa7\\xfb\\x63\\xfe\\xa8\\xc8\\\r\n\\x24\\xe2\\x16\\x1b\\x86\\xe9\\xb0\\xd3\\xce\\xb6\\xf1\\xf4\\xc3\\xc4\\xa9\\x6d\\\r\n\\x13\\x36\\x4c\\xea\\x41\\x16\\xd3\\x6e\\xf7\\x07\\xd0\\xeb\\xe9\\x89\\x26\\xcd\\\r\n\\x13\\x67\\x2e\\xd2\\x4a\\x57\\x5b\\x7f\\x08\\xfe\\x32\\x4b\\x5b\\x60\\x36\\xdb\\\r\n\\x00\\x84\\x31\\xb4\\xc9\\x68\\xc9\\xca\\xe3\\x41\\xa6\\xb6\\x7e\\xdd\\x56\\xf5\\\r\n\\x17\\xd5\\x74\\xd2\\xd5\\x10\\xc6\\x90\\xc7\\x24\\x0d\\x9a\\x37\\xdf\\x36\\x8e\\\r\n\\x8f\\xbe\\xfb\\x32\\x11\\xf5\\x1f\\x5c\\x7b\\x2c\\xde\\xf5\\x4b\\x59\\x40\\xe3\\\r\n\\xec\\xa7\\xa7\\x95\\x5f\\x52\\x33\\x3b\\x00\\xd1\\x9f\\x98\\x0a\\xc0\\x77\\x07\\\r\n\\x71\\x6c\\x4e\\x07\\xec\\xe6\\xa7\\x96\\xe1\\xf3\\x49\\x1a\\xe9\\x73\\xcc\\x88\\\r\n\\x21\\x52\\xa5\\x8f\\x8b\\x5f\\xe6\\xda\\x0d\\xb1\\x2e\\x55\\xa8\\xa3\\x78\\xdb\\\r\n\\x2b\\x4b\\x10\\x3e\\xb9\\xd5\\x88\\xcb\\x7b\\x5a\\xdb\\x8f\\xeb\\x86\\xa8\\x78\\\r\n\\xe3\\x01\\x87\\x44\\x9b\\xdc\\xd8\\x86\\x1b\\xfd\\x6c\\x7c\\x6b\\x6d\\x31\\x4d\\\r\n\\x52\\xd4\\xbc\\x65\\x26\\xa6\\x39\\x73\\xb1\\xa6\\xce\\xc3\\xee\\xcc\\x32\\x3f\\\r\n\\xe4\\x77\\xb6\\x28\\xe9\\xa9\\x78\\x8f\\x39\\xaa\\x22\\x59\\x2a\\x61\\xcd\\x13\\\r\n\\x02\\x48\\xf8\\x58\\x95\\x3b\\x8e\\xfd\\xf1\\x2f\\x12\\xe7\\xf0\\xa9\\x78\\x2d\\\r\n\\x45\\x84\\x94\\x52\\x47\\x2d\\x15\\x1a\\x2c\\x8d\\xef\\x49\\x70\\xc6\\x14\\xb3\\\r\n\\xac\\x66\\xf7\\xbb\\x07\\xb9\\xd2\\xd9\\x4e\\x8c\\x2b\\xf8\\xa2\\x24\\xef\\x0d\\\r\n\\x25\\x17\\xec\\xb3\\xb4\\xd1\\x8b\\xf3\\x1d\\xb3\\x06\\xeb\\x0e\\x3e\\xcb\\xb1\\\r\n\\x0a\\xa3\\xbe\\xf7\\x26\\xd1\\xf1\\xb9\\xd4\\x5a\\x79\\x4d\\x44\\x40\\xaa\\xf2\\\r\n\\x65\\x25\\xee\\xb6\\xd8\\x1d\\x1a\\x2b\\x1e\\xe9\\x66\\x1d\\xb0\\xf3\\x47\\x3b\\\r\n\\x52\\xb5\\x3a\\xd0\\xd3\\x47\\x39\\xd1\\x19\\xf9\\x91\\xc4\\x6f\\x95\\xf9\\xb2\\\r\n\\xd8\\xcc\\x87\\x76\\x2a\\xfc\\xce\\x96\\x19\\x6d\\x71\\x8f\\xda\\xb4\\x6b\\xce\\\r\n\\xe1\\xac\\xa2\\x17\\x15\\x3a\\xc8\\x92\\x34\\x90\\xce\\x11\\x55\\x57\\x24\\x84\\\r\n\\x23\\x72\\x99\\x97\\x98\\xb7\\x5b\\x1c\\xdb\\x8b\\xdf\\x1c\\x26\\xae\\x39\\xd6\\\r\n\\xae\\x59\\x62\\x32\\x54\\x47\\x40\\xf4\\x44\\x03\\xfb\\xf8\\x1b\\x27\\x2e\\x52\\\r\n\\x3e\\xf3\\xc0\\x41\\xce\\x7b\\xa1\\x0c\\x5b\\xa6\\xd8\\x26\\x90\\x12\\x32\\x36\\\r\n\\x9a\\x76\\xed\\xf5\\xc7\\x55\\x37\\x10\\x46\\x19\\x44\\x75\\x36\\x46\\x3a\\x58\\\r\n\\x48\\x2d\\x6f\\xca\\xfd\\xb7\\xf9\\x62\\xbd\\x8c\\x74\\xa5\\x62\\x7b\\x48\\x56\\\r\n\\xed\\xd5\\xdb\\x4d\\xbe\\x7a\\xdb\\x11\\xd6\\x48\\xb6\\x4c\\xcc\\x18\\x7d\\xeb\\\r\n\\xda\\xe7\\xeb\\xfa\\xd3\\x09\\xc7\\x62\\xe5\\x22\\x55\\xde\\xa7\\xff\\x00\\x73\\\r\n\\x38\\x27\\x4f\\xf2\\x9e\\xc6\\xfa\\xe2\\xbb\\x85\\x51\\xf1\\x5a\\x58\\xa5\\xe1\\\r\n\\x52\\x97\\xac\\x57\\xeb\\x8e\\x47\\x08\\x12\\x26\\x1a\\x65\\x16\\xbb\\x30\\x6f\\\r\n\\xe2\\x24\\x0e\\xc0\\x6f\\x88\\x69\\xe7\\x86\\xaa\\xa2\\x29\\x41\\x47\\x8c\\xea\\\r\n\\x0e\\x8b\\xa5\\xc1\\x2b\\x7b\\x12\\x0f\\x9f\\x87\\xc6\\x23\\xe6\\x30\\x66\\xcb\\\r\n\\xa4\\x76\\xce\\xa0\\x8b\\xd8\\xec\\x7e\\x58\\xe2\\x70\\x4e\\xd3\\xf3\\x02\\x33\\\r\n\\x2b\\x46\\x99\\x75\\xcd\\x97\\xd2\\xdf\\x74\\x5f\\x53\\xfd\\x71\\x47\\xc1\\x19\\\r\n\\x50\\x9f\\x7a\\x25\\x5e\\x30\\xef\\x1c\\x01\\x90\\xc8\\xc0\\x75\\x42\\x5c\\x80\\\r\n\\x59\\x17\\x30\\xcd\\xb0\\x24\\x5a\\xd8\\xf6\\x6f\\x84\\x4f\\x59\\x55\\xee\\xef\\\r\n\\x2c\\x34\\x28\\xee\\xd6\\x45\\x16\\x51\\x1a\\x75\\x96\\x6c\\x80\\xb9\\x2c\\x17\\\r\n\\x7b\\xb6\\xbf\\x8e\\x3d\\xa9\\xe1\\xd5\\x94\\x7c\\x5e\\xae\\x49\\x69\\x9e\\x2a\\\r\n\\x69\\x5c\\x0a\\x69\\x56\\x22\\x23\\x78\\xc2\\xe5\\x5b\\x91\\xd3\\x73\\x6d\\x6e\\\r\n\\x6f\\xe7\\x1c\\xb2\\xa1\\x06\\x65\\x60\\xea\\x1c\\x5b\\x50\\xa7\\x5c\\xc0\\xf4\\\r\n\\xdf\\x30\\xfa\\x8b\\x6f\\x6d\\x31\\x41\\xc2\\xe3\\xe4\\x89\\x1e\\xf9\\x9c\\x1d\\\r\n\\x8d\\xad\\x7d\\xef\\x7e\\xda\\xf7\\xc3\\xb2\\xf3\\x64\\xe5\\x9b\\x2e\\x66\\x0b\\\r\n\\x7d\\xb2\\x76\\x3e\\x34\\x1f\\x16\\x20\\xa7\\x5e\\x60\\x69\\x00\\x31\\xc6\\xe2\\\r\n\\xf2\\x29\\x04\\x48\\x6f\\x98\\x00\\x74\\x60\\x8d\\x6d\\x5a\\xc3\\xa4\\x5b\\x4b\\\r\n\\xe2\\x88\\xe6\\x91\\x27\\xb0\\x53\\xd8\\xf6\\x3f\\xf9\\x77\\x20\\x7f\\x21\\x88\\\r\n\\xb8\\xac\\xfc\\x36\\xba\\x29\\x28\\xc4\\x2c\\x65\\x8c\\xb8\\x96\\x58\\xc3\\x98\\\r\n\\x9b\\x66\\x31\\xdc\\xe8\\xc0\\xdf\\x5d\\xb5\\xef\\xdf\\x8c\\xf1\\xba\\xaa\\xd9\\\r\n\\xa4\\x8d\\x65\\x95\\x93\\x98\\xe7\\x3f\\xc0\\xee\\x5a\\xe1\\x81\\x08\\x75\\x5f\\\r\n\\x03\\x6b\\x61\\x62\\x31\\x85\\xea\\x03\\x4d\\x6f\\x7b\\xeb\\xdb\\x4d\\x8e\\xba\\\r\n\\xe3\\x22\\xdb\\x73\\x7d\\xf7\\xd3\\xd4\\xed\\xaf\\xae\\xd8\\xe5\\x83\\xf7\\x88\\\r\n\\x36\\xbe\\x6b\\x5c\\x1d\\xed\\xd8\\xef\\xe7\\xd3\\x1a\\xaf\\x65\\xd6\\xeb\\x7d\\\r\n\\xff\\x00\\xe3\\x4d\\x71\\x6e\\xe4\\x82\\x6e\\x6d\\xbe\\xe7\\x7d\\xbe\\x1f\\x40\\\r\n\\x77\\xdb\\x19\\x5b\\x4c\\xab\\x96\\xdb\\x77\\x27\\x5d\\x6c\\x74\\x20\\xdf\\x6f\\\r\n\\xe7\\x8e\\x11\\xc4\\x26\\x66\\xa6\\x80\\x48\\x13\\x94\\xeb\\xd4\\xd6\\xbc\\x8a\\\r\n\\x5f\\x33\\x05\\x72\\xa6\\xc5\\x75\\x50\\x17\\xb6\\xfa\\xde\\xfc\\x2f\\x88\\x88\\\r\n\\x55\\x64\\xa7\\x66\\x6a\\x26\\xe5\\xdf\\xee\\x3b\\x92\\x8c\\x06\\x56\\x75\\x2a\\\r\n\\x93\\x86\\x6c\\xea\\x6d\\x95\\xc9\\x20\\x9b\\x58\\x9f\\xfa\\x9d\\xfb\\x3f\\x8a\\\r\n\\xd3\\xc3\\x59\\x0c\\x72\\x8a\\xf8\\x75\\x99\\x80\\x54\\x0a\\xaa\\xab\\x1a\\x47\\\r\n\\x95\\x42\\x86\\xb4\\x7f\\x7b\\x28\\x3d\\x04\\xb9\\x62\\x74\\xa6\\xa3\\x59\\x29\\\r\n\\x24\\xa8\\x89\\xda\\xe9\\x1a\\xbb\\xc3\\x61\\x94\\xba\\xb5\\x9e\\xcd\\xd9\\x82\\\r\n\\xd8\\xd8\\xdf\\x30\\xbd\\xb7\\xc7\\x6b\\x91\\xfe\\x6f\\xa9\\x37\\xfa\\x79\\xfa\\\r\n\\xe3\\x84\\xc7\\xcd\\xa9\\x55\\x5a\\xa6\\xa5\\x7f\\xb8\\xcb\\xb3\\x91\\x6e\\x87\\\r\n\\x1d\\xff\\x00\\xdb\\x15\\xbc\\x32\\x99\\xa0\\x33\\x55\\x4f\\x1a\\xca\\xbd\\x0f\\\r\n\\x50\\x8a\\xd1\\xe6\\x62\\x6c\\xbf\\x67\\xf7\\x81\\xbe\\xfd\\xb5\\x3f\\x26\\xe1\\\r\n\\x30\\x51\\x2a\\xb4\\xd2\\x1a\\x96\\x93\\x33\\x00\\x9f\\xba\\xe9\\x17\\xb0\\x17\\\r\n\\xb5\\x86\\xec\\xd2\\x3a\\xa7\\xfa\\xb6\\xc2\\x71\\xba\\x3a\\x72\\x69\\xea\\x0c\\\r\n\\x49\\x45\\x91\\x95\\x99\\x6e\\x6c\\xda\\x81\\xcb\\xcb\\xa9\\xb3\\x6b\\xf0\\x8f\\\r\n\\x96\\xc7\\x15\\x95\\x13\\xcf\\x51\\x34\\xf1\\x40\\xd1\\xd2\\x35\\x8a\\x73\\x50\\\r\n\\x23\\x4a\\x8c\\x06\\x59\\x32\\xb5\\xb2\\xab\\x5b\\x30\\x7b\\x5c\\x5e\\xc7\\xc6\\\r\n\\x23\\x45\\x36\\x90\\xad\\x9d\\x4d\\xd4\\xd8\\x12\\x0f\\xf1\\x01\\xe7\\x1e\\xcc\\\r\n\\x18\\x9e\\xba\\x2a\\x4a\\x80\\x16\\x19\\x0b\\x02\\xfe\\x8f\\x63\\x6c\\xdb\\x6e\\\r\n\\x6f\\x7d\\x35\\xc4\\x5e\\xc6\\xf0\\xb4\\x30\\x4e\\xa8\\x18\\x34\\x0a\\x2e\\xba\\\r\n\\x5a\\xf6\\x23\\x5b\\xfe\\x5a\\xe2\\x8e\\x8a\\x8a\\x9a\\x9c\\x46\\x50\\x06\\x54\\\r\n\\x16\\xd7\\x52\\x3e\\xee\\xc0\\x6a\\x3c\\x62\\x61\\x0c\\x74\\xef\\x96\\xe4\\x58\\\r\n\\x91\\xf9\\x9f\\xf6\\xc7\\xfd\\x42\\x96\\x93\\x99\\x22\\xb3\\x07\\x9f\\xb6\\x5d\\\r\n\\x02\\x36\\xff\\x00\\xfd\\x43\\x66\\x1e\\x2d\\xb6\\x32\\x5d\\xac\\x01\\x3e\\x6c\\\r\n\\x2f\\x7b\\xf7\\xcd\\xb2\\xfc\\xda\\xc0\\x6f\\x7d\\xf1\\x51\\x47\\x51\\x00\\xbb\\\r\n\\xc6\\x33\\x72\\xb9\\x97\\x0e\\x1a\\xc2\\xf9\\x77\\x5b\\x83\\xaf\\xdd\\xec\\x08\\\r\n\\xc5\\x42\\x83\\x4c\\xc5\\x6e\\xc4\\x32\\x91\\xe3\\x45\\xde\\xdd\\xb5\\xbe\\x9e\\\r\n\\x46\\x22\\x81\\x5e\\x9e\\x9e\\xb5\\x49\\x30\\x4a\\x80\\x4e\\xab\\xf7\\x65\\x8c\\\r\n\\x58\\x8b\\xe9\\x94\\x3b\\x8b\\x86\\xdb\\xab\\xc5\\x86\\x38\\x0d\\x7c\\xb4\\xb5\\\r\n\\xd4\\xe1\\x06\\x78\\x9a\\xa4\\x24\\x89\\xb1\\x4b\\x9c\\x84\\xff\\x00\\x99\\x95\\\r\n\\x4e\\xc7\\x7d\\xbd\\x71\\xed\\x04\\x2a\\x3d\\xf2\\x28\\x5b\\xae\\x86\\xb1\\x2a\\\r\n\\x1b\\x4d\\x56\\x39\\xe3\\xed\\xb7\\x49\\x6c\\xb7\\xf9\\x0b\\xe9\\x6c\\x54\\x38\\\r\n\\xe6\\xd1\\xe5\\x16\\x58\\xea\\xb2\\xa9\\xf3\\x9c\\xab\\x01\\x6b\\x68\\x03\\x87\\\r\n\\xb6\\xbb\\x1b\\x62\\xab\\x3c\\x50\\x4b\\x2b\\xa0\\x7b\\x29\\x90\\x5b\\xd1\\x49\\\r\n\\x3d\\xf7\\xd7\\xbd\\xb1\\x05\\x0e\\x7a\\x69\\xaa\\x13\\x37\\x36\\x82\\x18\\x6a\\\r\n\\xb2\\xb6\\x8d\\x63\\x25\\xdf\\x4b\\x0d\\x45\\xef\\xb9\\xd3\\x11\\x54\\xc9\\x1c\\\r\n\\xde\\xf3\\x0b\\x12\\xb5\\x20\\x67\\xb6\\x8b\\x77\\x00\\xfe\\x44\\x76\\x18\\xab\\\r\n\\x6e\\x73\\xbb\\x92\\x5a\\x6b\\x0e\\xa5\\x60\\x02\\x36\\xdf\\x8e\\xdd\\xfc\\x62\\\r\n\\x6f\\x76\\xe2\\x0f\\x47\\x49\\x59\\x1e\\x43\\x91\\xe2\\x92\\x70\\x01\\xa9\\x46\\\r\n\\x45\\x66\\x52\\x92\\x1b\\xb3\\x5c\\x80\\x00\\x72\\xc3\\x53\\x61\\x7d\\x70\\xde\\\r\n\\xcd\\x71\\x19\\x01\\x7a\\x57\\x86\\xaa\\x35\\x06\\x4b\\x19\\x23\\x86\\x55\\x8e\\\r\n\\xc0\\x86\\xcb\\x2b\\x20\\xb5\\xac\\x4e\\x46\\x7d\\xc1\\xb5\\xb5\\xc7\\x0f\\xa3\\\r\n\\xaf\\x85\\xe5\\xa5\\xa8\\xa3\\x94\\xc1\\x51\\x6d\\x57\\x96\\xc6\\x09\\x57\\x36\\\r\n\\x49\\x90\\xab\\x1b\\x8d\\x72\\xba\\x82\\x73\\x21\\x24\\x75\\x2a\\xda\\xbf\\x84\\\r\n\\x4f\\x4f\\x30\\xa3\\xa8\\x53\\xce\\x60\\xaf\\x4e\\xf1\\x90\\xf9\\xc3\\x8e\\x9e\\\r\n\\xfa\\xeb\\xf7\\x4d\\xac\\x7e\\x58\\xe1\\x5c\\x4e\\xab\\x86\\xb2\\xd1\\xd4\\xc6\\\r\n\\x56\\x58\\x9f\\x3c\\x33\\x58\\x32\\x4b\\xd4\\x33\\x44\\xfb\\xdf\\x32\\x5c\\x69\\\r\n\\xae\\xb6\\xc7\\xec\\xfe\\x15\\x37\\xdb\\x7b\\xe3\\x43\\xcd\\xfb\\x5e\\x56\\x57\\\r\n\\xfb\\x2e\\x67\\x57\\x2f\\xe1\\x3f\\x05\\xf2\\xee\\x76\\xdf\\x06\\x66\\xab\\x65\\\r\n\\x50\\xec\\x3a\\xc3\\x21\\xbf\\xc2\\x7e\\xe9\\x3a\\xec\\x3e\\xb8\\x9a\\x57\\x85\\\r\n\\x5e\\x29\\x24\\xcf\\x24\\x64\\x0c\\xd7\\xcc\\x18\\x5a\\xe7\\x29\\xd7\\xfd\\xb0\\\r\n\\xb7\\x3d\\x64\\x93\\xaf\\x7f\\x38\\x55\\xb7\\x51\\xd8\\x0b\\xdc\\x9d\\x07\\x6d\\\r\n\\x6f\\xa6\\x05\\x54\\xd4\\x83\\x9d\\x4f\\x32\\xc6\\x48\\x3a\\xa9\\xbf\\x49\\x61\\\r\n\\x7f\\x86\\xf6\\xd7\\xeb\\xa6\\x2a\\xf8\\xda\\xd6\\xd0\\x4a\\x95\\x31\\x46\\xf5\\\r\n\\x1c\\xa0\\x22\\xab\\x5b\\x06\\x06\\xe2\\xea\\xd6\\xb6\\x6b\\x8b\\xda\\xe7\\x7d\\\r\n\\xf6\\x07\\x14\\x12\\x54\\x39\\x6a\\x58\\x18\\x19\\xa4\\x46\\x08\\xb2\\x5d\\x83\\\r\n\\x1d\\x08\\x4d\\x0d\\xf4\\xcb\\x7f\\x1d\\x47\\x1c\\x21\\x67\\x92\\x77\\xf7\\xfa\\\r\n\\x58\\xd5\\xe0\\x8a\\x46\\x43\\x73\\x97\\x9a\\xab\\x71\\x99\\x7e\\x9d\\x22\\xf6\\\r\n\\xbe\\xe3\\x14\\x71\\xc8\\xcc\\xc6\\xe5\\x8b\\x02\\xa7\\xc2\\xde\\xe4\\x05\\xf4\\\r\n\\xb9\\x3f\\x53\\x8f\\x63\\x28\\x04\\x40\\xd4\\xd4\\xa3\\x67\\x77\\x30\\x20\\x37\\\r\n\\xcf\\xca\\x0c\\x43\\xbe\\xa4\\x6f\\x6c\\xa0\\xdf\\x6b\\xec\\x71\\xed\\x8c\\xb0\\\r\n\\x54\\x43\\xee\\x52\\x46\\x0c\\x72\\x5c\\x8e\\x9b\\xe4\\x08\\x7a\\x4a\\x7f\\x11\\\r\n\\x0d\\xbd\\xfb\\x02\\x3e\\xf6\\x23\\x82\\xa7\\xdf\\x63\\x86\\xc4\\xc2\\x26\\x2a\\\r\n\\x81\\x94\\x05\\x2a\\x4d\\x98\\xe5\\x1a\\x02\\x6f\\xdb\\xcd\\xf1\\x51\\x4f\\xee\\\r\n\\xf4\\x32\\x3a\\xaa\\xdd\\x53\\x30\\x55\\x36\\x04\\x01\\x7f\\x27\\x7d\\x88\\xf1\\\r\n\\xf8\\xe0\\xd6\\x43\\x2c\\x8e\\xcf\\x4a\\xb1\\x34\\x80\\x0b\\x23\\x32\\x80\\x77\\\r\n\\x27\\x2d\\xcf\\x53\\x1d\\x34\\x36\\x23\\x71\\xdb\\x1c\\x3d\\x29\\xaa\\xa1\\xc9\\\r\n\\x1a\\x7c\\x16\\x57\\x0d\\x62\\xd7\\x3a\\xe7\\x3a\\x5c\\x0b\\xf6\\x3f\\xca\\xd8\\\r\n\\x9a\\xb6\\x3a\\x06\\x68\\xa3\\x94\\x4c\\xb6\\x63\\x91\\x4d\\xca\\xd8\\x7f\\x15\\\r\n\\xf4\\xb1\\x1e\\xa4\\xdb\\x11\\xf1\\x09\\x6a\\xd6\\x08\\x69\\x69\\xe5\\x9a\\x56\\\r\n\\xce\\xfd\\x19\\xc9\\x84\\xdb\\x51\\x70\\xba\\xf9\\x22\\xe6\\xdd\\xb1\\x50\\xbe\\\r\n\\xeb\\x33\\x67\\x47\\x2d\\x76\\x0f\\xcc\\x56\\x53\\x9f\\x5b\\x91\\xb1\\xd0\\xfa\\\r\n\\x5a\\xfe\\x98\\x39\\x56\\x18\\xd8\\x08\\xf3\\xb1\\x76\\x60\\x15\\xb3\\x0d\\xb2\\\r\n\\xdf\\x3e\\x9a\\xf6\\x0b\\xf5\\xc0\\x91\\x98\\x5b\\x29\\x56\\x1b\\xd8\\x00\\x7b\\\r\n\\xeb\\xfd\\xf1\\xcc\\x94\\x5a\\xee\\x6e\\x47\\xf4\\xd7\\xe9\\xfc\\xb0\\x92\\x22\\\r\n\\xdd\\x65\\x52\\xd7\\x17\\x19\\x4d\\x88\\x6d\\x75\\xf9\\x60\\x48\\xab\\x0b\\x7d\\\r\n\\x90\\x67\\x2c\\x08\\x94\\xe6\\xcc\\x81\\x7b\\x00\\x0e\\x5b\\x77\\xbb\\x02\\x46\\\r\n\\x1a\\x47\\x7b\\x81\\x72\\x00\\xb8\\xcb\\xbf\\xd6\\xdf\\xd7\\xe5\\x8a\\x5a\\x4a\\\r\n\\x99\\x4a\\xa4\\x68\\xb1\\xe7\\xf8\\x4b\\xf4\\x5f\\x5d\\x2c\\xc7\\x5d\\x48\\xec\\\r\n\\x0e\\x38\\x0f\\x17\\xe2\\x54\\x60\\xc4\\xd5\\xce\\xb1\\xc4\\x44\\x68\\xeb\\x33\\\r\n\\x3c\\x71\\x66\\xe9\\xb3\\x07\\xb2\\xb2\\x9f\\x84\\x29\\xb3\\x6d\\xae\\x96\\xc6\\\r\n\\x59\\xf8\\xb4\\x6b\\x4d\\x51\\x34\\x27\\x88\\x7c\\x31\\x4a\\x2c\\xb1\\x71\\x08\\\r\n\\xca\\x9c\\xb0\\x38\\xd5\\x52\\xa8\\x7f\\xda\\x97\\x45\\x6d\\x11\\xb5\\x20\\x91\\\r\n\\x54\\x28\\xab\\xaa\\x38\\x54\\xd4\\xd3\\x45\\x1b\\x97\\x5c\\xa4\\xd9\\x95\\xed\\\r\n\\xa1\\x37\\xd8\\x86\\x1a\\x81\\xf9\\xe9\\x89\\x0d\\x8d\\x89\\xd6\\xe3\\x43\\xbe\\\r\n\\x9b\\x63\\x87\\xb4\\xd1\\x54\\x41\\x51\\x0c\\x6c\\xe5\\x1f\\x4d\\x1b\\x28\\x3b\\\r\n\\x6b\\xd8\\xef\\xfe\\xd8\\xe3\\x15\\x75\\x19\\x57\\x2d\\xb9\\x7a\\x3e\\x69\\x02\\\r\n\\x65\\x89\\xda\\xf6\\x55\\x5f\\x22\\xdf\\xbc\\x6b\\x91\\xe9\\x6b\\xe2\\x1e\\x27\\\r\n\\x25\\x38\\x78\\x8e\\x49\\xb9\\x97\\x59\\x4c\\x92\\x66\\x84\\x66\\x1b\\xf2\\xfb\\\r\n\\x90\\x77\\x21\\xd7\\xbd\\xb7\\xc4\\x9c\\x1e\\x26\\x89\\x2b\\x03\\x73\\xdf\\x5f\\\r\n\\x8d\\x72\\x46\\x87\\x31\\x27\\x95\\x10\\xba\\x84\\xb3\\x58\\x33\\x92\\x74\\xf8\\\r\n\\xb0\\x55\\x2b\\x38\\x5b\\x99\\x24\\xe4\\x55\\x50\\xc2\\xe9\\xa9\\xf8\\xe3\\xd7\\\r\n\\x20\\x7f\\xff\\x00\\x11\\xe6\\xde\\x48\\x31\\x41\\x2b\\x51\\x47\\x58\\x13\\x34\\\r\n\\x4c\\x4a\\xc9\\x22\\x1c\\xc2\\x09\\x03\\x95\\x02\\x41\\x7e\\x8e\\x60\\x04\\xa5\\\r\n\\xfe\\x2d\\x86\\xba\\x62\\x87\\x99\\xef\\x31\\x05\\x0c\\x19\\x72\\xda\\xda\\x69\\\r\n\\x7d\\x0e\\xf7\\xd8\\x5b\\x1c\\x02\\xae\\xb1\\x78\\x74\\x06\\x62\\xc6\\xca\\xa0\\\r\n\\x5e\\xfa\\xa6\\x5f\\xd0\\xbe\\xfa\\x63\\xf6\\xb8\\x79\\x42\\x3f\\x49\\xd3\\x2e\\\r\n\\xbd\\xfc\\x6b\\x7b\\x9f\\xd5\\xf1\\xef\\xd4\\xf1\\x53\\x48\\xf2\\xb0\\x00\\x7c\\\r\n\\x59\\x8f\\x91\\xa5\\xae\\x7e\\xba\\x7f\\xb6\\x3d\\xb0\\x30\\x57\\x71\\x8b\\x89\\\r\n\\xa3\\xa6\\x86\\x49\\xb2\\xac\\xae\\x6e\\x14\\x37\\xde\\xca\\x9d\\x59\\x7c\\xd8\\\r\n\\x01\\x7b\\xeb\\x60\\x48\\x6e\\x1f\\x52\\x66\\x92\\x94\\xe6\\x55\\x81\\xc9\\x96\\\r\n\\xd7\\xd4\\x5b\\x75\\xfe\\x2e\\x60\\xb3\\x0e\\xd6\\x22\\xdb\\xe2\\x91\\x32\\x54\\\r\n\\xcb\\x03\\x96\\xc9\\x25\\x33\\x05\\xce\\x36\\x7e\\x95\\x71\\xf4\\x61\\xf3\\xef\\\r\n\\xe7\\x0a\\x08\\x91\\xa2\\x1f\\x12\\xc9\\x96\\xc6\\xc4\\x36\\x62\\x4e\\xdb\\x90\\\r\n\\x47\\x7e\\xd7\\xc7\\x0a\\x69\\x55\\x27\\xe1\\x92\\x15\\x43\\x9d\\x8b\\x2d\\xef\\\r\n\\x75\\xff\\x00\\x2f\\x8c\\xb6\\xf4\\xbf\\x9c\\x4b\\x14\\x94\\x55\\x8d\\x92\\xf2\\\r\n\\xa8\\xb9\\xf5\\x60\\x40\\x65\\x65\\xcd\\x7b\\x38\\xb5\\xc1\\xf2\\x31\\xc6\\x56\\\r\n\\x19\\xd6\\x9e\\xb6\\x37\\x7e\\x7f\\x14\\xe0\\x91\\xca\\x0e\\xb9\\x26\\x30\\xaa\\\r\n\\xb3\\xdf\\xff\\x00\\x9a\\xb9\\x19\\x5b\\xfc\\xb6\\xbe\\x28\\x23\\x15\\x15\\x74\\\r\n\\xf1\\xf2\\xd1\\x9a\\x69\\xe2\\x8d\\x39\\xbd\\x9f\\x3d\\x95\\xef\\x7d\\x18\\x13\\\r\n\\xb9\\xd0\\x6f\\x6c\\x71\\x78\\xfd\\xdb\\x86\\xf1\\x08\\x2a\\x19\\x7d\\xe2\\x33\\\r\n\\x1b\\x0c\\x8d\\x99\\x48\\xcd\\x95\\x80\\x61\\x6b\\xdf\\xbf\\x8f\\xe4\\x0f\\xd8\\\r\n\\x67\\x4d\\xea\\x29\\x22\\x85\\x80\\x00\\xb5\\xb9\\x46\\xe4\\xdb\\xc1\\x3b\\x5e\\\r\n\\xd8\\xe0\\x50\\x52\\xcd\\x46\\x5a\\x77\\x50\\xd4\\x73\\x4a\\x8e\\xae\\xea\\x0c\\\r\n\\x83\\x78\\xd4\\x29\\x23\\xa9\\x89\\xd1\\x77\\xd8\\x78\\x06\\xa6\\x92\\x47\\x7a\\\r\n\\x96\\x48\\xf9\\x21\\xa4\\x2c\\x6d\\x2e\\x4b\\x2b\\x1b\\x8d\\x36\\xff\\x00\\x9c\\\r\n\\x14\\x58\\x27\\xa7\\x3c\\xee\\x61\\x52\\xcc\\xe4\\xbd\\xca\\xd9\\x74\\x50\\x43\\\r\n\\x77\\x37\\xb6\\xd8\\xf6\\x5a\\x95\\x78\\xc5\\x62\\xd1\\xca\\x64\\x6a\\x7a\\x57\\\r\n\\xf7\\xda\\xb3\\xd4\\x17\\xdc\\xe2\\x89\\xfd\\xe0\\x3b\\x8f\\xb8\\xd9\\x63\\x52\\\r\n\\x3e\\xf1\\x23\\x1c\\x5c\\xd3\\x8a\\xa1\\x0d\\x22\\x7b\\xbc\\x1a\\xcb\\x10\\xd4\\\r\n\\x1e\\xb3\\x7c\\xbc\\xc3\\xf6\\x80\\x2e\\x53\\x6b\\x9c\\xdd\\xbb\\x61\\xbd\\xf1\\\r\n\\x23\\x41\\x57\\x04\\xe6\\x99\\xec\\xd1\\xca\\xc8\\xc5\\x72\\x13\\xa3\\x24\\xc4\\\r\n\\x65\\xd0\\xf8\\x61\\xb7\\xcb\\x12\\xc1\\x35\\x32\\xa4\\xe2\\xed\\x0b\\x38\\x2b\\\r\n\\x28\\xca\\xe9\\xae\\xd7\\xb5\\xc6\\x63\\x7d\\xb4\\xd7\\x6c\\x27\\x13\\xa9\\x0a\\\r\n\\xa0\\xcf\\x28\\x21\\x40\\x23\\x29\\xf1\\xf3\\xc5\\x1d\\x0c\\x05\\xf3\\x4f\\x1b\\\r\n\\x2a\\x36\\x8b\\xa9\\x51\\x98\\xec\\x74\\xdb\\xbf\\xa6\\x98\\xaf\\xa4\\x34\\xd5\\\r\n\\x01\\x62\\x39\\xc4\\x8a\\x4a\\xc7\\xa3\\x39\\x1a\\xfd\\x47\\x6d\\x58\\x0f\\x3e\\\r\n\\x30\\x33\\x64\\x24\\xa9\\x43\\x97\\x4b\\xde\\xfd\\xfb\\x0d\\x47\\x6d\\xfb\\x76\\\r\n\\xf1\\x1f\\x2a\\x5b\\x5d\\x8b\\x32\\x1d\\x9b\\x4f\\x3d\\x81\\xd7\\x7b\\xde\\xfb\\\r\n\\xfc\\xb0\\xf4\\xd5\\x11\\x9c\\xb0\\xcb\\x99\\x19\\x86\\x58\\xef\\xd4\\x02\\x9b\\\r\n\\x8d\\x5e\\xe0\\x5b\\x7f\\x88\\x5c\\xef\\x84\\x9d\\xe1\\x46\\x4a\\xaa\\x54\\x75\\\r\n\\xe9\\x05\\x99\\x0a\\x1b\\x1d\\xba\\x90\\x8b\\xeb\\x8e\\x0a\\xf4\\x02\\xad\\x2a\\\r\n\\x7d\\xda\\x65\\x9a\\x06\\x77\\x89\\x63\\x94\\x18\\x8d\\x85\\xae\\xdc\\xd5\\x66\\\r\n\\xb7\\xfa\\x6f\\xf4\\xc5\\x25\\x4f\\x0e\\xe2\\x8a\\x0c\\xb4\\xf1\\xd3\\xd5\\x5b\\\r\n\\x2b\\xe4\\x3d\\x4d\\x71\\x97\\x35\\xc0\\xb3\\x00\\x3e\\x25\\xdc\\xf7\\xdf\\x14\\\r\n\\xfc\\x2f\\xdd\\xeb\\x69\\x9a\\x1a\\x98\\xda\\x38\\xe5\\x56\\x30\\xf2\\xb5\\x9a\\\r\n\\xcd\\x7f\\xb4\\xcd\\xd2\\x41\\xb6\\xb7\\xd8\\x6c\\x2f\\xa6\\x0c\\xf2\\x5e\\xa6\\\r\n\\xa6\\x5b\\x20\\xb7\\x42\\xa0\\xb2\\xa5\\x97\\x4c\\xa3\\x4d\\x06\\x38\\xbf\\x1e\\\r\n\\xaf\\xe2\\x2d\\x90\\xac\\x6b\\x4d\\x4c\\x64\\x8a\\x14\\xe5\\xc7\\x9b\\x21\\x62\\\r\n\\x73\\xbb\\x95\\x2c\\xce\\xff\\x00\\x11\\xb9\\xb0\\xd0\\x6c\\x31\\xc2\\xa9\\x56\\\r\n\\x49\\x49\\x75\\xcc\\xc8\\x73\\xa1\\xf1\\x9b\\x71\\xa7\\x6c\\x57\\xa1\\xf7\\x57\\\r\n\\x17\\x16\\xcb\\xd5\\xe3\\xf5\\xae\\x1a\\x95\\xe1\\x9a\\x64\\x21\\x42\\x03\\xf1\\\r\n\\x5b\\x4c\\xac\\x74\\xb3\\xf9\\xf1\\x60\\x3e\\x7a\\x5f\\x1c\\x33\\x86\\x55\\xb2\\\r\n\\x55\\xbc\\x2e\\xad\\x2c\\x8b\\x91\\x17\\x33\\x02\\xfa\\x83\\xd4\\x7b\\x1b\\x7a\\\r\n\\x90\\x0f\\x73\\x6c\\x45\\xec\\xd4\\xe2\\x67\\x6a\\xd0\\x29\\xa0\\x88\\x23\\xcf\\\r\n\\x23\\x75\\xcc\\xe4\\xfd\\xd8\\x46\\x97\\x03\\x5d\\x4f\\xa6\\xf7\\xbe\\x29\\xb8\\\r\n\\xc5\\x0f\\x07\\xa5\\xf7\\x5e\\x11\\xc3\\xe2\\x89\\xc9\\xfb\\x7a\\xc9\\x2d\\x2d\\\r\n\\x43\\x28\\xdb\\x2b\\x11\\xd3\\xa6\\xf6\\xb5\\xad\\xf2\\xb1\\x8e\\x3a\\xea\\x8b\\\r\n\\xd5\\x65\\x9c\\x4a\\xcc\\x79\\x8d\\x18\\xb8\\xdf\\xa4\\x9f\\x17\\xfd\\x78\\x93\\\r\n\\xd9\\xfa\\x3e\\x48\\x63\\x18\\x19\\x25\\xf8\\x91\\xef\\x9e\\x36\\x1b\\xfa\\x59\\\r\n\\xbf\\x2c\\x7f\\xe9\\x5a\\x07\\x55\\x64\\xce\\x03\\x6e\\x2f\\x75\\xf5\\xf9\\x7a\\\r\n\\x7e\\x78\\x6f\\x64\\x68\\x2d\\x70\\x67\\x1a\\x76\\x6e\\xc7\\xe6\\x0f\\xeb\\xc6\\\r\n\\x27\\xf6\\x45\\xb9\\xc8\\x63\\x9d\\x5a\\x22\\xdf\\x6b\\x99\\x7a\\xe3\\x51\\xf2\\\r\n\\xd1\\xbe\\x7d\\x36\\x3d\\x8e\\x38\\x87\\x02\\xf7\\x42\\x08\\x9d\\x39\\x6c\\xb7\\\r\n\\x39\\xb4\\x27\\x7d\\x55\\x45\\xef\\x98\\x5b\\xd0\\x77\\x3a\\xe3\\x87\\xf0\\xd7\\\r\n\\x78\\xea\\x40\\x89\\x67\\x6c\\x8b\\xcb\\x28\\x18\\x2a\\x9c\\xc0\\xb1\\x3a\\x0f\\\r\n\\xb9\\x71\\xe2\\xf6\\xdf\\x11\\xf0\\xce\\x4b\\xc4\\x64\\x2d\\x27\\x2c\\x2b\\xa0\\\r\n\\xcc\\xc4\\x21\\x1a\\x5b\\x5f\\xbd\\x7f\\xa5\\xb1\\x2d\\x2d\\x32\\xad\\x96\\x25\\\r\n\\x55\\x99\\x84\\xe7\\xc5\\xcf\\xc4\\x3d\\x2c\\xd9\\xbc\\x5b\\x4c\\x24\\xfc\\xb9\\\r\n\\x03\\x29\\x19\\x45\\xad\\xdc\\x1c\\xa7\\x6f\\xcb\\xd0\\xe2\\xae\\x3a\\x7e\\x3f\\\r\n\\x9e\\xa1\\x63\\x4f\\xdb\\x14\\xb1\\x82\\x72\\xe5\\x55\\xe2\\x14\\xe0\\x0c\\xf9\\\r\n\\x7c\\xd6\\x42\\xa0\\x03\\xa1\\x32\\x0e\\xc5\\xb1\\x5b\\x4d\\x4d\\x5b\\x13\\x3f\\\r\n\\x2d\\x22\\x93\\x26\\x44\\x05\\x6e\\x62\\x20\\xf5\\x9c\\xaa\\x56\\xed\\xa5\\xb5\\\r\n\\x3a\\x6b\\xf3\\xc5\\x24\\x33\\x53\\xd0\\x66\\xe9\\x50\\x24\\x68\\xd2\\x45\\x37\\\r\n\\xca\\xbf\\xc7\\x97\\x6c\\xff\\x00\\xc3\\xfc\\x3e\\x6f\\x6c\\x57\\x67\\xcd\\x90\\\r\n\\xd4\\x09\\xd5\\x2c\\x41\\xd6\\xda\\xae\\xbd\\x2d\\xdc\\x6d\\xb7\\xf7\\xc2\\xc2\\\r\n\\x48\\x52\\x63\\xd0\\x1d\\x48\\x16\\xdf\\x4d\\x7a\\x6d\\xbf\\x7f\\xa9\\x3d\\xf0\\\r\n\\x27\\x92\\x22\\x0a\\x93\\x70\\x40\\x2b\\xad\\xb2\\xeb\\xa7\\x75\\x3b\\x78\\xb7\\\r\n\\xe1\\xac\\x2c\\xf1\\xb1\\x9a\\x38\\x56\\xb2\\x8e\\x5b\\xc7\\x3d\\x15\\xc7\\x32\\\r\n\\x2c\\xe7\\x5e\\x51\\xdc\\xc6\\xe7\\x50\\x86\\xe0\\x31\\xb2\\xe5\\xb8\\x18\\x15\\\r\n\\xf3\\xc1\\x0d\\x6f\\x0e\\xa5\\x69\\x12\\x92\\x6a\\xb7\\x76\\xa6\\xb5\\xb3\\x5b\\\r\n\\x58\\xd5\\xb3\\x5c\\xe6\\x41\\xa6\\xfa\\x11\\x8f\\x66\\x29\\xea\\x2a\\x6b\\xe1\\\r\n\\xb4\\x4d\\x20\\xfb\\x3b\\x86\\x5d\\x6c\\x7b\\x6d\\x7d\\xb5\\xc4\\x74\\xb1\\xc1\\\r\n\\xc3\\x21\\x16\\x48\\xc8\\x88\\x68\\x6c\\x08\\xb8\\xfd\\x6f\\xaf\\x9c\\x72\\x1d\\\r\n\\x2b\\x12\\x67\\x60\\x21\\xb9\\x23\\xd7\\xfe\\x31\\x57\\x3d\\x1d\\x65\\x3b\\xc5\\\r\n\\xae\\xdf\\x21\\x9a\\xd6\\xef\\x6e\\x90\\x77\\xbe\\x3d\\xaa\\xe1\\xdc\\x8e\\x21\\\r\n\\x2c\\xc9\\xd4\\x0d\\x9c\\x8b\\x9c\\xaf\\xad\\x86\\x4f\\x04\\x0f\\x88\\x6e\\x41\\\r\n\\xd3\\x71\\x8a\\x7a\\x87\\xac\\xa5\\x12\\x42\\xdf\\xe3\\x29\\x23\\x01\\xd4\\xdc\\\r\n\\x34\\xd4\\xcb\\xa7\\x55\\xaf\\x99\\xe2\\xbe\\xe6\\xe7\\x97\\xea\\x9a\\xd4\\x4a\\\r\n\\xed\\x54\\x2a\\x4a\\x5b\\x21\\x42\\xea\\x5a\\xd7\\xe6\\x74\\x1c\\xa1\\x88\\xb8\\\r\n\\x20\\x5c\\xdb\\x5d\\x3d\\x71\\x1a\\x4f\\x2d\\x5a\\xf2\\xa9\\x64\\x9c\\xbd\\xee\\\r\n\\x22\\x52\\x59\\x4f\\x67\\xb8\\xbd\\xb2\\xdf\\xbd\\xff\\x00\\x23\\x8a\\x3e\\x0b\\\r\n\\x51\\x15\\x43\\x49\\x5b\\x25\\x34\\x13\\xce\\x96\\x8e\\x9d\\xa7\\x53\\x54\\x1c\\\r\n\\x10\\x43\\x14\\x06\\xd6\\xb0\\x37\\x19\\xb6\\x6b\\x1d\\x71\\xc4\\x04\\x82\\xa0\\\r\n\\x25\\x4c\\x5e\\xee\\xd6\\xc8\\x1c\\x6a\\xad\\x63\\x70\\xc0\\x1d\\x45\\xbb\\x6e\\\r\n\\x2d\\x6b\\x5f\\x7c\\x4d\\x30\\x6f\\x66\\x69\\x1d\\xe3\\x56\\x34\\x55\\x55\\x14\\\r\n\\xa9\\x31\\x01\\xb9\\x1c\\xd5\\xe7\\x44\\x4d\\xad\\xf6\\x72\\x06\\xe5\\xb6\\xb6\\\r\n\\x37\\x17\\xd8\\xe2\\x78\\x7d\\xde\\xaa\\x65\\x88\\x36\\x5e\\x5c\\x55\\xb0\\xeb\\\r\n\\xb2\\xb2\\xab\\xde\\xe7\\x53\\x6b\\xde\\xff\\x00\\xe5\\xbe\\x98\\xe2\\xb2\\x34\\\r\n\\xb4\\x9c\\xd2\\xed\\x9a\\xf9\\x5d\\x5a\\xe7\\x32\\x48\\xe0\\x8b\\x6b\\xb0\\x61\\\r\n\\x7f\\x98\\xf9\\x5f\\x83\\x4e\\xaf\\x4d\\x96\\xca\\x58\\xc6\\x91\\x5c\\xef\\x61\\\r\n\\xbe\\x5f\\x18\\x91\\x63\\xa4\\xad\\xaa\\x59\\x16\\x3e\\x5d\\x44\\x49\\x29\\xcc\\\r\n\\x3b\\xa9\\xb3\\x10\\x7b\\x37\\xcb\\x5f\\x9e\\x2a\\x79\\xb2\\xc3\\x34\\xf0\\x99\\\r\n\\xa4\\x82\\x07\\x41\\x20\\x2d\\x7e\\x57\\x33\\x36\\x4b\\x8d\\x6e\\x84\\x82\\x2f\\\r\n\\xd8\\x8b\\x1d\\xc6\\x33\\x16\\xb6\\x56\\xff\\x00\\x8d\\xfb\\xf8\\xef\\x8a\\x1e\\\r\n\\x2b\\x55\\xc3\\xcb\\x3d\\x1c\\xf2\\xc4\\xd2\\xa3\\xc5\\x3e\\x57\\xe9\\x96\\x06\\\r\n\\xdd\\x19\\x3e\\xf2\\xb5\\xb5\\x52\\x0f\\x90\\x06\\xf8\\x3c\\x42\\x59\\xdf\\x34\\\r\n\\xe7\\x32\\xad\\x94\\x2e\\x55\\xd3\\xa9\\x9b\\xa6\\xc3\\x4b\\x5f\\xcf\\xf5\\xc7\\\r\n\\x00\\x14\\xbc\\x4a\\x82\\x97\\x9b\\xfe\\x2f\\x87\\x3f\\x0d\\x14\\xd5\\x94\\xcc\\\r\n\\x18\\xa0\\x98\\x3d\\xd6\\xe1\\x6d\\x96\\x74\\x2b\\xa3\\x02\\x87\\x2b\\x7c\\x56\\\r\n\\xb6\\x21\\xf6\\x4f\\x86\\xd3\\x4b\\x50\\x54\\x98\\xe9\\xaa\\xa3\\x65\\xf7\\x66\\\r\n\\x9b\\x9b\\x4c\\x58\\x3a\\xbc\\x44\\xf3\\xd7\\x3c\\x12\\x82\\x06\\xaa\\x5b\\xa4\\\r\n\\xe8\\x6c\\x6d\\x87\\xf6\\x1e\\xad\\x99\\x9b\\x25\\x2f\\x53\\x13\\xa3\\xc8\\x46\\\r\n\\xa6\\xfa\\x1d\\x6e\\x3c\\x6a\\x7e\\x78\\xa8\\xad\\x92\\x64\\x02\\x24\\x54\\x89\\\r\n\\x94\\x31\\x93\\xe2\\x36\\x7d\\x02\\x5b\\x28\\xb3\\xfa\\x0c\\xc7\\xe4\\x2e\\x45\\\r\n\\x35\\x33\\xc6\\xcd\\x29\\xe6\\x46\\xb3\\x39\\x0f\\x24\\xb7\\x32\\x15\\x23\\x40\\\r\n\\x3b\\xc7\\x1e\\xbb\\x2e\\xe0\\x9b\\xdf\\x12\\x85\\x89\\xca\\x35\\xc8\\x20\\x94\\\r\n\\x22\\xcd\\xae\\xcb\\x7d\\x6f\\xb6\\x9a\\xe0\\x44\\x92\\xbe\\x53\\xd1\\x27\\xe1\\\r\n\\x9b\\xe5\\xb5\\xf1\\xfb\\x3a\\xae\\x36\\x19\\x7a\\xc6\\x5d\\x14\\xdb\\xf1\\xbf\\\r\n\\xcb\\x4d\\x7f\\x1c\\x2d\\x1a\\x4f\\x0b\\x45\\x54\\x8e\\x8c\\x18\\x35\\xae\\x06\\\r\n\\x7b\\x66\\x36\\xef\\x7d\\xef\\xdf\\xce\\x9d\\xe0\\xf7\\x7a\\x0c\\xac\\x94\\xca\\\r\n\\xd1\\x8c\\xca\\xcc\\xf7\\x69\\x02\\x9e\\xca\\xda\\x65\\xfa\\x0f\\x5c\\x2f\\x12\\\r\n\\x4a\\x27\\x4e\\x5c\\x30\\xc4\\x1c\\x67\\xce\\x55\\x89\\x5d\\x2e\\xbd\\xed\\x9b\\\r\n\\xd2\\xdb\\xe3\\xd9\\xf9\\x64\\xe2\\x75\\x32\\x54\\x3b\\x16\\x8a\\x3f\\xb3\\x8e\\\r\n\\xca\\x6c\\xd2\\x31\\xd4\\xff\\x00\\x94\\x28\\xb1\\xf4\\xf1\\xdf\\x1c\\x73\\x88\\\r\n\\xf0\\xaa\\x28\\x04\\x15\\x73\\xcb\\x4d\\x1c\\x91\\xb4\\x48\\xf1\\x47\\xce\\x79\\\r\n\\x26\\xb7\\xc5\\x92\\xe8\\x16\\x3e\\xc7\\x31\\xd1\\x75\\x17\\xd0\\x62\\xbe\\x68\\\r\n\\x43\\x5a\\x07\\xcc\\x8d\\xac\\x8d\\x96\\xc0\\x81\\xdc\\x79\\xef\\x7f\\x4c\\x70\\\r\n\\x97\\x89\\xd8\\xe4\\x6e\\xab\\x6a\\x36\\xd8\\xe9\\x61\\xeb\\xfd\\xf1\\x2a\\xa9\\\r\n\\x5c\\xae\\x2e\\x8d\\xd2\\xc0\\xf8\\x3a\\x62\\x5e\\x05\\xc3\\x9a\\x44\\x95\\xe4\\\r\n\\x71\\x04\\x4b\\x63\\x19\\xfb\\xcc\\xa6\\xf6\\xcc\\x3a\\x88\\xd7\\x7d\\x3c\\x6b\\\r\n\\x83\\xc5\\x20\\xe1\\xc5\\x61\\xa3\\xa5\\x41\\x98\\x59\\x0c\\x80\\xb0\\x66\\xbd\\\r\n\\x8e\\x9e\\x6d\\xae\\xb7\\xf5\\x1a\\x62\\x59\\x25\\x9c\\x97\\x98\\xe6\\x62\\x35\\\r\n\\xf0\\x3b\\xd8\\x7a\\x0d\\x87\\xe1\\xdb\\x1e\\xee\\xad\\x23\\x95\\x6c\\x84\\x66\\\r\n\\x6b\\xd8\\x5b\\x43\\xfc\\xb5\\xc4\\x33\\xd1\\x40\\x89\\xcd\\x25\\xdb\\x31\\x67\\\r\n\\x1a\\x6e\\x07\\xc5\\xda\\xc3\\xd7\\x5c\\x52\\xd7\\xd2\\x4f\\x57\\x2d\\x24\\x0c\\\r\n\\x00\\x9e\\x32\\x22\\x1a\\x9e\\xb0\\x2e\\xba\\xec\\x2e\\x35\\xf5\\xfe\\x74\\x12\\\r\n\\x86\\x8e\\xc4\\x7c\\x24\\xf6\\xf1\\xda\\xc7\\x6f\\x5f\\x1d\\xf0\\x24\\xa6\\xb0\\\r\n\\xbc\\x81\\x4f\\x4d\\xd6\\xe2\\xd6\\x3e\\xa3\\x40\\xc3\\xb0\\xbe\\xbe\\x98\\x92\\\r\n\\x08\\x27\\x56\\x68\\xc9\\xdc\\x91\\x66\\x53\\x60\\x01\\xde\\xd6\\x37\\x3d\\xbf\\\r\n\\x0c\\x71\\xbe\\x16\\xc1\\xf9\\xe5\\x33\\xae\\x99\\xaf\\x73\\x97\\x41\\xd5\\xae\\\r\n\\xc3\\x4d\\x40\\xd0\\x76\\xb7\\x7a\\x4a\\x86\\xa6\\x69\\x39\\x44\\x47\\xad\\xf4\\\r\n\\xee\\x0a\\xd8\\x69\\xf7\\x80\\x37\\xc1\\xa9\\xcc\\xd9\\x98\\xf5\\x1e\\xfa\\x0f\\\r\n\\xec\\x35\\xc2\\xcb\\xcd\\x85\\xc1\\xf8\\xa0\\x39\\x86\\xb7\\xcd\\x13\\xfc\\x5a\\\r\n\\x6b\\xf0\\xbd\\xbb\\x0d\\x09\\xbe\\x27\\xbc\\x71\\x07\\xd3\\xa9\\xb2\\xa8\\xf5\\\r\n\\x37\\xb5\\xc6\\x9f\\xed\\x8a\\x5a\\xde\\x4c\\xca\\xb1\\xca\\x79\\xcb\\xd7\\x1b\\\r\n\\xa3\\x1e\\x89\\x37\\x19\\x7e\\x67\\x7f\\xc3\\x15\\x6d\\x27\\x19\\xa4\\x6e\\x2b\\\r\n\\x41\\x68\\x6b\\xe0\\x16\\xe2\\xd4\\xb1\\xa7\\xc6\\x0d\\xd4\\x57\\xc0\\xa2\\xfd\\\r\n\\x0d\\x7c\\xb5\\x4a\\x3e\\x16\\xea\\xb6\\x52\\x59\\xa9\\xf3\\x53\\x42\\xb1\\x4a\\\r\n\\x1a\\x45\\x03\\x30\\xbe\\xdc\\xd6\\x5d\\x72\\x8d\\xec\\xbd\\xbb\\x5f\\x13\\x43\\\r\n\\xd6\\x02\\xdc\\xbb\\x30\\xd0\\xa8\\xd6\\xf6\\xb0\\x0b\\x6f\\xbd\\xdb\\xcf\\x6c\\\r\n\\x55\\x53\\xf1\\x0e\\x1f\\x48\\x1a\\xb3\\x84\\xd6\\xd2\\x23\\x2e\\x45\\x9e\\x6a\\\r\n\\x49\\xe2\\x89\\xef\\x62\\x3a\\xa4\\x45\\x17\\xb1\\x5b\\x6b\\xf7\\x85\\x89\\xc5\\\r\n\\x45\\x34\\x53\\xc5\\xcf\\xa6\\x55\\xe6\\x08\\xc0\\x9a\\x21\\xdf\\xbe\\x74\\x03\\\r\n\\xbf\\x62\\x3f\\xe7\\x1c\\x29\\x92\\x2a\\xa5\\xcc\\x4f\\x57\\x49\\x43\\xeb\\xe5\\\r\n\\x7d\\x0d\\xb7\\x1a\\x1c\\x56\\x7b\\x33\\x53\\xc4\\xb8\\xa5\\xb8\\x6c\\x65\\xa4\\\r\n\\xa9\\xcc\\xe4\\x68\\xaa\\xcc\\xa0\\x06\\x1f\\x74\\x93\\x25\\xcf\\x8e\\xf9\\x8e\\\r\n\\x3d\\x8e\\xf6\\x7e\\x5e\\x0c\\x62\\xfd\\xa1\\x02\\x67\\xd2\\x45\\xf7\\x62\\x65\\\r\n\\x11\\x9c\\x9f\\xbb\\x66\\x91\\x43\\x00\\x09\\x04\\x5e\\xe2\\xd7\\xb1\\x3a\\xe0\\\r\n\\xd3\\xd4\\xd7\\xe6\\x7b\\x64\\x8d\\x49\\xd3\\x6d\\xbd\\x2f\\xdf\\xb7\\xf2\\xc7\\\r\n\\x14\\x8e\\x58\\xb9\\x96\\xbd\\x94\\xe9\\x98\\x9d\\x3e\\xa7\\x0f\\x58\\xea\\xb2\\\r\n\\x5a\\xf7\\x22\\xdf\\xf1\\xf5\\x18\\xe2\\x08\\x65\\x9b\\x9b\\x91\\x1c\\xa8\\x60\\\r\n\\x33\\xae\\x65\\x17\\x1d\\xfc\\xfa\\x5c\\xdb\\xd3\\x10\\x70\\xda\\xc8\\xea\\xc5\\\r\n\\x5a\\x84\\x8d\\x15\\xba\\xe4\\x9f\\x2c\\x31\\x95\\xdd\\xaf\\x95\\x6e\\xc3\\xb0\\\r\n\\xed\\x6b\\xde\\xd7\\xc7\\xb4\\x49\\xc3\\x65\\xe1\\xd3\\xc9\\x19\\x12\\x4e\\x85\\\r\n\\x22\\x8f\\xdd\\xef\\xca\\x8c\\xb3\\x0b\\x66\\x2d\\x72\\xea\\x2d\\xa1\\x00\\xda\\\r\n\\xe3\\x5c\\x53\\x57\\xf1\\x8a\\x48\\xf2\\x53\\xd5\\xcd\\x1c\\x7d\\x57\\x55\\x3d\\\r\n\\x26\\xfb\\xf6\\xbf\\xa0\\xd7\\xd3\\x02\\xb4\\xa3\\xb3\\xcc\\x1c\\xc8\\x7a\\xb3\\\r\n\\xdd\\xb4\\x73\\xbb\\x59\\x8e\\xa7\\x71\\x70\\x41\\xc5\\x2f\\xb4\\x51\\xcd\\x4e\\\r\n\\x21\\xab\\x88\\xf1\\x18\\xb2\\x80\\xca\\xe2\\xd2\\x25\\xc6\\x52\\xc1\\xf7\\x4b\\\r\n\\x7d\\xdd\\xf5\\xb7\\x72\\x31\\x4f\\x0c\\x15\\xde\\xce\\xd7\\xc3\\xc3\\x79\\x8f\\\r\n\\x69\\x28\\xaa\\x04\\x13\\xd9\\x25\\x88\\x5f\\x96\\xca\\xcc\\x4e\\x59\\x2f\\x1a\\\r\n\\x30\\x53\\xbb\\x5e\\xfa\\x9d\\xea\\xe6\\x94\\x4f\\x16\\x7c\\xc1\\xa2\\x51\\x48\\\r\n\\x6f\\xf1\\x64\\x42\\xcb\\x95\\x85\\xf7\\x5b\\x84\\xb0\\xd0\\x85\\x53\\xad\\xef\\\r\n\\x8e\\x29\\x18\\x10\\x8b\\x1c\\xeb\\x9c\\x0d\\x3f\\x84\\x9c\\xca\\x0f\\x8b\\xde\\\r\n\\xe3\\x70\\x77\\xc7\\x06\\x72\\xac\\xd0\\x49\\xd1\\xd2\\xd2\\xc1\\x23\\x7c\\x2c\\\r\n\\x9a\\x03\\xae\\x9b\\x5b\\xf2\\xc5\\x54\\xef\\xc4\\x6a\\xc6\\x7d\\x20\\x89\\xc4\\\r\n\\x6c\\xc9\\xa1\\xca\\xc4\\xea\\x7b\\xdd\\xb4\\xde\\xf6\\xbd\\xad\\x8a\\x48\\x96\\\r\n\\x9c\\xaa\\xc6\\x15\\x72\\x82\\xd9\\x58\\x7e\\xf6\\xd7\\xbe\\x6f\\xe3\\x3b\\x5e\\\r\n\\xf7\\x24\\xdb\\x4c\\x71\\x4e\\x1f\\x92\\xa1\\xa4\\x88\\x7d\\x94\\xcc\\x5f\\x28\\\r\n\\xb5\\xd1\\x9b\\x56\\x02\\xc1\\x41\\x5e\\xe2\\xdd\\xae\\x2d\\x61\\x83\\xe9\\xa0\\\r\n\\x07\\x5c\\xc6\\xdb\\x68\\x6f\\xa6\\xe0\\x61\\x0e\\xc2\\xca\\xda\\x92\\x4d\\xcf\\\r\n\\xa6\\xff\\x00\\xaf\\xcf\\x1c\\x2b\\x8e\\x57\\x70\\xc4\\x95\\x28\\xa7\\x64\\x49\\\r\n\\x2c\\x65\\x43\\xaa\\x5d\\x49\\x0a\\x4f\\x6c\\xdf\\x9d\\xbb\\xe2\\xb5\\xe7\\xe2\\\r\n\\x45\\x6a\\xf9\\xf5\\x4d\\x16\\xa0\\x85\\x62\\xc6\\x19\\x0f\\x53\\x2a\\xdf\\xf8\\\r\n\\xdf\\xad\\x58\\xdc\\x91\\xa1\\xda\\xc3\\xff\\x00\\x50\\xd4\\xf7\\xbd\\xfb\\xe6\\\r\n\\x94\\xe6\\xbf\\xf9\\xba\\xb7\\xf3\\xeb\\x89\\xeb\\x65\\x67\\x8f\\x92\\xa6\\x18\\\r\n\\xa0\\x19\\x22\\x5b\\x5b\\x2a\\xfa\\x91\\x7b\\x93\\xa7\\x8d\\x86\\x23\\xad\\xaf\\\r\n\\x95\\x72\\x8f\\xb5\\x27\\xb6\\x5b\\xe9\\x6d\\xf4\\xbf\\xf7\\xc6\\xaf\\x77\\x65\\\r\n\\xb5\\x98\\xdb\\xf2\\x3f\\xaf\\xcf\\x12\\x31\\xe9\\x76\\x60\\xa7\\x7b\\xb3\\x65\\\r\n\\xdc\\x0b\\x5b\\xf4\\x30\\x38\\xad\\x50\\x29\\xf0\\x48\\x4f\\xc2\\xd6\\x1d\\x56\\\r\n\\xd3\\x7b\\x90\\x58\\xef\\x8a\\xbe\\x21\\x33\\x70\\xfa\\x89\\x80\\x58\\xa6\\x8b\\\r\n\\xa9\\x17\\x2e\\xb9\\x46\\xe7\\x50\\xcb\\xe7\\xe9\\x7c\\x70\\xff\\x00\\x68\\x44\\\r\n\\x96\\x8a\\xa2\\x00\\x59\\x88\\x50\\x53\\xe1\\x62\\x74\\xd4\\x36\\x83\\xb1\\xd3\\\r\n\\x11\\x4f\\x24\\x93\\xb0\\x9a\\x07\\x90\\x48\\xc4\\x46\\x85\\x49\\x2b\\x9a\\xc0\\\r\n\\x00\\x3c\\x6c\\x00\\x1b\\xfd\\x71\\xc3\\xb8\\x75\\x37\\x0e\\xe1\\xf1\\xf2\\xa3\\\r\n\\x28\\xe6\\x15\\x77\\x8e\\xe0\\x5a\\xa2\\x50\\xaf\\x25\\xec\\x3e\\xe9\\xd1\\x06\\\r\n\\x9a\\x78\\xd6\\xfe\\xd4\\x65\\xa9\\xaa\\x70\\x65\\x82\\x64\\x8c\\x28\\xb4\\x72\\\r\n\\x09\\x32\\x16\\xbe\\x6b\\xd8\\x58\\x30\\x37\\xbe\\x52\\x7b\\x76\\xc7\\x0f\\x48\\\r\n\\x51\\xa4\\x49\\x6c\\xca\\x2e\\x61\\x66\\xfe\\x1b\\xfa\\xfc\\xff\\x00\\x96\\x28\\\r\n\\x29\\x84\\x4e\\xce\\xba\\x82\\x6e\\xbf\\x8e\\xda\\x76\\xdf\\x16\\x8f\\xa9\\xa6\\\r\n\\x75\\x08\\x88\\xcf\\x97\\x30\\x56\\x7c\\xbd\\x96\\xfd\\xf1\\x5f\\x37\\x4c\\x75\\\r\n\\x29\\x9b\\xdd\\xa4\\x39\\x08\\xd0\\xf2\\x8a\\xed\\xa7\\x7b\\x8d\\xff\\x00\\xe3\\\r\n\\x05\\x1e\\xb2\\x51\\x2c\\x20\\xb8\\x84\\xae\\x4b\\x2d\\xae\\x7c\\xeb\\xbe\\x1e\\\r\n\\x29\\x42\\xb0\\xb6\\x56\\xcb\\xdf\\x51\\x7d\\x7b\\xde\\xc0\\xed\\xf4\\xc5\\x54\\\r\n\\x5b\\x87\\xac\\xcb\\x35\\xff\\x00\\x75\\x1d\\xc8\\xec\\x6f\\x7d\\x12\\xff\\x00\\\r\n\\x23\\x6f\\xa5\\xae\\xc3\\x88\\x2b\\x56\\xc7\\x22\\xce\\xca\\xc3\\xe2\\x64\\x63\\\r\n\\x65\\x06\\xf7\\xbf\\xc3\\xaa\\x6f\\xdb\\xf0\\xc7\\x0e\\xe2\\x70\\xf0\\xe3\\x45\\\r\n\\xca\\x5f\\x78\\x99\\x12\\x9e\\x47\\x55\\x00\\xb8\\x36\\x17\\x2c\\xc0\\x69\\x7b\\\r\n\\xe5\\x23\\x51\\xa8\\xdf\\x13\\x08\\xe7\\x99\\xfd\\xd6\\x4b\\x53\\xd4\\x2c\\x73\\\r\n\\x77\\xfb\\x36\\x91\\x33\\x3c\\x2f\\xb7\\xc0\\xda\\x77\\xbe\\xb7\\xc4\\x14\\x2d\\\r\n\\xb2\\x95\\x6b\\x76\\x62\\x8b\\xb7\\xf0\\xed\\x73\\xe9\\xbe\\x25\\xa5\\x9e\\x21\\\r\n\\x7c\\xad\\x1d\\xfe\\xf2\\xe8\\x74\\xd4\\x0c\\xcb\\xeb\\xda\\xf8\\x49\\x9e\\xab\\\r\n\\x35\\x35\\x58\\xcc\\xce\\x32\\xe7\\x3b\\x78\\x51\\xa8\\x17\\xd7\\x73\\xf8\\x9c\\\r\n\\x57\\x50\\xbd\\x24\\xf3\\x29\\x5d\\xad\\xd4\\x7f\\x86\\xf6\\x5d\\xbf\\x0f\\xfc\\\r\n\\x74\\xc0\\xed\\x61\\x73\\xe2\\xd7\\x16\\xfc\\x6f\\x7e\\xf8\\xa5\\x86\\xa0\\xcf\\\r\n\\x1b\\x25\\x3c\\xcf\\x13\\xab\\xc3\\x31\\x08\\x6c\\x12\\x55\\xe9\\x63\\x7d\\x32\\\r\n\\x86\\xb1\\xb8\\x3f\\x96\\x24\\xf6\\x6f\\x8d\\x55\\x47\\x9f\\x96\\x13\\x2e\\x7c\\\r\n\\xb7\\x9d\\x07\\x47\\x6b\\xa1\\xfb\\xc7\\xb1\\xcd\\x7b\\x10\\x3a\\x75\\xc4\\x3c\\\r\n\\x2e\\xbe\\x25\\x64\\x34\\x55\\x66\\x40\\xc0\\x12\\xbc\\xb4\\x5c\\xca\\x77\\xcc\\\r\n\\xe7\\x31\\x16\\xd4\\x1d\\x01\\x3b\\x69\\x62\\x78\\x7f\\x14\\xac\\xe0\\xb3\\x7b\\\r\n\\xc4\\xbc\\x36\\x78\\xec\\x48\\x2c\\xd6\\xc8\\xf1\\x9b\\xf3\\x11\\xfa\\x59\\x19\\\r\n\\x18\\x1b\\x1d\\x75\\x1a\\xde\\xfa\\xe3\\x8b\\x54\\xd2\\x3a\\x51\\xf1\\x0a\\x65\\\r\n\\x71\\x45\\x5e\\xf2\\x2a\\x5a\\xc4\\x52\\x54\\x46\\xb7\\x9a\\x92\\x76\\xec\\xd1\\\r\n\\x6a\\x50\\xea\\x24\\x89\\x91\\xd4\\xb5\\xc9\\x1f\\xf4\\xdd\\x38\\x5d\\x6f\\xb4\\\r\n\\x14\\xc7\\x88\\xc4\\x2a\\x04\\x0a\\x6a\\xe9\\x79\\x53\\xc1\\x0f\\x36\\xb6\\x9d\\\r\n\\xa3\\x9a\\x18\\xe5\\x96\\x7e\\x80\\xbc\\xb0\\xed\\x93\\x79\\x1d\\x55\\x35\\x5c\\\r\n\\xd8\\xe2\\xd5\\x33\\xd5\\x53\\x55\\x09\\x61\\x92\\xa2\\x88\\x21\\x13\\x51\\xd5\\\r\n\\x9a\\x29\\xa9\\xec\\xd1\\xa8\\x8e\\x01\\xee\\x53\\x96\\xaa\\x91\\x43\\x67\\x0d\\\r\n\\x37\\x25\\x23\\xb3\\x8e\\x5a\\x2d\\x97\\x1c\\x4f\\x83\\x70\\x97\\xa5\\x64\\x45\\\r\n\\x8e\\x09\\xa1\\xea\\x56\\x89\\x62\\x88\\xc6\\x03\\x0b\\xa0\\xe4\\x15\\x24\\x30\\\r\n\\xfb\\xac\\xce\\x7b\\xe8\\x71\\x2c\\x49\\x1d\\x46\\x6a\\x68\\xf5\\x1f\\x7e\\x4e\\\r\n\\xb6\\x6b\\x68\\x75\\xbe\\x97\\xdc\\xee\\x47\\x61\\xdf\\x1c\\x2f\\x8c\\x25\\x25\\\r\n\\x64\\xb1\\x3d\\xfd\\xe2\\x5c\\xeb\\x09\\x28\\xcd\\xf6\\x6e\\x14\\xe5\\x57\\xcb\\\r\n\\x90\\x93\\xf0\\xb2\\x3e\\x84\\x35\\xbb\\xdd\\x78\\x15\\x53\\x4f\\x46\\x3e\\xc2\\\r\n\\x47\\x79\\x72\\x0b\\x2e\\xe0\\x26\\xb9\\xd9\\x86\\x62\\x35\\xba\\xaa\\xe8\\x81\\\r\n\\x74\\x00\\x62\\x9b\\x22\\x02\\x92\\x29\\x04\\x82\\x7d\\x2d\\xb0\\xda\\xdf\\x2c\\\r\n\\x71\\xea\\x08\\xda\\x17\\x61\\xb8\\xdb\\x4b\\xfe\\x38\\xaf\\xa9\\x4a\\x79\\xb9\\\r\n\\x6c\\x54\\x17\\x3b\\x31\\xb6\\xb7\\xfd\\x1c\\x0e\\x5d\\x8b\\x65\\xce\\x7d\\x40\\\r\n\\xb0\\xfa\\x7c\\xff\\x00\\xbe\\x38\\x95\\x20\\xa9\\x8b\\x33\\x1b\\xdb\\xee\\xfd\\\r\n\\xd1\\xfe\\x6b\\x69\\xda\\xd7\\xdb\\x6c\\x2d\\x0c\\x6f\\x23\\xd1\\xca\\xa0\\x36\\\r\n\\x52\\x03\\x8d\\x57\\x7e\\x92\\x3e\\x46\\xdf\\x21\\x7e\\xfa\\x61\\xb8\\x51\\x8c\\\r\n\\x18\\xdd\\x40\\xb5\\xcf\\x7d\\x7d\\x41\\xb7\\x7c\\x71\\x4a\\x65\\x8d\\x8f\\x9d\\\r\n\\x7f\\x1f\\xd6\\xf8\\xa5\\xce\\x27\\x55\\x4c\\xec\\x09\\x19\\xd6\\x32\\x54\\x95\\\r\n\\xee\\xb9\\xb5\\xca\\x3f\\x88\\xed\\xa1\\xbe\\x98\\xe0\\x1c\\x4e\\x9f\\x86\\xc7\\\r\n\\x57\\x05\\x45\\x44\\x84\\xcb\\x0c\\x0a\\x03\\x0e\\x72\\x2c\\x91\\xcc\\xb2\\x84\\\r\n\\x0c\\xbd\\x5c\\xbb\\x66\\x1a\\xfc\\x26\\xe4\\x92\\x36\\xe3\\x91\\x50\\xd6\\x57\\\r\n\\x55\\xcf\\x47\\x53\\x1a\\x40\\xf3\\xb3\\x47\\x99\\x5c\\x74\\x14\\x5c\\xda\\x64\\\r\n\\x39\\x4f\\x32\\xe0\\x0f\\x3b\\xdb\\x12\\x00\\x38\\x73\\x80\\x79\\x88\\xd2\\x43\\\r\n\\x66\\xbe\\xaa\\xc0\\x8b\\x8b\\xeb\\xbd\\xb4\\x1e\\x3c\\x77\\x92\\xa2\\x27\\x85\\\r\n\\xd6\\x39\\x18\\x4b\\x46\\xf6\\x0c\\x7a\\x41\\x5b\\x9b\\xa6\\xbb\\x8d\\x36\\xf3\\\r\n\\xdb\\xcc\\xd5\\x50\\xd3\\xc0\\x8d\\x11\\x0c\\x67\\x50\\x42\\x0d\\x18\\x58\\xf5\\\r\n\\x33\\x36\\xc3\\x55\\xf3\\xad\\xb7\\xc3\\xf1\\x7a\\xea\\x85\\x09\\x99\\x50\\x29\\\r\n\\xb8\\xe5\\xe5\\xcd\\xa0\\xb8\\xea\\x1a\\x8b\\xec\\x48\\xb6\\x3d\\x8c\\xa0\\x1c\\\r\n\\x7b\\x8a\\x70\\xd9\\xab\\x29\\x79\\x7c\\x3b\\x87\\xb2\\x54\\x71\\x19\\x25\\x8f\\\r\n\\xec\\xd9\\x23\\x05\\x80\\xbc\\x99\\x51\\x84\\xc5\\x72\\xe9\\x75\\xb5\\xef\\xb6\\\r\n\\x3d\\xb6\\xe0\\x5e\\xcc\\xc6\\xf5\\x35\\xbc\\x32\\xa8\\x47\\xcd\\xa9\\x9a\\x45\\\r\n\\x89\\x15\\x7d\\xce\\x35\\xf8\\x96\\x18\\x8a\\x33\\x30\\x2b\\xf0\\xe5\\x25\\x86\\\r\n\\xc0\\x58\\x6e\\x29\\xa4\\xe5\\x19\\xe1\\x0c\\xf1\\x46\\x41\\x73\\x6f\\x84\\x36\\\r\n\\xf7\\x07\\xf0\\xb0\\xbd\\xb4\\x3d\\xc1\\x34\\xae\\xb1\\x7c\\x4a\\x26\\x5b\\x80\\\r\n\\x62\\x6d\\x01\\x70\\x36\\x36\\x1d\\x59\\x73\\x5c\\x8e\\xf6\\xd7\\xce\\x21\\xab\\\r\n\\xa3\\xa5\\x84\\xa4\\x8b\\x2c\\xb2\\xd5\\xb8\\x5a\\x8d\\x02\\xc7\\x4f\\x18\\xea\\\r\n\\x0d\\x1d\\xb3\\x16\\x99\\x5b\\x52\\xc4\\xa8\\x55\\xba\\x80\\x73\\x60\\xf0\\xc9\\\r\n\\x49\\x25\\x41\\x65\\x24\\x95\\x61\\x22\\x80\\xc0\\xec\\xc0\\x15\\xbd\\x88\\xd7\\\r\n\\x5c\\x2f\\x0e\\x83\\x2b\\x9c\\x8b\\xd2\\xda\\x02\\x37\\xb5\\xff\\x00\\xdf\\xf0\\\r\n\\xc2\\xc3\\x92\\x40\\xf0\\x9e\\x59\\x1a\\x74\\xe9\\xbe\\x86\\xfa\\x77\\xc4\\x74\\\r\n\\xa8\\x5d\\x90\\x38\\x66\\x21\\x8d\\x88\\xcc\\x33\\xef\\xad\\xad\\xfd\\x30\\xdc\\\r\n\\x3e\\x28\\x3e\\xd5\\x11\\x65\\x7b\\x0c\\xe1\\xc5\\xef\\xaf\\x56\\x5c\\xc2\\xc3\\\r\n\\x73\\x6f\\x95\\xb4\\x18\\xaf\\x14\\x4a\\xb1\\xac\\x48\\x91\\xcf\\x29\\xb7\\x48\\\r\n\\x01\\x17\\xcf\\x31\\x07\\xde\\x26\\xf6\\x61\\xaf\\xd7\\x11\\xd4\\x4f\\x4e\\x5a\\\r\n\\x96\\xa4\\x01\\x19\\x5e\\x5b\\x67\\x51\\x90\\xe6\\xba\\x9c\\xae\\x57\\x51\\x94\\\r\n\\xdd\\x7d\\x77\\xf1\\x8a\\xbe\\x04\\xd4\\xb1\\x54\\x55\\xc1\\x3c\\x7c\\x98\\x9e\\\r\n\\x39\\x23\\x8c\\xc9\\x69\\xca\\xb9\\x22\\xe9\\xe4\\x44\\xda\\x1b\\x0d\\xac\\x6c\\\r\n\\x2f\\x6c\\x70\\xda\\xda\\x6a\\x7a\\x4a\\x5e\\x35\\xc5\\x46\\x4a\\x7a\\x78\\x8e\\\r\n\\x44\\xb0\\x2d\\x59\\x59\\x7c\\x91\\xc3\\x1f\\x76\\xd6\\xee\\xec\\x74\\x00\\x5c\\\r\n\\xee\\x31\\x0f\\xb7\\xb5\\xfc\\x72\\x2a\\x9a\\x5a\\x3e\\x12\\xd1\\xaa\\xc1\\x29\\\r\n\\x13\\x2c\\xa6\\x47\\x0d\\x6f\\x89\\xc0\\x5d\\x16\\xc7\\xe4\\x2d\\xb9\\x18\\x9b\\\r\n\\x88\\xc8\\xb5\\x8a\\xae\\xfd\\x0a\\xdc\\xa9\\x87\\x67\\x62\\x72\\xb1\\x6f\\xc7\\\r\n\\x4f\\x1b\\xf8\\x38\\xa6\\xe1\\xb3\\xd6\\x13\\xca\\xcd\\x61\\xae\\x63\\x7c\\x8a\\\r\n\\xbe\\x59\\xbb\\x8b\\x6b\\x8a\\x68\\x52\\x04\\x11\\xab\\xe7\\xcb\\x7b\\xb5\\xb4\\\r\n\\x37\\xf1\\xe9\\xa6\\x38\\xdc\\xff\\x00\\x0c\\x2a\\x6d\\x25\\xf3\\x8b\\xf8\\x1d\\\r\n\\xff\\x00\\x3c\\x70\\xca\\xc8\\x9a\\x8e\\x6a\\x5a\\xb6\\x0f\\x26\\xb2\\xe4\\xdb\\\r\n\\x36\\x50\\x7e\\x06\\x3b\\xe6\\xb5\\xc8\\xef\\xfc\\xa6\\xe3\\x4f\\x02\\xa4\\x14\\\r\n\\x94\\xf1\\x43\\x4e\\xb7\\xb8\\x50\\x0b\\x16\\xee\\x73\\x9d\\x9b\\xf2\\xc0\\xa8\\\r\n\\xa8\\x99\\x66\\x94\\xc8\\x4e\\x53\\xa8\\xbd\\xc8\\xb8\\xc4\\x28\\xa1\\x39\\x8e\\\r\n\\xb9\\x9e\\x43\\x9b\\x35\\xae\\x77\\x36\\x18\\xe2\\xf9\\xe7\\xca\\x4d\\x40\\xa3\\\r\n\\xa5\\x40\\xc2\\x40\\x32\\xf3\\x27\\x3f\\xc2\\x80\\x65\\x6d\\xb4\\x24\\x90\\x36\\\r\n\\x18\\xa3\\x41\\x4b\\x1b\\xc9\\x1e\\x4c\\xae\\x6c\\xce\\xff\\x00\\xbd\\x7b\\x9c\\\r\n\\xca\\xa9\\x73\\xb5\\xc0\\x2c\\x46\\x38\\x1f\\x12\\x4a\\xa2\\xd1\\x8d\\x24\\x5b\\\r\n\\x1b\\x6f\\x9a\\x3d\\xb3\\x03\\xbd\\xc1\\xf8\\xaf\\xaf\\x7d\\xae\\x71\\x10\\x2f\\\r\n\\xb0\\x26\\xc0\\x1c\\xc0\\x13\\x63\\x73\\xbf\\xa6\\x96\\xed\\x84\\x9e\\x40\\x79\\\r\n\\x64\\xe7\\x42\\x7b\\x93\\x6e\\xf8\\xa8\\x84\\xb5\\xaa\\xa3\\x17\\xcb\\xa3\\x28\\\r\n\\x36\\x60\\x0e\\xc4\\x0f\\x43\\xbf\\x8e\\xf8\\xaf\\x83\\xdf\\x96\\x12\\xb6\\x0e\\\r\n\\x0e\\x59\\x09\\xfb\\xcb\\x61\\x6c\\xc3\\xb9\\x56\\x00\\xd9\\x77\\xf4\\x38\\x83\\\r\n\\x84\\xc7\\x08\\x0e\\x64\\x5b\\xdc\\xf8\\x52\\x5b\\x4f\\x8b\\xf8\\x86\\xbd\\xb6\\\r\n\\xb1\\xc2\\x46\\xf1\\x9b\\x01\\x66\\x60\\x1b\\x4c\\xa4\\x7d\\xe1\\xa0\\xdf\\x61\\\r\n\\x7c\\xc3\\x6b\\x83\\xa6\\x16\\x47\\xa7\\xfb\\x47\\x74\\xcc\\x3e\\xe9\\x1d\\x81\\\r\n\\xbd\\xaf\\x7d\\x4e\\xe3\\xe5\\x84\\xaa\\x91\\xc9\\xb0\\x4b\\x37\\x62\\x02\\xec\\\r\n\\x4f\\x73\\xa6\\xda\\x6f\\x6b\\x13\\xa7\\x7c\\x48\\x99\\xfa\\xc0\\x5c\\xb6\\xb9\\\r\n\\x16\\x04\\x6d\\xde\\xe0\\xa1\\xb5\\xcf\\x8c\\x43\\xc2\\xa8\\x65\\x8a\\xab\\x87\\\r\n\\xca\\x9c\\xaa\\x5a\\xf5\\xd5\\xd4\\x2e\\x48\\xea\\xd3\\x58\\x2b\\x15\\x36\\x47\\\r\n\\x89\\xef\\x14\\xac\\x85\\x79\\xd1\\x4a\\xf1\\xc9\\x75\\x03\\x0f\\xec\\xe7\\x13\\\r\n\\xe1\\x73\\x9f\\x75\\xa8\\x8c\\x4b\\x13\\x9b\\xaa\\xbb\\xc7\\x20\\x2b\\xb3\\xa6\\\r\n\\xf1\\x9c\\xc3\\x51\\xad\\x8a\\xf7\\x3b\\x1a\\x5f\\x6d\\x6b\\x59\\x20\\xa6\\xa8\\\r\n\\x65\\x83\\x88\\x46\\x1a\\x16\\x95\\x54\\x41\\x2c\\xac\\xdd\\x08\\x67\\x90\\x05\\\r\n\\x12\\xf4\\x93\\x94\\x1b\\xa8\\xfc\\x31\\x58\\x95\\x95\\x05\\x81\\xa8\\x60\\xe8\\\r\n\\x43\\x32\\x92\\x5b\\x9c\\xbd\\x37\\x22\\x4b\\xdb\\xb5\\xf7\\x51\\x73\\x6c\\x08\\\r\n\\xd2\\xa5\\xe6\\x5a\\x79\\x6e\\x91\\x36\\x49\\x58\\x90\\x82\\x39\\x14\\x5d\\x96\\\r\n\\xe7\\x4d\\x0f\\x8b\\x9f\\xe7\\x8a\\xa9\\x85\\x35\\x5d\\x3c\\x14\\x90\\x24\\xac\\\r\n\\xe8\\xcb\\xef\\x99\\x88\\x5c\\xcd\\xad\\xc9\\x08\\x5f\\xe2\\x1a\\x2a\\xda\\xe0\\\r\n\\x76\\xb5\\xf1\\xec\\x77\\x18\\x9e\\x8a\\x55\\x59\\x1b\\x32\\x3e\\x85\\x51\\x4d\\\r\n\\xae\\xdf\\x71\\x63\\xeb\\x63\\xad\\xba\\x8d\\x86\\xfa\\xea\\x31\\x9f\\x9f\\x02\\\r\n\\xb1\\x5e\\x4b\\x68\\x6c\\xfa\\x1b\\x1d\\x75\\xd4\\xff\\x00\\x4c\\x18\\x9e\\x45\\\r\n\\xca\\xdf\\x0e\\x5b\\x5c\\xed\\x97\\x7f\\xc3\\xf3\\xb6\\xd8\\xff\\x00\\xa8\\x1c\\\r\n\\x12\\x78\\x6a\\x7d\\xe2\\x16\\x4c\\xb7\\xce\\x3b\\x69\\xb9\\xcb\\x65\\xd3\\xeb\\\r\n\\xdf\\xb6\\x28\\xe7\\xaa\\x44\\xe4\\xce\\x83\\x32\\x81\\x6c\\x8e\\xaf\\x70\\x45\\\r\n\\xf7\\x06\\xdf\\x4f\\xd0\\x98\\xce\\xdf\\xba\\xcd\\xae\\xf1\\xdb\\xe2\\xf4\\x3f\\\r\n\\xc8\\x9e\\xd7\\xd2\\xd8\\xa6\\xa3\\x8a\\xa2\\xcc\\xd1\\xe4\\x95\\x6d\\xbe\\xfd\\\r\n\\x3b\\x6b\\xe3\\x6d\\x0e\\x2b\\x55\\x0c\\x6c\\x8e\\xb6\\x75\\x07\\x2f\\x6b\\xfd\\\r\n\\x7b\\x77\\xc7\\x11\\x09\\x2b\\xb6\\x6b\\xa2\\x02\\x46\\x96\\xcc\\xc4\\x0b\\x85\\\r\n\\x07\\xee\\xf7\\xeb\\xdb\\xeb\\x88\\xdd\\x21\\x5b\\xc6\\xba\\x65\\xd4\\x28\\xbb\\\r\n\\x1b\\x0d\\x73\\x1d\\x49\\x6f\\x17\\x3e\\x72\\x8d\\xf1\\x17\\x36\\x69\\x55\\x11\\\r\n\\x39\\x8f\\x31\\x0a\\xa8\\x8b\\x9a\\x47\\x67\\x3d\\x20\\x05\\x17\\xbe\\x96\\x0b\\\r\n\\x6c\\xc7\\x41\\x6d\\x6f\\x86\\xe1\\x92\\xc0\\x7d\\xd2\\xa3\\x2a\\x49\\x51\\x4e\\\r\n\\x93\\xa0\\xfe\\x1e\\x65\\xd9\\x41\\xd8\\xe6\\x20\\x1c\\xc3\\xb3\\x58\\x5f\\x13\\\r\n\\x83\\x1a\\x55\\x52\\x17\\xbc\\xd0\\x4e\\x0e\\xe0\\xaf\\x43\\x64\\x61\\xa7\\x71\\\r\n\\xe2\\xfa\\x65\\xdb\\x14\\x3c\\x32\\x36\\xa7\\x96\\x59\\xb3\\x99\\x1b\\x3e\\x70\\\r\n\\x0e\\x81\\x58\\x6a\\xd6\\xfe\\x32\\x75\\xbd\\x88\\xf4\\xc3\\x10\\xd9\\x57\\x5e\\\r\n\\x9b\\xa8\\x04\\xdf\\x40\\x6f\\xe2\\xdf\\x86\\xdb\\x63\\xd9\\x6f\\x63\\xb8\\xb7\\\r\n\\x17\\xa9\\x8e\\xa9\\x62\\xf7\\x6e\\x15\\x0e\\x59\\x2a\\xb8\\x94\\x99\\x4d\\x38\\\r\n\\x40\\xc0\\x18\\xd3\\x33\\x2f\\x3e\\x69\\x0d\\xe3\\x14\\xe9\\xf6\\x96\\x27\\x36\\\r\n\\x50\\x33\\x63\\xda\\xda\\x69\\x3d\\xd6\\x0e\\x0f\\xc0\\x54\\x52\\x70\\xca\\x3a\\\r\n\\x88\\x81\\xa6\\x8e\\x69\\x64\\x79\\xaa\\x6b\\x73\\x1b\\xcc\\x6e\\xec\\xd2\\x0b\\\r\n\\x0f\\xb3\\xb1\\x0b\\x99\\x6d\\xbd\\xf1\\x34\\x3c\\xa4\\x9e\\x39\\x6a\\x6d\\x3c\\\r\n\\x55\\x3c\\xa9\\x29\\x4f\\x32\\xed\\xa3\\x06\\x95\\x0f\\xc0\\xbc\\xb2\\x96\\x60\\\r\n\\xc1\\x5b\\x51\\x61\\xa1\\xc7\\x06\\xe2\\x31\\x53\\xc2\\xd0\\xb4\\x05\\xd0\\x55\\\r\n\\xc3\\x27\\x22\\x60\\x08\\x9e\\x07\\x46\\x8a\\x68\\x8b\\x11\\xb9\\x19\\x59\\x6d\\\r\n\\xaa\\xda\\xf7\\xd0\\x62\\xbe\\x4a\\x2a\\xc9\\xb9\\x3c\\x2e\\x8e\\x77\\x4a\\x66\\\r\n\\x95\\xb2\\x80\\xa8\\xb1\\xc7\\x9a\\xee\\x58\\x45\\x98\\x93\\xf0\\xe6\\x97\\x34\\\r\n\\x7b\\x83\\x96\\xed\\xa4\\x95\\x3c\\x25\\x61\\x89\\x3d\\xd5\\x85\\x40\\x3d\\x4f\\\r\n\\xd3\\x91\\x52\\xec\\x4a\\x10\\x08\\xcf\\x26\\x5b\\x02\\x6d\\x6c\\x2f\\x17\\xa4\\\r\n\\x55\\x0a\\x29\\x8d\\x94\\x00\\x3a\\x23\\xd8\\x0b\\x0f\\xbd\\x89\\x3a\\x00\\x03\\\r\n\\x40\\x6f\\xa7\\xd0\\xfe\\xbf\\xe7\\x1c\\x89\\xa5\\x77\\x2e\\xe5\\x61\\xbd\\x82\\\r\n\\xa1\\xb1\\x61\\x6b\\x1b\\x9d\\xc0\\xf3\\xfd\\x31\\xc8\\x10\\xc4\\x0d\\x3d\\x83\\\r\n\\xa7\\x52\\xdf\\xe1\\x63\\xdd\\x5f\\xb9\\x56\\xd5\\x4f\\x7d\\x6f\\x89\\x2a\\xd6\\\r\n\\x38\\xd9\\xe6\\x8e\\x48\\x0a\\xad\\xd8\\x90\\xb2\\xc4\\x0e\\xba\\x07\\x0d\\xd4\\\r\n\\x3e\\x6a\\x0f\\xa6\\xd8\\xac\\x97\\x9d\\x55\\xce\\x59\\x79\\x8a\\x6c\\x41\\xe5\\\r\n\\xf2\\x82\\xeb\\xb0\\x53\\xbd\\xbc\\xe9\\xf2\\xbd\\xf1\\x24\\x50\\x56\\xd2\\xc5\\\r\n\\xcc\\x44\\x63\\x91\\x01\\xcf\\xa1\\x1a\\x76\\x3f\\x9f\\x6c\\x4b\\xc2\\x89\\x5f\\\r\n\\x74\\xa7\\x77\\x94\\x4a\\x47\\x29\\x10\\xe7\\x21\\xf6\\xd3\\xb8\\xd3\\x75\\xee\\\r\n\\x3b\\xeb\\x6c\\x70\\xef\\x65\\xf8\\xbf\\x11\\x06\\x96\\x7a\\x70\\x94\\xb1\\xc6\\\r\n\\x11\\x2a\\x6a\\x95\\xd5\\x61\\x62\\xf7\\x91\\xa0\\x8e\\xe3\\x34\\xe4\\xf4\\x93\\\r\n\\xa8\\x03\\xd2\\xe7\\x1c\\x44\\x52\\x70\\x28\\x9e\\x9e\\x84\\xb8\\x8e\\x9c\\x84\\\r\n\\x9e\\x5d\\xda\\xaa\\x5b\\x7d\\xfb\\x69\\x91\\x58\\x58\\x2d\\xc2\\x8b\\x9e\\x92\\\r\n\\x75\\xc3\\xcb\\xcf\\x63\\x31\\x0a\\x33\\xb7\\x30\\xe5\\xd8\\x12\\x76\\x51\\xd8\\\r\n\\x78\\xb6\\xd8\\xa9\\xe3\\xae\\xb0\\xc1\\x00\\xc9\\x4b\\x4a\\x91\\x46\\x1b\\x50\\\r\n\\xa6\\x76\\xc8\\x2f\\x76\\xdd\\x9c\\x9f\\xbb\\xaf\\xd2\\xd8\\xa6\\x93\\x3c\\x0a\\\r\n\\xc8\\x37\\x5b\\x83\\x8e\\x2f\\x77\\x9c\\xc9\\x7f\\xb6\\x8b\\x2a\\x85\\x5f\\x84\\\r\n\\xa1\\xf8\\xc1\\x27\\xbe\\xba\\x7a\\xdc\\x79\\xc5\\x2d\\x17\\xbf\\x05\\x2a\\xdc\\\r\n\\xbb\\x9b\\x03\\x7b\\x15\\x6d\\x3c\\x78\\xb8\\xbe\\x3d\\xe5\\xa8\\x66\\x7a\\x0a\\\r\n\\xd8\\x53\\xa5\\x8a\\xf3\\x01\\xdc\\x5a\\xe0\\xdf\\xb8\\x3e\\x70\\xec\\xb4\\xf3\\\r\n\\x17\\xa6\\x63\\x24\\x52\\x8b\\xb8\\xdf\\xff\\x00\\x1d\\x75\\xf9\\x78\\xdb\\x5c\\\r\n\\x2d\\x6a\\xf2\\xd4\\x2a\\x9b\\x8b\\x82\\x1b\\xb7\\x71\\xaf\\x7b\\x0f\\xcc\\x62\\\r\n\\xa6\\x92\\xaa\\x6f\\xb4\\x81\\x39\\xce\\xda\\x95\\x3a\\xdb\\x5b\\x9c\\xa2\\xfa\\\r\n\\x6d\\xf8\\x1c\\x70\\xce\\x1b\\x5a\\xb3\\x98\\xea\\xe8\\xe4\\x08\\x51\\xa5\\xe6\\\r\n\\x1b\\x65\\x1a\\x58\\x2a\\x5b\\xd7\\xee\\xef\\xf9\\x62\\x9e\\x39\\xa9\\xab\\x29\\\r\n\\x5a\\x18\\x7a\\x90\\x9e\\x65\\x85\\x82\\xad\\xed\\x95\\xb4\\xdc\\x83\\xb1\\xee\\\r\n\\x46\\xf8\\x89\\xde\\x2b\\x1d\\x40\\x36\\x61\\xa6\\x8c\\x0e\\xa3\\xe6\\x35\\xc1\\\r\n\\x65\\x6e\\xab\\xea\\x4d\\xfc\\x6b\\xf3\\xec\\x7f\\x5d\\xf1\\x13\\xe4\\xe9\\x39\\\r\n\\xb2\\xf7\\x5e\\xc6\\xfe\\x74\\xfc\\x36\\xc3\\x2f\\x26\\x4b\\x8d\\x51\\xb5\\x47\\\r\n\\xbd\\xef\\xe6\\xda\\x6e\\x3e\\x5f\\xd0\\xe0\\x3d\\x93\\xe1\\x46\\x16\\xd7\\x43\\\r\n\\x9f\\xe7\\xfc\\xb6\\xfc\\x3b\\xe0\\x98\\xd1\\x15\\x85\\xae\\x2d\\xdd\\x85\\xc3\\\r\n\\x7c\\x5a\\xea\\x47\\xae\\xe0\\xdf\\x4d\\x31\\x57\\x27\\x36\\x5c\\xfa\\x6a\\x33\\\r\n\\x10\\xa4\\x58\\x5c\\xed\\xd2\\x2c\\x3f\\x2d\\xfe\\x11\\xb0\\xe3\\x3c\\x66\\x7a\\\r\n\\x18\\xd0\\xc1\\x0c\\xb3\\xc8\\xf2\\x59\\x10\\x46\\xc6\\x17\\x5b\\x84\\x65\\x69\\\r\n\\x01\\x01\\x19\\x9d\\x94\\x26\\xf6\\x01\\xc9\\x1a\\x0c\\x52\\x4c\\x5a\\x14\\x95\\\r\n\\x58\\xa2\\xca\\xa3\\x99\\x03\\x5c\\xdb\\x5d\\x6c\\x5c\\x0c\\xd6\\x60\\x6d\\x7b\\\r\n\\x6d\\xaa\\xeb\\x87\\x98\\xe7\\xbe\\xa3\\x5d\\x46\\xb9\\xb6\\xb6\\xd7\\xb0\\xd3\\\r\n\\xcd\\xaf\\xa6\\x0b\\x8a\\x9a\\x21\\x52\\xdd\\x53\\x42\\xa2\\x9e\\x52\\x2c\\x73\\\r\n\\xa9\\x05\\x60\\x99\\xbb\\x82\\x15\\x4c\\x27\\xb1\\x22\\x33\\xa9\\xcd\\x8e\\x2f\\\r\n\\x4e\\xf3\\x49\\x10\\x85\\x3a\\x8e\\x62\\xf2\\x12\\x14\\x22\\xa9\\x19\\x7d\\x43\\\r\n\\x0b\\xf6\\xbd\\xc0\\x38\\x4a\\xa5\\xc9\\x4e\\x18\\x34\\xac\\x4c\\x70\\x39\\x88\\\r\n\\x9e\\x63\\xb6\\xc4\\x5b\\x56\\x55\\xca\\x2e\\xc7\\x21\\xcc\\xda\\xf7\\xd5\\xa0\\\r\n\\xa6\\x8a\\xae\\x9e\\x24\\x8b\\x24\\x05\\xcb\\xc8\\xa7\\x2a\\xac\\xa5\\xc1\\x2c\\\r\n\\x25\\x22\\xd7\\x6c\\xc4\\x93\\x6c\\xad\\xa6\\xf8\\xab\\xaa\\xa4\\x2d\\x1c\\x31\\\r\n\\x43\\x12\\xda\\xe7\\x2c\\x63\\x26\\x53\\xae\\x62\\x1d\\x75\\xd7\\x60\\x4e\\x63\\\r\n\\x63\\xdc\\xeb\\x8f\\x62\\xf8\\xbf\\x0f\\x59\\x79\\x32\\xc2\\x89\\x99\\xba\\x5f\\\r\n\\x2d\\x89\\xb1\\x37\\x05\\x9b\\xac\\x9b\\x8f\\x8b\\x63\\xf3\\xb6\\x1e\\x6e\\x66\\\r\n\\x56\\x8f\\x66\\x17\\x1e\\xa3\\xc8\\xed\\xa5\\xbc\\xe2\\xba\\xaa\\x63\\x4f\\x78\\\r\n\\x40\\xcd\\x97\\xc6\\xd9\\x77\\xda\\xfe\\x3f\\xb6\\x3d\\xa4\\xe2\\x13\\x71\\x28\\\r\n\\xaa\\xa8\\x67\\x4c\\xaf\\x7c\\xc9\\x7e\\x96\\x53\\x90\\xab\\x2a\\x90\\x36\\x25\\\r\n\\x6e\\x9f\\xea\\x1a\\x62\\x9d\\xe7\\x49\\x23\\x4c\\xed\\x2a\\x45\\x75\\x4c\\xdf\\\r\n\\x18\\x8f\\x61\\xea\\xd6\\xea\\x1b\\xe9\\xe0\\x62\\x8b\\xed\\x02\\x9e\\xd6\\x17\\\r\n\\xf3\\xaf\\xf5\\xc3\\x52\\x2c\\x43\\x32\\x90\\x0e\\xfe\\x3b\\x68\\x34\\xef\\xb6\\\r\n\\x38\\xbb\\x2f\\x20\\x93\\x61\\x28\\x1d\\x39\\x6f\\xd7\\xe8\\x6d\\x73\\x7d\\x37\\\r\n\\xd4\\x62\\xb8\\x99\\x64\\x90\\x20\\xbd\\x8b\\x31\\x51\\xb9\\xb8\\x17\\xb6\\xbf\\\r\n\\x2e\\x90\\x0e\\xb8\\xa5\\xa7\\x96\\xae\\x4e\\x5a\\x03\\xb1\\x66\\xc8\\x6d\\x60\\\r\n\\xbb\\xdf\\x4b\\x5d\\x8b\\x5b\\x43\\xa9\\x36\\xdc\\xdb\\x1e\\xcc\\xd5\\x7e\\xce\\\r\n\\xe3\\xfc\\x26\\xac\\x28\\x22\\x9b\\x8a\\x53\\xa4\\x9a\\x8d\\x32\\xc8\\x88\\xf6\\\r\n\\xd2\\xc0\\x2a\\xb3\\x0b\\xd8\\x93\\xf1\\x5e\\xdd\\x38\\xf6\\xba\\x9c\\x50\\xfb\\\r\n\\x4f\\x02\\xb2\\xae\\x45\\xf7\\xc8\\xac\\x6d\\x62\\xa9\\x51\\x29\\x8e\\xc2\\xdb\\\r\n\\x98\\x9d\\x08\\x1f\\x91\\xd3\\x15\\x14\\xd0\\xa9\\x92\\x58\\x63\\xf8\\xc3\\x47\\\r\n\\x51\\x9a\\xc3\\x36\\x76\\x36\\x21\\x72\\xde\\xf7\\xd5\\x8d\\xfb\\x6f\\xae\\x28\\\r\n\\x56\\x08\\x96\\x51\\x35\\xd1\\x54\\xb2\\x39\\x00\\x33\\x1b\\x2d\\xe3\\x02\\xfd\\\r\n\\x8d\\xc0\\x38\\xf6\\x7f\\x80\\x55\\x71\\x8e\\x31\\x1a\\x46\\xab\\xee\\xb1\\x37\\\r\n\\x36\\xb2\\x77\\x0d\\xc9\\x86\\x10\\xdd\\x40\\xae\\x84\\x99\\x01\\xc8\\x91\\x8b\\\r\n\\x17\\x2c\\x00\\xd2\\xe4\\x7b\\x4d\\xc7\\xe9\\xb8\\x22\\xb7\\xb3\\x1c\\x1e\\x9d\\\r\n\\xa9\\xa0\\x87\\x9a\\x93\\xf2\\x9c\\x89\\xa9\\xe4\\x73\\xa9\\xbe\\xac\\xf5\\x3a\\\r\n\\x28\\x95\\xa4\\x23\\x41\\x95\\x6d\\x60\\x47\\x0b\\xe3\\xdc\\x47\\x87\\x71\\x43\\\r\n\\x5d\\x4e\\xfc\\xf2\\xc3\\x3c\\xd1\\x4b\\x95\\xd6\\x68\\xe3\\x87\\x77\\x59\\x3a\\\r\n\\x09\\x44\\x17\\x1a\\x79\\x5d\\x6f\\x6c\\x27\\x12\\xa7\\xa8\\x8a\\x58\\xff\\x00\\\r\n\\x64\\xd2\\xb5\\x35\\x4a\\x54\\xc8\\x6a\\x1a\\x39\\x34\\x96\\x5b\\xb4\\x52\\x5d\\\r\n\\x64\\xe6\\x41\\x2c\\x32\\x66\\x1f\\xbc\\x78\\x99\\x4d\\x9a\\x23\\x6d\\x68\\x29\\\r\n\\x61\\x3c\\x3a\\xa6\\x48\\xa0\\x82\\xa1\\x8a\\xf4\\x67\\x42\\xcf\\xd1\\x27\\x5a\\\r\n\\x83\\x21\\x25\\x34\\xb8\\x52\\xa5\\x4b\\x86\\x07\\x51\\x6c\\x55\\xc5\\x0f\\xfe\\\r\n\\x9d\\xa7\\xaa\\x80\\x7b\\xa4\\xd2\\x71\\x07\\xa5\\xa8\\x68\\x46\\x46\\x09\\x94\\\r\n\\x9b\\x36\\x5d\\x80\\xd3\\x38\\xb0\\xbd\\xae\\xda\\x69\\x8a\\x55\\x00\\xbc\\x75\\\r\n\\x0a\\x8f\\x90\\xe4\\x6c\\xfb\\x06\\x61\\x60\\xdd\\xba\\x64\\xd3\\xaf\\xf9\\x5f\\\r\n\\x06\\x2a\\x20\\x48\\x2a\\xca\\x41\\xb1\\x5e\\xae\\x93\\xdc\\x68\\x48\\xd3\\x6d\\\r\n\\x09\\xc3\\xcd\\x2c\\xc4\\x9d\\x45\\xbe\\x43\\xfd\\xb0\\x2a\\x96\\x3f\\xde\\xcb\\\r\n\\x90\\x5f\\x5b\\x9f\\xed\\xbe\\x0f\\x19\\xa7\\x4e\\x94\\xcf\\x36\\x96\\xe9\\x07\\\r\n\\xf5\\xf9\\x7d\\x71\\xc5\\x78\\xac\\x93\\xa1\\xa7\\xe5\\xf2\\xd3\\x73\\xfc\\x4c\\\r\n\\x07\\x6b\\xdf\\xfd\\xf4\\xf5\\xc0\\x94\\x13\\x12\\xa0\\xbb\\x37\\xae\\xba\\x5c\\\r\n\\x1b\\x8b\\xe9\\x6f\\x96\\xfb\\xf7\\xc2\\xf0\\xf4\\x5a\\x68\\xce\\xa5\\xf2\\x29\\\r\n\\x6b\\xf7\\xe9\\xb9\\xff\\x00\\x6c\\x7b\\x25\\xc1\\x2f\\xef\\x1c\\x46\\x48\\xfa\\\r\n\\x91\\x1b\\xdd\\xd5\\xed\\x64\\x5d\\x33\\xcc\\x7f\\xd3\\x6b\\x21\\xbe\\xa4\\xfc\\\r\n\\xb1\\x57\\x2f\\x22\\x96\\xab\\xed\\x0a\\xc5\\x10\\x67\\x79\\x8f\\xc3\\x14\\x6d\\\r\n\\x60\\xcf\\xe6\\xfa\\xd9\\x47\\xc4\\x58\\x81\\xf2\\xac\\xa2\\xe0\\x4b\\xc2\\x65\\\r\n\\x92\\x5a\\x99\\xaa\\xdb\\x88\\x20\\x7a\\x64\\x27\\x2f\\x2c\\xdf\\xf7\\x8d\\xf7\\\r\n\\x99\\xc1\\xd4\\x20\\xd3\\xd4\\xf7\\x3c\\x2c\\xf3\\x22\\x48\\x98\\x48\\x01\\x5b\\\r\n\\x95\\x36\\xb9\\x37\\xfb\\xa7\\xd3\\x71\\xe7\\x6f\\x38\\x4e\\x14\\x6a\\x1b\\xfc\\\r\n\\x40\\x2e\\xd1\\x65\\xe5\\x03\\xa2\\x0e\\xe7\\xa7\\xf8\\x8e\\xc4\\xef\\xb7\\xd2\\\r\n\\x9a\\x23\\x14\\x0a\\x08\\xb0\\x0b\\x97\\x15\\x54\\xd7\\x9d\\xa4\\x1d\\xcd\\xad\\\r\n\\xb8\\xd3\\xf5\\xbe\\xb8\\x4c\\xd4\\xb5\\x0c\\x11\\xec\\xb9\\xee\\x41\\x36\\xd4\\\r\n\\x5b\\x6f\\xeb\\x8e\\x23\\x12\\x56\\xb2\\xc9\\x2c\\x12\\x46\\x24\\x8d\\x7e\\xd1\\\r\n\\x6c\\x75\\x02\\xc4\\xad\\xbf\\x1f\\xad\\xb0\\x50\\xd3\\x30\\x8e\\x45\\x3c\\xb2\\\r\n\\x3e\\xca\\x6c\\xa4\\x69\\xfe\\x6f\\xc4\\xdf\\xbe\\xe7\\x02\\x36\\x76\\x32\\x45\\\r\n\\xd4\\x03\\x0d\\xb5\\xbd\\xbf\\x2b\\x5b\\xf5\\xb6\\x22\\xac\\x68\\x94\\x92\\x2d\\\r\n\\x97\\x52\\x2d\\xa6\\x83\\x50\\xb8\\x1c\\x56\\x45\\x31\\xb0\\x3f\\x66\\xe2\\xf6\\\r\n\\xb8\\x22\\xde\\x6e\\x36\\xde\\xc7\\xfa\\xe2\\x1e\\x21\\x58\\xd5\\x99\\x9a\\x3e\\\r\n\\x5e\\x79\\x04\\x79\\x3e\\x25\\x71\\x7e\\x96\\x3f\\xc3\\xa7\\xe1\\xdb\\xbe\\x16\\\r\n\\x4f\\x78\\xe1\\x45\\xc6\\x43\\x2f\\x0d\\x9e\\xcd\\xb0\\x67\\xa5\\xa8\\x65\\x05\\\r\n\\x57\\xb9\\xe5\\xcf\\xaf\\x70\\xa1\\x88\\xb6\\xb8\\x8e\\x48\\xe4\\x1d\\x2c\\x6d\\\r\n\\xe9\\xe7\\xf1\\xb6\\x15\\x6d\\x95\\xc3\\x1d\\x3e\\x2b\\x91\\xd4\\x9e\\x0e\\xff\\\r\n\\x00\\x4b\\xfe\\x3a\\x63\\x22\\xce\\x39\\x69\\xd5\\xdc\\x6d\\x74\\xb0\\xd6\\xfb\\\r\n\\x92\\x3f\\xd2\\x01\\xf9\\xe0\\x5b\\x5e\\xdf\\x76\\xfe\\xb7\\xfe\\x5a\\x10\\x71\\\r\n\\x98\\x98\\xc5\\xf2\\xe7\\x5b\\x2b\\x28\\x06\\xc5\\x46\\xfb\\x65\\xea\\x05\\xad\\\r\n\\xad\\xb4\\xbe\\x19\\x74\\xcd\\xa8\\x17\\x16\\x5f\\x97\\xf7\\xfe\\xde\\xa7\\x11\\\r\n\\xc1\\x04\\x70\\x8a\\x66\\x92\\x43\\x12\\xbb\\xc9\\x01\\x0f\\x69\\xa3\\x2e\\xcc\\\r\n\\xf9\\x0e\\x71\\x76\\x00\\xb3\\x80\\xc4\\xb5\\xd4\\xea\\x3a\\x6c\\x12\\x11\\x94\\\r\n\\x10\\x32\\xaa\\xfc\\x2a\\x75\\x36\\xf2\\x4d\\xb5\\x27\\x5d\\x6c\\x05\\xef\\x6b\\\r\n\\x62\\x51\\xd5\\x7d\\x37\\xd7\\xfe\\x36\\xc5\\x14\\xc1\\x18\\x67\\xfd\\xcc\\x8a\\\r\n\\xd1\\x4f\\xb5\\xb2\\x3e\\x9f\\xfd\\x8d\\x96\\x51\\xb1\\xcc\\x83\\x5d\\xf1\\x32\\\r\n\\x14\\xaa\\x92\\x07\\xb1\\x2a\\x59\\x5b\\xbd\\xf2\\xd8\\x06\\x17\\x3f\\x7a\\xf7\\\r\n\\x53\\xdc\\x1b\\xe2\\x2a\\x58\\xa1\\x46\\xaa\\x8d\\x56\\x39\\x11\\xba\\x73\\x28\\\r\n\\x0d\\xb8\\x27\\x5e\\xd9\\x40\\xb9\\xb1\\xfc\\x71\\x33\\x2c\\x94\\xa2\\x43\\x99\\\r\n\\x48\\x39\\xd3\\x3f\\xc7\\xe3\\x32\\x81\\xe6\\xf6\\x17\\x27\\xe7\\x88\\xa4\\x8e\\\r\n\\x69\\x95\\x20\\x64\\xe7\\xba\\x94\\x20\\xe9\\x21\\x04\\xd9\\xac\\xbb\\x81\\xfc\\\r\n\\x56\\xb5\\xfd\\x31\\xec\\xff\\x00\\xb2\\x3c\\xb9\\x60\\xaa\\xcd\\x9b\\x5b\\x98\\\r\n\\xd6\\xcb\\x6b\\xdc\\x5d\\xaf\\xa9\\xb5\\xc9\\xfe\\xf8\\xa8\\x8d\\x22\\xa3\\x50\\\r\n\\x02\\x86\\x8e\\x3f\\xb3\\xb0\\xfc\\xbe\\x5f\\x9e\\xf8\\xa4\\xb4\\xaa\\x15\\xc0\\\r\n\\xb3\\x5f\\xb6\\x3f\\xea\\x17\\x0b\\x92\\x89\\xa3\\xe2\\x94\\xea\\x83\\x20\\x22\\\r\n\\x65\\x6b\\x59\\xd6\\xd7\\x0e\\xab\\xa1\\x32\\x2e\\xda\\x76\\x38\\x1c\\x63\\x9f\\\r\n\\x54\\x1b\\x95\\xc8\\xb3\\x66\\xb2\\xfa\\x8e\\xa3\\x60\\x05\\x83\\xb6\\xa5\\x6e\\\r\n\\xda\\xdc\\xdf\\x5c\\x50\\x56\\xa4\\xa1\\x4a\\xe6\\x0c\\x7c\\x2e\\x86\\xdf\\x2e\\\r\n\\xe7\\xf1\\xf9\\x61\\xaa\\x1b\\x26\\x8a\\x4f\\xfe\\x3a\\x7f\\xce\\x2b\\x29\\x56\\\r\n\\xb5\\x5a\\xf5\\x02\\x91\\x86\\xa0\\xb6\\xa2\\xdd\\xf6\\x6c\\xc0\\x9f\\x16\\xf9\\\r\n\\xd8\\x12\\x71\\x53\\xc1\\x78\\x37\\x33\\x9e\\xfc\\x55\\xb3\\x06\\x1c\\xd0\\x9c\\\r\n\\xa8\\xec\\xd7\\xf8\\xc1\\x32\\x48\\xcb\\x6e\\xdf\\x62\\xfa\\xfe\\x73\\x27\\xb3\\\r\n\\xc7\\x86\\xc9\\x41\\x4b\\xc5\\x56\\x9a\\x63\\x51\\x15\\x4c\\x95\\xa6\\x9d\\xea\\\r\n\\xa7\\xc8\\x8c\\xc4\\x24\\xd2\\x43\\x05\\x3b\\x64\\xe6\\x11\\x21\\x3d\\x44\\x01\\\r\n\\xdf\\x7c\\x51\\xfb\\x3d\\xc2\\xe9\\x5f\\x30\\xf6\\x96\\x8e\\xa6\\xab\\x99\\x26\\\r\n\\x68\\x69\\xe1\\x65\\x71\\x23\\xa9\\x51\\xad\\x44\\xf1\\x2b\\x38\\x7e\\xae\\x8b\\\r\n\\xee\\xa6\\xdb\\xe3\\xda\\xaa\\x18\\x3d\\xa0\\xab\\xa2\\xe4\\xc9\\x51\\xef\\x8d\\\r\n\\x1c\\x72\\xb8\\x48\\xa3\\xe8\\x26\\x96\\x21\\x33\\x48\\x64\\xa9\\x8f\\x4c\\xf1\\\r\n\\x1d\\x17\\x98\\x59\\x89\\x09\\x98\\x62\\x4f\\x66\\x78\\xd4\\x10\\xd5\\x46\\xbc\\\r\n\\x2a\\xa6\\xaa\\x30\\xec\\x89\\x34\\x70\\x48\\xc2\\x61\\x7b\\xab\\x2f\\x2a\\xef\\\r\n\\xf0\\xd8\\x8b\\x78\\xb6\\xd8\\xa4\\xf6\\x62\\xb2\\x7a\\xa8\\x56\\xa6\\x39\\x62\\\r\n\\x6a\\xa0\\x8f\\x33\\x34\\x52\\x47\\xcb\\x44\\xb0\\x3a\\x72\\xf3\\x20\\x8d\\x4e\\\r\n\\x69\\x0b\\x5c\\xe7\\xcb\\x1d\\xb3\\x36\\x2b\\xea\\xa8\\x38\\x05\\x3c\\xbc\\x17\\\r\n\\x85\\xce\\x52\\x49\\x84\\x92\\x73\\xdd\\x02\\xca\\x65\\x71\\x75\\x9a\\xa6\\xd7\\\r\n\\xc8\\x1b\\x55\\x8b\\x43\\xcb\\x4f\\xb4\\xca\\x56\\xf8\\xe2\\xa6\\xb6\\xb1\\xc4\\\r\n\\xd3\\xd5\\x27\\x10\\x9e\\x5e\\xb9\\x25\\x5e\\x6f\\x3a\\x22\\x5d\\xfe\\xc6\\x59\\\r\n\\x9d\\x17\\x9a\\x42\\x8c\\xca\\x51\\xa4\\x50\\xac\\x02\\xb7\\x83\\x4e\\xce\\x14\\\r\n\\xb1\\x58\\xac\\x8a\\xa7\\x33\\x85\\x04\\xfc\\x36\\xbd\\xfc\\x0b\\xda\\xff\\x00\\\r\n\\xdb\\x11\\xbb\\x27\\x06\\x63\\x0b\\x2b\\x01\\x52\\x90\\xcb\\x24\\x60\\x3f\\xd8\\\r\n\\xc8\\xbc\\xc0\\xa5\\xb5\\xbf\\x5a\\xb1\\xb0\\xf8\\x8d\\x83\\x69\\x6b\\x70\\xb5\\\r\n\\x11\\xf0\\x8a\\xaa\\xb7\\x2c\\x51\\xa0\\x79\\x74\\xb1\\xba\\xa0\\x41\\x7d\\xbe\\\r\n\\x26\\xc9\\xad\\x8e\\xa6\\xfa\\xe9\\xac\\xf3\\x8a\\x9f\\x67\\x2a\\x8a\\x29\\x40\\\r\n\\xbc\\x59\\x5d\\x55\\xb7\\xb3\\x45\\xa9\\xd3\\x4f\\xbb\\x7d\\x09\\xd0\\xe2\\x69\\\r\n\\xb2\\xc9\\x4b\\x58\\x10\\x48\\x92\\x46\\x29\\xea\\x90\\x5a\\xcc\\xb6\\xb3\\x2f\\\r\n\\x7b\\x1c\\xbd\\x4b\\xa6\\x85\\x14\\x8d\\xb1\\xfb\\x2b\\x3f\\x5c\\x55\\xa9\\xcb\\\r\n\\x7e\\xa8\\xef\\xbe\\x46\\xd5\\x2f\\xeb\\x96\\xd7\\xc4\\x15\\x66\\xad\\x62\\xa7\\\r\n\\xe7\\x91\\x20\\xe6\\x66\\x40\\x5d\\x99\\xec\\x41\\xb9\\x73\\x70\\x34\\xbf\\x49\\\r\n\\x20\\x58\\x74\\xae\\x12\\x9a\\x2e\\x53\\x89\\x2f\\x21\\xba\\xb2\\x92\\x6f\\xf4\\\r\n\\xb7\\xeb\\x6c\\x48\\x63\\xa5\\x8c\\xbd\\x94\\x0d\\xb2\\xe9\\xa9\\xdf\\x6f\\xd7\\\r\n\\x71\\x8a\\x99\\x4b\\x9b\\x92\\x1d\\x99\\x83\\x58\\x69\\x60\\x0d\\xc0\\x20\\x58\\\r\n\\xeb\\xbf\\xe5\\x8e\\x1b\\x18\\x96\\xa9\\x73\\x05\\x41\\xce\\x50\\xc4\\xb5\\xc5\\\r\n\\x81\\xd7\\xcf\\x7c\\x70\\x7a\\x2a\\x9a\\x8a\\xea\\x59\\xd6\\x3f\\xf0\\x90\\xb2\\\r\n\\x4d\\x9e\\x45\\xcd\\x1c\\xb9\\x49\\xb4\\x4b\\xf7\\x5e\\xf6\\xea\\x1b\\x7f\\x16\\\r\n\\x98\\xe2\\x55\\x10\\x51\\xc3\\x23\\x3b\\x2c\\x77\\xea\\x90\\xa8\\xc8\\xaa\\xbb\\\r\n\\x88\\xd5\\x05\\x94\\x6b\\xe9\\xbf\\xd7\\x0f\\x57\\x49\\xc5\\xb8\\x6c\\xb4\\x92\\\r\n\\x54\\x18\\x63\\x72\\xc9\\x20\\x57\\x19\\xdc\\x16\\x0c\\xbb\\x1b\\x69\\x6f\\x98\\\r\n\\xb9\\xc5\\x5c\\x3c\\x38\\x14\\xa7\\x9a\\x79\\x5b\\x28\\xff\\x00\\x0e\\x21\\x8e\\\r\n\\xdc\\xb8\\xac\\x02\\xaf\\x30\\xdc\\x1d\\x77\\xe9\\x27\\xce\\x28\\x61\\x85\\x9d\\\r\n\\x96\\x9a\\x90\\xc5\\xb6\\x59\\x26\\xeb\\x91\\xbb\\x5c\\x5c\\x0c\\xbd\\xed\\xbf\\\r\n\\x9c\\x43\\xc3\\x99\\x6d\\x99\\x75\\x3d\\xfb\\x5f\\xf5\\xbe\\x25\\x88\\x6d\\x6f\\\r\n\\x4d\\xbb\\x62\\x5a\\x64\\x52\\x41\\x5c\\x55\\x43\\x13\\x71\\x21\\x16\\x5f\\xb3\\\r\n\\x92\\xc0\\xb7\\x8d\\x37\\x1f\\x2d\\x2d\\x80\\x1e\\x3a\\x43\\x1c\\x8c\\x09\\xa6\\\r\n\\x93\\xa0\\x8d\\xa4\\x80\\x9b\\x7e\\x2b\\xf4\\xf5\\xc5\\x41\\xa7\\x48\\x0c\\xf3\\\r\n\\xf2\\xda\\x3c\\xba\\x66\\x1b\\xeb\\xb0\\xf5\\xfe\\x5b\\xe2\\x18\\x4c\\x7c\\xc9\\\r\n\\x23\\xcb\\xee\\xc4\\xe6\\xd1\\xb6\\x07\\xb0\\x17\\xec\\x34\\xb6\\xfe\\x98\\x92\\\r\n\\x5a\\x49\\x69\\xbe\\xeb\\x66\\x04\\x00\\x06\\x66\\x24\\x6d\\xb6\\xbf\\xaf\\xc2\\\r\n\\x29\\x42\\x3b\\x46\\xe1\\x99\\x75\\x0a\\xa5\\x75\\x40\\xc6\\xff\\x00\\x0f\\x63\\\r\n\\x6e\\xfa\\x62\\x2e\\x95\\x92\\xa4\\x83\\xfe\\x1e\\x20\\x63\\xff\\x00\\x33\\xc9\\\r\n\\xf0\\x11\\x7b\\xeb\\x66\\xdb\\x7f\\x38\\xf6\\x7e\\xa5\\x73\\xa5\\x3c\\xcd\\xd1\\\r\n\\x56\\xaf\\x4e\\xc5\\xb4\\x0a\\xf2\\x5b\\x96\\xe4\\x9f\\xe0\\x93\\x29\\xf9\\x62\\\r\n\\x92\\x4e\\x4d\\x7c\\x74\\xb5\\x19\\x35\\x95\\xe0\\x7b\\x7c\\x37\\x24\\xa8\\x61\\\r\n\\xf5\\xb1\\x1b\\xe9\\xf8\\xe0\\x24\\xab\\x99\\x43\\x13\\x24\\x6e\\xc0\\x8b\\xef\\\r\n\\x6b\\x83\\x6d\\x7f\\x96\\x03\\x91\\xbf\\x4f\\xd4\\x83\\x88\\xed\\x9c\\x5c\\x8c\\\r\n\\xa4\\x7e\\x7d\\xbb\\x8b\\xe2\\x53\\x6b\\xd9\\xb7\\x19\\x88\\xfc\\x3f\\x3c\\x06\\\r\n\\xb2\\x8c\\xda\\x8f\\x04\\x69\\xaf\\xcf\\x05\\x40\\x63\\x94\\x0f\\x4d\\xf5\\xdf\\\r\n\\xce\\x2f\\xd3\\x98\\xe8\\x4e\\x9b\\x78\\x1a\\x62\\x52\\x34\\x03\\xb9\\x1f\\xef\\\r\n\\xfd\\x4e\\x1e\\x78\\xe2\\x5b\\x3b\\x5b\\x42\\x3c\\x75\\x76\\x03\\xce\\x26\\x56\\\r\n\\x96\\x9e\\x9a\\xbb\\x4e\\x61\\xcd\\x47\\x30\\xd0\\x65\\x30\\xa8\\x31\\x1d\\xb7\\\r\n\\x92\\x1b\\x7c\\xf9\\x6d\\xa8\\xed\\x9e\\x43\\x13\\x47\\x1c\\x9a\\xc8\\x2c\\x18\\\r\n\\x91\\x91\\x48\\xb1\\x3e\\x40\\xbe\\xd7\\xff\\x00\\x7c\\x43\\x9e\\x4a\\x65\\x12\\\r\n\\x05\\xcc\\xab\\x97\\x46\\x05\\x49\\xb6\\x5d\\x35\\x26\\xdd\\xfb\\x62\\xa2\\x38\\\r\n\\x25\\xe2\\x02\\x28\\xf8\\x84\\x50\\xd5\\xc7\\x20\\xe4\\xf2\\x56\\x67\\x96\\x36\\\r\n\\xef\\x98\\xa8\\xc9\\x97\\xc8\\xed\\xe7\\x1e\\xc8\\x41\\xc4\\xc5\\x24\\x4d\\x59\\\r\n\\x38\\x97\\xa1\\x0b\\xb7\\x28\\xa6\\x72\\x2d\\xd5\\x62\\x4e\\xe3\\xd7\\x1c\\x7a\\\r\n\\xb1\\xe9\\xe9\\x24\\x65\\x53\\x65\\xbe\\xdf\\xc3\\xde\\xc3\\xb5\\xbe\\x57\\xdf\\\r\n\\xb6\\x38\\x77\\xb4\\xf1\\xbb\\x08\\xc5\\xed\\x7c\\xb7\\xd0\\xb5\\xc7\\xde\\xd7\\\r\n\\x50\\x35\\xf1\\x7c\\x71\\xe9\\xa8\\x6a\\x38\\x59\\x96\\x65\\x59\\x58\\xa0\\xe8\\\r\n\\x75\\xe6\\x74\\xb2\\xeb\\xf6\\x6d\\xa6\\xba\\xdc\\x9d\\x3c\\x8d\\x71\\x53\\x3d\\\r\n\\x64\\x35\\x33\\x45\\x10\\xa3\\xa7\\x8a\\xf9\\xe2\\xff\\x00\\x0b\\x4b\\x15\\xd3\\\r\n\\x5c\\xa4\\x04\\x87\\x53\\x6b\\x03\\xea\\x3b\\x6d\\x8f\\xda\\xd5\\x8a\\xcc\\xad\\\r\n\\x50\\xcb\\xd4\\x01\\x45\\x00\\x06\\xbe\\xb9\\x80\\x16\\x00\\x0d\\x7d\\x71\\xfb\\\r\n\\x42\\x46\\x42\\xcd\\x21\\xd4\\x11\\x63\\xb8\\x16\\xb7\\xe7\\xbe\\x2a\\xa5\\x2c\\\r\n\\xb7\\x43\\x9b\\xd0\\x77\\x3e\\x6d\\xdf\\xfd\\xb1\\x34\\xf9\\x26\\x69\\x19\\x6e\\\r\n\\x08\\x2a\\xc8\\x74\\xcc\\x2f\\xf1\\x03\\xa5\\x98\\x76\\xdf\\xc6\\x12\\x53\\xc8\\\r\n\\x92\\x38\\x82\\xda\\x4b\\xe5\\x3a\\x13\\x63\\xba\\xb1\\xb7\\xf3\\x3d\\xb1\\x4c\\\r\n\\xa1\\x85\\x44\\xae\\xe2\\x39\\x04\\xd3\\x74\\xde\\xc7\\x32\\xd3\\xe6\\xcd\\x7b\\\r\n\\xec\\x48\\xca\\x06\\x9d\\xef\\x70\\x74\\xe6\\xc1\\x5f\\xec\\xaf\\x0f\\xff\\x00\\\r\n\\x0b\\x96\\xa6\\x28\\x69\\x63\\x35\\x99\\x0a\\xa5\\x49\\x8d\\xa5\\xf8\\x1c\\x30\\\r\n\\x72\\x42\\x95\\x59\\x3b\\xae\\x50\\x4e\\x84\\x62\\xbf\\x8a\\xf1\\x4e\\x1c\\xd4\\\r\n\\x1c\\x46\\x8a\\xb6\\xa5\\x04\\xd4\\x81\\x27\\x10\\xd4\\xc9\\x94\\xb5\\x3b\\x72\\\r\n\\x9d\\xad\\x1b\\x11\\x9d\\x3a\\x1a\\xd6\\x3a\\xee\\x09\\x27\\x12\\xf1\\xae\\x2a\\\r\n\\xd4\\x90\\xb5\\x43\\xcb\\x53\\x57\\x2c\\x0c\\xc8\\x25\\x22\\x27\\x7e\\x62\\x34\\\r\n\\x83\\x9c\\xc7\\x22\\x1c\\xc4\\x29\\x5b\\x9b\\x9b\\xea\\x49\\xbe\\x25\\x5a\\xba\\\r\n\\xfa\\xf9\\x9a\\xb4\\x0f\\x7a\\x96\\x38\\x5b\\xa0\\xfc\\x25\\x6f\\x18\\x5b\\xeb\\\r\n\\x70\\x00\\x0b\\x7f\\x18\\xa9\\x41\\xcb\\x5e\\x95\\x49\\xa0\\x73\\x1c\\xa8\\x05\\\r\n\\xb2\\xfd\\x2c\\x0d\\xb6\\x37\\xf1\\xdf\\x12\\xc3\\xc1\\xa1\\xe0\\x74\\xb5\\x12\\\r\n\\xd0\\x24\\x55\\x93\\x5f\\x24\\xa4\\x68\\x58\\xe6\\x02\\x77\\x8c\\x9c\\xae\\xbf\\\r\n\\xc0\\x4a\\xe4\\x0d\\xd5\\x66\\x18\\xa6\\x25\\xb8\\x37\\x15\\x88\\x2a\\xdb\\xde\\\r\n\\xe8\\x1f\\x41\\x7b\\x66\\x33\\xc6\\x7d\\x32\\xfc\\x86\\x12\\xa2\\x9d\\x78\\x3d\\\r\n\\x5c\\x31\\x02\\xa4\\x70\\xc8\\x60\\x8e\\x26\\x6b\\x29\\x36\\xfb\\x59\\x37\\xcc\\\r\n\\xf9\\xcb\\x20\\xb6\\xc3\\xd2\\xe6\\xf9\\x11\\xbd\\x9e\\xae\\x55\\x46\\x0c\\x27\\\r\n\\x81\\xf2\\x37\\xdc\\x36\\xcb\\x78\\xf6\\xd0\\x83\\xeb\\xbd\\xb7\\xc0\\x72\\x23\\\r\n\\x65\\x26\\xf1\\xbb\\x65\\x7e\\xe5\\x59\\x6c\\xca\\xc7\\xc1\\xb9\\x16\\x3a\\x77\\\r\n\\x5e\\xf8\\xd4\\x69\\xd5\\xa6\\x9f\\x7b\\xff\\x00\\xe1\\x8e\\x29\\xec\\xef\\xec\\\r\n\\xda\\xa5\\x7a\\x79\\x32\\xc1\\x26\\x5e\\x4b\\x96\\x1f\\x69\\x1e\\x87\\x30\\x6d\\\r\n\\x35\\xd6\\xf7\\xf5\\xf4\\xd6\\x49\\x26\\x84\\xb7\\xdb\\xdc\\x6a\\x0e\\x55\\x0d\\\r\n\\xde\\xdf\\x2f\\xc3\\x15\\x75\\x72\\x3b\\x00\\x4d\\xd6\\x31\\x98\\x93\\x96\\xd6\\\r\n\\xb6\\xb7\\xff\\x00\\x35\\xbc\\xf9\\xb6\\x23\\x72\\xf7\\x95\\xae\\xc4\\x02\\x33\\\r\n\\x58\\x0d\\x6d\\x61\\x60\\x74\\x1a\\x9f\\xa7\\xd3\\x1e\\xcc\\x7b\\x39\\x37\\x14\\\r\n\\x47\\x91\\x08\\xe5\\xd3\\xb8\\x35\\x6e\\x4d\\xb2\\x06\\xf8\\x5b\\x7e\\xab\\xb0\\\r\n\\xca\\x00\\xf9\\xec\\x0e\\x28\\xa6\\x4e\\x1f\\x04\\x74\\xc8\\x49\\x58\\x93\\x24\\\r\n\\x6c\\xdf\\x73\\x5b\\xb3\\x81\\xd9\\x98\\x8b\\xdf\\x7b\\x6f\\xe7\\x1e\\xd8\\x71\\\r\n\\x4a\\x89\\xa6\\xe5\\xe6\\x65\\x80\\x36\\x9a\\xdb\\x98\\x4d\\xfa\\x9b\\xce\\xf6\\\r\n\\x0b\\xdb\\x14\\x15\\x4b\\x0b\\x2f\\x39\\x9e\\x3c\\xe3\\xa3\\x5f\\xbc\\x3d\\x0e\\\r\n\\xb6\\x3b\\x0f\\x38\\x68\\x8d\\x5c\\x01\\x97\\xf7\\x91\\xb5\\xd2\\xfe\\x3f\\x84\\\r\n\\x8b\\x7e\\x56\\xc7\\x04\\x52\\xc4\\x09\\x2f\\x9a\\x3b\\x0f\\x87\\x5b\\x03\\x6f\\\r\n\\x4d\\x3f\\x1b\\x8c\\x4c\\x50\\x28\\xb0\\xd7\\xcf\\x8d\\xb6\\xc4\\x99\\x7b\\x91\\\r\n\\x7b\\x8f\\x9f\\x9d\\xbd\\x71\\x5d\\x55\\x1f\\xc3\\xf0\\x8c\\xba\\xbf\\xd3\\x6f\\\r\n\\x3e\\x9f\\x4f\\xc2\\xa8\\xaa\\x5a\\x48\\xdb\\x31\\xcd\\x98\\x1b\\x76\\xb6\\xc0\\\r\n\\x8b\\xdb\\x7d\\x30\\x38\\x94\\x02\\x22\\xb2\\x2c\\xac\\x08\\xca\\xcd\\x6d\\x01\\\r\n\\x6d\\x7e\\x23\\xea\\x36\\xd3\\x5f\\x96\\x38\\x8d\\x53\\x55\\xe5\\x82\\x2f\\xdc\\\r\n\\xc5\\x66\\x51\\xe4\\x91\\x63\\xf5\\x1f\\xcb\\x14\\xb1\\xaf\\xb9\\xd4\\xa6\\x7b\\\r\n\\x48\\x72\\x32\\x82\\x6c\\x3a\\x1a\\xee\\x06\\x29\\x23\\x88\\x9f\\xb6\\x98\\xc4\\\r\n\\xaa\\x0b\\x02\\x05\\xcd\\xd7\\x60\\x37\\xd0\\xff\\x00\\xb6\\x25\\xaa\\x5f\\x7a\\\r\n\\xce\\x91\\x9c\\x92\\x00\\xa5\\x98\\x5b\\x39\\x1f\\x7b\\x6f\\x40\\x7f\\x1c\\x55\\\r\n\\xb6\\x4a\\x5a\\x58\\xc0\\xea\\x9a\\xd5\\x2e\\x36\\x39\\x56\\xe1\\x07\\xa7\\xde\\\r\n\\x3f\\x41\\xa6\\x98\\x8a\\x53\\x0c\\x71\\xc8\\x01\\x1d\\x77\\xf5\\xdc\\x1f\\xcb\\\r\n\\x15\\x91\\x8a\\xa9\\x38\\x77\\x13\\x8c\\x05\\x35\\x88\\x8f\\xab\\x74\\x2d\\x54\\\r\n\\x36\\x59\\x2c\\x7b\\x31\\xe9\\x7b\\x1d\\xf5\\x23\\x11\\x47\\x76\\x69\\xb2\\xe5\\\r\n\\x67\\xea\\xb6\\xf7\\x27\\x7f\\x96\\x63\\xa9\\xb0\\xfa\\x62\\xae\\x86\\xc0\\x38\\\r\n\\x6d\\xac\\xd6\\xec\\x3d\\x35\\xb7\\xaf\\xa6\\x98\\xca\\xca\\x7a\\xbb\\x1d\\xb6\\\r\n\\xc3\\x33\\x4a\\xc1\\x75\\xd1\\x81\\x1f\\x9f\\x7b\\x6c\\x2f\\x82\\x01\\x02\\xe0\\\r\n\\x58\\x5f\\x5d\\x89\\xd3\\xbf\\xa7\\x8f\\xeb\\x82\\x5a\\xc7\\x2d\\xb4\\xf0\\x06\\\r\n\\xbf\\x2f\\xf8\\x38\\x76\\x21\\x6c\\xde\\x2f\\xe3\\x0d\\x25\\x9c\\xdf\\xb2\\xdc\\\r\n\\x0f\\xa6\\x27\\x47\\x76\\x0f\\xf1\\x31\\x60\\x42\\xd8\\x58\\x65\\x6d\\x2f\\xaf\\\r\n\\xd4\\xe8\\x07\\x6f\\x38\\xe0\\x95\\x55\\xfc\\x4e\\x4e\\x23\\xc2\\x2a\\x29\\xa4\\\r\n\\xa7\\x8e\\xa2\\x26\\x92\\x9a\\x7d\\x5b\\x99\\x53\\x49\\xf6\\xa9\\xf6\\x83\\xa4\\\r\n\\x67\\x8b\\x9b\\x1d\\xb4\\xb8\\x64\\xf8\\xb2\\x90\\xcd\\xc2\\x66\\xa7\\x8b\\x96\\\r\n\\xe8\\xec\\x6d\\x98\\xed\\x72\\xa4\\x7c\\x85\\xf4\\xb1\\xc5\\x3c\\xb9\\x0b\\x44\\\r\n\\x41\\xb0\\xd8\\x79\\xd2\\xd6\\x1e\\x9a\\x76\\xb8\\xed\\x8a\\x3e\\x0f\\xee\\xbe\\\r\n\\xd6\\x47\\x3c\\x63\\x9b\\x4f\\x50\\xbc\\xd6\\xcf\\x73\\xca\\x79\\x1e\\xd6\\xbd\\\r\n\\xac\\x7f\\xa7\\xd7\\x5e\\x1d\\x3c\\x71\\x52\\xc2\\xb6\\x00\\x72\\xd4\\x6d\\xa6\\\r\n\\xdd\\x8d\\xbf\\xb6\\x38\\xfb\\xac\\x94\\xac\\xac\\x77\\xb8\\xf0\\x2d\\x6b\\x7f\\\r\n\\x5f\\xcb\\x10\\xf0\\x43\\x1b\\x1a\\x98\\x5a\\xe9\\x72\\xc3\\x2e\\xdf\\x2b\\x8b\\\r\n\\xed\\xde\\xdb\\xfd\\x31\\xed\\x17\\x1e\\x96\\x9e\\x2e\\x59\\xce\\xb6\\x50\\x84\\\r\n\\x0d\\x6e\\x36\\x3f\\xaf\\xcf\\x0b\\x37\\xbd\\x72\\xfa\\x73\\xb4\\x65\\xbe\\xd1\\\r\n\\x88\\xfd\\xd3\\x1d\\x88\\x3e\\xa7\\xe9\\xa6\\xb6\\xd0\\x4d\\x1a\\x2b\\x33\\x01\\\r\n\\x76\\x07\\xab\\x62\\xdf\\x43\\xb9\\xf4\\x1e\\x3d\\x31\\x3d\\x4e\\x9a\\x2a\\xae\\\r\n\\xd7\\x2c\\x3c\\x7a\\x0e\\xff\\x00\\xaf\\x9d\\x4d\\x5c\\x69\\xa1\\x9b\\x33\\xdf\\\r\n\\x5c\\x97\\x3a\\x9d\\xad\\xb8\\xd7\\xc7\\xd3\\x13\\x49\\xcf\\x05\\x7d\\xd6\\x41\\\r\n\\x6f\\xbe\\x73\\x03\\xfe\\xab\\x0b\\x0b\\x5e\\xc7\\x6d\\xb0\\xab\\x55\\x4a\\xe0\\\r\n\\xda\\xe8\\x2d\\x70\\x3c\\x03\\x7b\\xe9\\x71\\xe0\\x1f\\xa6\\x23\\x9e\\xed\\x39\\\r\n\\x31\\x67\\x69\\x5c\\xbd\\xfb\\xdd\\xa3\\xcb\\x62\\x00\\xed\\x7b\\xff\\x00\\xce\\\r\n\\x38\\x4c\\xb1\\x56\\x7f\\xd3\\xb9\\xe9\\x64\\x66\\x82\\x7e\\x1f\\x35\\x60\\x47\\\r\n\\xe8\\x24\\xac\\x9c\\x8a\\xb5\\xca\\x7e\\x20\\x0b\\x23\\x2e\\x9b\\x00\\xf7\\xb6\\\r\n\\xa3\\x1c\\x02\\x8a\\xa3\\x8a\\x70\\xa4\\x53\\x9e\\x51\\x41\\x57\\xcc\\x79\\x5b\\\r\n\\x4c\\xb4\\x95\\x3f\\xbe\\x21\\xb6\\xba\\xbc\\x20\\x5b\\x72\\x48\\x3e\\x31\\xed\\\r\n\\x25\\x62\\x54\\x35\\x25\\x20\\xb2\\xb4\\x3c\\xfc\\xc1\\x35\\x05\\x3a\\xb2\\x67\\\r\n\\xd2\\xc4\\x80\\x42\\x5a\\xfa\\x78\\x03\\x43\\x48\\x5f\\xde\\x23\\xb1\\xea\\xcb\\\r\n\\x24\\x7a\\x12\\x0f\\x4b\\x74\\x8b\\x8e\\xf7\\xbe\\x86\\xdf\\x96\\x24\\xa0\\x4a\\\r\n\\x38\\xe4\\xaf\\xe3\\x2b\\x32\\x99\\xa2\\x2b\\x05\\x2c\\x21\\x5e\\x79\\x43\\x0b\\\r\n\\x2d\\x44\\x82\\xd7\\x81\\x50\\x1b\\x85\\x61\\xcc\\x92\\xd6\\xca\\xa7\\x67\\xa9\\\r\n\\x87\\x88\\xcc\\x23\\x92\\xaf\\x33\\x72\\xd6\\x35\\x4a\\xb0\\xd0\\xb9\\x45\\x05\\\r\n\\x02\\xa0\\x65\\xcb\\xa2\\xda\\xdb\\xdc\\xee\\x4e\\xe6\\x8e\\x17\\x86\\x0e\\x33\\\r\n\\x47\\xae\\x63\\x48\\xb5\\x0b\\x9a\\xd6\\x75\\xa7\\x9e\\x39\\x41\\x06\\xff\\x00\\\r\n\\xc0\\x5c\\x69\\xeb\\xea\\x31\\x4e\\x04\\x94\\x4b\\x29\\xb9\\x11\\x47\\x08\\x60\\\r\n\\x0d\\xec\\x0c\\x8b\\x19\\x0e\\x3f\\xbd\\xbb\\x62\\x47\\x2d\\xc1\\xab\\xcc\\x68\\\r\n\\x3e\\xc4\\x43\\x26\\x83\\x42\\xa9\\x22\\x93\\x71\\xd8\\x58\\x1f\\x4e\\xd8\\x59\\\r\n\\xa3\\x82\\x57\\x65\\xa6\\x15\\x34\\xb5\\xb4\\x80\\x98\\x7c\\x1b\\xe4\\x39\\x5f\\\r\n\\x4b\\x4b\\x13\\x80\\x33\\x00\\xdd\\x5b\\xef\\x6c\\x7b\\xbc\\xe7\\x51\\x35\\x32\\\r\n\\x83\\xb2\\xb4\\xaf\\x99\\x47\\x65\\x6f\\xf0\\xc7\\x51\\xb1\\xd4\\xeb\\xdf\\x02\\\r\n\\x86\\x3e\\x2b\\x41\\x05\\x09\\x3d\\x42\\x30\\xd4\\x32\\xb9\\xd5\\x5a\\xc3\\x35\\\r\n\\x39\\x6d\\x33\\x65\\x23\\xbf\\xf3\\xdf\\x8b\\x44\\x68\\xe5\\x92\\x91\\xc2\\xf3\\\r\n\\xd1\\x8a\\xba\\xdf\\xe1\\xb7\\xae\\xbf\\x3b\\xfe\\x78\\xa8\\x49\\x80\\xfd\\xd4\\\r\n\\xff\\x00\\x69\\x6e\\xb3\\x19\\x0a\\x56\\xfe\\x82\\xd6\\xb9\\xdf\\x1c\\x3e\\x86\\\r\n\\x5a\\x89\\xa0\\xa3\\x81\\x0b\\xcb\\x33\\x13\\x90\\x75\\x12\\x6f\\xd3\\x7f\\x03\\\r\n\\xb9\\x3a\\x0b\\x6e\\x77\\xc7\\x08\\xf6\\x7c\\x7b\\x3d\\xc2\\x55\\x26\\xb7\\x36\\\r\n\\x74\\x59\\x5c\\x77\\x91\\x8f\\xc2\\xc4\\x13\\x71\\x1a\\x03\\xf6\\x77\\xbe\\x6f\\\r\n\\x8f\\x40\\x71\\x2f\\x10\\x8f\\x99\\x2a\\xc5\\x22\\x93\\x19\\x60\\x4a\\x91\\x7b\\\r\n\\x9f\\x4f\\x4b\\xda\\xff\\x00\\xd7\\x1c\\x6b\\x88\\x53\\x0c\\xe9\\x34\\x22\\x49\\\r\n\\x18\\x74\\x36\\x61\\xf6\\x66\\xda\\x1b\\x76\\x61\\xf8\\x9c\\x48\\x4d\\xd1\\xcc\\\r\n\\x8d\\x23\\x0e\\x91\\x70\\x74\\x03\\x5b\\x8e\\xda\\x1b\\xeb\\xfd\\x86\\x38\\x35\\\r\n\\x52\\xd4\\x45\\x10\\x42\\xab\\x21\\xb4\\x6c\\xac\\xdf\\x79\\x6c\\x2e\\x75\\xd3\\\r\n\\x3e\\x84\\x1d\\x3b\\xfc\\xcd\\x3c\\x9c\\x86\\xd3\\x46\\xee\\x31\\x3d\\x7e\\x70\\\r\n\\x0d\\xc8\\x22\\xdf\\x97\\xeb\\x5c\\x19\\xae\\x33\\x92\\x35\\xfc\\x7f\\x0b\\x62\\\r\n\\xb6\\x5c\\xe4\\xb0\\x19\\xb5\\xea\\x5f\\x23\\x0b\\x14\\x32\\x20\\x64\\x01\\x5a\\\r\n\\x40\\x6c\\x00\\xd0\\x30\\xda\\xe3\\x63\\xad\\xf1\\x5b\\x12\\xa5\\x2c\\xa9\\xa1\\\r\n\\x0f\\xab\\x9b\\x7c\\x36\\xd8\\xa8\\x1d\\xef\\xbf\\xfb\\x91\\x88\\x55\\xbe\\x1f\\\r\n\\x8b\\x7d\\x7d\\x37\\x1f\\xa2\\x2f\\x84\\x51\\x94\\x86\\x16\\x6f\\xe6\\x3b\\x7e\\\r\n\\xbb\\xe0\\x25\\xd4\\x6e\\x35\\xb7\\xa7\\x7c\\x2d\\x1f\\x3e\\x58\\xa3\\x24\\xb3\\\r\n\\x19\\x54\\x0e\\xca\\x00\\x37\\x26\\xc3\\x7d\\x3e\\x9a\\x7e\\x2f\\xf6\\x8f\\x51\\\r\n\\xa2\\x84\\x8d\\x56\\x18\\xc9\\xd8\\x28\\x21\\x46\\xff\\x00\\x3d\\x6c\\x06\\xf8\\\r\n\\x2a\\xa2\\x8d\\x15\\xac\\x5b\\x9b\\x2e\\xa3\\xbf\\x4d\\x94\\xe9\\xf8\\xe3\\x81\\\r\n\\xf2\\x6a\\x78\\x41\\xa5\\xa8\\x00\\x4b\\x13\\x47\\x51\\x4c\\x49\\xff\\x00\\xba\\\r\n\\xac\\x16\\x64\\x5f\\xf5\\xa6\\xf7\\xd7\\xe5\\x8a\\x6a\\x45\\x14\\xab\\x2b\\x65\\\r\n\\xbe\\xf6\\x5d\\x4e\\xda\\x7e\\x3b\\xfa\\x6b\\xf5\\xaa\\xe5\\xc8\\xa5\\x14\\xd9\\\r\n\\x85\\xf7\\xb7\\x40\\xca\\x32\\xeb\\xb1\\xb9\\xde\\xfa\\x00\\x7c\\xe1\\xd2\\x30\\\r\n\\x37\\x67\\x93\\x53\\xa9\\x19\\x41\\xda\\xc0\\x77\\xb5\\xaf\\x7b\\xdb\\xeb\\x88\\\r\n\\x23\\xb3\\x82\\x46\\xb6\\xd3\\x5f\\x4b\\x78\\x3e\\x77\\xfe\\x78\\x65\\x6c\\xac\\\r\n\\xc8\\x0e\\x44\\xe5\\xf3\\x08\\x20\\xe5\\x12\\x9b\\x25\\xfb\\xea\\x41\\xda\\xf8\\\r\n\\x5c\\xa4\\x5c\\xe8\\x07\\x6d\\x7f\\x5d\\xf1\\x3c\\x89\\x6d\\xb4\\x03\\xfd\\xf5\\\r\n\\xbe\\x26\\x94\\xf3\\x15\\x56\\xc4\\xb3\\x00\\x2c\\x6f\\xbb\\x5b\\xf2\\x18\\x51\\\r\n\\x1c\\x48\\xcd\\x23\\x0e\\x93\\xd4\\xed\\x60\\x14\\x5b\\x7b\\xf8\\xf3\\xf9\\x63\\\r\n\\xd9\\x8f\\x68\\x20\\xa4\\xe2\\x8b\\x1e\\x78\\x56\\x02\\x01\\x56\\x62\\xa7\\x9a\\\r\n\\xcc\\xd6\\xd1\\xdb\\xe1\\xd0\\x30\\x1f\\x3d\\xfb\\x9e\\x2d\\xc5\\x29\\x20\\x15\\\r\n\\x29\\x30\\xcb\\xf1\\x47\\x10\\xe6\\xc6\\x4e\\x5b\\xf4\\x5f\\x26\\x79\\x19\\x48\\\r\n\\x70\\xd1\\x82\\x55\\x77\\xd4\\x9c\\x2d\\x58\\x32\\x82\\x0d\\xa2\\x62\\x40\\xd6\\\r\n\\xff\\x00\\x2b\\x9b\\x79\\xf5\\xc7\\xb2\\x11\\x41\\x5b\\x52\\x8d\\x26\\x42\\x54\\\r\n\\x15\\xb3\\xaf\\xc5\\xa6\\x82\\xf6\\xf3\\xfa\\xdb\\x1f\\x60\\x5b\\x22\\x10\\x39\\\r\n\\x6a\\x54\\xc6\\x2d\\xa3\\x78\\xb7\\xe7\\x8e\\x3f\\x4e\\xd5\\x94\\xfc\\xa8\\x9c\\\r\n\\xe6\\xb1\\x37\\x52\\x36\\xbf\\x7d\\x71\\x57\\x53\\xc4\\xb8\\x1d\\x1d\\x90\\x19\\\r\n\\x16\\xc4\\x9b\\x9b\\xe6\\xb1\\xb8\\xdb\\xf3\\x18\\xe3\\x9e\\xd4\\x1e\\x24\\xac\\\r\n\\x8d\\x1f\\x2e\\x42\\x75\\xd7\\xe1\\xf3\\xeb\\xe2\\xdf\\x3f\\x96\\x29\\x2b\\x9a\\\r\n\\x19\\x00\\xf4\\xf4\\xd4\\x77\\xb8\\xb6\\x27\\x9f\\x3d\\x9c\\x68\\x58\\x5c\\xdb\\\r\n\\xb9\\x1d\\xfe\\xbe\\x9a\\x62\\xa2\\x4e\\x93\\xf2\\xc5\\x32\\x73\\x2b\\x92\\xc6\\\r\n\\xdb\\xb8\\x1e\\xb6\\x36\\xf9\\x9d\\x36\\xd7\\x05\\x16\\x76\\x79\\x72\\x4d\\x29\\\r\n\\x42\\xab\\xaf\\xee\\xd5\\x94\\xd8\\xe4\\x5d\\x2f\\xa7\\x9e\\xe3\\x6d\\x06\\x2b\\\r\n\\x2a\\x20\\xb3\\x53\\x37\\x43\\xa1\\x32\\x21\\x75\\x51\\x98\\x30\\xb0\\xf8\\x74\\\r\n\\xcb\\xd8\\xdc\\xe8\\x6f\\xa5\\xf1\\x21\\x85\\xfa\\xa1\\x58\\xe0\\x92\\x3c\\x84\\\r\n\\x4c\\xa1\\x98\\xca\\xe7\\xe2\\xcd\\xaf\\x61\\xaa\\x91\\x93\\x63\\xa1\\xd3\\x1e\\\r\n\\xc4\\xc7\\xfb\\x43\\x84\\xfb\\x41\\x4b\\xc9\\xb7\\x36\\x05\\x91\\xb9\\x77\\xca\\\r\n\\x65\\x92\\x9e\\xaa\\x0e\\x64\\x61\\x94\\x84\\x56\\x7c\\x84\\xae\\xba\\xed\\x65\\\r\n\\xd3\\x1e\\xc6\\xd3\\x72\\xa8\\x6b\\xa6\\x69\\x7a\\xa6\\xa5\\x9e\\x1e\\x40\\x66\\\r\n\\xc8\\xa6\\x16\\x12\\xa9\\x0a\\x0e\\x53\\x23\\x31\\x0a\\x45\\xae\\xb9\\x58\\x0d\\\r\n\\x09\\xc3\\x0a\\x8e\\x35\\xc4\\x22\\xfd\\x95\\x4b\\x3c\\xb3\\xd4\\x4a\\x6d\\x0a\\\r\n\\x37\\x34\\xe6\\x6f\\xde\\x3d\\xc8\\x5c\\x91\\xe9\\x98\\x96\\x6c\\xa8\\x01\\xd7\\\r\n\\x43\\x80\\x9c\\x3f\\xd9\\xb6\\xa6\\x5a\\x7e\\x47\\x16\\xe2\\xf2\\x16\\x0f\\x50\\\r\n\\x18\\x1a\\x1a\\x09\\x3a\\x81\\x48\\xad\\x99\\x6a\\x2a\\x93\\xbb\\x92\\xd1\\x23\\\r\n\\x6a\\x99\\x8d\\xc0\\x7a\\xaa\\xc6\\x90\\xb5\\x46\\x7a\\xb5\\x77\\x66\\x7c\\xf7\\\r\n\\x77\\x07\\xb9\\x0d\\xad\\xc7\\xa5\\xf1\\x96\\x9a\\x59\\xa5\\x8f\\x2a\\xb9\\x75\\\r\n\\xbd\\x31\\x75\\xd5\\x32\\x92\\x72\\x02\\x7e\\x1c\\x8c\\x76\\xf5\\xef\\x8e\\x1f\\\r\n\\x0f\\xee\\x52\\xec\\x5e\\xaa\\x9a\\xbe\\x8d\\xee\\x73\\x59\\x9a\\x27\\x95\\x17\\\r\n\\xbd\\xae\\x56\\xc3\\xe7\\xa6\\xd8\\xa3\\xaf\\x92\\x1a\\x4a\\xca\\x6c\\xba\\x4e\\\r\n\\x29\\xee\\x6f\\x62\\xb9\\x24\\xe6\\x91\\x9b\\x71\\x98\\x80\\x0e\\xfb\\x0b\\x0e\\\r\n\\xf8\\xa7\\x6a\\x88\\xb8\\x5f\\x13\\x8d\\x8f\\x45\\x64\\x50\\x46\\xa9\\xf1\\x2a\\\r\n\\xea\\xcc\\xe2\\xe4\\x93\\xad\\x96\\xe4\\x65\\xdf\\x41\\x7d\\xe9\\x66\\x32\\x50\\\r\n\\x32\\x88\\x81\\x7a\\x50\\xce\\x96\\x27\\xf7\\x72\\x8c\\xb3\\x79\\xf8\\x1b\\x24\\\r\n\\xa2\\xc3\\x4c\\x8d\\xbe\\xa4\\x27\\x15\\xa0\\x28\\x86\\x4e\\x1d\\x1b\\xc8\\x55\\\r\n\\x4c\\x8f\\x9e\\x21\\x99\\xc8\\xea\\x6b\\x10\\x48\\xbb\\x5c\\xea\\x4f\\xcf\\x14\\\r\n\\x1e\\xd1\\x4d\\x4f\\x13\\x4f\\x53\\x45\\x14\\x34\\xf9\\x96\\xd0\\x86\\x71\\xd4\\\r\n\\x4f\\xef\\x29\\x09\\xfb\\x45\\x7b\\x6a\\xce\\xa4\\xab\\x1d\\xb6\\xb0\\x9b\\x87\\\r\n\\x71\\x1e\\x2a\\x95\\x5c\\x58\\xac\\x52\\xdc\\x19\\xa3\\x06\\xcd\\x3b\\x44\\x9f\\\r\n\\x0a\\x80\\xab\\xd6\\xd6\\xee\\x7b\\x83\\x9b\\x71\\x83\\x5e\\xf5\\x4c\\xf0\\xcb\\\r\n\\x08\\xa7\\x48\\xa2\\x7e\\x98\\x97\\x23\\xb3\\x86\\xd7\\x9c\\xc6\\xec\\x48\\xd7\\\r\n\\xa7\\xa5\\x57\\xb0\\xee\\x7f\\xe9\\xf7\\x04\\xe1\\xf0\\xd0\\xbf\\x16\\x69\\x62\\\r\n\\xa8\\xa8\\x66\\xb3\\x9b\\xf5\\xc6\\xba\\xe5\\x81\\x54\\xe6\\x65\\xb8\\xb1\\x90\\\r\n\\xe9\\x9b\\x45\\x5d\\x33\\x63\\xdb\\x3f\\x6c\\x95\\x24\\x3c\\x3e\\x89\\x54\\xd5\\\r\n\\xa2\\x31\\x9e\\x57\\x6e\\x88\\x94\\x8b\\x47\\x12\\x81\\xa5\\xd5\\x6c\\x4f\\xe1\\\r\n\\xb8\\xc5\\x1c\\xf3\\x9b\\xb9\\x72\\xc5\\xae\\xc7\\x29\\xd3\\x50\\x49\\xfc\\x4f\\\r\n\\x8f\\xc3\\xb6\\x38\\x90\\x69\\x24\\xb9\\x1b\\x5a\\xf7\\xee\\x7f\\xe7\\x05\\x64\\\r\n\\x54\\xd4\\x93\\xad\\xff\\x00\\x1f\\xd7\\xcf\\x14\\x73\\x54\\x43\\x32\\x98\\x5a\\\r\n\\xcf\\x29\\x01\\x80\\x3a\\xf6\\x2b\\xa8\\xf5\\xc5\\x35\\x6c\\xb5\\x14\\xe2\\x56\\\r\n\\x4f\\xf1\\x30\\x80\\x95\\x03\\x6c\\xeb\\xf7\\x5f\\x4e\\xe3\\x4c\\xe7\\xb9\\xd7\\\r\n\\x7c\\x35\\x6c\\x62\\x3b\\xbe\\xf7\\xd8\\x7e\\x7f\\x2f\\xae\\x2a\\x3d\\xa0\\xa6\\\r\n\\x85\\x64\\x8a\\x45\\x2a\\x08\\x36\\x7e\\xff\\x00\\x87\\x9d\\xfb\\xe2\\x3e\\x2f\\\r\n\\x48\\x5f\\x98\\xf5\\x43\\x2b\\x03\\xd0\\x63\\x7c\\xda\\x11\\xbd\\xb3\\x0e\\xfe\\\r\n\\x45\\xfb\\x62\\x4e\\x37\\x47\\x4f\\x9b\\x91\\x20\\x27\\x5d\\x00\\x36\\x2d\\x6f\\\r\n\\x36\\xb7\\x4d\\xba\\x87\\xae\\x87\\x07\\x88\\x4d\\x51\\x99\\xcc\\xd2\\x5d\\xae\\\r\n\\x32\\x91\\x68\\xc0\\xff\\x00\\x2d\\xef\\x7d\\xf5\\xd8\\xdf\\xd3\\x7e\\x64\\x99\\\r\n\\xb7\\x28\\x56\\xf6\\xf1\\x7d\\xbe\\xbb\\xf6\\xc7\\x0b\\xa4\\x9a\\xb5\\x1a\\x59\\\r\n\\x25\\x54\\x44\\x36\\xf8\\x86\\x6b\\xf9\\xb6\\xe0\\x7d\\x30\\xd4\\xb9\\x1a\\xca\\\r\n\\x41\\xcc\\x7c\\xfe\\x38\\xa2\\x81\\xd5\\xa4\\x98\\x27\\x52\\x2b\\x2a\\x10\\x0f\\\r\n\\xc6\\xe2\\xc1\\xaf\\x6e\\xdb\\xe1\\x63\\x58\\xe3\\x64\\x9e\\x58\\xe3\\xe6\\xdb\\\r\n\\xe2\\x20\\x9e\\xd6\\xb0\\x5b\\xb5\\xf4\\xfd\\x69\\x8f\\x77\\xa2\\x8e\\x44\\x39\\\r\n\\xa4\\xa8\\xd7\\xa5\\x55\\x42\\xc2\\x3c\\xdc\\xb5\\xce\\x6f\\xa5\\xbf\\x2b\\xf0\\\r\n\\x7e\\x1d\\x9d\\x93\\x2c\\x4a\\x88\\x3a\\xd8\\x2e\\xc0\\x37\\x63\\xdb\\x5d\\x49\\\r\n\\x00\\x7e\\x18\\x9d\\x23\\x54\\x10\\x46\\x51\\x58\\x20\\x25\\x54\\x6c\\xba\\x6a\\\r\n\\x49\\xd8\\x9b\\x68\\x35\\xbe\\xb8\\xa8\\x85\\x10\\x67\\xd5\\x76\\xcd\\x71\\xeb\\\r\n\\x7d\\x75\\x1f\\xca\\xf6\\xd3\\x0e\\x01\\x2c\\x51\\xb5\\xd6\\xfa\\xdc\\x0e\\xfb\\\r\n\\xff\\x00\\x2d\\x06\\x1c\\x15\\x01\\xd6\\xcf\\x97\\x7d\\xef\\xf7\\x7b\\x6f\\x7b\\\r\n\\xfd\\x30\\xe7\\x25\\x1c\\x5b\\x8f\\x7c\\x98\\xc8\\x6e\\x7f\\xec\\xd3\\x8e\\x52\\\r\n\\x1f\\xac\\x99\\x8f\\xd3\\x13\\x4e\\x00\\xb7\\xf5\\xf9\\x6f\\xdb\\xb6\\x2b\\xea\\\r\n\\x08\\xa7\\xa8\\x28\\x6c\\xcb\\x1b\\x59\\xbc\\x77\\xee\\x3d\\x3c\\x11\\xb6\\x28\\\r\n\\xea\\xd5\\x20\\x89\\xe5\\x62\\xd2\\xa6\\x6c\\xab\\x7c\\xc6\\x47\\x0e\\x6d\\xae\\\r\n\\xc1\\x7f\\xcd\\x6d\\x07\\x9d\\xb0\\xb2\\x4d\\xc5\\xab\\x39\\x75\\xcd\\x27\\x29\\\r\n\\xd1\\xd5\\x29\\xe9\\x9c\\xaa\\xf3\\x3f\\xed\\xe7\\xfe\\x2d\\x7e\\x22\\x7c\\xf6\\\r\n\\x03\\x11\\xf0\\x2a\\x38\\xfd\\xde\\x09\\x63\\x2f\\x22\\x82\\x19\\xf3\\x32\\xd8\\\r\n\\xdc\\x5d\\x47\\x56\\xb6\\xbe\\x87\\xfc\\xa4\\xdb\\x1e\\xd0\\x45\\x2d\\x35\\x55\\\r\n\\x25\\x4d\\x2c\\x8c\\xd1\\x57\\x50\\xd2\\x2c\\x9c\\xec\\xcc\\x16\\x7a\\x75\\xf7\\\r\n\\x7d\\x0d\\xbb\\xf2\\x45\\xce\\xba\\x9d\\x3d\\x29\\x6b\\xd4\\x45\\x1a\\x4c\\x1a\\\r\n\\x36\\xd5\\x73\\x90\\x72\\x13\\x73\\xf7\\xbb\\x6b\\xa6\\xb6\\xc7\\xb2\\x9c\\x7d\\\r\n\\x28\\xe7\\x8a\\x36\\x24\\xe7\\x6d\\x2d\\xa8\\xfa\\x5b\\xd3\\x5e\\xf8\\xa3\\x0d\\\r\n\\x54\\xab\\x51\\x11\\xca\\x92\\xae\\x67\\xb6\\xe5\\xb4\\xde\\xfd\\xbf\\xdb\\x5c\\\r\n\\x4b\\xc3\\x9b\\x27\\x30\\x33\\x67\\x5c\\xc6\\xdd\\x98\\x5b\\x41\\xaf\\xe3\\xf9\\\r\n\\x63\\x8c\\x55\\x72\\x69\\xe7\\x8a\\xa2\\x20\\x02\\x86\\x29\\xa6\\xa2\\xff\\x00\\\r\n\\x4d\\xbf\\x44\\xe3\\x89\\xcb\\x1c\\x9c\\x4a\\x76\\x84\\x59\\x15\\xce\\x8b\\xf0\\\r\n\\xb5\\x89\\x04\\xfd\\x4e\\xb8\\x87\\x47\\x5f\\x9f\\xf4\\xc4\\xad\\x99\\x48\\xda\\\r\n\\xd6\\x3f\\xd0\\xff\\x00\\x3c\\x56\\x1d\\x80\\x27\\x2f\\xfb\\xdf\\x6d\\x31\\x4b\\\r\n\\x04\\xd0\\xc9\\x1c\\xf6\\x8d\\x1d\\xd6\\xe8\\x65\\x04\\xad\\x88\\x22\\xc7\\x4d\\\r\n\\x3c\\x9b\\xe2\\xae\\xaa\\xbb\\x3a\\x41\\x1d\\x52\\x19\\x2e\\x46\\x48\\x23\\xe5\\\r\n\\xaa\\x93\\x7f\\xbd\\xf1\\x16\\xda\\xfb\\x60\\xf0\\xa4\\x78\\xcf\\xbc\\x33\\xbc\\\r\n\\xc5\\x4b\\x66\\xcc\\x41\\x06\\xc4\\xdb\\x0d\\x4b\\x53\\x1e\\x78\\xc2\\x3c\\x89\\\r\n\\x14\\x9a\\xee\\x5b\\x51\\xd2\\x6d\\xdf\\x4b\\x5e\\xd7\\xd8\\xe3\\xfe\\x92\\x57\\\r\n\\x01\\x5b\\xc5\\xe8\\xe4\\x93\\xa6\\x6a\\x14\\x61\\x1c\\x84\\x8b\\xbc\\x55\\x31\\\r\n\\x07\\xca\\x0d\\x8d\\xf9\\x72\\x31\\x23\\xb8\\xbf\\x61\\x89\\xe3\\xa6\\xe1\\x93\\\r\n\\x2e\\x41\\x1d\\x15\\x3c\\x55\\x07\\x38\\x8c\\x81\\x19\\x73\\x26\\x69\\xce\\xb7\\\r\n\\x17\\x92\\xfd\\x63\\x6b\\xb5\\x80\\x1a\\x63\\x89\\xf1\\x5a\\x6e\\x17\\x35\\x57\\\r\n\\xb3\\xfc\\x26\\x96\\x3e\\x1c\\x04\\xb5\\x0d\\x5b\\x56\\x0e\\x5a\\xca\\xd5\\xaa\\\r\n\\x42\\xd1\\x44\\x93\\x7c\\x51\\xd2\\xac\\x73\\x32\\x08\\xd5\\xd6\\xf7\\x26\\xc3\\\r\n\\x45\\x10\\xac\\xb1\\x16\\x89\\x45\\xd1\\x58\\x4b\\x19\\xb8\\xda\\xff\\x00\\xea\\\r\n\\xd4\\xda\\xe3\\xfe\\x71\\x1d\\x9a\\x2d\\x2c\\x0a\\xf5\\x23\\x77\\xe6\\x58\\x95\\\r\n\\x3f\\x2b\\xe8\\x47\\x71\\xe9\\x89\\xe9\\xbd\\xe9\\xb9\\xa9\\x78\\x65\\xc8\\x24\\\r\n\\x42\\x34\\xfb\\x45\\x39\\x5c\\x35\\xbc\\xb2\\xec\\x7d\\x31\\x45\\x57\\x22\\x64\\\r\n\\x47\\x89\\xb3\\x53\\xf1\\x08\\xe6\\x69\\x14\\x68\\xb9\\x98\\x67\\x06\\xdd\\x88\\\r\n\\xcd\\x63\\xa0\\xf5\\xc4\\xe9\\xc9\\xad\\xac\\x81\\x41\\x0a\\xb3\\x48\\x35\\xee\\\r\n\\x16\\x46\\x08\\x6d\\xe8\\x84\\x65\\xf4\\x38\\x5a\\xa8\\xa5\\xa2\\x65\\x8d\\x59\\\r\n\\x25\\x5e\\x5a\\xc8\\x2f\\x75\\x7c\\xa1\\x80\\x91\\x7b\\x5c\\x9d\\xc5\\xb4\\x3d\\\r\n\\xcf\\x7a\\x12\\x40\\x72\\xba\\x75\\x59\\x97\\x60\\xc8\\x7e\\x2b\\xfa\\x95\\xb8\\\r\n\\xb8\\xf9\\xf8\\xc7\\xec\\x05\\x93\\xed\\x12\\x78\\x72\\x3f\\x5a\\x66\\x66\\x07\\\r\n\\x2b\\x6a\\xb7\\x1d\\x8d\\x8e\\xa3\\x1c\\x46\\xa4\\x4f\\x51\\xa1\\x7e\\x4d\\xd1\\\r\n\\x22\\x5b\\x90\\xab\\xa5\\xb4\\xbd\\x86\\xda\\xec\\x3c\\xeb\\x8e\\x0d\\x55\\x17\\\r\n\\x0b\\xa5\\xa7\\x12\\xf1\\x18\\xe2\\x09\\x20\\x11\\x24\\xb7\\x63\\x22\\x4b\\xac\\\r\n\\x89\\x20\\x50\\xca\\x03\\x13\\xf6\\x61\\x6c\\x41\\xdc\\xeb\\x8e\\x37\\xc1\\x78\\\r\n\\x7d\\x3f\\x07\\xe2\\xdc\\x62\\x0e\\x1f\\x22\\x54\\x54\\x43\\xfb\\xc5\\x19\\xd7\\\r\n\\x33\\x5b\\x33\\xaa\\xb1\\x1c\\xa5\\x60\\x73\\xb1\\x02\\xf7\\x3a\\xe9\\x8e\\x15\\\r\n\\xed\\x05\\x6f\\x0d\\xa6\\xab\\x82\\x95\\xb9\\x4d\\x55\\xcb\\x3c\\xd5\\xf8\\xd0\\\r\n\\xc7\\x70\\xb9\\x2f\\x7d\\x81\\x37\\x1a\\x83\\xa5\\xf4\\x18\\x54\\xfd\\xb3\\x4d\\\r\n\\x25\\x4c\\xfd\\x15\\xdd\\x25\\xa4\\x51\\x61\\x2a\\xa3\\x0c\\xb9\\xb4\\xfd\\xe3\\\r\n\\x2e\\xe7\\xef\\x05\\x17\\xda\\xf8\\x86\\x99\\xa0\\x39\\x49\\x16\\xfd\\x5e\\xfd\\\r\n\\xb1\\x56\\xbd\\x44\\x74\\x9f\\x5f\\xe7\\xfa\\xf4\\xc4\\x83\\xa0\\x5b\\xf1\\x23\\\r\n\\x41\\xf4\\xf2\\x71\\x01\\x2b\\x24\\x65\\x08\\x46\\x57\\x0d\\x9f\\xc6\\x53\\x72\\\r\n\\x7f\\x5f\\x9e\\x29\\x6a\\xe4\\x9d\\x1e\\x68\\x6a\\x04\\x65\\x4e\\x46\\x84\\x5d\\\r\n\\x64\\x31\\xb0\\xb6\\x6c\\xc6\\xd9\\xae\\x77\\x41\\x7f\\x38\\x1d\\x4b\\xd4\\x4e\\\r\n\\xd9\\xb5\\xef\\x7f\\x4c\\x71\\x29\\x1d\\xaa\\x0a\\x66\\xf8\\x75\\xf3\\xbe\\x23\\\r\n\\xcc\\x4e\\xff\\x00\\xdf\\x14\\xd4\\x93\\x55\\x48\\xd1\\xc4\\x86\\x4b\\x6a\\x7d\\\r\n\\x05\\xec\\x7e\\x67\\xd0\\x60\\xf0\\x99\\xd2\\x34\\x04\\xc3\\x10\\x55\\x1a\\xcf\\\r\n\\x22\\xc5\\xdb\\x5b\\x86\\xd6\\xf7\\xf4\\x36\\x1a\\x76\\xc2\\x51\\x52\\x67\\x8c\\\r\n\\xcf\\x5f\\x1e\\x84\\x1c\\xb0\\xc7\\x24\\xba\\x5f\\xf8\\xec\\xa8\\x3d\\x7e\\x56\\\r\n\\xc1\\xe2\\x3c\\x36\\x9d\\xb9\\x54\\xb4\\xf2\\x54\\x48\\xdb\\xde\\xc8\\xbe\\x49\\\r\n\\xb4\\x77\\xbf\\x8f\\xeb\\x88\\xea\\x78\\x84\\xe4\\x59\\x20\\xa4\\x42\\x3e\\x15\\\r\n\\x8d\\x5e\\x4b\\x7a\\x33\\xdc\\xaf\\xca\\xdf\\x96\\x25\\x69\\x04\\x30\\xc4\\xf2\\\r\n\\xbb\\x33\\xde\\x46\\xbb\\x1d\\x73\\x68\\x82\\xd6\\x5f\\x07\\x4b\\x78\\xf3\\x88\\\r\n\\xa9\\xc1\\xcb\\xf6\\x77\\x55\\x00\\x12\\x46\\x84\\x9d\\x40\\x26\\xdb\\x9b\\x6d\\\r\n\\x7b\\xe9\\x88\\x60\\xe7\\xd9\\x39\\x61\\x08\\x62\\x34\\xfc\\xb4\\xf3\\xf2\\xfe\\\r\n\\x78\\xa1\\x48\\xe8\\xa2\\x50\\xce\\x15\\x9b\\x46\\xb5\\xc8\\x24\\x77\\xb7\\xa7\\\r\n\\xe8\\xe2\\x75\\xa5\\x74\\x67\\x57\\x39\\xac\\x4d\\xd0\\xb3\\x48\\xd6\\x36\\xb6\\\r\n\\x50\\xb7\\x3f\\x8e\\x9e\\x31\\x5b\\x23\\x96\\x64\\x0e\\xc5\\x37\\x6c\\xea\\x2f\\\r\n\\x7b\\x01\\x6d\\x17\\x73\\xb5\\x88\\xba\\xef\\xe9\\x89\\x5d\\x8d\\xdb\\x4d\\xed\\\r\n\\x61\\xa5\\xaf\\xb7\\x6f\\x1b\\xe9\\xda\\xff\\x00\\x25\\xce\\xcc\\x14\\x39\\xce\\\r\n\\xe5\\x55\\x49\\x27\\x56\\x24\\x2a\\x8f\\xa9\\x3b\\x7a\\x63\\x89\\x54\\x22\\xce\\\r\n\\xd1\\x21\\x05\\x69\\xa3\\x14\\xea\\x41\\xb8\\x3c\\x95\\xea\\xb6\\x9f\\xc5\\x9b\\\r\n\\x6f\\x9e\\x38\\x9f\\x16\\x11\\xc0\\x26\\x84\\x86\\x2d\\x2c\\x94\\xfa\\xde\\xcb\\\r\n\\x2a\\x72\\x98\\xff\\x00\\xf6\\x49\\x98\\x5b\\xb0\\x27\\xb1\\xb5\\x4f\\x16\\x2d\\\r\n\\x48\\x88\\x42\\xb3\\xd4\\x23\\xea\\x74\\x05\\x6f\\x6d\\x46\\xc0\\x92\\x0e\\xbe\\\r\n\\x97\\xf4\\xc1\\x46\\xa6\\x44\\x75\\xeb\\x49\\x57\\xac\\xdb\\xa9\\x14\\x9f\\xba\\\r\n\\x3e\\xee\\x87\\x51\\x71\\x9a\\xc2\\xfe\\x71\\xc1\\x29\\x15\\x65\\x5a\\x92\\x46\\\r\n\\xc0\\x82\\x2c\\x75\\x22\\xe0\\x5f\\xeb\\xf9\\xe2\\xa4\\x32\\xd4\\xe6\\x23\\x41\\\r\n\\x79\\x01\\xfa\\x5b\\x6f\\xbb\\xdf\\x1c\\x4d\\x16\\xa7\\x87\\xd1\\xa6\\xcc\\xab\\\r\n\\x3a\\xe6\\x3d\\x8a\\xcb\\x9e\\x3b\\x1b\\x5f\\x76\\xed\\xdf\\x14\\xf4\\x1c\\x41\\\r\n\\x55\\x13\\x24\\x2f\\x06\\xb9\\xd7\\xf8\\xee\\x6f\\x7d\\x7d\\x34\\xef\\xe7\\x1e\\\r\n\\xc5\\xfb\\x11\\xef\\x43\\xdf\\x83\\xe5\\x55\\x6d\\x22\\x63\\x9c\\x2d\\xb7\\xca\\\r\n\\x74\\x23\\xbf\\xcb\\x10\\x52\\x7b\\xb4\\x1c\\xa5\\x01\\x72\\xa8\\x00\\xf6\\xdb\\\r\n\\x7c\\x7d\\xaa\\xca\\x2e\\xfb\\x69\\x66\\xd8\\xfa\\xfe\\x17\\x18\\xf6\\xba\\x92\\\r\n\\x96\\x5e\\x13\\x30\\x75\\x05\\xca\\x5f\\x38\\xf8\\xb5\\x03\\x30\\x1f\\xd2\\xfa\\\r\n\\xe2\\xbb\\x84\\x98\\x6a\\xa4\\x65\\x25\\x61\\x2c\\x72\\x8f\\xbc\\x47\\x62\\x5b\\\r\n\\xf0\\xb8\\xb6\\x9a\\xf9\\x38\\xa5\\xa7\\x50\\x08\\x72\\xaa\\xdf\\x74\\x9d\\x45\\\r\n\\xf5\\xb5\\xcf\\x6f\\xcf\\x41\\x86\\x4b\\x33\\x23\\x32\\x12\\x7b\\x83\\x70\\x7f\\\r\n\\x5e\\x0e\\xd8\\xad\\xd0\\x9b\\x11\\x70\\x7c\\x8c\\x70\\x61\\x55\\x3c\\x92\\xac\\\r\n\\x97\\x6a\\x50\\x84\\x66\\x7e\\xa4\\xe6\\x5f\\xa5\\x52\\xe4\\x6b\\x94\\x9d\\x00\\\r\n\\xda\\xc4\\xf6\\x18\\x4a\\x5e\\x54\\x8f\\x95\\x9c\\xb2\\xdf\\x33\\x72\\xef\\x97\\\r\n\\xbf\\x4b\\x6d\\xa8\\xfa\\x9f\\x3a\\x62\\x9b\\x9b\\x3c\\x99\\x59\\x08\\x8c\\x46\\\r\n\\xd7\\x63\\xd2\\x6e\\x35\\x1b\\xf7\\x24\\x8d\\x30\\xd0\\xde\\xae\\x54\\x8c\\x0b\\\r\n\\xf2\\xa2\\x90\\x36\\xba\\xb2\\xbd\\xb6\\xbd\\xad\\x6d\\xc6\\xdf\\x5c\\x70\\xf8\\\r\n\\x78\\x90\\xe2\\x6f\\xc5\\x38\\x54\\x79\\x3f\\x67\\x91\\x20\\x75\\xb2\\x99\\x0a\\\r\n\\x37\\x56\\x5d\\x08\\x39\\xd4\\xe8\\x35\\xcd\\x94\\x8e\\xc6\\xdc\\x53\\x88\\xd5\\\r\n\\xd7\\x42\\xd3\\x47\\xd5\\x4e\\xf6\\xe6\\x2b\\x8b\\xe7\\x9d\\x9c\\xb9\\x77\\x3f\\\r\n\\x75\\xd3\\x21\\xd7\\xd7\\xb5\\xf1\\xed\\x67\\x2e\\x6f\\x70\\xe2\\x4b\\x10\\xe6\\\r\n\\x71\\x1e\\x17\\x4e\\xe5\\xd0\\xff\\x00\\xfb\\x98\\xcf\\xbb\\xb1\\xf1\\x75\\xca\\\r\n\\xb7\\xef\\xb5\\xf0\\x24\\x96\\x9d\\x4c\\x67\\xe3\\x80\\xe8\\xc7\\xc6\\x99\\xe3\\\r\n\\x6e\\xcc\\xac\\x05\\xc3\\xfe\\x00\\xee\\x29\\x2b\\x64\\xca\\x92\\xab\\x9c\\x8f\\\r\n\\xb8\\x04\\x1c\\x86\\xc3\\xa8\\x29\\xdd\\x46\\xe4\\xfd\\x7e\\x50\\xce\\xa4\\x4b\\\r\n\\x9e\\xc1\\x83\\x66\\x0e\\x08\\xf8\\x5b\\x5d\\x7b\\xfa\\xe9\\x7f\\x38\\x64\\x6f\\\r\n\\x7d\\x97\\x94\\xa1\\xe1\\xa8\\x89\\x4c\\x80\\x03\\x7d\\xf2\\xdc\\x01\\xd8\\x6e\\\r\n\\xde\\x9a\\x9d\\xb1\\xc6\\x20\\x30\\x71\\x56\\x90\\xd9\\x44\\xb4\\xd0\\x4e\\x4f\\\r\n\\xc5\\x9b\\xa2\\x35\\x6d\\x3f\\xd7\\x1b\\xdf\\x4d\\x81\\x18\\x58\\x16\\x29\\x24\\\r\n\\x7d\\x32\\x49\\x1e\\x63\\x94\\xe9\\x9c\\xb0\\xd8\\x0f\\xc4\\x7a\\x5f\\xb6\\x28\\\r\n\\x83\\x2c\\xb2\\xc7\\x93\\x99\\x7b\\x68\\x0e\\xba\\x9b\\x02\\x07\\x7b\\x0d\\xfb\\\r\n\\xe0\\xc5\\x38\\x24\\x05\\x9e\\xc0\\x9b\\x5b\\x35\\xad\\xf8\\xe2\\x28\\x92\\x35\\\r\n\\x59\\x5a\\x24\\x91\\x46\\x52\\xb9\\xae\\x3a\\x95\\x4d\\xcf\\x4d\\xc9\\xdb\\xa8\\\r\n\\x01\\xd2\\x45\\x8e\\xba\\x63\\xd8\\xdf\\x67\\xa4\\xf6\\x97\\x89\\x2f\\x10\\xab\\\r\n\\x8c\\x27\\x0c\\xa1\\x96\\xeb\\x9c\\x58\\x54\\xca\\x83\\x46\\xbb\\xa2\\xda\\x24\\\r\n\\xdd\\xb4\\xca\\x4f\\x4e\\xa6\\xf8\\xff\\x00\\xa8\\x95\\xd3\\x47\\xc1\\xe5\\xa0\\\r\n\\xa4\\x96\\x24\\x57\\x21\\x02\\x05\\x12\\x19\\xc1\\x1d\\x62\\xe0\\x76\\x1f\\x81\\\r\n\\xf5\\xc4\\x0a\\xce\\xe8\\x8b\\xe7\\x5f\\x4d\\x46\\x38\\x45\\x22\\x08\\xae\\x75\\\r\n\\xe9\\xd7\\xf0\\xd3\\xf9\\x62\\xb5\\x15\\x5b\\x41\\xa7\\x9b\\xfa\\xda\\xdb\\x7d\\\r\n\\x71\\x50\\x85\\x8d\\x91\\x49\\x66\\xd9\\x6f\\x63\\xf3\\xfe\\x78\\x76\\xd2\\xda\\\r\n\\x5f\\x5c\\xda\\x03\\xaf\\xae\\x9a\\x9c\\x07\\x2a\\xb2\\x9c\\xba\\xb1\\x01\\x5b\\\r\n\\xef\\x0b\\x5c\\x12\\x07\\x6b\\xde\\xd7\\xff\\x00\\x6c\\x50\\x5c\\x10\\xc7\\x7b\\\r\n\\xff\\x00\\x2d\\xbf\\xb8\\xc1\\x94\\xe4\\x1a\\xea\\x74\\x1d\\xff\\x00\\x1c\\x71\\\r\n\\x0a\\x21\\x95\\x25\\x80\\x49\\xce\\x37\\xf7\\x8c\\xd6\\x31\\x8b\\x5a\\xc5\\x2c\\\r\n\\x14\\xeb\\xdc\\x1c\\x04\\x21\\xf2\\xf7\\xb7\\xf7\\xc4\\x29\\x55\\x98\\x3d\\x30\\\r\n\\x70\\xe0\\xd8\\x1b\\xe5\\xb1\\x22\\xfb\\xdf\\x7f\\x9f\\x7f\\xc7\\x13\\x47\\x37\\\r\n\\x33\\x33\\x06\\x93\\x51\\x99\\xae\\x58\\x13\\xae\\x6b\\x7a\\x5f\\xc8\\xdc\\x62\\\r\n\\x92\\x1f\\x7b\\x4e\\xa9\\x40\\x54\\xb5\\xd1\\x45\\x89\\xfa\\x8f\\xeb\\x6b\\xed\\\r\n\\x88\\x29\\x61\\x44\\x2a\\x88\\xa1\\x86\\xcf\\x6b\\x11\\xf5\\x1a\\xed\\xdb\\x6c\\\r\n\\x47\\x0e\\x52\\x97\\x6b\\x97\\x1a\\x31\\xb7\\x7f\\x4f\\x3f\\xab\\xe2\\x9f\\x87\\\r\n\\xad\\x4c\\xa5\\xe6\\x17\\xbf\\xc0\\x3b\\x59\\x74\\x1f\\x0f\\xa0\\xb9\\xfc\\x70\\\r\n\\x69\\x02\\xe4\\xa6\\x1a\\x2e\\x6c\\xe0\\x12\\x6c\\x4e\\x96\\x6d\\xfe\\xee\\xbe\\\r\n\\x6d\\xe3\\x6c\\x41\\x4a\\x22\\x5c\\xc7\\x46\\x00\\x92\\x48\\xf8\\xb2\\x9e\\xc7\\\r\n\\xe8\\x3f\\xa8\\xc5\\x5d\\x43\\xbc\\x96\\x6d\\x4f\\xfa\\xbe\\x67\\x4d\\xc7\\xeb\\\r\n\\xf1\\x83\\x89\\x30\\x8f\\x91\\x2c\\xa4\\x5d\\x80\\x1d\\x8d\\xbb\\xf5\\x8d\\x46\\\r\n\\x82\\xfb\\x6a\\x7c\\x6a\\x71\\x2d\\x44\\xc6\\x42\\x6c\\xac\\xb2\\x5f\\x2a\\x9b\\\r\n\\x15\\xf9\\x75\\x6e\\xc3\\x4b\\xf9\\x37\\xf5\\xc4\\x8e\\x14\\x5d\\xf2\\x8b\\xff\\\r\n\\x00\\x3d\\xbe\\x5b\\x7f\\x3c\\x51\\x90\\xd2\\xc9\\x35\\xc3\\x25\\x24\\x4d\\x35\\\r\n\\xb4\\xb1\\x90\\xf4\\x42\\x2d\\xeb\\x2b\\x83\\xf4\\xfa\\x63\\x8b\\x55\\x18\\x28\\\r\n\\x2a\\x1b\\x37\\xdb\\xc9\\xd1\\x10\\xb1\\x67\\x2e\\xe4\\x06\\xca\\x06\\xe6\\xd7\\\r\n\\x23\\xd3\\x15\\x14\\x45\\xa8\\xab\\xe1\\x57\\x4e\\x64\\x4b\\x45\\xc5\\x15\\x4e\\\r\n\\x6b\\x80\\x63\\x7a\\x6a\\x90\\x74\\xb0\\x67\\x62\\x8c\\x35\\xea\\x3a\\xf9\\xc3\\\r\n\\x5d\\xdc\\x9f\\x84\\x44\\xaa\\x80\\x1b\\x9b\\x85\\xb5\\xad\\xdb\\x73\\x72\\x7b\\\r\n\\xdf\\xc6\\x28\\xc8\\x31\\x2c\\xf2\\xa2\\xbc\\x71\\x32\\x06\\x53\\x6c\\xc6\\x42\\\r\n\\x34\\xca\\x2d\\xb0\\xba\\x81\\x98\\x7c\\xbb\\x8c\\x42\\xe9\\xc3\\x65\\x11\\xe6\\\r\n\\x66\\x86\\x48\\xc4\\x93\\xae\\xdc\\xb9\\x5c\\x9b\\x32\\x6e\\x04\\x46\\x4b\\x82\\\r\n\\x2d\\xb8\\xb8\\xb6\\xa0\\xd5\\xd5\\x45\\xc8\\x9a\\xa2\\xfd\\x20\\x64\\x52\\x0d\\\r\n\\xee\\x1c\\x2e\\x83\\xeb\\x7d\\x77\\xf1\\xa6\\x0c\\x92\\x9a\\x4a\\x39\\x64\\xb8\\\r\n\\x19\\xea\\x4a\\xc4\\x74\\x05\\x47\\x2b\\x25\\xc6\\xa7\\x52\\x49\\xb9\\xd7\\xc6\\\r\n\\x98\\xa7\\xe2\\x4e\\xd6\\x12\\x46\\xba\\x82\\x43\\x2d\\xec\\x75\\x23\\x6e\\xdf\\\r\n\\x8e\\x3d\\x92\\xe3\\xb5\\x10\\x4a\\x52\\x17\\x6b\\x00\\x03\\xaa\\xec\\xde\\x8c\\\r\n\\x07\\x9b\\xda\\xfb\\xef\\x88\\xf8\\xdf\\x3e\\x5f\\x77\\x2d\\x95\\xdf\\xf0\\xd3\\\r\n\\xb7\\xf1\\x5f\\xe9\\x8e\\x21\\x34\\xd0\\x82\\xd1\\x12\\x58\\x58\\x87\\xdf\\xd7\\\r\n\\x40\\x2d\\xf2\\xfc\\x77\\xc4\\x24\\x56\\x53\\xff\\x00\\x8c\\x17\\x52\\x0e\\xe7\\\r\n\\x4d\\x40\\xfc\\x6f\\xae\\xf8\\xf6\\xc0\\x70\\xf4\\xad\\xe4\\xc0\\x02\\x90\\xcc\\\r\n\\x08\\xb0\\x16\\xbf\\xcb\\xb6\\xb7\\xfe\\x98\\x6a\\x55\\x30\\xb8\\x2b\\xd8\\x12\\\r\n\\x6d\\xb7\\x8d\\x77\\xb5\\xf1\\x2a\\x88\\xcd\\xae\\x7b\\xeb\\xfd\\x3e\\xa7\\xe9\\\r\n\\x8f\\x73\\xcf\\x22\\x34\\xc7\\x97\\x1b\\x92\\x0b\\xd8\\x33\\xe9\\xe0\\x13\\xad\\\r\n\\x87\\xae\\x23\\xa5\\x34\\x71\\x2b\\x46\\xd0\\xcb\\x43\\xca\\x3f\\x6d\\x13\\x80\\\r\n\\xd1\\x30\\xea\\x4e\\x74\\x4d\\xd4\\x85\\xba\\x86\\x6d\\x41\\xdb\\x71\\x86\\xad\\\r\n\\xa6\\xb1\\xb5\\x44\\x4a\\xf9\\x6f\\x94\\xb0\\x27\\x60\\x75\\xb7\\x80\\x7f\\x5d\\\r\n\\xa9\\xab\\xa9\\xaa\\x49\\x8d\\xa6\\x8e\\x09\\x43\\x65\\xea\\x70\\x05\\xcd\\xd4\\\r\n\\x3a\\xb3\\x7c\\x42\\xe3\\xe6\\x06\\xe3\\x6b\\xbd\\x05\\x5c\\x75\\x94\\xee\\xc1\\\r\n\\x1a\\x27\\x8f\\x23\\x48\\x05\\x81\\x56\\x70\\x4b\\xe7\\xb0\\x54\\xc8\\x0e\\x6d\\\r\n\\xec\\x75\\xf4\\xc5\\x1d\\x15\\x35\\x0d\\x25\\x3f\\x0b\\x46\\x59\\x39\\x8a\\x1a\\\r\n\\x36\\x47\\x0c\\x79\\x92\\xba\\x1b\\x34\\x84\\x01\\x23\\x72\\xc3\\x9c\\xa0\\x95\\\r\n\\x56\\x75\\x00\\xf4\\x9c\\x7b\\x43\\x31\\xa3\\xaf\\x8e\\x22\\x91\\x25\\x3d\\x45\\\r\n\\x2d\\x2c\\xe5\\x57\\xa3\\x99\\x24\\x88\\x62\\x95\\xfa\\x74\\xcf\\x74\\xd4\\xd8\\\r\n\\xe6\\xee\\x3c\\x71\\xa8\\xa3\\xe2\\x1c\\x0b\\x85\\xbc\\x1d\\x4f\\x43\\xc5\\xa5\\\r\n\\xa2\\x60\\xb6\\x25\\x23\\xac\\x8f\\x9e\\x85\\xb6\\x3f\\xbc\\xa7\\x7c\\xb7\\x51\\\r\n\\xa9\\xb5\\xed\\xb5\\x45\\x1c\\xcf\\x63\\x25\\x84\\x8a\\x32\\xe6\\x23\\xa9\\x97\\\r\n\\xc3\\xfc\\xf6\\xf4\\xf5\\xc4\\x2c\\xf4\\xb5\\x29\\x4f\\x99\\x12\\x27\\x91\\x18\\\r\n\\x33\\x2d\\xec\\x09\\x50\\xcb\\xad\\x94\\x7e\\x7a\\x1c\\x4b\\x34\\xb1\\x3f\\xd9\\\r\n\\xf2\\xe4\\x8c\\xb8\\x89\\xd4\\xdd\\x1e\\x37\\x52\\x46\\x9a\\xd8\\x29\\xfc\\xf4\\\r\n\\x1d\\xc8\\x1c\\x03\\x88\\xe7\\xe2\\x74\\x90\\xce\\xa6\\x13\\xcc\\x68\\xc8\\x7d\\\r\n\\x32\\x89\\xbe\\xcb\\x28\\xfe\\x21\\x76\\x05\\x46\\xe0\\x5e\\xdb\\x0c\\x7b\\x4d\\\r\n\\x0e\\x73\\x49\\x2a\\x80\\xc6\\x25\\x9e\\x92\\x72\\x74\\xb3\\x00\\x92\\xc6\\xa7\\\r\n\\x5f\\x8a\\xce\\xe7\\xfd\\xb1\\xc1\\x1a\\x24\\x8a\\x09\\x27\\x42\\x50\\xab\\x23\\\r\n\\x67\\x51\\xfe\\x90\\x46\\x96\\xed\\x7b\\xfe\\x1e\\x9c\\xc3\\x43\\xc4\\xcb\\xee\\\r\n\\x16\\x46\\x1a\\xea\\x0a\\x13\\xdc\\x69\\xa8\\x53\\x7b\\xdf\\x71\\x8f\\x7a\\x85\\\r\n\\xba\\xb9\\xb1\\x0c\\xda\\xd8\\x8d\\x75\\xd7\\x1e\\xcd\\x70\\x39\\xf8\\xe5\\x65\\\r\n\\x1d\\x44\\x52\\x33\\xc7\\x45\\x56\\x86\\x72\\xaf\\xf0\\xc6\\x1b\\x99\\xc8\\x31\\\r\n\\xb0\\xbb\\x73\\xec\\x54\\x04\\xb0\\xb5\\xc3\\xe9\\x73\\x8e\\x3d\\xc4\\x78\\x7f\\\r\n\\x07\\xa6\\x92\\x28\\x04\\x51\\x46\\xaa\\xbc\\xde\\x42\\x88\\xa3\\x79\\x08\\xcc\\\r\n\\xb4\\x74\\xcb\\x61\\x75\\x46\\xb2\\xbb\\xdb\\xed\\x1e\\xed\\xb6\\xa7\\x89\\x71\\\r\n\\x09\\x6b\\xe6\\xe7\\xd4\\x86\\xcd\\x3c\\x96\\x82\\x2b\\xf4\\x28\\x41\\xd2\\x14\\\r\n\\x1f\\x4b\\xe6\\x6c\\xa0\\xb1\\xc4\\xf4\\x95\\x34\\xdc\\x42\\x26\\xa8\\x4c\\xab\\\r\n\\x51\\xf6\\x89\\x68\\xf2\\xad\\xb6\\x1d\\x3f\\xdf\\x5b\\xe2\\x89\\x48\\xa6\\x36\\\r\n\\xfe\\x0d\\xf4\\xd7\\xbf\\xcb\\x6d\\x7d\\x31\\x5b\\xd4\\xdd\\x4d\\xb6\\xdb\\x5c\\\r\n\\xfa\\x7c\\xf1\\x29\\xb8\\x60\\x16\\xda\\x6e\\x2d\\x7f\\xa1\\xc3\\xa3\\x49\\x2a\\\r\n\\xa4\\x6a\\x13\\x33\\x12\\xda\\x67\\xd3\\xbb\\x66\\xdf\\xd7\\x5b\\x01\\x83\\x1b\\\r\n\\xcb\\x22\\x44\\xaa\\xd2\\x35\\xb2\\xda\\x35\\xbb\\x65\\x04\\x9b\\xdb\\x4b\\x9b\\\r\n\\x7f\\x6c\\x64\\x54\\x98\\xac\\x45\\xb2\\x03\\x61\\xcc\\x1d\\x77\\x1b\\xe6\\x03\\\r\n\\x41\\xaf\\x6f\\xcf\\x11\\xc8\\x5d\\xd0\\x5c\\x8d\\x7f\\x5f\\xcf\\x12\\x24\\x46\\\r\n\\x9b\\xb1\\x20\\x6c\\x35\\xed\\xe9\\xfa\\x1f\\x3c\\x41\\xc3\\x04\\xad\\xcf\\x2e\\\r\n\\xc8\\xbc\\xd6\\xb2\\x15\\x17\\xb2\\xb6\\xa0\\xde\\xd6\\xbf\\xc8\\xe2\\x0a\\x78\\\r\n\\x32\\x66\\x54\\x41\\x1b\\x9b\\xd9\\x45\\xb6\\xda\\xfe\\x7f\\xe7\\x06\\x82\\x99\\\r\n\\xef\\x92\\xdb\\x6a\\xad\\xb7\\xaf\\x8f\\xd7\\xa6\\x17\\x87\\x49\\x03\\xbb\\x21\\\r\n\\x39\\x0f\\xfd\\xbb\\x7e\\x7b\\xf6\\xfe\\xf8\\x56\\xca\\x08\\xef\\xf9\\x8f\\xa6\\\r\n\\x38\\x6d\\x21\\xa8\\x92\\x36\\x63\\x60\\x01\\xee\\x6f\\x6f\\x91\\xd3\\xd7\\x1c\\\r\n\\x98\\xe8\\xd0\\x5a\\x60\\x48\\x04\\x2a\\x9f\\x88\\x06\\x3d\\xf4\\xd6\\xda\\xf7\\\r\n\\x26\\xd8\\xa5\\x4c\\xf3\\x34\\xc5\\xb5\\x5b\\xd9\\x8d\\xd8\\x0f\\x1a\\x5f\\x4b\\\r\n\\xf6\\xd3\\x4c\\x55\\x54\\xf1\\x0d\\x55\\x15\\x99\\x6d\\xa3\\x28\\x56\\x16\\xfa\\\r\n\\x5f\\xe5\\x63\\x63\\x89\\x93\\xa1\\x8b\\xc2\\x10\\xda\\x15\\xe9\\xf8\\xd5\\xd4\\\r\n\\x75\\xe5\\xf8\\x7f\\x78\\x35\\x61\\xae\\xc4\\x03\\xb5\\xde\\x3e\\x5c\\xaa\\xf7\\\r\n\\xb0\\xdb\\x29\\xb6\\x6d\\x41\\x3a\\xff\\x00\\x6d\\x4f\\x9c\\x3b\\x11\\x6b\\x02\\\r\n\\x55\\x8f\\x33\\x7e\\xe2\\xd9\\x87\\xe2\\x7f\\x0c\\x13\\x9e\\xe5\\xb5\\xfc\\xb4\\\r\n\\xfc\\x2c\\x3f\\x0c\\x64\\x10\\x52\\x00\\x06\\x53\\x55\\x26\\x72\\x3c\\xc5\\x09\\\r\n\\x28\\x97\\x3e\\x0c\\x99\\x98\\x79\\xb7\\xe3\\xed\\x26\\x62\\xb1\\x24\\x6a\\xc4\\\r\n\\xa1\\x33\\x33\\x2d\\xee\\x3e\\xea\\xda\\xc4\\x6a\\x3f\\x95\\xc6\\xf8\\x8d\\x6a\\\r\n\\xeb\\x78\\x87\\xbb\\x1a\\x8c\\x9c\\xfa\\x61\\x4f\\x24\\x8a\\xbd\\x25\\x0a\\xe7\\\r\n\\x8e\\x32\\x9a\\x03\\xd7\\x94\\x31\\xbd\\xef\\xaf\\x61\\x88\\xb8\\x45\\x4c\\xbc\\\r\n\\xc8\\xc6\\x71\\x24\\x4e\\x54\\xee\\x54\\xb0\\xbf\\x46\\x86\\xf7\\xd2\\xde\\x9d\\\r\n\\xf1\\xed\\x2c\\x35\\x34\\xf2\\x70\\x96\\x8c\\x45\\xca\\x9b\\x82\\xf0\\xb9\\x25\\\r\n\\x85\\x15\\x55\\x51\\xc2\\x98\\x1c\\xbd\\x80\\xea\\x33\\x44\\xe4\\x75\\x69\\xad\\\r\n\\xf1\\x4c\\xb1\\x54\\x41\\x13\\xcf\\x1d\\xe5\\x0a\\x22\\x97\\x39\\xff\\x00\\xb6\\\r\n\\xa6\\xe9\\xb6\\x84\\x02\\xa0\\xdc\\x1d\\x7f\\x0c\\x70\\xe8\\xc2\\x2b\\xfb\\xdb\\\r\n\\x73\\x63\\x92\\xa4\\x25\\x3a\\x66\\x25\\x23\\x44\\x57\\x29\\x71\\xb0\\xca\\x48\\\r\n\\xd3\\xe5\\x7d\\x71\\x3d\\x2c\\x8f\\x42\\x65\\x6c\\xbf\\x60\\x65\\xd2\\xd6\\xba\\\r\n\\xb1\\x0b\\x7b\\x8d\\x35\\x36\\x03\\xd4\\xe0\\x38\\x8e\\x9e\\x13\\xa9\\x60\\xc4\\\r\n\\x15\\x1a\\xe6\\x17\\x37\\xf5\\x19\\x77\\xb9\\xd3\\x1e\\xc3\\x2d\\x04\\x4c\\xed\\\r\n\\x56\\xd1\\xa3\\x4a\\x33\\x6b\\xbd\\xbb\\x5b\\xc7\\xce\\xff\\x00\\x2c\\x52\\x70\\\r\n\\xba\\x29\\xea\\xd6\\x78\\xe7\\xce\\xa2\\xc4\\x5b\\xe6\\x6d\\x7d\\x4f\\xf3\\xf1\\\r\n\\x89\\x61\\x84\\x30\\x59\\x58\\x38\\xf9\\xdc\\x03\\xf2\\x1b\\xff\\x00\\xc6\\x38\\\r\n\\xb7\\x19\\xe1\\xbc\\x39\\x24\\x5c\\xd9\\x4e\\xaa\\x14\\xdc\\x03\\x7d\\x2f\\xeb\\\r\n\\x6e\\xd6\\x18\\xf6\\x9a\\xa9\\x2a\\xb8\\xa3\\x4f\\x11\\x6c\\xae\\xb9\\x09\\xd7\\\r\n\\x4b\\x6a\\xad\\x7b\\xfa\\xf8\\xef\\x88\\x65\\x95\\xa1\\x5b\\x1d\\x54\\x64\\x7b\\\r\n\\xdb\\xa9\\x7c\\x1f\\x3a\\x0b\\xe9\\xa6\\x26\\x88\\xc8\\xd6\\xb8\\xd0\\x13\\xd3\\\r\n\\xb9\\xfe\\x63\\x10\\xd1\\x35\\x45\\x25\\x46\\xad\\x78\\xd4\\x3a\\xae\\x9a\\x94\\\r\n\\x3f\\x6c\\xa3\\xe6\\xa3\\x4d\\x35\\xb1\\xb5\\xf4\\xc3\\x89\\x69\\xa3\\xcd\\x4e\\\r\n\\x33\\x2c\\x8b\\x94\\x5e\\xe1\\xf6\\xcd\\x66\\xfb\\xae\\x0f\\x70\\x46\\xbb\\x1b\\\r\n\\xed\\x89\\xf8\\xbd\\x33\\x50\\x4e\\xf5\\x9c\\x2e\\x8e\\x6a\\x88\\xe0\\xb4\\x75\\\r\n\\x34\\xf0\\x47\\x05\\x44\\x32\\x86\\xca\\x3d\\xe5\\x16\\x30\\xb2\\xc6\\x7a\\x46\\\r\n\\x60\\x33\\x2d\\xf2\\x11\\xd5\\x7c\\x51\\x37\\x11\\xac\\xaa\\x12\\x52\\xd3\\x2c\\\r\n\\xf5\\x57\\x66\\x45\\x58\\xd7\\x22\\x84\\xea\\x2e\\xe4\\x8c\\xa8\\x8b\\xe5\\x88\\\r\n\\xb7\\xae\\x38\\x1f\\x10\\xa8\\xaa\\xe6\\xc3\\x5b\\x1c\\xc9\\x53\\x4a\\xfc\\xb9\\\r\n\\x1a\\x48\\xd4\\x47\\x23\\x66\\xbf\\xd9\\x95\\x50\\x96\\x03\\x4d\\x35\\x1b\\xfa\\\r\n\\xe0\\xce\\xbf\\xb7\\x78\\x6a\\x15\\x36\\x4a\\x98\\x26\\x8c\\x9f\\x83\\x57\\xca\\\r\n\\x42\\xea\\x09\\xc8\\x34\\xd7\\xb1\\xc7\\xb6\\xde\\xef\\xcc\\xa2\\x9a\\xc9\\x6a\\\r\n\\x53\\x35\\x22\\xd9\\x01\\x2c\\x90\\xc8\\x59\\x54\\x69\\xd2\\x6c\\xd6\\xd7\\x4d\\\r\n\\x31\\xc2\\x27\\xe6\\xfe\\xde\\x8d\\xa3\\x4f\\xfe\\x02\\x93\\x88\\xa8\\x45\\xd1\\\r\n\\x24\\xa3\\xa8\\x0a\\xdf\\xf9\\x1a\\x6a\\x86\\x66\\x3e\\x73\\x01\\xa0\\xd6\\x79\\\r\n\\xa8\\xdb\\x9a\\xa6\\x68\\x89\\x06\\xdd\\x2e\\x2e\\x4f\\xa0\\x27\\x5d\\x7b\\xde\\\r\n\\xd8\\xe2\\x31\\xd1\\xfb\\xb0\\xa8\\xe7\\x28\\x98\\x4c\\x04\\x68\\x6c\\xb9\\xc2\\\r\n\\x80\\x5b\\x5b\\x9b\\x9d\\xac\\x07\\xcc\\xfa\\xbc\\xb1\\xfb\\xdb\\x59\\xd5\\xe9\\\r\n\\x2a\\x9b\\x3c\\x52\\x05\\x19\\x81\\x7e\\xb0\\x18\\x8d\\xc0\\x73\\x63\\x98\\x7a\\\r\n\\xe2\\x75\\x78\\xaa\\xa8\\x78\\x82\\x72\\xd5\\x1c\\xc7\\x34\\xbd\\x24\\x5a\\x7a\\\r\n\\x67\\x1c\\xe0\\xa4\\x1b\\x6a\\x57\\x30\\x1a\\x68\\xc3\\x5f\\x1c\\x49\\x16\\xa0\\\r\n\\x71\\x2c\\xa5\\x58\\x73\\x29\\xeb\\xa2\\x0a\\x6e\\x72\\xb2\\xf2\\x65\\x26\\xc7\\\r\n\\xc1\\xf0\\x2c\\x6f\\x88\\xe7\\xab\\xc8\\x69\\xac\\x39\\x29\\x6b\\x90\\x0e\\x6c\\\r\n\\x9f\\x74\\xdd\\x7d\\x7b\\x7a\\x6b\\x8a\\xba\\x45\\x0b\\x0d\\x42\\xb3\\x11\\x2b\\\r\n\\xb8\\x66\\xb6\\xa1\\xed\\x9c\\x06\\x04\\xdf\\xbf\\x9d\\x07\\x6c\\x7d\\xa7\\x95\\\r\n\\xfc\\xff\\x00\\xb6\\x38\\x7d\\x17\\x0b\\xf6\\x4f\\x84\\x0a\\x78\\x03\\x2c\\xea\\\r\n\\x8f\\x25\\x5d\\x53\\x05\\xd4\\xd8\\x03\\x61\\xda\\x46\\xf8\\x45\\xfe\\x11\\xd2\\\r\n\\x3c\\xe3\\xda\\x1e\\x3a\\xfc\\x5a\\xb9\\x51\\xa3\\x95\\xa0\\x0e\\x44\\x31\\x21\\\r\n\\xb7\\x72\\x39\\x86\\xd7\\x25\\xc9\\xbd\\x8d\\xac\\x34\\xf1\\x73\\xc3\\xf8\\x6a\\\r\n\\xa4\\x09\\x2d\\x4e\\x69\\x4a\\x5d\\x90\\x4d\\x97\\x30\\x6b\\x5c\\x46\\x18\\x01\\\r\n\\x7e\\xd7\\x3a\\x7a\\xe3\\x8c\\x91\\xee\\xfe\\xf0\\x60\\x59\\xa4\\x46\\x16\\xba\\\r\n\\xdf\\x92\\x3e\\xf1\\x16\\xd5\\x74\\xb7\\xe5\\x7c\\x51\\x71\\x00\\x60\\xb5\\xfb\\\r\n\\x7c\\x3f\\x3d\\x7f\\xdb\\x15\\x4e\\x5d\\xbb\\xff\\x00\\x4c\\x7a\\x7e\\x38\\xa6\\\r\n\\xa6\\xe6\\xca\\x89\\x08\\xca\\x59\\x58\\xcb\\x26\\x87\\xa7\\x5d\\x14\\x6c\\x06\\\r\n\\xab\\xa7\\xd3\\x15\\x90\\xd4\\xd1\\x4e\\x43\\xde\\x33\\x72\\xa8\\xea\\x6c\\x5d\\\r\n\\x6f\\xa6\\xcd\\x71\\x7f\\x16\\xf9\\x62\\x18\\xf3\\x2b\\xcc\\x5d\\x2e\\x0f\\xc0\\\r\n\\x49\\x69\\x09\\xd7\\xab\\xc5\\xbd\\x49\\x1f\\x8d\\xb0\\x88\\x11\\x4b\\x96\\x0a\\\r\n\\x55\\x6f\\x77\\x39\\x41\\xf4\\xef\\xf4\\xf1\\x85\\xe2\\x31\\xc6\\xa7\\x2b\\x83\\\r\n\\xf5\\x3e\\x9b\\x5f\\x4b\\x1d\\x76\\xf1\\x81\\xc4\\x5d\\xcb\\x59\\x87\\x57\\xdd\\\r\n\\x3f\\x9f\\x81\\xb6\\x38\\x7c\\xf0\\xb5\\x38\\x8d\\xa6\\x41\\x26\\xa5\\x51\\x9d\\\r\n\\x73\\x37\\xc8\\x0d\\xf4\\xbd\\x87\\xa5\\xfb\\x61\\x88\\x41\\xe3\\x0b\\x5c\\xfb\\\r\n\\x04\\xe6\\x69\\xe0\\x7f\\x3c\\x53\\x49\\x1d\\x55\\x4a\\xa5\\xf2\\xb8\\xf8\\x95\\\r\n\\x3e\\x2b\\x69\\xb9\\x37\\x16\\xb7\\x6f\\x5c\\x52\\xd1\\x41\\x14\\x41\\x94\\xb7\\\r\n\\xc3\\x76\\x2c\\x6f\\x6f\\x96\\x80\\x7f\\x5c\\x49\\x25\\x39\\x21\\x18\\x8e\\x5a\\\r\n\\xb6\\xa6\\x65\\xb6\\x7b\\x76\\x0d\\xd5\\x6f\\x96\\xe0\\x1d\\x0e\\xd8\\xa4\\x2a\\\r\n\\x1d\\xca\\x7e\\xed\\x89\\x67\\x2f\\x65\\x4c\\x8a\\x6c\\x02\\xa9\\xd7\\x56\\xb0\\\r\n\\x07\\x7b\\x5f\\xc6\\x25\\x71\\x1d\\x99\\xed\\x73\\x22\\xe6\\xe5\\x0b\\x84\\x45\\\r\n\\xbe\\xb7\\x3a\\x59\\x4d\\x86\\x6d\\x35\\xb9\\x1e\\x95\\x32\\x2d\\x8a\\xd8\\x9e\\\r\n\\x65\\xca\\xb1\\x24\\xe7\\xc8\\xe7\\x2c\\x9a\\x5e\\xcd\\x6f\\x41\\x7b\\x6d\\x86\\\r\n\\x37\\x3d\\x5d\\x46\\xfb\\x9d\\xb4\\x27\\x6f\\x98\\xb1\\x1b\\x77\\xc1\\xda\\xd8\\\r\n\\x55\\x37\\xea\\x2a\\x14\\xaf\\x71\\xb6\\xfd\\x57\\xb6\\xdf\\xdb\\x15\\x45\\x4c\\\r\n\\xc0\\x46\\x73\\x43\\x14\\x71\\xc3\\x1e\\xf6\\x28\\x8a\\x2e\\xda\\xeb\\xd4\\xe5\\\r\n\\xdb\\x5f\\x3f\\x3c\\x57\\xd2\\x1a\\xd9\\x99\\x03\\xbc\\x6b\\xcb\\xd4\\xaf\\x85\\\r\n\\xbe\\xde\\x7a\\xae\\x2f\\xdb\\x51\\xdb\\x02\\x1f\\x71\\xc9\\x24\\x6f\\xfb\\xb1\\\r\n\\x1c\\x80\\x14\\xea\\xe8\\x37\\x1a\\xaf\\xaf\\xf5\\xc5\\x65\\x7a\\xd2\\x55\\x5e\\\r\n\\x75\\x2a\\xb3\\x5a\\x7c\\xd1\\x80\\x56\\xd2\\x80\\xd7\\x6d\\xb2\\x93\\xae\\xbe\\\r\n\\x71\\xed\\x0d\\x74\\x71\\xd0\\xf0\\x36\\x89\\x79\\xde\\xf5\\x45\\x3c\\x06\\x49\\\r\n\\x0d\\xd1\\xe2\\xa5\\xac\\x99\\x21\\xe5\\xeb\\x71\\xfb\\xd1\\x73\\xa8\\xcd\\xa5\\\r\n\\xf4\\x18\\xe1\\x5f\\x6b\\x13\\xab\\x03\\xcc\\xb5\\xb3\\x66\\xbd\\xbc\\x01\\xf2\\\r\n\\x3a\\xfd\\x77\\x18\\xa5\\xa7\\x8e\\x60\\x16\\x22\\xd1\\x4a\\x4b\\x97\\x17\\xbc\\\r\n\\x65\\x87\\xde\\x0a\\x74\\xd7\\xb9\\x5b\\x6f\\x8a\\xa7\\x8d\\x92\\x0e\\x1a\\x4b\\\r\n\\x29\\x10\\x45\\x34\\xce\\x0f\\xc6\\xcd\\xf0\\xa1\\x1d\\x80\\x20\\xb8\\xd0\\xeb\\\r\n\\x63\\x7d\\x06\\x23\\xa1\\xf7\\x7a\\x89\\xc3\\x11\\x22\\xb2\\x88\\xe2\\xcd\\x6d\\\r\n\\x10\\x96\\x66\\x1f\\x3b\\xb2\\xdc\\xfa\\x6b\\x8e\\x11\\xec\\xbf\\x14\\xaf\\x48\\\r\n\\x5a\\x36\\x68\\xa3\\x5c\\xc9\\x99\\x5a\\xe7\\x28\\x37\\x5b\\x8f\\x97\\xa7\\xcf\\\r\n\\x1c\\x13\\x86\\x49\\xc3\\xe9\\x9b\\x34\\x9d\\x40\\x65\\x25\\xd9\\x8e\\xda\\xdc\\\r\n\\xe9\\xa5\\xf6\\xb6\\x12\\x18\\xa5\\xce\\xd2\\xcd\\xd4\\x48\\xb2\\x86\\xe8\\xef\\\r\n\\xf5\\x1f\\x4c\\x7b\\x7c\\xb4\\x45\\x1a\\x38\\x25\\x2f\\x3a\\xdd\\x94\\x03\\x62\\\r\n\\x0d\\xba\\xbe\\x9a\\x61\\x25\\x8a\\x53\\x4c\\x1e\\xcc\\xfd\\x50\\xcc\\xba\\x68\\\r\n\\x2c\\x40\\x6b\\x9f\\x3d\\xbb\\x82\\x3e\\x47\\x10\\xbf\\x2e\\xea\\xdb\\xae\\x87\\\r\n\\x7d\\x6d\\xf0\\xb7\\x7d\\xd7\\x43\\x6d\\x3e\\xb8\\x48\\xa3\\x39\\xe4\\xff\\x00\\\r\n\\x25\\xc0\\xfe\\x16\\xe9\\x1f\\xad\\x31\\x40\\x58\\x48\\xfa\\x36\\x51\\x26\\x67\\\r\n\\x5e\\xc5\\x0e\\x8e\\x00\\xdc\\x92\\xa4\\xda\\xc3\\x53\\x83\\xc2\\x52\\x38\\x24\\\r\n\\x15\\x73\\xa4\\x51\\x2c\\x8d\\x25\\x36\\x51\\x9a\\x77\\x8f\\x35\\xd4\\x88\\xc8\\\r\n\\xbf\\xa5\\xd8\\x62\\x44\\xe1\\x72\\xdb\\x95\\x4b\\x33\\xf3\\x8b\\x5e\\x53\\x36\\\r\n\\x56\\x2c\\xa4\\x02\\x39\\x4a\\x32\\xea\\x06\\x62\\x36\\xf4\\x03\\x5c\\x2b\\x7e\\\r\n\\xc7\\x9d\\x92\\x9e\\x43\\x1e\\x7c\\xa1\\x98\\x05\\x68\\xaf\\x7b\\x88\\x1a\\xd6\\\r\n\\xb3\\x5b\\x5b\\xda\\xcf\\xfb\\xb3\\xf0\\x8b\\xab\\x3c\\x90\\xc6\\x64\\x0b\\xcc\\\r\n\\x65\\x56\\x76\\x8e\\xf6\\xcc\\x7c\\x7c\\xce\\xf7\\xd7\\xb9\\xc4\\xf4\\xcb\\x2d\\\r\n\\x45\\x35\\x4c\\xb2\\x1b\\xd2\\xcc\\x02\\x15\\xba\\x33\\x38\\x70\\xd1\\xae\\x61\\\r\n\\xd9\\x4d\\xee\\xbd\\x5b\\xef\\xbd\\xf8\\xfd\\x2b\\x55\\x73\\xf3\\x94\\x54\\x6a\\\r\n\\xa7\\x9a\\x3c\\x8b\\x9c\\x83\\x51\\x18\\x3f\\x19\\x00\\x01\\x9a\\xdf\\x77\\x43\\\r\n\\x71\\xb6\\x3d\\x9e\\x56\\x8b\\x8e\\x0a\\x19\\xfe\\x1a\\xa8\\x65\\xa4\\x6b\\x5c\\\r\n\\x2b\\x7b\\xdc\\x52\\xc2\\xb9\\xad\\xae\\x5d\\x41\\xb1\\x36\\xcc\\x00\\xf5\\xc5\\\r\n\\x55\\x37\\xba\\x34\\x54\\xf3\\xd1\\x45\\x1d\\x42\\xc3\\x7e\\x61\\x22\\x46\\x95\\\r\n\\x65\\xd0\\x48\\xcd\\xd6\\x3a\\x6c\\xd6\\x4b\\x82\\x0a\\x9e\\x80\\xf7\\xc3\\xd2\\\r\n\\x53\\x56\\xf3\\x33\\xb4\\xa5\\x61\\x89\\xb2\\xad\\xf2\\x85\\x63\\x98\\xdf\\x66\\\r\n\\xcb\\xa8\\x04\\xe9\\xae\\xc7\\x14\\xf0\\x06\\x5f\\x75\\x2a\\x54\\x48\\xbc\\xc8\\\r\n\\x1d\\x7b\\x38\\x03\\x3a\\x5e\\xf7\\xd7\\xe2\\xb7\\xc8\\xdb\\x14\\x4a\\x2b\\x1a\\\r\n\\x96\\x8e\\xa1\\x33\\x52\\x47\\x51\\x1f\\x3d\\xb3\\xfd\\xba\\xa3\\x00\\x92\\x95\\\r\n\\xe9\\xca\\x55\\xb4\\x6c\\xca\\x09\\x19\\x0e\\x98\\xbc\\x74\\xfc\\x71\\xe9\\x62\\\r\n\\x52\\x94\\xc0\\xd4\\xd0\\x85\\x75\\x2a\\xdc\\xb6\\xfd\\xcd\\xaf\\xf1\\x02\\x72\\\r\n\\x95\\x6b\\x00\\x73\\x5c\\x1d\\x71\\x5a\\x15\\xc4\\x21\\x14\\xd3\\xbf\\xda\\x52\\\r\n\\xd4\\xae\\xea\\x65\\x89\\x87\\x52\\x9c\\xc0\\xec\\xd7\\x2a\\x45\\x81\\x25\\x54\\\r\n\\xe5\\xb1\\xc3\\x2b\\x94\\x8e\\x35\\x2a\\x54\\x54\\x44\\xac\\xad\\x7b\\x09\\x1b\\\r\n\\xec\\xb3\\x7f\\xe4\\x2c\\x2f\\xad\\xad\\xae\\x1a\\x99\\xd5\\x99\\x4d\\x39\\x24\\\r\n\\x31\\x04\\x85\\xbd\\xc8\\x3a\\xeb\\x9b\\x5f\\x9e\\x3d\\xa1\\xf6\\xf5\\x66\\x8a\\\r\n\\xb3\\x85\\x43\\x48\\x25\\x82\\x72\\xa8\\xd5\\x8c\\xc4\\xbc\\xd3\\x2b\\x1b\\x22\\\r\n\\x28\\xd5\\x63\\x0e\\x09\\xcf\\x9f\\xaa\\xdd\\xc0\\xc7\\xb3\\xbc\\x15\\xe3\\xfb\\\r\n\\x7a\\x92\\x4b\\xb1\\xe6\\xb5\\xee\\x72\\x5c\\x5e\\xda\\xf7\\xb5\\x80\\xf0\\xb6\\\r\n\\xb6\\xa0\\x61\\xeb\\x16\\x47\\x3c\\xb0\\x44\\x54\\xf7\\x50\\xba\\xde\\xfe\\x48\\\r\n\\xfe\\xf8\\xae\\x88\\xd5\\xa7\\x4a\\x96\\x86\\x65\\xb1\\x5d\\xba\\xbc\\x1b\\x6f\\\r\n\\xad\\xad\\x6b\\x6a\\x31\\x1d\\x1c\\xb1\\x4e\\xd0\\x66\\x1d\\x04\\x0f\\xc8\\x68\\\r\n\\xda\\x1f\\xd1\\xc7\\x25\\x8d\\xcd\\xf6\\x1d\\xff\\x00\\xa6\\x1a\\x32\\xb6\\xdb\\\r\n\\x1c\\x36\\x3e\\x55\\xe4\\x6e\\x5c\\x61\\x86\\x8e\\xec\\x14\\x6d\\xeb\\xa1\\xf3\\\r\n\\xf8\\x63\\x8d\\x4d\\xc3\\xde\\x72\\x20\\x06\\xa6\\x43\\x62\\xf3\\x5c\\xf2\\xee\\\r\n\\xa7\\xe1\\x50\\x6e\\x6d\\x61\\xa9\\x5b\\x62\\x36\\x92\\xa1\\x11\\x61\\x81\\x62\\\r\n\\xc9\\xd2\\xed\\x1a\\x37\\x51\\x24\\xea\\xdd\\xec\\x06\\x9f\\xcf\\xce\\x2b\\xa1\\\r\n\\x95\\x61\\xeb\\x6d\\x88\\x07\\xfa\\xe2\\x0a\\x7e\\x63\\x28\\x2d\\x60\\x4e\\xff\\\r\n\\x00\\x4f\\xe7\\xf4\\x38\\x8b\\xd9\\xf8\\x2e\\x1d\\xf3\\xb2\\x65\\x1a\\x03\\x62\\\r\n\\x75\\xf3\\x6b\\x81\\xbe\\xdf\\x86\\x07\\x02\\xa1\\x91\\xd5\\x1b\\x98\\xd9\\x75\\\r\n\\x04\\x48\\xc1\\x82\\x8d\\x80\\x23\\xb0\\xbe\\xa7\\xbd\\xbb\\x62\\x8f\\x86\\x2d\\\r\n\\x3b\\x09\\x3d\\xee\\x76\\x4b\\xdd\\xa1\\x72\\x1c\\x58\\x1e\\xd9\\x85\\xd7\\xe9\\\r\n\\xfd\\x4e\\x38\\x9f\\x13\\x84\\x24\\xd4\\xb4\\xbc\\xc4\\x9a\\xc4\\x09\\x00\\xe9\\\r\n\\x4b\\x92\\x0f\\x83\\x71\\xf2\\xdf\\xbe\\x3d\\x8f\\xe1\\x85\\x23\\x15\\x55\\x0f\\\r\n\\xf6\\x92\\x12\\x3c\\x86\\x4d\\x18\\x33\\x93\\xa9\\x27\\xd0\\xed\\x7d\\xce\\x2a\\\r\n\\xfe\\xc6\\x98\\xa4\\x4d\\x76\\x71\\xd8\\x11\\x94\\x13\\x7b\\x5c\\xdf\\xd3\\x6c\\\r\n\\x00\\x93\\x30\\x8f\\xe5\\x99\\xaf\\xb9\\x6d\\xcf\\xa5\\x8e\\xa3\\xe9\\xa7\\x6c\\\r\n\\x54\\x22\\x2c\\x7c\\xba\\x5e\\x61\\xe5\\xaa\\x00\\xef\\xa1\\x16\\x3d\\xff\\x00\\\r\n\\xcb\\x72\\x18\\x68\\x7a\\x7b\\xe2\\x69\\x24\\x5b\\x5c\\xe7\\x4c\\x99\\x48\\x37\\\r\n\\xb9\\xb9\\xdd\\xbe\\xa7\\x6d\\x8f\\xaf\\x74\\xca\\x57\\x5b\\x74\\x6a\\x0f\\x7b\\\r\n\\x1f\\x88\\x79\\xb0\\xf8\\xbf\\x1c\\x12\\x33\\x0f\\x4b\\x7f\\xf9\\x5f\\xf9\\xe1\\\r\n\\x75\\x63\\x7f\\x1f\\xaf\\xcb\\x0a\\xba\\x3b\\x90\\xd2\\xc7\\x12\\x92\\xca\\xdf\\\r\n\\xe6\\x60\\x91\\x8b\\xad\\xbb\\xb5\\xfe\\x9d\\xf0\\xec\\xd7\\xd7\\xef\\x6b\\xeb\\\r\n\\x6f\\xd6\\xfd\\xf0\\x79\\x15\\x14\\xad\\x4a\\x88\\xb1\\xd6\\xa0\\x99\\xe0\\x90\\\r\n\\xf4\\xa4\\x8b\\x35\\x83\\x46\\xcd\\xa5\\x9b\\x38\\x0c\\x84\\xe9\\x72\\x6e\\x45\\\r\n\\xf1\\x59\\x5d\\x1a\\x38\\xa3\\x91\\x1d\\x25\\x80\\x91\\x20\\x20\\x00\\xe5\\x0d\\\r\n\\xf2\\x03\\xa6\\xb7\\xe9\\xd7\\x4b\\x62\\xbf\\x8c\\xd2\\xd5\\xc1\\x1e\\x48\\x2d\\\r\n\\x57\\x15\\x31\\x8d\\xd9\\xf2\\x90\\x15\\x59\\xf2\\x78\\x24\\xea\\x3f\\x1c\\x71\\\r\n\\x5c\\xed\\xc0\\xbd\\x9d\\x2b\\xa9\\xa6\\x93\\x89\\x53\\x13\\x7d\\x6e\\x26\\x89\\\r\n\\x88\\xfc\\x6e\\x7f\\x47\\x1c\\x22\\x76\\x8e\\x7c\\x84\\x10\\xe6\\xcc\\x46\\xb6\\\r\n\\xb0\\xfe\\xba\\xed\\xf8\\xe2\\x92\\x26\\x92\\xaa\\x24\\x05\\x82\\xc9\\xbd\\x89\\\r\n\\xb9\\xb1\\xd4\\x0e\\xd7\\x3a\\x5f\\xd3\\xf3\\xad\\x11\\xfb\\xed\\x47\\x66\\x41\\\r\n\\x1a\\xdf\\xba\\xe4\\x45\\x1a\\x79\\xd6\\xe7\\x51\\xdf\\x15\\x7c\\x46\\xb2\\x96\\\r\n\\xbb\\xff\\x00\\x72\\x32\\xc4\\x85\\x3b\\x74\\x1b\\x35\\x9b\\x5d\\x7b\\x1b\\x1d\\\r\n\\xad\\x7c\\x7b\\x15\\xed\\x8d\\x0c\\xd4\\xe2\\x05\\x00\\x49\\x65\\xce\\x84\\x8c\\\r\n\\xcb\\x7e\\x9c\\xc7\\xd3\\x6d\\xb1\\xc5\\xb8\\xc9\\x80\\xaa\\xc0\\x0b\\xf3\\x00\\\r\n\\x39\\x45\\xef\\xd5\\xeb\\x63\\xb7\\xcf\\xc7\\xae\\x38\\xcf\\x13\\xae\\x58\\xa6\\\r\n\\x4a\\x57\\x78\\xda\\x54\\xcc\\xa0\\x31\\xb8\\x92\\xda\\x0d\\x36\\xdb\\xc9\\xd3\\\r\n\\xb5\\xf1\\x1f\\x19\\xab\\xe2\\x0d\\x23\\xd6\\xa4\\x91\\xd5\\xc1\\x2b\\x43\\x32\\\r\n\\x3d\\xc1\\x31\\x9c\\xdd\\x63\\x7b\\xde\\xe4\\x13\\xe8\\x30\\x54\\xa4\\xc5\\xb6\\\r\n\\x17\\x07\\x5b\\xf8\\xd3\\xf4\\x0e\\x39\\xd9\\x8e\\x9b\\x77\\x3e\\x9e\\xbf\\x5f\\\r\n\\x18\\xa5\\x9f\\x36\\x64\\x24\\x5e\\xdf\\xd7\\x73\\x8e\\x1c\\x82\\x19\\x66\\xa8\\\r\n\\x71\\x64\\x52\\xa2\\x34\\x3f\\x7d\\xbe\\xa0\\xf4\\x8d\\x3b\\xfd\\x31\\xc4\\xef\\\r\n\\x37\\xba\\xf1\\x02\\x48\\x76\\x69\\x68\\xaa\\x05\\xc9\\x5c\\xe0\\xe7\\x88\\xdb\\\r\n\\x51\\x66\\x41\\xdb\\xf3\\xc3\\xc2\\xd4\\x48\\xef\\x99\\x96\\x66\\x61\\x3c\\x21\\\r\n\\x7f\\xed\\xa1\\xd0\\x93\\xff\\x00\\xf7\\x6f\\x65\\xbd\\xb2\\xfc\\x56\\xdb\\x10\\\r\n\\x46\\x2a\\xe6\\x78\\xfa\\x9e\\x29\\x19\\x58\\x01\\xba\\x91\\xa2\\x75\\x7d\\xdb\\\r\n\\x13\\x70\\xd7\\xf1\\xdf\\x12\\xb2\\xd2\\x2d\\x3c\\x2f\\x36\\xc4\\x20\\x7d\\xf3\\\r\n\\x32\\x6f\\xa8\\xb7\\xe8\\xdf\\x09\\x1c\\x35\\x50\\xf2\\xcd\\xb2\\x31\\x49\\x12\\\r\n\\x40\\x2e\\x43\\x9c\\xdd\\xff\\x00\\x88\\x3a\\xa9\\xb1\\xde\\xfd\\xcd\\xc6\\x38\\\r\n\\x8d\\xe3\\xa5\\x9d\\x6c\\x4b\\xd3\\xac\\x6f\\x6b\\x12\\x58\\x2b\\x6a\\x6d\\xfc\\\r\n\\xaf\\x6d\\x3d\\x70\\x78\\x96\\x4e\\x34\\x6a\\x63\\x55\\x0b\\x1c\\x94\\xa4\\x77\\\r\n\\xff\\x00\\xe1\\xcf\\x30\\x93\\xa5\\x81\\x2c\\x6c\\x40\\xd3\\x4c\\x71\\xc8\\xc2\\\r\n\\x71\\x7e\\x21\\x4c\\x97\\x00\\xd4\\x2d\\x4a\\xb2\\x96\\x0b\\xc9\\xa8\\x02\\x64\\\r\n\\x26\\xc7\\x53\\xcb\\x94\\x00\\x0e\\x97\\xda\\xfb\\xe1\\x69\\xe0\\x85\\x2a\\xd2\\\r\n\\x30\\x33\\x3d\\x29\\x2d\\x71\\xd4\\x19\\x6e\\x0d\\x8d\\xcd\\xd1\\x98\\xef\\xf1\\\r\n\\x7e\\x43\\x11\\xd1\\xe6\\xa3\\xf7\\x84\\x6f\\xb7\\xa3\\x75\\x96\\x35\\xfb\\xac\\\r\n\\x02\\x2b\\x30\\x37\\xef\\xf2\\xd0\\xf7\\xd3\\x42\\xb5\\x32\\x95\\x8e\\xaa\\x14\\\r\n\\x1a\\x6b\\x24\\x6a\\x6e\\xce\\x87\\xe3\\xca\\x2f\\xab\\x46\\x41\\xd3\\xb8\\xfc\\\r\n\\xea\\xa8\\x20\\xe2\\x92\\x50\\x55\\x2c\\xfc\\x89\\x6a\\x22\\x05\\x1c\\x8e\\x96\\\r\n\\x78\\x90\\x18\\xf3\\xf7\\x0d\\x72\\x43\\x6b\\x72\\x06\\x83\\xa6\\xf8\\xf6\\x8e\\\r\n\\x92\\x6a\\x5a\\x95\\x47\\xb6\\x59\\x19\\xaa\\x00\\x4e\\xcf\\x20\\x55\\x93\\xa8\\\r\n\\x5f\\x52\\xf0\\x8b\\x5b\\x5d\\x77\\x03\\x4c\\x39\\x7c\\xb7\\x43\\xb0\\x43\\xa7\\\r\n\\xf1\\xab\\x5d\\x76\\xd8\\xeb\\x6b\\xe8\\x71\\xef\\x93\\x9d\\x48\\x37\\x3b\\xfc\\\r\n\\x3b\\xe3\\x86\\xd1\\x4d\\x35\\x64\\x0e\\xf6\\x22\\x33\\x92\\x28\\x8e\\xec\\xca\\\r\n\\x48\\x06\\xdd\\x40\\xed\\x9b\\xcd\\xad\\xb1\\xd7\\x0b\\x53\\x04\\x52\\xb7\\x0c\\\r\n\\x92\\x64\\x82\\x65\\x8a\\x39\\x64\\x76\\x60\\x03\\x2b\\xa8\\x21\\x50\\x77\\x2a\\\r\n\\x4e\\xa3\\x43\\xb5\\xb7\\xc7\\x3f\\x87\\x40\\xce\\x23\\x32\\x54\\xbb\\x31\\x24\\\r\n\\xfe\\xed\\x2f\\xf5\\xb9\\xb7\\xc8\\x60\\x55\\xe7\\x8e\\x45\\x78\\xa2\\x8d\\x15\\\r\n\\x6e\\x8a\\x9a\\x65\\x23\\xe1\\x25\\xbc\\xe6\\xb5\\xbc\\xe8\\x2f\\xe2\\x86\\x09\\\r\n\\x00\\xe7\\x38\\x21\\xe6\\x62\\xe5\\x8d\\xee\\x05\\xc8\\xd0\\x9d\\x35\\x3f\\x95\\\r\n\\x8e\\x05\\x00\\x90\\x49\\x95\\xc1\\xea\\x1b\\x8f\\x5b\\xff\\x00\\xce\\x98\\xf7\\\r\n\\x5c\\xb9\\x92\\x28\\xa1\\x91\\xed\\xfb\\xc9\\xa5\\x0a\\xaa\\x76\\x04\\x22\\xdc\\\r\n\\xef\\x6d\\xf7\\xd8\\x63\\x8a\\x52\\xd4\\x45\\x10\\x57\\x9f\\x33\\x35\\xc9\\x51\\\r\n\\x9b\\x4f\\x44\\xda\\xc0\\x6d\\xad\\xb1\\xee\\xca\\xb9\\x7a\\x6e\\xde\\xbf\\xd7\\\r\n\\x5f\\xe7\\x8e\\x17\\x0b\\x16\\x54\\xe8\\x20\\x5a\\xe3\\xbf\\x9f\\x5f\\xd7\\x6c\\\r\n\\x71\\xf5\\x44\\xc9\\x1e\\x9e\\x5b\\x29\\xfc\\x6e\\x07\\x8f\\xcf\\x5b\\x77\\xc7\\\r\n\\x0b\\xa2\\x32\\x3a\\xbe\\x6b\\x28\\xfb\\xa0\\x5e\\xdf\\xed\\x80\\xd4\\xd1\\x80\\\r\n\\xa5\\xf5\\x50\\x06\\x50\\xb7\\xed\\x85\\x54\\xbb\\x4a\\x97\\x23\\x29\\x1a\\x8b\\\r\n\\x1b\\xb7\\x8b\\xfa\\x77\\xc4\\xf3\\xa4\\x14\\xd2\\x4c\\xa1\\x4b\\x22\\x33\\xd9\\\r\n\\xbb\\x32\\x0b\\x9f\\x95\\xf5\\xfc\\x71\\x42\\xbf\\xb4\\x59\\x5d\\x85\\xde\\x56\\\r\n\\x24\\x9d\\x2f\\xab\\x1f\\xc6\\xdb\\x0d\\x3f\\xbe\\x38\\x25\\x2c\\x54\\xd0\\x44\\\r\n\\x5c\\x6c\\xb6\\xcb\\x6d\\x7e\\x66\\xc7\\x4b\\x7c\\xf1\\xc5\\x6a\\x32\\xa2\\x0d\\\r\n\\x99\\xdb\\x45\\xf4\\x16\\xd4\\xfa\\x9d\\xfc\\x5b\\x4f\\x5c\\x40\\x22\\x2d\\xcc\\\r\n\\xb0\\xd0\\xea\\x72\\x96\\xfc\\x76\\xdf\\x6f\\x97\\xae\\x27\\xa9\\xc8\\xc0\\x28\\\r\n\\xbb\\xba\\x30\\x72\\x76\\x17\\xb2\\xd8\\x0d\\xf4\\xdc\\x6d\\xdb\\xb6\\x25\\xcd\\\r\n\\x65\\x62\\xdd\\x7b\\x9d\\x6f\\x6b\\x69\\x7c\\x73\\x5d\\x1d\\x18\\x0e\\x9b\\xf5\\\r\n\\x7e\\x77\\xfc\\x41\\xb0\\xdf\\xd6\\xdb\\xe1\\xc1\\xcd\\xa3\\x7d\\x9d\\xee\\x0e\\\r\n\\xdd\\x27\\xfa\\xf6\\xc1\\x60\\x84\\x0d\\xfb\\x0f\\xad\\x8d\\xcf\\xe7\\x89\\xfe\\\r\n\\xc2\\x81\\x07\\xdf\\xab\\x63\\x2b\\x76\\xfb\\x18\\x6e\\x89\\xdf\\x40\\xd2\\x33\\\r\n\\x36\\xa3\\xee\\x8b\\x62\\xa1\\xa4\\x6c\\xa6\\x3d\\x56\\xc4\\xf9\\xb0\\x19\\xb6\\\r\n\\xf9\\xdc\\x5c\\xf6\\x20\\x61\\x17\\x98\\x84\\x92\\x75\\x16\\x37\\x3a\\xdb\\xfb\\\r\n\\x69\\xf8\\xe3\\x8b\\xc2\\x4d\\x74\\xd2\\x2a\\x96\\x17\\x01\\x9b\\x5e\\xa7\\x5b\\\r\n\\x12\\xda\\xfd\\xe5\\xcc\\x2e\\x45\\xaf\\xde\\xe7\\x14\\xb7\\x86\\x78\\xe7\\x68\\\r\n\\x44\\xc2\\x09\\x12\\x57\\x0e\\x01\\x56\\xc8\\xc1\\xec\\x6e\\x0d\\xc1\\x20\\x0b\\\r\n\\x7a\\xeb\\x8c\\xc2\\x4e\\x13\\x44\\xd2\\x8c\\xdc\\xee\\x27\\x50\\xd7\\x3b\\x03\\\r\n\\x3a\\x93\\x9e\\xd6\\xd4\\x67\\x63\\xb0\\xec\\x36\\x03\\x13\\x52\\xd3\\xd1\\x34\\\r\n\\x13\\xe4\\xcc\\xcf\\x78\\x59\\xff\\x00\\x85\\xa4\\xd5\\x4d\\xb5\\x1d\\xb4\\x36\\\r\n\\x3a\\x9d\\x7b\\x62\\x9e\\xd1\\x88\\xab\\x4a\\x0c\\xb4\\x10\\xb4\\xfb\\x9b\\x93\\\r\n\\xcb\\x2a\\x05\\xad\\xdd\\x9b\\xfd\\xb1\\x24\\x91\\xd4\\x81\\x59\\xd6\\x26\\x68\\\r\n\\x89\\x9d\\x0d\\xf2\\xb7\\x4d\\xf3\\x03\\xa7\\xe1\\x89\\xa1\\x8e\\xa6\\x01\\x2f\\\r\n\\x2c\\xba\\x97\\xce\\x40\\x3d\\x71\\xbe\\xc5\\xe2\\xed\\x7d\\x35\\x4d\\x9f\\xea\\\r\n\\x71\\xec\\x7d\\x3d\\x3c\\x7c\\x43\\x37\\x48\\x06\\xd6\\x61\\xf0\\x38\\x6f\\xba\\\r\n\\x3c\\x7f\\xa7\\x4b\\x1d\\xb4\\xc4\\x7c\\x32\\x8e\\xac\\x73\\x72\\xab\\x74\\x81\\\r\n\\xf2\\xb7\\xa7\\xd7\\x1e\\xd7\\xaa\\xc3\\x5c\\x91\\xd2\\x10\\xbc\\xbd\\xd7\\x7b\\\r\n\\x9b\\x8f\\x97\\xdd\\xbf\\xe7\\x83\\xc3\\xa9\\xdc\\xb4\\xdc\\x95\\x0e\\xda\\xbb\\\r\n\\x5b\\xe2\\xbf\\x9f\\x3d\\xb1\\x5d\\xc3\\x21\\x30\\xc8\\xe1\\x6c\\x7e\\x2e\\x9b\\\r\n\\xee\\x07\\xa7\\xa5\\xf1\\x9b\\x96\\xe4\\x11\\xe9\\x88\\x25\\x60\\xfc\\xdd\\x95\\\r\n\\x02\\x87\\xf3\\x90\\x9d\\x3f\\x06\\xfc\\x86\\xd8\\x67\\x50\\xb4\\x74\\xcb\\x7b\\\r\n\\x88\\x16\\xa0\\xed\\x62\\xf2\\x5c\\xdb\\xe8\\x99\\x4f\\x63\\x76\\x22\\xda\\x6b\\\r\n\\x1c\\x62\\x6a\\x6a\\xc8\\x0c\\x62\\x42\\xc8\\x95\\x74\\xe9\\x7b\\x06\\x9e\\x94\\\r\n\\x16\\x23\\x5d\\xf3\\x20\\xb1\\x1d\\xc6\\x9a\\x5f\\x51\\x54\\xd5\\x1f\\xe2\\x18\\\r\n\\x2e\\x7f\\x86\\x6b\\x90\\xbb\\xde\\xd6\\xf0\\xbe\\x3c\\x68\\x31\\x49\\x4b\\xee\\\r\n\\xb2\\x19\\xa7\\x65\\x8e\\x2b\\x87\\x19\\x6c\\xeb\\x26\\x6d\\x79\\x20\\x06\\xce\\\r\n\\x5a\\xf6\\xb5\\x94\\xfd\\x71\\xc5\\xa4\\x2f\\xca\\x65\\x42\\xe6\\x3b\\xbb\\x2d\\\r\n\\xb2\\xf2\\xcd\\xfa\\x7a\\xb5\\x62\\x72\\xfc\\x63\\xa3\\xfb\\xd2\\x71\\x5f\\x75\\\r\n\\x8a\\xb5\\xe7\\x72\\x23\\x8a\\x38\\xa7\\x56\\x25\\xdb\\x97\\x96\\x5b\\x74\\xa8\\\r\n\\xbd\\xbe\\x21\\x9b\\x4e\\xd7\\xd7\\xb7\\x04\\xf6\\xa1\\x78\\xad\\x75\\x45\\x35\\\r\n\\x62\\xc5\\x19\\x92\\x00\\x29\\x9c\\x5c\\xac\\xb9\\x48\\xbc\\x64\\x13\\xfb\\xdd\\\r\n\\xca\\xda\\xf9\\xaf\\x60\\x6f\\xa6\\x24\\xe1\\xbc\\x32\\x9e\\xbb\\x88\\x45\\x57\\\r\n\\x1c\\x86\\xa1\\x9e\\x1f\\x74\\x8a\\xe5\\x12\\x1c\\xd4\\xe9\\x2e\\x69\\x1f\\xb6\\\r\n\\x6e\\x65\\xc2\\x9d\\xf4\\xd8\\x6b\\x8a\\x88\\x69\\xaa\\x23\\xe1\\xb5\\x0d\\xa3\\\r\n\\x55\\x70\\xc8\\x62\\x91\\xb4\\xb4\\x92\\x52\\x33\\xd2\\x38\\xfe\\x20\\x57\\x94\\\r\n\\x96\\x37\\xd3\\x7d\\xb1\\x5f\\x1b\\xa2\\xca\\xa0\\xe5\\xa8\\x83\\x30\\x5d\\x0f\\\r\n\\x5c\\x64\\x59\\xd0\\xdb\\x43\\x70\\x2e\\x3c\\x35\\x9b\\xc1\\xc7\\x0d\\x9e\\x25\\\r\n\\x5c\\xd7\\xd1\\xb2\\x16\\x16\\xf4\\x20\\xe6\\x5b\\xef\\xa7\\x8f\\xe5\\x8c\\x8b\\\r\n\\x47\\x59\\x2d\\x3a\\x8c\\xd0\\xcf\\xf6\\xf4\\x96\\xed\\x7d\\x5a\\x3d\\x7f\\x87\\\r\n\\x5d\\x05\\xb6\\xfc\\x51\\xe5\\x97\\x86\\x56\\x28\\x4e\\xaa\\x3a\\x9a\\x68\\xe3\\\r\n\\x65\\xf8\\xe1\\x0f\\x1a\\x98\\xdb\\x4b\\xdb\\x31\\x67\\x43\\xb1\\x04\\x2f\\x66\\\r\n\\xc5\\x7b\\x89\\xa8\\xcd\\x3c\\x81\\xe5\\x92\\x8e\\x4a\\x49\\xaa\\x08\\xbb\\x4d\\\r\n\\x18\\xaa\\x45\\x2f\\x28\\xb8\\xd6\\xd2\\x1e\\xb5\\xb6\\x9b\\x9d\\x2f\\x83\\xc3\\\r\n\\xa8\\x69\\xe4\\x9a\\x59\\xa4\\x33\\x43\\x0a\\x47\\x2a\\xac\\x2a\\x42\\xca\\xb2\\\r\n\\x28\\xcb\\xcd\\xec\\xa7\\x6c\\xc3\\x43\\x73\\xa6\\x3f\\x6b\\x53\\xfd\\xda\\x28\\\r\n\\xf2\\xfd\\xdd\\x7e\\xef\\x6f\\xfb\\x7e\\x31\\xc3\\xa8\\x27\\x9a\\x56\\x91\\x1a\\\r\n\\x47\\x31\\x47\\xcf\\x8a\\x38\\x6c\\x66\\x2a\\x00\\x39\\xfa\\x35\\x11\\xad\\xc5\\\r\n\\xda\\xd7\\xec\\x09\\xed\\x0f\\x0a\\xaa\\xa9\\xaa\\xf7\\x97\\xa7\\x97\\x99\\x32\\\r\n\\xaa\\x33\\x32\\x13\\xb0\\xdf\\xab\\x51\\x7d\\xb3\\x13\\xa0\\xc3\\xf0\\x41\\x4a\\\r\n\\x17\\x3d\\x4d\\x2d\\xb2\\x2b\\xbb\\x67\\x17\\x8b\\x37\\x69\\x01\\xd4\\x58\\xe2\\\r\n\\xb4\\x70\\x95\\x02\\x95\\xea\\x24\\x79\\x91\\x83\\xc9\\xee\\xfa\\x82\\xb6\\x05\\\r\n\\x54\\xdb\\x4d\\xc5\\xfc\\xed\\x8f\\xda\\x10\\xc4\\x33\\x45\\x19\\x64\\x51\\x61\\\r\n\\x9a\\xda\\x78\\xe9\\xbe\\x27\\xe2\\x15\\x53\\x74\\xfe\\xe9\\x2f\\x7c\\xb1\\xe9\\\r\n\\x7d\\x7b\\xdb\\x70\\x7f\\x0b\\xfa\\xe3\\x87\\x43\\xee\\xca\\x64\\x92\\xc1\\xe5\\\r\n\\xb1\\x0a\\x45\\xd9\\x80\\xf8\\x6f\\xfc\\x23\\x5d\\xbf\\x3c\\x71\\x97\\x66\\x7e\\\r\n\\xa7\\xd3\\xc0\\xd2\\xde\\x2d\\x6e\\xdf\\x3c\\x52\\xd3\\x23\\x20\\x66\\xb9\\xbf\\\r\n\\x73\\xbd\\xf1\\x01\\x82\\x96\\x5c\\xc7\\xf2\\xfc\\x75\\xdf\\x7c\\x71\\x03\\xef\\\r\n\\xd5\\x6c\\xc0\\x8f\\x02\\xfd\\x37\\xb7\\xae\\xbb\\x7e\\x76\\xc7\\x0c\\x80\\x53\\\r\n\\x79\\x39\\x80\\xfb\\xb6\\x4d\\x3b\\xff\\x00\\x4d\\x7f\\xb6\\x16\\x25\\xb9\\x66\\\r\n\\x55\\xfc\\x06\\xbf\\x5c\\x56\\x4b\\x0d\\x2d\\x14\\xb5\\x12\\xb2\\xa2\\xa3\\xad\\\r\n\\xae\\x3f\\xfb\\x57\\xc9\\xf9\\x6d\\xae\\x1b\\xda\\x4a\\x03\\x1b\\xc2\\x94\\xf2\\\r\n\\x33\\x35\\xd4\\x5c\\x65\\x56\\xd0\\x82\\x4e\\xbb\\x7d\\x0f\\x8c\\x7b\\x31\\xc3\\\r\n\\x43\\x48\\x5e\\x61\\xcb\\x8e\\xf9\\xa2\\x88\\xe8\\xda\\x9b\\xe8\\x34\\xba\\x0f\\\r\n\\x3f\\xed\\x8a\\x74\\x54\\x89\\xd8\\x69\\x6b\\xe5\\xb6\\xa0\\x0b\\x5f\\x72\\x7a\\\r\n\\xb3\\x6b\\xdc\\x7c\\xf1\\xc4\\x64\\x46\\x96\\x35\\xb6\\xa0\\x11\\xa8\\x03\\xab\\\r\n\\x72\\xc7\\xe6\\x6f\\xf2\\x1a\\x76\\xbe\\x10\\x0b\\x9b\\x1b\\x06\\xed\\xa0\\x1b\\\r\n\\x5f\\x7f\\xd6\\xbf\\x3c\\x48\\xe7\\x38\\x37\\xd3\\x4d\\x7c\\xe9\\x7f\\xce\\xd8\\\r\n\\x77\\xcd\\xad\\xf5\\xfe\\x9e\\xa3\\xc6\\x0b\\x1d\\x7b\\x8d\\x7f\\x21\\xe7\\x12\\\r\n\\x31\\xe5\\x68\\x3a\\x93\\xaa\\xdd\\xf2\\x9f\\x89\\x4e\\x83\\x63\\xae\\xde\\x70\\\r\n\\xb7\\x20\\x12\\x6d\\xa7\\x7f\\xe5\\x8e\\x20\\xcf\\x96\\x9e\\x7b\\x3b\\x45\\x1c\\\r\n\\x31\\xc5\\x60\\x0d\\xb9\\x68\\xbf\\x6a\\xa3\\x20\\x0b\\x9e\\x32\\x4c\\x84\\x1b\\\r\n\\xb0\\x07\\x5f\\x8b\\x0d\\x37\\x2c\\xb4\\x6f\\xb3\\x6b\\x19\\x0d\\xf7\\x4d\\xd8\\\r\n\\x11\\xf9\\x13\\xa1\\x07\\x5d\\x06\\x21\\x52\\x10\\xdf\\xb9\\xfa\\x91\\xfd\\x35\\\r\n\\xfe\\x58\\xe2\\x41\\x55\\xe3\\x50\\xa2\\xca\\xcf\\x9f\\xe7\\x2b\\x5b\\x5b\\x76\\\r\n\\xb0\\x1b\\xef\\x8e\\x32\\xa6\\x38\\xd4\\xc3\\xf6\\x65\\xfa\\x59\\x63\\x5b\\x06\\\r\n\\x00\\x83\\x9a\\x4d\\x3e\\xed\\x80\\x03\\xd4\\xf8\\xc5\\x1c\\x52\\x55\\xf0\\x1a\\\r\n\\x44\\x52\\x1d\\xe1\\xae\\x16\\xb6\\x9c\\x9d\\xc8\\xf4\\xb6\\xb7\\x16\\x16\\x17\\\r\n\\xc5\\x4f\\x0d\\xf7\\x8e\\x1f\\x65\\x3f\\x6a\\x39\\x72\\x01\\x7e\\xf1\\xf5\\x7a\\\r\n\\xea\\x3b\\x1b\\x7a\\x61\\x24\\x9b\\xf6\\x54\\xb1\\xb2\\x7d\\xb3\\x37\\x20\\x80\\\r\n\\x2f\\x9a\\x34\\xd7\\x38\\xd3\\xef\\x68\\x0d\\xc6\\xe3\\xb8\\xb1\\xc5\\x28\\x63\\\r\n\\x4a\\xe1\\xd7\\x29\\x58\\xca\\xea\\x0e\\x87\\x2e\\x5f\\xd0\\xf9\\xe2\\x9a\\x01\\\r\n\\xc8\\xe5\\xde\\xe4\\xec\\x7b\\x1b\\xf8\\xd7\\xb6\\xd8\\xf6\\x3f\\x83\\x34\\xf3\\\r\n\\xac\\xe8\\xbf\\x67\\x1e\\xf6\\x02\\xd9\\xdb\\x4b\\xdf\\xd4\\x7c\\x56\\xb9\\xf9\\\r\n\\x60\\x41\\xee\\x74\\x92\\x0c\\xbf\\x0a\\x13\\x9b\\xfc\\xc4\\x5c\\x9f\\x41\\x8f\\\r\n\\x6a\\x2b\\xb9\\x3c\\x42\\x49\\xdc\\x99\\x1b\\x3e\\x41\\xd4\\x72\\x9b\\x9d\\x45\\\r\n\\x86\\xbf\\x2d\\x74\\xd7\\xe5\\x8a\\x64\\xe6\\xd1\\xf3\\x07\\xde\\x39\\xb4\\xbd\\\r\n\\xb6\\x07\\x2e\\xe7\\xeb\\xf9\\xe2\\xb7\\x88\\xc7\\x05\\xe2\\x3f\\x17\\x7b\\xdf\\\r\n\\xf4\\x74\\xf5\\xdb\\x13\\xa2\\xbb\\xbb\\x27\\xc2\\x5a\\xe3\\xbd\\xb5\\xb8\\xd7\\\r\n\\x14\\xb0\\x96\\x92\\x19\\x17\\xa9\\x1d\\xd2\\x09\\xa3\\xee\\x52\\x47\\x31\\xb1\\\r\n\\xb7\\x7c\\xa4\\xdf\\xb6\\xd8\\x66\\x2b\\xc4\\xe4\\x80\\xed\\x1b\\x3f\\x29\\xf5\\\r\n\\xb1\\x81\\x34\\x5d\\xc9\\xd5\\x40\\xfe\\x5d\\xb5\\xc4\\x35\\x62\\x9a\\x58\\x2a\\\r\n\\x6f\\xd1\\x1c\\xd1\\x23\\x77\\xe8\\x77\\x0a\\xf7\\xf4\\xc8\\xc6\\xe7\\x5e\\xdb\\\r\n\\xe3\\x88\\x51\\xad\\x1d\\x6d\\x7c\\x62\\x40\\x20\\xce\\xd2\\x25\\xee\\xaa\\x61\\\r\n\\x3d\\x71\\x1b\\xdb\\xb2\\xb0\\xb6\\xa2\\xff\\x00\\xcb\\x85\\x53\\xcd\\x2b\\xad\\\r\n\\x55\\x6e\\x75\\x54\\x50\\xb4\\xd1\\x3a\\xd8\\x27\\xff\\x00\\x37\\xb7\\xda\\x91\\\r\n\\xe7\\xe0\\x04\\x0b\\x5f\\x15\\xf7\\xeb\\x61\\x11\\xea\\x19\\x5c\\xeb\\xa8\\x3a\\\r\n\\x06\\xbd\\xad\\xa7\\x8f\\xcc\\x63\\x87\\x51\\x9a\\x9e\\x21\\x2d\\x33\\x01\\xca\\\r\n\\x96\\x8a\\x55\\x98\\x5c\\x5b\\x96\\xd9\\x48\\x6d\\x77\\x3a\\x82\\x3c\\x6a\\x75\\\r\n\\xb6\\x38\\xaf\\x03\\xac\\xe0\\x72\\x47\\x5f\\x4e\\xd2\\x7b\\x9b\\xd4\\x31\\xa2\\\r\n\\xa8\\x06\\xc4\\x4b\\x19\\xce\\x8a\\xec\\x07\\x49\\x2a\\x2f\\x1e\\xf9\\x80\\x2c\\\r\n\\x31\\xc0\\x83\\x7b\\x4c\\xf5\\x15\\xb3\\x55\\x46\\x2a\\x8b\\xa9\\xaa\\x47\\x07\\\r\n\\x39\\xb4\\x30\\xc4\\x25\\x55\\x0d\\x97\\xe2\\x8c\\x92\\x41\\xb0\\xd8\\x0b\\x58\\\r\n\\x62\\x38\\xc4\\x9c\\x12\\x14\\x12\\x82\\xdc\\x3f\\x8b\\x71\\x1a\\x24\\x6b\\xdf\\\r\n\\x9d\\x1d\\x42\\xac\\xea\\x2d\\xaa\\x8e\\xa1\\x21\\x5e\\xc5\\x89\\xf5\\xc7\\x18\\\r\n\\xa8\\x96\\x04\\x85\\xb9\\x21\\x8f\\xc1\\x2b\\x30\\x39\\xd4\\xa9\\x1d\\x43\\xaa\\\r\n\\xdd\\x4a\\x35\\xbd\\xc7\\xcf\\x14\\xf9\\x56\\x65\\x45\\x70\\x90\\xd6\\x59\\x81\\\r\n\\x2b\\x70\\x0d\\xef\\xf8\\x31\\x3b\\x79\\xdf\\xce\\x26\\x89\\xdc\\x84\\xbe\\x49\\\r\n\\xe9\\xdb\\x9d\\x14\\x8c\\x08\\x4e\\x93\\x67\\x19\\xec\\x46\\xa0\\x8e\\x90\\xd7\\\r\n\\xef\\x6f\\x14\\x1c\\x52\\xa8\\xd4\\xd5\\xc1\\x49\\x0c\\x0e\\x78\\x9b\\xd3\\xc2\\\r\n\\xcd\\x51\\x2b\\x72\\xd1\\xd9\\x02\\x2e\\x89\\xd3\\x97\\x30\\xb5\\xdb\\x5b\\x90\\\r\n\\xa4\\x62\\xa1\\xb8\\xc8\\xe2\\x0f\\x4f\\x53\\x57\\x0d\\x3a\\xd4\\x7d\\x8b\\x08\\\r\n\\xe3\\x12\\xc7\\x91\\xfa\\x03\\x8b\\xe5\\xfb\\xc0\\x0b\\xb1\\x19\\x74\\x27\\x61\\\r\n\\x8c\\xe6\\x8e\\x59\\xe9\\x6a\\xe5\\x9d\\xe3\\x33\\xf2\\xaa\\x51\\x1d\\xa2\\xce\\\r\n\\x10\\x90\\x0e\\xda\\x8d\\x03\\x46\\x2d\\x62\\xa4\\x0d\\x88\\x38\\x1e\\xcd\\xa3\\\r\n\\x80\\xf1\\x54\\xc3\\xca\\x7e\\xa8\\xf3\\x19\\x33\\x72\\xdb\\x54\\xbe\\x5b\\x2d\\\r\n\\xf2\\x91\\x7c\\xba\\x5f\\x6d\\x31\\xfb\\x6f\\xdd\\xea\\x45\\x2f\\x0d\\xa4\\xa3\\\r\n\\x85\\x1a\\x03\\xcb\\x92\\x95\\x73\\x66\\x50\\x35\\x5c\\xc4\\xf3\\x15\\x05\\x8a\\\r\n\\x30\\x6f\\x4f\\x8b\\x1c\\x47\\x89\\x71\\x1a\\x97\\xbc\\x93\\x3d\\x3c\\x0a\\x80\\\r\n\\x86\\xcc\\xcb\\x08\\x65\\xb9\\xc9\\x61\\x6d\\x4d\\xaf\\xa9\\x37\\x1e\\x76\\xc7\\\r\n\\xbc\\xd5\\xd7\\xd6\\x4c\\x64\\x96\\x49\\x15\\xe4\\x0b\\xd3\\x7c\\xae\\x11\\xbf\\\r\n\\x87\\x50\\x36\\xb8\\x3b\\x69\\x7b\\x77\\xc5\\x2a\\x00\\x41\\x22\\xe7\\xb9\\xef\\\r\n\\xf2\\x27\\x14\\xe8\\x0d\\xd4\\xec\\x46\\xbf\\x3c\\x45\\x0c\\x62\\x6b\\x3a\\x8c\\\r\n\\xab\\xa9\\xd7\\xc5\\xed\\xeb\\x6f\\x3f\\x4c\\x55\\x54\\x9e\\x7e\\x44\\x7b\\x25\\\r\n\\xfa\\x58\\xb7\\xc3\\xb1\\xb5\\xff\\x00\\x97\\xa6\\x2b\\xaa\\x8b\\x9d\\x5b\\x3d\\\r\n\\xbb\\x9f\\xe9\\xe6\\xf8\\xe1\\xd3\\x07\\x8a\\xcc\\x7b\\xdc\\x0e\\xf8\\xe2\\x19\\\r\n\\xca\\x92\\xba\\x6b\\x6f\\x9e\\xdb\\x6e\\x71\\x04\\x53\\x16\\x0d\\xa9\\xb7\\xa6\\\r\n\\x9e\\xba\\xf7\\xb6\\x28\\xc9\\x68\\x14\\x30\\xee\\xa7\\xf3\\xdb\\x19\\xcd\\xfa\\\r\n\\xb4\\xf1\\xf2\\xc7\\xb5\\xef\\x2e\\x4e\\x1f\\x4a\\x88\\xee\\xd5\\x06\\x47\\x44\\\r\n\\x8e\\xf7\\x6b\\x58\\x06\\x3a\\x5b\\x2e\\x9f\\x3d\\x74\\xc7\\x06\\xe0\\x90\\xe9\\\r\n\\x34\\xe0\\x99\\xda\\xd9\\x63\\x06\\xe2\\x36\\xd0\\xb1\\x37\\x1b\\xfe\\x43\\xc5\\\r\n\\xf1\\x45\\x4e\\x23\\x23\\x3c\\x8a\\xf2\\x81\\x7c\\xd6\\x17\\x8d\\x06\\x96\\x36\\\r\n\\xd2\\xe3\\xd4\\x1f\\xef\\x72\\x91\\x84\\x52\\xca\\x73\\x20\\x6b\\x5a\\xf6\\x6b\\\r\n\\xfc\\x37\\xee\\x40\\xbf\\xe1\\x7c\\x55\\x38\\x69\\xd8\\xf6\\x59\\x18\\x2d\\xbb\\\r\n\\x06\\x27\\xe5\\x7b\\xf9\\xc0\\xb9\\x6b\\x78\\xb9\\xfc\\x30\\xcb\\xa6\\x9d\\xc9\\\r\n\\xff\\x00\\x6b\\xfe\\x38\\x91\\x1b\\xb1\\xca\\x58\\xea\\x7c\\x6d\\x63\\xf4\\xca\\\r\n\\x3f\\x96\\xc4\\xe2\\xc4\\xa9\\x04\\x9f\\xa8\\x1f\\xaf\\x4c\\x54\\x54\\xb4\\x13\\\r\n\\x22\\xf5\\x58\\xdb\\xe5\\xa8\\xd9\\xad\\xe9\\x70\\x3f\\x47\\x09\\x20\\x65\\x1a\\\r\n\\xe9\\xdb\\xfa\\x7e\\x58\\xe1\\x55\\xd4\\xf5\\x0f\\x37\\x0c\\xab\\x60\\x90\\xcc\\\r\n\\xe0\\xc1\\x50\\x4f\\xff\\x00\\x0b\\x55\\xaa\\x47\\x29\\x27\\xfe\\xd4\\x97\\xc9\\\r\n\\x30\\xb8\\x01\\x08\\x73\\x6c\\xba\\x56\\x52\\x2d\\x0d\\x74\\xf4\\x95\\x4a\\xeb\\\r\n\\xee\\xf7\\x96\\x36\\x68\\xc9\\x55\\x48\\xc8\\xcf\\x18\\x3d\\x59\\xc4\\x57\\xcc\\\r\n\\xa5\\x74\\xe4\\xba\\x91\\xf0\\x9c\\x46\\xc8\\xea\\x1a\\x39\\x12\\x54\\x24\\x80\\\r\n\\xca\\xc1\\x85\\xc6\\xf7\\xb6\\xda\\xe9\\x6e\\xc4\\x11\\x6d\\x30\\xfc\\x3d\\x2a\\\r\n\\x16\\x69\\x1a\\x3b\\xf4\\x0b\\x13\\x71\\x73\\x19\\x3b\\x1b\\xe9\\x6d\\x01\\xf2\\\r\n\\x77\\xbd\\xce\\x2a\\x68\\xda\\x30\\x24\\x8b\\x96\\x40\\x50\\x5a\\x39\\x95\\x5f\\\r\n\\xbd\\xb4\\x27\\x7b\\xf7\\xf9\\xf8\\xc5\\x38\\x8b\\x91\\x51\\x34\\x31\\xa2\\xc0\\\r\n\\xf5\\x10\\x4c\\xaa\\xa0\\x00\\xab\\x2a\\x26\\xb6\\xed\\x69\\x0b\\x02\\x3b\\x6d\\\r\n\\xdb\\x14\\x13\\x89\\x69\\x2e\\x6d\\xf7\\x87\\xff\\x00\\x53\\x1b\\x5b\\xe9\\x89\\\r\n\\x0a\\xc6\\x63\\xed\\x6d\\x0f\\xcd\\x8e\\xba\\x6d\\xa7\\xe3\\x8a\\x8e\\x95\\x60\\\r\n\\xbf\\x7d\\x4f\\xa7\\xc3\\xfd\\x0e\\xf8\\x4a\\x85\\x80\\x2a\\x1b\\x97\\xe6\\x5a\\\r\n\\xd6\\xd0\\x5e\\xe7\\xc1\\xbd\\xf4\\xb6\\x38\\x47\\xb4\\xc7\\x85\\x23\\x47\\x12\\\r\n\\xb2\\xd8\\x8c\\xe4\\x68\\x0d\\xfb\\x0d\\x34\\xf0\\x46\\x3f\\xf5\\x69\\xaa\\xe1\\\r\n\\x8e\\x6d\\x95\\xf2\\x32\\x9b\\xf5\\x66\\x27\\x6f\\xba\\x7f\\xa6\\x38\\x97\\x04\\\r\n\\xac\\xe2\\x8c\\x27\\x59\\x1b\\xf7\\x85\\xee\\xbf\\x08\\x17\\x3f\\x12\\x9b\\x6a\\\r\n\\x7f\\x2e\\xd8\\x8b\\x3d\\x0d\\x38\\x89\\xd9\\xac\\x2c\\x2e\\x41\\x03\\x41\\x63\\\r\n\\x7b\\xed\\x7f\\xd6\\xd8\\xe3\\x93\\xa4\\x93\\x5d\\x1c\\x5d\\x6f\\x70\\x3e\\xf7\\\r\n\\xeb\\xe9\\x85\\x91\\xc7\\x56\\x96\\x23\\xc9\\xb7\\xe5\\xae\\xbb\\x62\\x0e\\x31\\\r\n\\x55\\x40\\xe1\\xe0\\x8a\\x17\\x64\\x61\\x28\\x0e\\xcd\\xd2\\xff\\x00\\x75\\xb6\\\r\n\\xfb\\xaf\\xd5\\xbe\\xf6\\xc7\\xed\\xfe\\x22\\xe4\\x7d\\x8e\\x77\\x8a\\xfc\\xa2\\\r\n\\x8d\\x77\\x1f\\xc4\\xbf\\xe7\\x17\\xec\\x7b\\x63\\x84\\x7b\\x41\\x39\\x96\\x48\\\r\n\\x6b\\xa8\\xe4\\x79\\x39\\x4c\\x55\\x04\\x91\\xc6\\x0b\\x2f\\x5e\\x57\\x04\\xe8\\\r\n\\x4a\\xe8\\x3c\\x6a\\x7e\\x75\\x7c\\x7b\\x89\\x55\\x2c\\x75\\x72\\x70\\x5a\\xf5\\\r\n\\xa4\\x56\\x8d\\x72\\x44\\x60\\x75\\x69\\x15\\x47\\x29\\x8c\\x8a\\x6c\\x42\\x81\\\r\n\\xd0\\x84\\x64\\xba\\xe6\\xde\\xd9\\x7f\\xf5\\x3b\\x52\\xc5\\x6a\\xbe\\x1d\\xc5\\\r\n\\x17\\x39\\x7e\\x59\\x90\\x26\\x53\\x61\\xd5\\x96\\xe4\\x68\\x1b\\xbe\\xd7\\xd3\\\r\n\\x0b\\xed\\x7d\\x0c\\x8a\\xa9\\x35\\x1d\\x5b\\x01\\xa2\\xe5\\x4c\\xb6\\x2d\\x7b\\\r\n\\x5c\\x2c\\x9b\\xef\\xb7\\xfb\\xe2\\x9b\\x8f\\xd1\\xc9\\xc4\\xe8\\x4b\\xac\\xd4\\\r\n\\xd0\\xc6\\x79\\x6e\\x5a\\x9d\\x81\\x06\\x4b\\x68\\x74\\x2c\\xe1\\xac\\x8b\\x76\\\r\n\\xd0\\x5b\\x6c\\x71\\xaf\\x68\\xbd\\x96\\xe2\\x10\\x37\\x0e\\x9a\\xa5\\x9a\\x38\\\r\n\\x41\\x57\\x8d\\xa0\\x99\\x48\\x9b\\x54\\xe6\\x44\\xa5\\x00\\x12\\x45\\xb2\\xbe\\\r\n\\x83\\xa7\\x4d\\x0e\\xb1\\x56\\x3f\\x0b\\xac\\x32\\xd2\\x4f\\x9d\\x14\\xba\\x1b\\\r\n\\x16\\x58\\xea\\xa9\\xee\\x34\\x20\\xdb\\xe2\\x5d\\x18\\x7f\\x10\\xcd\\xa9\\xd7\\\r\n\\x1c\\x1b\\x8a\\x51\\x4f\\xc1\\x78\\xfe\\x5a\\x84\\x0c\\xb5\\x1c\\x3e\\xbe\\x08\\\r\n\\xcc\\x91\\xac\\xca\\xeb\\x2b\\x45\\x26\\x55\\x62\\xa5\\xc8\\x8e\\x45\\xcd\\x94\\\r\n\\x12\\x6d\\xb6\\x26\\x58\\x78\\x9d\\x38\\x97\\x30\\x73\\x22\\x2c\\x72\\x28\\x3f\\\r\n\\x03\\x05\\x3f\\x81\\x24\\xdf\\xf1\\x23\\xd4\\x22\\x44\\x24\\x82\\x50\\xf6\\x8f\\\r\n\\x37\\x26\\xdb\\xea\\x73\\x58\\xb6\\xe6\\xc4\\x69\\xae\\xd8\\x49\\x67\\x39\\x1d\\\r\n\\xd2\\xe9\\x06\\x54\\xe5\\x10\\x79\\x52\\x2d\\xac\\x12\\x50\\x76\\x2f\\xf7\\x24\\\r\n\\x3f\\x7f\\x7e\\xd8\\xe1\\xd1\\x45\\x27\\x11\\xac\\x89\\x22\\x71\\x01\\x8c\\x54\\\r\n\\x3c\\x61\\x95\\x5a\\x0c\\xa1\\xac\\xaa\\xcd\\x61\\x74\\x97\\x26\\x56\\x00\\x6a\\\r\n\\x01\\xd3\\x0f\\xef\\x13\\xc9\\x69\\x9b\\xed\\xa9\\xe2\\x60\\x0d\\xfa\\x9d\\x19\\\r\n\\x99\\xd0\\xdf\\x31\\x05\\x80\\x72\\x6f\\x71\\xb0\\x1d\\xb1\\x5f\\x4e\\x95\\x71\\\r\n\\x53\\x55\\x66\\x8d\\x19\\xe3\\xc9\\x23\\xbe\\x54\\x53\\x3c\\x23\\xef\\x31\\xd8\\\r\n\\x4a\\x16\\xc8\\xdf\\x08\\xd3\\xc8\\xc7\\xbc\\x52\\xff\\x00\\xfd\\x45\\x38\\xf4\\\r\n\\xf7\\xad\\xbd\\x34\\x6b\\x7e\\x18\\xe1\\xd5\\x29\\x4d\\x55\\x04\\x92\\xe6\\xb6\\\r\n\\x69\\x63\\x32\\x66\\xcd\\xa4\\xba\\xd8\\x28\\xd8\\x66\\xf8\\x9a\\xff\\x00\\x4b\\\r\n\\x6a\\x2b\\x28\\x61\\xe2\\x14\\x4f\\x1c\\x8a\\x0a\\xc8\\xa0\\x8b\\x76\\x60\\x43\\\r\n\\x2b\\x0f\\x97\\xae\\x87\\xc6\\x29\\xa9\\x7d\\xde\\x4f\\x77\\x58\\xdc\\x14\\x95\\\r\n\\xee\\x5a\\xfd\\x59\\x6f\\x98\\xeb\\xa6\\xba\\x11\\xe9\\xe9\\x88\\x60\\x8a\\x30\\\r\n\\xb9\\x85\\xaf\\xa9\\xd4\\x9d\\xce\\x33\\x10\\x2c\\x00\\x17\\x3a\\x78\\x03\\xf5\\\r\n\\xb6\\x1c\\x5d\\x85\\xba\\xba\\x4a\\x93\\xe6\\xc0\\xfe\\xbf\\x0c\\x57\\x06\\x5c\\\r\n\\xc1\\x83\\x0b\\xdf\\x2d\\xfb\\xe1\\xa4\\x1a\\x2b\\x81\\x8a\\x67\\x48\\x5b\\x30\\\r\n\\x63\\xe6\\xd7\\xfc\\xbc\\x61\\x9e\\x39\\xa0\\x8a\\xff\\x00\\x13\\x3f\\xe5\\xf8\\\r\n\\x62\\x1a\\x58\\xb9\\x63\\xa4\\x5e\\xda\\x9f\\x27\\xf9\\x5f\\xd6\\xd8\\x23\\x96\\\r\n\\xa7\\x28\\xdb\\x5f\\xc3\\x5c\\x4d\\x17\\x32\\x3e\\x97\\x64\\x3f\\x12\\xb0\\xdc\\\r\n\\x30\\xdb\\xbd\\xbf\\x1c\\x51\\x4a\\x95\\x63\\xdc\\x6a\\xd6\\x34\\xae\\x8d\\x58\\\r\n\\xd1\\x4c\\xea\\x00\\x97\\xff\\x00\\x96\\xad\\xad\\x95\\xed\\xa8\\x1a\\x83\\x6e\\\r\n\\xc7\\x14\\x34\\xb2\\xc3\\x53\\x2c\\x93\\xaa\\x8b\\x0c\\xb6\\xb0\\xca\\xad\\xf7\\\r\n\\xbb\\x6a\\x7d\\x7f\\x0d\\x31\\x19\\x17\\x04\\xfc\\x6e\\xc0\\x2a\\xec\\xb6\\xec\\\r\n\\x4f\\xf6\\x3f\\x3d\\x31\\x34\\xb2\\xab\\x75\\x48\\x4d\\xec\\x7e\\x64\\x8b\\x0b\\\r\n\\xfd\\x3f\\x0c\\x64\\x06\\xe5\\x81\\x27\\x52\\x4d\\xfb\\x9b\\x9b\\x7c\\xb5\\xc5\\\r\n\\xad\\xaf\\x6f\\x5c\\x1e\\xd6\\xf3\\xa7\\xeb\\x6f\\xed\\xdb\\x0e\\x33\\x39\\xdb\\\r\n\\xfb\\xfa\\x60\\x96\\x5f\\x96\\x6d\\x0f\\xcb\\x63\\xf5\\xc5\\x4d\\x38\\x91\\x43\\\r\n\\xee\\x6e\\x58\\x9f\\x5f\\xa7\\xa0\\x1b\\xfd\\x31\\x4f\\x7b\\x5b\\xc0\\xfe\\xf7\\\r\n\\xc4\\xac\\xd1\\x55\\x9b\\x3d\\xc3\\x36\\xc7\\x6b\\xed\\xad\\x89\\x07\\x7d\\x43\\\r\n\\x0e\\xde\\x71\\x3a\\x45\\xc6\\xb8\\x48\\x69\\x49\\xf7\\xee\\x19\\x11\\x2a\\x43\\\r\n\\x58\\xd5\\x51\\x95\\x65\\x75\\x2d\\xb9\\x96\\x18\\xd9\\xff\\x00\\x8b\\x3c\\x43\\\r\n\\xcd\\xed\\x71\\x4d\\x6a\\x94\\x19\\x52\\x6c\\xaf\\x50\\xa0\\x74\\x97\\xd0\\x34\\\r\n\\x96\\xd2\\xc7\\x4e\\xaf\\x3b\\xef\\xae\\x21\\xaa\\x57\\xa6\\x0c\\xad\\x67\\xbb\\\r\n\\x0c\\xa4\\x66\\x0c\\x8d\\xa8\\x3a\\x7a\\xef\\xdf\\x15\\x95\\x91\\x37\\x36\\x9a\\\r\n\\x67\\x5a\\x66\\x30\\x12\\x8d\\x71\\x95\\xd8\\x9c\\xab\\xca\\x6b\\x01\\x75\\x23\\\r\n\\x35\\xae\\x18\\x0e\\xde\\x28\\x09\\xfd\\x8b\\x57\\x66\\x5e\\x85\\xa6\\x92\\xda\\\r\n\\x74\\x06\\x2c\\x26\\x52\\x00\\xd0\\x24\\xb1\\xcc\\x42\\xdf\\x6c\\xbe\\x98\\xe0\\\r\n\\xf3\\xaa\\xa9\\x5c\\xd9\\xd6\\x34\\x0c\\xf7\\x04\\x76\\x04\\xaa\\xfc\\x8f\\xeb\\\r\n\\x6c\\x55\\xcc\\x04\\xdd\\x44\\x92\\xef\\x7f\\xcb\\x53\\xf8\\x9f\\xd5\\xb0\\xd3\\\r\n\\x3b\\x23\\x48\\x6e\\x55\\x19\\x49\\xf9\\x1f\\xed\\x8a\\xc8\\xb9\\x52\\x53\\xc8\\\r\n\\x11\\xcc\\x72\\x80\\xe4\\xe5\\x2e\\x56\\x44\\x17\\xd6\\xda\\xd8\\xee\\x32\\xf8\\\r\n\\xf4\\x37\\xbc\\x06\\x48\\xe3\\x20\\x66\\x39\\x65\\xb7\\x73\\x6f\\x4d\\xc9\\xbe\\\r\n\\xbf\\xef\\x88\\xe3\\x8a\\x3e\\x1b\\x18\\x0a\\x33\\x3a\\xf7\\x00\\xeb\\xfc\\xbf\\\r\n\\x1c\\x70\\xca\\x08\\x63\\xe1\\xe6\\x66\\x02\\xe7\\x3b\\x12\\x0d\\xef\\x7d\\x40\\\r\n\\xed\\xdf\\xeb\\x8e\\x3f\\x95\\x96\\x40\\x21\\x6b\\x10\\x48\\x61\\xdb\\xd3\\xcd\\\r\n\\xc7\\x9d\\x31\\x3a\\x93\\x2c\\x82\\xfb\\x3b\\x69\\x63\\xa6\\xba\\x8b\\x9f\\x5c\\\r\n\\x42\\x99\\x94\\x81\\xad\\x86\\xd8\\x31\\x32\\xc8\\xce\\xb0\\x73\\x8c\\x64\\x16\\\r\n\\x88\\xdc\\xab\\xe6\\xd3\\x29\\xcb\\xae\\x5b\\x9b\\x35\\xbb\\x1d\\x08\\xc0\\xa5\\\r\n\\xe2\\x31\\xcb\\xef\\x05\\x96\\x26\\x07\\x3e\\x54\\xb0\\xca\\x6f\\xb2\\xe5\\xd8\\\r\n\\x0f\\x5d\\xb6\\xb6\\x29\\xa4\\x9d\\xaa\\xa3\\x91\\xc4\\x8c\\x44\\xdc\\xc6\\x6b\\\r\n\\x20\\xb8\\x93\\xa5\\xc9\\xee\\x4b\\x2e\\x5d\\x07\\x8d\\x00\\xc3\\x55\\xf1\\x3a\\\r\n\\x01\\x5d\\xc2\\xe1\\x4e\\x6d\\x24\\x19\\x6b\\x24\\xcc\\x85\\xb9\\x50\\x31\\x50\\\r\n\\x08\\x72\\x2e\\xab\\x9a\\x65\\x5d\\xc8\\xcc\\x7b\\x0c\\x55\\xd4\\xcd\\x56\\xe6\\\r\n\\x59\\x0b\\x7f\\x0a\\x8f\\xe1\\x8c\\x6c\\x05\\xec\\x3f\\x0b\\x6b\\x7d\\x35\\xc7\\\r\n\\x3b\\x29\\x02\\xf6\\xb0\\xb9\\x3e\\x08\\x3e\\x7c\\xe3\\xd8\\xc4\\xa6\\xa3\\xf6\\\r\n\\x61\\xb8\\xcf\\x14\\x11\\x4f\\x99\\xdd\\x69\\x62\\x91\\x11\\x9a\\x61\\xff\\x00\\\r\n\\x62\\x31\\xcc\\x16\\x24\\x37\\x32\\x4d\\x7e\\x05\\xbe\\xea\\xb8\\xaf\\xe1\\x3c\\\r\n\\x3a\\xa8\\xd5\\x4f\\x35\\x1c\\x06\\x56\\x94\\x49\\x78\\x94\\x46\\xa8\\x8f\\x72\\\r\n\\x15\\x79\\x79\\x6e\\x7a\\x81\\x27\\xb9\\xfb\\xb8\\xfd\\x81\\x41\\x2a\\xd4\\x14\\\r\n\\x46\\x8f\\xff\\x00\\x88\\x78\\x2c\\xe7\\x22\\xb4\\x52\\xb2\\x2d\\x83\\x6f\\xa2\\\r\n\\x58\\xea\\x7d\\x31\\x05\\x1d\\x34\\x35\\x79\\x2a\\xcb\\xc7\\x1b\\x97\\x59\\x79\\\r\n\\x4a\\x85\\xa3\\x7d\\x56\\x39\\x00\\x6d\\x1a\\x3c\\xf6\\xcd\\x97\\x5c\\xa6\\xe2\\\r\n\\xd6\\xc5\\x37\\x06\\x66\\x7a\\x85\\xa5\\xe2\\x55\\x90\\xcb\\x09\\x5d\\x17\\x22\\\r\n\\xab\\xa3\\x25\\xd7\\x6d\\x08\\x26\\xea\\x77\\xd8\\x76\\xd7\\x13\\xc5\\xc5\\x69\\\r\n\\xef\\x20\\x9e\\x1a\\x92\\xae\\x33\\x47\\x52\\xab\\x1c\\xda\\x8b\\x68\\xeb\\xa3\\\r\n\\xeb\\xde\\xff\\x00\\x4d\\x35\\x3c\\x61\\x5f\\x27\\xbd\\x53\\x4d\\x46\\xed\\xd1\\\r\n\\x33\\xeb\\x24\\x72\\x1b\\xa9\\x16\\xb0\\x1c\\xb3\\x70\\x5b\\x51\\x7f\\x5b\\xe2\\\r\n\\x9b\\x8c\\x51\\x53\\xd4\\x55\\x3d\\x3c\\x75\\x15\\xaf\\x3d\\x23\\xc0\\x05\\x34\\\r\n\\x59\\x8e\\x96\\x75\\x7b\\xfc\\x45\\x00\\xb9\\x6d\\x0f\\xd0\\x63\\xdf\\x78\\xa5\\\r\n\\x6c\\xab\\xee\\xf4\\x8b\\x01\\x0b\\x65\\x69\\x9a\\xed\\xd2\\x0d\\xd5\\x62\\x39\\\r\n\\x49\\x27\\xee\\xab\\x02\\x33\\x0d\\x8e\\xc6\\x97\\x80\\xd4\\x71\\x22\\x05\\x75\\\r\n\\x7c\\xa4\\x32\\xf3\\x23\\x8e\\x36\\x6b\\x34\\x8a\\x2e\\x16\\xc6\\xc8\\xa4\\x8c\\\r\n\\xcb\\xa2\\x12\\x0f\\xcb\\x59\\x38\\x43\\x2c\\x8e\\x12\\x09\\xb2\\x07\\x60\\xb7\\\r\n\\x31\\xdf\\x28\\x26\\xd7\\xe9\\xde\\xd8\\x5a\\x4e\\x63\\xdc\\x89\\x04\\x6a\\x33\\\r\n\\x58\\x6b\\x98\\xdb\\x60\\x41\\x1b\\xb1\\xb9\\xf4\\xd0\\xde\\xf8\\xe1\\x93\\x73\\\r\n\\x29\\x51\\x6e\\x5b\\x2a\\xe5\\x20\\x82\\x08\\xcb\\xa5\\x88\\x3d\\xff\\x00\\x5e\\\r\n\\x31\\x5b\\x4a\\x04\\xe2\\x60\\xa2\\xe4\\x5b\\xfa\\x6b\\xf4\\x16\\xf3\\xb6\\x0e\\\r\n\\xdd\\x56\\xed\\xb6\\xbf\\x97\\x6c\\x17\\x16\\x2b\\x6f\\xd0\\xc2\\xce\\x62\\x94\\\r\n\\xdc\\xe5\\x53\\xeb\\xb7\\xf9\\x87\\x9d\\xed\\x8e\\x21\\x3d\\x48\\xa9\\x78\\xdd\\\r\n\\xcb\\xae\\xb9\\x5b\\x70\\x6f\\xd5\\xe9\\x6d\\x3c\\x0d\\x36\\xed\\x83\\x6c\\x80\\\r\n\\x9b\\xdf\\x53\\x72\\x7e\\xb7\\xfc\\x71\\x14\\x84\\xbd\\x81\\x04\\x69\\xa5\\xcd\\\r\n\\xff\\x00\\x31\\xdb\\xc7\\xae\\x29\\x49\\x6c\\x8b\\xfc\\x36\\xb7\\x6f\\xaf\\xa7\\\r\n\\x61\\xea\\x6f\\xf2\\xc2\\x9b\\x28\\xf9\\x0e\\xf8\\x94\\xfd\\x94\\xa4\\x7f\\x03\\\r\n\\x1f\\xc1\\x49\\xfe\\x98\\x8f\\x58\\x94\\xf9\\x55\\x3f\\x90\\xf1\\x86\\xa7\\x4a\\\r\n\\x91\\x1a\\x92\\x51\\x91\\xb3\\x09\\x14\\xd9\\xd2\\xdf\\x79\\x4f\\x6f\\x97\\x7c\\\r\n\\x67\\xcf\\x22\\xa9\\x25\\xec\\x17\\x3b\\x35\\x8b\\x35\\x85\\x89\\x62\\x2c\\x33\\\r\n\\x1d\\xce\\x83\\x7d\\x86\\x1c\\x59\\xf3\\xff\\x00\\x08\\x5d\\xbc\\xeb\\xb7\\xcb\\\r\n\\x41\\xf2\\xc4\\x8f\\x9c\\xb5\\xee\\x4b\\x13\\x7d\\x6d\\xfa\\xd3\\xf0\\xc3\\x4f\\\r\n\\x3f\\x0a\\xa8\\x55\\x9e\\x56\\x9b\\x87\\xd4\\xba\\xc7\\x1c\\xef\\xd4\\xf4\\x73\\\r\n\\x48\\x6c\\xb1\\xce\\xff\\x00\\x7a\\x09\\x18\\xd9\\x24\\x6d\\x63\\x36\\x52\\x6c\\\r\n\\x71\\x2d\\xb2\\x00\\x0e\\xf7\\xbf\\x6d\\x8f\\xeb\\xe5\\x85\\x94\\x8e\\x82\\x6e\\\r\n\\xdf\\x3b\\xed\\xe3\\xfa\\x79\\xc1\\x3d\\xcf\\x8b\\xf8\\xc3\\xea\\xb6\\xcc\\x76\\\r\n\\xdb\\xcf\\xd7\\xb6\\x1a\\x46\\x00\\xae\\x53\\x62\\x37\\x3d\\x8f\\xcb\\xf1\\xbe\\\r\n\\xd8\\xa4\\xd8\\xb5\\xaf\\xb8\\x20\\x9f\\x38\\x9a\\x9b\\x95\\x50\\xd2\\x12\\x4a\\\r\n\\xe6\\x2c\\x08\\xee\\x1f\\x51\\xe9\\xe6\\xf6\\xf5\\xc5\\x35\\x6b\\x89\\x72\\x02\\\r\n\\x55\\x4a\\x95\\x27\\xe9\\x62\\x3c\\x1b\\x83\\x63\\xe4\\x7c\\xf0\\x29\\x1e\\x5e\\\r\n\\x1c\\x65\\x6b\\x3c\\x6b\\x3c\\x94\\xf2\\x7d\\xe2\\x8c\\x0e\\x64\\xcd\\xae\\x81\\\r\n\\x97\\x55\\x6f\\x84\\x9b\\x81\\xae\\x28\\x73\\x64\\x68\\x4d\\xee\\x9f\\x0b\\x0f\\\r\n\\x1b\\xa9\\xf3\\x75\\xd8\\xfc\\xc1\\xbe\\x38\\xa5\\x1d\\x2d\\x4c\\x0a\\x1d\\x47\\\r\n\\x31\\x1d\\x83\\x31\\xb2\\xc8\\x2e\\x0f\\xc8\\x65\\xbf\\x50\\xb8\\xed\\xdb\\x0a\\\r\n\\x93\\x70\\xce\\x1d\\x5a\\xb0\\xbb\\x48\\x93\\xcb\\x4a\\x85\\x9b\\x42\\xa9\\x71\\\r\n\\x2a\\x9d\\xfe\\x20\\xcb\\xe5\\xba\\x25\\xbd\\xb1\\xc3\\x89\\xa7\\x82\\x11\\x27\\\r\n\\xef\\x6a\\xbe\\xd0\\xf7\\xb4\\x5a\\x64\\x06\\xc3\\xef\\x1d\\x74\\xfc\\xf1\\x5d\\\r\n\\x29\\x0c\\x0a\\x6b\\x90\\xf5\\x58\\x1f\\x80\\x30\\xcc\\x45\\xc0\\xf3\\xb7\\xa7\\\r\n\\xa6\\x21\\x58\\xda\\x92\\x6e\\x65\\x95\\x4c\\x79\\x81\\x3a\\x6e\\x35\\xb9\\xf4\\\r\n\\xbd\\xfe\\x58\\xe1\\x15\\x49\\x55\\x1c\\x94\\x92\\xea\\x61\\xfd\\xdb\\x6b\\xf1\\\r\n\\x47\\x70\\xb6\\x6e\\xf9\\xd5\\xb6\\xd7\\xe5\\xdf\\x09\\x44\\xb3\\x55\\x47\\x25\\\r\n\\xca\\xb8\\x39\\x43\\x27\\x70\\x0d\\xb2\\xfc\\xbe\\x7e\\xb8\\xae\\xa5\\x95\\xb8\\\r\n\\x7b\\x25\\x2a\\xfd\\xaa\\xe4\\x65\\x1a\\xd8\\x15\\x1a\\x9f\\xea\\x71\\xc1\\x69\\\r\n\\xaa\\xe7\\x45\\x8a\\x62\\xc1\\x40\\x04\\x8f\\xba\\x6e\\x3c\\x6c\\xd6\\xfe\\x98\\\r\n\\xf6\\xb6\\x5a\\x4e\\x1b\\x43\\xd7\\x02\\xe6\\xc8\\x73\\x1b\\x7c\\xfb\\xff\\x00\\\r\n\\x11\\xdf\\x0e\\xd1\\xcf\\x34\\xd2\\xaa\\x95\\x0e\\x73\\xa0\\xd2\\xc5\\x1b\\x6d\\\r\n\\x2f\\x6b\\xdc\\x6b\\xae\\x98\\x8d\\xbd\\xd2\\xae\\x2c\\xe3\\x24\\x32\\x1b\\x39\\\r\n\\x3d\\x95\\xcd\\x8f\\x80\\x72\\x79\\xbd\\xbb\\x62\\x58\\xa7\\x11\\x55\\xcc\\xb4\\\r\n\\xf2\\xc7\\x4b\\x68\\xa1\\x8e\\x6c\\xae\\x04\\x85\\xe4\\xcc\\xaf\\x98\\x82\\x2e\\\r\n\\xd1\\xc5\\x75\\x1f\\x0e\\x5d\\xbb\\x93\\x1d\\x00\\xca\\xac\\x43\\xe5\\x72\\x3a\\\r\n\\x9c\\xdf\\xa7\\x72\\x2c\\x3b\\x93\\xb0\\xf1\\xe7\\x09\\xc3\\x82\\x4e\\x24\\x89\\\r\n\\xdd\\x5e\\x07\\x57\\xc8\\xc0\\x3a\\x3a\\xee\\x87\\x2b\\x6f\\xfc\\x3e\\x9b\\xe2\\\r\n\\xb6\\x82\\x1e\\x20\\xab\\x50\\x65\\x6a\\x73\\x51\\x08\\xa6\\xab\\xc8\\x40\\xf7\\\r\n\\x8c\\xac\\x1e\\x35\\x6d\\x7e\\x0c\\xc0\\x3e\\x4b\\x6a\\xca\\x9e\\x31\\x3f\\xb3\\\r\n\\x14\\x28\\xaa\\xad\\x3c\\xd2\\xe6\\x60\\xa5\\x86\\x58\\xb2\\xae\\x97\\xd8\\x5e\\\r\n\\xde\\x9e\\x45\\xfb\\x62\\x9b\\xd9\\xce\\x13\\xcf\\x11\\x18\\x33\\xe7\\x60\\x23\\\r\n\\x32\\xbb\\xbd\\x9b\\xd4\\x5f\\x53\\xbe\\xf7\\xc5\\x62\\xa4\\x8b\\x25\\x14\\x0a\\\r\n\\x16\\x8f\\x84\\xc2\\x29\\xe0\\x40\\xa4\\x21\\xa8\\x70\\xa6\\x56\\x03\\x6f\\xb3\\\r\n\\x8c\\xac\\x63\\x4b\\x02\\x58\\xef\\xb3\\xac\\xaf\\xcd\\x55\\x2b\\xad\\x35\\x3c\\\r\n\\x96\\x2a\\x49\\x23\\x96\\x9d\\xee\\x37\\xdf\\xce\\xb8\\x8a\\x48\\x22\\xe1\\x50\\\r\n\\xcb\\x23\\x20\\x77\\x13\\xc6\\xb9\\x9f\\x27\\xc7\\x34\\xc5\\xdb\\x5b\\x6c\\x36\\\r\n\\x23\\x7b\\xdf\\x4e\\xf0\\x41\\x4d\\x54\\x4e\\x68\\x64\\xa8\\x79\\x18\\xc6\\xad\\\r\n\\x02\\x92\\x7e\\xd1\\x82\\x8b\\x48\\xc5\\x63\\xb8\\x22\\xe2\\xef\\x6f\\xcf\\x0b\\\r\n\\x37\\x13\\xe1\\xf5\\x66\\x9d\\x95\\x21\\xad\\x84\\xb5\\x19\\x13\\x7d\\xac\\xa7\\\r\n\\x2b\\xf4\\x67\\x55\\x21\\x33\\xa3\\x5d\\x6f\\xcc\\x75\\x21\\xbe\\xb8\\xab\\xe1\\\r\n\\xf5\\x92\\xd3\\xb5\\x6d\\x5d\\x6b\\x48\\xfa\\xe6\\x8a\\x25\\x58\\xa3\\x53\\xa6\\\r\n\\x5f\\x84\\x02\\xfb\\xdc\\xfd\\x7c\\x61\\xe2\\x58\\xd6\\x3a\\x24\\x82\\x36\\xaa\\\r\n\\xae\\x3c\\xb5\\x96\\x45\\xe6\\x14\\x4c\\xb7\\x92\\x7e\\x63\\xe6\\x39\\xc0\\xd0\\\r\n\\x6a\\x35\\xb1\\x04\\x58\\x0c\\x50\\xf0\\xf3\\x24\\xec\\x88\\xd2\\xd0\\xd5\\x44\\\r\n\\xfc\\xbc\\xea\\x0e\\x47\\x50\\xac\\x35\\xb9\\xb9\\x37\\x02\\xe6\\xe0\\x58\\x9b\\\r\n\\xe1\\xe8\\xea\\x63\\x37\\x9d\\x24\\x93\\xaf\\x56\\x8e\\x49\\x17\\x28\\xdb\\x36\\\r\n\\x54\\x61\\xaf\\x7b\\xe9\\x7e\\xc2\\xf8\\x8d\\x22\\x86\\x75\\x0c\\x85\\xac\\xcb\\\r\n\\x24\\x6c\\x79\\x9d\\x76\\xea\\x6d\\x33\\x02\\x09\\xd8\\xf7\\x27\\xd5\\xb0\\x69\\\r\n\\xfd\\x9a\\x90\\x99\\x0c\\x41\\x4b\\xf5\\x95\\xb4\\x83\\x29\\x6d\\x4a\\xdb\\x9c\\\r\n\\x2d\\x6b\\xda\\xd6\\x16\\xf0\\x31\\x2d\\x54\\xb1\\xcd\\x2c\\x64\\x13\\xef\\x59\\\r\n\\x5e\\x2d\\x4f\\xd9\\x15\\x16\\x70\\xbf\\xeb\\xd0\\xf8\\x1b\\x0f\\x18\\xe0\\x32\\\r\n\\xba\\xaf\\x2e\\x4b\\x96\\xdf\\x5d\\x34\\xd0\\x76\\xef\\xfc\\xfd\\x31\\x5a\\x0b\\\r\n\\x47\\xa6\\xfa\\x1f\\xa6\\xf8\\x11\\xe6\\xdf\\xc6\\xb8\\x93\\x34\\x66\\x40\\x2f\\\r\n\\x65\\xd2\\xff\\x00\\x31\\x8a\\xe9\\x9d\\x89\\xec\\x46\\xcd\\xfa\\xfd\\x69\\x8a\\\r\n\\x99\\x8c\\xf1\\x2b\\x7f\\xdd\\x86\\xe1\\xad\\xae\\x68\\xfc\\xeb\\xe3\\x4e\\xdd\\\r\n\\xce\\x3d\\xe1\\xc8\\xb5\\xf4\\x02\\xda\\xeb\\xa6\\x29\\x9b\\x33\\x80\\x06\\xe7\\\r\n\\xb0\\x1f\\x5c\\x50\\x5c\\xcc\\xa8\\xcb\\x65\\x67\\x44\\xcd\\xf9\\xfe\\x1b\\x6b\\\r\n\\xbe\\xf8\\x0a\\x00\\xde\\xfe\\xbf\\xcb\\x06\\xb2\\x13\\x51\\xee\\x27\\x49\\x1d\\\r\n\\x18\\xff\\x00\\xe3\\x6d\\x7f\\x23\\xfa\\x38\\x8d\\x40\\xca\\xaa\\x3a\\x40\\x0b\\\r\n\\xff\\x00\\xd3\\xa7\\xa7\\x81\\x84\\x55\\x4d\\xce\\xa4\\x7e\\x1f\\x8e\\x98\\x8d\\\r\n\\xd7\\x2b\\x59\\x76\\xbf\\xd7\\xe7\\xeb\\x7f\\xcb\\x19\\x89\\x21\\x8f\\x95\\xfa\\\r\n\\xe9\\x73\\xbe\\x9a\\x7f\\x51\\xdb\\x19\\x75\\x39\\x76\\x20\\xfc\\xbe\\x47\\x1e\\\r\n\\xd1\\x95\\x1c\\x1a\\xa2\\x0c\\xbc\\xc9\\xaa\\xf2\\x52\\x40\\x87\\xef\\xcf\\x3b\\\r\n\\xf4\\x69\\xdf\\x96\\x01\\x97\\xd3\\x97\\x7e\\xd8\\x4a\\x91\\x1a\\x46\\x99\\xd9\\\r\n\\xf9\\x69\\xcb\\x77\\x23\\x43\\x96\\xeb\\x9c\\xe9\\xdf\\x2d\\xf4\\x3b\\x9e\\xf8\\\r\n\\x82\\xbf\\xde\\x2b\\x27\\x48\\xb2\\x88\\xe1\\xb4\\x4e\\xfb\\xfd\\xb3\\x59\\x8c\\\r\n\\x6a\\x4f\\x74\\x42\\x0b\\x6e\\x33\\x35\\x83\\x68\\x71\\x24\\x99\\x05\\x8d\\xcd\\\r\n\\xff\\x00\\xbd\\xaf\\xa6\\xbb\\xfd\\x7d\\x31\\x2b\\x65\\x05\\xc9\\xb5\\xad\\xb7\\\r\n\\x60\\x6d\\xaf\\x9d\\xce\\xb6\\xd7\\xd2\\xd8\\x0c\\xb2\\x0d\\x35\\x3a\\x5f\\xe7\\\r\n\\xde\\xfe\\xb8\\x86\\x30\\xa8\\xda\\x76\\xd7\\x7c\\x38\\xe6\\x06\\xb8\\x17\\x89\\\r\n\\xb6\\x36\\x37\\x8c\\x91\\xdb\\x5d\\x9a\\xc6\\xfa\\xe8\\x70\\xa8\\xb1\\xa0\\x20\\\r\n\\xe5\\x3d\\xb5\\xf2\\x45\\xc6\\xbf\\x87\\xa7\\x6c\\x51\\x54\\xb5\\x34\\xf5\\x08\\\r\n\\xf9\\x8d\\x3d\\x4a\\x81\\x32\\x13\\xa1\\xb8\\x3d\\x5b\\xe8\\xc3\\xe2\\x53\\xb8\\\r\n\\xf4\\x04\\xe3\\xdd\\x16\\x17\\x0d\\x7b\\xa9\\xeb\\x42\\x3e\\xf4\\x4d\\xa8\\xbd\\\r\n\\xbb\\xff\\x00\\x51\\xf5\\xc7\\x10\\xc9\\x51\\x34\\x6a\\x8b\\xd5\\x6e\\xa3\\xad\\\r\n\\xac\\x7e\\x19\\x0d\\xad\\xe4\\xaf\\x57\\xf3\\x18\\xaf\\x81\\x0f\\x08\\xac\\x72\\\r\n\\x09\\xcb\\xc4\\x69\\x99\\x72\\xe9\\x95\\x63\\x26\\x23\\xae\\xf9\\x72\\x8c\\x52\\\r\n\\xcd\\xcc\\x69\\x2a\\x6f\\xd1\\x14\\x17\\x8d\\x74\\x0c\\xa2\\xdc\\xa8\\x81\\x1f\\\r\n\\x5c\\xdf\\x4f\\xae\\x16\\x53\\x34\\xdc\\xa9\\x35\\x36\\x90\\x03\\x7e\\xfa\\xdf\\\r\n\\xb1\\xfe\\x78\\x28\\xb3\\x70\\xf3\\xa7\\xfd\\xb4\\x24\\x7e\\x17\\xef\\x6c\\x70\\\r\n\\xa8\\x82\\x01\\x66\\xc8\\xb9\\xc0\\xcc\\xbf\\x79\\xb6\\xd7\\x41\\x6f\\x9e\\xba\\\r\n\\x63\\x99\\x91\\xd4\\x25\\xff\\x00\\x7c\\x6c\\x7b\\xe5\\x06\\xfb\\x9b\\x5f\\x5d\\\r\n\\x6f\\xbe\\x22\\xab\\x7f\\x72\\x8f\\x2d\\xc9\\x69\\x40\\x72\\xa3\\xf8\\xbb\\x5f\\\r\n\\xc7\\x9f\\xeb\\x8a\\xaf\\x6c\\x2a\\xbd\\x9d\\xe2\\x50\\xd3\\x54\\x0c\\xb1\\xd4\\\r\n\\x7e\\xe6\\x4d\\xd7\\xd1\\x1b\\x5d\\xec\\x7e\\x9a\\x7c\\xf1\\xc6\\xfd\\xa0\\x93\\\r\n\\x8e\\xcd\\x96\\x45\\x4e\\x54\\x63\\xed\\x00\\xea\\x56\\x6b\\x5d\\x46\\xf6\\xd1\\\r\n\\x4d\\xfc\\xf5\\x0d\\x71\\x53\\x12\\xc7\\x0b\\x72\\xa2\\x00\\xc4\\x65\\x8a\\x4c\\\r\n\\xa0\\x6c\\xb2\\xee\\x40\\xd7\\x55\\xb1\\xbf\\xaf\\xae\\x38\\x8f\\x2a\\xaa\\x99\\\r\n\\x6c\\xb6\\x29\\xd7\\x1c\\x9b\\x75\\x01\\x67\\x88\\xfa\\xeb\\x70\\x35\\xd8\\x77\\\r\n\\xc5\\x07\\x14\\x9e\\xa6\\x9a\\x4a\\x6a\\xb9\\xe4\\x75\\x02\\x18\\xe2\\x8d\\xef\\\r\n\\xcb\\xfb\\x38\\xca\\xe9\\x7e\\x90\\x72\\x00\\x07\\xff\\x00\\x6f\\x7c\\x53\\xd8\\\r\n\\xc4\\xd1\\xef\\x90\\xdb\\x53\\x7d\\x07\\xcb\\xe6\\x3d\\x7c\\xe1\\xd9\\xd4\\xac\\\r\n\\xe0\\x13\\xcb\\xe8\\x90\\x01\\xbc\\x7a\\x6b\\xf4\\xbd\\xef\\xe2\\xfb\\x62\\x07\\\r\n\\xcd\\x4d\\x53\\x05\\x89\\x75\\x41\\x34\\x56\\x23\\x46\\x8f\\xad\\x4f\\x7d\\x19\\\r\n\\x7f\\x1b\\x62\\x68\\xc4\\x90\\x89\\x3b\\x1b\\x0f\\xc5\\x43\\x0b\\x7e\\x27\\xd7\\\r\n\\x14\\x52\\x44\\xb5\\x0a\\x58\\xe6\\x34\\xcb\\x24\\xed\\x6b\\x11\\x96\\x15\\xcd\\\r\n\\x98\\x9f\\x53\\x61\\xad\\xb5\\x36\\xf1\\x88\\xa7\\x79\\x78\\x45\\x50\\xcc\\x44\\\r\n\\xdc\\xfe\\x63\\x9d\\x9b\\x34\\xee\\x8c\\xce\\x4e\\xf6\\xb9\\x20\\x5c\\xec\\x07\\\r\n\\xd1\\x50\\x2f\\x2d\\xd8\\xe6\\xe6\\x70\\x8e\\x59\\x6b\\x9b\\x66\\x89\\x25\\x17\\\r\n\\xf1\\x73\\x92\\xd7\\xdc\\x6c\\x31\\x35\\x87\\x06\\x84\\x72\\x90\\x49\\x1f\\x2e\\\r\n\\x31\\xa2\\xe6\\x22\\x48\\xec\\x40\\xb6\\xb9\\xae\\x4b\\x6b\\xf3\\xef\\x88\\x84\\\r\n\\x80\\x72\\xa3\\x12\\x43\\x11\\xca\\x1d\\xac\\x79\\x9a\\x6a\\xc5\\x06\\xa1\\x09\\\r\n\\xd4\\x8c\\xdd\\x5a\\x6c\\x06\\xfe\\xd1\\xd1\\xac\\xcf\\x07\\x17\\x84\\x2a\\xc9\\\r\n\\x3c\\x34\\x9c\\x41\\x10\\x02\\x73\\xa5\\x44\\x11\\x48\\xcd\\x73\\xa1\\xea\\xb9\\\r\n\\x3e\\xb7\\xed\\xb5\\x55\\x40\\xab\\xa4\\x5e\\x51\\xb0\\x73\\x02\\xc9\\x18\\xf8\\\r\n\\xb9\\x8d\\xa9\\x52\\x48\\xd0\\x02\\x2f\\xe4\\x9f\\xca\\x9f\\x20\\xac\\x6a\\xa7\\\r\n\\x39\\x8c\\x41\\x21\\x88\\x66\\xb8\\x8d\\x45\\x9a\\x43\\x6f\\xe3\\x2c\\x4a\\xfd\\\r\n\\x30\\xb5\\x90\\x19\\xcb\\x92\\x01\\x66\\x3f\\x8d\\xfc\\x1f\\xd7\\x8c\\x44\\xd1\\\r\n\\x48\\x02\\x8c\\xa7\\x30\\xbf\\x63\\xe9\\xbe\\xf7\\xfe\\x98\\xe2\\x1c\\x26\\x29\\\r\n\\xa1\\x3a\\x65\\x3b\\x82\\x3b\\x11\\xa8\\x3e\\x9a\\xdb\\x07\\x84\\xd6\\xdc\\xfc\\\r\n\\x07\\x53\\xad\\xdf\\x5f\\x5c\\x52\\x24\\x75\\x13\\xc0\\x64\\x8f\\x3c\\x97\\x05\\\r\n\\x58\\x20\\xb0\\x04\\x0b\\x8d\\x3a\\x6d\\xde\\xda\\xef\\x7c\\x3c\\x90\\xc4\\xcc\\\r\n\\x23\\x45\\x59\\x06\\x55\\x62\\x00\\xdb\\x4b\\xfd\\x4e\\x23\\x94\\x4b\\x1d\\x9b\\\r\n\\x7c\\x4c\\xe5\\x2f\\x97\\x6f\\xeb\\x89\\x6a\\x09\\x62\\xa7\\x63\\xbd\\xad\\xf8\\\r\n\\x1c\\x32\\xc1\\x50\\xce\\x97\\x61\\xd0\\x6c\\x76\\x01\\xb7\\xf5\\x3a\\x7e\\x18\\\r\n\\x90\\x72\\x5e\\x4b\\x1c\\xc2\\xfc\\xb6\\xfe\\xbf\\xda\\xd8\\x11\\x67\\xbe\\x50\\\r\n\\x7f\\x0f\\xd7\\xf4\\xc5\\x38\\x30\\x49\\x99\\x97\\x35\\xd2\\xc2\\xff\\x00\\x08\\\r\n\\x3f\\xf1\\x72\\x7d\\x3e\\x58\\x82\\xa7\\xa8\\x00\\x6c\\x40\\x3f\\x8d\\xbf\\xb6\\\r\n\\x17\\x8a\\x2c\\x7a\\x3c\\xaa\\xa3\\xb9\\xb5\\xc0\\xd2\\xe7\\xd5\\x76\\xdf\\x15\\\r\n\\x7c\\x44\\xc5\\xc7\\xe3\\xa8\\x47\\xba\\x5d\\x2e\\xe7\\x51\\x95\\xac\\x0f\\xcf\\\r\n\\xa4\\x9f\\xd6\\x98\\xa6\\xba\\xc2\\x24\\x6b\\x3f\\x31\\x33\\xc6\\x45\\xc5\\xc3\\\r\n\\xf5\\x03\\xad\\xfc\\xe1\\x12\\xe5\\x6f\\x63\\xe5\\x8f\\xdc\\x5d\\xec\\x30\\xc1\\\r\n\\x23\\x52\\x45\\xc9\\x3a\\x76\\xb0\\x3a\\x6b\\xe6\\xd6\\xfc\\xfe\\x58\\xcc\\x5e\\\r\n\\xd7\\x17\\xb7\\xcb\\x5e\\xf6\\xd3\\xf5\\x6c\\x46\\xe3\\x35\\xcf\\xcb\\xc6\\xd6\\\r\n\\x3d\\xff\\x00\\x0b\\xe0\\x4a\\x38\\x95\\x6c\\xd3\\xde\\xf4\\x9c\\x31\\xa5\\xa5\\\r\n\\xa5\\xbe\\xd3\\x56\\x3a\\xe4\\xaa\\x9e\\xf7\\xff\\x00\\xb0\\x97\\xa6\\x46\\x03\\\r\n\\x76\\x94\\xaf\\x91\\x54\\xc6\\x38\\xc6\\x41\\xd8\\x9c\\xc4\\x16\\xcc\\xc6\\xdb\\\r\n\\x5b\\xb7\\x8e\\xd7\\xdb\\x5d\\xf8\\x65\\x09\\xa4\\xc8\\xa7\\x33\\x1c\\xb9\\x9c\\\r\n\\xf9\\x92\\x52\\x5e\\x57\\xee\\x49\\xbb\\x35\\xf5\\x16\\x00\\x0d\\xf5\\xc4\\x88\\\r\n\\xc6\\x4c\\xc3\\xb6\\x86\\xfa\\x6f\\x6d\\x2d\\x6b\\x5a\\xc3\\xb7\\x93\\xae\\xb8\\\r\n\\x03\\x3a\\x80\\xa2\\xed\\x70\\x00\\xef\\xa5\\xc1\\xfc\\xb1\\xca\\x10\\xb7\\x4e\\\r\n\\xd7\\xbe\\x5d\\x74\\xbd\\xc1\\x37\\x3e\\x9f\\x76\\xd8\\x8a\\x45\\x6e\\x83\\xe2\\\r\n\\xc3\\x1c\\xac\\x92\\x67\\xd0\\xeb\\x67\\xff\\x00\\x30\\x3a\\x1f\\xa5\\x8d\\x87\\\r\n\\xcb\\x13\\xe6\\x8d\\xf2\\xa9\\xd1\\x3e\\x11\\xe4\\x6e\\x2f\\x71\\xff\\x00\\x1d\\\r\n\\xf0\\xc8\\xee\\x15\\xd8\\x2e\\xb0\\x95\\x3a\\x5a\\xc4\\x78\\x36\\xff\\x00\\x6c\\\r\n\\x51\\x00\\xd0\\x7b\\xb3\\xda\\xf7\\xcd\\x1b\\x6b\\xd2\\x4f\\xdd\\xbd\\xf6\\x7d\\\r\n\\xad\\x89\\xe9\\xa4\\x82\\xb4\\xda\\xeb\\xd2\\xc2\\xd7\\xb1\\xd7\\x52\\x8d\\xbd\\\r\n\\xf5\\x17\\x03\\x70\\x76\\xdf\\x15\\x89\\x25\\x4f\\x0f\\x96\\x1c\\xa3\\x99\\x23\\\r\n\\xc5\\x9c\\x2d\\x81\\x19\\x53\\x57\\xf9\\x37\\xc4\\x6e\\x47\\x51\\xc6\\x68\\xa9\\\r\n\\x28\\x44\\x4c\\xd6\\x79\\x32\\xa1\\x31\\x29\\x7b\\xf2\\x6f\\x99\\xae\\x76\\x04\\\r\n\\xdb\\xe1\\xb8\\xb8\\x36\\xdf\\x1c\\x3c\\x70\\xe9\\x25\\xe9\\x21\\xaa\\x6e\\xc4\\\r\n\\x2b\\xcd\\xd7\\x6d\\x05\\x8c\\x76\\x50\\x4d\\xc9\\xec\\x34\\xc4\\x70\\x1f\\x77\\\r\n\\x29\\x7b\\x06\\x4d\\x88\\xb7\\x6d\\xbf\\x1d\\x0e\\x22\\xe6\\x53\\x2c\\x71\\xda\\\r\n\\xe1\\x4f\\x34\\xf4\\xed\\xd5\\x73\\xb6\\x86\\xf7\\xde\\xdf\\x86\\x29\\x59\\x6b\\\r\n\\x64\\x06\\x3f\\xe3\\x37\\x53\\xb8\\xef\\x6b\\xff\\x00\\xb6\\x38\\x7f\\x08\\x98\\\r\n\\xd2\\xc2\\x00\\x06\\xf6\\x73\\x6b\\x1b\\x0f\\xaf\\x7b\\x9b\\x6c\\x71\\xff\\x00\\\r\n\\x51\\xb8\\x44\\x7c\\xae\\x79\\x5f\\xb4\\x85\\xc4\\x8b\\x98\\xb0\\x16\\x1f\\x9e\\\r\n\\xba\\x5f\\xe9\\x8a\\x0a\\xe8\\xbd\\xda\\x37\\x56\\x56\\x8d\\xc5\\xd8\\x28\\x04\\\r\n\\x06\\xf8\\x4e\\xbf\\x31\\xf3\\xb6\\x26\\x96\\x39\\x24\\xa8\\xcb\\x97\\x29\\x55\\\r\n\\x76\\x02\\xdb\\x32\\x04\\x3a\\xf8\\x19\\x7f\\x20\\x37\\xc3\\x1c\\xc0\\xc4\\xa7\\\r\n\\xec\\x84\\x99\\x87\\x7b\\xb0\\x27\\x5d\\x3b\\xf6\\x27\\xc6\\xd8\\x49\\xb9\\x0e\\\r\n\\xd1\\x91\\xd2\\xc4\\x5c\\x01\\x73\\x98\\x1b\\x8b\\x0d\\x2f\\x6d\\x7d\\x7b\\x62\\\r\n\\x8a\\x61\\x23\\x1d\\x4e\\x56\\x02\\xc6\\xfd\\xc1\\xff\\x00\\x7d\\xbb\\x58\\xe3\\\r\n\\x22\\x72\\xc6\\x51\\x6c\\xc2\\xc7\\x30\\xd3\\x5d\\xc7\\xeb\\xe9\\xae\\x29\\xa5\\\r\n\\xf7\\x49\\xbe\\xd7\\xe3\\x8f\\xa3\\x6f\\xde\\x44\\xdb\\x03\\x7b\\x6c\\x3b\\xef\\\r\n\\x7d\\x71\\x2c\\x55\\xd5\\x39\\xa9\\x21\\x28\\xb4\\xb7\\x52\\x2c\\xd9\\x4b\\xaa\\\r\n\\xea\\x00\\x20\\x16\\xf4\\xf1\\x7f\\x96\\x05\\x27\\xba\\x53\\xce\\x09\\xea\\x9f\\\r\n\\x25\\x3e\\x6b\\xff\\x00\\xda\\xcd\\x9e\\x6d\\x4e\\xc0\\xaa\\x80\\x6f\\xbd\\xfb\\\r\n\\xe2\\x06\\x59\\x25\\xab\\xa7\\x42\\x87\\x9d\\x4b\\x74\\xb1\\xcd\\x77\\x4e\\xb5\\\r\n\\xdb\\xf9\\x60\\xd4\\x05\\xa0\\x86\\x54\\x2a\\x58\\x43\\x51\\x16\\xd9\\xbe\\xf5\\\r\n\\x87\\xd4\\x67\\xfc\\xf4\\xc3\\x53\\x89\\xd6\\x67\\xd3\\x34\\x30\\xe5\\x88\\xe9\\\r\n\\xac\\xc9\\x6b\\xbe\\x96\\xd0\\x2e\\x8a\\x7c\\x92\\x76\\xc5\\x10\\x32\\x4f\\x67\\\r\n\\x63\\xf0\\x39\\x03\\x36\\xed\\xf0\\x93\\xdc\\x93\\xa9\\xbe\\xf8\\xe6\\x0a\\xee\\\r\n\\x0d\\xc0\\xcc\\x59\\x79\\xf1\\xd2\\xc9\\x45\\x32\\x30\\xcc\\xae\\xb4\\x13\\xb2\\\r\n\\x95\\xb8\\xcb\\x66\\xe4\\xc8\\xaa\\x18\\xed\\xf2\\xc3\\xc3\\x15\\x15\\x52\\x19\\\r\n\\x9a\\x55\\xa5\\x3a\\xca\\xb1\\x95\\x32\\x46\\xd6\\x6e\\x53\\x75\\x07\\x52\\x10\\\r\n\\xb5\\x9b\\x7d\\x2f\\x6f\\x38\\xe1\\xb4\\xfe\\xf6\\x83\\x29\\x1c\\x91\\x23\\x9e\\\r\n\\x6e\\x5b\\x17\\x1d\\x44\\x31\\xb8\\x03\\x29\\xb5\\xf4\\x3f\\x8e\\x2a\\xe1\\x2b\\\r\n\\x13\\x4a\\x09\\xe9\\x7f\\xb3\\xd0\\xf5\\x43\\x98\\xae\\x71\\xff\\x00\\x96\\x52\\\r\n\\x06\\xf9\\x4d\\xf1\\x4d\\x5c\\x69\\x7d\\xd9\\x5d\\xc1\\xe6\\x27\\x34\\x90\\xc0\\\r\n\\xf4\\x6d\\x6d\\xee\\x0e\\x6f\\x3d\\xf5\\xdb\\x14\\xf5\\x42\\x55\\xbd\\xee\\x0f\\\r\n\\xe8\\x7e\\xaf\\x82\\xf1\\x5c\\xfc\\xfd\\x3f\\xb6\\x38\\x62\\xcd\\x1d\\x6e\\x46\\\r\n\\x6e\\x88\\xd9\\x4c\\x40\\x5c\\xa8\\x8c\\x7d\\xdf\\x9d\\xfe\\x7d\\xbc\\x62\\x47\\\r\n\\x8e\\xa1\\xf3\\xac\\x65\\x4a\\x90\\x8e\\x48\\xf8\\x9e\\xfa\\x7f\\xce\\x22\\xb4\\\r\n\\x7a\\x1d\\x34\\xdb\\xd4\\x62\\xb5\\xf2\\xb6\\x51\\x61\\x7b\\xf5\\x9d\\x96\\xfd\\\r\n\\xfd\\x4f\\xcb\\xe7\\x89\\x9c\\x75\\x49\\xcd\\xbb\\xdd\\xed\\x65\\xd0\\xd8\\x9b\\\r\n\\x7d\\x7f\\x0c\\x0a\\xb6\\x85\\xd9\\xc7\\x55\\x8d\\xec\\x6f\\xbe\\x1e\\x44\\x6b\\\r\n\\x95\\x5e\\xa7\\x90\\x96\\x1f\\xc2\\x7d\\x7e\\x9d\\xee\\x77\\xdf\\x11\\x30\\x27\\\r\n\\xe1\\x17\\xbf\\xe1\\xfd\\xb0\\x55\\xe4\\x22\\xf6\\x36\\xfe\\x1f\\xcb\\x5f\\xae\\\r\n\\x0a\\xba\\xbe\\x5b\\x1b\\xde\\xc6\\xdf\\x99\\xf1\\xa0\\xc5\\x86\\x86\\xf7\\x60\\\r\n\\x75\\xcc\\xd7\\x04\\x78\\x20\\x7c\\xbc\\xe3\\x88\\x44\\xaa\\xf0\\xcc\\x81\\x74\\\r\n\\x2b\\x9c\\x6e\\x37\\xf5\\xd4\\x8d\\x2c\\x71\\xc1\\xb8\\xa7\\xed\\x18\\x0e\\x63\\\r\n\\xad\\x36\\x48\\x80\\xb8\\xb6\\x4e\\x58\\x31\\xda\\xdf\\x51\\xf9\\x61\\xaa\\x11\\\r\n\\x22\\x79\\x2e\\x84\\x44\\x0b\\xbe\\xa0\\x65\\xc8\\x2f\\x67\\x3f\\x77\\x4f\\x24\\\r\n\\x62\\x2f\\x6a\\x2a\\x78\\x84\\xa8\\x9c\\x3b\\x85\\xcf\\x51\\xf1\\x89\\x59\\xcf\\\r\n\\x2e\\x38\\xf5\\xe8\\x3c\\xc3\\xd1\\x97\\xef\\x30\\xbe\\x7d\\x76\\x38\\xa7\\xab\\\r\n\\xe3\\xf1\\x54\\x7f\\x8e\\xa2\\xa7\\x34\\x9d\\x44\\xc9\\x49\\x27\\x32\\x64\\x07\\\r\n\\x45\\x1c\\xa1\\x6c\\xfa\\x6f\\x6b\\x9d\\x6f\\x73\\x6b\\x0e\\x2d\\x5a\\x63\\xa4\\\r\n\\x8a\\x3a\\x56\\xff\\x00\\x17\\xc4\\x1b\\xdd\\xe9\\x2c\\x35\\x8c\\xbd\\xcb\\xcc\\\r\n\\xfa\\x5d\\x44\\x28\\x0b\\x37\\xf9\\xac\\x2d\\x88\\xe8\\xe3\\xa3\\xa6\\x8e\\x9a\\\r\n\\x30\\x04\\x70\\xaa\\x82\\xc6\\xd7\\x63\\x6e\\xb9\\x1c\\xf7\\x2e\\xc4\\xb3\\x13\\\r\n\\xbd\\xf1\\x50\\xeb\\x75\\x24\\x03\\x1a\\xdd\\xbf\\xf1\\x8c\\xdf\\xc1\\x02\\xfe\\\r\n\\x6f\\x88\\x59\\x24\\x8e\\x39\\x93\\x43\\x2a\\x06\\x37\\x3d\\x8e\\x9f\\x87\\x63\\\r\n\\xe4\\xe3\\x36\\x55\\xb9\\xf3\\x63\\xf3\\xc3\\x54\\x05\\x24\\x86\\xb1\\x0d\\xa7\\\r\n\\x8d\\x0f\\xd3\\x7d\\xf0\\xdf\\x6a\\x04\\xe0\\x8d\\x56\\xce\\x17\\x5b\\x38\\x07\\\r\n\\xb7\\x83\\xb8\\xfc\\x3b\\x61\\x59\\x96\\x50\\xc5\\xae\\x2f\\x6b\\x5e\\xdb\\xed\\\r\n\\x8f\\x89\\x46\\x98\\x99\\x0b\\x36\\x7c\\xbd\\x51\\xe9\\x7d\\x7a\\xa3\\x6d\\xb4\\\r\n\\xdb\\xa5\\xae\\xbf\\xcf\\xc6\\x24\\x5b\\x53\\xe9\\xa9\\x3a\\x0b\\x9d\\x8b\\x69\\\r\n\\xbf\\xe7\\x88\\x13\\x2e\\xec\\x74\\xfe\\x63\\xc6\\xb8\\xab\\x8d\\x6a\\x00\\x91\\\r\n\\x87\\xda\\xa5\\x81\\xec\\x58\\x5b\\x46\\xf3\\x7e\\xcc\\x77\\x3d\\xce\\x98\\x12\\\r\n\\xaf\\x24\\xab\\x00\\x1b\\x99\\x94\\x8e\\xe5\\x48\\xdc\\x77\\xff\\x00\\x70\\x71\\\r\n\\x55\\x4e\\x8f\\x2e\\x41\\x7f\\xb3\\x87\\x5f\\x56\\x62\\x5d\\xbe\\x57\\xd8\\xef\\\r\n\\x7d\\xb1\\x4f\\x05\\x26\\x78\\xf9\\x91\\xc6\\x5c\\xbd\\xb6\\xb5\\x86\\xc0\\x5c\\\r\n\\x75\\x7d\\x41\\xbf\\x7c\\x2a\\x15\\x4e\\x89\\x19\\x14\\x0f\\x84\\xf5\\x2d\\xbe\\\r\n\\xbd\\x43\\xff\\x00\\xab\\xe7\\xae\\x22\\x62\\xd9\\xd9\\xd5\\x82\\xdb\\x28\\x6b\\\r\n\\x82\\x86\\xdf\\x5e\\x9b\\xdb\\x62\\x3c\\x63\\x84\\xa2\\xa4\\x81\\xaf\\x6c\\xcc\\\r\n\\x4f\\x4e\\xd7\\xfa\\x7e\\xb7\\x38\\xa2\\xe3\\x49\\x43\\x10\\x12\\xc8\\x02\\x65\\\r\n\\x03\\xaa\\xf6\\xb6\\xe6\\xde\\xb7\\x18\\xf6\\xcf\\x88\\xb7\\x1c\\xaa\\x14\\xf4\\\r\n\\xf2\\xc7\\x92\\xcf\\xcc\\x5f\\xde\\x15\\x0a\\x01\\x53\\x97\\x30\\xd0\\xb5\\x87\\\r\n\\xcc\\xed\\xa6\\xbc\\x15\\x9a\\x9a\\xbe\\x7e\\x1d\\x51\\x33\\x24\\x44\\xbb\\xa6\\\r\n\\x88\\xaa\\x8e\\xa4\\xe7\\x04\\x15\\xb8\\xda\\xe0\\x5e\\xd7\\x06\\xe3\\x15\\x32\\\r\n\\x96\\x94\\xb4\\x3c\\xd6\\x80\\x5d\\x1a\\x50\\xa1\\x79\\x99\\x5b\\xaa\\xd7\\xb7\\\r\n\\x48\\xbd\\xbc\\x7f\\x59\\xb9\\x57\\x1c\\xad\\x50\\xaf\\xa6\\x87\\x7d\\x7d\\x4d\\\r\n\\xef\\xe7\\x12\\x44\\x59\\xb3\\x7f\\x09\\xd2\\xde\\x87\\xf5\\xf8\\xe2\\x90\\x30\\\r\n\\x64\\x68\\xc5\\x89\\x3e\\x6f\\x9c\\xff\\x00\\xa7\\xf2\\x3a\\x81\\xb5\\xf5\\xc4\\\r\n\\x14\\x93\\xca\\x9f\\x6b\\x54\\xf1\\xdb\\xee\\x46\\x15\\x58\\x12\\x0d\\xc6\\x62\\\r\n\\x33\\x5a\\xd6\\xd8\\x0c\\x54\\xf0\\x5a\\x45\\x64\\xa9\\x96\\x5a\\xb9\\x43\\x3a\\\r\n\\xab\\x87\\x98\\x9c\\xa2\\xfa\\xb1\\xd2\\xe4\\x5c\\x9d\\x01\\xf3\\xb6\\x2a\\x38\\\r\n\\x7d\\x1b\\xaa\\xd4\\x65\\x7f\\xf0\\x77\\x8a\\x64\\x8e\\x69\\x23\\x2f\\x08\\x01\\\r\n\\x94\\xa9\\x52\\xbf\\x6a\\xaa\\x6e\\xa6\\xdd\\x57\\x29\\xbd\\x8e\\x2a\\x57\\x24\\\r\n\\x02\\xae\\x82\\xa2\\x75\\x81\\xe4\\xcb\\x0c\\x75\\x99\\x2a\\x56\\x4c\\x82\\xf2\\\r\n\\x1b\\x48\\x33\\x25\\xba\\x17\\x47\\xfc\\x0e\\xfc\\x37\\x88\\xd4\\xc1\\xc4\\x63\\\r\n\\x69\\xe9\\xd4\\x92\\xd9\\x54\\xc4\\xd9\\x01\\x56\\xb8\\xb2\\xac\\x86\\xc5\\xb2\\\r\n\\x9d\\xb3\\xeb\\xb6\\x11\\xf3\\x44\\x52\\xcd\\x1e\\x5e\\x20\\x63\\x39\\xc5\\xb2\\\r\n\\x23\\x94\\x23\\xa4\\xdc\\x37\\x4a\\x9e\\x95\\xcd\\xa8\\xdf\\x10\\xcc\\x8b\\x2c\\\r\n\\x71\\x86\\xce\\xbc\\xd3\\x09\\x6e\\xc6\\x37\\x0c\\x17\\xf1\\xb8\\xdf\\x6b\\x5f\\\r\n\\x09\\xc3\\x84\\xb3\\x48\\x2e\\xf1\\x4b\\x0b\\x5e\\x19\\x56\\xf9\\x91\\xb3\\x7a\\\r\n\\x6e\\xa6\\xdd\\x6b\\xf7\\x87\\xae\\xb8\\x82\\x17\\xa6\\xe1\\x8d\\x16\\x8f\\x3d\\\r\n\\x37\\x18\\xaa\\x0f\\xd4\\x39\\x48\\x95\\x08\\xaa\\xec\\xad\\x9a\\xe8\\xa7\\xa1\\\r\n\\xba\\xfb\\x8d\\xfb\\xe3\\x89\\x57\\xd1\\x07\\x6e\\x6c\\xa2\\x4c\\xf4\\xf2\\x45\\\r\n\\x24\\x11\\x9c\\xe5\\x66\\x11\\xe8\\xdb\\x1d\\x33\\x9d\\xce\\xdd\\xb5\\x18\\xe1\\\r\n\\x9c\\x52\\xaf\\x93\\x1d\\x05\\x1c\\x2d\\x3b\\xb1\\x08\\x7a\\x88\\x06\\x30\\x6f\\\r\n\\xcb\\xbe\\x99\\x41\\xcd\\x95\\x9c\\x10\\x55\\x76\\x37\\xb1\\x15\\x7c\\x3b\\x8b\\\r\n\\x4a\\x1d\\xeb\\xe6\\x8a\\x15\\x8c\\x85\\x14\\xb0\\xe5\\xb2\\x23\\x11\\xf0\\x95\\\r\n\\xb0\\x0a\\xa3\\xd5\\x8d\\xad\\xb6\\xb8\\xe1\\x1c\\x2e\\x9d\\xa3\\x77\\x9a\\x2b\\\r\n\\xce\\x24\\xc8\\x84\\xdf\\xf7\\x6b\\x65\\x04\\x02\\x6d\\xd4\\x3a\\xb3\\x7a\\x8f\\\r\n\\x9e\\x26\\xe2\\xb4\\x74\\x63\\x94\\xf2\\x29\\x95\\x6e\\xb9\\x22\\x21\\xd8\\x6c\\\r\n\\x2e\\x72\\xfc\\x3f\\x23\\x6f\\xcb\\x02\\xb1\\x18\\x06\\xca\\x7a\\x80\\x3b\\x2f\\\r\n\\x7d\\x7c\\xe2\\x86\\x64\\x8e\\xb5\\x83\\xa0\\x2a\\xb0\\x0d\\xf7\\xcc\\xda\\xef\\\r\n\\xe4\\x0d\\xfb\\x6b\\x89\\xa5\\x3c\\xbb\\x03\\x6b\\xc8\\x1b\\xd4\\xfa\\xdf\\xd2\\\r\n\\xc3\\xb6\\x20\\x69\\xa4\\x60\\xe4\\xd9\\x06\\xfa\\x13\\xf9\\xef\\xeb\\xe9\\xe7\\\r\n\\x1c\\x45\\xd7\\xdc\\xe6\\x94\\x75\\xb2\\xa1\\xb0\\xd7\\x72\\x2d\\xfe\\xf8\\xa7\\\r\n\\xa6\\x86\\x5a\\x68\\x81\\x51\\x99\\xa2\\x05\\xbe\\x66\\xfb\\x78\\x3f\\xd7\\x15\\\r\n\\x1c\\x34\\xa0\\x6e\\xda\\x31\\xca\\x0e\\x6d\\x3e\\x7a\\x7e\\xb7\\xf1\\x89\\x01\\\r\n\\x88\\xda\\xde\\x08\\x6e\\xe3\\x5b\\x5b\\x09\\x9c\\xf5\\x7f\\x9a\\xff\\x00\\x3d\\\r\n\\x34\\xfc\\xf1\\xc3\\xd6\\xe7\\xac\\x12\\xcd\\xa2\\xdb\\xcf\\xd7\\x15\\xd0\\x9e\\\r\n\\xa3\\x6b\\x1c\\xcd\\xf9\\x58\\x7f\\x5c\\x47\\x09\\x93\\xa6\\x3b\\x96\\xef\\x6f\\\r\n\\x4c\\x0e\\x1e\\xce\\xa5\\x64\\xdd\\xad\\x94\\x77\\xbf\\x8d\\xfe\\x7d\\xb1\\xc2\\\r\n\\x05\\x45\\x07\\xbc\\x01\\x19\\x26\\x45\\x2a\\xa7\\xd5\\x76\\x3d\\xf6\\xf0\\x06\\\r\n\\x29\\xf8\\x25\\x47\\x25\\x04\\xb5\\x93\\xe5\\xaa\\x9f\\x3c\\x90\\x21\\xcb\\x1c\\\r\n\\x8a\\x45\\xdb\\x9d\\xa6\\x66\\xd8\\x0c\\xa6\\xfa\\x77\\x16\\x18\\x82\\x08\\xe9\\\r\n\\xd1\\x63\\x89\\x12\\x34\\x51\\xa2\\x46\\xa1\\x50\\x69\\x6d\\x00\\x03\\xb6\\x2f\\\r\n\\x1a\\xab\\x3b\\xb6\\x50\\x06\\xa7\\xc0\\x1f\\xaf\\x9f\\x8c\\x50\\xa3\\x71\\x0a\\\r\n\\xfa\\x8e\\x2b\\x2a\\xda\\x28\\xc3\\x52\\xf0\\xe5\\x6e\\xd1\\x69\\xcf\\x9f\\x7d\\\r\n\\xe5\\x6e\\x9b\\xf8\\x1b\\xf6\\xc5\\x5e\\x62\\xb6\\x1a\\x79\\xdb\\x51\\xfa\\x23\\\r\n\\x13\\xcb\\x7f\\x79\\x4d\\x2c\\xb1\\x72\\x98\\xdf\\x67\\x71\\xad\\xbe\\x5d\\x3f\\\r\n\\xdb\\x1c\\x0b\\x88\\x33\\x40\\x61\\x93\\xaa\\x5a\\x7b\\xa8\\x1d\\xd8\\x2b\\x5f\\\r\n\\xf0\\x1f\\xab\\xe0\\xc8\\xd3\\xc6\\x99\\xc5\\x89\\xcc\\xc4\\x5e\\xdd\\xc1\\xe9\\\r\n\\x1a\\x66\\xb5\\xc7\\x6e\\xf8\\x44\\xb9\\x3d\\xc8\\x26\\xc0\\xfa\\x83\\xdf\\x14\\\r\n\\xc3\\x22\\x91\\x26\\xcd\\x61\\xf2\\x27\\x6b\\x7c\\x8e\\xd7\\xfe\\xf8\\x10\\x9c\\\r\n\\xc4\\x5a\\xe7\\x43\\xe9\\xf3\\xfc\\xb1\\x76\\x16\\x1a\\xfa\\xed\\x82\\xa7\\x46\\\r\n\\x37\\x20\\x68\\xc2\\xd7\\xe9\\x37\\xfe\\x5d\\xad\\xaf\\xae\\x24\\x03\\x96\\xb6\\\r\n\\xd7\\x51\\xad\\xbe\\x76\\xd3\\x0b\\xa6\\xb8\\x98\\xe5\\x3e\\xbf\\x96\\x98\\xab\\\r\n\\x11\\x83\\x1c\\xb1\\x5c\\xbb\\x37\\x50\\x1f\\xc1\\xa7\\x6f\\x2a\\x4e\\xbd\\xec\\\r\n\\x7b\\xe2\\xa5\\xc0\\x69\\x58\\x68\\x46\\x65\\x5d\\x6d\\x70\\xba\\x1b\\xfa\\x8d\\\r\n\\x71\\x4a\\xaf\\x24\\xf0\\x31\\xd6\\xf2\\xb9\\xfa\\x20\\xf3\\xe7\\x5c\\x37\\x4c\\\r\n\\x44\\xb9\\xb0\\x27\\x2f\\xcb\\x31\\xca\\x31\\x00\\xb2\\xb2\\x13\\x6d\\x4d\\x81\\\r\n\\xdb\\x73\\xe7\\xf0\\xc5\\x0a\\x1e\\x68\\x0b\\xa6\\x46\\xd7\\x5b\\x8f\\xd6\\xfe\\\r\n\\x71\\xc7\\xab\\x79\\x70\\x30\\xbd\\x8a\\x81\\xb7\\xad\\xfb\\x61\\xe6\\x92\\x3a\\\r\n\\x97\\x98\\xe7\\x2e\\x7a\\x94\\xdf\\x6b\\x9b\\x83\\xe8\\x40\\xde\\xc7\\xf1\\xc5\\\r\n\\x65\\x6c\\xb2\\x4b\\x1f\\x32\\xcf\\xc9\\x7b\\xac\\x96\\x1c\\xd9\\x33\\x1b\\xbf\\\r\n\\x32\\x4b\\x66\\xb3\\xdf\\xd7\\x15\\x15\\x11\\x55\\x43\\x41\\x1a\\x08\\xa0\\x90\\\r\n\\xa6\\x74\\x8f\\x3a\\x8b\\xc4\\x43\\x0d\\x17\\xee\\x95\\xf9\\x59\\xbe\\xeb\\x13\\\r\n\\xa6\\x24\\x0f\\x0c\\xea\\x25\\x5c\\xa0\\xd8\\x76\\xb9\\xfe\\x12\\x40\\x36\\x19\\\r\n\\x94\\x91\\xdb\\x51\\x63\\xad\\xf0\\xb1\\xe6\\x9d\\x54\\x2e\\x85\\x75\\xd2\\xdd\\\r\n\\xf7\\xbf\\xa5\\xb5\\x38\\x8a\\x16\\xa2\\xac\\x45\\x2a\\x72\\xb9\\x56\\xfc\\xf6\\\r\n\\xbf\\xad\\xbb\\x1e\\xda\\xeb\\x86\\x5e\\x62\\x29\\x52\\x11\\xb2\\xf4\\x3f\\xd3\\\r\n\\xa7\\x1f\\xb5\\x63\\x35\\x12\\x70\\xba\\xf4\\x34\\xf3\\x3d\\xc4\\x12\\xb6\\x91\\\r\n\\x4e\\x1f\\x62\\xad\\xa5\\x98\\x1e\\xfb\\x1d\\xae\\x1b\\x4c\\x70\\x69\\x8f\\x31\\\r\n\\x95\\xc0\\x62\\xa1\\x56\\x5b\\xed\\x9a\\x3b\\xaf\\xe6\\x00\\xc7\\x15\\x58\\xf3\\\r\n\\xd3\\xc6\\xd0\\xab\\x53\\xc6\\xb2\\x12\\xa2\\xea\\x63\\x33\\x35\\xd5\\x88\\x1d\\\r\n\\xba\\x49\\xc4\\xfc\\x3e\\x9e\\x4b\\x22\\x28\\x5c\\xca\\x0a\\x9e\\xfa\\x13\\x7d\\\r\n\\x75\\xd7\\x62\\x0a\\x90\\x74\\xdc\\x5f\\x0d\\xc3\\xbd\\xd6\\x09\\x72\\x93\\x25\\\r\n\\x12\\x4b\\x0c\\xbf\\x6b\\xd7\\x2a\\x02\\xae\\x9a\\x9f\\xbc\\xa1\\x98\\x92\\xdf\\\r\n\\x10\\xb7\\xf0\\xa9\\xc7\\xba\\x8a\\x5f\\xf1\\x3c\\xe3\\xc9\\xe8\\x78\\xe3\\x1d\\\r\n\\x4d\\x2b\\x2e\\xa0\\x46\\x5b\\xe1\\xf9\\x93\\x97\\x5b\\x5a\\xfb\\xad\\x55\\x55\\\r\n\\x71\\x77\\xe1\\xa9\\x1b\\xbe\\x63\\xd3\\x23\\x72\\xf2\\xe9\\x76\\x79\\x07\\xc4\\\r\n\\xc2\\xfb\\x08\\xee\\x1b\\xc8\\xc1\\xa5\\x12\\x3f\\x10\\x6e\\x31\\x5b\\x34\\x71\\\r\n\\x42\\xab\\x5b\\x2c\\x34\\xcd\\xc8\\xa7\\x94\\x90\\x75\\x20\\x86\\x67\\x6b\\x47\\\r\n\\x95\\x46\\x97\\x27\\xce\\x98\\xa0\\xa6\\x8a\\x49\\x0d\\x6a\\xc6\\x29\\xe0\\x94\\\r\n\\x3b\\x52\\xc4\\xc0\\x35\\xe3\\xcf\\x93\\x98\\xec\\xe4\\xe6\\x2f\\x63\\x63\\x63\\\r\n\\x7d\\xc1\\xdb\\x14\\xd0\\xfb\\xbf\\x15\\xa8\\xa5\\x86\\x65\\xba\\x91\\x53\\x4b\\\r\n\\x2a\\x6a\\x73\\x04\\xce\\x00\\x2b\\xa8\\xcc\\x1d\\x90\\xdf\\x6b\\x6d\\x8a\\xef\\\r\n\\x68\\xa4\\x2a\\xf1\\xe8\\xb9\\x95\\x63\\x39\\xbe\\xd9\\xdc\\x5b\\xad\\xcc\\x97\\\r\n\\xcd\\x77\\x3f\\x08\\x00\\xe4\\xbd\\xbe\\xed\\x89\\x6e\\x29\\xc4\\xee\\x14\\x9e\\\r\n\\x1f\\x4d\\x65\\x66\\xcc\\x4d\\x3c\\x4b\\x1f\\x2e\\xcb\\xd2\\x0b\\x4d\\x27\\x48\\\r\n\\xdc\\xe9\\x72\\x19\\xb2\\xe2\\x2a\\x58\\xe4\\x99\\x63\\xa6\\x2c\\x45\\xed\\xef\\\r\n\\x12\\xae\\x53\\x2b\\x5e\\xc4\\xc6\\xbf\\x76\\x3b\\xe6\\xb3\\x33\\x33\\x74\\xdf\\\r\n\\x41\\xa6\\x14\\x59\\x54\\x66\\xbd\\x80\\x17\\xce\\xbd\\x87\\xfa\\xf1\\x4a\\xd1\\\r\n\\xfb\\xe5\\x52\\x6a\\xc4\\xb5\\x94\\x81\\xa0\\x00\\xdb\\x5d\\x4e\\xa4\\x28\\xf9\\\r\n\\x5f\\x51\\xe0\\x52\\x2d\\xd6\\x37\\x7e\\xa2\\x0b\\x85\\x1b\\xd8\\xfa\\xed\\xaf\\\r\n\\x6f\\x4b\\x62\\x19\\xb9\\x12\\x34\\x6f\\xda\\xfa\\x01\\xaf\\xa1\\xdf\\xbe\\x1e\\\r\n\\x5f\\x78\\x8e\\x48\\x4c\\x7d\\x07\\x72\\xc1\\x7e\\x83\\xbe\\x18\\xd3\\x43\\x96\\\r\n\\x35\\xa9\\x9a\\x96\\xa1\\x1d\\x95\\xe4\\x42\\x75\\x0a\\x09\\x5b\\xa6\\xb1\\x95\\\r\n\\x37\\xfe\\x1b\\x9d\\x76\\xc3\\x55\\xc8\\xb4\\xed\\xcc\\x31\\x4f\\x75\\xb0\\x96\\\r\n\\x2e\\x93\\xae\\x9f\\x69\\x11\\xbe\\x52\\x77\\xe9\\x62\\x3c\\xfa\\xce\\x9c\\xd1\\\r\n\\x65\\xd0\\xef\\xbf\\xf3\\xff\\x00\\x6c\\x47\\x0e\\xca\\x7b\\x6c\\x3c\\x9b\\x62\\\r\n\\x86\\x1c\\x91\\xf3\\x7b\\xa2\\x15\\x00\\xff\\x00\\x11\\xd1\\x75\\xed\\x6f\\xe9\\\r\n\\x8e\\x29\\x51\\x24\\x6a\\x51\\x51\\xd8\\xbd\\x9c\\xc8\\x45\\xd6\\xc4\\x58\\xdc\\\r\n\\xd8\\x5b\\x5f\\x5b\\x6a\\x3d\\x71\\x0d\\x4b\\x93\\xca\\x8d\\xb2\\x06\\x20\\x86\\\r\n\\xbd\\xad\\xfc\\x47\\x36\\x9a\\x6b\\xdc\\xed\\xf3\\xc5\\x0c\\xcf\\x55\\x53\\x11\\\r\n\\x66\\x0c\\x10\\xe4\\x05\\x36\\x6f\\xf3\\x77\\xdc\\x0d\\xce\\x16\\x87\\x92\\x56\\\r\n\\x65\\x36\\x1a\\xb1\\xbe\\x97\\xdc\\xeb\\x84\\x61\\x24\\xf1\\x80\\x2d\\xca\\x46\\\r\n\\x36\\xf2\\xcd\\x65\\x05\\x7d\\x00\\x07\\xce\\xf8\\xe9\\x5b\\x06\\xee\\x6d\\xf5\\\r\n\\x3a\\xe2\\xb3\\x35\\x43\\x35\\x1a\\x9b\\x2b\\x95\\x2c\\xfb\\x85\\x87\\x5c\\xe3\\\r\n\\xd3\\x36\\xc2\\xfe\\x70\\xd2\\xa5\\x3a\\xac\\x68\\xa0\\x2a\\xe5\\x0a\\x83\\x70\\\r\n\\xbb\\x0f\\xd7\\x9b\\xe2\\xa5\\xd6\\x18\\xa4\\x9e\\x47\\xe9\\x45\\x2d\\x63\\xe1\\\r\n\\x01\\xdb\\xbe\\xbf\\x96\\x28\\x83\\xd4\\x42\\xd3\\xca\\x3f\\x7e\\xcd\\x33\\x5c\\\r\n\\xf7\\x93\\x33\\xa8\\x17\\xf4\\x28\\xbd\\xf7\\x1e\\xb8\\xa9\\x69\\x38\\x5f\\x11\\\r\n\\x49\\x81\\x2a\\x92\\x90\\xcc\\xa0\\x92\\x37\\xb4\\xa3\\x2f\\xf0\\xe9\\x7d\\x7b\\\r\n\\x13\\x86\\x6e\\x6f\\x0f\\x49\\xe1\\x21\\xd8\\x1e\\x62\\x5b\\xbd\\x94\\x39\\x5e\\\r\n\\x9f\\x24\\x5b\\x2f\\x71\\xeb\\x88\\x27\\x52\\x82\\x64\\xd5\\x64\\x01\\x81\\xd3\\\r\n\\x62\\xb9\\xac\\x77\\x1a\\x6d\\x6b\\xdf\\x36\\x9b\\xe9\\x8e\\x72\\x3d\\xd3\\x6b\\\r\n\\x6a\\x19\\x6c\\x6f\\xb1\\xfa\\x1f\\x90\\xb6\\x29\\xe6\\x25\\xad\\x61\\x7b\\xdb\\\r\n\\xd7\\x2f\\xe3\\x8d\\x73\\x6b\\xbe\\xf8\\xed\\xa7\\x8d\\x70\\xf2\\x00\\x9e\\x72\\\r\n\\xf6\\xf9\\x58\\x8c\\x67\\x79\\x91\\x82\\x28\\xb1\\xdc\\xb7\\x6e\\xda\\x7a\\xeb\\\r\n\\x8a\\xce\\x28\\x69\\xa4\\x92\\x29\\xd5\\xd9\\xa3\\xd2\\xc1\\xed\\x99\\x6d\\xfc\\\r\n\\x59\\x4f\\xd2\\xf7\\xd3\\x4d\\xf1\\x4e\\xd1\\xd5\\x01\\x34\\xfc\\x64\\xc4\\x89\\\r\n\\x54\\xcb\\xee\\xd2\\xda\\x22\\xa0\\xaa\\xb7\\xd8\\xb6\\x66\\xe6\\xb1\\x06\\xc4\\\r\n\\x64\\x0b\\xf0\\x92\\x6e\\x6c\\x6a\\x29\\x92\\x92\\x04\\x92\\x39\\x79\\xd9\\x80\\\r\n\\x62\\x79\\x99\\x85\\xef\\x66\\x37\\x17\\xdf\\x35\\x8f\\x6b\\x9c\\x70\\xe9\\x92\\\r\n\\xa5\\xe9\\x4a\\x2a\\xdd\\x15\\x97\\xfd\\x27\\x30\\x24\\xdf\\xe4\\x3b\\xf9\\xc5\\\r\n\\x7a\\x93\\x03\\xa8\\x3a\\x88\\xee\\x3e\\x63\\x51\\x6f\\xad\\xb1\\x13\\x66\\x08\\\r\n\\xf6\\xf8\\x95\\x4e\\xdf\\x7a\\xda\\xfe\\x7a\\xe3\\x83\\x42\\x58\\xeb\\xbe\\xbf\\\r\n\\xf3\\xfd\\xf1\\xed\\x3d\\x3b\\xbe\\x71\\x0f\\x55\\x9d\\x8d\\xbd\\x42\\x77\\xfe\\\r\n\\x43\\x12\\x4a\\x01\\x6b\\x96\\xbe\\x63\\x7d\\xee\\x2d\\xa6\\xa0\\xea\\x3f\\x1c\\\r\n\\x1b\\xc9\\x20\\x23\\xe1\\xd0\\x5f\\xfb\\xe2\\x1e\\x6a\\x54\\x99\\x59\\xcf\\x41\\\r\n\\x75\\x46\\xbe\\xdb\\xd8\\x29\\xf4\\x24\\x91\\xf9\\xe1\\xb3\\x7b\\xb4\\x51\\xa9\\\r\n\\xfb\\x46\\x6f\\xb4\\xcf\\x60\\x73\\x96\\xe8\\xd6\\xe6\\xc8\\x06\\x96\\x6e\\xf7\\\r\n\\xd0\\x6f\\x8e\\x1b\\x59\\x23\\xd5\\x39\\x9a\\x6c\\x8b\\x04\\x13\\x4d\\x98\\xbd\\\r\n\\xbf\\x72\\xb7\\x64\\x1b\\xdc\\x1d\\x6c\\x08\\xf9\\x78\\xc7\\x08\\xae\\x93\\x89\\\r\n\\xca\\x67\\xa9\\x00\\x24\\x7a\\xc0\\x81\\x40\\x0b\\xf7\\x6d\\x7b\\x5d\\xae\\x00\\\r\n\\xbd\\xf4\\xf1\\x61\\x6c\\x29\\x55\\x50\\xa6\\xd9\\x5b\\xf7\\x77\\x20\\x7a\\x95\\\r\n\\x3b\\x6a\\x35\\x3d\\xb1\\xc5\\x68\\x28\\x2b\\xe9\\xcc\\x35\\xa8\\x5c\\x36\\xb0\\\r\n\\x98\\x75\\x9d\\x1e\\xdf\\x14\\x7a\\xdb\\xd1\\x83\\x74\\x91\\xd3\\xbd\\xb1\\xc1\\\r\n\\x5a\\xb6\\x92\\xba\\xa3\\x85\\x4d\\x2b\\x2b\\x24\\x69\\x22\\xca\\xea\\x1a\\x49\\\r\n\\x62\\x1a\\x0b\\xde\\xfd\\x40\\x11\\xe4\\xda\\xf7\\x38\\x9e\\x86\\x3a\\xbb\\x4c\\\r\n\\xf2\\xcd\\xd6\\xb9\\x4a\\x89\\x6c\\x81\\x94\\x58\\x39\\x51\\xa6\\xa0\\x7c\\xbc\\\r\n\\x58\\xe2\\x1a\\x43\\x1c\\xa0\\x19\\x26\\x4c\\xc6\\xea\\xc2\\x53\\x65\\x23\\xee\\\r\n\\x10\\x49\\x5b\\xf8\\x36\\xd7\\x06\\x4a\\x88\\x7d\\xe5\\x1a\\xd5\\x11\\x47\\x49\\\r\n\\x24\\x8a\\x08\\xc8\\xf2\\xc8\\x1b\\x3c\\x71\\x3e\\x5d\\x08\\xe8\\xfe\\x10\\x6d\\\r\n\\xf4\\xb0\\x9a\\xb1\\xdc\\xd4\\x57\\x54\\x18\\xc3\\x09\\x65\\x84\\x06\\xfb\\x28\\\r\n\\x98\\x2b\\x3c\\x51\\x18\\xb6\\xc8\\xe4\\x04\\xb1\\xd3\\xe5\\xbe\\x38\\x1c\\xc8\\\r\n\\x94\\x89\\x3c\\x93\\xc7\\x4b\\x2c\\x3c\\xcb\\x4c\\xce\\xa8\\x2d\\xab\\x64\\x7b\\\r\n\\xb0\\xce\\x84\\xb1\\xba\\x9b\\xfa\\x0b\\xe2\\xbf\\x8b\\x53\\xf1\\xbe\\x36\\xab\\\r\n\\x23\\x72\\xf8\\x64\\x11\\x94\\x99\\x4b\\xb2\\x47\\x54\\xf1\\x33\\x49\\x66\\x60\\\r\n\\x09\\x31\\xbc\\x97\\xc9\\x65\\x63\\x93\\x2d\\xc0\\xed\\xfb\\x5e\\x9a\\x66\\x67\\\r\n\\x54\\x44\\x8a\\x14\\xe5\\x47\\x1a\\xae\\x65\\x4c\\xb7\\x19\\x82\\xe7\\x43\\xb5\\\r\n\\xc0\\xb0\\x37\\xf1\\xae\\x2b\\x67\\x9d\\xaa\\x92\\xa9\\x81\\x86\\x37\\x4e\\x5a\\\r\n\\xba\\xa8\\x56\\x20\\x2e\\xb7\\x03\\x6b\\xa9\\x1d\\xcd\\xed\\xf8\\xf0\\xca\\x39\\\r\n\\xdd\\x8c\\xd0\\x34\\x31\\x2b\\x0c\\x9c\\xf9\\x19\\x44\\x97\\x23\\x5e\\x5a\\xe4\\\r\n\\x66\\x07\\xcb\\x74\\x8e\\xd7\\xdf\\x05\\x6b\\x6b\\x2a\\xde\\x9d\\xa5\\x96\\xa5\\\r\n\\x21\\x45\\xe6\\xbc\\x4c\\xca\\x1d\\x17\\x40\\x3d\\x41\\xf5\\xd0\\xeb\\x6b\\xe2\\\r\n\\x9a\\x85\\x9b\\x2b\\x32\\x10\\xa0\\x66\\xfb\\x57\\x62\\x4a\\x5e\\xd9\\x15\\x45\\\r\n\\xb2\\xe9\\x73\\x61\\xb9\\x27\\x62\\x70\\x61\\xb1\\x20\\x2c\\x76\\x04\\x81\\xd5\\\r\n\\xdb\\xff\\x00\\xf2\\x63\\x81\\xc5\\x78\\x0d\\x49\\xcd\\x24\\xb2\\x4a\\x43\\xf8\\\r\n\\x5b\\x5b\\xfb\\xee\\x7c\\x7a\\x61\\xf9\\x94\\xd5\\x19\\xd8\\x83\\x7b\\x11\\x72\\\r\n\\x4f\\x6e\\xa0\\x7f\\x2d\\xbc\\x62\\xa5\\x79\\xce\\xb2\\xab\\x08\\x89\\x01\\x5b\\\r\n\\x4d\\xed\\xb1\\xfe\\x87\\x14\\xed\\x4f\\x4e\\x65\\x13\\xce\\xb9\\xc9\\x05\\x57\\\r\n\\x36\\x8c\\x35\\x06\\xd9\\xb4\\xed\\xb5\\xef\\x8e\\x35\\x4e\\x2a\\x21\\x8c\\xc3\\\r\n\\x02\\x8e\\x60\\x20\\x4a\\x2f\\x70\\xea\\x34\\x1a\\x1f\\xbc\\x3e\\x64\\xda\\xdd\\\r\n\\xb1\\x0d\\x39\\x5a\\x59\\x79\\xc0\\xe8\\x00\\x17\\xbd\\xee\\x76\\xd7\\xd3\\xee\\\r\n\\xf7\\xdb\\x6c\\x1a\\x43\\x11\\xd4\\xfc\\x28\\x33\\x5f\\x5f\\x03\\x53\\x7f\\xd5\\\r\n\\xb0\\xe1\\x92\\x41\\xe3\\x71\\xa5\\xbb\\x62\\x96\\x60\\x91\\x8f\\x0d\\xf1\\x7e\\\r\n\\xbe\\x98\\xa9\\x9e\\x09\\x61\\x68\\x6c\\x03\\xe4\\x2b\\x7f\\x22\\xdf\\x87\\xcb\\\r\n\\x7d\\x71\\x2a\\x22\\xbf\\xd9\\xae\\x50\\x96\\x57\\x1e\\x58\\x77\\xd7\\x60\\x6d\\\r\n\\x7b\\x6c\\x7d\\x31\\xc0\\x0a\\x86\\x46\\xde\\xe7\\xb6\\xbf\\xad\\xbb\\x69\\xeb\\\r\n\\x81\\x26\\x68\\xd4\\x6f\\xa0\\xfd\\x5b\\x12\\x00\\x8d\\x98\\x03\\x71\\xa8\\xf9\\\r\n\\xff\\x00\\xbe\\x25\\xac\\x40\\x20\\x76\\x71\\x6c\\xc4\\xb8\\xef\\xa0\\xb5\\x88\\\r\n\\x1b\\xeb\\xa7\\xd7\\x15\\x72\\xb5\\x33\\xd2\\x55\\x48\\xc5\\x56\\xa6\\x65\\xa7\\\r\n\\x94\\x6c\\x23\\x13\\x7e\\xec\\x7c\\xc1\\xd0\\xdb\\xc9\\xdb\\x15\\x8e\\x63\\x20\\\r\n\\xa2\\xb3\\x31\\x03\\x28\\x02\\xe4\\xdc\\x93\\x61\\xd3\\xd3\\xdc\\x9b\\x82\\x34\\\r\n\\x24\\xea\\x6d\\x8e\\x3b\\xc4\\x27\\x92\\x9a\\x93\\x87\\x75\\x2d\\x4f\\x13\\xa9\\\r\n\\x4a\\x76\\xb6\\xeb\\x4f\\xcc\\xbc\\xcd\\x97\\xd4\\x58\\x7c\\x8e\\x23\\x85\\x23\\\r\n\\x8d\\x63\\xca\\x7a\\x55\\x54\\x0d\\xad\\x60\\x2f\\xff\\x00\\xfa\\xea\\x4f\\xca\\\r\n\\xf6\\xb8\\x3e\\xd3\\xd1\\x2c\\x94\\x8b\\x3c\\x49\\xac\\x2f\\xd6\\x7b\\xd9\\xb7\\\r\n\\x3e\\xa0\\x13\\x6f\\x5b\\x69\\xe9\\xec\\xc7\\x17\\x25\\x5a\\x82\\x77\\x07\\x50\\\r\n\\x54\\x36\\xd6\\xb5\\xb4\\xf1\\xf8\\x9b\\xfc\\xb1\\x4a\\xd9\\x66\\xa8\\xa1\\x27\\\r\n\\xe0\\x90\\xd4\\x43\\xae\\x9e\\xed\\x33\\x5c\\x01\\x6d\\x4f\\x2e\\x4b\\x8d\\x8e\\\r\n\\xe3\\x51\\x6b\\x62\\x64\\xf7\\x7c\\xa4\\x1d\\x1b\\xe2\\xf9\\xb0\\xfe\\x9e\\x7f\\\r\n\\xe3\\x14\\x25\\xb9\\xba\\xea\\x3b\\x1f\\x53\\xae\\x33\\x1c\\xda\\xea\\x3b\\x7f\\\r\n\\xcf\\x8f\\x4d\\x87\\x6c\\x47\\x7d\\x7b\\x8f\\x17\\xc5\\x6d\\x4c\\x54\\x80\\x16\\\r\n\\x1d\\x2f\\x70\\xdf\\xe5\\x16\\xf8\\xbc\\x90\\x3b\\xfc\\xb7\\xc1\\xae\\x28\\xf7\\\r\n\\x46\\xf8\\x16\\xf6\\xfb\\xa5\\x4e\\xb7\\xed\\xe4\\xdb\\xe9\\x8e\\x35\\x48\\xdc\\\r\n\\x42\\x8d\\xab\\x69\\xed\\xcf\\x89\\x4b\\x32\\xd8\\x9e\\x6a\\x2b\\x00\\x35\\xdf\\\r\n\\x41\\x7b\\xdb\\x71\\x7f\\x18\\x63\\x35\\x45\\x4a\\x5a\\x30\\x1d\\x9c\\x69\\x18\\\r\n\\xc8\\x14\\x0d\\x49\\xf0\\x2c\\x16\\xe4\\x92\\x00\\xd7\\x5c\\x53\\xd6\\xc5\\xad\\\r\n\\x34\\x6a\\xf2\\xa2\\x86\\x44\\xb0\\xea\\x62\\xd6\\x2d\\x9a\\xf7\\x26\\xef\\xd5\\\r\n\\xe8\\x35\\xc7\\x07\\xa6\\x11\\x9e\\x61\\x8d\\xe3\\xbf\\x49\\x57\\xb5\\xac\\x4d\\\r\n\\xf3\\x0b\\x13\\x6d\\x7b\\xe8\\x48\\x1e\\xb6\\x12\\xb0\\x03\\xab\\xf4\\x2d\\x6b\\\r\n\\x7e\\x18\\x86\\xc9\\xa3\\x69\\xcb\\x6b\\xa8\\x3f\\xc0\\xda\\x8f\\xc3\\x51\\xf2\\\r\n\\x3f\\x4c\\x70\\xaa\\xa5\\x8c\\xb3\\x76\\xcb\\xfd\\x71\\xed\\x0d\\x4c\\xed\\x0d\\\r\n\\x53\\xd2\\xa0\\xcf\\xf1\\x97\\xce\\x17\\x20\\x1a\\x03\\xd4\\x2c\\xc7\\xbd\\x8e\\\r\n\\xd7\\xdb\\x05\\xe4\\x79\\xa4\\x6a\\x85\\x78\\xe5\\x91\\xaf\\x99\\xae\\x03\\x66\\\r\n\\x24\\xdc\\xaf\\x8f\\x16\\xf3\\x88\\x98\\x83\\x66\\x20\\x29\\x39\\x9b\\x4f\\x1b\\\r\n\\x5b\\x4f\\x9e\\xfb\\xdf\\x01\\x0b\\xf4\\xdf\\x42\\xc5\\x87\\x6d\\xfe\\x5a\\x63\\\r\n\\x96\\xd9\\x4a\\xb2\\x90\\x2f\\xa3\\x93\\xf0\\x9b\\xfc\\x76\\xdc\\xfd\\x36\\xb8\\\r\n\\xd7\\x10\\xc2\\xa3\\x88\\x3d\\x3b\\x4a\\xaf\\x99\\x2e\\x19\\x1b\\xa1\\x83\\xdb\\\r\n\\x32\\xf6\\xd7\\xc8\\xde\\xc6\\xe6\\xf8\\xe1\\x10\\x47\\x10\\xfb\\x31\\x65\\x5d\\\r\n\\x6f\\x6f\\x50\\x2f\\x60\\x34\\xbe\\x24\\xc9\\x33\\x7b\\xb9\\x17\\x24\\xe6\\x8f\\\r\n\\x5d\\x6c\\x0e\\xfb\\x8d\\xbf\\xae\\x16\\x2a\\x79\\x63\\x60\\x4b\\x47\\x34\\x7a\\\r\n\\x30\\x0d\\x62\\xbb\\xdb\\xbe\\xc4\\xea\\x3c\\xf8\\xc7\\x18\\xa2\\x7a\\x5e\\x23\\\r\n\\xc3\\xea\\xe2\\xa8\\x96\\xf2\\xf3\\x29\\xdd\\x89\\xfd\\xd8\\xb5\\xd7\\x55\\xd7\\\r\n\\x29\\x66\\x37\\xbf\\xa9\\xc5\\x32\\xcc\\x88\\xf0\\x35\\x74\\x72\\xf3\\x23\\xcb\\\r\n\\x0f\\x48\\x16\\x91\\x46\\x97\\xd7\\x5b\\x8b\\x6d\\xae\\xe7\\xbe\\x38\\xa5\\x7c\\\r\n\\xb4\\xb5\\x14\\x4d\\x51\\x24\\x25\\x39\\xc6\\x29\\x84\\x2c\\xc0\\x28\\x91\\x48\\\r\n\\x0c\\xf7\\x1a\\x65\\x65\\x04\\x10\\x09\\xb9\\xf8\\x7c\\x70\\x9a\\xa9\\x2a\\xb8\\\r\n\\x99\\x8a\\x50\\xd2\\x81\\x47\\x18\\x24\\x0c\\xdc\\xc3\\x2b\\xb3\\x97\\x62\\x2c\\\r\n\\x9a\\x26\\x54\\x24\\x5c\\x6f\\xad\\x8e\\x3d\\xa3\\xa4\\x0b\\x4c\\x44\\x34\\x8a\\\r\n\\xa3\\x26\\x5c\\xd9\\x4f\\x48\\x5d\\x82\\x8d\\x85\\xf5\\xf3\\xa5\\xed\\xe7\\x15\\\r\n\\x33\\xc9\\x53\\x37\\xec\\xda\\x6c\\xa5\\xe5\\x75\\xcd\\x2f\\x53\\x18\\x44\\x7b\\\r\n\\x85\\x6d\\x82\\x01\\xfb\\xc0\\x07\\x51\\x00\\x6b\\x8a\\xd7\\x8b\\x87\\xc5\\x0c\\\r\n\\x50\\x94\\x99\\xcd\\xdb\\x3f\\x4d\\xba\\x08\\x04\\x68\\x34\\xb8\\xd3\\x5f\\x84\\\r\n\\x5b\\xe5\\x8a\\x6f\\xf1\\x43\\x9e\\x99\\x22\\x9d\\x63\\x59\\x11\\x7a\\xb9\\x6d\\\r\n\\x73\\xf0\\xb0\\xb5\\xac\\x76\\x56\\xb7\\x49\\x37\\xef\\x8a\\xea\\x93\\x5a\\x8c\\\r\n\\xc0\\x2d\\x3b\\x52\\x2a\\x99\\x23\\x63\\x72\\xd2\\xe7\\x55\\x6c\\x97\\xf8\\xc7\\\r\n\\x71\\x63\\x70\\x03\\x5f\\x56\\x03\\x10\\xd4\\xd1\\xfb\\x8d\\x37\\x22\\x56\\x35\\\r\n\\x6c\\x9f\\x6c\\xbf\\x0a\\x02\\xb7\\x0c\\x03\\x7f\\x11\\x23\\x4b\\x6f\\x7f\\x23\\\r\n\\x5e\\x13\\xc5\\x15\\x0f\\x10\\x95\\x15\\x40\\x92\\xb2\\x21\\x6e\\xeb\\x02\\xa9\\\r\n\\x5c\\x9a\\x9b\\xd8\\xeb\\xe3\\x5c\\x54\\x71\\x80\\x25\\xe5\\x47\\x6e\\x67\\x56\\\r\n\\x55\\xcd\\x95\\x22\\x57\\x3a\\x48\\xe4\\x6b\\x70\\xbd\\x8f\\xf5\\xc7\\xbb\\x93\\\r\n\\xaf\\xed\\x48\\xb5\\xd7\\x48\\xc5\\xb5\\xf1\\x76\\x06\\xdf\\x30\\x0f\\x91\\x8a\\\r\n\\x09\\xe3\\xa4\\xa4\\x68\\x14\\x75\\x17\\xcc\\xa7\\x6f\\x9d\\xf1\\x3d\\x4b\\xca\\\r\n\\xea\\xf3\\x1c\\xe4\\x58\\xdf\\xf9\\x8f\\x16\\x23\\xd3\\x7c\\x0e\\x29\\xc3\\xa4\\\r\n\\xa6\\xfb\\x48\\x58\\x18\\xb4\\x62\\x35\\xb9\\xdf\\xcf\\xa7\\x9c\\x57\\xf1\\x25\\\r\n\\x35\\xd2\\x3c\\x59\\xd6\\x2c\\xcd\\x65\\xec\\x07\\xa5\\xf4\\x16\\x1f\\x9e\\x38\\\r\n\\x70\\x86\\xbf\\x84\\xd1\\x95\\x6b\\xaf\\x26\\x37\\xcd\\xa8\\x39\\xd4\\x0c\\xdf\\\r\n\\x50\\x73\\x03\\xeb\\x8a\\xda\\xba\\x98\\x6b\\xea\\xa8\\x26\\xeb\\x8e\\x67\\x4f\\\r\n\\x72\\x6c\\xaa\\xba\\xb3\\xde\\xce\\xc2\\xc3\\x25\\xbb\\x95\\x24\\x11\\xb9\\xbe\\\r\n\\x1a\\x9e\\x54\\xcc\\xf2\\xcd\\x14\\x8f\\x95\\x11\\xf9\\x47\\x32\\x66\\x16\\x0c\\\r\n\\x3f\\xe7\\x12\\x3c\\x66\\xa7\\x27\\xdd\\x5c\\xbd\\xf5\\x04\\xdb\\xb7\\xfb\\xe1\\\r\n\\x39\\x65\\x18\\x21\\xbd\\xad\\xe0\\x5b\\x4d\\x7f\\x3c\\x4b\\x13\\x16\\xfe\\x98\\\r\n\\xaa\\x8f\\x2c\\x80\\x79\\xd7\\x4f\\xa6\\x38\\x59\\x2b\\x22\\x2a\\xdc\\x2d\\xfc\\\r\n\\x6f\\xfa\\xf9\\xe2\\x9c\\xb0\\x02\\xe7\\x61\\xfa\\xfd\\x1c\\x4e\\xd7\\x53\\xf2\\\r\n\\xfe\\x87\\x1e\\xf9\\x1a\\xd5\\xa4\\x72\\xb7\\x4a\\xb1\\x72\\x3d\\x35\\x22\\xe3\\\r\n\\x4f\\x4f\\xe7\\x8f\\x68\\x15\\xaa\\x38\\x3d\\x4e\\x42\\x73\\x47\\x10\\xaa\\x42\\\r\n\\x06\\xaa\\xd0\\x95\\x95\\x75\\xda\\xf6\\x53\\xe7\\x5b\\x76\\xc5\\x13\\xfb\\xcc\\\r\n\\x31\\x55\\x31\\x2e\\x25\\x81\\x5d\\x73\\x1b\\xdb\\x3a\\xde\\xd7\\x1a\\x6e\\x4a\\\r\n\\xeb\\xb1\\xd2\\xc0\\x62\\x86\\x63\\xc5\\x7d\\xaa\\x96\\x45\\x60\\xd4\\xfc\\x2d\\\r\n\\x0c\\x11\\x31\\xbe\\x8f\\xf0\\x39\\x1d\\x8f\\x59\\x36\\xff\\x00\\x4f\\xa6\\x2a\\\r\n\\x11\\xe3\\x5c\\xf6\\x6b\\xb5\\x80\\xb5\\x94\\x1b\\x1d\\xf4\\x1e\\x6c\\x3e\\xb8\\\r\n\\xac\\x8d\\xa7\\xa4\\xa9\\xa5\\x36\\xb9\\x89\\xbd\\x73\\x31\\xcd\\x7d\\x7e\\xee\\\r\n\\x52\\x06\\x9a\\x6b\\xb6\\x23\\x94\\xf0\\xfa\\xb8\\xa6\\xee\\xaf\\x91\\xad\\xb7\\\r\n\\x49\\xb7\\x7f\\x37\\xc5\\x4b\\x94\\x8e\\x93\\x8b\\xc7\\x72\\x21\\x65\\x49\\x40\\\r\n\\xd4\\x7b\\xbc\\xc1\\x51\\xaf\\xe9\\x1b\\xeb\\xb0\\x00\\x9b\\xe1\\xdc\\x54\\x3a\\\r\n\\xc4\\x99\\x64\\x93\\x97\\xcf\\x50\\x3a\\xae\\xaa\\xc8\\xa7\\xbf\\x4f\\xc7\\x71\\\r\n\\x71\\xd5\\x95\\xbc\\x62\\x9e\\x30\\x8a\\x01\\x16\\x3b\\x9b\\xe8\\x7e\\x5f\\xfe\\\r\n\\x9c\\xc1\\x1f\\x57\\x6d\\x8e\\x9e\\x74\\xbf\\xa5\\xbf\\x3b\\xe3\\x88\\xd2\\xa4\\\r\n\\xf1\\x48\\x18\\x66\\xfb\\x36\\x3f\\x8a\\xf6\\xdb\\xb8\\xbe\\x1a\\xb6\\xa6\\x92\\\r\n\\xae\\x5b\\x85\\x98\\xdc\\x00\\x92\\x16\\xc9\\xcb\\x4d\\x86\\x8c\\x36\\x07\\x5f\\\r\n\\x95\\xce\\x38\\x5c\\x15\\x13\\xd1\\xe7\\xf7\\xa5\\x8f\\x3a\\xfd\\xc5\\x2e\\x22\\\r\n\\x17\\x62\\xb9\\x41\\x3a\\xef\\x6d\\x37\\xd3\\x5c\\x71\\x6e\\x1b\\x51\\x4e\\xd2\\\r\n\\xc9\\x24\\x70\\xb2\\xcc\\x39\\x79\\xe1\\xfb\\x35\\x60\\x09\\x3d\\x5a\\x9c\\x8e\\\r\n\\x6d\\x76\\x17\\x5b\\xef\\xa8\\xc7\\xb2\\xa5\\x79\\xb2\\x48\\x56\\xe0\\x68\\xa6\\\r\n\\xf7\\x0a\\x73\\x01\\x94\\x03\\xad\\xfd\\x70\\x25\\x5e\\x5a\\xb3\\x07\\x07\\xbf\\\r\n\\x47\\x47\\xe2\\x35\\xd7\\x7f\\x1e\\x31\\x3b\\xaf\\x2c\\x29\\x24\\x31\\xf8\\x0e\\\r\n\\xc4\\xfc\\xfe\\x87\\xc6\\x23\\x19\\xf9\\x64\\x9f\\xbb\\xd4\\xdf\\x43\\xe3\\x14\\\r\n\\x50\\x03\\x47\\x34\\xd6\\x5f\\xb3\\x56\\xbd\\xc6\\xfa\\x5f\\xfa\\x63\\x8f\\x56\\\r\n\\xfb\\xc2\\x4f\\x04\\x08\\x09\\xdc\\x3a\\xdc\\x10\\x43\\x6d\\xa1\\xdb\\x43\\xbd\\\r\n\\xff\\x00\\xb4\\x5c\\x3e\\x2a\\x8e\\x1d\\x4a\\xd2\\x09\\x56\\x52\\x7a\\xc9\\x96\\\r\n\\xe0\\x34\\x64\\x2e\\x60\\xae\\x34\\xcd\\x9b\\xb6\\x9d\\x86\\xc0\\x61\\xf8\\x6f\\\r\n\\x29\\xcd\\x9a\\xea\\x33\\x05\\x2c\\x2c\\x58\\x8d\\x3c\\x5b\\xf5\\xdf\\x16\\x08\\\r\n\\xab\\xa5\\x88\\xbd\\xee\\x6d\\x7d\\x4e\\xb6\\xf1\\xb8\\xd3\\xf2\\xc5\\x43\\x29\\\r\n\\x08\\x43\\xdc\\xe5\\x39\\xf7\\x5c\\xba\\xdf\\x2e\\xf6\\x6d\\x3b\\xaf\\x9f\\x9e\\\r\n\\x22\\x5c\\x93\\x09\\xc3\\x6a\\x8e\\x0e\\x83\\x52\\x0d\\xb3\\x01\\xf2\\x16\\xfa\\\r\n\\xe2\\x2e\\x23\\x33\\x44\\x23\\x1b\\x7f\\x97\\x41\\x62\\x07\\xe3\\xa8\\xd4\\x1e\\\r\n\\xfe\\x30\\xd5\\x75\\x4b\\x24\\x7c\\xbc\\xf7\\x5d\\x43\\x6a\\x75\\xbd\\x88\\x3f\\\r\n\\x97\\xcf\\x14\\x9e\\xf9\\x52\\xce\\xf5\\x2e\\x43\\x36\\xb1\\xb2\\x92\\xb9\\x4d\\\r\n\\xad\\x94\\xdb\\xe2\\x07\\xc1\\xbd\\xbb\\x63\\x8a\\x53\\x49\\x60\\x64\\x72\\x5a\\\r\n\\xe3\\x5e\\xab\\xbe\\xb6\\x17\\xd7\\x40\\x9b\\xe9\\xae\\xf8\\xa2\\xa2\\x1e\\xec\\\r\n\\x92\\x3c\\xc5\\xd8\\x1c\\xf9\\x90\\x65\\xb5\\xb5\\x01\\x48\\xb1\\xc8\\x3e\\x7a\\\r\n\\xeb\\xdf\\x1e\\xd0\\xf0\\xa7\\x9a\\x8a\\xa2\\xbe\\x26\\x42\\xb0\\xfd\\xb0\\x16\\\r\n\\x7c\\xe7\\x26\\x5c\\xf6\\x3b\\x69\\xd4\\x6d\\xda\\xc7\\x5c\\x7b\\x3b\\xcc\\x96\\\r\n\\xae\\x0a\\xa8\\xf3\\x95\\xf7\\x4a\\x63\\x76\\x37\\xbe\\x7d\\x24\\x4f\\x94\\x6e\\\r\n\\x4d\\xbf\\xca\\x3d\\x2d\\x8f\\x6b\\xf8\\xa4\\xb1\\x53\\x35\\x3c\\x40\\xb4\\xb3\\\r\n\\x29\\x40\\x46\\xac\\x05\\x8e\\x8b\\xa1\\xd4\\xdf\\xd2\\xc2\\xfe\\x31\\x0d\\x4c\\\r\n\\xf4\\x25\\x84\\x24\\x47\\x50\\xe5\\x84\\x8e\\xea\\xa5\\xec\\x76\\x45\\x66\\xda\\\r\n\\xd6\\x0d\\x61\\xa1\\xdc\\xec\\x30\\x09\\x76\\x31\\xcb\\x98\\xc9\\x73\\x22\\x93\\\r\n\\xa0\\x60\\xdf\\x15\\xef\\xf0\\xeb\\x6f\\x4d\\xfd\\x31\\x41\\x34\\xf4\\x48\\x82\\\r\n\\x9c\\x66\\x9a\\xa1\\x8c\\x60\\x3f\\x51\\x58\\x93\\x47\\xd0\\x8d\\x73\\x92\\x15\\\r\n\\x59\\x76\\x01\\xb5\\xf0\\x38\\x5e\\x78\\x52\\xa2\\x44\\x41\\x96\\x38\\xe2\\x9a\\\r\n\\x5d\\x08\\x91\\xe5\\xd0\\xad\\x87\\xc3\\x90\\x11\\x98\\xf9\\xb7\\x6c\\x64\\x92\\\r\n\\x95\\xe5\\x04\\x11\\xee\\xf2\\x1c\\xb6\\xd0\\xe4\\x6d\\x51\\xc2\\x9b\\x68\\xc0\\\r\n\\x6e\\x75\\xea\\xb8\\xdf\\x14\\x06\\xc2\\x6c\\x80\\x5d\\xa4\\x16\\xd6\\xd6\\xb6\\\r\n\\xb9\\xcf\\xcb\\xeb\\x8a\\x88\\xf9\\x71\\x3b\\xae\\x6c\\xc5\\x3a\\xa5\\x26\\xe5\\\r\n\\x98\\xdb\\xf2\\x1f\\x3e\\xe7\\xbe\\x23\\xa8\\x93\\x96\\x96\\xca\\x7a\\x17\\x5e\\\r\n\\xad\\x74\\x1e\\xb8\\x86\\xad\\xf3\\x2a\\xb8\\x65\\x06\\xfa\\xea\\x7c\\x9f\\x18\\\r\n\\xa4\\x96\\x9c\\xe4\\x7a\\xd9\\x39\\x48\\x8a\\xd6\\xff\\x00\\x35\\xbe\\x5a\\x9b\\\r\n\\x8e\\xdf\\xcf\\x15\\x95\\x94\\xb2\\xf0\\xee\\x45\\x02\\x02\\xd2\\xe6\\x42\\x48\\\r\n\\x51\\x92\\xdf\\x7b\\xce\\xba\\x9b\\x8f\\x96\\xf8\\xa8\\xa5\\x1a\\xdd\\x48\\x66\\\r\n\\x07\\x35\\xb5\\xb0\\xd8\\x6f\\x7b\\x76\\xfa\\x9d\\x31\\xec\\xcd\\x6b\\xc4\\xa2\\\r\n\\x95\\xaa\\x1c\\x22\\x15\\x31\\xa6\\x63\\x65\\xd7\\x51\\x6f\\xf7\\xdf\\x1e\\xd4\\\r\n\\x65\\x13\\xd3\\xbc\\x2b\\x13\\xdd\\x35\\xbc\\x60\\x31\\x20\\xdc\\x5d\\xc7\\x59\\\r\n\\xbe\\x63\\xf4\\xbe\\xb8\\xe1\\x11\\xcf\\x79\\xaa\\x19\\x88\\xbb\\x59\\x63\\x17\\\r\n\\xb0\\x17\\x26\\xd6\\xf4\\xd0\\x7f\\x5c\\x4e\\xa7\\xde\\x65\\x65\\xbf\\x6b\\xea\\\r\n\\x34\\x60\\xa3\\x61\\xe3\\x11\\x4a\\xe8\\x81\\x40\\xf8\\xbe\\x2b\\x77\\xfc\\xf0\\\r\n\\xc7\\x43\\x7e\\xe3\\x7e\\xd8\\x96\\x19\\x0b\\x5b\\x7d\\xac\\x46\\xa2\\xde\\x9f\\\r\n\\xf3\\x88\\x10\\xc3\\x3a\\x07\\xd2\\xe7\\xa6\\xdb\\x11\\x6f\\xc8\\xfa\\x62\\x26\\\r\n\\x5b\\x01\\x7d\\x4a\\x29\\x3f\\xab\\x61\\xec\\x2e\\xb7\\xc7\\x1e\\x73\\x43\\xc4\\\r\n\\x51\\xc8\\x3c\\xb7\\x60\\xf7\\xda\\xfa\\x80\\xc2\\xe3\\xf9\\x78\\xc4\\x12\\x41\\\r\n\\x55\\x40\\xf5\\x0d\\xd5\\x4d\\xee\\xad\\x9a\\x30\\x47\\x5b\\x04\\x23\\x96\\x09\\\r\n\\xec\\x40\\x22\\xff\\x00\\xe6\\x27\\x5d\\xb1\\x47\\xc4\\xe1\\x5f\\x66\\xde\\xa3\\\r\n\\x2c\\x74\\xc5\\x63\\xa8\\x86\\x35\\x8c\\xf4\\x41\\xf6\\x8c\\x90\\xad\\xc9\\x2d\\\r\n\\x7e\\xa1\\xbf\\x53\\x5a\\xe6\\xdd\\xfd\\x92\\xa0\\x6a\\x2e\\x1b\\x2d\\x55\\x40\\\r\n\\x06\\x7a\\xa9\\xb3\\x92\\x37\\xca\\xba\\x02\\x2e\\x06\\x60\\x5d\\x99\\x86\\x83\\\r\n\\x43\\x7d\\x2c\\x71\\x08\\xa8\\xca\\x16\\x56\\xce\\x8a\\x06\\x40\\x03\\x7c\\x43\\\r\n\\x31\\x05\\xae\\x48\\xdb\\x2e\\x98\\xcb\\x12\\xab\\x83\\xb9\\x06\\xff\\x00\\x9f\\\r\n\\xae\\x3d\\xa2\\xa7\\x58\\xeb\\xaa\\x95\\x57\\x42\\xc1\\xc6\\xe3\\xe2\\xb1\\xf4\\\r\n\\x3f\\x3f\\xf8\\xc5\\x0d\\x54\\xb2\\xf0\\xc4\\x26\\xcf\\x04\\x4a\\xf4\\xd2\\xe4\\\r\n\\xcd\\xce\\x89\\x25\\xcb\\x79\\x32\\x93\\x91\\x80\\x2b\\xd4\\x74\\xb0\\xb7\\xfa\\\r\n\\x97\\x86\\x3c\\xb4\\x4d\\xce\\xac\\xbc\\x96\\x5e\\x5d\\x3e\\xda\\xc7\\xf7\\x0a\\\r\n\\xb5\\xbe\\x13\\x7d\\x6f\\xae\\xda\\x0d\\x6f\\x4f\\x52\\x65\\x21\\x96\\xe0\\x78\\\r\n\\xf1\\xe3\\xc1\\xf5\\xfa\\xe2\\x59\\x5b\\x96\\x7b\\x12\\x0e\\xba\\x6e\\x3d\\x7b\\\r\n\\x62\\x9e\\x66\\x92\\x56\\x3e\\x53\\x96\\xde\\x18\\x5e\\xe1\\xad\\xb5\\xd7\\xce\\\r\n\\xfa\\x5f\\x12\\x57\\x8b\\x3a\\x12\\x6e\\x8b\\x94\\x8e\\xf7\\x23\\x4f\\xed\\x8a\\\r\n\\xe5\\x79\\xab\\xe3\\x55\\x45\\x0b\\x94\\x0c\\xee\\x3e\\xc8\\x28\\x6b\\xb3\\x49\\\r\n\\xa1\\xba\\x8e\\xf7\\x07\\x30\\xd2\\xc4\\x60\\x7b\\x41\\x25\\x3d\\x44\\x30\\x43\\\r\n\\xd3\\x14\\x32\\x38\\xa9\\x71\\xa7\\x39\\xec\\x14\\xc8\\x55\\x74\\x50\\x2c\\x59\\\r\n\\x54\\x1f\\x9e\\x83\\x15\\xdc\\x62\\x9a\\xba\\x9f\\x91\\x1e\\x6b\\xb1\\x21\\xb3\\\r\n\\x58\\x5d\\xbc\\x81\\xdb\\xb8\\x03\\x5d\\x89\\xee\\x31\\xec\\xdf\\x0b\\x8a\\x0a\\\r\n\\x6e\\x65\\xc3\\x67\\x37\\x00\\xee\\xba\\xde\\xff\\x00\\xcb\\x1c\\xc4\\x8d\\x42\\\r\n\\xdf\\x7c\\x54\\x90\\x55\\x1a\\xfd\\xfd\\x0d\\xb4\\xd7\\xfb\\xe1\\x73\\x3a\\x2a\\\r\n\\xc7\\xa2\\xb6\\xac\\x7d\\x6f\\xa0\\xb5\\xb1\\x5d\\x5d\\x0d\\x07\\x01\\x95\\x10\\\r\n\\xfd\\xb3\\x21\\x24\\xdc\\xf8\\xfe\\x84\\x9c\\x50\\xc2\\xd3\\x47\\x2c\\xae\\x79\\\r\n\\x4a\\xe6\\xe1\\x9b\\x52\\xc2\\xfd\\x79\\x36\\xbf\\xf7\\xf9\\x62\\x9e\\x2a\\x9a\\\r\n\\xd9\\x15\\x23\\x5f\\x77\\x86\\x07\\x75\\xe6\\xc8\\x09\\x2e\\xc8\\x6e\\x58\\x47\\\r\n\\xb0\\xef\\xab\\x1d\\xfe\\x1d\\xb1\\x3f\\x0e\\x48\\x00\\x96\\x47\\x6a\\x85\\xb8\\\r\n\\x52\\xf2\\x6a\\x62\\xbd\\xce\\x64\\x03\\xa4\\x2e\\xbf\\x08\\x5b\\xaf\\x6b\\xef\\\r\n\\x8e\\x44\\x73\\xc3\\x2d\\x80\\x69\\x29\\x41\\x2e\\xda\\x14\\x29\\x7b\\x06\\xef\\\r\n\\x72\\x43\\x01\\xa6\\xa0\\xea\\x45\\xb7\\x92\\x15\\x92\\xcc\\xb6\\xf5\\xff\\x00\\\r\n\\x45\\xcf\\x7f\\x38\\xf7\\x68\\xd9\\x9f\\xa6\\xea\\x76\\xdf\\x4f\\xc3\\xe7\\xf9\\\r\n\\x62\\x85\\x42\\x9b\\x36\\x80\\x58\\x79\\xd4\\x0e\\xfd\\xf0\\xed\\x1c\\x2d\\x11\\\r\n\\x3b\\x30\\xcb\\x73\\xe4\\x5b\\xf5\\xfe\\xd8\\xa6\\x96\\x2c\\x8a\\x17\\xc6\\x9f\\\r\n\\x2d\\x77\\xd3\\xfb\\x63\\xda\\x7a\\xbe\\x54\\xd0\\xa5\\x31\\xbc\\x85\\x7a\\xd6\\\r\n\\xfd\\x16\\xcd\\xa8\\xfc\\x37\\xfd\\x5f\\x83\\xa1\\x9b\\x87\\x10\\xa0\\xc6\\x2d\\\r\n\\x94\\x23\\x12\\xca\\x2f\\x7d\\x16\\xf7\\xd2\\xfe\\x6f\\xb6\\xf8\\x8a\\x3a\\x56\\\r\n\\x49\\xb8\\x69\\xd4\\xf2\\x8f\\x33\\x35\\xed\\xd6\\x85\\x48\\x17\\xbe\\x99\\x7f\\\r\n\\x9e\\xbe\\x31\\xec\\xf5\\x24\\x54\\xb0\\x10\\x08\\x21\\x14\\xc6\\x3c\\xd9\\x5c\\\r\n\\xdb\\xf3\\xd7\\xeb\\xd8\\x63\\xda\\x29\\xe0\\xe7\\xb6\\x56\\x26\\x52\\x6e\\x5f\\\r\n\\x4c\\x90\\x66\\x39\\x6e\\x45\\xfe\\x23\\x73\\xaf\\x8f\\x5d\\x30\\x69\\x5e\\x7a\\\r\n\\x89\\xd2\\x11\\x2d\\x46\\x49\\x59\\x55\\xb9\\x24\\x31\\x1a\\x75\\x35\\x8b\\x5b\\\r\n\\x7f\\xe2\\xdb\\x5b\\xeb\\xa5\\x57\\x09\\x9e\\x9a\\x18\\xe7\\x9b\\x26\\x46\\x98\\\r\n\\x46\\x82\\xff\\x00\\x6b\\xd6\\x2e\\x0f\\x61\\x6f\\xf2\\xff\\x00\\x5b\\x63\\x80\\\r\n\\x45\\x0d\\x35\\x4c\\xe2\\xb6\\xfc\\xcf\\x77\\x78\\xe9\\x44\\x88\\x08\\x74\\x2a\\\r\n\\xd7\\x28\\x41\\x3d\\x6a\\xc5\\x6e\\xa0\\x1b\\xde\\xf7\\xda\\xe6\\xbc\\x47\\xc3\\\r\n\\x24\\xe1\\xfa\\xb5\\x4c\\x8f\\x70\\xaa\\xb9\\x8a\\x75\\x07\\xbb\\x1f\\x85\\x6d\\\r\n\\x90\\x0d\\x4f\\xf2\\xc7\\x13\\x75\\x9a\\x68\\x26\\xe4\\xba\\x25\\x54\\x70\\xd2\\\r\n\\xce\\x4e\\xb6\\x31\\xbc\\x7f\\x69\\x10\\x4b\\xd8\\xf2\\xe2\\xfb\\xc7\\x76\\x38\\\r\n\\xa0\\xa1\\x92\\xa1\\x2a\\x26\\x8c\\x65\\x8e\\x59\\x8f\\x29\\x75\\x2e\\x15\\x58\\\r\n\\x83\\x9e\\xfb\\x5f\\xc2\\xfa\\x9e\\xfa\\x43\\xc2\\x9e\\x64\\x93\\x3c\\xe3\\x28\\\r\n\\x05\\x34\\xd7\\x55\\x04\\x58\\x7f\\x0f\\xae\\x6d\\xbc\\x62\\x38\\xb2\\x46\\x88\\\r\n\\x52\\x42\\x55\\x15\\x49\\xf2\\x40\\x00\\x9d\\xb1\\x00\\x12\\x33\\x2b\\x01\\x68\\\r\n\\xc0\\xca\\x7b\\x8d\\x40\\xb7\\xcb\\x15\\x82\\xf0\\x5b\\xf8\\x49\\x00\\xf7\\xb7\\\r\n\\x83\\xf8\\x63\\x85\\x8f\\x8f\\x7f\\x80\\x9d\\xf6\\x37\\x23\\x4c\\x49\\x12\\x9e\\\r\n\\x69\\x37\\x27\\x3f\\xf4\\xc4\\x0e\\xd0\\xd7\\x0c\\x86\\xdd\\x44\\x7e\\x4c\\x7f\\\r\n\\x1b\\x81\\x8e\\x22\\xc5\\xc2\\x16\\xd4\\xa2\\xa9\\x07\\xd7\\x4f\\xd7\\x9c\\x53\\\r\n\\x12\\xbb\\x12\\x2e\\x10\\x9d\\x74\\xb9\\xdf\\x05\\x8f\\x3a\\x46\\xee\\x59\\xf5\\\r\n\\xfa\\xe2\\x14\\x5c\\xbb\\x62\\x35\\x12\\x39\\x46\\xd5\\x44\\x66\\xc3\\xc5\\xc9\\\r\n\\x1f\\xcb\\x01\\xd8\\x22\\xff\\x00\\x94\\xd8\\x79\\xd1\\x88\\xdf\\x05\\xd9\\xa6\\\r\n\\x20\\xf6\\xd4\\x79\\xbe\\x56\\xef\\x8a\\x3d\\x61\\x52\\x7f\\xf6\\xd7\\xf9\\x8c\\\r\n\\x4e\\x48\\x2b\\x6f\\x4f\\xe9\\x8f\\x6c\\x8d\\xe3\\x8d\\x8f\\xc4\\x24\\xd0\\xf7\\\r\n\\xd4\\x6b\\x8f\\x64\\xea\\xe7\\x9e\\x9a\\xa2\\x8a\\x47\\x26\\x06\\xa7\\x76\\x23\\\r\n\\x5b\\xe6\\x17\\x00\\x83\\x7d\\x2d\\xdb\\xbe\\x2a\\x66\\x71\\xec\\xfc\\x34\\xc0\\\r\n\\xfd\\x9b\\xf1\\x39\\xf3\\xf9\\x6c\\x91\\x24\\xa0\\x12\\x3f\\xcc\\xdf\\x3b\\x01\\\r\n\\xae\\x98\\x92\\xa1\\xe3\\x8f\\x80\\x53\\x25\\x84\\x52\\x46\\x92\\x38\\x17\\xbb\\\r\n\\x30\\x2a\\xba\\x9b\\xed\\x66\\x37\\x18\\x77\\x20\\xb8\\x1a\\x58\\x38\\xfc\\x87\\\r\n\\xf6\\xc0\\x51\\xa1\\xfe\\x22\\x2f\\xf8\\x1f\\xef\\x8f\\x6b\\x11\\x56\\xb2\\x3b\\\r\n\\x7d\\xf8\\x46\\x6f\\xfe\\xff\\x00\\xed\\x8f\\x67\\x64\\x91\\x2a\\x2b\\x29\\xd5\\\r\n\\xd8\\x47\\xcb\\x66\\x16\\x3a\\x86\\x0a\\x4d\\xc1\\xed\\xae\\xbb\\x6b\\xdf\\x0e\\\r\n\\xfe\\xf1\\x41\\x44\\xee\\x91\\x86\\x28\\xcf\\xd0\\xb9\\x75\\x06\\xd6\\x02\\xf6\\\r\n\\x0a\\x77\\x2b\\xb5\\xf5\\x16\\xc7\\x0f\\xfd\\xdf\\xe1\\xfc\\xb1\\x34\\x8d\\xee\\\r\n\\xf6\\xff\\x00\\x3b\\x0f\\x5d\\x8f\\x7c\\x70\\xb7\\x67\\x33\\x5c\\x9d\\x25\\xca\\\r\n\\x3d\\x05\\xbb\\x62\\xac\\x91\\x5d\\x50\\x46\\x97\\x11\\x92\\x3b\\x5c\\xa8\\x37\\\r\n\\xfc\\x71\\xc4\\x47\\x29\\x24\\x28\\x4f\\x5a\\x18\\xd8\\x5f\\x46\\x42\\x0b\\x58\\\r\n\\xfa\\x5c\\x03\\xf3\\x03\\x0c\\xa0\\xc2\\x58\\xee\\xce\\xdd\\xcf\\xa7\\xeb\\x5b\\\r\n\\xe2\\x8d\\xcb\\x2e\\xbd\\xdb\\xff\\x00\\xcb\\xfb\\x69\\x8e\\x0b\\x51\\x23\\x84\\\r\n\\x8c\\xe5\\xca\\xa8\\xb6\\x00\\x5b\\xb5\\xf5\\xb6\\xe7\\x1d\\xdf\\xfd\\x23\\xf3\\\r\n\\xc3\\xa8\\xf7\\x67\\x3b\\xf5\\x0d\\xf5\\xee\\x31\\x47\\x23\\x31\\x20\\xda\\xca\\\r\n\\x05\\xbf\\x2c\\x71\\x70\\x3d\\xc0\\x1f\\xe2\\x6c\\xa7\\xe4\\x6e\\x48\\xfc\\xb1\\\r\n\\xc2\\x28\\x29\\x15\\xad\\xc9\\x56\\x06\\x58\\xd2\\xcd\\xa8\\x00\\xba\\xdc\\x80\\\r\n\\x2d\\x62\\x46\\x97\\xf0\\x4d\\xb5\\xb1\\x1c\\x46\\x46\\xa1\\x92\\x6f\\x76\\xe8\\\r\n\\x1e\\xfe\\xf1\\xe5\\xdd\\x42\\x16\\x5d\\x2d\\x8e\\x23\\x6e\\x45\\x48\\xb0\\xfb\\\r\n\\x9f\\x8e\\x56\\xd7\\xe7\\x88\\x09\\x4a\\x28\\xe3\\x52\\x54\\x4b\\x70\\xf6\\xd0\\\r\n\\xb0\\x67\\xcc\\x6e\\x46\\xfa\\xf9\\xbe\\x35\\x8b\\x45\\x66\\x21\\xb7\\xcd\\x63\\\r\n\\xfd\\x31\\x1f\\x7f\\xa7\\xf5\\xc7\\x31\\x90\\xb5\\xbf\\x88\\x1d\\x7e\\x58\\xa9\\\r\n\\x9a\\x41\\x2f\\x0d\\x37\\xbe\\x69\\x0d\\xc1\\xd4\\x1c\\xc2\\xc4\\x5b\\xc5\\xb1\\\r\n\\xc3\\x2a\\xa5\\xf7\\x98\\xe3\\xe9\\xcb\\x9d\\x46\\xdd\\x89\\x3f\\xa1\\xe3\\x1c\\\r\n\\x7a\\x57\\x35\\xd3\\x92\\x7f\\x75\\x2b\\x05\\xd0\\x6c\\x15\\x6d\\xeb\\xfd\\xee\\\r\n\\x6f\\x8e\\x0f\\x55\\x37\\xb9\\x1d\\x47\\x4a\\xdc\\x69\\xf5\\xd7\\xce\\xb8\\x8f\\\r\n\\x8a\\x55\\x0e\\x2b\\x13\\xdd\\x2f\\x25\\x47\\x2d\\xfa\\x74\\x65\\x62\\x74\\xb5\\\r\n\\xed\\xa5\\xb4\\xc2\\xd6\\xd4\\x53\\xbd\\x64\\x71\\x35\\x95\\x26\\x94\\x2d\\xc6\\\r\n\\xc2\\xec\\x7f\\x2e\\xd8\\xac\\xe2\\x95\\x27\\x9d\\x01\\xe5\\xb2\\x49\\x22\\x16\\\r\n\\x2c\\xa4\\xb6\\xb2\\x83\\xa3\\x66\\xfc\\x3c\\x0d\\xb1\\xc1\\xa5\\x7e\\x67\\x10\\\r\n\\xb6\\x99\\xea\\x5e\\x23\\x6f\\xe1\\x71\\x4e\\x86\\xde\\x08\\x0c\\x6c\\x7c\\xeb\\\r\n\\x8f\\x6a\\xa0\\x8c\\x70\\xa5\\x95\\x46\\x47\\x8a\\xb2\\x9d\\x50\\xae\\xc0\\x15\\\r\n\\x23\\x63\\x71\\x7f\\x16\\xb6\\x38\\x85\\xd2\\x0e\\x62\\x12\\xb2\\x47\\x3e\\x64\\\r\n\\x7f\\xbc\\x08\\xd3\\xbf\\x62\\x0e\\xa3\\xd0\\x77\\x17\\xc5\\x28\\x34\\xeb\\xcc\\\r\n\\x57\\x76\\x69\\xa3\\x7c\\xdc\\xc2\\x1c\\x03\\x9a\\xc0\\xa8\\x23\\x42\\x2f\\xa6\\\r\n\\xf8\\xab\\x90\\xfb\\xb5\\x1b\\x58\\x5f\\x9a\\x1b\\xff\\x00\\x23\\x1e\\xa7\\x43\\\r\n\\xdf\\xfa\\x69\\xa9\\x37\\xa1\\x95\\xca\\x81\\x7d\\x1e\\x18\\xe4\\xd3\\x4b\\x19\\\r\n\\x2f\\x98\\x2d\\xb6\\x1e\\x3f\\x32\\x4e\\x38\\x52\\x0e\\x5c\\xa3\\x70\\x2a\\x67\\\r\n\\x00\\x1d\\xbb\\x61\\xed\\x9d\\xb4\\x1f\\x13\\x76\\xf5\\xc7\\xff\\xc4\\x00\\x46\\\r\n\\x11\\x00\\x02\\x01\\x02\\x04\\x04\\x03\\x06\\x03\\x06\\x04\\x04\\x04\\x07\\x01\\\r\n\\x00\\x01\\x02\\x03\\x04\\x11\\x00\\x12\\x21\\x31\\x05\\x13\\x22\\x41\\x32\\x51\\\r\n\\x61\\x06\\x14\\x23\\x42\\x71\\x81\\x52\\x91\\xa1\\x15\\x33\\x62\\xb1\\xc1\\xf0\\\r\n\\x24\\x72\\xd1\\xe1\\x07\\x43\\x82\\xf1\\x16\\x34\\x53\\x92\\x17\\x25\\x54\\x63\\\r\n\\x73\\xa2\\xb2\\xc2\\xff\\xda\\x00\\x08\\x01\\x02\\x01\\x01\\x3f\\x01\\x81\\xd6\\\r\n\\x09\\xea\\x19\\x4f\\x49\\x8d\\x1d\\x75\\x1b\\xdf\\xc3\\xf6\\x26\\xde\\xbd\\xb0\\\r\n\\x8e\\x61\\x8c\\xcb\\x94\\x16\\x7d\\x58\\x92\\x3a\\x49\\xf0\\xf7\\xbf\\x4e\\x27\\\r\n\\x65\\x55\\x01\\x8e\\x69\\xa7\\x36\\x11\\x87\\xcb\\xd5\\xa9\\xbe\\xbb\\x36\\xbe\\\r\n\\x23\\xa0\\xbf\\x96\\x2a\\x19\\x22\\x30\\x2a\\xd8\\x32\\xc6\\x00\\x40\\x73\\xe5\\\r\n\\x16\\x03\\x7e\\xe0\\x1d\\x98\\xdb\\x37\\x90\\xd4\\x08\\x54\\x17\\x0e\\xe3\\x34\\\r\n\\x8d\\xab\\x3f\\x7d\\xaf\\x6d\\x34\\x0a\\x3b\\x7a\\x61\\x4d\\x87\\x48\\xb6\\x63\\\r\n\\xd8\\x68\\x05\\xfd\\x3d\\x2e\\x7c\\xef\\x86\\x6c\\xd7\\x19\\x6c\\xba\\xf5\\x5c\\\r\n\\xf5\\x5f\\x4e\\x9f\\xf5\\x3a\\x1b\\xe2\\xa5\\x88\\x8c\\x88\\xf4\\x72\\x2c\\xa0\\\r\n\\xdc\\x9b\\x9e\\xc3\\x2e\\xf7\\xfe\\x98\\xa8\\xad\\xaa\\x82\\x88\\xba\\x84\\x59\\\r\n\\xe8\\xa6\\x55\\xa9\\x8d\\x00\\xb3\\xc0\\xda\\x8f\\x15\\xf5\\x39\\xb5\\x2a\\x07\\\r\n\\x55\\xed\\xeb\\x57\\x35\\x72\\x2d\\x3d\\x55\\x2d\\x5d\\x47\\x22\\xa4\\xe7\\x21\\\r\n\\x9c\\x15\\x8a\\xfb\\xae\\xb7\\xbc\\x57\\xd1\\x7a\\x6e\\x82\\xc0\\x92\\x3c\\x31\\\r\n\\x71\\xaa\\xdb\\x22\\x86\\x85\\xb4\\xd4\\x65\\x0a\\x25\\xd4\\x78\\x5b\\xf1\\x58\\\r\n\\xed\\xdf\\x41\\x60\\x70\\x95\\xf5\\x01\\xde\\x5b\\x5c\\x49\\x23\\x33\\x27\\x64\\\r\n\\x05\\x86\\xc4\\xed\\x94\\x6e\\x3b\\x9d\\x0d\\x89\\xcd\\x8e\\x00\\xc2\\xa9\\xdd\\\r\n\\xee\\x92\\x04\\xcb\\x7d\\x14\\x68\\xc0\\x9d\\x2d\\xdb\\xd6\\xe4\\x6d\\x8e\\x28\\\r\n\\xc3\\x9f\\x24\\x9a\\xb1\\x89\\x4a\\xdb\\xe5\\x24\\x28\\xb6\\x8b\\xbe\\xb6\\xbf\\\r\n\\x7b\\xe2\\xb2\\x8a\\x8e\\x82\\x7a\\xce\\x25\\x51\\x32\\xd3\\x4d\\x57\\x92\\x59\\\r\n\\xcc\\x7d\\x7d\\x48\\xda\\x65\\x04\\xdb\\x31\\xf0\\x9b\\x8b\\x93\\xd8\\x6a\\x31\\\r\n\\xc5\\x3d\\xaa\\xa8\\xe2\\x43\\xdc\\xe8\\x21\\xe5\\xc2\\xcd\\xe3\\x65\\x06\\x69\\\r\n\\x6f\\xa7\\x87\\xc2\\x97\\xd2\\xda\\x5c\\x63\\x85\\x7b\\x35\\x54\\x90\\x24\\xbc\\\r\n\\x40\\x65\\x8b\\x49\\x60\\x82\\x42\\x19\\xe4\\x7b\\xe5\\x54\\x00\\xdc\\x80\\xc0\\\r\n\\xf5\\x13\\xa8\\x50\\x48\\xd3\\x15\\x35\\xd5\\xb4\\x6e\\xbe\\xf3\\x47\\x23\\x45\\\r\n\\x1d\\x9f\\xde\\x62\\x3c\\xc3\\x08\\x1a\\x07\\x68\\xc0\\x0e\\xb1\\x10\\xa0\\x66\\\r\n\\x88\\x15\\xcd\\xd2\\xd9\\x0e\\x98\\xa2\\xe2\\x14\\x9c\\x4a\\x98\\xb5\\x3c\\xf1\\\r\n\\x54\\x06\\x8c\\xf3\\x32\\x32\\x97\\x52\\x56\\xc7\\x32\\x5f\\x3a\\x9b\\xf6\\x60\\\r\n\\x0e\\x2a\\x75\\x69\\x04\\xec\\x72\\xc5\\x4c\\xf9\\x34\\x26\\xf9\\x52\\x7b\\x83\\\r\n\\xa7\\x71\\x7b\\x7f\\x77\\xe0\\xb0\\x07\\x8e\\x59\\x55\\x33\\x23\\xb0\\x50\\x6e\\\r\n\\x32\\xdc\\x6d\\xa1\\xfc\\xff\\x00\\x23\\xdb\\x13\\x5a\\x29\\x5a\\x29\\x94\\x00\\\r\n\\x10\\xb8\\xcb\\xbd\\xf3\\x85\\x0a\\x48\\xca\\x3b\\x03\\xdf\\xbe\\x29\\x38\\x61\\\r\n\\xab\\x95\\x63\\xa7\\x87\\x3b\\x39\\x27\\x96\\x24\\x2b\\x61\\x6b\\xe6\\x90\\x1f\\\r\n\\x0a\\x81\\xd4\\xce\\x45\\x82\\xf5\\x13\\x97\\x13\\x50\\xcd\\x13\\x5a\\xd6\\x08\\\r\n\\xc3\\x3c\\x79\\xb3\\x66\\xb1\\xd5\\x85\\x80\\xfb\\x5f\\xcf\\x4c\\x71\\xde\\x4c\\\r\n\\xf0\\xca\\x6e\\x56\\x4a\\x74\\xe6\\x04\\x20\\x66\\xce\\x1f\\x50\\x07\\x6e\\x9f\\\r\n\\x4b\\x5b\\xeb\\x8e\\x11\\x28\\xe2\\x7c\\x39\\x16\\x6c\\xa8\\x60\\xe5\\x28\\x0b\\\r\n\\x75\\x12\\x3a\\xdb\\x21\\xcb\\xf2\\xb5\\xba\\x89\\x56\\xb3\\x5b\\x60\\x77\\x8e\\\r\n\\x9d\\x22\\x46\\x40\\x2e\\x03\\xee\\x4d\\xbb\\x5f\\x53\\x98\\x5f\\xb9\\x1a\\x77\\\r\n\\x23\\xcb\\x16\\x59\\x0e\\x6c\\x99\\xbc\\x80\\xd4\\x2d\\xbc\\xed\\xde\\xc7\\xfa\\\r\n\\xe2\\xaf\\x96\\x20\\x58\\x79\\x6c\\xd3\\xd4\\x48\\xbc\\xbb\\xdf\\x22\\x0d\\x6f\\\r\n\\x9a\\xc0\\x6f\\xf9\\x58\\x77\\xc5\\x64\\x15\\x70\\x55\\xb5\\x4b\\x06\\x31\\x96\\\r\n\\x30\\xb1\\xb7\\xfc\\xc4\\xd0\\x0f\\x3d\\x86\\x9a\\x6d\\xf7\\xc5\\x30\\x0e\\xfe\\\r\n\\xf3\\x6f\\x77\\x8d\\x4a\\x99\\x25\\x1e\\x09\\x6e\\x09\\x28\\x54\\x9b\\x33\\xde\\\r\n\\xf9\\x08\\xea\\x1d\\xce\\x5d\\x4c\\x3c\\x41\\x6a\\xaa\\x61\\x48\\x97\\x97\\x91\\\r\n\\x94\\xbc\\x52\\x7e\\x1b\\x80\\x2c\\x6f\\x66\\xd0\\xe6\\xfa\\x83\\xf4\\xc3\\xc8\\\r\n\\xb4\\xb5\\xd1\\x4d\\x66\\x28\\xa4\\x03\\x6e\\xed\\x60\\xe3\\x7e\\xd7\\xbf\\x9f\\\r\n\\x87\\xd4\\x62\\x4c\\xbc\\x4a\\x8e\\xb6\\x07\\x60\\xe6\\x58\\x27\\x89\\x8f\\x66\\\r\n\\xe7\\x44\\x55\\x5b\\xd4\\x10\\xe2\\xde\\xa3\\xed\\x8a\\x67\\x4a\\x8e\\x07\\x5a\\\r\n\\xb5\\x0f\\xcb\\x0b\\x4e\\x81\\x59\\xed\\x66\\x9a\\x1b\\x65\\x4f\\xe2\\x24\\xa1\\\r\n\\x0a\\xa2\\xec\\x4e\\x2a\\xa8\\xa4\\x69\\xe5\\xa8\\xda\\x9a\\xa2\\x58\\x48\\x6b\\\r\n\\x9c\\xc2\\x46\\xa7\\x84\\x86\\x5b\\x00\\x51\\x6d\\x96\\xe3\\xc5\\x70\\xc7\\x63\\\r\n\\x89\\xe9\\x69\\xa3\\xe1\\x2d\\x42\\x90\\xac\\x35\\x14\\xc7\\x9d\\x15\\x97\\x29\\\r\n\\x99\\x49\\x39\\xee\\x77\\x91\\xc5\\xee\\xc4\\xdd\\x8e\\x8c\\x7c\\xf0\\xb9\\xc4\\\r\n\\x51\\xc9\\x13\\x1c\\x93\\x52\\xfc\\x64\\xed\\x99\\x74\\x61\\x6f\\x9b\\x5b\\x11\\\r\n\\x7d\\xaf\\xeb\\x8a\\x17\\x6e\\x43\\xaf\\xcd\\x0e\\xaa\\x7f\\x83\\x35\\xec\\x2f\\\r\n\\xe9\\x71\\xdc\\x5b\\xcb\\x10\\xcf\\x33\\x08\\x5c\\x0f\\x0e\\x67\\x5d\\x94\\xe9\\\r\n\\x76\\x61\\x7f\\x5c\\xbb\\x7f\\xdf\\x1c\\x45\\x19\\x3d\\x96\\xe2\\x15\\xc9\\x00\\\r\n\\xa5\\xa9\\x9a\\x97\\xde\\x91\\xa3\\xe8\\x74\\x68\\x5d\\x5d\\x24\\x90\\x8b\\x75\\\r\n\\x46\\x01\\x2c\\x17\\x50\\x0d\\x89\\x37\\xb6\\x2a\\xa3\\xa3\\xab\\xe4\\x3a\\x05\\\r\n\\xa6\\xac\\x9e\\x21\\x28\\x0b\\xfb\\x89\\xef\\x6d\\x2f\\xa7\\x2a\\x46\\xb9\\x2a\\\r\n\\xfc\\xb0\\x8c\\x7c\\x4a\\x2f\\xad\\x0d\\x4d\\x2b\\x7b\\xbf\\x0d\\xa9\\x8f\\x2b\\\r\n\\x54\\x33\\x40\\xca\\xe0\\x7f\\xe6\\x62\\x5e\\x6c\\x2c\\xa0\\x6c\\x4a\\x47\\x25\\\r\n\\x88\\xbe\\x62\\x2d\\xe8\\x61\\x69\\xb8\\x7c\\x93\\x53\\x25\\x99\\xe1\\x91\\x92\\\r\n\\x32\\x49\\xc9\\x62\\x6e\\x06\\x80\\x16\\x3a\\x91\\xa1\\x5d\\x6d\\xa6\\xf8\\xab\\\r\n\\xa4\\xaa\\x9a\\x96\\x59\\xaa\\x6a\\x24\\xe6\\x81\\x99\\x32\\xa8\\x48\\xe2\\xdb\\\r\n\\x40\\x2c\\xf2\\x36\\xc6\\xf7\\x72\\x09\\x3a\\x0d\\xad\\xc6\\xd9\\x20\\xe1\\x91\\\r\n\\xc1\\x1a\\xaf\\x2a\\xa6\\x28\\x64\\xba\\xa0\\xbb\\xcd\\x1d\\x46\\x7c\\xec\\xd6\\\r\n\\x04\\xb6\\x5c\\xea\\x73\\x79\\xed\\xa5\\xb1\\xec\\x4d\\x5d\\x32\\x53\\x4f\\x4d\\\r\n\\x50\\x32\\xc7\\x34\\xcd\\x11\\x72\\x7a\\x56\\x60\\xa0\\x85\\x37\\xd8\\x4a\\x8e\\\r\n\\xb9\\x4f\\xe2\\xd2\\xda\\xe9\\x5b\\xc5\\xdb\\xd9\\xba\\x1a\\xaa\\xc9\\x6f\\x25\\\r\n\\x25\\x2a\\xcc\\xae\\xab\\xab\\x19\\x15\\xb2\\xc5\\x12\\x2f\\x76\\x9d\\x9a\\x35\\\r\n\\x8f\\xf1\\x33\\xad\\xaf\\x71\\x8e\\x03\\xc3\\xde\\x9f\\x86\\x66\\xa8\\xb1\\xe2\\\r\n\\x75\\xec\\xdc\\x53\\x89\\x48\\xb6\\x3f\\xe3\\x6a\\xb2\\xc8\\xd1\\x0f\\x25\\xa6\\\r\n\\x43\\x1d\\x2c\\x56\\xb0\\xe5\\xc2\\x34\\xbd\\xf1\\x0e\\x66\\xab\\xa8\\x91\\xaf\\\r\n\\x9a\\x3f\\xdd\\xe5\\x00\\x82\\xe9\\x62\\xa1\\xbf\\x87\\x4e\\xab\\x9c\\x0a\\x94\\\r\n\\x9a\\x77\\xab\\x99\\xc1\\x58\\xc5\\x3a\\x11\\x71\\xd2\\x5d\\x1d\\x88\\x51\\xb5\\\r\n\\x91\\x98\\x03\\xe6\\x75\\xf3\\xc1\\xae\\x2d\\xcb\\xc9\\x1f\\x33\\xc5\\xd0\\x7c\\\r\n\\x2d\\xaf\\x49\\xda\\xe4\\x69\\xf8\\x80\\xf5\\xd4\\x60\\x54\\xd4\\x42\\x79\\x33\\\r\n\\x2a\\x10\\xf6\\x71\\xca\\x4e\\x50\\x19\\xf5\\x78\\x98\\x0b\\xd9\\x07\\xef\\x2c\\\r\n\\x37\\x52\\x6f\\x7c\\x54\\xce\\xb9\\x91\\x29\\x72\\x67\\x54\\x78\\x4f\\x2b\\x23\\\r\n\\x2a\\xe6\\x61\\xd2\\xc0\\x0b\\x06\\x1a\\xf6\\xbe\\xdb\\x6b\\x7e\\x27\\xc2\\xe9\\\r\n\\x38\\x97\\x0f\\x9a\\x0a\\x8a\\x4f\\x79\\xa1\\x11\\x85\\x78\\x02\\xe6\\x33\\x4e\\\r\n\\x1c\\xd9\\x97\\x20\\x2c\\x24\\x59\\x5b\\xe1\\xbc\\x6c\\xbd\\x6b\\xf8\\x46\\x21\\\r\n\\xe0\\x5c\\x67\\x83\\x87\\xa4\\xaf\\xaf\\xfd\\xa3\\x14\\x93\\x88\\x78\\x61\\x77\\\r\n\\x2b\\x52\\xd0\\x35\\x8f\\x2e\\xad\\xdd\\x32\\x9e\\x4c\\x84\\xc6\\xb2\\xb3\\xb1\\\r\n\\x90\\x2d\\xc9\\x00\\xd9\\x57\\x80\\x54\\x90\\x0f\\x37\\x87\\x25\\xc0\\x39\\x0d\\\r\n\\x43\\x12\\x9f\\xc2\\x4a\\xc6\\x41\\x2b\\xb6\\x84\\x8f\\x22\\x46\\x1e\\x45\\x15\\\r\n\\xd4\\xd9\\x86\\x5b\\x83\\x99\\x09\\xe9\\xbd\\x83\\x03\\xe5\\x6c\\xda\\xdf\\xf3\\\r\n\\xc4\\x93\\x19\\x41\\xcc\\xe0\\x47\\x1f\\x53\\xb0\\xb7\\x51\\x5d\\x55\\x73\\x58\\\r\n\\xfd\\xec\\x35\\xd2\\xd8\\x11\\xcb\\x50\\x43\\xc4\\x15\\x63\\x8c\\xb3\\x1c\\xca\\\r\n\\x59\\xa4\\xe9\\xd0\\x96\\x27\\x47\\xd7\\xcb\\x6b\\x62\\x38\\x5f\\x96\\x25\\x73\\\r\n\\x72\\x2c\\x8a\\xc7\\x7b\\x1f\\x22\\x75\\xb7\\xf3\\xc6\\x50\\x99\\x05\\xc8\\xed\\\r\n\\xe8\\x74\\x3a\\x7a\\x03\\x89\\xea\\xa2\\x48\\x55\\xde\\x54\\xa7\\xa7\\x42\\xb9\\\r\n\\xe6\\x76\\x50\\x1c\\xdf\\xc0\\x2e\\x6d\\xf5\\x3d\\xef\\x6e\\xc7\\x0d\\xed\\x35\\\r\n\\x3b\\x5d\\x69\\xe0\\xa8\\xa9\\x39\\xb2\\x23\\x22\\x0e\\x5b\\xe9\\xba\\x4a\\xd6\\\r\n\\x42\\xa3\\x6e\\x9b\\xea\\x0f\\x7c\\x52\\x89\\xa7\\xbb\\xd4\\x46\\x15\\xc3\\xb1\\\r\n\\x45\\xe6\\x09\\x39\\x4b\\x6b\\x68\\x41\\xb6\\x6d\\xee\\x7b\\x76\\x3e\\x7c\\x66\\\r\n\\x21\\x15\\x5c\\x32\\x5f\\x2c\\x35\\xd1\\xb5\\x24\\xc7\\xe5\\x56\\x17\\x78\\x58\\\r\n\\xdb\\xb0\\xd7\\xff\\x00\\x6f\\xe4\\x1c\\xfe\\xcd\\x9a\\x9d\\xad\\x78\\x1d\\x95\\\r\n\\x36\\xb9\\xf9\\xed\\xfd\\x2c\\x2f\\xa5\\xbc\\xb0\\x1a\\x3e\\x44\\x2d\\x99\\x63\\\r\n\\x70\\xa4\\xb8\\xb1\\xb3\\x2a\\x5f\\x50\\x17\\xe6\\x1f\\x29\\xef\\x6b\\x7d\\x12\\\r\n\\x43\\x21\\x03\\x7b\\x92\\xc2\\xc7\\xc5\\x7d\\x6f\\xf7\\x3a\\x58\\xf7\\xbe\\x38\\\r\n\\x0d\\x3f\\xec\\xfe\\x18\\x93\\x4a\\x99\\x65\\x65\\x76\\x95\\x40\\xcc\\xc7\\x3b\\\r\n\\x12\\x3e\\xf6\\xb7\\xd0\\x1c\\x7b\\x45\\xc4\\xcd\\x32\\xfb\\xbc\\x41\\x25\\x92\\\r\n\\x6c\\xe6\\x5c\\xd2\\xf5\\x46\\x1c\\x9c\\xae\\x63\\xbb\\x39\\xbe\\xb9\\x6d\\x61\\\r\n\\x71\\xb8\\xd3\\x1c\\xa9\\xab\\x5f\\x36\\xb5\\x19\\xc7\\xc6\\x32\\xba\\x84\\x8a\\\r\n\\x99\\x40\\xe7\\x4a\\xc4\\x90\\x05\\x97\\x5c\\xa0\\x16\\x67\\x36\\x51\\x73\\x6c\\\r\n\\x50\\xa5\\x05\\x15\\x6c\\x35\\x54\\xb1\\xca\\xf1\\x43\\x11\\xf8\\x33\\x01\\x9a\\\r\n\\x49\\xad\\x62\\x58\\x8c\\xc3\\x2e\\xcc\\x06\\xbe\\x87\\x41\\x71\\xc7\\xa6\\x7b\\\r\n\\x87\\xa4\\xa7\\x6d\\xcb\\xc9\\xcc\\x74\\x54\\x8c\\x5c\\x8b\\xe7\\x52\\x14\\x0e\\\r\n\\xc6\\xfd\\x46\\xc2\\xd7\\xd3\\x0b\\x53\\x0d\\x65\\x33\\x90\\xe5\\xdc\\xcc\\xed\\\r\n\\x1c\\x6b\\x72\\xf0\\x95\\x01\\x3e\\x13\\xad\\xac\\x08\\xbb\\x6f\\x6b\\x11\\x98\\\r\n\\x58\\xdb\\x15\\x3c\\x0e\\x93\\x34\\x53\\xce\\x24\\xa0\\xa9\\xb5\\xe3\\xe2\\x9c\\\r\n\\x3a\\xd1\\x16\\x23\\x64\\xaa\\x55\\x3c\\xb0\\xfa\\xe5\\xcd\\x22\\x3c\\x72\\x7c\\\r\n\\xa6\\x33\\x98\\x60\\xd5\\xd5\\x41\\x32\\x89\\xe6\\x8f\\x8b\\x40\\x8c\\x19\\xa7\\\r\n\\xa7\\x8d\\xa2\\xa9\\x48\\xfc\\x2c\\xb5\\x14\\x65\\x50\\x37\\x7f\\xdd\\x96\\xdf\\\r\n\\x51\\xe5\\x45\\x59\\x50\\x63\\x68\\x28\\x19\\x52\\x94\\xca\\x5e\\x33\\xa0\\xa9\\\r\n\\x89\\x5c\\x65\\xe5\\xb6\\xea\\xae\\x2c\\x34\\x37\\x1e\\xa4\\xdf\\x10\\x42\\x72\\\r\n\\xde\\x5e\\xb7\\xb6\\xb7\\xd6\\xfe\\x6d\\xbd\\xfb\\xeb\\xae\\x9d\\xce\\x29\\x84\\\r\n\\xd4\\xdf\\xe2\\x21\\x76\\x89\\xd7\\xa4\\x3c\\x6c\\xf1\\xc8\\xb7\\xec\\xae\\x84\\\r\n\\x30\\xf2\\x3a\\xe1\\x99\\x8b\\x16\\x32\\xe7\\x66\\xd2\\xf2\\x9c\\xf7\\x6f\\xf3\\\r\n\\x78\\xaf\\xf9\\xe3\\xf6\\x3f\\xbd\\x43\\x51\\x33\\x72\\x81\\x60\\xe1\\x51\\x81\\\r\n\\xbe\\x7d\\x40\\xeb\\xb5\\xa2\\xbd\\x9a\\xc1\\x87\\x51\\xcb\\xa1\\xcd\\x71\\xc1\\\r\n\\xe0\\x96\\x9e\\x8c\\xc3\\x3c\\x76\\x92\\x39\\x64\\x96\\x57\\xb5\\xcd\\xb3\\x34\\\r\n\\x28\\x2d\\xe1\\x53\\x65\\x5d\\xb5\\x20\\xfa\\x83\\x85\\x56\\x28\\xee\\xfa\\x13\\\r\n\\x72\\x14\\x79\\x0b\\x95\\x6c\\xa4\\x5b\\x5b\\x1d\\x75\\xf2\\xc4\\x75\\x12\\x09\\\r\n\\x57\\x9a\\x54\\xdc\\x80\\x6c\\x72\\x95\\x72\\x0e\\xaf\\x96\\xca\\xa1\\x6e\\xbd\\\r\n\\xfc\\xee\\x46\\x22\\xe3\\x14\\xa6\\xa0\\x0a\\xce\\x75\\x2c\\x89\\x2f\\x8d\\xe0\\\r\n\\x98\\x46\\xca\\x3a\\x91\\x21\\x6c\\x8c\\x8e\\x08\\xbf\\x58\\x66\\xb9\\x23\\x5b\\\r\n\\x5b\\x15\\x53\\x51\\x55\\x06\\x68\\x2a\\x21\\x78\\xe4\\x46\\x7b\\x2c\\xca\\x64\\\r\n\\x49\\x80\\xd2\\xcb\\xcc\\x16\\x92\\xfa\\x37\\xe1\\xb3\\x36\\xc3\\x13\\x46\\xc0\\\r\n\\xa1\\x91\\x39\\x71\\x98\\xce\\xa8\\xc0\\xa2\\xb1\\x00\\x2d\\xc8\\x25\\x14\\xfc\\\r\n\\xa5\\x98\\xe6\\x2d\\x9b\\x11\\x69\\x57\\x11\\x88\\xa8\\x75\\x91\\x54\\x83\\x62\\\r\n\\x47\\x50\\x04\\xdb\\xbf\\xf1\\x5a\\xe3\\xcb\\x09\\xc4\\xe9\\x6f\\x15\\x25\\x54\\\r\n\\x08\\x72\\x85\\x65\\x94\\x9e\\x9b\\x95\\x16\\x1f\\x29\\x52\\x2e\\x77\\xbe\\x62\\\r\n\\x76\\xdb\\x0b\\xee\\x12\\x54\\x34\\x54\\x53\\xb5\\x2d\\x78\\x8d\\x55\\x12\\x70\\\r\n\\xd2\\x51\\x86\\x55\\x26\\x34\\x92\\x64\\xd0\\x12\\x09\\x28\\xb9\\x95\\xf2\\x8d\\\r\n\\x85\\x8e\\x3d\\x9d\\xe0\\xd5\\xd4\\x7c\\x7f\\x8c\\xd0\\xd4\\x2c\\x35\\x42\\x92\\\r\n\\x76\\xea\\x4b\\x88\\x63\\x4e\\x21\\x1f\\xbc\\x24\\x91\\xc6\\x58\\x85\\x3a\\xb2\\\r\n\\x96\\x1e\\x00\\x18\\x13\\xa1\\xc7\\x3d\\x51\\x38\\x8f\\x08\\x75\\xcd\\x25\\x14\\\r\n\\x91\\xc8\\xac\\x0f\\xc8\\x63\\x8e\\x36\\xbe\\x87\\x55\\x0a\\x2d\\x7f\\x31\\xf7\\\r\n\\x78\\xe5\\xe2\\x9c\\x3f\\x2c\\x76\\x7a\\xba\\x64\\x52\\x02\\xb6\\xae\\x02\\x75\\\r\n\\x7d\\x4b\\x26\\x9f\\x2d\\xdd\\x06\\x6d\\xc5\\xb8\\x6c\\xaf\\x91\\xa0\\x75\\xea\\\r\n\\x11\\xcc\\x2c\\xdf\\x2e\\x64\\xd6\\xf7\\xd7\\x75\\xbd\\xad\\xe5\\xdf\\x10\\xa2\\\r\n\\x2b\\xab\\x24\\x80\\x03\\x1d\\xa4\\x8d\\x83\\x29\\xb9\\xec\\x01\\x1a\\xf9\\xe8\\\r\n\\x31\\x0a\\xca\\x44\\x4a\\x85\\x55\\x63\\x7c\\xca\\x18\\x5f\\x30\\xb7\\xcd\\x75\\\r\n\\x3b\\xfe\\x13\\xe7\\xeb\\x8e\\x26\\x2a\\xe5\\xf6\\x5f\\x8a\\xbc\\xf2\\x33\\x4c\\\r\n\\xfc\\x3a\\xb1\\x61\\x07\\x45\\xe5\\xbc\\x52\\x66\\x36\\x0a\\x2c\\xd7\\x55\\xca\\\r\n\\x01\\x05\\x6e\\xbb\\x1b\\x62\\x38\\xaf\\x4b\\xc2\\x9e\\x43\\x72\\x68\\x29\\x35\\\r\n\\x0d\\x98\\x8b\\xc4\\x37\\x3b\\xdf\\x4d\\x8f\\xf5\\xc7\\xed\\x2e\\x1a\\x1a\\x8e\\\r\n\\x96\\xae\\x36\\x67\\x35\\x51\\xc5\\x05\\x7a\\xe5\\xbd\\x24\\xed\\x76\\x8b\\x3d\\\r\n\\xce\\xb1\\xdd\\x6c\\x49\\xcc\\x56\\xea\\x35\\x5c\\xd6\\xaf\\x45\\x8a\\xbe\\x0a\\\r\n\\xa6\\x08\\xf1\\xce\\x3a\\xd8\\x6b\\xa8\\x00\\x17\\x52\\x37\\x1b\\x31\\x3d\\xcb\\\r\n\\x61\\xf9\\x75\\x75\\x11\\x53\\xe7\\x39\\x54\\x19\\xa5\\x03\\x4b\\xa0\\x1d\\x0b\\\r\n\\x62\\x36\\x27\\x5f\\xae\\x3d\\xa4\\xa1\\x45\\xa0\\x30\\xa8\\x19\\xa1\\x12\\x4c\\\r\n\\x34\\x17\\x0a\\xee\\xe6\\xc0\\xf7\\xd8\\x7e\\x78\\xf6\\x56\\x36\\x9a\\x4e\\x3b\\\r\n\\x1d\\xc0\\xc9\\xee\\x72\\xc6\\x3f\\x09\\x74\\x99\\x73\\x5b\\xd4\\xc7\\x6b\\xe8\\\r\n\\x34\\xc4\\xf2\\xc7\\xc5\\x3d\\xa2\\xa0\\xe0\\x33\\xc8\\xcd\\xc3\\x69\\x79\\x7c\\\r\n\\x7b\\x8b\\x23\\x15\\x62\\xb5\\x51\\x07\\xa7\\xe1\\xb4\\x32\\xef\\x64\\xf7\\x94\\\r\n\\x35\\x6d\\x7d\\xd2\\x08\\x8d\\xce\\xf8\\x96\\x49\\xb8\\x35\\x45\\xd0\\x87\\x82\\\r\n\\x42\\x4a\\xad\\xf3\\xdc\\x76\\x19\\x41\\x27\\xbe\\x9a\\x7a\\xed\\x8a\\x53\\x28\\\r\n\\x57\\xa9\\x05\\x62\\x46\\xce\\xcc\\x77\\x60\\x5b\\x4c\\xaa\\xba\\x9b\\xe9\\x61\\\r\n\\x94\\x1e\\xab\\x0c\\xa6\\xe3\\x1c\\x3f\\x33\\xb4\\x81\\xb8\\x75\\x5c\\x2d\\xcd\\\r\n\\x49\\xb9\\xf5\\xb1\\xad\\x2c\\x0c\\xa3\\x46\\xeb\\xa9\\x92\\x2b\\xf6\\x29\\x95\\\r\n\\x35\\x1a\\x5b\\xce\\x01\\x04\\x52\\xab\\xd4\\x4f\\x12\\x7b\\xc2\\xfc\\x1e\\x42\\\r\n\\x34\\xe7\\x4b\\x66\\x28\\xf6\\x8e\\x2d\\x88\\xda\\x52\\x8a\\x01\\x20\\x13\\xa6\\\r\n\\x2a\\x52\\x90\\xb9\\xe4\\xc9\\x3b\\x3c\\x0c\\xf2\\xaa\\xc9\\x3a\\xac\\x26\\x5c\\\r\n\\x84\\x15\\x65\\x8e\\x37\\x62\\x5b\\x66\\xcf\\x35\\x86\\x9d\\xaf\\x8e\\x1f\\xc4\\\r\n\\x26\\xe1\\xb4\\x9c\\x66\\xb9\\xa8\\x60\\xa0\\x11\\xd5\\xd4\\xce\\x97\\xa8\\x7a\\\r\n\\xc5\\xa8\\x2f\\x12\\xb5\\xe3\\x79\\xb5\\x8c\\x16\\x39\\x79\\x61\\x2c\\x1c\\x90\\\r\n\\x84\\x9c\\xc3\\x15\\xfe\\xd5\\xb4\\xb4\\xdc\\x2a\\x1a\\x2a\\x85\\x8e\\x7a\\xa5\\\r\n\\x4a\\x8a\\x88\\xa1\\x94\\x11\\x11\\x53\\x62\\x1b\\x27\\x4a\\xf3\\x1c\\x10\\xb9\\\r\n\\xfa\\x8a\\x9d\\x88\\x03\\x1c\\x7a\\x9d\\xbd\\xec\\x5b\\xf7\\x6c\\xca\\xc4\\x38\\\r\n\\x17\\x32\\x26\\xa7\\x2b\\x5a\\xe9\\x99\\x6d\\xa0\\xd2\\xe3\\x6d\\x70\\xde\\xd0\\\r\n\\x4b\\x1b\\x32\\x2f\\x0c\\x88\\xaa\\x31\\x45\\x3e\\xf8\\xeb\\x75\\x53\\x60\\x6d\\\r\n\\xcb\\xd2\\xe0\\x6d\\xdb\\x15\\x4c\\xa5\\xa2\\x06\\xd9\\xd5\\xc0\\x04\\x30\\xd9\\\r\n\\xaf\\x7d\\x57\\x56\\xfd\\x3e\\x83\\x0c\\x8d\\x2c\\x69\\x0c\\x60\\x05\\x6d\\x56\\\r\n\\xeb\\x7b\\x9d\\x75\\x93\\x2e\\xa0\\x0d\\xf3\\x13\\x7f\\xbe\\x20\\x0c\\x1b\\xdd\\\r\n\\x55\\x7e\\x1b\\x25\\xe4\\x6b\\x36\\xe9\\x60\\xda\\xdf\\xe7\\x3a\\xdb\\xc8\\x5b\\\r\n\\x01\\xf2\\x46\\xaa\\x80\\x95\\xcc\\xcb\\x96\\xcd\\xd3\\xd7\\xd9\\x8f\\xcb\\xbe\\\r\n\\x86\\xc4\\x6f\\xe5\\x8e\\x21\\xc6\\xa9\\x52\\x64\\xa6\\x59\\x0c\\x8e\\xc7\\x97\\\r\n\\x22\\x47\\xf1\\x24\\xcf\\xde\\x31\\x66\\x36\\x3d\\x89\\x36\\xb7\\xe7\\x86\\x85\\\r\n\\x78\\x92\\x20\\xaa\\xe4\\xb2\\x23\\x59\\x69\\x42\\x92\\x88\\x57\\x63\\x25\\xfa\\\r\n\\x65\\x20\\x9d\\x46\\xa9\\x7d\\x2c\\x77\\xc0\\x82\\x37\\x51\\x10\\x41\\xa2\\x58\\\r\n\\x5c\\x6d\\xa5\\xae\\x2c\\x00\\x1f\\xc2\\x00\\x03\\xd0\\x62\\x43\\x2d\\x02\\x5e\\\r\n\\x9d\\x1a\\x58\\x97\\x2e\\x6c\\xdb\\x91\\xae\\x73\\x7d\\x74\\xbe\\x9d\\x8e\\x38\\\r\n\\x8c\\xe9\\xc5\\x68\\x67\\x8d\\x72\\xc7\\x32\\x64\\x9a\\x14\\x26\\xcf\\x9a\\x3e\\\r\n\\xa2\\x35\\xfc\\x42\\xe3\\x4b\\xef\\x8a\\x27\\x49\\x62\\x75\\x93\\x50\\xeb\\xb9\\\r\n\\x24\\x05\\x91\\x40\\xd6\\xfb\\xdd\\x85\\xd7\\xf2\\xfa\\x8a\\x6a\\x28\\xaa\\x23\\\r\n\\x52\\xec\\xc9\\xcb\\x32\\x58\\x2e\\xe4\\x82\\x5b\\x53\\xe5\\x62\\xdf\\xed\\x8a\\\r\n\\x7e\\x1f\\x45\\x5b\\x5b\\x49\\xfe\\x21\\xd3\\x94\\x44\\x8d\\x14\\x07\\x24\\x8f\\\r\n\\x1a\\xb0\\x03\\x9a\\xdb\\x08\\xf3\\x5c\\xec\\x33\\x1c\\xc0\\x1d\\xce\\x23\\xe2\\\r\n\\xab\\x2d\\x05\\x44\\x6a\\x7f\\x75\\x51\\x3c\\x09\\xff\\x00\\xe2\\xa7\\x62\\xb9\\\r\n\\x8d\\xf7\\xcd\\x97\\x7d\\xf1\\x51\\x15\\x35\\x6a\\xcd\\x52\\x04\\xb2\\x55\\x3c\\\r\n\\xd9\\xcc\\x8c\\xc3\\x97\\xca\\x1a\\x2c\\x48\\x84\\x5f\\x4f\\xc5\\xa8\\x03\\xb0\\\r\n\\xbe\\x91\\x51\\x2a\\xa0\\xdf\\x2e\\xd9\\x05\\xf2\\x8b\\xda\\xe2\\xfd\\xf7\\xb6\\\r\n\\xa7\\xcf\\x4e\\xd8\\x58\\xe0\\x8e\\xaa\\x34\\x97\\x2a\\x42\\xfa\\xbb\\x02\\x3e\\\r\n\\x1a\\xa8\\xbe\\x5d\\x2f\\x96\\xe3\\xef\\xf9\\xeb\\x53\\x43\\x45\\x2d\\x24\\x65\\\r\n\\x54\\x35\\x34\\xcb\\xa7\\x2c\\x8b\\xbe\\x62\\xcd\\x76\\x63\\xd5\\x9b\\xe5\\xb1\\\r\n\\x3d\\x8f\\x7c\\x45\\x43\\x14\\x31\\x98\\xe1\\xb2\\xad\\xac\\x6d\\x60\\x7d\\x46\\\r\n\\x9a\\xea\\x75\\xf5\\xb6\\x21\\x9d\\x9b\\x99\\x14\\xc4\\x38\\x4d\\xd5\\xec\\x41\\\r\n\\x53\\xd2\\xcb\\x63\\xa1\\x07\\xca\\xc7\\xf2\\xc5\\x7a\\xa5\\x2b\\x95\\x8a\\xc6\\\r\n\\x07\\x8f\\xf7\\x7b\\xc9\\x00\\x07\\xfe\\x5b\\xea\\x5d\\x3f\\xfb\\x4f\\xa8\\xda\\\r\n\\x36\\xd9\\x70\\xeb\\x43\\x55\\x10\\x95\\x99\\xe2\\x68\\xc9\\xff\\x00\\x16\\x85\\\r\n\\x69\\xa4\\x52\\x34\\x04\\xb0\\xd1\\x85\\xf3\\x5e\\x37\\x42\\x16\\xd6\\x2a\\x3a\\\r\n\\x86\\x21\\x1c\\x4e\\x92\\x38\\x99\\xc2\\xf1\\x0a\\x29\\x42\\x04\\xa8\\x80\\xa8\\\r\n\\xab\\x50\\x77\\x79\\x69\\xf3\\xda\\x44\\xd4\\x5d\\xa0\\xb3\\xec\\xdc\\x9f\\x2c\\\r\n\\xa2\\xa2\\x14\\x01\\xa4\\x2a\\xfd\\xad\\x94\\x3d\\xb7\\xd7\\x41\\x7d\\x0e\\x87\\\r\n\\xa8\\x77\\x03\\x03\\x87\\xc5\\x62\\xec\\x5b\\x29\\x70\\x51\\x80\\xb2\\xd8\\x69\\\r\n\\xa1\\xb5\\xaf\\x9c\\xd9\\x89\\x23\\x6b\\x7a\\x62\\x29\\xa5\\xa6\\x67\\x89\\x21\\\r\n\\x77\\x08\\x7e\\x19\\x54\\x00\\xcc\\xa5\\x4c\\xa5\\x8d\\xdd\\x02\\xe4\\xcc\\xc5\\\r\n\\x99\\x59\\x6c\\x6e\\xe3\\xc2\\x0e\\x28\\xe8\\xa9\\x65\\x8d\\xe4\\x95\\x21\\x9a\\\r\n\\x74\\x60\\x66\\x5b\\x4b\\x24\\x51\\xce\\x5d\\x8f\\x28\\xf5\\x46\\x8a\\x73\\x15\\\r\n\\x87\\x94\\xf9\\xb9\\xc9\\xaa\\x31\\xcc\\x4e\\x38\\x84\\xab\\x0d\\x52\\x2c\\x55\\\r\n\\x2b\\x3a\\x9f\\x79\\x59\\xd1\\x15\\x54\\x2b\\xc4\\x39\\x61\\x55\\x82\\x87\\x74\\\r\n\\xcc\\x09\\x46\\x6b\\x66\\xdc\\xf6\\xc7\\x0f\\x8a\\x36\\xcd\\x2c\\x8b\\x14\\x8a\\\r\n\\xa5\\x17\\x2c\\x92\\xc7\\x0a\\x0e\\xf7\\x92\\x4c\\xc1\\x63\\x60\\x32\\x72\\xc4\\\r\n\\xa0\\xf3\\xfa\\x80\\xcd\\x97\\xa9\\x38\\x42\\xf1\\x0a\\xcf\\x81\\xf0\\xa0\\x50\\\r\n\\xaf\\x2c\\x54\\xf1\\xcd\\x56\\x92\\xfe\\xf0\\x82\\x1e\\x74\\x8a\\x18\\xc6\\x61\\\r\n\\x2a\\xe4\\x62\\xa7\\x25\\x3b\\x36\\x6c\\xc6\\xd8\\xe2\\x7c\\x19\\x64\\x73\\x1b\\\r\n\\xc1\\x1c\\x5c\\xb0\\x15\\x12\\xd0\\x38\\x62\\xd7\\xf8\\xcc\\x01\\x68\\xfa\\xc8\\\r\n\\x36\\x2a\\x73\\x64\\x00\\x69\\xae\\x67\\xa7\\x58\\xcd\\x42\\x99\\x9a\\x29\\x29\\\r\n\\xca\\x2b\\x22\\x48\\x45\\xef\\x75\\xb8\\xbd\\xed\\x63\\xd3\\x97\\xab\\x2f\\x96\\\r\n\\x5b\\x0c\\x01\\x2c\\x75\\x10\\x3c\\x91\\x3c\\x84\\x4c\\x87\\x99\\x1a\\x9b\\xf8\\\r\n\\x81\\x2c\\xc1\\x74\\x22\\xe2\\xef\\xb7\\x7d\\x75\\xc7\\x15\\x4e\\x57\\xbb\\xaa\\\r\n\\x2b\\x02\\xf0\\xc3\\x9e\\x45\\xb0\\xe5\\xa2\\x2f\\x2c\\xd9\\x6e\\x73\\x33\\x32\\\r\n\\x5d\\x99\\x85\\xc5\\xf6\\xbe\\xa3\\x85\\x57\\x40\\x94\\x8d\\x00\\x42\\xed\\x04\\\r\n\\xa2\\xa1\\x58\\x0c\\xcc\\xea\\x24\\xf8\\xf7\\xbf\\x5b\\x15\\x52\\xd7\\xcd\\xd5\\\r\n\\x94\\xdb\\xb0\\x18\\x83\\x8a\\x7e\\xca\\xf6\\xd6\\x69\\xa0\\xe5\\x4f\\x49\\xc6\\\r\n\\xa8\\xe8\\xf9\\x8b\\xe7\\xca\\xbc\\x44\\xa1\\x17\\xb4\\x89\\x72\\x6f\\xe1\\x3a\\\r\n\\x83\\xda\\xd2\\x70\\x98\\x6b\\x24\\xaf\\xe3\\x1c\\x38\\x9b\\xcd\\x25\\x65\\x15\\\r\n\\x54\\x64\\x8b\\x3a\\x81\\x60\\x47\\x68\\xe6\\x49\\x16\\xeb\\x6b\\x73\\x14\\x9c\\\r\n\\xda\\x95\\xb4\\x14\\x67\\x85\\x54\\xd2\\xf1\\x18\\x7a\\xa0\\x91\\x51\\x2a\\xa2\\\r\n\\xbe\\x62\\xa4\\x0f\\x19\\x07\\xc3\\x66\\x3a\\x91\\xe5\\x6f\\x3c\\x71\\xda\\x68\\\r\n\\xe1\\xae\\x4a\\x88\\x6c\\xb1\\xd4\\xc7\\x98\\x11\\x61\\x76\\x23\\x36\\xc7\\xb1\\\r\n\\xdb\\xfa\\x61\\xe5\\x59\\x96\\x9e\\x66\\xa7\\x37\\x8d\\x44\\x6d\\x7c\\xa1\\xc3\\\r\n\\xf4\\x90\\xf6\\xfc\\x24\\x1f\\x10\\xfd\\x34\\xc3\\xd6\\xc3\\x4f\\x24\\x2d\\x97\\\r\n\\x32\\xe6\\xcb\\x94\\x6f\\xe9\\x6f\\x3d\\xb5\\xbe\\x38\\xf1\\x6f\\xd9\\x7c\\x88\\\r\n\\xca\\x08\\xa4\\xa6\\x90\\x3c\\x6d\\x97\\x39\\x0d\\x0e\\xe0\\x5f\\x4c\\xae\\x45\\\r\n\\xf4\\xf4\\xdb\\x14\\x33\\x55\\xcb\\xc0\\xa8\\x6c\\x90\\x89\\x8c\\x54\\x8b\\x4e\\\r\n\\x79\\xdc\\xc5\\x78\\x95\\x42\\x5d\\x81\\x0a\\x62\\x3a\\x1b\\x1e\\xa0\\x09\\x1a\\\r\n\\xb0\\xb5\\xea\\x20\\xa5\\x8b\\xf6\\x7c\\xd5\\x02\\x5a\\xb9\\xd6\\xad\\x3a\\x21\\\r\n\\x91\\x56\\x10\\xcd\\x98\\x8c\\xf6\\x05\\x99\\x81\\xd5\\xf2\\x8e\\xd9\\x56\\xc2\\\r\n\\xe7\\x14\\x19\\x6b\\x68\\x65\\x80\\x90\\xad\\x4e\\x7d\\xe6\\x1b\\x8d\\x91\\xaf\\\r\n\\x9a\\x23\\xff\\x00\\xb4\\x83\\xe5\\x6d\\xaf\\xb5\\x0f\\x33\\x9d\\x51\\x2b\\x5b\\\r\n\\x57\\x44\\x4c\\xa3\\xfe\\x58\\x00\\xec\\xb7\\x62\\x36\\xb5\\xbc\\xf5\\x18\\xe2\\\r\n\\x74\\xb2\\xd6\\x72\\xd1\\xa3\\x68\\x95\\xe2\\x99\\x25\\x79\\x14\\xc4\\x32\\x13\\\r\n\\x65\\xb9\\x7c\\x9a\\xde\\xcc\\xa3\\x7e\\xe4\\x0b\\xeb\\xc3\\x29\\x17\\x84\\x71\\\r\n\\x3e\\x23\\x5d\\x37\\x14\\xe1\\xf0\\xd3\\xad\\x25\\x39\\xa9\\x80\\x4e\\x67\\xa8\\\r\n\\x58\\x61\\x6a\\xa2\\xf2\\x34\\x10\\x2c\\x96\\x19\\x6d\\x6c\\xee\\xb7\\xca\\xfb\\\r\n\\xd8\\xe3\\x84\\x70\\x78\\x2b\\x79\\xbc\\x6e\\x0a\\xfa\\xfb\\xfb\\x4b\\x5d\\x24\\\r\n\\xd0\\x71\\x28\\x69\\xd2\\x82\\x11\\x1b\\x48\\xd1\\x51\\x44\\xf0\\x54\\x7b\\xcc\\\r\n\\xcd\\x4b\\x14\\x4a\\x22\\x54\\x96\\x38\\x84\\xa1\\x8b\\x8b\\x1b\\xe3\\x88\\xfb\\\r\n\\x69\\x4f\\xec\\x8c\\xf3\\x50\\x71\\xaf\\x67\\x26\\x8a\\x71\\x13\\xfb\\xb7\\x11\\\r\n\\x84\\x37\\x14\\xa6\\xaf\\x28\\x96\\x12\\x46\\xd5\\x4e\\x8b\\x02\\xc8\\xd6\\xcd\\\r\n\\x1d\\xbe\\x13\\x36\\x42\\xd9\\x45\\xf1\\xff\\x00\\xc5\\x8e\\x1f\\x3c\\x91\\x44\\\r\n\\x57\\x88\\x45\\x4c\\xd1\\x9e\\x69\\x10\\x43\\x4b\\x14\\x25\\x58\\x81\\xf0\\xe0\\\r\n\\x6f\\x88\\x96\\xd7\\xa4\\x92\\x9e\\x1d\\xce\\x28\\x7d\\xa1\\xe0\\x9c\\x52\\x14\\\r\n\\x96\\x13\\x4d\\x58\\x82\\x16\\xaa\\x00\\xb7\\x2e\\x46\\xe5\\x9c\\x87\\x32\\x36\\\r\n\\x59\\xad\\xd4\\x43\\x74\\x77\\xb6\\xc7\\x5f\\x7a\\xa5\\x95\\x20\\xcb\\x4f\\xcb\\\r\n\\xb2\\x00\\x02\\x36\\x50\\xa8\\xc2\\xd9\\x06\\x9d\\x22\\xfa\\x5c\\x6a\\x37\\xc7\\\r\n\\xb5\\x3c\\x56\\x5e\\x07\\x44\\xdc\\x42\\x18\\x20\\x35\\x12\\x91\\x18\\xe6\\xb2\\\r\n\\x72\\xf9\\x6f\\x70\\x92\\x14\\xce\\x26\\x95\\x8b\\x1c\\xab\\x61\\x6d\\xda\\x43\\\r\n\\x60\\x2f\\x27\\x1b\\xe3\\x15\\xd9\\x69\\x2a\\x6b\\x25\\x68\\x1a\\x75\\x22\\x9c\\\r\n\\x1c\\xb1\\xbe\\x76\\xcf\\xd6\\x10\\x2d\\xf2\\x93\\xd3\\xa7\\x60\\x34\\x1a\\x62\\\r\n\\x3e\\x65\\x3c\\x8d\\xcb\\xb5\\xc2\\xab\\x01\\x66\\xe8\\xc8\\xda\\x1d\\x75\\x16\\\r\n\\xdf\\x2e\\xc7\\xf5\\xc7\\x07\\xf6\\xaf\\x8a\\x71\\x5a\\x8f\\x70\\xe2\\x4f\\x14\\\r\n\\xd9\\x62\\x06\\x9a\\x48\\xe1\\x08\\x4b\\x44\\x3a\\xb3\\xbe\\x6b\\xb3\\x3a\\x2f\\\r\n\\x61\\xe2\\x1b\\x6b\\xa3\\xd7\\xf0\\x85\\x77\\x57\\xe2\\x14\\x68\\xea\\xcc\\xae\\\r\n\\x8c\\xe2\\xea\\xc0\\x90\\xca\\x74\\xdd\\x4e\\x87\\x1c\\x03\\x8b\\x7e\\xcd\\xe2\\\r\n\\x2a\\xd5\\xd2\\x4f\\x25\\x36\\x66\\x35\\x11\\x67\\x76\\x70\\x32\\xd9\\xcf\\x5b\\\r\n\\x11\\x98\\x69\\x6b\\x7d\\xae\\x71\\xec\\xff\\x00\\xb5\\xdc\\x22\\xbd\\xfd\\xd6\\\r\n\\x26\\x64\\x92\\xfa\\x24\\xa1\\xb9\\x8e\\x8a\\xac\\xd7\\x07\\xa8\\x2e\\x51\\xb8\\\r\n\\xb8\\x04\\x9d\\x2e\\x4d\\xf1\\xc5\\xfd\\xa1\\xa1\\xe0\\xca\\x65\\xcf\\x1c\\xd5\\\r\n\\x2d\\x11\\x78\\xa9\\x43\\xf5\\xc8\\xa7\\x50\\x76\\x61\\x18\\xf1\\x0b\\x91\\x72\\\r\n\\x6d\\x61\\xbe\\x28\\xbd\\xac\\xe2\\x5c\\x61\\xde\\x96\\x9a\\x80\\x40\\xef\\xfb\\\r\n\\xa0\\x5f\\x36\\x84\\x5e\\xef\\xd2\\x32\\x20\\x62\\xb7\\x26\\xdb\\xf7\\x3a\\x62\\\r\n\\x8f\\x83\\x47\\x4f\\x2c\\xad\\x50\\xa2\\x7a\\xb3\\x69\\x64\\x91\\x6e\\x14\\x67\\\r\n\\xd0\\xe4\\x1d\\x80\\x3d\\xee\\x6f\\xbe\\x22\\xa7\\x78\\x51\\x89\\x61\\x92\\xd7\\\r\n\\x88\\xe6\\xb9\\xd3\\x7b\\x8d\\xf2\\xeb\\xbf\\x4e\\xba\\x0c\\x21\\xa8\\x8e\\x37\\\r\n\\x9a\\xe0\\xa1\\x8c\\xc6\\xbe\\x69\\x35\\xec\\x09\\xed\\x94\\xad\\x8e\\x9a\\xe2\\\r\n\\x0a\\xf4\\x8a\\x36\\x8a\\x7c\\xd2\\x93\\xa6\\x83\\xff\\x00\\xd4\\x7f\\x2e\\xf8\\\r\n\\xad\\xe1\\x7c\\xc0\\x66\\xa7\\x5e\\x59\\xcb\\x72\\x9e\\xbe\\x96\\xf9\\xb5\\xfa\\\r\n\\x60\\x73\\x29\\x2a\\xe4\\x80\\xc6\\x72\\xb0\\x26\\xde\\x45\\x7a\\xb5\\xf2\\xd2\\\r\n\\xff\\x00\\x96\\x26\\xe2\\x13\\x08\\xb9\\x1c\\x3e\\x12\\xf5\\x32\\x12\\x4b\\xf8\\\r\n\\x92\\x20\\xda\\x66\\xb0\\xf1\\x1c\\xbb\\x83\\x65\\xde\\xe6\\xda\\x63\\xd9\\x3e\\\r\n\\x0d\\x25\\x04\\x55\\x35\\x95\\xc6\\x69\\x27\\xa8\\x4c\\x8c\\xec\\x2e\\x3a\\x7a\\\r\n\\x90\\x0b\\x6d\\xe5\\xd3\\xd3\\xa1\\xd8\\xe3\\x88\\x4d\\xef\\x93\\x49\\x4a\\x8e\\\r\n\\xd1\\x42\\xb2\\x5e\\x44\\x43\\x95\\x9e\\xec\\x5f\\xe2\\x65\\xec\\x5b\\x52\\xbe\\\r\n\\x5d\\x2d\\xbe\\xbc\\xb4\\x73\\x94\\xc7\\x0c\\x63\\x96\\xaa\\x8b\\x0a\\xe4\\x5b\\\r\n\\x2f\\xcc\\x57\\xf1\\xdf\\xc4\\xd7\\xd7\\x0f\\x9a\\x30\\x14\\x2d\\xec\\x2e\\xdd\\\r\n\\xef\\xa6\\xc3\\xd3\\xf9\\x0c\\x04\\xe6\\xac\\x92\\xdb\\x55\\x53\\xd5\\xdf\\x51\\\r\n\\xa1\\xdb\\xfb\\xf2\\xc5\\x1d\\x4c\\x42\\x96\\x99\\x25\\xcc\\x06\\x42\\x21\\xba\\\r\n\\x9b\\x49\\x2c\\x24\\x26\\x9a\\x0f\\x11\\x27\\x5b\\x6a\\x6f\\xae\\x98\\x79\\x22\\\r\n\\x8d\\x54\\x13\\x79\\x1c\\x5c\\x85\\xdc\\xfd\\x77\\xb1\\xfd\\x31\\x78\\xf9\\xfd\\\r\n\\x4b\\x2a\\x31\\x25\\x81\\x39\\x5c\\x79\\x8c\\xc3\\x28\\x3a\\x91\\xa5\\x8f\\xe4\\\r\n\\x71\\xc4\\x42\\x49\\x08\\x62\\xa5\\x4a\\xdc\\x06\\x03\\x5b\\x90\\xc3\\xb0\\xed\\\r\n\\x8f\\x71\\xce\\x95\\xef\\x18\\xcd\\xfe\\x1e\\x3a\\x8c\\xad\\x72\\x8e\\xb6\\x0c\\\r\n\\xdc\\xc0\\x3e\\x64\\xf1\\x24\\x8b\\x76\\x51\\xd2\\x43\\xa9\\x28\\x69\\x65\\xe7\\\r\n\\xd1\\xd2\\x91\\x3b\\x93\\x4e\\xb1\\x29\\x5c\\xec\\x99\\x61\\x2f\\x97\\x9b\\x95\\\r\n\\x4e\\x56\\x4b\\xe9\\x9c\\x06\\x17\\x02\\xf9\\x5a\\xea\\x17\\x9b\\x4f\\x07\\x32\\\r\n\\x02\\x1e\\x52\\xaa\\x19\\x0e\\x52\\x1e\\xdd\\x9f\\x37\\x49\\xb8\\xd0\\x16\\x1f\\\r\n\\xf5\\x2e\\xf8\\xa7\\xe2\\x34\\xfc\\xa3\\x0a\\x29\\xa7\\x67\\x63\\xd5\\x2c\\x0c\\\r\n\\xe8\\xa5\\x40\\xe9\\xbe\\x73\\xcb\\x03\\xa4\\x47\\xd7\\x2c\\x71\\x96\\x06\\x22\\\r\n\\x08\\xc7\\xb4\\x29\\xc5\\x42\\xd0\\x4b\\x44\\x02\\x88\\x12\\x68\\xcc\\x42\\x54\\\r\n\\x76\\x96\\xf9\\x6e\\xe7\\xde\\x16\\x5a\\x69\\x16\\xf9\\xb2\\x0e\\x61\\x90\\x5d\\\r\n\\x6e\\xc0\\x96\\x5c\\x0e\\x31\\xc9\\x8e\\x8c\\x4f\\x57\\x0f\\x3a\\x68\\xc4\\x31\\\r\n\\x1a\\x99\\x92\\x23\\x04\\x9c\\xa6\\xcd\\x08\\x34\\xf2\\xc3\\x0e\\x78\\xcd\\xed\\\r\n\\x27\\x31\\x80\\x91\\xc0\\x17\\x66\\xcb\\x81\\x5b\\xc3\\xaa\\x25\\x68\\xa9\\x64\\\r\n\\x8a\\x5a\\xc8\\x26\\x09\\x37\\x36\\x79\\x15\\x9a\\x35\\xc8\\x1e\\x34\\x8a\\xf0\\\r\n\\xb3\\xc7\\x03\\x02\\x2f\\xcb\\x76\\x26\\xf7\\x99\\x53\\x71\\x57\\x4d\\x34\\x4d\\\r\n\\x22\\x72\\x02\\x4f\\x2f\\xbb\\xa4\\x6b\\xcc\\x25\\x65\\x88\\x83\\x6c\\xd9\\xf3\\\r\n\\x31\\xca\\x14\\xe5\\xbd\\xd0\\xf5\\x96\\x7b\\x82\\x78\\x54\\xe2\\x82\\x39\\xa5\\\r\n\\x39\\x26\\x35\\x03\\xad\\x6a\\xc4\\xb2\\x27\\x85\\x97\\x2b\\xc6\\xb2\\xaa\\xcb\\\r\n\\x90\\x12\\x55\\xe5\\x52\\xea\\xc1\\x6c\\x74\\xb9\\xac\\xe2\\x34\\xf5\\x95\\x0b\\\r\n\\xcd\\xab\\x49\\x6a\\x94\\x88\\x1a\\x28\\x72\\x24\\xab\\x73\\x7a\\x6b\\xc7\\x02\\\r\n\\xe5\\x8e\\xe8\\x2d\\x9a\\x77\\x47\\x37\\x51\\x7d\\xb1\\xc7\\x22\\xf7\\x63\\x1c\\\r\n\\xf0\\x66\\x65\\x79\\x26\\xa6\\xa8\\x0e\\x55\\x5f\\x36\\x7c\\xf9\\x88\\x52\\xd7\\\r\n\\xb1\\xcd\\x7b\\xde\\xe0\\xe8\\x76\\xc0\\xac\\x8d\\x79\\x71\\x45\\x1a\\xb9\\x91\\\r\n\\x39\\x85\\x80\\x2a\\x37\\xea\\x03\\x2b\\x5c\\x2e\\x6b\\x8d\\xec\\xdb\\xda\\xd6\\\r\n\\xc5\\x65\\x34\\x7c\\x62\\x96\\x32\\x7e\\x15\\x4d\\x21\\xf8\\x6c\\x87\\x2b\\x65\\\r\n\\x3a\\x34\\x64\\xdb\\x50\\xe2\\xcc\\x2f\\x7b\\x15\\x3e\\xb8\\xfd\\x93\\x53\\x4a\\\r\n\\xa6\\xae\\x96\\xa3\\x33\\xc2\\xcc\\xe6\\x23\\xa3\\x0b\\x02\\x0f\\x9a\\x38\\x23\\\r\n\\x42\\x08\\xb1\\xd4\\x1c\\x49\\x4f\\x51\\xef\\xb4\\x15\\xcd\\x1b\\xc6\\x12\\xb1\\\r\n\\x10\\x9b\\x1c\\xb7\\x92\\xe4\\xd8\\x0b\\xe5\\x56\\x3f\\x6f\\xb5\\xb1\\xec\\x75\\\r\n\\x65\\x4a\\x41\\x52\\xe0\\x07\\x82\\xa6\\xbe\\xa9\\xa4\\x88\\xb1\\xb1\\x1e\\xf3\\\r\n\\x2a\\x12\\x9d\\xb3\\x8c\\x85\\x83\\x6e\\x36\\xc5\\x4d\\x3a\\xdc\\x34\\x46\\xd0\\\r\n\\xb9\\xba\\xed\\xa5\\xf7\\xd3\\x29\\xb3\\x03\\x7b\\xa9\\xb7\\x98\\xc7\\x19\\x81\\\r\n\\x65\\xa7\\x84\\xea\\xc6\\x96\\x73\\xd4\\x36\\x54\\x90\\x37\\x41\\x6d\\x2d\\x7f\\\r\n\\x97\\x4e\\xfb\\xe3\\xe1\\x4d\\x0c\\x6e\\x17\\x2b\\x47\\x1f\\x2c\\x77\\xe9\\x4e\\\r\n\\xc7\\xcf\\x6b\\xfe\\x98\\x8a\\x13\\x53\\xc4\\x92\\x30\\xb9\\xec\\x51\\x95\\x02\\\r\n\\xb5\\xc9\\x26\\xcd\\xaf\\xcb\\xe5\\x7b\\x6f\\x8a\\xbe\\x1e\\x38\\x8c\\x2f\\x1c\\\r\n\\xc1\\xe9\\xb9\\x51\\x98\\xe2\\xf8\\xc9\\x17\\x53\\xf8\\xd5\\x79\\xcc\\xa6\\x50\\\r\n\\x18\\xdd\\xac\\xad\\x7b\\xe9\\xdf\\x14\\x54\\xb4\\x54\\x54\\x31\\xd1\\x0e\\x23\\\r\n\\x1c\\x91\\xaa\\x98\\xe4\\xaa\\x88\\x9a\\xaa\\x87\\x68\\xdb\\x58\\x9f\\x94\\xab\\\r\n\\x07\\x2a\\x3d\\x54\\xa7\\x34\\x9c\\xdd\\xfa\\x45\\xea\\xbf\\x64\\x23\\xf0\\xd8\\\r\n\\x9f\\xf6\\x84\\xec\\xd5\\x81\\xa3\\x65\\x78\\x69\\xd1\\x9b\\x6b\\x4a\\xa4\\x4e\\\r\n\\xd9\\x56\\xf6\\x19\\x1c\\x31\\xfe\\x1f\\x1e\\x29\\xaa\\x56\\x0a\\xd8\\x55\\x69\\\r\n\\xa1\\xa7\\x49\\x01\\x8d\\x98\\x34\\xd3\\x6b\\x6e\\x91\\xfe\\x21\\xd9\\x35\\x20\\\r\n\\x5f\\xe1\\xe5\\x3b\\x6d\\x83\\xc4\\xeb\\x68\\xaa\\xe7\\xa2\\x9e\\x47\\x48\\x91\\\r\n\\xdd\\xa0\\x8e\\x93\\x97\\x0c\\x65\\x09\\xcb\\x65\\x8a\\x20\\xbd\\x79\\x2c\\x46\\\r\n\\xed\\x95\\x8d\\x9a\\xc3\\x14\\xf2\\x0a\\xa5\\x74\\xe6\\x72\\xa4\\x9d\\xe4\\x55\\\r\n\\x79\\x49\\xe6\\xf2\\x8d\\xb3\\x67\\xe6\\x85\\x6d\\x6d\\x6f\\xf6\\xc7\\xb6\\x32\\\r\n\\x1e\\x1a\\x7d\\xa8\\xa5\\x8f\\x2f\\x32\\xbe\\x8a\\x0a\\x0a\\x76\\x0d\\xae\\x69\\\r\n\\xf8\\x80\\x89\\xb2\\xd8\\x5a\\xfc\\x89\\xa4\\xbd\\x8f\\x63\\x8a\\x14\\x1c\\x37\\\r\n\\xd9\\xf9\\xfd\\x9e\\x9f\\x49\\xb8\\x75\\x34\\x12\\xd1\\xdf\\x40\\xf1\\xc1\\xcb\\\r\n\\xcc\\x10\\x9d\\x8d\\xc1\\xdb\\xf1\\x13\\xb6\\x38\\x87\\x2b\\x8f\\xf0\\x29\\x78\\\r\n\\x4f\\x12\\x89\\x64\\x91\\x44\\x2f\\x4b\\x52\\xd7\\x32\\x0e\\x66\\x65\\x49\\xd1\\\r\n\\xac\\x3a\\x94\\x66\\x57\\x17\\xca\\x74\\xcc\\x3c\\x36\\xe3\\x3e\\xce\\xcb\\xc1\\\r\n\\xeb\\x1a\\x87\\x88\\xc6\\x20\\xa8\\xe5\\xde\\x96\\x56\\x00\\xc5\\x34\\x6c\\xc0\\\r\n\\x89\\x21\\x6b\\xa8\\x19\\x95\\x42\\xf5\\x66\\x22\\xed\\x75\\x53\\x80\\x1a\\x29\\\r\n\\x02\\x67\\x78\\x1e\\x36\\x65\\x8a\\xcc\\xe0\\xa8\\x06\\xf9\\x14\\xab\\x5e\\xce\\\r\n\\x00\\x60\\x06\\x97\\xc7\\xb0\\xde\\xd6\\x73\\x80\\xe1\\x7c\\x66\\x6f\\x14\\xa1\\\r\n\\x68\\xaa\\x67\\x70\\x1f\\x3a\\xaa\\x2a\\xd3\\xcd\\x20\\x6c\\xb6\\x7b\\xab\\x42\\\r\n\\xda\\xdc\\x92\\xae\\xd6\\xca\\x0f\\xb7\\x53\\xb7\\x13\\xe3\\xcf\\x4f\\x72\\xb1\\\r\n\\x50\\x44\\x90\\x8d\\xac\\x26\\x44\\x66\\x90\\x58\\xe8\\x4a\\xb3\\x10\\x08\\x51\\\r\n\\x8a\\x28\\xcf\\xbc\\x42\\xf6\\x0a\\xa3\\xa5\\xcd\\xed\\x6c\\xb7\\x21\\xdb\\x41\\\r\n\\x6d\\x2c\\xb6\\xd7\\x5b\\x9b\\x8b\\x81\\x89\\x50\\x2b\\x37\\x29\\x8c\\x8b\\x60\\\r\n\\x4c\\xa7\\x5b\\xbd\\x85\\xfc\\xb4\\xd8\\x0d\\x77\\xf3\\xef\\xec\\xf5\\x24\\x8d\\\r\n\\xc7\\xb8\\x61\\x81\\x8b\\x05\\x32\\x4b\\x50\\x06\\x6b\\x46\\x16\\x19\\x0e\\x47\\\r\n\\x00\\x65\\x06\\x40\\x0f\\x57\\x57\\x63\\xa5\\xc5\\xea\\x7d\\x8b\\xa5\\x9e\\xa6\\\r\n\\xa2\\x7f\\x8a\\xbc\\xe9\\xe5\\x97\\x2e\\x40\\x72\\xf3\\x24\\x67\\xb5\\xf2\\xeb\\\r\n\\x6b\\xda\\xf8\\xf6\\xb7\\xd8\\xc7\\xa0\\x92\\x4a\\xba\\x14\\x32\\xd3\\xb1\\x66\\\r\n\\x3a\\x7e\\xee\\xfb\\xc6\\xe1\\x47\\x7f\\x95\\xad\\x63\\xa5\\xed\\xa6\\x28\\x56\\\r\n\\xa2\\x9e\\xaa\\x3a\\x94\\x4b\\xba\\xca\\xa0\\xc5\\xa8\\xcc\\x17\\x5c\\xa4\\x0b\\\r\n\\x76\\x16\\xcb\\x7f\\xcf\\xb5\\x35\\x1c\\xfc\\x46\\xae\\xc6\\xc6\\xa6\\xa6\\x4c\\\r\n\\xd2\\xbc\\xb9\\xad\\x0a\\x39\\x17\\x12\\x1d\\x2c\\x9b\\x04\\x50\\x75\\x23\\x28\\\r\n\\x3b\\xe3\\x87\\xd0\\x43\\xc2\\x0b\\xc2\\x8b\\x72\\xfd\\x26\\x66\\x03\\x33\\xba\\\r\n\\x80\\x41\\x2f\\xae\\x9e\\x40\\x1b\\x0d\\x6d\\xdf\\x0c\\xec\\x66\\xa5\\x9b\\x37\\\r\n\\x44\\xb7\\x82\\x57\\xd4\\x05\\x2d\\xe0\\xcc\\x7b\\x6a\\x31\\x0d\\x24\\x46\\xe8\\\r\n\\xc0\\x64\\xe5\\x85\\xb5\\xfa\\xb7\\xb9\\x24\\x8e\\xe7\\xcf\\x7d\\x75\\xc5\\x68\\\r\n\\x5a\\x77\\x34\\xe0\\x92\\xad\\xd4\\x99\\xbe\\xdf\\x62\\x47\\x9e\\x0c\\x73\\x8c\\\r\n\\xa4\\x0b\\x8c\\xc0\\xad\\x80\\xd3\\xd7\\x7c\\x45\\x5e\\x65\\x61\\x0c\\x8b\\x63\\\r\n\\xe7\\xaf\\x62\\x7b\\x6a\\x0f\\xe6\\x0f\\xa6\\x38\\xc2\\xd3\\x2b\\x90\\x34\\x99\\\r\n\\xa1\\xb3\\x39\\x20\\x8f\\x3c\\xbd\\x3d\\xc8\\xd8\\xff\\x00\\x63\\x86\\x40\\x04\\\r\n\\xbd\\x01\\x44\\x6e\\x9d\\x5a\\x59\\x99\\x8f\\xca\\xac\\x07\\xe9\\x84\\x8b\\xdd\\\r\n\\xf8\\x7a\\xe8\\x59\\x96\\x3b\\x85\\x3f\\x8a\\xd9\\xb2\\x0f\\xa6\\xc3\\xed\\xa6\\\r\n\\x33\\xe6\\x95\\xa6\\x23\\x5e\\x63\\xe6\\x0d\\x62\\xde\\x3d\\x9a\\xc3\\xb6\\xdb\\\r\n\\x61\\xdb\\x44\\x90\\x2d\\xce\\xc6\\xda\\x58\\x13\\xf4\\xfa\\xdf\\xcf\\x12\\xfe\\\r\n\\xfc\\x8c\\xe5\\x50\\xae\\x5b\\x0d\\x03\\x66\\x1a\\xa9\\x3d\\x85\\xae\\x0f\\xe4\\\r\n\\x46\\x18\\x06\\x53\\x00\\xd0\\x32\\x8c\\xda\\x5c\\x92\\x6c\\x15\\x13\\xd4\\xed\\\r\n\\xb9\\x24\\xeb\\x8e\\x19\\x56\\xa9\\x4d\\x5f\\x49\\x24\\x4e\\x8d\\xc3\\x24\\x32\\\r\n\\x64\\x91\\x41\\x70\\x1d\\x03\\x66\\x4e\\xe6\\x27\\x8d\\xb3\\x47\\x96\\xfb\\x11\\\r\n\\xe2\\x06\\xd7\\x84\\x45\\xef\\x6d\\x3a\\x72\\xc8\\xe6\\x3c\\xcc\\x40\\x55\\x06\\\r\n\\xda\\x0b\\x6c\\xa3\\x7d\\x37\\xd7\\xeb\\x8e\\x75\\x3c\\xd3\\xaf\\x26\\x68\\x65\\\r\n\\x28\\x40\\x7e\\x54\\x8a\\xe1\\x6f\\xa8\\xcd\\x96\\xfb\\xad\\xed\\x7d\\xc6\\x26\\\r\n\\xb4\\x85\\xe0\\x61\\xd2\\xc2\\x27\\x16\\xd0\\xd8\\xbe\\x56\\xcb\\xea\\x74\\xff\\\r\n\\x00\\xdd\\x8e\\x1e\\xe4\\xb5\\x2c\\x17\\x93\\x25\\x55\\x04\\xf4\\xe1\\x9f\\x73\\\r\n\\x20\\xe6\\x2a\\xdf\\xbe\\x85\\x32\\xea\\x74\\xc7\\x0f\\xe1\\xb5\\x0d\\xc2\\x62\\\r\n\\x90\\x09\\x21\\xa8\\xa1\\x79\\xfe\\x2a\\x74\\x33\\x46\\x1c\\xe6\\xd4\\x8b\\x32\\\r\n\\x15\\xd7\\x29\\xcc\\xad\\x6b\\x58\\xe1\\x2a\\xcb\\x9e\\x5c\\x9a\\x39\\xf1\\x08\\\r\n\\xec\\xa9\\x52\\x23\\xbb\\x0e\\x43\\x9c\\xc6\\x29\\x40\\x04\\x49\\x03\\x9b\\xa0\\\r\n\\xd6\\x3b\\x83\\x90\\x55\\xd1\\xca\\x86\\x37\\xa4\\xe2\\x15\\x30\\xa3\\xa6\\x63\\\r\n\\x14\\xcd\\x1c\\xc5\\x16\\xea\\x34\\xf3\\x7b\\xf5\\x75\\x58\\xdc\\x78\\x86\\x98\\\r\n\\xa4\\xe2\\x3c\\x5a\\x92\\x57\\x8a\\xb1\\x96\\x78\\x58\\x66\\x40\\x21\\xc8\\x66\\\r\n\\x6c\\xcb\\xa4\\x91\\x68\\x8b\\x9d\\x59\\x99\\x59\\x00\\xb1\\x1a\\xdb\\x42\\x6b\\\r\n\\x68\\xe9\\xb8\\x85\\x35\\x42\\x53\\x3a\\x43\\x3c\\x81\\x24\\x8d\\x65\\x50\\xd0\\\r\n\\x73\\x94\\xe6\\x01\\x58\\xf8\\x4b\\x1b\\xab\\x29\\xcd\\x96\\xf9\\x87\\x6b\\x70\\\r\n\\xae\\x13\\xc3\\xb8\\xa1\\x8d\\xf8\\x84\\x47\\x85\\x56\\xb7\\x3e\\x8e\\xae\\x6a\\\r\n\\x65\\x2d\\x3c\\x96\\x5c\\xae\\xc0\\xf4\\xa6\\x79\\x23\\x28\\x52\\x62\\x74\\xbd\\\r\n\\x81\\x61\\xbf\\x12\\xe0\\xab\\xc3\\xe3\\xa0\\xa6\\xa6\\x8e\\x55\\x5a\\x54\\xff\\\r\n\\x00\\x09\\x9e\\xe6\\x3a\\x86\\x9a\\x46\\xe6\\xcf\\x2e\\x6b\\xac\\x92\\x97\\xea\\\r\n\\x32\\x80\\x32\\x1d\\x01\\x17\\x61\\x89\\x23\\xe3\\x4f\\xc8\\x2a\\xf4\\xf2\\x50\\\r\n\\x47\\x23\\x23\\x4b\\x05\\xfd\\xe6\\xf9\\x08\\xe4\\xbc\\x19\\xdb\\x9a\\xe0\\x5b\\\r\n\\x31\\x8c\\x75\\x6f\\x6c\\xaa\\x4a\\xac\\x92\\xd4\\x48\\xe9\\x20\\x58\\x5f\\x96\\\r\n\\x67\\x04\\x59\\x4a\\x90\\x02\\xbe\\x58\\xc8\\xe8\\x67\\x16\\x26\\x36\\x6b\\xdf\\\r\n\\x31\\xf4\\xc7\\x11\\x88\\x72\\xb3\\x2d\\x49\\x9e\\x69\\x88\\x9f\\x29\\x50\\xa7\\\r\n\\xe1\\x30\\xe7\\x15\\x65\\x17\\x04\\xc7\\x65\\xb5\\xce\\xfb\\x6b\\x8e\\x17\\xc3\\\r\n\\x92\\x67\\x5a\\x86\\xe6\\x21\\x54\\x31\\x5b\\x70\\x7f\\xca\\x7c\\xbd\\x7b\\x7a\\\r\n\\xe2\\x0e\\x1d\\x24\\x72\\xb9\\xb5\\xe3\\x31\\x90\\xc0\\x9e\\xd7\\xff\\x00\\xfa\\\r\n\\xb6\\xdd\\xc6\\x6b\\xe2\\x3e\\x19\\x1c\\x71\\x05\\x5b\\xe6\\x65\\x29\\x76\\x39\\\r\n\\xba\\x59\\x83\\x58\\xde\\xf7\\x39\\x74\\xfb\\x9f\\x3c\\x71\\x3a\\x38\\xa2\\xa4\\\r\n\\x72\\x91\\xab\\x72\\x57\\xde\\x5a\\xea\\x2f\\xf0\\x88\\x27\\x4b\\x7e\\x1b\\xdb\\\r\n\\xbe\\xbd\\xf1\\xec\\x92\\x4f\\x17\\x0d\\x50\\xc8\\x61\\x59\\x0c\\xb3\\xab\\xce\\\r\n\\xbc\\x9e\\x99\\x6a\\xaa\\x5b\\xa4\\xbe\\x5d\\x2c\\x43\\x7a\\xdf\\xd7\\x0b\\xc4\\\r\n\\x29\\xe2\\x9a\\x6a\\x39\\x6b\\x20\\x90\\x4b\\x62\\x90\\x2b\\x07\\x91\\x5c\\xfc\\\r\n\\xc0\\x29\\x20\\x0d\\x75\\x25\\xac\\xc6\\xc0\\x5c\\x9b\\x62\\xae\\x78\\x69\\xf9\\\r\n\\xd0\\xcc\\xb2\\xb4\\x55\\x00\\x2d\\xbe\\x10\\x02\\xe6\\xc2\\x50\\x46\\x76\\xf8\\\r\n\\x46\\xcd\\xa0\\xcc\\xb6\\xf2\\xf1\\x41\\x33\\xa8\\x68\\xc4\\x21\\x02\\x3b\\x28\\\r\n\\xbc\\xb2\\x4c\\x64\\xbb\\x6e\\xa4\\xe4\\xb1\\xf2\\xe9\\x38\\xa2\\x5a\\xd7\\xaa\\\r\n\\x87\\x98\\xaf\\x0d\\x12\\xe6\\x2c\\x80\\xac\\x3c\\xc0\\xd6\\x5c\\xc4\\x0e\\xb7\\\r\n\\xb0\\x39\\xba\\xcd\\x9b\\x4f\\x2c\\x57\\x84\\x76\\x9a\\x4f\\x7f\\xa6\\x8e\\x56\\\r\n\\x52\\xad\\x0e\\x77\\x2e\\xf1\\x87\\x36\\x4b\\x46\\x08\\x53\\xf8\\x88\\xb6\\x9d\\\r\n\\x0d\\x74\\xbe\\x38\\x1d\\x19\\x8e\\x96\\xae\\x03\\x32\\xc9\\xfe\\x27\\x88\\xb4\\\r\n\\x6f\\x0b\\x06\\x19\\x1a\\x52\\xf6\\x6d\\x01\\x0c\\xb9\\xba\\xd0\\xf8\\x0a\\xef\\\r\n\\x6b\\x63\\x88\\x45\\x2c\\x75\\x54\\x21\\xc5\\xe3\\xe6\\x16\\x88\\xab\\x06\\xbe\\\r\n\\x8a\\x3a\\x6d\\xdc\\x5b\\xbd\\x88\\xc4\\x15\\x55\\x0d\\x0b\\x4b\\x99\\xb3\\x41\\\r\n\\x2c\\x6c\\xba\\x5e\\xe0\\x15\\xba\\xeb\\xe9\\xfc\\xfe\\x98\\xe3\\x3c\\xb0\\xf4\\\r\n\\x5c\\x56\\x15\\x01\\xea\\x12\\x39\\x0f\\x93\\x3a\\x05\\x07\\xcf\\x74\\xb2\\xd8\\\r\n\\x6c\\x14\\x9b\\x79\\x53\\x44\\xaf\\x0a\\xbb\\x05\\x2a\\xe9\\xd2\\xae\\x2f\\x98\\\r\n\\x1b\\x00\\x75\\x1f\\x31\\xd4\\x77\\xb5\\xbb\\xe3\\xdb\\x1a\\x5e\\x6f\\xb4\\xbc\\\r\n\\x1a\\x8b\\x28\\xe5\\xd4\\x71\\x3a\\x76\\x95\\x16\\xfe\\x08\\x5e\\x29\\xdc\\x06\\\r\n\\x6b\\x69\\x95\\x9c\\xda\\xe2\\xc3\\x6d\\xf4\\xe3\\x7c\\x3a\\x51\\x4d\\x4f\\xce\\\r\n\\x7c\\xee\\x12\\x57\\x8e\\xad\\x35\\x63\\x09\\xd1\\xa9\\xe4\\x1a\\x3b\\x64\\x07\\\r\n\\x46\\xeb\\x39\\x73\\x66\\x3a\\x6b\\x1a\\x67\\xa0\\xa4\\xe4\\x98\\xe4\\xa9\\xa4\\\r\n\\x9d\\xf5\\x49\\x6e\\x1a\\x2d\\xc2\\x48\\x34\\x61\\x9c\\xdc\\x6a\\xb6\\xb9\\xec\\\r\n\\x75\\x1e\\xd2\\xf0\\x9e\\x19\\xed\\x55\\x04\\x14\\x75\\x30\\x32\\xd4\\x2e\\x5f\\\r\n\\x73\\xaa\\xd1\\x65\\xa4\\x90\\xa8\\x3d\\x27\\x51\\x22\\x5f\\xc4\\x84\\x18\\xdc\\\r\n\\x8e\\x9b\\x35\\x98\\x7b\\x49\\xec\\xf5\\x7f\\x00\\xae\\x2b\\x5e\\x39\\xd0\\x58\\\r\n\\xf2\\xab\\xe9\\x62\\x66\\x89\\xe2\\x63\\x65\\x69\\x63\\x39\\x9a\\x27\\x46\\x1a\\\r\n\\x90\\x58\\x8f\\xc5\\xd5\\xac\\x14\\xe4\\x4e\\x07\\x33\\x94\\xd5\\x14\\x90\\x3c\\\r\n\\x31\\x82\\xe4\\x34\\xa1\\x74\\x9d\\x73\\xf7\\x90\\x59\\xb2\\xc6\\x6c\\x2d\\x60\\\r\n\\x01\\xb8\\x10\\xd7\\x19\\x6a\\x4c\\x73\\xc8\\x1e\\xa9\\xd9\\x65\\xce\\xd9\\xbe\\\r\n\\x33\\xe5\\xb3\\x75\\x90\\x73\\x6a\\x18\\x1b\\x9c\\xd9\\xaf\\x70\\x6e\\x2f\\x47\\\r\n\\x49\\x16\\x69\\xde\\x41\\x98\\x30\\x2d\\x65\\xd5\\x15\\xef\\xe1\\xcc\\xa3\\x4d\\\r\n\\x47\\xa6\\xa7\\x6d\\xb1\\x2c\\x4e\\xee\\x96\\xb8\\x08\\x96\\x48\\x4e\\x5c\\xa3\\\r\n\\xd4\\xd8\\x5d\\xdb\\x4e\\xfa\\xdb\\x1c\\x3b\\x8f\\x70\\xfe\\x0b\\xc5\\xe5\\xab\\\r\n\\xa9\\x97\\x27\\xba\\xd2\\x48\\x0c\\x50\\x30\\xe7\\x54\\xcd\\x27\\x42\\x43\\x1a\\\r\n\\x91\\x94\\xaa\\x66\\x2d\\x2b\\x74\\xe4\\x50\\x45\\xdb\\xc2\\x7f\\xf8\\xcf\\x48\\\r\n\\x34\\x3c\\x29\\xee\\x34\\x3f\\xe3\\x57\\x71\\xf4\\x8a\\xdf\\x96\\x29\\xab\\x21\\\r\n\\xe2\\x14\\xac\\x64\\xb4\\xec\\x22\\x51\\x53\\x1a\\xad\\x80\\x2d\\xa1\\x05\\x5b\\\r\n\\x4c\\xac\\x41\\x3e\\x22\\x47\\x60\\x06\\x3f\\xf0\\x54\\x1f\\xb5\\xa5\\xab\\xa4\\\r\n\\x94\\x25\\x3b\\xaf\\x33\\x2c\\xc8\\x4b\\x46\\xf6\\xf0\\xc6\\x37\\x23\\x4d\\xf7\\\r\n\\xdb\\x1c\\x3f\\x83\\xa7\\x0f\\x8d\\xcf\\xef\\x26\\x95\\xf3\\x49\\x21\\x5c\\xbe\\\r\n\\x1b\\x85\\x0a\\x35\\x20\\x7a\\x12\\x6d\\xe7\\x8a\\x9b\\xbe\\x78\\xb4\\x0f\\x7c\\\r\n\\xc8\\x6d\\xa6\\x61\\xb7\\xe7\\x6b\\x7f\\x4c\\x75\\x1e\\x11\\x28\\x2d\\xcb\\x9b\\\r\n\\x99\\x9c\\x47\\x7d\\x8c\\x27\\x3e\\x6b\\x6a\\x7a\\x8d\\x82\\xdf\\x41\\x73\\xa6\\\r\n\\x1f\\x89\\xd6\\x45\\xca\\xa8\\x8c\\xf4\\xbc\\x6a\\x65\\x89\\xae\\x51\\x80\\x06\\\r\n\\xc4\\x1e\\xc6\\xdf\\x73\\xf4\\xc4\\x55\\xb0\\x71\\x2b\\x39\\xf1\\x1d\\x32\\x9d\\\r\n\\x1b\\x4f\\x21\\xe9\\xfd\\x31\\x9e\\x58\\x97\\x92\\xfa\\xa1\\xe9\\x49\\x2f\\xa8\\\r\n\\xbd\\xf4\\x3f\\xd8\\xff\\x00\\x4a\\x78\\xe2\\x81\\x64\\xce\\x55\\x85\\xae\\xa4\\\r\n\\x8e\\xa1\\x6f\\x53\\x7d\\xc6\\x38\\x92\\xb4\\x62\\x95\\xfa\\x55\\xa6\\x77\\x91\\\r\n\\xae\\x5b\\x3e\\x52\\x2c\\xa3\\xc8\\xa8\\x06\\xc7\\x5d\\xff\\x00\\x3c\\x52\\xd5\\\r\n\\x2a\\x4a\\x93\\xc4\\xd6\\xe4\\x3d\\xb9\\x7a\\xd8\\x9d\\xd9\\x4a\\x9d\\x3e\\xff\\\r\n\\x00\\x91\\xc1\\xf6\\x8e\\x0a\\xda\\x39\\x19\\x15\\x52\\x78\\xa3\\x23\\x94\\x5b\\\r\n\\xc4\\xc4\\x1b\\x15\\xda\\xf7\\x23\\xd7\\x41\\xa7\\x96\\x28\\x33\\x32\\x3b\\x12\\\r\n\\xa1\\x8b\\x37\\x48\\x4e\\xc4\\x93\\x6d\\x4d\\xc1\\xb5\\xef\\x7b\\x9e\\xf7\\xc5\\\r\n\\x39\\x25\\x26\\x46\\xb0\\x68\\xc9\\x23\\xcc\\xa9\\xbd\\xaf\\xa7\\xdc\\x79\\xf7\\\r\n\\xd3\\x10\\xcb\\x70\\xec\\xfa\\xb9\\x90\\xaa\\xa8\\xf1\\x58\\x1c\\xb7\\x36\\xd7\\\r\n\\xfa\\x69\\xae\\x04\\x62\\x69\\x0c\\x6c\\xcf\\x96\\x25\\xcc\\x4d\\xfc\\x52\\x9c\\\r\n\\xcb\\x18\\xbe\\x97\\x02\\xe5\\xb2\\xf7\\xef\\x89\\x61\\xac\\x8f\\xdd\\x38\\x9e\\\r\n\\x5c\\xd5\\xd4\\xc9\\xca\\xaa\\xa7\\xbd\\xd3\\x88\\xf0\\xe2\\x4f\\x3a\\x21\\x7d\\\r\n\\x45\\x4c\\x60\\x8a\\x8a\\x40\\x4d\\x8c\\x8a\\xd0\\x36\\x93\\x13\\x8e\\x2a\\x02\\\r\n\\xd3\\x4f\\x0f\\x0f\\x66\\x68\\x6a\\xe1\\x63\\x12\\x1f\\x88\\x8f\\x14\\xba\\x86\\\r\n\\x4b\\x1d\\x17\\x5e\\xd6\\x20\\xe3\\xd9\\x9a\\x16\\xe1\\xb4\\x12\\x44\\xd1\\xa8\\\r\n\\x7e\\x71\\x92\\x59\\x43\\xe6\\x73\\x63\\x94\\x06\\xd3\\xc2\\x06\\xdb\\x6f\\xb6\\\r\n\\xd8\\x77\\x83\\x35\\x1c\\xcd\\x22\\x94\\x2a\\xc9\\x25\\xbb\\x5e\\xd9\\x73\\xdf\\\r\n\\x2a\\x81\\x71\\xe6\\x75\\x23\\x43\\xae\\x27\\xe3\\x7c\\x32\\x92\\xae\\x1c\\xb0\\\r\n\\xab\\xad\\xf2\\x19\\x56\\x22\\xcd\\x1d\\xb3\\x66\\x22\\xe0\\x2a\\xde\\x46\\x6b\\\r\n\\x9d\\x2e\\x08\\x38\\x7e\\x3d\\x41\\x39\\x30\\x2b\\xcc\\x08\\xb6\\xbc\\xb2\\x44\\\r\n\\x8a\\x7a\\x72\\x95\\x5b\\xb2\\x8f\\x5b\\x28\\xb0\\xe9\\xd2\\xd8\\xa7\\x5a\\x4a\\\r\n\\xb4\\xe4\\xca\\x23\\x20\\xb6\\x56\\x2c\\x72\\x68\\xdb\\x2e\\xa5\\x58\\x35\\x86\\\r\n\\xe0\\xe8\\x6c\\x74\\x38\\x8e\\x55\\xa5\\xaa\\x6a\\x79\\x9f\\x3c\\x2a\\x88\\xb1\\\r\n\\x55\\xb2\\x99\\x3a\\x98\\xde\\x14\\xaa\\x7d\\x14\\x66\\xd1\\x45\\x51\\xf8\\x63\\\r\n\\xfe\\x6f\\x57\\x8a\\xba\\x9f\\xe1\\xa4\\xe4\\x24\\xc1\\x7a\\x4f\\x2c\\x5b\\x22\\\r\n\\x28\\x39\\x9a\\x29\\x6e\\x99\\x9a\\xf6\\xca\\x96\\x28\\x56\\xf7\\x2b\\x7c\\x4d\\\r\n\\x4a\\x16\\x94\\x3b\\xd5\\x0c\\x97\\x59\\x6f\\xa3\\x34\\x89\\x1b\\x5c\\x81\\x18\\\r\n\\x16\\x27\\x42\\x8c\\x4d\\x85\\xef\\x65\\x6c\\x70\\xfa\\xda\\x76\\x8f\\xde\\x52\\\r\n\\x75\\x65\\xb6\\x56\\x7f\\x98\\x00\\x74\\x56\\x51\\xe1\\x71\\xa5\\xad\\xf2\\xf7\\\r\n\\xc7\\x15\\xe2\\x35\\x9c\\x43\\xdd\\x29\\xe9\\x5a\\x69\\x1a\\x06\\x58\\x97\\x23\\\r\n\\xe6\\xe5\\x5c\\x66\\x50\\xe9\\x21\\x42\\x90\\x1b\\xe6\\xba\\x1b\\x78\\xba\\x74\\\r\n\\x38\\xab\\xfd\\xa1\\x0c\\x71\\x54\\x4b\\x11\\xa3\\xa8\\x13\\xb3\\x47\\x34\\x32\\\r\n\\xaa\\xe7\\x0b\\x74\\x91\\x8f\\x27\\x33\\x25\\xd9\\xc6\\xaa\\xc7\\x39\\xb9\\xe5\\\r\n\\x93\\xa6\\x28\\xea\\xd7\\x89\\x47\\x24\\x55\\xb4\\x52\\x48\\xd1\\x46\\xa1\\x24\\\r\n\\x8a\\x29\\xa4\\x79\\x52\\xc7\\x33\\x92\\x13\\x36\\x7f\\xc4\\x6c\\xa1\\x8e\\x6d\\\r\n\\x2f\\x70\\x26\\xa3\\xc9\\x5d\\x4f\\x3d\\x3c\\x57\\xa4\\xa7\\x49\\x23\\xcb\\x57\\\r\n\\x34\\x74\\xf6\\x69\\x1c\\xf3\\x01\\x49\\xe5\\x46\\x51\\x94\\x0c\\xbd\\x21\\xae\\\r\n\\x36\\xb6\\x87\\x87\\xa5\\x3a\\x43\\x19\\xa6\\x2d\\x3c\\x4e\\x7a\\x1a\\x34\\x76\\\r\n\\x4b\\x8b\\x5c\\x2c\\x85\\x16\\x36\\x02\\xc5\\x49\\xbf\\x6e\\xda\\x62\\x4a\\x96\\\r\n\\xe5\\x19\\x12\\x9f\\x38\\x20\\x30\\x26\\x68\\x54\\xb7\\x6d\\x94\\x48\\xa7\\xd2\\\r\n\\xcf\\xaf\\x9e\\x07\\x13\\xe5\\xe6\\x32\\xa3\\x47\\x90\\xe9\\xf0\\x4b\\x9b\\x1e\\\r\n\\xf9\\xd9\\x8a\\xf9\\x81\\xa1\\x1a\\x62\\x7e\\x23\\x4c\\x62\\xce\\x6a\\xcd\\xe5\\\r\n\\x56\\x74\\x59\\xe4\\xe5\\xab\\x11\\x7c\\xab\\x96\\x21\\x18\\x02\\xe3\\x41\\x6b\\\r\n\\x9c\\xd6\\xb9\\xc7\\x0e\\xab\\xac\\x9e\\x1a\\x5e\\x64\\xb1\\x53\\xc9\\x3d\\x29\\\r\n\\x79\\x6d\\x18\\xc8\\x8d\\x9c\\xb0\\x58\\x94\\x11\\x76\\xc8\\x40\\x52\\xd9\\x8d\\\r\n\\x81\\xbe\\xe4\\xe2\\xb7\\x87\\xcd\\x5b\\x5f\\x99\\xa7\\x45\\xc9\\x18\\x91\\x67\\\r\n\\x0a\\x7a\\xfa\\xb2\\x98\\x8a\\xa5\\x94\\x48\\x02\\x86\\x16\\x27\\x30\\xb9\\xca\\\r\n\\xa1\\x70\\xc9\\x14\\x31\\xc7\\x05\\x45\\x42\\x4a\\x59\\xc9\\x8f\\x3e\\x50\\xe1\\\r\n\\xbc\\x25\\x40\\xcc\\x49\\xbf\\xff\\x00\\xaf\\xcc\\x36\\xc3\\x38\\x83\\xe2\\x20\\\r\n\\x6d\\x0d\\xc5\\xf5\\x17\\x1a\\x06\\xb7\\x7e\\xf6\\xbe\\x87\\xbe\\x2a\\xaa\\xe2\\\r\n\\x6a\\x77\\xf7\\x89\\xa4\\x33\\x68\\x23\\xcb\\x7b\\xf5\\x5c\\x5b\\x24\\x56\\x45\\\r\n\\xcb\\xd2\\x48\\x20\\x69\\xae\\xe7\\x14\\xa9\\x01\\x40\\x16\\x9e\\x49\\x59\\x54\\\r\n\\x36\\xd9\\x7c\\x5d\\xbc\\x81\\x3d\\x96\\xfa\\x6c\\x5b\\x14\\xbc\\x26\\x1a\\x1f\\\r\n\\x7b\\x8b\\xaa\\xef\\x3c\\xb5\\x8d\\x1d\\x99\\x8a\\x34\\xea\\x32\\x45\\x9b\\x4b\\\r\n\\x06\\x23\\x40\\x00\\x24\\x13\\x98\\x9b\\x90\\x24\\xae\\x77\\x92\\x92\\x3a\\x98\\\r\n\\x83\\xcd\\x43\\x3c\\xc0\\x08\\xed\\x08\\x9a\\x3b\\x8e\\x53\\xb5\\xc3\\x04\\x75\\\r\n\\xb6\\x49\\x23\\x17\\xcd\\xa3\\xab\\x65\\x6c\\x41\\x55\\x4b\\x3a\\xba\\xc7\\x19\\\r\n\\x8a\\x36\\x53\\x9d\\x9b\\x46\\xe6\\x5a\\xd6\\xb5\\xac\\x72\\x9f\\x5f\\xe5\\x89\\\r\n\\x50\\x3f\\x05\\x48\\xae\\x39\\x90\\xe6\\x64\\x07\\x5b\\x03\\x75\\x23\\x5d\\x7c\\\r\n\\x32\\x06\\x1e\\x43\\x11\\xd7\\xbd\\x05\\x25\\x0c\\x96\\xe6\\x04\\x90\\x47\\x2a\\\r\n\\x1d\\x80\\x75\\x65\\xf3\\xd0\\x02\\x97\\x1a\\x77\\xc7\\x18\\x74\\xe2\\x5e\\xda\\\r\n\\x70\\x06\\x8d\\x04\\x6a\\x5e\\xa6\\x4e\\xab\\xe8\\xc2\\x8a\\xc1\\x6f\\xaf\\xce\\\r\n\\xa0\\x5e\\xf8\\xe7\\x99\\x29\\x5a\\x29\\x40\\x6e\\x5a\\x80\\x9a\\x5c\\x86\\x17\\\r\n\\x36\\xfa\\x30\\xe9\\x3f\\x5c\\x05\\xe5\\xd6\\x54\\xc5\\x12\\x59\\x79\\x8c\\xf1\\\r\n\\x8b\\xdf\\x28\\x71\\xa9\\xfa\\x8b\\xd8\\x5b\\x40\\x6d\\x61\\x88\\x79\\x8d\\x25\\\r\n\\x31\\x0c\\xcd\\x03\\x8e\\x94\\x90\\x28\\x68\\x5c\\x12\\x14\\x7c\\x4b\\x13\\x19\\\r\n\\xd6\\xe0\\x11\\xad\\xfe\\xfc\\x77\\x86\\xc7\\x5d\\x3b\\x82\\x47\\x44\\x32\\x92\\\r\n\\x0b\\x73\\x23\\xb8\\x17\\x11\\xf2\\xcd\\x95\\x73\\x0c\\xd9\\x99\\x59\\xba\\x0e\\\r\n\\xb9\\xb2\\x85\\xc5\\x57\\xb3\\xd0\\xd5\\x4b\\x34\\x7c\\x3a\\x5f\\x70\\xe2\\x50\\\r\n\\xf8\\xe8\\x6a\\x15\\x4c\\x72\\x7e\\x0c\\xaa\\xde\\x08\\xa4\\x06\\xeb\\x34\\x2d\\\r\n\\xcb\\x20\\xdc\\x9b\\x9b\\xe2\\xba\\xa3\\x8d\\xf0\\x8a\\xa8\\x63\\xe2\\x5c\\x39\\\r\n\\x03\\xd3\\x83\\xca\\x36\\x96\\x35\\x74\\x46\\xcc\\xaf\\x9c\\x33\\x09\\x15\\x9a\\\r\n\\xe0\\x3a\\x9d\\xbb\\x9e\\xdc\\x37\\xfe\\x22\\x2c\\x0a\\x61\\xa9\\xe1\\xa5\\x22\\\r\n\\x94\\xe6\\xcf\\x0c\\xb7\\x7d\\x32\\xdb\\x46\\x1e\\x03\\xa9\\xf1\\x6f\\x6c\\x51\\\r\n\\xfb\\x53\\x57\\xc7\\xaa\\xda\\x96\\x82\\x8d\\x29\\x61\\x66\\x48\\x9a\\xbe\\xb6\\\r\n\\x47\\x54\\xa6\\xe6\\xc8\\x21\\x49\\x27\\x78\\xd7\\x97\\x0a\\x33\\xb2\\xa0\\x66\\\r\n\\xce\\x35\\x24\\xe8\\xa4\\x8e\\x13\\xec\\x5f\\x1d\\xe2\\xdc\\x5e\\xaa\\x8a\\xb2\\\r\n\\x37\\xa2\\x8e\\x82\\xa1\\xe3\\xae\\xaa\\x98\\x48\\xca\\x25\\x89\\x5a\\x4e\\x45\\\r\n\\x3e\\x96\\x95\\xdd\\x17\\x3c\\x6e\\x0f\\x2c\\x86\\x53\\x9a\\xc4\\x62\\x2f\\x60\\\r\n\\xbd\\x98\\x48\\xa2\\x43\\xc2\\xe1\\x72\\x91\\xa2\\x97\\x76\\xeb\\x72\\xaa\\x06\\\r\n\\x67\\xd7\\xc4\\xd6\\xbb\\x7a\\xe3\\x80\\xc6\\x63\\xa0\\x11\\x48\\x2d\\x52\\xaf\\\r\n\\x7a\\x91\\x6c\\xb6\\x94\\x81\\xd3\\x94\\x6a\\x02\\xae\\x83\\x37\\xa9\\xd2\\xf6\\\r\n\\x0b\\x74\\x04\\xe9\\x71\\x7b\\x5f\\x6f\\x4f\\xf7\\xc2\\xda\\x5f\\x30\\x76\\xd6\\\r\n\\xde\\x9a\\xfe\\x7b\\x5f\\xcb\\xe9\\x8a\\xd8\\x59\\x4a\\x4c\\x57\\x2e\\x59\\x2c\\\r\n\\xde\\xa9\\x98\\x59\\x81\\xb6\\x80\\xfa\\xfe\\x2f\\xca\\x78\\xf2\\xd5\\xb8\\x03\\\r\n\\xa2\\x55\\xba\\xeb\\xbe\\x6d\\x4f\\x97\\x7d\\x3f\\x9e\\x28\\x84\\x4f\\x9a\\x2b\\\r\n\\x0e\\x8e\\x92\\x1b\\x5f\\xd3\\xd0\\x62\\x4e\\x1b\\x16\\x61\\xc8\\xf8\\x7f\\x13\\\r\n\\x35\\xd7\\xa0\\x35\\xff\\x00\\xa0\\x3f\\x41\\x89\\x9a\\x55\\x48\\xe1\\x91\\x55\\\r\n\\x9e\\x45\\x62\\x85\\x8d\\xb3\\x22\\x68\\x5b\\x41\\x7d\\x08\\xb0\\x3e\\x7d\\xf1\\\r\n\\x48\\x1e\\x56\\x74\\x79\\x10\\xc7\\x94\\xb2\\xd8\\x5b\\x96\\xa8\\x6e\\xc5\\x8b\\\r\n\\x12\\x72\\x91\\x7b\\x93\\xa5\\xbc\\xb1\\xc4\\x2b\\x13\\x88\\x42\\xd1\\xd3\\xd3\\\r\n\\xb4\\x86\\x36\\xf8\\x52\\x81\\xde\\xf6\\x16\\x00\\x66\\xc9\\xe7\\xfc\\xc6\\x29\\\r\n\\x49\\x28\\xaa\\xd6\\x69\\x1e\\xe6\\x55\\x68\\xc8\\x68\\xdb\\x31\\x50\\x01\\x37\\\r\n\\xcd\\x75\\x19\\xaf\\xa1\\xd6\\xc7\\xcc\\xa2\\x64\\xcc\\x00\\xcb\\x9a\\xe0\\x31\\\r\n\\x1f\\x35\\x8d\\xbc\\x87\\x7c\\x51\\xb7\\x2a\\xf7\\x63\\x7d\\x5b\\x55\\xdd\\x99\\\r\n\\xb5\\x06\\xc7\\x72\\x7f\\x9e\\x2a\\x25\\xe5\\x16\\x9e\\xdc\\xb5\\x64\\x28\\x73\\\r\n\\x76\\x3d\\x87\\xa5\\xf4\\x20\\x6b\\xf7\\xc4\\x2f\\x0e\\x40\\xe5\\x62\\x46\\x10\\\r\n\\x05\\x55\\x50\\x40\\xbe\\xe6\\x57\\x60\\xd9\\x99\\xc9\\x3e\\x5a\\x1d\\x02\\xdb\\\r\n\\x1c\\x3d\\x43\\x2b\\x66\\x95\\x04\\x92\\xb8\\x94\\x20\\x43\\x9d\\x40\\xe8\\x17\\\r\n\\x2c\\x75\\x04\\x0b\\xd8\\x6a\\x2f\\x7e\\xf8\\x2f\\x4d\\x90\\x2c\\xb2\\x30\\x08\\\r\n\\x0b\\x97\\x60\\x10\\x2e\\x9a\\x9c\\xc7\\x61\\xe8\\x7f\\x96\\x12\\x92\\x38\\x2a\\\r\n\\x4f\\xbb\\xcb\\x96\\x2a\\x8e\\x74\\x94\\x2c\\xe0\\xbc\\x6a\\xc2\\xef\\x35\\x3a\\\r\n\\xe6\\xd0\\x21\\x25\\xe6\\x8d\\x76\\xd5\\xc0\\xd9\\x70\\x25\\x79\\x47\\x40\\x5c\\\r\n\\xcb\\x9a\\x39\\x98\\x28\\xc8\\xe4\\x66\\xd5\\x07\\x9f\\xaf\\x9e\\xdb\\x62\\x2a\\\r\n\\x59\\x2a\\x27\\x8d\\xa5\\x77\\xc8\\x8d\\xd2\\xa2\\xe0\\x1d\\xbc\\xf4\\xdf\\x53\\\r\n\\xe7\\x6c\\x1e\\x18\\xb3\\x30\\x08\\x00\\x8f\\x76\\x36\\x17\\xbb\\x6f\\xa8\\xfa\\\r\n\\x0d\\x35\\xc7\\xb8\\x24\\x4a\\x0a\\xa5\\xb3\\x1b\\x06\\x23\\x5e\\x91\\x6d\\x6c\\\r\n\\x01\\xb7\\xa1\\xef\\x89\\xe8\\xe3\\x7d\\x1d\\x6e\\x2f\\x7b\\x01\\x6d\\x7b\\x3e\\\r\n\\xdb\\x8f\\xe5\\xb6\\x0a\\x30\\xe5\\x41\\x39\\xbd\\x2e\\x5c\\xa5\\x9b\\xa5\\x34\\\r\n\\x6e\\x94\\x96\\xd9\\x81\\x0c\\xb7\\x4b\\xdb\\x31\\x04\\x8b\\xe5\\x62\\x31\\x3c\\\r\n\\xed\\x48\\x04\\x4f\\x30\\x93\\x87\\xb8\\x01\\x19\\x5e\\x49\\x64\\xa3\\x0d\\xb0\\\r\n\\x66\\x91\\x73\\xcd\\x44\\x75\\x23\\xac\\x34\\x7a\\x0c\\xdc\\x91\\x90\\x3c\\x42\\\r\n\\xc8\\xd1\\x87\\xa8\\x8c\\x07\\x0c\\x12\\xe1\\x5d\\x18\\xdf\\xa5\\x47\\x34\\xa0\\\r\n\\x61\\x63\\xa2\\xd8\\x8e\\xbb\\x5b\\x13\\xb4\\x60\\x05\\x58\\x54\\x26\\x62\\x48\\\r\n\\xcc\\xe9\\x20\\x78\\x74\\x37\\x46\\xa7\\x56\\x60\\xa6\\xca\\xcd\\xa0\\xfa\\xdf\\\r\n\\x36\\x29\\x8a\\xad\\x43\\x55\\xcf\\x10\\xe5\\xbd\\x82\\xbc\\x8a\\xcd\\x16\\x66\\\r\n\\x42\\x08\\xca\\x64\\x91\\x18\\xa0\\x36\\x51\\x61\\xa3\\x66\\x2b\\xf8\\x7d\\xf9\\\r\n\\x81\\x63\\xef\\x72\\x16\\x04\\xaa\\x11\\xd3\\x1a\\x40\\xed\\xd4\\xb7\\x40\\x92\\\r\n\\x13\\xb6\\xc7\\x52\\x2e\\x6f\\xbe\\x1b\\x87\\xac\\xeb\\xcc\\x82\\x7f\\x79\\x56\\\r\n\\xd6\\x50\\xd9\\xee\\x18\\xe6\\xb9\\xeb\\x3b\\x6a\\x2f\\xb1\\xf2\\xbe\\x3f\\x67\\\r\n\\x46\\xa0\\xa1\\x8b\\x4d\\x73\\x0f\\x94\\xe9\\x62\\x7e\\xfb\\x6c\\x3d\\x07\\x7c\\\r\n\\x3c\\x4d\\x45\\x01\\x85\\x5a\\x55\\xa2\\x3b\\xd3\\xc7\\xb6\\x7c\\xc0\\x93\\x9b\\\r\n\\xc4\\x1a\\xfa\\xf8\\x82\\x86\\xbb\\x6b\\x72\\x71\\x40\\xf1\\xfb\\x9c\\x06\\x4b\\\r\n\\x3c\\x31\\x20\\x4c\\xd1\\x66\\x50\\x84\\x1f\\x86\\xaf\\x1d\\xae\\x2e\\x99\\x6f\\\r\n\\x98\\x10\\x49\\xd1\\x8d\\xc6\\x1a\\xb0\\x54\\xbc\\xe2\\x42\\x51\\x59\\x08\\x44\\\r\n\\xe5\\xe5\\xe9\\x02\\xf6\\x0d\\xa8\\x24\\xd8\\x5d\\x6f\\xdc\\xe9\\x89\\xea\\xa8\\\r\n\\x96\\x00\\x27\\x61\\x9a\\x41\\x74\\x8c\\x8e\\xbb\\x5c\\xdb\\xa4\\xed\\x6b\\x69\\\r\n\\xe9\\x8a\\x73\\x5b\\x57\\x93\\x22\\x2c\\x31\\x2b\\xe4\\x13\\x05\\xc9\\x9a\\xda\\\r\n\\x79\\x9c\\xd6\\xb5\\xb4\\x1f\\x7c\\x2c\\x62\\x39\\xa5\\x59\\xe5\\x74\\x8a\\x28\\\r\n\\x22\\x25\\xee\\x72\\xb4\\xae\\xe7\\x31\\x6d\\x54\\x81\\x94\\x2a\\xa8\\xd7\\x52\\\r\n\\x71\\x51\\xee\\xb5\\xd9\\x23\\xa7\\x95\\x09\\x86\\x45\\x6c\\xd1\\x2b\\xdf\\xa0\\\r\n\\xea\\xb9\\x88\\xcb\\xbd\\xaf\\xad\\xfc\\xb1\\x51\\x9b\\x45\\xb5\\xf4\\xc9\\xae\\\r\n\\xa5\\x87\\xa8\\xfe\\xff\\x00\\xd3\\x87\\x70\\xf8\\x9a\\x37\\xca\\x8b\\x7c\\xc4\\\r\n\\xbb\\x5b\\xe6\\x36\\x07\\x53\\x7d\\x45\\xbb\\x76\\xfc\\xf0\\x90\\xc5\\x0a\\xb3\\\r\n\\x59\\x41\\x3d\\x66\\xc0\\x5e\\xc0\\x59\\x2f\\xda\\xd6\\xd4\\x06\\x3a\\x9f\\x4c\\\r\n\\x43\\x5a\\xcd\\x55\\x5e\\x1d\\x25\\xeb\\xe4\\x2c\\x52\\xe5\\x40\\xac\\xe3\\x3f\\\r\n\\x30\\x83\\x9b\\x98\\x6d\\xd2\\x3a\\xad\\xfc\\x1a\\x66\\xbf\\x15\\xa5\\x9a\\x1a\\\r\n\\xd1\\x59\\xcb\\x2d\\xe2\\xbc\\x4d\\xa2\\xcd\\x1d\\x85\\x93\\xb0\\x0d\\xaf\\x43\\\r\n\\xeb\\xae\\x84\\xe5\\xda\\x9b\\x91\\x57\\x49\\x4f\\x51\\x48\\xd6\\xea\\xb4\\xd1\\\r\n\\x3e\\x51\\x22\\x3a\\x5c\\x3c\\x52\\x58\\x69\\x22\\x8d\\x72\\x10\\x33\\x69\\xd8\\\r\n\\xdf\\x1c\\x3c\\x73\\x56\\x75\\x66\\x25\\x5a\\x28\\xc3\\x0d\\x36\\x60\\xcb\\x61\\\r\n\\xa6\\x97\\x53\\xa8\\xde\\xeb\\x72\\x31\\x90\\x7b\\xad\\x5d\\x2d\\x42\\xb2\\xba\\\r\n\\xd4\\x30\\x4f\\x9f\\x50\\x33\\xa1\\xb9\\xed\\xd4\\x46\\x87\\x7b\\x8d\\xf4\\xc5\\\r\n\\x7c\\x71\\x2d\\x77\\x08\\x96\\x16\\xd6\\x66\\x4b\\x6b\\xd4\\x1c\\xf3\\x55\\x93\\\r\n\\x4f\\xe2\\x03\\x5c\\x73\\x25\\x8c\\x2e\\x7b\\xde\\xd9\\x64\\xb5\\xad\\x99\\x77\\\r\n\\x23\\xd4\\x83\\x72\\x75\\x1a\\x6b\\x89\\x9d\\x25\\xe2\\xcb\\xc9\\xd2\\x23\\x34\\\r\n\\x6a\\xb7\\xb5\\x99\\x91\\xd4\\xbd\\xc8\\xdd\\x39\\x96\\xb8\\xf4\\x38\\xa5\\xab\\\r\n\\x8a\\xb2\\x86\\x58\\x9d\\x4f\\xbe\\x46\\x4d\\x3b\\xc0\\xa6\\xd7\\x65\\xba\\xa3\\\r\n\\xd8\\x5a\\xc0\\x5f\\xe5\\x00\\x03\\xeb\\x8a\\x99\\xb8\\xaf\\xb3\\x7c\\x42\\x59\\\r\n\\x6b\\xb8\\x5a\\x71\\x71\\x08\\x49\\x29\\xa9\\xe8\\xc3\\xc5\\x53\\x53\\x19\\x20\\\r\n\\x95\\x99\\x00\\x78\\xa5\\x09\\x1f\\x4b\\x32\\xe5\\x92\\xc0\\xe6\\x8c\\xdd\\x9f\\\r\n\\x1e\\xdb\\x7b\\x61\\x5b\\xed\\x27\\x11\\x8e\\x5a\\x6e\\x19\\x07\\x02\\x8a\\x95\\\r\n\\x5a\\x25\\x86\\x9f\\x32\\x55\\xbb\\x5e\\xed\\xce\\x90\\x2c\\x46\\xc0\\x8b\\x64\\\r\n\\x45\\x45\\xee\\x46\\x6c\\x4d\\x5d\\xc4\\xe4\\xb2\\xcf\\x53\\x3c\\xf1\\x28\\x6f\\\r\n\\x87\\x3b\\xb4\\xa8\\x2e\\xd7\\x65\\x5e\\x69\\x6c\\xaa\\x46\\xf9\\x48\\x1d\\xf7\\\r\n\\xc1\\x10\\x48\\xca\\x64\\xa6\\x8a\\x16\\x20\\x08\\xf7\\x10\\xc8\\x82\\xda\\x83\\\r\n\\xab\\x9f\\x27\\x01\\xbe\\xe3\\x4c\\x70\\x23\\xc0\\xea\\xe0\\x8b\\x85\\xd7\\x27\\\r\n\\xec\\xaa\\x4a\\x8a\\xc1\\x2d\\x63\\x53\\x16\\x90\\x54\\xf2\\x56\\x14\\x82\\x9d\\\r\n\\xea\\x0f\\xc4\\x8a\\x03\\x2c\\x46\\x62\\xcf\\x98\\xde\\x4d\\xe3\\x20\\x30\\x9e\\\r\n\\x03\\x37\\x0f\\xa1\\x34\\x6a\\x9c\\xca\\x06\\xa1\\xce\\x06\\xad\\x3d\\x0e\\x90\\\r\n\\x96\\xbd\\xee\\xef\\x14\\x6d\\x76\\x72\\x6e\\xc8\\x06\\x6b\\xe8\\x71\\xca\\x1f\\\r\n\\x2c\\x0d\\x97\\xb7\\x4f\\x6e\\xdf\\xa6\\x3d\\xf8\\x53\\x71\\x41\\x95\\x97\\x97\\\r\n\\x55\\x18\\xce\\x2f\\xb4\\x96\\xcc\\xb7\\xf2\\xef\\xbe\\xff\\x00\\xa6\\x38\\xff\\\r\n\\x00\\x12\\xa9\\x4e\\x54\\x74\\x8f\\x72\\x75\\x6b\\x0c\\xc3\\xf4\\x36\\xff\\x00\\\r\n\\x4d\\x31\\x43\\xc5\\xb8\\xc0\\x97\\x93\\x29\\x67\\x89\\xb4\\x2d\\x6f\\x0f\\xaf\\\r\n\\xf2\\xfe\\x9b\\xe2\\x96\\xad\\x84\\x59\\x2a\\x6f\\x2a\\x58\\x86\\xb8\\xd6\\xc4\\\r\n\\x91\\xeb\\xdb\\xd3\\xd7\\x15\\xf4\\x06\\xb1\\x23\\x96\\x85\\x90\\x98\\x81\\x56\\\r\n\\x88\\x92\\x1b\\x29\\x37\\xba\\x9b\\xf6\\xd7\\xa4\\x83\\xf5\\xc7\\x0a\\x86\\xa4\\\r\n\\xd6\\xd7\\x21\\x88\\xc6\\x6c\\xaf\\x79\\x7a\\x32\\xe5\\x53\\x7d\\x4f\\xe2\\xb5\\\r\n\\xef\\xa6\\x12\\x69\\x4e\\x63\\x92\\xe1\\x02\\xa8\\x19\\xc6\\x6d\\xfb\\x7e\\xb7\\\r\n\\x20\\xe2\\x5a\\xea\\x25\\xa8\\xa8\\x56\\x95\\x12\\xa5\\x62\\x4f\\x82\\xc4\\x2b\\\r\n\\x2e\\x73\\x60\\x6e\\xc3\\x6c\\xda\\xe8\\x6c\\x7b\\x5b\\x14\\xd4\\xb3\\x71\\x57\\\r\n\\x77\\x82\\xa7\\x93\\x43\\x18\\x19\\x8a\\x29\\x12\\xd4\\x65\\xb9\\xc9\\xd5\\x6b\\\r\n\\x42\\xc7\\x5c\\xcc\\x07\\xf9\\x4d\\xaf\\x8e\\x11\\x41\\x76\\x20\\x80\\xbc\\xc9\\\r\n\\x02\\xa0\\xbe\\xaa\\xbb\\x93\\xa7\\xe7\\xfd\\x71\\xc4\\x69\\x6a\\xe8\\xb8\\x95\\\r\n\\x67\\x3d\\x6d\\x1c\\x92\\xe6\\xa7\\x3c\\xbc\\xa8\\x54\\x8f\\x0d\\xf6\\xed\\xe7\\\r\n\\xae\\xf6\\xd7\\x10\\xbe\\x57\\xb1\\x91\\x4a\\x48\\x51\\x87\\xcd\\x90\\xb1\\x2a\\\r\n\\x54\\xdc\\x29\\xf2\\xd0\\x69\\xfa\\x62\\x9e\\x8e\\x20\\x15\\xf2\\x0c\\xd7\\x6f\\\r\n\\x16\\x88\\x2f\\xde\\xdf\\xd7\\xcb\\xea\\x71\\x5f\\x30\\xb6\\x4c\\xc0\\xa3\\xd4\\\r\n\\x04\\x2b\\xa6\\xba\\x9b\\x1d\\x6f\\xa1\\x41\\xd5\\xe5\\x6d\\x6d\\x80\\x15\\xa4\\\r\n\\xe5\\x90\\xb9\\x2e\\xa5\\xa4\\x1a\\xe9\\xb8\\x4b\\xee\\x03\\xda\\xc7\\x41\\x65\\\r\n\\x3d\\x8e\\x12\\xe6\\x44\\x9e\\xd9\\x4c\\x5d\\x87\\x85\\xd7\\xf0\\xe6\\x3b\\xe9\\\r\n\\xb5\\xbd\\x31\\x59\\x12\\xd7\\xcb\\x1c\\x17\\x3c\\x87\\x52\\xc6\\xc7\\x2e\\x6e\\\r\n\\xd9\\x6f\\xbe\\x96\\xff\\x00\\x43\\xdf\\x13\\xc8\\x67\\x29\\x4b\\x08\\x65\\xa6\\\r\n\\x89\\xbe\\x1a\\xb5\\x81\\xd3\\xa4\\xb1\\xdc\\x80\\x06\\xd7\\x3e\\x7f\\x5c\\x72\\\r\n\\xa3\\x48\\xd6\\x11\\x75\\x50\\x75\\x7d\\xac\\x4f\\xad\\xf5\\xdf\\x5f\\xa9\\x38\\\r\n\\x32\\xa4\\x71\\x84\\x42\\xb6\\xb1\\xce\\x3a\\x4f\\x7d\\x97\\x4e\\xab\\x8e\\xfd\\\r\n\\xbd\\x70\\xb5\\xd0\\xa4\\x68\\xa8\\x51\\x45\\xfb\\x1f\\x06\\xbb\\x9e\\xe7\\x7e\\\r\n\\xde\\xbb\\x6c\\x29\\xa7\\x82\\xae\\x06\\x48\\x18\\x4b\\x97\\x5e\\x6a\\x9f\\x9b\\\r\n\\xbe\\xc7\\x5f\\x2d\\xbb\\x6d\\x80\\xa0\\x16\\xce\\xa3\\xa8\\x1c\\xcf\\x9a\\xc4\\\r\n\\x5b\\x41\\xa1\\xf5\\xdf\\x6b\\x5f\\x12\\xa2\\x32\\x1b\\x64\\x76\\x5d\\x2c\\x0f\\\r\n\\x4b\\x5c\\x78\\x49\\xb0\\x0c\\x35\\xb1\\xbd\\xfb\\x9d\\xb0\\x28\\x45\\x44\\x89\\\r\n\\x1b\\x99\\x69\\xf9\\x25\\x8a\\xda\\x51\\x14\\x12\\xdf\\xa8\\xc6\\x54\\x68\\x2c\\\r\n\\x58\\x85\\xdb\\x4d\\x89\\x6b\\x9c\\x53\\xd5\\x49\\xc1\\x8e\\x65\\x0f\\x25\\x02\\\r\n\\xa9\\xe7\\xd3\\x81\\x9e\\x6e\\x1e\\xdd\\x2c\\xf3\\xc5\\x67\\x12\\xcd\\xc3\\x58\\\r\n\\x47\\x7a\\x88\\xed\\x9e\\x98\\xde\\x58\\x41\\x42\\xcb\\x8e\\x24\\x90\\x55\\xc6\\\r\n\\xd5\\x51\\xb2\\xe6\\xb7\\x3a\\x09\\x12\\x46\\x97\\x3a\\xcc\\x45\\xd8\\x33\\x67\\\r\n\\xe9\\x74\\x04\\xee\\x73\\x5d\\x75\\xb2\\xe0\\x74\\x9a\\x66\\x8c\\x96\\x8a\\x5c\\\r\n\\xa2\\x78\\x88\\xf8\\x4a\\xf6\\xde\\xd6\\x1a\\x9f\\x5d\\xbb\\x9c\\x37\\x0f\\x4d\\\r\n\\x5d\\x57\\x2d\\xf5\\x16\\x37\\xd4\\xea\\x3b\\xe9\\xaf\\xe5\\x88\\x22\\x31\\x9d\\\r\n\\x4b\\x79\\x01\\x19\\xea\\x1d\\xee\\x3c\\xfe\\x9a\\x5f\\xcf\\x0a\\xdc\\xc1\\x77\\\r\n\\x8c\\x3e\\x5d\\x04\\x8a\\x42\\xc9\\x6e\\xe0\\xe6\\x36\\x3a\\x5f\\xd7\\xb8\\xed\\\r\n\\x86\\x6a\\x69\\x49\\x54\\x45\\x95\\xae\\x01\\x8d\\x81\\x0a\\xa4\\x0d\\x33\\xdf\\\r\n\\xf3\\xcb\\x63\\xb1\\xbd\\xf1\\xc4\\x6b\\x23\\xe1\\xa0\\xfe\\xd3\\xa8\\x48\\x69\\\r\n\\x02\\x65\\xca\\xab\\x60\\x6f\\x66\\x45\\x8a\\x20\\x09\\x77\\x04\\x5e\\xe3\\xaa\\\r\n\\xfa\\x01\\x6c\\x49\\xc4\\x6b\\xab\\x27\\x32\\xa5\\x37\\xb9\\xd0\\x80\\xb2\\x21\\\r\n\\xa9\\x5c\\x8f\\x34\\x76\\x19\\x66\\x28\\xc3\\xe1\\x67\\x1d\\x60\\xf9\\x36\\xa6\\\r\n\\xf7\\x18\\x14\\xf4\\x52\\x46\\x92\\x3c\\x31\\xf3\\x02\\x8c\\x8c\\x06\\x6c\\xa4\\\r\n\\xed\\x20\\xb8\\x3a\\xf9\\x5f\\x6f\\xd3\\x15\\x09\\x25\\x24\\x13\\x0a\\x7d\\x8f\\\r\n\\x3d\\xe1\\x3a\\x35\\xa5\\x65\\x05\\x74\\xdb\\xc4\\x2e\\x06\\x9b\\xdc\\x1c\\x51\\\r\n\\xbd\\x55\\x64\\x2c\\xf5\\x13\\x3d\\xa4\\x71\\x9c\\x22\\x84\\xbe\\x55\\x2b\\x93\\\r\n\\x41\\x7b\\x29\\xbe\\xff\\x00\\xa6\\x21\\x48\\xe3\\x8c\\x72\\xd4\\x02\\x36\\x00\\\r\n\\x58\\x7d\\xcf\\xfa\\xef\\x8f\\x89\\xcf\\x24\\x9f\\xaf\\xd3\\xd3\\xfd\\xbc\\xcf\\\r\n\\x9e\\x38\\x6d\\xda\\x37\\x39\\x79\\x70\\xb4\\x97\\x5c\\xde\\x26\\xb7\\x88\\x8b\\\r\n\\x5f\\x7d\\x6c\\x3c\\xf1\\xc4\\xaa\\x44\\x31\\x91\\x6d\\x6d\\xb0\\x4d\\x58\\xdb\\\r\n\\xc5\\xfc\\x01\\x56\\xc4\\xb3\\x6d\\xbe\\x0c\\xd2\\x3b\\x8e\\x53\\xd3\\x54\\x28\\\r\n\\x5e\\x6b\\xc9\\x4b\\x2f\\x32\\x4f\\x15\\x9b\\x32\\x0b\\xea\\xa4\\x79\\xdb\\xa8\\\r\n\\x5b\\x63\\x8e\\x27\\xca\\x9b\\x2d\\x44\\x72\\xf3\\x05\\x92\\x3d\\x98\\x5f\\x96\\\r\n\\xa1\\x5b\\x43\\xd4\\x86\\xe7\\x50\\xc3\\x31\\xdc\\xe9\\x6c\\x56\\xd3\\x55\\x52\\\r\n\\x41\\x07\\x19\\xe1\\x20\\x3b\\xcb\\xcb\\x5a\\xba\\x70\\xe5\\x12\\x69\\x22\\xe9\\\r\n\\x6b\\x91\\xa2\\x49\\xdd\\x1f\\xc2\\x47\\xc3\\x7b\\xab\\x5c\\x70\\xde\\x29\\x24\\\r\n\\xeb\\x05\\x5d\\x2c\\x66\\x48\\xde\\x41\\x4d\\x51\\x48\\xca\\x23\\x96\\x19\\x4b\\\r\n\\x14\\x70\\x54\\x5b\\xad\\x0d\\xfa\\x74\\x1e\\x5a\\x1b\\x8a\\xd9\\x62\\x9e\\x39\\\r\n\\x0c\\x64\\x09\\xe9\\x24\\x8e\\x49\\xc5\\xb5\\x0b\\x2a\\xe8\\x75\\x02\\xea\\xcc\\\r\n\\x3e\\xdb\\x77\\xbe\\x38\\x83\\x85\\x9f\\x87\\x14\\x50\\xa1\\x38\\x80\\x11\\xb0\\\r\n\\x00\\x78\\xc7\\x30\\x0b\\x79\\x2b\\x33\\xef\\xf4\\xf3\\xc5\\x67\\xf8\\x54\\x92\\\r\n\\xa6\\x64\\x12\\x2f\\x25\\x9e\\xe3\\x4b\\x9c\\x9b\\x10\\x34\\xf2\\xfa\\xed\\x6e\\\r\n\\xf8\\xaa\\x5a\\x78\\x60\\x86\\x47\\x6e\\x5c\\xe8\\x91\\x4b\\x12\\x3d\\x86\\x77\\\r\n\\x67\\xcd\\x2a\\xda\\xde\\x6d\\x71\\x73\\xad\\xb6\\xc5\\x1d\\x67\\x26\\xb5\\x38\\\r\n\\x94\\x31\\xbb\\x25\\x41\\x68\\xdf\\xa7\\xab\\x31\\xd8\\xdb\\xcb\\xc2\\xda\\xfe\\\r\n\\x2f\\xbe\\x2a\\xb3\\xcc\\x25\\xa8\\xbc\\x7e\\xf5\\xbc\\x6e\\x42\\x31\\x8a\\x46\\\r\n\\xd0\\x10\\x5a\\xf6\\xb7\\x83\\x43\\x61\\x8f\\x6d\\x38\\x1f\\x0e\\xe2\\x1c\\x38\\\r\n\\x57\\xa4\\x09\\x45\\xc6\\x69\\x8a\\xc5\\x54\\xf7\\x50\\xb3\\xb0\\xba\\x93\\x2d\\\r\n\\xc6\\x52\\x24\\xd1\\xd6\\x52\\x41\\xb6\\x87\\xbe\\x2b\\xe9\\xaa\\x38\\x3c\\xab\\\r\n\\x4f\\xc5\\xa9\\xda\\x99\\x8e\\xa9\\x3b\\x02\\x61\\xa8\\x06\\xce\\x92\\x41\\x32\\\r\n\\x96\\x8a\\x54\\x68\\xcd\\xce\\x46\\x24\\x69\\x70\\x0e\\x38\\x7d\\x57\\x08\\xa8\\\r\n\\xff\\x00\\x05\\x59\\x53\\x0a\\xd3\\xcc\\xd7\\x82\\xa3\\x3a\\x89\\x29\\x67\\x3a\\\r\n\\x73\\x56\\xfa\\x85\\x1a\\x19\\x53\\x40\\xea\\x19\\x7c\\x79\\x58\\x54\\xc1\\x5d\\\r\n\\xc0\\xab\\x45\\x25\\x68\\x59\\x62\\x94\\x33\\x41\\x53\\x0d\\xde\\x9e\\xae\\x22\\\r\n\\x6c\\x1e\\x9e\\x5b\\x85\\x37\\xda\\xc7\\x55\\x3a\\x11\\xb5\\xfd\\x87\\xf6\\xf2\\\r\n\\xa1\\x16\\x3e\\x19\\x59\\x21\\xbf\\xc2\\x4e\\x1f\\x33\\xdb\\x3a\\xf2\\xe4\\x41\\\r\n\\xee\\x93\\x90\\x40\\x64\\x92\\x20\\x52\\x26\\xb7\\xf0\\x16\\x37\\x07\\x1e\\xff\\\r\n\\x00\\xc2\\xce\\xbe\\xff\\x00\\x12\\x7f\\x07\\x31\\x06\\x5f\\xe1\\xb5\\xb4\\xb6\\\r\n\\xd8\\xaa\\xe1\\xd5\\x11\\x53\\x19\\x8a\\xc9\\xcd\\x56\\x12\\x29\\x89\\x8c\\xbd\\\r\n\\x4b\\x6b\\xaa\\x90\\x48\\x23\\x2f\\xf3\\xc7\\x0c\\xab\\x5a\\xe8\\x16\\x48\\xe2\\\r\n\\x64\\x50\\x18\\x3a\\xc8\\x0a\\xbf\\x35\\x5a\\xcd\\xa3\\x6b\\x6f\\x2f\\xae\\x20\\\r\n\\x48\\x46\\xb9\\x6e\\xd6\\xd7\\xd7\\xe9\\xa6\\x14\\x85\\x46\\x24\\xda\\x3b\\x5c\\\r\n\\x9b\\xaa\\x5b\\xfe\\xa2\\x40\\x1f\\x9e\\x2b\\x2a\\x40\\x58\\xde\\x82\\xa4\\x67\\\r\n\\xce\\x0b\\x72\\x9e\\xed\\x90\\x1b\\x1b\\x85\\xb8\\x22\\xe7\\xd2\\xf8\\x9f\\x88\\\r\n\\xf3\\xa2\\x68\\x1e\\x30\\x73\\xc6\\x9f\\xe2\\x54\\x8d\\x6e\\xd6\\x28\\xfd\\xf5\\\r\n\\xd7\\xd7\\xed\\x8a\\x19\\xe9\\xa1\\x97\\x93\\x32\\xcb\\x62\\xf7\\x8d\\xd5\\xae\\\r\n\\x54\\x8e\\x92\\xbf\\xe5\\xb1\\xbf\\xd7\\xea\\x71\\xc5\\xf8\\x57\\x0b\\xe2\\x73\\\r\n\\xc3\\x23\\x53\\x34\\xb2\\x40\\x6f\\x1c\\xac\\xaf\\x1b\\x1b\\x1d\\x23\\x72\\xb6\\\r\n\\xe6\\x29\\xd2\\xe0\\xdc\\x69\\x8e\\x19\\x4c\\x29\\xe1\\x75\\xb9\\x0a\\xd1\\xe5\\\r\n\\xb0\\x00\\x2a\\x9f\\x25\\x51\\xa5\\x80\\x36\\xd0\\x79\\xe3\\x83\\xd3\\x32\\x52\\\r\n\\xb1\\x29\\x95\\xa3\\x52\\x97\\xcd\\xd4\\x6c\\xcc\\x33\\xb7\\xa1\\xf9\\x74\\xdf\\\r\n\\xbf\\x6c\\x71\\xe8\\x4d\\x5d\\x13\\xd2\\x89\\x1a\\x19\\x25\\x1d\\x32\\x80\\x19\\\r\n\\xd4\\x8f\\x0b\\x25\\xf4\\xcd\\x71\\xa1\\x3a\\x79\\x82\\x34\\xc0\\x5e\\x3f\\x1f\\\r\n\\x1f\\xa7\\xa5\\x9e\\xa2\\xa4\\x46\\x2a\\x5b\\x2b\\x4a\\x08\\x12\\xc7\\x13\\x35\\\r\n\\xfa\\x50\\xe5\\xb9\\x3b\\xd8\\x0b\\x13\\xa6\\x2b\\xaa\\x2a\\xa8\\xf8\\x34\\xb3\\\r\n\\x87\\x1c\\xc8\\xa0\\xe6\\x66\\xcb\\x73\\x65\\x52\\xed\\x6f\\xf3\\x5a\\xde\\x5e\\\r\n\\xa3\\x10\\xfb\\x7f\\xc5\\x1e\\x44\\x4a\\xc8\\xe0\\x99\\xc4\\xdd\\x39\\x55\\x90\\\r\n\\x2a\\xe6\\x25\\xb3\\xda\\xf7\\x36\\xfa\\x5f\\x5c\\x7b\\x35\\xc6\\x78\\x77\\x1e\\\r\n\\xa5\\x68\\xd1\\x39\\x55\\x31\\xeb\\x34\\x4e\\xc3\\xa8\\x1d\\x79\\xcb\\x73\\x9b\\\r\n\\x28\\xd4\\x1f\\xc1\\xb6\\xcc\\x2f\\xc6\\x3d\\xb5\\xe1\\x3c\\x18\\xd4\\xd2\\x41\\\r\n\\x57\\x1d\\x6c\\xb1\\xc6\\xc5\\x11\\x09\\x68\\x95\\x94\\x81\\xcb\\x32\\x02\\x01\\\r\n\\x37\\xdf\\x21\\x6d\\x45\\xb0\\xbe\\xdd\\xc9\\x5b\\x53\\x43\\x4b\\xc2\\x38\\x6c\\\r\n\\xd5\\x95\\x0e\\x03\\xce\\xea\\xcf\\xcb\\xa6\\xbd\\xf3\\xe5\\xb8\\xb0\\x0a\\x40\\\r\n\\x60\\x1d\\x8f\\x60\\x77\\xb1\\x8e\\xa2\\xaa\\xa2\\xa5\\x25\\x15\\xf2\\xd3\\xd3\\\r\n\\x94\\xe5\\xc9\\x4d\\x0c\\x4b\\x23\\x66\\xbd\\x9c\\xb4\\x87\\x40\\x77\\xd0\\x7f\\\r\n\\x2c\\x5a\\x12\\x90\\x98\\xe0\\xa9\\x98\\x5c\\x86\\x79\\x99\\x93\\x6b\\x65\\x39\\\r\n\\x6c\\x17\\xab\\xef\\x6f\\x3e\\xd8\\xbb\\x95\\x2a\\x94\\x51\\xc4\\x06\\xef\\x9f\\\r\n\\x98\\x6c\\x7e\\x8a\\x37\\xfe\\xef\\x88\\xf3\\x19\\x39\\x76\\xa6\\xe5\\x0d\\x95\\\r\n\\x53\\x5f\\xfa\\xae\\x4e\\xba\\xec\\x7e\\xb8\\x86\\x05\\xa7\\x9c\\xcf\\x0c\\xcd\\\r\n\\x06\\x7e\\x9c\\xb1\\x00\\xaa\\xc3\\xb6\\x96\\xcb\\x6b\\xea\\x77\\x3b\\xe3\\xde\\\r\n\\x26\\xb3\\x42\\xb7\\x77\\x90\\x9b\\x48\\x57\\x54\\x5d\\xec\\x8b\\xe1\\xb1\\xee\\\r\n\\xc6\\xf8\\xc9\\x51\\x1a\\x10\\x26\\x6e\\xaf\\xfd\\x55\\x53\\xd5\\xe8\\x47\\x85\\\r\n\\x75\\xdf\\x12\\xd5\\xb8\\xcb\\x4c\\x22\\x8e\\x50\\xc4\\xde\\xcc\\x15\\x0a\\xdb\\\r\n\\x5d\\xfc\\xf4\\xb5\\x81\\xfb\\x62\\x96\\xb1\\x8b\\x18\\xcc\\x46\\x68\\xf3\\x22\\\r\n\\x17\\x72\\x59\\x62\\xed\\x6c\\xe6\\xcc\\x47\\xf0\\xd8\\xf6\\xbe\\xf8\\xad\\x8e\\\r\n\\x5e\\x04\\xaf\\x52\\x8b\\x9f\\x83\\x3c\\x99\\xa7\\x86\\x3b\\x93\\xc2\\xda\\x56\\\r\n\\xea\\xaa\\x85\\x49\\x24\\xd0\\xb9\\x25\\xaa\\x21\\x5b\\xf2\\x58\\x73\\xa3\\x19\\\r\n\\x33\\xa2\\xc1\\x5c\\xae\\xeb\\x10\\x50\\xd1\\x4c\\x44\\x90\\x4b\\xfb\\xc4\\x72\\\r\n\\xc0\\x10\\x41\\x1a\\x15\\x3f\\x2d\\xae\\x08\\xea\\xef\\x7c\\x47\\x28\\x31\\x82\\\r\n\\xa3\\x31\\x37\\x17\\x50\\x37\\x3e\\x87\\x4d\\x3c\\xb1\\xc8\\x92\\x60\\x79\\x68\\\r\n\\xcc\\xca\\x18\\x66\\xed\\x9b\\x5d\\xc0\\x00\\x1b\\x03\\xa8\\xf2\\xf5\\xc4\\xd2\\\r\n\\x25\\x1c\\x21\\xf8\\x8c\\x9c\\xa8\\x8b\\x2c\\x6c\\xe6\\xe1\\x79\\xb6\\xb8\\x0c\\\r\n\\x41\\xe8\\x1d\\xf5\\xb0\\xf3\\x6b\\x69\\x8f\\xda\\x2f\\x5a\\xb6\\xe0\\xa2\\x16\\\r\n\\x31\\x80\\x3d\\xea\\x79\\x34\\x46\\xdb\\xa2\\x14\\xca\\xf3\\x2f\\x9a\\xbc\\x8a\\\r\n\\xa4\\x68\\x0f\\x7c\\x37\\x0d\\x81\\xe5\\x8a\\xaf\\x8e\\xbb\\xf1\\x2a\\xa0\\x08\\\r\n\\x4a\\xa9\\x17\\x97\\x4b\\x47\\xd5\\xe0\\x4a\\x45\\xba\\x44\\xa4\\xb7\\xef\\x65\\\r\n\\x32\\xb3\\x58\\x17\\x90\\x69\\x8e\\x29\\x10\\x7a\\x09\\x24\\x56\\x50\\xf4\\xd1\\\r\n\\x34\\x65\\xd6\\xc1\\x4d\\x3b\\x2f\\xc3\\xcc\\x49\\x20\\xe5\\x6b\\x27\\x97\\x50\\\r\n\\x18\\xe0\\xbc\\x49\\x25\\x8c\\x52\\x4e\\xc3\\x9a\\xba\\x7e\\x06\\x65\\xf1\\x66\\\r\n\\x5b\\xd9\\x64\\xca\\xbb\\xe5\\xf0\\x9d\\x2d\\x7d\\x31\\x2c\\x79\\x17\\x36\\x70\\\r\n\\x62\\x6b\\x8e\\xda\\x00\\x3e\\xfd\\xb4\\xbe\\x6d\\xf1\\x1c\\x6a\\xad\\x2a\\xa7\\\r\n\\x83\\x98\\xcc\\x34\\xb6\\xe7\\x5f\\xe6\\x6d\\x83\\x07\\xc2\\x25\\x4d\\xfb\\x90\\\r\n\\x74\\xd0\\x6b\\xdb\\xed\\xf9\\xe1\\xb9\\x99\\xb5\\x3d\\x3e\\x42\\xe7\\xbf\\xa0\\\r\n\\xbf\\x90\\x16\\xc5\\x1d\\x50\\x45\\x58\\x5a\\x50\\xae\\xcf\\x97\\x97\\xa6\\x68\\\r\n\\xf3\\x1b\\x82\\xca\\x2c\\x46\\x9a\\x5e\\xd6\\xdb\\x15\\xd4\\x8e\\xd9\\xa9\\xf3\\\r\n\\x4c\\xd2\\x91\\xf1\\x14\\x9e\\x83\\x1e\\x81\\x98\\x1f\\x99\\x9b\\x4b\\x20\\xd0\\\r\n\\x6b\\x61\\x6c\\x7b\\x3a\\x8b\\x17\\x1c\\xa8\\xa7\\x2a\\xc0\\x24\\x15\\x14\\xd2\\\r\n\\x06\\x5c\\xba\\x8b\\x32\\x74\\xdf\\xb6\\xde\\x76\\xb1\\xd7\\x1c\\x4a\\x1c\\xb5\\\r\n\\x30\\x18\\x4f\\x2e\\xa6\\x39\\xc8\\xbb\\x01\\xc9\\x74\\x37\\x21\\x24\\x51\\xe3\\\r\n\\x53\\x6b\\x92\\x75\\x04\\xdc\\x62\\x82\\xb1\\x24\\x2b\\xc3\\x2a\\x54\\x2b\\xb5\\\r\n\\x42\\x0f\\x77\\x32\\x15\\xb1\\x25\\x57\\x32\\x11\\x6e\\x6c\\x62\\xd7\\x36\\x3f\\\r\n\\xe6\\xd7\\x6a\\xee\\x17\\x27\\x0c\\xac\\x7a\\x9a\\x71\\x23\\xa8\\x71\\xef\\xb4\\\r\n\\xe8\\x7f\\xf3\\x34\\xf9\\x43\\xc7\\x32\\x0b\\xdb\\xde\\xe0\\x2b\\xd2\\x47\\xef\\\r\n\\x14\\x08\\x89\\x38\\x8c\\x51\\xd5\\x43\\x2d\\x5c\\x52\\x66\\xab\\x9a\\x95\\x95\\\r\n\\x6f\\x75\\x59\\xe2\\x8c\\xac\\xaa\\xd9\\x74\\xf8\\x81\\x4d\\x88\\x3d\\x43\\xc3\\\r\n\\xdb\\x13\\xb4\\x72\\x3d\\x34\\x86\\x10\\x42\\x56\\xd2\\x80\\x5c\\x1c\\xc3\\xe3\\\r\n\\x08\\xf3\\x81\\x7d\\x5f\\xae\\xc2\\xf7\\xcb\\x7b\\xda\\xf8\\xe2\\xf2\\x33\\x70\\\r\n\\xb9\\x63\\x65\\x46\\x37\\x8c\\xe6\\x07\\xfe\\x53\\xb0\\x16\\x1a\\x1d\\x7b\\x36\\\r\n\\xd6\\xc5\\x4b\\xd1\\x4e\\x21\\x8e\\x55\\x8a\\x69\\x67\\xa2\\x16\\x53\\x18\\x7e\\\r\n\\x59\\x5f\\xf9\\x99\\x82\\x9c\\xa4\\x3f\\x7b\\x83\\xa6\\x9a\\x03\\x6e\\x17\\x37\\\r\n\\x0d\\x8a\\x92\\x9d\\x2a\\x9e\\x28\\xe7\\x15\\x8d\\x15\\x99\\x80\\xe7\\x6c\\x51\\\r\n\\x7a\\x8d\\xae\\x7c\\x2a\\x6f\\xf6\\xc5\\x44\\x41\\x92\\xa1\\x99\\xbd\\xd1\\x04\\\r\n\\x8e\\xef\\x9a\\x41\\x18\\x09\\xa8\\x5b\\x92\\xc0\\x65\\x04\\x12\\x1a\\xf7\\x23\\\r\n\\xcf\\x1c\\x4e\\xb3\\x84\\x2c\\x70\\xd3\\xaf\\x10\\xa5\\x96\\x67\\xa8\\xa6\\x69\\\r\n\\x62\\xf7\\x88\\x64\\xf8\\x71\\xb2\\x93\\xa0\\x66\\x05\\x6d\\x98\\x6a\\xdf\\x50\\\r\n\\x37\\xc4\\x3c\\x27\\x83\\x7b\\x4b\\x40\\x94\\x95\\x94\\xf4\\x55\\xf4\\x28\\xcb\\\r\n\\x55\\xca\\xcb\\x1c\\x91\\xb4\\x61\\x1e\\xe4\\x58\\x1c\\x97\\xd1\\x4e\\x42\\xa7\\\r\n\\x5f\\xa6\\x3d\\xac\\xff\\x00\\x83\\x14\\x2c\\xcb\\x5b\\xec\\xbc\\x9e\\xe8\\x5f\\\r\n\\x2c\\xdf\\xb3\\x6a\\x73\\xb4\\x7a\\x8f\\x0c\\x33\\x31\\x25\\x5b\\xce\\x39\\x57\\\r\n\\x4b\\x5b\\x38\\xd4\\x1e\\x1b\\xec\\xa7\\xb4\\xd0\\x57\\x2f\\x08\\xae\\xa3\\x9a\\\r\n\\x5a\\x39\\x64\\xcb\\x2c\\x4e\\xae\\x52\\x98\\x33\\x2f\\xf8\\xba\\x57\\xda\\x17\\\r\n\\x41\\xae\\x64\\x6c\\x92\\x0e\\x97\\xb8\\x38\\xf6\\xab\\x81\\x71\\xcf\\x67\\xeb\\\r\n\\x7a\\xb3\\x64\\xb2\\xc9\\x05\\x5c\\x37\\xca\\xc0\\x5f\\x97\\x22\\x30\\x3d\\x2c\\\r\n\\x3b\\x8b\\xe6\\x57\\xd0\\xed\\x87\\x5e\\x24\\xee\\xce\\xf5\\x35\\x0e\\xec\\xcc\\\r\n\\xce\\xe6\\x69\\xae\\xcc\\xc6\\xec\\xc7\\xaf\\x72\\x75\\x38\\x83\\x86\\xa3\\x4b\\\r\n\\x9d\\x4b\\x20\\xca\\x2e\\x80\\xe8\\x48\\xdb\\x2e\\xf6\\xfe\\x20\\x74\\x3f\\x7c\\\r\n\\x71\\x38\\x69\\x78\\x6c\\xe2\\xa6\\xa2\\xa2\\x3a\\x4a\\x7b\\xfc\\x47\\x20\\x5d\\\r\n\\xf3\\x7f\\x08\\xcb\\x63\\x7e\\xfa\\x01\\xdf\\x09\\xed\\x25\\x44\\xdc\\x50\\x51\\\r\n\\xf0\\xbe\\x0c\\xb5\\x54\\x4c\\x2f\\xfb\\x52\\x56\\x66\\x4c\\xb6\\x6e\\xb5\\x51\\\r\n\\x75\\x3d\\x5f\\x5b\\xf6\\xc4\\x7c\\x32\\x1a\\xa8\\xa5\\x83\\x89\\xd6\\xd4\\x56\\\r\n\\x2c\\xcc\\xdf\\x01\\xdb\\xdd\\xa2\\x40\\xd7\\x25\\x11\\x62\\x19\\xf2\\xa8\\x36\\\r\n\\x52\\xcd\\x98\\xfa\\x62\\x3f\\x65\\x29\\x28\\xe4\\xc9\\x00\\x9c\\x09\\x1a\\xcb\\\r\n\\x92\\xa6\\xa0\\xb0\\x48\\xee\\xca\\xbf\\x12\\x43\\x60\\xbe\\x86\\xec\\x7e\\xc3\\\r\n\\x10\\xc0\\x94\\x19\\xc3\\xbc\\xcf\\x99\\x6d\\x96\\xa5\\x9d\\xd5\\x7f\\x0d\\xb3\\\r\n\\xeb\\xb8\\xf9\\x4e\\x28\\xde\\x2a\\x8a\\xa8\\xf3\\xc7\\x9a\\x4b\\xbb\\x85\\xf9\\\r\n\\x6e\\xa0\\x82\\x4f\\x70\\xbb\\x58\\x0b\\x6b\\xf7\\xc2\\xbe\\x70\\x14\\x85\\xbc\\\r\n\\x62\\xc7\\x6b\\xd8\\x5a\\xe2\\xe2\\xc2\\xe0\\x5e\\xc7\\x5f\\x5c\\x01\\x9e\\x58\\\r\n\\x80\\x04\\x22\\xf8\\x7a\\x45\\x81\\xb7\\x8a\\xf7\\x06\\xec\\x3f\\x99\\xb5\\xb1\\\r\n\\xac\\x51\\x31\\x6b\\xea\\x42\\xed\\xae\\x50\\x37\\x37\\xf5\\xd7\\xf9\\x62\\xb6\\\r\n\\xa2\\x4a\\x9c\\xea\\x05\\xd6\\x3e\\x90\\x2f\\x94\\x8b\\x5e\\xcd\\xa5\\x8f\\xae\\\r\n\\xe4\\x63\\x87\\x51\\xc3\\x50\\xd5\\x12\\x55\\x43\\x77\\x82\\x5f\\xf0\\xf2\\x65\\\r\n\\x05\\xc5\\xce\\xb9\\x58\\x8b\\x80\\x76\\x3b\\x7f\\x5c\\x71\\x68\\x43\\xd0\\x4e\\\r\n\\xbd\\xb9\\x52\\x6d\\xf8\\x72\\x9b\\xff\\x00\\xa0\\xbf\\x73\\x7c\\x4b\\x47\\x2a\\\r\n\\xcf\\x3d\\x95\\x97\\x24\\xee\\x9d\\x03\\x6e\\xb2\\x3c\\x5a\\x9d\\x2d\\xeb\\xeb\\\r\n\\x8f\\x65\\x7d\\x98\\xe3\\x49\\xc3\\x78\\xaf\\x12\\xa1\\x95\\x65\\xaa\\x6a\\x26\\\r\n\\xa7\\xa5\\x85\\x59\\xf9\\x99\\xa6\\xca\\x58\\xb1\\xf0\\x67\\xe5\\x5f\\x28\\x12\\\r\n\\x36\\x5b\\x9d\\x73\\x00\\x07\\x0e\\xf6\\x2f\\x8a\\xf1\\x1e\\x20\\x68\\xa4\\x85\\\r\n\\xa9\\x55\\x18\\xfb\\xe5\\x5c\\xc8\\xc7\\x29\\xd5\\xde\\x38\\xba\\x72\\xe6\\xee\\\r\n\\xa0\\x10\\x33\\x5a\\xed\\xe7\\xc1\\x78\\x15\\x1f\\x02\\x81\\xe8\\xf8\\x78\\xc9\\\r\n\\x11\\xfd\\xf4\\xe6\\xcd\\x59\\x3b\\x5a\\xcc\\x5a\\x4b\\x68\\x37\\xca\\x14\\x68\\\r\n\\x34\\xf5\\xc2\\xc4\\x29\\xa5\\x11\\x45\\x07\\x31\\x39\\x99\\xb3\\x10\\x15\\xca\\\r\n\\xb3\\x75\\x0b\\xe8\\x19\\xd4\\x6b\\x6d\\x33\\x6f\\x8a\\x0a\\x74\\x95\\x55\\x44\\\r\n\\xb5\\x1c\\xb8\\xea\\x6d\\x25\\xef\\xd6\\xb2\\x0b\\xaa\\xf5\\x8d\\x72\\x31\\xca\\\r\n\\x4a\\xe9\\xb8\\x38\\x6e\\x1e\\x80\\x34\\x6b\\x23\\xa1\\x27\\x5b\\x65\\xcd\\xdf\\\r\n\\x63\\xb0\\xfe\\x58\\x5e\\x0f\\x1e\\x60\\xcb\\x51\\x29\\xd3\\x29\\x56\\xc9\\x6b\\\r\n\\xed\\x7d\\x54\\x1b\\x9f\\xae\\x2a\\x78\\x5d\\x5c\\x41\\x92\\x95\\xd6\\xc4\\x93\\\r\n\\x9c\\xa8\\xf8\\x7f\\x35\\xf2\\x8b\\xab\\xe8\\x2d\\x6b\\x82\\x0d\\xb4\\x20\\xdc\\\r\n\\x4c\\x6b\\xa9\\x02\\xc9\\x3c\\x94\\xec\\x0a\\x0d\\x48\\x30\\x32\\x9b\\x68\\x1c\\\r\n\\x28\\x2a\\xc4\\xdf\\xe5\\xda\\xfe\\x87\\x10\\xd5\\x49\\x59\\x98\\x45\\x9d\\x49\\\r\n\\x45\\x08\\xd7\\xd1\\x5c\\x48\\x0c\\x97\\x3a\\x7c\\x97\\x50\\x0d\\xee\\x6c\\x71\\\r\n\\x45\\xc2\\x23\\x52\\x1e\\x5b\\x99\\x17\\x5d\\x5a\\xe0\\x5e\\xd7\\x36\\xb6\\xb6\\\r\n\\xdf\\x6f\\xb5\\xf0\\xb4\\xd4\\xea\\xb9\\x44\\x48\\x06\\x6c\\xcd\\xd2\\x3f\\xbd\\\r\n\\x3b\\x62\\x45\\x42\\x0a\\xe5\\x5c\\x92\\x26\\x52\\x0a\\x82\\xac\\xac\\x2c\\x56\\\r\n\\xc4\\x11\\x6b\\x7a\\x7f\\x5c\\x41\\x1c\\x3e\\xce\\xf1\\x05\\x85\\xc0\\xfd\\x87\\\r\n\\x51\\x2e\\x58\\x5d\\xb5\\x3c\\x26\\xa6\\x4b\\xb2\\xc6\\xcf\\xb0\\xa1\\x9d\\xb4\\\r\n\\x4b\\xdb\\xdd\\x9f\\x4c\\xc2\\x27\\xd2\\x96\\x8e\\x64\\x13\\xb1\\x08\\x1f\\x37\\\r\n\\xc2\\x60\\x58\\x29\\x53\\x63\\x9f\\xa5\\x80\\x62\\x6f\\xa5\\xef\\x6b\\xf7\\xd4\\\r\n\\x9e\\x75\\x6d\\x3f\\x0f\\x49\\x39\\x70\\xc4\\xbc\\xdc\\xa0\\xa9\\x26\\x4d\\x4e\\\r\n\\xac\\xf9\\x81\\x3d\\x47\\x7f\\xe1\\x16\\xf5\\xc7\\xed\\x18\\x24\\x0d\\xef\\x21\\\r\n\\xda\\xe4\\xf8\\x97\\x98\\xa4\\x01\\x6b\\xda\\xd7\\xd4\\x0f\\x2c\\x49\\xc3\\x69\\\r\n\\x6d\\xef\\x7c\\x22\\x48\\xa8\\xeb\\x34\\x93\\x94\\x8d\\xca\\x8a\\xa4\\x8d\\x72\\\r\n\\xcd\\x10\\xd3\\xaa\\xd6\\xcc\\x06\\x6f\\x3c\\xdb\\x13\\xed\\x4d\\x3b\\xbf\\xbb\\\r\n\\xd5\\xd2\\xcd\\x1c\\x84\\x72\\x5c\\xae\\x47\\x89\\x64\\xb9\\xce\\x1a\\xcd\\xe0\\\r\n\\xdb\\x56\\x0d\\xe8\\x30\\x9c\\xf8\\x60\\x98\\xd2\\x91\\x5b\\xc3\\x26\\x8d\\xa1\\\r\n\\x7a\\x11\\x62\\xc0\\x4a\\x08\\xbd\\x14\\x97\\x36\\xca\\xf9\\x7e\\x03\\x9c\\x86\\\r\n\\xdd\\x39\\x6c\\x31\\x4b\\x1a\\x3b\\x1e\\x5d\\x39\\x6a\\xca\\x7a\\xb7\\x10\\x66\\\r\n\\xd2\\x45\\x19\\x72\\x05\\xfe\\x16\\x37\\x6c\\xdb\\xfd\\x36\\xc4\\x15\\xd0\\xd5\\\r\n\\x51\\x33\\x93\\x24\\x4d\\x95\\x84\\xb1\\xc8\\x72\\xba\\x48\\x05\\x8a\\xd8\\x13\\\r\n\\xde\\xfa\\xf7\\x16\\x3b\\x62\\x26\\x76\\x98\\x00\\x0f\\x97\\xf0\\x9c\\xbd\\xc5\\\r\n\\x85\\xef\\x7d\\x71\\x15\\x24\\xb2\\x03\\x94\\x7f\\x99\\x9b\\xa4\\x0d\\x2c\\x07\\\r\n\\xf3\\xfe\\x97\\xc5\\x57\\x0e\\xa8\\x54\\x6c\\xb2\\x0b\\x93\\xae\\x40\\x6f\\x94\\\r\n\\x1b\\xf4\\x93\\xdf\\x10\\xd3\\xc7\\x4e\\x3d\\xe4\\x42\\xb2\\xba\\x42\\x61\\xcb\\\r\n\\x31\\x72\\x41\\x73\\x90\\x15\\x36\\x17\\x22\\xfd\\xef\\x60\\x4d\\x8e\\xb8\\xa6\\\r\n\\xa8\\x3c\\x4e\\x80\\xe5\\x55\\xf7\\xfa\\x54\\x01\\xa2\\xcd\\xfb\\xcc\\x82\\xd6\\\r\n\\xbd\\xef\\xae\\xc0\\xf6\\xd2\\xe7\\x43\\x7e\\x21\\x28\\xa7\\xe3\\x43\\x88\\x14\\\r\n\\xe5\\x07\\x68\\xb9\\x88\\xe5\\x50\\xb3\\xd8\\xc4\\xd7\\xd6\\xec\\x46\\x53\\xb5\\\r\n\\xf4\\xd4\\xdb\\x0a\\x93\\xcb\\x55\\xc9\\x6a\\x67\\x9e\\xf1\\xac\\xa8\\x55\\x7a\\\r\n\\x63\\x72\\x32\\xa4\\x9c\\xd4\\xfc\\x00\\xf4\\x19\\x0e\\x5b\\x13\\xa1\\xdf\\x11\\\r\n\\x70\\x28\\x67\\x67\\xf7\\xd9\\x61\\x49\\x98\\x16\\x89\\xa1\\x98\\x8a\\x9a\\x69\\\r\n\\x94\\x5e\\x39\\x92\\x58\\xd4\\xf2\\xdd\\x7f\\x0e\\x6b\\x38\\xba\\xb0\\xc3\\x56\\\r\n\\x55\\x06\\x5a\\x4e\\x34\\x6d\\x52\\x62\\x31\\xd3\\x57\\x22\\xe5\\x87\\x88\\x18\\\r\n\\x89\\x29\\x62\\x2d\\x1a\\x54\\x85\\xd6\\x48\\xbb\\x8e\\xa5\\x1b\\xe2\\x76\\x4a\\\r\n\\x4a\\x65\\xcf\\x0e\\x54\\x93\\x96\\x79\\xe3\\xa5\\xe8\\xa5\\x64\\x31\\xc7\\x2d\\\r\n\\xd4\\x69\\x0c\\xcf\\x96\\x39\\x85\\xb2\\x8e\\x68\\x76\\x04\\x0c\\x71\\x6a\\x74\\\r\n\\x8d\\x64\\x74\\xcf\\xf0\\x52\\x92\\xba\\x31\\x6e\\x96\\x5c\\xf0\\xcd\\x6f\\x3b\\\r\n\\xff\\x00\\x15\\xf4\\xee\\x3b\\x8e\\x21\\x27\\xbc\\xd1\\xf3\\x55\\xca\\xb2\\xc9\\\r\n\\x18\\x92\\x3b\\x9c\\xa5\\x24\\x6c\\xdb\\x6a\\x37\\x5d\\x74\\xff\\x00\\x7e\\x1f\\\r\n\\x93\\x25\\xb2\\x23\\xb8\\xe5\\xc4\\x97\\x02\\xeb\\xdc\\xe5\\xbf\\xf4\\xfe\\xb8\\\r\n\\x9f\\x85\\x52\\x49\\x5b\\x57\\x47\\xc4\\x29\\xe2\\x96\\x9e\\xb2\\x15\\x9d\\xd5\\\r\n\\xc6\\x80\\x5e\\xcd\\x91\\xb4\\x2a\\xc0\\x81\\x94\\xa9\\xcc\\xa6\\xc7\\xb6\\x3d\\\r\n\\xb3\\xf6\\x5a\\x5e\\x1f\\x2c\\x75\\x14\\xd5\\x95\\x73\\xf0\\xf6\\x21\\x56\\x09\\\r\n\\x27\\x91\\xfd\\xd0\\x9b\\xe4\\x80\\x66\\x91\\xba\\x00\\x24\\x23\\x15\\x05\\xb5\\\r\n\\xf5\\xb8\\xa5\\xfc\\x37\\x0f\\x6d\\x8f\\x71\\x7d\\x86\\x9f\\x5c\\x70\\x7e\\x31\\\r\n\\xc5\\x78\\x15\\x41\\xa8\\xe1\\xd5\\x52\\x53\\xe5\\x24\\x3c\\x6c\\x58\\x46\\xeb\\\r\n\\xb1\\x8e\\x48\\x7c\\x2e\\xb7\\xf3\\xbe\\xba\\xe9\\x8a\\x3f\\xf8\\x81\\xc5\\xf3\\\r\n\\x97\\xad\\x2b\\x57\\x4f\\x75\\xff\\x00\\x0d\\xcb\\x09\\x92\\xed\\x7f\\x84\\x51\\\r\n\\x46\\x4c\\xa7\\xab\\xac\\xf9\\x0e\\xd8\\xe1\\x12\\xc1\\xc6\\x28\\x8d\\x6d\\x13\\\r\n\\xb1\\xcc\\xb9\\x18\\x5d\\x02\\x87\\x31\\x23\\xe5\\x99\\x1a\\xf9\\x4e\\x70\\x05\\\r\n\\x81\\xec\\x48\\xbd\\xb4\\xa8\\xf6\\x66\\x9e\\xb5\\x65\\x4e\\x2e\\xe9\\x34\\x55\\\r\n\\x11\\x18\\xf9\\x4b\\xd5\\x14\\x6d\\x90\\x65\\x90\\x36\\x40\\x63\\x78\\xc8\\x36\\\r\n\\x75\\x26\\xf7\\x3b\\x5b\\x51\\xff\\x00\\x09\\x3d\\x96\\x60\\x09\\x59\\x09\\x22\\\r\n\\xe4\\x8a\\xb9\\xac\\x49\\xde\\xdd\\x3b\\x62\\xaf\\xfe\\x23\\x55\\xd7\\xc4\\x29\\\r\n\\xf8\\x4d\\x11\\xa2\\x9b\\x9d\\x72\\x65\\xcb\\x33\\x98\\x41\\xb2\\x13\\x65\\xc9\\\r\n\\x11\\x63\\xa9\\xdf\\x4b\\x58\\xf7\\x34\\x5c\\x2b\\x89\\x71\\xe9\\x60\\xac\\xe3\\\r\n\\x77\\x48\\x22\\x20\\xfb\\xac\\xe2\\x4b\\x54\\x10\\x43\\x2d\\xd3\\x40\\x10\\xe8\\\r\n\\x01\\x7b\\xda\\xc6\\xcb\\x6d\\x70\\x4c\\x08\\xeb\\x07\\x2c\\x43\\xcb\\x4b\\x46\\\r\n\\xea\\xaa\\x04\\x76\\xd0\\x2b\\x2a\\xad\\xf2\\x68\\x2c\\x48\\xf2\\xdf\\x15\\x66\\\r\n\\x3d\\x73\\x46\\x33\\x95\\xe9\\xc8\\x77\\xf5\\x16\\xdc\\x79\\xf9\\x62\\x9e\\x09\\\r\n\\x8d\\x9c\\x06\\x57\\xc9\\x60\\xa4\\x92\\x06\\x9a\\xdb\\xeb\\xb5\\xbf\\x2c\\x3d\\\r\n\\x3f\\x3c\\xaa\\xcd\\x75\\x64\\x6c\\xd6\\x03\\x47\\x00\\x78\\x48\\x61\\xeb\\x7d\\\r\n\\xbd\\x71\\xcb\\x8e\\x96\\x55\\x99\\x63\\x0d\\xba\\xb3\\x11\\x7b\\x06\\x22\\xe5\\\r\n\\x40\\x00\\x0f\\x50\\x2d\\x70\\x4e\\x25\\x8d\\x1f\\x22\\x5d\\x96\\xe0\\x31\\x55\\\r\n\\x55\\x0a\\x4b\\x8f\\x0d\\x80\\xb9\\xd3\\xcf\\x5f\\xe7\\x8a\\x38\\x4a\\x30\\x2c\\\r\n\\x4e\\x51\\xd2\\xa3\\x52\\x4b\\x7d\\x7e\\x51\\x6f\\x3e\\xf8\\xae\\xab\\x8e\\x20\\\r\n\\xc6\\x67\\x20\\x3e\\x91\\x28\\x20\\x0d\\x07\\x57\\xae\\xba\\x75\\x13\\x6e\\xdb\\\r\n\\x9c\\x57\\xd6\\x48\\xb2\\xaf\\xbb\\xd9\\x62\\x3f\\xbe\\x75\\x39\\xb3\\x2d\\xf4\\\r\n\\x0b\\xd3\\x72\\xda\\x6a\\x05\\xf4\\xd3\\x6c\\x70\\xc9\\xe0\\x9a\\x37\\xc8\\x41\\\r\n\\x27\\x29\\x20\\xad\\xbe\\xfd\\x81\\xbe\\x1d\\x23\\x96\\x0a\\x88\\x9c\\x5c\\x3c\\\r\n\\x2c\\xbf\\xce\\xf6\\xf5\\xed\\xe8\\x71\\x07\\xb0\\x1c\\x15\\x27\\x7a\\xaa\\x8f\\\r\n\\x78\\x96\\x32\\xd7\\x8e\\x85\\x0a\\xd9\\x80\\xd7\\xae\\x4b\\xe7\\xd4\\xe8\\x6c\\\r\n\\xe3\\x4d\\xce\\xd8\\x33\\x3d\\x32\\xa5\\x04\\x10\\x8a\\x08\\x4a\\x1e\\x40\\x87\\\r\n\\x21\\xb9\\x1e\\x25\\x3a\\x32\\x8d\\x08\\x61\\xdf\\xb7\\x9e\\x21\\x81\\x20\\x57\\\r\n\\x01\\x7c\\x77\\x91\\xc9\\xd4\\x97\\x23\\xa8\\xb1\\x3d\\xce\\xc7\\x02\\x04\\x67\\\r\n\\x76\\xbe\\x53\\xa9\\xbf\\x63\\xbe\\xf8\\x9a\\xbf\\x86\\xd1\\xa4\\x69\\x57\\x24\\\r\n\\x65\\xd9\\xad\\x62\\x47\\x88\\xd8\\x02\\x00\\xbb\\x0f\\x22\\x4d\\xbb\\xe2\\x8f\\\r\n\\x8c\\xd1\\x54\\x30\\xa7\\x89\\x82\\x37\\x85\\x42\\x0b\\x0c\\xd1\\x1d\\x00\\x3a\\\r\n\\x5f\\x41\\x7b\\xf7\\xbe\\x16\\xd2\\xaa\\xc9\\x7d\\x72\\x83\\xbf\\xcd\\x70\\x0e\\\r\n\\xbf\\xad\\xf0\\x22\\x9c\\xfc\\x8e\\xb6\\xf9\\xc0\\x20\\x7d\\xc7\\x7f\\xb0\\xc0\\\r\n\\x95\\xd4\\xe5\\x75\\x06\\xd7\\xb9\\xb7\\x7d\\xbf\\x4c\\x54\\x70\\xda\\x79\\xe4\\\r\n\\xe6\\x30\\x2c\\xb7\\xf0\\x13\\xa0\\x6b\\x8d\\x45\\xb6\\xb8\\xd3\\x2d\\xfe\\xd7\\\r\n\\xc5\\x2f\\x0f\\xa7\\x56\\xae\\xa7\\xc8\\x00\\x5a\\x91\\x22\\x6e\\x08\\x49\\x63\\\r\n\\x56\\x53\\x71\\xfc\\x61\\xfe\\xf7\\xf5\\xc0\\xa6\\x91\\x05\\xd1\\x85\\xd7\\xf2\\\r\n\\x3d\\xbe\\xed\\xe7\\xdf\\x01\\x99\\x24\\x2b\\x28\\xf1\\xa8\\xb2\\x8d\\x7f\\xcd\\\r\n\\x61\\x6f\\xb5\\xbf\\xd7\\x15\\x75\\x1c\\xa8\\x97\\xa4\\x0b\\x9c\\x91\\xaf\\x7c\\\r\n\\xe7\\x61\\xb5\\xec\\x37\\x3e\\x5a\\x0f\\x5c\\x54\\xd2\\xc1\\x32\\x48\\xb2\\xe5\\\r\n\\x97\\x9a\\xb9\\x65\\x5b\\x66\\x56\\x04\\x7c\\xeb\\xaa\\xdb\\xb5\\x8d\\xbf\\x3c\\\r\n\\x41\\xc4\\x6a\\xf8\\x5c\\xab\\xc2\\x2a\\x1d\\x9a\\x8a\\x72\\x57\\x84\\xd5\\x9b\\\r\n\\xb3\\xf8\\x6f\\xfb\\x32\\xa2\\x43\\x7f\\x89\\x1a\\xa9\\x34\\xae\\xdd\\x52\\xc4\\\r\n\\x32\\x5f\\x34\\x62\\xe8\\xd5\\x75\\x12\\x0a\\x6c\\xe4\\xae\\x4c\\xec\\xce\\x6e\\\r\n\\x06\\x6e\\xf6\\xdc\\x1e\\xca\\x3b\\x6e\\x31\\x3d\\x21\\x40\\x2c\\xc0\\x37\\x95\\\r\n\\xf3\\x13\\xa7\\x97\\xd3\\xf4\\xc4\\xb5\\x1c\\xb8\\x95\\x25\\xa5\\x9a\\x12\\x81\\\r\n\\x97\\x37\\x2d\\x95\\x5b\\xb3\\x37\\x52\\x8c\\xdd\\xb3\\x10\\x4f\\x96\\x38\\xaf\\\r\n\\x09\\x86\\x5e\\x5d\\x7d\\x38\\x57\\x65\\x55\\xe7\\xa4\\x64\\x31\\x70\\x74\\xcd\\\r\n\\x61\\xbb\\x0f\\xcf\\xd3\\x1c\\x17\\x88\\x4b\\x1d\\x44\\x34\\x4a\\x13\\xdd\\x99\\\r\n\\xc6\\x45\\xd9\\xd5\\xac\\x6e\\x5b\\x40\\x5f\\x5d\\x32\\xe9\\x63\\xa9\\xdb\\x1c\\\r\n\\x47\\x85\\xff\\x00\\x8c\\xf7\\x88\\xc9\\x8b\\xde\\x89\\x95\\xf9\\x6b\\x70\\xb2\\\r\n\\xe4\\x1a\\x35\\x99\\x5b\\x24\\x96\\x6e\\x63\\x5f\\x62\\xd6\\x3b\\x01\\x51\\x1c\\\r\n\\xbc\\xf4\\x11\\x52\\x41\\x4c\\x85\\xe4\\xe7\\x15\\x91\\x44\\x72\\x36\\x8a\\x4a\\\r\n\\x8c\\xc5\\x99\\x86\\x52\\x72\\xb0\\x7b\\x5e\\xd7\\xd4\\x62\\x2e\\x5c\\x2c\\xab\\\r\n\\x7c\\xc4\\x5b\\x5d\\x2c\\x35\\xb9\\xd7\\x6d\\x71\\x4d\\x38\\x60\\x00\\xef\\xdb\\\r\n\\xcb\\xca\\xf8\\xe5\\x29\\x1a\\xfe\\x78\\x5a\\x38\\xae\\x18\\x44\\x97\\x5b\\xea\\\r\n\\xe9\\x9b\\xc4\\x2d\\x7e\\xad\\xce\\xba\\x79\\x1d\\x77\\xc7\\xec\\x79\\xe9\\xaa\\\r\n\\x3d\\xea\\x39\\x84\\x7d\\x5e\\x29\\x98\\x28\\xc8\\x6d\\x75\\x58\\xa2\\x4c\\xf2\\\r\n\\x6b\\x63\\xae\\x87\\x4d\\x7b\\xe3\\xdb\\xd3\\xc3\\xbf\\x64\\x35\\x47\\xbb\\xbc\\\r\n\\xb5\\x4b\\x34\\x70\\xc3\\x38\\xf8\\x79\\x1a\\x42\\xa5\\x8f\\x28\\xdb\\x38\\xca\\\r\n\\xae\\x07\\x33\\x62\\x74\\xb5\\xf1\\x43\\x5f\\xc7\\x60\\x8e\\x24\\xa7\\xaf\\x9f\\\r\n\\xdd\\x79\\x44\\xa4\\x46\\xf9\\x03\\xb5\\xcb\\x23\\x23\\x5c\\x03\\xb7\\xa8\\x16\\\r\n\\xb1\\xdc\\x62\\x9f\\xda\\x3a\\xaa\\x5c\\xfe\\xf9\\x17\\x37\\x98\\x3f\\x79\\x19\\\r\n\\x2a\\xc8\\xd6\\xec\\x0d\\x83\\x0d\\x00\\xd2\\xd7\\xde\\xed\\x88\\xfd\\xa4\\xe1\\\r\n\\xfc\\x46\\x8c\\x53\\xcf\\x4e\\xd5\\xb1\\x95\\x06\\x48\\xc8\\x19\\xa3\\x20\\x82\\\r\n\\xb2\\x2e\\xb7\\x46\\x57\\xb1\\x57\\x56\\x52\\xbb\\x86\\xc6\\x55\\xae\\xa1\\xa6\\\r\n\\x4a\\x55\\x9a\\x45\\x9e\\x26\\x88\\x45\\x3d\\x84\\x85\\x15\\x91\\x84\\x4e\\xf6\\\r\n\\xd7\\xa5\\x4a\\xab\\x3b\\x0b\\xd8\\x16\\x3d\\xf1\\x51\\x51\\x51\\x0d\\x35\\x5d\\\r\n\\x35\\x46\\x6f\\xf0\\xd4\\xf2\\x45\\x13\\x48\\x57\\x98\\xf0\\x43\\xf2\\xbd\\xb7\\\r\n\\x78\\x09\\xe5\\x9b\\x1d\\x51\\x50\\xeb\\x8a\\x98\\xe0\\x0a\\xc1\\x32\\x98\\xa4\\\r\n\\x91\\x3c\\x0d\\x7c\\xb7\\x20\\xad\\xad\\x7b\\xe7\\x52\\x0e\\xff\\x00\\x4b\\xf6\\\r\n\\xe1\\xea\\x12\\xb0\\x89\\x0f\\x2f\\x2f\\x5c\\x27\\xe5\\xd9\\x6c\\xc7\\xb6\\x9d\\\r\n\\xec\\x34\\xfa\\xe3\\x88\\x55\\xcb\\x57\\x3a\\xe6\\xb2\\xaa\\xda\\x29\\x24\\x5d\\\r\n\\x2c\\x33\\x5c\\x29\\xbd\\x8e\\x76\\xb8\\x6b\\x7c\\x99\\xbc\\xf4\\xc5\\x5f\\x0a\\\r\n\\xa4\\xaa\\xa5\\x7a\\x1a\\x88\\x91\\xe1\\x9d\\x2e\\xd9\\x8f\\x59\\x2b\\xa8\\x90\\\r\n\\x3f\\x8b\\x9a\\xbb\\xab\\x0b\\x10\\x74\\xdb\\x43\\xc7\\x3d\\x9b\\x9f\\x82\\xb3\\\r\n\\xca\\xf7\\x9b\\x87\\xbb\\x15\\x82\\xad\\x6e\\x59\\x06\\x61\\x61\\x2e\\xdc\\xb2\\\r\n\\x03\\x01\\x73\\x74\\xf2\\x60\\xc4\\x0c\\x72\\x88\\x25\\xac\\xb2\\x83\\x7c\\xc4\\\r\n\\xdc\\x0b\\x1d\\xf4\\xfc\\x5f\\xd6\\xfb\\xdf\\x02\\x97\\x99\\x3f\\x2d\\x64\\x40\\\r\n\\xae\\x97\\x00\\x0f\\xfa\\xb5\\x37\\xfa\\xff\\x00\\x3c\\x7b\\x11\\xc5\\x2a\\xa8\\\r\n\\x2a\\xe6\\xa7\\x8e\\x6c\\x8b\\x2c\\x45\\x9f\\x31\\x05\\x40\\x8c\\x8f\\xdd\\xaf\\\r\n\\x9b\\x0d\\xda\\xc0\\xe5\\xd2\\xf6\\xdb\\x8c\\x57\\xc7\\x3e\\x49\\xd6\\x57\\x64\\\r\n\\x94\\xb4\\x59\\x55\\xae\\x69\\xe5\\x1d\\x59\\x64\\x1f\\x22\\xb0\\xbb\\xc6\\x7c\\\r\n\\xb4\\xb5\\xc6\\x07\\xb5\\x9c\\x4a\\x10\\x22\\x59\\x20\\x2b\\x10\\x11\\xa9\\x31\\\r\n\\xb9\\x25\\x53\\xa4\\x12\\x7b\\x9b\\x0c\\x70\\x8f\\x67\\xe2\\xe1\\x5c\\xa7\\x5b\\\r\n\\x19\\xe2\\x16\\x32\\xb8\\xf1\\x1b\\x1e\\xab\\x5c\\x92\\x75\\xd1\\xbb\\x1b\\x58\\\r\n\\x0b\\x62\\x3a\\xca\\x91\\xd2\\x4c\\x4c\\xbb\\xf8\\x8a\\x90\\x2d\\xa6\\xd7\\xdb\\\r\n\\xe9\\x7c\\x34\\xb1\\xce\\x65\\x3e\\x77\\x21\\xc9\\xbf\\x90\\xfb\\xfd\\xf4\\xc4\\\r\n\\x92\\x2d\\x2e\\x6e\\x64\\xe8\\x9a\\x92\\x1e\\xa2\\x48\\xd4\\x2d\\xee\\xd6\\x0c\\\r\n\\xc5\\x48\\x1a\\x1d\\x36\\xdc\\x0c\\x43\\xc4\\xea\\x48\\x8a\\x48\\xf9\\x52\\xa1\\\r\n\\x1d\\x05\\x18\\x38\\x7b\\x6d\\x95\\xd5\\x8a\\x92\\x41\\xd8\\x6b\\xf5\\x38\\xae\\\r\n\\xae\\xaa\\xf7\\x29\\x65\\x29\\xee\\xd2\\xc7\\x90\\xa9\\xef\\x62\\xc0\\x16\\x20\\\r\n\\x8d\\x6e\\x34\\xd7\\x14\\x9c\\x60\\xae\\x5f\\x78\\x85\\x65\\xb9\\x40\\x0c\\x76\\\r\n\\xb3\\x13\\x6d\\xc1\\x36\\xd6\\xe3\\x6e\\xfa\\x6d\\xae\\x20\\xa9\\x0c\\xee\\xae\\\r\n\\x67\\x46\\x96\\x6c\\xe8\\x1e\\x26\\x19\\x09\\x3a\\x22\\xb5\\x88\\xf2\\xf2\\xf4\\\r\n\\xd3\\x10\\xc0\\x62\\x8a\\x32\\x47\\x5b\\xab\\x0c\\xcf\\xe4\\x6d\\xae\\xdf\\x60\\\r\n\\x7f\\x2c\\x71\\x88\\xc4\\xae\\xb6\\x64\\x70\\xb9\\x90\\x32\\xf6\\x16\\xd7\\xf5\\\r\n\\xbe\\x28\\xa2\\x0b\\x31\\x8e\\x40\\x1b\\x43\\xca\\xbd\\xbc\\x24\\xd8\\xf9\\xea\\\r\n\\x77\\x37\\xed\\xdf\\x14\\xf4\\x4b\\x49\\xcd\\x8e\\xc3\\x23\\xb6\\x61\\xa6\\xa2\\\r\n\\xf7\\xda\\xff\\x00\\x7e\\xfa\\x60\\xe4\\xa7\\xb9\\x76\\xf1\\xb0\\x44\\x0d\\x7f\\\r\n\\x13\\xb7\\x48\\xfb\\xfa\\xdf\\x1c\\xf3\\xcf\\x61\\x2a\\x85\\x54\\x00\\x86\\x8c\\\r\n\\xdc\\x2a\\xdf\\xca\\xdd\\xff\\x00\\xed\\x8a\\xc9\\xa3\\x37\\xaa\\xe6\\x20\\x8e\\\r\n\\x0b\\x32\\xb5\\xf4\\xd3\\x5f\\xae\\xa3\\x43\\xa6\\x2b\\x3d\\xae\\xe6\\x23\\xc5\\\r\n\\xc3\\x68\\xa5\\xa8\\x93\\x2f\\x8c\\x86\\xc9\\xf6\\xb2\\xeb\\xaf\\xfd\\xad\\xbc\\\r\n\\x14\\xbe\\xd3\\xf1\\x2b\\xbb\\x9f\\x72\\x8b\\xff\\x00\\xbb\\x64\\xed\\x7b\\x2a\\\r\n\\x5f\\x31\\x61\\xdb\\xc2\\x34\\xdf\\x5c\\x57\\x52\\xd7\\x25\\x55\\x50\\xaa\\xa7\\\r\n\\xa9\\x62\\x80\\x94\\xa8\\x01\\xf2\\xad\\x9c\\x5a\\x5e\\x95\\x2b\\x66\\x16\\x05\\\r\n\\x4e\\x83\\x35\\xc6\\xa0\\x62\\x98\\x51\\xd3\\x53\\x51\\xf2\\x40\\x2e\\xd4\\xd0\\\r\n\\x73\\x9d\\x10\\x66\\x12\\x32\\x0f\\x89\\x21\\xb7\\x8a\\xec\\xe3\\x7e\\xe0\\x7d\\\r\n\\x38\\x1c\\xd2\\x47\\x41\\x0d\\x44\\x91\\x15\\xaa\\x25\\x92\\xc7\\xc2\\x81\\x1f\\\r\n\\x28\\x92\\x3d\\x0e\\xae\\x05\\xd5\\xae\\x3a\\x7c\\x36\\xb9\\xc5\\x4d\\x53\\x1f\\\r\n\\xde\\x2b\\x58\\xec\\xc0\\x33\\x11\\xf5\\x6e\\xab\\x7f\\x3f\\xae\\x12\\xae\\x0c\\\r\n\\xfb\\x82\\xbf\\x32\\x30\\xd3\\xd7\\x2d\\xff\\x00\\xdb\\x12\\x47\\x16\\x55\\x96\\\r\n\\x16\\xf8\\x64\\x93\\x94\\xee\\x3e\\xa3\\x5d\\x2c\\x7c\\xcf\\xe7\\x85\\x8c\\x8a\\\r\n\\xfc\\xe2\\xf6\\x9e\\x9b\\x5d\\x3a\\x73\\x42\\xf7\\x1e\\x11\\xa7\\x43\\x9d\\xf0\\\r\n\\x01\\x3e\\x5b\\xdf\\xbf\\xd7\\xfb\\xd3\\x15\\x71\\xca\\x26\\xa6\\x60\\x33\\xaa\\\r\n\\xb3\\x87\\xd4\\x0b\\x5c\\x1e\\xe6\\xda\\x5e\\xdf\\xd4\\x62\\xba\\x1a\\xb9\\xea\\\r\n\\x9a\\x41\\xcb\\x54\\x45\\x2a\\x91\\x07\\x25\\xce\\x6d\\x0c\\x9a\\x74\\xe6\\x3d\\\r\n\\x86\\xf6\\x37\\x16\\xb6\\x29\\xa9\\xaa\\xb2\\x14\\xf7\\x79\\x5b\\x35\\xac\\xc2\\\r\n\\x68\\x82\\x16\\x17\\x26\\xea\\xf9\\x1f\\xd3\\x6d\\xed\\xe5\\x8a\\xca\\x6a\\xb9\\\r\n\\x29\\xaa\\x29\\xeb\\xf8\\x73\\x98\\x65\\x23\\x2b\\xab\\x84\\x96\\x9e\\x48\\x9b\\\r\n\\x3c\\x55\\x31\\x4c\\xa1\\xd5\\x65\\x85\\xd1\\x24\\x8d\\x86\\x99\\xd7\\x5c\\xc3\\\r\n\\x4c\\x70\\x0e\\x2f\\x9e\\x49\\xa8\\xf8\\x80\\x23\\x88\\xc0\\x54\\x4f\\x38\\x50\\\r\n\\x23\\xa8\\x82\\xcc\\x21\\xac\\x55\\xdc\\x09\\x02\\x94\\x91\\x6d\\xf0\\xea\\x12\\\r\n\\x54\\xf0\\xe5\\xc4\\xcf\\x4c\\xc3\\xc5\\x03\\x46\\xce\\x0b\\x4b\\x26\\x77\\xb3\\\r\n\\x32\\x1e\\x59\\x61\\x06\\x59\\x3c\\x61\\x46\\x50\\xc9\\xf5\\xc4\\x95\\x34\\xcb\\\r\n\\x14\\xf3\\x4b\\x50\\x8d\\x23\\x42\\xa9\\xca\\x85\\xa5\\x9b\\x3c\\x81\\xb3\\x4d\\\r\n\\x2e\\x5a\\xd8\\x91\\x29\\x62\\x1f\\xbb\\x64\\x89\\x5d\\x98\\xe4\\x39\\x9a\\xd8\\\r\n\\x83\\x94\\xd3\\x2c\\x8a\\x92\\xa4\\x2a\\x99\\x44\\x6b\\x99\\x5a\\x46\\x37\\xca\\\r\n\\x2e\\xf6\\x60\\xe5\\xf7\\x2a\\x91\\xe4\\x5c\\xc2\\xe4\\x1d\\x38\\x77\\x02\\xe1\\\r\n\\x49\\x11\\xaa\\xaa\\x5c\\x95\\x65\\x73\\x20\\x8c\\xbf\\xc2\\x32\\x26\\x8b\\x7e\\\r\n\\x59\\x32\\x1c\\xd6\\xcc\\xec\\x47\\x90\\xd0\\xe9\\xc6\\xeb\\x16\\x96\\xa2\\x3a\\\r\n\\x2c\\xee\\xd5\\x11\\xce\\xc4\\x03\\x14\\xa2\\x39\\x69\\xe4\\x4e\\xa0\\x26\\x01\\\r\n\\x72\\x48\\x2f\\x64\\x75\\x70\\xd1\\xb6\\x5d\\x72\\xdd\\x4c\\x9e\\xf2\\x67\\x3c\\\r\n\\xd9\\x95\\x63\\x17\\xe5\\x09\\x08\\x92\\x45\\x1a\\x59\\x59\\xba\\x73\\x1b\\x0b\\\r\n\\xb3\\xb0\\x32\\xbb\\x96\\x66\\x66\\x04\\x61\\x04\\x85\\xf3\\x5e\\xe3\\xbf\\xf7\\\r\n\\xe9\\xbe\\x28\\xea\\xde\\x29\\x72\\x96\\xba\\xda\\xe4\\xed\\x71\\xd8\\x7e\\x58\\\r\n\\x4e\\x33\\x4d\\x9d\\x22\\xd4\\x31\\x36\\xb3\\x1d\\x3f\\x3f\\xd3\\xeb\\x7c\\x25\\\r\n\\x6d\\x97\\xc1\\xcb\\x36\\x3d\\x57\\x2c\\x4e\\xfb\\x7f\\x5d\\x31\\x50\\x65\\xa8\\\r\n\\x81\\x4c\\x53\\x98\\xde\\xfd\\x4e\\xaa\\xa5\\xaf\\xda\\xe1\\xb4\\xde\\xde\\x47\\\r\n\\x43\\x8e\\x28\\xb2\\x55\\x7b\\xc7\\x0c\\xad\\x86\\xed\\x91\\x48\\xac\\x89\\x42\\\r\n\\xdd\\xf3\\x7c\\x26\\xca\\x6e\\x09\\xbe\\x50\\xf9\\x3b\\x5d\\x71\\x49\\x43\\xc8\\\r\n\\xf8\\x52\\xf4\\xae\\xc4\\x10\\x34\\x6e\\xc7\\x35\\xae\\x3d\\x74\\xb7\\xf4\\xe2\\\r\n\\x34\\x0e\\xa0\\x8b\\x29\\x06\\x4e\\x9f\\x4b\\xf6\\xdc\\x66\\xd6\\xdb\\x76\\xc7\\\r\n\\x10\\x93\\xf6\\x72\\x48\\x7d\\xe3\\x94\\xaa\\x8c\\x67\\x98\\x3f\\x29\\x32\\xef\\\r\n\\xcb\\x2d\\xa1\\xbe\\x96\\x0b\\x6f\\x10\\x16\\xbf\\x84\\xfb\\x31\\xff\\x00\\x16\\\r\n\\x28\\x28\\x56\\x7e\\x1f\\xc4\\x63\\xac\\x58\\x63\\x99\\x9f\\x86\\xd7\\xc3\\xf1\\\r\n\\x4e\\x5e\\xa4\\x90\\xc9\\x19\\xb3\\x2d\\xd8\\xe7\\x04\\x69\\x6b\\xee\\x4d\\xb1\\\r\n\\x5b\\xed\\x6f\\x03\\xf6\\x86\\x6e\\x55\\x04\\xf5\\xbe\\xf5\\x2e\\x7b\\x39\\xa6\\\r\n\\x60\\xa4\\x3c\\x2b\\xcd\\xbd\\xec\\xd6\\xb8\\x62\\xd9\\x96\\xd6\\x05\\x89\\x04\\\r\n\\x0c\\x50\\x84\\x5e\\x1e\\xa5\\x7a\\x83\\x88\\x00\\xd9\\x72\\xc8\\xaa\\xad\\x25\\\r\n\\x81\\x3e\\xba\\x0d\\x82\\xda\\xd6\\xc5\\x5f\\x11\\xa3\\x97\\xdf\\xd6\\x9e\\x66\\\r\n\\x8e\\x5a\\x09\\x63\\x1c\\xdb\\x11\\x1e\\x70\\x72\\x3c\\x49\\x7f\\x15\\x99\\x4d\\\r\n\\xb4\\xd5\\xac\\xa0\\x62\\xb7\\x8c\\xc3\\x45\\x4e\\x21\\x8a\\x21\\x53\\x51\\x50\\\r\n\\x33\\x89\\x26\\xba\\xa2\\x21\\x3a\\xc8\\xfc\\xbb\\x75\\xdd\\x6e\\xba\\x9d\\x0f\\\r\n\\x51\\xd0\\x5a\\x4e\\x2f\\xc4\\xeb\\x12\\x18\\x64\\x97\\x2c\\x0d\\x25\\x8f\\x24\\\r\n\\x0b\\xe8\\x35\\x4c\\xc2\\xef\\x97\\xef\\xa9\\x1a\\xe9\\x8e\\x18\\xcb\\xc4\\xd2\\\r\n\\x21\\x3c\\x50\\x8a\\x3a\\x48\\x32\\xd5\\x3d\\x46\\x5f\\x77\\x72\\x1a\\x2b\\x19\\\r\n\\x39\\x82\\xcc\\x24\\x58\\xa4\\x56\\x5b\\x30\\x3d\\x57\\xde\\xe3\\x8f\\xfb\\x11\\\r\n\\xc3\\x89\\x9b\\x88\\xf0\\x1e\\x25\\x4f\\x02\\x33\\xca\\x3d\\xc4\\xc8\\x27\\xa0\\\r\n\\xe6\\x75\\x31\\x8a\\x15\\x8d\\xda\\x4a\\x7b\\x5f\\x41\\xf1\\x14\\xc8\\x6c\\xa8\\\r\n\\xa0\\xe5\\x0e\\x2a\\xe8\\x2a\\xe1\\x12\\xd3\\x49\\x49\\x37\\x83\\x33\\x03\\xca\\\r\n\\x96\\xfa\\x1e\\x5c\\x96\\xb3\\x25\\x8e\\xa0\\x5f\\x43\\xe7\\x7c\\x52\\x40\\x68\\\r\n\\x2b\\x62\\xaa\\xa0\\x9a\\x9e\\xb2\\xae\\x25\\x06\\x68\\x9e\\xe9\\x04\\x48\\xfa\\\r\n\\x65\\x32\\x31\\x1a\\xad\\xae\\x7a\\x7e\\xf6\\xd7\\x0d\\xed\\x15\\x28\\xab\\x9e\\\r\n\\x0a\\xa9\\xb3\\x51\\xca\\xe2\\x3a\\xe9\\x20\\xb2\\x86\\x95\\xc6\\x6e\\x74\\x7d\\\r\n\\x64\\x9e\\x54\\xa4\\x65\\x60\\x3c\\x39\\x86\\x56\\xbe\\x05\\x0d\\x80\\x11\\xa2\\\r\n\\xcb\\x18\\x16\\x49\\x7d\\xe1\\x7e\\x22\\x7c\\xb2\\x78\\x4f\\x8c\\x59\\xb7\\x3b\\\r\n\\xef\\x86\\xa1\\xa6\\x59\\x04\\x65\\x2f\\x6e\\xf7\\x6d\\xf4\\x02\\xe7\\xf3\\xc0\\\r\n\\xa1\\x84\\x1f\\x0a\\xfe\\x5d\\xbe\\xfe\\x98\\x96\\x84\\x49\\x4f\\x51\\x05\\x36\\\r\n\\x44\\x9d\\xa0\\x94\\xc2\\x6d\\xa0\\x7b\\x68\\x6d\\xa6\\xc7\\x5b\\x79\\xe2\\x3f\\\r\n\\x65\\xb8\\x4d\\x34\\x7f\\x12\\x92\\x3a\\xe9\\x99\\x00\\xa8\\x9e\\xb1\\x16\\xa6\\\r\n\\x69\\x9a\\xf7\\x24\\xb4\\xb9\\x82\\x8c\\xdd\\x4a\\x89\\x95\\x17\\xb2\\xe1\\xa8\\\r\n\\x68\\xe9\\x3a\\x38\\x74\\x51\\xd3\\x3c\\xef\\xd7\\x02\\xdd\\x60\\x23\\x5e\\xa3\\\r\n\\x0a\\x9c\\xa8\\xd7\\xd9\\xa3\\x54\\x6d\\x35\\x38\\xe7\\xc8\\x4b\\xd1\\x56\\x59\\\r\n\\x49\\x4c\\x84\\xc9\\xa2\\xb0\\x6b\\xdf\\x95\\x2b\\x2e\\x46\\x3b\\x64\\xbe\\xbb\\\r\n\\x6c\\xc0\\x0c\\x2d\\x04\\x94\\xef\\x51\\x1b\\xcb\\x11\\x81\\x19\\x1e\\x97\\x3b\\\r\n\\xda\\xa0\\xa3\\x6c\\x54\\x01\\x95\\xf2\\x36\\x87\\x5c\\xda\\x8b\\xe9\\xbc\\x15\\\r\n\\x71\\x47\\x0c\\x15\\x95\\xb6\\x09\\x0a\\xe5\\xc9\\xf3\\x4d\\x38\\xe9\\x55\\x5d\\\r\n\\x4f\\xcb\\x76\\x6f\\x2d\\x7c\\xad\\x86\\xf6\\x8e\\xb2\\xb0\\xc8\\xb1\\xd0\\x85\\\r\n\\x46\\x57\\x48\\x9d\\x64\\x24\\xa1\\xcb\\x61\\x9e\\xe0\\x0d\\xbb\\xad\\xc7\\x6d\\\r\n\\xf1\\x27\\x10\\x6e\\x6a\\x73\\x5c\\xe4\\x89\\xd4\\x10\\x06\\x8e\\xd9\\x80\\x90\\\r\n\\xe9\\xb8\\xf2\\xfa\\x61\\x28\\xa4\\xa8\\x9c\\x4b\\x1b\\x68\\xa5\\x0a\\x36\\xa1\\\r\n\\x6c\\x77\\xbf\\xdb\\x12\\xe5\\x04\\x0f\\x11\\x03\\x56\\xc7\\x14\\x60\\x63\\x55\\\r\n\\x0e\\xab\\x28\\x90\\x4b\\x6d\\x2f\\x95\\x4d\\xb3\\x79\\xf7\\x1b\\x1d\\xfe\\xf8\\\r\n\\x57\\x62\\xc0\\x99\\x13\\x38\\x0f\\x71\\x6f\\x12\\x9b\\x6a\\x7b\\x1b\\x6f\\x6b\\\r\n\\xf7\\xc5\\x4d\\x3c\\x2a\\xeb\\xcc\\x56\\xa8\\x80\\xea\\x51\\x99\\x84\\x5e\\x9d\\\r\n\\x2b\\x61\\xf9\\xfd\\xef\\x8a\\x55\\x4e\\x5c\\x8d\\x0a\\x45\\x1a\\x26\\xc9\\x1a\\\r\n\\xa8\\xca\\xb6\\xdb\\x4d\\x74\\xec\\x30\\xa4\\xb4\\x71\\xb3\\x75\\x6d\\x97\\xa7\\\r\n\\x45\\x5d\\x36\\x1e\\x67\\xe6\\x3d\\xf1\\xc5\\x95\\x6a\\x13\\x27\\x3d\\x61\\x87\\\r\n\\x23\\x09\\x7a\\x46\\x79\\x74\\xf0\\x28\\xd0\\x9f\\xd3\\x5f\\xa6\\x22\\x0d\\x4d\\\r\n\\x47\\x35\\xd1\\x55\\x34\\x51\\x7f\\xde\\x3a\\x29\\xba\\x65\\xf3\\x3a\\x0c\\xdb\\\r\n\\xed\\x8f\\x66\\xb8\\xdc\\x35\\xf4\\xc2\\x92\\x4c\\xa9\\x3d\\x32\\xdd\\x46\\xce\\\r\n\\xd1\\xf8\\x46\\x9e\\x9e\\x16\\xd3\\x43\\x6f\\x3d\\x5a\\x48\\xc5\\xc1\\xb0\\xed\\\r\n\\xbf\\xf3\\xed\\x89\\xe9\\xe3\\x23\\x3a\\xd9\\x4f\\x73\\xa0\\x52\\x0d\\x87\\xa6\\\r\n\\x29\\xdd\\x63\\x06\\x9d\\xda\\xc1\\xf5\\x53\\x97\\x4d\\x3f\\x95\\xf4\\xbe\\x2a\\\r\n\\xe9\\x9d\\xf2\\x01\\x29\\x43\\x1b\\xeb\\x62\\x56\\xe8\\xc0\\xea\\x08\\xf1\\x0b\\\r\n\\xee\\xb7\\x17\\xd7\\x5c\\x53\\x5a\\x9d\\xce\\x50\\xd2\\x1e\\xec\\xdd\\x63\\xab\\\r\n\\xc4\\x46\\xf6\\x20\\x69\\xf7\\xdb\\x0e\\xeb\\x25\\xee\\x06\\x40\\xc5\\x4d\\xf4\\\r\n\\x3b\\xeb\\x73\\x6e\\xf7\\xf0\\xee\\xda\\x8c\\x34\\x69\\x2d\\xd0\\x29\\x2a\\x76\\\r\n\\xb1\\xbd\\xbe\\xd6\\xda\\xff\\x00\\xae\\x1a\\x9d\\x50\\x5c\\xe7\\x52\\x9d\\xc0\\\r\n\\x24\\x58\\x01\\xd3\\xd3\\xab\\x0b\\xf8\\x46\\x9b\\x0b\\x9e\\xf8\\x52\\x82\\xc8\\\r\n\\x7c\\x47\\x40\\x48\\xb0\\x3a\\xae\\x82\\xf6\\x6b\\xb5\\xc2\\xf5\\x06\\x07\\x52\\\r\n\\x40\\x18\\xe2\\xfc\\x3d\\x1f\\x27\\x13\\xa4\\x86\\xdc\\x42\\x8b\\x3b\\x88\\xa1\\\r\n\\xb2\\x9a\\xca\\x59\\x40\\x35\\x74\\x73\\x0e\\x90\\xc6\\x58\\xd1\\x67\\x80\\x11\\\r\n\\xd1\\x55\\x04\\x26\\xe0\\x49\\x2a\\x9a\\x4a\\x6a\\x5a\\xaa\\x78\\x6a\\xa9\\xa4\\\r\n\\x76\\x86\\xa2\\x30\\xd1\\xba\\xf4\\xa9\\x42\\x2e\\x34\\x3d\\xef\\xa9\\x07\\xc2\\\r\n\\x74\\xb9\\xcb\\x89\\xe9\\xe4\\x58\\x8a\\x49\\x27\\x32\\x24\\xca\\x72\\xb0\\x69\\\r\n\\x32\\xc6\\x32\\xb1\\xb2\\x81\\xe3\\x7b\\x0b\\x91\\xa5\\xfb\\xe2\\x5a\\x9a\\x61\\\r\n\\x32\\xc1\\x28\\x2b\\x13\\x7c\\x5f\\x79\\x81\\x82\\xd3\\xc2\\xc0\\x6a\\x64\\x3a\\\r\n\\x32\\xda\\xd9\\x41\\x39\\xee\\x47\\x51\\xd7\\x30\\x87\\x8c\\xc0\\xa9\\xd7\\x22\\\r\n\\x3c\\xb1\\x59\\x0e\\x52\\xcc\\xac\\x72\\xdc\\x64\\x6b\\xf5\\x1c\\xba\\xb0\\x07\\\r\n\\xa0\\xf7\\xda\\xfc\\x42\\x4a\\x99\\xeb\\x1e\\x71\\x4f\\x10\\x92\\xa8\\x72\\xa3\\\r\n\\x69\\x01\\xe5\\xc5\\x15\\x82\\xda\\xd1\\x23\\x11\\xe7\\x94\\x15\\xb9\\x23\\x33\\\r\n\\x74\\x9c\\x56\\x70\\x7a\\xc9\\xc9\\xa9\\x15\\x06\\x79\\x54\\x80\\xdc\\xb4\\x54\\\r\n\\x81\\x00\\x2b\\x7f\\x11\\x21\\x72\\xde\\xe4\\x67\\xcd\\xae\\xba\\x9c\\x46\\xed\\\r\n\\x0c\\x84\\x16\\x13\\x00\\x7e\\x43\\x7e\\xaf\\x43\\x6e\\xa0\\x01\\xd4\\x8d\\x30\\\r\n\\xd2\\x21\\x7b\\xda\\xcd\\x9b\\xb5\\xf5\\x3e\\xbf\\x7b\\xe3\\x8d\\x7b\\x43\\x43\\\r\n\\xc2\\x2a\\x4f\\xbd\\x49\\x2c\\x6c\\x84\\x13\\xf0\\xd8\\xae\\x57\\x23\\x6b\\x5a\\\r\n\\xe4\\x6f\\xa0\\xf4\\xdf\\x7e\\x03\\xed\\x87\\x09\\xe2\\x34\\xea\\x8b\\x5d\\x13\\\r\n\\x38\\x36\\x40\\xd9\\x94\\x95\\xd3\\x70\\xdb\\x6f\\x7f\\xbf\\xd6\\xd5\\x32\\xd5\\\r\n\\xab\\x24\\x9c\\x3d\\xb3\\x33\\x6e\\xa3\\xad\\x24\\x07\\xb1\\x5d\\x45\\xb7\\xb9\\\r\n\\x1a\\xf7\\xbe\\x05\\x44\\x1c\\x45\\x54\\xcd\\x11\\x82\\xaa\\x22\\x73\\x5b\\x62\\\r\n\\x6f\\x94\\xe5\\x72\\x35\\x07\\xba\\x11\\xa7\\xda\\xe6\\xaa\\x95\\x39\\x2d\\x2a\\\r\n\\xd8\\x94\\x1a\\xe6\\xf2\\x03\\x56\\x36\\xf2\\x1d\\xbd\\x74\\xc7\\xb5\\xde\\xd3\\\r\n\\x53\\xf0\\x8a\\x4d\\x10\\x1a\\xb2\\x6d\\x4f\\x19\\xbb\\x23\\x8f\\x9d\\xdf\\x29\\\r\n\\xf0\\xa7\\xd4\\x66\\xd2\\xdd\\xce\\x38\\xbf\\x15\\xe2\\x7c\\x7a\\x66\\x15\\x55\\\r\n\\x02\\xd9\\xb3\\x2d\\x3a\\xf4\\xc3\\xe9\\x65\\x07\\x2d\\xfd\\x4d\\xfb\\xf9\\xea\\\r\n\\x38\\x73\\x48\\x69\\xe9\\xa1\\x46\\x79\\x0e\\x55\\x58\\xd4\\x5c\\x96\\x62\\x7a\\\r\n\\x54\\x0d\\x49\\x24\\xe8\\x00\\xfa\\x9c\\x7b\\x07\\xec\\x64\\x5c\\x1a\\x09\\x8f\\\r\n\\x15\\x55\\x1c\\x46\\xb2\\x86\\x46\\x08\\xd7\\xcd\\x44\\xbd\\x37\\x89\\x4e\\xbf\\\r\n\\x19\\xb5\\x12\\x15\\x0c\\x05\\xac\\x09\\x05\\xb1\\x3c\\x6d\\xfb\\x1a\\x71\\xc3\\\r\n\\xe4\\x92\\x2a\\xd3\\x1c\\x52\\xc4\\x8e\\x72\\xe5\\x76\\x40\\xae\\x11\\xda\\xc8\\\r\n\\x49\\xb5\\x94\\xdf\\x7d\\xc7\\x9f\\xb3\\xbc\\x0a\\x41\\xc3\\x26\\xa8\\xaa\\x26\\\r\n\\x7a\\x87\\x15\\x0f\\x19\\x3d\\x40\\x65\\x0c\\xb9\\xdb\\x56\\x0d\\x2f\\x8a\\xcf\\\r\n\\x73\\xd3\\xd4\\x3a\\x99\\xad\\x33\\xc9\\x50\\xc8\\xe5\\x40\\x02\\x20\\x83\\x5b\\\r\n\\x8d\\x2f\\xf9\\x7d\\x35\\x03\\xf9\\xf0\\x6e\\x19\\x25\\x64\\x91\\x11\\x64\\x84\\\r\n\\x1f\\x89\\x28\\x23\\xa6\\x44\\x23\\x55\\x1a\\x5d\\xa4\\x1a\\x65\\xf2\\x25\\x89\\\r\n\\x03\\x1f\\xf1\\x3e\\xb3\\x88\\x8e\\x2b\\x1f\\x04\\xa5\\x85\\xa9\\xb8\\x35\\x08\\\r\n\\x89\\xe3\\x8e\\x26\\x94\\xb5\\x55\\x44\\xe3\\x33\\x48\\x72\\xfe\\xf7\\x27\\x87\\\r\n\\x2a\\x82\\xa9\\xb9\\xb3\\x31\\x5c\\x50\\x54\\xd4\\x52\\xba\\x4b\\x05\\x43\\x42\\\r\n\\xc1\\xc7\\x47\\x5e\\xad\\xf3\\xe7\\x56\\x5c\\xb7\\x07\\x46\\x56\\x17\\xb7\\x6d\\\r\n\\xce\\x38\\x57\\xb4\\x94\\x73\\xf0\\xd9\\xa9\\x78\\xe5\\x2c\\x52\\x94\\x99\\x64\\\r\n\\x33\\x15\\x06\\x07\\x56\\x8d\\xa3\\x68\\xd5\\x7a\\x99\\x66\\xb6\\xa0\\xc6\\x34\\\r\n\\x3d\\x6b\\x66\\xdb\\x8c\\x3f\\x0c\\x98\\xe4\\xe1\\x62\\xaf\\xdd\\x55\\x5d\\x57\\\r\n\\x2e\\x5a\\x76\\x91\\x09\\xd1\\x64\\xe5\\x2c\\xb5\\x13\\x30\\xb0\\xca\\xe6\\x58\\\r\n\\x6f\\x6b\\x14\\x37\\xb0\\xf6\\x7b\\xd9\\x6e\\x01\\x37\\x0b\\x69\\xf8\\x97\\x00\\\r\n\\x91\\xea\\x2b\\x25\\x2d\\x0b\\xfb\\xcc\\xf9\\xa2\\xa7\\x4d\\x6e\\xf0\\xfb\\xca\\\r\n\\x5d\\xd9\\xc1\\x3d\\xee\\x96\\xbd\\x8b\\x1c\\x43\\x17\\x00\\x8a\\x18\\xa2\\x5e\\\r\n\\x0a\\xa1\\x63\\x89\\x23\\x51\\xc9\\x93\\x45\\x45\\x0a\\x06\\xb2\\x93\\xb0\\xf3\\\r\n\\x3f\\x5c\\x3d\\x9f\\xa8\\xf7\\xfb\\x62\\xcc\\xf6\\x0b\\xd3\\xf8\\x89\\x00\\xe6\\\r\n\\x1e\\x5a\\xff\\x00\\xa7\\xd3\\xd2\\x48\\xe4\\x58\\xcf\\x21\\x82\\x54\\x20\\xbc\\\r\n\\x4c\\xfa\\xa9\\x3f\\x85\\xb6\\xe9\\x60\\x6d\\xa6\\xbe\\x5e\\x78\\x7e\\x2f\\x3c\\\r\n\\x2a\\xc6\\xa7\\x85\\x57\\x47\\x94\\x6b\\x24\\x1e\\xed\\x51\\x01\\x3e\\x68\\xc6\\\r\n\\xa2\\x39\\x02\\x93\\xd9\\xd0\\x1f\\xb6\\xc2\\x92\\xba\\xaa\\x73\\x58\\xa8\\xc9\\\r\n\\x73\\xa0\\x94\\x08\\xc8\\x4b\\x9d\\x4a\\x87\\x60\\x0e\\xbd\\x89\\xef\\xbf\\x7a\\\r\n\\x8a\\x48\\x2b\\x22\\x51\\x24\\x68\\xf3\\x2a\\x85\\xce\\xc4\\x86\\x42\\x34\\x39\\\r\n\\x4f\\x96\\x38\\x8d\\x0f\\x13\\xa7\\x56\\x34\\x4a\\x9c\\x42\\x35\\x60\\xc2\\x12\\\r\n\\x42\\xcb\\x1b\\x5f\\x56\\x89\\xf4\\x1b\\x6e\\xa7\\x28\\xd8\\x5c\\x68\\x71\\xc3\\\r\n\\xa8\\xa4\\xe2\\x94\\xf1\\xf3\\xa9\\x9a\\x31\\xca\\x02\\xf5\\x28\\xea\\x61\\x94\\\r\n\\xb8\\x2e\\x57\\xce\\x40\\x41\\xb9\\xb6\\xc7\\xef\\x8e\\x27\\xca\\xe1\\xe5\\x8d\\\r\n\\x32\\x66\\x11\\xb0\\x8e\\xfa\\x75\\x96\\x1a\\xb3\\x7e\\x15\\xb8\\xb6\\x51\\xbf\\\r\n\\x73\\x72\\x71\\x2b\\x09\\x22\\xce\\xd9\\x57\\x30\\x32\\x10\\x06\\x50\\x99\\xad\\\r\n\\x70\\x96\\xb0\\x1a\\xdf\\xe9\\x81\\x5e\\x61\\x8e\\x99\\x5f\\xe0\\xc0\\xb1\\xc6\\\r\n\\xd7\\x07\\x59\\x5b\\x20\\x3a\\x5b\\xc4\\x49\\xd2\\xdf\\x99\\xc7\\x34\\x32\\x8b\\\r\n\\x31\\xb9\\xed\\xbd\\xbf\\x5c\\x71\\xd1\\x23\\xcb\\x1c\\xeb\\x97\\x99\\x00\\xd0\\\r\n\\x26\\xb7\\x56\\xd5\\x83\\xa9\\xf9\\x6d\\x6d\\xaf\\x88\\x20\\x15\\x90\\x89\\x53\\\r\n\\x4d\\x35\\xb7\\x67\\xfc\\x3b\\xfa\\xe9\\xe9\\x88\\x2a\\xf9\\x76\\xa6\\xa9\\x89\\\r\n\\x72\\x30\\xb6\\x76\\x02\\xf6\\xf5\\xd7\\xfb\\xb6\\x25\\x8c\\xd2\\xd4\\x34\\xb4\\\r\n\\x2d\\x9d\\x1d\\x7e\\x24\\x24\\x92\\x0f\\xa0\\xdb\\x6e\\xd8\\x4a\\xfb\\xc4\\x99\\\r\n\\x17\\x2b\\x8d\\x0a\\x38\\xf0\\xeb\\xdf\\xe9\\xf9\\x7d\\x71\\xc4\\xe8\\x2b\\xa6\\\r\n\\x96\\x9e\\xa6\\x99\\x5a\\xa0\\xa3\\x33\\x4b\\x1a\\x93\\x76\\x04\\x59\\x6c\\x0e\\\r\n\\x9a\\x10\\x7b\\x83\\x7b\\x7d\\x71\\xc3\\xa9\\x2b\\x5d\\x98\\x55\\xd1\\xcc\\x14\\\r\n\\x9e\\x6a\\xca\\x6c\\x51\\x18\\x7f\\xcb\\x1a\\xee\\x7c\\xbc\\xc7\\x98\\xd2\\x18\\\r\n\\x64\\x83\\x88\\x53\\x54\\x45\\x09\\xcf\\x08\\x7c\\xc1\\x00\\x50\\xd1\\xbe\\x8c\\\r\n\\xac\\x6d\\x6b\\xf7\\xef\\xa8\\xc4\\x13\\x47\\x54\\x9d\\x36\\xbd\\xf2\\xb7\\xe2\\\r\n\\x56\\xf9\\x95\\x88\\x24\\x2b\\x2f\\x7f\\xa7\\xae\\x14\\x2f\\x84\\xda\\xc7\\xfb\\\r\n\\xdb\\x13\\x53\\xe6\\xf0\\xfd\\xb4\\x1a\\x7f\\x3f\\xbe\\x1c\\xf3\\x23\\xb3\\x58\\\r\n\\x48\\xba\\x30\\xca\\x41\\xb0\\xd8\\xeb\\xe7\\xde\\xd6\\x1d\\xf7\\x38\\x2a\\x33\\\r\n\\x68\\x4a\\xea\\x2c\\x2f\\xa1\\xbf\\x90\\x07\\x5d\\x3c\\xff\\x00\\x3c\\x1c\\xd2\\\r\n\\x1c\\xa4\\x69\\xae\\x96\\x17\\xcc\\x2d\\xd8\\xef\\xe8\\x45\\x8e\\x86\\xf8\\xa5\\\r\n\\x8c\\x22\\x90\\x7a\\xb2\\x9b\\x6b\\x72\\xda\\x2e\\xf6\\xbf\\x9f\\xd6\\xda\\x6b\\\r\n\\x8f\\x66\\x7d\\x9c\\xa4\\xe2\\xb2\\xd4\\x9e\\x21\\x51\\x15\\x24\\x10\\x40\\x75\\\r\n\\xf7\\x98\\x52\\xa5\\x65\\x65\\x76\\x8d\\xd6\\x16\\xb9\\x64\\x44\\x8d\\x8b\\x5c\\\r\n\\x00\\xce\\xd0\\x8c\\xd6\\x66\\xc5\\x6d\\x34\\x65\\xa5\\x50\\xa1\\xda\\x09\\x64\\\r\n\\x54\\xa8\\x40\\x06\\x74\\xe9\\x60\\xd6\\x06\\x45\\x42\\xc8\\x50\\xba\\x82\\x42\\\r\n\\x93\\xbe\\xd8\\x58\\x3a\\x45\\xd6\\xf6\\xd4\\x68\\x34\\xb7\\x72\\x74\\xee\\x74\\\r\n\\x3f\\xcf\\x10\\x0f\\xd9\\xfc\\x52\\x4e\\x1c\\x87\\x2d\\x2d\\x6f\\x32\\xbe\\x88\\\r\n\\x59\\xad\\x0c\\xb7\\xbf\\x12\\xa3\\x4b\\x9b\\x14\\xcf\\x22\\x56\\x40\\x01\\xcd\\\r\n\\x69\\x2b\\x01\\x05\\x21\\x07\\x15\\xbc\\xce\\x8e\\x5d\\xc3\\x15\\x6e\\xad\\x32\\\r\n\\xb0\\x04\\x74\\x31\\xbd\\xb5\\xdb\\xf1\\x5a\\xd8\\xac\\xa7\\x5a\\x9a\\x59\\xa9\\\r\n\\x87\\x2c\\x3c\\x88\\x56\\x28\\xd6\\xe9\\x92\\x56\\x5d\\x35\\x40\\x03\\x5a\\x4d\\\r\n\\x73\\x92\\x32\\x28\\x23\\x14\\xf4\\x52\\xc7\\xc2\\xef\\x29\\xcf\\x3d\\x2a\\x28\\\r\n\\x56\\xb2\\x90\\xd3\\x5b\\xe3\\x14\\xb6\\x56\\x66\\x19\\xba\\xde\\xd6\\x66\\x03\\\r\n\\x56\\xb0\\xc2\\x54\\x55\\xbc\\xd0\\x44\\xb5\\x72\\x19\\x64\\x29\\x11\\x49\\xaf\\\r\n\\xca\\x6b\\xdb\\x78\\x0a\\xa1\\x65\\x8c\\x5c\\x15\\x0f\\x66\\x6c\\xc4\\x95\\x55\\\r\n\\xbb\\xfb\\x4b\\xc1\\x38\\x85\\x21\\x5a\\xdf\\x7d\\x6a\\x8a\\x7e\\x56\\x59\\x60\\\r\n\\x04\\x24\\x51\\xe6\\xb3\\xe7\\x48\\xe3\\xf8\\x68\\x75\\x37\\x0d\\xd7\\xaa\\xea\\\r\n\\x77\\xc4\\x51\\x46\\xc8\\x4d\\x8e\\x80\\x83\\x7d\\x37\\x03\\xef\\xe4\\x7e\\x98\\\r\n\\x92\\x06\\x42\\xd6\\xf1\\x7c\\xbd\\xc9\\x3b\\x81\\xdb\\x4b\\xfe\\x5f\\x6c\\x37\\\r\n\\x0e\\xa2\\xe2\\xc9\\x24\\x35\\xf4\\xd1\\xd4\\x67\\x8d\\xe2\\x61\\x3a\\x07\\x19\\\r\n\\xb3\\x03\\x75\\x37\\x0d\\x1b\\x2e\\x84\\x30\\x60\\x77\\xb7\\x9e\\x3f\\xf0\\x55\\\r\n\\x0d\\x34\\xaa\\x78\\x5c\\x92\\xd2\\xbc\\x4c\\x48\\x88\\xb3\\x48\\x8c\\x97\\xec\\\r\n\\x1f\\xab\\x97\\x7d\\x43\\xa3\\x5d\\x76\\x22\\xf7\\xc7\\x0c\\xa3\\xae\\x58\\xd3\\\r\n\\x9b\\x76\\x60\\x2c\\x9c\\xa7\\x25\\x7e\\xbd\\x98\\x7d\\xf7\\xd8\\xe2\\x65\\x78\\\r\n\\x46\\x59\\x22\\xb8\\x66\\xbd\\xc7\\x49\\xf1\\x58\\xd8\\xf7\\xbf\\xa6\\x98\\x83\\\r\n\\x8a\\x52\\x5d\\xe9\\xda\\x64\\x49\\x5e\\xed\\x1c\\x2e\\x7a\\xa4\\xd3\\xae\\xc3\\\r\n\\xbe\\x9b\\x81\\xa5\\xb5\\xc7\\xfc\\x4f\\xe0\\x75\\x22\\xb6\\x1a\\xda\\x58\\xde\\\r\n\\x4a\\x47\\x12\\x21\\xb1\\xbf\\x21\\xef\\xcc\\xb3\\x0f\\x95\\x18\\x66\\xb3\\x78\\\r\n\\x41\\x16\\xbe\\xa0\\x9e\\x13\\xc1\\xeb\\x78\\x8d\\x64\\x54\\xd4\\xb4\\x92\\x54\\\r\n\\xce\\xf7\\xc9\\x1a\\x23\\x33\\x9b\\x1b\\x68\\xc3\\xa4\\x2d\\xc8\\xbb\\xb9\\x55\\\r\n\\x17\\xb9\\x20\\x6b\\x8f\\x66\\x7d\\x95\\x4e\\x06\\xb3\\x71\\x2e\\x23\\x02\\x55\\\r\n\\x57\\x09\\x6a\\xe8\\xd9\\x11\\x84\\x89\\x46\\xdc\\xac\\xac\\xc8\\x6d\\xd5\\x22\\\r\n\\x67\\xb8\\x94\\xf4\\xaa\\xab\\x2a\\xad\\xae\\xe6\\x9e\\x55\\x9b\\x88\\x70\\xaa\\\r\n\\xc2\\x53\\x24\\x8a\\xaa\\x49\\x0d\\x6b\\x18\\x00\\x60\\x14\\x1f\\x88\\xdc\\xcb\\\r\n\\x84\\x50\\x7a\\x88\\x1e\\x78\\x1c\\x1e\\x8c\\x29\\xaa\\x8d\\x1c\\xd3\\x90\\xf4\\\r\n\\xc5\\x65\\xda\\x58\\xd9\\x99\\x1d\\xf2\\x6e\\x8c\\x1c\\x28\\xb7\\x6b\\xf6\\x1a\\\r\n\\x63\\x86\\x47\\x49\\x43\\x4b\\x59\\x4a\\x23\\x8e\\x13\\x49\\x3c\\xb4\\xed\\x65\\\r\n\\x3f\\x12\\x36\\xf8\\xd0\\xb6\\x9f\\xc1\\x26\\x53\\x6f\\x98\\x6b\\x8a\\x4e\\x09\\\r\n\\x53\\x2f\\x13\\x68\\x96\\x35\\x34\\xef\\x23\\x3b\\xc8\\x41\\x08\\x23\\x0c\\x6f\\\r\n\\x61\\x73\\x66\\x17\\xb0\\x8c\\xd8\\xb0\\x23\\x4c\\x86\\xf8\\xab\\xaa\\x8b\\x86\\\r\n\\xc6\\x38\\x75\\x04\\x6a\\xac\\x80\\x93\\x67\\x19\\xe3\\xcf\\xba\\x8d\\x49\\xf7\\\r\n\\x83\\xe2\\xbb\\x6c\\xbd\\x20\\x7e\\x1e\\x2b\\x44\\xb5\\x95\\x05\\x9e\\xe3\\xe1\\\r\n\\xe7\\x89\\xec\\xaf\\x22\\xb1\\x4b\\xe7\\xb3\\x02\\x39\\x6b\\xae\\x70\\x47\\x55\\\r\n\\xd8\\x5b\\x7b\\x4b\\xc1\\x27\\xa6\\xae\\x9a\\x85\\x57\\x9e\\x96\\x6a\\x86\\x74\\\r\n\\x5c\\xa8\\xdc\\xf0\\x79\\x13\\xa8\\x07\\x3a\\x32\\x9c\\xcb\\xcb\\x66\\x29\\xa3\\\r\n\\x16\\x5e\\xe7\\x83\\x7b\\x11\\x0d\\x55\\x0c\\x33\\xf1\\x29\\x5d\\x63\\x9a\\xa1\\\r\n\\x60\\x8d\\x69\\x99\\x56\\x55\\x7c\\xd9\\x4b\\xcc\\xef\\x1b\\x80\\xe5\\xf2\\xe8\\\r\n\\xaa\\xa3\\x28\\x24\\x80\\xb6\\xb9\\xf6\\x4f\\x86\\xf0\\xe0\\x5e\\x8e\\x12\\x19\\\r\n\\x25\\x81\\xde\\x7a\\x99\\x9e\\x76\\xe5\\xe7\\x60\\xc4\\x16\\xd3\\x4b\\x03\\x64\\\r\n\\x5d\\x71\\x44\\x44\\x2d\\x92\\x55\\x47\\x5d\\x16\\x50\\xe0\\x11\\x04\\xad\\xd2\\\r\n\\x92\\x83\\xe2\\x31\\x4b\\xa2\\xc8\\xc2\\xd6\\x7b\\x35\\xec\\xd9\\x8b\\x56\\x50\\\r\n\\x23\\x32\\x38\\x68\\xdd\\x09\\x56\\x4e\\x59\\x39\\x19\\x4d\\x99\\x6f\\xdf\\x29\\\r\n\\xd2\\xfe\\x98\\x69\\x24\\x6b\\x02\\x72\\xdb\\x09\\x52\\x8b\\xbc\\x9b\\x10\\x3c\\\r\n\\xfe\\xbb\\x5f\\x0f\\xc5\\x29\\xd6\\xc0\\x12\\xe7\\x4f\\x08\\xb9\\x24\\x9b\\x7a\\\r\n\\xed\\xf6\\xc4\\x13\\x1a\\xf9\\xb9\\x3c\\x96\\x54\\xcd\\xad\\xef\\xdb\\xcf\\xd3\\\r\n\\x5e\\xf6\\xfe\\x58\\xf7\\x72\\x14\\xe6\\xca\\x72\\x68\\x08\\xf2\\xd7\\xbe\\xb7\\\r\n\\xc4\\x94\\x6a\\x41\\x65\\x2c\\x58\\x96\\x6b\\x13\\xbd\\xee\\x6d\\xa6\\x38\\x75\\\r\n\\x34\\x69\\x18\\xa9\\x9e\\x3c\\xa9\\x70\\xb1\\xa6\\xc4\\xbd\\xfc\\x46\\xfa\\xb2\\\r\n\\xee\\x7b\\x93\\xf4\\xc5\\x75\\x74\\x74\\x74\\x75\\x95\\x01\\x94\\x08\\xcb\\x11\\\r\n\\x7d\\x02\\x82\\x47\\x51\\xd0\\xff\\x00\\x5c\\x4b\\x35\\x25\\x6d\\x02\\xb6\\x74\\\r\n\\x73\\x54\\x81\\xa2\\xb9\\xc9\\x77\\x1a\\x5e\\xed\\xfc\\x5a\\x7a\\xef\\xb6\\x26\\\r\n\\x75\\x46\\x14\\xce\\xcc\\x1e\\x2f\\x1a\\x11\\x94\\xbd\\xbf\\xf4\\xf4\\xb3\\x03\\\r\n\\xa0\\xdc\\xeb\\x85\\xa4\\x9f\\x88\\x24\\x6d\\x29\\x96\\x18\\xa3\\x58\\xf9\\x48\\\r\n\\x74\\x99\\xd4\\x75\\x11\\xe4\\x83\\xe5\\xb8\\x17\\x23\\xca\\xd8\\x40\\xa8\\x23\\\r\n\\x45\\x5b\\x10\\x35\\xee\\x6d\\x61\\xe7\\xb9\\xf3\\xc5\\x55\\x1f\\x3a\\x42\\xc4\\\r\n\\xd8\\x30\\xb6\\xde\\x84\\x5b\\xcf\\xcb\\x11\\xa1\\xa1\\x76\\x4b\\xba\\xa3\\xb5\\\r\n\\x88\\xcd\\xa7\\x90\\x3a\\xde\\xd7\\x1e\\xa7\\x6c\\x34\\x30\\x4a\\x39\\x72\\x86\\\r\n\\xb9\\x3a\\x39\\xfa\\x6e\\x2d\\x98\\x7d\\x35\\x17\\x1d\\xb0\\xc3\\xdd\\x9b\\x24\\\r\n\\x80\\xb4\\x64\\x74\\xba\\x8d\\x7e\\xfa\\xe1\\x55\\xe5\\xbc\\xb0\\x6a\\xb9\\x8e\\\r\n\\x9d\\xc8\\x1d\\xcf\\xfb\\xdf\\x0b\\x56\\xd0\\x46\\xd2\\x32\\x15\\xca\\x85\\x8d\\\r\n\\xd6\\xfa\\x2e\\xba\\x79\\x9f\\x4c\\x37\\x14\\x54\\xe5\\xce\\x8f\\xcc\\x86\\x74\\\r\n\\x12\\x59\\x0d\\xfc\\x80\\x93\\x4f\\x08\\x24\\x85\\x3a\\x7e\\xbb\\x41\\x5d\\x5a\\\r\n\\xd5\\xeb\\x9e\\x33\\x10\\x3a\\x14\\xb5\\xc4\\x97\\x61\\x94\\x93\\xfe\\x52\\x6f\\\r\n\\xea\\x4e\\x3d\\xf1\\xf8\\x67\\xb6\\x42\\x30\\xf6\\xa1\\xe3\\xd4\\xc9\\x1a\\xc7\\\r\n\\x73\\x95\\x38\\x8d\\x12\\x93\\x1b\\x80\\x74\\x53\\x3c\\x19\\xe3\\x6b\\x6a\\xee\\\r\n\\x23\\xcd\\xa2\\xdf\\x09\\x29\\x6f\\x0f\\x51\\x1b\\xf9\\x03\\xf5\\xf3\\xed\\x6d\\\r\n\\xb1\\xef\\x2d\\x70\\xb2\\x28\\x0a\\x7e\\x6c\\xa7\\x46\\xb5\\xc1\\xbd\\xbd\\x3e\\\r\n\\x98\\x98\\x14\\xf8\\xa7\\x63\\xa1\\x3e\\x60\\x9f\\xcb\\x4d\\xf6\\xed\\x89\\x34\\\r\n\\x20\\x9d\\x35\\xf9\\x6f\\x7b\\x61\\x7f\\x78\\x41\\x17\\x47\\x25\\xd1\\xb6\\x20\\\r\n\\xfd\\x58\\x6c\\x40\\x26\\xda\\x93\\xa6\\x21\\x37\\x7e\\x5a\\x9b\\x9d\\x46\\x6f\\\r\n\\x97\\xed\\xf4\\x3b\\xff\\x00\\x76\\x77\\xa8\\x69\\xbd\\xe1\\x72\\x2b\\x95\\x09\\\r\n\\x32\\xb7\\x31\\xa1\\x70\\xaa\\xab\\xcc\\xe8\\x3f\\xc2\\x09\\xd1\\x48\\x3e\\x1b\\\r\n\\xec\\x5a\\xa1\\x8f\\xc1\\xcd\\x98\\x12\\x4b\\x10\\x2c\\xb9\\xc9\\x17\\xb0\\x3b\\\r\n\\x0b\\x04\\xd0\\xeb\\x61\\xa9\\xd6\\xc1\\x2d\\x96\\xde\\x62\\xff\\x00\\x9e\\xa7\\\r\n\\xfa\\x5b\\x1c\\x52\\x96\\x49\\xe1\\xcd\\x0f\\xfe\\x6e\\x92\\x54\\xad\\xa1\\x3b\\\r\n\\x1f\\x78\\x80\\xdf\\x21\\x37\\x1d\\x15\\x11\\x19\\x29\\xa4\\x1d\\xe3\\x99\\xf7\\\r\n\\xc6\\x58\\xb8\\x97\\x0d\\x82\\x78\\x9e\\x68\\x63\\xa8\\x11\\xc9\\x1b\\xa9\\xe5\\\r\n\\xc8\\x99\\xae\\x72\\x3f\\x75\\x65\\xf0\\xba\\x11\\xa3\\x2b\\x03\\xb6\\x1e\\x95\\\r\n\\xa9\\x17\\x97\\x3c\\xcb\\x30\\x28\\x19\\x99\\x55\\x56\\x60\\x7e\\x5c\\xcc\\x89\\\r\n\\x77\\xcf\\xa2\\xae\\x97\\xfe\\xaa\\xb3\\x54\\xd4\\x3d\\x38\\x96\\x48\\xd4\\x46\\\r\n\\xc1\\xda\\x1c\\xa4\\x06\\xbe\\x6e\\x59\\xe6\\x02\\x57\\x2f\\x9a\\x8d\\x6f\\xeb\\\r\n\\x7c\\x52\\x7b\\x92\\x04\\x49\\x9b\\x3d\\x44\\x17\\x74\\x96\\x40\\x33\\xb5\\xbb\\\r\n\\xdf\\x4b\\x9b\\xfa\\x5a\\xf6\\x3e\\x58\\xe2\\xbc\\x75\\x6b\\x69\\xa7\\xa3\\xca\\\r\n\\x1b\\x30\\xc9\\x9a\\x4e\\xa2\\x40\\xb5\\xf2\\x80\\xd9\\x6d\\xa0\\xf5\\xd3\\x14\\\r\n\\x68\\x79\\xc1\\x0b\\x35\\x9d\\xec\\xc0\\x93\\xfd\\x3d\\x31\\x59\\x1e\\x42\\xd9\\\r\n\\x41\\x62\\x2d\\x94\\xde\\xc6\\xdf\\xcb\\x0b\\x34\\x34\\xce\\xf2\\x48\\xca\\x81\\\r\n\\x8f\\x98\\x16\\x90\\x0c\\xad\\xf3\\x0b\\xab\\x00\\x3b\\x68\\xc0\\xeb\\xae\\x2a\\\r\n\\xab\\x96\\x74\\x41\\x1c\\xa5\\x5e\\x19\\x0b\\xc0\\xa9\\x1c\\x84\\xae\\x61\\x69\\\r\n\\x2c\\xe8\\xba\\xab\\xee\\x54\\x86\\xb5\\xbc\\x8e\\x38\\x6d\\x53\\x4b\\x17\\x52\\\r\n\\x4c\\xb2\\x00\\x1b\\x3f\\x26\\x5b\\x36\\x9a\\xfc\\x9a\\x79\\xec\\x3d\\x71\\x52\\\r\n\\xf0\\xce\\x81\\x65\\xb3\\x0b\\x5a\\xfb\\x1b\\xf7\\xee\\x3b\\xfa\\xe3\\x8e\\xfb\\\r\n\\x25\\x1f\\x12\\xa9\\x4a\\x88\\x2b\\xe4\\xa1\\x78\\x48\\x64\\x2a\\xbc\\xcc\\xb2\\\r\n\\x29\\x16\\x2b\\x69\\x17\\x5e\\xf6\\xcc\\x2f\\x60\\x3e\\x95\\xd0\\x50\\xd5\\x2a\\\r\n\\xe7\\x33\\x39\\x55\\x54\\x95\\xb2\\x2e\\x57\\x91\\x54\\x02\\xce\\x8b\\xcc\\xcb\\\r\n\\xf8\\x99\\x76\\x37\\xf4\\xc7\\x0f\\x8b\\x84\\x53\\x23\\x47\\x47\\x0c\\x74\\x75\\\r\n\\x94\\xf7\\x76\\xaa\\x5a\\x64\\x0c\\xf0\\x0d\\x4a\\x37\\x2d\\x22\\x2e\\x2e\\x41\\\r\n\\xea\\xb9\\x22\\xe6\\xfa\\x63\\x87\\xd0\\xa2\\xbc\\xad\\x15\\x75\\x1d\\x5b\\x4b\\\r\n\\x3d\\x48\\x72\\xf3\\x3d\\x32\\x06\\x99\\x35\\x46\\x12\\xa3\\x75\\x21\\x25\\xae\\\r\n\\x2e\\x18\\x1b\\x76\\xbe\\x13\\x83\\xf1\\x31\\x47\\x0b\\x04\\x87\\x97\\x4f\\x29\\\r\n\\x78\\x64\\x8a\\xa1\\x5c\\x91\\x0c\\xb9\\xd0\\x2a\\x80\\x80\\xe6\\xb0\\xc8\\x73\\\r\n\\xea\\x08\\xbe\\xe7\\x09\\x53\\x5d\\x2d\\x03\\x2c\\x34\\x4c\\xdf\\xf9\\x89\\x2e\\\r\n\\xed\\x1a\\x86\\x59\\x65\\x32\\xdc\\x24\\x45\\xe5\\xb8\\x63\\x61\\xe1\\x1a\\x06\\\r\n\\xd7\\xba\\xc1\\xc4\\x2b\\x38\\x8b\\x0a\\x87\\x9d\\x63\\x9e\\x38\\xa4\\xa8\\x92\\\r\n\\x2f\\x87\\x22\\xac\\x7a\\x88\\xda\\xfa\\x2a\\x8f\\xdd\\xa2\\xe8\\xf9\\x55\\x89\\\r\n\\xee\\x31\\xc5\\x2b\\x97\\x83\\x51\\x34\\x7c\\x3e\\x0a\\x99\\xa5\\x70\\xed\\x68\\\r\n\\x88\\x9e\\x58\\x99\\x81\\xff\\x00\\x13\\x32\\x03\\x99\\x8e\\x80\\x28\\x8d\\x58\\\r\n\\xa9\\xb1\\x23\\x28\\xc4\\x1c\\x5d\\x67\\x7c\\xb5\\x15\\x31\\x3c\\x8e\\xfc\\xde\\\r\n\\x70\\x94\\x73\\x15\\xcd\\x9a\\xce\\x19\\x83\\xf4\\x9b\\xdc\\x58\\x00\\x7a\\x48\\\r\n\\xb6\\x2a\\x2b\\xb8\\x74\\xa2\\x37\\xaa\\xaf\\xa4\\x87\\x97\\x12\\xa3\\x67\\xa8\\\r\n\\x8e\\x30\\xe6\\xe4\\x6a\\x43\\x76\\x00\\x37\\x62\\x41\\x1b\\xf8\\x71\\xc5\\x26\\\r\n\\xf7\\x83\\x9f\\xd9\\xe3\\x1d\\x5d\\x54\\xed\\x15\\x3d\\x6f\\x11\\x8d\\x73\\xc7\\\r\n\\x43\\x4a\\x33\\x48\\x32\\x48\\xcb\\xcb\\x8e\\x6b\\xe6\\xd6\\xc4\\xea\\x80\\x5d\\\r\n\\x8a\\xda\\x8b\\x86\\xfb\\x9f\\xb3\\xdc\\x3b\\x29\\x96\\x58\\x92\\xa6\\x9a\\xa1\\\r\n\\xa4\\x76\\xcf\\x23\\xa4\\x4c\\x82\\x49\\x7a\\x41\\x39\\x9f\\x2b\\x5d\\x46\\x6b\\\r\n\\xb1\\xda\\xd8\\x9c\\xad\\x5d\\x35\\x44\\x90\\x82\\xe8\\xc6\\xd7\\x0a\\xcb\\x97\\\r\n\\x25\\xb3\\x0f\\x3f\\x15\\xf4\\xd3\\x7c\\x33\\xaa\\x9a\\x7a\\x9c\\xbc\\xcc\\xe9\\\r\n\\xee\\xf3\\xc4\\x47\\x88\\x81\\x96\\x54\\x3f\\xfe\\x48\\xd7\\x99\\x1e\\x84\\x87\\\r\n\\x44\\x23\\x55\\xd3\\xdc\\x5e\\x4f\\x88\\x95\\xf4\\x99\\x24\\xeb\\x4e\\x6c\\x2a\\\r\n\\x65\\xca\\xdd\\x4b\\xcc\\x20\\xd8\\xc9\\x63\\xd6\\x7f\\x15\\xf1\\x4f\\x37\\xbd\\\r\n\\x14\\x81\\x65\\x73\\x2c\\x79\\xcc\\x8b\\x27\\x35\\xcd\\xfe\\x66\\x57\\x2b\\x94\\\r\n\\x2d\\xef\\x65\\x2f\\xa5\\xac\\x06\\x16\\x91\\x5c\\xe5\\x76\\x2c\\x0d\\xbb\\xf7\\\r\n\\x1a\\xf6\\xf2\\xfc\\xfd\\x70\\x91\\x25\\x3a\\x92\\x10\\x03\\xf4\\x1a\\xfd\\x6f\\\r\n\\xf9\\x79\\xe3\\x87\\x53\\x94\\x32\\x3b\\x69\\x9d\\x7c\\x5a\\xe8\\x59\\x76\\xdb\\\r\n\\x4c\\xa0\\x9e\\xe7\\x7c\\x56\\x48\\x63\\x84\\x75\\xf6\\xe9\\xb8\\xca\\x2e\\xdd\\\r\n\\x2a\\x49\\xef\\x6d\\xf1\\xc3\\xd4\\x55\\x4a\\x07\\xfc\\xa1\\xe2\\x6f\\xf2\\xeb\\\r\n\\x96\\xf8\\xe2\\x55\\x71\\x43\\x11\\x16\\x01\\x12\\xd6\\xbf\\x73\\x62\\x05\\xbf\\\r\n\\xee\\x35\\xc7\\x17\\x8d\\xb8\\xa2\\xca\\x94\\xec\\xec\\xb3\\x8e\\x5c\\x91\\x2c\\\r\n\\x96\\x5c\\xa0\\xaf\\x57\\x95\\xd2\\xd7\\x3e\\x8c\\x74\\x36\\xd1\\xe9\\x68\\x44\\\r\n\\x49\\x4d\\x26\\x65\\x31\\x44\\x89\\x19\\x00\\x2e\\x45\\x00\\x68\\x18\\x5c\\x36\\\r\n\\xde\\x57\\x38\\x8a\\x4a\\x68\\xe4\\x17\\x87\\x48\\x2e\\x23\\x96\\x40\\x1d\\x80\\\r\n\\xfe\\x1b\\xaf\\xf3\\xd7\\x02\\xa9\\x0a\\xdd\\x36\\x1b\\x31\\xdf\\xd4\\x58\\x79\\\r\n\\xe9\\x82\\xe5\\x40\\x90\\x30\\xb6\\xff\\x00\\xa7\\x7b\\x1d\\x6c\\x3c\\xb1\\x1c\\\r\n\\xe5\\xed\\xae\\xb7\\xdb\\xe9\\xfc\\xbe\\xf8\\xa9\\x8d\\x2a\\x5c\\xc5\\x94\\xf5\\\r\n\\x80\\xd7\\xbf\\x85\\xbe\\xbf\\x4c\\x44\\x93\\x53\\x30\\x8e\\x5f\\xf9\\x7a\\x2b\\\r\n\\x9f\\x9d\\x6f\\x65\\x1f\\x6c\\x55\\xba\\x04\\x12\\xd9\\x0a\\xe5\\xb3\\x16\\xd8\\\r\n\\xdf\\x41\\xd3\\xdc\\xfe\\x5f\\x5c\\x52\\x87\\x8e\\xed\\x95\\x79\\x26\\xe4\\xe4\\\r\n\\x3f\\xff\\x00\\x3f\\xe9\\xf6\\xd7\\x13\\xcd\\x46\\xf4\\xae\\x58\\x86\\x52\\xad\\\r\n\\xd2\\x05\\xdf\\x40\\x74\\x0b\\xe7\\xe4\\x3d\\x71\\xc3\\xca\\x42\\xb3\\x42\\xcb\\\r\n\\x20\\x50\\xf2\\x84\\x8e\\x42\\x5b\\x2c\\x32\\x39\\x2a\\x14\\x76\\xb5\\xf4\\xc4\\\r\n\\x6e\\x57\\x34\\xae\\x18\\x7b\\xbc\\x61\\x51\\x8f\\xce\\xd2\\x8f\\x87\\xaf\\x72\\\r\n\\x13\\x71\\xe6\\x2f\\x8e\\x2d\\x14\\x95\\x34\\xb1\\x54\\x45\\x9b\\xde\\x78\\x6d\\\r\n\\xab\\x29\\xe4\\x1b\\x89\\x60\\x94\\x39\\xb6\\x97\\xb1\\x40\\xc9\\xff\\x00\\x55\\\r\n\\x8e\\xf8\\x8b\\x88\\x1a\\x9e\\x1d\\x0d\\x65\\x34\\x96\\xf7\\x88\\x56\\x70\\x55\\\r\n\\xb5\\x05\\xd0\\xb1\\x17\\xfe\\x12\\x32\\x9d\\x6f\\x70\\x46\\x22\\xaa\\x26\\x18\\\r\n\\x8c\\xb6\\x2b\\x24\\x4a\\x58\\xdb\\xc2\\x5d\\x41\\xdf\\xc5\\x63\\xaf\\x99\\x1a\\\r\n\\x6a\\x30\\x93\\x23\\x5c\\x2e\\x62\\x06\\xdd\\xf4\\xbd\\xb7\\xff\\x00\\x5c\\x4c\\\r\n\\xa4\\xa9\\xb0\\x37\\x1f\\x9e\\x21\\x50\\xd6\\x16\\x3d\\x87\\xe5\\xa6\\xa3\\xe9\\\r\n\\xaf\\xd3\\x05\\x7a\\xb4\\xb8\\xd4\\xf9\\xfa\\xeb\\xa6\\xbd\\xbb\\xe3\\x31\\x20\\\r\n\\xe6\\xbe\\xa4\\xe8\\x7b\\x6b\\x6d\\x3d\\x3f\\xdf\\x00\\x10\\x58\\x03\\x70\\x7f\\\r\n\\xbd\\x3c\\xed\\x88\\xae\\x05\\xc9\\x3d\\x20\\x92\\x0f\\xf7\\xeb\\x85\\x82\\x57\\\r\n\\x6c\\xc0\\x5c\\x6f\\x9b\\xc9\\x49\\xdf\\xf3\\x23\\x7f\\x3d\\x8e\\x13\\x88\\xa5\\\r\n\\x17\\x13\\xac\\xe0\\xb9\\x49\\x8f\\x2c\\x7c\\x56\\x8c\\xfe\\x28\\x6a\\xe4\\x91\\\r\n\\x2a\\xf2\\x8d\\x3a\\x60\\xaa\\x56\\x3a\\xff\\x00\\xf5\\x0a\\x9a\\x65\\xb9\\x9e\\\r\n\\xa5\\x0c\\x32\\xcc\\x13\\x96\\x61\\x5c\\xd9\\xf2\\x8e\\x64\\xb6\\xf0\\x8f\\x50\\\r\n\\xa6\\xf6\\xbe\\x80\\x91\\x8a\\x0a\\x91\\x2d\\x4c\\x93\\x49\\x99\\x03\\xb0\\x4d\\\r\n\\x81\\xcd\\xa9\\xbe\\x6e\\x90\\x00\\xb8\\x04\\x58\\x9d\\x77\\xc7\\x15\\xe2\\x7c\\\r\n\\x32\\x1a\\xd9\\x61\\x79\\x48\\x97\\x2a\\xe4\\xe5\\x46\\xcc\\xea\\xce\\x3c\\x26\\\r\n\\xc7\\x2e\\x5b\\x0d\\x47\\x9f\\x7b\\x69\\x81\\x56\\x67\\x97\\x99\\x13\\x1e\\x51\\\r\n\\x5c\\xb7\\x75\\xb1\\x0c\\x17\\x70\\x73\\x1d\\x2d\\xe9\\x6d\\xc6\\xa7\\x5c\\x23\\\r\n\\x14\\x26\\x40\\xf9\\xa4\\x1a\\xdb\\x5b\\x66\\x1a\\x8b\\x90\\x0e\\xff\\x00\\xdf\\\r\n\\x9e\\x0b\\x3c\\x8a\\xa6\\xa2\\x3c\\x8e\\xfe\\x0d\\xc8\\xb1\\xf3\\x37\\xed\\xfd\\\r\n\\x76\\xc1\\xa1\\x91\\xea\\x33\\x9c\\x88\\x91\\xe7\\x46\\x7c\\x83\\x39\\x5b\\x83\\\r\n\\x65\\x66\\xbe\\xbb\\x7d\\x6d\\x81\\x4b\\x4f\\x93\\xa9\\xa4\\x65\\xc9\\xa8\\xe6\\\r\n\\x48\\xba\\xe6\\x06\\xd6\\x2c\\xb7\\xf2\\x1a\\x5f\\x6b\\xe0\\xd4\\x21\\x65\\x02\\\r\n\\x26\\x8d\\x03\\x2a\\x81\\x2b\\xb1\\x22\\xe6\\xc5\\x82\\x3d\\xc6\\x80\\x5c\\xea\\\r\n\\x4f\\xae\\x00\\x1c\\xb0\\x0e\\x5b\\x76\\xba\\xa8\\xd0\\xdc\\xfd\\x46\\x2a\\xa0\\\r\n\\x98\\x2b\\x72\\x8b\\x32\\xb5\\xd8\\x46\\x4d\\xce\\x83\\xb1\\x5d\\xaf\\x7e\\xff\\\r\n\\x00\\xcb\\x0d\\x50\\xb4\\xf3\\xac\\xe6\\x9a\\x37\\x29\\xd3\\x35\\x3b\\xbc\\xc9\\\r\n\\x24\\x8c\\x0e\\x92\\xc6\\x7b\\x48\\x34\\xd2\\xd6\\x6d\\xad\\x7b\\x61\\x1a\\x36\\\r\n\\x4f\\x79\\xa7\\x8c\\xf3\\x25\\x1a\\x95\\x90\\xe8\\xb6\\x3f\\x09\\xad\\xbf\\x51\\\r\n\\xd7\\x4f\\xae\\x38\\x64\\x13\\x0f\\x7d\\x90\\xcb\\x90\\x2c\\xf5\\x60\\xc6\\xd9\\\r\n\\x4e\\x56\\x14\\xe5\\x83\\x66\\xb6\\xa4\\xf8\\x40\\xd8\\x7d\\xf1\\xc3\\xb8\\x7c\\\r\n\\x8d\\x25\\x32\\xd4\\x71\\x05\\xab\\xa3\\xab\\xa2\\x7a\\x86\\xa4\\x12\\xf2\\xe4\\\r\n\\x8d\\x72\\x44\\xc8\\x64\\x53\\x75\\x89\\x59\\xd5\\xd6\\x30\\x58\\x16\\x06\\xe3\\\r\n\\xbd\\xa3\\x26\\x15\\x91\\x69\\xa4\\x2e\\x20\\x94\\xa4\\xaa\\x49\\xce\\x11\\x88\\\r\n\\xea\\x02\\xd7\\x2d\\x13\\x59\\x74\\x17\\xe9\\x3e\\x78\\x88\\xd3\\x45\\xc3\\xda\\\r\n\\x5a\\xc9\\x32\\x48\\xab\\x77\\x7c\\xac\\x4b\\xc9\\x77\\xe4\\xdd\\x51\\x40\\xb6\\\r\n\\x4b\\x78\\x6f\\xf8\\x4d\\x8e\\x14\\xa5\\x55\\x4c\\xbc\\xa3\\x9b\\xde\\x61\\x8a\\\r\n\\x78\\xe4\\x40\\x10\\x8b\\x31\\x52\\x18\\xea\\xd6\\xb0\\x16\\x1d\\x2d\\xe9\\x8a\\\r\n\\xae\\x1b\\xc3\\xa4\\xeb\\x9f\\x87\\xd2\\xb5\\x4a\\x48\\x63\\x98\\xfb\\xb4\\x59\\\r\n\\x83\\x7e\\x22\\x72\\xdc\\xe6\\xdf\\x31\\xb8\\x20\\xde\\xfa\\x13\\x8a\\xff\\x00\\\r\n\\x66\\xbd\\x9a\\x65\\xa7\\x79\\xf8\\x7c\\x68\\xee\\x6e\\x50\\x5e\\x38\\x8c\\x99\\\r\n\\x0e\\x59\\x19\\x55\\x97\\x30\\xfc\\xe3\\x17\\x17\\x1a\\x9c\\x4b\\x0c\\x54\\xd4\\\r\n\\x73\\x47\\x04\\x31\\xc3\\x03\\xc9\\x10\\x48\\xa2\\x8d\\x55\\x03\\x12\\x03\\x10\\\r\n\\x10\\x65\\xd4\\x05\\xd7\\xbe\\x38\\xa4\\x93\\x0a\\x7e\\x13\\x4a\\x24\\x8b\\x96\\\r\n\\xf2\\xa2\\x43\\x14\\x89\\x65\\xf8\\x50\\xe6\\x85\\x4b\\x8d\\xef\\xd4\\x5d\\x9b\\\r\n\\x73\\x63\\xbe\\xb8\\x34\\xe6\\x2e\\x1f\\x3a\\xb0\\xca\\x63\\x91\\x73\\x72\\x98\\\r\n\\x3a\\xe6\\x21\\x3c\\x0e\\xb7\\xcc\\xb6\\x3e\\xbd\\xf6\\x38\\xa5\\xcb\\x57\\x1d\\\r\n\\x45\\x2d\\xd1\\x24\\x2e\\x24\\x8a\\x4b\\xf5\\x07\\x5e\\xe7\\x53\\x70\\x73\\x0b\\\r\n\\xfd\\x48\\xf0\\x92\\x30\\xf0\\x94\\x66\\x47\\xa2\\x9b\\x3a\\xb1\\x57\\xb1\\x7b\\\r\n\\x66\\x06\\xcd\\x6b\\x29\\x1b\\xf9\\x1c\\x47\\xc3\\x20\\xa0\\xa9\\x7c\\xcb\\xd2\\\r\n\\xf4\\xc1\\x22\\xc8\\xce\\xaa\\xa9\\x98\\xba\\xc8\\x99\\x89\\x19\\xb3\\x1b\\x96\\\r\n\\x04\\x96\\x27\\x5e\\xd7\\x32\\x4d\\x14\\xa0\\x73\\x98\\x8d\\x48\\xcc\\x3e\\x6b\\\r\n\\xdb\\x5b\\xdb\\xd7\\xb6\\xfb\\x62\\x8a\\x9a\\x79\\x8f\\xf8\\x96\\x0e\\x0f\\x47\\\r\n\\x28\\x69\\x98\\xb7\\x86\\xe4\\x01\\xf5\\x3f\\x96\\x24\\x89\\x29\\xe3\\x86\\x9a\\\r\n\\x3e\\x80\\x40\\x16\\x17\\x3b\\x9e\\xb3\\x98\\x9d\\x74\\x36\\xfd\\x31\\x5d\\x14\\\r\n\\xbc\\x46\\x71\\x4f\\x1f\\xee\\x54\\x87\\x94\\x8b\\x0c\\x8a\\xbe\\x1f\\xce\\xd7\\\r\n\\x18\\x44\\x5a\\x74\\x58\\xa3\\xb6\\x54\\x07\\xcb\\xd4\\x9b\\xdb\\xf1\\x1d\\x31\\\r\n\\xc6\\x25\\x96\\xa9\\x95\\x10\\x9c\\xab\\xba\\xae\\xc3\\xfc\\xdb\\x6a\\x37\\xfb\\\r\n\\xef\\xbe\\x12\\x58\\xa8\\xde\\x35\\xcc\\x4c\\xa6\\xe5\\xb2\\x9d\\x34\\xb5\\xb3\\\r\n\\x0d\\x6c\\x4d\\xec\\x3e\\xbb\\xe3\\x95\\xef\\x90\\x67\\x5d\\x1d\\x1c\\x12\\x2c\\\r\n\\x01\\x23\\xb7\\xfd\\x3e\\x83\\xd3\\x5c\\x71\\x68\\x88\\x8c\\x11\\xae\\x61\\x62\\\r\n\\xd9\\x72\\x0d\\xb5\\xb1\\x3b\\xfd\\x74\\xda\\xf8\\xa7\\x59\\x6c\\x34\\xd2\\xc3\\\r\n\\x6d\\xb4\\xef\\xb7\\xdf\\x5f\\xd3\\x10\\xc2\\x65\\x40\\x35\\xb7\\x9e\\x84\\x7e\\\r\n\\x5f\\xed\\xfe\\xed\\x0f\\x21\\xc9\\x73\\x60\\xc4\\xf6\\xbf\\xae\\xbe\\x9f\\xeb\\\r\n\\x8a\\x96\\x50\\xc8\\xe8\\xda\\x15\\x39\\xad\\xf8\\x86\\xda\\xfa\\xf7\\xc4\\xf5\\\r\n\\x34\\xef\\x4c\\xaa\\xc9\\x2e\\x60\\xc0\\xdf\\xcc\\xe9\\xb1\\x3f\\x9f\\xdf\\xe9\\\r\n\\x89\\x8b\\x55\\x15\\x48\\xee\\x14\\x75\\x65\\x6d\\x88\\xcb\\xaf\\xdc\\x62\\x1a\\\r\n\\x54\\xe4\\x4c\\x49\\x19\\xc6\\x42\\x03\\x9b\\x0b\\x29\\xeb\\xdf\\x42\\xc6\\xf6\\\r\n\\x1e\\xb8\\x6a\\x34\\x78\\xd9\\x19\\xcc\\x3a\\x16\\xcc\\xab\\xd4\\x08\\x1d\\x22\\\r\n\\xd7\\xb1\\xd6\\xdf\\x6c\\x08\\xd0\\x55\\x09\\x4e\\x4b\\xbc\\x41\\x1d\\x48\\x24\\\r\n\\xc8\\xcb\\x61\\x98\\x7e\\x4b\\xb7\\x9d\\x8f\\xad\\x75\\xb2\\xd3\\x43\\x94\\x9c\\\r\n\\xdf\\x1d\\xc8\\xbe\\x86\\xd9\\x53\\x4f\\x44\\x37\\xf3\\xfc\\xf0\\x9a\\x02\\x46\\\r\n\\xaa\\x41\\x5c\\xa7\\xe6\\xbe\\xe3\\xf3\\xf4\\xc7\\xb3\\xf3\\x85\\x35\\xfc\\x22\\\r\n\\x4e\\x9f\\x74\\xaa\\xe7\\x53\\x2b\\x68\\xa6\\x8e\\xac\\xe7\\x51\\x60\\xa0\\x30\\\r\n\\x8a\\x4c\\xca\\x37\\x16\\x20\\x58\\x77\\xca\\x52\\x18\\xe1\\xcc\\x58\\xa8\\x2b\\\r\n\\x98\\x9b\\x77\\x24\\x02\\x07\\x65\\xb0\\x03\\xcb\\x4c\\x51\\xd7\\xb2\\xb3\\x2b\\\r\n\\x20\\x53\\x76\\x1d\\xae\\x7c\\x8f\\x7e\\xe0\\xfd\\xfd\\x71\\x9c\\x34\\x62\\xcd\\\r\n\\x7c\\xdd\\xc9\\xfc\\xfc\\xf1\\x18\\x48\\x97\\x31\\xd3\\x42\\x34\\xdb\\x5b\\x6b\\\r\n\\xf7\\xed\\x8c\\xc4\\x35\\xc7\\xf7\\x73\\xdb\\xf3\\xd7\\xf2\\xc0\\x1f\\x61\\xdc\\\r\n\\x12\\x7b\\xff\\x00\\xde\\xf8\\x8d\\x15\\xad\\xf7\\xfc\\xf1\\xa7\\x2f\\x71\\x76\\\r\n\\x36\\xb7\\xd3\\xfd\\x70\\xb3\\xa2\\xc4\\xca\\xc3\\x96\\xa2\\xeb\\xab\\x0c\\xcc\\\r\n\\x72\\xe8\\x06\\xc3\\x5d\\xad\\xa9\\xd8\\xf6\\x18\\xe2\\x15\\xd5\\x4f\\xc5\\x68\\\r\n\\xe7\\x9b\\x87\\x4f\\x4c\\x28\\xab\\x9e\\x8d\\xa6\\xcb\\x73\\x2f\\x0f\\xe2\\x32\\\r\n\\x2d\\x3b\\x7c\\x4b\\xe4\\x31\\xc7\\x55\\xee\\x75\\x04\\x11\\xd3\\x6d\\xad\\x7c\\\r\n\\x49\\x4e\\xf2\\xaa\\xa3\\xc7\\x92\\x10\\x6f\\x25\\xfa\\x81\\xf9\\xb2\\xb1\\xbf\\\r\n\\xcc\\x2d\\xa6\\x9a\\x7a\\x69\\x87\\xe1\\x10\\x85\\x57\\x4b\\x01\\x27\\x53\\x2a\\\r\n\\x65\\x0a\\x18\\x6e\\x4e\\xa7\\xf9\\x6a\\x3e\\xf8\\xf6\\xa2\\x8a\\x4a\\x1e\\x22\\\r\n\\xd5\\x4a\\x19\\xa2\\xaa\\x57\\x05\\xc3\\x2e\\x58\\xa4\\x5d\\x34\\x23\\xa8\\x23\\\r\n\\xa9\\x19\\x41\\xd8\\xdd\\x47\\x4d\\xaf\\x42\\x04\\x94\\xd1\\x85\\xd7\\xa5\\x4e\\\r\n\\x5f\\x2d\\x36\\xfe\\xfe\\xb8\\x32\\x45\\x4f\\x73\\x2e\\x5b\\x10\\x06\\xe3\\x52\\\r\n\\x0e\\x87\\xf3\\x38\\x15\\x22\\x54\\x4b\\x14\\x90\\x65\\x5d\\xba\\xbe\\xbb\\xea\\\r\n\\x09\\xed\\x7d\\x57\\x10\\xce\\x8c\\xf7\\xb6\\x68\\x55\\xce\\x60\\x37\\xbe\\xf7\\\r\n\\xd3\\x7d\\x7f\\x4c\\x1e\\x5c\\x80\\x30\\x37\\x1a\\xe5\\x6f\\x31\\xf4\\xb5\\xf4\\\r\n\\xfa\\xe3\\x89\\x2c\\x22\\x45\\x74\\x1d\\x4a\\xbb\\x93\\xa5\\xc7\\xa6\\xa3\\x73\\\r\n\\xf7\\xee\\x71\\x4d\\x54\\x6e\\x73\\x33\\x5b\\x5c\\xab\\xd5\\xf7\\xb9\\xec\\x2f\\\r\n\\xae\\x9e\\x98\\x8e\\xb3\\x87\\xe8\\xbe\\xf1\\x99\\x94\\x5d\\xd5\\x15\\xee\\xb6\\\r\n\\xfe\\x2b\\x5b\\xf3\\x6d\\x4f\\x4d\\xc9\\xb6\\x2b\\x53\\x86\\xf1\\x40\\xc8\\x28\\\r\n\\x6a\\xa0\\x65\\x39\\x4d\\x64\\x90\\x38\\x16\\xd4\\x06\\x21\\x41\\xe9\\x36\\xd2\\\r\n\\xe4\\x59\\x75\\xcc\\x3b\\x72\\xea\\xf8\\x63\\xb2\\x05\\x12\\x42\\xa5\\x4d\\x85\\\r\n\\xd4\\xba\\xdf\\xa5\\xc2\\xea\\x56\\xfa\\x86\\xb1\\x3d\\xaf\\xe9\\xc2\\xfd\\xde\\\r\n\\xa3\\xf6\\x8e\\x56\\x9a\\x42\\xf3\\x48\\xf1\\xde\\x24\\x56\\x2f\\x35\\x3e\\x5b\\\r\n\\x3c\\x4d\\x20\\x70\\x91\\xb8\\x72\\xd2\\x20\\x97\\xa1\\x33\\x58\\x67\\x5c\\x18\\\r\n\\x2b\\x28\\x78\\xbd\\x12\\x90\\x5d\\x2a\\xa9\\x69\\xb9\\x83\\xab\\x44\\x41\\x53\\\r\n\\x1a\\x96\\x17\\x0a\\x2c\\x1e\\x33\\x94\\xe6\\xdd\\x76\\x38\\xa4\\x93\\x95\\xc4\\\r\n\\xa5\\x4c\\x99\\x5d\\xa4\\xc8\\x33\\x2e\\x62\\xb9\\x62\\x89\\x99\\x03\\x78\\x41\\\r\n\\x6e\\x61\\x70\\x7c\\x43\\x20\\xb5\\xef\\xa5\\x6e\\x40\\xb1\\x43\\xe1\\x75\\xe6\\\r\n\\x16\\xdc\\xab\\x2e\\x45\\xb3\\xb6\\xa4\\x5f\\x36\\x61\\xd8\\x8f\\x98\\x6c\\x71\\\r\n\\x49\\x99\\xa6\\x8b\\x96\\x4e\\x62\\x24\\x88\\x75\\x15\\xf0\\xc9\\xa6\\xdf\\xaf\\\r\n\\x90\\xc5\\x6b\\x49\\x04\\x55\\x35\\x55\\x94\\x93\\xba\\xb0\\xe4\\xaa\\x44\\xd1\\\r\n\\xd4\\x49\\x2c\\x6a\\xbf\\xbf\\x92\\x38\\xf5\\x88\\x0f\\xc0\\xc4\\xca\\x45\\xae\\\r\n\\x01\\xb8\\x03\\x89\\xf0\\xfe\\x21\\x22\\xc0\\x67\\x78\\xe4\\xf7\\x51\\x0f\\xbb\\\r\n\\xd6\\xa3\\xc3\\x36\\x53\\x7d\\x10\\xb2\\x80\\xc7\\x45\\x2b\\x62\\x58\\xd8\\x9b\\\r\n\\xb1\\x17\\x3e\\xe8\\x04\\x75\\x10\\x5c\\x95\\x45\\x12\\x2b\\x1d\\xcc\\x6b\\xb3\\\r\n\\x0d\\xb6\\xf3\\xd2\\xf8\\x2a\\x95\\x2d\\xec\\xf8\\x69\\x52\\xd0\\xd6\\x27\\x32\\\r\n\\xe6\\xf9\\x40\\xa7\\x99\\x4e\\x65\\xde\\xff\\x00\\x0e\\xfb\\x5c\\xe9\\xdb\\x5c\\\r\n\\x57\\x4b\\x97\\x86\\xcc\\x17\\x2f\\x44\\x80\\x8b\\xdd\\x43\\x85\\xcb\\x26\\xcd\\\r\n\\xb9\\xc8\\x0e\\x9e\\x5f\\x4c\\x1a\\xd5\\x49\\xda\\x7a\\x18\\xcd\\x4a\\x90\\x97\\\r\n\\x8e\\x16\\x55\\x41\\x25\\xc2\\xe4\\x69\\x34\\xca\\xb9\\xb2\\x86\\x36\\x73\\x7f\\\r\n\\x33\\x85\\xe2\\x7c\\x4b\\x2a\\xdf\\x82\\xf0\\xab\\xe5\\x17\\xcd\\xc4\\xeb\\x73\\\r\n\\x5e\\xda\\xe6\\xb4\\x76\\xcd\\xe7\\x6e\\xf8\\x81\\x52\\x68\\x52\\x9a\\x4f\\x87\\\r\n\\x24\\x51\\xa9\\x84\\x92\\x0b\\x22\\xda\\xc0\\x13\\xe7\\xa6\\x53\\xaf\\xfb\\xb5\\\r\n\\x22\\x33\\x67\\x75\\xce\\x6f\\xa6\\x7b\\x0b\\xb6\\xd7\\xbb\\x11\\x65\\x5f\\x13\\\r\n\\x77\\xdb\\xcc\\xe3\\x86\\x47\\x1c\\x61\\x03\\x4d\\x0c\\xb9\\x54\\x64\\xb3\\xa6\\\r\n\\x79\\x19\\x85\\xb3\\x5f\\x36\\xa1\\x6c\\x6c\\x00\\xd0\\xe9\\x8a\\x97\\xce\\xcd\\\r\n\\x96\\xce\\xeb\\xf0\\x60\\x0b\\xdd\\x9b\\xc6\\x4f\\xd0\\x6d\\xe4\\x6e\\x74\\xb6\\\r\n\\x29\\xe1\\x4a\\x58\\xa5\\xb8\\xf8\\xc4\\xde\\x56\\xdc\\x00\\x34\\x50\\x0f\\xf0\\\r\n\\x8d\\xfd\\x7f\\x57\\xa8\\x8d\\x8b\\xe4\\x20\\xda\\xe0\\xf9\\xdc\\x7f\\xdf\\x15\\\r\n\\xf5\\xd1\\x24\\x6f\\x1e\\x4b\\xbc\\x99\\x86\\x7d\\x01\\x17\\xd8\\x82\\x6e\\x7f\\\r\n\\x97\\xa6\\xb8\\x8a\\x9e\\x29\\x11\\xdd\\xa4\\x67\\x99\\xb3\\x20\\x06\\xd7\\xd7\\\r\n\\x50\\x41\\xbd\\xcf\\xd6\\xf7\\xfb\\xe2\\x82\\xae\\x08\\x42\\x99\\xb3\\xfc\\x3f\\\r\n\\x85\\x36\\xb7\\x6b\\x00\\x17\\x99\\xbd\\xf4\\x22\\xff\\x00\\xcf\\x4c\\x57\\x44\\\r\n\\x27\\x43\\x63\\x9a\\x33\\x66\\x8c\\x8d\\x8e\\xf9\\x5b\\xe8\\x74\\x27\\xf9\\x62\\\r\n\\x28\\x0a\\x39\\x8f\\x4b\\x1b\\xdf\\xce\\xdf\\xd0\\x62\\x92\\x48\\x63\\x19\\x33\\\r\n\\x79\\x6f\\xe7\\xdf\\xd7\\x12\\xa2\\x9b\\xb7\\xef\\x17\\xe6\\x16\\xbe\\x97\\xd6\\\r\n\\xdf\\xde\\xd8\\x92\\x91\\x25\\x45\\x68\\xd7\\x29\\x0c\\x09\\xd9\\x57\\x28\\xb8\\\r\n\\x2c\\xd7\\xec\\x2f\\x7d\\x71\\x57\\x1a\\xc7\\x4b\\x24\\x0b\\xd6\\x18\\x8c\\xf2\\\r\n\\xf9\\x6d\\x63\\x17\\x95\\x8e\\x84\\x9f\\x4b\\x0b\\x62\\x89\\x64\\x5c\\xa9\\x25\\\r\n\\xf4\\x1a\\x38\\xd4\\xd8\\xf5\\x2f\\xae\\xba\\x62\\x38\\xb3\\x82\\x40\\x23\\x4e\\\r\n\\xaf\\xe7\\xa0\\xf5\\xb7\\x70\\x08\\xfa\\xe2\\xc2\\xf2\\x2d\\xaf\\xad\\xba\\xfc\\\r\n\\xec\\x75\\x02\\xff\\x00\\xdf\\x96\\x3d\\xc0\\xbc\\xd1\\x96\\x6e\\xa6\\x3a\\x91\\\r\n\\xa0\\xc9\\x7c\\xc4\\x79\\xec\\x3c\\xc6\\x04\\x62\\x46\\x91\\x8e\\xc0\\x59\\x4d\\\r\n\\xac\\x00\\x24\\x81\\xb6\\x83\\xa6\\xc3\\xd3\\x08\\x8a\\x51\\x63\\xd1\\x8b\\x4b\\\r\n\\x20\\xed\\x6c\\xa0\\x68\\x73\\x0f\\x3f\\xe9\\x84\\xe1\\xd5\\x4b\\xc6\\xf8\\x47\\\r\n\\x11\\x81\\x19\\x93\\x97\\x35\\x17\\x11\\x03\\xab\\xe1\\x94\\xbc\\x32\\x12\\x4e\\\r\n\\x9c\\xa9\\x96\\xfb\\x1f\\x15\\xac\\x6f\\x89\\xe6\\x3e\\xf1\\x91\\x6e\\x52\\xd6\\\r\n\\x37\\xb8\\xfb\\x5c\\x58\\x66\\xfe\\x78\\x89\\x19\\x5b\\x34\\x8b\\x7b\\xe9\\x9b\\\r\n\\xfe\\xab\\x9f\\x23\\xa0\\xf0\\xdb\\x53\\xaf\\x6c\\x47\\x9c\\xef\\xa2\\x5f\\x4d\\\r\n\\x37\\xbe\\xbf\\x6d\\x4d\\x86\\x26\\x96\\xd1\\x95\\x5d\\x10\\x5a\\xff\\x00\\x63\\\r\n\\xf5\\xdc\\x9c\\x25\\x44\\x62\\x48\\x56\\x46\\xb3\\x4c\\x64\\xe4\\xef\\xd4\\x61\\\r\n\\xb3\\x49\\xa8\\x19\\x7e\\x65\\xdc\\xef\\x61\\xb9\\xc1\\x72\\x4b\\x05\\xde\\xc7\\\r\n\\xfd\\xb4\\xdb\\x11\\x67\\xb8\\x3b\\x5c\\xed\\xdf\\xb7\\xdb\\x5c\\x55\\xd5\\x3a\\\r\n\\xb8\\x86\\x3b\\x5c\\x90\\xb7\\xd2\\xf7\\xef\\xbe\\x9e\\x7f\\xf7\\xc4\\xfd\\x14\\\r\n\\xa5\\xe4\\x7d\\x63\\x6b\\xb3\\x16\\xb3\\x0b\\x03\\x70\\x7d\\x05\\x83\\x1d\\xcf\\\r\n\\x96\\xe7\\x1c\\x46\\x75\\xe2\\x0f\\x59\\x4c\\xb2\\x14\\xa6\\xae\\xa0\\x93\\x91\\\r\n\\x20\\xd0\\x73\\xa4\\x8f\\xc6\\xdf\\x85\\x92\\x65\\x0d\\x1e\\x5e\\xbd\\x34\\x1a\\\r\n\\x8c\\x45\\xc4\\xe5\\xe2\\x3c\\x2e\\x8a\\x58\\x9a\\x33\\x2d\\x4d\\x34\\x32\\xce\\\r\n\\xb1\\x09\\x5f\\x23\\xb2\\x81\\x2a\\x8e\\x69\\x48\\xd5\\xd1\\xf3\\x2b\\xbd\\xdd\\\r\n\\xf4\\xb5\\xb4\\xd0\\x55\\x55\\xaa\\x05\\xf1\\xa6\\xc4\\xd8\\x91\\x96\\xf6\\xb7\\\r\n\\xd6\\xfb\\xfa\\xda\\xc6\\xd8\\xe3\\xb1\\x0a\\x80\\x91\\xc8\\x19\\xa1\\xcc\\x0b\\\r\n\\xad\\xed\\xbd\\xfb\\x6f\\xa1\\x5f\\x3f\\xf3\\x62\\x86\\x25\\x85\\x1b\\x2b\\x68\\\r\n\\xa1\\x6d\\x71\\xf2\\xdb\\x4b\\x77\\xd3\\xd7\\x15\\xb0\\xfb\\xcd\\xb2\\x8e\\xa4\\\r\n\\x7c\\xab\\xeb\\x7d\\x4d\\xf6\\xd0\\x0d\\x7c\\xee\\x46\\x26\\xa7\\x9e\\x90\\x66\\\r\n\\xcd\\x20\\xba\\xe6\\x1c\\xbb\\x6a\\xf7\\xd4\\x7f\\xde\\xf6\\xec\\x31\\x4f\\x5b\\\r\n\\x91\\x48\\xd7\\x39\\xb6\\x62\\xd6\\xb9\\xb6\\xdf\\x4d\\x0d\\x8f\\x9d\\x81\\xc4\\\r\n\\x35\\xb2\\x0b\\x28\\x2c\\x3b\\xfa\\x7a\\x8f\\x4e\\xfb\\x6b\\xae\\x2a\\x8b\\x28\\\r\n\\x12\\x3c\\x99\\x83\\x79\\xda\\xfa\\xf9\\xdb\\xb8\\xee\\x34\\xf5\\xc4\\x75\\x24\\\r\n\\x66\\x51\\xeb\\x99\\x8a\\x8d\\x2e\\x2c\\x2d\\xfe\\xd8\\xe1\\xc9\\x34\\xfc\\x46\\\r\n\\x9d\\x62\\x7e\\x5a\\x73\\x04\\x8d\\x76\\xfd\\xe2\\x47\\xd5\\xff\\x00\\xb5\\x8d\\\r\n\\x97\\xbd\\xef\\x8a\\xca\\x6c\\xd1\\xf3\\x23\\x63\\x2c\\xcd\\x97\\xe1\\xf5\\x72\\\r\n\\xd3\\x2e\\xe0\\xd8\\xaf\\x7d\\x08\\xb6\\x62\\x05\\xed\\xb5\\xea\\xa7\\xa5\\xa9\\\r\n\\x53\\x4b\\x51\\x9a\\x8f\\x88\\xd2\\x87\\x96\\x28\\xe4\\x55\\xf8\\xcc\\x00\\xcb\\\r\n\\x12\\xb0\\xb2\\xb4\\x52\\xeb\\xd6\\xcc\\xb9\\x0e\\xa4\\x29\\x0c\\xa2\\xaf\\xda\\\r\n\\x09\\x38\\x6f\\xb5\\x31\\x45\\x23\\x25\\x1d\\x2c\\xf1\\xc6\\x82\\xa8\\x02\\xf9\\\r\n\\x0c\\xb1\\x69\\x3e\\x68\\xf2\\xd9\\x5e\\x4b\\x47\\x30\\x3e\\x14\\xb3\\x5f\\x4b\\\r\n\\xe3\\x8d\\xd4\\xd5\\x53\\x49\\xc2\\xb8\\x83\\xd6\\x73\\x65\\xcd\\x93\\x3a\\xab\\\r\n\\x2a\\x10\\xb2\\x24\\x8b\\x60\\xec\\xed\\x6e\\x5e\\x6c\\xb7\\x66\\x55\\x3e\\x9a\\\r\n\\xe2\\x96\\x57\\xa8\\x79\\xf8\\xbb\\x31\\xe9\\xa8\\xa5\\x94\\xbf\\xc3\\x09\\x24\\\r\n\\x62\\x11\\x1c\\xc4\\x2c\\x77\\xcf\\x21\\x53\\x99\\xcb\\x5d\\xb3\\x5f\\xea\\x16\\\r\n\\x69\\xea\\xe7\\x49\\xa9\\x24\\xf7\\xc4\\x76\\x66\\x40\\xa3\\xab\\x2b\\xbd\\x9d\\\r\n\\x89\\x2c\\x00\\x8d\\x55\\x6f\\xa9\\x00\\x58\\xf6\\xbe\\x00\\x86\\x85\\xe9\\x84\\\r\n\\x08\\x27\\x9e\\x59\\x5f\\xe3\\x35\\x96\\x31\\x72\\xf9\\x96\\x23\\xaf\\x53\\x68\\\r\n\\xbc\\xc1\\xeb\\x97\\xc5\\x71\\xcf\\x97\\x31\\x8d\\xd1\\xe4\\x50\\xc4\\xb2\\x3a\\\r\n\\xdd\\xbc\\xdb\\x23\\x0b\\x86\\x1d\\xdb\\x72\\x3e\\x61\\xad\\xcf\\xbb\\xd2\\xcf\\\r\n\\x52\\xe8\\x56\\x37\\x26\\x11\\xee\\xa5\\x97\\xaa\\x3e\\xa6\\x2a\\xa1\\x98\\x6e\\\r\n\\xac\\x74\\x22\\xfa\\x62\\x9a\\x05\\x10\\xa8\\x5c\\xcc\\x65\\x4a\\xb8\\x5a\\xe5\\\r\n\\x98\\x82\\x1b\\x3d\\xb3\\x7e\\x11\\xf2\\x8d\\x80\\x38\\x61\\x2a\\xac\\x73\\x42\\\r\n\\x80\\xf2\\xea\\x95\\x89\\x0e\\x11\\xd6\\xd0\\xc9\\xd3\\x9f\\x42\\x04\\x81\\xf5\\\r\n\\xb7\\x71\\xa7\\x9e\\x25\\x86\\xa8\\x52\\xc6\\x67\\xa9\\x67\\x59\\x65\\x62\\x94\\\r\n\\xc1\\x98\\xa4\\x0c\\x29\\x66\\x16\\x0c\\xee\\xec\\xf7\\x05\\x49\\x3b\\x11\\xb0\\\r\n\\x1e\\x11\\x4d\\xcc\\x14\\x84\\x2c\\x03\\x2c\\x51\\x3e\\x50\\x83\\x28\\xbb\\x68\\\r\n\\x49\\xdf\\x55\\x60\\x8c\\xa4\\x6b\\xd2\\x47\\x7b\\x84\\xf6\\x82\\x9b\\x22\\x67\\\r\n\\xe1\\xcc\\xcf\\x95\\x73\\x91\\x24\\x20\\x16\\xb7\\x51\\xb5\\xf4\\xb9\\xc7\\x02\\\r\n\\xe2\\x7c\\x76\\xb8\\xcd\\x5b\\x35\\x0a\\x24\\x45\\x57\\x92\\x18\\x98\\x4c\\xf1\\\r\n\\x39\\xce\\x3d\\xd8\\x32\\x16\\x6c\\x8b\\x94\\x89\\x1b\\x2c\\x72\\x66\\xb8\\xb6\\\r\n\\x6b\\x63\\x86\\xf0\\xef\\x6a\\x38\\x97\\x10\\x9e\\x5a\\xea\\xc6\\x8e\\x93\\x9f\\\r\n\\x23\\x45\\x0c\\xe4\\x06\\x8d\\x0b\\x59\\x3a\\x55\\x75\\x01\\x34\\x1d\\x7b\\x0d\\\r\n\\xf6\\xc4\\xd4\\x94\\xfc\\x16\\x89\\x6b\\x22\\x55\\xa8\\x9e\\x01\\x1a\\xbc\\x8d\\\r\n\\xf3\\xe6\\x3d\\x5c\\xb0\\x0e\\x55\\x03\\x37\\x48\\x1b\\x77\\xee\\x31\\x43\\x57\\\r\n\\x4d\\x2c\\x0b\\x34\\x6c\\x1e\\x5c\\x97\\xc9\\xa5\\xe2\\x2d\\xe2\\x2f\\x6f\\x98\\\r\n\\xf9\\xf7\\xd3\\x1c\\x5f\\x8b\\xce\\xa5\\xa9\\x69\\xc8\\x5b\\x8b\\x3c\\xd6\\x1e\\\r\n\\x23\\xa0\\xb9\\x3b\\xe9\\xb6\\xd6\\xf4\\xc4\\x1c\\xc8\\x94\\x5d\\xf3\\xdf\\x73\\\r\n\\xb1\\xf5\\xbd\\xc9\\xee\\x31\\x3b\\x09\\x4b\\x13\\x60\\x10\\x93\\x7e\\xe2\\xf6\\\r\n\\xfa\\xb1\\x3f\\xd7\\x7d\\x31\\x4f\\x1e\\x54\\x2f\\xbe\\x7b\\x95\\x3d\\xed\\x6d\\\r\n\\x8d\\xb6\\xc7\\x10\\xf7\\x94\\x95\\xe5\\x8e\\x2b\\xeb\\xcb\\xc9\\x7c\\xa2\\x55\\\r\n\\x6d\\x46\\xaa\\xc3\\x66\\xda\\xe4\\x6b\\xe9\\x8f\\xda\\xd5\\x51\\xc1\\xee\\xf5\\\r\n\\x14\\xf2\\xc6\\x54\\x83\\x10\\xf9\\xd4\\x5a\\xcc\\xbb\\x92\\xcb\\x7d\\x46\\xbe\\\r\n\\x7a\\xe9\\x81\\xc5\\x73\\x80\\x15\\x1c\\x3e\\x52\\xb9\\x98\\x76\\xfc\\xef\\x7d\\\r\n\\x6d\\xae\\xe7\\xcb\\x0b\\x51\\x98\\x91\\x21\\x95\\x43\\x6c\\xeb\\x95\\x98\\x1d\\\r\n\\x94\\xdb\\xb7\\xe6\\x74\\xf2\\xc5\\x3d\\x70\\x89\\xc1\\xa8\\x98\\xec\\x54\\xc7\\\r\n\\x91\\xc1\\x36\\xd7\\x35\\x80\\x7d\\x4a\\xde\\xe6\\xf6\\xfa\\x6d\\x8a\\x9a\\xca\\\r\n\\x72\\x1d\\x63\\x62\\xd1\\xb0\\xb3\\xa2\\x2c\\x96\\x39\\xbe\\x60\\x6d\\xae\\xba\\\r\n\\xfa\\xf6\\xbe\\x22\\x9a\\x69\\xcc\\x9d\\x6c\\x04\\x76\\x53\\x9e\\xc0\\x10\\x45\\\r\n\\xc0\\x03\\xe8\\x35\\x36\\x1a\\x91\\xeb\\x89\\x1d\\x97\\xe7\\x70\\xc9\\xe1\\x3f\\\r\n\\x28\\xb0\\x20\\x0d\\x0e\\xa0\\x0d\\xed\\xbe\\x28\\xd6\\xb6\\xa1\\x5b\\x24\\x84\\\r\n\\x84\\x6e\\xac\\xb2\\x05\\x62\\x77\\xfa\\x81\\xfd\\xdf\\x12\\x0e\\x23\\xf2\\xac\\\r\n\\x40\\x5a\\xda\\x9f\\x9a\\xe0\\x0b\\x9b\\xdd\\xb4\\xc4\\x2b\\x5a\\xb1\\x4a\\xd3\\\r\n\\x98\\x15\\xce\\x58\\xd4\\x78\\x47\\x57\\x88\\xf9\\x8b\\x01\\xdb\\x4d\\x48\\x1a\\\r\n\\xec\\x2a\\x61\\x85\\x0a\\xbc\\x80\\x93\\xa3\\x2c\\x60\\xc8\\x3c\\xb5\\x36\\x0a\\\r\n\\xba\\xfe\\x26\\xda\\xf6\\x56\\xb1\\xb1\\x87\\x99\\x70\\x88\\xdf\\x15\\x5d\\x54\\\r\n\\xf3\\x0c\\x41\\x15\\xb4\\x2c\\x39\\x37\\x7b\\xd8\\x8b\\x15\\x91\\x08\\xd0\\x80\\\r\n\\x3b\\x46\\xd0\\x52\\x52\\xe4\\x8a\\x46\\x39\\x73\\x44\\xa1\\xf3\\x17\\xce\\x9a\\\r\n\\x12\\x59\\xcb\\x4a\\xc6\\xe3\\xc4\\xec\\xd7\\x1a\\xed\\xae\\x21\\x67\\x2e\\x64\\\r\n\\x90\\x3b\\x0c\\xc7\\xa8\\x9b\\xe6\\x26\\xfa\\x00\\x35\\xf4\\x27\\xa4\\x7f\\x45\\\r\n\\x95\\xda\\xcb\\xd2\\x4f\\xfc\\xb0\\x09\\xb6\\xdf\\x43\\xeb\\xa7\\x9d\\xed\\x88\\\r\n\\xe5\\xca\\x9d\\x60\\xdb\\xa7\\x41\\xbd\\xb6\\xbd\\xed\\xf4\\xbe\\xe6\\xd7\\xfb\\\r\n\\x67\\xe6\\x9c\\x97\\x21\\x98\\x74\\x83\\xe1\\x3b\\x9f\\x5b\\xad\\xac\\x70\\xa0\\\r\n\\xcd\\xc5\\x66\\x3b\\xaf\\x0f\\x80\\x42\\x07\\xcb\\xef\\x15\\x16\\x9a\\x4f\\x2b\\\r\n\\xe5\\x47\\x55\\xe9\\xee\\xbb\\x91\\x88\\xd3\\xab\\x35\\xb5\\xff\\x00\\x6f\\xf7\\\r\n\\x38\\xe2\\x15\\x9e\\xef\\x4f\\x9d\\x4d\\x8d\\xd5\\x4b\\x5a\\xe5\\x2f\\x61\\x9b\\\r\n\\x63\\x6b\\x1d\\xef\\xdb\\x7f\\x49\\x78\\x9a\\x45\\xf1\\x67\\x7b\\xc8\\x8f\\x21\\\r\n\\x8e\\x30\\x43\\xbc\\xcd\\x9d\\x88\\xca\\x07\\x6b\\xf7\\xd0\\x28\\xdc\\xeb\\xac\\\r\n\\x75\\x75\\x7c\\x62\\xb0\\x0a\\xd9\\x26\\x48\\x25\\xe6\\xc7\\x05\\x2d\\x3b\\x5a\\\r\n\\xf2\\x10\\x72\\x5c\\xfc\\xc0\\xb0\\xb3\\x1e\\xfd\\x8d\\xb1\\x4d\\xc0\\xe9\\x8d\\\r\n\\x1d\\x38\\x97\\x3c\\x8f\\x01\\x39\\xf2\\xbb\\x2e\\x65\\x6e\\xa2\\x2e\\xa7\\x60\\\r\n\\xda\\x5f\\xb0\\x3f\\x7c\\x70\\x8e\\x6d\\x1f\\xbf\\x53\\x44\\x55\\x61\\xa7\\xe2\\\r\n\\xd5\\xd4\\x41\\x66\\xb9\\xe5\\x7c\\x61\\x57\\x4c\\xc1\\xf5\\xe9\\x78\\x2a\\x51\\\r\n\\x49\\x37\\xd8\\xb7\\xa6\\x38\\x7d\\x7c\\x5c\\x98\\xe3\\x9c\\x18\\x98\\x97\\x50\\\r\n\\xce\\x3e\\x1b\\xb0\\x72\\x34\\x7d\\x57\\xe9\\x7f\\x4c\\x71\\x5a\\x60\\x65\\xf7\\\r\n\\x85\\x39\\x87\\x58\\x2a\\x3c\\xbc\\xc7\\xcb\\xa0\\x27\\xcb\\xd3\\x19\\xa3\\x89\\\r\n\\x72\\x6f\\x61\\x65\\xbd\\xf6\\x37\\xd4\\x76\\xbf\\xfb\\xe1\\xa5\\x92\\xda\\x0f\\\r\n\\x0e\\x97\\x5f\\x17\\xd4\\x5c\\xeb\\x60\\x7b\\x9b\\xe9\\xf4\\xc3\\xd5\\x4e\\xf1\\\r\n\\xe4\\x64\\x13\\x33\\x48\\x40\\x3a\\x96\\x16\\x3a\\x9b\\x7e\\x2b\\x5f\\xf3\\xd3\\\r\n\\x6c\\x7b\\xbf\\x36\\x51\\x53\\x6e\\x5b\\x40\\xc4\\x30\\xd3\\x67\\x5e\\xfa\\x93\\\r\n\\x71\\x75\\xd3\\x42\\x75\\xb6\\x21\\xb8\\x37\\xf1\\x2d\\xf7\\xb6\\xde\\x9d\\xff\\\r\n\\x00\\xdf\\x15\\x56\\x66\\x64\\x26\\xfd\\x21\\x96\\xd6\\xfa\\x6d\\xf5\\x27\\x4b\\\r\n\\x5f\\x4f\\xce\\xa1\\x5a\\x2f\\x3d\\x0d\\xdb\\x53\\xb6\\x9a\\x0c\\xbb\\xdf\\x6b\\\r\n\\x76\\x1e\\x56\\xc7\\x09\\xa6\\xab\\x80\\x45\\x52\\x12\\x9a\\x17\\xa8\\x40\\xf0\\\r\n\\x49\\x52\\x5d\\x94\\x06\\xb8\\x5c\\x8a\\xa0\\x01\\xa0\\x1a\\x16\\xd7\\x4b\\x6c\\\r\n\\x71\\xc4\\x24\\xe3\\x02\\x65\\x80\\x71\\x44\\xe6\\x16\\x25\\xe3\\xa2\\xa7\\x11\\\r\n\\xa8\\x27\\xf8\\xf3\\x33\\x3b\\xf9\\x83\\xb7\\x7d\\x6e\\x0f\\xfe\\x1e\\x86\\x68\\\r\n\\x73\\x57\\x4b\\x34\\xf5\\x19\\x4b\\x67\\x66\\x00\\xab\\x11\\xb5\\xc0\\xd7\\xb0\\\r\n\\xd6\\xeb\\xfa\\x63\\x8d\\xf0\\x1a\\xc7\\x12\\x88\\xa2\\x49\\x4d\\x04\\xea\\x10\\\r\n\\xc8\\x01\\x25\\x5f\\x55\\x88\\x8b\\x1b\\xac\\x88\\x2d\\xe4\\x0e\\xbe\\x98\\x92\\\r\n\\xb2\\x7a\\x8e\\x13\\x1c\\x24\\x10\\xb4\\x73\\xc8\\xb1\\x19\\x8d\\xde\\x32\\x23\\\r\n\\x62\\xd0\\xf5\\x75\\x02\\xa6\\xc2\\x30\\x77\\x19\\x50\\x6c\\x2f\\x4f\\x1d\\x0c\\\r\n\\x5c\\x11\\x56\\x69\\x62\\xe1\\xeb\\x53\\x4e\\x8d\\x79\\x59\\x11\\xcc\\xef\\x18\\\r\n\\x62\\xb6\\x7f\\x13\\x36\\x46\\xb8\\xb5\\xed\\xf9\\xe3\\x87\\xd6\\xd1\\x05\\x4e\\\r\n\\x1d\\x06\\x54\\x8c\\x09\\x1a\\x72\\x46\\x46\\x94\\xca\\xa5\\xac\\x1a\\xe5\\x8a\\\r\n\\x21\\x66\\x55\\x00\\x8b\\xdb\\xc2\\x06\\x5b\\x51\\x2c\\xc5\\x5e\\x38\\x2d\\x32\\\r\n\\x43\\x22\\xd4\\x52\\x3a\\xbe\\x63\\x25\\x39\\x7b\\xe8\\x3d\\x00\\xfb\\x8c\\xad\\\r\n\\xde\\xd8\\x08\\x24\\x81\\x80\\xca\\xb2\\x21\\x12\\x23\\x7c\\xe9\\x2e\\xa5\\x74\\\r\n\\xb5\\xed\\x7f\\x18\\x3b\\x8b\\x0d\\x8e\\x1e\\x9f\\xde\\x1d\\x2a\\x22\\xbc\\x33\\\r\n\\x72\\x12\\x45\\x60\\x05\\x84\\xd1\\x3b\\x2b\\x03\\xb7\\x7e\\xdd\\xb7\\xc5\\x2d\\\r\n\\x5b\\x80\\xe9\\x2c\\x64\\x3a\\x57\\x2b\\x49\\x26\\xe0\\x09\\x4e\\x57\\x53\\x6d\\\r\n\\xb3\\x5d\\x98\\x1d\\x07\\xae\\x25\\x26\\x3a\\x9a\\x8a\\x53\\x9b\\x94\\x67\\x5c\\\r\n\\xca\\x3b\\xe4\\x79\\x15\\x6d\\xbd\\xb4\\x7b\\xfd\\x30\\xb2\\x45\\x25\\x2c\\x28\\\r\n\\xa8\\xcb\\x32\\x4a\\x8b\\x25\\xf5\\xcc\\x0c\\x73\\x28\\x71\\x73\\xa0\\x3d\\xfc\\\r\n\\xbb\\xee\\x31\\x40\\xa5\\xa1\\x94\\x29\\xd4\\x17\\x04\\x69\\x95\\x80\\xb1\\xb1\\\r\n\\xb5\\xce\\xa2\\xfa\\xe3\\xf6\\x3a\\x49\\xf1\\x16\\x5b\\x2b\\xf5\\x80\\x64\\xd4\\\r\n\\x06\\xd4\\x03\\xd1\\xe4\\x71\\x47\\x4a\\xb1\\xe7\\x9e\\x67\\xf8\\x3a\\xcb\\x79\\\r\n\\x0f\\x45\\x3d\\x34\\x6a\\x00\\x0a\\x3a\\x42\\xa8\\xd7\\xd6\\xe4\\xf6\\x03\\x14\\\r\n\\x75\\x91\\xf1\\x17\\x92\\x4a\\x14\\x12\\x40\\x8d\\xc8\\x59\\x62\\xb6\\x52\\xf1\\\r\n\\xd8\\x5d\\x40\\x5b\\x65\\xb5\\xac\\xd7\\xdf\\x70\\x36\\xc7\\x19\\x92\\x71\\xc2\\\r\n\\x25\\xe6\\x02\\x5b\\x4c\\xb6\\xf9\\x01\\x61\\x98\\x95\\x1a\\x6d\\xa0\\xf2\\xf3\\\r\n\\xc4\\x35\\xd5\\x29\\x1c\\xc2\\x9d\\x84\\x0d\\x34\\x71\\x23\\x48\\xa2\\xef\\x64\\\r\n\\xb9\\xe9\\xfa\\xea\\xa4\\xf6\\x07\\xd3\\x09\\x9a\\xa4\\x05\\x9d\\xba\\x80\\x0f\\\r\n\\x70\\x7a\\x64\\x90\\x35\\x80\\x20\\x0d\\x5a\\xdd\\x57\\x6b\\x8b\\xe8\\x00\\xd4\\\r\n\\xe0\\xc3\\x2a\\xa7\\x49\\xb8\\x1e\\x9a\\xed\\xe7\\x89\\xa4\\x2a\\xec\\xba\\x5c\\\r\n\\x81\\x7b\\x6d\\xeb\\xf5\\xc5\\x1c\\x84\\x82\\xb7\\x24\\x11\\xe2\\x3a\\x64\\xef\\\r\n\\x9a\\xd7\\xd8\\x1d\\xb1\\x5c\\xd7\\x01\\x06\\x8e\\x59\\x0a\\xb0\\xdd\\x88\\x37\\\r\n\\xd6\\xc3\\x6b\\x7a\\x61\\x93\\x99\\x17\\x39\\x8a\\xae\\x47\\xca\\xd0\\xe5\\x3c\\\r\n\\xcd\\x6c\\x39\\xb9\\xce\\x86\\xed\\xa6\\x45\\x1a\\x6f\\xf5\\x11\\xe6\\x93\\x2a\\\r\n\\x5c\\x12\\x6f\\x76\\xbd\\xb2\\x9b\\x93\\xa7\\xae\\x23\\x8d\\x6e\\x89\\xb9\\x06\\\r\n\\xe4\\xf7\\x36\\x1f\\xeb\\xa0\\xfb\\x62\\x2b\\x3d\\xd8\\x2a\\x73\\x34\\x2d\\x73\\\r\n\\xf6\\xd8\\xf9\\xe1\\xd2\\x46\\xcd\\xca\\x50\\xce\\x50\\xb3\\x20\\x0b\\xa0\\xd0\\\r\n\\x02\\x36\\x26\\xc4\\xe8\\x2d\\x7f\\x2d\\x71\\xc9\\x48\\x13\\x2b\\x3c\\x2a\\x74\\\r\n\\x6e\\xb7\\x50\\xe7\\x36\\xe5\\x97\\x57\\x1a\\xf9\\x8e\\xd6\\xc4\\xab\\x4e\\xca\\\r\n\\x03\\x54\\x16\\x5e\\xfc\\xb4\\x3a\\x0f\\x30\\xce\\x42\\x8b\\xfe\\x2c\\x1e\\x2f\\\r\n\\x4f\\x4e\\x79\\x34\\xb0\\xac\\x93\\x76\\x09\\x79\\x9c\\xff\\x00\\x9b\\x2a\\xa2\\\r\n\\x1f\\x51\\x72\\x01\\xd3\\x36\\xb7\\xc5\\x39\\xe3\\x75\\xad\\x77\\x94\\x50\\x42\\\r\n\\x6c\\x72\\x80\\x86\\x73\\xf8\\x8e\\x8b\\x96\\x3f\\xe1\\xeb\\x63\\xa1\\xbd\\xb4\\\r\n\\xc4\\x94\\xf1\\xc2\\xb1\\x46\\xdf\\x10\\x85\\xcc\\xcd\\x21\\x12\\x48\\x64\\x90\\\r\n\\x82\\x33\\x31\\xcc\\x73\\x01\\x6b\\x8d\\x08\\xf4\\xef\\x22\\x44\\x8a\\x14\\x85\\\r\n\\xcd\\x92\\xfb\\x06\\x23\\xd4\\x0f\\x43\\xe8\\x41\\xc5\\xac\\x8a\\x5e\\xcf\\xcb\\\r\n\\x1e\\x2b\\x0b\\xf6\\xd2\\xe2\\xda\\x12\\x2f\\xfc\\xf1\\x50\\x4c\\xec\\x72\\xa6\\\r\n\\x60\\xb7\\x2b\\x6f\\xeb\\x7b\\xf7\\xfe\\xf4\\xc4\\x26\\xa1\\x59\\x14\\xa8\\x16\\\r\n\\x61\\xe2\\xca\\xa8\\xa1\\x80\\x22\\xec\\x58\\x6f\\xae\\xda\\xee\\x74\\xc4\\x10\\\r\n\\x46\\x3a\\xf2\\x8c\\xe6\\xea\\x15\\x5a\\xcb\\xbd\\xef\\xe2\\xdb\\x5b\\xdc\\x68\\\r\n\\x40\\xfb\\xe2\\x38\\x16\\xc0\\x5e\\xfa\\x5c\\x66\\xd6\\xfd\\xbb\\x02\\x3e\\x98\\\r\n\\x64\\x8a\\x24\\x2e\\xe0\\x64\\x8d\\x4b\\x31\\x1f\\x28\\x51\\x9d\\x8f\\xa6\\x8b\\\r\n\\x6e\\xdb\\xe3\\x87\\xd3\\x49\\x1d\\x17\\xbc\\xcc\\x72\\x9a\\x87\\x96\\xb5\\xcb\\\r\n\\x00\\xa5\\x44\\xcc\\xcc\\x81\\xaf\\xe5\\x18\\x5b\\x13\\x6b\\x0d\\x31\\xc7\\xbd\\\r\n\\xb6\\xa5\\xe1\\xb4\\xee\\xf4\\x65\\x67\\x37\\x34\\xe2\\x4d\\xd6\\x3a\\xac\\xd1\\\r\n\\x07\\x8d\\x82\\xde\\xf2\\x24\\x53\\x2c\\xa0\\x5e\\xcd\\x94\\xf9\\x10\\x2a\\xfd\\\r\n\\xb5\\x9d\\x38\\x2d\\x27\\x36\\x25\\x6a\\xba\\xf8\\xaa\\x9d\\x5d\\xff\\x00\\xfa\\\r\n\\x78\\xa6\\x68\\x96\\x67\\x40\\x07\\xef\\x1d\\x5c\\x76\\x00\\x20\\x3b\\xe3\\x87\\\r\n\\x34\\xed\\x4c\\x2b\\xa6\\x11\\xc9\\xef\\x6b\\x79\\x72\\xd8\\xc9\\x1a\\x66\\xbe\\\r\n\\x44\\x37\\x21\\x41\\xcd\\x77\\x40\\x45\\xc1\\x00\\xdc\\x83\\x6e\\x15\\x46\\xaa\\\r\n\\xc2\\xb5\\xb5\\xe5\\x8c\\xd0\\xa8\\x3f\\x3b\\x0b\\xfe\\x89\\xe9\\x70\\x4e\\xe2\\\r\n\\xd8\\xa6\\x75\\x76\\x05\\x34\\x8e\\x48\\x19\\xd4\\x6d\\xa3\\x11\\xfa\\x6a\\x45\\\r\n\\xbd\\x2d\\xdb\\x12\\x47\\x1a\\x56\\xf1\\xd4\\x76\\x50\\x95\\x32\\xd2\\x4f\\x11\\\r\n\\xbf\\xcd\\xee\\x89\\x0b\\xb1\\xdf\\xff\\x00\\x41\\x46\\x83\\xb6\\x28\\xa9\\x6a\\\r\n\\x85\\x3a\\xc2\\x39\\x13\\x44\\x97\\x25\\x1f\\x42\\xe0\\xb1\\x3e\\x26\\x00\\x5f\\\r\n\\x52\\x37\\xb5\\xfc\\x45\\x46\\x2b\\xe5\\x54\\x26\\x05\\x57\\x89\\x40\\x19\\x95\\\r\n\\xee\\x75\\xfc\\x2b\\x7f\\x92\\xda\\x5b\\x39\\x5f\\xa0\\xc4\\x72\\x23\\x48\\xbb\\\r\n\\x1c\\xa7\\xcb\\x4e\\xe3\\xb5\\xf5\\xfe\\xfb\\xe0\\x72\\xcd\\xc6\\x50\\x03\\x5f\\\r\n\\xab\\x41\\x6d\\x3e\\x9a\\x6d\\x8a\\x8a\\x64\\x99\\xb3\\x47\\x9a\\x27\\x42\\x3a\\\r\n\\xa3\\x6c\\x8f\\xbd\\x89\\xcd\\xdf\\x7f\\x23\\x7b\\x61\\xb8\\x2d\\x76\\x4b\\xad\\\r\n\\x5c\\x6f\\x16\\x9d\\xb2\\xb3\\x05\\x1d\\x25\\xd9\\x73\\x66\\x63\\xb6\\xbb\\x5c\\\r\n\\xfd\\x31\\x05\\x2f\\x2a\\x3e\\x5d\\x47\\x49\\x0d\\x71\\xf8\\x3e\\x87\\x4b\\xdb\\\r\n\\xb0\\xb6\\x6d\\xb5\\xd3\\x06\\x04\\x67\\x0e\\x0a\\x30\\xb1\\x00\\x8b\\x5b\\x7d\\\r\n\\x0f\\xff\\x00\\xe8\\xed\\xeb\\x8e\\x22\\xae\\xb9\\xcf\\x48\\xb7\\xd4\\x0d\\x45\\\r\n\\xb7\\x1a\\x12\\xc4\\xfd\\x86\\x3d\\x93\\x9f\\x8a\\xd4\\xf1\\x19\\x20\\x99\\x9d\\\r\n\\xb8\\x62\\x53\\x3f\\x38\\x49\\xd5\\x18\\x9a\\xeb\\xc9\\xe5\\x96\\xbd\\x9e\\xc0\\\r\n\\xdb\\x2f\\x6f\\xb6\\x22\\x85\\xa0\\xa9\\x97\\x96\\x18\\xb4\\x65\\x94\\xb3\\x25\\\r\n\\xc7\\x9f\\x41\\x37\\xd7\\x2e\\xfa\\x5f\\xb7\\x9e\\x29\\xd9\\xe4\\x60\\x0a\\x90\\\r\n\\x80\\x5c\\xe6\\xde\\xc3\\xb9\\xbe\\xba\\xfa\\xf9\\xe2\\xae\\x15\\x15\\x55\\x19\\\r\n\\x63\\x07\\x3a\\x52\\x4e\\xce\\x2d\\x72\\xd1\\x54\\x14\\x1a\\x6c\\x4e\\x46\\xd4\\\r\n\\xdb\\xb7\\xa6\\x07\\x0f\\x5a\\xaa\\xce\\x20\\x69\\x51\\x04\\x7d\\x44\\xe5\\x51\\\r\n\\x7e\\x6c\\x6d\\x97\\xde\\x22\\x51\\x70\\xcc\\x92\\x6b\\x7b\\xd8\\x81\\xbf\\xcb\\\r\n\\x8e\\x27\\x54\\x95\\xaf\\xc1\\xb3\\xeb\\x2a\\x1c\\xd5\\x11\\x21\\x19\\x57\\xdd\\\r\n\\x82\\x73\\x8b\\xc6\\x48\\x6b\\x31\\x36\\x43\\x7b\\x05\\x0f\\xbe\\xb6\\xe3\\x35\\\r\n\\x14\\xc2\\x0a\\x97\\x8f\\x2c\\x75\\x4e\\xd3\\xd2\\x42\\x1b\\x49\\x03\\x54\\x49\\\r\n\\x96\\x12\\xb6\\xb0\\x22\\x31\\x51\\x70\\xc1\\xba\\x44\\x02\\xe7\\xc3\\x88\\x96\\\r\n\\xaa\\x8e\\x25\\xa7\\x89\\x99\\x6a\\xb8\\x7a\\x28\\xa7\\x94\\x78\\xe4\\x84\\x00\\\r\n\\x25\\x82\\x4d\\xf3\\xe6\\x0a\\x1d\\x58\\x9d\\x48\\x16\\x1b\\xb0\\xa7\\xe2\\x53\\\r\n\\x48\\xf1\\x54\\x09\\x49\\x8e\\x54\\x5b\\x38\\xb1\\xea\\x23\\xab\\x30\\xde\\xe8\\\r\n\\xd7\\x0c\\xbf\\x42\\xbf\\x84\\x53\\xb1\\x35\\x0e\\xcd\\x20\\x40\\xa8\\xf7\\x41\\\r\n\\xb3\\xe7\\x22\\x50\\x57\\xcc\\xe6\\x2d\\xeb\\xa9\\xb8\\xdb\\x12\\xe4\\x5a\\xca\\\r\n\\xa0\\x00\\xe4\\xd5\\x53\\x46\\x58\\x9e\\x9f\\x88\\x1f\\x2a\\x1b\\x77\\x25\\xaf\\\r\n\\xfd\\xe9\\x8e\\x26\\x86\\x1e\\x30\\x97\\x50\\x07\\x30\\x17\\x3a\\xd8\\x8e\\x9c\\\r\n\\xad\\xde\\xc7\\xa0\\x93\\xb7\\x4f\\x7e\\xf8\\x6a\\x7b\\x49\\x98\\x5f\\x29\\x30\\\r\n\\x49\\x1d\\xad\\x6c\\xad\\x32\\x06\\x23\\x5d\\x2c\\x0e\\x97\\x37\\xb5\\xc6\\xd8\\\r\n\\xe0\\xca\\xcf\\x3d\\x54\\x65\\x14\\xe4\\x5c\\xc7\\x33\\x85\\xca\\x0d\\xc5\\xef\\\r\n\\x7d\\x76\\x02\\xc4\\x61\\xf8\\x6f\\x5b\\xe5\\x9e\\x50\\xb9\\x9b\\x28\\x11\\x49\\\r\n\\x60\\x2e\\x6c\\x05\\x8d\\xac\\x07\\x96\\x98\\x9f\\x88\\x71\\x7a\\xaa\\xc6\\xe1\\\r\n\\xbc\\x32\\xae\\x44\\x9e\\xae\\xa7\\x92\\x29\\xa7\\x8b\\xe1\\xc7\\x46\\x14\\x97\\\r\n\\x7b\\x00\\xac\\x81\\x73\\xa8\\x65\\x67\\xb4\\xfb\\xad\\x82\\x83\\x8e\\x0d\\xc2\\\r\n\\x22\\xe1\\x74\\xdc\\x85\\x3f\\x0e\\x38\\xd7\\x39\\x07\\x46\\x7c\\xb7\\x31\\xa8\\\r\n\\x0c\\xe3\\xcd\\x9b\\x5b\\xf5\\x1d\\x58\\x9d\\x7d\\xa7\\x9d\\xdb\\x87\\xc9\\xc9\\\r\n\\x91\\x62\\xbb\\xa0\\x90\\x11\\xa9\\x8a\\xfa\\x84\\xb9\\xdc\\x91\\xdb\\x5d\\x3a\\\r\n\\x37\\xb6\\x21\\x63\\xd1\\x96\\xda\\x11\\x7f\\xa6\\x80\\xff\\x00\\x5c\\x44\\xab\\\r\n\\xce\\x40\\x75\\xef\\xff\\x00\\xbb\\xbd\\xf4\\xff\\x00\\x4b\\xe2\\x96\\x9d\\x65\\\r\n\\x86\\xc4\\x5f\\x1c\\x46\\x89\\x92\\x7c\\x91\\x21\\x3a\\xec\\x07\\xa5\\xfe\\xfa\\\r\n\\x62\\x92\\x34\\x00\\xba\\x9e\\xd7\\x7b\\x9e\\x9b\\x76\\x5d\\x6e\\x49\\xbe\\xe3\\\r\n\\xf5\\xc2\\x31\\x96\\xa2\\x69\\x4a\\xde\\x04\\xb2\\x29\\x3f\\x88\\x6a\\x48\\xee\\\r\n\\x6d\\x7b\\x13\\xf6\\xc5\\x59\\x09\\x1a\\x6b\\x62\\x40\\x20\\x5a\\xd7\\xbe\\xd7\\\r\n\\xbe\\xf7\\xc5\\x34\\x84\\xbb\\xdf\\x42\\x01\\xdf\\xf2\\xf3\\xc2\\x43\\x9b\\x97\\\r\n\\xee\\xf9\\xf3\\x58\\xf3\\xda\\x4b\\x64\\x1a\\xdf\\xe1\\xe8\\x0e\\xa3\\xd7\\xfd\\\r\n\\x92\\x2e\\x59\\xe9\\x0b\\xad\\xee\\xc4\\xe5\\xd4\\xe8\\x36\\xed\\xfd\\xdb\\x15\\\r\n\\x72\\xc6\\xb1\\xf2\\xc9\\xf8\\xc5\\x8e\\x51\\x1f\\x95\\xf4\\x05\\xb4\\x5f\\xa5\\\r\n\\xff\\x00\\x9e\\x3e\\x26\\x9c\\xc8\\xb4\\x6b\\x02\\xda\\xb0\\x3f\\x5b\\x69\\x6d\\\r\n\\x6e\\x6e\\x2f\\x7f\\x4c\\x43\\x44\\x6a\\x98\\x2c\\xb5\\x20\\x46\\x02\\x91\\x14\\\r\n\\x41\\xb3\\x5a\\xda\\xe6\\x6d\\x3e\\x9a\\xdb\\x11\\x70\\xfa\\x5a\\x78\\xd8\\x43\\\r\n\\x1a\\x2b\\x0f\\x9a\\xdd\\x64\\xfa\\x9f\\xb6\\x29\\x60\\x5e\\x64\\x6a\\xf9\\x8b\\\r\n\\x39\\xed\\xaf\\x46\\x99\\xb4\\x04\\x1c\\xc0\\x66\\xf4\\xf5\\xc5\\x56\\x49\\x1e\\\r\n\\x49\\x10\\x02\\xb9\\xd8\\xaa\\x8b\\x68\\x33\\x65\\x42\\x76\\xd7\\x2d\\xbb\\x9b\\\r\n\\x1d\\x0f\\x96\\x04\\x0b\\x23\\x9a\\x97\\xbe\\x54\\x01\\x56\\x3f\\x26\\x53\\xf6\\\r\n\\xb8\\x24\\x79\\x91\\xe5\\x89\\x65\\xbd\\x91\\x75\\x17\\xca\\x02\\xb0\\x19\\x6f\\\r\n\\xe6\\x0e\\xe6\\xe7\\xfe\\xfa\\xe2\\x8a\\x8a\\x3c\\xb9\\xb4\\x55\\x03\\x5d\\x35\\\r\n\\x04\\x79\\xfe\\x98\\xaa\\xa0\\x4e\\x67\\x3e\\x14\\x05\\x6d\\xf3\\x0d\\x2e\\x7c\\\r\n\\xd3\\xbe\\xf6\\xb1\\xd8\\x76\\xd0\\x0c\\x24\\x0a\\x74\\x24\\xae\\x53\\xd4\\xc8\\\r\n\\x35\\x17\\xf2\\xb5\\xac\\x2d\\xb6\\xdd\\xb4\\xef\\x84\\x0d\\x98\\x05\\xea\\x36\\\r\n\\x6d\\x6d\\xda\\xff\\x00\\x4d\\xb6\\xc7\\x13\\x47\\xf7\\x58\\xa9\\x6c\\x55\\xf8\\\r\n\\x8c\\xeb\\x4d\\xb9\\x07\\x93\\xfb\\xca\\xa3\\x6b\\x8d\\xa1\\x88\\xed\\xf8\\xb6\\\r\n\\xb6\\xde\\xdb\\x71\\x05\\xe1\\xfc\\x06\\xab\\x96\\x44\\x52\\x49\\x10\\xa4\\xa4\\\r\n\\x0a\\xb7\\xcc\\xd2\\x9c\\xaa\\x12\\x3d\\x59\\x8a\\xc4\\x58\\xe9\\xe5\\x7c\\x7b\\\r\n\\x41\\xc1\\x13\\xdc\\x6a\\xa9\\x44\\xd1\\xc6\\x63\\xa5\\xa2\\xf6\\x80\\x2c\\x97\\\r\n\\x56\\x66\\x4a\\x53\\x4b\\x56\\xa4\\x84\\x37\\x32\\x18\\xe3\\x78\\xc6\\x60\\x0b\\\r\n\\x6a\\x72\\xeb\\x85\\x96\\x3e\\x23\\x32\\xc8\\xe3\\x95\\x49\\x41\\x4d\\x4f\\x48\\\r\n\\x16\\xd7\\x0d\\x1c\\x48\\x16\\xc0\\xf8\\x73\\xd4\\x4b\\x9d\\xdf\\x29\\xf0\\x96\\\r\n\\x63\\xe1\\xc7\\x0a\\x9d\\x5e\\x08\\xa5\\x86\\x9f\\xfc\\x1c\\x2a\\x8c\\xa6\\xc0\\\r\n\\x2f\\x30\\x74\\xe4\\xb1\\x24\\xd9\\x9a\\xfb\\xef\\xa1\\xef\\x81\\x2c\\x9c\\x39\\\r\n\\xa3\\x58\\xd9\\x5e\\x29\\x39\\x52\\xd4\\x06\\xe9\\x48\\x5a\\x77\\x21\\xe4\\x8f\\\r\n\\xff\\x00\\xb6\\xc7\\x32\\x6e\\x32\\xe8\\x4d\\xb3\\x01\\x83\\x22\\xd2\\x70\\xb5\\\r\n\\x92\\x47\\x5f\\x87\\x74\\x12\\x2b\\xdd\\x5d\\x0c\\xa5\\x81\\x52\\x3f\\x86\\xdb\\\r\n\\x78\\xb1\\x47\\x1c\\x95\\x95\\x12\\xd4\\x4c\\x8f\\x14\\x39\\x62\\x93\\x2d\\x98\\\r\n\\x48\\xf6\\x32\\x64\\x37\\x37\\x22\\x3b\\x29\\xed\\x98\\x82\\x2c\\xc2\\xf7\\xc7\\\r\n\\x0f\\xa9\\x8d\\x91\\x62\\x64\\xe5\\x66\\x0c\\x51\\x81\\x25\\x5b\\x2b\\x15\\x6b\\\r\n\\x83\\xf6\\x3a\\x1e\\xfb\\x79\\xd7\\x52\\xa4\\xd7\\x46\\x08\\xea\\x76\\x63\\xa9\\\r\n\\x1f\\xe4\\xd6\\xff\\x00\\x51\\xb6\\xc2\\xd8\\x6e\\x0f\\x1d\\x2d\\x3b\\xca\\x96\\\r\n\\x24\\x6b\\x6b\\x77\\xdc\\x9f\\x10\\xfa\\xe2\\xb6\\xa9\\xe3\\x80\\x80\\x3a\\x9b\\\r\n\\x35\\xf4\\xd8\\x0d\\x2f\\xf9\\xe1\\x16\\x47\\x84\\x66\\x60\\x0c\\xc9\\x13\\xd8\\\r\n\\x69\\x6b\\xad\\xc8\\x3f\\x53\\x7f\\xb6\\x38\\x11\\x91\\x0b\\xa4\\xdd\\x50\\xbb\\\r\n\\x74\\xdd\\xb3\\x2a\\xb2\\xe8\\x47\\x8b\\x41\\x73\\xe5\\xad\\xb1\\x51\\x4b\\x4d\\\r\n\\x24\\x79\\x25\\x20\\x67\\xef\\xad\\xc5\\xaf\\x62\\x3f\\x5c\\x4a\\xbc\\x92\\xca\\\r\n\\x01\\x51\\xb2\\x91\\x73\\xa6\\x16\\x8e\\x4a\\xb9\\x04\\x33\\x1e\\x5a\\x11\\x72\\\r\n\\x72\\xf5\\xdb\\xd3\\x52\\x2f\\xe7\\xe5\\xdb\\x14\\xb4\\xe2\\x81\\x55\\x62\\x11\\\r\n\\x72\\x04\\x6c\\x19\\x94\\x85\\x65\\x70\\x73\\xa3\\x48\\x37\\x2e\\xe7\\x30\\x2d\\\r\n\\xa8\\xd7\\xd3\\x06\\xa5\\x26\\x5b\\x47\\x32\\x09\\x6d\\x98\\x2f\\x88\\x93\\x60\\\r\n\\xc5\\x4a\\xae\\xbb\\x6f\\xe5\\xfa\\x62\\x2a\\xd4\\x9a\\x65\\xa7\\x93\\xe0\\xd4\\\r\n\\x06\\x28\\x54\\x83\\x75\\x63\\x60\\xa5\\x6e\\xb7\\x21\\x8d\\xec\\x2d\\xbd\\xef\\\r\n\\xe7\\x8e\\x27\\x15\\x5d\\x0d\\x4a\\x3b\\x84\\x98\\x49\\x03\\x53\\x8c\\x89\\x21\\\r\n\\x2c\\x5e\\x40\\x7a\\xd4\\x2d\\x92\\x48\\x41\\x12\\x68\\x7b\\x1d\\xec\\x4e\\x28\\\r\n\\xe3\\xfd\\x89\\xc3\\x65\\x9a\\x42\\x1a\\x58\\xc4\\x8d\\x2b\\xb2\\x95\\x03\\xc4\\\r\n\\xc1\\x05\\xfa\\xf9\\x77\\x2b\\xaf\\x73\\x99\\x86\\xf8\\xe1\\x15\\x09\\x3c\\xb5\\\r\n\\xb5\\xee\\xa9\\x9a\\x0a\\xba\\xfa\\x49\\x50\\x93\\x9a\\x48\\xcc\\xee\\x49\\x8a\\\r\n\\xe6\\xe0\\xf2\\x59\\x32\\x85\\xdf\\x20\\xb6\\xa7\\x5e\\x37\\x40\\x2a\\x78\\xb7\\\r\n\\xb3\\xca\\x8a\\x39\\x75\\x73\\x21\\x32\\x46\\x7e\\x11\\xf7\\x79\\x08\\x79\\x34\\\r\n\\xb9\\x04\\xa2\\xa1\\x65\\x36\\x39\\xfa\\x72\\x83\\x8a\\xaa\\x21\\x24\\x60\\x6a\\\r\n\\x6a\\x51\\xca\\x9a\\x8d\\x57\\x9b\\x0d\\xad\\x95\\x93\\xb1\\x07\\x63\\x63\\x70\\\r\n\\x2d\\xf3\\x1b\\x51\\xa3\\x53\\x55\\x7e\\xc9\\xcf\\x14\\x51\\xb3\\x89\\xe9\\xde\\\r\n\\x58\\x83\\x19\\x63\\x73\\xf1\\x22\\xcf\\x99\\x15\\x5d\\x35\\x20\\x8c\\xb7\\x1a\\\r\n\\x0d\\x6c\\x30\\xf5\\x35\\x70\\xbb\\xc4\\x39\\x6f\\x63\\x94\\xab\\xa3\\xa9\\x05\\\r\n\\x6e\\x33\\x29\\x0f\\x74\\xf2\\x2b\\xae\\xa3\\xc8\\xe2\\xb3\\x89\\x4d\\xee\\x13\\\r\n\\xa3\\x46\\x44\\xd0\\xa9\\x65\\x2b\\xd5\\xa8\\xb3\\xe5\\xfc\\x48\\x49\\x40\\x75\\\r\n\\x00\\x5a\\xfd\\x43\\xbf\\x16\\x5e\\x77\\xba\\xd5\\x05\\xd5\\xa0\\x8d\\x26\\x1b\\\r\n\\xb2\\x3a\\xc7\\x13\\xd9\\x8f\\x9e\\x56\\x23\\x73\\xf5\\xc5\\x2a\\xd4\\x71\\x2e\\\r\n\\x15\\x0a\\x87\\xcb\\x3b\\x22\\xa4\\x6f\\x2e\\x83\\x2d\\x3d\\x42\\x68\\x48\\x0b\\\r\n\\xbc\\x71\\xd8\\x77\\xbe\\xd8\\x19\\xe8\\x38\\xa3\\x94\\x39\\xf2\\xb3\\xe6\\x1d\\\r\n\\x98\\x5f\\x51\\xf4\\x03\\x6f\\x5b\\x63\\xde\\x62\\x6e\\xa1\\x2a\\xd9\\xb5\\x1a\\\r\n\\x0e\\xfa\\xfe\\x1c\\x7b\\x2d\\xec\\xe2\\xd3\\xb4\\xb5\\x2f\\x0a\\xbc\\xd9\\x59\\\r\n\\x0d\\x55\\x49\\x91\\xea\\x00\\x2c\\x03\\x31\\x69\\x76\\xe9\\x19\\x10\\x2f\\x4d\\\r\n\\xba\\x6d\\xbe\\x27\\xad\\xf7\\x68\\x9f\\x37\\x4c\\x28\\xc4\\x40\\xa6\\xd7\\x24\\\r\n\\xd8\\xed\\xea\\x49\\xd3\\xca\\xff\\x00\\x53\\xc6\\xb8\\x8a\\x22\\xc6\\x26\\xf8\\\r\n\\xb5\\x33\\x4b\\x78\\x61\\x85\\x04\\xc3\\x99\\x1a\\x97\\x42\\xea\\xba\\xe4\\xd9\\\r\n\\x7f\\x85\\xae\\x4d\\xf4\\x18\\xcc\\x61\\x92\\x35\\xa8\\x16\\x96\\x60\\x1e\\xc0\\\r\n\\x59\\x73\\x37\\xca\\xbf\\xe5\\x3f\\x96\\x23\\x52\\x18\\x36\\x60\\x75\\xfb\\xfd\\\r\n\\xf1\\x07\\x16\\xa6\\xa6\\x4c\\xaf\\x22\\x82\\x3c\\xb5\\xfb\\x69\\x8a\\xea\\xe5\\\r\n\\xa8\\xe7\\x3c\\x6d\\x74\\x00\\x00\\xdd\\xf6\\xd4\\x5c\\x5f\\xcb\\xb7\\x9e\\xd8\\\r\n\\x33\\x30\\x65\\x09\\xd3\\x76\\xf0\\x0c\\xc5\\x45\\xc8\\xd4\\x5f\\x73\\xdf\\x61\\\r\n\\x63\\x8a\\x64\\x63\\x1f\\x2a\\xc5\\x9d\\xf5\\x0a\\xa2\\xe5\\xaf\\x76\\x20\\x0d\\\r\n\\xff\\x00\\xb1\\xeb\\x8e\\x26\\x44\\x59\\x4a\\x92\\x23\\x16\\xf1\\x8b\\x3f\\x97\\\r\n\\x52\\xf6\\x37\\xed\\xae\\x29\\x67\\x32\\x4c\\xc4\\xe8\\x18\\x8f\\xfa\\x86\\x9e\\\r\n\\x9a\\x6d\\xdf\\xcf\\x11\\x49\\x10\\x88\\x10\\x7e\\xb7\\x20\\x7f\\x3d\\xff\\x00\\\r\n\\x2c\\x49\\x1c\\xd5\\xd1\\x9d\\x4c\\x50\\xe7\\x2a\\x5b\\x5c\\xce\\xaa\\xda\\xfe\\\r\n\\x10\\x01\\xfb\\xe2\\x9a\\x96\\x04\\x4f\\x02\\x05\\x7b\\x03\\x60\\x3e\\x55\\xd2\\\r\n\\xe4\\xdd\\x89\\x1a\\xd8\\x9e\\xf8\\x68\\x21\\xd4\\x58\\x7d\\xf5\\x07\\xfd\\xf0\\\r\n\\x94\\x72\\x43\\x33\\x4d\\x1b\\xf4\\x5a\\xd9\\x00\\xb5\\xff\\x00\\x5e\\xd8\\x12\\\r\n\\x9f\\xbe\\xf8\\x89\\xf9\\x29\\x24\\xf6\\x3c\\xd7\\x88\\xc2\\x9b\\xf4\\xe7\\x6e\\\r\n\\xa3\\xe5\\xb7\\xf3\\xfa\\xe2\\x24\\x33\\x3d\\x84\\x65\\x40\\xb6\\xa3\\x2e\\x53\\\r\n\\x61\\x7b\\x8d\\x6f\\xad\\xbb\\x8d\\xf1\\x50\\xd9\\x22\\x48\\xb2\\x93\\x7d\\xc0\\\r\n\\x22\\xfd\\x86\\x9f\\x4e\\xe3\\x6c\\x52\\x43\\xc2\\xc5\\xda\\x56\\x08\\xe3\\xb6\\\r\n\\xaa\\x49\\xb1\\xee\\x74\\xb6\\x97\\x24\\x03\\x88\\xa7\\x2a\\xe0\\x45\\x31\\x70\\\r\n\\x79\\xc5\\x49\\x06\\xc5\\x19\\xae\\xb9\\xbc\\x47\\xa2\\xf9\\x41\\x3e\\x63\\xca\\\r\n\\xf8\\x13\\x99\\x22\\x31\\x36\\xa7\\x5b\\x9e\\xd6\\x1b\\xf9\\x7f\\x7b\\x61\\x50\\\r\n\\x65\\x62\\x6c\\x19\\x47\\x2c\\x80\\x07\\x82\\xf7\\x1f\\xca\\xc7\\xd7\\xf5\\x8d\\\r\n\\x1a\\x30\\x00\\x16\\x27\\xfb\\xee\\x70\\xd2\\x35\\x57\\x11\\x76\\x63\\x9d\\x38\\\r\n\\x7c\\x02\\x25\\x37\\xda\\x7a\\x9b\\x3c\\x9f\\xf5\\x2c\\x4b\\x1a\\x1f\\x2c\\xde\\\r\n\\x7b\\x7b\\x72\\xf4\\x93\\x45\\x4b\\x15\\x59\\xa9\\x09\\x0b\\x35\\x5d\\xa9\\xa3\\\r\n\\x57\\x6c\\xaa\\x02\\x34\\x8f\\x21\\x20\\x40\\xaa\\x09\\xbb\\x13\\x62\\x09\\xbd\\\r\n\\x86\\xf3\\xf1\\x7e\\x19\\xc5\\x78\\xdc\\x3c\\x2a\\x1a\\x13\\x57\\x25\\x67\\x0c\\\r\n\\x34\\x8d\\x57\\xef\\x26\\x4a\\x63\\x07\\xbb\\xf3\\xe3\\x81\\xd1\\x3a\\x02\\x99\\\r\n\\x00\\x8a\\x57\\x0f\\xa1\\x7d\\xba\\x71\\xc3\\x38\\x0c\\x15\\x74\\xbc\\x86\\xe0\\\r\n\\xd4\\xd0\\x18\\x5d\\x99\\xa3\\x8d\\xda\\x44\\xce\\xa2\\xc8\\x97\\x31\\xc7\\xf1\\\r\n\\x2f\\x99\\x58\\xdd\\x94\\x0f\\x2d\\x49\\xe0\\xf2\\x3b\\x41\\x5d\\x14\\x80\\xaa\\\r\n\\x43\\xc5\\xab\\xa9\\xe6\\x01\\x4f\\x44\\x49\\x30\\x78\\x3c\\x82\\xaa\\x0a\\x98\\\r\n\\xc2\\xeb\\xd2\\x17\\xc8\\x13\\x88\\xe9\\xe1\\x14\\xd4\\xec\\xe2\\x39\\x59\\x47\\\r\n\\x2a\\x7c\\xd6\\x37\\x8d\\x9f\\x3e\\x42\\x75\\xd9\\xc0\\x61\\xdb\\xf3\\xc5\\x1d\\\r\n\\x36\\x51\\xfe\\x38\\x67\\x89\\xea\\xd9\\x28\\xe1\\x66\\x2c\\xb0\\xc5\\x10\\x6e\\\r\n\\x49\\x3d\\xbf\\xe6\\x5c\\x5f\\x62\\xab\\xdc\\x2e\\x1e\\x1e\\x4f\\x32\\x46\\x90\\\r\n\\x23\\x4a\\x8a\\xa1\\x4d\\xac\\xd9\\x15\\x80\\x0b\\x6f\\x9a\\xc7\\xfb\\xdf\\x0f\\\r\n\\x38\\xa6\\xa7\\xa3\\x92\\xfd\\x69\\x2b\\x74\\x2e\\xad\\x22\\x97\\xb3\\x59\\x7f\\\r\n\\x0a\\xdc\\x33\\x13\\x60\\xba\\x5f\\x71\\x8e\\x31\\x55\\x55\\x0d\\x4d\\x3b\\xc3\\\r\n\\x1b\\x88\\xdd\\x05\\x99\\x7c\\x39\\x9f\\x5e\\xa3\\x6b\\x76\\x00\\x0b\\xe5\\xd6\\\r\n\\xd7\\xc5\\x4f\\x1d\\x94\\xc7\\xca\\xc9\\x67\\x70\\x73\\x6b\\x7b\\xf6\\xd3\\x4b\\\r\n\\x5f\\xf9\\x7d\\xef\\x80\\xd9\\xc7\\x81\\x6e\\x57\\x66\\x17\\xf5\\xee\\x6d\\xbe\\\r\n\\x9e\\x78\\x59\\x5e\\x54\\x39\\x53\\x3f\\x2d\\x75\\xd8\\x7e\\xec\\xdc\\xa8\\xd3\\\r\n\\x46\\xca\\x5b\\x28\\x3b\\xed\\x8a\\x34\\x78\\x03\\xc6\\xea\\x54\\x92\\xcd\\x98\\\r\n\\x1d\\x02\\xb5\\x8a\\xb5\\xc7\\x61\\xdf\\x5f\\x9b\\x0f\\x2b\\x4d\\x08\\x53\\xe2\\\r\n\\x4c\\xa3\\x43\\xe5\\xaf\\x97\\xe9\\x87\\x4c\\xed\\xab\\x01\\x60\\x0d\\xb7\\x2d\\\r\n\\xe9\\xf5\\xbf\\xa7\\xdb\\x1c\\xd9\\xc4\\xf6\\xf9\\x16\\x55\\x8d\\x9a\\xdd\\x9b\\\r\n\\x33\\x0b\\x9c\\xa4\\x81\\x7b\\xa8\\xd7\\x73\\xe5\\x8a\\xb8\\x82\\xd3\\xac\\xc8\\\r\n\\xac\\xef\\x91\\xb9\\x76\\xd1\\xda\\xe3\\x30\\x42\\x56\\xf7\\xdb\\xa4\\x30\\x61\\\r\n\\x9b\\xe5\\xd7\\x1e\\xf0\\xbf\\xb3\\xfd\\xed\\x68\\xa0\\x96\\x46\\x8c\\x72\\x99\\\r\n\\x22\\x55\\x91\\x66\\x67\\xe5\\x80\\xe1\\x15\\x73\\xe5\\x62\\xb9\\x80\\x00\\x9f\\\r\n\\x4c\\x47\\xc5\\xab\\xa8\\xeb\\xa4\\xa9\\x84\\x47\\x2d\\x4c\\xb9\\x62\\x58\\x92\\\r\n\\x04\\x2e\\x59\\x5d\\xba\\x83\\x32\\xde\\x35\\x0c\\xc6\\xec\\xcc\\xa4\\x78\\x4e\\\r\n\\x96\\xc7\\x04\\xe2\\x4d\\xc4\\xa9\\xa4\\x8a\\x6a\\x79\\x56\\xba\\x07\\xb5\\x53\\\r\n\\x32\\xb6\\x42\\x5c\\x16\\xf8\\x4c\\xa3\\x64\\x1d\\x24\\x77\\xca\\x4e\\xa1\\x86\\\r\n\\x38\\xe2\\xac\\xb4\\x75\\x34\\xb2\\x44\\xce\\xed\\x49\\x2b\\x09\\x01\\xd3\\x3a\\\r\n\\x2b\\x0c\\xd6\\xd3\\x50\\x40\\x2d\\x98\\x77\\x07\\x5d\\x6d\\xc0\\xa8\\xbd\\xcf\\\r\n\\xdf\\x39\\x71\\x87\\xf7\\x83\\x49\\x5f\\x10\\x0b\\x7b\\x4b\\x53\\x02\\x89\\x02\\\r\n\\x8b\\x65\\x51\\x9e\\x06\\x27\\x4f\\x11\\xd5\\xb5\\xd5\\xb9\\xab\\xed\\x75\\x2d\\\r\n\\x6d\\x45\\x3e\\x4a\\x68\\xa9\\xef\\x21\\x55\\x3c\\x98\\xea\\xe6\\x8e\\x6c\\xbf\\\r\n\\xc3\\xcc\\x61\\x1a\\x03\\x7d\\xdd\\xec\\xb7\\xd0\\x93\\x51\\x48\\xd9\\x96\\x59\\\r\n\\xa3\\x8d\\xb4\\xca\\x85\\x86\\x72\\x1b\\x55\\xb2\\x6f\\xb1\\x17\\xf5\\xc7\\x1d\\\r\n\\x82\\x9f\\xdd\\x62\\xa8\\x49\\x91\\x6a\\x69\\xdf\\x9b\\x4c\\x1c\\x65\\xcf\\x6b\\\r\n\\x73\\x62\\xcd\\xb5\\xf2\\xeb\\xa1\\xf2\\xf3\\xb1\\x33\\x7e\\xd1\\x95\\x66\\x40\\\r\n\\x88\\x27\\x5c\\xf1\\x1e\\x94\\xcc\\xaa\\xac\\x5b\\x3b\\x9d\\x73\\x31\\xd8\\x15\\\r\n\\xb9\\x7d\\x32\\xea\\x06\\x2b\\x28\\xe4\\x9d\\x05\\x42\\xf2\\xfe\\x35\\x3b\\x66\\\r\n\\xfc\\x79\\x90\\x14\\x90\\x5b\\x4b\\xdf\\x43\\xe9\\x7d\\x6f\\x8a\\x50\\xb3\\x70\\\r\n\\xf3\\xf2\\x18\\xe4\\x83\\x32\\xb5\\xcc\\x99\\xd5\\x56\\x36\\x2d\\xfc\\x25\\x51\\\r\n\\x32\\xdb\\xce\\xda\\x69\\x7a\\x09\\xa7\\x15\\x19\\x64\\x75\\x44\\x8a\\x53\\x1c\\\r\n\\x9a\\x90\\x5d\\x1b\\x58\\x9c\\xa2\\xa9\\x1d\\xb7\\xd8\\x5c\\x93\\xde\\xdc\\x4e\\\r\n\\x28\\xa5\\x78\\x9a\\x00\\xca\\x1d\\xde\\x36\\x96\\xfa\\xf3\\xb2\\x67\\xb9\\x03\\\r\n\\x4c\\xa6\\xe4\\xf9\\x81\\xbe\\xb8\\x31\\xd5\\x82\\x47\\xc5\\xd0\\x91\\xa6\\xda\\\r\n\\x62\\x49\\x7d\\xda\\x16\\x88\\x49\\xf0\\x51\\x47\\x32\\x43\\xf3\\xb6\\xec\\x4e\\\r\n\\x80\\x9d\\x49\\xb7\\xe5\\x8f\\x6c\\x78\\x8f\\xbf\\x4d\\x43\\x4d\\x4c\\x6a\\x9e\\\r\n\\x4e\\x69\\x02\\x18\\x8f\\x28\\x3b\\x1b\\xa8\\xcc\\x7c\\x6a\\x37\\xb1\\xde\\xda\\\r\n\\xf4\\xed\\x8e\\x19\\xc2\\x5e\\x8a\\x28\\xbd\\xe4\\x89\\x6a\\xa4\\xf1\\xb9\\x19\\\r\n\\xb9\\x37\\x1d\\x3a\\xd8\\x5b\\x2d\\xc8\\x66\\xea\\xcc\\x34\\x3b\\xe3\\xda\\xab\\\r\n\\xd2\\x70\\x71\\x34\\x14\\x8b\\x3c\\x91\\xc8\\x8b\\xcd\\x23\\x5a\\x55\\xd4\\xbc\\\r\n\\xd7\\x0e\\x86\\xe4\\xdb\\xce\\xec\\x75\\xf5\\xe1\\x9c\\x43\\x99\\x0e\\x69\\x1f\\\r\n\\x33\\x64\\x04\\x9b\\xea\\x4f\\x6b\\x7e\\xbe\\x5a\\x76\\xc4\\xf2\\xf3\\x74\\x4b\\\r\n\\x82\\x4e\\xa7\\x7f\\xef\\xf3\\xdb\\x0c\\xef\\x13\\x08\\xc7\\x86\\xda\\xeb\\xfc\\\r\n\\xfc\\xf1\\xc3\\xa9\\xe5\\xae\\x78\\xdd\\x2d\\x18\\x0e\\xd9\\xd8\\xea\\x59\\x52\\\r\n\\xde\\x0e\\xca\\x06\\xcc\\xc4\\x1c\\xc4\\x80\\xba\\xe2\\xaa\\x55\\xa5\\x56\\x12\\\r\n\\xa9\\x59\\x62\\x16\\xce\\x2c\\xb7\\xed\\x75\\xb6\\xf9\\xb7\\x16\\xf5\\x18\\xae\\\r\n\\x73\\x2c\\x42\\x56\\x21\\x40\\x21\\x15\\x1f\\x49\\x2e\\x75\\xcd\\x6f\\xb7\\x7c\\\r\n\\x52\\xf5\\x49\\x2e\\x56\\x1f\\x0e\\xf7\\xcd\\xa0\\x3e\\x80\\xf9\\x9d\\xbf\\xd3\\\r\n\\x11\\x4f\\xcb\\x2a\\x5c\\xdf\\x7e\\x9d\\x4d\\x89\\xdb\\x4d\\xbd\\x70\\x95\\x8c\\\r\n\\xc6\\xc3\\x5b\\xec\\x87\\xfa\\x5f\\xee\\x75\\x37\\xed\\xdb\\x14\\xef\\x1b\\x42\\\r\n\\xa3\\x38\\x12\\x6a\\x72\\x17\\x5c\\xc7\\xfc\\xa2\\xf7\\x3a\\x5f\\xfa\\x62\\x41\\\r\n\\xd3\\xae\\x9a\\x5f\\x02\\x53\\x6b\\x00\\x4d\\xb7\\x3f\\x5f\\x31\\x88\\x6a\\x63\\\r\n\\x7a\\x86\\x85\\x0f\\xc4\\x51\\xaa\\x0f\\x43\\x6d\\x74\\xed\\x7d\\x6d\\xb7\\x7b\\\r\n\\x61\\xe6\\x90\\xbe\\x5b\\x0d\\xfe\\x5d\\x01\\xb7\\xe2\\x26\\xe7\\xec\\x47\\xf4\\\r\n\\xc4\\x6b\\x3a\\x9c\\xc2\\xf9\\xd8\\x0d\\x22\\x37\\x20\\x11\\x61\\x71\\x60\\x74\\\r\n\\xf3\\xfd\\x31\\x56\\x49\\x50\\x5f\\xf7\\x8a\\xa3\\x2a\\xa0\\x39\\xc3\\x1b\\x66\\\r\n\\xcc\\xc0\\x6e\\x37\\x2b\\x61\\xaf\\x7c\\x22\\xe7\\x05\\x41\\x3f\\xbb\\x39\\x73\\\r\n\\x93\\xd4\\xc6\\xc6\\xc4\\x5c\\xea\\x57\\x5c\\xa3\\xab\\xe5\\xc4\\x11\\xdc\\xdc\\\r\n\\x3f\\xee\\x72\\xa9\\x5b\\x6d\\x99\\x01\\x68\\xfb\\x6f\\xbf\\x7b\\x03\\xde\\xd8\\\r\n\\xea\\xe9\\xca\\x40\\x16\\x37\\x1b\\x8d\\x6d\\x60\\x7c\\x87\\x6f\\xbe\\x10\\x16\\\r\n\\x71\\x61\\x76\\xb9\\xdb\\x41\\xe7\\xdc\\xfe\\xbf\\x5c\\x39\\x28\\xf6\\xbd\\xd0\\\r\n\\x2e\\x83\\x5c\\xcd\\xf3\\x1b\\x13\\xa6\\xc3\\x4e\\xf7\\xf4\\xc5\\x0a\\xb2\\xd2\\\r\n\\x33\\x4b\\xd3\\x2d\\x44\\x92\\xd4\\xcb\\xa8\\xb8\\x79\\x4f\\x4a\\xdc\\x5c\\x74\\\r\n\\x46\\x15\\x37\\x23\\x40\\x06\\x8a\\x31\\xc7\\xfd\\x9e\\x87\\x8d\\x86\\x12\\xca\\\r\n\\xea\\x10\\x58\\x80\\x46\\x47\\xc8\\x18\\xf5\\x8b\\x68\\x6c\\xc4\\x76\\xe9\\xb5\\\r\n\\xc1\\xb0\\xc7\\x0c\\xe0\\x74\\x3c\\x0e\\x87\\xde\\x29\\x44\\x79\\x81\\x59\\xae\\\r\n\\x63\\x1c\\xe9\\x08\\x60\\xea\\x9c\\xd1\\x63\\x63\\xa2\\xd8\\x0b\\x6b\\x8f\\xda\\\r\n\\x94\\xd4\\xc4\\xdd\\x0c\\x79\\xc1\\x9b\\x2a\\xdd\\x85\\xe4\\xb9\\x21\\xbb\\xe6\\\r\n\\xdc\\x1f\\xb0\\x18\\x83\\x89\\xaf\\x0c\\xae\\xe3\\x74\\x7c\\xa1\\x3c\\x75\\x75\\\r\n\\xe2\\xa1\\x1a\\xfb\\xc3\\x25\\x24\\x0a\\xc4\\x0b\\xdc\\x13\\x28\\x6e\\xad\\x45\\\r\n\\xad\\x62\\x6c\\x71\\x1b\\x67\\x89\\x57\\x31\\xcd\\x97\\xe2\\x1c\\xc4\\xe8\\xc3\\\r\n\\xe1\\xa8\\xd7\\xa4\\x29\\x00\\xdf\\xbf\\xdf\\x14\\x33\\x8a\\x8a\\x5a\\x6c\\xc1\\\r\n\\x9a\\x65\\x01\\x65\\x19\\x9b\\x29\\x91\\x4e\\x5b\\x83\\xd8\\xf4\\x6e\\x2d\\xb9\\\r\n\\xc4\\x6a\\xb5\\xb2\\x9e\\x6c\\x99\\x44\\x5d\\x2b\\x1d\\x85\\xd7\\xb1\\x6d\\x76\\\r\n\\xb8\\xd3\\x6b\\xda\\xfb\\xe0\\x70\\xd1\\x4f\\x51\\x51\\x73\\xcd\\x8e\\x41\\xca\\\r\n\\x8b\\x37\\xcb\\x1b\\x5c\\xca\\xbf\\x56\\x63\\x7b\\xf7\\x16\\xf2\\xc5\\x4d\\x7c\\\r\n\\x31\\x42\\x29\\xc8\\xe6\\xcf\\x4d\\x21\\x4c\\x9d\\xbb\\x65\\xdf\\xcb\\x42\\x46\\\r\n\\xa7\\x1c\\xa9\\x2a\\x2a\\xf3\\xba\\x81\\xd7\\x75\\x55\\x16\\x19\\x2f\\x73\\xb5\\\r\n\\xc7\\xa7\\xa9\\xfd\\x26\\xbc\\x64\\x1c\\xb9\\x23\\xb1\\x19\\xbc\\x27\\x4f\\x2b\\\r\n\\x7a\\xf6\\xf4\\x38\\xe1\\x88\\xed\\x51\\x51\\x10\\xba\\xc6\\xf6\\x95\\x49\\x20\\\r\n\\xdd\\xed\\x97\\xa7\\xf0\\x96\\xfe\\x97\\x3b\\xe2\\x0a\\xda\\x69\\x25\\xa4\\x12\\\r\n\\x69\\x24\\x69\\x2d\\x2d\\x62\\x65\\xb6\\x52\\xb7\\x48\\xe4\\xbd\\xad\\xf1\\x12\\\r\n\\xc5\\x46\\x62\\x41\\x07\\xc8\\x60\\x3a\\xa8\\x6c\\xba\\xf5\\x6a\\x7c\\xec\\x6c\\\r\n\\x1f\\xee\\xbf\\x4d\\x7c\\xc9\\xc5\\x15\\x3a\\xcb\\x26\\x6b\\x82\\xac\\x6e\\x2e\\\r\n\\x35\\xee\\xc7\\xed\\xe9\\x61\\xeb\\x7c\\x54\\xd0\\x1c\\xf2\\x04\\xd0\\xce\\xb2\\\r\n\\x42\\x01\\x1a\\x2c\\x8a\\xbc\\xe8\\x5b\\x41\\xf8\\xc7\\x7d\\x37\\x18\\xa5\\xab\\\r\n\\x79\\xe9\\x92\\x9c\\x42\\xd2\\x4e\\x99\\x79\\xb9\\x6c\\x16\\x9e\\xc2\\xe7\\x33\\\r\n\\x9d\\x09\\x53\\xae\\x55\\xd6\\xdd\\x26\\xc6\\xf6\\x5c\\xa0\\x9b\\x65\\x8e\\x0a\\\r\n\\x8e\\x64\\x8d\\xab\\x10\\x25\\x46\\xb4\\xcb\\x94\\x9b\\x03\\xb4\\x9a\\x78\\x89\\\r\n\\x62\\x00\\xd3\\x0b\\x0a\\x52\\xd4\\x35\\x4c\\x51\\xa0\\x85\\xb4\\xe5\\x08\\xca\\\r\n\\xaf\\x50\\xe9\\x2d\\x97\\xa5\\x64\\x65\\xea\\x17\\xf3\\xde\\xe7\\x1c\\x3d\\x94\\\r\n\\x47\\x14\\xa0\\x8c\\xae\\x0d\\xd2\\xd6\\xea\\x3f\\x36\\x6b\\x92\\xaa\\x34\\xd7\\\r\n\\xac\\xf9\\x29\\xc5\\x67\\x0a\\xa7\\xa8\\xe7\\xcf\\x56\\xef\\x76\\x0e\\x20\\x89\\\r\n\\x0e\\x4e\\x63\\x49\\x96\\xcc\\xe7\\x7b\\x03\\xa0\\xcb\\xe3\\xbe\\x66\\x62\\xa3\\\r\n\\x29\\xe0\\xf4\\xc6\\x3a\\x6a\\x5f\\x1a\\xce\\x94\\xcd\\x13\\x29\\xee\\x61\\xa8\\\r\n\\x96\\x3d\\x47\\x90\\x62\\xc4\\x68\\x74\\x37\\xef\\x8e\\x24\\xf2\\x73\\xaa\\x90\\\r\n\\xdb\\xfc\\x35\\x2d\\x2d\\x64\\x8c\\x11\\x4b\\x0e\\x55\\x4b\\x4c\\xc5\\x46\\x99\\\r\n\\xbe\\x14\\x0c\\x32\\x93\\xa0\\xd3\\x0b\\x0f\\x0f\\x5a\\xc5\\x29\\x4e\\x93\\x72\\\r\n\\x4c\\xa8\\x65\\x90\\xbc\\xa6\\x47\\xda\\xee\\x59\\x9c\\xda\\x3b\\xa9\\x54\\x4b\\\r\n\\x2e\\xd6\\x07\\x7c\\x4f\\x4b\\x45\\xc4\\x9e\\x73\\x33\\xcf\\xfe\\x0e\\x02\\xf1\\\r\n\\xa4\\x59\\xc0\\x25\\x95\\x8e\\xac\\x15\\xc2\\xdd\\x96\\xe3\\x37\\x49\\xef\\xae\\\r\n\\x38\\x3d\\x8b\\x4d\\x42\\x57\\x20\\x91\\xda\\x7a\\x37\\x07\\x51\\x24\\x61\\x79\\\r\n\\x8b\\xbe\\x65\\x27\\x46\\xca\\x2d\\x62\\x2f\\x85\\xa8\\x9a\\x2e\\x65\\x1c\\x74\\\r\n\\xf9\\xc0\\xcd\\x20\\x32\\x3e\\x79\\x53\\x32\\x85\\x72\\x18\\xf8\\x86\\x7f\\x89\\\r\n\\xa7\\x56\\x40\\x76\\xb1\\x38\\xe1\\xd3\\xe6\\xa8\\x14\\xed\\x94\\xf3\\x8b\\xc7\\\r\n\\x28\\xdb\\xe2\\xd9\\x5d\\x59\\x6f\\x73\\xab\\x46\\x00\\x02\\xe0\\x5c\\x0d\\xc8\\\r\n\\xc3\\x09\\x27\\xaa\\x78\\xf9\\x6b\\x03\\x8b\\x83\\x91\\xae\\xb3\\x72\\xa4\\xcc\\\r\n\\x84\\xe6\\x00\\xe6\\x0a\\xd6\\x65\\x02\\xd6\\x16\\x0c\\x7b\\xcf\\x14\\xa4\\xac\\\r\n\\x82\\x40\\xea\\xb3\\xc5\\xf0\\xda\\xf6\\x59\\x1f\\xe1\\x93\\x6e\\xe0\\x8d\\x07\\\r\n\\x96\\xc7\\x06\\x1a\\xbb\\x9d\\x3b\\xfe\\x04\\xfe\\xa2\\xff\\x00\\x9e\\xb8\\xe3\\\r\n\\x3e\\xd3\\x16\\x86\\x41\\x4d\\x1a\\x4d\\x40\\xec\\xb0\\xd2\\xb8\\x65\\xff\\x00\\\r\n\\x1d\\x58\\xcc\\x46\\x48\\xd7\\x76\\x8a\\x32\\x33\\x4b\\x27\\x84\\x78\\x75\\xd0\\\r\n\\x63\\x84\\x70\\x86\\x82\\xf5\\xf5\\xec\\x65\\xaa\\x91\\xcc\\x83\\x33\\x78\\x59\\\r\n\\xbc\\x65\\x01\\x26\\xc0\\xec\\xab\\xd9\\x00\\xef\\xa6\\x04\\xc8\\xcd\\x23\\xb0\\\r\n\\x3d\\xd7\\x29\\xf9\\x47\\x92\\xd8\\x7d\\xfe\\xbf\\x4c\\x71\\xb5\\x7a\\x8a\\x07\\\r\n\\xa4\\x9b\\xab\\x9f\\x96\\x35\\x50\\x75\\x22\\xe0\\xa3\\x1d\\xb6\\xb5\\xfe\\xab\\\r\n\\xe5\\xa9\\x4a\\x6a\\x9a\\x19\\xda\\x9d\\x8e\\x6c\\xba\\x67\\x1e\\x12\\x6d\\xb5\\\r\n\\xfd\\x2f\\x8a\\x57\\x70\\x6e\\xfb\\x69\\xb9\\xbf\\x99\\xfe\\xb8\\x11\\xf3\\x75\\\r\n\\xcb\\xa9\\xf2\\x3f\\x7f\\x3f\\xe7\\x8e\\x13\\x96\\x94\\x33\\x4a\\xcb\\x1a\\x10\\\r\n\\x16\\xee\\xc1\\x46\\x5f\\x2e\\xdd\\xfe\\xbe\\x58\\xe3\\xf5\\x34\\x86\\xa5\\x67\\\r\n\\x8a\\x42\\x72\\xea\\xee\\x18\\xb2\\x13\\x70\\x00\\x0a\\x76\\xb0\\x5d\\x48\\xd3\\\r\n\\x5f\\x33\\x8e\\x21\\xed\\x05\\x3c\\x91\\xc5\\x1a\\x53\\xc9\\x24\\x88\\x72\\xda\\\r\n\\x24\\x72\\x64\\x27\\x5c\\xcc\\x6c\\xd6\\xca\\x05\\xc0\\x27\\xcf\\x5c\\x43\\x55\\\r\n\\x51\\xd6\\xd1\\xd3\\xb2\\xa9\\xb1\\x3c\\xc3\\x63\\x73\\x63\\x6b\\x76\\xc5\\x02\\\r\n\\x4d\\x57\\x97\\x3b\\x2a\\x29\\xd0\\x90\\x2e\\xc3\\xb7\\x7f\\xcb\\x6c\\x47\\xc0\\\r\n\\xdb\\x9a\\xb2\\xc9\\x57\\x50\\xc9\\x6d\\x63\\x5c\\x8a\\x0f\\x91\\x07\\x2d\\xc7\\\r\n\\xae\\x07\\x02\\xa4\\xec\\xf5\\x39\\xb7\\xd2\\x5c\\xad\\xa0\\x3b\\x15\\x1b\\xeb\\\r\n\\xa9\\xc4\\x3c\\x36\\x6b\\x2f\\x22\\xbe\\x75\\x28\\x43\\x3c\\x53\\x81\\x50\\xae\\\r\n\\x80\\xdb\\x42\\xc1\\x5a\\xf9\\x74\\xe9\\x3f\\x9e\\x38\\xe7\\x1a\\x8b\\x25\\x5f\\\r\n\\x0f\\xa1\\x49\\xe4\\xa8\\xb7\\x29\\xa4\\x45\\xe5\\xc4\\x85\\xaf\\x98\\x73\\x18\\\r\n\\xa9\\x26\\xdd\\xd4\\x1d\\xf4\\x27\\x1e\\xce\\x51\\xcf\\x0d\\x38\\xa8\\xa8\\xce\\\r\n\\x27\\x31\\x92\\xb1\\xb3\\xdc\\x64\\x6f\\x0d\\xdc\\x58\\x92\\x77\\xd6\\xdd\\xaf\\\r\n\\xa1\\xc5\\x20\\xe6\\xcc\\x1a\\x54\\xcb\\x66\\xd8\\x90\\x6e\\x45\\x86\\x96\\xec\\\r\n\\x7d\\x70\\x4c\\x90\\x0e\\x61\\x1d\\x2d\\x7c\\xba\\x76\\x02\\xe0\\x69\\xaf\\xa6\\\r\n\\x23\\x76\\x66\\xcf\\x51\\x94\\x67\\x66\\x39\\x53\\x6b\\x90\\x5a\\xdd\\x8e\\x6d\\\r\n\\x35\\x37\\x1d\\xee\\x3b\\x61\\x11\\x1a\\xfa\\x65\\x6c\\xd9\\xc1\\x03\\x41\\x61\\\r\n\\xe1\\x06\\xc3\\xe5\\xef\\x7b\\xdf\\x0f\\xd0\\xe1\\x97\\x41\\x2d\\x92\\x4d\\x80\\\r\n\\xcc\\x34\\x8d\\xbf\\xea\\xbe\\x4f\\x53\\x6d\\x0e\\x14\\x12\\x35\\x1b\\xdc\\x1f\\\r\n\\xfd\\xe0\\xfd\\xb4\\xd3\\xeb\\x85\\x5c\\x96\\xd6\\xc7\\x63\\xa9\\xee\\x35\\xc7\\\r\n\\x11\\x98\\x81\\x04\\x2a\\xff\\x00\\x12\\xa2\\x65\\x41\\x97\\xb2\\x87\\xcf\\x2d\\\r\n\\x94\\x93\\xf0\\xc4\\x43\\x23\\x0b\\x93\\x66\\x27\\x52\\x71\\x12\\x2b\\x0b\\x6e\\\r\n\\x54\\x65\\xef\\x6f\\x5b\\xeb\\xf9\\x62\\xb1\\x25\\xa5\\xa8\\xab\\x31\\xbb\\xb0\\\r\n\\xa8\\x87\\xac\\x1f\\x0a\\x10\\xb6\\x57\\x5b\\x0d\\x45\\xb3\\x06\\x17\\xb9\\x3d\\\r\n\\xb4\\xc7\\xbd\\xc4\\xa2\\x0a\\x57\\x0f\\x95\\x72\\x39\\x26\\xd6\\x6e\\x5a\\x67\\\r\n\\x58\\xc0\\x6e\\xec\\xd6\\x02\\xe3\\xb0\\xfb\\xcf\\xc4\\x69\\x24\\x12\\xe5\\xa6\\\r\n\\xb5\\x4f\\x28\\xdf\\x99\\x94\\xaa\\x2a\\x83\\xe1\\x20\\xf5\\xb7\\xe1\\xf3\\x2f\\\r\n\\xf4\\xb5\\x4d\\x30\\x77\\xa3\\xa9\\x8c\\xe6\\x7f\\x89\\x14\\x8d\\x72\\x49\\x31\\\r\n\\x31\\x8c\\x5e\\xe3\\xb7\\x25\\xb4\\xd8\\x0b\\x6f\\x8a\\x6e\\x39\\x0a\\xd7\\x4b\\\r\n\\x45\\x1c\\x32\\x4c\\xf9\\xc7\\x32\\xa2\\xe3\\x90\\x83\\xf0\\x0f\\xc4\\x50\\x5e\\\r\n\\xf6\\xb0\\xbd\\xb5\\xd3\\x14\\x2c\\xed\\x56\\x88\\x92\\x34\\x71\\x8b\\x4c\\xc4\\\r\n\\x9c\\xab\\x96\\x25\\x3c\\xc5\\x1f\\x5d\\x2d\\x88\\xa7\\x48\\xd8\\x05\\x93\\xe3\\\r\n\\x54\\x38\\x2e\\xc4\\x9b\\x10\\x4b\\x24\\x76\\xd0\\x9f\\x17\\x7b\\x7e\\x62\\xd8\\\r\n\\x92\\xba\\xba\\x33\\xce\\x39\\x26\\xa6\\x67\\x92\\x3b\\x8b\\xfc\\x27\\x8d\\xca\\\r\n\\x36\\x6d\\x05\\xd6\\xe3\\x46\\xb7\\xae\\xab\\x8a\\xe8\\xfe\\x24\\x95\\x29\\x99\\\r\n\\xe3\\x37\\x25\\xee\\xb7\\x47\\x1b\\x66\\x5c\\xdb\\x30\\xbe\\xb6\\xca\\x40\\xfc\\\r\n\\xa9\\x66\\x52\\x39\\x86\\xc0\\x05\\x36\\x94\\xe8\\xa5\\xc0\\x1d\\x3e\\x5f\\x50\\\r\n\\x0e\\x24\\xe1\\xf1\\xf1\\xae\\x18\\xd6\\x74\\x47\\xc9\\x22\\xc7\\x26\\xc3\\x9c\\\r\n\\x01\\x28\\xc3\\x5f\\x06\\x7b\\x2b\\x02\\x2c\\xb6\\xdf\\x53\\x6e\\x1b\\xc4\\x67\\\r\n\\x34\\x83\\xde\\x14\\x43\\x5d\\xc3\\xe7\\x96\\x8e\\xab\\x2a\\xd8\\xbc\\x64\\xb1\\\r\n\\x8a\\x45\\x4e\\xd9\\xec\\x51\\xaf\\x7b\\x15\\xbf\\x7c\\x49\\x52\\x62\\xad\\x79\\\r\n\\xf5\\x0b\\x26\\x42\\x56\\xf7\\x19\\xc0\\xbd\\xfe\\xfb\\x7d\\x3b\\x5f\\x14\\x7c\\\r\n\\x43\\x9c\\xc5\\x09\\x17\\xb8\\x07\\xcb\\x5b\\x9e\\xde\\x47\\x6e\\xfb\\x63\\x86\\\r\n\\xce\\x45\\xe3\\xcd\\x72\\xa7\\x4b\\xeb\\xe8\\x0e\\xb7\\xde\\xff\\x00\\xde\\x98\\\r\n\\xae\\x25\\xd2\\x45\\x02\\xc4\\x82\\xc5\\x86\\xa5\\x55\\x54\\xe7\\x20\\x0d\\x41\\\r\n\\xb6\\x83\\xfd\\xf1\\xc2\\x99\\xa8\\x38\\xc5\\x55\\x01\\x6b\\xc3\\x2c\\x71\\x54\\\r\n\\xd2\\x5f\\xbd\\x3c\\xc3\\x2b\\x21\\xd8\\x74\\x4d\\xa7\\xfd\\x47\\x6c\\x4f\\x19\\\r\n\\x91\\xea\\x39\\x05\\x4c\\x34\\xf2\\x73\\x96\\xd7\\x21\\xe7\\x43\\xd6\\x88\\x74\\\r\n\\x1c\\xb0\\x2e\\x92\\x11\\x7b\\xbe\\xc4\\xe5\\x37\\x87\\x97\\x2b\\x4c\\x75\\x30\\\r\n\\x4b\\x20\\x91\\xd4\\x7f\\x94\\x2a\\x5b\\x5b\\x8c\\xbe\\x97\\xdb\\x63\\x82\\x63\\\r\n\\xa6\\x8e\\x2b\\xae\\x74\\xbe\\x81\\xba\\x73\\x2f\\x7b\\x7a\\x91\\x6b\\x5f\\x7c\\\r\n\\x09\\x39\\xe8\\x6f\\x95\\x91\\x61\\x01\\x18\\x5a\\xd6\\x56\\x22\\x36\\x8c\\xed\\\r\n\\xa0\\xc8\\xbe\\x10\\x7c\\xc6\\xd8\\x0c\\xc8\\x43\\xf8\\xc5\\xe6\\xbd\\x87\\x51\\\r\n\\xb5\\x9a\\xdf\\x75\\x0f\\xda\\xf7\\x07\\x1c\\xe8\\x67\\xe3\\x9c\\x41\\x10\\x29\\\r\n\\xe7\\xc1\\x45\\x4e\\x35\\xd1\\x55\\x96\\x70\\xc5\\x85\\xb7\\xbc\\xd6\\x65\\x1f\\\r\n\\x99\\xbe\\x28\\x24\\xcd\\x4e\\x8a\\x23\\x0b\\x2b\\x45\\x1a\\xcc\\xcd\\x71\\xf1\\\r\n\\x23\\x3c\\xa9\\x0b\\x6b\\xa3\\x2c\\x8a\\xca\\x33\\x66\\xb8\\xfb\\xe2\\x32\\x23\\\r\n\\xfd\\xab\\x4a\\x02\\xc7\\x2b\\x52\\x96\\x27\\x4b\\xcf\\x11\\x0e\\x11\\xd7\\x6f\\\r\n\\x86\\xb2\\x33\\xa3\\x80\\x4d\\x99\\x56\\xe3\\x50\\x31\\x05\\x1b\\x0e\\x18\\xf2\\\r\n\\xc4\\x3f\\xc5\\xd0\\x54\\x7b\\xcc\\x4c\\x3e\\x7e\\x84\\x32\\x2b\\x13\\x6b\\xe6\\\r\n\\x51\\xdf\\xc8\\x58\\x79\\xd4\\x2b\\xd5\\x41\\x0f\\x10\\xa3\\x0a\\xca\\x01\\x32\\\r\n\\xc7\\x1e\\xb2\\xe5\\x65\\xb3\\xff\\x00\\xd2\\x0d\\xd7\\x21\\xb9\\x23\\xd7\\x11\\\r\n\\x43\\x4e\\x1d\\x27\\x85\\x73\\xc8\\x92\\x7b\\xc6\\x52\\xa3\\x56\\xd2\\x41\\x97\\\r\n\\xf0\\xec\\x6e\\xa0\\xf7\\x3b\\x63\\x89\\x46\\xf9\\xe9\\x67\\x55\\xe8\\xe7\\xba\\\r\n\\xc8\\xa0\\xda\\x45\\xe6\\x47\\x9c\\x1c\\xcb\\xa8\\x37\\x54\\xdf\\xcf\\x6c\\x4e\\\r\n\\x1d\\xef\\x24\\x45\\xc8\\x0a\\x0e\\x5b\\xf7\\x56\\xcc\\x33\\x6d\\x72\\x34\\xb9\\\r\n\\xb5\\xf0\\x38\\x84\\xf6\\x17\\x46\\xbd\\x85\\xec\\x14\\x8b\\xf7\\xb5\\xf5\\xb7\\\r\n\\x95\\xf1\\x49\\x4c\\xed\\x57\\x4f\\x24\\xc8\\xd1\\xd3\\xd0\\x47\\xee\\xd4\\x50\\\r\n\\xb0\\xcd\\x91\\x40\\x5c\\xd3\\xc8\\xaa\\xa4\\x06\\x93\\x21\\xbb\\xdb\\xaa\\xe2\\\r\n\\xe4\\x32\\xe3\\xf6\\x8c\\x45\\x97\\x29\\x32\\x34\\x5a\\x72\\xb6\\xcc\\xc7\\xba\\\r\n\\x8d\\xf7\\xd3\\xec\\x30\\x1d\\xdb\\x37\\xc2\\x09\\xcc\\x37\\x6e\\x6b\\x5f\\xf2\\\r\n\\x55\\xb5\\xfe\\x84\\x8d\\xf7\\xc4\\xd2\\x27\\x3d\\x92\\x63\\xcc\\x11\\xc4\\x0e\\\r\n\\xb6\\xca\\x18\\x6b\\x97\\x2d\\xb4\\xbd\\xbc\\xcf\\xd7\\x61\\x88\\xa9\\xee\\x73\\\r\n\\x4c\\x97\\x69\\xe4\\x39\\x4f\\x70\\x2e\\xd7\\xed\\xd3\\x73\\x7f\\xb0\\x16\\xf5\\\r\n\\x8b\\x83\\xdd\\xf4\\x7c\\xab\\x9a\\xe4\\x30\\xda\\xfe\\xb8\\x31\\xc7\\x4e\\x04\\\r\n\\x34\\x71\\xc7\\x23\\x9b\\xe6\\x9a\\x57\\x06\\xc7\\x2e\\x9a\\x0b\\x9d\\xfd\\x3e\\\r\n\\x9e\\xbc\\x6e\\x9a\\xad\\x23\\x40\\x95\\x77\\x92\\x56\\x25\\xf3\\x1b\\x01\\xff\\\r\n\\x00\\xe3\\x4f\\x97\\xd3\\x73\\x85\\xe1\\x26\\x22\\x8c\\x59\\xa7\\xce\\x2e\\xc0\\\r\n\\xed\\x73\\xa9\\x00\\x5f\\xb9\\xf3\\xc1\\x95\\x62\\x73\\x00\\x89\\x42\\x85\\x1a\\\r\n\\xda\\xde\\x43\\x53\\xdf\\x1d\\x01\\x59\\xb5\\x52\\xed\\x6b\\xdf\\x4b\\x77\\xed\\\r\n\\xe7\\x6d\\xf1\\xc1\\x69\\xe6\\x60\\x64\\x48\\x4b\\x80\\x7c\\x23\\x4d\\x0f\\x7d\\\r\n\\x7f\\x3f\\xbe\\x1a\\x59\\x50\\x59\\x21\\x4e\\x90\\x17\\xa9\\xed\\x6b\\x7d\\xbc\\\r\n\\xfd\\x71\\x0b\\x4b\\x22\\xb6\\x74\\x11\\xbf\\x84\\x65\\x6c\\xd7\\xbd\\x89\\xb1\\\r\n\\xff\\x00\\x2f\\xdb\\x1e\\xf0\\x22\\x82\\x49\\x52\\xdc\\xd8\\xd1\\x98\\x6f\\xa3\\\r\n\\x05\\x37\\x1a\\x5c\\xff\\x00\\xbe\\x29\\x50\\x56\\xd4\\xe7\\x61\\x79\\x24\\x76\\\r\n\\x66\\x73\\xbe\\x66\\x6b\\xea\\x4f\\x8a\\xc2\\xc2\\xfb\\xe1\\xd5\\x92\\x2e\\x54\\\r\n\\x57\\xf9\\x45\\xce\\x9f\\xae\\x53\\xbf\\xa0\\xc7\\x0c\\x81\\x9d\\xdb\\x4e\\x95\\\r\n\\x4d\\xff\\x00\\x88\\xfe\\x1b\\x76\\x1b\\x6a\\x37\\xc5\\x4b\\x49\\x6e\\x59\\x36\\\r\n\\xd0\\x8b\\x5c\\x78\\x74\\xef\\x6f\\xe4\\x3e\\xf8\\x8a\\x12\\xfe\\x2b\\x04\\x46\\\r\n\\x05\\x02\\xda\\xfd\\xda\\xe4\\x9b\\x6f\\x88\\xb9\\x64\\xb0\\xb7\\x4d\\xb4\\xd0\\\r\n\\x79\\xdf\\xfd\\x30\\xd4\\xb1\\xcd\\x13\\x2e\\x7c\\xa4\\x8d\\x37\\xf3\\xd2\\xc4\\\r\n\\xdf\\x5d\\x3b\\xfd\\x75\\xdb\\x14\\x41\\x64\\x5e\\xbb\\x09\\x10\\xda\\x5b\\x1b\\\r\n\\x85\\x6b\\xd8\\xda\\xfa\\xeb\\xba\\x9f\\x22\\x31\\x5b\\x01\\x85\\x03\\xea\\x50\\\r\n\\xdd\\x47\\x9d\\xd6\\xd7\\xfe\\xfd\\x71\\x46\\x45\\x5f\\x10\\x76\\xff\\x00\\xe9\\\r\n\\x63\\x10\\xa0\\x1a\\xfc\\x59\\x72\\xcb\\x2d\\xf4\\xb7\\x4a\\xac\\x4a\\x75\\xdc\\\r\n\\xe2\\x8a\\x18\\xee\\xc1\\x87\\x59\\xca\\xa3\\xb6\\x62\\xda\\xfe\\x96\\x36\\x1b\\\r\n\\x9d\\x46\\xf8\\xe2\\x94\\xe1\\x65\\xb6\\x45\\xf0\\xd9\\xb3\\x79\\x11\\xf4\\x07\\\r\n\\xbf\\x9e\\x38\\x95\\x28\\x83\\x89\\xd4\\x85\\x1f\\x0c\\x94\\xb7\\x55\\xae\\x42\\\r\n\\x9e\\xb3\\x9a\\xe2\\xfa\\xda\\xe2\\xda\\x0f\\x3c\\x38\\x55\\x01\\x6c\\x24\\x25\\\r\n\\xd5\\x2e\\x8c\\x1a\\xe0\\x0c\\xc4\\x13\\xe7\\xa5\\x89\\xf2\\x24\\x6f\\x6c\\x54\\\r\n\\x22\\xd2\\xf0\\x68\\x58\\xa8\\x0d\\x35\\x44\\x91\\xa4\\x9d\\xd1\\xea\\x1e\\x5c\\\r\n\\x86\\xdf\\x35\\xf5\\xfa\\x5f\\x5b\\x0c\\x37\\x0b\\xa3\\xa2\\xe1\\xf2\\x54\\x98\\\r\n\\xc0\\x98\\xd3\\xb4\\x62\\x40\\x4f\\x49\\xd1\\xc3\\x1b\\x78\\x8b\\x14\\xb3\\x5f\\\r\n\\xce\\xd7\\xed\\x8a\\xa9\\x63\\x78\\xa1\\x64\\x22\\x3c\\xab\\x12\\x03\\x62\\x4b\\\r\n\\x2b\\x42\\x39\\x83\\xa7\\x7e\\x90\\x48\\xf5\\xf2\\xbd\\xb0\\xd4\\xe2\\x6e\\x44\\\r\n\\xe9\\x61\\x92\\x3b\\xaf\\x63\\x93\\xc7\\x91\\x87\\x98\\x3d\\xf5\\xb8\\xf5\\xc5\\\r\n\\xd6\\x48\\x52\\xa6\\x34\\xf8\\x72\\x8f\\x8b\\x16\\x9a\\x3e\\xd2\\x15\\xbf\\xe6\\\r\n\\x74\\xd7\\xb0\\xdf\\x1c\\x7a\\x1e\\x45\\x39\\x96\\x23\\x68\\xd9\\xc2\\xe5\\x4b\\\r\n\\xb0\\x20\\xfe\\x01\\xbf\\x90\\x65\\xd7\\xd3\\x4c\\x49\\xff\\x00\\x94\\x8d\\x36\\\r\n\\xbf\\x5a\\xae\\x9e\\x23\\xe8\\x36\\xb8\\x18\\xe0\\x0a\\xc7\\x86\\x55\\x44\\x8e\\\r\n\\x79\\xcb\\x53\\x9d\\x2f\\x76\\x1c\\xbd\\x4b\\xa8\\x6d\\xb3\\x17\\x3d\\x47\\x5d\\\r\n\\x97\\x5b\\x62\\x6a\\x5a\\x57\\x92\\xa2\\x46\\x55\\x13\\x3f\\x4b\\xdb\\xce\\xe1\\\r\n\\xb5\\x02\\xda\\xde\\xc7\\x5d\\xf1\\x5d\\x4c\\xd6\\x93\\x20\\x2d\\x6e\\xa0\\x17\\\r\n\\xf2\\xfc\\xb5\\xbe\\x38\\x7b\\x18\\xa7\\x05\\xae\\x33\\x6f\\xe9\\xb0\\xfd\\x7f\\\r\n\\xd3\\x14\\x0e\\xe8\\xcb\\x3e\\x96\\x4b\\x07\\x1a\\xdf\\x97\\xfe\\xc7\\xed\\xa6\\\r\n\\x29\\x26\\x12\\x4d\\x53\\x2b\\xa0\\xc9\\x23\\x98\\x23\\x60\\x6f\\x9a\\x18\\xc0\\\r\n\\x52\\xff\\x00\\x47\\x7c\\xdb\\x76\\xb6\\x83\\xbf\\x1c\\x54\\xa6\\xfd\\x9b\\x5a\\\r\n\\x64\\x78\\xbd\\xd2\\xa2\\x4e\\x1b\\x52\\xca\\xb7\\x26\\x0a\\xa6\\x09\\x0b\\x12\\\r\n\\x0d\\x91\\x51\\xf2\\x59\\xc9\\xd0\\xec\\x0e\\xa3\\x10\\x48\\xab\\x0a\\x15\\x45\\\r\n\\x54\\x89\\x79\\x72\\x03\\xf8\\x4d\\xed\\x97\\xf3\\xb9\\xf3\\x3b\\xeb\\x88\\x80\\\r\n\\xa3\\xa9\\x95\\x65\\xd1\\x18\\x73\\x53\\x29\\xdb\\x9b\\xf2\\x79\\xf8\\xee\\x17\\\r\n\\xbb\\x1b\\xda\\xf8\\xe2\\x0b\\xc4\\xe7\\x27\\x27\\x2a\\x0a\\x68\\xd5\\x08\\xb0\\\r\n\\x33\\x54\\x8f\\xc6\\xce\\xa4\\x72\\xd4\\x5a\\xd6\\x1a\\x91\\x72\\x6f\\xa0\\xc5\\\r\n\\x0c\\xf1\\xd0\\x73\\x0d\\x4c\\xed\\xee\\xd0\\x40\\xae\\x79\\x97\\x6e\\x92\\xe4\\\r\n\\x58\\x2a\\x06\\x2a\\x01\\xf2\\x16\\x1f\\x4c\\x53\\x71\\x34\\xad\\xaa\\xe5\\xc7\\\r\n\\x18\\x8f\\xab\\x34\\x05\\x5d\\x8f\\x36\\x36\\x0d\\x70\\xe5\\xc6\\x8e\\x0d\\x8d\\\r\n\\x80\\xb6\\x42\\x75\\xb8\\xc5\\x08\\xa6\\x93\\x8d\\x56\\x34\\x12\\x45\\x25\\x3f\\\r\n\\x3e\\x08\\xe4\\xa9\\xd5\\xb2\\x34\\x31\\x28\\x68\\xe1\\xcb\\x65\\xd6\\x56\\x21\\\r\n\\xe4\\x62\\x46\\x96\\x55\\xef\\x84\\x12\\xd3\\x54\\x71\\x8b\\x01\\x2c\\x74\\xbc\\\r\n\\x42\\x75\\x92\\x9e\\xdd\\x66\\x96\\xa9\\x52\\xad\\x72\\xbd\\xed\\x71\\xcf\\x62\\\r\n\\x3a\\x77\\x16\\x06\\xf8\\x96\\x45\\xaf\\xa5\\x13\\xd3\\x3f\\xf8\\x8a\\x70\\xfc\\\r\n\\xa3\\xaa\\xbc\\xf4\\xcc\\x00\\xa8\\xa5\\x94\\x5f\\x7b\\x01\\xa1\\xbe\\x59\\x15\\\r\n\\x5d\\x7b\\xe3\\x83\\xc9\\x11\\x59\\x1d\\x0e\\x78\\xdc\\x42\\xde\\x96\\x21\\xd4\\\r\n\\x82\\x3c\\xc1\\x5b\\x1c\\x43\\x10\\xe1\\xf5\\xf3\\x51\\xa1\\xc9\\x05\\x57\\xf8\\\r\n\\x8a\\x46\\x37\\xd3\\x31\\xcc\\xf1\\x0e\\xfa\\x76\\xb5\\xac\\x00\\xf3\\x18\\xa8\\\r\n\\x69\\x21\\xac\\x31\\x21\\xcb\\xca\\x39\\x82\\x81\\xe2\\xce\\x03\\x6b\\x6e\\xea\\\r\n\\xaf\\x7d\\x4e\\xbd\\xb1\\x14\\xee\\x62\\x47\\x31\\xe7\\x49\\x26\\x29\\x3e\\x4b\\\r\n\\xbc\\x91\\x9c\\xd7\\x49\\xec\\x01\\x2c\\x77\\xcc\\x01\\x19\\x50\\x07\\xf9\\x4d\\\r\n\\xe2\\xf7\\x25\\xf7\\xea\\x89\\x9d\\x98\\x52\\xb1\\xbc\\x71\\xe8\\x1c\\x95\\x00\\\r\n\\xdc\\x8f\\x2c\\xcb\\x70\\xa6\\xdb\\x8b\\xe9\\x84\\xe2\\x5d\\x2b\\x92\\x91\\x32\\\r\n\\x65\\x19\\x7f\\xcb\\x6e\\x9f\\x97\\xcb\\x0b\\x3d\\x2c\\xa9\\xc9\\x81\\x52\\x46\\\r\n\\x74\\x42\\xf5\\x3c\\xb5\\x56\\x93\\x38\\x2c\\x02\\x05\\xdb\\x5e\\xe4\\x69\\x7b\\\r\n\\x6f\\x8a\\x2e\\x14\\x39\\xa6\\x62\\x24\\xcc\\x23\\x45\\x0a\\x6d\\x97\\x38\\x62\\\r\n\\x6f\\x97\\x20\\x37\\x0a\\x3c\\x57\\x3a\\x01\\xa5\\xee\\x58\\xf2\\xa2\\x8c\\xc9\\\r\n\\x51\\x24\\x30\\x58\\x1c\\xdc\\xc7\\x45\\xb7\\x7d\\x4d\\xfc\\xb5\\xdb\\x4e\\xfb\\\r\n\\x62\\xa2\\x4e\\x12\\xd5\\x52\\x27\\xbe\\x34\\xb2\\x48\\x55\\x99\\x21\\xea\\x1b\\\r\n\\x5d\\x40\\x62\\x34\\x07\\x4f\\xe5\\x89\\x66\\x89\\x05\\xd6\\x32\\x74\\xe9\\xb9\\\r\n\\xd4\\x5b\\xc3\\xa0\\xfd\\x4e\\x19\\x9a\\x68\\xf3\\xca\\xf9\\x63\\x5d\\x48\\x43\\\r\n\\x96\\xf6\\xed\\x6b\\x12\\x6c\\x77\\xb1\\x03\\x4b\\x62\\x82\\x92\\x18\\xf2\\xb2\\\r\n\\xab\\x06\\x92\\xcc\\xb9\\xdb\\xac\\xe9\\xbb\\x58\\x6d\\x76\\xda\\xf6\\x3f\\x6c\\\r\n\\x71\\xc8\\x60\\x5a\\x95\\x0e\\x40\\x67\\xb1\\xdf\\xb8\\xb0\\x16\\xbf\\xf2\\x1e\\\r\n\\xb8\\xa0\\xe1\\x71\\x4f\\x4e\\x1f\\x2d\\xdb\\xf5\\xfe\\xc6\\x38\\xe5\\x0f\\xba\\\r\n\\xcf\\x98\\x75\\x17\\x36\\xb1\\xec\\x07\\x6e\\xfa\\x7d\\xb1\\x4d\\x43\\xcc\\xe4\\\r\n\\xa3\\x9e\\xe0\\xe5\\xb9\\x25\\x8b\\x6b\\xb9\\x3f\\xcb\\x1c\\x22\\x9c\\x41\\xf0\\\r\n\\xb5\\xb3\\x6d\\x6d\\xbc\\x27\\x0c\\x17\\x3b\\x68\\x33\\x66\\x36\\xd0\\x5b\\xcb\\\r\n\\xfd\\x4e\\x2a\\xe6\\x4a\\x53\\x76\\x70\\xa1\\x63\\x32\\x37\\xa9\\xb8\\x5d\\xb5\\\r\n\\xd2\\xdb\\x62\\xb7\\xda\\x9e\\x1d\\x4b\\xcd\\xe5\\xc7\\x24\\x92\\x4a\\x97\\x58\\\r\n\\xfc\\x2a\\xef\\x62\\x2d\\x63\\xad\\xb3\\x6e\\x40\\xdf\\x5c\\x7b\\x35\\x14\\xd2\\\r\n\\xde\\xa2\\xa2\\x36\\x8c\\x35\\xde\\x38\\xed\\x6b\\x82\\xdb\\x83\\xf8\\x57\\x6d\\\r\n\\x75\\xf2\\x16\\xc4\\xe7\\x55\\x4f\\x41\\x7f\\x50\\x6d\\xa7\\x98\\xb6\\x38\\x70\\\r\n\\x7e\\x54\\x8f\\x7d\\xce\\xa0\\x7e\\x1b\\xd8\\x65\\xfa\\x68\\x7b\\xeb\\xae\\x97\\\r\n\\xd1\\xc9\\x3f\\x6f\\x32\\x36\\xbd\\xbc\\xce\\x9d\\xfc\\xb1\\x1a\\xe6\\x42\\x05\\\r\n\\xb3\\x7e\\x5a\\xff\\x00\\x7d\\xc6\\xc3\\x08\\xa5\\x74\\x37\\xef\\xaf\\x99\\x23\\\r\n\\x4b\\x79\\xdb\\xcf\\xcf\\x03\\x5b\\x2e\\x83\\x6b\\xf6\\xb0\\xbe\\x22\\x7e\\x54\\\r\n\\xe5\\xd8\\xb1\\x8e\\x6e\\x86\\xdc\\x7c\\x45\\xb9\\x8c\\xf9\\x6a\\x83\\x29\\x3b\\\r\n\\x74\\xa6\\xe7\\x15\\x55\\x5c\\xd1\\x90\\xea\\x17\\x35\\xbb\\xf6\\xff\\x00\\x51\\\r\n\\x88\\x0b\\x41\\x7a\\x8d\\x39\\x89\\x53\\x3b\\x4c\\x12\\xed\\x9a\\x17\\x6b\\x17\\\r\n\\x3a\\xdc\\xb2\\x85\\x0e\\x9d\\x88\\x42\\xaa\\x35\\x27\\x14\\xc3\\x9d\\x1a\\x4d\\\r\n\\x0b\\xe6\\x29\\xe3\\x36\\x16\\xb5\\xc9\\x5e\\xc3\\xf1\\x6f\\x6f\\xa1\\x38\\xe2\\\r\n\\x84\\xca\\xcb\\x97\\xc8\\x03\\xfe\\x61\\x7b\\xfe\\x80\\x7f\\x62\\xd8\\xaf\\x74\\\r\n\\x1c\\x68\\x97\\x4d\\x20\\xaa\\xa6\\x85\\xc9\\x00\\xdc\\x4f\\x0c\\xa0\\x13\\xda\\\r\n\\xc5\\x87\\xd3\\xbe\\x3d\\xa7\\xa4\\x48\\x9a\\x98\\xd3\\xc1\\x1c\\x01\\xc3\\x5c\\\r\n\\xc0\\x04\\x66\\x46\\x5c\\x9d\\x4e\\x56\\xc0\\x65\\xd2\\xdb\\x96\\xcc\\x49\\x1d\\\r\n\\xb1\\x05\\x29\\xa9\\xe1\\x14\\x2b\\x6f\\x78\\x96\\x2a\\xd5\\x75\\x5d\\x8c\\x4c\\\r\n\\xa6\\xdd\\x44\\xe9\\x65\\x57\\xcf\\x7e\\xca\\xfe\\x1b\\xef\\x3f\\x0e\\x7a\\xca\\\r\n\\x49\\xe9\\x86\\x53\\x78\\xce\\x87\\x6c\\xd9\\x4f\\xd7\\x4b\\x9f\\xf6\\xd7\\x15\\\r\n\\x94\\x35\\xe9\\x02\\x05\\x87\\x38\\x86\\x1b\\x13\\x1f\\x56\\x79\\x34\\x8c\\x0d\\\r\n\\xc1\\xf0\\x2f\\xe4\\xd8\\xe1\\xb2\\xcf\\xca\\xe5\\x4e\\x85\\x1c\\x37\\x7d\\x0e\\\r\n\\xde\\x1b\\x1c\\xdf\\x5b\\x7e\\x2f\\x5c\\x51\\x53\\x04\\xa4\\xe5\\x16\\x06\\xe4\\\r\n\\x48\\x1e\\xd7\\xb9\\xca\\x2e\\x53\\xab\\x6d\\x6d\\xad\\xbf\\xa6\\x38\\xdb\\x2b\\\r\n\\x48\\xa8\\x4a\\xf2\\x91\\xc6\\x55\\x52\\x41\\x67\\xca\\x73\\x49\\x96\\xd6\\x23\\\r\n\\x65\\x16\\x3e\\x2c\\xdd\\xf4\\xc7\\x14\\xcc\\x60\\x95\\xa1\\x6d\\xa3\\x39\\x53\\\r\n\\xf0\\x00\\x00\\x16\\xfe\\x7f\\xae\\x22\\xf6\\x8e\\xb3\\x82\\x52\\x2c\\x90\\x45\\\r\n\\xef\\xc7\\x3a\\xc3\\x22\\x49\\xcc\\x40\\x99\\x8d\\xd9\\x89\\x51\\xab\\x38\\xf0\\\r\n\\xea\\x74\\xb9\\x3a\\x0d\\x68\\xeb\\xc5\\x4e\\x69\\xb2\\x94\\xf7\\x80\\xb2\\xba\\\r\n\\x96\\xcd\\x67\\x7b\\x06\\x0a\\x40\\x1d\\x2b\\x6b\\x0d\\x36\\xc4\\xb7\\xe6\\x94\\\r\n\\xed\\xfe\\xfa\\xdb\\xeb\\xb5\\xf0\\x69\\x51\\xa4\\x26\\xc5\\x49\\xf5\\xbd\\xf4\\\r\n\\xfb\\x5e\\xfb\\xe2\\x92\\xd0\\x52\\xfb\\xe6\\xae\\x91\\xc6\\xfc\\xe8\\xee\\x45\\\r\n\\xc0\\x04\\x37\\xd6\\xd8\\xe1\\xf2\\xcb\\x18\\x86\\x09\\xa3\\x08\\xc2\\x28\\xe4\\\r\n\\x8e\\xc2\\xd9\\x92\\x68\\xd5\\x8a\\x15\\xd3\\xaa\\x37\\xba\\xbe\\x97\\xee\\x6d\\\r\n\\x8e\\x37\\x4d\\x1d\\x57\\x0f\\xe2\\x54\\x24\\x02\\xd5\\xb4\\x85\\xe2\\x00\\x81\\\r\n\\xfe\\x22\\x3b\\x14\\xca\\x7b\\x15\\x70\\x8d\\xdb\\x2d\\xaf\\x7c\\x70\\xaa\\xe8\\\r\n\\xe5\\xe1\\xb4\\xb2\\xd4\\xd4\\x45\\x1b\\x4d\\x4c\\xbc\\xd4\\x66\\x61\\x69\\xa3\\\r\n\\x4f\\x8c\\xa4\\xf2\\xf2\\x5d\\x26\\x57\\x1b\\xeb\\x94\\x5b\\xb5\\xa8\\xe4\\x35\\\r\n\\xb9\\x2a\\x9d\\x58\\x84\\x01\\x61\\x19\\x74\\xc9\\x63\\x69\\x1d\\x8e\\x8c\\xed\\\r\n\\x6e\\x90\\x1a\\xe8\\x37\\xd4\\x8c\\x4f\\x53\\x04\\x8a\\xfc\\xb9\\x11\\xcf\\x54\\\r\n\\x5a\\x36\\x53\\x7b\\x58\\x8f\\x52\\xa7\\x4d\\xb6\\xef\\x88\\x20\\xe6\\xd7\\x49\\\r\n\\x4c\\xc1\\x5a\\x39\\x68\\xe7\\x85\\xee\\x45\\x82\\x36\\x57\\x1d\\xf7\\xb3\\x2d\\\r\n\\xb7\\xb7\\x91\\xdb\\x15\\xb4\\x75\\x1c\\x1e\\xa2\\x38\\xc4\\xcb\\x95\\xc0\\x9a\\\r\n\\x95\\x83\\x80\\x40\\x3a\\x22\\xca\\x05\\xac\\x8e\\x34\\x07\\xec\\x18\\x35\\xb1\\\r\n\\xc2\\x64\\xa3\\xe5\\xcd\\x2c\\x31\\xac\\x41\\x99\\x56\\x4a\\x35\\xd0\\x42\\x63\\\r\n\\xa7\\x86\\x25\\x51\\x7b\\xe8\\xcf\\x1b\\x3a\\xb1\\xb9\\xb3\\x8b\\x92\\xd7\\x24\\\r\n\\x11\\x0f\\xb4\\xd5\\x71\\x32\\xb1\\x8b\\x8a\\x70\\xaa\\x2a\\xab\\x5c\\x02\\x8f\\\r\n\\x4e\\xd2\\xd2\\xbe\\xe7\\x52\\xca\\x61\\xbd\\xbf\\x83\\xc9\\x71\\xc4\\x7d\\xe3\\\r\n\\x84\\xd5\\x09\\xa9\\xf2\\xfb\\xbc\\xb2\\xe7\\x91\\x6d\\xde\\xe0\\x48\\x3f\\x0a\\\r\n\\x83\\xa8\\xb8\\xff\\x00\\xd4\\x4c\\xd7\\x18\\xa4\\x9a\\x2a\\x5a\\xb1\\xcb\\x60\\\r\n\\xb4\\xfc\\x49\\x04\\xab\\xe4\\x92\\xf9\\x79\\x00\\xc4\\x9d\\x2f\\xa3\\x76\\xd3\\\r\n\\x15\\x40\\x54\\x59\\x41\\x11\\x54\\xd2\\xda\\xa2\\x39\\x64\\xe9\\x8f\\x4d\\x18\\\r\n\\x2b\\x1d\\x0f\\xf9\\x2f\\x73\\x6f\\x0e\\xf6\\x97\\x8b\\x56\\x1a\\xa9\\xea\\x20\\\r\n\\xe1\\xf4\\xd9\\x9d\\xa2\\x0d\\x35\\x5d\\x47\\x35\\x63\\xb4\\x41\\x0f\\xc2\\x86\\\r\n\\xca\\x2e\\xcb\\xbb\\x16\\x3b\\x2e\\xda\\x63\\x9b\\xc6\\xe7\\x92\\x08\\x5a\\xa6\\\r\n\\x14\\x86\\xa5\\x79\\x81\\xa2\\x89\\x0a\\x44\\xa2\\x37\\x60\\xca\\x0f\\x50\\x2c\\\r\n\\xdf\\x0b\\x2d\\xb4\\xce\\x2f\\xa5\\xf1\\x96\\x4a\\x67\\x31\\x55\\x54\\xd5\\x4d\\\r\n\\x13\\x37\\xf8\\x88\\xe3\\x71\\x11\\x65\\xcd\\x6b\\xd8\\x2e\\xa6\\xc7\\x38\\xfc\\\r\n\\x5a\\xdc\\xf5\\x5f\\x11\\xfb\\x33\\xc1\\x5e\\x34\\x61\\x59\\xc4\\x2c\\xc8\\xac\\\r\n\\x3e\\x22\\xec\\x40\\x23\\xfe\\x76\\x29\\x6b\\x55\\x2b\\x56\\x86\\x8e\\x9a\\x92\\\r\n\\x08\\xda\\x29\\x1d\\x0c\\x20\\x39\\xcf\\x15\\xfa\\x5c\\x6a\\xc1\\x85\\xb2\\xe5\\\r\n\\x3e\\x98\\xe2\\xdc\\x46\\xbe\\x8a\\x39\\x24\\xa8\\x59\\x29\\xe9\\x84\\x24\\x99\\\r\n\\x49\\x02\\x31\\x27\\x55\\xac\\xa0\\x8b\\x35\\xc6\\xcc\\x75\\x1d\\xf7\\xc3\\x71\\\r\n\\x0e\\x31\\xc6\\x6b\\x2a\\x29\\x15\\xcc\\x89\\x57\\x32\\x39\\x11\\x42\\x42\\x05\\\r\n\\x46\\x0c\\xaa\\x7a\\xad\\x1c\\x7d\\x01\\xb9\\x77\\xbe\\xe2\\xea\\x4e\\x21\\xa7\\\r\n\\x17\\x8d\\xb2\\xf2\\x0a\\x28\\x3f\\x0c\\xf5\\x36\\x50\\x01\\xcf\\xf5\\xf2\\x25\\\r\n\\xad\\xda\\xda\\x62\\x35\\xcc\\x4a\\x96\\xb9\\x36\\x19\\xaf\\x73\\xb7\\xf3\\xb9\\\r\n\\xd7\\x02\\x38\\xc4\\x89\\x06\\x8c\\x8a\\x6f\\x23\\x76\\x66\\x03\\xc2\\x45\\xb6\\\r\n\\xd8\\xfa\\xf7\\x18\\x59\\xca\\x4a\\x55\\x64\\x03\\x5e\\x9e\\xa3\\xd3\\x7b\\x0b\\\r\n\\x5f\\xb7\\xdb\\x1c\\x5e\\xa2\\x5c\\xe8\\xff\\x00\\xbd\\xc9\\x7b\\x92\\x6f\\xb1\\\r\n\\x3e\\x1d\\x6f\\xa6\\x38\\x07\\x12\\x53\\x4f\\x62\\xfa\\x90\\x2d\\xb6\\xde\\xbe\\\r\n\\xa7\\xbe\\x3d\\xa2\\x61\\x23\\x2b\\x0b\\x5c\\x31\\xf2\\x1a\\x7e\\x78\\x82\\x17\\\r\n\\x01\\x5f\\x5b\\xf8\\x96\\xc3\\xfd\\x3f\\x4e\\xde\\x58\\xe0\\xe4\\xe5\\x89\\x9b\\\r\n\\xbb\\x7e\\x7b\\x8d\\x3f\\x3c\\x1b\\x5d\\xbf\\xce\\xdf\\xff\\x00\\x56\\xc7\\xb5\\\r\n\\xfc\\x40\\x89\\xa9\\xe9\\xa8\\xf9\\x93\\x54\\xcc\\xc5\\x23\\x8a\\x25\\xcd\\x76\\\r\n\\xd0\\x12\\x7f\\xc8\\x48\\xdf\\x41\\x7b\\xfa\\xe3\\xd9\\xdf\\x65\\x63\\x5c\\xd5\\\r\n\\x3c\\x59\\x9a\\x6a\\xc0\\xd7\\x51\\x7e\\x98\\x4e\\xe2\\xe0\\x82\\x0b\\x7f\\x09\\\r\n\\xba\\x8c\\xb6\\xb6\\x21\\xa6\\x68\\x63\\xbb\\x66\\x71\\x73\\x91\\x8a\\x80\\x4f\\\r\n\\xa6\\x80\\x0f\\x4e\\x90\\xba\\x6b\\x7b\\xe1\\x98\\x17\\x76\\xb0\\x36\\x57\\x23\\\r\n\\x4d\\xf2\\xf9\\xeb\\xae\\xbe\\x5b\\xeb\\x8a\\x50\\x79\\x0b\\xd8\\xb2\\x2d\\xef\\\r\n\\xa7\\x6d\\x74\\xed\\x6d\\xcf\\xf5\\xc5\\xb2\\x8b\\x9e\\xe3\\xb5\\xcd\\xbf\\x4c\\\r\n\\x46\\xe1\\x58\\x9b\\x76\\xfa\\x68\\x74\\xdb\\xcf\\x5c\\x42\\xca\\x41\\xb8\\x04\\\r\n\\x2d\\xad\\x6d\\xc5\\xee\\x37\\xfb\\xf9\\xfe\\xb8\\xd1\\x5c\\x69\\xeb\\xfc\\xed\\\r\n\\x7c\\x1a\\x6e\\x6d\\x2b\\x93\\xd2\\x0a\\xd8\\x79\\xdc\\x1b\\x86\\x5f\\xa1\\x03\\\r\n\\x4f\\x30\\x34\\xef\\x8a\\x7c\\xce\\x58\\x15\\xbb\\x2b\\x15\\x6d\\x08\\xd4\\x1b\\\r\n\\x1f\\x5f\\xf6\\xc7\\x13\\xa1\\x9a\\x9a\\x38\\xeb\\x20\\xeb\\x2a\\x87\\x9b\\x1a\\\r\n\\x80\\xdc\\xd8\\xcf\\x5b\\x27\\x48\\xf1\\x2f\\x8a\\x36\\xf3\\xd0\\xde\\xf6\\xc7\\\r\n\\x0f\\xf6\\x86\\x3a\\x58\\xe4\\xa7\\x2e\\xc2\\x06\\xa7\\xe6\\xac\\xaa\\x8f\\x93\\\r\n\\xdd\\xc6\\x4e\\x86\\x36\\xb5\\xe9\\xf9\\x81\\x58\\x01\\x98\\x44\\x17\\x36\\x6c\\\r\n\\xb8\\x35\\x09\\x34\\x71\\xcb\\x0c\\x8a\\xea\\x49\\xea\\x56\\x0d\\xde\\xde\\xba\\\r\n\\x83\\xbf\\x95\\xed\\x8e\\x23\\xc3\\x29\\xab\\x16\\xba\\x4e\\x5a\\x09\\xa5\\x8e\\\r\n\\x09\\x15\\x96\\xe1\\xf9\\xf4\\xaa\\xcc\\x86\\xfd\\xb4\\xd3\\xd7\\x31\\x1a\\xe0\\\r\n\\x86\\xa9\\xa5\\x8a\\x61\\xca\\x70\\xd1\\x8b\\xa4\\xa8\\x1e\\xcc\\x34\\x6c\\xb7\\\r\n\\xbd\\xee\\x7b\\xee\\x31\\x44\\x52\\x38\\xa2\\x21\\x14\\x23\\xbc\\xae\\xa4\\x0d\\\r\n\\x00\\xb4\\x59\\xee\\x7b\\x78\\x76\\xf4\\xd3\\x1c\\x26\\xaa\\x26\\x87\\x56\\x17\\\r\n\\x91\\xa4\\xcc\\x7c\\xad\\x23\\x00\\x0f\\x95\\xd4\\x76\\xec\\x30\\x6a\\x23\\xb2\\\r\n\\xc6\\x08\\xcb\\xfe\\xbf\\xf6\\xc5\\x45\\x32\\x73\\x8b\\x05\\xb0\\xf1\\xaf\\x95\\\r\n\\xfb\\xff\\x00\\xb7\\xa8\\xc5\\x25\\x54\\x49\\x2c\\x30\\x92\\x73\\xc9\\x26\\x47\\\r\n\\xdf\\x2a\\x46\\xda\\x5c\\x9f\\x32\\x6c\\xa0\\x0f\\xbe\\x9b\\xd7\\x53\\x24\\x95\\\r\n\\x35\\x4f\\x75\\x31\\xd3\\x39\\x50\\x83\\x65\\x99\\xdb\\x41\\xa6\\xc1\\x6d\\xd4\\\r\n\\x31\\xc6\\x23\\xab\\xce\\x29\\xe1\\x52\\xa5\\xdf\\xac\\x8b\\xdb\\x27\\xe7\\x71\\\r\n\\xdb\\x6c\\x41\\xec\\xf9\\x30\\x49\\x13\\xce\\x23\\x9a\\x47\\xce\\xad\\x18\\x73\\\r\n\\x65\\xc9\\x61\\xcc\\xcd\\xe6\\x34\\xde\\xf6\\xfa\\x9b\\xad\\x17\\xba\\x11\\x1d\\\r\n\\x95\\x8a\\x69\\x99\\x34\\x04\\x6f\\x7b\\x5e\\xfd\\xf4\\xbf\\xae\\xa7\\x13\\xcb\\\r\n\\x99\\xee\\x37\\xf3\\xf4\\xfe\\xfd\\x30\\xd5\\x32\\x30\\xcf\\x65\\x36\\xb0\\xd7\\\r\n\\xa7\\x6d\\xb6\\xcd\\xbe\\xd8\\xfd\\xb3\\xc4\\x56\\x96\\x7a\\x58\\xe8\\xe0\\x68\\\r\n\\xe6\\xd2\\x4b\\xce\\x55\\x82\\x36\\x86\\xdf\\x0f\\x2d\\x98\\x65\\xbe\\x6e\\xc4\\\r\n\\x93\\x8f\\xfc\\x4f\\xc7\\x2e\\x9f\\xfc\\xa8\\xca\\xd0\\x93\\xc9\\x31\\xcf\\x09\\\r\n\\x75\\xb9\\x6b\\x8b\\x68\\x5d\\x4e\\x96\\x53\\xdc\\x5c\\x1d\\x80\\x83\\xda\\xae\\\r\n\\x23\\x52\\x79\\x1c\\x47\\x83\\x55\\x23\\x46\\x25\\x56\\x22\\x7a\\x34\\x76\\x57\\\r\n\\x4b\\x18\\xb4\\x95\\x39\\x72\\x36\\x99\\x5f\\x45\\x53\\x6b\\x83\\xda\\x1a\\x98\\\r\n\\x62\\x92\\x22\\xfe\\xcb\\x71\\x48\\xe1\\x85\\x1a\\x48\\x61\\x46\\x86\\xab\\x9a\\\r\n\\xae\\x57\\x3c\\xac\\xc9\\x2c\\x89\\x25\\xa4\\x93\\xe5\\xb5\\xef\\x77\\x2d\\x60\\\r\n\\x30\\x9e\\xd5\\x52\\x70\\xdb\\x2b\\xf0\\x4e\\x2d\\x42\\xb2\\xdc\\xa8\\x6a\\x16\\\r\n\\x8d\\x6e\\xa2\\xde\\x4a\\xba\\x7e\\x58\\x8f\\xdb\\x1e\\x15\\x3e\\x40\\xd4\\xd2\\\r\n\\xb1\\xb9\\xc9\\xf0\\xe1\\x89\\xf3\\x9e\\xc5\\x4c\\xc8\\x46\\xb7\\xf5\\xfa\\xe3\\\r\n\\xf6\\xbc\\x75\\x1c\\x42\\x8e\\x41\\x4d\\x52\\x90\\x22\\xb2\\x10\\xb4\\xc7\\x2a\\\r\n\\xf3\\x16\\xd6\\x2c\\x84\\xe7\\x0f\\x64\\xeb\\x63\\xd8\\x9f\\x53\\x05\\x57\\x0b\\\r\n\\x96\\x4e\\x31\\x3f\\x19\\x8c\\xa4\\xb5\\x0e\\xd0\\xd3\\xc2\\x60\\x94\\xb5\\x3d\\\r\n\\x25\\x30\\x29\\x0e\\x49\\x15\\x18\\x66\\x66\\xf8\\xa6\\xc4\\x75\\x1e\\xc2\\xe0\\\r\n\\x43\\x5e\\xf4\\x15\\x2d\\x35\\x3b\\x89\\xcc\\x44\\x86\\x1a\\x84\\xaa\\x82\\xfa\\\r\n\\x12\\x84\\x06\\xe7\\x2a\\x74\\xb5\\xfa\\x94\\xff\\x00\\x10\\xc7\\x10\\xe2\\xf4\\\r\n\\x35\\x1c\\x5b\\xd9\\xbe\\x21\\x49\\x20\\x75\\x9a\\x96\\xba\\x9a\\x75\\x57\\x56\\\r\n\\x96\\x12\\xe9\\x04\\xf1\\x09\\x92\\xe1\\x97\\x24\\x94\\xcc\\xba\\xad\\x89\\x6d\\\r\n\\x3c\\x58\\xac\\x82\\x1e\\x2b\\x42\\xdc\\xa2\\xae\\xe5\\x2e\\xb6\\xf9\\x25\\x5b\\\r\n\\x16\\x42\\x37\\xf8\\x8b\\xb5\\xf7\\x3a\\xf6\\x07\\x1c\\x3e\\xc0\\x35\\x1d\\x4a\\\r\n\\xbb\\x80\\xb2\\x18\\x1b\\xca\\xd6\\x2b\\xdb\\x75\\x23\\x6b\\x0e\\xfe\\x7a\\x93\\\r\n\\x53\\x1b\\xc4\\xb2\\x34\\x61\\x0a\\xf2\\xd1\\x5c\\x16\\x0e\\x8a\\x2f\\xc9\\x68\\\r\n\\xe4\\x27\\xae\\xd7\\x28\\xfe\\x60\\x1e\\x96\\x18\\xa6\\x8a\\x2a\\x89\\x2a\\xe2\\\r\n\\x84\\x11\\x04\\x88\\x92\\x49\\x9c\\x0c\\xd0\\x65\\xd1\\xd0\\x0d\\x2e\\x7f\\x09\\\r\n\\x1e\\x9a\\xad\\xce\\x05\\x34\\x9c\\xd9\\x19\\x43\\x2f\\xbb\\x41\\x96\\x1b\\x9d\\\r\n\\x64\\x8b\\x9b\\x9c\\xfe\\x20\\xad\\x91\\xd9\\x81\\x1d\\x2a\\x54\\x65\\x3d\\xb1\\\r\n\\xc6\\xc8\\x14\\xd4\\xd5\\x92\\x53\\x3b\\x24\\x8b\\x91\\xa4\\x44\\xeb\\x12\\x09\\\r\n\\x92\\x32\\xcf\\x92\\xed\\xca\\x62\\x19\\x91\\xcd\\xad\\x10\\xd6\\xd6\\xc0\\x92\\\r\n\\x84\\x01\\xfe\\x22\\x11\\xa6\\xde\\xf8\\x74\\xf4\\xfd\\xe6\\x28\\xd5\\x7d\\x9d\\\r\n\\xe2\\xf1\\x54\\x4b\\x69\\x69\\xea\\x0c\\xa9\\x34\\xe8\\x41\\x64\\xa8\\x99\\xf5\\\r\n\\x8e\\xc7\\x22\\x59\\x45\\x8b\\xc8\\xc4\\xb1\\x60\\xda\\x1d\\x08\\xe2\\x14\\x34\\\r\n\\x7c\\x6e\\x82\\x4a\\x49\\xce\\x68\\x2a\\x00\\x39\\xd7\\x74\\x23\\xa9\\x5d\\x3c\\\r\n\\x99\\x4e\\xa0\\xed\\xa5\\xaf\\x6b\\xe2\\x4a\\x4a\\x0e\\x0c\\x07\\x0d\\xa3\\x89\\\r\n\\xa6\\x9b\\x3e\\xf7\\xb1\\x04\\x00\\x0b\\x1e\\xda\\x8d\\xb6\\x0a\\x34\\x03\\x11\\\r\n\\x2b\\x5b\\x2c\\x8e\\x3a\\xd0\\xe8\\x02\\xf5\\x36\\xfa\\x79\\x0f\\x5d\\x76\\xb6\\\r\n\\x15\\x8c\\x19\\x9c\\x81\\xcc\\x6f\\xff\\x00\\x41\\xe6\\x3c\\xcf\\xd2\\xfb\\x6d\\\r\n\\x85\\x53\\x2c\\x19\\xa3\\x05\\xf5\\xb3\\x5b\\x76\\x20\\xda\\xe3\\xf3\\xde\\xdf\\\r\n\\xc8\\xe2\\x58\\x1e\\x21\\x67\\x43\\x76\\x3d\\x2d\\xe7\\xad\\xcf\\x6f\\x3b\\x77\\\r\n\\x1a\\x76\\xc5\\x52\\xa9\\xb2\\x49\\xad\\xc0\\xbe\\xfb\\xf9\\x8f\\xe7\\x8a\\x2f\\\r\n\\xf0\\xb7\\x78\\x9d\\xb2\\x7c\\xca\\x7e\\xb8\\xe2\\xb5\\x33\\x3d\\x5d\\x36\\xa7\\\r\n\\x97\\x24\\x91\\xa6\\x86\\xd6\\x04\\xaf\\x6c\\x41\\x49\\x08\\xa7\\x8c\\x5a\\xed\\\r\n\\xcb\\x17\\xb8\\xee\\x47\\xd3\\x14\\x51\\x0e\\x74\\x0a\\x0f\\xce\\x8a\\x3e\\xec\\\r\n\\x07\\xf7\\xdb\\x15\\x90\\xe6\\x92\\x68\\xf3\\x14\\x75\\x95\\xb2\\xb2\\x9b\\x10\\\r\n\\x43\\x6f\\xa6\\x9a\\xf7\\xf3\\xc5\\x4c\\x86\\x82\\xa8\\x56\\x4b\\x0a\\xb4\\xa9\\\r\n\\xa5\\x40\\xca\\x2d\\x24\\x67\\xa5\\x6a\\x20\\x36\\x36\\x64\\xde\\x45\\x1a\\xdb\\\r\n\\x4d\\x8e\\x28\\xc4\\xb2\\xc8\\xd5\\x0b\\x24\\x4c\\x93\\xa4\\x52\\x2f\\x24\\x69\\\r\n\\x6b\\x76\\x2c\\x35\\xbd\\xc6\\xf9\\x7f\\xca\\x2d\\x86\\x53\\xd5\\x6f\\x04\\x63\\\r\n\\xad\\xb5\\xbd\\xcf\\x65\\xda\\xfe\\x58\\x58\\x51\\xd7\\x45\\xbe\\xa6\\xdd\\xaf\\\r\n\\x63\\xf9\\xda\\xe3\\x6b\\xeb\\x7c\\x06\\xb7\\x48\\xd0\\x00\\xa0\\x5b\\xfb\\xf2\\\r\n\\x18\\x3a\\x8b\\x6f\\x71\\xe4\\x37\\xfa\\xef\\x85\\x19\\x6e\\x18\\x76\\xb6\\xbb\\\r\n\\xdc\\x7d\\x3d\\x71\\x11\\xca\\xb7\\xb1\\x37\\x26\\xc0\\x5f\\xd3\\xb6\\x32\\x21\\\r\n\\x17\\x26\\xe4\\x28\\xd3\\x5f\\xfa\\xb4\\xd8\\x5b\\xef\\x7d\\x2d\\x83\\x3f\\x2e\\\r\n\\x36\\x5d\\x86\\x52\\x00\\x1d\\xf7\\xdf\\xeb\\x7f\\xa6\\x28\\x27\\xb7\\x10\\x70\\\r\n\\xfa\\x24\\x99\\x74\\xfe\\x31\\xa9\\x17\\xf5\\x07\\x4f\\xa6\\x24\\x8d\\x24\\xa4\\\r\n\\xc9\\xcb\\xb0\\x2a\\x3a\\xb6\\x1b\\x5c\\xe9\\x7b\\xfd\\x08\\xdf\\x62\\x2d\\x7c\\\r\n\\x71\\x0a\\x35\\x86\\xad\\xa3\\x91\\x59\\xa8\\xe7\\x2c\\xf9\\x91\\x8a\\xf2\\x2a\\\r\n\\x24\\x56\\x85\\x86\\x97\\x22\\x19\\xd1\\xfb\\x74\\xac\\x96\\xd3\\x66\\xc5\\x67\\\r\n\\x2a\\x92\\x96\\x2a\\xf4\\x1c\\xb8\\xe5\\x58\\x9e\\xa1\\x17\\x50\\x65\\x36\\xcf\\\r\n\\x2a\\x82\\x74\\x6f\\xc5\\xb6\\x6d\\xf5\\x3a\\x91\\x5e\\x6a\\xa0\\x2d\\x03\\x2e\\\r\n\\x82\\xfa\\xdb\\xab\\x75\\xea\\x20\\x5c\\xde\\xd7\\xd3\\x5b\\x6f\\x88\\x2a\\x4a\\\r\n\\x47\\x53\\x45\\x34\\x82\\x99\\x8b\\x48\\xd0\\xdc\\xf4\\x95\\x92\\xc7\\xa1\\xfc\\\r\n\\x0c\\xaa\\xfb\\x01\\xaf\\x98\\xc0\\xad\\x3c\\xb4\\x88\\x0b\\x18\\x6a\\x67\\x56\\\r\n\\x1a\\x28\\x8c\\x3c\\x31\\x96\\xbd\\xfc\\xdf\\x98\\x3e\\x85\\x7b\\x8b\\x9e\\x15\\\r\n\\x29\\x6a\\x79\\x55\\x03\\x05\\x46\\x0a\\xad\\x98\\xd8\\xb9\\x5d\\x74\\x3a\\xd8\\\r\n\\x79\\xde\\xe6\\xc7\\xd3\\x10\\xd4\\x5a\\xa5\\x63\\x7b\\xf5\\x00\\x14\\xe9\\xa6\\\r\n\\x42\\x6f\\xf6\\xb5\\xaf\\xa6\\x9a\\x1c\\x4c\\x21\\xf7\\x36\\x98\\xd8\\xf2\\x95\\\r\n\\xbe\\xea\\x06\\xdf\\x5d\\x6f\\xf6\\xc5\\x53\\x7b\\xbe\\x49\\x6d\\xa4\\x8d\\xf0\\\r\n\\xfe\\x6b\\xc8\\xba\\xe5\\xdf\\x72\\x2f\\xde\\xf7\\xed\\x8c\\x94\\xfc\\xf9\\xd7\\\r\n\\x2a\\xe6\\x99\\x85\\x46\\x52\\x7c\\x6f\\x20\\xbf\\xff\\x00\\xa8\\x03\\xfd\\xce\\\r\n\\x38\\xb8\\xe5\\xd6\\xab\\x65\\x03\\xe3\\xff\\x00\\xfc\\xdb\\x41\\xa0\\xdc\\x0e\\\r\n\\xf8\\xac\\xad\\x84\\x4c\\x1d\\x0a\\x0c\\xaa\\x36\\x16\\x39\\x46\\x9a\\xdb\\x46\\\r\n\\xb0\\xb6\\xb8\\x77\\x0e\\xce\\x43\\xdf\\x38\\xf0\\x79\\x83\\xaa\\xf9\\x62\\x78\\\r\n\\xec\\x32\\xf9\\x90\\x7e\\x83\\xfd\\x3e\\xb8\\x8f\\x3b\\x12\\x6c\\x1c\\x2f\\x89\\\r\n\\x17\\xeb\\x60\\x7f\\x33\\xbf\\xa7\\xa6\\x26\\x15\\x34\\xb9\\xa7\\x8e\\x1e\\x71\\\r\n\\x64\\xe8\\x5b\\x36\\xb7\\xe9\\xb3\\x1d\\x3a\\x41\\x37\\x6f\\xe1\\xc4\\x47\\x8b\\\r\n\\x42\\x4d\\x5f\\x32\\xa2\\x69\\xd6\\xec\\x91\\xc2\\xa1\\x4e\\x6b\\xec\\x19\\xb2\\\r\n\\x8c\\xa2\\xdb\\xaa\\x15\\x1b\\x68\\x6d\\x81\\x5d\\xc7\\xe5\\xa8\\x32\\xcd\\xc2\\\r\n\\x8b\\x2e\\x73\\x2c\\x8c\\x26\\xca\\xde\\x77\\x39\\x63\\xf1\\xdf\\x7d\\xaf\\xb5\\\r\n\\xbb\\xe2\\x1e\\x29\\xed\\x3b\\xc8\\xb2\\x52\\x3a\\xc7\\x04\\x46\\x58\\xe3\\x2f\\\r\n\\x0a\\xc8\\xb1\\xd3\\xcd\\x20\\xe6\\x29\\x32\\x93\\x98\\x02\\x01\\x00\\x0b\\x8b\\\r\n\\x74\\xe5\\xc5\\x7d\\x6c\\xb5\\x97\\x96\\xa2\\x72\\xd2\\x04\\xca\\x58\\x8b\\x28\\\r\n\\x40\\xb6\\x22\\x34\\xbd\\x94\\x1d\\x4d\\x86\\xbf\\x9e\\x26\\x9f\\x2e\\x80\\x1c\\\r\n\\xa1\\x75\\x2b\\x70\\xb7\\xfa\\xde\\xdd\\xb5\\xbd\\xbf\\x90\\xc7\\x0d\\xa9\\xe2\\\r\n\\x12\\x70\\x7a\\x28\\x15\\x15\\x5e\\xba\\x66\\x7e\\x73\\x5e\\xf4\\xd4\\x11\\xb7\\\r\n\\x53\\x33\\x7c\\xf9\\xd9\\x1b\\x90\\x2e\\x1a\\xee\\x07\\x48\\x17\\x0d\\x4d\\x04\\\r\n\\xcb\\x1c\\x8c\\x15\\x83\\xad\\xb6\\xb5\\x86\\xfe\\x79\\x89\\x37\\xd6\\xf7\\x17\\\r\n\\xda\\xc3\\x4c\\x49\\xc2\\x29\\x27\\x4a\\x9b\\xa9\\x46\\x46\\x9d\\xa1\\x65\\xb0\\\r\n\\x0a\\x63\\x94\\xa2\\xf6\\xbf\\xca\\xa0\\xeb\\xb0\\x38\\xa9\\xa0\\x8e\\x96\\xb0\\\r\n\\x06\\x8e\\x24\\x2f\\x32\\x25\\x4a\\x32\\x2e\\x68\\xd7\\x40\\x27\\x88\\x9e\\x92\\\r\n\\xa5\\x2e\\x41\\x37\\x17\\xde\\xfb\\x62\\x97\\x83\\xcf\\x1f\\x37\\xdc\\xf8\\x9c\\\r\n\\xf0\\x4a\\x8c\\x32\\x74\\x45\\xcb\\x92\\x36\\x5c\\xcb\\x9a\\xdd\\xb7\\x19\\xb4\\\r\n\\x1f\\x63\\x73\\x53\\x05\\x5c\\x53\\xab\\xe5\\x57\\x9b\\xa8\\x31\\xca\\x62\\x60\\\r\n\\xca\\x2e\\x5a\\xc8\\x72\\x90\\xfa\\x90\\xd6\\xde\\xe0\\xe1\\xaa\\x56\\xa1\\x91\\\r\n\\xab\\x22\\xe4\\x10\\x32\\x67\\x74\\x06\\x31\\x20\\x07\\x33\\xf3\\x74\\x09\\xcc\\\r\n\\x06\\xd6\\x61\\xa5\\x88\\xcc\\x77\\xc7\\xed\\x1e\\x1f\\x47\\x34\\xc6\\x37\\x92\\\r\n\\xb1\\xe7\\x81\\xa2\\x75\\xa3\\x88\\xc9\\xe1\\x21\\xba\\x5c\\xae\\x5c\\xba\\x0b\\\r\n\\x91\\xaa\\xdc\\x5b\\x30\\xb1\\x65\\xe2\\x55\\xf5\\x13\\x22\\xd2\\x50\\x14\\xce\\\r\n\\xbc\\xb8\\x3d\\xf2\\x40\\xdd\\x48\\xa7\\xe4\\x5c\\xa1\\x8b\\x9d\\x95\\x81\\x0c\\\r\n\\xda\\x65\\xd7\\x0d\\xc1\\xab\\xeb\\x83\\x7e\\xd0\\xe2\\x04\\x2a\\x2c\\x6d\\x0c\\\r\n\\x71\\x21\\xe5\\x0c\\xda\\xe8\\x87\\x2a\\xa0\\x04\\x30\\x23\\x7d\\x1a\\xe7\\x4d\\\r\n\\x5b\\x81\\xd4\\x82\\x41\\x59\\xae\\x09\\x06\\xcb\\x71\\x71\\xe4\\x72\\xed\\x89\\\r\n\\xb8\\x6d\\x57\\xb4\\x75\\x6d\\x4d\\x44\\xc2\\x1e\\x11\\x4d\\x51\\x77\\xa9\\x76\\\r\n\\x5e\\x4c\\xd5\\x71\\x00\\x84\\x20\\x2d\\x9a\\x48\\xc3\\x5e\\xed\\x62\\x09\\x16\\\r\n\\xd6\\xc6\\xd4\\x94\\xcd\\x4b\\x04\\x30\\xb4\\xa9\\x29\\x58\\xd4\\x17\\x4f\\x0b\\\r\n\\x90\\x2d\\x70\\x34\\xb5\\xfc\\xb5\\xc7\\x11\\xa1\\xa5\\x96\\x51\\x54\\xc3\\xe3\\\r\n\\x72\\xcc\\x65\\x89\\xb0\\xb7\\x6d\\xb7\\x26\\xfa\\xfd\\x30\\xc1\\x69\\xd9\\x7a\\\r\n\\x44\\x83\\x37\\x8a\\xf7\\xcb\\x9b\\x4f\\x21\\xa7\\xd8\\xff\\x00\\xa5\\x47\\x2b\\\r\n\\xa9\\xc9\\xd2\\xf7\\x04\\x76\\xfd\\x3b\\x79\\x7e\\x58\\xe0\\xd5\\x6a\\xd3\\x35\\\r\n\\x39\\x57\\x45\\x17\\x31\\xbb\\xea\\x1f\\x53\\x94\\x0f\\x23\\x63\\xb7\\xae\\x38\\\r\n\\xa4\\x95\\x91\\xd4\\x98\\xbc\\x2b\\xad\\x98\\x6a\\x19\\x4f\\x50\\xb5\\xf4\\x1f\\\r\n\\x84\\xe5\\x1a\\x62\\xa0\\xa4\\x71\\x73\\x0f\\x54\\xc2\\xd9\\x8e\\x6d\\xb6\\x3a\\\r\n\\x7e\\xbb\\xdf\\x11\\xd5\\x02\\x1f\\x6f\\xf5\\xc4\\x44\\x55\\x54\\x44\\x18\\x2f\\\r\n\\xc2\\x20\\xf5\\x00\\x7e\\xf6\\xb6\\x87\\xe5\\xfe\\xb8\\x8f\\xc0\\x9f\\xe5\\x5f\\\r\n\\xe5\\x8a\\x32\\x3d\\xe2\\x0b\\xec\\x25\\x43\\xae\\xc6\\xce\\x37\\xc7\\x14\\x8b\\\r\n\\x95\\xc4\\x6b\\x13\\x4d\\x27\\x7b\\x58\\x5b\\x43\\xae\\xdd\\xb1\\x55\\x45\\x0d\\\r\n\\x6a\\x18\\xe5\\x5b\\x8d\\x32\\xb2\\x9c\\xae\\xad\\xfc\\x2c\\x35\\x1e\\x5f\\x7c\\\r\n\\x52\\xd2\\x2d\\x05\\x22\\x44\\x9a\\x00\\x08\\x5e\\xe4\\x66\\xb9\\xfa\\xdf\\xb8\\\r\n\\xfa\\xe9\\x85\\x6b\\xc3\\x97\\x30\\xeb\\x91\\xaf\\xe7\\x64\\xb0\\x07\\xe8\\x5b\\\r\n\\x37\\xfe\\xdc\\x47\\x0e\\x51\\xdb\\x2a\\x8f\\xb9\\xd7\\x5b\\x6a\\x2c\\x76\\xd6\\\r\n\\xfa\\xe2\\x59\\xdf\\x87\\xce\\x9c\\xf3\\x7e\\x1d\\x3c\\x82\\x35\\x9d\\xad\\xcc\\\r\n\\xa3\\x9d\\xac\\x11\\x24\\x3f\\x34\\x12\\x9e\\x94\\x91\\x8d\\xd1\\xec\\xac\\xc6\\\r\n\\xe3\\x10\\x7e\\xf0\\x12\\x2e\\x2f\\xfa\\x62\\x5a\\x45\\x37\\x78\\xfc\\x39\\xb5\\\r\n\\xfe\\x83\\x7f\\xfd\\xda\\xe9\\xf7\\xc0\\xb6\\x83\\x2d\\xf5\\xc4\\x42\\xd2\\x5f\\\r\n\\xf1\\x69\\xf9\\xdb\\x75\\xee\\x3f\\xbe\\xd8\\xac\\x40\\x17\\x36\\x9b\\x1d\\x07\\\r\n\\xf4\\xfc\\xbf\\xbb\\x62\\x89\\x56\\x43\\x21\\xcd\\x95\\xd5\\xae\\x84\\x11\\x75\\\r\n\\x20\\xdc\\x7e\\xa2\\xd7\\xf2\\xc2\\xd5\\x9a\\x8a\\x38\\x90\\x69\\x20\\x4c\\x92\\\r\n\\x02\\x7c\\x2c\\x9a\\x38\\xbf\\xd8\\x90\\x0e\\x96\\x22\\xda\\xe3\\x88\\x70\\xd5\\\r\n\\x92\\x06\\x2d\\xe4\\x35\\x27\\xb3\\x03\\x6d\\x01\\xbe\\x9f\\xd8\\xc0\\xaa\\x59\\\r\n\\xe8\\x4f\\x0c\\xab\\xfd\\xec\\x2d\\x24\\x7a\\xec\\xea\\x18\\xd9\\xd4\\x8b\\x6b\\\r\n\\x1e\\x61\\x73\\x6b\\xec\\x4d\\xb1\\x48\\xcf\\x4f\\xcd\\xa6\\x39\\x94\\xab\\x64\\\r\n\\x53\\x71\\x76\\xbf\\x81\\xc5\\xee\\x2c\\x34\\x3d\\xc0\\x17\\xc5\\x4d\\x2d\\x2d\\\r\n\\x5d\\x22\\xfb\\xe7\\x2e\\x16\\xbb\\x07\\x7c\\xc0\\x15\\x21\\x4e\\xaa\\x49\\xd3\\\r\n\\xcc\\x7d\\x6d\\x6c\\x3d\\x3f\\xb9\\x52\\xd5\\x2c\\x32\\x9a\\xa0\\x66\\x19\\x65\\\r\n\\x5d\\x48\\xd1\\x6e\\x2e\\x1b\\xe5\\x16\\xef\\xb1\\xf4\\xc5\\x0c\\xed\\x49\\x0c\\\r\n\\x30\\x38\\x2a\\xee\\x33\\xe5\\x6d\\xc3\\x1f\\xc4\\x7c\\xc2\\x91\\xa7\\x9d\\xc6\\\r\n\\x1f\\x89\\x0c\\xdc\\xd8\\xd4\\xb7\\x25\\x81\\x90\\xe9\\xfb\\xb0\\x42\\xb3\\x58\\\r\n\\x91\\xa0\\xf9\\xad\\x7d\\xb5\\xc4\\x1c\\x44\\x54\\xd2\\x4c\\xb2\\x10\\x91\\xf2\\\r\n\\x9c\\xd9\\xad\\x97\\x6d\\x6f\\xae\\xd9\\x4f\\x7d\\xf1\\x49\\x57\\x05\\x5a\\x88\\\r\n\\x73\\x2b\\xcb\\x4e\\x79\\x96\\x37\\x21\\x4e\\x6b\\x86\\xcd\\xe1\\x1d\\x1a\\xdb\\\r\n\\x7d\\xfe\\xb8\\xe2\\x10\\x47\\xcb\\x12\\xc4\\x42\\xca\\x91\\xab\\x1b\\x36\\xe3\\\r\n\\x25\\xd6\\xe6\\xfe\\xbd\\xc7\\x73\\x8a\\xde\\x2a\\x66\\xe2\\x25\\x25\\x3a\\x47\\\r\n\\x32\\xa6\\x63\\xaa\\x5c\\xa9\\x04\\xb0\\x26\\xf7\\x3a\\x65\\x61\\xbf\\xd4\\x62\\\r\n\\x4a\\x78\\xe4\\x8d\\x94\\x33\\x67\\x06\\xd1\\x49\\x76\\xcc\\x14\\xea\\x01\\xd4\\\r\n\\x8b\\x6b\\xa0\\x20\\xf7\\xb5\\xb7\\x15\\x15\\x31\\x50\\xd1\\xb7\\x3f\\x9c\\xde\\\r\n\\xee\\x84\\xf3\\x21\\x4b\\xbc\\x8c\\x2c\\x46\\x5e\\xc0\\xb5\\xac\\x3a\\xbb\\xfd\\\r\n\\xb1\\x45\\x59\\x0f\\x10\\xa5\\x5a\\x83\\x98\\x66\\x44\\x65\\x79\\x17\\x26\\x78\\\r\n\\xd8\\x94\\x19\\xc5\\xb4\\x7c\\xe0\\xa3\\x2d\\xac\\x58\\x5c\\x68\\x46\\x1a\\x65\\\r\n\\xa1\\xaf\\x87\\x9b\\xd3\\x4f\\x3f\\x8d\\xbc\\x92\\xeb\\x9b\\x4d\\xae\\xbe\\x5b\\\r\n\\xea\\x76\\xbe\\x29\\x67\\xf7\\x96\\xa9\\x80\\x8c\\xb1\\x65\\x2f\\x0d\\xf7\\xe5\\\r\n\\x92\\x3f\\x15\\x8e\\xa3\\xac\\xae\\x81\\x76\\xd7\\x7c\\x53\\xf0\\x7b\\xa0\\x93\\\r\n\\x96\\xe1\\x5f\\x28\\x8e\\x49\\x48\\xd1\\x74\\xe6\\x36\\x50\\x37\\x7d\\xd6\\xf6\\\r\n\\xe9\\xd3\\x5d\\xf0\\xbc\\x1d\\x39\\x85\\xe2\\x99\\xe1\\x92\\x37\\xce\\x40\\x5c\\\r\n\\xca\\xc0\\xf8\\x4f\\xae\\xd6\\xfd\\x71\\x2f\\x07\\x12\\x54\\x55\\x52\\xbc\\xc9\\\r\n\\x0a\\x85\\x59\\xe0\\x2a\\x80\\x73\\x23\\x9e\\xc0\\xea\\x76\\xc9\\x2e\\x8c\\x3d\\\r\n\\x74\\xb5\\xb1\\xff\\x00\\x82\\xe8\\x59\\x41\\xa9\\xab\\xab\\x90\\x33\\x65\\x21\\\r\n\\x4c\\x71\\x20\\x06\\xd7\\xf9\\x18\\xfd\\xee\\x0e\\x20\\xf6\\x43\\xd9\\xf8\\x33\\\r\n\\xc5\\x25\\x3b\\xd4\\xa7\\x53\\xaf\\x3e\\xa6\\x59\\x45\\xfc\\x56\\xb1\\x65\\x5b\\\r\n\\x1b\\x5b\\x51\\x6f\\xe9\\x4d\\x4c\\xaf\\x9d\\x52\\x34\\x85\\x20\\x8d\\x15\\x63\\\r\n\\x8d\\x17\\x2a\\x94\\x52\\xcb\\x17\\xe1\\xcb\\x1a\\x5d\\x2c\\xb6\\xb6\\x62\\x2f\\\r\n\\x88\\xd9\\xb2\\xd3\\xe5\\x6d\\x79\\xef\\x1e\\x83\\x66\\x07\\x41\\xea\\x08\\x1a\\\r\n\\x69\\xe5\\x84\\xa8\\x82\\x28\\x87\\x36\\x48\\x53\\x9b\\x24\\xc0\\xf3\\x1d\\x53\\\r\n\\xa6\\x59\\x65\\x27\\x72\\x2e\\x05\\xf7\\xf4\\xc7\\x15\\xa9\\xe1\\x35\\x49\\x21\\\r\n\\x58\\x27\\xad\\x92\\x1a\\x79\\x14\\x4b\\x47\\x4d\\x33\\xc6\\x2c\\x97\\xf8\\x95\\\r\n\\x19\\x63\\x80\\x85\\x3f\\x8a\\x46\\xb6\\xf6\\xb0\\x37\\xa7\\xe2\\xdc\\x5c\\xad\\\r\n\\x2c\\x54\\x34\\x94\\xdc\\xf9\\x69\\xe2\\x54\\x7a\\xb9\\x5b\\x23\\x53\\x4a\\x03\\\r\n\\xc1\\x21\\x48\\xc9\\xcc\\xc1\\x0d\\x81\\x56\\x23\\xa9\\x73\\x15\\x3a\\xe0\\xf0\\\r\n\\xce\\x25\\x3a\\x49\\x51\\xc4\\x78\\xa1\\x63\\x16\\x6b\\xd2\\xd2\\xc6\\x90\\xc4\\\r\n\\xb7\\xb0\\x5b\\xca\\x47\\x32\\x4d\\xf7\\xb0\\xbe\\x9a\\xef\\x88\\xa9\\xe3\\x47\\\r\n\\x14\\xbe\\xec\\xad\\x3d\\x4e\\x68\\x63\\x79\\x00\\x9b\\x2e\\x7d\\xe6\\x25\\xee\\\r\n\\x0e\\x55\\xb1\\x43\\xd8\\x9b\\x00\\x35\\xc5\\x17\\x0e\\x91\\xa6\\xca\\xb9\\xe9\\\r\n\\xea\\x14\\xf2\\xcb\\x2a\\x5e\\x29\\x55\\x43\\x78\\x95\\x8d\\x89\\xcc\\xa3\\x33\\\r\n\\x0c\\xa7\\x7e\\xdb\\xcf\\xc1\\x6a\\x17\\xff\\x00\\x30\\x95\\x68\\xe1\\xad\\xcd\\\r\n\\xa6\\x9e\\x65\\x45\\xf2\\x65\\x8e\\x17\\x5c\\xbe\\x57\\xed\\xbe\\x2b\\x28\\x29\\\r\n\\xe3\\x65\\x12\\xc7\\x24\\x9d\\x71\\x3a\\x96\\x96\\xa3\\xaf\\x2b\\x2e\\x7b\\x82\\\r\n\\xf7\\xbe\\x52\\x43\\x0d\\x6f\\xa9\\xb5\\x8d\\xb0\\x69\\xe9\\x6e\\x72\\xd2\\xc6\\\r\n\\xcb\\x7e\\x96\\x6e\\x60\\x66\\x1d\\x8b\\x0b\\xe8\\xc4\\x6a\\x47\\x63\\x89\\x66\\\r\n\\x4f\\x66\\xab\\xc5\\x11\\x32\\xb4\\x55\\xb4\\x70\\xcf\\x0d\\xc7\\xee\\x67\\x65\\\r\n\\x02\\x75\\x4c\\xa2\\xd6\\x72\\x03\\x36\\xdf\\x61\\x8f\\x67\\xab\\x1d\\x95\\xa0\\\r\n\\x6b\\x92\\xbd\\x66\\xfd\\x87\\x6b\\x03\\xb6\\xbb\\xeb\\xdc\\x62\\xa8\\x67\\x53\\\r\n\\x94\\x1f\\xef\\xbf\\xdb\\xbe\\x24\\xcc\\xce\\x6d\\xd3\\x18\\xbf\\x84\\x78\\x8d\\\r\n\\xf4\\xd0\\x0f\\x31\\xf9\\x62\\xa2\\x19\\x24\\x42\\x46\\xfb\\x30\\xb6\\xb9\\xad\\\r\n\\xfe\\xbf\\xdf\\x9c\\xbc\\x42\\x7a\\x0a\\x88\\xe2\\x74\\x65\\x57\\x91\\x40\\x74\\\r\n\\x04\\xeb\\x9b\\x6d\\xb7\\xef\\x8e\\x25\\xc4\\x56\\x78\\x94\\x99\\x2e\\xf0\\x5f\\\r\n\\x30\\xd4\\xb1\\x4f\\x33\\xe5\\xad\\xb6\\xf3\\xc4\\x9c\\x4e\\x4a\\x99\\x63\\xe4\\\r\n\\x9b\\x22\\x8c\\x8e\\xbb\\x87\\xbe\\x9b\\x1b\\xeb\\xda\\xfa\\x1f\\xcb\\x00\\x85\\\r\n\\x55\\x56\\x00\\x5f\\x5f\\xa6\\x9d\\xff\\x00\\xdb\\x1c\\x16\\x38\\xe7\\xaa\\xa7\\\r\n\\x0b\\x75\\x0f\\x3a\\xf3\\x3a\\xb4\\x0a\\xa6\\xe6\\xfe\\x8d\\x6b\\x63\\x26\\x55\\\r\n\\xb6\\xf6\\xbe\\x22\\xe3\\x94\\x4b\\xc6\\xa3\\xe0\\xd9\\xcf\\xbe\\x14\\x69\\x72\\\r\n\\x8f\\x24\\x19\\xfc\\xbf\\xbf\\xe5\\x58\\xcd\\x2c\\xc6\\x69\\x58\\x09\\x25\\x22\\\r\n\\x46\\xd0\\xd8\\x07\\x17\\x1e\\x7a\\xe8\\x7d\\x31\\x91\\x88\\xd1\\x4e\\xdf\\x9f\\\r\n\\x7d\\x7b\\x8f\\xb6\\x1e\\x27\\x25\\x33\\x36\\xe7\\x6d\\xb7\\xd7\\xb7\\xa6\\x39\\\r\n\\x60\\x5d\\x40\\xbb\\x75\\xff\\x00\\x31\\x6f\\xb1\\x17\\xfa\\xea\\x70\\x58\\xea\\\r\n\\x0e\\x82\\xe0\\x6b\\xfc\\xff\\x00\\x4d\\x31\\xed\\x13\\xe6\\xe1\\xb3\\xd3\\xe4\\\r\n\\xe6\\x4d\\x5e\\xd1\\x50\\xd1\\xc3\\xad\\xe4\\xa9\\x9d\\x95\\x23\\x2a\\x07\\xfe\\\r\n\\x90\\xbc\\xe4\\xec\\x16\\x32\\x4d\\x80\\x2c\\x29\\x38\\x3c\\x91\\x52\\xc7\\x1b\\\r\n\\x75\\x3a\\x43\\x02\\x83\\xff\\x00\\x31\\x99\\x55\\x16\\xe4\\x69\\x62\\xf7\\x1b\\\r\n\\xf9\\x79\\x9c\\x43\\x5e\\xfc\\x42\\xaa\\xbe\\x96\\x98\\x7f\\x81\\xe0\\xe8\\x22\\\r\n\\xab\\xa8\\xca\\x6d\\x3d\\x73\\x0f\\xdd\\x21\\xf2\\x89\\x40\\x67\\x7e\\xc6\\xc0\\\r\n\\x75\\x12\\x0c\\x51\\x33\\x9c\\xc0\\x00\\x10\\xdc\\xdc\\x81\\xf9\\x66\\xf4\\xd7\\\r\n\\xe9\\x88\\x94\\xdd\\x53\\x46\\x24\\xb6\\xba\\x10\\x7d\\x07\\xd8\\x03\\x8a\\xf8\\\r\n\\x64\\x55\\x21\\x86\\x52\\x01\\x00\\x7f\\x0f\\x6f\\xf4\\xc5\\x22\\x34\\x52\\xb0\\\r\n\\xfc\\x4d\\x7d\\x7e\\xbd\\xbf\\x3c\\x46\\xe6\\x09\\x34\\x17\\x4a\\x91\\x94\\x1e\\\r\n\\xcb\\x38\\x5b\\x5c\\x9d\\xee\\xe9\\x7d\\xfe\\x65\\xc4\\xd3\\x33\\x17\\x0f\\x66\\\r\n\\x55\\xb5\\xad\\xe8\\x3f\\x9e\\x2b\\x6e\\xd5\\x75\\x2b\\x19\\xc9\\xf1\\x12\\x78\\\r\n\\x9b\\x2d\\xf2\\xb5\\xac\\xda\\x01\\x7b\\x1e\\xfd\\xb1\\x23\\xbb\\x37\\x3d\\x2d\\\r\n\\x9e\\x07\\x39\\xd7\\xcd\\x49\\xd4\\x7d\\xb7\\x07\\x06\\x68\\xa6\\xa7\\x5a\\x99\\\r\n\\xa3\\xe7\\x94\\x66\\x94\\xc6\\xc1\\x8a\\xc4\\x0a\\xe4\\x8e\\x4b\\x0b\\xd9\\x41\\\r\n\\xb8\\x62\\x46\\x80\\xe9\\x89\\x14\\xc7\\x43\\x4d\\x30\\x56\\xc8\\x6a\\x8c\\xb2\\\r\n\\x2a\\xf4\\xae\\x57\\x74\\x8b\\x60\\x3c\\x3d\\x57\\xbf\\xa8\\xd3\\x5d\\x2b\\x27\\\r\n\\xbf\\xbd\\x55\\x3a\\x80\\xc9\\x13\\x04\\x1a\\x1e\\xa9\\x3e\\x1c\\x56\\x1b\\x0f\\\r\n\\x11\\x3a\\x11\\xa8\\x1a\\x1c\\x41\\x9e\\x44\\x88\\x64\\xcd\\x9b\\xa0\\x8d\\x81\\\r\n\\x3e\\x26\\x5e\\xc7\\x51\\x8a\\x89\\xa3\\x87\\x87\\xb2\\x44\\x3a\\x84\\x3d\\x79\\\r\n\\x81\\x3d\\x56\\xd7\\xd3\\x5b\\x7d\\x31\\xc2\\x5b\\xde\\xea\\x90\\x44\\xf2\\xa2\\\r\n\\x5e\\xcd\\x95\\xac\\xc0\\xaf\\x8c\\x92\\xa7\\x53\\x63\\x7b\\xf6\\x5d\\xad\\x8e\\\r\n\\x25\\xf0\\xa9\\x94\\x2a\\xbd\\xbd\\xd9\\x15\\x77\\xbf\\x90\\xf1\\x6a\\x47\\xae\\\r\n\\x24\\xf6\\x5f\\x89\\x99\\xe5\\xac\\x8b\\x95\\x94\\x96\\x98\\x40\\xef\\xd7\\xa6\\\r\n\\x6c\\xad\\x92\\xc4\\x12\\x6f\\x65\\x18\\xe1\\xb4\\xb0\\xd4\\x32\\x99\\x9c\\xc2\\\r\n\\x6c\\x51\\xe3\\x7d\\x72\\x4c\\xbd\\xaf\\xa6\\x96\\xcc\\x45\\xef\\xb5\\xfd\\x05\\\r\n\\x0f\\x0b\\xa7\\x8d\\xb9\\x4c\\x12\\x58\\x53\\x57\\x12\\xa8\\x60\\x64\\x60\\x42\\\r\n\\xa9\\xf9\\x48\\x0a\\x6e\\x6f\\xdc\\x8c\\x7b\\x47\\x4f\\x0d\\x24\\x1c\\xca\\x28\\\r\n\\x23\\x85\\xe9\\x98\\xf3\\x52\\x24\\x01\\x64\\x48\\x65\\x0f\\xd5\\x6e\\x96\\x6c\\\r\n\\x96\\x6c\\xc6\\xe7\\x5c\\x57\\x98\\x78\\x97\\x0f\\x49\\x14\\xe5\\xc8\\x82\\x54\\\r\n\\x93\\x32\\xf8\\xd4\\x7c\\x58\\x48\\x03\\xa7\\x4e\\xa1\\x7f\\x21\\xdf\\x1e\\xcd\\\r\n\\xd5\\x47\\x22\\xb6\\x78\\xd7\\x98\\xc9\\x1c\\x6a\\xd9\\x6f\\x9c\\xa2\\x1b\\x8c\\\r\n\\xdb\\x5d\\x80\\xb9\\xee\\x75\\x37\\xbe\\xf4\\x81\\x5e\\x07\\x8a\\xfd\\x51\\x92\\\r\n\\x2c\\x7f\\x31\\x6b\\x5e\\xda\\x68\\x2d\\xe4\\x70\\xcc\\xd7\\x12\\xdb\\x54\\x19\\\r\n\\x5c\\x0e\\xf1\\xf9\\x9f\\xa6\\xf7\\xdf\\x7c\\x71\\x42\\x63\\x92\\x96\\xb1\\x5c\\\r\n\\x7c\\x16\\xf7\\x69\\x47\\x94\\x33\\x10\\xf1\\xb1\\x1b\\x9f\\x8a\\xa2\\xc7\\xf8\\\r\n\\x8f\\x6d\\x30\\xb2\\x43\\x34\\xde\\xec\\xc2\\xe7\\xdd\\xf9\\xc8\\x6f\\xd8\\xb1\\\r\n\\x56\\xd3\\xc9\\x7a\\x4d\\xf1\\x35\\x44\\x02\\x29\\x96\\xe3\\x9a\\x8a\\xd7\\x29\\\r\n\\xaa\\x68\\x6c\\x49\\x61\\xa0\\xb8\\x3b\\x6a\\x6f\\xf6\\xc5\\x28\\x6f\\x73\\x65\\\r\n\\xea\\xce\\xcf\\xcc\\x62\\xba\\x1f\\x88\\x6e\\x4b\\x7a\\x6b\\x60\\x3f\\xb0\\x94\\\r\n\\x8c\\xa5\\xc9\\x6f\\xdd\\xd7\\x45\\x98\\x5c\\xf8\\x25\\x11\\xc8\\x4e\\x63\\xb6\\\r\n\\x8c\\x47\\xa5\\x8d\\xb0\\x5a\\x38\\x23\\x8e\\x49\\x04\\x00\\x08\\xe3\\xbd\\xf2\\\r\n\\x5f\\x6b\\x2e\\x52\\x75\\x27\\x5d\\x00\\xb9\\x63\\x7b\\xdc\\x9b\\xe0\\x17\\x64\\\r\n\\xca\\x8b\\x65\\x7d\\x1d\\x88\\xd5\\x87\\xcd\\x95\\x0e\\xd6\\x51\\xae\\x70\\x09\\\r\n\\xec\\xb9\\x6d\\x7a\\x38\\x33\\xf0\\x5a\\x3a\\xda\\x46\\x76\\xac\\xe1\\x55\\x15\\\r\n\\x54\\xec\\x8c\\xad\\x79\\x62\\xa5\\xaa\\x91\\x52\\x37\\xb8\\xb0\\x91\\x62\\x58\\\r\n\\xca\\xeb\\xfb\\xb2\\x37\\xed\\x25\\x54\\x7c\\x4b\\xe3\\xd3\\x05\\x58\\x1a\\x08\\\r\n\\xb9\\x91\\x2e\\x87\\x9e\\x49\\xcd\\x1b\\x06\\xb6\\x41\\x1e\\x4e\\xc2\\xec\\xe4\\\r\n\\x6b\\xa5\\x8d\\x3a\\x22\\xd4\\x8a\\x97\\x21\\xa4\\x8d\\x12\\x34\\x0d\\x7b\\x26\\\r\n\\x99\\xa4\\xd3\\xf1\\xdc\\x81\\xae\\xd6\\xfb\\x62\\x3a\\xe8\\xb9\\xf9\\x8b\\x5a\\\r\n\\xe7\\xfa\\xff\\x00\\xdb\\x10\\xc9\\x14\\xd6\\x24\\x8c\\xad\\xfa\\xf6\\x3f\\xe9\\\r\n\\xbe\\x38\\x9f\\x09\\x8a\\xa2\\x99\\x80\\x40\\x3b\\xc6\\xe0\\x0b\\x86\\xdd\\x58\\\r\n\\x1b\\x1f\\xae\\x1f\\xd9\\xba\\x82\\xec\\x73\\x8d\\x58\\xfc\\xcf\\xe7\\xfe\\x4c\\\r\n\\x1e\\x1d\\x4d\\x5f\\x1d\\x0c\\x95\\x10\\xc6\\x5e\\x24\\x84\\xc5\\x21\\xca\\x58\\\r\n\\x87\\x8c\\x5c\\x02\\x05\\xb2\\x91\\xdf\\xbe\\x25\\x86\\x9e\\x83\\x99\\x35\\x3c\\\r\n\\x79\\x5e\\x6c\\x88\\xd6\\xd2\\xd6\\xb0\\xd0\\x69\\xf7\\xf3\\xc2\\xcb\\xcd\\x01\\\r\n\\x41\\xea\\x3f\\xde\\xb8\\x64\\x29\\x23\\x2e\\xb6\\x04\\xef\\xde\\xde\\x5f\\xa6\\\r\n\\x16\\x45\\x79\\x4a\\x7a\\xad\\xed\\x63\\xa7\\x6b\\x5c\\xf9\\x7d\\xfe\\x98\\xe3\\\r\n\\x3c\\x16\\x9e\\x6a\\x7b\\xac\\xa0\\x49\\x7b\\xc5\\x7e\\xcc\\x35\\xdc\\x6e\\x34\\\r\n\\xd7\\xf9\\xe9\\x89\\xda\\x68\\x67\\x9e\\xe6\\xf6\\xcb\\x14\\x8b\\xf2\\xed\\xa9\\\r\n\\xd3\\xb1\\xee\\x2f\\x7d\\x71\\x41\\x42\\x82\\x52\\x6d\\x72\\xe7\\xed\\xe5\\xfa\\\r\n\\xfd\\x86\\x26\\xa6\\x0b\\x3c\\x51\\xcc\\x02\\xc6\\x55\\x85\\xc0\\xd6\\xf6\\xff\\\r\n\\x00\\x7e\\xf8\\xe1\\x2a\\x91\\x54\\x01\\x17\\x4e\\x40\\xd6\\x1b\\x6a\\x74\\xdc\\\r\n\\x96\\x3e\\x1f\\xe7\\xae\\x07\\x1c\\xa7\\x8c\\xf2\\xa6\\x90\\x23\\xf6\\xef\\x71\\\r\n\\xdf\\x6f\\x5d\\x2f\\xdf\\x1c\\x53\\x8a\\xcb\\x47\\xff\\x00\\x10\\x28\\x38\\x9e\\\r\n\\x43\\xcb\\xce\\xaa\\xec\\x19\\xb9\\x65\\x1b\\xa4\\xf6\\xff\\x00\\xd3\\xd4\\xa9\\\r\n\\x3b\\xfe\\x58\\x59\\x52\\xb0\\x53\\x4b\\x19\\xb2\\x18\\x91\\x58\\xef\\x7c\\x9a\\\r\n\\x06\\xff\\x00\\xdb\\x63\\x6d\\xf5\\xf4\\x23\\x12\\x3d\\x83\\x65\\xba\\xa2\\x9d\\\r\n\\x00\\xb5\\xdd\\xbb\\xb3\\x5b\\xb6\\xba\\x0e\\xd6\\xc6\\x63\\x29\\x55\\xdb\\x51\\\r\n\\xdf\\x5f\\xef\\x51\\x82\\x32\\x02\\x47\\x71\\xb9\\x3a\\xfe\\x1b\\x8b\\x29\\xfc\\\r\n\\xf1\\x22\\xb0\\x03\\xcc\\xf5\\x6f\\x7b\\x5e\\xe1\\x77\\xb6\\xfe\\x2f\\x2b\\x79\\\r\n\\x63\\x85\\x7f\\xf3\\x5e\\x36\\xd5\\xe1\\x73\\xd2\\x70\\x86\\x92\\x8a\\x8b\\xba\\\r\n\\x4d\\xc4\\x08\\xcb\\x5d\\x52\\x06\\xc5\\x60\\xd2\\x96\\x37\\xd4\\x13\\xcd\\x23\\\r\n\\x46\\xc5\\x65\\x5f\\xbb\\x70\\xba\\xfa\\x81\\x66\\x9e\\x38\\x4a\\xc2\\x05\\x80\\\r\n\\x0c\\xaa\\x55\\x05\\xb7\\xbe\\x6d\\xfb\\xd8\\x0b\\x7a\\xf0\\xba\\x68\\xb8\\x5f\\\r\n\\xb3\\xf0\\x50\\xad\\x9a\\x69\\x99\\xea\\x6b\\x25\\x36\\xcf\\x3d\\x4c\\xb2\\x34\\\r\n\\x92\\xc8\\xfa\\x93\\xbe\\x55\\x41\\xe5\\x60\\x49\\x0b\\x88\\xde\\x31\\x16\\x4b\\\r\n\\x0f\\x15\\xc7\\x7d\\x05\\xee\\x5b\\x6e\\xa2\\x5b\\xf2\\x02\\xc0\\x6d\\x89\\x25\\\r\n\\x10\\x5d\\x8b\\xd8\\x22\\x93\\x98\\xec\\x2f\\xa8\\xbf\\xfa\\xf6\\xc5\\x45\\x49\\\r\n\\x9e\\x32\\x5c\\xea\\x14\\x0b\\xfd\\xbf\\xdb\\xed\\xe5\\x80\\xe4\\x54\\x69\\xfc\\\r\n\\x58\\x32\\xf3\\x60\\xe5\\x02\\x55\\x88\\xcd\\x19\\xd2\\xea\\xeb\\x66\\x5d\\x7f\\\r\n\\xcc\\x2e\\x7b\\x1f\\x4c\\x19\\x33\\x52\\xbc\\x9a\\xe6\\x2b\\xf7\\xcd\\x7b\\x35\\\r\n\\xad\\xb1\\xbe\\x9e\\x56\\xd4\\x69\\xae\\x25\\x89\\x99\\x92\\x5e\\xe5\\x65\\x0c\\\r\n\\x7f\\xca\\xc0\\xdf\\xea\\x16\\xff\\x00\\x61\\xb6\\x12\\x93\\x2c\\x86\\x55\\x4c\\\r\n\\xe1\\xfa\\x1e\\x3f\\x34\\x3b\\x1f\\xa8\\xfe\\xbf\\x70\\x9c\\x3c\\x52\\x54\\x34\\\r\n\\x63\\x36\\x49\\x91\\xf2\\x7a\\xa4\\x82\\xe5\\x58\\x9d\\x0d\\x8e\\xc0\\xf8\\x7b\\\r\n\\x6f\\x8a\\xba\\x3a\\xa5\\xa3\\x97\\x87\\x81\\x99\\xd5\\x33\\xc2\\xe6\\x4b\\x0e\\\r\n\\x53\\x14\\x61\\x6d\\x0a\\xde\\x27\\x5c\\xbf\\x2e\\x99\\x7e\\xa7\\x8b\\x30\\xa4\\\r\n\\x83\\x24\\xaa\\xcc\\x65\\xe5\\x9d\\x0e\\x74\\xf8\\x77\\x59\\x18\\x36\\x84\\x2e\\\r\n\\x66\\xfc\\x27\\x51\\x71\\xdf\\x1c\\x33\\x88\\xf0\\xe9\\x29\\x54\\x88\\x16\\x7a\\\r\n\\xc5\\x95\\x98\\x47\\x05\\x41\\xe6\\x00\\x72\\xa8\\xbc\\x52\\xf2\\x73\\x69\\x99\\\r\n\\xaf\\x96\\xda\\x58\\x5f\\x5b\\xcb\\xcc\\x9c\\x34\\x72\\xa3\\xc3\\xcc\\xbe\\x52\\\r\n\\xdd\\x8d\\xaf\\xad\\x89\\xd0\\x77\\xb7\\xd2\\xf7\\xc7\\x0c\\xa6\\x97\\x87\\xcc\\\r\n\\x9e\\x06\\xf8\\xac\\x79\\xab\\xaa\\x10\\xd7\\xba\\x77\\xde\\xf7\\xdf\\x6f\\xcf\\\r\n\\x13\\xd6\\x2d\\x4c\\x2b\\x94\\x66\\x08\\xa8\\x2d\\xfc\\x60\\x0b\\x76\\xd0\\x7d\\\r\n\\xff\\x00\\x2c\\x7e\\xd7\\xa6\\x85\\xe7\\xba\\x92\\xe3\\xa4\\x26\\xc3\\x35\\xb4\\\r\n\\xd7\\xc8\\x6f\\xfa\\x62\\x35\\x69\\x5e\\xa9\\x63\\xc9\\x9f\\x5a\\x84\\xef\\x69\\\r\n\\x15\\xb9\\xab\\x6b\\x5b\\x43\\x7c\\x84\\x6a\\x0e\\xa0\\xe9\\x7c\\x70\\xca\\x89\\\r\n\\xda\\x99\\x27\\x89\\x8b\\x45\\x2d\\xda\\x45\\x2d\\x66\\x49\\x6e\\x55\\xc2\\xeb\\\r\n\\xf2\\x30\\x22\\xc7\\xb8\\xd3\\x1c\\x59\\xd8\\x87\\x37\\x1c\\xbc\\xb7\\x90\\x16\\\r\n\\xcc\\x02\\xb2\\x72\\xd9\\x8e\\xb6\\xf9\\x6d\\xb1\\xb6\\x05\\xfa\\xe9\\x84\\x8c\\\r\n\\xb0\\x24\\xb6\\x55\\x06\\xc3\\x25\\xee\\xa6\\xfe\\xab\\xf7\\xed\\xa6\\x28\\x2a\\\r\n\\x5e\\x96\\x71\\x1e\\x63\\xca\\x7b\\x69\\xbe\\x42\\x0d\\xd7\\x2f\\xf1\\x0d\\x6c\\\r\n\\x6f\\xb1\\x21\\x8e\\xa7\\x14\\x9c\\x51\\x51\\xb4\\x61\\x96\\x40\\x2c\\x7f\\x88\\\r\n\\x7e\\x2d\\x41\\xff\\x00\\x4b\\x7d\\x31\\xef\\xf4\\xf9\\x45\\x86\\x62\\xd6\\x19\\\r\n\\x4d\\xbb\\x8d\\x6f\\xd5\\xb5\\xf1\\x5b\\x52\\xab\\x04\\x94\\xec\\xae\\x65\\x95\\\r\n\\x32\\x47\\x91\\x1a\\x4c\\xeb\\xe3\\x41\\xd1\\x7f\\x06\\xf9\\xaf\\xd2\\x40\\xc0\\\r\n\\xf7\\x89\\xa0\\xa4\\xa9\\xa8\\x47\\x80\\x47\\x1a\\x52\\xe8\\x18\\x37\\xc4\\xb2\\\r\n\\x31\\x98\\xfe\\x1c\\xc3\\xcb\\x41\\xbf\\x9e\\x2b\\x69\\x9a\\x9b\\xdd\\x69\\x00\\\r\n\\x52\\x6a\\xe5\\xca\\xcc\\xba\\x72\\xe0\\x41\\x9e\\x67\\x2b\\xf3\\x74\\x0b\\x76\\\r\n\\x06\\xe3\\x00\\x0e\\x6c\\xf1\\xc6\\x17\\x29\\x85\\x19\\x72\\xb2\\x81\\x70\\x7b\\\r\n\\x6a\\x06\\x80\\x9e\\xda\\x5b\\x08\\x72\\x9a\\xa7\\xba\\xb2\\xda\\x29\\x01\\x03\\\r\n\\x76\\x50\\x0a\\x37\\xfd\\x3c\\xb0\\xa7\\xeb\\xdb\\x15\\x30\\x89\\x72\\xc8\\x15\\\r\n\\x74\\x5b\\x29\\xb2\\xe6\\xb9\\x43\\xd4\\x0d\\xf6\\x46\\xb5\\xad\\xbd\\xce\\x9d\\\r\n\\xf1\\x46\\x0c\\x92\\x46\\x8c\\xfa\\x85\\x63\\x97\\x37\\xa5\\xaf\\x96\\xfe\\x5f\\\r\n\\xd7\\xd6\\xdc\\x1b\\xfc\\x3b\\x71\\x6a\\x58\\xed\\x7f\\x7c\\x86\\xac\\x47\\x62\\\r\n\\x6e\\x25\\xa6\\x89\\x67\\x52\\x0d\\x80\\x2f\\x2c\\x2e\\x15\\xfc\\x17\\x2c\\x18\\\r\n\\xf9\\xd4\\x24\\xdc\\x2e\\x48\\xe4\\x07\\x91\\x4d\\x54\\x62\\x7a\\xa8\\x81\\x59\\\r\n\\x0d\\x1b\\x33\\xdc\\xdf\\xe5\\xf0\\x96\\x50\\x4d\\xf5\\xb1\\x00\\xea\\x71\\x46\\\r\n\\x12\\xb7\\x96\\xe9\\x3b\\xcb\\x08\\x0e\\xc8\\xc4\\x64\\x59\\x01\\xeb\\xcf\\x6b\\\r\n\\x0c\\xda\\xfc\\xc6\\xfa\\x69\\x7d\\x31\\x2a\\xe5\\x8d\\x99\\x73\\x11\\xe2\\x89\\\r\n\\xbc\\x39\\x90\\x12\\x33\\x7d\\x34\\x16\\xbf\\x6b\\x1b\\x62\\x87\\x8b\\xfb\\xb8\\\r\n\\xa5\\x8a\\x47\\x17\\x94\\x67\\x27\\x3a\\xdf\\x28\\xd0\\xae\\xba\\x82\\x08\\x36\\\r\n\\x16\\xb5\\xc1\\x36\\x37\\xc4\\x35\\x42\\x58\\x91\\xb3\\x66\\x19\\x40\\xfa\\x7f\\\r\n\\x2f\\xbe\\x33\\x2f\\x97\\xe8\\x71\\xec\\xa9\\xa9\\x91\\x5c\\xd4\\xcc\\xcf\\x1c\\\r\n\\x69\\x4f\\x25\\x19\\x1b\\x08\\x4a\\x6b\\x19\\xdb\\xa9\\x1b\\xa4\\x1b\\xdc\\x2f\\\r\n\\xa6\\x98\\xe2\\x13\\x9d\\xd5\\x32\\xc6\\x85\\x46\\x63\\xb3\\x48\\xc3\\x40\\x34\\\r\n\\xd7\\xbf\\xa0\\x3f\\x4c\\x52\\x3a\\x06\\xb1\\x3a\\xf7\\xed\\xae\\x9f\\xf6\\xdb\\\r\n\\x15\\xb3\\xd9\\xc2\\xa6\\xe6\\xfb\\xf8\\x16\\xfb\\xb1\\xd3\\xd3\\x40\\x0e\\xbe\\\r\n\\x83\\x14\\xaf\\xa4\\x95\\x4c\\xfa\\xb3\\x39\\x53\\x94\\xd8\\xaa\\x1b\\x69\\xf8\\\r\n\\x46\\xfb\\x6b\\x6e\\xe7\\xb5\\x67\\x1d\\x8d\\x63\\xcf\\x18\\xce\\x06\\x99\\x00\\\r\n\\x36\\xdb\\x00\\xc1\\x2f\\x3a\\x40\\x8d\\x9e\\x57\\x32\\x10\\x76\\x19\\xac\\x07\\\r\n\\x6d\\x46\\x96\\x1a\\x0c\\x45\\x55\\x14\\x26\\xda\\x67\\xcd\\xfa\\x5f\\xf9\\x7f\\\r\n\\x2c\\x56\\xce\\xf2\\xe5\\xea\\x36\\x1d\\x7f\\xcb\\xbe\\xff\\x00\\xdf\\xa6\\x22\\\r\n\\xe2\\x4e\\xad\\x20\\xcb\\x27\\x30\\x5b\\x6d\\x48\\x16\\xd4\\xf7\\xd3\\x02\\x76\\\r\n\\x32\\xa1\\x19\\x59\\x99\\xf4\\x12\\x0d\\x40\\xb6\\xbf\\xd0\\xf6\\x18\\xf6\\x82\\\r\n\\x91\\xe4\\xf7\\x6a\\xac\\xb1\\xf4\\xb0\\x3d\\x3e\\x96\\xbd\\xf4\\xd7\\xf3\\xc7\\\r\n\\xb1\\x7c\\x67\\xdf\\xe9\\xab\\x62\\x62\\x33\\xd3\\x56\\x65\\xca\\x2f\\xa4\\x72\\\r\n\\x44\\x99\\x0f\\xe8\\x40\\xb7\\x96\\x1e\\x5a\\x7b\\x4d\\x2f\\x34\\x14\\x83\\x37\\\r\n\\x34\\x86\\x0d\\xcb\\xca\\xb9\\x9f\\x37\\x60\\xd9\\x75\\xd6\\xdf\\x29\\xf2\\xc5\\\r\n\\x27\\xb6\\xf5\\x9c\\x46\\xb2\\x18\\x78\\x47\\xb3\\x95\\xb5\\xb0\\xe5\\x94\\xd6\\\r\n\\x4c\\xd2\\x24\\x11\\x40\\xe1\\x82\\xd3\\x95\\x9e\\x51\\xca\\x94\\xb7\\x56\\x70\\\r\n\\x84\\x95\\x19\\x6c\\x3f\\x15\\x3d\\x5f\\xb5\\x7f\\xb4\\x7f\\xf9\\x8f\\x0a\\xa1\\\r\n\\x1c\\x2d\\xb3\\xfc\\x4a\\x5a\\xa7\\x9e\\xa2\\x2b\\x2d\\xd3\\x3a\\x59\\x33\\x6b\\\r\n\\xa3\\x58\\x3f\\xa1\\x23\\x51\\xc6\\xab\\xe7\\x4a\\x78\\xa9\\x38\\x7d\\x9a\\xbf\\\r\n\\x89\\xcc\\x28\\xe9\\x0e\\xfc\\xac\\xca\\x4c\\xb5\\x4c\\x2d\\xa0\\xa6\\x84\\x34\\\r\n\\x86\\xfb\\x1c\\xa0\\x8c\\x70\\x8a\\x78\\x38\\x5d\\x2d\\x35\\x15\\x38\\x25\\x69\\\r\n\\xa1\\xe5\\xc7\\xe6\\x5f\\x35\\xde\\x42\\x4e\\xa5\\xe4\\x6b\\xbb\\x92\\x6e\\x58\\\r\n\\xeb\\xdb\\x1c\\x6a\\xa8\\xc3\\x47\\x67\\xee\\x4d\\x44\\x82\\xda\\x11\\x18\\xb9\\\r\n\\x17\\xd2\\xe2\\xf9\\x57\\x5b\\xf9\\x7a\\x60\\x56\\x1a\\xba\\x48\\x26\\x27\\xa1\\\r\n\\xd6\\x37\\x04\\x5b\\xc5\\xa9\\xb0\\x3f\\xc2\\x4e\\xc3\\xf4\\xc3\\x12\\x5f\\xa4\\\r\n\\x79\\xfe\\x5e\\x7a\\x79\\xe1\\xa2\\x67\\xed\\x75\\x2b\\x63\\xaf\\xa7\\xfa\\x69\\\r\n\\x83\\x78\\xe2\\x7a\\x72\\x0d\\xd3\\xaa\\x37\\x63\\x72\\xe9\\xdb\\xfe\\xa5\\xd9\\\r\n\\xbb\\x9d\\x0f\\x7c\\x53\\xca\\xde\\xf3\\x66\\x52\\x47\\x56\\xbd\\xbb\\x8b\\x7a\\\r\n\\x9c\\x30\\xd6\\xf9\\xb2\\xdf\\xbf\\x95\\xff\\x00\\xbd\\x7c\\xb0\\xb2\\x4d\\x4e\\\r\n\\x5d\\x0b\\x5e\\x29\\x1a\\xfe\\x7d\\x5b\\x69\\x70\\x77\\x19\\x4d\\xb4\\xd4\\x1b\\\r\n\\x77\\xc1\\xb9\\x80\\x9b\\x65\\xf1\\x58\\x58\\x5e\\xee\\xb6\\xd7\\x41\\x6f\\xcb\\\r\n\\x10\\x46\\x55\\xed\\x6d\\x87\\xf4\\xc3\\xd2\\xac\\x8c\\x2e\\xb7\\xb7\\x52\\x8e\\\r\n\\xe0\\xf7\\x1e\\x8a\\x4e\\x2a\\xfe\\x2d\\x9a\\xc1\\x64\\x87\\x60\\x34\\xd2\\xf6\\\r\n\\x6d\\x3b\\x86\\x1b\\xf6\\xfc\\xb1\\x5b\\x4f\\x1d\\x6d\\x51\\x41\\xa2\\x43\\x0e\\\r\n\\x55\\x3a\\x1e\\xa2\\x33\\xb2\\x8b\\x9b\\x8b\\xdc\\xdc\\x6d\\xa5\\xb7\\xda\\x5a\\\r\n\\x1e\\x18\\x62\\xa2\\x8e\\x7a\\x78\\x66\\x97\\xde\\x4a\\x99\\x82\\x84\\x97\\x63\\\r\n\\x65\\x12\\x26\\x56\\xb5\\xf6\\xb1\\x3b\\x61\\x68\\xac\\x80\\x2c\\x8c\\xd1\\x29\\\r\n\\xfd\\xd4\\xbd\\x44\\x68\\x45\\x83\\xb7\\x58\\x00\\x1f\\x3c\\x41\\x45\\x1e\\x40\\\r\n\\x51\\x9a\\x2c\\xab\\x66\\x52\\xc1\\xe3\\x63\\xb0\\x2b\\x7b\\xd9\\x81\\xd7\\xb1\\\r\n\\xed\\x83\\x18\\x8e\\x2d\\x1b\\x30\\x2c\\x0b\\x0d\\xf2\\xf9\\xfa\\xff\\x00\\x7b\\\r\n\\xe2\\xa3\\x95\\x36\\x62\\x91\\xdd\\x85\\xcd\\x86\\x8e\\x4d\\xb6\\x17\\xf1\\x7a\\\r\n\\x0c\\x70\\xea\\x5a\\x9a\\x8a\\x85\\xf7\\x79\\x69\\x21\\x62\\xae\\x59\\x4a\\xb4\\\r\n\\xf2\\xa8\\x43\\x75\\xe6\\x27\\x3a\\x21\\xab\\x76\\x04\\xe5\\x60\\x2f\\x7c\\x70\\\r\n\\xae\\x65\\x0f\\x19\\xa8\\xe1\\x55\\x35\\x6f\\x1d\\x35\\x62\\xc9\\x59\\x4e\\x51\\\r\n\\x62\\x8d\\x3d\\xe4\\x7f\\xe6\\x50\\x67\\x47\\xc8\\x41\\x07\\x44\\x23\\x51\\xae\\\r\n\\xba\\xe3\\x8b\\xc4\\xec\\xe7\\x20\\xa9\\x96\\x98\\xdc\\x34\\xd9\\xe3\\x21\\xf2\\\r\n\\x9b\\x9b\\xa6\\x60\\x58\\x01\\xe4\\x0e\\x9a\\xed\\x8a\\x9a\\x6a\\x35\\x9c\\x72\\\r\n\\x18\\x48\\xa5\\x00\\x61\\x61\\x61\\x22\\xea\\x05\\x86\\xb9\\xb2\\x9b\\xea\\x2f\\\r\n\\xb7\\x61\\x8f\\x74\\xd0\\x3f\\x87\\x29\\xb8\\xfa\\x77\\xfd\\x3e\\xb8\\xa4\\x87\\\r\n\\x39\\x46\\x52\\x48\\x73\\xa3\\x5d\\x7f\\x20\\x2c\\x59\\xbf\\x20\\x3b\\xf9\\x5e\\\r\n\\x8e\\x88\\x16\\x22\\xd9\\x18\\x0d\\xed\\x99\\xc7\\x73\\x62\\xd7\\xb7\\xd8\\x69\\\r\n\\x7d\\xf1\\x2f\\x03\\x88\\xce\\x27\\xa8\\x7a\\xa7\\xeb\\xbd\\xf9\\xee\\xd6\\x8c\\\r\n\\x9b\\x69\\x7b\\x80\\x41\\xf1\\x64\\x0b\\xa6\\xd9\\x71\\x55\\xc3\\xa3\\x09\\x2f\\\r\n\\x25\\x64\\x72\\x99\\x88\\x43\\x21\\x62\\x41\\x02\\xe4\\x5f\\x76\\x8f\\xa6\\x55\\\r\n\\xda\\xe0\\xd8\\x8b\\x1b\\x98\\xa7\\x92\\x6c\\xac\\x24\\x46\\x96\\x96\\x14\\x89\\\r\n\\x5e\\x50\\x26\\x47\\x92\\x55\\x59\\x2a\\x12\\x32\\xf6\\x21\\x42\\x72\\xd7\\x2b\\\r\n\\x5d\\xd5\\xaf\\xe1\\xc5\\x04\\xc4\\x56\\x5d\\xc0\\xce\\x57\\x2b\\x26\\x8a\\x00\\\r\n\\xd4\\x59\\x43\\xda\\xfa\\x79\\x31\\x3d\\xbd\\x4e\\x49\\x63\\x96\\x72\\x5b\\x32\\\r\n\\xc8\\x56\\x24\\x88\\x58\\x95\\xcf\\x2e\\x42\\x64\\x5f\\x94\\x00\\x6e\\x14\\x5e\\\r\n\\xe3\\x5b\\x80\\x05\\xd6\\x52\\xd4\\x88\\x84\\x59\\xd1\\xf2\\x1b\\xe9\\x61\\xa9\\\r\n\\x4b\\xfa\\x1d\\xed\\xf5\\xc2\\xf0\\xb4\\xab\\x93\\x3e\\xa9\\x35\\x3d\\x9e\\x1a\\\r\n\\x84\\xe9\\xc8\\x6f\\x7b\\x3b\\x5c\\x06\\x8d\\x80\\x21\\x91\\xaf\\x98\\x6c\\x2f\\\r\n\\x83\\xc3\\x6a\\x69\\x6b\\x16\\xb2\\x3e\\x4b\\x67\\x99\\xe9\\x2a\\x63\\xcc\\x55\\\r\n\\x6e\\x1d\\xa4\\x12\\x2b\\xb8\\xd1\\x0a\\x4c\\x2c\\xcd\\xe0\\x64\\x5c\\xc0\\x83\\\r\n\\x8e\\x33\\xc4\\xa8\\x68\\xe3\\xa8\\x35\\x6c\\x93\\xac\\x90\\xf2\\x8c\\x08\\x43\\\r\n\\xca\\xf3\\xaa\\x10\\x81\\x14\\x5f\\x42\\xee\\x4e\\x6b\\xf4\\x01\\x98\\xf6\\x07\\\r\n\\x81\\xf1\\x2a\\xe8\\xa9\\x5a\\x96\\x0a\\x56\\xaa\\xae\\x91\\x79\\x56\\x12\\x1c\\\r\n\\x91\\x53\\x25\\xdb\\x93\\x10\\xe8\\x03\\x47\\x39\\xe4\\xe6\\x02\\xd7\\xec\\x00\\\r\n\\xc1\\xe1\\xfc\\x72\\xb2\\x3e\\x77\\x10\\xa9\\x8e\\x8e\\x15\\x01\\x52\\x0a\\x7c\\\r\n\\xb9\\x92\\x3c\\xc2\\xf6\\xe5\\xa8\\x50\\x00\\xb6\\xef\\x21\\xd3\\x61\\xa9\\x3c\\\r\n\\x17\\x86\\x51\\xaa\\x4d\\x52\\x62\\xcf\\x50\\x95\\x23\\x2b\\x36\\xdc\\xb4\\x21\\\r\n\\x74\\x02\\xd7\\x66\\x17\\x97\\x6d\\x73\\x0d\\x4e\\x1b\\x8b\\x52\\x2d\\xa1\\x32\\\r\n\\x46\\xb2\\x01\\x95\\x92\\x3e\\xa2\\x3b\\x28\\x60\\xbe\\x13\\xa6\\xc6\\xdb\\xdc\\\r\n\\x61\\x65\\x39\\x47\\x5f\\x61\\xf3\\xdb\\xf4\\xbe\\x3d\\x8d\\xa8\\x43\\x45\\x1a\\\r\n\\x22\\xdd\\x05\\x20\\x2e\\x7f\\x88\\xb1\\x02\\xda\\xf8\\x6c\\x05\\xb5\\xbd\\xce\\\r\n\\x38\\xcc\\xcf\\x2d\\x1a\\x04\\x60\\x02\\x48\\x19\\x86\\xb7\\x36\\xbf\\xa9\\xdb\\\r\n\\xed\\x8a\\x59\\xdd\\xd3\\x99\\x7c\\xa1\\x7c\\x7d\\xf6\\xfd\\x4d\\xf7\\xee\\x3b\\\r\n\\x63\\x8a\\xd6\\x72\\xe8\\x27\\x99\\x65\\x05\\xc4\\x64\\x28\\xbe\\x5e\\xa6\\xd0\\\r\n\\x11\\xb5\\xce\\xb8\\xe1\\x14\\xeb\\x53\\xc3\\xa0\\x8e\\x42\\x4f\\x36\\x9f\\xab\\\r\n\\xa8\\x9d\\x5e\\xfe\\x1d\\x3c\\x9b\\x7f\\xcb\\x1c\\x47\\x85\\xb5\\x37\\x4a\\x05\\\r\n\\x55\\x5d\\x0b\\x1e\\xab\\x8b\\xee\\x4e\\xc0\\xdb\\xca\\xff\\x00\\x63\\xa6\\x2a\\\r\n\\x2a\\xe4\\xa5\\xba\\xb2\\x00\\x2c\\x08\\x6d\\xee\\x3b\\x6d\\x7f\\xef\\x5c\\x25\\\r\n\\x49\\xa8\\x67\\x6d\\xfa\\xf4\\x16\\xd4\\x6a\\x74\\xf3\\xdf\\xfd\\xf1\\x48\\x2f\\\r\n\\x15\\xa6\\xf1\\x35\\x82\\x9f\\x2f\\xee\\xde\\x58\\x62\\xd0\\xbd\\x44\\xb1\\x86\\\r\n\\x32\\x73\\xa4\\x8f\\x36\\x61\\x94\\x0d\\x14\\x5b\\x5b\\x78\\x81\\x07\\x14\\x09\\\r\n\\x35\\x45\\x58\\x09\\x76\\x6f\\x9c\\x8e\\xae\\xab\\x0d\\xc9\\xf3\\x1d\\xbf\\x3c\\\r\n\\x4f\\xc3\\x24\\x7a\\x46\\x8e\\x4d\\x58\\x8b\\x47\\xe8\\xd6\\x3b\\x5c\\xef\\xe9\\\r\n\\xfa\\xe3\\xd9\\xba\\xd3\\xc2\\xa7\\xe2\\x30\\xb8\\x6e\\x6c\\x90\\x65\\xca\\xaa\\\r\n\\x7f\\x79\\x1e\\x60\\x2f\\x96\\xe4\\xe8\\x6f\\xa7\\xdf\\x4c\\x70\\x4f\\x66\\xab\\\r\n\\x1a\\x9a\\x26\\xa9\\xe2\\xb5\\x4b\\x4d\\xc4\\xa6\\xe6\\x4f\\x4a\\x00\\xb1\\x85\\\r\n\\x43\\x39\\xce\\x0f\\x56\\x67\\xb6\\x5b\\x06\\xf0\\xb6\\xf7\\x36\\xc4\\x71\\x53\\\r\n\\x52\\xc4\\x90\\x52\\xc1\\x1c\\x10\\xc4\\x02\\xa4\\x51\\xa8\\x44\\xd3\\x6b\\x85\\\r\n\\xd2\\xfe\\x67\\x53\\x7b\\xeb\\x89\\x67\\xb0\\x3a\\x05\\x55\\x5d\\x58\\x9d\\x80\\\r\n\\xd4\\x92\\x4f\\xf6\\x31\\xc2\\x95\\xab\\x6b\\xea\\xb8\\xcc\\xcb\\x68\\x96\\xf4\\\r\n\\x3c\\x2c\\x1b\\xdf\\x90\\x1c\\x7b\\xcd\\x45\\x8e\\xb9\\xaa\\x24\\x00\\x2b\\x7e\\\r\n\\x05\\x02\\xf7\\x04\\xe2\\x80\\x2e\\x6c\\xc4\\x5e\\xd7\\xb5\\xef\\xe9\\xeb\\xfa\\\r\n\\xef\\x8a\\x98\\x1f\\x8b\\xb7\\x1a\\x45\\x37\\x8e\\x92\\x9c\\x53\\x82\\x05\\xef\\\r\n\\x2c\\xb7\\x77\\xd3\\xcd\\x40\\xb9\\xfb\\x76\\xc7\\x02\\x95\\x5e\\x8d\\x38\\x73\\\r\n\\xb0\\x12\\x43\\x20\\x02\\xf7\\xb9\\x0a\\x40\\x61\\x6f\\x4f\\xe9\\xaf\\x96\\x39\\\r\n\\x29\\x4d\\x2c\\x8a\\xaf\\x9b\\xc2\\x05\\xf7\\x39\\x81\\xd0\\x5c\\x9e\\xcb\\x89\\\r\n\\x4a\\x85\\x5b\\x59\\x43\\x01\\xb8\\xb7\\x7c\\x56\\xc7\\x9b\\xae\\x2f\\x1a\\x02\\\r\n\\xca\\x3c\\xc5\\x88\\x2a\\x7b\\xd8\\x8d\\x3e\\xa3\\x6c\\x65\\x3c\\xf8\\xf2\\xfc\\\r\n\\xcc\\x75\\xfe\\xfb\\x8e\\xfd\\xb0\\x91\\x82\\x0d\\xc7\\x50\\x1a\\x5c\\xdb\\x5f\\\r\n\\xe5\\x89\\x23\\x53\\x6b\\x0d\\x6f\\x7d\\x4d\\xc5\\xff\\x00\\xa0\\xc2\\x25\\xd2\\\r\n\\xcd\\xe9\\xa7\\xaf\\xf7\\xfe\\xda\\x61\\x42\\xab\\xdf\\xee\\x6f\\x89\\x1d\\x6d\\\r\n\\x75\\x23\\x35\\x8f\\xf2\\xd7\\x4f\\x21\\xe9\\xae\\x2a\\xe4\\xcc\\xf9\\x82\\xda\\\r\n\\x54\\x1d\\x4a\\x37\\x95\\x01\\xb3\\x30\\x1d\\xc0\\xf4\\x1f\\xae\\x26\\xac\\x48\\\r\n\\x9a\\xaa\\x51\\x1e\\x5e\\x73\\xcc\\x22\\xdf\\x53\\x19\\xcb\\xde\\xdf\\xd7\\x51\\\r\n\\x8a\\x18\\x6a\\x27\\x92\\x91\\xd8\\x9b\\x73\\xa5\\x97\\x2b\\x16\\x23\\x2c\\x6a\\\r\n\\xdb\\x0b\\x83\\xb9\\xb5\\xff\\x00\\x2b\\xe1\\x27\\x0c\\x50\\x31\\xcb\\xaa\\xdf\\\r\n\\x4b\\x5b\\x36\\xc2\\xde\\x57\\x20\\x5c\\xeb\\x63\\xe6\\x31\\x19\\xe9\\x65\\xd1\\\r\n\\x40\\x66\\xf3\\x37\\x1e\\x87\\x5c\\x3e\\x6f\\x8b\\x1a\\x86\\xed\\x6d\\x34\\x20\\\r\n\\xe5\\x3a\\x1b\\x5f\\x4b\\xfe\\xbd\\xc6\\x0a\\x2c\\x30\\xc9\\x29\\x07\\x28\\x0c\\\r\n\\x19\\xb7\\x23\\xe6\\x27\\xff\\x00\\xf3\\xf7\\xc6\\x49\\x22\\xa8\\xf7\\xcc\\xf2\\\r\n\\x03\\x6c\\xd1\\xa7\\x80\\x01\\xba\\xdf\\x50\\x7b\\x0d\\x41\\x1a\\xdf\\x7e\\xf5\\\r\n\\x95\\xb2\\xd4\\x0a\\x5e\\x64\\x83\\x9b\\x45\\x30\\x95\\x24\\x36\\xcc\\x7a\\x87\\\r\n\\x35\\x4b\\x58\\xb9\\x0e\\x18\\xdc\\x03\\xa9\\xdf\\x7d\\x27\\xaa\\x8a\\xba\\x0a\\\r\n\\x34\\x8f\\xdd\\xe9\\xda\\x68\\x8c\\xb1\\x2b\\x4a\\xaa\\x65\\x8d\\xee\\x87\\x2c\\\r\n\\x6f\\x67\\x47\\x0c\\x09\\x21\\xc0\\x0d\\xae\\x52\\x5b\\x4c\\x54\\x5e\\x8f\\x88\\\r\n\\x27\\x31\\x19\\x15\\x98\\x45\\xd7\\x71\\xd5\\xaf\\x2d\\xec\\x0e\\xcc\\x3a\\x2f\\\r\n\\xde\\xda\\x8c\\x43\\x08\\x96\\x78\\xd7\\x29\\xb3\\x25\\xce\\x9a\\x5b\\xbe\\xfb\\\r\n\\x8f\\xec\\xe2\\x9e\\x94\\xd0\\xf1\\x14\\x86\\x55\\x22\\x09\\x4a\\xcb\\x08\\x1d\\\r\n\\xac\\xc7\\x38\\x07\\x5e\\xf6\\xd3\\x6b\\x1b\\xef\\x89\\x29\\x94\\x80\\x63\\x36\\\r\n\\x36\\xe9\\x7b\\x79\\x8e\\xfe\\x9f\\x5e\\xf8\\x1c\\x46\\x23\\x33\\xf0\\xea\\xd4\\\r\n\\x58\\x25\\x65\\x2b\\x1c\\xa7\\x48\\xa6\\x5d\\x40\\x65\\x6e\\xc6\\xff\\x00\\x41\\\r\n\\x7e\\x92\\x43\\x5c\\x62\\x9d\\x8c\\xb1\\xcf\\x18\\xbf\\x32\\x2c\\xa3\\x7d\\x5b\\\r\n\\x28\\x31\\xbf\\x7d\\x9a\\x31\\x7b\\x8e\\xe0\\x1c\\x49\\x4d\\x4d\\x07\\x2c\\x72\\\r\n\\xc3\\xd3\\xbd\\xde\\x56\\xb5\\x98\\x49\\x39\\xcc\\x64\\xe9\\x3b\\x66\\x24\\xda\\\r\n\\xda\\x0b\\x0d\\x6d\\x89\\x78\\x7d\\x2b\\x10\\x8a\\x32\\x02\\xa0\\xae\\xe7\\x73\\\r\n\\xad\\x8d\\xee\\x34\\xd9\\x81\\xbf\\xd3\\x5c\\x4f\\x02\\xd1\\x56\\x43\\x0e\\x63\\\r\n\\xee\\xf3\\x5d\\x83\\x48\\x73\\x3e\\x4c\\x99\\x80\\x66\\xdb\\xa1\\xd6\\xf9\\x8e\\\r\n\\xb6\\xde\\xeb\\x7c\\x7b\\xb4\\x14\\xc8\\x25\\xac\\x90\\xbd\\xff\\x00\\x77\\x46\\\r\n\\x96\\x32\\x49\\xbe\\x52\\xf2\\xe6\\xb8\\x0c\\x35\\x54\\xea\\xbf\\x9a\\x5c\\x83\\\r\n\\x57\\xc4\\xaa\\xb9\\x00\\xf0\\xf8\\xa1\\x28\\xa4\\x44\\x89\\x33\\xf2\\x21\\x84\\\r\n\\x80\\xa2\\xf3\\x1e\\xa7\\x6b\\xde\\xc9\\xcb\\x47\\x2c\\x03\\x92\\x57\\xc4\\x6b\\\r\n\\x29\\x6a\\x3f\\xc6\\x57\\x7b\\x41\\xc6\\x27\\xa6\\xa3\\xa6\\x89\\x6a\\xa7\\xa6\\\r\n\\xe1\\xd9\\x29\\xe9\\x5d\\x2c\\xc1\\xb5\\x74\\x79\\x64\\x92\\xf1\\x2c\\x6b\\xa8\\\r\n\\x2c\\x5b\\xbf\\x6e\\x07\\xc3\\x21\\xab\\x2b\\xc7\\xe4\\x85\\xa9\\xe1\\x97\\x99\\\r\n\\x27\\x0a\\xa7\\xa8\\x62\\xd9\\x29\\x95\\xd9\\x79\\xd3\\x19\\x58\\xb3\\xcd\\x28\\\r\n\\x17\\xcc\\xd7\\xbe\\xe9\\x95\\x72\\x83\\xc2\\xf2\\xaf\\x18\\xab\\xa0\\x8a\\x4c\\\r\n\\xb2\\x0b\\xcf\\x45\\x22\\xec\\x26\\x84\\x66\\x1d\\xcf\\x4c\\x88\\xf9\\x08\\x03\\\r\n\\xc8\\xf6\\xd7\\x89\\xf1\\xb3\\x1d\\x2a\\x52\\xe4\\x44\\x92\\x75\\x55\\x99\\x9d\\\r\n\\x9e\\x57\\x28\\xde\\x33\\x19\\x56\\xb0\\x3a\\x15\\x5b\\x2b\\x0b\\x6d\\x6b\\x5c\\\r\n\\xf3\\x2b\\x78\\x81\\xe4\\xd2\\xa3\\x52\\x44\\xdc\\xb6\\x26\\x6b\\xd3\\xc0\\x89\\\r\n\\xcb\\x08\\x9d\\x20\\xf3\\x1f\\xa0\\x0d\\xc9\\x50\\x40\\x27\\x28\\xb6\\x29\\xe9\\\r\n\\xa9\\xe8\\xea\\x20\\x48\\x9d\\xaa\\xa5\\xce\\x04\\xae\\xea\\x56\\x10\\xd7\\x05\\\r\n\\x5a\\x21\\xaa\\xb2\\x85\\xf9\\xdd\\x89\\xba\\xf5\\x05\\xf0\\x8f\\xda\\x4b\\xe4\\\r\n\\xa7\\xd4\\x28\\x20\\xfa\\x82\\x34\\x23\\xca\\xda\\x63\\xd9\\xba\\x75\\xa1\\xf7\\\r\n\\xaa\\x75\\x25\\x95\\x41\\x44\\x73\\xdc\\x2e\\x65\\x26\\xdd\\xae\\x6d\\x94\\x7f\\\r\n\\x3c\\x54\\x44\\xb1\\xa8\\xa7\\x92\\x4e\\xa9\\x43\\xca\\x13\\xba\\xa9\\x1b\\x1f\\\r\n\\xaf\\x6c\\x51\\xcc\\xd4\\xd3\\xcb\\x4f\\x28\\xd0\\xe6\\xdb\\x5d\\xbc\\x3e\\x5b\\\r\n\\xfa\\xdb\\x15\\x30\\xbd\\x5d\\x2e\\x66\\xa6\\x65\\xa7\\x88\\x97\\x72\\xf9\\x2c\\\r\n\\xc1\\xb4\\xcb\\x6c\\xd7\\xef\\xbe\\xdf\\x91\\xbf\\xb8\\x70\\xa8\\xe2\\x88\\xd3\\\r\n\\xf1\\x3a\\x9e\\x13\\x56\\x2f\\xf1\\x69\\xa7\\x24\\x30\\x45\\xb8\\x13\\x53\\xca\\\r\n\\x5e\\x9e\\x45\\x24\\xea\\x39\\x6a\\x5a\\xc4\\x16\\x38\\xac\\xe2\\x55\\xb0\\xc4\\\r\n\\x61\\xad\\x92\\x96\\xba\\x26\\x4b\\xc7\\xc4\\x28\\xc1\\x89\\x8d\\xf6\\x15\\x34\\\r\n\\x86\\xf9\\x24\\xf3\\x31\\x3b\\x03\\x6b\\xd8\\x62\\xbc\\xbd\\x54\\x2c\\x21\\x1d\\\r\n\\x56\\xd1\\xbe\\x52\\xad\\xbd\\xad\\x7f\\xef\\x4c\\x52\\x50\\x55\\xd3\\xbf\\x66\\\r\n\\xb9\\xcd\\x7f\\x09\\xd3\\xb5\\x8e\\x83\\xeb\\xfa\\x1c\\x4f\\x3c\\xb1\\xa0\\x7e\\\r\n\\xad\\x01\\x00\\x03\\xb1\\xb6\\xc0\\xe9\\xeb\\xbe\\x22\\x59\\x45\\x23\\x2f\\x25\\\r\n\\xd9\\xea\\x1b\\x98\\xf2\\x30\\xe9\\x45\\x27\\x75\\x36\\xd3\\x7e\\xa2\\x7e\\xd8\\\r\n\\xe1\\xac\\x16\\xa8\\x22\\x92\\x8b\\xce\\x8f\\x2b\\x86\\xd4\\x38\\xf1\\x31\\x6b\\\r\n\\x0b\\x8b\\x69\\x6c\\x51\\xbf\\xbd\\x49\\x19\\x27\\x37\\x2c\\x65\\xb0\\x3a\\x13\\\r\n\\x7d\\xfe\\xba\\x62\\xa3\\x87\\x37\\x0c\\xe2\\x2b\\x5d\\x10\\x0d\\xcc\\x6c\\xcc\\\r\n\\x7f\\x88\\xee\\x08\\xb6\\xa0\\xed\\xfd\\x71\\x41\\x5a\\xb5\\xb3\\xc0\\x6d\\xcb\\\r\n\\x30\\x24\\xb7\\x41\\xe1\\x26\\x4c\\xa0\\x30\\xda\\xe3\\x2d\\xf4\\xed\\x7c\\x4c\\\r\n\\xd6\\xc9\\xdb\\x33\\x5b\\xf4\\x27\\xfa\\x62\\x7e\\x6d\\x54\\xd2\\xf0\\xbe\\xa0\\\r\n\\xb2\\x94\\x95\\xe4\\x1d\\xa9\\x9b\\xc6\\x99\\x81\\xdd\\x98\\x65\\xbe\\x86\\xcc\\\r\n\\x37\\xb6\\x29\\xf8\\x7f\\x42\\xf2\\xd4\\x47\\x14\\x03\\x2e\\x50\\xb6\\xb0\\x00\\\r\n\\x8b\\x69\\xa6\\xdb\\x61\\xea\\x45\\x25\\x3c\\xf2\\x15\\xcb\\x1c\\x11\\x49\\x33\\\r\n\\xc9\\x7b\\x76\\xcd\\xfd\\x3f\\x2f\\x5c\\x7b\\x24\\x2d\\xc0\\x21\\x9a\\x65\\x61\\\r\n\\x3f\\x16\\x92\\x5a\\xe9\\x0b\\x5f\\xa5\\x2a\\x0f\\xc2\\x5f\\xa4\\x71\\x58\\x6e\\\r\n\\x35\\x07\\x4c\\x71\\x70\\x78\\x4f\\x1a\\x67\\x52\\x42\\x19\\x56\\x68\\xb2\\xdf\\\r\n\\x51\\xa9\\x71\\xa0\\xf0\\xe8\\x09\\xf4\\x6d\\x0e\\x1e\\xa1\\xb8\\x85\\x3c\\x95\\\r\n\\x14\\xdd\\x52\\xa5\\x34\\x75\\xb1\\xaf\\xe2\\x9a\\x96\\x4e\\x67\\x2f\\xb9\\x01\\\r\n\\xd7\\x32\\x9b\\x6f\\x7c\\xa4\\x6f\\x84\\x11\\x71\\x0a\\x7a\\x7a\\x9a\\x72\\x39\\\r\n\\x53\\x43\\x1c\\xaa\\xbd\\xc0\\x2b\\x7b\\x1d\\xf5\\x5d\\x88\\xbf\\x6c\\x54\\x52\\\r\n\\xc9\\x0a\\x17\\xf3\\x52\\x48\\x37\\x1a\\x1f\\x2d\\x31\\xa9\\x97\\x2f\\x72\\xd7\\\r\n\\xff\\x00\\x2f\\x6f\\xcf\\xf3\\xc4\\x6a\\xa5\\x47\\x56\\x6b\\xf7\\xf3\\xc3\\x20\\\r\n\\x1f\\xae\\x1b\\xa5\\x49\\x1d\\x86\\x9f\\xd7\\x0d\\x39\\x73\\xcb\\x5d\\x33\\x03\\\r\n\\xbe\\xdb\\x1d\\x7f\\x4c\\x71\\x8f\\x6c\\x6a\\xb8\\x15\\x43\\xc3\\x3d\\x2a\\xce\\\r\n\\x63\\x72\\x04\\x86\\x63\\x18\\x60\\x75\\x01\\xb2\\xc6\\xd6\\xf1\\x5c\\x5f\\x70\\\r\n\\x45\\xbb\\xe2\\x2f\\x6a\\x78\\x6d\\x7b\\xcb\\x51\\x53\\xc5\\x64\\xa4\\xe5\\x3a\\\r\n\\xfc\\x2a\\xd6\\x31\\x0e\\xab\\x96\\x48\\x39\\x37\\x59\\x50\\x2f\\x4e\\x76\\xca\\\r\n\\x33\\x10\\x5a\\xd9\\x80\\xc7\\x12\\x34\\xa6\\x86\\x9d\\xe9\\xe7\\x82\\x50\\x55\\\r\n\\x65\\x66\\x82\\xce\\xa0\\xb6\\xa7\\x2b\\x66\\x62\\x49\\xbd\\xce\\x9b\\x8f\\xb6\\\r\n\\x38\\x15\\x44\\x55\\x70\\x53\\x65\\xb6\\x7a\\x64\\x78\\x9b\\x4b\\x94\\xcc\\xf9\\\r\n\\x9a\\xfa\\x0d\\x19\\x40\\xb7\\xa1\\xc1\\x85\\x72\\x4b\\x60\\x45\\xaf\\x66\\xd6\\\r\n\\xf7\\x1a\\x83\\xa6\\xb6\\xd3\\x0f\\x21\\x70\\x24\\xf9\\x5d\\x41\\xfb\\x9d\\x0f\\\r\n\\xff\\x00\\xb6\\x25\\xcf\\x0a\\xe6\\x1a\\x9e\\x5a\\x1b\\x1f\\xe2\\x00\\x62\\xba\\\r\n\\x33\\x3f\\x0e\\xa6\\x2a\\x34\\xca\\xd2\\x1d\\xcf\\x55\\x89\\x3a\\x2e\\xe4\\xf9\\\r\n\\x6b\\xea\\x2f\\x8a\\xba\\xe2\\xcf\\x91\\x58\\xdd\\x5d\\x83\\x0b\\xfa\\xdb\\x55\\\r\n\\x3a\\xe8\\x46\\x2e\\xcd\\x28\\x24\\x0c\\x99\\xb2\\x9d\\x3b\\xb5\\x96\\xfe\\x63\\\r\n\\xcf\\xfd\\xf0\\x2a\\xeb\\xa0\\x9e\\x4a\\x99\\xa4\\x2d\\xca\\x12\\xd3\\xc0\\x73\\\r\n\\x30\\x01\\x01\\x70\\xa4\\x00\\x6f\\xa1\\x76\\x37\\x27\\xfd\\x0c\\x93\\xbd\\x47\\\r\n\\x0e\\x89\\x35\\x76\\xce\\x1b\\x33\\x1b\\x3e\\x7d\\xe3\\xb3\\x33\\x5f\\x20\\x02\\\r\n\\xdd\\xb7\\x38\\xf6\\x7e\\xba\\x4a\\x87\\x8e\\x59\\x24\\xca\\x21\\xa5\\x9a\\x51\\\r\n\\x99\\xb5\\xb4\\x51\\xf5\\xa9\\xb6\\x6d\\xca\\xeb\\x71\\x8e\\x1d\\x3b\\xf1\\x12\\\r\n\\x93\\xd4\\x22\\x03\\x13\\xe7\\x81\\x00\\xe8\\xca\\x46\\x4b\\x13\\xa5\\xee\\xbe\\\r\n\\x66\\xc7\\xb7\\x6c\\x78\\x50\\x2a\\x8f\\x12\\xfc\\x3f\\x5f\\xe1\\xff\\x00\\x30\\\r\n\\xb1\\x27\\xf4\\xc7\\x15\\xa3\\xa2\\xa9\\xa6\\x10\\x55\\x46\\xcd\\x29\\xd6\\x1e\\\r\n\\x5e\\x93\\x47\\x25\\xb5\\x64\\x3f\\x2f\\xad\\xf4\\x3d\\xfb\\x63\\x85\\xfb\\xd5\\\r\n\\x3f\\x10\\x93\\x87\\x3c\\xa2\\x29\\x0c\\x41\\xd2\\x59\\x53\\x99\\x2b\\xc5\\xb6\\\r\n\\x8b\\x9c\\x26\\x7b\\x10\\x4d\\xcb\\x5b\\x55\\x18\\x93\\x87\\x09\\x9a\\xa1\\x27\\\r\n\\x9e\\xaa\\xd1\\x9c\\xe8\\xa1\\xc2\\x23\\x42\\x6c\\x11\\xf2\\xa2\\x83\\x98\\x78\\\r\n\\x0d\\xf4\\xb5\\xb2\\xd8\\xde\\xf0\\xc1\\xcb\\x95\\x63\\x79\\xe6\\x19\\xee\\x60\\\r\n\\x26\\x43\\xba\\xdb\\xa4\\x83\\xa5\\xc0\\xd9\\x88\\xef\\xae\\x2b\\xe5\\xaa\\xa6\\\r\n\\x6e\\x6b\\x24\\x55\\x8b\\x43\\x04\\x93\\xc5\\x1b\\x2e\\x49\\x25\\x91\\x8e\\x54\\\r\n\\x8f\\x4c\\xc1\\xb2\\xd8\\x9f\\x08\\xbd\\x88\\x60\\x6f\\x89\\x26\\xe3\\x19\\x66\\\r\n\\xad\\xe2\\x55\\x72\\xc7\\x23\\xf3\\x67\\xa2\\x50\\xf6\\x82\\x09\\x10\\x17\\x8e\\\r\n\\x07\\x88\\x5e\\xd1\\xc9\\x96\\xc0\\x3e\\x6b\\x8b\\xf9\\x69\\xc2\\x6b\\x29\\xea\\\r\n\\x38\\x54\\x15\\x35\\xad\\x4d\\x4c\\xcc\\x85\\xaf\\x2c\\xaa\\xa9\\x61\\xa9\\x4b\\\r\n\\xb9\\x5c\\xea\\x2f\\x98\\x7c\\xcb\\xa1\\xb8\\x38\\xe2\\x7c\\x6a\\x97\\xda\\x9e\\\r\n\\x38\\x51\\xb5\\xf6\\x7b\\x86\\x05\\x57\\x2b\\x24\\x88\\x9c\\x46\\x74\\xbb\\x83\\\r\n\\x26\\x54\\x66\\xe4\\x89\\x01\\x11\\x59\\x49\\x22\\xed\\x94\\x66\\xbe\\x22\\xe2\\\r\n\\xf4\\xbc\\x42\\x9c\\x72\\x23\\x4a\\x71\\x48\\x86\\x26\\x8b\\x23\\xb4\\x74\\xb1\\\r\n\\xa0\\x2d\\x94\\xa1\\x7a\\x7e\\xc6\\xc8\\x17\\xc4\\xba\\x80\\x71\\x5d\\x5e\\x62\\\r\n\\xe2\\x71\\x56\\xd1\\xc8\\x50\\x84\\xe4\\x9a\\x94\\x87\\x26\\x7b\\x83\\x1b\\xfc\\\r\n\\x32\\x5d\\x33\\x18\\xd8\\xab\\x0e\\x61\\x04\\x77\\xb7\\x51\\xe1\\xd1\\x4b\\x2d\\\r\n\\x4b\\x4d\\xef\\x61\\x47\\xee\\x91\\xb3\\x42\\x83\\x37\\x81\\xcc\\x77\\x82\\x59\\\r\n\\x5b\\x53\\x66\\x71\\x90\\x8c\\xac\\x33\\x6a\\xc3\\x19\\xea\\xa5\\xad\\xa8\\xa5\\\r\n\\x0f\\x51\\x53\\x2a\\x44\\x04\\x92\\x24\\xf3\\xb8\\x31\\x0b\\x06\\xb0\\x66\\x09\\\r\n\\xd5\\xe0\\x52\\x17\\xcc\\xf6\\xc4\\x34\\xb5\\x04\\xa8\\x14\\xa2\\x2f\\x9f\\xfc\\\r\n\\x5d\\x54\\x93\\xcf\\x2c\\x36\\x20\\x46\\x90\\x43\\xe0\\x07\\xff\\x00\\xb8\\xc8\\\r\n\\x35\\x6d\\x74\\x55\\x3e\\xeb\\x3f\\xe1\\x81\\x7f\\x87\\x5e\\x9f\\xe1\\xf1\\x76\\\r\n\\xdb\\x1e\\xc9\\x3c\\x93\\xd1\\xb5\\x44\\xc0\\xb3\\x16\\x11\\xb1\\x3d\\x41\\xb4\\\r\n\\xdc\\x7e\\x78\\xad\\xa5\\xe5\\xf1\\x7e\\x7b\\x4c\\x14\\x10\\xa5\\x55\\xb3\\x12\\\r\n\\x50\\x0b\\x11\\xe9\\xf9\\x62\\xaa\\x89\\x4b\\x7b\\xc2\\x49\\x96\\x42\\x2c\\x50\\\r\n\\x2f\\x88\\x0d\\x9b\\x37\\x6d\\x0e\\xbe\\x7f\\x4c\\x52\\xbc\\x5f\\x12\\x9a\\x69\\\r\n\\x87\\x32\\x4e\\x95\\x8c\\x1b\\x87\\xd0\\xfe\\xbe\\x5e\\x76\\xc7\\x16\\xe0\\xe6\\\r\n\\xba\\x89\\x96\\x18\\x97\\x32\\x16\\x00\\x83\\x66\\xba\\x5c\\xd8\\x5b\\x63\\xbd\\\r\n\\xfe\\x98\\xfd\\x94\\xc3\\x87\\xcf\\xce\\x5e\\xa5\\x16\\xd6\\xe0\\x66\\xbd\\xb6\\\r\n\\xd7\\xb9\\xc0\\xe0\\x66\\x8a\\x1e\\x6e\\x7c\\xea\\xaa\\xad\\x97\\x42\\x6e\\xc3\\\r\n\\x5b\\x1b\\x5f\\xf3\\x07\\xfa\\xe1\\xe3\\x00\\xb1\\x00\\x7a\\xe9\\x71\\xa7\\xaf\\\r\n\\xe7\\x8a\\xc3\\x9a\\x06\\x76\\x51\\x6d\\xc7\\x7b\\x11\\xa7\\x6f\\xe5\\xf7\\x18\\\r\n\\xa3\\xe2\\x50\\xfb\\xa0\\x83\\x29\\xe6\\x08\\x9a\\x32\\x74\\xf9\\x85\\x87\\xde\\\r\n\\xc7\\x6f\\x3c\\x4b\\x23\\xac\\xe7\\x95\\x4e\\x02\\x45\\x62\\xed\\x9a\\xf7\\xb5\\\r\n\\xba\\x80\\xb6\\xe7\\xd4\\xdb\\xe9\\x6c\\x7b\\x37\\x58\\x92\\xa4\\x65\\x48\\xbf\\\r\n\\x7d\\x2c\\x74\\xdf\\xf3\\x3b\\xdb\\xb8\\xc5\\x50\\x8e\\xa1\\x11\\x34\\x2c\\x35\\\r\n\\x6f\\xcb\\xb7\\xd7\\x0b\\x4a\\x60\\x2b\\x24\\x37\\x52\\xbb\\x76\\xbe\\xb7\\xfe\\\r\n\\xed\\x8a\\x8a\\xd8\\xc8\\xa4\\x94\\x9b\\x05\\x62\\xee\\xbf\\xc4\\xaa\\x57\\x2f\\\r\n\\xae\\xa7\\xcb\\xbe\\xd8\\xab\\x9e\\x4e\\x15\\x57\\xc3\\xb8\\x84\\xd7\\xff\\x00\\\r\n\\xe6\\x15\\x22\\x92\\x74\\x37\\xb4\\x7c\\xf1\\xfe\\x18\\x58\\x5a\\xd9\\x5c\\x00\\\r\n\\xdb\\xeb\\xbe\\xd8\\xe1\\x28\\x2a\\x01\\x8d\\xdb\\x2a\\x0c\\xc6\\x57\\xbd\\x80\\\r\n\\x17\\x00\\x8c\\xc6\\xfa\\xe8\\x36\\xb7\\x8a\\xd8\\xff\\x00\\x89\\x55\\x09\\x4d\\\r\n\\xfb\\x33\\xd9\\xaa\\x29\\x7e\\x37\\x1e\\xac\\x86\\x9e\\x5e\\x5f\\x8d\\x68\\xd4\\\r\n\\x83\\x54\\xe7\\x28\\xd0\\x72\\xee\\x83\\x4f\\x13\\x7d\\xb1\\x13\\x7b\\xac\\x10\\\r\n\\x44\\x96\\x48\\xa1\\x8d\\x62\\x45\\xb9\\x23\\x2c\\x6b\\x95\\x45\\xb5\\xd7\\x7d\\\r\n\\x3f\\x16\\xba\\x63\\xda\\xc8\\x1e\\xa2\\x18\\xaa\\xad\\x66\\x8d\\xb2\\x9e\\xdd\\\r\n\\x16\\xca\\x2f\\xf7\\xb1\\xc7\\xb1\\xdc\\x4d\\xd7\\x8a\\x4d\\x49\\x35\\x82\\x98\\\r\n\\x1a\\x28\\xf5\\x1f\\xbc\\xcc\\x76\\xfc\\x20\\x8f\\x53\\xf9\\xe3\\x83\\x4a\\xd4\\\r\n\\x75\\x5c\\x43\\x85\\x31\\x1f\\xe1\\xdd\\xaa\\x69\\x35\\xbd\\xe9\\xea\\x18\\xbb\\\r\n\\xa0\\x1a\\x9f\\x85\\x31\\x61\\xae\\xca\\x57\\x6d\\x06\\x1e\\x7f\\x79\\x8a\\x41\\\r\n\\x6b\\xd8\\x12\\x3c\\x85\\x8e\\xa3\\x6f\\x4b\\xfd\\xf0\\xf0\\xb2\\xd5\\x5f\\xb5\\\r\n\\xff\\x00\\x2e\\xff\\x00\\xdf\\xd3\\x1c\\xa3\\xe2\\x4d\\x1a\\xc2\\xfe\\x47\\xea\\\r\n\\x36\\xd7\\xcf\\x7d\\xbc\\xb0\\xe5\\xc1\\x2a\\xc2\\xd7\\x1f\\x6f\\xb1\\x1a\\x1b\\\r\n\\xfa\\xdb\\x15\\x55\\x02\\x9d\\x06\\x6d\\x9e\\xe0\\x6d\\xb0\\xd4\\x93\\x7d\\xc6\\\r\n\\xf7\\xc7\\xed\\x25\\x5a\\xa0\\x84\\xd8\\xf6\\xdb\\x5b\\xed\\x70\\x2f\\x6d\\xff\\\r\n\\x00\\xae\\x3d\\xb3\\xe0\\x9f\\xb5\\xf8\\x4c\\x9c\\x52\\x0b\\x19\\xa9\\x46\\xb1\\\r\n\\x05\\xcc\\x67\\x58\\xe4\\xd3\\x26\\xfa\\xc6\\x03\\x1b\\x65\\x21\\xd6\\xe3\\x7b\\\r\n\\x5b\\x88\\x50\\x55\\xd7\\xca\\x91\\xc2\\x02\\xbd\\x44\\x8a\\x96\\x0a\\x23\\x89\\\r\n\\x05\\xba\\x9c\\x8b\\x04\\x8e\\x38\\xc5\\xde\\x43\\x60\\x02\\xa9\\x27\\xbe\\x38\\\r\n\\x72\\xd1\\x53\\x37\\xec\\xfa\\x23\\xef\\x14\\xc9\\x0a\\x45\\x1b\\x0f\\x9e\\x40\\\r\n\\xa3\\x99\\x31\\x27\\xc4\\x19\\xee\\xde\\x80\\xe9\\xd2\\x00\\xc7\\x0e\\xa3\\x34\\\r\n\\x2b\\x14\\xd1\\x07\\x58\\xe4\\x8f\\x95\\x38\\x3a\\xdf\\xa9\\x8c\\x72\\x2d\\xb4\\\r\n\\xdc\\xe5\\x2d\\x60\\x4a\\x10\\x3d\\x31\\x29\\xb2\\xb5\\xc8\\xd0\\xd8\\x7a\\xdf\\\r\n\\xfd\\x6e\\x7f\\x96\\x10\\xd8\\xa4\\x4d\\x6f\\x87\\x29\\xd3\\xe5\\x2a\\xdd\\x43\\\r\n\\x7f\\x23\\x71\\x7e\\xf8\\xab\\x06\\x4c\\xb9\\x2c\\x6e\\x15\\x4f\\x7e\\xd6\\x03\\\r\n\\xfa\\xfd\\xb1\\xc4\\x52\\x4a\\x7a\\x11\\x14\\x03\\x3c\\xa5\\x0b\\xda\\xf6\\xc9\\\r\n\\x9b\\x5c\\xc2\\xfd\\x36\\x07\\x7b\\x9b\\x7e\\x78\\x35\\x32\\x8e\\x29\\x25\\x35\\\r\n\\x5b\\xc8\\x95\\x5d\\x73\\x0c\\xd1\\x32\\xf3\\x81\\x19\\x86\\x8c\\x8a\\x0b\\x5b\\\r\n\\x29\\x5c\\x87\\x63\\xa5\\xf5\\x06\\x0a\\x85\\x9d\\x8a\\x23\\x86\\x51\\x67\\x94\\\r\n\\x5b\\x50\\xc0\\x1d\\xfb\\xf8\\xb4\\xfe\\x86\\xd8\\xab\\x81\\x64\\xcf\\x12\\xbd\\\r\n\\xf5\\x2c\\x57\\x25\\x81\\xbf\\x9b\\x6f\\x6f\\x4e\\xf8\\x48\\x9b\\x48\\x8a\\xca\\\r\n\\xea\\x72\\x21\\x90\\xab\\x00\\xac\\x74\\x5f\\x42\\x3b\\x02\\x2e\\x47\\x96\\x38\\\r\n\\x2c\\x30\\xa7\\x10\\x9b\\x87\\x73\\x55\\xcf\\x2d\\x64\\x8b\\x91\\x25\\xfa\\x26\\\r\n\\x6b\\xba\\xb1\\x39\\x48\\xf0\\x92\\x41\\x1a\\xf7\\xc7\\x0a\\xe4\\xc5\\x65\\x45\\\r\n\\xb2\\x81\\x76\\xf4\\x1d\\xbb\\x90\\x09\\xb6\\xd8\\x9a\\x75\\x27\\xdd\\xc0\\x04\\\r\n\\xe6\\xcf\\x09\\xbf\\x84\\x2f\\x72\\x76\\xfb\\x6e\\x7b\\xe9\\x88\\x4c\\x72\\x23\\\r\n\\x9b\\x95\\x99\\x7a\\x64\\xd7\\xa9\\x48\\xfc\\xba\\x0f\\xcb\\xe9\\x8e\\x35\\x09\\\r\n\\xa4\\xe2\\x7c\\x32\\xbc\\x4b\\x6c\\xe2\\x4a\\x76\\x76\\xcb\\x65\\xd0\\x10\\x4b\\\r\n\\x79\\x75\\x77\\xfe\\x58\\x78\\xaa\\xf2\\xc7\\x3c\\x2e\\x95\\x51\\xa8\\xe5\\xbb\\\r\n\\xc6\\x84\\x8e\\x54\\x9d\\x25\\x98\\xa3\\x15\\xe8\\x60\\x1b\\x53\\xa7\\x51\\xbe\\\r\n\\x3d\\xa0\\xac\\x7a\\x0a\\xee\\x0d\\x3d\\x54\\xd0\\xc5\\x0c\\x75\\xcf\\x05\\x48\\\r\n\\x8d\\xfc\\x14\\xf5\\x51\\x14\\xe6\\x48\\x1f\\x2f\\xee\\x8a\\xab\\x82\\x3a\\xae\\\r\n\\x35\\x52\\x2f\\x85\\xaf\\x12\\x71\\x17\\x0e\\xeb\\x55\\x07\\xb8\\xc3\\x0a\\xcf\\\r\n\\x10\\x25\\x27\\xe6\\xb9\\x94\\x4a\\xe4\\x01\\x94\\x94\\xcb\\xa8\\xb8\\x3d\\x56\\\r\n\\x6c\\x71\\x43\\x14\\xd4\\xfc\\xa5\\xa4\\x46\\x8b\\x26\\x42\\xa0\\x78\\x55\\x2c\\\r\n\\x02\\xf4\\xef\\xaf\\x7e\\xa2\\x7c\\xbb\\xe3\\x8c\\x97\\xe3\\x3c\\x42\\x2e\\x0f\\\r\n\\xc3\\x72\\xda\\x22\\x44\\xee\\x81\\x92\\x28\\x12\\xc7\\x34\\x4a\\x4d\\xfa\\x23\\\r\n\\x51\\x69\\x58\\x1d\\x42\\xe5\\x0b\\xae\\x38\\xa5\\x4c\\x1e\\xce\\x53\\xd0\\xf0\\\r\n\\xfa\\x37\\x49\\x5a\\xa6\\xce\\x6a\\x51\\x95\\x80\\x29\\x2a\\xab\\x0e\\x83\\x70\\\r\n\\x58\\x5c\\x75\\x35\\xd5\\x3c\\x36\\xd4\\x91\\x57\\x3f\\x1f\\x4a\\x79\\xa9\\xc4\\\r\n\\x54\\x15\\xd4\\xd1\\xb3\\xc7\\x0c\\x51\\x16\\xa6\\xa8\\x54\\x95\\xfa\\x2b\\x6d\\\r\n\\xe3\\x0c\\x49\\x58\\xdf\\x28\\x68\\xd8\\xdf\\xd7\\x15\\x95\\x32\\x71\\x38\\x5d\\\r\n\\xa4\\x8d\\x68\\x25\\xa2\\x45\\x35\\x34\\xf2\\x1f\\x88\\xf5\\x0c\\x56\\x36\\x29\\\r\n\\x71\\x77\\x43\\x72\\xf1\\x95\\xb0\\x0a\\x18\\x96\\x2c\\xd6\\x14\\x12\\x70\\xf8\\\r\n\\xf8\\x75\\x3b\\x53\\x4c\\x64\\xae\\x61\\xf1\\xa2\\x37\\x03\\xa6\\xe2\\x40\\xa5\\\r\n\\xb2\\xd8\\x96\\x19\\x81\\x04\\x93\\xe7\\x8f\\x67\\xeb\\xa1\\x79\\xf8\\xad\\x5f\\\r\n\\x28\\x23\\x3f\\x10\\x5a\\x78\\xec\\x6e\\x12\\x95\\x10\\x28\\x00\\x5c\\x92\\x49\\\r\n\\xbf\\xde\\xe6\\xd7\\x18\\xa9\\xac\\xa1\\xa2\\x46\\x91\\x81\\x13\\xe6\\x2c\\xc8\\\r\n\\xad\\x67\\x08\\xe7\\xa5\\xea\\x24\\xb7\\x4f\\x4f\\x87\\xf0\\xea\\xc1\\x57\\x6c\\\r\n\\x7b\\xcf\\x95\\x4f\\x0b\\x03\\xb0\\xf7\\x7c\\xf6\\x1d\\x86\\x77\\x39\\xdb\\xfc\\\r\n\\xcf\\xd4\\xdb\\xb6\\xb8\\xe0\\x7c\\x9a\\x0a\\x1e\\x46\\x52\\x8b\\x9b\\x38\\xcc\\\r\n\\x35\\xfe\\xfb\\x62\\xbe\\x85\\x26\\x9f\\xdf\\x66\\x97\\x34\\x68\\xa1\\xe2\\xfe\\\r\n\\x1b\\xff\\x00\\xcb\\xfb\\xfd\\xcf\\xe5\\x8a\\x5e\\x39\\x42\\x94\\xd2\\x48\\xf1\\\r\n\\x66\\x8a\\x12\\xc8\\xe5\\xa3\\xbd\\xcd\\x8e\\xd7\\x16\\xf2\\xef\\x8a\\x9f\\x6a\\\r\n\\xa3\\xa4\\xf6\\x96\\x6a\\xa4\\x0e\\x94\\x9d\\x4d\\x12\\x1b\\xd9\\x4e\\x5d\\x0d\\\r\n\\xba\\xad\\x9a\\xd7\\x03\\xcf\\xd0\\xdb\\x1c\\x1e\\xb2\\x1a\\xde\\x1f\\x49\\x55\\\r\n\\x09\\xcc\\x95\\x54\\xc9\\x38\\x36\\xea\\xcd\\x6e\\xa0\\x41\\xd9\\x83\\x5d\\x5b\\\r\n\\xd4\\x1b\\x63\\x89\\xf1\\x39\\xd6\\xae\\xa6\\x82\\x65\\x2f\\x1c\\xfc\\xb3\\x4a\\\r\n\\xe8\\x88\\x35\\x32\\x8d\\x24\\x60\\x05\\x90\\x2f\\xcc\\x41\\x2b\\x96\\xe4\\x95\\\r\n\\x3a\\x4f\\x48\\xe4\\x4b\\x51\\x25\\x54\\x6d\\x1e\\x48\\xa3\\x2b\\x0f\\x5a\\x67\\\r\n\\x02\\xc4\\x06\\xbd\\x85\\xbf\\x23\\xaf\\x7b\\x62\\x59\\x60\\x52\\xca\\x4d\\xc0\\\r\n\\xfb\\x79\\xef\\x89\\xe1\\x57\\x42\\x22\\x24\\xf5\\x5a\\xc4\\x6e\\x08\\xb8\\xb7\\\r\n\\x6f\\xd7\\xd7\\x14\\x9c\\x3c\\xf4\\xb3\\x29\\x42\\xb7\\xb5\\xed\\xaf\\xeb\\x8a\\\r\n\\xfa\\x74\\x8d\\xc0\\x1a\\xe7\\x02\\xf9\\x7b\\x9b\\x79\\xff\\x00\\x7b\\x63\\x80\\\r\n\\xc1\\x91\\x95\\x17\\xa4\\x79\\x83\\xdb\\x7b\\x5f\\xcf\\xfd\\x0e\\x20\\x8b\\x2e\\\r\n\\xad\\x72\\x6d\\xdf\\xd7\\x12\\xdf\\x2d\\xc0\\xdb\\x14\\xf5\\xa9\\x27\\x17\\xa7\\\r\n\\xa7\\x94\\x66\\x51\\x26\\x72\\xbd\\x8e\\x5d\\x6d\\x6f\\xae\\xfe\\x98\\xf6\\xd2\\\r\n\\x94\\x55\\xfb\\x31\\xc4\\x25\\x84\\x1e\\x75\\x34\\x69\\x5d\\x01\\xbf\\x50\\x96\\\r\n\\x8d\\xb9\\xe2\\xd7\\xb0\\xd7\\x26\\x5f\\x2e\\xad\\x8e\\x28\\x38\\xac\\x55\\x1c\\\r\n\\x12\\x82\\xaa\\x0c\\xaa\\x2a\\x29\\x60\\x9a\\x4c\\xa1\\x77\\xe5\\xa9\\x60\\x6f\\\r\n\\xae\\xe2\\xe6\\xc6\\xd7\\x53\\xdb\\x1c\\x32\\xaa\\x4f\\x6a\\xff\\x00\\xe2\\x65\\\r\n\\x7d\\x71\\x62\\xf4\\x1e\\xcf\\x41\\x24\\x31\\x11\\xe1\\x69\\xbe\\x62\\x36\\xff\\\r\n\\x00\\x98\\x72\\x9b\\xd8\\x59\\x6e\\x76\\xc5\\x15\\x5d\\x2d\\x6c\\x8d\\x0a\\x4f\\\r\n\\x4f\\x22\\x44\\x5b\\x99\\x92\\x44\\x95\\x95\\x98\\x1e\\x93\\x94\\xf4\\xdb\\x2d\\\r\n\\xc5\\xed\\xaf\\x9e\\xd8\\xe3\\xd4\\xab\\x2d\\x05\\x46\\x45\\xb2\\xcb\\x13\\x01\\\r\n\\x9a\\xdd\\x16\\xf0\\x86\\x1d\\xc9\\xd4\\xf7\\xed\\xa7\\x91\\x99\\xf8\\x65\\x6d\\\r\n\\x35\\x50\\xe9\\x2a\\xe1\\x1b\\x50\\x2e\\x55\\x8a\\x9b\\xef\\xdb\\xd3\\xfd\\xf8\\\r\n\\x95\\x66\\x58\\xf8\\x57\\x1f\\x84\\x12\\x69\\xed\\x1d\\x60\\x52\\x6f\\x25\\x34\\\r\n\\xe4\\x23\\xe6\\xb7\\xe1\\x36\\x65\\x27\\x45\\xbd\\xed\\xbe\\x3f\\x6b\\xd2\\x45\\\r\n\\x5b\\x05\\x00\\x62\\x65\\xab\\xa6\\x96\\xa9\\x6d\\xe0\\x4a\\x70\\xd1\\xaa\\xb3\\\r\n\\xb3\\x6b\\x79\\x4c\\x83\\x96\\x05\\xf3\\x04\\x90\\x92\\x32\\xe1\\xdd\\x5a\\x66\\\r\n\\x22\\xdb\\xf6\\xb1\\xdb\\x01\\xac\\x7f\\xa6\\x2a\\x24\\x00\\x5d\\xac\\x57\\x40\\\r\n\\x40\\xed\\xea\\x75\\xed\\xdb\\x15\\xb0\\xa4\\x91\\xc8\\x8e\\x33\\xa9\\x8d\\xc0\\\r\n\\xf4\\x04\\x7f\\xdb\\x11\\xcd\\x20\\xe2\\x61\\x45\\xa4\\x78\\xe4\\xe9\\xce\\x5b\\\r\n\\x96\\x23\\x5e\\xef\\x6e\\xab\\x2f\\xa6\\xfd\\xef\\x8e\\x1d\\xc3\\xe2\\x9e\\x86\\\r\n\\x49\\x5e\\xa4\\xeb\\x6b\\x18\\x99\\xba\\x08\\xbe\\x56\\x58\\xf3\\x32\\xf4\\x97\\\r\n\\x20\\x83\\xd4\\xc2\\xc1\\xaf\\x8e\\x3f\\xc2\\x2a\\x28\\xe5\\xae\\x96\\xc8\\x69\\\r\n\\xa5\\xbc\\x32\\x4b\\x4d\\x92\\x14\\x60\\x46\\x6c\\xa5\\x72\\x31\\x8d\\xce\\x55\\\r\n\\xcc\\x15\\xb5\\xd7\\x52\\x09\\xc7\\xb1\\x34\\x91\\xa3\\x4f\\x2f\\x2f\\x3c\\x77\\\r\n\\x54\\x5c\\xc3\\x37\\x2f\\xab\\xcc\\xe9\\xad\\xb7\\xb5\\xf1\\x25\\x50\\x58\\x39\\\r\n\\x72\\x2f\\xc3\\x2b\\x92\\xe1\\x4d\\xec\\x36\\x1e\\x1b\\x01\\xe5\\x8a\\x99\\xfe\\\r\n\\x10\\x8f\\x35\\xde\\xf6\\x53\\xa8\\xcd\\x6d\\xb7\\x1d\\xbb\\xe9\\xfa\\x62\\x15\\\r\n\\x67\\x92\\x9d\\x77\\xcb\\x1f\\x59\\x1d\\xcd\\xfa\\x7f\\xb3\\x89\\xea\\x21\\xa6\\\r\n\\x99\\x5a\\x46\\x05\\x7a\\x41\\x1b\\x58\\x9d\\x2d\\xb6\\xe7\\xcf\\xb6\\x38\\x95\\\r\n\\x6f\\xed\\x06\\x6a\\x5a\\x15\\x52\\x64\\x50\\x1a\\x5b\\x91\\x92\\xde\\x15\\x16\\\r\n\\xca\\x9d\\xb5\\x24\\xea\\x34\\xec\\x6f\\x59\\xc3\\xe2\\x92\\x8a\\x01\\x53\\x1e\\\r\n\\x79\\x63\\x00\\x33\\xe7\\x46\\x68\\xde\\x16\\x50\\x5d\\x18\\xa8\\x64\\x27\\xff\\\r\n\\x00\\xb6\\xe0\\x74\\xfd\\x46\\x17\\x81\\x49\\x1c\\xf2\\xd5\\x2c\\xb2\\x24\\x33\\\r\n\\x39\\x5b\\x15\\xc8\\x18\\x5c\\x8c\\xea\\xdb\\x11\\x7b\\xdc\\xfe\\x98\\xf7\\x68\\\r\n\\xa2\\x52\\x6a\\x02\\xa2\\xc6\\xd9\\x73\\x16\\x17\\x66\\x3e\\x1c\\xbd\\xde\\xe3\\\r\n\\xb6\\xbf\\x4d\\x30\\x65\\xa5\\x28\\xfe\\xee\\xf7\\x31\\x7e\\xf8\\x00\\x14\\x8d\\\r\n\\x34\\xb7\\xa1\\xec\\xc3\\xd7\\x1c\\x2e\\x82\\x18\\x69\\xaa\\x78\\x97\\xbd\\x24\\\r\n\\x75\\x88\\x62\\x31\\x73\\x56\\xd2\\x54\\x28\\x7e\\x5b\\x47\\x9c\\x0b\\x74\\x23\\\r\n\\x13\\xaa\\xa8\\x63\\xae\\x17\\x8b\\x54\\x32\\x18\\x22\\x37\\x08\\x6c\\x79\\x77\\\r\n\\x2a\\xc0\\x8e\\xc4\\x81\\x71\\x7e\\xf8\\x35\\x3c\\x41\\x67\\x87\\x26\\x7e\\x90\\\r\n\\x6c\\x6c\\x48\\xbb\\x76\\x3b\\x13\\xe5\\xbf\\xaf\\x9e\\x38\\x74\\x15\\xb5\\x59\\\r\n\\xde\\xae\\x47\\x41\\x27\\x83\\x94\\x42\\x72\\x98\\x5b\\x4d\\xba\\xd4\\xf7\\x0c\\\r\n\\x4e\\xa4\\x9d\\xf5\\xc4\\x7e\\xcc\\x52\\xf1\\x5e\\x2d\\x47\\x1d\\x7d\\x4c\\x92\\\r\n\\x22\\x32\\xdb\\x3d\\xd5\\x72\\x92\\x3c\\x4a\\x9b\\x9f\\x5f\\xb6\\xd6\\xc5\\x17\\\r\n\\x0f\\xa1\\xe1\\x70\\xfe\\xca\\x87\\x87\\x43\\x24\\x16\\x28\\xee\\xc9\\xd4\\xe0\\\r\n\\xee\\x73\\x76\\xb7\\x6b\\x6b\\x8f\\xf8\\xb7\\xec\\xed\\x39\\xa3\\xaa\\xa8\\xa1\\\r\n\\x0a\\xb2\\x70\\xfe\\xb9\\x12\\xd7\\x7b\\xc6\\xd9\\x83\\x23\\x05\\xd4\\x84\\x3d\\\r\n\\x57\\xf2\\x23\\x52\\x31\\xc0\\x1e\\x5e\\x20\\xc9\\x29\\x91\\xdd\\x64\\xa0\\xa4\\\r\n\\xbb\\x49\\x6c\\xc4\\x94\\x1c\\xcf\\x08\\x03\\xa6\\x6c\\xca\\x3f\\x84\\x0c\\x7b\\\r\n\\x42\\xed\\x45\\x4e\\x69\\xa9\\xd9\\xb9\\xd3\\x86\\x05\\x94\\x9c\\xd1\\x03\\xe2\\\r\n\\xfa\\x3b\\x5c\\x01\\xad\\xc6\\xe3\\xb5\\xe4\\x9a\\xa7\\x82\\xaa\\xb5\\x23\\xfb\\\r\n\\xa4\\xf2\\x33\\xa4\\xac\\xe8\\xad\\x21\\x57\\xce\\x8a\\x06\\x71\\x7d\\x18\\x99\\\r\n\\x34\\x23\\xac\\xab\\x13\\x71\\x62\\x28\\x27\\x94\\xf2\\x26\\x3c\\xea\\xd5\\x90\\\r\n\\x55\\x52\\xcf\\x98\\x84\\xa9\\x4c\\xd7\\x92\\x36\\x07\\xc0\\xeb\\x7e\\xa4\\x16\\\r\n\\x1b\\x11\\x75\\xd4\\x70\\xde\\x2f\\x5d\\xc3\\x62\\x79\\x21\\x40\\xb5\\xd5\\xb5\\\r\n\\x22\\x8e\\x9e\\x9f\\x20\\x66\\x10\\xc3\\x25\\xa6\\xe9\\x27\\x46\\x91\\xc9\\xcc\\\r\n\\xda\\x64\\x55\\x6c\\xba\\xdb\\x09\\xc2\\x9a\\x78\\x69\\xea\\xe6\\xb3\\xbc\\x51\\\r\n\\xc3\\x0d\\x64\\xe7\\x54\\x92\\xa6\\xa8\\x90\\xe8\\x2d\\x7c\\xa2\\x9d\\x4a\\x0f\\\r\n\\x9b\\xab\\xa8\\x80\\x2d\\x89\\x9a\\x4e\\x13\\x35\\x63\\x3b\\x90\\xb4\\x19\\x64\\\r\n\\xb7\\x76\\x46\\xf0\\xc8\\xbe\\x79\\xf4\\xf2\\x17\\x3d\\xaf\\x8f\\x65\\xca\\x9a\\\r\n\\x7a\\x8a\\xb2\\x8c\\x91\\x1a\\x95\\x01\\x9e\\xd7\\x12\\xa4\\x62\\x42\\x6c\\x7f\\\r\n\\x0b\\x35\\xf7\\xd7\\xbe\\x3d\\xa3\\x12\\xcf\\x41\\x5e\\xf4\\xee\\x79\\x9e\\xec\\\r\n\\xec\\x64\\x24\\x92\\x5a\\xe1\\xac\\x4e\\xa4\\xde\\xd6\\xfd\\x2f\\xe7\\x42\\x4c\\\r\n\\x94\\x54\\x72\\x30\\x52\\xcf\\x4b\\x4e\\xec\\x7c\\xd9\\xa2\\x42\\x4e\\xde\\x67\\\r\n\\x11\\x71\\xf7\\xe2\\xd5\\x86\\x9f\\x94\\x21\\x8b\\x55\\xd8\\xda\\xff\\x00\\x5d\\\r\n\\x3f\\x2c\\x5f\\x32\\x20\\xe2\\x0e\\x63\\x8a\\x9d\\x5b\\x54\\x26\\xd2\\x65\\x62\\\r\n\\x54\\x9d\\x89\\xba\\x6b\\x61\\x7b\\x9b\\x8b\\x9c\\x57\\xf1\\x9a\\x6a\\x9e\\x0e\\\r\n\\x68\\xb8\\x52\\x23\\x48\\xf9\\xa3\\xb1\\x40\\xb9\\x08\\x1b\\x90\\x06\\x9a\\x75\\\r\n\\x02\\x46\\xbe\\xa7\\x15\\x7c\\x31\\x65\\x8f\\xe3\\x2e\\x69\\x40\\x74\\x76\\x02\\\r\n\\xde\\x13\\x61\\x96\\xc3\\xca\\xda\\xfa\\x79\\x63\\xd9\\x5e\\x25\\x51\\x4d\\x07\\\r\n\\xb8\\x34\\xec\\x23\\xa6\\x36\\x8d\\x73\\x1f\\x03\\x36\\xd6\\xf2\\x52\\x7f\\x9e\\\r\n\\xda\\x63\\x88\\x53\\xa5\\x4f\\x29\\xcc\\x34\\xcd\\x63\\xd2\\x75\\x59\\x1a\\xcc\\\r\n\\x7a\\x1d\\x95\\x83\\x65\\x75\\x39\\x6d\\xe4\\x46\\xc7\\x65\\x8e\\x68\\x03\\xd4\\\r\n\\x34\\x9c\\xb8\\xa5\\x7c\\xb1\\xc2\\x0d\\xc4\\x61\\x6f\\x65\\xca\\x46\\x82\\xfd\\\r\n\\x3a\\xf6\\xb6\\xa7\\x15\\xb4\\xd3\\xcd\\x33\\xe4\\x71\\x62\\xca\\x18\\x02\\x0d\\\r\n\\xba\\x7d\\x3b\\x6b\\xff\\x00\\x6c\\x45\\x0b\\x44\\xb1\\xa3\\x36\\xba\\x36\\xac\\\r\n\\x2d\\xd3\\x86\\x77\\x30\\x15\\xb7\\x55\\xae\\x1b\\xd3\\x4b\\xff\\x00\\x7e\\xb8\\\r\n\\xe5\\x54\\xcd\\x55\\x11\\xca\\x5d\\x41\\xca\\x3f\\xa7\\x7f\\xd7\\xb7\\x96\\x28\\\r\n\\x69\\xe6\\xa5\\x91\\x4c\\x88\\x13\\x45\\x3b\\xe8\\x47\\x6b\\xff\\x00\\x2f\\xd7\\\r\n\\x11\\xa8\\x31\\x2b\\x8b\\x6a\\xb8\\x73\\xa6\\x4d\\xae\\x01\\x1f\\x6c\\x7b\\x4d\\\r\n\\x5b\\x2f\\x04\\xe3\\x70\\xd5\\x47\\x21\\x44\\x66\\xb9\\xea\\xca\\x37\\x01\\x85\\\r\n\\xc7\\x63\\x7d\\x6f\\xe7\\xbe\\x38\\x8f\\xb4\\xd0\\xcf\\xc0\\xa0\\xa5\\xa2\\x11\\\r\n\\x4f\\x5b\\xc5\\x20\\x92\\x35\\x53\\xaa\\x43\\x0f\\x2d\\x8c\\xd5\\x13\\x5b\\xfe\\\r\n\\x5e\\xa4\\x2d\\xc7\\x53\\x95\\x5e\\xf8\\xf6\\x7b\\x8a\\x35\\x2f\\xfc\\x3b\\x8e\\\r\n\\xb2\\x4a\\xae\\x52\\xd3\\x53\\xd5\\x52\\x97\\x97\\x31\\xcd\\x20\\x79\\x22\\x8c\\\r\n\\x02\\xc0\\x9b\\xae\\x68\\x9b\\x53\\xe2\\x36\\xbd\\xcd\\x87\\xfc\\x38\\xe1\\x4f\\\r\n\\xc3\\x3d\\x9a\\xad\\xa8\\xaa\\xe9\\xaa\\xe2\\xd3\\x55\\x3c\\xd2\\xaf\\xce\\x0f\\\r\n\\xc3\\x8e\\xcd\\xa5\\xc3\\x31\\x69\\x01\\x24\\x0d\\x76\\x5d\\x87\\xb0\\xfe\\xc7\\\r\n\\x37\\xb2\\xb5\\x15\\xf5\\x23\\x88\\x3d\\x4c\\x55\\xd0\\xa4\\x71\\xa3\\x87\\x57\\\r\n\\x8f\\x2c\\x92\\xb9\\x26\\xee\\xcb\\xd4\\x0a\\x6c\\x14\\xe9\\x62\\x34\\xc5\\x54\\\r\n\\xb2\\x49\\x03\\x0d\\x72\\x28\\xfb\\x58\\x58\\x79\\x79\\x6d\\xae\\x3d\\xa1\\xa6\\\r\n\\xeb\\xac\\x44\\x0c\\x0a\\x30\\x9d\\x75\\xda\\xfd\\x57\\x50\\x7f\\x3d\\xbb\\x9f\\\r\n\\x5c\\x55\\xd4\\x71\\x09\\x38\\x77\\x0e\\xe2\\xb0\\x86\\x9e\\x93\\x87\\xf3\\xe8\\\r\n\\xab\\x62\\xa6\\x32\\xfb\\xc4\\x14\\x95\\xbc\\xa1\\x24\\xcf\\x1d\\xca\\x4b\\x1c\\\r\n\\x6f\\x04\\x62\\x53\\x96\\xe8\\x8e\\x0d\\xb4\\xcc\\x3d\\x9e\\x97\\x8b\\x43\\x57\\\r\n\\x2f\\x16\\xe3\\x12\\xac\\x96\\x1e\\xed\\xc3\\x22\\x5c\\xaa\\xb1\\x50\\xab\\x3f\\\r\n\\x28\\x24\\x96\\x2c\\xc2\\x55\\x6e\\xa0\\xc7\\x36\\xc2\\xcb\\xb6\\x29\\xea\\xf9\\\r\n\\xb2\\xab\\xad\\xc0\\x67\\xd8\\xf6\\x3f\\x90\\xf4\\xc5\\x45\\x49\\x06\\xca\\x08\\\r\n\\xcd\\x15\\xc1\\xbe\\xcf\\xf5\\xf2\\xfe\\xfe\\xab\\x50\\xcf\\x3c\\x92\\x13\\x79\\\r\n\\x19\\x04\\x6e\\x7e\\x56\\xf2\\xb2\\xfe\\x2d\\xbf\\x4c\\x55\\x71\\xf8\\xd5\\x09\\\r\n\\xb3\\x06\\x41\\x62\\xb7\\xd9\\xb5\\x52\\x0f\\xde\\xf8\\x49\\x15\\xaa\\x5e\\x6b\\\r\n\\x72\\xc4\\x97\\xe6\\x3b\\x83\\x90\\x20\\x63\\x72\\xda\\x5f\\x21\\xb8\\xb9\\xb6\\\r\n\\xda\\x61\\x7d\\xac\\x9d\\x2b\\x62\\xa6\\xe1\\xd0\\xbc\\xb0\\xa4\\x8e\\x6a\\x56\\\r\n\\x3f\\x15\\x43\\x65\\x54\\xe6\\xe5\\x4f\\x04\\x6a\\x16\\xea\\x14\\x04\\xd6\\xe7\\\r\n\\xcc\\xd6\\xf1\\x88\\xf8\\x85\\x24\\xd4\\xf2\\xc5\\x24\\x52\\x4c\\xc7\\x9b\\x0c\\\r\n\\x9a\\x03\\x98\\xf8\\x97\\x5e\\xc2\\xcb\\x7d\\xce\\xfa\\x6d\\x8f\\x64\\x78\\x25\\\r\n\\x35\\x27\\x0f\\xb9\\xeb\\x59\\x5b\\x3d\\x98\\x0c\\xcb\\xa1\\xb7\\x56\\xa4\\x81\\\r\n\\xdb\\xbf\\x6b\\x61\\xf2\\xa8\\x11\\xdc\\x6f\\xa7\\x99\\x1b\\x7f\\x4c\\x71\\x48\\\r\n\\xd5\\x42\\xca\\x07\\x85\\xb5\\xf3\\x39\\xad\\x7f\\x5d\\x34\\xc5\\x31\\x8d\\xe3\\\r\n\\x25\\x17\\x2b\\x9d\\x33\\x5b\\xbd\\xef\\xae\\x38\\x94\\x13\\x4c\\xc0\\x66\\x60\\\r\n\\x97\\x2e\\xe7\\xcb\\xb0\\x03\\xc8\\xfa\\xdb\\x5f\\xe5\\x46\\x8b\\x4b\\x0f\\x40\\\r\n\\x65\\x0f\\xa9\\x72\\x36\\x0a\\x01\\x3d\\x56\\xea\\x62\\x2e\\x40\\x1f\\xd2\\xd8\\\r\n\\x8d\\x2a\\xf8\\x82\\xa0\\x10\\xfb\\xbc\\x49\\x23\\xfc\\x5a\\xa0\\x49\\x95\\x95\\\r\n\\xd8\\xf4\\x42\\x46\\xeb\\xaf\\xef\\x58\\x2d\\xcd\\xc2\\x91\\x7b\\x55\\xf0\\xd8\\\r\n\\x23\\xe5\\x73\\x64\\x92\\xa4\\x38\\xe5\\xe6\\x97\\x56\\x83\\xa6\\xf9\\xe3\\xc9\\\r\n\\xf0\\xc0\\xb9\\xd8\\x0c\\xc3\\x53\\xd4\\x33\\x06\\x96\\x31\\x51\\x1b\\xc7\\x22\\\r\n\\x03\\x53\\xc3\\xe4\\x78\\xa5\\x2a\\x43\\x2c\\xf1\\xe9\\x96\\x45\\x22\\xfd\\x2f\\\r\n\\x19\\xd7\\xbe\\x60\\x71\\x4d\\x4d\\x14\\x75\\x82\\xa9\\xe0\\x24\\xb2\\x90\\xd1\\\r\n\\xa9\\x2b\\x9e\\x2d\\xf2\\xb1\\xb6\\xbb\\x0b\\x5e\\xe5\\x6e\\x7c\\xce\\x2a\\xa0\\\r\n\\xa4\\xaa\\x93\\x99\\xee\\xc2\\x18\\x82\\x59\\x23\\x0e\\xd9\\x57\\x4d\\x6d\\xa8\\\r\n\\xf4\\xdf\\x52\\x6f\\x8e\\x14\\x90\\xc7\\x26\\x4b\\xe5\\x06\\xe0\\x29\\x26\\xc1\\\r\n\\xba\\xaf\\x6b\\xf9\\xf7\\xec\\x70\\xf2\\x25\\x33\\x43\\x9a\\xc5\\x24\\x19\\x54\\\r\n\\x91\\xbf\\xe6\\x37\\xef\\xa6\\x29\\x67\\x80\\x47\\x1a\\xaf\\x7b\\x5b\\xe8\\xda\\\r\n\\xeb\\xf4\\xd6\\xf8\\xf6\\x9f\\x8e\\x54\\x70\\xae\\x21\\x4e\\x78\\x6b\\xb3\\x55\\\r\n\\x2c\\x79\\xf7\\xe8\\x0c\\x24\\x1d\\x3d\\x87\\x87\\xeb\\xb8\\xbe\\x3d\\x9a\\xf6\\\r\n\\xfb\\x8b\\x71\\x0e\\x15\\x9e\\x5a\\x65\\x49\\x50\\x14\\xcf\\x22\\x0c\\xf7\\xb6\\\r\n\\xc5\\xad\\x9b\\x43\\xb6\\x83\\xef\\x7c\\x71\\x4a\\xb6\\xac\\xab\\x31\\xd5\\xb1\\\r\n\\x91\\x6a\\x83\\xc3\\x59\\x7f\\x08\\xe7\\xab\\x08\\xf5\\x36\\xdb\\x31\\x0d\\xe8\\\r\n\\x46\\x98\\xf6\\x7b\\x87\\x45\\x4b\\x4c\\x51\\x35\\x11\\x33\\xc4\\x9f\\xe5\\x47\\\r\n\\x3a\\x7f\\xee\\xb9\\x1f\\xae\\x3d\\xa1\\x14\\xf1\\x75\\x97\\x3e\\xf0\\x67\\x8b\\\r\n\\x34\\xb7\\x19\\x21\\x0f\\x2a\\xc6\\x0b\\xe9\\x76\\x7e\\xa5\\x1a\\x78\\x45\\xbb\\\r\n\\xe3\\x8f\\x70\\xc9\\x78\\x9c\\xb3\\x53\\x44\\xf5\\x32\\x98\\x66\\x31\\xc2\\xf4\\\r\n\\xb1\\x32\\xd4\\x35\\x8e\\x6b\\xe5\\x53\\x22\\x83\\x76\\xd7\\x31\\xdb\\x72\\x0b\\\r\n\\x69\\x5b\\xc0\\x3d\\xa0\\xe0\\x54\\xf4\\x9c\\x47\\x88\\x55\\x34\\xb4\\xc2\\xb6\\\r\n\\x24\\x8a\\x9a\\x47\\x47\\xab\\x0e\\x73\\x59\\x41\\x41\\x95\\x6e\\xb7\\xcc\\x0b\\\r\n\\x35\\xf4\\x5d\\xb1\\xc1\\xf8\\x7d\\x2c\\xaf\\x3f\\x1a\\xa8\\x84\\xc5\\x59\\xfb\\\r\n\\x3a\\x58\\xa9\\xe9\\x99\\x10\\xb0\\x66\\x7b\\x49\\x28\\x2a\\x5b\\xe3\\x02\\xa8\\\r\n\\xad\\x6e\\xac\\xa6\\xe4\\xee\\x0c\\x35\\x89\\x0f\\x05\\x96\\x84\\x67\\x7a\\xc9\\\r\n\\x5c\\xb5\\xa1\\x8c\\xc8\\x46\\x66\\x59\\x1a\\x57\\x23\\xa6\\x3b\\x15\\x2a\\xb9\\\r\n\\x98\\x68\\xbb\\x1b\\x5f\\x1e\\xd4\\xa8\\xaa\\x34\\x2e\\x91\\x3a\\xaf\\x16\\xf7\\\r\n\\x1e\\x19\\x54\\x5a\\xdd\\x11\\xc7\\x51\\x03\\x3c\\xf1\\x64\\x63\\xcc\\x2b\\x0c\\\r\n\\x64\\x18\\xd8\\xde\\xf7\\x04\\x0c\\x43\\x03\\xfb\\xb3\\xd2\\xd2\\xba\\xac\\x15\\\r\n\\x13\\x17\\x86\\x14\\xbb\\x38\\x64\\x66\\x42\\x5c\\x38\\x16\\x67\\x5d\\xf2\\x5c\\\r\n\\x5b\\xbe\\xe3\\x14\\x1e\\xcd\\xd7\\x56\\x43\\x54\\xb2\\xd4\\x0e\\x5b\\xc7\\x24\\\r\n\\x65\\x01\\x17\\x2c\\x15\\x97\\x2e\\x51\\xe1\\x24\\xda\\xfb\\x58\\xdb\\x10\\x70\\\r\n\\xca\\x88\\x20\\x86\\x02\\x8e\\x4c\\x31\\x47\\x11\\x3f\\x13\\x53\\x1a\\x04\\x27\\\r\n\\xc5\\xe9\\x88\\x22\\x8c\\x56\\xc8\\x81\\x14\\x05\\xb5\\x88\\x16\\x23\\xab\\xf2\\\r\n\\xfd\\x31\\xc4\\x3f\\xf2\\x52\\x21\\x25\\x84\\x79\\x95\\x49\\xdc\\x03\\x7e\\xe2\\\r\n\\xd7\\xf4\\xc7\\x0e\\x1d\\x72\\x38\\x66\\x56\\x31\\x13\\x70\\x6d\\xa8\\x26\\xc6\\\r\n\\xdb\\x77\\xb7\\xd2\\xde\\x58\\x71\\xa4\\xb7\\xd7\\xa8\\x8d\\x7b\\xe8\\x3e\\xd8\\\r\n\\xa6\\x95\\xe2\\xe2\\x03\\x21\\xf1\\x06\\x07\\xe9\\x62\\x7f\\xa0\\xc5\\x2c\\xf2\\\r\n\\x6e\\x48\\x39\\x0d\\xc5\\xc5\\xc5\\xfc\\xed\\xe7\\x8e\\x3b\\x23\\x81\\xa1\\xb6\\\r\n\\x75\\x46\\x20\\x6d\\x7b\\x0d\\x40\\xec\\x74\\xc7\\x0c\\x24\\xf3\\x2f\\xa9\\x2e\\\r\n\\xe4\\x93\\xa9\\x3b\\xf7\\xfe\\x5e\\x98\\xe2\\x3f\\x0e\\x3c\\xca\\x00\\x23\\x35\\\r\n\\xb4\\xc7\\x06\\x76\\xa9\\x65\\x8e\\x52\\x4a\\x98\\x9c\\xd8\\x69\\xdb\\xb7\\xe5\\\r\n\\x8a\\x53\\x65\\xd3\\x4e\\xb3\\xaf\\x7f\\x10\\xfe\\xfe\\xf8\\x8a\\x56\\x96\\x26\\\r\n\\x12\\x59\\xb2\\xc4\\x48\\xbe\\xe3\\x28\\xd3\\x5b\\xdf\\x14\\x72\\x39\\xa6\\x0a\\\r\n\\x4e\\xca\\x35\\xd8\\xf8\\x87\\x71\\x8a\\xc6\\x28\\x11\\x97\\x7c\\xca\\x3e\\xc7\\\r\n\\x1f\\xf1\\x26\\x42\\xf1\\xe6\\x20\\x66\\x8e\\x55\\x0a\\xc0\\x6b\\x66\\x1a\\x8f\\\r\n\\xa6\\xb8\\xff\\x00\\x85\\x4e\\xd5\\xd1\\xf1\\x48\\xaa\\x8f\\x34\\x49\\x42\\xd1\\\r\n\\x66\\x6d\\x5d\\x23\\x88\\xe6\\x55\\x8d\\x8f\\x83\\xab\\x53\\x61\\xa9\\x03\\xc8\\\r\n\\x63\\xda\\x3a\\x89\\x20\\xf6\\x2e\\x83\\x87\\xc6\\x72\\xd3\\xcd\\xed\\x1d\\x48\\\r\n\\x94\\x7c\\xce\\xa8\\xe1\\xc2\\x9f\\x96\\xd9\\x8d\\xcf\\x4f\\x60\\x36\\xc2\\x4a\\\r\n\\xd0\\x70\\xdf\\x67\\x29\\xa2\\xe9\\x89\\xa9\\xa9\\x64\\x61\\xaf\\x53\\x14\\x8c\\\r\n\\x1b\\xd8\\xd8\\x83\\x9d\\xae\\x2d\\xad\\xf5\\xc2\\x28\\x20\\x1f\\x51\\xa7\\x6d\\\r\n\\x0b\\x01\\xfa\\x62\\x76\\x26\\x39\\x53\\x4c\\xa0\\x1e\\xde\\x47\\x4c\\x71\\xc8\\\r\n\\x96\\x4e\\x22\\x8a\\xd7\\xb4\\x94\\x83\\x37\\xdb\\x1e\\xcd\\xcf\\x34\\x15\\x7c\\\r\n\\x62\\x8a\\x29\\x1d\\x21\\x29\\x50\\x34\\x36\\x75\\xba\\x9f\\x09\\x1b\\x6c\\x3b\\\r\n\\x7d\\x6e\\x31\\x2a\\xa4\\xdc\\x3a\\x87\\x32\\x28\\xcd\\x13\\x49\\x64\\x19\\x54\\\r\n\\x32\\xbd\\xba\\x54\\x68\\x01\\xdc\\x8b\\x5a\\xfa\\x8b\\x63\\x87\\x22\\xb4\\x6c\\\r\n\\xc6\\xf7\\x5b\\x11\\xf5\\x04\\x8c\\x49\\x2b\\xb3\\x72\\xcd\\xb2\\xaa\\x0b\\x69\\\r\n\\xae\\xed\\xfe\\x83\\x10\\x75\\xbc\\x85\\x89\\xe9\\x91\\xf2\\xeb\\x6b\\x58\\x0f\\\r\n\\xf4\\xc7\\x1b\\x01\\x2b\\xaa\\xf2\\x8b\\x5c\\xc6\\x48\\xed\\x76\\x40\\xc7\\xf5\\\r\n\\xd7\\x15\\x91\\x85\\xa2\\xcc\\x0b\\x75\\x46\\x51\\x97\\x35\\x94\\xa9\\x4c\\xd9\\\r\n\\x4e\\x5b\\x12\\x33\\x01\\xa1\\x27\\x60\\x36\\xc5\\x2d\\x54\\xd4\\x46\\x5a\\x88\\\r\n\\x1a\\xd2\\xc6\\x63\\x2a\\xc4\\x5f\\xc5\\xa1\\x06\\xd6\\xb8\\xfd\\x7d\\x71\\x57\\\r\n\\x51\\x25\\x42\\xac\\xae\\x46\\x67\\x29\\x7c\\xa2\\xc3\\xa8\\x5c\\xd8\\x6b\\x6b\\\r\n\\x9c\\x70\\x69\\xe4\\x14\\x91\\x46\\x0f\\x4f\\x29\\x3e\\xbe\\x01\\x85\\x63\\xd3\\\r\n\\xea\\x2d\\x7e\\xff\\x00\\x31\\xfe\\x98\\xae\\x50\\xd4\\xc6\\xe2\\xfd\\x43\\xf9\\\r\n\\xe2\\x9b\\xf0\\x7c\\xa6\\xfa\\x0f\\xa6\\x1b\\xad\\xa4\\x8d\\xb6\\xb2\\xfd\\x7c\\\r\n\\x58\\xf6\\x8c\\x35\\x07\\x09\\x96\\xa2\\x92\\x59\\x61\\x95\\x12\\xb9\\xc3\\x2b\\\r\n\\x0d\\x79\\x5c\\x36\\xae\\x68\\xd4\\xdd\\x4d\\x95\\x65\\x54\\x7b\\x2e\\x53\\x74\\\r\n\\x5d\\x6d\\x70\\x78\\x5d\\x75\\x54\\x9e\\xcd\\xf0\\xba\\xb9\\x24\\x2f\\x3c\\xb4\\\r\n\\xb0\\xcb\\x23\\xb7\\xce\\xef\\x12\\x16\\x24\\x6d\\xad\\xcf\\x6f\\x5d\\xf1\\x50\\\r\n\\xd9\\xa9\\x64\\xba\\xaf\\x8e\\x2b\\x6f\\xd2\\x58\\x5a\\xeb\\xae\\x87\\x5f\\xa7\\\r\n\\x98\\x38\\xce\\xd4\\x75\\x94\\xa6\\x0e\\x9f\\x79\\x59\\x96\\x61\\xba\\xbd\\xe5\\\r\n\\xbd\\xc8\\xf3\\x1d\\x8f\\x6b\\xe0\\xc8\\xce\\x6e\\x7f\\xd3\\x71\\x73\\x6f\\x2c\\\r\n\\x1d\\x63\\xd7\\xb1\\xc4\\xac\\xd1\\x8e\\x62\\xb1\\xcc\\x25\\x36\\xfe\\xf7\\xfd\\\r\n\\x71\\xef\\x73\\xb9\\xe1\\xa5\\xdf\\x35\\xa6\\x20\\x02\\x01\\x00\\x32\\x32\\x9d\\\r\n\\x3b\\xe8\\x3b\\xdc\\x63\\x83\\x57\\x54\\x16\\x88\\x16\\xb8\\x8e\\x46\\x41\\xa6\\\r\n\\xe1\\x4e\\x97\\xff\\x00\\x6b\\x63\\x89\\xcc\\xf5\\x1c\\x6b\\x8b\\x73\\x2d\\xfe\\\r\n\\x1e\\xb9\\x52\\x2c\\xa2\\xd6\\x1e\\xee\\x87\\xd7\\xfa\\x63\\xd9\\xba\\xd9\\xff\\\r\n\\x00\\x67\\x6e\\xbe\\x17\\xed\\xdf\\x7b\\xef\\xfc\\xb1\\x39\\x67\\x8c\\xca\\xc7\\\r\n\\x33\\xcb\\x21\\x2c\\x74\\xd2\\xed\\x96\\xcb\\xa6\\x81\\x42\\x8c\\xbb\\xd8\\xe3\\\r\n\\x82\\xd5\\x4c\\xb4\\xf5\\x64\\x37\\x82\\x59\\x48\\xbf\\x99\\xea\\x3f\\xa9\\xc7\\\r\n\\x1e\\xe2\\xf5\\x9c\\xfa\\x8a\\x36\\x31\\xc9\\x14\\xec\\xa1\\x8b\\xa5\\xe4\\x5c\\\r\n\\xb3\\x07\\xe8\\x7b\\x8c\\xbd\\x48\\xbe\\x78\\xf6\\x71\\xd8\\xcd\\xc4\\xf5\\xb5\\\r\n\\xe7\\xcb\\xa6\\xe3\\x3c\\x34\\xca\\x48\\xf5\\x19\\x89\\x1e\\xba\\x9b\\xe3\\xfe\\\r\n\\x22\\x40\\x83\\xd9\\xd4\\x94\\x5f\\x3c\\x7c\\x52\\x9b\\x29\\xff\\x00\\x2b\\xb8\\\r\n\\x1a\\x5b\\xd0\\x6d\\x8a\\x37\\x68\\xa5\\x9e\\x25\\x3d\\x31\\xd4\\x33\\xa9\\x60\\\r\n\\x0b\\x02\\x6c\\xac\\x2f\\xe4\\xd7\\xea\\xf3\\x23\\xeb\\x7a\\x17\\x96\\x82\\xae\\\r\n\\x48\\xa2\\x9a\\x47\\x86\\xa0\\x54\\x17\\x86\\x72\\xb2\\x46\\x19\\x4d\\x81\\x40\\\r\n\\x54\\x15\\xfa\\x5c\\x8f\\x4d\\xf1\\xed\\x21\\xe5\\x3f\\xb3\\x0e\\x00\\x6c\\x9c\\\r\n\\x48\\x37\\x2d\\xf5\\x88\\xfc\\x1d\\x73\\x20\\xb0\\x20\\xd8\\x13\\xe6\\x71\\xc3\\\r\n\\xd0\\x06\\x67\\xd7\\xaa\\xd5\\x00\\x5f\\x48\\xde\\x67\\x60\\xcb\\x1f\\x75\\x8c\\\r\n\\x7c\\xab\\x73\\x6f\\x3c\\x7b\\x38\\x2f\\x1d\\x40\\x3a\\x85\\xac\\x9c\\x2e\\xda\\\r\n\\x0e\\x93\\x6d\\x3c\\x89\\x38\\x9e\\x34\\xe7\\xcd\\xa7\\xfc\\xd9\\x3f\\xfe\\xce\\\r\n\\x3f\\xff\\xc4\\x00\\x4e\\x10\\x00\\x02\\x01\\x03\\x02\\x04\\x04\\x03\\x05\\x05\\\r\n\\x04\\x08\\x04\\x05\\x02\\x07\\x01\\x02\\x03\\x04\\x11\\x12\\x00\\x21\\x05\\x13\\\r\n\\x22\\x31\\x14\\x32\\x41\\x51\\x23\\x42\\x61\\x06\\x33\\x52\\x71\\x81\\x15\\x24\\\r\n\\x62\\x91\\xa1\\x43\\x72\\xb1\\xc1\\x25\\x34\\x53\\x63\\x82\\x92\\xd1\\xf0\\x44\\\r\n\\x73\\xe1\\xf1\\x10\\x16\\x83\\xa2\\xb2\\x07\\xd2\\x45\\x54\\x55\\x64\\x74\\x84\\\r\n\\xa3\\xff\\xda\\x00\\x08\\x01\\x01\\x00\\x06\\x3f\\x02\\x8d\\x23\\x1e\\x60\\xd8\\\r\n\\xfb\\x5c\\x91\\xb2\\xdb\\xb7\\x7e\\xdf\\xa6\\xac\\x9b\\xb5\\xf1\\xf4\\x23\\x33\\\r\n\\xea\\x40\\x5c\\xc7\\xe5\\xbd\\xb5\\x53\\x3b\\xe3\\x24\\x94\\xd0\\xbc\\xf3\\x75\\\r\n\\x3f\\xc2\\xb2\\xf9\\xd8\\x47\\xe8\\x0f\\x94\\x1e\\xa6\\x3e\\x55\\x07\\xab\\x5c\\\r\n\\x43\\x9f\\x52\\x22\\x85\\xe4\\x92\\x69\\xea\\x39\\x5f\\x78\\x5a\\x5b\\xb4\\x69\\\r\n\\x18\\x21\\x56\\x57\\xca\\xe1\\x72\\xc6\\x31\\xf4\\x03\\x54\\x74\\x9c\\x94\\x48\\\r\n\\xa9\\x20\\x10\\xc4\\x54\\x5b\\xa4\\x7b\\xdb\\xbb\\x1b\\x96\\x66\\x63\\x76\\x63\\\r\n\\x73\\xae\\x9d\\x81\\x7f\\x61\\xb0\\x3b\\x7e\\x9a\\x12\\xe0\\xb7\\xf9\\x2d\\xb9\\\r\n\\x61\\x7d\\xfa\\x2d\\xb8\\xfe\\x87\\xea\\x35\\x3d\\x53\\xc9\\x0d\\x3f\\x2e\\x3c\\\r\n\\x9a\\x4a\\xb9\\x51\\x22\\x53\\x70\\x17\\x9b\\x25\\xf1\\x45\\x24\\x81\\x65\\x05\\\r\n\\x89\\x36\\x00\\xdf\\x53\\x55\\xd5\\xd5\\xbf\\x10\\x8e\\x79\\xf1\\x15\\x0a\\x0f\\\r\n\\x22\\x10\\xa8\\x42\\xad\\xed\\x1b\\x72\\xf2\\xda\\x35\\xc1\\x45\\xbd\\x2e\\x77\\\r\n\\xe4\\xd5\\xd0\\x70\\x9a\\x5a\\xb6\\xcc\\x46\\xeb\\x14\\x61\\x2a\\x63\\x4b\\x75\\\r\n\\x02\\xf6\\xe5\\x48\\x6e\\xbf\\x31\\xce\\xfd\\x36\\x3b\\x68\\xf3\\xe3\\xac\\xa2\\\r\n\\x47\\x6e\\x5b\\x55\\xd2\\xb3\\xce\\x68\\x43\\x23\\x63\\x50\\xf4\\xee\\x58\\x4b\\\r\n\\x4c\\x8f\\x6e\\x70\\x5b\\x3e\\x3b\\xa3\\x01\\x71\\xa1\\x43\\x4d\\x38\\x49\\xa8\\\r\n\\xe1\\x8e\\x3a\\x4a\\xc8\\x77\\xe6\\xf2\\xe3\\xdb\\x2d\\xbe\\x2c\\x52\\xef\\x27\\\r\n\\x57\\x50\\xca\\xf7\\xef\\x7a\\xda\\x9e\\x25\\x04\\x28\\xf4\\xc2\\xc9\\x2f\\x2b\\\r\n\\x0a\\x83\\x37\\x54\\x6c\\x24\\x26\\xe7\\xd4\\x11\\x71\\xf5\\xf6\\xd7\\x0a\\xe0\\\r\n\\x91\\xc8\\x12\\x37\\x4e\\x6c\\x83\\x6b\\xe5\\x39\\xca\\x79\\x32\\x6d\\xd4\\xa5\\\r\n\\x3a\\xe3\\xd2\\x45\\xf9\\xa0\\x68\\xd3\\xd1\\x50\\x78\\x9e\\x5c\\x76\\xe7\\xca\\\r\n\\xec\\xb0\\x53\\xa3\\xa6\\x08\\x5b\\xa6\\xcb\\xb7\\xf1\\x82\\x4f\\x6b\\x6a\\x5a\\\r\n\\x8e\\x7f\\x3e\\xaa\\x40\\x7e\\x25\\xad\\x0c\\x37\\xdf\\xa2\\xfd\\xdb\\xf8\\xcd\\\r\n\\xbe\\x83\\x55\\x53\\x7d\\xa4\\x58\\x78\\x8f\\xd9\\xbe\\x1b\\x49\\x37\\x10\\xa9\\\r\n\\x6a\\xc5\\x79\\x2a\\x29\\x12\\x34\\xba\\x1a\\x29\\xa3\\x2b\\x3c\\x4f\\x3c\\x98\\\r\n\\x47\\x81\\x71\\x13\\xa9\\xdd\\x76\\x04\\x70\\x19\\x78\\x37\\x1c\\xa3\\x34\\x7c\\\r\n\\x32\\x4a\\xf1\\x4b\\xe3\\x87\\x85\\x8b\\x99\\xc4\\x66\\x49\\xff\\x00\\x67\\x54\\\r\n\\x55\\x2d\\xe0\\xa1\\xa8\\x80\\xa8\\x8a\\x96\\x0a\\xf4\\xa7\\x59\\x23\\xb7\\x22\\\r\n\\xa6\\xa7\\x77\\xd2\\x47\\xc4\\xa8\\x6a\\x28\\x65\\x2f\\x9c\\x4f\\x22\\xfc\\x19\\\r\n\\xac\\x6e\\x1e\\x0a\\x85\\xbc\\x33\\x29\\xf4\\x68\\x9d\\x81\\xf7\\xd7\\x15\\x93\\\r\n\\x64\\x15\\x9c\\x1f\\xc4\\xb2\\x8f\\x5a\\x88\\xd6\\xd2\\xfd\\x06\\xf1\\xdf\\xdf\\\r\n\\x53\\x18\\x32\\x4a\\x30\\xfc\\x92\\x43\\x62\\x8f\\x81\\xf2\\xdf\\xe6\\xf7\\xed\\\r\n\\x6d\\x43\\x0c\\x07\\xc2\\x81\\x29\\x05\\x8b\\x6f\\x35\\xd0\\x64\\x49\\xf4\\x00\\\r\n\\xfb\\x77\\xdb\\x51\\x8a\\x49\\x3c\\x53\\xc8\\xd6\\x5f\\x0f\\x50\\x4d\\xec\\x7a\\\r\n\\xb3\\x23\\xa5\\x02\\x7c\\xcc\\xd6\\xc7\\xbb\\x6d\\xac\\x2a\\x6d\\x17\\x10\\x8f\\\r\n\\x24\\x12\\xdc\\x16\\x6e\\xe3\\x09\\x0f\\xce\\xb7\\xf2\\xb6\\xe4\\x7a\\x1b\\x6a\\\r\n\\x1a\\x69\\x54\\x06\\xaa\\xab\\x91\\x26\\x23\\xf0\\x24\\x58\\x21\\x3f\\xf1\\xbe\\\r\n\\xa3\\x93\\xf6\\x7f\\x86\\xaf\\xa3\\xe5\\xe5\\x3c\\x04\\x78\\x4a\\xc4\\x65\\x74\\\r\n\\x0f\\x3c\\x47\\xb4\\xea\\xe3\\xcc\\x9e\\x6b\\x6f\\xa9\\xca\\xdb\\x0e\\x6a\\x6e\\\r\n\\x7b\\x9c\\x4a\\x96\\xdf\\xbf\\x6f\\xf1\\xd5\\xe3\\x43\\x2c\\x83\\x76\\x58\\xcd\\\r\n\\x80\\x00\\x76\\x66\\x3d\\x22\\xc3\\xd8\\xdf\\xdb\\x52\\x3c\\xb0\\x65\\x23\\x30\\\r\n\\x68\\xb2\\xbf\\x21\\x58\\x6c\\x12\\x63\\x62\\x4e\\x64\\x8f\\xe5\\x6e\\xe4\\x6a\\\r\n\\x48\\xca\\x44\\xb5\\x11\\x9c\\xe3\\x96\\x06\\x56\\x82\\x6c\\x2c\\xad\\x16\\x1d\\\r\n\\xd5\\xb1\\xb6\\xd6\\xf9\\x36\\x3a\\x99\\xaa\\x4b\\x53\\xc3\\x3c\\x63\\xc4\\x63\\\r\n\\xb0\\x91\\x9f\\x76\\x8c\\x0e\\xe6\\x42\\x43\\x79\\x77\\x1d\\xf5\\x4b\\x4f\\x46\\\r\n\\x8d\\x47\\x0f\\x8b\\xa6\\x88\\xc6\\x1b\\x17\\xe4\\x09\\x06\\xce\\xdf\\x30\\x91\\\r\n\\xb7\\x63\\xd8\\xdf\\x1d\\x71\\x58\\x20\\x17\\xac\\xe1\\x31\\xd3\\xcf\\x85\\xcd\\\r\n\\xfa\\x69\\xe2\\x9a\\x37\\x53\\xed\\x7d\\x8f\\xe5\\x63\\xaf\\x16\\xec\\x65\\xce\\\r\n\\xae\\x9f\\x88\\x24\\xe3\\xca\\x63\\x76\\x49\\xd6\\xc7\\xb7\\x4f\\x90\\x8f\\x4c\\\r\n\\x75\\x13\\x41\\x1f\\xc2\\x59\\x1b\\x99\\x50\\xcc\\x23\\x8a\\x08\\x8d\\xd3\\x27\\\r\n\\x73\\xb5\\xac\\xa0\\x81\\xdc\\xfa\\x0d\\x4d\\xc2\\xdc\\x87\\x9e\\xa6\\x1a\\x59\\\r\n\\x55\\xff\\x00\\xb3\\x6e\\x65\\x1c\\x0c\\xf0\\xc7\\xff\\x00\\x9d\\x1a\\x66\\xb7\\\r\n\\xfe\\xd5\\x17\\xf1\\x6a\\xa5\\x9a\\x59\\x26\\x8a\\xb6\\x1e\\x64\\x2e\\xe4\\xb6\\\r\n\\x51\\x83\\x92\\x58\\x9f\\x58\\xfc\\x84\\x7d\\x2f\\xeb\\xa4\\x3b\\x5a\\x60\\xb8\\\r\n\\xb0\\xee\\xac\\x23\\x7b\\x8f\\xca\\xe1\\xc1\\x1f\\x97\\xb6\\xaa\\x21\\xfe\\xd0\\\r\n\\x2b\\x32\\xdb\\xf1\\x46\\x6e\\xbf\\xcc\\x6d\\xa9\\x29\\x07\\x2f\\x39\\x87\\xae\\\r\n\\xd7\\xf5\\x00\\xff\\x00\\x17\\xa6\\xbc\\x45\\x52\\xaf\\x8d\\xaa\\x22\\x7a\\x66\\\r\n\\x88\\x81\\x24\\x11\\x47\\x28\\x28\\x5e\\x4d\\xb2\\x29\\x76\\x3d\\x3b\\xa8\\x36\\\r\n\\xdc\\x9d\\x1f\\xb3\\xff\\x00\\x6a\\x56\\x2a\\x1a\\xa9\\x56\\xdc\\x33\\x8e\\x47\\\r\n\\x8a\\xf2\\xe5\\x2c\\xd1\\xf2\\xaa\\x1b\\xfb\\x3b\\xca\\x86\\xcc\\xdf\\x06\\x50\\\r\n\\x40\\x91\\x51\\xba\\xcf\\x10\\xfb\\x0f\\x5c\\x8c\\x13\\x8c\\x99\\x2b\\x78\\x3f\\\r\n\\x19\\x0d\\x95\\x13\\xf1\\x4a\\x63\\x0d\\x47\\x09\\x74\\x1f\\xd8\\xb8\\x92\\x1c\\\r\n\\x27\\x42\\xdf\\x11\\x24\\xb0\\x2c\\xa6\\xfa\\x83\\xed\\x2d\\x7c\\x95\\x52\\x43\\\r\n\\xc5\\x61\\x42\\x68\\xb8\\x7c\\x68\\xb1\\x7e\\xd0\\xa6\\x50\\x95\\x29\\x2d\\x64\\\r\n\\xfe\\x4f\\x94\\x14\\x5a\\x67\\x25\\xd2\\x43\\xef\\x64\\x3c\\x1b\\x85\\xd0\\x51\\\r\n\\x47\\xd2\\xbc\\xea\\x94\\x1c\\x4e\\xba\\x35\\xfc\\x48\\xf5\\x4b\\xe1\\x20\\x3e\\\r\n\\xb7\\xa7\\xa1\\x89\\xd6\\xde\\x7f\\x5d\\x7d\\x9f\\xe2\\x75\\x75\\x33\\x54\\x55\\\r\n\\x43\\x1f\\x12\\xa4\\x92\\x49\\xa4\\x67\\x66\\x8a\\x65\\xac\\x11\\x79\\x8d\\x85\\\r\n\\xcc\\x63\\xb6\\xc3\\x1b\\x01\\x6e\\xd4\\x7f\\x68\\xf8\\x7e\\xc6\\x87\\x1e\\x1f\\\r\n\\xc4\\xe2\\x4f\\x32\\x33\\x28\\x96\\x8e\\xac\\xaf\\xb4\\xbd\\x71\\x13\\xf8\\xd3\\\r\n\\x51\\x53\\xc6\\x89\\x1d\\x4d\\x53\\xc4\\xf9\\xb6\\xc3\\x93\\x20\\x0f\\x2c\\xa7\\\r\n\\xb6\\xd0\\x75\\xb3\\xfd\\x10\\xea\\x54\\xa7\\xb8\\xa4\\xa3\\x48\\xe9\\xb8\\x78\\\r\n\\xf4\\xe4\\x52\\x74\\x87\\xfe\\xf4\\xd7\\x69\\xdb\\xf8\\xe4\\x6d\\x51\\xa7\\x10\\\r\n\\xb7\\x87\\xaa\\x78\\x28\\xe5\\x1f\\x2b\\x78\\xb0\\x52\\xe7\\xd8\\x2b\\x32\\x48\\\r\n\\x5b\\xd2\\xd7\\xd7\\xda\\x2a\\x1a\\xb8\\xf0\\x7a\\x65\\x42\\x20\\x03\\x18\\xe1\\\r\n\\xf0\\x3c\\x5a\\x9e\\x00\\xaa\\x3b\\x01\\x62\\xc7\\xeb\\xdf\\x55\\xbc\\x5f\\x8e\\\r\n\\x20\\x96\\x85\\x24\\xfd\\xde\\x17\\xa8\\x78\\x63\\x76\\x00\\x9b\\x35\\x92\\xec\\\r\n\\xa4\\x90\\xa1\\x63\\x70\\xcc\\x54\\x8d\\x33\\x56\\x14\\xe0\\x72\\x72\\xe4\\xa8\\\r\n\\xa0\\xa6\\xa4\\x84\\xf3\\x39\\x0d\\xf0\\xd0\\x32\\x23\\x73\\x21\\x8a\\x46\\x5c\\\r\n\\xa3\\x6b\\x86\\x26\\x56\\xdc\\xf6\\xd7\\x19\\xae\\x69\\x1e\\x45\\x92\\xb2\\x97\\\r\n\\x88\\x42\\x8e\\xa1\\x9a\\x44\\x78\\xaa\\xa9\\x61\\xb3\\x32\\xe6\\xde\\x22\\xa1\\\r\n\\x50\\x64\\x6e\\x71\\x1d\\x3a\\xe7\\xd6\\xd9\\xb8\\xab\\x4d\\x1c\\xb5\\xf1\\xc1\\\r\n\\x11\\x5e\\x4c\\x6d\\x69\\xfc\\x0a\\xaa\\xdd\\x5a\\xb6\\x45\\x75\\x6a\\xc9\\x91\\\r\n\\x46\\x12\\x32\\xd3\\xf9\\xa3\\x9e\\xf1\\x53\\xf1\\x18\\xd6\\x96\\xa6\\x7f\\x0e\\\r\n\\xd3\\xdd\\x84\\x0f\\x0c\\xd5\\x61\\x5b\\x99\\x1f\\x33\\x66\\x8e\\x47\\xe8\\xa8\\\r\n\\xd8\\x04\\xc7\\x67\\x8c\\x9e\\x99\\x55\\x4f\\xd9\\xcc\\x56\\x47\\x0b\\xcd\\xfb\\\r\n\\x67\\xc1\\x16\\x5b\\x06\\x20\\x73\\x17\\xf6\\xb7\\x4c\\x96\\xf3\\x8f\\x46\\xb8\\\r\n\\xd1\\xf8\\x19\\x54\\x06\\x5c\\x3f\\xe3\\xe9\\x3f\\xc2\\x6f\\xf8\\xbd\\x74\\xd2\\\r\n\\x4d\\xd0\\x83\\xd0\\x32\\xf4\\xdb\\x66\\x7c\\x8a\\x93\\xf5\\xbe\\x36\\x3b\\x77\\\r\n\\xb0\\xd5\\x15\\x34\\x2a\\xd8\\x71\\x7a\\xa4\\xa7\\x78\\xad\\x77\\x70\\xe6\\xde\\\r\n\\x22\\xa2\\x76\\x65\\xc2\\x3c\\xbc\\xaa\\xca\\x72\\x1d\\xf1\\x0b\\xa1\\xc9\\x8a\\\r\n\\x28\\xa2\\x85\\xa4\\xb1\\x50\\xa3\\x3c\\x9f\\x27\\x91\\xb1\\xf3\\x16\\x6f\\x7b\\\r\n\\xf4\\x59\\x6f\\xa8\\x40\\x08\\xd9\\x29\\xfd\\x3a\\x4e\\x8a\\xd4\\x2a\\x2e\\x22\\\r\n\\xd7\\x6b\\x0b\\x9b\\xfe\\xa3\\xf9\\xe9\\xa4\\x96\\xad\\x51\\x01\\xe5\\xe4\\x71\\\r\n\\x40\\x5a\\xdd\\xa3\\x92\\x46\\x54\\x7d\\xb6\\xb4\\x64\\x9b\\xed\\x8e\\xbc\\x2f\\\r\n\\x0f\\xaa\\xab\\x8f\\x87\\xc8\\x85\\x1a\\x07\\x89\\x60\\x1c\\xc0\\x7a\\xb9\\x98\\\r\n\\xb3\\xb4\\xc6\\xd8\\x10\\x24\\x7c\\x54\\xef\\xcb\\x1a\\xaa\\x7e\\xa7\\xf0\\xd3\\\r\n\\x24\\x87\\xa8\\xdd\\xb9\\x97\\xbd\\xfd\\xf7\\x5c\\xbf\\x3d\\x43\\x30\\x2b\\xcb\\\r\n\\xa4\\x8e\\x65\\x37\\x20\\x35\\x9c\\xa1\\x5f\\xab\\x1f\\x41\\xeb\\xa9\\xa0\\x94\\\r\n\\x1a\\x9a\\x1c\\x06\\x33\\x4a\\xfb\\xc1\\x6c\\x44\\x89\\x93\\x1b\\xb4\\x5c\\xbc\\\r\n\\x9b\\x03\\xb7\\xa0\\xef\\xa8\\xc0\\x18\\xc4\\xb1\\x85\\xc8\\xdf\\xa2\\x38\\xd6\\\r\n\\xdb\\xb1\\xf9\\x71\\x1d\\xfd\\x3b\\x76\\x1a\\x6a\\xb8\\x6a\\x32\\xa6\\xaf\\x91\\\r\n\\xab\\xa4\\x95\\xd4\\xc2\\x9e\\x1c\\x2f\\x32\\x1b\\xc6\\xd7\\x2a\\x51\\x03\\x29\\\r\n\\xb9\\xeb\\x60\\x5b\\x6b\\xeb\\x88\\x71\\x92\\x8b\\x8d\\xc4\\x54\\x11\\xbb\\x2d\\\r\n\\xa1\\xa5\\x8d\\xd6\\x2f\\x11\\x76\\x03\\xef\\x4d\\xb1\\xb0\\xc9\\x90\\x7b\\x6f\\\r\n\\xaa\\x9a\\x58\\xa2\\x09\\x07\\x87\\x95\\x22\\xa7\\x55\\xcb\\x9d\\x50\\xfb\\x44\\\r\n\\x1a\\xdb\\x96\\x67\\x50\\x5a\\x46\\xf2\\x2f\\xa8\\x00\\x6a\\x23\\xc4\\x6a\\x62\\\r\n\\xe5\\xa9\\x49\\x44\\x54\\xb7\\x6c\\xc7\\x7c\\x3a\\x82\\xaa\\x26\\x62\\xc5\\xd8\\\r\n\\x33\\x1f\\xc3\\x6b\\xb0\\xae\\xfb\\x36\\x95\\x12\\x50\\x1e\\x39\\x5d\\x4e\\xf3\\\r\n\\x56\\x16\\xe7\\x54\\xd6\\x08\\x9d\\x24\\x8f\\x86\\xd3\\x52\\x85\\x81\\x8c\\x57\\\r\n\\x8d\\x4e\\xdd\\x3c\\xbf\\x3b\\x5a\\xe5\\x7c\\x37\\x08\\x48\\xe3\\x02\\x21\\x47\\\r\n\\x5b\\x4d\\x54\\x91\\xb5\\x2f\\x14\\x8b\\x1b\\x34\\x75\\xf4\\xac\\xcf\\x14\\xd1\\\r\n\\x48\\xbe\\x65\\x37\\xc1\\xba\\xd1\\xc3\\xf5\\x69\\xe1\\xe0\\x15\\x70\\x54\\xc4\\\r\n\\x53\\x9b\\xc5\\x3e\\xc0\\xf1\\x30\\xbc\\x62\\x8c\\x5b\\xef\\x65\\xfb\\x3e\\xd5\\\r\n\\x6c\\x1e\\x58\\xd4\\xee\\x69\\x60\\x92\\x3a\\xfa\\x6e\\xe8\\xd5\\x09\\x62\\x2b\\\r\n\\x69\\xe9\\x95\\xf8\\x24\\xf3\\x53\\x55\\x44\\xd4\\x92\\x49\\x25\\x45\\x02\\x34\\\r\n\\xea\\x62\\xe9\\x91\\xd7\\xc5\\x51\\x2a\\xbf\\x78\\xe7\\x13\\x24\\x79\\x1b\\x4d\\\r\n\\x8e\\x85\\x35\\x55\\x31\\x78\\x79\\x8e\\xf0\\x55\\x5d\\x65\\xa6\\x9b\\x2c\\x4a\\\r\n\\x4b\\x4b\\x3c\\x6c\\xd1\\x4a\\xa3\\xb5\\xb3\\x07\\xbe\\xda\\xc5\\xd7\\x26\\x7e\\\r\n\\xab\\x76\\x5c\\xbd\\xe3\\xfc\\x27\\xdd\\x41\\xd7\\x8a\\xe0\\xd5\\xb5\\x94\\x52\\\r\n\\xa7\\x69\\x29\\xa7\\x96\\x17\\x17\\xd9\\xba\\xa3\\x23\\xcd\\xea\\x0f\\x71\\xdf\\\r\n\\x42\\x4e\\x29\\x4b\\x17\\x12\\x52\\x7a\\xe5\\x78\\xc0\\xa8\\xfa\\xb7\\x30\\x5c\\\r\n\\x33\\x7a\\xf5\\x01\\x73\\xeb\\xa5\\x9a\\x2a\\x89\\x69\\xaa\\xe3\\x10\\x4c\\x16\\\r\n\\x45\\xe8\\x8c\\x4b\\x20\\x57\\x82\\xa5\\x63\\x27\\x15\\x20\\xae\\x32\\x01\\xb3\\\r\n\\x18\\xed\\xb3\\x92\\x23\\x70\\xcd\\xf1\\x51\\x25\\x68\\x09\\xda\\xc0\\xbb\\x12\\\r\n\\x97\\xdc\\xe2\\x83\\xab\\xbe\\xc6\\xfa\\x69\\x16\\x22\\x51\\xd4\\xc8\\x76\\x62\\\r\n\\xbb\\x6e\\xd8\\x9b\\x58\\x5e\\xdd\\xff\\x00\\xc7\\x4d\\x3e\\x7e\\x12\\x58\\xec\\\r\n\\x71\\x4c\\xb0\\x97\\x01\\xd7\\x90\\x5b\\x79\\x6d\\xd3\\xb8\\x24\\x90\\x08\\x3a\\\r\n\\x8d\\x2b\\xf8\\x85\\x25\\x27\\x0c\\x8f\\xad\\x12\\x5a\\x8f\\x0f\\x70\\xa3\\xa9\\\r\n\\x90\\x4b\\x68\\xa4\\x91\\x9b\\xb3\\x73\\x0e\\x20\\x58\\x91\\xbe\\x9e\\x70\\xd1\\\r\n\\xf8\\x6a\\x72\\xd5\\x14\\x6f\\x49\\xc4\\x29\\x6a\\xb9\\xbe\\x9e\\x1c\\xa4\\x13\\\r\n\\xdf\\x99\\x20\\x2b\\x9b\\x6c\\x17\\x76\\xf4\\xd4\\x4f\\x2f\\x0f\\xc4\\x25\\x43\\\r\n\\x8b\\x09\\x10\\xf2\\xe2\\x22\\xd1\\x37\\x49\\x24\\xbe\\xdd\\x4c\\xd6\\x27\\x2d\\\r\n\\x52\\xc7\\x57\\x14\\xd1\\xd4\\x09\\xe3\\x44\\x67\\x4d\\xb7\\x91\\x7d\\x2d\\x83\\\r\n\\x7e\\x6a\\x5b\\x52\\xc4\\x28\\xe9\\xaa\\x69\\x1b\\x93\\x1d\\x56\\x20\\xc7\\x57\\\r\n\\xc9\\x7a\\x78\\x72\\x09\\x24\\x56\\xce\\xd7\\x27\\x09\\x43\\xe4\\x2d\\x8e\\xa8\\\r\n\\xaa\\xeb\\xaa\\x66\\xe0\\x51\\x24\\xab\\x4e\\xb1\\x55\\x3c\\x6f\\x4d\\x57\\x14\\\r\n\\x97\\x92\\x1f\\x89\\x72\\xd0\\x47\\x2e\\xe1\\x59\\xd5\\x2d\\xba\\x5a\\xf6\\xd3\\\r\n\\xc1\\xc2\\xb0\\x92\\x0a\\x58\\x20\\x9e\\x55\\xa5\\x97\\x9b\\x01\\x17\\xc6\\x29\\\r\n\\x32\\x16\\x79\\x93\\x14\\x19\\x3d\\x88\\x53\\xbb\\x0d\\x50\\x55\\x16\\x68\\xeb\\\r\n\\x8f\\x0e\\xe0\\xed\\x0c\\xa9\\xbc\\x62\\xa1\\x28\\xe1\\x38\\xb1\\xfa\\x1b\\xef\\\r\n\\xee\\xb6\\xd5\\x3f\\x17\\x8d\\x30\\xe2\\x5c\\x3d\\x39\\xb3\\x20\\x1d\\x4a\\xca\\\r\n\\xa3\\xc4\\xa8\\x1f\\xec\\xa6\\x8f\\xe3\\xc7\\xe9\\xdd\\x7b\\x8d\\x61\\x73\\x78\\\r\n\\xe5\\xe8\\xfe\\xec\\x80\\xdb\\xf9\\x12\\xda\\x78\\xa7\\xfb\\x9e\\x6b\\x72\\xa5\\\r\n\\xf6\\xdf\\xc8\\xdf\\x4d\\x49\\x59\\x15\\xb9\\xca\\x43\\x29\\xf4\\x16\\xea\\x1b\\\r\n\\x76\\xd8\\xfb\\x8d\\x54\\x71\\x7e\\x2b\\x51\\x24\\xf9\\xaf\\x87\\xe1\\xc8\\xe7\\\r\n\\xe1\\xf2\\xa6\\x90\\xc1\\x51\\x27\\xa0\\xc9\\x0a\\x21\\x44\\x1d\\x81\\x07\\xd7\\\r\n\\x55\\x69\\x96\\x7c\\xc6\\x32\\xad\\xcd\\xfa\\x4b\\x3e\\xdf\\x4e\\xae\\xda\\x3c\\\r\n\\x1f\\xed\\x51\\x7a\\x9e\\x17\\x4a\\x29\\xe5\\xa1\\xac\\x94\\x31\\xac\\xe1\\x6c\\\r\n\\xae\\xbc\\xb3\\x97\\x9d\\xa9\\xd4\\x94\\x68\\xcf\\x9e\\x2f\\x92\\xf1\\xf4\\x8e\\\r\n\\x32\\xb4\\x36\\x69\\x11\\x53\\xed\\x47\\x08\\xa8\\x8c\\x06\\x8d\\xd8\\x16\\x1c\\\r\n\\x56\\x9e\\x26\\x5b\\xdc\\x99\\x16\\xa2\\x72\\x3d\\xb8\\x85\\x3d\\xbb\\x6a\\xa2\\\r\n\\x7a\\x8c\\xb9\\xd2\\x37\\x85\\x84\\x6d\\x63\\xb6\\x4d\\x22\\x9f\\xcb\\x6f\\xd4\\\r\n\\xeb\\x81\\xd3\\x4f\\xb0\\x9e\\x19\\x00\\xff\\x00\\xfc\\x9a\\x6e\\x21\\x3b\\x7f\\\r\n\\xff\\x00\\x48\\x1a\\x45\\xd7\\x0f\\xa5\\xe2\\x57\\x3c\\x13\\xed\\x05\\x1d\\x57\\\r\n\\x0a\\xe2\\xca\\x7f\\xb3\\x4e\\x64\\x62\\x9e\\xb0\\x7b\\x49\\x47\\x2b\\x09\\x41\\\r\n\\xef\\x87\\x32\\xdb\\xeb\\x8a\\xd4\\x34\\x7f\\xe9\\x5c\\xe6\\xe0\\x5c\\x32\\x44\\\r\n\\xdd\\x65\\xa2\\x91\\x85\\x5d\\x47\\x11\\x8b\\xdc\\x4b\\x46\\xe9\\x0a\\xb2\\xf6\\\r\n\\x33\\x48\\xa3\\xb6\\xa2\\x9e\\x54\\xf0\\xcf\\x7c\\x64\\x57\\xe9\\xcb\\xdc\\xaf\\\r\n\\xaf\\x56\\xa9\\x61\\xa6\\x8f\\x36\\xe6\\x12\\x83\\x3c\\x77\\x16\\x44\\xfa\\x92\\\r\n\\x2d\\xd2\\x07\\xae\\x8f\\x13\\x5e\\x13\\x5f\\x1c\\x15\\xdc\\x12\\x9a\\x1e\\x28\\\r\n\\xd5\\x31\\x78\\x0a\\x4f\\xda\\x50\\xd4\\x53\\xb4\\x92\\xa5\\x5d\\x69\\xa7\\xa6\\\r\n\\xe5\\x54\\x25\\x38\\x99\\xcf\\x36\\xe1\\xdd\\xf5\\xc3\\xea\\xf8\\xa7\\xda\\x3f\\\r\n\\xb3\\xfc\\x36\\x83\\x87\\xe5\\x20\\xde\\xab\\x8d\\x9f\\x11\\x29\\x62\\x26\\xf0\\\r\n\\xdc\\x16\\x9a\\xb2\\x1a\\xa7\\x8b\\xcb\\x14\\x4f\\x56\\x91\\x86\\xbb\\x33\\x58\\\r\n\\x59\\x95\\xea\\x63\\xfb\\x43\\xf6\\xb5\\xb8\\x9b\\xd3\\xb3\\x55\\xc7\\x4b\\xc3\\\r\n\\xfe\\xcf\\x73\\x23\\xcf\\x99\\x1c\\xef\\x25\\x4d\\x6f\\x18\\xaf\\x86\\x0c\\x5a\\\r\n\\xd7\\x5a\\x1a\\x49\\xb9\\x44\\x02\\x02\\xe3\\x60\\xbc\\x23\\xec\\xf5\\x3b\\x53\\\r\n\\x41\\x17\\x0d\\x10\\x2f\\x10\\xe6\\xd5\\x4e\\x0d\\x35\\x52\\x04\\x99\\x84\\xaf\\\r\n\\xe1\\xa4\\x8f\\x86\\xb4\\xcd\\x52\\xf6\\x80\\xf5\\xe1\\x96\\x39\\xae\\xb8\\xc4\\\r\n\\x95\\xf3\\xbd\\x0f\\x0f\\x85\\xea\\xa0\\xa3\\x8e\\x96\\x18\\x38\\x72\\xd5\\xaf\\\r\n\\x2c\\xb7\\x8d\\x3e\\x0a\\x18\\x19\\xd1\\x23\\x21\\x52\\x57\\x73\\x79\\xf2\\xb5\\\r\n\\xb9\\x77\\xd5\\x0d\\x68\\x79\\x26\\xa7\\xe2\\xfc\\x17\\x85\\x71\\x46\\x6e\\x69\\\r\n\\x7e\\x63\\xba\\x3c\\x5c\\xd0\\xe6\\xfe\\xb0\\xa3\\xb6\\x27\\xd5\\x8e\\xa0\\xce\\\r\n\\x48\\x33\\xe4\\xc7\\x96\\x7c\\x26\\x09\\x5f\\x2c\\x05\\xf3\\x96\\xdf\\x11\\xaf\\\r\n\\xe6\\x7f\\x9c\\xf5\\x7a\\xea\\x44\\x6f\\x2a\\x29\\x6e\\x6a\\xef\\x90\\x56\\xc8\\\r\n\\x1b\\x6c\\x63\\x3e\\x85\\x3f\\xf6\\xd3\\xd5\\xd4\\xb3\\x32\\x40\\xa0\\xc5\\x0a\\\r\n\\x58\\x73\\x0f\\x74\\xe9\\x67\\xb1\\x93\\xb1\\x58\\xb2\\x1b\\x59\\xbf\\x2a\\xfa\\\r\n\\x8a\\xe7\\x13\\xb2\\x48\\xbe\\x19\\x65\\x51\\xfb\\xac\\x72\\x97\\xf2\\x58\\x04\\\r\n\\x01\\x52\\xea\\x7a\\x77\\x24\\xbf\\x9b\\x7d\\x3c\\x45\\x6e\\x72\\xee\\x9e\\x4f\\\r\n\\xe2\\xb9\\x5b\\x85\\x1f\\xcb\\xdb\\xbe\\xb2\\x66\\x28\\xf7\\x16\\xda\\xfd\\x3f\\\r\n\\x31\\x23\\xd0\\x63\\xb0\\xbe\\x23\\xd4\\xe9\\xde\\x27\\x8a\\xbe\\xa2\\x06\\x65\\\r\n\\x8e\\x9a\\x36\\xcb\\x16\\xd8\\x7c\\x52\\x3a\\x5b\\xea\\xab\\xd3\\xe8\\x4b\\x69\\\r\n\\x05\\x4f\\x2d\\x2a\\x60\\x82\\x66\\xa6\\x80\\xdb\\x08\\x60\\x2b\\x76\\x73\\xb2\\\r\n\\xa2\\x9d\\x86\\x3d\\x3e\\x83\\xbe\\x9b\\x85\\xc0\\x19\\xc5\\x2b\\xa9\\x4a\\xde\\\r\n\\xc6\\x79\\xc6\\x42\\xa1\\xff\\x00\\xb8\\xd7\\xe9\\xbf\\xe1\\xfa\\xea\\x6a\\x48\\\r\n\\xa9\\x57\\xe3\\xb5\\x3e\\x75\\x17\\x39\\x80\\x97\\x0d\\xb7\\xd7\\x22\\x75\\x25\\\r\n\\x21\\x38\\x89\\x7a\\x90\\xff\\x00\\x12\\xfa\\x1f\\xa3\\x01\\x6f\\xe5\\xae\\x1d\\\r\n\\x5b\\x4c\\xe3\\x13\\xc5\\x8f\\x0e\\xe2\\x23\\xb9\\x58\\x2a\\x57\\x28\\x5b\\xf5\\\r\n\\xf8\\xab\\x73\\xf4\\x1a\\x9a\\x82\\xb3\\xc4\\x9a\\x58\\xe6\\x55\\xe7\\x3b\\xe5\\\r\n\\x11\\x53\\x7b\\x46\\x01\\x5f\\x4d\\xf6\\xea\\x17\\xc7\\x61\\xa8\\xf8\\x4d\\x05\\\r\n\\xcd\\x77\\x13\\x98\\xf0\\xca\\x68\\xd0\\x5d\\x96\\x95\\x5a\\xd5\\x13\\x74\\x8f\\\r\n\\xc1\\xf0\\xee\\x3d\\x58\\x9f\\x4d\\x51\\x08\\xe7\\xb4\\x0b\\x4f\\x85\\x65\\x38\\\r\n\\x16\\x9b\\x3b\\x5f\\x94\\xa1\\x43\\x23\\x5e\\x4e\\xbe\\x74\\xaf\\x90\\xbb\\x27\\\r\n\\x28\\x1d\\x63\\x14\\x3c\\x92\\xe6\\x34\\x66\\x37\\x69\\x1c\\x5a\\xcb\\x9b\\x6f\\\r\n\\x7b\\x7f\\x0d\\x86\\xa9\\xfc\\x44\\x89\\x4e\\x90\\xdb\\x9b\\x2c\\x82\\xc3\\x96\\\r\n\\x9b\\xfc\\x3b\\xed\\x9b\\x0b\\x85\\x26\\xfb\\xee\\x06\\xa9\\xf8\\xc4\\x6c\\xd4\\\r\n\\x51\\x50\\x57\\x71\\x09\\x96\\x1d\\xef\\x0d\\x34\\x6f\\x22\\xd3\\x02\\x8c\\x4d\\\r\n\\xa4\\x92\\x2e\\x5a\\xef\\xb9\\x2e\\x74\\xf3\\xc8\\x5d\\xeb\\x6b\\x64\\x2f\\x2c\\\r\n\\x97\\x24\\xac\\x25\\x8e\\x28\\xa7\\xd3\\x23\\xff\\x00\\xda\\x2d\\xeb\\xab\\xd1\\\r\n\\xd4\\x0a\\x4a\\xc8\\x9c\\x3a\\xcf\\xcf\\xf0\\xf2\\x46\\xcb\\xd4\\xa5\\x24\\xb8\\\r\n\\x60\\xe1\\xad\\x62\\x0d\\xc1\\xd4\\x52\\x7d\\xa2\\x7a\\x54\\xe2\\xa6\\x17\\x81\\\r\n\\x38\\xcd\\x1c\\xca\\xf4\\xfc\\x4f\\x28\\xc8\\x51\\xc6\\x69\\x50\\x62\\x2a\\x47\\\r\n\\xff\\x00\\xd4\\x69\\xc0\\x79\\x3b\\x55\\xc7\\x25\\x84\\x82\\x6a\\x1e\\x27\\x4d\\\r\n\\xca\\x8f\\x26\\x69\\x69\\xa6\\xe5\\xd5\\x50\\xd6\\x41\\xe9\\x3a\\x44\\xc1\\xa1\\\r\n\\x68\\xe5\\xee\\x92\\xc3\\x73\\x63\\x71\\x20\\x6d\\x53\\xd5\\x2e\\x3c\\x02\\xa2\\\r\n\\xa9\\x9b\\xc2\\x89\\x59\\xeb\\x38\\x54\\xd6\\xdf\\x22\\xd1\\x73\\x2a\\xb8\\x70\\\r\n\\x39\\x0b\\x3d\\x44\\x72\\xd3\\xf5\\x2f\\xc4\\x55\\x23\\x51\\x9a\\xaa\\x26\\xe5\\\r\n\\xd4\\x5d\\xa9\\xaa\\xd0\\xc7\\x3d\\x05\\x52\\x77\\xce\\x9a\\xb6\\x1e\\x65\\x34\\\r\n\\xe2\\xdb\\xd9\\x1d\\xa4\\x5d\\x83\\x2a\\x9d\\x25\\x44\\xbc\\x3a\\xd4\\xec\\x7a\\\r\n\\xa6\\xf0\\xcc\\xc3\\x17\\xb0\\x56\\xb1\\xf9\\x49\\x36\\x59\\x3c\\xb9\\x58\\x1b\\\r\n\\x5c\\x6b\\x9f\\xc2\\x65\\xa9\\x9e\\x82\\xa9\\x8c\\x94\\x32\\xcd\\x4c\\xd1\\xc7\\\r\n\\x32\\x08\\xe7\\x67\\xc3\\x13\\xca\\x81\\xe9\\xe3\\x8f\\x9a\\xd8\\x94\\x60\\x55\\\r\n\\x8e\\x4e\\x62\\x12\\x8a\\x39\\x44\\x89\\x56\\x94\\x5e\\x19\\x2a\\x16\\x3a\\x59\\\r\n\\xaa\\xe3\\x99\\xc4\\x92\\xbf\\x87\\xaa\\x66\\xa8\\x81\\x69\\xe4\\x9e\\x61\\x15\\\r\n\\x3a\\x53\\xe5\\x2f\\x8a\\x49\\x9b\\xc3\\x92\\xc5\\x71\\x96\\x9a\\x5a\\xb8\\xa6\\\r\n\\xa4\\x86\\xf1\\x5a\\x8e\\x13\\x05\\x1b\\xbf\\x4a\\x38\\x85\\xfc\\xd5\\x11\\x5e\\\r\n\\x61\\x81\\x66\\xfe\\xce\\xdb\\xf7\\x34\\xf4\\x96\\xe7\\x3e\\x38\\xc6\\x81\\xa9\\\r\n\\xe3\\x50\\x56\\x27\\xa8\\x46\\x79\\xe5\\xa8\\x8a\\x0a\\x7b\\x49\\x14\\x60\\xf8\\\r\n\\x8c\\x4c\\xe2\\x69\\x16\\x22\\xc4\\x63\\xaa\\xaa\\x6e\\x5a\\x24\\x93\\x48\\x85\\\r\n\\xcc\\x11\\x4b\\xc5\\x85\\x3c\\x72\\xd4\\x49\\x26\\x74\\x72\\x4a\\xb4\\x14\\xd1\\\r\n\\x78\\x75\\x99\\xa0\\x0c\\xcf\\x0c\\xcb\\xfb\\x3e\\x78\\xf2\\x91\\xb0\\x59\\x29\\\r\n\\xb8\\x55\\x2c\\x52\\xc3\\x1d\\x14\\x71\\x3a\\xc9\\x9c\\x52\\x3d\\x5b\\x9b\\xf3\\\r\n\\xea\\x39\\x91\\xcc\\xf1\\x39\\x96\\x60\\xca\\xac\\xaf\\x20\\x48\\x62\\x8d\\x12\\\r\n\\xdd\\x5a\\xa7\\xab\\x8a\\x76\\x98\\xf8\\x87\\x59\\xe1\\x95\\xaf\\x68\\xd9\\x0d\\\r\n\\x44\\x32\\x44\\x77\\x6e\\x98\\xf3\\x8b\\x1c\\x8f\\xdc\\xdf\\xbb\\x6f\\x4a\\xb5\\\r\n\\x90\\x2b\\xb7\\x32\\x27\\xec\\xbb\\xe2\\xc0\\xf6\\xb6\\x2d\\xf5\\xf5\\xf5\\xbe\\\r\n\\xbf\\x68\\xc2\\x8a\\xd5\\x95\\xb4\\x94\\x95\\x10\\x36\\xcd\\x4f\\x0a\\x72\\x44\\\r\n\\x22\\x5e\\x58\\x3d\\x6e\\x1a\\x33\\xde\\xe0\\x11\\xb8\\xbe\\xb8\\xd5\\x35\\x6b\\\r\n\\x35\\x5c\\xf3\\xd3\\x65\\x47\\x54\\x3b\\x4c\\x69\\xe4\\x13\\x22\\xb0\\xb7\\x44\\\r\n\\x94\\xe4\\xbf\\x40\\xb5\\xa3\\x91\\xc0\\x16\\xd4\\x55\\xc2\\x3e\\x73\\x70\\xfa\\\r\n\\xba\\x9a\\x4a\\xa8\\x24\\x3f\\x79\\x4e\\xcd\\x1d\\x42\\x05\\x7d\\xed\\xe6\\x6e\\\r\n\\x5b\\x76\\xf4\\xed\\xa7\\xfb\\x49\\xc1\\x22\\xfd\\xf2\\x5a\\x5e\\x69\\xe1\\xcf\\\r\n\\x82\\x99\\x69\\x71\\x52\\x82\\x35\\x1b\\x45\\x3c\\x65\\x1b\\x0b\\x6d\\x36\\xfe\\\r\n\\xa7\\x4b\\xc2\\xaa\\xea\\x12\\xd2\\x81\\x43\\x32\\xbe\\xcf\\x1c\\x8b\\xb2\\x89\\\r\n\\xd4\\xfa\\x29\\x24\\x03\\xf8\\x72\\x5d\\x4b\\x11\\xff\\x00\\x54\\x9d\\xe5\\x34\\\r\n\\x8c\\x37\\xf8\\x47\\xe3\\x44\\xa7\\xdb\\x00\\x4c\\x7d\\xf7\\x0b\\xa9\\x04\\x5b\\\r\n\\xe6\\xcc\\x49\\x7f\\x91\\xb2\\x39\\x6d\\xfe\\x1a\\x6e\\x63\\x5f\\x25\\xb8\\xf6\\\r\n\\xb8\\xff\\x00\\xbe\\xda\\xfb\\x29\\xc1\\x69\\xda\\xd4\\x55\\x10\\x44\\xd5\\x00\\\r\n\\x75\\x11\\x36\\x10\\xc9\\x29\\xf6\\x0a\\x66\\x6d\\xbf\\x22\\xbe\\x9a\\x8e\\xab\\\r\n\\x9d\\xc4\\x21\\xa9\\x89\\x9e\\x2a\\xfc\\xf9\\x06\\x16\\x26\\xc1\\x45\\x2f\\x95\\\r\n\\xac\\xad\\xd5\\x77\\x05\\x6c\\xd6\\xbd\\xce\\xb8\\xb7\\x87\\x59\\xe7\\xa9\\x76\\\r\n\\x68\\x52\\x04\\x21\\x55\\x22\\xa6\\x1c\\x84\\x62\\x63\\x66\\x69\\x18\\x94\\xb8\\\r\n\\x55\\xe9\\x0b\\xb8\\xbd\\xf2\\xd7\\x11\\x8f\\x89\\x44\\xd2\\x53\\x70\\x87\\x86\\\r\n\\x7a\\x85\\x23\\xae\\x0e\\x15\\x54\\x52\\x96\\xae\\x6c\\x5a\\xd7\\x8a\\x90\\x98\\\r\n\\xea\\x2a\\x07\\xa4\\x0b\\x29\\x19\\x35\\x81\\xad\\xe0\\xd4\\xb6\\x9a\\x92\\x91\\\r\n\\xe7\\x9a\\x15\\x51\\x90\\x92\\x9e\\xb6\\x43\\x3d\\x19\\x46\\x1f\\xff\\x00\\x6c\\\r\n\\xc8\\x2e\\xbd\\xce\\xb8\\x5f\\x13\\x5e\\x17\\xc4\\xa9\\xa1\\xa5\\x79\\x26\\x49\\\r\n\\xaa\\x29\\xe5\\x82\\x10\\xe2\\xa0\\xca\\xa7\\xc4\\x4a\\xa9\\x17\\x29\\x92\\xfb\\\r\n\\x97\\xea\\x04\\x6a\\x85\\x78\\x97\\x1b\\xfb\\x37\\xc3\\x47\\x36\\x75\\x8d\\x2a\\\r\n\\xb8\\x87\\x8b\\xa8\\x79\\xa4\\x68\\x79\\x62\\x2a\\x6e\\x13\\x17\\x11\\x95\\x9b\\\r\n\\xd0\\xa3\\x04\\xee\\x2f\\xa6\\xe0\\xd2\\x57\\xd7\\xf1\\xda\\xff\\x00\\xb3\\xd4\\\r\n\\x71\\xd2\\x56\\xc2\\x94\\x69\\x04\\x15\\x10\\xbc\\x70\\xc6\\xed\\x0c\\xf5\\x93\\\r\n\\xb4\\xc3\\xc2\\x30\\x56\\x79\\x62\\xa7\\x49\\x23\\x52\\xab\\xbd\\x98\\x69\\x2a\\\r\n\\xbe\\xc8\\x70\\xae\\x07\\xc5\\x9e\\x8a\\x5f\\x0f\\xc4\\x64\\xfb\\x47\\xc5\\x78\\\r\n\\xcd\\x55\\x45\\x14\\xc9\\xb1\\x1f\\xb3\\x68\\xa4\\xa4\\xa3\\x61\\x7d\\xe3\\xe7\\\r\n\\x09\\x15\\xd7\\xb1\\x7d\\x13\\xc0\\xb8\\xef\\x07\\xe1\\x0c\\x40\\x55\\xa3\\xe0\\\r\n\\x5c\\x2e\\x97\\x83\\xe5\\xb5\\xca\\x8a\\xf8\\x29\\x12\\xac\\x36\\x67\\x14\\xe6\\\r\n\\x4e\\x6f\\xe7\\x2e\\x37\\xd5\\x7c\\xbf\\x68\\xdb\\x8b\\x97\\xf0\\xa2\\x46\\x6a\\\r\n\\xca\\x99\\x2b\\xa2\\x91\\xe0\\x2a\\x04\\x90\\xd6\\x73\\x67\\x5d\\xd2\\x59\\x2f\\\r\n\\x1e\\x61\\x8d\\xee\\xcb\\xb0\\xd6\\x1c\\x4b\\x88\\xd5\\x4f\\xc2\\x52\\xa0\\xcd\\\r\n\\x17\\x09\\x8e\\x50\\x1e\\xec\\xa6\\xec\\x1a\\x50\\xe9\\x10\\x6e\\xde\\x47\\xee\\\r\n\\xe4\\x2f\\x7d\\x0a\\x98\\x38\\x67\\x12\\xe1\\x71\\xd3\\x1c\\x9b\\x99\\x58\\xd3\\\r\n\\xc7\\x51\\x14\\xf7\\xbf\\x26\\x69\\x48\\x72\\xaf\\x6c\\x48\\xa7\\x8e\\x20\\x85\\\r\n\\xc1\\x5b\\x6c\\x74\\x60\\xa4\\x85\\x29\\xd7\\x1d\\xf1\\xb6\\x67\\x9c\\xca\\x5f\\\r\n\\xe2\\x1e\\xa0\\x0c\\x8a\\x85\\x90\\x6c\\xd6\\x05\\xee\\x45\\xf4\\xa3\\x69\\x23\\\r\n\\x6b\\xa7\\x50\\xb9\\x65\\x1f\\x78\\x41\\xfc\\x27\\xcb\\xed\\xfa\\x6a\\x8a\\xbe\\\r\n\\x9a\\x24\\x82\\x3e\\x0b\\x0c\\x74\\x11\\x22\\xde\\xc3\\x87\\x4b\\x31\\x58\\x62\\\r\n\\x03\\x75\\x1e\\x1e\\x67\\x16\\xed\\xd2\\xd6\\xf4\\x1a\\x8a\\x68\\xb8\\x3f\\x10\\\r\n\\x92\\x29\\x63\\x49\\x23\\x75\\x8f\\xa5\\xd1\\xd4\\x32\\x3a\\xef\\xd9\\x94\\x82\\\r\n\\x3e\\x9a\\x92\\x37\\x66\\x19\\xae\\x05\\xbc\\xd6\\x07\\xd6\\xdd\\xf6\\xd0\\xad\\\r\n\\x4a\\xdf\\x13\\x0c\\x76\\x51\\x03\\x63\\x1c\\x31\\x96\\x6b\\x61\\x1a\\x74\\xee\\\r\n\\xde\\xad\\x62\\x4f\\xab\\x1d\\x55\\xe5\\x13\\xc7\\x1b\\x3c\\x52\\x87\\x68\\xc6\\\r\n\\x2c\\xe8\\x1d\\x64\\x8c\\x5e\\xd9\\xf4\\x91\\xfc\\x23\\xd4\\xdc\\xea\\x7a\\xea\\\r\n\\xc0\\x22\\x8e\\x30\\xc7\\xa9\\xb3\\xc8\\xd8\\xf4\\xa4\\x60\\x6e\\xde\\xdb\\xff\\\r\n\\x00\\x3f\\x48\\xde\\x06\\x78\\x69\\x25\\x6b\\x2f\\x57\\x5b\\x0b\\xf7\\x7f\\x41\\\r\n\\xf9\\x0d\\xc0\\xf9\\xbb\\xea\\x7e\\x26\\xa1\\x6d\\xbe\\x31\\xa9\\xbf\\x32\\x71\\\r\n\\xfd\\xa0\\x41\\xba\\xad\\xcf\\x5e\\xd6\\xbe\\xa5\\xe2\\xbc\\xbd\\xe6\\xa3\\x93\\\r\n\\x87\\xc8\\x09\\xdf\\xc5\\xb0\\xe5\\x65\\xfd\\xc2\\x87\\x3f\\xa5\\x9b\\x59\\xa8\\\r\n\\xc6\\xe2\\xcd\\xb6\\xc3\\xd8\\xa9\\xd4\\x79\\xc9\\xcd\\xb9\\xf4\\xee\\x07\\xd7\\\r\n\\x50\\x3c\\x7d\\x52\\x46\\xea\\xcd\\xfd\\xc1\\xdc\\xfe\\x96\\x1f\\xcf\\x55\\x54\\\r\n\\x35\\x11\\x34\\x9e\\x2e\\x58\\xdf\\x94\\xa4\\xe5\\x9d\\x3c\\x89\\x2c\\x4e\\x2d\\\r\n\\xea\\xb8\\xb0\\xfa\\xab\\x1d\\xf5\\x25\\x5f\\x10\\x7e\\x41\\x9a\\x2b\\xd2\\x01\\\r\n\\x76\\x3c\\xdc\\xae\\x8d\\x20\\x0a\\x48\\x2a\\xc0\\x11\\x6d\\xaf\\x7c\\xb5\\x07\\\r\n\\x1c\\x77\\xcb\\x89\\xc8\\xf2\\x08\\x99\\x97\\x11\\x49\\x48\\xf7\\xe8\\x88\\x36\\\r\n\\xff\\x00\\x15\\x99\\x99\\xa5\\xb5\\xdb\\xb2\\x9c\\x7b\\xc9\\x4e\\xec\\xef\\x9e\\\r\n\\x4f\\x9c\\xa4\\xb3\\x96\\x26\\xf6\\xbf\\xb7\\xb0\\xf4\\x1a\\x8b\\x30\\x59\\xad\\\r\n\\x7f\\x60\\x08\\xd8\\x0f\\xad\\xce\\xd6\\xf7\\xd0\\x8a\\xd7\\x71\\xd7\\x2e\\x22\\\r\n\\xe1\\x5b\\xe5\\x5b\\xf6\\x18\\x8e\\xff\\x00\\xe7\\xaa\\xaa\\x34\\x91\\x1d\\xeb\\\r\n\\x60\\x92\\xa3\\x16\\x9d\\x43\\xa3\\xc0\\xc2\\x4c\\x2c\\xcd\\x93\\x33\\xb1\\xbf\\\r\n\\xe4\\x3b\\x76\\xd3\\xd4\\xcb\\x92\\x50\\x52\\x9b\\x33\\x77\\xcb\\x97\\xb0\\x45\\\r\n\\x1e\\xa4\\xdb\\xf4\\xd4\\xea\\x3c\\x65\\x24\\xb9\\x9c\\x6a\\x19\\x92\\x48\\x72\\\r\n\\xbd\\xba\\xe3\\x00\\x32\\xad\\xfd\\x54\\x9b\\x6b\\x87\\x53\\xf3\\x48\\x4c\\xe5\\\r\n\\x8c\\x80\\xec\\x63\\x6c\\x91\\xac\\x40\\xed\\xf5\\x1a\\xe3\\x3c\\x0f\\x8f\\xa4\\\r\n\\xb5\\xdc\\x1e\\x0a\\xca\\xd7\\x85\\xd4\\xff\\x00\\xa4\\x38\\x62\\xb4\\xc1\\xf9\\\r\n\\x9c\\x36\\x67\\xdb\\x10\\xae\\x1d\\xe8\\xe5\\xca\\x9a\\x7c\\x7c\\xa8\\xd6\\x90\\\r\n\\x53\\x71\\x5e\\x1f\\x5f\\xfb\\x4b\\xec\\xec\\xf3\\xfe\\xe9\\x5f\\x49\\x97\\x87\\\r\n\\x22\\xca\\xcd\\x4d\\x57\\x0e\\xef\\x45\\x5d\\x0f\\xf6\\x94\\x93\\xd8\\xe1\\xd7\\\r\n\\x03\\x4d\\x10\\x2e\\x29\\xaa\\x62\\x95\\x2b\\x28\\x38\\xa5\\x54\\xf4\\xd5\\x7c\\\r\n\\x2e\\xa2\\x31\\x51\\x41\\x23\\xc2\\x23\\x36\\xa9\\xa3\\xa8\\x57\\xa7\\x6e\\x6c\\\r\n\\x6e\\x39\\x53\\xc4\\x12\\x7b\\xa9\\x45\\x9a\\x36\\x4d\\x3c\\x1c\\x2e\\xb6\\x93\\\r\n\\xec\\x8f\\xda\\x0a\\x86\\x8e\\x51\\x0f\\x18\\x33\\xd4\\xf0\\x09\\x5e\\x58\\xf9\\\r\n\\x6f\\x4d\\x49\\x5a\\x64\\x49\\xb8\\x7b\\x8c\\x03\\x47\\x15\\x69\\x96\\x2a\\x7a\\\r\n\\x81\\x1b\\x41\\x51\\xf2\\xeb\\x81\\xf0\\xde\\x23\\xc1\\xe6\\xa2\\xa4\\xa5\\xa5\\\r\n\\xf0\\xf4\\xf7\\x73\\x53\\x13\\xd5\\x4c\\xd2\\x54\\xd5\\x57\\x41\\x39\\x59\\xe8\\\r\n\\x65\\x86\\xa1\\xe7\\x64\\x4c\\x1a\\x62\\x90\\xa2\\x16\\xe5\\x99\\x79\\x6a\\x8d\\\r\n\\x43\\x5a\\xd2\\xc3\\x12\\x44\\x21\\xf8\\xd2\\x53\\x1a\\x18\\xe3\\xbf\\x2d\\x8c\\\r\n\\xf4\\x72\\xa4\\x32\\x1a\\x70\\xfc\\xf8\\x65\\x8f\\x99\\x92\\xf4\\x90\\x8f\\xa6\\\r\n\\x30\\xd4\\x54\\x4b\\x5f\\x0b\\x50\\xbc\\xd3\\x54\\x19\\xb9\\x15\\xff\\x00\\xbb\\\r\n\\xa8\\x6c\\x69\\xc3\\x52\\x94\\x58\\xa6\\x76\\x13\\xce\\xea\\x6a\\xa5\\xe5\\xa6\\\r\n\\x26\\x24\\x1d\\x73\\x4b\\x51\\xc0\\xd2\\x8a\\x1a\\x90\\xd3\\x17\\x86\\xb2\\xa5\\\r\n\\xb8\\x87\\x0f\\x83\\x25\\x85\\xda\\x4a\\x69\\xc4\\x8b\\x57\\x0b\\x24\\x86\\x65\\\r\n\\xa7\\x32\\x73\\xd7\\x03\\x34\\x93\\x4a\\x7a\\x19\\x63\\xa6\\xa9\\xa0\\xe3\\x71\\\r\n\\xbc\\x79\\xc9\\x92\\x71\\x96\\x4a\\xc4\\x4b\\xc4\\xb4\\xf5\\xf4\\xf3\\xf8\\x5e\\\r\n\\x67\\x4a\\xc3\\x52\\x89\\xf1\\x60\\x86\\x68\\xc6\\x12\\xec\\x75\\xc3\\xa7\\xad\\\r\n\\xe3\\x54\\x34\\xd5\\x15\\x14\\x79\\x4b\\x45\\x3f\\x0e\\xa6\\x3c\\xa4\\x8d\\x23\\\r\n\\x31\\xf2\\xd2\\x30\\x98\\xda\\x36\\x58\\xe4\\x32\\xc8\\x87\\x3b\\x35\\xc8\\x6b\\\r\n\\xea\\xa3\\x86\\xac\\x52\\x1c\\x29\\x93\\xaa\\x64\\x86\\x14\\x97\\x2b\\x81\\x24\\\r\n\\x4b\\x4e\\x66\\x4b\\x2d\\x8d\\x8f\\x35\\xf2\\x46\\xc6\\xe0\\x1d\\x4d\\x14\\x54\\\r\n\\x54\\x8c\\xf0\\xf4\\xcb\\x2a\\x2c\\x89\\x93\\xdf\\xee\\xd3\\x7b\\x84\\x02\\xc1\\\r\n\\x8f\\xce\\xd9\\x0b\\x62\\x35\\xcf\\x48\\x49\\xa8\\xe0\\x32\\x85\\x78\\x84\\x8e\\\r\n\\x64\\x5e\\x1d\\x33\\x75\\xe0\\x4d\\xdb\\xe0\\x4b\\x62\\x2f\\xb0\\x4c\\xb4\\x60\\\r\n\\x7a\\x79\\xbc\\x1c\\xe4\\x3a\\x54\\xe3\\x92\\x44\\xed\\xb2\\xbb\\x7e\\x06\\x1d\\\r\n\\x9c\\x1d\\x88\\xd7\\x19\\xe1\\xb7\\x44\\x69\\x80\\x97\\xe1\\x75\\x2e\\x41\\x58\\\r\n\\x09\\x15\\x47\\x6c\\xae\\x9d\\x3a\\xfb\\x27\\x5f\\x4a\\xee\\xf4\\x72\\xf0\\x41\\\r\n\\xc3\\xf8\\x8d\\x36\\xc2\\x39\\xc4\\x15\\x93\\xf2\\xe5\\x03\\xe5\\x9a\\x2c\\xf2\\\r\n\\x1f\\xc2\\x4a\\x9e\\xfa\\xae\\xfb\\x6b\\xf6\\x5e\\x8e\\x29\\xea\\xe6\\xb3\\xd7\\\r\n\\x84\\xdf\\x91\\x70\\x43\\xd7\\x24\\x63\\xf0\\x5f\\xe3\\xa8\\x1f\\xef\\x3f\\x16\\\r\n\\xbe\\xcf\\x57\\xc9\\x20\\x6a\\xc8\\xbc\\x3c\\x75\\x3d\\xf2\\xc0\\x82\\xab\\x31\\\r\n\\xf4\\xda\\x54\\x78\\x4e\\xf7\\xea\\x1e\\xfa\\x79\\x23\\x1b\\xcd\\xd5\\xee\\x0d\\\r\n\\xff\\x00\\x87\\xd3\\x7d\\x27\\x0c\\xa9\\x47\\x7a\\x7a\\xa7\\x48\\xbe\\x1f\\x4c\\\r\n\\x91\\xb1\\x3d\\x32\\x44\\x6c\\x77\\x53\\xdc\\x1d\\x9c\\x12\\x3d\\x8e\\xa9\\x28\\\r\n\\x9b\\x81\\xf1\\x51\\xc2\\x69\\x68\\x56\\x38\\x6b\\xa8\\x16\\x28\\xa9\\xd6\\x49\\\r\n\\x18\\xbe\\x4d\\x51\\xc4\\x65\\xa5\\xa6\\x91\\x01\\x07\\x9b\\x1f\\x38\\x48\\xb7\\\r\n\\xda\\xe3\\x52\\xd3\\x27\\xda\\x3e\\x07\\xc3\\x90\\xc7\\xcf\\xaa\\x93\\xc5\\x4f\\\r\n\\xc4\\xaa\\xac\\x8a\\x59\\xb1\\xa4\\xe0\\x94\\xd5\\xb1\\xa2\\x2a\\x80\\x4f\\x3a\\\r\n\\x71\\x77\\xbd\\x98\\x6c\\xfa\\xad\\x99\\xf8\\xaf\\xda\\x4e\\x38\\xeb\\x4c\\xb7\\\r\n\\x1c\\x37\\x87\\xd1\\x70\\x68\\x6e\\x83\\xbc\\x35\\x15\\x95\\x15\\xd5\\x01\\x9b\\\r\n\\x1f\\x5a\\x15\\xb7\\x7b\\x5f\\x6d\\x70\\xfe\\x0e\\xbc\\x09\\xe3\\xe1\\xbc\\x5a\\\r\n\\x1a\\x8e\\x15\\x53\\x37\\x1c\\xe2\\xb5\\x1c\\x62\\xae\\x48\\xa6\\xbd\\x3b\\xc5\\\r\n\\x2f\\xc3\\xa2\\xa2\\x2b\\x22\\xb5\\xdd\\x7c\\x19\\xe9\\x04\\x0b\\x1e\\xad\\x54\\\r\n\\xf8\\x6a\\xff\\x00\\xfe\\x58\\x9b\\x86\\xd7\\x4f\\xc2\\x2b\\xa4\\xe0\\xbc\\x23\\\r\n\\x86\\x46\\x23\\x14\\x92\\x72\\xa1\\x79\\x67\\x8e\\x08\\xf8\\x9a\\xc2\\xd0\\x3d\\\r\n\\x33\\x44\\xd1\\xd5\\x48\\x54\\x54\\xa8\\xc0\\xe3\\x7d\\x17\\xfd\\xad\\x5f\\xf6\\\r\n\\x87\\x88\\xd7\\xe6\\x52\\xa6\\x6a\\x9a\\x8a\\xaa\\x84\\x4a\\xae\\xd2\\x85\\xab\\\r\n\\x3e\\x24\\x45\\x14\\x58\\xdb\\xa6\\xc2\\xff\\x00\\x5d\\x7d\\x92\\x9a\\xa2\\xff\\\r\n\\x00\\xe8\\xff\\x00\\xde\\x6a\\xaf\\xef\\x07\\x0f\\x67\\xea\\xff\\x00\\xfd\\x88\\\r\n\\x17\\xbe\\xaa\\xf8\\xfd\\x38\\x1e\\x32\\x69\\x4c\\x8c\\xad\\xe5\\x90\\x3c\\x87\\\r\n\\x38\\x9c\\x7b\\x4d\\x19\\xe5\\x37\\xe7\\xb6\\xe0\\x6a\\x97\\xed\\x5f\\xd9\\xe7\\\r\n\\x95\\xb8\\x0f\\x1e\\x8a\\x79\\xde\\x9f\\x23\\xc9\\xe6\\x5c\\x78\\x9e\\x1b\\x52\\\r\n\\x06\\xc2\\x58\\x26\\x7c\\xe2\\xbe\\xe3\\xba\\x74\\x83\\x7f\\x19\\xc3\\x64\\x49\\\r\n\\x55\\x98\\xa4\\xcb\\xb7\\x32\\x96\\xa2\\x3d\\xb0\\x91\\x37\\x23\\x07\\xbf\\xf0\\\r\n\\xb0\\xb3\\x02\\x46\\x8f\\x31\\x6f\\x18\\xb4\\x52\\xc7\\x20\\x52\\x3d\\x9a\\xf7\\\r\n\\xd8\\xa9\\xbf\\xb5\\x8d\\xf7\\xd1\\xe2\\xfc\\x2a\\x17\\x8a\\x30\\x41\\xe2\\x94\\\r\n\\xf4\\xb1\\xac\\xa5\\x29\\x87\\x57\\x8d\\xa7\\xa7\\xbc\\x77\\x31\\x6e\\xb2\\xa0\\\r\n\\x75\\xb8\\xb3\\x00\\x2c\\x6f\\xc1\\x98\\x54\\x78\\xd5\\x96\\x99\\x19\\x27\\x96\\\r\n\\x9b\\x90\\x5a\\x94\\xa5\\xa9\\x15\\xe1\\x17\\xc4\\xac\\x38\\x6f\\x73\\x91\\xea\\\r\n\\xbe\\x90\\x00\\x43\\xa3\\x11\\x25\\x8e\\x42\\x51\\x72\\xeb\\x6b\\x5f\\xf0\\xdb\\\r\n\\xb9\\xff\\x00\\x3d\\x72\\x72\\x0f\\x52\\xc2\\xf2\\xed\\xd3\\x49\\x4d\\xf8\\x06\\\r\n\\xc1\\x72\\xf7\\xb9\\xbf\\x76\\xdb\\x5c\\x59\\xd1\\x59\\xd5\\x84\\x10\\x45\\x8a\\\r\n\\xbe\\x5d\\x75\\x30\\x75\\xb0\\x5f\\x48\\xc8\\xcb\\x6c\\x80\\x51\\x7e\\xda\\xa3\\\r\n\\xa3\\xf0\\xf9\\xf8\\x4a\\x5a\\x7a\\x6c\\xbc\\x4d\\x50\\xcb\\x91\\x12\\xc5\\x95\\\r\n\\x86\\xc2\\xf8\\xde\\xda\\x31\\x48\\x45\\x3d\\x7a\\xe4\\x0a\\x5e\\xc9\\x32\\xfa\\\r\n\\x3c\\x77\\xf5\\x3f\\x32\\x5e\\xe3\\xd3\\x6d\\x39\\x27\\x96\\x11\\x6c\\xfc\\xbb\\\r\n\\x2b\\x8f\\x94\\x9e\\xc5\\x46\\xdf\\x4f\\x5b\\xe9\\x2a\\x07\\x44\\x62\\x0f\\x87\\\r\n\\x0f\\x49\\x7b\\x05\\xbe\\x3f\\x56\\x3e\\xff\\x00\\x99\\xf7\\xd4\\xd9\\x4b\\xdd\\\r\n\\x4a\\x8a\\x46\\x16\\xe5\\x0b\\x1e\\xdb\\x90\\xd7\\x3d\\xdb\\xbe\\xfa\\x5a\\x47\\\r\n\\xba\\xc0\\x95\\x09\\xf1\\x08\\xb2\\x46\\xa6\\x4b\\x75\\x37\\x61\\xb6\\x97\\x82\\\r\n\\x51\\xa6\\xf5\\x3c\\x39\\x71\\x95\\x5f\\xca\\xaf\\x24\\x72\\x25\\x45\\xc7\\x98\\\r\n\\xc9\\x8b\\xdb\\xe9\\xdf\\x5c\\xc0\\x72\\x95\\x37\\x9a\\x9f\\xe5\\x97\\x0f\\xed\\\r\n\\x11\\x7b\\x73\\x2d\\xdf\\xd4\\xfa\\x68\\x53\\xcb\\x4e\\xbd\\x5d\\x36\\xc6\\xc7\\\r\n\\xf9\\xe9\\x2a\\x69\\x24\\xcd\\x0f\\xf6\\x6f\\x60\\xeb\\xf4\\xff\\x00\\xa6\\xaa\\\r\n\\x6a\\xe8\\x2d\\x35\\x73\\x2a\\xac\\x94\\xb9\\x01\\x2a\\x42\\xdd\\xde\\x2f\\x95\\\r\n\\xb3\\xb5\\xad\\x70\\x46\\x3a\\x94\\xd5\\xd3\\xc9\\x4c\\xf4\\x9b\\x11\\x24\\x65\\\r\n\\x0a\\xed\\xd2\\xb6\\x70\\x3b\\x8d\\xfe\\xba\\x8d\\x66\\x61\\x0a\\xb1\\xe6\\x4a\\\r\n\\xc5\\x41\\xe5\\xe4\\x76\\x38\\xfc\\xde\\xa5\\x87\\xa9\\x3f\\x5d\\x42\\xb0\\x22\\\r\n\\x05\\x8e\\x28\\xa3\\x06\\x20\\x11\\x0a\\xc6\\xa0\\x29\\xb6\\xe4\\x5c\\x0b\\xef\\\r\n\\x7e\\xfa\\x47\\x5e\\xe3\\xbf\\xad\\xad\\xdc\\x1d\\x5d\\x7a\\xe6\\xc8\\x72\\xb6\\\r\n\\x3b\\x4a\\x7c\\xb6\\xf4\\xdb\\xcd\\x7f\\x4b\\x5f\\x4e\\x25\\x7e\\xac\\x1a\\x6a\\\r\n\\xa9\\x98\\xf6\\xdb\\x2c\\x76\\x27\\x7d\\xbf\\x96\\xa6\\x7e\\x1e\\xf3\\x2c\\x91\\\r\n\\xc8\\x6a\\x68\\x91\\xe2\\x31\\x39\\x5a\\x7b\\xc3\\x57\\x10\\x07\\xab\\x98\\xa6\\\r\n\\xe5\\xe3\\x7f\\x89\\xbc\\x72\\x1e\\x89\\x13\\x5f\\x06\\x9e\\x56\\x92\\x66\\xb7\\\r\n\\x84\\x51\\xd6\\x87\\x7d\\x82\\xfa\\xe5\\xe6\\x2d\\xff\\x00\\xa6\\xb3\\x96\\x09\\\r\n\\x29\\xe3\\x9c\\x3b\\x27\\x35\\x4a\\xdc\\x0e\\xe7\\x71\\xe8\\xdf\\xd7\\x5c\\x0e\\\r\n\\x46\\x6e\\x5c\\x43\\x88\\xa4\\x2e\\xfe\\xb6\\x62\\x3a\\x8f\\xf3\\x3f\\x96\\xaa\\\r\n\\x61\\x07\\x99\\x1f\\x11\\xa4\\x59\\xc5\\x85\\xef\\xcd\\xa3\\xe4\\x35\\xb7\\xff\\\r\n\\x00\\x6b\\x1b\\x1f\\xcf\\x55\\x6d\\x4b\\x0f\\x8b\\xe0\\xb5\\xf1\\x42\\x38\\x97\\\r\n\\x0d\\xae\\x19\\x70\\xca\\xc8\\xb0\\x5b\\x89\\x91\\x88\\xb3\\xa5\\xaf\\x15\\x44\\\r\n\\x45\\x67\\x85\\xba\\xe2\\x70\\x74\\x78\\xd7\\xd9\\x76\\x96\\x5a\\x5a\\x39\\xa2\\\r\n\\x9f\\x8b\\xf0\\x36\\x75\\x92\\xb3\\x83\\xc7\\x1b\\x89\\x0c\\x96\\xb7\\xef\\x7c\\\r\n\\x3f\\x3e\\x81\\x5c\\x88\\x79\\x51\\xb5\\xaa\\x63\\x8c\\xe4\\x5a\\x1a\\xe8\\xf8\\\r\n\\x7d\\x25\\x3a\\x4f\\x1b\\xc8\\x39\\xb1\\xc3\\x92\\x29\\xf9\\x81\\x5c\\x64\\x67\\\r\n\\x6b\\xdd\\x4a\\xa8\\xc0\\x8b\\x8c\\x7c\\xc4\\x52\\x40\\xf4\\x9c\\x53\\x84\\xcc\\\r\n\\x7f\\x78\\xe1\\x1c\\x52\\xd5\\xbc\\x2e\\xa2\\x3b\\x39\\x2f\\x06\\x7c\\xc9\\xa9\\\r\n\\xa7\\xcc\\x00\\xaf\\x14\\x8b\\x8d\\xf2\\xc1\\xb1\\xb6\\x95\\xf8\\x63\\xcf\\xc1\\\r\n\\xaa\\xe9\\xdb\\xe2\\xf0\\x5a\\xfa\\x86\\x95\\x1a\\x26\\x22\\x36\\x86\\x8b\\x88\\\r\n\\xec\\x71\\x36\\x1c\\x81\\x37\\x55\\x95\\x53\\xa4\\x76\\x5a\\xc9\\x5a\\x41\\x12\\\r\n\\xac\\x1c\\x36\\x38\\xa0\\x89\\x1c\\x9a\\x88\\xdc\\xca\\x6a\\xb1\\x73\\xd4\\x79\\\r\n\\x0d\\x12\\x38\\x0c\\xa8\\x5d\\x72\\x6d\\x89\\x3a\\xa7\\x34\\x2a\\x5a\\x8f\\xf6\\\r\n\\x68\\x8e\\xa1\\xaa\\x93\\x39\\x26\\xae\\x97\\x33\\x54\\x5d\\x9a\\xf9\\xf2\\x9e\\\r\n\\x45\\x89\\x0b\\x29\\x5b\\x42\\xd6\\x23\\xa8\\x69\\x38\\xa5\\x35\\x13\\x56\\xf0\\\r\n\\xf5\\xc5\\xea\\x67\\x53\\x4f\\x64\\x7e\\x50\\x69\\x22\\x78\\x63\\xf8\\xbc\\xce\\\r\n\\x68\\x0c\\x2c\\x24\\x52\\xb6\\x22\\x4e\\xe0\\x70\\xf4\\xa3\\x6a\\x6e\\x1f\\x3c\\\r\n\\x2b\\x25\\x1f\\x87\\x9b\\x18\\xa3\\x30\\xb2\\x0b\\x94\\x89\\x8b\\x30\\xcb\\x92\\\r\n\\x2c\\x32\\xcc\\xc8\\x48\\x1e\\x6d\\x43\\x3d\\x50\\x59\\x98\\xc6\\x18\\xc8\\x22\\\r\n\\xc6\\x58\\x4f\\x39\\x79\\xf8\\x4a\\x77\\x68\\xb0\\x3b\\x2b\\x02\\x6e\\x74\\x66\\\r\n\\x81\\xb9\\xc2\\xa7\\x2a\\x95\\x53\\xba\\x03\\x91\\xea\\x0d\\xea\\x4f\\xe1\\x3a\\\r\n\\x97\\x9b\\x0d\\xa9\\xaa\\xe1\\x7a\\x6a\\xb8\\xfe\\x47\\x8a\\x6d\\x8e\\x6a\\x7b\\\r\n\\x10\\xbd\\x88\\xf5\\x60\\x74\\xd4\\xe0\\x8e\\x90\\xd1\\x44\\x05\\xba\\xa2\\xca\\\r\n\\xf1\\x9f\\xd5\\x3d\\x7e\\xba\\x56\\x84\\x59\\x80\\x57\\x9a\\xea\\x0e\\x40\\x10\\\r\n\\x08\\x3b\\x7b\\x6c\\x35\\xc3\\xe3\\xa5\\xe1\\x95\\x93\\xac\\x2d\\x58\\xbc\\xd1\\\r\n\\x03\\xac\\x51\\xab\\xb4\\x4e\\x0b\\x4c\\xca\\x23\\x45\\xdd\\x8e\\x4c\\xc0\\x0d\\\r\n\\xf7\\x1a\\x1f\\xb6\\x38\\xbf\\xd9\\xda\\x6e\\x15\\x28\\x92\\x3e\\x23\\x49\\x3f\\\r\n\\x11\\x5a\\xd9\\xf1\\x93\\xa4\\x5a\\x9f\\x85\\xa7\\x11\\x7e\\xdd\\x0c\\xb2\\x88\\\r\n\\xc0\\x07\\xa9\\x81\\x07\\x5b\\x55\\xf1\\x0e\\x23\\x41\\x54\\xd2\\x4d\\x40\\x94\\\r\n\\x54\\x94\\xb4\\xd0\\x8a\\x0a\\xd7\\xcd\\x62\\x15\\xb3\\x54\\x4c\\xc7\\xc2\\xca\\\r\n\\x03\\xe5\\xe0\\x43\\xf4\\x2d\\xd7\\xbe\\x96\\x2a\\x7e\\x1e\\xea\\x80\\xe2\\xad\\\r\n\\x2c\\xef\\x57\\x35\\xfd\\x09\\xc6\\x2a\\x78\\x8d\\xc7\\xb4\\x3a\\xa6\\x6a\\x18\\\r\n\\xe7\\xa1\\xe1\\xc6\\xfc\\xf9\\x22\\x30\\x70\\xb7\\x65\\x2b\\x60\\xe6\\x68\\xc4\\\r\n\\x75\\x72\\xd8\\x90\\x45\\xcb\\x7f\\x2d\\x71\\x88\\xbe\\xd0\\xfd\\xb2\\xe1\\xb2\\\r\n\\xa7\\x12\\x79\\xcc\\x41\\xab\\xdd\\xf8\\xa7\\x0f\\x8e\\x65\\x31\\xf3\\x29\\x25\\\r\n\\x65\\x66\\x8a\\x4e\\x5e\\x2b\\x2a\\x0b\\x45\\x24\\x60\\xa9\\x22\\xf9\\x09\\x23\\\r\n\\xca\\x1e\\x25\\xc3\\x25\\xe0\\x35\\x6d\\x4f\\x35\\x39\\x0f\\x15\\x4f\\x87\\xa5\\\r\n\\xe5\\x64\\xac\\x2e\\xc9\\x96\\x3d\\x48\\xfd\\x4a\\xc7\\x7f\\xae\\x11\\xc1\\x25\\\r\n\\x24\\xec\\xf0\\xf3\\xe0\\x95\\x4a\\x3c\\x71\\x49\\xd4\\x87\\x16\\xdb\\x16\\x06\\\r\n\\xe0\\xfa\\x8b\\x1d\\x52\\xcb\\x0b\\x62\\xd4\\xd5\\x22\\x60\\x47\\x45\\x98\\xdb\\\r\n\\x7d\\xb6\\x3b\\x5f\\xf3\\xd5\\x1d\\x69\\xff\\x00\\x51\\xfb\\x6b\\xc0\\x69\\xe5\\\r\n\\xa8\\x4e\\xca\\x9c\\x4a\\x86\\x23\\x47\\x5a\\xcb\\xfe\\xf3\\xc3\\x37\\x38\\xff\\\r\n\\x00\\xbd\\xa6\\x84\\xf7\\x03\\x53\\xe0\\x4c\\x54\\x5f\\x67\\xa4\\x96\\x8b\\x3b\\\r\n\\x95\\x3c\\xe8\\xa1\\xa7\\x45\\xc7\\x7d\\xbe\\x20\\x65\\x16\\xf6\\xd7\\x8c\\x92\\\r\n\\x3f\\x19\\x54\\xdc\\x2e\\xab\\x28\\xd9\\x98\\x34\\xcf\\x0c\\x95\\x11\\xf2\\xf3\\\r\n\\xfb\\xc5\\xc9\\x45\\xb2\\x06\\xf6\\xed\\xae\\x1b\\x28\\x49\\x78\\x24\\xd3\\x83\\\r\n\\x2b\\xc0\\xd7\\xaf\\xa5\\xdd\\x85\\xd5\\xd9\\x04\\x55\\x11\\xd9\\xc0\\x2a\\x79\\\r\n\\x32\\x81\\x7b\\x1d\\x71\\x5e\\x0f\\x51\\x2d\\x3d\\x67\\x04\\xe2\\x2a\\xb3\\x52\\\r\n\\xd4\\x52\\xcc\\xb3\\xf8\\x0e\\x25\\x1a\\xb8\\x49\\xb9\\x5b\\x4f\\x08\\x92\\x35\\\r\n\\x8d\\x26\\x56\\x8d\\x6f\\xd3\\xf5\\xd5\\x55\\x2f\\x0e\\x11\\x12\\xbf\\x16\\xb2\\\r\n\\x29\\xdc\\x8a\\x4a\\x9a\\x57\\x90\\xaa\\xbb\\x7a\\xbe\\x7d\\xe2\\x68\\xc3\\x3a\\\r\n\\xde\\xdf\\x89\\x75\\x90\\x7e\\x5d\\x4c\\x2b\\x8d\\x4d\\x1b\\x39\\x28\\x5d\\xc7\\\r\n\\x49\\x2d\\xed\\xdc\\xc6\\xcc\\xbb\\xdb\\xe9\\xb4\\x55\\x31\\xc2\\x24\\x0b\\x9c\\\r\n\\x72\\x2a\\x90\\xe1\\xd0\\x1f\\x23\\x01\\xf5\\xd9\\xbf\\xbd\\xdb\\x50\\xad\\x3a\\\r\n\\x08\\x62\\x78\\x63\\x31\\x44\\x96\\xc2\\x1c\\x3a\\x39\\x29\\xd8\\x29\\x4c\\x6c\\\r\n\\x07\\xa0\\x1a\\x66\\x8d\\x50\\xc8\\xab\\xeb\\xb0\\x59\\x32\\xb5\\xdd\\xbe\\x6e\\\r\n\\xe4\\x90\\x2f\\x7e\\xc3\\x5e\\x12\\x2b\\x30\\x43\\x95\\x75\\x5a\\x59\\x5e\\x52\\\r\n\\x49\\x3c\\x90\\x47\\xe7\\xfc\\x40\\x6c\\x06\\xfb\\xea\\x6e\\x19\\x43\\x50\\xb4\\\r\n\\x13\\x4b\\x2d\\x2b\\xf3\\x99\\xe4\\x1c\\x94\\x12\\xa3\\x39\\x5c\\x18\\x3b\\xbf\\\r\n\\x29\\x7a\\x97\\xa5\\x48\\x65\\x42\\x40\\xec\\x32\\xe3\\x3c\\x41\\x9a\\xc3\\x26\\\r\n\\xb5\\x02\\xe4\\x7d\\x5b\\x13\\x46\\xe5\\x6e\\x77\\xb1\\x66\\x23\\xb6\\x47\\xbe\\\r\n\\x9d\\xd9\\x07\\x0f\\xa7\\x15\\x12\\xf8\\x0e\\x21\\x46\\xea\\xeb\\x50\\x7a\\x58\\\r\n\\x5e\\x06\\x94\\xc8\\xa1\\x2e\\x13\\xe4\\x40\\x2d\\xb7\\x5e\\xec\\x92\\xf1\\x0a\\\r\n\\x56\\x3c\\x99\\x25\\x7a\\x85\\x0e\\x97\\x58\\x6d\\x75\\x91\\x6d\\xd3\\x2c\\x89\\\r\n\\x76\\x0a\\xb9\\x06\\x2a\\x6d\\xa5\\x86\\x79\\x0a\\xd2\\x45\\x68\\x79\\x60\\xed\\\r\n\\x72\\x00\\x6c\\xbd\\xca\\x5c\\xad\\xed\\xdf\\x23\\xeb\\xa6\\x01\\xba\\x0f\\x52\\\r\n\\x37\\xe2\\x47\\xdd\\x4f\\xf9\\x1d\\x55\\xc7\\x51\\x50\\x9c\\xea\\xe9\\x7e\\x14\\\r\n\\x2b\\x8d\\xf0\\x41\\xcc\\x32\\x6d\\xd5\\xe7\\xc4\\x2e\\xf6\\x17\\xbe\\x94\\x71\\\r\n\\x09\\x09\\x99\\x11\\x69\\xe0\\x9a\\x4e\\xe8\\xb1\\x0b\\x22\\x3f\\xe2\\x4f\\xaf\\\r\n\\xa6\\x80\\x41\\x82\\x5f\\x24\\x96\\x2d\\xd0\\x8f\\xa3\\x69\\x2b\\x69\\xfa\\x6a\\\r\n\\xe0\\xea\\x9e\\x99\\x76\\x13\\x63\\xde\\x68\\xd7\\xdf\\xf1\\xaf\\xaf\\x71\\xaa\\\r\n\\x4a\\x17\\x8b\\x93\\x23\\x74\\x33\\x2d\\xf1\\xb0\\xea\\x2c\\x47\\xa1\\x00\\x6b\\\r\n\\x8c\\xf2\\xd2\\x6f\\x0f\\x0a\\xc1\\x4d\\x1b\\x80\\xbe\\x1c\\x61\\x72\\xaa\\x5b\\\r\n\\xcf\\xce\\xb7\\x55\\x87\\x4d\\x89\\xc8\\x76\\x3a\\x71\\x34\\x57\\xde\\xe4\\x91\\\r\n\\x62\\x64\\x5f\\x26\\x26\\xc1\\xf6\\xfa\\x9b\\x7b\\xed\\xa5\\x30\\x09\\xa6\\xa5\\\r\n\\x69\\x10\\xcd\\x2a\\xaf\\xdc\\xa9\\x65\\x16\\x73\\xba\\x8e\\xe2\\xcd\\xf4\\xb9\\\r\n\\xb6\\xba\\xe5\\x4c\\xd0\\x28\\xf7\\x12\\x0b\\x0b\\x1d\\x86\\xe4\\xf7\\x2c\\x3f\\\r\n\\x3d\\x32\\x6c\\xb6\\xea\\x63\\xe9\\x63\\xf9\\xdb\\xfc\\x7f\\x4d\\x09\\xd5\\xb9\\\r\n\\x83\\x1b\\xa5\\xf6\\x09\\xb6\\xec\\x40\\xf3\\x1f\\x95\\x47\\xaf\\x6f\\x53\\xa8\\\r\n\\xa3\\xa6\\x12\\x47\\x55\\xc4\\xaa\\x56\\x34\\x7e\\xdc\\xa8\\x62\\xc6\\x69\\xe4\\\r\n\\x73\\xdb\\x98\\xe2\\xc8\\x07\\xcb\\x9e\\xc3\\xa7\\x4b\\xe1\\xa7\\x58\\xb8\\xbd\\\r\n\\x3c\\x51\\x54\\x72\\x1c\\xd9\\x6a\\xd5\\x63\\xe5\\xf8\\x88\\x8e\\xdf\\x1b\\x97\\\r\n\\x7a\\x6a\\xc8\\xfe\\x78\\xf9\\x72\\x79\\xe1\\x8b\\x51\\xc3\\x56\\xe8\\xad\\xcc\\\r\n\\x28\\xac\\x5b\\xe3\\x44\\xf7\\xd9\\x5d\\x76\\x66\\x5b\\xed\\x90\\x3d\\xfd\\xf5\\\r\n\\x49\\x3d\\x2e\\x35\\x2b\\x1d\\xd1\\xd5\\x1d\\x00\\x45\\x2d\\x70\\xf6\\x36\\xc8\\\r\n\\x1b\\xef\\x8d\\xfb\\x5c\\xe9\\xe3\\xe5\\x9a\\xa9\\x94\\x89\\x8d\\x3d\\x0f\\xc6\\\r\n\\x9a\\x1d\\x9a\\xcc\\xc4\\x15\\x11\\x65\\xb8\\x52\\x4e\\xda\\xa4\\xae\\xe2\\x48\\\r\n\\x90\\x4d\\x10\\xa7\\xa4\\x8a\\x7e\\x20\\xc9\\x53\\x53\\xe1\\xc0\\x2d\\x27\\x4c\\\r\n\\x6e\\xca\\x5b\\x32\\xfb\\x9b\\x1d\\xc5\\xc8\\x3a\\x82\\xa6\\x86\\xae\\x0a\\xc3\\\r\n\\x35\\x4f\\x29\\x4a\\xca\\xf4\\xd7\\x8b\\x16\\xe6\\x0b\\x4b\\x64\\x2a\\xa7\\x15\\\r\n\\xe9\\x6e\\x9d\\x45\\xc4\\xa9\\xfc\\x65\\x2c\\x90\\x75\\x09\\xe9\\x8f\\x3a\\x9b\\\r\n\\xca\\x33\\x49\\x99\\x72\\x4e\\x43\\x96\\xc2\\x45\\x90\\x72\\xdd\\x59\\x94\\x86\\\r\n\\xdc\\x6a\\x0a\\x8a\\x09\\x07\\x0b\\xe2\\x72\\x70\\xf7\\x6a\\xae\\x03\\x49\\x6b\\\r\n\\x57\\x06\\x55\\x63\\x51\\xc3\\x54\\xb2\\xf2\\xa5\\x4b\\xfc\\x6a\\x2b\\x11\\x60\\\r\n\\x4d\\x38\\x60\\xa6\\x20\\x22\\x91\\x25\\xaa\\x85\\xed\\x04\\xd5\\x10\\xcc\\xcd\\\r\n\\xca\\x03\\x25\\xce\\x39\\x7a\\x60\\xca\\x36\\x8f\\xa5\\x04\\x72\\x21\\xb3\\xac\\\r\n\\xa5\\x5f\\x65\\x49\\xab\\x2a\\xe9\\x52\\x4a\\x89\\x33\\xa5\\x86\\xcb\\x34\\xb3\\\r\n\\x53\\x73\\x39\\x65\\x9c\\x66\\x10\\x85\\x60\\x7e\\x64\\xb3\\x06\\x5e\\xad\\xb5\\\r\n\\x0f\\x2d\\x45\\x27\\x85\\x17\\x59\\x0c\\xac\\x22\\x21\\x54\\x0d\\xe0\\x47\\x2a\\\r\n\\xb7\\x3b\\x8d\\x8e\\x2a\\x8f\\x72\\xdb\\x0d\\x54\\x25\\x4d\\x7b\\xd6\\xd7\\x54\\\r\n\\x85\\x5a\\x7a\\x69\\x7a\\x55\\x23\\x57\\x6c\\xa3\\x44\\x69\\x2e\\x40\\x63\\x91\\\r\n\\x75\\x25\\x05\\xc8\\xc3\\xcc\\x4d\\x2d\\x5c\\xcf\\x5b\\xc3\\x20\\xe2\\xbc\\xc8\\\r\n\\xa9\\xe3\\x13\\xe2\\x4f\\x83\\x9a\\x3e\\x74\\xb1\\x60\\x5e\\xcb\\x19\\x90\\x2b\\\r\n\\x02\\xa7\\x34\\x24\\xe0\\xea\\x84\\x6a\\x89\\xf8\\x2a\\xa4\\xd5\\x2b\\x45\\x1d\\\r\n\\x37\\x39\\xcd\\x49\\xad\\xab\\x68\\xe6\\x95\\xbc\\x44\\x98\\xc2\\xe2\\x76\\x70\\\r\n\\x6e\\x5f\\x18\\xed\\x73\\xdb\\x2b\\x0a\\x6a\\x6e\\x3b\\x43\\x2b\\x45\\x12\\xca\\\r\n\\xb2\\x7e\\xd1\\xa8\\x5e\\x1f\\x06\\x32\\x3f\\x96\\x39\\xb8\\x84\\xb4\\xa9\\x6c\\\r\n\\x42\\x59\\xa3\\xed\\xdf\\x42\\x5a\\x2e\\x37\\xc3\\x12\\x04\\x17\\x92\\x9b\\xc4\\\r\n\\x4b\\xc4\\x64\\xa6\\x00\\xf6\\x47\\xe1\\x50\\xd6\\xc5\\x30\\x3d\\x5f\\x32\\x1f\\\r\n\\x7f\\x7d\\x28\\xa8\\xaf\\xe2\\x55\\x19\\xc6\\x8f\\x95\\x3d\\x0c\\x10\\x24\\x99\\\r\n\\xf6\\xbc\\xd2\\x54\\xcf\\x27\\xba\\xff\\x00\\xa9\\x29\\x00\\x0b\\x82\\xc3\\x51\\\r\n\\xcd\\x43\\xc3\\xf8\\x75\\x4c\\xd0\\xda\\x10\\x78\\xbf\\x11\\xaf\\xcf\\x6b\\xf2\\\r\n\\xfa\\x20\\x4e\\x17\\x0b\\x31\\xdc\\x58\\x86\\x1b\\x5b\\x7d\\x54\\xcc\\xcb\\xc3\\\r\n\\xe9\\x5d\\x0e\\x31\\x53\\xf0\\xca\\x1a\\x3a\\x6d\\xed\\x7b\\xc9\\x59\\x14\\x2d\\\r\n\\x58\\x51\\x76\\xff\\x00\\xc4\\x17\\x3e\\xe3\\x5e\\x23\\xc7\\xc5\\xe2\\x59\\x97\\\r\n\\x6a\\xe6\\x6e\\x4a\\x2c\\x8a\\x4e\\x36\\x21\\x8b\\xf4\\xa9\\x20\\x33\\x35\\xf5\\\r\n\\x04\\xb2\\x18\\x09\\xc5\\xc5\\x4c\\xb4\\xe8\\xcb\\x45\\x28\\xec\\x2c\\x08\\x58\\\r\n\\xd6\\x4d\\xaf\\x2a\\xa5\\xf2\\xf3\\x00\\x0d\\xc6\\xa1\\xe1\\x95\\x1c\\x46\\x9e\\\r\n\\x46\\x8d\\xb2\\xa6\\x80\\xc8\\x33\\x4c\\xbb\\xa2\\x21\\x7e\\x66\\x37\\x1e\\xa1\\\r\n\\x40\\x3a\\x21\\x6c\\x64\\x8d\\xc8\\x01\\xc1\\xe9\\x65\\xf4\\x22\\xfe\\xfd\\xc6\\\r\n\\xa6\\xa5\\xe2\\x15\\xc0\\x70\\xaa\\x8a\\x7a\\x80\\x14\\x33\\x42\\xd4\\xcf\\x0f\\\r\n\\x97\\x95\\x04\\x0a\\x32\\xe6\\x1f\\xc5\\xdd\\x41\\x39\\x7a\\x18\\x65\\xa4\\xad\\\r\n\\xa9\\xa7\\xa9\\x4a\\x41\\xce\\xb4\\x0c\\xc1\\x88\\x23\\x97\\x28\\xdd\\x6d\\xcc\\\r\n\\x07\\x64\\xdc\\xfe\\x2c\\x6d\\xa8\\xe9\\xa4\\x99\\xa5\\xa7\\xf0\\xed\\x1e\\xe7\\\r\n\\x29\\x64\\x60\\x31\\xe6\\xc4\\x54\\xda\\x19\\x2f\\x74\\x90\\xa0\\xb4\\x8b\\xd2\\\r\n\\xd9\\x58\\x63\\x56\\x67\\xe2\\x0f\\xe1\\x38\\xd4\\xb2\\x25\\x37\\x10\\xd8\\xa5\\\r\n\\x3d\\x5a\\x5e\\x35\\x82\\xa2\\xfe\\x45\\x8a\\x4c\\x63\\x64\\xd8\\xc6\\x9d\\xae\\\r\n\\x80\\x16\\xae\\xa0\\xac\\x32\\x9a\\x8a\\x76\\x39\\x67\\x7b\\x23\\x2e\\xd6\\x88\\\r\n\\x9d\\xd9\\x0d\\xf2\\x56\\xec\\xc0\\xdd\\x76\\x3a\\x92\\x43\\xd7\\x2f\\xd8\\xff\\\r\n\\x00\\xb4\\x71\\xcb\\xdb\\x7f\\xd9\\x5c\\x66\\x34\\xe7\\xa0\\xfe\\x11\\x24\\xca\\\r\n\\x3e\\x98\\xea\\xbe\\x9a\\x29\\x30\\x96\\xbe\\x4a\\x6e\\x26\\xf8\\x6d\\x93\\x72\\\r\n\\xd9\\x89\\xfa\\xac\\x8f\\x4d\\x33\\x8f\\x7d\\x53\\x54\\xca\\x44\\x86\\x9a\\xa8\\\r\n\\x43\\x29\\x51\\xfd\\x83\\x71\\x08\\xc3\\xdf\\xf3\\x86\\x63\\x7d\\x4d\\x46\\xf2\\\r\n\\x36\\x54\\x6e\\xea\\x8b\\xfe\\xd6\\x92\\xa3\\xe2\\x44\\xc9\\xfc\\x58\\x15\\x3f\\\r\n\\x9e\\x8c\\x71\\xb9\\x8e\\x75\\x81\\x9f\\x98\\x09\\x16\\x78\\xe2\\x91\\x09\\xb8\\\r\n\\xed\\x76\\x50\\x7b\\xed\\x7f\\xa6\\xa1\\x9e\\x35\\xe1\\x95\\xb5\\x54\\x7f\\xe8\\\r\n\\xf9\\x6a\\xc9\\x8e\\xab\\xc4\\x41\\x13\\x83\\xca\\x91\\xfe\\x1c\\x8a\\xeb\\x7e\\\r\n\\xac\\x64\\x17\\x60\\xae\\xdb\\xe5\\xa8\\xea\\x66\\xe1\\x75\\x14\\xcd\\x53\\x51\\\r\n\\xe0\\x66\\xf0\\x67\\xc4\\x53\\xd6\\x7c\\x16\\x91\\x00\\x49\\x30\\x68\\x9c\\x3a\\\r\n\\x9c\\x03\\x4c\\xe7\\x2d\\x95\\x7b\\xdf\\x99\\x18\\xe7\\xd3\\xd8\\xbf\\x21\\xee\\\r\n\\x18\\x37\\xcc\\xb8\\xbd\\x9e\\x29\\x3d\\x2c\\x45\\xb2\\x1b\\x8d\\xb4\\xb2\\xc4\\\r\n\\xb2\\xc2\\xbe\\x21\\xdb\\x69\\x7c\\x93\\x07\\xb4\\xb0\\xaa\\xb8\\x20\\x72\\xe4\\\r\n\\x5e\\xb8\\xfe\\x57\\x2f\\xdb\\x52\\x47\\x0d\\x4f\\x2d\\xcb\\x6e\\x5a\\x3b\\xe3\\\r\n\\xef\\x62\\x08\\xf7\\xd8\\x9b\\xef\\xe9\\xa8\\xd3\\x9d\\xbb\\x1c\\x23\\x04\\x85\\\r\n\\x59\\x25\\xc4\\xb6\\x4d\\x7b\\x97\\x3d\\xd8\\xfb\\x58\\xea\\xb9\\xe4\\x65\\xe6\\\r\n\\x52\\xc1\\x2d\\x55\\x40\\x66\\xfb\\xb8\\xa1\\x17\\x37\\xff\\x00\\x1f\\xcb\\x53\\\r\n\\x18\\xb6\\x88\\xcb\\x21\\x8c\\x17\\x37\\x11\\x96\\x38\\x5f\\xfe\\x1b\\x68\\x4b\\\r\n\\x16\\x23\\x86\\x45\\x17\\x2f\\x87\\x63\\x91\\x0d\\x08\\x76\\xce\\x47\\x2c\\x48\\\r\n\\x79\\x1e\\x4c\\x89\\x6b\\x0e\\x9c\\x36\\xd1\\x92\\x02\\xdf\\x09\\xc3\\x94\\x1f\\\r\n\\x30\\xf5\\xdb\\xb5\\xc0\\xed\\xa5\\xb3\\xad\\x17\\x11\\x60\\x19\\xa4\\x01\\xb9\\\r\n\\x72\\x39\\xbd\\xd6\\x55\\xfc\\x62\\xd7\\xca\\x3b\\x77\\xb9\\xbe\\xa3\\x93\\x2e\\\r\n\\x6c\\xd4\\x56\\x8c\\xcc\\xa0\\x84\\x96\\x26\\xec\\xcb\\x7d\\xc8\\x56\\xf7\\xb1\\\r\n\\xef\\xb0\\xd4\\x4c\\x05\\x9a\\x2b\\xc4\\xdb\\xdf\\xca\\x7b\\xff\\x00\\x2d\\x21\\\r\n\\x6f\\x9c\\x67\\xfe\\x47\\xfc\\x35\\xc9\\x99\\x45\\x4d\\x33\\x77\\x8a\\x5d\\xec\\\r\n\\x3d\\xd4\\xf7\\x5f\\xd3\\x5f\\xb4\\x61\\x9a\\xa2\\x96\\x91\\x18\\x74\\x84\\x1c\\\r\n\\xc3\\x21\\x3e\\x54\\x76\\xe9\\xe5\\xd8\\x1b\\xb5\\x9b\\xd0\\x7b\\xe9\\xf8\\x8d\\\r\n\\x04\\x32\\x0e\\x21\\x67\\x81\\x77\\x67\\x32\\xc9\\x52\\xa1\\x2e\\xa8\\x2c\\x8a\\\r\n\\xc3\\xa8\\x80\\x8a\\x2f\\x91\\xfd\\x26\\xad\\xac\\xe2\\x69\\x18\\xac\\x4e\\x64\\\r\n\\xd4\\x47\\xee\\x14\\xf9\\x87\\x31\\xd9\\xd5\\x39\\xa0\\x74\\xe4\\x05\\x86\\xfd\\\r\n\\x44\\x6b\\x34\\x51\\x83\\x0e\\x96\\x56\\x0c\\xaf\\x70\\x09\\x6d\\xbb\\x6e\\x6c\\\r\n\\x3d\\xf5\\xca\\xe9\\x3e\\x75\\x19\\xae\\x4a\\xc6\\xfb\\x64\\x37\\xc8\\x6f\\xdb\\\r\n\\x6d\\x47\\xe4\\x12\\x01\\xf2\\x06\\xc6\\xeb\\x7e\\x80\\xa7\\xe5\\xc6\\xd6\\x1f\\\r\n\\xf4\\xd2\\x98\\x8b\\xb3\\x79\\x65\\x16\\xb5\\xaf\\xfe\\x57\\xd7\\x22\\xd2\\x3c\\\r\n\\x8c\\xdc\\xcc\\x66\\x7b\\x81\\xb5\\x86\\x5d\\x36\\x8e\\x31\\x60\\x23\\x45\\x17\\\r\n\\xbe\\xe4\\xdf\\x55\\x9c\\x3e\\x6a\\xb8\\x4c\\x10\\x2c\\x69\\x4c\\x62\\x2f\\x2f\\\r\n\\x2a\\xae\\x10\\xc6\\x6c\\x5b\\x1c\\x7a\\xb2\\x31\\x32\\xdf\\x72\\xa3\\xdb\\x11\\\r\n\\x04\\xd4\\xb5\\x95\\x35\\x2d\\x4e\\xed\\x2a\\xf2\\xa2\\xe4\\xb4\\x46\\xd6\\xe8\\\r\n\\x7d\\xd8\\x9f\\xc4\\x84\\x58\\x8b\\xed\\xa9\\x38\\xaf\\x0d\\x8a\\x29\\xfe\\xd0\\\r\n\\x70\\xd8\\xff\\x00\\x7c\\xe1\\xd2\\x7f\\xe3\\x69\\xd3\\xcb\\x51\\x4f\\x16\\xd7\\\r\n\\xa8\\x50\\x42\\x11\\xf3\\x8f\\xad\\xae\\xcd\\xc4\\xb9\\x85\\xa6\\x8c\\x15\\xe1\\\r\n\\xf2\\xdc\\x0a\\x40\\xa0\\x77\\x2a\\x41\\xbf\\xa7\\x2c\\x76\\x17\\xb9\\xf4\\x0d\\\r\n\\x59\\x36\\x10\\xd2\\x2a\\x05\\xe5\\xc4\\xbc\\xa3\\x39\\x17\\xb0\\x60\\x2d\\x92\\\r\n\\x8b\\xec\\x7f\\xae\\xfa\\x41\\x24\\x0b\\x05\\x3c\\x17\\xc1\\x80\\x36\\xfd\\x07\\\r\n\\x6f\\xd6\\xc7\\xb9\\xd4\\x36\\xb0\\xa5\\x8f\\xb1\\xec\\xab\\x6f\\xa7\\x97\\x7f\\\r\n\\x5d\\x78\\x78\\x01\\x92\\x39\\x2f\\xcd\\x54\\x55\\x61\\x37\\xf0\\xbe\\x6a\\xcb\\\r\n\\x81\\xf9\\x8d\\xbf\\x2d\\x24\\xfc\\x09\\x92\\x8f\\x8e\\xc3\\x2e\\x6b\\x4f\\x47\\\r\n\\x50\\x29\\x22\\x14\\xe2\\xe7\\x98\\xb2\\xca\\xca\\x22\\xa8\\x89\\xac\\xc1\\xa3\\\r\n\\x64\\x18\\x86\\x50\\xb7\\x3a\\xa7\\x5a\\x8a\\xee\\x19\\xc3\\x7e\\xdb\\xd3\\x94\\\r\n\\x77\\x31\\xac\\xed\\x47\\xf6\\x82\\x15\\xc0\\x8f\\x14\\xe6\\x8a\\x28\\x20\\xe3\\\r\n\\x7d\\x01\\x41\\x86\\x59\\x29\\xf8\\x86\\xea\\xeb\\x14\\xe7\\x3d\\x33\\x4f\\xc6\\\r\n\\x38\\xb4\\x55\\x34\\xdc\\xb4\\xc5\\x38\\x44\\x69\\x0d\\x05\\x44\\x7b\\x4f\\x87\\\r\n\\xed\\x3e\\x2b\\x46\\xd0\\xde\\xa0\\xc8\\xe5\\x0d\\x33\\x62\\x4b\\x5e\\xf6\\xda\\\r\n\\x4a\\x49\\xe9\\xf8\\xd7\\x17\\x7c\\x66\\x2f\\x2f\\xed\\x08\\x29\\x44\\xef\\xba\\\r\n\\xcc\\xb7\\x1c\\x32\\xaa\\x4d\\x8d\\xfc\\x8e\\x71\\xcc\\x59\\xbb\\x6a\\x9e\\x6e\\\r\n\\x0b\\xf6\\x47\\x82\\x44\\x00\\x9a\\x28\\xe4\\xaf\\x97\\x8a\\xd7\\xb2\\x64\\x0a\\\r\n\\xef\\x27\\x8c\\xa1\\x81\\xd8\\xab\\x19\\x0a\\x1a\\x7b\\xa3\\x03\\xb0\\xb6\\xa8\\\r\n\\x6c\\xd4\\xd1\\x57\\xd2\\x64\\x21\\x8d\\x38\\x37\\x07\\xa8\\x86\\x97\\x35\\xf8\\\r\n\\xa6\\x0a\\x9a\\xea\\x5a\\xba\\xa8\\x99\\xca\\xa5\\xda\\x29\\x49\\x61\\x6c\\xd8\\\r\n\\xe3\\xa5\\xaa\\xe1\\x9f\\x6b\\xf8\\x9f\\x15\\xbd\\x32\\x3d\\x7f\\x0f\\xa6\\xac\\\r\n\\xa9\\xa4\\x9a\\x8a\\x6d\\xf3\\x55\\xa5\\x8a\\x48\\xa3\\x9a\\x05\\xed\\x92\\xc6\\\r\n\\xb7\\xf4\\x46\\x1d\\x9a\\x2a\\xb9\\x67\\x33\\x29\\xc9\\x1a\\x52\\xdc\\xd4\\x65\\\r\n\\xec\\x72\\x3d\\x44\\x65\\xef\\xbf\\xbe\\xfa\\x7a\\x39\\x9d\\xe4\\x82\\xa3\\x1e\\\r\n\\x63\\x33\\x72\\xe4\\x52\\xa6\\xe4\\x24\\x9f\\x23\\x5e\\xe0\\x0f\\x29\\xdb\\xb7\\\r\n\\x7d\\x45\\x58\\x8b\\x9f\\x84\\xa7\\xc4\\x3b\\x9c\\x76\\x42\\xc7\\x17\\xf4\\x57\\\r\n\\x51\\xba\\x93\\x74\\x90\\xf9\\x5f\\xb5\\xeb\\xe3\\x8e\\xab\\x9b\\xe2\\xa1\\x6b\\\r\n\\x45\\x60\\xad\\x43\\x24\\x3f\\x16\\x9c\\xba\\x65\\x99\\x0e\\x46\\x19\\x26\\x43\\\r\n\\xa8\\xe4\\x54\\xed\\xa9\\xa1\\xe1\\x72\\xb7\\x0f\\xe1\\xd4\\xec\\x22\\x6a\\x8a\\\r\n\\xc0\\x3c\\x23\\x60\\xa3\\x98\\x79\\x72\\x2b\\x19\\x8d\\xee\\xbd\\x2a\\xde\\x5b\\\r\n\\x33\\x2e\\xaa\\x69\\x6a\\xbc\\x3f\\x1f\\xae\\xe1\\xd0\\xc7\\x2d\\x54\\x74\\xf4\\\r\n\\x70\\x44\\x85\\x59\\xe3\\xa7\\x43\\x73\\x94\\x1e\\x69\\x41\\x25\\x43\\xba\\x86\\\r\n\\xb8\\xf4\\x1a\\xc3\\x88\\xd1\\x71\\x5e\\x1b\\xc3\\xda\\x9c\\x52\\xe1\\xc3\\x26\\\r\n\\x5e\\x6a\\xd4\\x96\\x77\\x69\\x84\\xa3\\xc3\\x48\\x94\\xeb\\x0a\\x61\\x82\\x65\\\r\n\\xb9\\x37\\x07\\x6b\\x1a\\xae\\x0b\\xc6\\x2b\\x16\\x67\\xea\\x68\\xeb\\xe1\\x95\\\r\n\\xdd\\x9a\\xf7\\xb9\\x9e\\xd6\\x56\\xb7\\xf5\\xef\\xa3\\x34\\x96\\x77\\xc4\\x5e\\\r\n\\x50\\x2c\\xce\\x40\\xb5\\xfd\\x09\\x36\\xb6\\xfe\\xba\\x84\\xaf\\x4c\\x92\\x73\\\r\n\\x2c\\xc7\\xfb\\x31\\x21\\x44\\x0c\\xd6\\x17\\xf2\\xe5\\xfa\\x03\\xf9\\x6a\\x42\\\r\n\\xeb\\x19\\x44\\xc5\\x62\\x6b\\x34\\x3c\\xc5\\x8b\\x61\\x61\\x6c\\x88\\x6c\\x8b\\\r\n\\x5e\\xc0\\x9f\\x56\\x5b\\x5b\\x4d\\x50\\x11\\xc4\\x38\\xb2\\x82\\x17\\x05\\xf4\\\r\n\\xea\\xea\\xbb\\x9e\\xc4\\x2d\\xac\\x3d\\x6c\\x7b\\xeb\\x88\\x35\\x64\\x7c\\xda\\\r\n\\x0a\\xe9\\x96\\xb9\\x63\\xca\\xcc\\x3e\\x1a\\xe5\\x2c\\x5e\\xab\\x22\\xb7\\x66\\\r\n\\xb5\\x9e\\xe5\\x1a\\xe1\\xce\\x84\\x31\\x42\\xa2\\xaa\\x96\\x1c\\xb8\\x6d\\x62\\\r\n\\x30\\x99\\x38\\xe7\\x0d\\x48\\xec\\x60\\x92\\x5b\\x06\\x87\\x89\\x52\\x1d\\xc4\\\r\n\\x52\\x7d\\xe4\\x76\\x55\\x69\\x3b\\x8e\\x2f\\xf6\\x56\\x78\\x55\\x69\\xb8\\xdf\\\r\n\\xd9\\xca\\xf8\\x2f\\xe5\\x77\\xe2\\x50\\x5a\\x48\\x14\\xdf\\xbb\\xa8\\x89\\xf1\\\r\n\\xf5\\x5c\\x35\\xf6\\x73\\x8b\\xe4\\x56\\x63\\x10\\xa1\\x9c\\x11\\xbe\\x5c\\x2e\\\r\n\\xa6\\x48\\x24\\x49\\x3d\\x98\\x47\\x54\\xd9\\x03\\xf8\\xb5\\xc6\\xe9\\xa5\\x6b\\\r\n\\xf8\\x6a\\xaa\\x9b\\xaf\\xe2\\x8d\\x22\\x82\\x68\\x9e\\xdf\\x5c\\x49\\x07\\xf9\\\r\n\\x77\\xd7\\x06\\xe3\\x28\\x7e\\x39\\xa4\\x14\\x35\\x12\\x2f\\xfb\\x6a\\x40\\xbc\\\r\n\\xac\\xfe\\xaf\\x03\\xa7\\xfc\\xba\\x8c\\xdc\\xab\\x72\\xa5\\xc8\\x21\\xb5\\xc3\\\r\n\\x0c\\xb0\\xbf\\x7d\\xc2\\x8b\\x03\\xf8\\xf4\\xf4\\x9c\\x37\\x89\\x54\\x52\\xf0\\\r\n\\x5a\\xf7\\xf1\\x8e\\x88\\xc3\\x1c\\x8d\\xb9\\xa9\\x9d\\x8b\\xab\\x6d\\x62\\x63\\\r\n\\x65\\x25\\x48\\x3a\\xe1\\xfc\\x43\\x85\\x71\\x9f\\xd9\\x3c\\xea\\xb8\\x05\\x55\\\r\n\\x27\\x19\\x8f\\xf6\\x8f\\x0b\\xf1\\xb4\\xcc\\x3e\\x0e\\x46\\x58\\x24\\x80\\xd4\\\r\n\\x30\\x26\\x3c\\xdc\\x16\\xe6\\x7c\\x29\\xc3\\x6d\\xae\\x65\\x37\\x0e\\xa3\\xa4\\\r\n\\x77\\x8d\\x79\\xde\\x11\\x66\\xe5\\x49\\x25\\x86\\x6f\\x1a\\xcf\\x35\\x47\\x25\\\r\n\\x5d\\x86\\x41\\x43\\x9f\\xcc\\xef\\xa7\\xe6\\x43\\x19\\x52\\x6e\\x54\\x28\\x52\\\r\n\\x5b\\xcd\\x98\\x74\\xb3\\x2b\\x5e\\xfd\\x43\\x7d\\x04\\x81\\x70\\xd8\\x89\\x17\\\r\n\\x9a\\xc6\\x78\\xa4\\xed\\x77\\x6b\\x93\\x71\\xdc\\x5c\\x32\\x91\\xa9\\x24\\xe0\\\r\n\\x11\\xaf\\x12\\x9e\\x99\\x64\\x36\\x9b\\x69\\xf7\\xfe\\xdd\\x57\\xcb\\x50\\xc8\\\r\n\\xb6\\xe5\\xc4\\x39\\x7e\\xb8\\xab\\x5f\\x0d\\x55\\xd3\\xd7\\xb6\\x7c\\x6e\\xbf\\\r\n\\x80\\xf1\\x28\\x66\\x2c\\x31\\x92\\xa2\\x9e\\x58\\x4c\\x50\\xcc\\xcb\\x6f\\xbd\\\r\n\\xa6\\x67\\x8e\\x26\\xbd\\x8b\\x44\\xaa\\x7f\\xb2\\x6d\\x02\\x6a\\xac\\x48\\xb9\\\r\n\\x18\\x3e\\xc7\\x46\\x9e\\x5a\\x77\\xbd\\x34\\xd9\\x40\\xdd\\xf3\\x85\\xfa\\x66\\\r\n\\x55\\x22\\xe3\\xa7\\xa5\\xff\\x00\\x9e\\xa4\\xa8\\xef\\x38\\x5f\\x23\\x76\\xff\\\r\n\\x00\\xdf\\x4d\\x51\\x8f\\x2e\\x45\\x39\\x81\\x7b\\x5c\\x8d\\xf6\\xd4\\x85\\x46\\\r\n\\x50\\xcb\\x7e\\x74\\x72\\x1c\\x83\\x65\\xe7\\xfa\\x6e\\x4d\\xfd\\x3e\\x96\\xd4\\\r\n\\xa2\\x9a\\xd1\\xcb\\x3b\\x86\\xc2\\x79\\x6d\\x1a\\x7a\\x5a\\x36\\xb6\\xc5\\xbf\\\r\n\\xde\\x37\\xe5\\xae\\x4a\\x85\\x47\\x89\\x58\\x05\\x63\\x60\\xf8\\xdc\\xf4\\x13\\\r\n\\x6b\\xdf\\xd3\\x52\\x4a\\x4a\\x8e\\x49\\x0a\\xe8\\x5b\\xa8\\x5d\\xb1\\xf2\\xfd\\\r\n\\x0e\\xa8\\x83\\x0f\\x22\\xba\\xd8\\x3a\\x3d\\xe3\\xcc\\xbc\\x6d\\x64\\x62\\x57\\\r\n\\xbe\\x25\\x76\\x6b\\x8b\\x11\\x7d\\x43\\x4c\\x94\\xf7\\xa8\\x96\\x78\\xc2\\xb4\\\r\n\\xc0\\x72\\xe3\\xe6\\x13\\x18\\x91\\x47\\x76\\xb6\\xfb\\xf6\\xde\\xd9\\x79\\x80\\\r\n\\x5e\\x0b\\x5b\\x2c\\x9d\\x2c\\x0c\\x9d\\x76\\x48\\x92\\xc1\\xd8\\x95\\x52\\x14\\\r\n\\xfc\\x33\\x71\\xfc\\x4c\\xa3\\x5c\\xb7\\x7a\\x53\\x08\\x18\\xc0\\x90\\x37\\x68\\\r\n\\x54\\x05\\x40\\xea\\x49\\x39\\x5a\\xd9\\x11\\xb1\\x3d\\xb4\\xb6\\x84\\xa1\\x8f\\\r\n\\x20\\x47\\xe2\\xb7\\xaf\\x73\\xdf\\x6b\\x76\\xd3\\xd4\\x54\\xec\\x70\\x77\\xbf\\\r\n\\x6c\\x3d\\x76\\xd5\\x54\\x80\\x15\\x64\\xcf\\xfb\\xce\\x09\\xb2\\x5b\\x61\\xdc\\\r\n\\x5b\\x7f\\x4d\\x1c\\x04\\x3e\\x32\\xbb\\x24\\xa7\\x62\\xfd\\x59\\x15\\xeb\\x6e\\\r\n\\x9f\\x96\\x9e\\xfd\\x2c\\x2d\\x93\\xf6\\xd1\\x85\\x1e\\xec\\x5f\\x27\\x7f\\x99\\\r\n\\x5e\\xf7\\x0d\\xf5\\xdf\\xbe\\x9e\\x7a\\x2c\\x15\\xf8\\x80\\x4c\\x43\\x46\\x84\\\r\n\\xc7\\x35\\xb1\\x9d\\x56\\xe2\\xfb\\xc8\\x4f\\xe8\\x47\\xd3\\x5c\\xd0\\x80\\xf1\\\r\n\\x3a\\x88\\x7f\\xd2\\x35\\x99\\x93\\x7d\\xc9\\xe5\\x53\\xdc\\x2e\\x03\\xb2\\xbd\\\r\n\\x85\\xda\\xdb\\xe8\\x48\\xbd\\x08\\x40\\xbd\\xae\\xa4\\x81\\xf2\\xff\\x00\\xd7\\\r\n\\x43\\x9d\\x50\\x02\\xad\\xb1\\x89\\x47\\xa7\\xf3\\xd0\\x51\\x52\\xa0\\x28\\x3d\\\r\n\\x1d\\x22\\xf6\\xee\\x01\\xd3\\xc3\\x22\\xbc\\x50\\x8d\\xe3\\x02\\xd7\\x70\\x3b\\\r\n\\xfa\\x1d\\x8e\\x8c\\x30\\x45\\xc9\\x84\\x1b\\x73\\x7c\\xa3\\xeb\\x72\\xdb\\xb1\\\r\n\\xfe\\xee\\x8a\\x3b\\x3d\\x4c\\xad\\xbf\\x26\\xf6\\x5b\\x8f\\x56\\xc3\\xa8\\x7d\\\r\n\\x09\\x6d\\x1e\\x2b\\x47\\x13\\xa4\\x30\\x04\\x49\\x29\\xe1\\x8d\\x15\\x51\\x63\\\r\n\\xf9\\xe3\\xbf\\xc6\\x7e\\x90\\x79\\x8d\\x6b\\x83\\xf9\\x69\\x29\\x2a\\xe5\\x8e\\\r\n\\x97\\xed\\x52\\x7c\\x2a\\x19\\xe6\\x97\\xc3\\xc3\\xf6\\x85\\x62\\x28\\x63\\xe1\\\r\n\\x1c\\x52\\x60\\xea\\x56\\xb8\\xc5\\x12\\x47\\x43\\xc4\\xd8\\x81\\x2d\\xfc\\x2d\\\r\n\\x5f\\x58\\x8a\\x7d\\x71\\x5a\\x6e\\x24\\x26\\xa2\\xae\\xe1\\xf5\\x56\\x82\\x09\\\r\n\\xe4\\x97\\xc4\\x73\\x9e\\x43\\x1c\\xf1\\x18\\xe7\\xbb\\xa3\\x20\\x4b\\xc8\\x3c\\\r\n\\xdb\\x0b\\x0b\\x03\\xaa\\xa8\\x2b\\xa5\\x8b\\x1f\\xec\\x91\\x85\\x96\\x58\\xcb\\\r\n\\x81\\x94\\xa4\\x6d\\x13\\xa0\\x20\\xab\\x7d\\x0e\\xc3\\x5f\\x08\\xb5\\x81\\xe9\\\r\n\\x20\\xab\\x2f\\xf3\\xc8\\x69\\x0c\\x55\\x12\\xd3\\xe6\\x2c\\x64\\xa6\\x91\\x96\\\r\n\\x70\\x7e\\x57\\x8d\\x50\\xdc\\x9f\\xc4\\x8d\\xf0\\xdc\\x03\\x96\\xd7\\xd4\\x52\\\r\n\\x71\\x7e\\x4d\\x4d\\x6d\\x36\\x31\\xaf\\x10\\xa4\\x8d\\x29\\xab\\x5b\\xa7\\xbd\\\r\n\\x44\\x0c\\xdf\\x1d\\x6d\\xb9\\xd8\\x13\\xbe\\x18\\xec\\x74\\xd3\\x48\\xe6\\x68\\\r\n\\x2f\\x17\\x4f\\x2f\\x77\\x91\\xad\\x8a\\x88\\xae\\x08\\xbd\\x86\\x4d\\x23\\x63\\\r\n\\x7d\\x94\\x3e\\xfa\\x6e\\x0f\\x59\\x48\\x57\\x82\\x4d\\x4e\\xb4\\x8e\\x20\\xea\\\r\n\\x68\\x62\\x7f\\x88\\x93\\xdb\\xa1\\x19\\xe3\\x99\\x32\\x0d\\x82\\x80\\x41\\x01\\\r\n\\x7a\\x8e\\xa9\\x23\\x92\\xad\\xbc\\x75\\x95\\x61\\x2d\\x1b\\x47\\x19\\x89\\xd3\\\r\n\\xe1\\x49\\x20\\x63\\x8a\\x19\\xd3\\x1b\\x1c\\x9b\\xf1\\x58\\x1d\\xcc\\x89\\x32\\\r\n\\xe0\\x25\\x83\\x04\\x8c\\xd9\\xa1\\x91\\x8b\\x6c\\xc6\\xf9\\x2f\\xba\\xe1\\x75\\\r\n\\xbf\\xe9\\xae\\x25\\x24\\xd4\\xfc\\xb8\\xf8\\x8f\\x0b\\xab\\xa6\\x48\\x88\\xb2\\\r\n\\xbb\\xc4\\x89\\x2c\\x5c\\xbb\\x9d\\x88\\x9a\\x14\\x50\\x3b\\x1d\\x99\\x4f\\x71\\\r\n\\xa5\\x8d\\x07\\x2f\\xe9\\xd9\\xaf\\x6b\\x58\\xf7\\x3b\\x5f\\x49\\x19\\x0b\\x8e\\\r\n\\xdd\\xac\\x49\\xef\\xed\\xef\\xfd\\x35\\x1d\\xd4\\x8d\\xd7\\xf2\\x00\\x1d\\xef\\\r\n\\xeb\\xdb\\xe9\\xa5\\x78\\x04\\x7d\\xbb\\xc8\\x85\\x83\\x30\\x07\\xaf\\x10\\x41\\\r\n\\x6b\\x13\\x75\\x17\\xef\\xb9\\x04\\x6d\\xa8\\xd0\\xbc\\xb1\\xf3\\x01\\x4e\\x6b\\\r\n\\x47\\xb0\\xb2\\x93\\x98\\x89\\x47\\xd2\\xe0\\x35\\xbd\\x35\\x45\\x45\\xe3\\xa9\\\r\n\\xe7\\x79\\x1b\\xc3\\xa7\\x87\\x52\\x14\\xca\\x13\\xab\\x3b\\x65\\x63\\x6f\\xcc\\\r\n\\x6f\\x61\\xae\\x1d\\x66\\x69\\x29\\xa5\\xa6\\x7a\\x50\\xe7\\x2c\\x09\\x0d\\xb0\\\r\n\\xc4\\xf6\\xb9\\x68\\xfd\\x8e\\xda\\xaf\\xe1\\x95\\x4f\\x32\\x53\\x52\\x4e\\x66\\\r\n\\xa7\\xa8\\x4c\\xef\\x4d\\xcd\\xeb\\xa4\\x91\\x48\\xf4\\xb1\\xc1\\xd7\\xcb\\x22\\\r\n\\x82\\xa6\\xf6\\xd7\\x05\\xfb\\x4c\\xef\\xe0\\xb8\\xb7\\x08\\xe2\\x34\\xf3\\xd7\\\r\n\\x1a\\x6f\\xf5\\x3a\\xda\\x7a\\x8f\\x80\\xfc\\x40\\x46\\x36\\x34\\xf5\\x31\\xcc\\\r\n\\x56\\x77\\x5d\\xe9\\x67\\x7b\\xc9\\xd0\\x49\\xd7\\xda\\xce\\x1b\\x35\\x3b\\x78\\\r\n\\x28\\x3e\\xd0\\x4d\\xc5\\xb8\\x6c\\x9f\\xd9\\x49\\x41\\xc6\\x95\\xcc\\x8b\\x1f\\\r\n\\xcb\\xd1\\x2a\\x40\\xac\\xa3\\xb3\\x30\\xf7\\xd7\\x18\\x0a\\x72\\x8e\\x5a\\x48\\\r\n\\xc2\\xdc\\xf5\\x19\\x23\\xa6\\xa9\\x85\\x99\\x87\\xd5\\x44\\x5f\\xae\\xb8\\x8f\\\r\n\\x09\\x9e\\xe9\\x34\\x31\\xc3\\xc5\\x60\\xdf\\xbb\\x53\\x31\\xa5\\x9f\\x1f\\xce\\\r\n\\x3c\\x72\\x1f\\x4d\\x49\\x32\\x84\\x91\\x22\\x90\\xcb\\x27\\x2d\\x81\\x0b\\x1e\\\r\n\\x5b\\x6d\\xfc\\x23\\x66\\x03\\xb7\\xe5\\xaa\\x9e\\x1b\\x56\\xc8\\x52\\x2b\\x4f\\\r\n\\x0b\\x2d\\xec\\x01\\x5c\\x85\\xbf\\x30\\x71\\x3f\\x51\\xa7\\xa6\\xa8\\x8a\\x25\\\r\n\\xe1\\x98\\xc9\\x53\\x5b\\x1e\\x39\\xc8\\xd4\\x71\\xc7\\x78\\x2e\\x72\\xc7\\x9a\\\r\n\\x93\\x3e\\x71\\x8b\\x6e\\xcc\\x50\\xf7\\xd7\\x14\\x82\\xb6\\xa1\\xb8\\xbf\\x0d\\\r\n\\xba\\x71\\x1e\\x13\\x55\\x7f\\xff\\x00\\x87\\xd4\\x06\\x2d\\x4e\\xbe\\xc5\\x4e\\\r\n\\x2c\\x80\\xf6\\xea\\x06\\xdb\\x01\\xcd\\xe1\\xd5\\x31\\x4d\\xb3\\x09\\x23\\xc8\\\r\n\\x47\\x3c\\x4c\\x3e\\x59\\x62\\x6b\\x15\\x3d\\xc1\\xda\\xc7\\xb8\\x36\\x3a\\xfd\\\r\n\\xa7\\xc3\\x29\\xa6\\x94\\xaa\\xe3\\x2c\\x4b\\x72\\x93\\xc4\\x37\\xc4\\xe1\\x7e\\\r\n\\xb1\\xb8\\x46\\x00\\x95\\xbf\\xb1\\x23\\x41\\x48\\x64\\x9b\\xa3\\x38\\xdb\\x69\\\r\n\\x50\\xfb\\x32\\x9b\\x37\\x7e\\xde\\x86\\xda\\xa7\\xfb\\x4d\\xc3\\x5e\\x44\\x09\\\r\n\\x94\\x3c\\x4e\\x92\\xed\\xcb\\x92\\x17\\xed\\x3c\\x2b\\xf2\\x15\\x62\\x79\\xea\\\r\n\\x36\\x21\\x8b\\x0b\\x10\\x6f\\x21\\xf1\\xd2\\x43\\x77\\x73\\xc9\\xe5\\x33\\x72\\\r\n\\xae\\xc7\\xe1\\xe5\\x6e\\xac\\x3c\\xb9\\x7a\\xda\\xfa\\x89\\x24\\x1c\\xba\\x65\\\r\n\\xfb\\xd9\\x2f\\x98\\x54\\xec\\xc7\\xf9\\x77\\xd7\\x2e\\x19\\xb9\\xd4\\xac\\xe5\\\r\n\\xa9\\xea\\x63\\x37\\x8e\\x75\\xfc\\xc6\\xd7\\x1b\\x64\\xbd\\xc1\\xd0\\xcf\\x7d\\\r\n\\x72\\xe9\\x29\\x65\\xa9\\x95\\xb6\\x09\\x0c\\x6f\\x21\\xff\\x00\\xec\\x07\\x4d\\\r\n\\x35\\x67\\x09\\x9a\\x99\\x2e\\xaa\\x1e\\x6e\\x5a\\xa6\\x4d\\xd4\\x06\\xed\\x6f\\\r\n\\xe7\\xeb\\xb7\\x7d\\x43\\x14\\xcb\\xf1\\x10\\x4a\\xe8\\x92\\x2d\\xca\\x94\\x46\\\r\n\\xb3\\x46\\xdd\\xfe\\xb6\\x05\\x94\\xdb\\xd2\\xda\\x9a\\x0a\\xc8\\x98\\xce\\x03\\\r\n\\x75\\xc0\\x40\\x77\\x41\\xd5\\x63\\xf2\\xbb\\xae\\x1d\\x3f\\x31\\xd5\\x42\\x70\\\r\n\\x8e\\x21\\x59\\x8e\\x24\\x49\\x0c\\xf0\\x95\\xe5\\xbd\\xc0\\xba\\xb6\\xd6\\x71\\\r\n\\xb8\\xed\\xfc\\xed\\x6d\\x4d\\x52\\x5a\\x69\\x3e\\xec\\x34\\xb2\\xbd\\xc7\\x31\\\r\n\\x5e\\xf1\\xaa\\x33\\x1b\\xfa\\x9d\\xbd\\x34\\x67\\xe5\\xe3\\x2d\\x52\\x2c\\x7c\\\r\n\\xdd\\xcb\\xba\\xaa\\xa6\\x6f\\x76\\x3d\\xc0\\xc4\\x00\\x36\\x00\\x7d\\x75\\x49\\\r\n\\x3d\\x2a\\xdd\\xcb\\x15\\x08\\xde\\x4f\\x0c\\x87\\x06\\xb8\\xf6\\x79\\x36\\xf7\\\r\n\\x2a\\xba\\xa7\\x14\\xf5\\x6b\\x36\\x46\\x3e\\x68\\x84\\x8b\\x21\\x75\\x0c\\xc3\\\r\n\\x1f\\x41\\xdc\\x75\\x6e\\x75\\x23\\x3b\\x8d\\xa0\\x2c\\xfe\\xe4\\x01\\x72\\x2d\\\r\n\\xf5\\xed\\xa9\\x04\\xa2\\xcb\\x35\\xd4\\x1c\\xba\\x8e\\x46\\xff\\x00\\xf2\\x8f\\\r\n\\xc3\\xa1\\x5c\\xf2\\xbd\\x5d\\x25\\x46\\x31\\xd2\\x38\\x5b\\x18\\x71\\x0a\\x04\\\r\n\\x4c\\x8a\\x31\\x8e\\xe6\\xfc\\xb1\\xdd\\xbf\\x3d\\x53\\xd5\\xf1\\x85\\xfd\\x97\\\r\n\\x11\\xc1\\xba\\x88\\xf1\\x93\\xc2\\x7f\\x0c\\x3d\\x58\\xed\\xdb\\x9b\\x8f\\xe5\\\r\n\\xaa\\x7f\\x11\\xc4\\x67\\xa9\\x34\\xf5\\x22\\x78\\x44\\x50\\xa4\\x38\\xa8\\x65\\\r\n\\x22\\x39\\x5c\\x92\\x1c\\xf4\\xf5\\x15\\x0b\\xa0\\xd0\\x11\\xd2\\x7e\\x6e\\x5b\\\r\n\\xcc\\xec\\x7d\\xfb\\x88\\xed\\xa0\\xe5\\xf1\\x28\\x06\\x2a\\xad\\x8a\\x35\\xfb\\\r\n\\xe6\\x57\\x7d\\xbf\\x2f\\xcb\\x43\\x99\\x30\\x73\\xe8\\xb1\\xb5\\xf1\\xfe\\xa0\\\r\n\\x9d\\x28\\xbd\\x8f\\xa8\\x23\\xbf\\xfc\\xdb\\x7f\\x53\\xad\\xf9\\x84\\x1f\\x4d\\\r\n\\x88\\x1f\\x95\\xbb\\x68\\x16\\x99\\xc6\\xc7\\xe1\\x38\\xb2\\x93\\xfd\\x0f\\xf2\\\r\n\\x3a\\xca\\xcb\\x11\\xd8\\x64\\xae\\x45\\xed\\xfa\\x8f\\xeb\\x7d\\x44\\x27\\x95\\\r\n\\x8b\\x16\\x20\\x08\\x91\\x65\\x21\\x87\\xa9\\xbe\\xa3\\x9f\\x31\\x47\\x5a\\x7a\\\r\n\\xbc\\x48\\x87\\x91\\x23\\xc8\\x77\\x09\\x2b\\x46\\x4a\\xe7\\x7f\\x9b\\x6f\\xef\\\r\n\\x6a\\x4a\\x26\\x9d\\x4f\\xda\\xce\\x17\\x14\\x71\\xd0\\x71\\x03\\x32\\x5b\\x8e\\\r\n\\x47\\x15\\x84\\x14\\x5c\\x42\\x5e\\x9c\\xeb\\x04\\x7f\\x06\\x8a\\xb5\\xcd\\xe6\\\r\n\\xda\\x9a\\xa2\\x42\\xc2\\x26\\xd4\\x75\\x6a\\xdc\\x9a\\x98\\xaf\\x1d\\x55\\x35\\\r\n\\x4a\\x76\\x75\\x38\\x4b\\x0c\\xb1\\xb5\\x98\\x32\\x30\\x60\\xca\\xdb\\xde\\xfa\\\r\n\\x8e\\x57\\x8a\\x91\\x7a\\x43\\x05\\x89\\x73\\x8c\\xdf\\xe8\\x76\\xed\\xef\\xa8\\\r\n\\xeb\\x20\\xe1\\xb2\\xd6\\xc1\\x13\\xfc\\x65\\x8a\\x26\\xc1\\x97\\xe6\\x5c\\xc6\\\r\n\\x20\\x10\\x3d\\x2f\\xfa\\x6f\\xae\\x7c\\x3c\\x3e\\x62\\x95\\x16\\x3e\\x26\\x7e\\\r\n\\x50\\x31\\x48\\xdf\\xf8\\x74\\x4e\\x91\\xcc\\x8d\\x46\\xf2\\xb0\\x24\\xf7\\x42\\\r\n\\x3b\\xea\\x3c\\xa3\\x99\\xaa\\x23\\xc2\\x42\\x79\\xd1\\xc9\\x1a\\xa9\\x52\\x30\\\r\n\\x6b\\xab\\x33\\x8d\\xed\\x6f\\x97\\xe4\\x3a\\x68\\x1e\\x55\\x82\\xb9\\xcc\\x80\\\r\n\\x53\\xef\\x10\\x78\\xc5\\xdb\\x18\\x8e\\xca\\x09\\x37\\xba\\xb1\\x6c\\xb7\\xc5\\\r\n\\x8f\\x6d\\x45\\x5a\\xd2\\x78\\x6e\\x31\\xf6\\x53\\x95\\x11\\x67\\x5c\\x7c\\x4f\\\r\n\\x0d\\xe7\\xfe\\xec\\x1f\\xf1\\x3d\\x3b\\x1e\\x52\\x37\\xa8\\x90\\x29\\xf4\\xd3\\\r\n\\x43\\x3e\\x23\\x88\\x5c\\x84\\x68\\x26\\x19\\x48\\xbb\\x2f\\xc7\\xa7\\x6c\\x50\\\r\n\\x2b\\x75\\x0e\\x9c\\xbb\\x6d\\x62\\x45\\xa4\\xa7\\xa8\\x89\\x5a\\x78\\xd2\\x48\\\r\n\\xa2\\x67\\x0c\\xa6\\x25\\x91\\x4e\\x45\\xc1\\xbb\\xf3\\x3e\\x65\\x26\\xf7\\xfd\\\r\n\\x46\\xba\\x2f\\x8b\\x33\\x12\\x6c\\x40\\x2d\\x7d\\xff\\x00\\xbb\\xef\\xab\\xc8\\\r\n\\xa4\\x2d\\xbb\\xea\\x34\\xc7\\x70\\x3d\\x7c\\xa4\\x9f\\xf2\\xd4\\x54\\xdc\\xf8\\\r\n\\xd6\\xae\\x58\\xb3\\xe4\\xc7\\xd7\\x29\\x8e\\xe0\\x33\\x77\\xb0\\x1b\\xdf\\x1b\\\r\n\\xe4\\x40\\xdb\\x50\\x2c\\x6a\\x27\\xe2\\x95\\xf1\\x63\\x4c\\x4a\\xdd\\x0a\\xda\\\r\n\\xcf\\x51\\x35\\xb7\\x58\\xa3\\x63\\x6c\\x07\\xa9\\xdb\\xbd\\xf5\\x4d\\x5b\\x19\\\r\n\\x46\\x68\\xe7\\x87\\x88\\x2e\\x1b\\xe5\\x18\\xda\\x60\\xa7\\xfb\\xa7\\x3b\\x7e\\\r\n\\x63\\x5c\\x3a\\x6e\\xfc\\xfe\\x51\\x0f\\xf3\\x2b\\x34\\x6d\\x66\\x8d\\xfe\\x57\\\r\n\\x12\\x46\\x3b\\xed\\x76\\xb5\\xad\\xa6\\x91\\x38\\x7f\\x88\\x73\\x18\\x7a\\xa2\\\r\n\\x58\\xc5\\x7e\\x5a\\x11\\x14\\x72\\xb4\\x77\\x39\\x2f\\x33\\x28\\xc1\\xe9\\x3b\\\r\n\\x91\\xd4\\x35\\x04\\x95\\x4e\\xf4\\xfc\\xa9\\xad\\x14\\x89\\xd7\\xc9\\xce\\xf1\\\r\n\\xcb\\x14\\x8a\\x7a\\x24\\xa5\\x92\\x3f\\xbf\\x8d\\xc6\\x0c\\x2e\\xdb\\x30\\x0c\\\r\n\\x28\\x27\\x98\\x47\\x3f\\xd9\\xcf\\xb4\\x3f\\x66\\xa9\\xbc\\x52\\x21\\x0b\\x57\\\r\n\\x43\\xc4\\xa9\\xf2\\x1c\\xf8\\x87\\x73\\x14\\x8a\\x91\\x79\\x4b\\x5a\\x54\\x1b\\\r\n\\x75\\x6f\\xc4\\xb8\\x6e\\x4a\\x79\\x94\\xd3\\x63\\x23\\xa7\\x4b\\x24\\xb1\\x16\\\r\n\\xe6\\x20\\xec\\xac\\x37\\x23\\xbe\\x3d\\x40\\x6a\\x94\\xd1\\x4b\\xf7\\x86\\xaa\\\r\n\\x39\\x48\\xb9\\x74\\x05\\x3e\\x25\\x33\\xb1\\xb5\\xd5\\xcb\\x73\\x50\\xdb\\x75\\\r\n\\xb7\\xa8\\x3a\\x31\\x40\\xf5\\x08\\x94\\x55\\xb5\\x22\\x4c\\x24\\xc4\\xcb\\x13\\\r\n\\xc9\\xb2\\xbd\\x8f\\xc4\\x05\\x01\\xbe\\x57\\x16\\x3a\\xfd\\xd6\\x09\\x24\\x53\\\r\n\\x4a\\xb3\\xbc\\x82\\xf6\\x5b\\x74\\x1c\\xac\\x0d\\x95\\x58\\x5d\\xbf\\x3b\\x6a\\\r\n\\x1a\\x4b\\xd6\\x3d\\x45\\x5a\\xc5\\x92\\x43\\x1f\\x38\\xbc\\x69\\x75\\xc3\\xa4\\\r\n\\xe2\\x43\\xca\\xbc\\xc1\\x90\\x3e\\x55\\x16\\xdf\\x5c\\x56\\x96\\xb1\\x66\\x48\\\r\n\\xcc\\x63\\xc0\\xac\\xf1\\x95\\x37\\x90\\x37\\x35\\x10\\x35\\xae\\xa1\\xed\\xd3\\\r\n\\xb2\\xe5\\x95\\xbc\\xda\\xa8\\xe2\\xb1\\xd5\\x78\\x67\\x91\\xe3\\x92\\x35\\xa6\\\r\n\\x3c\\xb9\\x33\\x23\\x0e\\x49\\x09\\x65\\xb3\\x7c\\x3e\\x93\\xe8\\x0d\\xc5\\xef\\\r\n\\xa8\\xa5\\x9e\\x48\\xa7\\x47\\x8e\\x36\\x08\\x3a\\x2a\\x15\\xf1\\xb3\\x66\\x7c\\\r\n\\x84\\xb3\\x82\\x6c\\x31\\x02\\xf6\\xfa\\xe9\\xa6\\x0b\\x2a\\x71\\x6a\\x58\\xcb\\\r\n\\x47\\x12\\x5c\\x49\\x36\\x2a\\xc7\\x91\\x2a\\x27\\xde\\xc2\\x4f\\x6d\\x8e\\x07\\\r\n\\xa9\\x0f\\x7d\\x07\\x07\\x95\\x36\\xf0\\xcf\\x04\\xa2\\xce\\x8e\\x00\\xe6\\x46\\\r\n\\xca\\x7b\\xf7\\xf6\\xb3\\x29\\xbf\\xd3\\x42\\xc1\\x40\\xb0\\xb0\\x11\\xa5\\x87\\\r\n\\xd0\\x6d\\xdb\\x4d\\xfb\\x16\\x60\\xb5\\x11\\x36\\x55\\x11\\x44\\x7a\\x9d\\x3d\\\r\n\\x5e\\x31\\xff\\x00\\xe4\\x9b\\xea\\x5a\\x6a\\xa8\\x43\\x51\\x2b\\x30\\xab\\x9e\\\r\n\\x65\\xe5\\x53\\xc5\\x27\\xc8\\xf1\\x4b\\xb6\\x15\\x37\\xee\\x12\\xf9\\x0f\\x30\\\r\n\\xd2\\xf8\\xe8\\xd6\\xbc\\xa5\\x8c\\x97\\x9c\\x35\\xef\\xe8\\xb1\\x03\\xbe\\xd6\\\r\n\\xd4\\xb4\\xbc\\x0f\\x83\\xc5\\x4d\\x0c\\x8c\\x47\\xdd\\xc5\\x00\\xc5\\xba\\x47\\\r\n\\xdd\\x27\\x31\\x8e\\x3e\\xac\\xfa\\x65\\x9a\\xaa\\xa2\\x93\\x9b\\x65\\x75\\x70\\\r\n\\x66\\xa6\\xf4\\xf5\\x39\\x6d\\xf4\\x23\\x6f\\xe5\\xac\\xa9\\x85\\x05\\x53\\x80\\\r\n\\x64\\x26\\x35\\x8c\\x49\\xeb\\x7f\\x21\\x56\\x5c\\xb7\\x5d\\xc0\\xde\\xda\\x33\\\r\n\\x4f\\x49\\x56\\x84\\xb2\\xaf\\xee\\xd5\\x02\\x3e\\xa2\\x40\\xef\\x24\\x6e\\x47\\\r\n\\xd7\\x7f\\x42\\x3e\\xba\\x92\\x6e\\x1f\\x04\\x53\\x42\\x71\\x79\\xe3\\x70\\x7c\\\r\n\\x5c\\x04\\x9d\\xee\\xeb\\x70\\xcb\\x97\\xf1\\x5b\\xd3\\x11\\xdb\\x54\\xf0\\x52\\\r\n\\x43\\x34\\x10\\xc7\\x60\\xb4\\x8a\\x85\\x63\\xd8\\x5e\\x49\\xe5\\x9b\\x3f\\x8b\\\r\n\\x7b\\x16\\xcb\\x12\\x7b\\x00\\x01\\xd4\\x52\\x3b\\x80\\x44\\x2c\\x0b\\x3b\\x7a\\\r\n\\xe4\\xcc\\xdf\\xdd\\x02\\x35\\x45\\x03\\xd3\\xb9\\xb5\\xf5\\xcb\\xca\\x37\\x52\\\r\n\\x84\\x40\\x30\\x47\\x5c\\x32\\x3b\\x02\\xca\\x77\\xef\\xd8\\xea\\x0a\\x78\\x24\\\r\n\\x4e\\x51\\x80\\x49\\x53\\x99\\xec\\x82\\xdd\\x97\\xf1\\x6f\\xf9\\xea\\x41\\x2f\\\r\n\\x93\\xc3\\x91\\xf9\\xe4\\x36\\xfe\\x7a\\x27\\x7c\\x54\\xda\\xe3\\xda\\xf6\\xe9\\\r\n\\x66\\xd9\\x7f\\xc7\\x5c\\x2f\\xec\\xf5\\x4d\\x24\\xd2\\xda\\xa4\\x56\\x87\\x28\\\r\n\\xb2\\x44\\x5e\\x35\\x61\\x01\\x90\\x02\\xee\\x14\\x3e\\xe4\\xc8\\xaa\\xbb\\x7b\\\r\n\\x6a\\x40\\xf2\\x47\\x2d\\x4a\\x7c\\x89\\x2a\\x34\\xd9\\x76\\xc4\\x7b\\x00\\x76\\\r\n\\x3f\\x5d\\xb4\\xa0\\x17\\xa7\\x17\\xf2\\x06\\xe8\\xf3\\x5c\\x13\\x6b\\x16\\x36\\\r\n\\xb5\\xee\\x6d\\xf4\\xd4\\xf3\\x9a\\x8a\\xa8\\xa7\\xc3\\xa6\\x48\\xa6\\x7c\\x21\\\r\n\\x94\\x7a\\xc9\\x19\\xba\\xb4\\x52\\xf9\\x4f\\x4d\\xd7\\xbf\\xa1\\xd5\\x1d\\x4a\\\r\n\\x57\\xd4\\x2f\\x2b\\x8a\\x43\\x47\\xc4\\xba\\x84\\x8f\\x1c\\x35\\x60\\x24\\x2d\\\r\n\\x88\\xd8\\xe3\\x36\\xc1\\xf6\\x0c\\xad\\xbd\\x8e\\xa5\\x88\\x4b\\x85\\x44\\x2e\\\r\n\\x8b\\x2d\\xe2\\xeb\\x52\\xa4\\x09\\x81\\xf9\\x54\\x83\\x71\\xd8\\xdb\\xdf\\xd7\\\r\n\\x4b\\xc9\\x92\\x2a\\x99\\xb2\\x54\\x68\\x67\\x2b\\x1e\\xc0\\x2e\\x58\\xdb\\x72\\\r\n\\xcc\\x32\\x21\\x8d\\x85\\xc0\\x0c\\x05\\xf6\\xbc\\x74\\x4d\\xcc\\xde\\xec\\xf1\\\r\n\\xfc\\x25\\x6b\\x36\\x20\\x95\\x97\\x1c\\x9f\\x16\\xb2\\xab\\x33\\x8c\\x1c\\x94\\\r\n\\xc4\\x5f\\x5c\\x8e\\x21\\x41\\x2c\\x15\\x71\\xc3\\x1c\\x85\\x22\\xf8\\xb0\\x5a\\\r\n\\x4e\\xd9\\x48\\xf8\\xf2\\xdf\\x1e\\xbc\\x0f\\xa6\\xc2\\xe7\\x4e\\x94\\xf5\\x07\\\r\n\\x9a\\x71\\xe5\\xaf\\x22\\xc4\\x12\\xf1\\x35\\xcd\\xef\\xd0\\x62\\xcc\\x5f\\xf2\\\r\n\\x3a\\x69\\xe2\\x97\\x97\\x94\\x99\\xb2\\xaa\\xfa\\xfe\\x66\\xfb\\x1f\\xa6\\x84\\\r\n\\x8b\\x2b\\xbd\\x35\\x74\\x51\\xd6\\xc0\\x32\\x3b\\x09\\x41\\xe6\\x27\\xb7\\xc2\\\r\n\\x98\\x4b\\x1d\\x87\\x6c\\x74\\xb3\\xab\\x9f\\xc2\\xe8\\x7b\\x48\\x8c\\x7c\\xad\\\r\n\\xf4\\x23\\xb1\\x1b\\x86\\xb1\\x1b\\xe9\\x64\\x8b\\xa7\\xed\\x3c\\x34\\xe6\\x78\\\r\n\\xd4\\x5c\\x1f\\xb4\\x3c\\x3e\\x01\\xd5\\x98\\xf2\\x9e\\x35\\x46\\x83\\xac\\x8b\\\r\n\\xb5\\x75\\x3a\\x06\\xb7\\x38\\x75\\x3c\\x74\\xbc\\x3e\\x6a\\xa4\\x58\\x5e\\x5a\\\r\n\\xa8\\xc4\\xd2\\xa7\\x4c\\x29\\x66\\x76\\x7e\\xc2\\x38\\xf7\\x67\\x52\\xb7\\xcb\\\r\n\\x49\\x49\\x45\\x4f\\x49\\x0b\\x3d\\x51\\x68\\xf0\\x71\\x2d\\x64\\x31\\x16\\xce\\\r\n\\x46\\x93\\x3c\\x83\\x39\\x37\\xb1\\xc3\\xc8\\x3d\\xc8\\xd5\\xb8\\xad\\x75\\x56\\\r\n\\x61\\xd8\\x8e\\x7e\\x72\\xa0\\x16\\xd9\\xd7\\x00\\x02\\x96\\xf2\\x8c\\x53\\x2f\\\r\n\\x7b\\x0e\\xc8\\x23\\xae\\x82\\x49\\x59\\x32\\x58\\x73\\x19\\xe0\\x45\\xc5\\xc1\\\r\n\\xea\\x4b\\x8d\\xff\\x00\\x87\\xd4\\x6b\\x2e\\x74\\xf0\\x55\\xa9\\xb8\\x24\\x79\\\r\n\\x7d\\xca\\xba\\x11\\x7f\\xcf\\x12\\x08\\xef\\xa9\\x68\\xb8\\x9a\\x35\\x44\\x52\\\r\n\\x53\\xbf\\x0e\\x95\\x5a\\xdc\\xec\\x2a\\x76\\x85\\x91\\xfb\\x91\\xce\\x11\\xc8\\\r\n\\x81\\xae\\x15\\xc5\\x97\\x1b\\xef\\x41\\x05\\x1c\\xad\\x13\\x54\\xf1\\x23\\x0c\\\r\n\\xa5\\x85\\xed\\x47\\x92\\x83\\x92\\x1e\\xa0\\x42\\xb3\\xfd\\x6e\\xa3\\xdb\\x41\\\r\n\\x6f\\xcd\\x34\\xf6\\x29\\x3a\\x2a\\x89\\x70\\x03\\x10\\x92\\x3a\\xee\\xca\\x02\\\r\n\\xff\\x00\\x69\\xf9\\x9d\\xf6\\xd3\\x73\\x3a\\xaf\\xbf\\x6f\\x9b\\xf4\\xd7\\x2e\\\r\n\\x9a\\x9c\\xb9\\x6d\\xbb\\x1b\\x77\\xf5\\x3f\\x96\\xb9\\xa2\\xcb\\x2d\\xbf\\x55\\\r\n\\xfc\\xbf\\xeb\\xe9\\xaa\\xd6\\xe2\\x54\\xc2\\xb3\\xc0\\xd2\\xca\\xf4\\xed\\x51\\\r\n\\x9f\\x39\\x22\\x9a\\xf1\\xca\\xd1\\xca\\x3e\\xf5\\x21\\x25\\x5c\\xa1\\xf8\\x81\\\r\n\\x59\\x9a\\x3b\\x91\\x63\\x25\\x04\\xe9\\x04\\x9c\\x46\\x8d\\x56\\xa6\\x8c\\xab\\\r\n\\x5c\\x3b\\xf2\\xfa\\xc4\\x0e\\x7a\\x84\\x35\\xa1\\x48\\xb7\\xc9\\x30\\x50\\xda\\\r\n\\x92\\x9a\\x8e\\x9a\\x6a\\xa4\\xa1\\xe7\\x09\\xe0\\xb5\\xe5\\x8a\\x09\\x18\\xa4\\\r\n\\x91\\xf2\\xef\\x76\\xc4\\xc8\\x47\\x4a\\x92\\x2d\\xdb\\x54\\x54\\x32\\xc1\\x2d\\\r\n\\x62\\x47\\x2c\\x91\\x32\\x85\\x37\\x89\\xae\\xad\\x04\\xe6\\x41\\xe4\\xe5\\xdc\\\r\n\\x58\\x39\\xc4\\x9c\\xb6\\xdf\\x46\\xae\\x9a\\xbb\\x84\\x37\\x11\\x69\\x4c\\x5f\\\r\n\\xb2\\x64\\xac\\xbb\\x54\\x2d\\x88\\x92\\x3a\\x86\\x8d\\x1e\\x96\\x11\\x88\\x5c\\\r\n\\x7c\\x44\\xc8\\x32\\xb6\\xeb\\xa9\\xc2\\xd1\\x54\\x51\\xac\\xb3\\xc2\\x4d\\x34\\\r\n\\xf1\\xb7\\xc1\\x66\\x2b\\xcd\\x10\\xcb\\xba\\x54\\x53\\xe2\\x5a\\xcc\\x8e\\xd8\\\r\n\\x8b\\x82\\x48\\x01\\x8f\\xff\\x00\\xa7\\xfc\\x46\\x8e\\xaa\\x48\\x65\\xe1\\x7c\\\r\n\\x57\\x88\\x70\\x39\\x04\\x97\\x51\\x57\\x43\\x36\\x79\\xc3\\x20\\x6f\\x99\\x52\\\r\n\\x91\\x6a\\x21\\xcb\\xb9\\x8e\\xcb\\xd4\\xc3\\x5c\\x3f\\x89\\x55\\x4a\\x47\\x11\\\r\n\\xa5\\x59\\xf8\\x74\\xef\\x87\\x4c\\xd5\\x50\\xf3\\x69\\xa5\\x57\\xb7\\x90\\xb3\\\r\n\\xc6\\x1d\\x7d\\x2e\\xd6\\xb6\\xfa\\x0f\\x1c\\x6b\\x25\\x15\\x7b\\x24\\xb1\\xc8\\\r\n\\x47\\x55\\x3d\\x4c\\x6b\\x20\\x96\\x2b\\xfa\\x30\\xdd\\x57\\xb6\\x71\\xb8\\xee\\\r\n\\x57\\x4c\\xcb\\x9c\\x71\\xba\\x0e\\x68\\x1e\\x56\\x74\\xe9\\xc8\\xfd\\x77\\x1f\\\r\n\\xcf\\x5c\\x25\\x28\\x2a\\x65\\xa4\\x9e\\x9a\\xb7\\x09\\xe6\\x46\\xb6\\x14\\xa4\\\r\n\\x67\\x23\\x3d\\xb6\\x60\\x15\\x08\\x01\\x81\\x0c\\xc4\\x2d\\xb7\\xd3\\xc0\\xfe\\\r\n\\x11\\x6b\\x4e\\x72\\x61\\x16\\x3c\\xce\\x42\\xb0\\x58\\xd9\\xb6\\x0c\\x6c\\xb8\\\r\n\\x89\\x1b\\xcb\\x9f\\x97\\x6d\\x85\\xfd\\x2d\\x7f\\xd2\\xfd\\xff\\x00\\x43\\xa4\\\r\n\\x89\\x85\\xd4\\x9c\\xc5\\xff\\x00\\x12\\xee\\x08\\x07\\xe6\\x06\\xc5\\x7d\\x75\\\r\n\\x2d\\x34\\x55\\x0f\\x4a\\x62\\xc7\\x90\\x51\\xa4\\xca\\xe1\\x9a\\x4c\\xae\\xa7\\\r\n\\xa9\\x72\\xb9\\x70\\x59\\x49\\x0d\\x65\\xdb\\xb7\\x04\\xe2\\xb0\\x4e\\x8d\\x5b\\\r\n\\xc3\\x29\\xc4\\x9c\\x4b\\x92\\x81\\xaa\\x9a\\x1c\\xf9\\x73\\xcd\\x0f\\xcc\\x51\\\r\n\\x54\\xe7\\x3a\\x3a\\x15\\xc4\\xab\\x9b\\x75\\x5e\\x39\\xe0\\x30\\x73\\x3c\\x4a\\\r\n\\x1e\\x7b\\x53\\xf2\\x6b\\x52\\x32\\x30\\x90\\x8e\\x59\\x29\\x52\\xb1\\xdc\\x3b\\\r\n\\x44\\x39\\x66\\xe0\\x77\\x27\\x5b\\x71\\x74\\xb7\\xa5\\xcd\\x30\\x36\\xfa\\x86\\\r\n\\xb3\\x03\\xf4\\x22\\xe3\\xd7\\x5e\\x2f\\x89\\xd5\\x9e\\x23\\x32\\xad\\xd6\\x15\\\r\n\\x0f\\x4d\\x4f\\x19\\x1f\\x79\\x23\\xb7\\x37\\x39\\x13\\xd0\\x5f\\x01\\xdc\\xb0\\\r\n\\x3a\\x3c\\x1f\\x82\\x8a\\x51\\x2c\\x51\\xda\\x26\\xa3\\x29\\x1d\\x34\\x6c\\x4d\\\r\n\\x8f\\x52\\x0c\\x5e\\xab\\x6f\\xcb\\x7b\\xe5\\x7d\\x08\\xab\\xf3\\x8a\\x75\\xb8\\\r\n\\x5a\\xb7\\x53\\x9a\\x9f\\xf6\\x73\\xfa\\xbc\\x67\\xbd\\xfb\\x8e\\xe0\\xe8\\xe5\\\r\n\\x81\\x88\\x2d\\xf3\\x53\\x92\\xb2\\xfa\\x32\\xb7\\xaa\\x9f\\x7f\\x4f\\x9a\\xc7\\\r\n\\x42\\x21\\x21\\xc5\\x77\\xf7\\x5b\\xea\\x6a\\x9a\\x68\\x69\\x2b\\x1a\\xa2\\x21\\\r\n\\x00\\xe7\\xde\\xf0\\x59\\xb2\\x2f\\x65\\xb3\\x58\\xec\\x08\\xc9\\x41\\xf5\\xbe\\\r\n\\x8a\\x55\\xd3\\x50\\x4f\\x4f\\x29\\x5c\\xa8\\xfc\\x32\\xac\\x52\\x85\\x6c\\x82\\\r\n\\x65\\xbc\\x97\\xec\\x03\\x64\\x6d\\x61\\xeb\\xa4\\xa6\\xa0\\xe1\\x54\\x1c\\x1d\\\r\n\\xc0\\x8d\\xea\\x29\\xa9\\xd0\\xca\\xaa\\xf2\\xa7\\x42\\x3b\\xce\\x4b\\xbb\\x05\\\r\n\\x1c\\xc6\\xf2\\xa8\\xcc\\x00\\xbb\\x6f\\x5d\\x53\\x32\\xc2\\xb1\\x47\\x6b\\x48\\\r\n\\xc4\\x01\\x93\\x5c\\xb0\\x00\\x6c\\x45\\x85\\xd9\\x02\\xea\\xae\\x0a\\x7c\\xac\\\r\n\\xb0\\x48\\x80\\x44\\x17\\x9a\\xc3\\xe7\\x70\\xae\\xc3\\x2b\\x93\\x6b\\x7b\\x0f\\\r\n\\xae\\x91\\x83\\x4a\\xe5\\x76\\x41\\x51\\x08\\x89\\xd1\\x89\\x37\\xca\\xd2\\x48\\\r\n\\x00\\x23\\xdc\\xde\\xfe\\x9a\\xa8\\x76\\xc0\\x95\\x54\\xc6\\xe7\\xac\\x2d\\xf7\\\r\n\\x3b\\xfa\\x5f\\x6d\\x24\\x94\\xfd\\xa4\\x96\\x08\\x5d\\x57\\x72\\x62\\x91\\x95\\\r\n\\x24\\xb0\\xf5\\xb2\\xb1\\xfc\\x86\\xfa\\x61\\x5d\\x24\\xdc\\xef\\x92\\x9e\\x30\\\r\n\\x57\\x25\\x91\\x7a\\x66\\x32\\x12\\x42\\x86\\x20\\xd9\\x7a\\xa4\\xf5\\x51\\xb6\\\r\n\\xa6\\x3c\\x1e\\x96\\x92\\x8a\\x22\\x00\\xa9\\x90\\x44\\x7c\\x56\\x16\\xef\\xe2\\\r\n\\x19\\xb9\\xac\\x5b\\xca\\xce\\x48\\x23\\xd0\\x0d\\x34\\xd3\\xbb\\x3b\\x31\\xda\\\r\n\\xfe\\x8b\\x72\\x40\\xfe\\xa7\\x4a\\xa1\\x79\\x9d\\xb6\\xef\\xa8\\x05\\x05\\x15\\\r\n\\x7b\\xcc\\xe8\\xd1\\xd5\\x17\\x5b\\x52\\xdd\\x9b\\x62\\x0b\\x58\\x15\\x0b\\xdf\\\r\n\\xd8\\xeb\\x8b\\x2c\\xcf\\x10\\xa7\\xae\\xa6\\x30\\xbc\\x6b\\x20\\x38\\xd5\\xc4\\\r\n\\xdc\\xca\\x76\\x0b\\xfa\\xdf\\x21\\xef\\xa5\\x69\\x42\\x2b\\x56\\xc1\\x1c\\x8f\\\r\n\\x8d\\xd5\\x4c\\x8e\\x42\\x54\\x30\\x6e\\xf7\\xe6\\x2b\\x3d\\x89\\xda\\xe0\\x5c\\\r\n\\xeb\\x9a\\x60\\x9d\\xe0\\x42\\xe9\\xe2\\x54\\x49\\xcc\\x81\\x91\\x53\\x28\\xcb\\\r\n\\x00\\xbc\\xc0\\x81\\xd4\\xb6\\x56\\x74\\x53\\x7e\\xa2\\xd6\\x26\\x95\\xa4\\xa4\\\r\n\\xaa\\x40\\xe1\\x1f\\x74\\x62\\x18\\xec\\xb9\\x81\\x77\\x5b\\x03\\xdd\\xba\\xec\\\r\n\\x7a\\x7b\\xef\\x27\\x16\\xe1\\x21\\x85\\x0d\\x5b\\xb3\\x57\\x41\\x18\\xc8\\xd2\\\r\n\\x48\\x18\\x04\\xa8\\x8a\\x40\\xcc\\xc6\\x92\\x5e\\xd8\\x37\\xfa\\xbb\\x0b\\x79\\\r\n\\x18\\x63\\x0c\\xd9\\xe4\\xc6\\x25\\x42\\x7e\\x62\\x62\\xb8\\xc8\\xdf\\x63\\xd1\\\r\n\\x88\\x3f\\xe1\\xae\\x95\\x1b\\x0d\\xc7\\x6f\\xd4\\x7d\\x76\\xd2\\x32\\xaf\\xef\\\r\n\\x1c\\x26\\xb1\\xd1\\xb2\\x3d\\x46\\x8e\\xb3\\x16\\x53\\xff\\x00\\xd3\\xa8\\x53\\\r\n\\x6b\\x7f\\xb4\\x3a\\x61\\x6b\\xc7\\x0f\\xde\\x1e\\xd8\\x9f\\xc2\\x3d\\xcb\\x1d\\\r\n\\x86\\x9d\\x1e\\x69\\x29\\x6a\\x23\\xa8\\x15\\x5c\\x2e\\x68\\xd8\\xac\\xd4\\xb5\\\r\n\\x31\\xf9\\x42\\x1b\\x82\\x91\\xca\\x06\\x04\\x12\\x3d\\x0e\\xaa\\x78\\xf7\\x0c\\\r\n\\xc2\\x9b\\x8c\\x52\\x44\\xc9\\xf6\\x8e\\x8e\\x10\\x17\\x9b\\x14\\xbf\\x05\\xf8\\\r\n\\xbc\\x11\\xf6\\xe4\\xcd\\x96\\x3c\\x4a\\x30\\x2d\\x0c\\xc4\\x4f\\x61\\x1c\\x84\\\r\n\\xae\\x57\\xcc\\xb7\\x48\\xbf\\xa0\\xf5\\x3f\\xcc\\xd9\\x7f\\xf5\\xd1\\xc9\\x73\\\r\n\\x07\\x70\\xa0\\x75\\x01\\xee\\x2d\\xbe\\xa3\\x9d\\xe0\\xa9\\xa6\\x49\\xee\\xb1\\\r\n\\xb5\\x4c\\x32\\xc2\\x92\\xe3\\xdc\\x2c\\x8e\\xa3\\xab\\x71\\xb1\\xb6\\xc4\\x6f\\\r\n\\xa5\\xa7\\xa9\\x3f\\x12\\x30\\x0a\\xef\\x7e\\x9c\\x77\\x08\\xdd\\x99\\x7d\\xc7\\\r\n\\x71\\xa4\\x1c\\xe5\\x8a\\x34\\x64\\x3c\\xce\\x58\\x75\\x21\\x48\\x6c\\x65\\xb7\\\r\n\\x59\\xb1\\xf2\\xd8\\x8c\\x58\\x06\\xf4\\xd4\\x72\\x51\\x18\\x79\\x93\\x43\\x2d\\\r\n\\x6f\\xc2\\xbc\\xb0\\x23\\xe1\\xf1\\x11\\xc3\\x60\\xea\\xa6\\x42\\xdc\\xe6\\xe9\\\r\n\\x0a\\x1a\\xea\\xdb\\x6b\\x37\\xa5\\xa7\\x8c\\xac\\x76\\x9f\\xc2\\x54\\xc6\\xf0\\\r\n\\xa1\\x0c\\x46\\x31\\x93\\x62\\xe4\\x10\\xd7\\x51\\x97\\x7b\\x64\\x7b\\xe9\\x94\\\r\n\\xec\\xb9\\x6d\\xb7\\xf3\\xff\\x00\\xb1\\xa5\\x11\\xc4\\x01\\xb5\\xc9\\xef\\xbf\\\r\n\\xe7\\xac\\x80\\xb7\\xa1\\xd3\\xdf\\xa5\\xe4\\x5c\\x4b\\xad\\xf3\\x22\\xf7\\xc6\\\r\n\\xe0\\x8e\\x96\\xb5\\x9c\\x0e\\xeb\\xb6\\xfa\\xf1\\x91\\x4b\\x0d\\x04\\x71\\xb7\\\r\n\\x45\\x5d\\x5b\\xa5\\x24\\x10\\xc6\\x71\\xc8\\x43\\x49\\x0a\\x9a\\x9a\\x8e\\xdd\\\r\n\\x42\\xce\\xad\\x62\\x72\\x0d\\xd5\\xae\\x21\\x5f\\x42\\xdc\\x4e\\xae\\x6e\\x2e\\\r\n\\x95\\x15\\x33\\x54\\xc8\\xab\\x47\\xc2\\xe1\\x70\\xf1\\x73\\xe3\\xa6\\xa6\\xc7\\\r\n\\x9e\\xdc\\xd9\\xa4\\x59\\x13\\x9a\\xd6\\x08\\x6e\\x01\\xc6\\xfa\\x7a\\x69\\x91\\\r\n\\x4c\\x32\\x49\\xf1\\x23\\x5c\\x95\\x4e\\xc3\\x17\\x38\\x72\\xc9\\x20\\x8e\\x9b\\\r\n\\x92\\x36\\x17\\xdb\\x58\\x53\\x4d\\x35\\x2b\\xc6\\x8a\\x8b\\xd4\\xcc\\x19\\x00\\\r\n\\x45\\x62\\xc4\\x7c\\x41\\x92\\xaf\\x53\\x29\\xb1\\xbf\\x60\\x05\\xb5\\x8d\\x45\\\r\n\\x6d\\x04\\xdc\\x1c\\x4a\\xc2\\x9e\\x3a\\xb7\\x96\\x54\\x46\\x7f\\x2a\\xc4\\x5e\\\r\n\\xd2\\xc0\\xf8\\xe4\\x36\\x6f\\xd0\\xeb\\x89\\xd3\\x50\\x2f\\x2d\\xb8\\x67\\x1f\\\r\n\\xa3\\xab\\x29\\xc4\\x1c\\x49\\x14\\x73\\xca\\x7e\\x24\\x70\\xc9\\x2f\\xc4\\x55\\\r\n\\x26\\x51\\xc9\\xcb\\x12\\xac\\xc1\\x10\\xe3\\xae\\x27\\x40\\x2e\\x64\\x7a\\x81\\\r\n\\xc4\\x70\\x3f\\x2c\\xd2\\xa2\\x48\\xe5\\x6f\\xdc\\x34\\xc9\\x23\\x7d\\x1a\\xfa\\\r\n\\x82\\x9d\\xed\\x8c\\xcb\\xce\\x0b\\x7f\\x24\\xb0\\xb9\\x89\\xc9\\x5e\\xe8\\xcd\\\r\n\\x63\\xed\\x71\\xbe\\x9e\\xae\\x89\\x4c\\xc6\\x91\\x61\\x5a\\xaa\\x75\\x04\\xc8\\\r\n\\xcc\\xe2\\x2c\\x26\\x40\\x37\\x2a\\xe8\\xd7\\x6f\\x4e\\x83\\xf5\\xd2\\x53\\xd3\\\r\n\\xa0\\xfd\\xad\\x5a\\x99\\xd4\\x4a\\x77\\xe5\\x3f\\x2f\\x3e\\x47\\xd3\\x96\\xac\\\r\n\\x36\\x1d\\xcf\\x7f\\xa7\\xed\\x9a\\x79\\xe6\\x7a\\xba\\x69\\x57\\xae\\xe5\\xbe\\\r\n\\xf0\\xfd\\xd3\\x25\\xf7\\x89\\xfc\\xac\\x9d\\x88\\xd2\\xc8\\x55\\xa9\\xaa\\x61\\\r\n\\xc4\\x55\\x53\\xdb\\x35\\xc8\\xae\\x47\\x94\\xc2\\xdd\\x06\\xfb\\x02\\xa6\\x45\\\r\n\\xfe\\xba\\x60\\xbf\\x52\\x9f\\xee\\xc8\\xdc\\x8f\\xa5\\xfb\\xef\\xd8\\x5e\\xfe\\\r\n\\x96\\x43\\x1a\\xee\\xd9\\x25\\xff\\x00\\x4e\\xcd\\xf4\\xbf\\x6d\\x45\\x52\\x79\\\r\n\\x8e\\xd4\\x84\\xf2\\xd0\\x33\\x08\\xa4\\x2f\\xf0\\x8f\\x35\\x01\\x0b\\x32\\x75\\\r\n\\x36\\x2b\\x2f\\x40\\xb9\\x63\\xe8\\x47\\x36\\x96\\x92\\x23\\x04\\x91\\xf2\\x7c\\\r\n\\x34\\x30\\xc5\\x14\\x34\\x7b\\x75\\x47\\x70\\xa4\\xb0\\x37\\x2f\\x19\\x1e\\x7d\\\r\n\\xee\\xc4\\xa9\\x6d\\x58\\x50\\xd3\\xd8\\x7b\\xc2\\xa4\\xfe\\xbd\\x3d\\xf5\\x35\\\r\n\\x3e\\x10\\xf8\\x39\\x2d\\xd1\\x26\\x79\\xb2\\xa9\\xdb\\x36\\x59\\x06\\xde\\xb8\\\r\n\\x8d\\x86\\x80\\xfd\\x99\\x19\\x6b\\xff\\x00\\xe1\\xea\\xa5\\x8c\\x8f\\xad\\x8e\\\r\n\\x5d\\xbb\\xeb\\x90\\xc5\\xb3\\x44\\xda\\x56\\x37\\x1f\\x45\\x63\\xeb\\xf9\\x91\\\r\n\\xb6\\x98\\x41\\x43\\x24\\xf4\\xd7\\x21\\x70\\x83\\x24\\xc7\\xbf\\x4b\\x5a\\xdd\\\r\n\\x43\\xbd\\x8d\\x8e\\x99\\xda\\x92\\xa2\\x9e\\x41\\xf7\\x90\\x30\\x64\\x60\\x7d\\\r\n\\xe3\\xb8\\xdd\\x7e\\x9d\\xfd\\xaf\\xa8\\xa1\\xae\\x84\\xcf\\x04\\x94\\xd5\\x57\\\r\n\\x82\\x52\\x2c\\xcf\\xca\\x38\\x7a\\xab\\x02\\x0e\\xe0\\xae\\xf7\\x1a\\x15\\xd4\\\r\n\\x66\\xb0\\x2d\\x3b\\xf3\\xde\\x8d\\xdd\\x58\\x15\\x8e\\xee\\x44\\x72\\x32\\x82\\\r\n\\x2c\\x17\\xb4\\x8e\\x6e\\x3e\\x6d\\x49\\x2c\\x3c\\x42\\x68\\x2a\\x2a\\x67\\xcb\\\r\n\\xaa\\x26\\x3d\\x66\\xe2\\x34\\x18\\x5f\\x7e\\xa0\\xa3\\x4b\\x44\\xae\\x19\\xc9\\\r\n\\x8c\\xc8\\xfd\\x5d\\x75\\x38\\x1e\\x6b\\x92\\xc4\\x91\\x6c\\xcf\\x4f\\xa5\\xb6\\\r\n\\xed\\x6d\\x4b\\x5b\\x4b\\x2a\\xb1\\xa6\\x73\\x1a\\x22\\x3b\\x5c\\x12\\xaa\\x71\\\r\n\\x6e\\x91\\xfd\\xa0\\x37\\x17\\xdf\\x51\\xcc\\x82\\xce\\x4a\\x8a\\x94\\x8c\\x11\\\r\n\\xf1\\xad\\xb3\\x5b\\xd8\\xee\\x3e\\x87\\x54\\x7c\\x7e\\x4b\\xf8\\x99\\xe9\\xc0\\\r\n\\x7f\\x4d\\x85\\xed\\x7d\\x41\\x15\\x54\\x66\\x76\\x86\\xa6\\x29\\xa3\\x8d\\x5a\\\r\n\\xdb\\xc1\\xd5\\xd4\\x6f\\xbf\\xbf\\x2c\\x79\\xb6\\x07\\x63\\xaa\\x2e\\x2b\\x4b\\\r\n\\x23\\x19\\x6b\\x9e\\xa4\\x38\\xa8\\x21\\x95\\xa4\\x06\\xc9\\x17\\x6c\\x51\\xd6\\\r\n\\x2f\\xbb\\x1d\\xbb\\xf6\\xbe\\xbf\\x66\\xd1\\xd1\\xcf\\x3d\\x44\\xb7\\x13\\xaa\\\r\n\\xa1\\xb4\\x63\\xfd\\xe3\\x76\\x40\\x3d\\xc9\\xd1\\xa9\\xfb\\x4d\\xc6\\xa8\\xf8\\\r\n\\x74\\x71\\xf7\\x82\\x39\\x63\\x32\\xdb\\xf8\\xa4\\x72\\x11\\x7f\\x4c\\x8e\\xb2\\\r\n\\xe0\\xbc\\x39\\xb8\\xc4\\xc0\\xd8\\xd6\\x4d\\x8a\\x53\\x03\\xe9\\xfb\\xc5\\x4d\\\r\n\\x95\\xbf\\xfa\\x11\\xb6\\xa9\\x65\\xfd\\xa1\\x4f\\x1a\\x48\\xd7\\x92\\x9a\\x39\\\r\n\\x23\\x7e\\x61\\x31\\x3d\\xe0\\x5b\\xd9\\x97\\x17\\xc5\\xb6\\x55\\xbe\\x36\\xd5\\\r\n\\x45\\x7d\\x55\\x43\\x53\\x45\\xe2\\x64\\x9f\\x87\\xf3\\xe5\\x21\\x66\\x96\\x19\\\r\n\\x3a\\x23\\x8a\\x2b\\x96\\x64\\xc1\\x2d\\xb2\\x9e\\x9f\\xcf\\x54\\x7c\\x53\\x86\\\r\n\\xd2\\xc5\\xc4\\xf8\\x97\\x12\\xb5\\x55\\x00\\xac\\x8a\\x29\\x69\\xb8\\x5d\\x3f\\\r\n\\x96\\x56\\x8f\\x30\\x72\\xaf\\x67\\xc9\\x13\\x34\\x31\\x45\\xc8\\x27\\x67\\xbe\\\r\n\\xa4\\x7a\\xfa\\x4a\\xa3\\x24\\xb8\\xf3\\x24\\x7b\\xbe\\x4f\\x61\\x97\\x30\\x34\\\r\n\\xce\\x9d\\x0b\\xf0\\xef\\x6f\\xee\\xb0\\xc6\\xfa\\x8e\\xa1\\x29\\xc5\\x4c\\x2b\\\r\n\\x75\\xe5\\x55\\x89\\x65\\x11\\x23\\x74\\xbf\\x85\\x66\\x91\\x4a\\x1c\\x2d\\x6b\\\r\n\\x32\\x81\\x8a\\x61\\xcb\\x23\\x2d\\x1a\\xbe\\x19\\x53\\xce\\xa1\\x70\\x55\\xe0\\\r\n\\xa8\\x52\\x6a\\x69\\x99\\x90\\x87\\x59\\x91\\x99\\xf9\\x90\\xb6\\xc0\\x07\\x91\\\r\n\\xdc\\xdc\\x9c\\xcd\\x86\\x9e\\x8d\\xc2\\xa8\\xcb\\x9d\\x4f\\x21\\x0d\\x79\\x20\\\r\n\\x70\\x71\\xec\\x7b\\xdd\\x71\\x6e\\xf6\\x65\\x3a\\xbd\\x85\\xff\\x00\\xbb\\x7b\\\r\n\\xfe\\x9a\\xaa\\x8e\\x5a\\x6a\\x85\\xa5\\xa9\\x89\\x55\\xa4\\x68\\xd9\\x01\\x04\\\r\n\\xe1\\x92\\xe4\\x3a\\xb0\\xe6\\x07\\x07\\xb6\\x4a\\xbb\\xef\\xa6\\xe6\\x98\\x20\\\r\n\\x6c\\x89\\xe6\\x4b\\x53\\x48\\xa4\\xe2\\x70\\x77\\x92\\x9e\\x47\\x56\\xb5\\xed\\\r\n\\xcb\\x60\\xe7\\x66\\x07\\x13\\x7d\\x54\\xaa\\xbc\\xf2\\x8c\\xc3\\xa9\\x81\\x22\\\r\n\\xb6\\x59\\x7c\\x35\\x19\\xce\\x84\\x97\\x8f\\xee\\x88\\x02\\xee\\x54\\x7a\\x8b\\\r\n\\xd2\\xf1\\xb8\\xa9\\xf8\\x9d\\x1e\\x0d\\x24\\x73\\x35\\x4d\\x16\\x54\\xd5\\x2e\\\r\n\\x6f\\xe2\\x29\\xaa\\x63\\x76\\x58\\xde\\x9a\\xa2\\x06\\x68\\x9d\\x44\\x8e\\x92\\\r\n\\xa9\\xb8\\x2a\\x48\\x3a\\x5e\\x2b\\xc1\\xab\\x30\\xa1\\xae\\x32\\x4f\\x4d\\x4b\\\r\n\\x32\\x9b\\xd2\\x48\\x0a\\x78\\x8e\\x1c\\xd3\\xdc\\xa2\\xbd\\x2b\\x3f\\xc1\\x32\\\r\n\\xdb\\x9b\\x4c\\xf0\\x36\\x45\\xb9\\x84\\x45\\x27\\x14\\x8c\\xc6\\x7c\\x34\\x93\\\r\n\\x53\\x2d\\x4b\\xcf\\xc9\\x99\\xe3\\xb9\\x8c\\xfe\\xec\\x33\\x90\\x16\\x43\\xb2\\\r\n\\xb5\\xbe\\x63\\xd3\\xde\\x48\\x25\\x6a\\x0a\\xc9\\xe5\\xe6\\x24\\xb4\\xf1\\xd6\\\r\n\\xd4\\x56\\xc5\\x2c\\xef\\x69\\xe4\\x7e\\x4d\\x7d\\x38\\x4a\\x0a\\x28\\x11\\x31\\\r\n\\x63\\x0c\\x4f\\x33\\x3e\\x26\\xec\\x45\\xf5\\x45\\xc0\\xe2\\xa1\\xa7\\xa6\\x14\\\r\n\\x6a\\xd3\\x4d\\x3f\\x06\\x96\\x38\\xea\\x39\\x30\\x22\\xbe\\x02\\xa6\\x65\\x40\\\r\n\\xd2\\xd5\\x3e\\x28\\x39\\x8a\\x4a\\x2b\\xb4\\x87\\xa9\\x75\\xc4\\x5a\\x86\\x9e\\\r\n\\xa6\\x92\\x9c\\x4d\\x84\\x54\\xa2\\xba\\xae\\xad\\xe0\\x58\\xb1\\x85\\x39\\xb2\\\r\n\\x72\\x6a\\x73\\x92\\x59\\xb3\\x92\\x73\\xe2\\x0c\\x6c\\xc3\\x97\\x4e\\x31\\x02\\\r\n\\xed\\xc4\\x29\\x23\\x59\\x63\\x89\\x9e\\x28\\x89\\x07\\x9d\\xc8\\x2f\\x13\\xc8\\\r\n\\x43\\xae\\x32\\xc5\\xc8\\x99\\x39\\xb6\\x69\\x22\\x24\\x8b\\x03\\x8f\\x4b\\x33\\\r\n\\x54\\x3f\\x29\\x79\\x5b\\x34\\xf6\\x59\\x66\\xb8\\xb6\\x66\\x35\\x72\\x19\\x9f\\\r\n\\xef\\x24\\x94\\xfc\\x47\\x66\\x25\\x8f\\x63\\xa4\\x91\\x1c\\x10\\xad\\x6b\\x8e\\\r\n\\xfe\\x6d\\x64\\x0e\\x56\\x1e\\xff\\x00\\xf5\\xd3\\xc5\\xca\\xb3\\x0d\\x99\\x89\\\r\n\\xf5\\xff\\x00\\xbd\\xf4\\xa6\\x93\\x08\\x5c\\x9e\\xa9\\x9b\\xae\\x5b\\x7f\\x01\\\r\n\\x6e\\x94\\x23\\xd2\\xc0\\x6a\\x64\\xba\\xbc\\xbd\\x58\\x54\\xb7\\xdf\\x49\\x9a\\\r\n\\xf6\\x72\\xd9\\x5d\\x4b\\x74\\x93\\x1d\\xb6\\xd2\\x57\\x45\\x4c\\x05\\xc6\\x15\\\r\n\\xa9\\x1b\\x36\\x79\\xde\\xcc\\x24\\x47\\x26\\xcd\\xf3\\x21\\x4c\\x6f\\x6f\\x6d\\\r\n\\x24\\x8b\\xd4\\x3a\\x5f\\xbd\\xae\\x3d\\x2f\\xf9\\x6f\\x7f\\x5d\\xad\\xa6\\x7b\\\r\n\\x83\\xd2\\x37\\x07\\xcb\\xb7\\xd3\\xdb\\x4c\\x59\\x52\\x50\\x8f\\x75\\x42\\xa1\\\r\n\\x81\\x6b\\x92\\x0d\\xbf\\xc2\\xe3\\x5c\\x62\\x96\\x55\\x4c\\xb8\\x84\\x50\\xf3\\\r\n\\x6c\\xa2\\xcd\\x51\\x03\\xc5\\x24\\x32\\x3f\\x7b\\x95\\x54\\xb6\\x64\\x12\\x31\\\r\n\\x1e\\xda\\xab\\xe2\\x42\\xaa\\x99\\x38\\x76\\x33\\x66\\x24\\x90\\x89\\x99\\x7c\\\r\n\\x54\\xb2\\xc3\\x82\\x88\\xc2\\x66\\x52\\x63\\x12\\xae\\x40\\xe4\\x10\\x7b\\xd8\\\r\n\\xca\\xb1\\xd8\\xa3\\xca\\x24\\xc3\\x65\\x0a\\xd9\\xb4\\x0c\\x47\\xa7\\x39\\x37\\\r\n\\xf6\\x12\\x23\\xdb\\xb8\\xd5\\x0f\\x14\\x90\\xaf\\x84\\xe2\\xdc\\x37\\xa2\\x1c\\\r\n\\xc3\\x32\\xf2\\x63\\x8f\\xe2\\xcc\\xa7\\xa2\\x28\\xd5\\x64\\x76\\xea\\x36\\xfe\\\r\n\\xcf\\xce\\xe1\\x75\\x59\\x3f\\x12\\x8b\\x9e\\xb0\\xcf\\x24\\x30\\x4d\\x24\\xce\\\r\n\\x24\\x95\\xc2\\x21\\x92\\x45\\x80\\x03\\x1a\\x2b\\x67\\x96\\x77\\x66\\x3e\\x5c\\\r\n\\x7d\\x74\\x2b\\x69\\x68\\x71\\x91\\xe5\\x44\\x7c\\xde\\x49\\x80\\x1d\\xfa\\x52\\\r\n\\x47\\x2a\\xbe\\x72\\x0b\\x5b\\x21\\x60\\x36\\xde\\xf5\\xed\\x1b\\x73\\xa8\\x78\\\r\n\\x84\\x92\\x48\\x91\\xe6\\x79\\xd1\\x9c\\xe9\\x5c\\xc1\\xd3\\xd5\\xb0\\x12\\x46\\\r\n\\xac\\x97\\xf4\\x1e\\x73\\x62\\x90\\xa7\\x07\\xaf\\x96\\x88\\xd5\\xf2\\x1e\\xb6\\\r\n\\xa0\\x0a\\x31\\x14\\x92\\xc6\\xd3\\x2a\\x2c\\x26\\xcf\\x2a\\x2c\\x6a\\xed\\x9e\\\r\n\\xdd\\x18\\xab\\x5d\\x8d\\xd8\\x5a\\xe2\\xcf\\x9f\\xb1\\x00\\xec\\x4f\\xe4\\x77\\\r\n\\xbd\\xaf\\xeb\\xbe\\xa0\\x40\\xa2\\xa5\\x4c\\xc8\\x5a\\x11\\xd3\\x18\\x58\\xf2\\\r\n\\xc5\\x5c\\xde\\xe4\\x6c\\x0c\\x8b\\xde\\xce\\x07\\xae\\x88\\x2a\\xb3\\x24\\xec\\\r\n\\x05\\x57\\x4d\\x80\\x66\\xea\\xc9\\x7d\\x96\\x13\\xb2\\x62\\xb7\\xdf\\xb8\\xd5\\\r\n\\xc7\\x2e\\xc7\\x71\\x6b\\x5a\\xdf\\x4b\\xef\\x6f\\x6d\\x36\\x78\\xf7\\x2b\\x60\\\r\n\\xb6\\xb7\\xd7\\x5d\\x18\\xe5\\xe8\\xc4\\x5c\\xfe\\x9a\\xac\\xac\\xe2\\x34\\xb9\\\r\n\\x43\\xc2\\x78\\x47\\x10\\xe3\\x7c\\x8e\\xab\\xd6\\x78\\x08\\xb9\\x82\\x0e\\x5d\\\r\n\\xfa\\xa3\\x66\\x37\\x7f\\x75\\x04\\x69\\x97\\x88\\x56\\xcd\\x4a\\xa6\\x42\\x69\\\r\n\\x1a\\x90\\x98\\x63\\xa2\\xf4\\x48\\xc4\\x51\\xd9\\x79\\x21\\x7a\\x6d\\xdc\\x0d\\\r\n\\xf5\\x24\\x15\\x26\\x3a\\xba\\x4d\\xac\\xf3\\x31\\x6e\\x78\\x20\\x9b\\xc3\\x27\\\r\n\\x98\\x35\\x96\\xe1\\x94\\x82\\xac\\x6c\\x75\\x1f\\x1a\\xe0\\xea\\xcf\\x5d\\x46\\\r\n\\xe9\\x3b\\x2f\\x31\\xa3\\x7c\\xbd\\x51\\xaf\\x78\\xc9\\xd8\\xaf\\x50\\x40\\xfd\\\r\n\\xb2\\x07\\x7d\\x45\\x51\\x1c\\x32\\x2c\\x8e\\x5e\\x2a\\xe8\\x64\\x5b\\x08\\x25\\\r\n\\x88\\x75\\x47\\x22\\x12\\x4a\\xe6\\xbb\\x8e\\xe8\\xe3\\xe6\\xf4\\xd5\\x5d\\x42\\\r\n\\x47\\x8f\\x0f\\xa3\\x98\\xcd\\x04\\xae\\x01\\x87\\x99\\x20\\x0d\\x18\\x51\\xea\\\r\n\\x61\\x2f\\x92\\x8b\\x6d\\x8a\\x69\\xea\\xe9\\x65\\x91\\xe5\\x8f\\x94\\xb1\\x40\\\r\n\\xca\\x3e\\x29\\x91\\xc2\\xb3\\x2e\\xf7\\xbe\\xff\\x00\\x99\\xb6\\xaa\\xa8\\x26\\\r\n\\x40\\x92\\x56\\xa6\\x55\\x0e\\x76\\x6f\\x19\\x88\\x64\\xb6\\x56\\xc4\\x23\\x7e\\\r\n\\x57\\x66\\x63\\xeb\\xa9\\xe2\\x31\\xe0\\x80\\x88\\xda\\x49\\x76\\x44\\x7c\\xad\\\r\n\\xff\\x00\\x19\\xbf\\x94\\x2d\\xc9\\xbf\\xb6\\xa9\\xa2\\xb9\\x38\\x53\\xad\\xcf\\\r\n\\x60\\x4e\\x3b\\xd8\\x7a\\x0b\\xfa\\x77\\xd5\\x3d\\x1f\\xde\\x16\\x0e\\xec\\x01\\\r\n\\xd9\\x7e\\x51\\x98\\xfe\\x2f\\x41\\xed\\xaa\\xaa\\x34\\x31\\xf2\\xa9\\xdb\\xc7\\\r\n\\xc7\\x14\\x97\\xe7\\xf3\\x23\\x1d\\x49\\x11\\xfc\\xaf\\xa9\\xa9\\x69\\xab\\x5f\\\r\n\\x86\\xbc\\xc1\\x43\\x49\\x01\\xc6\\x47\\xc4\\x5b\\x19\\x5f\\xce\\xc8\\x7d\\xd4\\\r\n\\xe4\\xbf\\x96\\xa2\\x15\\xad\\x34\\x92\\x32\\x8e\\xb9\\x5d\\x9e\\xfb\\xf9\\x83\\\r\n\\x31\\x37\\x07\\xdf\\x49\\x16\\x65\\x61\\xa7\\x1c\\xb8\\xe1\\xbf\\x40\\x03\\xe6\\\r\n\\xb7\\x6c\\x8f\\xa9\\xd4\\x82\\x2a\\x24\\xe2\\x3c\\x42\\x72\\xae\\x93\\x48\\xaf\\\r\n\\xe1\\xe8\\x53\\xf8\\xcb\\x74\\xb4\\x83\\xb8\\x11\\x8e\\xfd\\xce\\xa9\\xd6\\xab\\\r\n\\x30\\xd0\\x15\\x10\\x04\\x36\\x8a\\x1b\\xad\\x98\\xe2\\x2d\\x9c\\x9f\\x56\\xf7\\\r\n\\xfc\\xef\\x17\\x0a\\x9d\\x4c\\x53\\xf0\\xd9\\x65\\x31\\xff\\x00\\xbc\\x82\\xa2\\\r\n\\x49\\x67\\x0a\\x17\\x13\\x7e\\x5c\\xb3\\x4c\\x0f\\xae\\x2f\\x10\\x5e\\xc7\\x4e\\\r\n\\xc8\\x50\\x66\\x7a\\x94\\xd8\\x8f\\xbb\\x04\\x1b\\x1b\\x3a\\xb6\\x36\\xfc\\xff\\\r\n\\x00\\x4d\\x3c\\xa0\\xf2\\xd1\\x76\\x29\\xb7\\xcd\\x88\\x5f\\xfd\\xbd\\x6f\\xa9\\\r\n\\x38\\x47\\x10\\x92\\x48\\xe8\\xf8\\x92\\xe3\\x1b\\x14\\xca\\x35\\x94\\x77\\xcf\\\r\n\\x31\\xf0\\x55\\xf6\\x01\\xc0\\xd9\\x8a\\xe5\\xb2\\xea\\x28\\x51\\xe2\\x8e\\xa9\\\r\n\\xaf\\x0c\\x33\\xc8\\x59\\x79\\x22\\x71\\x7a\\x7a\\x90\\xf8\\x8b\\xc1\\x9a\\x85\\\r\n\\x60\\xab\\x97\\x51\\xb2\\xee\\x35\\x4b\\x5b\\x55\\x56\\xbc\\x42\\x48\\xde\\x39\\\r\n\\xa9\\x51\\xa7\\x11\\xc3\\x3f\\xc4\\x03\\xa8\\xfc\\x69\\xa0\\x93\\x1c\\xde\\x36\\\r\n\\x4c\\x48\\x29\\xd4\\xc1\\x4b\\x5f\\x93\\x1d\\x24\\xf0\\xd5\\x90\\x66\\x35\\x56\\\r\n\\xe1\\xd2\\xb4\\x2e\\xc9\\x16\\x50\\xc3\\x21\\x59\\x1e\\x3a\\x78\\xd5\\x59\\x09\\\r\n\\x78\\x73\\x67\\x7e\\xa9\\xa3\\xf2\\x3a\\xf1\\x3a\\x8e\\x29\\x40\\x93\\xc9\\x8b\\\r\n\\x47\\x4f\\x24\\x71\\x3a\\x39\\x57\\xca\\x54\\x58\\x69\\xd2\\x49\\xaf\\x2f\\x30\\\r\n\\xc6\\x0f\\x2d\\x21\\xd9\\x2c\\x18\\x16\\x58\\x92\\xbd\\xf9\\x01\\x6e\\x82\\x9a\\\r\n\\x36\\xa5\\x5a\\x59\\xb1\\x53\\x24\\xbc\\xe5\\x69\\xca\\x0e\\x91\\x4f\\x12\\xfc\\\r\n\\x24\\xe5\\x97\\x96\\x15\\xd9\\x99\\xcc\\x31\\xd5\\xfc\\x6e\\x1a\\x6a\\x45\\xf0\\\r\n\\xb8\\xf0\\xad\\x1d\\x4d\\x2c\\x85\\x39\\x71\\x35\\xe0\\x94\\x64\\x41\\x71\\x3b\\\r\n\\x0e\\x61\\x7e\\x5c\\x32\\x49\\x23\\x5d\\xa4\\xe1\\xf5\\x70\\xb7\\x0f\\x5a\\xfd\\\r\n\\x9e\\xa6\\x9e\\x18\\xf9\\x1e\\x32\\x17\\xb7\\xed\\x08\\xe0\\x47\\x14\\xf1\\x25\\\r\n\\x11\\xce\\x19\\xd2\\x38\\xe2\\x79\\xa2\\x92\\xa3\\x9f\\x1e\\x0f\\x1b\\x80\\xad\\\r\n\\x59\\x47\\x52\\x69\\xe4\\x68\\xa4\\xa7\\x90\\x49\\x11\\x59\\x31\\x3b\\x88\\xe7\\\r\n\\x8c\\xd3\\x65\\x89\\x38\\x30\\xaa\\xdd\\x1c\\x32\\x31\\x07\\x4c\\xef\\x53\\x14\\\r\n\\x71\\xd1\\xca\\x39\\x34\\x52\\xf8\\xb0\\xec\\xae\\xc7\\x9e\\x3e\\x14\\x32\\x4a\\\r\n\\x8f\\x60\\xaf\\x83\\x77\\x59\\x41\\xce\\xc0\\x6a\\x9a\\xab\\x82\\xc1\\x1c\\x32\\\r\n\\x52\\x46\\xf1\\x57\\xd0\\x50\\xac\\x91\\xc8\\xe9\\x68\\xfe\\x2a\\x4e\\x6d\\x34\\\r\n\\x84\\x44\\x83\\x99\\xe2\\x25\\x72\\x5c\\x1c\\x00\\xb8\\x53\\x07\\xee\\xed\\x22\\\r\n\\x56\\xc4\\xb5\\x74\\xa6\\xe5\\x98\\x23\\x10\\x46\\x62\\x3b\\xbc\\x6c\\xb9\\x79\\\r\n\\x45\\x9c\\x1b\\xf5\\xe4\\x0d\\xa8\\xa4\\xe3\\x38\\xd2\\xd1\\x71\\x18\\x93\\xc0\\\r\n\\x45\\x71\\xfb\\xed\\x45\\x57\\xc6\\x0b\\x1c\\x37\\x3c\\x9e\\x48\\x8d\\x4c\\x8d\\\r\n\\x32\\xdc\\xab\\x44\\xb6\\xc9\\xc8\\xd5\\xe9\\x78\\x64\\xe2\\x92\\x08\\x91\\x3c\\\r\n\\x4c\\xc0\\xa4\\x14\\xd0\\x88\\xc0\\x8a\\x36\\x9e\\x5e\\x5d\\x3c\\x76\\x4c\\x6c\\\r\n\\xa0\\x82\\xfe\\x6e\\xb3\\x7d\\x0c\\xa6\\x0d\\x63\\x73\\x87\\x97\\xde\\xde\\x51\\\r\n\\x7b\\x7a\\xe8\\xab\\xfc\\xf6\\x22\\xc7\\xca\\x74\\xe4\\x14\\x1d\\xbf\\x3f\\xd6\\\r\n\\xde\\x9f\\x5d\\x59\\x8d\\xc5\\xf6\\xb5\\xbb\\xfb\\xff\\x00\\xdf\\xf3\\xd3\\x45\\\r\n\\x5f\\x1a\\x32\\x10\\xc1\\x1d\\x8e\\x26\\x3b\\xec\\x4a\\x3f\\xa3\\x1f\\xd7\\xea\\\r\n\\x35\\xe2\\xe9\\xe6\\xe6\\xd3\\x4b\\x88\\x94\\x11\\x63\\x6f\\x5c\\xd4\\x0b\\x0b\\\r\n\\xf7\\x0c\\x2f\\x63\\x7e\\xc0\\xe9\\x4a\\xfd\\xd9\\xff\\x00\\xed\\xf7\\x3f\\xfe\\\r\n\\xe1\\xff\\x00\\xae\\x8f\\xcc\\x4d\\xed\\x7e\\x9d\\xcf\\xa1\\xb1\\xdc\\x8f\\xd7\\\r\n\\xd0\\x0e\\xda\\xca\\xc7\\x06\\xef\\x8f\\xcb\\xf5\\xf7\\x27\\xeb\\xa9\\x1b\\xbf\\\r\n\\x31\\xec\\xb6\\xee\\xde\\x83\\x6f\\xaf\\xf3\\x3d\\x86\\xa9\\xb2\\x5c\\xa9\\x03\\\r\n\\x43\\x2b\\x20\\x90\\xc6\\x1d\\x1f\\x9c\\x0b\\x33\\x0f\\x2f\\x2f\\x10\\xc2\\xf7\\\r\n\\x17\\x6d\\xc1\\xd7\\x0f\\xe2\\x0b\\x4d\\x55\\x2d\\x3c\\x8b\\x14\\x75\\x4a\\xf0\\\r\n\\xb1\\x1c\\xc8\\x86\\x49\\x2a\\x74\\xfc\\x68\\x4c\\x9d\\x49\\x89\\xb8\\xdd\\x58\\\r\n\\x6e\\x35\\x43\\xc2\\x16\\x9d\\x69\\x78\\x6f\\x36\\x94\\x4f\\x22\\x47\\x84\\xfb\\\r\n\\x4e\\x92\\xe3\\x29\\x6f\\xbb\\x55\\x18\\x9c\\x15\\x45\\xdf\\xcd\\x7b\\x01\\xac\\\r\n\\xa2\\x25\\x8c\\x6d\\x2e\\xc6\\xc5\\xba\\xee\\xdf\\xf5\\xfd\\x2d\\x7d\\x1a\\xfa\\\r\n\\xb9\\x54\\x15\\x5c\\x56\\x30\\xeb\\xcd\\x9a\\x51\\xf7\\x46\\x21\\x71\\x71\\xd8\\\r\n\\x49\\xdf\\x6c\\xbd\\xb4\\xbc\\x66\\xa5\\x99\\x6b\\x38\\x9b\\x31\\x34\\xf2\\x7c\\\r\n\\x38\\xe9\\x69\\x62\\x76\\x10\\xc7\\x1a\\x5b\\xe7\\xbf\\x39\\xe5\\x73\\x94\\xa5\\\r\n\\xbf\\x08\\xd1\\x02\\xe0\\xfc\\xcb\\x90\\x28\\xdb\\xec\\x53\\x7d\\xb6\\xfc\\xf5\\\r\n\\xc8\\x81\\x54\\xb6\\x48\\x54\\x8e\\x9e\\x5a\\xd8\\x8f\\x98\\x81\\xde\\xc7\\xb9\\\r\n\\xb8\\xbe\\xda\\x5f\\xda\\x15\\xcb\\xcd\\xc4\\xf3\\x16\\x02\\xd2\\x60\\xec\\xd9\\\r\n\\x31\\x8e\\x49\\x39\\x71\\xc6\\x8d\\xbd\\xe3\\xe5\\x4b\\xdc\\x01\\x25\\x97\\x79\\\r\n\\x29\\xb8\\x1d\\x60\\xe8\\x89\\x63\\x92\\xc2\\x95\\x96\\x39\\x97\\x26\\x66\\x4e\\\r\n\\x83\\x2b\\x3b\\x11\\x12\\xc9\\x71\\x80\\x06\\x4c\\x46\\x58\\xd8\\xdb\\x8e\\xd5\\\r\n\\x01\\x7d\\x87\\xc4\\xdb\\xfe\\x54\\x0b\\xfc\\x80\\x1e\\xc0\\x69\\x8d\\xed\\x60\\\r\n\\x2f\\xf9\\xea\\x11\\x02\\x65\\x56\\x01\\x67\\x96\\x55\\xc8\\x06\\xf4\\x45\\x07\\\r\n\\x6e\\xde\\xba\\x87\\x8b\\x4a\\x3c\\x44\\x7c\\xb9\\x69\\x6a\\xe1\\x60\\x2d\\x2d\\\r\n\\x24\\xea\\x63\\x9a\\x2c\\x0d\\x94\\x8b\\x7c\\x87\\x66\\xf2\\xfa\\xe9\\x24\\xe0\\\r\n\\x7c\\x7a\\xa7\\x87\\x35\\x54\\xa0\\x8e\\x17\\x55\\x41\\x35\\x52\\xc4\\x5c\\xfd\\\r\n\\xdc\\x35\\x08\\xd1\\xc9\\x82\\xfc\\xa2\\x44\\x72\\x07\\x79\\x0d\\xb2\\x30\\x52\\\r\n\\xf0\\xe9\\xa4\\xa8\\x86\\x91\\x15\\x0c\\xb2\\xc3\\xc8\\xb9\\xb7\\x5b\\x04\\x67\\\r\n\\x73\\x62\\x7d\\x4d\\xbe\\x82\\xc2\\xe6\\xa2\\x2a\\x49\\xdd\\x29\\xde\\x79\\x5f\\\r\n\\x04\\x0b\\x25\\x34\\xfd\\x44\\x59\\x94\\x8b\\x64\\xbe\\x53\\xf3\\x2f\\xa7\\xbe\\\r\n\\xb0\\x9b\\x86\\x34\\x35\\xb3\\x91\\x06\\x74\\x68\\x42\\xcf\\xdc\\xdd\\xe3\\xdf\\\r\n\\xca\\x01\\x25\\xb7\\x51\\xbe\\x44\\x0d\\x46\\xd2\\x33\\x11\\x99\\x29\\x04\\x38\\\r\n\\xe5\\x55\\x26\\x16\\xbc\\xb7\\xec\\xa3\\x6b\\x9b\\xfc\\xab\\xdf\\xb6\\xa4\\x5a\\\r\n\\x8a\\xa3\\x1c\\x54\\x8b\\xcc\\x82\\x8e\\x2f\\x26\\x31\\x3a\\xac\\xac\\x32\\xb6\\\r\n\\x6f\\x76\\xc7\\x23\\xbe\\xcc\\x56\\xc3\\x6d\\x26\\x37\\xbe\\x41\\x72\\x66\\x2c\\\r\n\\x6d\\xed\\x73\\x7b\\x9f\\x5b\\xf7\\xb6\\xa2\\x4c\\x4c\\xc9\\x4f\\x56\\x99\\x1e\\\r\n\\xd4\\xe9\\x11\\x71\\xd4\\x0e\\xc3\\x64\\x60\\x45\\x81\\x6d\\xb6\\x03\\x4b\\xd5\\\r\n\\xb0\\x84\\x13\\xfa\\x2e\\xab\\x9a\\x9f\\x9f\\x68\\x1f\\x91\\x27\\x3b\\x1c\\x33\\\r\n\\x5b\\x6f\\x10\\x1d\\x5d\\xcf\\xa9\\xf4\\xd8\\x7a\\xe9\\x61\\x0d\\x8a\\xc8\\x45\\\r\n\\xdb\\xd8\\x49\\xda\\xff\\x00\\x4b\\xf7\\xd4\\xa2\\x29\\xb9\\x55\\x10\\xc8\\x43\\\r\n\\x25\\xfa\\x2e\\x3b\\x63\\xea\\x32\\xee\\x3d\\x37\\xd0\\xa6\\xe2\\xb1\\xec\\x8c\\\r\n\\x7c\\x3d\\x54\\x64\\x16\\x88\\xfb\\xfd\\x50\\xfc\\xc8\\x6d\\xf4\\xdf\\x4c\\x48\\\r\n\\x32\\x42\\x0e\\x57\\x8b\\x7b\\xfe\\xbf\\x5f\\xae\\xa6\\xa1\\xe2\\x2a\\x29\\x22\\\r\n\\xb2\\x72\\xa4\\x8f\\x63\\xd2\\x45\\xd4\\xb2\\xee\\x1d\\x87\\xa9\\xb8\\xfc\\xb5\\\r\n\\x14\\xd4\\x95\\x7d\\x51\\x18\\x92\\x28\\xf1\\x39\\xb7\\x66\\x2f\\x23\\x7a\\x96\\\r\n\\x5d\\xef\\xb0\\xed\\xbe\\xa4\\xe2\\x14\\xa1\\x9f\\xf7\\x94\\xc6\\x0c\\xcf\\xc4\\\r\n\\x45\\x88\\x73\\x86\\x5e\\x9d\\x19\\x7e\\xba\\x8a\\x09\\xd0\\xe3\\x51\\x1a\\xd4\\\r\n\\xab\\x2a\\xb3\\x2c\\x94\\xcd\\x63\\x9a\\xb2\\x17\\x75\\xe5\\xe4\\x2e\\x6c\\x46\\\r\n\\x59\\x87\\x00\\xe8\\xab\\x44\\x59\\x39\\x6d\\xdd\\x7b\\x25\\xac\\x03\\x8f\\x43\\\r\n\\xfa\\x5b\\xeb\\xbd\\xb4\\x24\\xa7\\x36\\xe5\\xbd\\xc3\\x58\\x2e\\x20\\x12\\x40\\\r\n\\x1f\\x2d\\xaf\\x61\\x6d\\xf2\\xb0\\xbe\\xb9\\x15\\x92\\xd3\\xc7\\xc5\\x38\\x55\\\r\n\\xe3\\x65\\x78\\x39\\x0e\\xd0\\xb4\\x44\\x0c\\x99\\x1d\\x46\\x45\\x01\\xb3\\x74\\\r\n\\x95\\x60\\xa5\\x19\\x7e\\x5c\\x29\\xe3\\x86\\x56\\x94\\x24\\x86\\x92\\xba\\x35\\\r\n\\x95\\xea\\xd2\\xc1\\x3e\\x0d\\x48\\x1e\\x28\\x56\\xc6\\xf6\\x7e\\x77\\x33\\x15\\\r\n\\x31\\x63\\x24\\x78\\xb8\\xb5\\x4b\\xd2\\x24\\x50\\xcf\\x4f\\x34\\xcf\\xba\\x99\\\r\n\\x52\\x4e\\x7a\\xab\\x60\\xa6\\x3e\\x5e\\xe4\\x18\\x89\\xc5\\x08\\xcf\\x16\\x1e\\\r\n\\x67\\x8f\\x51\\x71\\x9e\\x2b\\x15\\x3c\\xdc\\x1a\\x8b\\x86\\xb5\\x4d\\x45\\x50\\\r\n\\x93\\x99\\x4c\\xf5\\x10\\xb8\\x91\\xe0\\xe5\\xd3\\xc3\\x0d\\x31\\x11\\xcb\\x2a\\\r\n\\x34\\xd9\\x2a\\xa9\\xb6\\xf4\\x6a\\x43\\x24\\x75\\xd5\\x95\\x55\\x29\\xc2\\xf8\\\r\n\\x2f\\x0e\\x49\\xe2\\xe1\\x54\\x50\\x71\\x0a\\x7e\\x1f\\x55\\x15\\xdf\\x97\\x0d\\\r\n\\x51\\xa6\\x68\\x6b\\x65\\xe6\\xb4\\x51\\xb5\\x44\\xab\\x2c\\x31\\xc4\\x91\\x15\\\r\n\\x8a\\x39\\x91\\x16\\xf2\\x4f\\xc2\\xf8\\x84\\x32\\xd5\\x71\\x1a\\x09\\xb0\\xa6\\\r\n\\xa9\\xa6\\x8b\\xa6\\xa2\\x14\\x31\\xd2\\xc5\\x33\\xc3\\x4f\\xcd\\x8a\\x29\\x29\\\r\n\\xd9\\xe1\\xe6\\x49\\x0a\\xe2\\x14\\x47\\x33\\x0c\\x79\\x8c\\x21\\x69\\x33\\x8e\\\r\n\\xa3\\xc5\\x31\\xc5\\x48\\xf8\\xe4\\x61\\x46\\xf0\\x57\\x78\\x69\\xca\\xc5\\x1e\\\r\n\\x38\\x25\\x3b\\x19\\x67\\x92\\x36\\x96\\x5f\\x83\\x4c\\xd4\\xe6\\x69\\x1e\\x98\\\r\n\\xf1\\x15\\xfd\\xa1\\xc3\\xa4\\xa7\\xa2\\xac\\x9a\\x12\\x8e\\x26\\xa7\\xdc\\x53\\\r\n\\x49\\x2e\\x3c\\x92\\xce\\x6d\\x2f\\x0d\\x69\\xa2\\x3f\\x25\\x2b\\xaf\\x2b\\x9c\\\r\n\\x46\\xa9\\x5e\\xa7\\x34\\xaa\\x86\\x1f\\x8d\\x24\\x2a\\x3f\\x79\\x8c\\x37\\xc2\\\r\n\\x45\\x31\\x96\\xe6\\x3d\\x3b\\x19\\x97\\x27\\x74\\xc5\\x5a\\x18\\x87\\x4a\\x0c\\\r\n\\x61\\xa9\\xe1\\xf3\\x0f\\xd9\\x92\\xbc\\x8d\\x5a\\x85\\xd5\\x66\\x86\\xd9\\x48\\\r\n\\x9e\\x26\\x37\\x7c\\x9e\\x41\\x2b\\x47\\x1c\\x33\\x28\\xe5\\x24\\x61\\x72\\x2b\\\r\n\\x89\\xd5\\x6f\\x1b\\xaf\\x8e\\x39\\x52\\x38\\xd5\\xa9\\x72\\x99\\x53\\x36\\xe6\\\r\n\\x1c\\x63\\x78\\x91\\x56\\x66\\x8f\\x13\\xcf\\x62\\x84\\x29\\xb8\\x59\\x03\\x84\\\r\n\\xc4\\x99\\x64\\x6a\\x5a\\xb9\\xe9\\x29\\x09\\x8e\\x0a\\xa8\\xe3\\x9e\\x15\\xb2\\\r\n\\x8c\\x23\\x48\\x64\\x5b\\x77\\x54\\x2c\\x90\\xb5\\xd9\\x84\\x7b\\xa8\\x89\\xaf\\\r\n\\x4e\\x2a\\x27\\x12\\x45\\xc9\\xca\\x0a\\x48\\xe3\\x8e\\x1a\\x7a\\x79\\x5c\\x16\\\r\n\\xf8\\x70\\x53\\x0e\\x44\\x5d\\x2e\\xa9\\x62\\x04\\x9d\\x01\\x88\\x19\\xeb\\xd5\\\r\n\\x43\\x5c\\xdf\\x7b\\x5f\\xff\\x00\\x7d\\x08\\x5a\\x52\\xbc\\xcb\\x8c\\xee\\x71\\\r\n\\x56\\xf4\\xbf\\xd0\\x9d\\x8f\\xfe\\x9a\\x5b\\x4a\\xd1\\x87\\xce\\x9a\\x49\\x11\\\r\n\\xac\\xcb\\x89\\xbc\\x52\\x8b\\x7a\\xad\\xd4\\x10\\x41\\x04\\x21\\x16\\x20\\xeb\\\r\n\\xc3\\xf1\\x42\\xb3\\xd8\\xe2\\xb2\\x81\\x80\\x6b\\x7a\\xab\\x58\\x0e\\xd6\\xda\\\r\n\\xd6\\xb5\\xac\\x74\\x3a\\xed\\xee\\xaf\\xff\\x00\\x65\\x7f\\x5d\\x10\\xf6\\x20\\\r\n\\xed\\xff\\x00\\x7e\\x9a\\x59\\xfa\\x1b\\x87\\x54\\x59\\x27\\xca\\x40\\xbc\\x89\\\r\n\\x09\\x0a\\xb2\\x75\\xd9\\x71\\x37\\xb3\\x0c\\xae\\xc3\\xb5\\xd8\\x01\\xa1\\x13\\\r\n\\xb8\\xb6\\xed\\x01\\xee\\x24\\x4b\\x0e\\x95\\x23\\xcc\\xc9\\xde\\xc2\\xf9\\x27\\\r\n\\x5f\\x6c\\xac\\xc4\\xca\\x10\\x76\\xee\\x2d\\xda\\xe6\\xeb\\xdf\\x65\\xb9\\xdb\\\r\n\\xdb\\x5c\\x35\\xd7\\x2f\\x0c\\xb5\\x14\\xec\\xc7\\x60\\xc5\\x19\\xf1\\x2c\\xcb\\\r\n\\xe8\\xa3\\xcc\\x56\\xf7\\x22\\xfe\\xba\\x97\\x87\\x53\\x4e\\x94\\xcf\\x24\\xb3\\\r\n\\x53\\xac\\xae\\xf8\\x46\\xa8\\x95\\x7c\\xf0\\x0b\\x1d\\x80\\x30\\x6c\\x03\\x32\\\r\n\\x83\\x7d\\xc8\\x06\\xfa\\x85\\xa8\\x5e\\xb6\\xa6\\x9f\\x86\\x78\\x78\\x2a\\x26\\\r\n\\xaa\\x36\\x51\\xc4\\x91\\x5e\\x23\\x24\\x11\\x87\\x71\\x14\\x6f\\x8b\\x91\\xd4\\\r\n\\xc2\\xcc\\x2d\\x6e\\x9c\\x96\\x59\\x1a\\x46\\x75\\x77\\x55\\x6b\\xed\\x96\\x39\\\r\n\\x2f\\x53\\x76\\xee\\xb9\\x31\\xb9\\xb0\\xf7\\xb6\\x8d\\x7d\\x54\\x88\\xce\\x87\\\r\n\\x06\\x89\\x09\\x06\\xa2\\xa1\\x7b\\x42\\x8b\\xdf\\x19\\x08\\xb9\\x36\\x5b\\x25\\\r\n\\xfd\\x37\\x23\\x8f\\xf1\\xfe\\x88\\x49\\x67\\xe1\\xfc\\x34\\x8e\\x86\\x08\\x58\\\r\n\\x0e\\x64\\x6d\\xba\\xc6\\x1b\\xee\\x94\\xf5\\x4a\\x46\\x6d\\xd1\\xb3\\x43\\x3a\\\r\n\\x91\\x15\\x1a\\x47\\x1b\\x4a\\xf2\\x36\\x1c\\xec\\x94\\x01\\x1a\\xd8\\xdd\\x02\\\r\n\\x92\\x2e\\xd6\\x53\\x96\\xcb\\xea\\x75\\xfb\\x44\\x4a\\x91\\x53\\xaa\\xe4\\xf2\\\r\n\\xb5\\xb1\\x50\\x96\\x32\\x87\\x77\\xfd\\x0d\\xf6\\x3d\\xac\\x77\\xd7\\x1c\\x8f\\\r\n\\x85\\x67\\x0c\\x7c\\x1e\\x2a\\x59\\xa7\\xaf\\x95\\x16\\x4c\\x85\\x53\\x4c\\x8b\\\r\n\\x24\\x69\\xbd\\xe1\\x8f\\x00\\xdd\\xf7\\x56\\xdb\\xb1\\xd7\\x8c\\x15\\xd2\\xc8\\\r\n\\xa9\\x3b\\x49\\xca\\x8e\\xc8\\x95\\x31\\x2a\\x33\\xf2\\x4d\\x88\\xd8\\x83\\xb9\\\r\n\\xbf\\xcb\\x96\\xfa\\x87\\x8a\\xd0\\x4b\\x20\\xaf\\x89\\x44\\xd3\\x47\\x0e\\x61\\\r\n\\xeb\\x68\\x81\\x05\\x2a\\x15\\x07\\xde\\xcd\\x0a\\xb2\\xc7\\x57\\x1d\\x8b\\xf7\\\r\n\\x6b\\x1f\\x44\\x28\\x90\\x48\\x85\\x57\\x17\\x32\\x42\\x0b\\xad\\xb6\\x62\\x0a\\\r\n\\xdc\\x64\\x37\\xb1\\xdc\\x69\\xb1\\x8e\\xfe\\xa6\\xfb\\x0f\\xeb\\xa6\\x65\\x81\\\r\n\\x99\\xbe\\x83\\x41\\xe6\\x68\\xa9\\xc9\\xf3\\x02\\xc0\\xb7\\xe7\\x61\\xaf\\xda\\\r\n\\x59\\x19\\xa4\\x6c\\xa0\\xa5\\xc9\\x31\\x4b\\xf6\\x9a\\x61\\x7d\\xc8\\x40\\x71\\\r\n\\x07\\xdc\\x9f\\x6d\\x16\\x9e\\xc5\\x91\\x8a\\xad\\xba\\x46\\x0b\\xf8\\x8f\\xb8\\\r\n\\x1f\\x9e\\xb8\\x85\\x34\\xb1\\x99\\xe8\\xa7\\xab\\xaa\\x20\\x27\\x9e\\x15\\xe7\\\r\n\\xbe\\x33\\x44\\x7d\\xd4\\x58\\xff\\x00\\x10\\xef\\xa4\\xad\\xe6\\x15\\xbc\\x5c\\\r\n\\x98\\xea\\x01\\xc4\\x98\\x64\\xe9\\x91\\xd8\\x5b\\xa7\\xa2\\xe9\\xdf\\x7b\\xb7\\\r\n\\xa5\\xb5\\x1b\\x44\\xeb\\x2c\\x6d\\x30\\x8a\\x1b\\x3a\\x94\\x3b\\x99\\x5c\\x8d\\\r\n\\xc8\\x3d\\x37\\x63\\xde\\xc0\\x6e\\x35\\x4c\\x69\\xf9\\x74\\xd2\\x1a\\x78\\x92\\\r\n\\xaa\\xa5\\xd7\\xab\\xe2\\x8b\\xbc\\x02\\x2b\\xac\\x77\\xf2\\x90\\x7b\\xee\\x3a\\\r\n\\x87\\x62\\xbe\\x16\\x7a\\x6e\\x5e\\x41\\xb3\\x2f\\x66\\x5b\\x5e\\xf7\\x42\\x32\\\r\n\\xfa\\xd8\\x5e\\xf7\\xb6\\xa4\\x7a\\x43\\xe2\\x2a\\x95\\x97\\xe3\\x94\\xba\\x0b\\\r\n\\xb5\\x98\\xa0\\x3e\\xaa\\x3d\\x7d\\xc6\\x99\\x2a\\x24\\xce\\x6e\\x41\\x6f\\x88\\\r\n\\xff\\x00\\xc3\\xeb\\xfa\\xfa\\x76\\x1a\\xe2\\xb5\\x30\\x46\\x65\\x4f\\x1a\\xef\\\r\n\\x90\\x8c\\x15\\xf3\\x79\\x41\\x03\\xa8\\x06\\xdb\\xbf\\x6d\\x41\\x35\\x4d\\x2b\\\r\n\\xc5\\x70\\x1d\\x66\\x80\\xee\\x6f\\xbe\\x25\\x1e\\xfd\\x88\\xf4\\x3a\\x5e\\x25\\\r\n\\x4b\\x52\\x91\\xf3\\x69\\xa3\\xb2\\xd4\\x5e\\x1c\\xe5\\x8e\\xd1\\xb5\\xdf\\xa9\\\r\n\\x01\\x36\\xec\\x48\\xd7\\x32\\x31\\xf3\\x60\\xeb\\xb3\\xc2\\xed\\xeb\\x8b\\x5c\\\r\n\\xad\\xff\\x00\\x5d\\xf4\\x61\\x72\\x61\\x72\\x14\\xf4\\xfd\\xd9\\x3e\\xd6\\xfa\\\r\n\\x1d\\x72\\xc3\\xab\\x66\\xd6\\xef\\xea\\xc7\\x53\\xa3\\x46\\xe1\\xa8\\xc7\\xc5\\\r\n\\x27\\xd3\\x1d\\xb1\\x3f\\xcb\\x49\\x15\\x24\\xd9\\xce\\x39\\x93\\x09\\xba\\x95\\\r\n\\xa3\\x93\\x15\\x02\\x33\\xf8\\xa3\\xca\\xe7\\x7f\\x7d\\x4f\\x5a\\xb1\\x9c\\x7e\\\r\n\\xca\\xf1\\x28\\xe8\\x6b\\xd6\\x12\\x44\\xe7\\x83\\xd7\\x63\\x11\\xab\\x82\\xd6\\\r\n\\x39\\xd2\\x56\\xe6\\xd8\\xf6\\x68\\x9d\\x95\\xb6\\x6d\\x41\\x51\\x4f\\x57\\x4f\\\r\n\\xc4\\x29\\x4e\\xd9\\xc8\\xd8\\xc8\\x97\\xea\\x64\\xa8\\x75\\x2f\\x34\\x6f\\x81\\\r\n\\x1f\\x09\\xe2\\x4c\\x9b\\xa4\\x06\\x00\\xbe\\x92\\x97\\x8b\\x51\\x24\\x54\\x95\\\r\n\\x87\\xa6\\xb6\\x9f\\xe1\\xf8\\x5a\\xc2\\xd8\\x89\\x79\\x98\\x0e\\xa6\\x05\\x23\\\r\n\\x92\\xc3\\x94\\xfd\\x2d\\x26\\xf8\\x30\\x5e\\x23\\x4d\\xcc\\xae\\xe0\\xf5\\x63\\\r\n\\x95\\x56\\x54\\x0e\\x64\\x77\\x25\\xc4\\xc4\\x11\\xca\\x90\\x2e\\xfb\\x81\\xde\\\r\n\\xc0\\x8f\\x9b\\x52\\xc2\\x1e\\x4a\\x59\\xa0\\x5c\\xe9\\xea\\x96\\x49\\x03\\x72\\\r\n\\x4c\\xb1\\xbc\\x6e\\xe1\\x5a\\x2c\\xd5\\xce\\x44\\xa8\\x00\\xe0\\xef\\xfa\\x21\\\r\n\\xa8\\x0b\\x21\\xe5\\xd3\\xd3\\xd4\\xef\\x4a\\xcf\\x2a\\xc6\\x9e\\x62\\xd2\\xe7\\\r\n\\x8c\\xd1\\x55\\x18\\x55\\x54\\xe3\\x11\\x12\\x1a\\x73\\x83\\xb3\\x32\\x57\\x70\\\r\n\\x1a\\x3e\\x53\\xd4\\xf1\\x8a\\x59\\xe9\\xe4\\xe2\\x00\\xcb\\x4f\\x4f\\x49\\x0c\\\r\n\\x91\\xb4\\x32\\x73\\x21\\x6b\\x18\\xe7\\x92\\xf1\\xca\\x15\\x23\\x48\\x1e\\x3d\\\r\n\\xd3\\x14\\x8c\\x03\\xfb\\x47\\xf6\\x3d\\x4c\\x66\\xa2\\x0a\\x78\\xeb\\x5a\\x28\\\r\n\\xa5\\x96\\x8c\\xcf\\x47\\x4e\\x94\\xbe\\x36\\x0a\\xa8\\x22\\x9a\\x1e\\x4d\\x54\\\r\n\\x50\\x24\\x93\\x47\\x26\\x0f\\x15\\x41\\x97\\xce\\xac\\x18\\x55\\x41\\x14\\x70\\\r\n\\x95\\x25\\x7c\\x40\\x9e\\x3f\\x10\\x71\\x12\\x5e\\x79\\x11\\x79\\x8a\\x33\\xb1\\\r\n\\x0d\\x89\\xce\\x02\\x69\\x01\\x97\\x2f\\x89\\x0c\\x26\\x57\\x80\\xd3\\xcd\\x14\\\r\n\\x93\\x24\\x91\\xab\\x4a\\x67\\x95\\xa4\\x92\\x26\\x3e\\x21\\xf7\\x0b\\x93\\xf2\\\r\n\\x65\\x24\\x16\\x89\\x98\\x5a\\xdd\\x64\\x0e\\x22\\xae\\xd3\\xc9\\x47\\x5f\\x55\\\r\n\\x55\\x1b\\x4b\\x2b\\x2f\\x32\\xa5\\x0c\\xcd\\x4e\\x8a\\x25\\x52\\x24\\x47\\xb2\\\r\n\\x73\\xa9\\xfe\\x56\\x96\\x14\\x37\\x13\\x1e\\xa3\\x3d\\x77\\x35\\xa9\\x60\\x94\\\r\n\\x99\\xa2\\x9c\\x41\\x50\\xf2\\xb9\\x8a\\xa3\\x94\\x91\\xe4\\x1d\\x93\\x3b\\x61\\\r\n\\x1b\\xe1\\x7e\\xa7\\x62\\x77\\xb0\\xa5\\x86\\x7e\\x1b\\x41\\xc3\\x57\\x8a\\x4d\\\r\n\\x22\\x85\\xa6\\xab\\x85\\xea\\x6a\\x65\\x8e\\x36\\x96\\x28\\xe7\\x0b\\x4d\\x39\\\r\n\\xb3\\x5b\\x18\\xe3\\xa6\\x98\\xa0\\x66\\xb1\\xc5\\xef\\x64\\xa4\\x9a\\x84\\x7d\\\r\n\\xdb\\xc5\\x2c\\x71\\x4f\\x2f\\x2e\\xd8\\xdd\\x92\\x45\\x9a\\x05\\x25\\x86\\xcc\\\r\n\\xc4\\xad\\xfd\\xb5\\x15\\x47\\x0c\\x85\\x93\\x87\\xd6\\xc1\\x85\\x93\\xad\\x50\\\r\n\\x87\\xb1\\xb9\\x55\\x0a\\x99\\xdf\\x6d\\xaf\\x6d\\xbb\\xea\\x3a\\xa7\\x70\\xd8\\\r\n\\x10\\x58\\xc9\\x91\\x70\\x6d\\xb2\\xa0\\xb8\\x51\\xe9\\xbe\\x37\\xb0\\xef\\xa2\\\r\n\\xea\\x2e\\xdc\\xab\\xaf\\xe1\\xf7\\xfa\\x0e\\xfa\\xe6\\xca\\x57\\x2c\\x7b\\x7b\\\r\n\\x7f\\x3d\\x4c\\xa1\\xff\\x00\\x7b\\x82\\x44\\x64\\x0c\\x40\\xcd\\x45\\xc2\\xd9\\\r\n\\xbf\\xb9\\x9a\\xc8\\x3e\\x53\\xcb\\x6f\\x98\\xea\\x93\\x85\\xbc\\xb0\\x4d\\x3d\\\r\n\\x34\\xec\\xeb\\x26\\x23\\x25\\x89\\x85\\xb9\\x79\\xc7\\x93\\x39\\xed\\xbb\\x8f\\\r\n\\x2a\\x20\\x1f\\x4e\\x84\\x9e\\x64\\x1f\\x86\\x29\\xdb\\x11\\xf9\\xf2\\xce\\xda\\\r\n\\xe9\\x86\\x74\\x7f\\x4e\\x62\\x32\\x8f\\xd7\\x20\\x2d\\xa3\\x15\\x74\\x74\\xcf\\\r\n\\x14\\x80\\xa3\\xac\\xb5\\x34\\xcb\\x75\\x6f\\x42\\x8d\\x28\\xb8\\x3e\\xfe\\x83\\\r\n\\x7d\\x3f\\x08\\x7e\\x25\\x43\\x7c\\x99\\xa9\\x1a\\x59\\xe5\\x32\\xc2\\x97\\xc9\\\r\n\\x23\\x8f\\xc3\\x41\\x57\\x7e\\x55\\x8e\\x24\\xb2\\x90\\x9b\\x6f\\xe9\\x02\\x8a\\\r\n\\xc8\\x38\\x9b\\xa4\\x73\\xd3\\xc9\\x4d\\x09\\xad\\xd8\\x94\\x46\\xe6\\xbf\\x8f\\\r\n\\xa5\\xa4\\x8e\\x4b\\xc7\\x14\\x89\\x8c\\x4d\\x95\\xc9\\x20\\x1b\\xef\\x4c\\x8b\\\r\n\\x5d\\x5d\\x47\\x2b\\x25\\x20\\xb4\\x9c\\x31\\xc2\\x86\\x8a\\x5e\\x63\\x2f\\x36\\\r\n\\x3a\\x99\\x00\\x59\\x17\\x21\\x91\\x50\\xa1\\x72\\x37\\xf4\\xd3\\xd6\\xd6\\x32\\\r\n\\xc1\\x41\\x53\\x2c\\x51\\x0a\\xc9\\x5d\\x63\\x84\\xcf\\xc8\\x48\\xd9\\x22\\x32\\\r\n\\xe1\\xcf\\x2e\\x16\\x43\\x78\\xf2\\x53\\x66\\xeb\\xb0\\xbe\\xb8\\x87\\xd9\\xf8\\\r\n\\xb8\\x0c\\x9c\\x58\\x49\\x53\\x3a\\x35\\x58\\xa7\\x67\\xf8\\x46\\x76\\x68\\x66\\\r\n\\x8d\\xe1\\x2e\\xd1\\x59\\x5b\\x34\\x17\\xdf\\x21\\x7e\\x92\\xb6\\x5a\\xaa\\xaa\\\r\n\\x99\\x23\\x8c\\xd4\\x3a\\xcd\\x78\\xb1\\x96\\x28\\xd2\\xd0\\xa4\\x4a\\x6d\\xd9\\\r\n\\x51\\x59\\x81\\x3b\\x3b\\x63\\x1b\\x29\\x21\\xc6\\x92\\x7a\\xda\\x93\\x07\\x06\\\r\n\\xa4\\x99\\x79\\x7e\\x31\\x48\\x35\\x45\\x9c\\x79\\xd5\\x7a\\x07\\x35\\xec\\x67\\\r\n\\x62\\xea\\xa7\\x21\\x12\\x91\\x71\\x66\\xe4\\x88\\xb9\\x0c\\xd7\\x5e\\x46\\x0b\\\r\n\\x6f\\x9b\\xca\\x0e\\x41\\x41\\x62\\x45\\xbb\\xfb\\x0d\\xf5\\x14\\x12\\xcf\\x0c\\\r\n\\x69\\x8f\\xc4\\x85\\x18\\x19\\x26\\x60\\xe4\\x0c\\x9a\\xfb\\x25\\xac\\xc5\\x47\\\r\n\\x7b\\xdb\\xb7\\x4e\\xb9\\x32\\x4c\\x86\\x99\\x2a\\x99\\xd6\\x9f\\x66\\x12\\xcf\\\r\n\\x24\\x44\\xa2\\x62\\x00\\xe6\\x1b\\xa1\\x36\\xdc\\x26\\xe7\\x6b\\x5c\\x7d\\xaf\\\r\n\\xa9\\x59\\x1b\\xc5\\xf1\\x2a\\x49\\x29\\xb9\\x2f\\x11\\x8e\\x15\\x4a\\x69\\x89\\\r\n\\x8e\\x58\\x4a\\xe6\\xf2\\xc4\\xad\\x31\\x8c\\xb0\\x05\\xba\\x19\\x42\\x17\\x46\\\r\n\\xd5\\x14\\x31\\xcd\\x1d\\x6f\\x86\\x5e\\x5d\\x4c\\xb4\\xd7\\x2b\\x8a\\x46\\x61\\\r\n\\x67\\xb3\\x59\\xee\\x88\\xc8\\x24\\xce\\xcc\\x2d\\x72\\x35\\x57\\xc2\\x95\\xb9\\\r\n\\x75\\xf4\\x12\\x9a\\xde\\x1a\\xee\\xbb\\x60\\xd7\\xce\\x3d\\xfe\\xf2\\x02\\x09\\\r\n\\x0e\\x07\\x9a\\x36\\x95\\x6e\\x32\\xd7\\xef\\x34\\x13\\x47\\x51\\xfd\\xba\\x0a\\\r\n\\x01\\x20\\x49\\xbf\\xb5\\x41\\x27\\xf6\\x81\\x5e\\xe0\\x3f\\xcd\\xdf\\xd7\\x43\\\r\n\\x89\\xd0\\x70\\xce\\x17\\x4f\\x4b\\x4f\\x4d\\xca\\x91\\x29\\xa7\\xa2\\x41\\x00\\\r\n\\x87\\x26\\x01\\xe3\\x5e\\x5e\\x4c\\x14\\xda\\xec\\xf2\\x4e\\xf6\\xb1\\x44\\xb0\\\r\n\\x52\\x4e\\x58\\xaf\\xb2\\xf4\\xff\\x00\\x41\\xa8\\xa9\\x96\\xe0\\x31\\xca\\x49\\\r\n\\x4f\\x96\\x38\\x87\\x9d\\xd8\\xfd\\x07\\xf3\\x36\\x1a\\x58\\xa3\\xbc\\x11\\xd2\\\r\n\\xc5\\xe1\\xe9\\xf1\\x53\\xd8\\x0b\\x97\\xfc\\x37\\xbf\\x51\\x3f\\x31\\x66\\xdf\\\r\n\\x55\\x2e\\xbb\\xce\\x28\\x66\\x64\\x1f\\x33\\x4b\\x24\\x6c\\x22\\xd8\\x7a\\x96\\\r\n\\x23\\x51\\xd5\\xd6\\x42\\xd1\\x41\\x4e\\xd9\\xb3\\xc8\\x3e\\xf0\\x8f\\xec\\x40\\\r\n\\x3b\\xf7\\xf3\\xdf\\xb2\\xdf\\xdc\\x6b\\xc1\\x53\\xdb\\x1c\\xac\\xc7\\x61\\x93\\\r\n\\x79\\x6c\\x3b\\x28\\x45\\xed\\xed\\xa4\\x9e\\xa6\\x75\\x28\\xbd\\x30\\x25\\x38\\\r\n\\xc9\\x79\\xad\\x0b\\x73\\x19\\xa4\\xf9\\x55\\xf2\\x22\\xd8\\xde\\xe3\\xd3\\x63\\\r\n\\xa3\\x24\\xd2\\x34\\xad\\x2c\\x8d\\x2a\\xb1\\x31\\x44\\x02\\xb1\\xbe\\x0c\\xec\\\r\n\\xce\\xc6\\x3b\\x92\\x14\\x72\\xc6\\x1b\\x5a\\xda\\x11\\xa0\\x1c\\xa0\\x7c\\x9c\\\r\n\\xe3\\x23\\xfa\\x5a\\xef\\x93\\x64\\xbe\\xc3\\x6f\\xca\\xda\\xc7\\x05\\xea\\xdc\\\r\n\\xaf\\xa6\\x8d\\x1e\\x6d\\x0c\\x3b\\x64\\x14\\x9e\\xa1\\x71\\xd3\\xb7\\xbf\\xb7\\\r\n\\xf3\\xd4\\xaf\\x1c\\x71\\x2a\\x18\\xef\\x27\\x61\\xf2\\xee\\x4e\\xa7\\x5a\\x7b\\\r\n\\x33\\x50\\xcc\\xf6\\x6f\\x75\\x47\\xca\\xdf\\x5e\\x93\\x6d\\x30\\x56\\xff\\x00\\\r\n\\x56\\x95\\x64\\x92\\x1e\\xdd\\x0c\\x2c\\xdb\\x7a\\x8f\\x51\\xa2\\xf1\\xca\\x4d\\\r\n\\x25\\x4a\\x89\\x50\\x79\\x93\\xea\\x8e\\xbe\\x52\\x3d\\x8f\\xf8\\x5b\\x4b\\x35\\\r\n\\x3c\\x72\\x47\\x2a\\xed\\x81\\xea\\x88\\x8f\\x42\\x92\\x7a\\x6e\\x3c\\xaf\\xdb\\\r\n\\xd0\\xdb\\x56\\x03\\xee\\xce\\x4d\\x25\\xfa\\x7f\\x9f\\xaf\\xfe\\x9a\\xc9\\x24\\\r\n\\x5b\\x15\\x89\\xe4\\x2b\\x64\\xe6\\xca\\xa8\\x05\\xdc\\xfa\\xde\\xdb\\xaf\\xa9\\\r\n\\x1a\\xaa\\xaf\\xba\\xf2\\x40\\xc6\\xdf\\xef\\x59\\xec\\x54\\x7b\\x59\\x94\\xb7\\\r\n\\xf7\\x08\\xd5\\x47\\x0b\\xac\\x2a\\x38\\x67\\xda\\x41\\x51\\xc2\\x6a\\x95\\xbc\\\r\n\\xb6\\xaf\\x8f\\x18\\xa4\\xf6\\xbc\\x55\\x22\\x37\\x07\\xb8\\xde\\xda\\x3c\\x1e\\\r\n\\xa8\\xbc\\x6b\\x24\\xd5\\x9c\\x16\\xac\\x0c\\x94\\x02\\x55\\xe0\\x86\\x5f\\xf8\\\r\n\\x65\\x11\\xc9\\x1b\\x77\\x17\\xb8\\x3b\\xea\\x4a\\x5e\\x2b\\x12\\xfc\\x07\\x92\\\r\n\\x82\\xa8\\xba\\xe4\\x05\\x4c\\x6e\\xd8\\xd4\\x0c\\x6d\\x7e\\x69\\xb3\\xe3\\x6d\\\r\n\\xba\\x56\\xfb\\x5f\\x4f\\xc1\\xd8\\xcb\\x22\\x5a\\xd0\\x9c\\x95\\x93\\x94\\x4e\\\r\n\\xe4\\x65\\x69\\x3b\\xf7\\x56\\x4e\\x9b\\xd8\\x06\\xb8\\xd7\\x11\\xa6\\x31\\xb4\\\r\n\\xcb\\x90\\x0b\\x37\\xf6\\xbc\\xb9\\x2c\\x56\\x65\\x92\\xe5\\x4b\\x65\\x60\\xab\\\r\n\\x27\\x48\\x76\\x8b\\xb1\\x18\\xaa\\xac\\x95\\x09\\xcb\\x8e\\x39\\x5a\\xc5\\xfe\\\r\n\\xe1\\x5d\\xb2\\x90\\xc7\\x24\\x62\\x49\\x40\\x39\\x1d\\xc6\\x4c\\x1b\\x2c\\xd7\\\r\n\\x6c\\x1a\\x0a\\x88\\xa5\\x6e\\x6c\\xcf\\x05\\x38\\xe4\\x88\\xb2\\xf8\\xb3\\x42\\\r\n\\xd0\\x08\\x94\\xbc\\x6f\\x86\\x0c\\x79\\xab\\x8c\\xf8\\xa8\\x7e\\x64\\x6b\\xb5\\\r\n\\xa7\\x86\\x61\\xe2\\x54\\x19\\xc7\\x84\\xa6\\x8f\\x1c\\xa2\\x51\\x8e\\x62\\x38\\\r\n\\xcc\\xdd\\x4d\\x29\\x2d\\x23\\x05\\x31\\x8b\\xa2\\x9e\\xb3\\x61\\x84\\x24\\x41\\\r\n\\x23\\x07\\x92\\x1a\\x66\\x5f\\x8d\\x23\\x22\\x4a\\xb2\\xca\\xfd\\x01\\xf9\\x02\\\r\n\\x19\\x58\\x72\\xd4\\x1e\\x9b\\x8d\\x97\\x10\\xd2\\xd3\\xc4\\xfe\\x1e\\xa5\\xa5\\\r\n\\x48\\x64\\xef\\x8f\\x42\\x24\\xd3\\x4c\\x0a\\x35\\xd9\\xbe\\x0c\\x4a\\x08\\x66\\\r\n\\xc0\\x33\\x73\\x2e\\x49\\x3a\\x91\\x65\\xff\\x00\\x54\\xa8\\x86\\x9a\\x74\\x96\\\r\n\\x52\\xaa\\xd4\\xec\\xf2\\xc9\\x27\\x32\\x1d\\x8d\\x8c\\x49\\xcd\\x99\\xb3\\xf5\\\r\n\\x8b\\xba\\xe3\\xaa\\x7e\\x5d\\x54\\xcd\\x4d\\x04\\xf2\\x51\\x4a\\x53\\xad\\x6a\\\r\n\\x38\\xa4\\x51\\x45\\xf1\\x41\\xee\\xd4\\xf3\\xc2\\xef\\xc8\\x90\\xb0\\x6b\\x43\\\r\n\\x23\\x11\\x96\\x5a\\x97\\x88\\x53\\x71\\x0a\\x64\\xa8\\xe1\\x94\\xd5\\x13\\xd3\\\r\n\\x09\\x89\\x64\\x59\\x7e\\xee\\x1c\\x80\\xcd\\x7a\\x58\\xac\\x8c\\xaa\\xbb\\x28\\\r\n\\xdc\\x3e\\xaa\\x2b\\x38\\xad\\x45\\x2d\\x47\\x10\\x9a\\x98\\xc4\\x2a\\xa2\\x8d\\\r\n\\x16\\xef\\x20\\xb7\\x4b\\x24\\x09\\xb6\\xc3\\xba\\xeb\\xc0\\x65\\x4d\\x2d\\x14\\\r\n\\x72\\x85\\x78\\xe4\\x86\\x47\\x91\\x85\\xb7\\x01\\xa4\\xe5\\xd8\\x86\\xbe\\x24\\\r\n\\x03\\xbe\\x97\\x79\\x9d\\x18\\x96\\x55\\x91\\x15\\x31\\x07\\xd3\\xa5\\x9c\\xb5\\\r\n\\xbe\\xa6\\xfa\\x09\\x72\\x76\\xd8\\x76\\xb2\\x91\\xb0\\xec\\x7f\\xc3\\x5c\\xc8\\\r\n\\xee\\x97\\x17\\x20\\xef\\xff\\x00\\x4f\\xf0\\xd7\\x30\\xc1\\x4a\\xc8\\x24\\xc2\\\r\n\\xa7\\xc4\\xc5\\x0c\\x97\\xa7\\x3f\\x78\\x2f\\x38\\x75\\xdd\\x7e\\x87\\x7b\\x6d\\\r\n\\xa6\\x5a\\x0e\\x23\\xc4\\x23\\x89\\x98\\xcb\\x1c\\x3c\\x17\\x83\\x70\\xba\\x31\\\r\n\\xc8\\x70\\xad\\x1b\\x9a\\x88\\xa8\\xe3\\x60\\xb6\\xb9\\xbf\\x51\\xee\\xb7\\x38\\\r\n\\xe8\\x06\\x93\\x89\\x55\\xe6\\x92\\x33\\xf8\\xfe\\x25\\x54\\xc1\\x1d\\x48\\x18\\\r\n\\xc9\\x0d\\xd2\\x31\\x91\\x22\\xc4\\x6d\\x6b\\xeb\\x11\\x0a\\x33\\x6f\\x9b\\xad\\\r\n\\xc2\\x86\\xfe\\x06\\x73\\x7d\\xbd\\xf4\\x60\\x95\\x73\\xbf\\x49\\x1d\\x3c\\xc1\\\r\n\\xeb\\xd2\\x77\\x07\\x4c\\xf4\\x73\\x99\\xd2\\xf7\\x56\\x50\\x16\\xa2\\x9d\\xfd\\\r\n\\x16\\x58\\xed\\xba\\xff\\x00\\x77\\xf3\\xb5\\xaf\\xaa\\x2e\\x20\\x96\\x8f\\xa9\\\r\n\\xa0\\xab\\x80\\xc4\\xad\\x85\\x44\\x64\\x39\\xea\\xb5\\xc6\\x6b\\x76\\x53\\x7d\\\r\n\\xd7\\x71\\x62\\xa7\\x51\\x35\\x2a\\x0b\\x98\\x29\\xc8\\x98\\x25\\xd9\\xe2\\xa9\\\r\n\\x98\\x44\\xd1\\x37\\xa6\\x22\\x36\\x27\\xb6\\xc5\\x89\\x1a\\xfb\\x31\\x56\\x6b\\\r\n\\xb9\\xb4\\x74\\x86\\x2a\\xaa\\xd8\\xb9\\xf1\\xc7\\x22\\xd0\\xf0\\xff\\x00\\x1b\\\r\n\\x05\\x77\\x31\\x66\\x9a\\x38\\x54\\x49\\x14\\xa2\\x28\\x6f\\x2f\\x34\\xb2\\xa6\\\r\n\\x11\\xb3\\xe0\\x86\\x96\\xbe\\x86\\x74\\x34\\xbf\\x69\\x68\\x22\\x3c\\x3a\\xa5\\\r\n\\x84\\xb1\\x4d\\x1f\\x16\\xa2\\xca\\x97\\x06\\x75\\x5b\\xda\\x78\\x92\\x14\\x91\\\r\n\\x5b\\x1e\\xbc\\x24\\x03\\x53\\x3d\\x57\\x1d\\xa8\\xa1\\x34\\x74\\x75\\x09\\xc5\\\r\n\\x69\\x65\\xaf\\x86\\xb2\\x48\\xf8\\xac\\x75\\x31\\x43\\x45\\x02\\x43\\x62\\xf1\\\r\n\\xf3\\x9a\\x59\\xb9\\x84\\xb4\\xf8\\xe3\\x8e\\x50\\x96\\x17\\x30\\xd1\\xc7\\xf0\\\r\n\\x69\\xf2\\xa6\\xce\\x58\\x52\\x3a\\x87\\x10\\x22\\x16\\xeb\\xbb\\x9b\\x38\\xcb\\\r\n\\x12\\xb8\\x16\\xd9\\xb1\\x53\\xa6\\x11\\xd5\\xd4\\xcb\\x4d\\x3c\\x6b\\x2c\\x32\\\r\n\\xf3\\x64\\x21\\xd6\\xfb\\x7c\\xde\\x7b\\x1c\\x24\\x1f\\x8e\\x3b\\xdb\\x7d\\x37\\\r\n\\x2a\\xac\\xbd\\x93\\x65\\x32\\x2c\\xb3\\x14\\xe6\\x5f\\x05\\x3d\\x58\\xbb\\xa6\\\r\n\\x58\\xa9\\x71\\x23\\x61\\xd2\\x3b\\x1d\\x71\\x19\\xdc\\x97\\x7a\\x5a\\xee\\x1f\\\r\n\\x50\\x73\\x24\\xb5\\x9e\\x0e\\x21\\x13\\x83\\x7f\\x40\\x59\\x2f\\xf9\\x6b\\x8b\\\r\n\\x51\\x38\\xf0\\xb4\\xbc\\x33\\x85\\xd2\\x52\\xc3\\x83\\x15\\x78\\xe4\\x7a\\x97\\\r\n\\xfd\\xa1\\x30\\xee\\x40\\x9a\\xa1\\xcc\\xec\\x2e\\x7a\\xae\\x7d\\x75\\xc4\\x8c\\\r\n\\xb5\\x4b\\x50\\xd4\\x7c\\x52\\x15\\x13\\x40\\x56\\x41\\x3c\\x33\\xc0\\x89\\x84\\\r\n\\xac\\x97\\xe7\\x86\\xec\\xc4\\x8c\\x8a\\xf7\\x3d\\x37\\xd1\\x01\\xe2\\x4e\\x2b\\\r\n\\xc3\\x25\\x5a\\x8e\\x1f\\x50\\x2e\\xb2\\x60\\x54\\xc4\\xf0\\x4b\\x7d\\xe4\\xa6\\\r\n\\x9b\\x91\\x69\\x47\\x56\\x19\\x09\\x16\\xdd\\xb4\\x59\\xe1\\x55\\x62\\x49\\x65\\\r\n\\x31\\xdc\\xab\\x1e\\xea\\x4f\\xa9\\x07\\x6b\\xea\\xa7\\x87\\x71\\xb8\\x66\\xfd\\\r\n\\x8b\\x58\\x19\\x28\\xaa\\xda\\x78\\xe6\\x34\\xcf\\xd6\\x04\\x75\\x69\\x50\\xac\\\r\n\\x48\\x56\\x93\\x97\\x3e\\x48\\x5f\\x6e\\xbe\\x62\\x8d\\x85\\x18\\xa5\\xa7\\x59\\\r\n\\xaa\\x19\\xb0\\x11\\x9c\\x62\\xc8\\x1b\\x95\\xb8\\x00\\x0d\\xbc\\xa1\\x16\\xde\\\r\n\\xda\\x6a\\x44\\x51\\xe2\\x6a\\x8a\\xac\\xc4\\x3b\\x37\\x7f\\xec\\x55\\xbb\\x85\\\r\n\\x51\\xd4\\xff\\x00\\xc5\\x6f\\x6d\\x41\\x44\\x91\\x10\\x10\\x0b\\xb7\\x57\\x93\\\r\n\\xe6\\xb3\\x1e\\xfe\\xb7\\xde\\xfb\\xfb\\x68\\x52\\x45\\x8b\\x49\\xd1\\x2c\\x8a\\\r\n\\xc6\\xc1\\x60\\xbb\\x08\\x8e\\x5b\\xf7\\x28\\xe7\\x1f\\x5c\\x74\\xea\\xb6\\x5b\\\r\n\\x29\\xbb\\x0e\\x9d\\xd8\\x58\\x8f\\xcd\\xbd\\x74\\xcc\\xc3\\x7b\\xe5\\xed\\xe6\\\r\n\\xea\\x16\\xfa\\x5b\\x7b\\x8f\\x7d\\x55\\xcb\\x2b\\x18\\xa8\\xcc\\x12\\x18\\x91\\\r\n\\x87\\xfa\\xc4\\x91\\x06\\x21\\xa2\\xed\\x86\\x05\\x71\\xe6\\x0f\\x52\\x06\\xe3\\\r\n\\x4e\\xcb\\x3a\\xb9\\xa7\\x9a\\xc3\\x71\\x9b\\x44\\xfe\\xe3\\xdd\\x5b\\xa5\\xbe\\\r\n\\xa4\\x1e\\xda\\x80\\xa6\\x63\\xd1\\x64\\x2b\\x88\\x7f\\xa5\\xfd\\x6d\\xe9\\xf4\\\r\n\\xd0\\xeb\\xf6\\xb6\\xfe\\xba\\x49\\x18\\x8f\\x76\\xfc\\xc6\\xfa\\x9a\\x9d\\x25\\\r\n\\x30\\xa1\\x16\\x06\\xd9\\x64\\x4f\\xbf\\xad\\x87\\x7e\\xfd\\xb5\\x3c\\x6c\\xc1\\\r\n\\xa2\\x92\\x56\\x6c\\xa2\\x6c\\x96\\x48\\xdb\\xcd\\x97\\xaa\\xee\\x17\\x63\\xaa\\\r\n\\x9b\\xc9\\x1f\\x2d\\xa9\\xca\\xa4\\x60\\xfc\\x42\\x2f\\x7b\\x91\\xeb\\x8f\\xf5\\\r\n\\xed\\xa5\\x85\\x19\\x96\\x3b\\x0f\\x31\\xb8\\xce\\xd6\\x6f\\xc8\\x31\\xfe\\x9a\\\r\n\\xe2\\x69\\x24\\x8a\\x95\\xd0\\xac\\x52\\x53\\x2b\\xb8\\x54\\x92\\x35\\x66\\xe6\\\r\n\\xf7\\xee\\xf6\\xf2\\x8d\\xb5\\x78\\xd7\\x23\\xb3\\x30\\x26\\xd7\\xf4\\xef\\xf4\\\r\n\\xd1\\xe7\\x56\\x27\\x30\\xb9\\x6e\\x58\\x37\\x2a\\x37\\xb2\\x1c\\x6f\\xd8\\x6a\\\r\n\\x96\\x85\\xd9\\x39\\xb3\\x19\\x6b\\x24\\x20\\x9b\\xfc\\x56\\xc6\\x9f\\x21\\xdc\\\r\n\\xf4\\x0c\\xb7\\x1e\\xbb\\x68\\x6e\\xc1\\xe3\\x7c\\xe1\\x94\\x6c\\x51\\x94\\xec\\\r\n\\xdf\\xa1\\xb5\\xb5\\xf6\\x7b\\xed\\x57\\x0a\\x96\\x38\\xd3\\x8c\\x53\\x53\\xbd\\\r\n\\x4b\\x86\\x11\\xe5\\xc6\\x78\\x64\\x89\\x0d\\x48\\x67\\xfc\\x72\\xa2\\xc7\\x20\\\r\n\\x46\\x6d\\xfa\\xad\\xbe\\x9e\\x38\\xa1\\x67\\x9e\\xad\\xcd\\x4c\\xca\\x0b\\xa2\\\r\n\\xc6\\xfc\\xbb\\xf7\\x03\\x6d\\xee\\xdd\\xef\\x7b\\xdb\\xdf\\x5e\\x1e\\xae\\x35\\\r\n\\xe6\\x62\\x62\\x4a\\xc0\\xbc\\xc7\\xe5\\x13\\xd5\\x91\\x60\\x79\\xad\\x08\\x53\\\r\n\\xe4\\xb6\\x47\\x75\\x26\\xd6\\x34\\xaf\\x0c\\xeb\\x53\\x1d\\x48\\x31\\xe5\\x91\\\r\n\\x69\\x39\\x7c\\xb4\\x44\\x9a\\x67\\x56\\x04\\x21\\x6c\\x15\\x72\\x66\\xe6\\x3f\\\r\n\\x48\\xda\\x16\\xd5\\x32\\x4e\\xf1\\x4c\\xd2\\xc9\\x35\\x15\\x3a\\x96\\x56\\x91\\\r\n\\x53\\xc0\\xb6\\x75\\x53\\x11\\xd5\\x07\\xc4\\x93\\x08\\xa7\\x24\\xdd\\x5d\\x9d\\\r\n\\xae\\x53\\x42\\x6f\\x07\\x08\\x68\\xd2\\x74\\x52\\x15\\x15\\x0c\\xe9\\x83\\xc5\\\r\n\\xcd\\xdc\\xbc\\x8a\\x8c\\x1b\\x94\\xaf\\x94\\x5c\\xa1\\x93\\xc2\\x0a\\x01\\xae\\\r\n\\x75\\x1c\\xde\\x02\\x35\\x91\\x7c\\x4e\\x19\\x73\\xeb\\x31\\x79\\xb9\\x41\\xb0\\\r\n\\x50\\x04\\x52\\xa4\\x62\\x4c\\x63\\x1d\\x01\\x97\\x6c\\x82\\xb1\\x8d\\xe4\\x42\\\r\n\\x15\\x3e\\x21\\x08\\xfc\\xb9\\x4f\\x49\\xba\\xc6\\xd8\\xe4\\x13\\x1b\\xb3\\x75\\\r\n\\x66\\x0b\\xa9\\x06\\xe1\\x72\\xa2\\x35\\x08\\xab\\x05\\x2d\\x3d\\x64\\xd6\\x75\\\r\n\\x6d\\xa3\\x95\\x8b\\x0b\\xb9\\x1d\\x90\\x73\\x6d\\x75\\xbb\\x07\\xc9\\x99\\x71\\\r\n\\xde\\xb6\\xea\\x94\\xbc\\x32\\x05\\xe4\\xf8\\x9a\\x83\\xca\\x96\\x71\\x62\\xb2\\\r\n\\x24\\x61\\x7c\\xa9\\xca\\x92\\x41\\x97\\xaa\\xb9\\xdb\\xa8\\xeb\\x8a\\x51\\xd2\\\r\n\\x18\\xcc\\x4d\\x7a\\x98\\x3c\\x2b\\x16\\x65\\x92\\x8c\\xbd\\x4a\\xc5\\x8b\\x20\\\r\n\\x75\\x32\\x53\\x9a\\x88\\x2e\\x72\\x39\\xcc\\xbf\\x96\\xa3\\x8b\\x87\\x49\\x8b\\\r\n\\xb4\\x3c\\xa9\\xd2\\xa3\\xa1\\x9f\\xbb\\x93\\x34\\xf6\\x09\\x77\\xe9\\x0a\\xb8\\\r\n\\xa1\\xc0\\x03\\x8e\\xfa\\xaa\\xa2\\x9b\\x66\\xe7\\xca\\x0f\\xc5\\x2d\\xcb\\xc4\\\r\n\\x95\\x46\\x56\\x3f\\x5b\\xd9\\x42\\x6d\\x6f\\x6d\\xf5\\x3a\\x54\\xce\\xb3\\xcd\\\r\n\\x13\\xdc\\x4a\\xab\\x66\\x95\\x64\\xb9\\x50\\xc0\\xf9\\xa5\\x8b\\x75\\x76\\x5e\\\r\n\\x93\\xb3\\x0e\\xe7\\x40\\xc5\\x1d\\xb1\\x5b\\xde\\xfb\\xe8\\x01\\x96\\x09\\xe6\\\r\n\\x3d\\xc8\\x1f\\xfb\\x68\\x45\\xf3\\x63\\x63\\x9e\\xcd\\xfa\\x6f\\xfd\\x75\\xc9\\\r\n\\x2a\\x6d\\x27\\xa8\\xef\\xbf\\x66\\x1f\\x5b\\x69\\x51\\x81\\x90\\x40\\x8e\\x39\\\r\n\\xa0\\xf9\\xe9\\x5c\\x8e\\x86\\x1e\\xf1\\x3b\\x12\\x3b\\xd8\\x1f\\x6d\\x18\\xe4\\\r\n\\x62\\x40\\xe9\\x8e\\xdb\\x2f\\xb8\\x05\\x45\\x87\\x4e\\xf7\\x3f\\x4d\\x13\\x11\\\r\n\\xe6\\xdb\\xaa\\xca\\xd8\\x9f\\xd6\\xff\\x00\\xe1\\xa2\\x91\\x2c\\x74\\xc0\\x0c\\\r\n\\xda\\x69\\xa5\\xe5\\x47\\x14\\x63\\xcd\\x23\\x12\\x58\\xe2\\xa3\\xf2\\xfd\\x4e\\\r\n\\x82\\x7f\\xf3\\x4d\\x44\\x95\\x86\\xea\\x66\\x82\\x8d\\x9a\\x85\\x5b\\xd5\\x18\\\r\n\\xdc\\xb4\\xb1\\xed\\xbd\\xec\\x3d\\xac\\x77\\xd5\\x42\\x73\\x62\\x9a\\x17\\xc1\\\r\n\\x1e\\x68\\x0d\\xd4\\x38\\x3f\\x0e\\xa1\\x55\\xf7\\xc9\\x7c\\xac\\xa7\\xd2\\x42\\\r\n\\x85\\xaf\\x62\\x4a\\x45\\xc5\\x9e\\x18\\xe9\\xa0\\xa3\\x44\\x71\\x48\\x96\\x63\\\r\n\\xca\\x35\\x2c\\xcc\\xa6\\x6c\\x95\\x15\\xe2\\x68\\x98\\xa8\\x6b\\x46\\x0c\\x9b\\\r\n\\x5c\\x0d\\x55\\x50\\x9e\\x5f\\x10\\x92\\xf5\\x52\\x53\\x46\\xa1\\x95\\x66\\x8d\\\r\n\\xe4\\xa6\\x9e\\x28\\xe5\\x17\\x02\\xe7\\x97\\x2b\\x79\\xbd\\x50\\xfd\\x35\\xc4\\\r\n\\xab\\xaa\\xfe\\xcd\\x43\\x3d\\x6f\\x03\\xad\\xbd\\x1c\\x15\\x97\\x68\\xb8\\x63\\\r\n\\xf1\\x05\\x44\\xf1\\x28\\xae\\xb8\\x3d\\xab\\xa9\\x54\\xae\\xd9\\x47\\xce\\x52\\\r\n\\xad\\xd4\\x6f\\x5b\\xc5\\x30\\xe6\\x54\\x4d\\x02\\xc9\\x53\\x3c\\x84\\x06\\x96\\\r\n\\xa6\\x4a\\xf7\\x9a\\x7b\\x8e\\xf6\\x2a\\x53\\x06\\xf2\\x9c\\x3b\\x93\\xe5\\x9a\\\r\n\\x21\\xe6\\xe6\\xd3\\x38\\x03\\x76\\x3c\\xc5\\x31\\x9d\\xbd\\x7c\\xe3\\xf9\\x6a\\\r\n\\x9e\\x8f\\xf6\\x9d\\x1b\\x56\\xc6\\xe5\\xd6\\x9c\\xa4\\xca\\xb4\\xaf\\x22\\x98\\\r\n\\xda\\x07\\x7d\\x96\\x4e\\x6d\\xc2\\xf2\\xc1\\x50\\xad\\x69\\x43\\x7e\\x3a\\x79\\\r\n\\x28\\xb6\\xe5\\xce\\xf5\\x12\\xb7\\x31\\x1d\\x12\\x6d\\xb3\\xb4\\x82\\xc5\\x96\\\r\n\\xf7\\xb1\\x91\\x50\\xa8\\xb2\\xeb\\xed\\x12\\x76\\x32\\x70\\x78\\xab\\x08\\xfc\\\r\n\\x32\\xd1\\xf1\\x2a\\x4e\\x68\\xda\\xff\\x00\\x24\\xd2\\xfe\\x97\\xd7\\xda\\x8b\\\r\n\\x87\\x89\\x66\\xa4\\x4b\\x48\\x41\\xb5\\x9e\\x5e\\x63\\x30\\xfc\\x40\\x0d\\xf6\\\r\n\\xb9\\xbf\\x4f\\x7d\\x7d\\xa2\\x85\\x49\\xbc\\x35\\x5c\\x26\\xa6\\x4b\\x7c\\xa3\\\r\n\\x9a\\x6f\\x27\\x6f\\xc2\\xb7\\x3f\\x96\\xb9\\xcb\\x37\\x86\\x60\\x61\\x9a\\x09\\\r\n\\x85\\x9a\\xec\\x14\\x87\\x56\\x41\\x88\\x68\\x9f\\x19\\x92\\x45\\xb8\\x36\\x39\\\r\n\\x83\\x96\\x87\\xfa\\x28\\xb7\\xf1\\x73\\x6a\\x37\\xfa\\xec\\xf6\\xdf\\xe9\\xa2\\\r\n\\x11\\xd8\\x43\\x5c\\x4c\\xf4\\x32\\xb8\\x74\\xe5\\x54\\x6f\\x9c\\x4f\\x90\\xcf\\\r\n\\xbf\\x9f\\x98\\x03\\x5a\\xcf\\xe8\\x4e\\x9b\\x88\\x56\\x42\\xed\\x35\\x1c\\xce\\\r\n\\x94\\x50\\x5b\\x2e\\x75\\x52\\x8b\\x19\\x89\\x1e\\x68\\x21\\xb8\\x62\\x46\\xcc\\\r\n\\xd6\\x1e\\x87\\x53\\x54\\x54\\xf4\\x72\\xae\\xab\\xd1\\x66\\x69\\x1e\\xc6\\x46\\\r\n\\x24\\xef\\xeb\\xf4\\xef\\xaa\\x89\\x9e\\xd8\\xdb\\x08\\xdc\\xfb\\xb5\\xcb\\xda\\\r\n\\xfe\\xc3\\x6f\\xcc\\x7b\\xea\\x76\\x8b\\xfd\\x60\\x9e\\x58\\xbd\\xee\\xa9\\x10\\\r\n\\xf8\\x6c\\xde\\xfe\\x66\\xc4\\x0f\\x56\\x3a\\x85\\xea\\x39\\x81\\x26\\xdd\\x23\\\r\n\\xec\\xd8\\xe5\\xe6\\x6f\\xc2\\x5b\\xd0\\x11\\x7b\\x69\\x5e\\xb2\\x93\\xc4\\xcc\\\r\n\\xdc\\xa7\\xce\\x77\\xe6\\x04\\xf5\\x41\\x8d\\xec\\xbe\\x9b\\x1f\\x4d\\x8f\\xb6\\\r\n\\x9e\\x55\\x65\\x21\\x63\\x31\\xb2\\x85\\xc5\\x10\\x7d\\x05\\x85\\xc9\\xf6\\x1a\\\r\n\\xf0\\xb5\\x39\\x54\\x70\\xbe\\x24\\xcd\\x26\\x2b\\x9c\\x49\\x12\\xd4\\xe5\\x68\\\r\n\\x95\\xbc\\xb9\\xd3\\x9b\\x58\\x65\\xb8\\xc6\\xf6\\xbe\\xa5\\x80\\x99\\x9a\\x95\\\r\n\\x1c\\x72\\xa5\\x60\\x57\\xa4\\x1c\\x15\\xad\\xe9\\x95\\xbf\\x43\\xb6\\x95\\xae\\\r\n\\x09\\x6b\\x5b\\x7f\\xeb\\xa8\\x1a\\xe7\\xac\\x39\\x3f\\xa0\\x5b\\xff\\x00\\x2b\\\r\n\\xea\\x74\\x3b\\xac\\x9f\\x38\\xfb\\xc8\\x48\\x20\\xe4\\xa7\\xd8\\x7c\\xc3\\xf0\\\r\n\\xea\\x4a\\x28\\x59\\x98\\x94\\x6e\\xb6\\x36\\x8c\\x2f\\x9b\\x36\\x63\\xd2\\x23\\\r\n\\xdb\\xb9\\xd4\\x51\\x50\\x2c\\x73\\x4c\\x17\\x0a\\x9a\\xd6\\xb8\\x89\\xcf\\xcf\\\r\n\\x0d\\x30\\xf6\\xf6\\x7f\\x9b\\xe5\\xdb\\x46\\xfb\\xc7\\xdc\\xe9\\xb0\\x7e\\x9c\\\r\n\\x31\\x21\\x8f\\xf8\\x1f\\x5d\\xf5\\x26\\x46\\xd6\\x4b\\x7f\\x8e\\xa8\\xa9\\x57\\\r\n\\x18\\xa1\\x92\\xc6\\x40\\xa3\\x23\\xcb\\x51\\x9b\\x33\\x77\\x23\\x65\\x66\\x3e\\\r\n\\x96\\xd7\\x10\\x9d\\x4d\\xef\\x3a\\x0a\\x75\\xfc\\x30\\x42\\xf8\\xc4\\xa3\\xd0\\\r\n\\x0c\\x07\\xf8\\xe8\\xe3\\xd2\\x19\\xa2\\x20\\x36\\xde\\x66\\x56\\x6d\\xfe\\x84\\\r\n\\x11\\xae\\x25\\xf6\\x66\\xa1\\xde\\x33\\x45\\xc5\\x68\\x78\\xef\\x0b\\x95\\x43\\\r\n\\x1b\\x0e\\x72\\xc7\\x5b\\x02\\xf6\\x51\\xcd\\x80\\x8e\\x92\\x6d\\x7e\\xbd\\xf5\\\r\n\\x85\\x3a\\x4a\\xe5\\x23\\x64\\x2d\\xb5\\x81\\x2b\\xb0\\xef\\x72\\x7d\\x05\\xcd\\\r\n\\xee\\x75\\x50\\x8b\\x17\\x89\\xe3\\x10\\x18\\xe3\\x86\\x14\\xcb\\x15\\x9e\\xa6\\\r\n\\x45\\x96\\xee\\x84\\xef\\x1a\\x03\\xcb\\x04\\x0d\\x8a\\x95\\x90\\xe2\\x7a\\xb9\\\r\n\\x75\\x35\\x42\\xb2\\xad\\xe2\\x7a\\x99\\x22\\x0f\\x85\\x25\\x19\\x2a\\x50\\x62\\\r\n\\x9b\\x87\\x78\\xf7\\x8c\\x17\\xc9\\x44\\xa0\\x95\\xb7\\x7d\\x4a\\x02\\x01\\x53\\\r\n\\xcf\\x64\\x73\\x70\\x57\\x91\\x34\\x31\\x36\\x71\\x15\\x1f\\xd9\\xe2\\x61\\x31\\\r\n\\x7e\\x10\\xa7\\xb0\\x23\\x55\\x73\\xf8\\x73\\x53\\x43\\xc2\\xde\\x9b\\xc7\\xcb\\\r\n\\x2d\\x40\\x53\\x12\\xca\\x89\\xca\\x3b\\x75\\x48\\xd8\\x06\\xe7\\x63\\x93\\x08\\\r\n\\x82\\xb6\\xcc\\xe8\\x43\\x47\\x56\\xd6\\x11\\x30\\x50\\xca\\xf7\\xcf\\xe0\\xb4\\\r\n\\x78\\x5c\\x0d\\xbc\\xf1\\x81\\xe9\\x70\\x83\\x65\\x51\\xa1\\x1c\\x2d\\x27\\x2d\\\r\n\\x9a\\x08\\xe4\\x96\\xe6\\x33\\xd6\\x48\\x11\\xef\\xb1\\xbe\\xf7\\x20\\x1f\\x5b\\\r\n\\xe8\\xf0\\xbe\\x1d\\x08\\x09\\x48\\xde\\x07\\x98\\xeb\\x69\\x27\\x91\\x2f\\x1c\\\r\n\\x82\\xc4\\xe3\\x82\\xb2\\x95\\xb9\\xbd\\xf0\\xc8\\x6c\\xdb\\xfc\\x7c\\xa7\\x9e\\\r\n\\x2e\\x21\\x50\\x92\\x2a\\x03\\x1c\\xf1\\xc5\\x3d\\x3c\\x94\\x7c\\x9e\\x52\\xdc\\\r\n\\x49\\x1a\\xcc\\xb1\\xcd\\x93\\x6e\\x8b\\x22\\x1e\\x9c\\x8d\\xe0\\x9c\\x41\\x3f\\\r\n\\xfa\\xdc\\x6d\\x55\\xd0\\xd8\\xac\\x6d\\x8f\\x32\\x37\\xe9\\x23\\x1f\\xc4\\x4e\\\r\n\\xf6\\xfd\\x34\\xf1\\xc9\\x1a\\x03\\x14\\x8f\\xca\\x54\\x79\\xa5\\x56\\x48\\x8f\\\r\n\\x2d\\x65\\x91\\x1b\\xa7\\x9d\\x22\\xa8\\x26\\x50\\x64\\x21\\x48\\x51\\xb6\\x9e\\\r\n\\x39\\xb9\\x6b\\x24\\xcc\\x0b\\x03\\x65\\x60\\x41\\xbe\\xe4\\x63\\x9e\\xe6\\xf9\\\r\n\\x5b\\xf3\\xd2\\x57\\x44\\xed\\xca\\xc9\\x58\\x18\\xed\\x75\\x23\\xbd\\xc8\\xf7\\\r\n\\xb9\\xd8\\xed\\x6d\\x72\\x5f\\x75\\x65\\xd9\\xbb\\xed\\xff\\x00\\x7b\\x7d\\x35\\\r\n\\x92\\x81\\x73\\xb9\\x1e\\xfa\\xb3\\x74\\xfb\\x7f\\xdf\\xf4\\xff\\x00\\xb3\\xa0\\\r\n\\x87\\xcd\\x60\\x10\\xff\\x00\\x0d\\xf6\\xfe\\x5a\\x20\\x5f\\x01\\x95\\xc7\\xa1\\\r\n\\x0c\\x00\\x6f\\xcb\\x42\\x5b\\xdc\\x30\\x5f\\xf9\\xc6\\xcd\\xbf\\xe5\\xff\\x00\\\r\n\\xe5\\xa6\\xb7\\x7f\\x7f\\x40\\x3d\\x6f\\xaa\\xd4\\x3d\\x54\\xe5\\x4c\\x6d\\x9a\\\r\n\\x82\\x24\\x2c\\xc0\\x7c\\xdd\\x95\\x7d\\x2d\\xb9\\x3e\\x5d\\x43\\x15\\x54\\xd4\\\r\n\\x0a\\xb5\\xca\\xe1\\x96\\x91\\xd8\\x56\\x47\\x19\\x6c\\x8c\\x8d\\x26\\xf1\\xa9\\\r\n\\xdf\\x96\\xa8\\xeb\\xf1\\x2f\\x61\\x60\\x32\\x0d\\x3d\\x05\\x6a\\x71\\x0a\\x59\\\r\n\\x81\\x49\\x22\\x39\\x09\\x81\\xec\\xab\\x2d\\x3c\\x8c\\xdb\\xf5\\x59\\xda\\x26\\\r\n\\x92\\x32\\x9b\\x92\\x36\\xd5\\x38\\xe1\\xb1\\xc1\\x47\\x53\\x14\\x5c\\x99\\x7c\\\r\n\\x44\\x92\\xce\\x25\\xe6\\xe5\\xcf\\x2e\\xca\\xc5\\x87\\x32\\x17\\xf8\\x6a\\xb8\\\r\n\\xf4\\x80\\x19\\x6f\\x7d\\x55\\x41\\x2f\\x12\\x8a\\xb2\\xae\\x8d\\xa3\\xba\\xc7\\\r\n\\xb4\\x91\\x73\\x22\\xa8\\x48\\x56\\x40\\xee\\xec\\x7a\\x80\\x55\\x32\\x28\\xf2\\\r\n\\x7a\\x9d\\x71\\x3f\\xb3\\xa6\\xc2\\xa3\\x8e\\xf0\\x4e\\x2c\\x9c\\xa9\\x15\\x10\\\r\n\\x27\\x10\\xe1\\xe2\\x09\\xe8\\x18\\x62\\x3c\\xd2\\xd4\\x53\\x3e\\x47\\x6b\\x9d\\\r\n\\xed\\xbe\\xf5\\x7c\\x23\\xc3\\x4c\\x90\\xc5\\x46\\x10\\x4a\\x5f\\x38\\xdd\\x33\\\r\n\\x84\\xb3\\x6f\\x65\\x85\\x55\\xb3\\x70\\x59\\xd9\\x6d\\x76\\xca\\xc4\\xea\\xae\\\r\n\\x0a\\x79\\xde\\x69\\xfc\\x32\\xbc\\xb5\\x3c\\x9b\\x2f\\x2e\\x26\\x0d\\x85\\x3a\\\r\n\\xc8\\xd1\\xb2\\x8c\\x17\\x23\\x50\\xad\\x99\\x3b\\x41\\x8d\\x84\\x86\\xe8\\x79\\\r\n\\x75\\x07\\x75\\x91\\x6f\\x66\\x1e\\x8d\\x22\\xf7\\x8d\\xcf\\xb9\\xff\\x00\\x98\\\r\n\\xdb\\x54\\x8d\\x37\\x35\\x4c\\x53\\x48\\xb5\\xcd\\x09\\xde\\x40\\xe2\\xcb\\x2e\\\r\n\\x24\\xaa\\xbf\\x3c\\xaf\\x50\\x36\\xb3\\xdf\\xd4\\xea\\x6a\\x69\\x00\\x2b\\xc4\\\r\n\\x38\\x57\\x11\\x80\\x6c\\x47\\x33\\x9b\\xc3\\x66\\x50\\x3b\\x6e\\x7c\\x4a\\x53\\\r\n\\x83\\x62\\x7a\\xbe\\xba\\xae\\x48\\xe5\\x60\\x31\\x78\\x51\\x87\\x57\\x2f\\x19\\\r\n\\x58\\xa1\\x11\\xb1\\xc5\\xae\\x2c\\x56\\xfd\\xee\\xdf\\x4d\\x7d\\xa4\\xa6\\x86\\\r\n\\xcd\\x51\\x25\\x1c\\x22\\xa0\\xf8\\x54\\xa7\\x72\\x6f\\x50\\xb1\\xe6\\xd1\\x22\\\r\n\\xa3\\xe2\\xe4\\x1d\\x96\\xe0\\x6d\\x73\\xdc\\xd3\\x1c\\x5d\\x24\\x68\\x23\\x94\\\r\n\\xca\\x83\\x25\\xb2\\x58\\xb4\\x61\\x4e\\x22\\xe0\\xdb\\xe6\\x1d\\x2f\\x21\\xd5\\\r\n\\x87\\x1c\\xa9\\x40\\x36\\x09\\xe0\\xa4\\x6c\\x47\\xe1\\xbf\\x89\\x17\\xb7\\x6b\\\r\n\\xd8\\x5f\\x50\\x70\\x51\\xc2\\x1e\\x58\\x66\\xe6\\x55\\x49\\x3e\\x0c\\xf4\\x90\\\r\n\\xac\\x1d\\xe6\\x33\\x54\\x1c\\x33\\x67\\xb0\\x4e\\x57\\x99\\xbd\\xf6\\xbc\\x14\\\r\n\\xae\\xcd\\x19\\x7f\\x83\\x48\\xa8\\x11\\x15\\x50\\x3e\\xcb\\x24\\xa6\\xec\\x00\\\r\n\\x27\\x7b\\x03\\x73\\xd4\\x4e\\x8c\\x2d\\x7f\\x8a\\x86\\x43\\x22\\xb6\\xca\\xd8\\\r\n\\xdc\\x62\\x0f\\x75\\xda\\xe7\\xd7\\x51\\xd3\\x58\\xec\\x2d\\x01\\x3b\\x24\\xcf\\\r\n\\x60\\x4c\\xc4\\xf6\\xc5\\x6e\\x3d\\xec\\x7b\\xe8\\xf8\\xa9\\x04\\x6b\\x77\\x9a\\\r\n\\x3f\\x79\\xde\\x23\\x72\\x58\\xdc\\x1e\\x5e\\x7d\\x2a\\xab\\xb9\\xdd\\xaf\\xb0\\\r\n\\xd2\\xcb\\x36\\x2d\\x7d\\xc9\\x51\\xb7\\xe4\\x01\\x3b\\x0b\\xe9\\xa2\\x8d\\x70\\\r\n\\xb3\\x64\\x0d\\xcd\\x87\\xb0\\xb9\\xdf\\x6d\\x75\\xdd\\xe4\\x63\\x97\\x2c\\x6e\\\r\n\\x8b\\xfc\\x47\\xf4\\xd3\\xfe\\xd3\\xe1\\x6b\\x5f\\x4d\\x02\\x35\\x4b\\xc9\\xe5\\\r\n\\x96\\x9e\\x45\\x1d\\xe0\\x22\\xcc\\x4e\\x3e\\x80\\x8f\\xe7\\xa9\\x1a\\x82\\xa5\\\r\n\\x81\\x82\\x34\\x53\\x90\\xcd\\x84\\x7d\\xba\\xc7\\x98\\xd8\\xda\\xed\\xfa\\xfb\\\r\n\\xea\\x29\\x22\\xa9\\x46\\x45\\xde\\xd6\\x65\\xdb\\xd7\\xa7\\x7f\\xe5\\xa5\\x8a\\\r\n\\x39\\xf1\\x71\\x95\\x8b\\xad\\xd4\\x03\\xf4\\xfd\\x00\\xbe\\xb1\\xa6\\xa6\\x8e\\\r\n\\x78\\xf2\\x56\\x42\\x92\\xc4\\x15\\x83\\xf9\\x85\\xe4\\x74\\xed\\x8d\\x8e\\xde\\\r\n\\xa3\\x6d\\x47\\x24\\xd1\\xc1\\x43\\x03\\x93\\xcf\\x87\\xc5\\x2a\\xb1\\x2b\\xb8\\\r\n\\x47\\xc7\\x22\\x41\\xfc\\x1d\\x86\\xa8\\xe3\\xb5\\x3f\\x36\\x5c\\xa5\\x70\\x88\\\r\n\\x46\\x28\\x0f\\x4d\\xd8\\xee\\x6f\\x7d\\x8e\\xdd\\xbd\\xb5\\x84\\x68\\x86\\xf7\\\r\n\\xfc\\xb6\\xed\\x7f\\x7d\\xf7\\x3a\\xcf\\x8c\\x54\\x4b\\x4f\\x1b\\x0b\\x81\\x4d\\\r\n\\x1e\\x59\\x1f\\x5d\\x10\\x17\\x8a\\x55\\xca\\x76\\x3b\\x3a\\xdf\\xf4\\x50\\x35\\\r\n\\xc4\\xb8\\x97\\x06\\xfb\\x37\\xc5\\x95\\xb9\\x02\\x92\\x9e\\x49\\x72\\x87\\x35\\\r\n\\xaa\\x05\\x24\\x91\\x25\\xa8\\x29\\x12\\x2c\\x70\\x65\\x79\\x0b\\x00\\x32\\xdb\\\r\n\\x7d\\x54\\x37\\x11\\xe3\\xbc\\x23\\x84\\x65\\x25\\xd2\\x95\\x2b\\x23\\xe2\\xd5\\\r\n\\x41\\x07\\x95\\x5e\\x2e\\x1b\\xe2\\x15\\x1c\\x1f\\x49\\x27\\x8f\\xeb\\xa8\\x1a\\\r\n\\x4a\\x5e\\x39\\xf6\\x86\\x58\\x39\\x47\\xbd\\x37\\x09\\xa1\\x98\\xa7\\xf0\\xa7\\\r\n\\x8e\\xab\\x95\\x32\\xb0\\x20\\xbd\\x39\\x6f\\xe6\\x75\\x1f\\x12\\x82\\x82\\x0e\\\r\n\\x1c\\xb3\\xc2\\x8d\\x1c\\x10\\x46\\xc1\\x85\\xd2\\xf8\\xbc\\x92\\xb3\\xcc\\xc4\\\r\n\\x5f\\x70\\x70\\x1d\\x86\\x3b\\x69\\xe1\\xc7\\x7c\\xf3\\x91\\x89\\xbc\\x67\\x2f\\\r\n\\x7b\\x12\\x45\\x9b\\x15\\xb8\\x5e\\x82\\xd7\\xb5\\xf4\\xfc\\x4e\\x62\\xbc\\xf6\\\r\n\\x6c\\x8c\\x41\\x47\\x51\\x43\\xcb\\x0e\\xb1\\x96\\x90\\x07\\x50\\xac\\xca\\xfd\\\r\n\\x2e\\x56\\x4b\\x15\\xf2\\x11\\x57\\x3c\\x73\\x72\\xaa\\x7c\\x3b\\x42\\xf9\\xdb\\\r\n\\x2c\\x12\\x26\\xb8\\x48\\xe4\\xfb\\xc9\\xdf\\xce\\x1c\\xdb\\xe3\\xb6\\x17\\xbb\\\r\n\\xef\\xe2\\xe8\\x16\\x0a\\x86\\xa7\\x8a\\x37\\xa9\\x3c\\xee\\x56\\xf2\\x4a\\xb7\\\r\n\\x5c\\x7c\\xd0\\xcd\\x8c\\xa6\\x32\\x2e\\x33\\xc8\\x21\\x3d\\x4b\\xae\\x1f\\x13\\\r\n\\xab\\xd3\\xd6\\x71\\xc9\\x87\\x12\\xac\\x5d\\xde\\x41\\x14\\x22\\x00\\x99\\xaf\\\r\n\\xa8\\x6a\\x7a\\x2a\\x02\\xc9\\xe8\\x2b\\x66\\x0b\\xd5\\xa3\\x82\\x99\\x50\\x58\\\r\n\\x2f\\xa9\\xed\\xb4\\x8f\\xb1\\xe6\\x05\\x22\\x16\\x22\\xf8\\xf7\\x3d\\x27\\x5f\\\r\n\\xb3\\x3c\\x5a\\x78\\x88\\xae\\x11\\xd0\\xde\\x23\\x2c\\x08\\x33\\x17\\xed\\x76\\\r\n\\x68\\xb2\\x3e\\xd2\\xc8\\x15\\x7b\\x1d\\x71\\x13\\x0b\\xc7\\x0a\\xf8\\xb1\\x3c\\\r\n\\xf5\\x4e\\x7e\\x1c\\x39\\x24\\x6c\\xd6\\xb7\\x9d\\xd9\\xae\\x52\\x34\\x05\\x99\\\r\n\\x8f\\xeb\\xa8\\xf8\\x75\\x1c\\x1e\\x78\\xa4\\x12\\x55\\xd8\\x1a\\x89\\x26\\x11\\\r\n\\xb3\\x2b\\x30\\xf2\\xdd\\xe4\\x02\\xe3\\xdc\\x81\\xdf\\x4c\\x56\\x72\\x15\\x78\\\r\n\\x94\\x71\\xcd\\x09\\x8d\\x2d\\xe1\\xe5\\x6b\\x33\\x1e\\x9c\\xb2\\x5e\\x5d\\x98\\\r\n\\xff\\x00\\x1e\\xd6\\xed\\xaa\\x64\\xae\\xa6\\x46\\xf1\\x34\\x34\\xd5\\xf4\\xd3\\\r\n\\x45\\xd1\\x2c\\x52\\x3a\\x98\\x27\\x04\\xee\\x1d\\x4c\\xb0\\x30\\x70\\xc0\\xfa\\\r\n\\x7e\\x1d\\x78\\x8a\\x29\\x54\\xc9\\x1b\\x82\\xd0\\x83\\x84\\xd1\\xec\\x3e\\x5f\\\r\n\\xed\\x05\\xbf\\x0f\\x71\\xda\\xfa\\x5a\\x69\\x58\\x89\\xfe\\xec\\xa0\\xf7\\x0b\\\r\n\\x7f\\xd3\\xe8\\x7f\\x4d\\x10\\xe4\\x8e\\xfb\\x92\\x7b\\x8d\\xfb\\x5e\\xdb\\xde\\\r\n\\xfa\\x04\\x6f\\x96\\xf6\\x27\\xdb\\xf9\\xfb\\x68\\xb3\\x28\\xeb\\x63\\x7d\\xfd\\\r\n\\x3f\\x87\\xb6\\x83\\x00\\x44\\x51\\x3d\\xae\\xd8\\x83\\x66\\xb9\\xf7\\xf6\\xdf\\\r\n\\x4e\\x36\\x23\\xb1\\x3f\\xf0\\xe8\\x81\\x7b\\x07\\x2c\\x2f\\xec\\x4d\\xbf\\xe9\\\r\n\\xa3\\xfd\\x6f\\xf8\\x7f\\xf5\\xd3\\xd1\\xc7\\x0b\\xda\\x30\\x73\\x48\\xec\\xae\\\r\n\\xdb\\x91\\x9a\\x86\\x06\\xf6\\xc7\\xe5\\xb9\\x1d\\xfe\\xba\\x96\\x79\\x38\\x70\\\r\n\\x37\\x1b\\x3d\\x54\\xcd\\x25\\xcf\\xb9\\x4b\\x04\\x0a\\x3d\\x2f\\xdf\\xdb\\x49\\\r\n\\x1d\\x3a\\xc2\\x94\\xe8\\x46\\x31\\xaa\\x5a\\xdb\\xfa\\x6e\\x2d\\xb7\\xb6\\xa9\\\r\n\\xd5\\xd9\\x8f\\x8b\\x8c\\xfc\\x30\\x09\\x37\\x8e\\xca\\x59\\x7e\\x6e\\x83\\xe9\\\r\n\\xed\\xb0\\x1a\\xae\\xab\\x8d\\x63\\x5f\\x10\\x29\\x39\\x92\\xaf\\x9d\\xcc\\x15\\\r\n\\x31\\xb2\\x13\\xf8\\xd5\\x96\\x46\\x39\\x77\\x51\\x90\\xbd\\xbb\\x51\\xf1\\x68\\\r\n\\xe2\\xf1\\x4b\\xc3\\xb8\\xb2\\xf3\\x3c\\x2a\\x93\\x09\\xa7\\x86\\x51\\x0d\\x43\\\r\n\\xae\\x3b\\x58\\xac\\x86\\x43\\xd9\\x32\\x7e\\xc0\\x6d\\xae\\x3d\\xc2\\xa2\\xab\\\r\n\\xa0\\xa3\\x8e\\x2a\\xf5\\x8a\\x06\\x79\\x9a\\x25\\xe4\\x78\\xa3\\x3c\\x0d\\x55\\\r\n\\x39\\x8d\\xba\\x0c\\x0b\\x11\\x02\\xe2\\x04\\x2e\\x41\\xdf\\xa8\\xa4\\xa2\\x96\\\r\n\\x1a\\xd9\\xd6\\x80\\xf3\\x8d\\x0d\\x44\\x13\\x89\\x61\\x97\\x28\\x9d\\xe1\\xb3\\\r\n\\xde\\x5e\\x53\\x65\\x92\\xa8\\xc9\\x0b\\x0b\\xaf\\x52\\xde\\xa2\\x1a\\x9a\\x6f\\\r\n\\x07\\x34\\x47\\x96\\xc2\\x55\\x65\\x98\\x5b\\xb4\\x52\\x2b\\x8c\\x81\\xb9\\xbf\\\r\n\\x6d\\xcf\\xb0\\xd5\\x2c\\x8f\\x1f\\x88\\xa6\\x7a\\x89\\x20\\xa9\\x12\\xf5\\x12\\\r\n\\x85\\x8b\\xa9\\x53\\xd9\\x48\\x1d\\x48\\x2d\\xb1\\x1a\\xe1\\x95\\xeb\\x50\\x39\\\r\n\\x3f\\xb4\\xe9\\x0f\\x29\\xcf\\x4b\\xd3\\x4b\\x22\\x06\\x78\\xf7\\xee\\x43\\x21\\\r\n\\x71\\xde\\xc8\\x35\\xc7\\x29\\x81\\x21\\x68\\xea\\xaa\\x54\\x05\\x36\\x2c\\x12\\\r\n\\x42\\xb1\\xb5\\xce\\xd7\\x18\\xb1\\x53\\xfc\\x47\\x5c\\x69\\x0b\\x09\\x21\\xad\\\r\n\\xe1\\xc6\\xa1\\x00\\x1b\\xb6\\x33\\x46\\x4f\\x55\\xad\\x6f\\x89\\xd3\\x73\\x7b\\\r\n\\x37\\xe7\\xa1\\x9c\\x65\\xa4\\xa7\\xa8\\xab\\xa5\\x8b\\x16\\x0a\\xc1\\x89\\x26\\\r\n\\x3c\\xf7\\xb6\\x25\\x57\\xf5\\xd5\\xc4\\x53\\x58\\xee\\x37\\x5e\\xc7\\xb6\\xa8\\\r\n\\xe8\\x25\\xe7\\x09\\x64\\x86\\x9e\\x7a\\xf8\\xe4\\x39\\x25\\x2a\\x04\\x50\\xb4\\\r\n\\x8a\\x6e\\x02\\x80\\x4d\\xce\\xfe\\x76\\x3e\\x83\\x52\\x55\\x45\\x4e\\x58\\xa2\\\r\n\\xaa\\x87\\xa7\\xc5\\x24\\xa3\\x98\\x6f\\x0c\\xa8\\xee\\x54\\x39\\xdb\\x19\\x61\\\r\n\\x53\\x8b\\x45\\xbd\\xee\\xba\\xf0\\x55\\x60\\x4b\\x1d\\x2c\\x73\\xac\\x75\\x8e\\\r\n\\xc5\\x5a\\x70\\xa9\\x86\\x21\\x37\\xbb\\x2d\\xfb\\x07\\xb5\\x81\\xfa\\x0d\\x42\\\r\n\\x2a\\x7e\\x37\\x23\\x9a\\x22\\x57\\x17\\x45\\x13\\xd9\\x4e\\x43\\xd4\\xfa\\x8f\\\r\n\\x6f\\x4f\\x5d\\x54\\x54\\x09\\x27\\x63\\x7c\\x69\\xe2\\x38\\xf2\\xa9\\x22\\xb8\\\r\n\\x2d\\x8d\\xc6\\x44\\xbf\\x61\\x8d\\xac\\x3b\\xde\\xfa\\xc5\\xbd\\x06\\xc7\\xe9\\\r\n\\xae\\xab\\x6f\\xdf\\x5c\\xb8\\x52\\xc7\\xd6\\x4b\\x76\\xfa\\x0f\\x73\\xaa\\x98\\\r\n\\x32\\x91\\x56\\x48\\x26\\x49\\xb0\\x04\\xb1\\x0e\\x85\\x4e\\x38\\xf6\\x73\\x7d\\\r\n\\x8f\\x65\\xee\\x75\\x85\\x3c\\x46\\x57\\xa8\\xb9\\x6a\\xb6\\x2b\\x90\\xf3\\x5e\\\r\n\\x2c\\x7b\\x81\\xb8\\x19\\x6f\\x95\\xbb\\x6a\\xc0\\x5c\\xe3\\xef\\xb7\\x7d\\x04\\\r\n\\x6b\\x5f\\x62\\x7d\\x74\\x6d\\xed\\x65\\x27\\x60\\x00\\xf6\\x3e\\x9f\\x41\\xa1\\\r\n\\x2d\\x42\\xb4\\xa6\\xe7\\x96\\x02\\xb3\\x64\\xfb\\x9c\\x42\\x28\\x62\\x49\\xf7\\\r\n\\xd4\\x93\\xd6\\xa5\\x37\\x0e\\x8c\\xb5\\xa3\\xf1\\xb5\\x50\\x43\\x6a\\x74\\xf2\\\r\n\\xfc\\x05\\x63\\x35\\x80\\xef\\x78\\xfb\\xfa\\x5f\\x4f\\xe2\\xb8\\xee\\x6f\\x8f\\\r\n\\x93\\x85\\x51\\xc9\\x34\\x9f\\xf0\\x49\\x54\\xd4\\x89\\x91\\xf4\\x22\\xfa\\x57\\\r\n\\xa8\\xe1\\xdc\\x4e\\xa6\\x25\\xb3\\xf3\\xfe\\xd0\\x71\\x8c\\x2e\\x7d\\xd3\\x87\\\r\n\\x70\\xd8\\xa3\\x6b\\x5b\\xd1\\xab\\x7f\\x5d\\x08\\x7e\\xcc\\x70\\x2e\\x15\\x4d\\\r\n\\x50\\x76\\x15\\x8b\\x43\\x16\\x6b\\xf5\\x8e\\x49\\xb9\\xf5\\x5f\\x95\\xea\\x0e\\\r\n\\xb8\\x6d\\x15\\x7f\\x10\\xa9\\x9a\\x51\\x4b\\xe3\\xaa\\x83\\x4a\\xd6\\x0f\\x56\\\r\n\\x6f\\x0c\\x24\\x03\\xb2\\xc5\\x4e\\x88\\x44\\x64\\x6c\\x64\\x3b\\x6f\\xa5\\x68\\\r\n\\xa3\\x2c\\x39\\xeb\\x1e\\x5d\\x97\\x36\\x37\\x02\\xe7\\x62\\xfe\\xc3\\xfa\\x6a\\\r\n\\x8a\\x4e\\x2b\\x47\\x4e\\x27\\xa3\\x66\\x8d\\x0b\\x26\\x25\\xa2\\x5d\\xb7\\xb7\\\r\n\\x2c\\x8e\\x9d\\xc1\\xec\\xc4\\x5f\\x11\\xb6\\xa3\\x13\\x34\\x6b\\x80\\x55\\x44\\\r\n\\x43\\xba\\xed\\x60\\x00\\xea\\xef\\x6e\\xfe\\xdb\\xfa\\x6a\\xa6\\x3f\\x0c\\xfc\\\r\n\\xb7\\x50\\x79\\x90\\xc7\\x9c\\xc7\\xac\\x1b\\xee\\xaa\\xaa\\x55\\xad\\x8e\\xf7\\\r\n\\x3b\\x9d\\x54\\xf8\\x61\\x3d\\x50\\x8f\\x0c\\xcb\\x2c\\x31\\x88\\x9a\\xc4\\x08\\\r\n\\xde\\x44\\x0b\\x0d\\xd8\\xae\\x3c\\xa5\\xcc\\xdd\\xbb\\xd8\\xee\\xf2\\xf8\\xa2\\\r\n\\xcb\\x9c\\xf1\\xb6\\x08\\xf1\\x63\\x3c\\x0a\\xb2\\x72\\xc1\\x64\\xcf\\x21\\x19\\\r\n\\x32\\xb1\\x64\\x50\\x23\\xe5\\xc9\\xd9\\xd5\\x85\\x1d\\x30\\xae\\xa8\\x8a\\x6a\\\r\n\\x99\\x22\\x6e\\x77\\x35\\xa4\\x13\\x45\\xcd\\x55\\x93\\x9d\\x18\\xbc\\x6a\\xb4\\\r\n\\xcc\\x21\\x3c\\xb9\\x33\\xe6\\x9c\\x9a\\xe8\\xa8\\x2f\\x32\\x42\\xaa\\x28\\xa9\\\r\n\\x63\\x4a\\x24\\x18\\x66\\x21\\x11\\xc6\\xb2\\x31\\x93\\xd5\\x51\\x85\\xa9\\x7a\\\r\n\\x7f\\xd9\\x47\\xef\\xd3\\xc1\\x78\\x85\\xda\\x1a\\x7a\\xb6\\xe2\\x74\\x95\\x90\\\r\n\\x46\\x6d\\x27\\x42\\x47\\x2a\\xfc\\x65\\x2c\\x55\\x64\\x8a\\x58\\x83\\x0d\\x9d\\\r\n\\x5f\\x70\\xca\\x57\\x5c\\x4e\\xa5\\x64\\x92\\x2a\\x4a\\x19\\xa2\\x68\\xa9\\xa3\\\r\n\\xb2\\x42\\xf5\\x6d\\x17\\x3e\\x58\\x72\\xb5\\xd6\\x08\\xb2\\x8e\\xf8\\xf5\\xf7\\\r\n\\xdc\\x76\\xd4\\x0f\\x1b\\xf4\\x54\\x2b\\xf2\\xdc\\xae\\x2b\\xce\\x8f\\xa1\\xb3\\\r\n\\x5b\\xf4\\xc8\\x62\\x11\\xb2\\x33\\x75\\x95\\x6c\\xb6\\x07\\x50\\xf2\\xd8\\xac\\\r\n\\xaf\\x3c\\x6f\\x95\\xb7\\x0b\\x4f\\x28\\x29\\xff\\x00\\x3c\\xeb\\x91\\xf7\\x58\\\r\n\\x97\\xd1\\xf5\\xc4\\x1a\\xc3\\x93\\x51\\xc3\\x6a\\x78\\x9c\\x7f\\x2a\\xe1\\x51\\\r\n\\x4a\\xed\\x16\\x3f\\xf9\\x75\\x6c\\xb1\\xfe\\x6a\\x75\\xf6\\x6f\\xc0\\x47\\x9c\\\r\n\\x9c\\x9a\\xfa\\x76\\x66\\x6c\\x55\\x56\\x2e\\x25\\x2b\\x8c\\x89\\xf4\\x55\\x9f\\\r\n\\xfc\\xb4\\xf5\\x2f\\x13\\xd6\\x54\\xb8\\x0c\\x82\\x86\\x51\\x9a\\x30\\x5d\\xba\\\r\n\\x5f\\x97\\xd3\\xb7\\xb9\\x66\\xf4\\x50\\x34\\x0d\\x47\\x33\\x98\\x7e\\xf0\\x48\\\r\n\\xbc\\xb9\\xa1\\x17\\xda\\xf7\\x02\\xff\\x00\\x50\\xdf\\xcf\\x7d\\x64\\xad\\x60\\\r\n\\x05\\xb2\\x07\\xdf\\x56\\x79\\x58\\xdd\\x82\\x9f\\xe7\\xff\\x00\\x4f\\x5d\\x45\\\r\n\\x3c\\x2c\\xd9\\x0f\\x44\\x3b\\x9f\\xcf\\xd4\\x7e\\x9d\\xf4\\x20\\xaa\\x82\\x64\\\r\n\\x7d\\x94\\xe3\\x27\\x43\\x7a\\x67\\xb8\\x07\\x33\\xf5\\x26\\xf7\\xef\\xab\\x2e\\\r\n\\x78\\xb8\\xec\\x08\\xfe\\xb8\\xdc\\xfd\\x0e\\x9b\\xa0\\x94\\xb6\\xd7\\xb7\\x7f\\\r\n\\x4f\\xfb\\x20\\x69\\xdb\\x16\\x5f\\xc8\\x77\\xfa\\x5f\\x50\\xf3\\x3e\\x15\\x77\\\r\n\\x31\\x5e\\x16\\xfe\\xd8\\xc6\\x97\\x32\\x6e\\x37\\xc0\\x02\\xbb\\x37\\xcc\\x46\\\r\n\\x3e\\xba\\x47\\x96\\x48\\x9b\\xc5\\x21\\x2a\\x33\\x05\\x94\\x9e\\xdc\\xd4\\x3b\\\r\n\\x79\\xc6\\x5d\\xf6\\xf5\\xef\\x6d\\x73\\xa3\\x74\\x79\\x09\\x16\\xb5\\x9b\\xbf\\\r\n\\x70\\x00\\xed\\x61\\xaa\\x6a\\x83\\x21\\x59\\xa3\\xa9\\xac\\xa7\\x8e\\xdb\\x60\\\r\n\\x1e\\x8f\\x98\\x0e\\xdf\\xef\\x82\\x63\\xea\\x37\\xd5\\x3b\\x71\\x11\\xe1\\xa1\\\r\n\\xab\\x48\\xe9\\xe5\\x97\\x3c\\x79\\x75\\x13\\xc5\\x72\\xc3\\xd5\\x23\\x75\\xb3\\\r\n\\x5f\\xfb\\x27\\x07\\x7d\\xb6\\xe2\\x6b\\x94\\x53\\x45\\x52\\x26\\xf0\\xcc\\x7e\\\r\n\\xf2\\x4e\\x63\\x3a\\xa8\\x59\\xb1\\xb0\\x79\\x22\\x5b\\x9c\\x32\\xca\\x4e\\x58\\\r\n\\x36\\xd7\\x0b\\xe2\\xbc\\xc9\\x19\\x2a\\xf8\\x47\\x04\\xab\\xa9\\x6b\\x8d\\xe4\\\r\n\\xe1\\xb1\\xd4\\x51\\xd6\\xab\\x1d\\x89\\x2e\\xfc\\x3d\\x2f\\xff\\x00\\x9e\\x6e\\\r\n\\x34\\xb5\\xfc\\x26\\x71\\x4b\\xc4\\x24\\x49\\x8c\\xb4\\xdf\\xf8\\x6a\\xf5\\x6b\\\r\n\\xbb\\x3a\\xc6\\x7a\\x56\\xa7\\x6b\\x4b\\x1f\\x4f\\x35\\x40\\x60\\x44\\xb1\\x8b\\\r\n\\xbd\\x40\\x82\\x38\\x78\\xf5\\x15\\xdf\\x94\\x2c\\x1e\\xa5\\x13\\xcf\\x1c\\x72\\\r\n\\x79\\xa4\\x1e\\xb1\\x87\\xb9\\x8d\\xec\\x1b\\xa1\\xf2\\x69\\x38\\x6b\\x83\\xd4\\\r\n\\xe2\\x58\\x1d\\xc5\\xb0\\xa8\\x8c\\x94\\x31\\x49\\xea\\xb9\\x2d\\xd4\\x5f\\x6c\\\r\n\\x8f\\x7d\\x4d\\x4e\\xf9\\x8a\\xba\\x76\\x69\\x69\\x7d\\x48\\x7a\\x35\\x33\\xba\\\r\n\\x1b\\x6e\\xb7\\x8c\\x1f\\xd5\\x6d\\xea\\x35\\x1f\\x10\\x8c\\x74\\xf1\\xce\\x07\\\r\n\\xc3\\xeb\\xcf\\xa6\\x66\\xae\\x9a\\x95\\xa4\\xdc\\x76\\x61\\x50\\x6a\\x10\\x9f\\\r\n\\x4c\\x7e\\x9a\\xab\\x58\\x7c\\x41\\x48\\xe8\\xe6\\x80\\xad\\x40\\x19\\xa4\\xac\\\r\n\\xe8\\x6c\\x4a\\x6c\\x51\\x8a\\x9e\\x5b\\xdb\\xaa\\xce\\x3d\\x17\\x55\\xd8\\xba\\\r\n\\x53\\x7c\\x68\\xea\\xf2\\x9d\\xb1\\x8e\\x12\\x91\\xb4\\x72\\x2b\\x31\\x23\\x6c\\\r\n\\xae\\xbd\\x89\\xed\\xb7\\x7b\\x5f\\xf6\\x9d\\x26\\xfb\\xed\\x53\\x15\\xbf\\x4f\\\r\n\\x89\\xdb\\xdb\\x5c\\xb8\\x05\\x3c\\x2f\\x3d\\x48\\x15\\x0d\\x2c\\x26\\x5b\\xf2\\\r\n\\xc4\\x6d\\x9e\\x6c\\x8d\\x37\\x4b\\x1e\\x53\\xe5\\x0f\\xc3\\xb9\\xe5\\x63\\x93\\\r\n\\x03\\xfb\\x3a\\x3c\\x53\\x15\\xe6\\x4a\\x6e\\xe2\\x24\\xe9\\x55\\x69\\x00\\x98\\\r\n\\x97\\xe6\\x48\\xaa\\x36\\xfa\\xdc\\xef\\x7d\\x4e\\x29\\xfe\\xea\\x9a\\x09\\x65\\\r\n\\x8a\\x4d\\xcc\\x51\\x00\\xd8\\xe6\\xf6\\xb0\\xbc\\x97\\xb2\\xb7\\x6b\\xf5\\x00\\\r\n\\x40\\xd4\\x79\\x8c\\xad\\xb5\\xd7\\xdf\\xeb\\xff\\x00\\xae\\x81\\x3e\\xe0\\xe9\\\r\n\\xbb\\x76\\xff\\x00\\xbb\\x68\\xdc\\x90\\xa0\\xfa\\xdf\\x6f\\xfd\\x34\\xd1\\x84\\\r\n\\xba\\xf7\\x32\\x7f\\xd3\\x50\\xc0\\x93\\xca\\xa6\\x36\\xe6\\x48\\x8a\\x4a\\x82\\\r\n\\xac\\x2d\\xf1\\x3f\\x16\\xfd\\x4b\\xe9\\x6d\\x47\\x71\\xfa\\xff\\x00\\x98\\xd7\\\r\n\\x31\\x8f\\xe5\\xa9\\xe4\\x2d\\x18\\x0c\\xc3\\x95\\x8d\\xf2\\x11\\x8b\\x64\\x1e\\\r\n\\xfe\\xb7\\x1e\\x83\\xb6\\xac\\xee\\x76\\xb6\\xc9\\x1f\\x71\\xfd\\xe6\\xd1\\x92\\\r\n\\x7a\\xd8\\xe9\\x22\\xe5\\xb3\\x61\\x33\\x8e\\x6c\\x88\\x83\\xac\\x46\\x99\\x64\\\r\n\\xdf\\xf0\\xfa\\x9d\\x4f\\x4a\\x81\\xe1\\x80\\xb3\\x2a\\x39\\xb0\\x7b\\x76\\x0c\\\r\n\\xe8\\x3b\\x83\\xec\\x0f\\x6d\\x1a\\xd4\\x9a\\x95\\xe3\\x0e\\xb1\\xc5\\x27\\x34\\\r\n\\xc9\\x3c\\xd7\\x1b\\x72\\xe3\\x3f\\x76\\xa8\\xbd\\xff\\x00\\x0e\\xb2\\x92\\x67\\\r\n\\x61\\xec\\xc7\\xfc\\xb5\\xc3\\x20\\xe7\\x49\\x34\\xb5\\x93\\xaf\\x2d\\x61\\x4c\\\r\n\\xed\\x02\\x1c\\xa7\\x2e\\xb9\\x87\\x59\\x15\\x63\\x90\\x8e\\xf1\\xe2\\x37\\x37\\\r\n\\x38\\x8e\\x2b\\xc5\\xab\\xc5\\xde\\xb6\\xa6\\x6f\\x07\\x4e\\x87\\x04\\xa7\\xa3\\\r\n\\x4f\\xdd\\xa9\\x87\\x44\\xc4\\x73\\x3c\\x3c\\x48\\xed\\x1c\\x8a\\x30\\x2d\\x6e\\\r\n\\xf6\\xd4\\x71\\x37\\xc6\\x58\\x66\\x92\\xa8\\x41\\x23\\xe7\\x79\\xdf\\x97\\x67\\\r\n\\xcf\\x24\\x63\\x80\\x8e\\xca\\x86\\xe3\\xad\\xef\\x70\\x74\\x71\\xb4\\x70\\x22\\\r\n\\x12\\x17\\x65\\x62\\xaa\\x3e\\x63\\xfe\\x1d\\xb6\\xd7\\x21\\xa5\\x58\\xf7\\x16\\\r\n\\xb4\\xea\\x47\\x55\\x94\\x10\\x06\\xe3\\xb7\\xad\\xad\\xed\\x6d\\x0e\\x08\\xb5\\\r\n\\x67\\x9d\\x20\\x99\\x4a\\x48\\x1b\\x03\\xc8\\x8f\\x9d\\x29\\xf9\\x6e\\xe6\\x21\\\r\n\\x39\\x8c\\x1e\\x96\\x29\\xb9\\x0c\\xea\\x1a\\x3a\\x4a\\xa9\\x68\\x1f\\x85\\xf1\\\r\n\\x58\\xb9\\xd3\\xe4\\x52\\x58\\x23\\xa7\\x7e\\xb9\\x5a\\x0a\\x74\\x57\\x2c\\xf4\\\r\n\\x70\\x53\\xce\\xcf\\x95\\xa3\\x9a\\x29\\x63\\x0a\\xea\\xf2\\x64\\x28\\xe7\\x9b\\\r\n\\x1a\\xda\\x61\\x57\\x51\\x1c\\x92\\xc3\\x94\\x4e\\xd1\\x40\\x2a\\xa1\\xe6\\x3d\\\r\n\\x3e\\xf1\\xbc\\x42\\x90\\x72\\xe6\\x69\\x49\\x1f\\xbc\\x07\\xe6\\x2c\\x31\\xac\\\r\n\\x7a\\xe2\\x5c\\x52\\x3b\\x8a\\x0a\\x0a\\x45\\x8a\\x99\\xda\\xf6\\x76\\xab\\x62\\\r\n\\x14\\x1f\\x55\\x9a\\x38\\xa1\\x61\\x2e\\x77\\x3c\\xc6\\x2c\\x02\\xf5\\x64\\xe8\\\r\n\\x80\\x99\\x27\\x90\\x45\\x14\\xdb\\x39\\x95\\x2e\\xb7\\xc9\\xc7\\x5a\\xb2\\xa5\\\r\n\\xd6\\x54\\x93\\xf8\\x2c\\x6c\\x79\\x51\\xf1\\xc8\\x56\\x40\\x65\\xe1\\x3c\\x48\\\r\n\\x55\\xc4\\x2e\\x6f\\xc8\\x92\\x46\\xa5\\xa8\\x8e\\xe5\\x77\\x72\\x66\\xa3\\xed\\\r\n\\x70\\x79\\x62\\xe7\\x5e\\x0e\\x10\\x1f\\x88\\xd6\\x54\\xcf\\x23\\xbd\\xf2\\x55\\\r\n\\x32\\xc9\\x9c\\x93\\x31\\xff\\x00\\x67\\x12\\xe3\\x18\\xf4\\x38\\xa2\\x7d\\x35\\\r\n\\x55\\xc1\\xaa\\x78\\x8a\\x3d\\x45\\x74\\xa6\\xa2\\x9d\\x59\\xb3\\xaa\\x8a\\xad\\\r\n\\x14\\xf3\\x64\\x60\\x89\\x8c\\x70\\xcd\\x1e\\xc1\\x72\\xc8\\x8b\\x37\\xa5\\x96\\\r\n\\xa1\\x9e\\x29\\xd8\\x47\\x15\\x6c\\x14\\x9d\\x5c\\x97\\x59\\xe9\\x21\\x3c\\x95\\\r\n\\x96\\xea\\xd7\\x30\\x0e\\x59\\x65\\x36\\x2f\\x72\\x09\\xef\\xaa\\xc9\\x93\\x97\\\r\n\\x1c\\xb4\\x8a\\x78\\x64\\x75\\x3c\\xc1\\x69\\x21\\xa8\\xae\\xa4\\xac\\x90\\x12\\\r\n\\x3e\\x58\\x04\\x35\\x36\\xde\\xc4\\x3e\\x3b\\x6b\\x86\\x52\\xf0\\x65\\x8e\\x59\\\r\n\\x24\\x9e\\xbd\\x5a\\xb2\\x41\\x90\\x89\\xe2\\x6a\\x56\\x72\\xa9\\xd3\\x7b\\xbc\\\r\n\\xbd\\xaf\\x61\\x6f\\x53\\xbe\\xb9\\x7c\\x42\\x92\\x9e\\xa6\\x0c\\xac\\x65\\x82\\\r\n\\xf1\\xc9\\xb0\\xbd\\xec\\xc5\\x94\\xfe\\x47\\x13\\xa0\\x63\\xc0\\xcd\\x61\\xe9\\\r\n\\x8c\\xa8\\x4f\\x65\\x61\\xdf\\xf4\\x37\\x53\\xe9\\xa3\\x20\\xb7\\x24\\x05\\x6f\\\r\n\\x5f\\xa0\\xff\\x00\\x0d\\x2f\\x2d\\xb7\\xda\\xf6\\xfa\\x7f\\xe9\\xa5\\x77\\xb5\\\r\n\\xb0\\x23\\x7d\\xef\\xbd\\xaf\\xfa\\x8d\\x08\\xe9\\xd3\\x97\\x22\\x59\\x87\\xb3\\\r\n\\xc6\\xd7\\xdc\\x1f\\x5c\\x0e\\xde\\xfa\\x2d\\x12\\x9e\\x54\\x64\\x07\\xbf\\x94\\\r\n\\x2b\\x0d\\xc7\\xeb\\xf4\\xfc\\xf4\\x2d\\xd3\\xf8\\x83\\x7f\\x5d\\x1c\\x6c\\xd6\\\r\n\\xcf\\x01\\x90\\x55\\x2c\\xbe\\x97\\x3b\\x5f\\xb5\\x85\\xc6\\x5e\\xfa\\x9e\\xaa\\\r\n\\x86\\x69\\x1e\\xb6\\x03\\x94\\xdc\\x32\\x63\\x69\\x42\\x85\\xc6\\x5f\\x0a\\x1b\\\r\n\\x77\\x5e\\x95\\x22\\x25\\xec\\x43\\x62\\xcd\\x95\\xb5\\x84\\xbc\\x1f\\x88\\x4b\\\r\n\\x15\\xca\\x32\\xa5\\x3c\\xca\\xe0\\x5f\\xcd\\x1b\\x61\\x6c\\xd7\\xba\\xde\\xea\\\r\n\\x7b\\x1d\\x8d\\xf5\\x18\\x8a\\x19\\x1a\\x0a\\x83\\x15\\xa4\\x9e\\x9a\\x61\\x1a\\\r\n\\x45\\x23\\x10\\xfe\\x36\\x10\\x8f\\x24\\x06\\x1f\\xed\\x7a\\x09\\x03\\xae\\x22\\\r\n\\xda\\x14\\xbc\\x46\\x2e\\x42\\xc8\\xd0\\xd7\\xd3\\x4d\\x4b\\x29\\xad\\xa1\\xa9\\\r\n\\x59\\x23\\xe8\\xf0\\xd5\\x38\\x2a\\x91\\x2f\\x95\\xa0\\x9c\\x2c\\xe8\\x6d\\x75\\\r\n\\x3b\\x13\\x0f\\x0e\\x52\\x0d\\x35\\x32\\x20\\xa7\\x85\\x1d\\x9b\\xad\\xea\\x22\\\r\n\\x33\\xdc\\xd8\\x65\\x33\\xc5\\x9b\\x49\\x8f\\x48\\xb6\\x2a\\xdd\\x37\\xd5\\x27\\\r\n\\x0e\\x96\\x1f\\x84\\xd4\\xd4\\x75\\xdc\\x3a\\xa1\\x5e\\x45\\xe4\\x4f\\xcb\\x26\\\r\n\\x23\\x21\\xcf\\x26\\x83\\x20\\x63\\x24\\xdc\\x20\\x54\\x2c\\xac\\x72\\x3a\\x99\\\r\n\\x9e\\x11\\x48\\xd4\\x95\\xb5\\x31\\x53\\xbc\\xce\\x9c\\x94\\xa4\\xe2\\x74\\xcb\\\r\n\\x58\\xb9\\x4a\\x2e\\xa1\\x29\\xaa\\x85\\x54\\x6c\\xa3\\xb5\\xbb\\x75\\x01\\xa9\\\r\n\\x16\\x89\\x8f\\x8d\\x8e\\x7e\\x6c\\x75\\x31\\x97\\x8e\\x9e\\x50\\x17\\x76\\x86\\\r\n\\x22\\x41\\x8c\\xb3\\x79\\x97\\xd4\\x75\\x0b\\x03\\x88\\x82\\xa6\\x38\\xe0\\x8f\\\r\n\\x89\\xc3\\x55\\x1b\\x49\\x9d\\xd3\\x9a\\xea\\x40\\x70\\x24\\x1b\\xa7\\x32\\x32\\\r\n\\x5d\\x37\\xc1\\xce\\x51\\x35\\xd6\\xd6\\xfd\\xaa\\x94\\xd2\\x52\\x4f\\xcd\\x78\\\r\n\\x78\\x8c\\x30\\x32\\x11\\x0d\\x50\\x3b\\x93\\x13\\x29\\x0d\\x15\\x47\\x98\\x7f\\\r\n\\x1e\\x4a\\x77\\xd5\\x2b\\xe5\\xcb\\x33\\x32\\x45\\x2a\\xb8\\xc3\\x98\\xb2\\x7c\\\r\n\\x1c\\x94\\xee\\x0b\\x05\\x93\\xf5\\x03\\xdc\\x6f\\xc0\\x1c\\x9c\\xde\\x89\\x78\\\r\n\\xbf\\x04\\x72\\x77\\x1f\\xb8\\xd6\\xf8\\xca\\x6c\\x7e\\x86\\x0e\\x21\\x65\\xfa\\\r\n\\x25\\x80\\xdb\\x55\\xd1\\x55\\xcb\\x9d\\x24\\xb4\\xf5\\x34\\xea\\x3a\\x7e\\x18\\\r\n\\xc5\\x6b\\x62\\xcd\\x76\\x36\\x01\\x0d\\xb6\\xbf\\x57\\xb1\\xd5\\x6c\\x69\\x1b\\\r\n\\xc4\\x93\\x99\\x1a\\x68\\xed\\x72\\x86\\x1a\\x83\\x97\\x6f\\x44\\x96\\xd7\\x2a\\\r\n\\x7b\\x6f\\xeb\\xac\\x79\\x47\\xa7\\x6f\\x2d\\xfb\\x6d\\xdf\\xd7\\x52\\xf1\\x1a\\\r\n\\x76\\xad\\x90\\xf2\\x67\\x82\\x23\\x5b\\xb1\\x6c\\xaf\\x93\\xab\\x7d\\xe2\\x81\\\r\n\\x61\\x76\\xc8\\x6c\\xa0\\x01\\xa1\\xc3\\x68\\xf3\\xa8\\xce\\x73\\x8c\\x8e\\x5b\\\r\n\\xe2\\x85\\x45\\xca\\x49\\x49\\xdf\\x93\\x15\\x98\\x8f\\xc5\\xb5\\x81\\x36\\x1a\\\r\n\\x80\\xf1\\x1a\\x90\\x92\\xcc\\xd9\\xb4\\x76\\x91\\x24\\xa8\\x1b\\x16\\x7a\\x9e\\\r\n\\x57\\x58\\x55\\xdd\\x62\\xa6\\x25\\x46\\xc3\\x22\\xa4\\x65\\xa8\\x9a\\x9e\\xb2\\\r\n\\x3a\\x94\\x91\\x94\\xd9\\x71\\x1c\\xa2\\xca\\x2d\\x0b\\x22\\xb3\\x60\\x55\\x6d\\\r\n\\xb3\\x1c\\xbd\\xef\\xdc\\x8c\\x46\\x3d\\xb5\\xcb\\x63\\xb9\\xbd\\xaf\\xac\\xcf\\\r\n\\xad\\xc9\\xfe\\x7b\\x6b\\x99\\x9b\\x35\\xb6\\x09\\x7c\\x72\\x63\\xb0\\x16\\xda\\\r\n\\xe4\\xde\\xdf\\xe5\\xa9\\xa7\\x9c\\x8e\\x60\\x2a\\x5a\\x4f\\x94\\x0b\\x58\\x06\\\r\n\\x3e\\xd6\\x00\\x6f\\xfa\\x6a\\x10\\xe0\\x16\\x2b\\x76\\xb6\\xe3\\xfe\\x1f\\xfa\\\r\n\\xe8\\xdc\\x76\\xd6\\x77\\xb0\\xdc\\xf5\\x6a\\xa3\\x87\\xf0\\xca\\x09\\xa5\\x93\\\r\n\\x12\\xad\\x55\\xcc\\x11\\xc2\\x99\\xae\\xd8\\x72\\xb2\\x90\\xba\\x93\\x73\\x7c\\\r\n\\x7e\\x87\\x48\\x38\\xa5\\x65\\x5d\\x53\\x44\\x65\\x58\\xda\\x79\\xde\\x4c\\x2f\\\r\n\\x89\\x38\\x82\\x76\\x07\\xdb\\xe9\\xac\\x86\\xe7\\xea\\x4e\\xdb\\xea\\x38\\xec\\\r\n\\xd9\\x64\\x58\\xb1\\x6e\\x91\\x7f\\xc2\\x3f\\xc7\\xf4\\xff\\x00\\xe1\\xc4\\xf8\\\r\n\\xdc\\x92\\x2f\\xee\\xd4\\xed\\x49\\x49\\x10\\xcf\\x9c\\x92\\x54\\x9b\\x3c\\xa3\\\r\n\\x24\\x11\\xed\\x0a\\x30\\x4c\\x59\\xfc\\xc7\\x30\\xbb\\x64\\x29\\xd2\\x49\\xe4\\\r\n\\x70\\x4b\\x73\\x24\\xed\\xd7\\xbb\\xdc\\xa2\\x58\\xef\\xd5\\x76\\x19\\x77\\x3e\\\r\n\\xba\\xa9\\xad\\xaf\\x62\\xd2\\x96\\xb4\\x61\\x24\\x93\\xee\\xcf\\xe2\\x56\\xe8\\\r\n\\x7e\\xde\\x6c\\x07\\xa7\\xb6\\xb1\\x87\\x85\\x4f\\x2d\\x3a\\x9c\\x31\\xa6\\x9d\\\r\n\\x5e\\x57\\xcf\\xa7\\x0b\\x06\\xbc\\x79\\xde\\xd6\\xef\\x6e\\xc0\\x77\\xd4\\xd0\\\r\n\\xd2\\x51\\x45\\x0d\\x5f\\x8c\\xa7\\x8a\\x25\\x8a\\x64\\x3c\\xaf\\x25\\x3b\\xde\\\r\n\\x66\\x55\\x8e\\x18\\xcb\\xcd\\x13\\x90\\xa0\\xf5\\xb8\\xbb\\x1b\\xa9\\x14\\x0f\\\r\n\\x15\\x40\\xf1\\xd5\\x8d\\x59\\x43\\x4c\\xa1\\xd2\\x54\\xe7\\x0a\\x67\\x49\\x24\\\r\n\\x66\\x72\\x23\\x78\\x31\\x2d\\xca\\x1b\\x82\\x02\\x5f\\x3c\\xed\\xaf\\xb5\\xf4\\\r\n\\x55\\x35\\x2c\\x1c\\x52\\x57\\xcb\\x48\\xd5\\x57\\x96\\x97\\x16\\x46\\x47\\x34\\\r\n\\xb9\\x9c\\x47\\x23\\xf6\\x74\\xb3\\x22\\x28\\xc1\\x95\\xa4\\x8c\\x30\\x54\\x4b\\\r\n\\xc5\\x35\\x7a\\x3d\\x4c\\x6c\\x2a\\xa1\\x9a\\x5b\\xa8\\x96\\x97\\xc3\\xcb\\x1a\\\r\n\\x73\\x4b\\x82\\x51\\x21\\xa9\\x57\\x13\\x4c\\xc2\\xf1\\x81\\x2c\\xae\\x71\\x48\\\r\n\\x6a\\x19\\x61\\xa5\\xe4\\xf8\\x2f\\x16\\x1a\\x79\\x02\\x62\\xee\\x44\\x44\\x2c\\\r\n\\x44\\x88\\x85\\x9e\\x36\\x1d\\x47\\x15\\xb6\\x13\\x97\\x6d\\xcb\\x36\\x8c\\x0c\\\r\n\\x65\\x5b\\x40\\x2b\\x8c\\x54\\xf1\\x17\\x93\\x19\\x7a\\x72\\xc8\\x74\\x2d\\xb0\\\r\n\\x4f\\xa1\\x39\\x77\\xd1\\xa7\\xe1\\xd0\\x55\\xf0\\xc1\\x5f\\x3d\\x4c\\x05\\xab\\\r\n\\x9b\\x29\\x6a\\x26\\x77\\xf8\\x6a\\xd1\\x9b\\x2a\\x89\\xa7\\x86\\x30\\x2d\\x6b\\\r\n\\x02\\xa4\\x2e\\xc6\\xe9\\xc3\\xe9\\x78\\x74\\xd2\\xd7\\x54\\x4e\\x28\\xf1\\x12\\\r\n\\x2a\\xcd\\x21\\x32\\x72\\xd6\\x25\\x88\\x46\\x5b\\x67\\xc8\\x79\\xf7\\x24\\x0b\\\r\n\\x0b\\x13\\xa8\\x38\\x94\\xd1\\xc9\\x41\\x51\\x51\\x41\\xc3\\xe9\\xa9\\xa5\\x40\\\r\n\\x1b\\x19\\x3c\\x36\\x15\\x3c\\xb5\\x5b\\xae\\x51\\x43\\x4d\\xca\\x94\\x85\\xdd\\\r\n\\xa7\\x1b\\xdd\\xaf\\xaa\\x9a\\xc3\\x24\\x53\\xc5\\x5b\\x9b\\xc8\\xc3\\xa1\\xe9\\\r\n\\xeb\\x0c\\x72\\x41\\x2c\\x88\\x3d\\x0c\\xb0\\xb8\\x72\\x3b\\xe4\\x3b\\x6a\\x7a\\\r\n\\x07\\x8d\\xda\\x8e\\x6e\\x38\\x78\\x74\\x6f\\x3b\\xf2\\xe7\\x11\\xc3\\x48\\xca\\\r\n\\xd5\\x4c\\x40\\x5b\\xa8\\x7a\\xa8\\x99\\x5f\\xc8\\xb6\\xda\\xf8\\xea\\x83\\xed\\\r\n\\x55\\x6d\\x7d\\x35\\x31\\xa5\\xe2\\x15\\xb1\\x25\\x04\\xc1\\xb9\\x95\\x71\\x54\\\r\n\\x56\\x72\\x92\\x6a\\x79\\x83\\x1c\\xe4\\x93\\xc3\\xf3\\x12\\x2e\\x58\\x06\\x0f\\\r\n\\x8b\\xcd\\x17\\x03\\x52\\x79\\x47\\xcc\\x09\\xfc\\x4a\\x7b\\x1f\\xef\\x0b\\x80\\\r\n\\x37\\x27\\xdb\\x46\\xa2\\x56\\xb4\\x97\\x7e\\x61\\x97\\x11\\xbc\\x6d\\xb5\\x87\\\r\n\\xe4\\x41\\xd3\\xc5\\x0d\\x8a\\x91\\xbd\\xff\\x00\\x08\\xd3\\x87\\xb1\\x56\\x27\\\r\n\\x00\\xdd\\x88\\xf4\\x3f\\x95\\xb4\\xd1\\xc2\\x14\\x66\\x15\\x6d\\x7b\\x8b\\xbf\\\r\n\\x6b\\x5b\\xea\\xa4\\x68\\x64\\x7b\\x8f\\x87\\xfa\\x6e\\xd1\\xff\\x00\\xc4\\xa7\\\r\n\\xb7\\xe2\\x51\\xa0\\xc0\\x9b\\x3f\\x50\\x03\\xe6\\x4b\\xee\\xa7\\xf2\\x3d\\xbd\\\r\n\\x74\\x72\\x2a\\x04\\x71\\x34\\x92\\x1b\\xfa\\x20\\xbf\\xe5\\x73\\xdb\\x52\\x1a\\\r\n\\x53\\x19\\xf8\\x4d\\x32\\xf4\\x07\\x42\\x60\\x60\\x93\\xae\\xfe\\xb8\\x30\\x61\\\r\n\\xeb\\x64\\x3a\\x65\\xe2\\xb0\\xc7\\x1d\\x54\\x4c\\xad\\x15\\x54\\x25\\xe2\\x20\\\r\n\\xa7\\x4e\\xed\\x1b\\x64\\x84\\x83\\xe6\\x21\\x85\\xbb\\xdb\\xb8\\x87\\x86\\xd4\\\r\n\\x0a\\xaa\\x7a\\x96\\x4b\\x25\\x57\\x88\\x29\\x2d\\x4a\\xc6\\x33\\x56\\xa7\\x96\\\r\n\\x31\\xcb\\x96\\x62\\x14\\x07\\x8e\\x68\\x56\\x46\\x8c\\x96\\x89\\xc5\\x8a\\x9e\\\r\n\\x6f\\x0d\\x9c\\x41\\x1d\\x2c\\xa2\\xa3\\x9d\\x56\\x12\\xa9\\x8c\\xd1\\x5e\\xcf\\\r\n\\xfb\\xea\\xce\\xa5\\xba\\x72\\xc7\\x07\\x6c\\x80\\xc5\\x72\\xb1\\xd5\\x74\\xbc\\\r\n\\x5a\\xaa\\xa2\\xab\\x8b\\xd3\\x4f\\x2f\\x12\\x92\\xaf\\x88\\x57\\x46\\xd0\\x25\\\r\n\\x2d\\x88\\x47\\x82\\x29\\x54\\x52\\xd3\\x43\\xeb\\x28\\x3c\\x9c\\x98\\xf9\\xd1\\\r\n\\x14\\x0d\\x54\\xd6\\xd3\\x4b\\x18\\xa5\\xaa\\xe3\\xa2\\x58\\x94\\x22\\x46\\xaf\\\r\n\\x4b\\x5d\\x50\\x25\\x4c\\x04\\x6d\\x24\\x42\\x23\\x99\\x44\\xe5\\xc8\\xe9\\xd3\\\r\n\\x6b\\xef\\xaa\\x01\\x57\\x4f\\x62\\x94\\xd5\\x94\\x4b\\x34\\x29\\x7b\\x49\\x41\\\r\n\\x50\\x62\\xf0\\xed\\xed\\xcd\\x86\\x5c\\xd5\\xcd\\x80\\x74\\x24\\x9d\\xc6\\xbe\\\r\n\\xd3\\x70\\x66\\x33\\x6f\\x04\\x95\\x94\\x52\\x4a\\xf6\\x6b\\xf0\\xd9\\x20\\x97\\\r\n\\x10\\xdd\\xb1\\x31\\xb4\\xa3\\x11\\x7e\\x8d\\xaf\\xa0\\xbe\\x16\\x67\\x90\\x28\\\r\n\\x39\\xc4\\xae\\xe9\\xf2\\xda\\xec\\x81\\xb1\\x6d\\xfb\\x1f\\x4e\\xf6\\xd2\\xac\\\r\n\\x82\\x67\\x92\\xa0\\xde\\x58\\xa3\\x5e\\x9a\\x48\\x82\\x9c\\x26\\x92\\x4f\\x95\\\r\n\\xc9\\xf9\\x6e\\x2c\\x2f\\xb1\\x2a\\xd6\\xab\\x8c\\x32\\xb8\\x96\\x28\\xe3\\x93\\\r\n\\x97\\x8c\\x69\\x51\\x0e\\x0b\\x30\\xaa\\x64\\x90\\xb7\\xef\\x71\\x5f\\x22\\x3b\\\r\n\\xbb\\x74\\x28\\xfb\\xb5\\xd4\\x99\\xc2\\xe6\\x4a\\x6a\\xac\\xc7\\x2e\\x61\\xd0\\\r\n\\x99\\x89\\x63\\x3c\\xbe\\x4e\\x45\\x00\\x20\\x02\\x08\\xed\\xf2\\xeb\\xed\\x3f\\\r\n\\x0e\\x00\\xb3\\x50\\xd7\\x41\\xc7\\x29\\x00\\x3b\\x18\\x4b\\xcb\\x43\\x50\\x00\\\r\n\\xb7\\x7c\\x6a\\xe8\\x99\\xf7\\xdf\\x95\\x7d\\xad\\xa7\\xe2\\x1c\\xa9\\xa6\\xf1\\\r\n\\xb1\\xc7\\x51\\xe2\\x9a\\x5c\\xa2\\xe5\\x56\\x5a\\x27\\x71\\x1a\\xc4\\x58\\x01\\\r\n\\x9e\\x36\\xcf\\x10\\xb8\\x8d\\x90\\x74\\xc7\\x57\\x24\\xb2\\xcb\\x03\\x4d\\x5b\\\r\n\\x43\\x29\\x7b\\x0e\\x54\\xe1\\x55\\xf1\\xb0\\x24\\x72\\xcf\\x4b\\xf7\\xcb\\x0e\\\r\n\\xa2\\x03\\x6a\\xde\\x1b\\xb7\\xf0\\xae\\x87\\x0b\\xa1\\x0c\\xd1\\xfc\\x3a\\x74\\\r\n\\xe5\\x0b\\xbc\\x8c\\xdd\\x02\\x14\\x23\\x6e\\xb7\\x3d\\x6d\\xef\\x7b\\xed\\xa4\\\r\n\\x92\\x5a\\x89\\x17\\x89\\xc9\\x11\\x6a\\xb9\\xbe\\xed\\x50\\xff\\x00\\xb1\\x80\\\r\n\\x6c\\xeb\\x15\\x30\\xec\\xec\\x7f\\x78\\x9c\\xf3\\x70\\x45\\x8e\\x3c\\xaa\\xd1\\\r\n\\xe4\\xa9\\x69\\xa8\\x1d\\xea\\x78\\x4f\\x8a\\x23\\x99\\x59\\x3a\\xa3\\x19\\xe9\\\r\n\\xb9\\xb9\\x93\\x32\\x38\\x19\\x8c\\x95\\x08\\x60\\xbb\\x69\\x7c\\x4d\\x6c\\xb1\\\r\n\\x89\\x44\\x8d\\xc8\\xb9\\xc2\\xaa\\x6f\\x96\\x36\\x5b\\x1f\\x28\\xb9\\xf9\\x48\\\r\n\\xc4\\x75\\x68\\x03\\xec\\x34\\x87\\xd4\\x7a\\xff\\x00\\x4d\\x62\\x3d\\x7b\\xe8\\\r\n\\x4f\\x6b\\xd9\\xd2\\x38\\x56\\xfd\\x19\\x37\\x76\\x20\\x6f\\x7b\\x5c\\xdc\\xec\\\r\n\\x2d\\xb0\\xd0\\x9a\\x9e\\x45\\x65\\x99\\x57\\x31\\xdc\\x07\\xf5\\x46\\xf4\\xba\\\r\n\\x9f\\x4f\\xd7\\x56\\xbb\\x11\\xb8\\x67\\x5b\\x72\\xd0\\x0e\\xdb\\x92\\x3b\\xfd\\\r\n\\x2f\\x7d\\x1b\\x06\\x98\\xda\\xf8\\xa0\\xcb\\xd3\\xd4\\xdc\\x0e\\xff\\x00\\x5d\\\r\n\\x63\\x20\\x31\\xa3\\x6e\\x23\\x06\\xc4\\x7b\\x07\\xfa\\xfe\\xa7\\x4e\\x56\\x00\\\r\n\\xc3\\x76\\x38\\xae\\x4c\\x3f\\x41\\xbe\\xff\\x00\\x4d\\x55\\x4d\\x07\\x0c\\xae\\\r\n\\x5a\\x68\\x07\\x31\\xe4\\x6a\\x49\\x95\\x0b\\xdf\\x13\\x8b\\x61\\x6e\\xc3\\x56\\\r\n\\x51\\xfd\\xed\\x1b\\x9e\\xfa\\xa2\\xa6\\x92\\x2a\\xa9\\x60\\x96\\x44\\x53\\xe0\\\r\n\\xca\\x09\\x91\\x72\\x03\\x3b\\x98\\x6a\\x06\\x3f\\xfd\\x26\\xd4\\x34\\x34\\x7e\\\r\n\\x29\\xd2\\xd7\\x66\\xab\\x9f\\x9d\\x3e\\x4d\\xde\\xe6\\xd8\\xfd\\x2c\\x22\\x41\\\r\n\\xf4\\x3b\\xeb\\xf7\\xa9\\x22\\x85\\x77\\xb1\\x9f\\x0e\\xae\\x9f\\x94\\xdb\\xb9\\\r\n\\x1f\\x2a\\x0c\\x8e\\xf8\\xdb\\xb6\\xbf\\x75\\xa8\\x3f\\x19\\x79\\x82\\x39\\xb6\\\r\n\\x47\\x0d\\xf7\\x44\\x06\\xb2\\x47\\x1f\\xbf\\xde\\xcb\\x9d\\x96\\xc1\\x03\\xbc\\\r\n\\x7f\\x0e\\x5a\\x83\\x2d\\x55\\x64\\x90\\x73\\x09\\x04\\xbc\\x85\\x0c\\x74\\xee\\\r\n\\xa1\\xb2\\x11\\xa4\\xcc\\xe3\\x96\\x98\\xb3\\x2b\\x3a\\x87\\x32\\x29\\x32\\x12\\\r\n\\x8b\\x54\\xb0\\xb5\\x35\\x35\\x0f\\x12\\x09\\x31\\x58\\x55\\xa9\\x6a\\x25\\xa5\\\r\n\\x86\\xb3\\x32\\x32\\x49\\x24\\x8a\\x71\\x2a\\x5d\\xee\\xd1\\xd4\\x5e\\x57\\xc1\\\r\n\\x8b\\x48\\x78\\x2b\\xf0\\xea\\x38\\xe9\\xa1\\xa2\\x54\\x2f\\x5b\\x0a\\xa2\\x54\\\r\n\\x17\\x7e\\x18\\xb4\\xcd\\x25\\x35\\xb1\\xe6\\xbb\\x54\\x56\\x48\\x24\\x1c\\xc8\\\r\n\\x88\\x6e\\x5c\\xea\\xdc\\xb9\\x2d\\xa8\\xe6\\x82\\xae\\x75\\x34\\xf5\\x83\\x87\\\r\n\\xb5\\x45\\x3d\\x3b\\x53\\x54\\xf2\\xeb\\x44\\x4d\\x22\\x32\\xe3\\xd1\\xfb\\xc4\\\r\n\\xb2\\x45\\x9f\\x37\\x28\\xe4\\xcb\\x98\\x6e\\x1b\\x3e\\x1d\\x41\\x4c\\xd9\\xd5\\\r\n\\x73\\x79\\x75\\x32\\x46\\xe8\\xf8\\xc1\\x50\\x92\\x44\\xb8\\x53\\x9b\\x93\\x65\\\r\n\\x92\\x41\\x24\\xb2\\x7d\\xee\\x15\\x0a\\x7c\\xf2\\x0d\\x56\\xc3\\x1b\\x7c\\x6e\\\r\n\\x1f\\xc9\\x82\\x28\\xed\\x1b\\x72\\xb9\\x19\\xc3\\x10\\x4f\\x53\\x60\\xad\\x91\\\r\n\\xcf\\xaa\\xe5\\x3d\\x40\\xd4\\xf4\\x31\\x43\\x4d\\xc9\\x5a\\x70\\x16\\x5c\\x18\\\r\n\\xb3\\x40\\x13\\x9c\\xa5\\x8f\\xc3\\xb7\\xc5\\xc9\\x45\\xb1\\xf4\\x07\\xa9\\x75\\\r\n\\xc3\\xeb\\x6a\\x63\\x90\\x49\\x49\\x24\\x35\\x30\\xa4\\x35\\x32\\xc7\\x10\\x0a\\\r\n\\xc2\\x40\\x44\\x72\\x73\\x52\\xfb\\x6f\\xdb\\x43\\xed\\x0f\\x0c\\x0a\\x72\\xe2\\\r\n\\x14\\xdc\\x5c\\x70\\xf9\\x0f\\x2e\\x51\\x1c\\x86\\x3a\\xa6\\x4a\\x66\\xf2\\x4e\\\r\n\\x37\\x70\\xa1\\x70\\x73\\xe8\\x87\\xbe\\xbe\\xcf\\xc1\\x5d\\x3b\\xb4\\x34\\x94\\\r\n\\x12\\xf8\\x46\\x8b\\xe1\\xb0\\x7a\\x8a\\xd9\\x6a\\x1a\\x49\\x03\\x8d\\xdb\\xc2\\\r\n\\xf8\\x68\\xac\\x45\\x87\\x57\\xd3\\x51\\xc3\\x4c\\xad\\x12\\xab\\x4c\\x9c\\xab\\\r\n\\x9b\\x79\\x01\\xe6\\xfa\\x64\\xec\\x6f\\x9b\\x1e\\xff\\x00\\x4d\\x4d\\x3d\\x4f\\\r\n\\x22\\xa6\\x96\\x13\\x57\\x55\\x32\\x4c\\xce\\xb2\\xa8\\x66\\xd9\\x20\\x20\\x58\\\r\n\\x10\\x10\\x81\\xf3\\x3e\\x4a\\x2f\\xb6\\xbe\\xce\\xf0\\x3e\\x1d\\xd1\\xc2\\xf8\\\r\n\\x57\\x0e\\xa4\\x91\\xa1\\x24\\xf3\\x0c\\xe6\\x99\\x12\\x32\\xf7\\xd9\\x98\\x44\\\r\n\\x0b\\x6f\\xbd\\xe4\\x25\\x72\\x24\\xd9\\x68\\xef\\xd6\\x9f\\x1d\\xbd\\xf2\\x63\\\r\n\\x65\\x0d\\xfd\\xdc\\x6d\\xfa\\xfd\\x75\\xe2\\x56\\xe9\\x04\\x8f\\x1c\\x96\\x53\\\r\n\\xb8\\x0f\\x75\\x6d\\xbf\\xe5\\xfe\\x5a\\x16\\xe9\\x90\\x25\\x98\\xf7\\x6e\\xc0\\\r\n\\x13\\xfe\\x7a\\x2f\\x8f\\x54\\x63\\x6b\\xdf\\xaa\\x3b\\xf7\\xd3\\xaa\\x86\\xbc\\\r\n\\x4a\\xa5\\x6d\\xbe\\xf9\\xab\\x03\\xfa\\x0c\\xc7\\xeb\\xaa\\x5a\\xaa\\x4e\\x99\\\r\n\\x5c\\x24\\xf8\\x58\\xf4\\xcd\\x19\\x25\\xc5\\xfd\\x9c\\xad\\xff\\x00\\x53\\xa8\\\r\n\\x8a\\xe4\\xae\\xaa\\x26\\x45\\xb7\\xd1\\x79\\xb1\\xfe\\x84\\x64\\xbf\\x43\\xaa\\\r\n\\xc9\\x62\\x91\\xd5\\x1a\\x91\\xd4\\x8d\\xfa\\x64\\x67\\x8d\\x4f\\xe9\\x63\\x71\\\r\n\\xf9\\xea\\x75\\x72\\xcd\\xe1\\x2a\\xa9\\xe7\\xc0\\x6e\\xcf\\x04\\xdf\\xbb\\xd4\\\r\n\\x28\\x5f\\x5b\\xc7\\x21\\x36\\xd0\\xae\\xfb\\x4d\\xc6\\x17\\x85\\x51\\xca\\xe7\\\r\n\\xc3\\x53\\xc5\\x09\\xab\\xe2\\x35\\xb1\\x02\\x54\\x32\\x40\\x2c\\xb1\\x87\\x5c\\\r\n\\x7a\\xdf\\x20\\xa7\\xef\\x30\\xd0\\x8b\\x83\\x70\\xfe\\x2c\\xd3\\x53\\xf2\\xe3\\\r\n\\x8a\\xae\\xb3\\x89\\xaa\\x49\\x22\\x38\\xbc\\x32\\x88\\x69\\xa9\\xb1\\x4e\\xe6\\\r\n\\x30\\x56\\x5c\\x97\\xa4\\x16\\xdc\\xeb\\x2b\\x91\\x30\\xfb\\xd5\\xe6\\x66\\xdd\\\r\n\\x3b\\x34\\xca\\x4d\\xae\\x33\\xe9\\x93\\x1c\\x46\\x40\\x3d\\x8a\\x93\\x69\\x9a\\\r\n\\x9f\\xed\\x5f\\x0e\\xfb\\x2f\\x4d\\xf0\\xa9\\xeb\\x6a\\x2b\\x62\\x86\\xb5\\xeb\\\r\n\\xe3\\x94\\x36\\x34\\xb1\\x50\\xcf\\x68\\x67\\xc5\\x11\\x9a\\x59\\x65\\x31\\xc5\\\r\n\\x4c\\x8a\\x5d\\xdf\\x7c\\x4a\\x7d\\xae\\xe2\\x9c\\x6b\\x87\\x4d\\xc2\\xe9\\xb3\\\r\n\\xe1\\x5f\\x67\\x9f\\x84\\x43\\x0d\\x2a\\xfd\\xa3\\xe2\\x53\\x56\\x55\\xcb\\x45\\\r\n\\x2b\\x2c\\x0a\\xd4\\xd4\\x54\\x74\\x84\\xc9\\xe2\\x44\\x41\\x81\\x8e\\x9b\\x18\\\r\n\\x4c\\x6a\\xe8\\x4d\\x45\\x4c\\x48\\xb2\\xa5\\x27\\xda\\x09\\x44\\x80\\xb9\\x0b\\\r\n\\x6a\\xd8\\x84\\xa4\\x9e\\x51\\x04\\xa1\\xba\\x04\\xbb\\x58\\x9e\\xad\\xed\\x6d\\\r\n\\x70\\x48\\x33\\x22\\x97\\x89\\x4f\\xc6\\xa8\\x0c\\x6f\\x6b\\x27\\x8a\\xe1\\xf4\\\r\n\\xf1\\x95\\xb3\\x79\\x97\\x98\\x17\\xd4\\xf5\\x11\\xa4\\x8a\\xa6\\xaa\\x45\\x41\\\r\n\\x39\\x88\\x47\\xcd\\x8e\\x2a\\x71\\xca\\x6e\\xff\\x00\\xbb\\x91\\x1a\\x0c\\x84\\\r\n\\x7c\\xc1\\xb9\\x03\\x34\\xef\\x92\\xeb\\x89\\x2c\\xdd\\x4c\\xe8\\xd2\\x96\\x11\\\r\n\\xc8\\xd7\\xc9\\x71\\x54\\xe6\\x05\\x6e\\x46\\x36\\x0c\\xad\\x20\\x55\\x90\\xb6\\\r\n\\x24\\xae\\x40\\x8a\\x7e\\x23\\x4a\\xee\\x30\\x8e\\x98\\x4e\\x01\\x20\\xf5\\xaa\\\r\n\\x95\\x60\\x7e\\x8f\\x90\\xbf\\xe4\\x3e\\x5d\\x49\\xc4\\x92\\xa2\\xae\\x9a\\xb1\\\r\n\\x29\\x3c\\x34\\xd1\\x4e\\xab\\x3c\\x75\\x15\\x1c\\xb2\\xd1\\x1e\\x62\\x0c\\xa3\\\r\n\\xce\\x44\\x2a\\xac\\xc8\\x2e\\x7e\\x1e\\x4a\\x48\\x3a\\xa2\\x85\\xb9\\x50\\xa7\\\r\n\\x1d\\xa5\\x5a\\x38\\x98\\x4e\\x27\\x89\\xbf\\x69\\x53\\xcb\\x0d\\x3e\\x65\\x89\\\r\n\\x7c\\xc5\\x59\\xa4\\x91\\x90\\x90\\x06\\x1b\\x6d\\xaa\\x74\\xa6\\xa1\\x65\\xab\\\r\n\\xe1\\x31\\x61\\x59\\x0b\\xcc\\x84\\x4f\\x01\\x91\\xe3\\x60\\xab\\x27\\x91\\x95\\\r\n\\x72\\x56\\x8f\\xa4\\x03\\xe4\\xb2\\x8b\\x0a\\x8a\\x56\\x90\\x42\\x95\\x72\\xc5\\\r\n\\x5b\\x1f\\x32\\xfc\\xa0\\x1e\\x33\\x4e\\xf3\\x7a\\x8b\\xdf\\xa6\\x6b\\x02\\x7e\\\r\n\\x1a\\xf7\\xb0\\xd0\\x44\\x77\\x28\\x80\\x2a\\x11\\xca\\x20\\xaa\\xec\\xa4\\x12\\\r\n\\x6e\\x45\\xbb\\x1d\\x0e\\x25\\x5a\\x61\\xde\\xd2\\x41\\x4a\\xd1\\xe6\\xee\\xcf\\\r\n\\xb4\\x25\\xe6\\xe6\\x2e\\x12\\x0d\\xd9\\x94\\x07\\x0a\\xa7\\xab\\xaa\\xc3\\x5c\\\r\n\\x40\\x54\\x56\\x3a\\xf0\\x5a\\x27\\x63\\x53\\x26\\x5b\\x54\\x4c\\xbe\\x6e\\x58\\\r\n\\xed\\x6d\\x88\\x5c\\x7e\\x40\\xa3\\xb0\\xd4\\x4f\\x42\\x3c\\x3d\\x35\\x1b\\xe7\\\r\n\\x4a\\x80\\xf9\\x63\\x53\\xbb\\x3f\\xbb\\xbf\\xcf\\xae\\x19\\xc7\\x68\\x61\\xc2\\\r\n\\x0e\\x24\\x16\\x68\\xf0\\xb1\\x02\\xad\\xc7\\xc7\\x83\\x6d\\x94\\x3d\\xf3\\xb1\\\r\n\\xdc\\x5d\\x87\\xcb\\xa8\\x9a\\x45\\x31\\x31\\x55\\xba\\x64\\x1a\\xc7\\xda\\xe3\\\r\n\\x6f\\xfe\\x17\\x3f\\xf7\\xf4\\xd4\\x71\\x23\\x2c\\x68\\x0d\\xf3\\x6b\\x93\\x91\\\r\n\\xdb\\x64\\x5b\\x96\\xb0\\xdb\\xb7\\xbe\\xfb\\xe9\\x29\\x61\\x94\\xa2\\x2d\\xda\\\r\n\\xee\\xaa\\xd2\\x64\\x77\\x72\\x80\\x12\\x11\\x49\\xde\\xcc\\x58\\xef\\xbd\\xb5\\\r\n\\x85\\x44\\xa5\\xec\\xca\\xa1\\x5c\\xaa\\xef\\xef\\x6d\\xb2\\x24\\xfa\\x9b\\xfd\\\r\n\\x35\\x16\\x2b\\xd2\\xf6\\x03\\x6f\\xcc\\xe9\\xe6\\xf0\\xb9\\x2c\\x63\\xcc\\x49\\\r\n\\xdf\\xf9\\x68\\x9a\\x28\\x69\\x22\\x8f\\xb2\\xc6\\xe8\\xcf\\x95\\xbd\\x77\\x61\\\r\n\\xb6\\x9d\\x4f\\x81\\x68\\xf0\\x93\\xa4\\xd1\\x29\\xfa\\xe4\\xc3\\x2f\\x4b\\x6d\\\r\n\\xe9\\xef\\xa7\\xfd\\xa1\\xf6\\x63\\x85\\xc9\\x59\\x1a\\x3b\\x19\\x38\\x78\\x6a\\\r\n\\x0a\\xcb\\x6f\\x79\\xe2\\x31\\x5d\\x64\\xc7\\xcc\\xe8\\xc0\\xed\\xbe\\xfd\\xb5\\\r\n\\x0d\\x75\\x41\\xc2\\x2c\\xcb\\xa4\\x4d\\x69\\x1f\\x00\\xa4\\xc7\\x9f\\xa0\\xbb\\\r\n\\x11\\x70\\x47\\xa1\\xed\\xa6\\xe2\\xf2\\xc8\\xfc\\xd6\\x18\\xa4\\x08\\x15\\x10\\\r\n\\x44\\xf6\\x2a\\xee\\x7c\\xe1\\xcf\\x9b\\x1e\\x9b\\x0e\\xe0\\x83\\xa9\\x79\\x68\\\r\n\\x63\\xb7\\x4a\\xb1\\x22\\xd9\\x76\\xdb\\xbd\\xfb\\xef\\xde\\xdf\\x5d\\x35\\x3b\\\r\n\\xa0\\x72\\xa6\\x31\\x2c\\xbd\\x9b\\x29\\xe5\\x58\\x73\\x2e\\xc5\\x52\\xd9\\x3f\\\r\n\\x4a\\xed\\x97\\x7f\\x4b\\x6a\\x06\\x92\\x36\\x9b\\x97\\xe2\\xaf\\x00\\x92\\xff\\\r\n\\x00\\xb9\\x42\\xb2\\x45\\x14\\x49\\x20\\x38\\xe5\\x50\\x72\\x48\\xb7\\xdf\\xa6\\\r\n\\x43\\xd2\\xc7\\x55\\x9c\\xc8\\x04\\x32\\x4b\\x55\\x4b\\x5b\\x4a\\xd0\\x29\\x7f\\\r\n\\x0b\\x15\\x0b\\xfc\\x46\\xe6\\x7e\\x16\\x89\\x18\\xa3\\x46\\x32\\xf2\\x13\\x7b\\\r\n\\x75\\x54\\x25\\x50\\x56\\x97\\x36\\x9a\\x8f\\x15\\x58\\xa1\\x6a\\x31\\x2c\\x46\\\r\n\\xa2\\x97\\x97\\x96\\x6e\\x50\\x42\\x67\\xb3\\x5d\\x4b\\x3b\\xed\\x8c\\x96\\xd3\\\r\n\\x78\\xca\\x64\\x11\\x44\\x21\\xa2\\x57\\x24\\xc5\\x0e\\x0d\\x37\\x2a\\x1e\\x54\\\r\n\\x37\\xb4\\x22\\x24\\x53\\x13\\x62\\xc0\\x9e\\x67\\xc5\\x2f\\x80\\xca\\xae\\xa6\\\r\n\\x95\\xb9\\x20\\xcc\\xab\\x0b\\x3c\\x50\\x73\\x39\\x90\\x16\\x4e\\x6a\\x30\\x5c\\\r\n\\x6e\\xd9\\x32\\xb0\\x75\\xba\\x05\\xb1\\xd9\\x05\\x92\\xa2\\x2a\\x0a\\x7a\\x7a\\\r\n\\xa4\\x87\\x10\\xd0\\xa6\\xe2\\x59\\x2e\\x00\\x28\\xd1\\xb3\\xc8\\x02\\x89\\x66\\\r\n\\x52\\xcc\\xdd\\x6c\\xe2\\xd6\\xb2\\x04\\x61\\x15\\x3a\\xd3\\xc8\\xce\\xfc\\xe0\\\r\n\\x40\\x59\\x04\\x81\\x9d\\x50\\x20\\x37\\x14\\xec\\x31\\x0a\\xc3\\xc9\\x24\\x7e\\\r\n\\x56\\x24\\x1d\\x57\\x70\\x6a\\x80\\x94\\xfc\\x6e\\x92\\x30\\xdc\\x12\\xb6\\x4b\\\r\n\\x43\\x17\\x12\\xa0\\xe2\\x4d\\x0c\\xa6\\x82\\x69\\x7a\\x13\\x9f\\x1c\\xd7\\xf0\\\r\n\\x53\\x13\\xcb\\x27\\x38\\x64\\xe5\\xb9\\x3a\\xa4\\xca\\x72\\x80\\x20\\x82\\xb2\\\r\n\\xeb\\x69\\xa9\\xb2\\x99\\xb3\\x38\\x5e\\xce\\x62\\xcd\\xe3\\xf3\\x0f\\x28\\xf4\\\r\n\\xd7\\xd9\\x88\\x21\\xaa\\x92\\x45\\x83\\xc3\\x52\\xd4\\x32\\xe5\\x11\\x7a\\x78\\\r\n\\xaa\\x5d\\xd2\\xa4\\xef\\xd2\\x21\\xa5\\xba\\xcd\\xbd\\xc3\\x22\\xda\\xc1\\xae\\\r\n\\x38\\x2d\\x6f\\xff\\x00\\xcd\\xd6\\xf1\\x80\\x36\\xed\\x4e\\xb3\\xa7\\x87\\x1f\\\r\n\\x98\\x87\\x10\\x3f\\x99\\xef\\xaf\\x19\\x23\\x0c\\x04\\x62\\xd1\\x36\\x40\\xdf\\\r\n\\xd1\\x7e\\xb9\\x9b\\x7e\\x84\\xe9\\x29\\xc2\\xdd\\xab\\xa6\\xa5\\x80\\x6c\\xa4\\\r\n\\x21\\xab\\x75\\xa7\\x69\\x1c\\x1e\\x95\\x54\\xb8\\x7e\\xd6\\x1f\\x86\\xda\\xe2\\\r\n\\xe1\\x0a\\xe0\\x66\\xa7\\xa1\\xeb\\xb8\\x8f\\x08\\x69\\x22\\x54\\x4b\\x7c\\xb8\\\r\n\\x4a\\x5a\\xcd\\xed\\xf4\\x1a\\xaa\\xe2\\x4a\\xeb\\x37\\x22\\xa3\\xc2\\xd4\\xe0\\\r\n\\x6f\\x53\\x43\\x20\\xf2\\x2c\\xa3\\xe7\\x81\\xd8\\xfc\\x36\\x6d\\xbd\\x11\\xbd\\\r\n\\x34\\xbc\\x39\\x84\\x72\\x82\\x6e\\x24\\x50\\xc0\\x32\\x0d\\xff\\x00\\x20\\xde\\\r\n\\x85\\x76\\x3a\\x91\\x5b\\xa1\\x39\\x52\\x35\\xc8\\x3d\\x58\\x47\\x96\\x09\\xee\\\r\n\\xdb\\x8d\\x3f\\x10\\x96\\x9a\\xc6\\x8b\\x89\\x41\\x4c\\xa4\\xde\\xf5\\x14\\x92\\\r\n\\xc9\\xf1\\x94\\x7a\\x33\\xc4\\x8e\\x1b\\x1b\\x7b\\x30\\x6e\\x92\\xad\\x39\\xd9\\\r\n\\xe8\\xf8\\x8d\\x37\\x8b\\xa2\\x7f\\xc0\\xd1\\x8f\\x8d\\x08\\x36\\xb6\\xc7\\x95\\\r\n\\x22\\x5f\\x7e\\x5b\\x1f\\x66\\x3a\\x80\\x4d\\x18\\xba\\xef\\xdb\\xdf\\x6f\\xf2\\\r\n\\xd7\\xc2\\x51\\x91\\xf2\\xfb\\x0b\\x7f\\xd4\\x77\\xd4\\xa5\\xd3\\x18\\x8a\\x75\\\r\n\\x30\\xf9\\x37\\x16\\xb0\\xf5\\xc4\\xef\\x8f\\xb6\\xaa\\x78\\xad\\x7b\\x27\\x2f\\\r\n\\x2f\\x03\\x49\\x15\\xc6\\x15\\x55\\x15\\x04\\x72\\xe4\\x17\\xee\\x83\\xa5\\x81\\\r\n\\x1e\\x5e\\xb6\\xef\\x1e\\xa9\\xb8\\xbd\\x51\\xca\\xba\\x0a\\x8a\\xae\\x17\\xc4\\\r\n\\x00\\x27\\x14\\xa9\\xa4\\x95\\xd9\\x30\\x06\\xf8\\xa3\\xd3\\xbe\\xc3\\xf8\\x3d\\\r\n\\xee\\x75\\x0f\\x33\\xef\\xa4\\x8b\\x03\\x76\\xb3\\x2d\\x33\\xee\\x2f\\xef\\x2e\\\r\n\\x47\\x98\\xa2\\xe3\\xa2\\xde\\xfa\\x89\\x54\\xda\\x78\\xd0\\xaa\\x9e\\xe0\\xda\\\r\n\\xf9\\x06\\xbf\\xc8\\xdd\\x89\\x3b\\x62\\x77\\xd5\\x27\\x11\\x68\\x92\\x48\\xf8\\\r\n\\x7d\\x6d\\x3d\\x5c\\xd0\\xfd\\xe4\\x4e\\x22\\x99\\x4f\\x2d\\xb7\\xb9\\x42\\xb7\\\r\n\\x4b\\xde\\xf6\\x37\\xd1\\xa0\\xac\\xa7\\x86\\x2e\\x17\\x55\\x1f\\xed\\x0f\\xb3\\\r\n\\x3c\\x91\\xc8\\x0b\\x2c\\xc5\\x9a\\xad\\x50\\x14\\x43\\x15\\x5d\\x35\\x41\\x94\\\r\n\\xcb\\x1a\\x07\\x47\\x56\\x07\\x70\\xce\\x07\\xda\\x9e\\x15\\x3c\\x81\\xda\\x19\\\r\n\\xa8\\xea\\xe2\\x21\\xaf\\x94\\x59\\x36\\x12\\x5b\\xbf\\x92\\x3c\\x5f\\xb6\\x3b\\\r\n\\x8d\\x7d\\x96\\xaa\\x20\\xb4\\xf0\\xd7\\x4f\\x56\\x1a\\xf6\\x0b\\x95\\x55\\x38\\\r\n\\x6f\\xa1\\x21\\x63\\x41\\xea\\x7b\\xf6\\xbe\\xb8\\xb4\\x85\\x63\\x96\\x9e\\xa2\\\r\n\\xb6\\x5a\\x8a\\x65\\x74\\x57\\x92\\x31\\x3e\\x15\\xd1\\xf2\\x32\\xf2\\x6c\\xe2\\\r\n\\xe4\\x7c\\xb7\\x1d\\xf1\\xb4\\x8d\\x13\\x67\\x4f\\xc6\\x99\\x60\\xa8\\xc1\\x77\\\r\n\\xa7\\x78\\x1e\\xe6\\x9c\\x6e\\x6c\\x85\\x79\\x52\\xaf\\xe3\\x4b\\x0e\\xea\\xda\\\r\n\\xa6\\xe1\\xb5\\x71\\x65\\x07\\x11\\xa5\\x55\\x49\\x06\\xcd\\x1c\\x9c\\xd9\\x62\\\r\n\\x55\\x3e\\xeb\\xd8\\x0f\\x58\\xcd\\x8e\\xf7\\x36\\xaa\\x83\\x98\\xd2\\xc7\\x28\\\r\n\\x5b\\xbb\\x5e\\xf4\\xee\\xa4\\x18\\x4c\\xc0\\x5d\\x04\\x6f\\x29\\x4b\\x49\\xf2\\\r\n\\xbf\\x4f\\xa8\\xd5\\x38\\x5a\\xc7\\xa6\\xe2\\x31\\x5c\\xc0\\x1a\\xdc\\xab\\x51\\\r\n\\x34\\x52\\x52\\x61\\x2d\\xc5\\xca\\xf2\\xf9\\x47\\xb3\\xf4\\x2b\\x2e\\xd7\\xd4\\\r\n\\xbc\\x6e\\x35\\x31\\x43\\xc4\\xe9\\xe9\\xab\\xc1\\x06\\xc1\\x1e\\xaa\\xcf\\x56\\\r\n\\x89\\x22\\x8b\\x8f\\x0f\\xc4\\x1e\\xaa\\x1f\\xe5\\x75\\x36\\xda\\x84\\x37\\xc6\\\r\n\\x56\\xa1\\x8c\\xad\\xed\\xcd\\x04\\x9f\\x8b\\x89\\xb5\\xce\\x65\\x77\\xb1\\x22\\\r\n\\xfb\\xe3\\xa1\\x8d\\x4b\\x28\\xb0\\xb0\\x6f\\x30\\x1e\\x81\\xba\\x3c\\xc3\\xd7\\\r\n\\xeb\\xaa\\x96\\xa6\\x48\\xd1\\x85\\x3f\\x2f\\x26\\x9e\\x38\\x96\\x00\\xec\\x21\\\r\n\\xa9\\x9b\\x22\\xd6\\xce\\x11\\xd2\\xb1\\x21\\x69\\x32\\x75\\x0a\\x99\\x0b\\x6a\\\r\n\\x26\\x8a\\xa6\\x2a\\x5e\\x1f\\xf1\\x24\\xe2\\x13\\x4f\\xcc\\xcc\\x4a\\x92\\x63\\\r\n\\xd3\\x18\\x4b\\xc8\\xac\\x96\\x75\\x06\\xce\\x00\\x7c\\x80\\x03\\x57\\x5a\\x59\\\r\n\\xf8\\xcd\\x58\\xfe\\xde\\xac\\xf8\\x6a\\x40\\x7f\\x86\\x14\\xbc\\x8e\\x3e\\x8e\\\r\n\\x46\\xbf\\x64\\xcf\\x4f\\x4f\\x0d\\x24\\xee\\xa6\\x89\\x29\\x61\\xe5\\x0a\\x49\\\r\n\\x90\\xfd\\xe2\\xdb\\x7b\\x61\\x90\\x7b\\x9b\\xe3\\x7f\\x7d\\x2c\\x10\\xf6\\xa5\\\r\n\\x8c\\x47\\x6f\\x4e\\xc0\\x6f\\xef\\x60\\x00\\xfe\\x7a\\x56\\x92\\xc9\\x92\\xdf\\\r\n\\x73\\xff\\x00\\x7d\\xfd\\x06\\x8c\\xb2\\xbe\\x0a\\x3b\\x6c\\x6e\\xcd\\xec\\x0d\\\r\n\\xb1\\x1f\\xa6\\xff\\x00\\x5d\\x76\\x25\\xdc\\x5e\\x34\\x40\\x76\\x5f\\x4c\\x98\\\r\n\\xee\\x5c\\xfa\\xb5\\x80\\x1e\\x9a\\x22\\x68\\xc4\\x7b\\xf6\\xbd\\xc9\\x5f\\x7b\\\r\n\\xe9\\x58\\x95\\x04\\x49\\x97\\xae\\xc0\\x7e\\x9e\\xfa\\x86\\x9f\\x98\\xbf\\x0a\\\r\n\\x2b\\x9f\\xf0\\xd4\\x90\\xc5\\x52\\x2c\\xdd\\x27\\x14\\xe6\\x11\\x96\\xdb\\xf6\\\r\n\\x1a\\x75\\xe7\\xd4\\x01\\x1f\\x46\\xd1\\x2e\\x05\\x94\\xf5\\x1c\\x99\\xc5\\xf2\\\r\n\\x37\\x37\\xd5\\x5c\\xea\\x49\\x18\\x2d\\x3c\\x65\\xed\\x72\\xd3\\xdf\\x2d\\x81\\\r\n\\x23\\x64\\x0d\\xae\\x1e\\xbc\\xef\\x0c\\xb3\\xcf\\x1a\\xb4\\xa3\\xcc\\xb9\\x1b\\\r\n\\x10\\xb7\\xdb\\xa8\\x6d\\xfa\\xea\\x3a\\x7a\\x33\\x88\\x62\\x15\\x51\\x3d\\x1d\\\r\n\\xc2\\xa8\\xb2\\xdc\\x7a\\xfd\\x7f\\x5d\\x42\\x83\\xe3\\x54\\x3a\\xe4\\xf2\\x62\\\r\n\\x19\\xb3\\x7f\\x97\\xbb\\x00\\xcb\\x7b\\x5d\\x76\\x5d\\x53\\x44\\x88\\xcc\\xe4\\\r\n\\x97\\x90\\x0f\\x2a\\x98\\xfb\\xa2\\x9e\\xe4\\x76\\xc8\\xdf\\x73\\x65\\xdc\\x9d\\\r\n\\x8a\\x72\\x8d\\x99\\xbe\\x31\\x46\\xfe\\xde\\x6e\\x65\\x3d\\x3d\\xda\\xdd\\x2d\\\r\n\\x4e\\xe6\\x19\\x37\\x26\\xd2\\x33\\x58\\x5c\\xef\\x52\\xb3\\xca\\x04\\x79\\x70\\\r\n\\xc6\\x0b\\x13\\xaa\\x99\\x55\\x4b\\x34\\xb1\\x8b\\xb6\\xd9\\x2b\\x72\\xe5\\x1e\\\r\n\\x8c\\x30\\xdb\\xa3\\x48\\x60\\x96\\x34\\x5a\\x23\\x2a\\x18\\xe2\\x5b\\x4b\\x2c\\\r\n\\x75\\x09\\x87\\x25\\x89\\xbb\\x1e\\x41\\x77\\xb6\\xe4\\x31\\x25\\xbf\\x2a\\x27\\\r\n\\xa7\\xa4\\x4a\\xa8\\x23\\xa7\\x44\\x11\\x67\\x84\\xb1\\x05\\x82\\xf3\\xbb\\x25\\\r\n\\xf9\\x6e\\xb2\\x66\\xbd\\x25\\x85\\x83\\x5f\\xb8\\x60\\xdc\\xc9\\xe6\\xc2\\x99\\\r\n\\x22\\x91\\xe8\\x69\\x82\\xbc\\x4c\\xc8\\x61\\xc8\\xa4\\xe4\\x59\\x8b\\xa4\\xc2\\\r\n\\xe6\\xd6\\xb3\\x34\\x8a\\x3d\\x0e\\xb9\\x5c\\x8a\\xf8\\x49\\x51\\x20\\xe5\\xc4\\\r\n\\x59\\x3c\\x44\\x64\\xb9\\xc6\\x40\\x93\\x62\\xff\\x00\\x87\\x98\\x8a\\x8e\\x18\\\r\n\\xe4\\xd7\\x6d\\x41\\x3c\\x5c\\xec\\xd2\\x18\\xeb\\x4b\\x4a\\x32\\x93\\x0e\\x6a\\\r\n\\x80\\x58\\x46\\xe2\\xc4\\x45\\x1a\\xb7\\x40\\xc4\\x24\\xad\\xb7\\x7d\\x41\\x59\\\r\n\\x05\\x43\\x2c\\x54\\xe2\\x4c\\xa9\\xc5\\x8a\\x88\\x71\\x2b\\x84\\x8b\\xd4\\x6e\\\r\n\\x9d\\xae\\xbb\\x27\\x30\\x59\\x4a\\x9d\\xa0\\xe2\\x72\\xd3\\x89\\xcb\\x52\\xf8\\\r\n\\x77\\x99\\x18\\x82\\x8a\\xb2\\xf3\\x22\\x75\\x07\\x70\\xe9\\xbd\\xac\\x06\\xe3\\\r\n\\x70\\x35\\x3d\\x0c\\xd2\\x09\\xa6\\xa7\\x9d\\xe3\\x47\\x95\\x83\\x12\\xa1\\x8f\\\r\n\\x4b\\x82\\x0b\\x3e\\xc5\\x7a\\x48\\x6b\\x5c\\x83\\xe8\\x07\\x18\\xe2\\xb1\\x88\\\r\n\\xd5\\xb8\\x77\\x08\\xa8\\x10\\x76\\x20\\x55\\xf1\\x22\\xb4\\x90\\x91\\xf4\\xf8\\\r\n\\xd2\\x1c\\x48\\xbe\\xde\\xda\\xfb\\x3d\\xe2\\xad\\x8d\\x3f\\x1e\\xad\\x8a\\x4b\\\r\n\\x8e\\xc1\\xa0\\x2e\\x07\\xd1\\x5b\\x94\\xbf\\xcf\\x6d\\x50\\xd6\\x51\\xcb\\x8a\\\r\n\\x43\\x52\\xa9\\x51\\x10\\x16\\x56\\x89\\xce\\xc7\\xfb\\xc8\\x7a\\x87\\xa7\\xa7\\\r\n\\x7b\\x6a\\x79\\xa3\\xbf\\xee\\xd4\\xfc\\xad\\xed\\x80\\x75\\x89\\x21\\x04\\xdf\\\r\n\\x7b\\xe7\\xd4\\xbf\\xe0\\x3d\\x2b\\x6b\\xa9\\x4c\\xf4\\xfc\\x72\\x9d\\x56\\x5e\\\r\n\\x37\\x43\\x50\\x00\\x8a\\x49\\x14\\x2c\\x52\\x57\\xf0\\xb9\\x01\\x1f\\x04\\xb6\\\r\n\\x2f\\x24\\x0f\\xf1\\x10\\x36\\x4b\\xd0\\xa6\\xf4\\xbc\\x72\\x91\\x96\\x15\\xe3\\\r\n\\x34\\x9e\\x16\\xb6\\x37\\x19\\x52\\x49\\x59\\x4c\\x16\\x1a\\xba\\x3a\\xd4\\x1b\\\r\n\\x72\\xe7\\x43\\x05\\x4c\\x52\\xf9\\xe3\\x69\\xb2\\xec\\x2e\\xb7\\xe5\\xba\\xf5\\\r\n\\x18\\xde\\x17\\xdd\\xa2\\x27\\xe5\\x76\\xec\\xeb\\x8f\\x92\\x51\\xe6\\x52\\x2f\\\r\n\\xdf\\x74\\x8d\\xf6\\x0a\\xb6\\x00\\x9f\\x26\\x42\\xff\\x00\\x5d\\xc8\\xfe\\x7b\\\r\n\\x6a\\xab\\x87\\xf1\\x0a\\x63\\x54\\x5f\\x88\\x51\\xbd\\x10\\xb5\\x99\\x20\\xc6\\\r\n\\xad\\x6b\\x5d\\x5b\\xb7\\x33\\x27\\xa5\\xb0\\x72\\x2e\\xab\\x61\\xaa\\x60\\x09\\\r\n\\x78\\x52\\xcf\\x4a\\xce\\x08\\x75\\x1b\\x80\\x0f\\xd6\\xc4\\xc6\\xde\\x84\\x6a\\\r\n\\xe9\\x18\\x04\\x0b\\x76\\xd1\\xdf\\x6b\\x5f\\x55\\x30\\xa3\\x2d\\xa6\\x86\\xd1\\\r\n\\x9f\\xf7\\xe0\\xec\\xa7\\xfb\\xe4\\x01\\xfa\\xea\\x86\\x92\\x37\\x65\\xa8\\xa0\\\r\n\\x8a\\x1a\\x8c\\x18\\x9f\\xf5\\x82\\x4c\\xf2\\x45\\xfd\\xf5\\x0d\\x75\\xfa\\xdd\\\r\n\\x47\\xa6\\xb8\\x84\\x51\\x44\\x25\\x8f\\x8b\\xd1\\xd3\\x71\\xca\\x54\\x63\\x65\\\r\n\\x15\\x34\\xb1\\x1f\\x17\\x65\\xdf\\x22\\x42\\xc9\\x92\\x0b\\x5f\\x6b\\xed\\xa9\\\r\n\\x15\\xe5\\xb3\\xc9\\x94\\xa1\\x9f\\x2b\\x5c\\x77\\xec\\x0f\\xfd\\x05\\xbd\\x34\\\r\n\\xa2\\x99\\x43\\x3a\\x86\\x57\\x97\\x34\\xe5\\xc6\\x90\\x8e\\xa9\\xaa\\x24\\xca\\\r\n\\xd1\\xc4\\x23\\xb1\\x7c\\x87\\xa5\\x85\\x9a\\xd7\\x68\\xe1\\x9e\\x7a\\xf9\\x09\\\r\n\\x64\\x92\\x62\\x82\\x9e\\x8e\\x42\\x08\\x00\\x43\\x72\\x65\\x61\\x7c\\xb1\\x66\\\r\n\\xc3\\x23\\xec\\x0e\\xa4\\xa2\\xa4\\xac\\x96\\x04\\x8e\\xa2\\x8a\\xae\\x37\\xf1\\\r\n\\x06\\x3f\\x04\\x63\\xa9\\x55\\xaa\\x96\\x25\\x76\\x63\\x99\\x8a\\x46\\x66\\x54\\\r\n\\x07\\x98\\xca\\x32\\x04\\x1d\\x35\\x5f\\x09\\x92\\x6e\\x20\\x2a\\x78\\x4f\\xec\\\r\n\\xfe\\x22\\xad\\x84\\x92\\x4b\\x3b\\x3d\\xe9\\x6b\\x21\\x58\\xd2\\x34\\x58\\x26\\\r\n\\xe6\\xc8\\xac\\x3f\\xb1\\x6c\\x2e\\xc5\\x59\\x9b\\x5c\\x23\\x86\\x56\\x55\\x48\\\r\n\\xfc\\x6e\\x35\\xf8\\x69\\x19\\x09\\x41\\x0c\\x55\\x55\\x3c\\xe7\\x9e\\xa8\\xb4\\\r\n\\x72\\x49\\x20\\x80\\x1c\\x51\\x62\\x0a\\xf2\\x60\\xcf\\xd0\\x31\\xbf\\x08\\x94\\\r\n\\xf4\\x9e\\x25\\xc1\\x28\\x26\\x86\\xae\\xe7\\x05\\xa8\\xa4\\x32\\xd1\\x35\\xe3\\\r\n\\x22\\xf6\\x22\\x99\\x6f\\xd5\\x7e\\xbd\\xc6\\x8c\\x15\\x0a\\x39\\x13\\xe3\\xcc\\\r\n\\xf6\\x86\\x71\\x7e\\x4d\\x44\\x67\\xd4\\x5c\\xdb\\x6e\\xf1\\xb3\\x29\\xd5\\x19\\\r\n\\x16\\x49\\x60\\x13\\xc7\\xbb\\x10\\x43\\x24\\xec\\xea\\x54\\xdb\\xd4\\x48\\x08\\\r\n\\x3a\\x8a\\xae\\x46\\x10\\xcd\\x00\\x34\\x9c\\x40\\x90\\xd9\\x9d\\x86\\x0e\\x71\\\r\n\\xf3\\x23\\xf4\\xb1\\xb8\\x22\\xe7\\x6b\\x5a\\xfa\\xa6\\x98\\x79\\xb0\\x90\\xab\\\r\n\\x02\\xca\\x6d\\x1c\\xef\\xb8\\xde\\xe3\\xc8\\x4d\\xfb\\x81\\xaf\\x0f\\x5d\\x17\\\r\n\\x8a\\x3c\\x0a\\xb8\\x25\\x4f\\x39\\x55\\x8c\\x9c\\x23\\x8c\\x5d\\x5f\\xb7\\x99\\\r\n\\x69\\xb8\\x82\\xb7\\x51\\x3e\\x7a\\xeb\\x82\\x36\\x63\\x4a\\xd5\\x53\\x4b\\x55\\\r\n\\x4b\\x06\\x70\\xd1\\xac\\x51\\x17\\x12\\x73\\x64\\x92\\x48\\x92\\xa2\\x63\\xd3\\\r\n\\x09\\x89\\x10\\xa1\\x17\\xca\\x4b\\x74\\xde\\xc4\\x6b\\x01\\x49\\x17\\x4f\\x4f\\\r\n\\x92\\xfd\\xb6\\xef\\x8e\\xaa\\xa8\\x69\\x20\\xa8\\xe2\\x33\\x22\\x3f\\xef\\x55\\\r\n\\xd2\\x06\\xa0\\x8d\\x99\\xca\\x63\\x15\\x24\\x0c\\x23\\xa9\\x29\\x84\\xa3\\x07\\\r\n\\x1b\\x62\\x59\\x85\\xb7\\x3c\\x71\\x38\\x8c\\xb1\\xc1\\x2c\\x91\\x54\\x8a\\x4a\\\r\n\\x69\\x9d\\x60\\x46\\x9a\\x48\\xce\\x3c\\x83\\x24\\x8d\\x22\\xfc\\x4d\\xcc\\x44\\\r\n\\x04\\x02\\xc5\\x1b\\xa8\\x80\\x33\\xa8\\x2d\\x1b\\xbd\\x97\\x93\\x4f\\x2b\\xe4\\\r\n\\x05\\xb2\\xc7\\xb2\\x6c\\x4d\\xbc\\xff\\x00\\x5d\\x53\\x72\\xe9\\x42\\xcc\\x23\\\r\n\\x29\\xe2\\x2a\\x8e\\x04\\xe6\\x47\\xf6\\x71\\xe5\\x63\\xbd\\x86\\xe3\\xa5\\xb7\\\r\n\\xd6\\x4c\\xc9\\xcd\\x7f\\x3e\\x20\\x9b\\x9b\\xf7\\xb9\\xff\\x00\\xa6\\xb9\\xf2\\\r\n\\x1d\\xc0\\xb5\\xe5\\x6e\\x9d\\xbf\\x08\\xf5\\x3f\\x96\\xb9\\xf1\\xbb\\x4b\\x2a\\\r\n\\xa3\\x72\\xa2\\x7c\\x70\\x32\\x30\\xe9\\x38\\x62\\x4a\\xa2\\xf7\\x2d\\x9d\\xcf\\\r\n\\x60\\x3d\\x75\\x21\\xac\\x99\\xe4\\x63\\x29\\x3d\\xfa\\x45\\xcd\\xec\\xab\\xe8\\\r\n\\xa3\\xd3\\x4a\\x55\\x9b\\xb5\\xcf\\xf2\\xd0\\xb8\\xf4\\x3b\\x7a\\xed\\xaa\\xea\\\r\n\\xa9\\x89\\x58\\xd4\\x1c\\x54\\x79\\xb1\\x17\\xb0\\x1b\\x7a\\xe9\\x68\\xe4\\xca\\\r\n\\x25\\x95\\x9f\\x11\\x1b\\x1c\\xd8\\x88\\xdc\\x8b\\x9b\\x8f\\x5b\\x6a\\xa6\\x69\\\r\n\\xde\\xf8\\xc9\\x8a\\x43\\x7d\\xdc\\xf6\\xdf\\xd0\\x28\\x3e\\x6b\\x6a\\x31\\x4f\\\r\n\\x17\\x32\\x79\\xeb\\xdb\\xf8\\x42\\xaa\\xa5\\xbf\\x20\\xa8\\xa0\\xff\\x00\\x3b\\\r\n\\x77\\x3a\\x82\\x2a\\xa9\\x63\\x8a\\xa2\\x9a\\x6c\\x92\\x58\\xb7\\x2a\\x97\\xca\\\r\n\\xcd\\x70\\x37\\x16\\xd8\\xdb\\xbd\\xb5\\xe2\\xab\\x67\\xe6\\xf2\\x66\\x8d\\x04\\\r\n\\x31\\xfd\\xf3\\xcc\\x06\\x4a\\x49\\xe9\\x8d\\x17\\x6b\\x96\\xbd\\xfb\\xd9\\x7b\\\r\n\\x6a\\x2a\\x7a\\x66\\x58\\x9b\\xcb\\xcb\\x3b\\x92\\x1b\\xa4\\x0b\\xb1\\x17\\x6f\\\r\n\\x9d\\x9c\\xf4\\xad\\xae\\xc0\\x80\\x4b\\x08\\xf2\\xb9\\x9b\\x3e\\x50\\x6b\\x6e\\\r\n\\xb0\\xa8\\xce\\x04\\x36\\x5b\\xc8\\x39\\x9f\\x84\\x02\\xea\\x40\\xb1\\xc7\\x55\\\r\n\\x95\\xb1\\xbc\\x15\\xcb\\x0b\\x24\\xed\\x11\\xf8\\x6f\\x13\\x45\\x38\\xa8\\x32\\\r\n\\x5b\\xb9\\x0d\\x0b\\x0c\\x82\\xe4\\xb9\\x5c\\x1f\\x4b\\x9a\\x3e\\x53\\x43\\x51\\\r\n\\xcf\\x92\\x53\\x35\\x39\\xb4\\x6e\\xab\\x01\\x92\\x6a\\x7f\\x86\\xc1\\x89\\x86\\\r\n\\x4e\\x59\\xe6\\x5b\\x76\\x8a\\xfd\\x98\\x28\\x47\\x87\\x89\\x53\\xd5\\x41\\x4d\\\r\n\\x27\\x32\\xac\\xad\\xf9\\xa9\\xcf\\x78\\xe1\\x9a\\x97\\x2c\\x8b\\x3c\\x90\\x23\\\r\n\\x2b\\x05\\x2a\\x0c\\x71\\x4f\\xfc\\x22\\x3d\\x08\\x63\\xf8\\x32\\x52\\xe0\\xf0\\\r\n\\xd9\\xd6\\x5e\\x74\\x4e\\x22\\xa7\\xa8\\x4e\\x61\\xf3\\x61\\x99\\x79\\x03\\x36\\\r\n\\x78\\x19\\x18\\x7a\\xeb\\x9f\\x13\\x43\\x3c\\xf0\\xbc\\xd4\\xd2\\x4b\\x4e\\x08\\\r\n\\x82\\x68\\xdc\\x34\\x6b\\x3c\\x64\\x97\\x1c\\xa3\\xca\\x59\\x62\\xb1\\x24\\xa4\\\r\n\\x32\\x33\\x6c\\xfa\\xc2\\x7a\\xe4\\x65\\x30\\xd9\\x60\\x1c\\xac\\xf7\\x1d\\x27\\\r\n\\x29\\x16\\xc9\\x1f\\xc8\\x4b\\x9e\\xdb\\xdc\\xdb\\x54\\x15\\x5c\\xd8\\x5a\\x96\\\r\n\\x6a\\x5f\\x00\\x62\\x46\\x76\\x85\\x63\\xa7\\x66\\x56\\x1f\\x0a\\xcb\\x94\\x0b\\\r\n\\x26\\x45\\x40\\x66\\x68\\xfc\\xa1\\xf6\\x3a\\x9b\\x83\\xa3\\x23\\xc5\\x5b\\x07\\\r\n\\x32\\x9a\\xce\\xae\\xa0\\x15\\x57\\x45\\x8d\\x87\\x49\\xcd\\x4a\\x42\\x81\\x80\\\r\n\\x62\\xc5\\x3a\\x7c\\xeb\\xa2\\x5d\\x54\\x60\\x0b\\x3a\\xf6\\x1e\\x52\\xe0\\x80\\\r\n\\x06\\xd7\\x5d\\xcd\\x87\\x7b\\xeb\\x8a\\x4f\\x03\\x32\\xa4\\x95\\x53\\x63\\xec\\\r\n\\x81\\x1b\\x06\\xc4\\x7a\\x5e\\xf7\\xfe\\x2e\\xfa\\xe2\\x5c\\x36\\x27\\x97\\xc7\\\r\n\\xd6\\x71\\x2a\\x56\\x7e\\x93\\x6f\\x09\\x4b\\x0c\\xc6\\x1c\\x64\\x53\\xd4\\x5a\\\r\n\\xa1\\xd8\\xb6\\x56\\xb6\\x23\\xd2\\xc7\\x4b\\x59\\x51\\x50\\x73\\x8b\\xed\\x34\\\r\n\\x4d\\x38\\x00\\xe6\\x1c\\xd2\\x4a\\x8b\\x17\\xb3\\x5d\\x44\\x6f\\x90\\x0a\\x0e\\\r\n\\x56\\x6b\\x90\\xc4\\xe3\\x02\\xb7\\x26\\xa2\\x90\\x10\\xcd\\xe6\\x8e\\x4c\\x72\\\r\n\\x8d\\xcd\\xae\\x37\\x60\\x3f\\x46\\xbf\\xbe\\xa5\\x81\\xf3\\x94\\x71\\x19\\x44\\\r\n\\xf7\\xb1\\x25\\x23\\x44\\x12\\x32\\x93\\xef\\xce\\x66\\xb5\\xbb\\xa8\\x07\\xd3\\\r\n\\x53\\x54\\x47\\x0a\\x2c\\xb5\\x14\\x68\\xb3\\x3d\\xdb\\x33\\x0d\\xfa\\xb1\\xea\\\r\n\\xc7\\xa9\\x80\\x0e\\xd8\\xe5\\x6f\\x50\\x2f\\xae\\x31\\xc2\\xea\\xaa\\x59\\xf9\\\r\n\\xc6\\x3e\\x25\\xc1\\xa4\\x8e\\x03\\x22\\xb4\\xf4\\xb4\\xee\\x6a\\xa4\\xa5\\xc4\\\r\n\\xde\\x65\\x7a\\x76\\x11\\x4a\\x9b\\x5e\\x44\\x8e\\xdd\\x48\\x46\\x99\\x2a\\xa7\\\r\n\\x49\\x66\\x8d\\xd8\\x46\\xea\\x1c\\x67\\x4c\\x3c\\xa1\\x99\\xd4\\x02\\x14\\x75\\\r\n\\x2d\\x8b\\x63\\x7e\\x5d\\xfa\\x46\\x98\\x8e\\xcc\\xfb\\x00\\x7b\\x7a\\x0f\\xd0\\\r\n\\x2d\\x86\\x96\\x5a\\xc2\\x41\\x0f\\x64\\x31\\x32\\xab\\x17\\x21\\x9b\\xab\\x34\\\r\n\\x61\\x62\\x3b\\x63\\xb9\\xb6\\xa1\\x14\\xe0\\x84\\x8e\\x34\\x03\\x98\\x41\\x73\\\r\n\\x61\\xd5\\x7b\\x01\\xf3\\x5e\\xdb\\x76\\xb6\\xae\\xde\\xda\\x76\\x4b\\xe1\\x73\\\r\n\\xfa\\x03\\xed\\xa9\\xf8\\x74\\x92\\x18\\xde\\xa1\\xd0\\xd2\\xbf\\xf1\\xab\\xe4\\\r\n\\x84\\x7d\\x41\\x02\\xe3\\xdb\\x52\\xf1\\x2a\\x52\\xdc\\xa6\\xa8\\x78\\xaa\\x32\\\r\n\\xf3\\x45\\x34\\x2c\\x46\\x67\\xdb\\x9a\\x80\\x32\\xff\\x00\\x16\\xde\\xba\\xe0\\\r\n\\xdc\\x59\\x2f\\x7e\\x0b\\xc4\\x5a\\x92\\xa9\\x6d\\x7b\\x50\\xd6\\x02\\x7f\\xe5\\\r\n\\x3f\\x11\\x7f\\xbc\\xe7\\xe9\\xaa\\x98\\xb8\\x71\\x86\\x59\\x04\\xad\\xca\\x8c\\\r\n\\xf3\\x63\\x3c\\x97\\x76\\x29\\xd6\\xf1\\x2c\\x37\\x92\\x2b\\x7f\\x6b\\x8f\\x9b\\\r\n\\x7d\\xb4\\x9c\\x2e\\x9e\\x09\\x52\\x96\\xb5\\x96\\x4e\\x29\\xc5\\x80\\x26\\x3a\\\r\n\\xca\\x9b\\xdf\\xc1\\xc0\\xe2\\xf8\\x51\\xd2\\xf6\\xb1\\xc4\\xd5\\x4b\\x94\\x85\\\r\n\\x70\\x0b\\x75\\x32\\xd3\\x4a\\x16\\xdc\\xd0\\x5d\\x36\\x51\\xe6\\xf3\\x0d\\xb1\\\r\n\\x61\\xd4\\x3e\\xa0\\x8f\\x5d\\x54\\x45\\x0e\\xc6\\x7a\\x3a\\xa0\\xcf\\xdb\\x97\\\r\n\\x68\\x4d\\xa5\\xdf\\xd1\\x66\\x8d\\x7f\\x9e\\xa8\\xa4\\xac\\x4c\\x68\\xea\\x99\\\r\n\\xe2\\xa7\\x91\\x8d\\xe0\\xee\\xdf\\xbb\\xce\\x1b\\xcb\\x15\\x54\\x7f\\x1a\\x35\\\r\n\\x7d\\xd5\\x5c\\x3e\\xd7\\x6c\\x69\\xf8\\xa5\\x25\\x59\\x34\\x0f\\x1c\\xec\\xd5\\\r\n\\x15\\x24\\xc9\\x3c\\x35\\x0d\\x51\\x35\\x44\\xb4\\xb3\\x1d\\x80\\xe4\\x89\\x6c\\\r\n\\x8e\\xcc\\x03\\xc5\\x8b\\x0b\\xf5\\x5b\\xec\\xcd\\x72\\x4a\\xae\\xdc\\x3e\\x6a\\\r\n\\xaa\\x22\\xe3\\x70\\xeb\\x3c\\x74\\xd5\\x70\\x1b\\x82\\x7a\\x6f\\x1d\\x49\\x5b\\\r\n\\xed\\xb9\\xd3\\x53\\xcf\\x1f\\xef\\x11\\xa6\\x29\\x35\\xc9\\x36\\x22\\xe9\\x6d\\\r\n\\xfd\\x02\\xde\\xdf\\x36\\x32\\x7d\\x35\\xf1\\x06\\x72\\x51\\x48\\xd1\\x32\\xdf\\\r\n\\x76\\x5b\\x2f\\x57\\x6f\\x60\\x2c\\x77\\xba\\x8b\\xf7\\xd6\\x37\\x8d\\x78\\x7d\\\r\n\\x5c\\x6d\\x15\\x7c\\x92\\x35\\x96\\x8d\\x7e\\x57\\x9c\\x0b\\xbf\\x4b\\x3e\\x2b\\\r\n\\x82\\x33\\x39\\x70\\xb1\\x82\\xe4\\x2e\\xa9\\xe0\\xa8\\xe3\\x13\\x57\\xd4\\x45\\\r\n\\x1b\\x98\\xfc\\x3f\\x0b\\x90\\x1f\\x39\\x66\\x11\\xa5\\x57\\xc1\\x72\\x0b\\x1b\\\r\n\\x73\\x55\\xb2\\x50\\x5b\\x01\\xdb\\x40\\xa5\\x4f\\x12\\x9a\\x9f\\x88\\x55\\x2f\\\r\n\\xd9\\xbe\\x23\\x0d\\x52\\x88\\x21\\xa2\\x4a\\xc9\\xa2\\x0a\\xf2\\x53\\x44\\x12\\\r\n\\x95\\x63\\x59\\x44\\x32\\x09\\xa9\\xd4\\x3c\\x45\\x43\\xab\\x87\\xbd\\xcd\\x0f\\\r\n\\xff\\x00\\x2d\\xd0\\x45\\x87\\x12\\x96\\x87\\x88\\xc1\\x23\\xbc\\xf2\\x2c\\xb4\\\r\n\\x53\\x18\\xda\\xce\\xcb\\x1a\\xb3\\x02\\x09\\x89\\x99\\x0e\\xc6\\xfd\\x8e\\xa2\\\r\n\\xa8\\x8f\\xed\\x0f\\x05\\x48\\xe7\\x8d\\x26\\x8d\\x1f\\x85\\xd0\\x86\\x54\\x91\\\r\n\\x43\\xaa\\xb0\\x69\\x72\\x0c\\x14\\x80\\x72\\xde\\xfd\\xf7\\xd1\\xe7\\x56\\x71\\\r\n\\x78\\xb8\\xa4\\x53\\x3c\\x15\\x50\\xf1\\x82\\xd0\\xc7\\xb1\\x1c\\xa3\\x4e\\xb0\\\r\n\\x43\\x76\\x79\\x82\\x18\\xd4\\x02\\xdd\\x5b\\x16\\xe9\\x60\\x2a\\xa7\\xe2\\xfc\\\r\n\\x0a\\x40\\xd3\\x2c\\x98\\xd4\\x4b\\x49\\x26\\x6a\\x9f\\x0b\\x16\\x59\\x2a\\x1d\\\r\n\\x77\\xb9\\x23\\xe0\\xba\\xd8\\x1b\\xb7\\x50\\xd4\\x31\\x43\\x14\\x4d\\x27\\x3d\\\r\n\\x9e\\x9b\\x08\\xd4\\x36\\x4d\\xf7\\x85\\x32\\xfb\\xb8\\xf1\\x1d\\x67\\x60\\x54\\\r\n\\x1e\\xf7\\xbe\\x92\\x43\\xf0\\xc2\\x2e\\xe2\\x33\\xb9\\xf7\\x2c\\x47\\x4d\\xcf\\\r\n\\xf0\\xe7\\xf9\\xea\\xca\\x47\\x51\\xb6\\x79\\x03\\xb9\\xf7\\xbe\\xf7\\xd3\\x2d\\\r\n\\x9a\\x45\\x12\\x15\\x39\\x13\\x6c\\xad\\x72\\x47\\xe6\\x3d\\xbd\\xc6\\xa4\\x97\\\r\n\\x90\\x25\\x36\\xb3\\x44\\xa3\\x36\\x20\\x6c\\x30\\x07\\xdc\\x7a\\x69\\x2a\\x8d\\\r\n\\x39\\xa6\\x52\\xdd\\x48\\xc4\\x66\\x3e\\xa0\\x0f\\xea\\x34\\x2e\\x56\\xfb\\x0d\\\r\n\\xce\\xb9\\xb9\\x2f\\xae\\xda\\x91\\xa4\\x78\\xfa\\xbb\\xa9\\xb1\\x24\\x6b\\x87\\\r\n\\x78\\x7d\\xa2\\x35\\x69\\x8f\\xa7\\xde\\x1c\\x77\\xfe\\x7a\\xae\\x46\\xf3\\x41\\\r\n\\x59\\x3c\\x7b\\x7f\\x04\\xac\\x9f\\xcc\\xdb\\xfc\\x75\\x43\\x25\\x68\\xe4\\xcb\\\r\n\\x3c\\x2f\\x5b\\x93\\x85\\x03\\x95\\x33\\x36\\x07\\x7d\\xbc\\xa8\\x2d\\x70\\x77\\\r\n\\x3e\\xbd\\xb5\\x0d\\x27\\x0b\\x84\\xda\\xb2\\x40\\x80\\x10\\x59\\xa7\\x2c\\xd8\\\r\n\\x8f\\x6c\\x50\\xfb\\xad\\xb6\\xdf\\x61\\xb6\\x8d\\x4d\\x4f\\x2f\\xc7\\x4f\\x1c\\\r\n\\x5c\\xe4\\x01\\xda\\x45\\xf9\\x42\\xc3\\x9c\\x6b\\x22\\x2f\\x7b\\x74\\xe5\\x25\\\r\n\\x85\\x9a\\xdd\\x26\\x89\\x59\\x26\\x61\\x24\\xcc\\xb7\\x44\\x0c\\xe0\\x46\\x54\\\r\n\\x60\\x41\\x38\\x85\\xe6\\x34\\x62\\x5b\\x5d\\xc7\\x32\\xe6\\xcf\\x6b\\x41\\x53\\\r\n\\xcb\\x31\\x86\\xab\\xab\\x84\\x4d\\x7b\\x24\\x62\\x1b\\x62\\xc8\\x2c\\x12\\x27\\\r\n\\x31\\xa9\\xc1\\x46\\xd7\\x48\\xae\\xf7\\x7b\\x89\\xe1\\x2a\\x25\\x47\\x8e\\x7a\\\r\n\\x49\\x24\\x89\\xf0\\x08\\x58\\xc0\\xc8\\x42\\x06\\xb4\\x83\\xf7\\x48\\x70\\xb5\\\r\n\\xd4\\x73\\xdc\\x15\\xb8\\x41\\xaa\\x3a\\x69\\x65\\xa8\\xcc\\xad\\x4c\\x6b\\x55\\\r\n\\x93\\x34\\x89\\x24\\xd4\\x52\\x24\\x82\\xe3\\x98\\x50\\x84\\x45\\x68\\x6f\\xdf\\\r\n\\x94\\x24\\x1e\\xa0\\xc7\\x85\\x69\\x8e\\x46\\x96\\x66\\xaf\\x91\\x64\\xc5\\x6a\\\r\n\\x6a\\xa9\\x66\\x8c\\xd3\\x03\\xf2\\xbf\\xc3\\xb2\\x2b\\x1e\\xa1\\xc8\\xc4\\xdc\\\r\n\\x9d\\xa3\\x8e\\x79\\xae\\xef\\x50\\xc2\\x20\\xb9\\xa9\\x65\\xa7\\x68\\x58\\x4f\\\r\n\\xd6\\x49\\x8d\\x08\\x05\\x42\\xa9\\x0a\\x71\\x65\\x4b\\x9e\\xcf\\x2f\\x96\\x99\\\r\n\\xd8\\x80\\x81\\xa4\\xe5\\xc6\\xc1\\x42\\x3c\\x58\\x13\\x88\\xc9\\x0f\\x2d\\xc6\\\r\n\\x3e\\x97\\x16\\xc9\\x86\\x80\\xa7\\x8d\\x18\\x5c\\x77\\x45\\x3d\\x3e\\xcd\\x7f\\\r\n\\x6f\\x53\\x7f\\x7d\\x4c\\x25\\x64\\x8e\\x9e\\xb6\\x5f\\xec\\x1a\\x19\\x0d\\x0d\\\r\n\\x42\\x65\\x85\\x5a\\xd3\\x8c\\xfa\\x14\\x2d\\xaa\\xd8\\xa1\\x6e\\x56\\xe7\\xb1\\\r\n\\x6d\\x45\\x4f\\x5a\\x96\\xac\\xe1\\xac\\xaa\\xc4\\xa7\\x4f\\x86\\x2b\\x8c\\x7c\\\r\n\\xb9\\x17\\x05\\x95\\x60\\x9a\\x4a\\x57\\x59\\xd5\\x14\\x34\\x30\\xc4\\xc7\\x0e\\\r\n\\x6e\\xd8\\x4d\\x80\\x97\\xca\\xd9\\x5c\\x02\\x6c\\x03\\x77\\xdf\\x7f\\xf0\\x3f\\\r\n\\x9e\\xbf\\x69\\x22\\x44\\x29\\x6b\\x5a\\xb2\\xa5\\x0c\\x52\\x73\\x02\\xac\\x9c\\\r\n\\xb5\\x9d\\x59\\x76\\xe5\\xc8\\x8f\\xd4\\x54\\x8b\\x59\\x95\\x94\\xef\\xa9\\x39\\\r\n\\xd1\\xc9\\x22\\x70\\xf7\\x89\\xa7\\x44\\x90\\xc6\\xe9\\x4a\\xd2\\x2a\\x19\\xe3\\\r\n\\x0b\\xf7\\x88\\xbb\\x33\\x29\\x04\\xa9\\x20\\x9b\\x8b\\xdb\\xed\\x75\\x28\\x63\\\r\n\\x92\\x7d\\xad\\xe0\\xf5\\x10\\xb5\\xfb\\xa5\\x4d\\x1d\\x3e\\x2a\\x87\\xd1\\x5b\\\r\n\\xb2\\xfa\\x7a\\x0d\\x4f\\x49\\x20\\x26\\x34\\xe5\\xd3\\xae\\x5b\\xfd\\xdc\\x51\\\r\n\\x2f\\xf9\\xff\\x00\\x4d\\x46\\x23\\xb1\\x7a\\x67\\x61\\xf9\\x95\\x5c\\x48\\x3f\\\r\n\\xa7\\xf5\\x1a\\x23\\x96\\x55\\x69\\x67\\x30\\x90\\xc0\\xd9\\x95\\xb0\\xf3\\x7b\\\r\n\\xa0\\x3b\\x9f\\x7b\\xfb\\x6b\\x81\\x52\\x2a\\x19\\x21\\x9a\\x5a\\x7a\\x1a\\x89\\\r\n\\x2f\\x61\\x4f\\x1d\\x5b\\x8a\\x49\\xb9\\x67\\xe5\\x21\\x1b\\x26\\x22\\xd8\\x8d\\\r\n\\xbb\\x9d\\x71\\xe9\\x1a\\x48\\x52\\x1a\\x5a\\x89\\xa0\\xa7\\x89\\x49\\x25\\x24\\\r\n\\xa9\\x9c\\xaa\\xc6\\x4d\\x81\\xe8\\x54\\x95\\xb1\\xbf\\x4e\\x16\\x1b\\x68\\x3f\\\r\n\\xde\\x5d\\x72\\x5b\\x9d\\xb7\\xef\\x97\\x7b\\xe2\\x76\\xd3\\x10\\x87\\x28\\xe7\\\r\n\\x8d\\xe0\\x5f\\x32\\x9f\\x86\\xd9\\xf9\\x3a\\x4e\\xe3\\xa0\\x9d\\xc6\\xf6\\xb5\\\r\n\\xf4\\x91\\x4c\\x8d\\x1f\\x94\\x64\\xdf\\xf5\\xff\\x00\\xae\\x82\\x9e\\xbd\\xb7\\\r\n\\xd1\\x8c\\x83\\x6c\\x4d\\xbb\\x1d\\x8e\\xdf\\xd3\\x49\\x51\\x51\\x35\\x57\\xee\\\r\n\\xac\\x25\\x06\\x38\\xe3\\xb8\\x3e\\x50\\x6f\\xcc\\x07\\x1d\\xc5\\xec\\x7b\\xa8\\\r\n\\xed\\xaa\\x90\\xd5\\xb5\\x5c\\x9a\\x9f\\xf5\\x88\\x4c\\x3f\\x05\\xd8\\x58\\xe5\\\r\n\\x91\\x9e\\xe8\\xdb\\x77\\x56\\x1b\\xdf\\xd6\\xda\\xe2\\x10\\x50\\xd6\\xf2\\x96\\\r\n\\xaa\\x10\\xc2\\x09\\xe9\\x9a\\x58\\x63\\x9e\\x9c\\xf3\\x62\\x75\\xbc\\xec\\xc7\\\r\n\\x71\\xd4\\x84\\x9b\\xf6\\x16\\xed\\xaa\\xaa\\x6a\\x6f\\xb5\\xd4\\x74\\x35\\x95\\\r\n\\x32\\x78\\x7a\\xba\\x89\\x29\\xaa\\x21\\x10\\xf2\\xd6\\xde\\x1e\\x97\\x96\\xa7\\\r\n\\x96\\xd2\\x46\\x9f\\x1a\\x76\\x91\\x9c\\xa7\\x44\\x58\\x2e\\x65\\xcc\\x9c\\x3b\\\r\n\\xed\\xbf\\x0a\\xa8\\x75\\xfb\\xcf\\xde\\x2b\\x24\\x46\\x52\\x7c\\x93\\x45\\x24\\\r\n\\x12\\xc4\\xea\\x7f\\x04\\x88\\xea\\x7d\\xb5\\xe2\\x25\\x5f\\xb2\\x75\\x72\\x4a\\\r\n\\x15\\x64\\x58\\x6a\\xea\\xf8\\x77\\x30\\xee\\x2f\\xca\\xa4\\x6a\\x68\\x72\\x7e\\\r\n\\xe7\\x18\\x16\\xc7\\x54\\xa2\\x48\\x38\\x75\\x17\\x0e\\xa3\\x9b\\x3e\\x5f\\x0c\\\r\n\\xe6\\xc8\\x39\\x77\\x59\\x24\\x59\\x25\\x60\\xf3\\xd4\\x3c\\xcd\\x1e\\x19\\xcd\\\r\n\\x33\\xe2\\xb6\\x20\\x05\\x5c\\x74\\x91\\x54\\x78\\x99\\x61\\xe1\\xd4\\x8f\\xe0\\\r\n\\xe9\\x60\\x8a\\x48\\x5a\\xa7\\x88\\xd5\\x01\\xcf\\xa9\\xb3\\xe1\\x0a\\xf2\\x57\\\r\n\\x18\\x60\\xe6\\xb5\\x92\\x20\\xf8\\xa9\\xc9\\x6f\\x59\\xf6\\x7f\\x88\\x33\\x2b\\\r\n\\x54\\x53\\x88\\xc8\\xe6\\x7c\\x4b\\xa7\\x5c\\x26\\xe3\\xff\\x00\\x13\\x4c\\xc0\\\r\n\\x14\\x3b\\xac\\xd1\\x86\\x89\\xb2\\x05\\xb3\\xad\\xe1\\x2f\\xf1\\xa4\\xa3\\x83\\\r\n\\x82\\xd4\\xc2\\xca\\x8c\\xc9\\x2b\\x53\\x4d\\x51\\x41\\x39\\x8f\\x10\\xcd\\x76\\\r\n\\x8a\\xb8\\x39\\x4f\\x30\\x54\\xdf\\xcb\\xac\\x26\\x57\\x48\\x95\\xf1\\x19\\x8b\\\r\n\\x74\\x33\\x6d\\x28\\xb6\\xcc\\x51\\x80\\xbe\\xe7\\x6e\\x9f\\x5d\\x2c\\xb4\\xe5\\\r\n\\x51\\xe4\\x74\\xe7\\xaf\\xa7\\x4a\\xc8\\x0f\\xaf\\x63\\x71\\xbe\\xfe\\x9b\\xd8\\\r\n\\x6b\\xa6\\x9e\\x32\\x68\\x9d\\x0c\\xb0\\x82\\x44\\x32\\x1c\\x9e\\xd2\\x06\\x56\\\r\n\\x0c\\xc1\\xce\\x59\\xa9\\x3f\\x5b\\x9b\\xef\\x41\\x3d\\x4d\\x44\\x34\\xcd\\x14\\\r\n\\xb5\\x20\\xb3\\x17\\xe4\\x62\\x01\\x75\\x75\\xe5\\xab\\xca\\x06\\x3d\\xd0\\x06\\\r\n\\x6d\\xca\\x80\\xd6\\x17\\x48\\x78\\x3c\\xaf\\x51\\xc0\\xf8\\xfc\\x6b\\x4f\\xe2\\\r\n\\x1b\\x2b\\x27\\x13\\x58\\x41\\xce\\xcf\\x1a\\x49\\x17\\xc6\\x8d\\x1a\\x25\\x7e\\\r\n\\xbb\\x93\\x73\\xd3\\xb5\\x1f\\x1c\\xa6\\xcd\\xeb\\xb8\\x84\\x3e\\x0f\\x89\\xc3\\\r\n\\x12\\xb4\\x98\\xfd\\xa3\\xe0\\x90\\x78\\x5a\\x9c\\xac\\x3a\\x5b\\x88\\x52\\x78\\\r\n\\x0a\\xae\\xc0\\x49\\x24\\x8e\\xfb\\x8c\\xb5\\xb7\\x03\\xe2\\x16\\xf4\\xff\\x00\\\r\n\\x47\\xc6\\x36\\xf4\\xd8\\xc4\\x0f\\xf3\\xd7\\x0d\\x35\\x92\\x2c\\xd5\\x30\\xd6\\\r\n\\xc7\\x2d\\x4d\\x4c\\xef\\xcd\\x56\\x9a\\x19\\x19\\xb9\\x7c\\xb8\\xf0\\x24\\x91\\\r\n\\x2b\\x06\\x92\\x47\\x7b\\x4b\\x7c\\x94\\xdb\\x10\\x29\\xa9\\x79\\x71\\x4a\\x29\\\r\n\\x95\\xe0\\x96\\x30\\x09\\x59\\x63\\x50\\x50\\xfd\\x7a\\xbd\\x0e\\xd6\\xd7\\xec\\\r\n\\xc8\\x63\\x13\\x56\\xc7\\x2c\\x9e\\x22\\x63\\x72\\x04\\x8b\\xb3\\x96\\x36\\x50\\\r\n\\x4e\\xdd\\xac\\x14\\x0b\\x00\\x0f\\x98\\xf5\\xb8\\xeb\\x4b\\x59\\x56\\xd7\\x1e\\\r\n\\xac\\x3d\\x97\\xdb\\x7d\\xff\\x00\\x2d\\x1f\\x71\\xbb\\x1f\\x4b\\x0f\\xad\\xf5\\\r\n\\x2d\\x63\\xd8\\xf2\\x7e\\xfc\\x8f\\x2a\\xf9\\x71\\x6f\\xf0\\x56\\x6e\\xc4\\x8d\\\r\n\\xb4\\xb3\\x53\\xba\\xca\\x55\\xad\\x24\\x76\\xbd\\xff\\x00\\xeb\\xfe\\x5a\\xcd\\\r\n\\x63\\x22\\x39\\x2c\\xf7\\xf9\\x45\\xc6\\xe0\\x7f\\xe9\\x7b\\x68\\xb2\\xb9\\xee\\\r\n\\x7f\\x41\\xe9\\xa2\\xec\\xf7\\xb8\\x76\\x53\\xf9\\x5f\\x6f\\xe9\\xa9\\x5e\\x49\\\r\n\\x98\\xae\\x66\\xc9\\x7d\\x80\\x1b\\x0d\\x70\\x67\\x90\\xdc\\xc9\\xc5\\x28\\xd4\\\r\n\\xfe\\x4d\\x32\\x2f\\xf8\\x6b\\x8e\\x47\\xd3\\x22\\xfe\\xd4\\xac\\x57\\x43\\xff\\\r\n\\x00\\x9e\\xcd\\x62\\x3d\\x3b\\xdd\\x48\\xfc\\xc6\\xa0\\xfb\\x3c\\xd5\\x12\\x8a\\\r\n\\xca\\x71\\x23\\x70\\x69\\x9d\\xad\\xe5\\xb1\\xfd\\x95\\x3e\\xe0\\x3a\\x3e\\xfc\\\r\n\\x87\\x3b\\x06\\xc7\\xb5\\xec\\x66\\xfd\\xc5\\xa0\\x1c\\x39\\xa6\\xa7\\xe6\\x55\\\r\n\\xe3\\xce\\x8e\\xa5\\x4d\\x8d\\x8b\\x6f\\x13\\x29\\x0d\\x7e\\x5f\\x6f\\x7d\\x49\\\r\n\\x14\\x4c\\x39\\xeb\\x6e\\x7d\\x5c\\x79\\x04\\x8d\\xcf\\xca\\x24\\x61\\x9c\\x92\\\r\n\\x38\\xcf\\xfe\\x10\\x58\\x8f\\x68\\x62\\xe7\\xf2\\x64\\x85\\xc4\\x2d\\x0b\\x22\\\r\n\\x91\\x50\\xc6\\x49\\x1c\\x33\\xe7\\x1b\\x07\\x02\\x44\\x6c\\xb9\\x8e\\x73\\xc6\\\r\n\\xf8\\x9b\\x60\\x26\\x59\\x63\\x0c\\xd9\\x35\\x40\\x6b\\x89\\x12\\x7a\\xba\\xb6\\\r\n\\x79\\x48\\x9a\\x34\\x6f\\x83\\x1c\\x93\\x49\\xdf\\xfd\\x90\\x38\\x0e\\x92\\x35\\\r\n\\x4d\\x53\\x3c\\x77\\xf0\\x91\\x31\\xcd\\x1a\\xc5\\x83\\xf2\\xa4\\xa6\\x8e\\x5b\\\r\n\\x8b\\x14\\x69\\x3e\\x10\\x62\\x09\\x2d\\xe6\\xc7\\x6d\\x52\\x4f\\x88\\x5a\\x8a\\\r\n\\x86\\x26\\x35\\xde\\x3c\\x1e\\x48\\xd2\\x35\\x8a\\xa4\\xd8\\xc4\\xf1\\x94\\x74\\\r\n\\xc4\\x9e\\xb5\\x21\\xef\\x7e\\x63\\xdc\\xd6\\x3c\\xf1\\xad\\x37\\x0f\\x9a\\x96\\\r\n\\x11\\x7f\\x8b\\xcd\\x90\\x24\\x92\\x3e\\xd6\\x19\\x1b\\xa2\\x46\\x3c\\xec\\x77\\\r\n\\x6e\\xda\\x5a\\xb9\\x55\\x51\\x67\\x9e\\x2a\\xaa\\x4e\\xa6\\x2f\\x4e\\xcc\\xd8\\\r\n\\xa5\\x80\\xfb\\xc1\\x4e\\xc5\\xc8\\xdb\\x26\\x0f\\x25\\xfa\\x94\\x5e\\x4c\\x55\\\r\n\\x04\\xb6\\x6a\\xab\\x8b\\x79\\xe5\\x94\\x9e\\x9d\\xaf\\xf7\\x5c\\xa5\\x6f\\xaa\\\r\n\\x8b\\x6d\\xe6\\x2a\\xe3\\x6e\\xc5\\x7e\\xbf\\x36\\xa7\\xa7\\xa6\\xa4\\x68\\x32\\\r\n\\x3c\\x96\\xa8\\x86\\x54\\x51\\x67\\xbe\\x77\\x8d\\xa4\\xe6\\x1b\\xab\\xba\\x87\\\r\n\\x00\\x62\\x6f\\xb1\\xe9\\xd0\\xe1\\xd5\\x6a\\x0d\\x65\\x24\\x53\\x43\\x45\\x57\\\r\n\\x9b\\x27\\x8c\\xa0\\x92\\x17\\x4e\\x43\\x13\\xd4\\xf2\\xd2\\x33\\x07\\x8c\\xbf\\\r\n\\x78\\xf2\\x03\\x7e\\xd0\\x48\\x07\\x30\\x98\\x52\\x64\\xdf\\x76\\x60\\xb7\\x31\\\r\n\\x6f\\xef\\xe5\\x1e\\x9f\\xf2\\xea\\x51\\x29\\xca\\x5a\\x73\\x27\\x31\\x39\\x98\\\r\n\\x3c\\x30\\xcf\\x70\\xc5\\x19\\xba\\x03\\x22\\xf2\\x98\\x86\\x18\\x9e\\x5b\\x65\\\r\n\\x6e\\xfa\\x3c\\x49\\x07\\x8b\\x8d\\x68\\xa3\\x49\\x04\\x5b\\xbc\\x8b\\x96\\x2d\\\r\n\\xcd\\x85\\x4b\\x12\\x8d\\x19\\xf8\\x8e\\xb9\\xc7\\xb1\\xea\\xf4\\xd5\\x6f\\x2e\\\r\n\\x45\\x93\\xc4\\x55\\x7d\\x9b\\x91\\x98\\x9d\\xc2\\xd2\\x48\\x23\\xc9\\xfd\\x9b\\\r\n\\x90\\x23\\xfa\\x97\\xe9\\xef\\xa8\\xe5\\x47\\xc8\\x4b\\x09\\x91\\x83\\x6d\\x69\\\r\n\\x0b\\x3f\\x6f\\x7d\\x87\\xae\\xfb\\x7d\\x75\\x24\\x32\\x30\\xe4\\xcf\\x79\\x3d\\\r\n\\xd7\\x32\\x47\\x97\\xfa\\xdf\\xf3\\xd3\\x4f\\x8a\\xab\\x49\\x19\\x4e\\x9b\\x06\\\r\n\\x69\\x1f\\x65\\xdb\\xb5\\xf2\\x61\\xb9\\x1e\\x9a\\xe0\\x5c\\x42\\x8b\\xa6\\x26\\\r\n\\x63\\x54\\x39\\xf2\\x61\\x27\\x88\\x85\\xd7\\x99\\x13\\x3b\\xf4\\xf3\\x84\\xc5\\\r\n\\x5d\\x54\\xb0\\x56\\x04\\xe1\\xe9\\xa1\\x43\\x4c\\xd8\\x25\\x65\\x6c\\xfc\\x56\\\r\n\\x5e\\xac\\x44\\x92\\xd4\\x85\\x10\\xc0\\x84\\x6c\\xc6\\x21\\xcd\\x26\\xe6\\xc2\\\r\n\\x49\\x71\\x2d\\x7b\\x0d\\x37\\x31\\x4a\\xce\\x88\\xf7\\xca\\xf9\\x0f\\x42\\x08\\\r\n\\xef\\x70\\xdd\\xf5\\x35\\x2d\\x51\\xdd\\x1d\\xac\\x18\\x76\\x6b\\x9d\\xb7\\x1e\\\r\n\\xbf\\xe3\\xaf\\x86\\x9d\\x2d\\x61\\xb5\\xbf\\xef\\xfe\\xba\\xea\\x24\\x58\\xdb\\\r\n\\x7f\\xaf\\xe7\\xa1\\x76\\xd8\\x8b\\xdf\\xbf\\x6e\\xe0\\xeb\\xc3\\xf3\\x20\\x8e\\\r\n\\x99\\x51\\xa7\\x96\\x49\\x64\\x09\\x17\\x29\\x3c\\xea\\xe5\\x99\\x47\\x51\\xe9\\\r\n\\xb5\\xc5\\xfd\\x75\\x2d\\x37\\x3e\\x98\\x06\\x0d\\xd3\\x0e\\x6c\\x81\\x7f\\xbc\\\r\n\\x91\\xf2\\xbb\\x7f\\x16\\xfd\\xb7\\xd4\\x07\\xc4\\xb1\\x8e\\x99\\xd5\\x16\\xd1\\\r\n\\x90\\xaa\\xac\\x40\\x2a\\xe7\\x7f\\x97\\xb1\\x36\\xff\\x00\\x1d\\x4f\\x1c\\xb4\\\r\n\\xcd\\x20\\x2d\\x1c\\x99\\x2b\\xc8\\x80\\xe0\\xad\\x24\\x2c\\x0a\\x91\\xb9\\x8d\\\r\n\\xec\\x4f\\xcc\\x36\\x3e\\x9a\\x10\\xd3\\xaa\\x42\\xaa\\x4b\\x62\\xbb\\xaa\\x12\\\r\n\\x6f\\x66\\x63\\x72\\xed\\xbe\\xf7\\xbb\\x5f\\xbf\\xcb\\xa5\\x44\\x64\\x0c\\x40\\\r\n\\x2c\\x5d\\xd6\\xca\\x77\\xbf\\xbd\\xbe\\x8b\\x6c\\xbe\\x9a\\xaa\\xe2\\x05\\x82\\\r\n\\x0a\\x98\\x65\\xa8\\x0c\\xcd\\x8a\\x39\\xa6\\x53\\x12\\xc8\\xe6\\xff\\x00\\x0e\\\r\n\\x08\\x43\\x34\\xd3\\x35\\x89\\x3b\\x2c\\x79\\xca\\x42\\xea\\xb1\\xe2\\xae\\x9c\\\r\n\\x25\\x35\\x7a\\x43\\x94\\x85\\x25\\xce\\x16\\x0b\\xf2\\x3a\\x14\\x8d\\x0d\\xac\\\r\n\\x8a\\xa3\\x64\\x03\\x22\\xf2\\x67\\x23\\x22\\xa1\\x5e\\x8e\\x1f\\x49\\x52\\x59\\\r\n\\x10\\x24\\x8c\\xfc\\x84\\x96\\x52\\x24\\x5b\\x7a\\x87\\x65\\x04\\x59\\x4d\\x88\\\r\n\\xb5\\xb4\\xf3\\x63\\x27\\x8c\\x8e\\x98\\xca\\x8a\\x97\\x56\\x99\\xda\\x22\\xd1\\\r\n\\x38\\x51\\x62\\x15\\xe4\\xc1\\x67\\x55\\x37\\x46\\x39\\xad\\x83\\x01\\xa8\\x05\\\r\n\\x5d\\x05\\x35\\x75\\x3c\\x81\\xc4\\xd4\\xd5\\xf1\\x2d\\x5f\\x2e\\x48\\xdc\\xa4\\\r\n\\x8a\\x05\\x4a\\xbb\\x29\\x00\\x23\\x59\\x19\\x18\\x5f\\xe9\\xa9\\x23\\x3c\\x20\\\r\n\\xd1\\x31\\xe5\\x81\\x27\\x0a\\x99\\xd8\\x10\\x48\\x51\\x6a\\x59\\x79\\x81\\x6d\\\r\n\\xb0\\x64\\x5c\\x76\\xf2\\x9d\\xb6\\x9b\\xf6\\x00\\xaa\\xad\\xa9\\x8a\\x53\\xfb\\\r\n\\xbc\\xf4\\xb5\\x54\\xc5\\x13\\xa4\\xa2\\xb3\\x04\\x92\\x07\\x74\\x6d\\xd7\\x99\\\r\n\\x2c\\x49\\xb8\\x63\\x90\\xdb\\x51\\x9f\\xb4\\xb5\\x5c\\x37\\x85\\x96\\x49\\xd9\\\r\n\\x84\\xf5\\x71\\xf3\\xa1\\xca\\x2e\\x92\\x56\\x0e\\x62\\xb4\\xd1\\xd9\\x8c\\x82\\\r\n\\xe2\\x30\\x16\\xf7\\x37\\x36\\x7a\\x29\\x78\\x85\\x6f\\x1f\\x4a\\x8a\\xa8\\xa6\\\r\n\\x0a\\xbf\\xba\\xd1\\xc3\\x51\\x98\\xe5\\xb8\\xa9\\xa7\\x49\\x99\\x6c\\x6d\\x7b\\\r\n\\x4e\\x8f\\x8d\\xee\\xa2\\xe7\\x52\\x70\\xde\\x1d\\x49\\x49\\xc3\\x9e\\xb3\\x87\\\r\n\\x71\\x1e\\x21\\xc3\\xa2\\xa4\\x4d\\xab\\xb8\\xa5\\x02\\x44\\xc2\\x8e\\x79\\x1c\\\r\n\\xe5\\x24\\xd5\\x74\\xca\\xeb\\x05\\x41\\x25\\x9d\\xd6\\x34\\xec\\x75\\x49\\x51\\\r\n\\x25\\x48\\x59\\x27\\xa6\\x82\\x67\\x52\\x56\\xea\\xf2\\xc4\\xae\\xc0\\xf6\\xdc\\\r\n\\x12\\x47\\x61\\xa6\\x8e\\x38\\xdb\\x09\\x2a\\xe4\\x96\\x47\\xc9\\x61\\x85\\x32\\\r\n\\xdf\\x96\\xb2\\x4b\\x22\\x1b\\x93\\xd4\\xec\\xe4\\x9b\\x74\\xde\\xfd\\xe2\\xa3\\\r\n\\x59\\xe3\\x90\\xc4\\x81\\x1c\\x47\\x32\\xcc\\x17\\xd2\\xd9\\xa1\\x2b\\xfd\\x74\\\r\n\\xf5\\xd1\\x49\\xca\\xf1\\x48\\x03\\xee\\xf8\\xe4\\x1b\\x3b\\x80\\x88\\xc0\\x12\\\r\n\\x4d\\xf7\\x22\\xf6\\xfc\\xee\\x91\\x47\\x37\\x33\\xb0\\x69\\x1b\\x23\\xbf\\xb3\\\r\n\\x1f\\x6b\\x76\\xfe\\xb6\\xd6\\x66\\x4b\\x7e\\x57\\xfe\\x56\\xf6\\xd5\\x45\\x0c\\\r\n\\xe3\\x99\\x47\\x50\\x8d\\x47\\x53\\x1c\\x84\\x61\\x24\\x72\\x0c\\x4e\\x1e\\x97\\\r\n\\x5b\\x86\\x3e\\xa2\\xe2\\xd7\\x3a\\x7a\\x34\\xa0\\xa6\\xa7\\x8a\\x99\\xed\\x03\\\r\n\\xe1\\x1b\\x34\\xa8\\x14\\x04\\x97\\x2b\\xe4\\xc5\\x90\\x2b\\x75\\x5f\\xa8\\x92\\\r\n\\xd7\\x6b\\xea\\xec\\x32\\x16\\xb5\\xc9\\xb0\\x00\\x77\\xb7\\xa7\\xe7\\xa2\\x3e\\\r\n\\x5d\\x47\\x44\\xa3\\x66\\x46\\x25\\x88\\xec\\x31\\xea\\xff\\x00\\x2d\\x55\\xd3\\\r\n\\xa3\\x64\\xb0\\xcf\\x22\\x03\\xef\\x8b\\x1d\\x70\\x89\\x6f\\x6c\\x78\\x95\\x11\\\r\n\\x27\\xf2\\xa8\\x8e\\xfa\\xfb\\x45\\x00\\x03\\x13\\x5a\\xb5\\x1b\\x0d\\xc8\\x9e\\\r\n\\x96\\x09\\x32\\xfc\\xae\\x5b\\x5c\\x2a\\x0e\\x1a\\x26\\x5b\\x54\\xc8\\xf5\\x33\\\r\n\\xc6\\x42\\x88\\x29\\xe3\\x30\\x99\\x25\\x2e\\xdd\\x0a\\x54\\x79\\x32\\xee\\xe5\\\r\n\\x47\\xae\\xaa\\x25\\x4f\\xf5\\x92\\xd6\\x9e\\x55\\x4e\\xa9\\xea\\x18\\x05\\xbe\\\r\n\\x68\\x41\\x92\\x60\\x88\\xb9\\xbf\\xcb\\xb3\\x62\\x16\\xf6\\xa7\\xa6\\x8d\\xf0\\\r\n\\x75\\x9a\\xa5\\xe4\\xc4\\xf3\\x19\\xf9\\x51\\xc3\\x0e\\x43\\x23\\x63\\x69\\xaa\\\r\n\\x25\\x05\\x8a\\x77\\x81\\x80\\xc8\\xad\\xb5\\x1a\\xcb\\x23\\xad\\x67\\xcd\\x3f\\\r\n\\x2e\\x39\\x05\\x0a\\x37\\x4c\\xa4\\x2e\\x2d\\x9d\\x57\\x28\\x74\\x65\\xe5\\x69\\\r\n\\xa4\\x5d\\x9a\\xf9\\xc9\\x5d\\xc2\\xa0\\x4a\\x3e\\x2f\\x4f\\x8b\\xd7\\xd1\\x95\\\r\n\\x61\\x45\\xc6\\x38\\x72\\x30\\xce\\xa6\\x18\\x80\\x29\\x0d\\x62\\xc3\\x32\\xcd\\\r\n\\x22\\x44\\xb8\\xce\\x5b\\x38\\xb7\\x66\\xd5\\x5c\\x62\\x55\\x0b\\x57\\xd7\\x3d\\\r\n\\x33\\xa9\\x1c\\x97\\x19\\x2c\\xaa\\x9f\\xee\\x43\\xaa\\x9b\\x8f\\xbb\\xdc\\x7a\\\r\n\\x1d\\x24\\x4a\\xbb\\x54\\x49\\x10\\x73\\x93\\xfc\\x30\\xea\\xae\\xfc\\x9b\\x11\\\r\n\\x66\\xc9\\x73\\x42\\xa4\\x58\\xfd\\x35\\x25\\x1b\\x59\\x63\\xa4\\x46\\x9d\\x8c\\\r\n\\x6c\\xa1\\x80\\x9a\\x26\\x6e\\x71\\x93\\x22\\xd9\\xe0\\x4c\\x4a\\x0b\\x0e\\x9a\\\r\n\\x8d\\xba\\x42\\xe3\\x15\\x11\\x2a\\x8b\\x41\\x4e\\x03\\x45\\x9e\\x4e\\x39\\xbc\\\r\n\\xd0\\xb0\\x16\\x1b\\x97\\x67\\x94\\xb9\\xf2\\x9e\\x5b\\x46\\xbd\\x22\\xe3\\x52\\\r\n\\xba\\x3c\\x77\\x4b\\x07\\xb0\\xdd\\xae\\x13\\x93\\x8e\\xe4\\x79\\x41\\x06\\xc7\\\r\n\\xe5\\x20\\x81\\xb6\\x9c\\xa9\\xc6\\x55\\x40\\xf8\\x81\\x7c\\x8d\\xae\\x47\\xf9\\\r\n\\x7b\\xf7\\xd4\\xb5\\x12\\x3b\\xd5\\x38\\x56\\x9a\\x9e\\x1b\\xe2\\x5e\\x34\\x91\\\r\n\\x72\\x55\\x6b\\x74\\xb4\\x71\\x30\\x66\\x18\\xb0\\xcb\\xdf\\x54\\xad\\x9c\\xaf\\\r\n\\x1d\\xf2\\x8e\\x56\\xe9\\x68\\xec\\xe6\\xdc\\xc5\\xba\\x8c\\x57\\xee\\xd9\\xa3\\\r\n\\x1d\\x56\\xde\\x2b\\x85\\xba\\x6f\\xf1\\x68\\xea\\x25\\x8e\\x41\\x89\\x23\\x13\\\r\n\\x27\\x36\\x17\\x04\\x7c\\xa5\\x48\\x5b\\xec\\x3d\\x0f\\x7d\\x41\\x57\\x1f\\xfa\\\r\n\\xbc\\xaa\\xed\\x2a\\xe3\\x70\\x62\\x29\\xf1\\xa2\\x20\\x77\\x37\\xf2\\x5f\\xb9\\\r\n\\x27\\x50\\xf8\\x02\\x64\\xa0\\xaa\\x1e\\x26\\x8c\\xee\\xf9\\x23\\x1e\\xa8\\xc7\\\r\n\\xcc\\x8f\\x01\\x6c\\x1b\\x02\\x18\\xdc\\x37\\x66\\xd7\\x15\\x62\\x92\\x45\\x2c\\\r\n\\x15\\x1c\\x3e\\x62\\x40\\x11\\xb0\\x92\\x19\\x39\\xf0\\xe4\\x00\\x61\\x7c\\x95\\\r\n\\x3e\\x5f\\x2c\\x9d\\x5e\\xa4\\xa4\\x91\\x2d\\xb9\\xdb\\x5a\\xd6\\x19\\xca\\x3a\\\r\n\\xec\\xa0\\x28\\x17\\x26\\xc3\\xd8\\x83\\xa5\\x99\\x18\\xc9\\xca\\x21\\xe4\\x31\\\r\n\\xed\\xcb\\x41\\xef\\x7e\\xe2\\xfd\\xff\\x00\\x3d\\x41\\x2a\\xc1\\x35\\x4b\\x78\\\r\n\\xb8\\xa1\\x09\\x11\\x6b\\x29\\x0c\\x0a\\xc8\\xe1\\x01\\x66\\x00\\xfa\\x5d\\x41\\\r\n\\xdb\\x23\\x8e\\xda\\xe2\\x74\\x55\\xf1\\x22\\xc1\\xce\\x4a\\xfe\\x1e\\x5d\\xee\\\r\n\\xcb\\x53\\x12\\x20\\xac\\x8d\\x14\\x17\\x3d\\x6c\\x18\\x86\\x50\\x10\\xb7\\x97\\\r\n\\xb9\\xd5\\x34\\x30\\xa3\\x49\\x4b\\x3d\\x27\\x0f\\x59\\x29\\x26\\xf8\\xe8\\xdc\\\r\n\\xda\\x54\\x91\\x6a\\x23\\x6f\\xec\\x24\\xef\\x7c\\x7a\\x9b\\x21\\x91\\xba\\x91\\\r\n\\xa8\\xe4\\x0a\\x7c\\x34\\xa9\\xcb\\x26\\xfd\\x4a\\x5e\\xc0\\x31\\xf7\\xee\\x6f\\\r\n\\xf9\\x6a\\x3a\\xb8\\x5f\\x16\\xed\\x22\\xdf\\xa2\\x70\\x0d\\xac\\xc3\\xb1\\x3b\\\r\n\\x6c\\x7b\\xf6\\xf6\\xd2\\xfe\\xf3\\x1c\\x33\\x95\\x46\\x04\\xbf\\xa9\\x1f\\xa6\\\r\n\\xdf\\x5d\\xac\\x6d\\x7d\\x54\\xa4\\x85\\x1e\\x6a\\x4a\\x88\\x7a\\xa1\\xc6\\xcf\\\r\n\\x14\\xb6\\x5f\\x32\\x9c\\x58\\x2b\\x75\\x65\\xe8\\x1a\\xcd\\xba\\xe9\\xd2\\x09\\\r\n\\xc6\\x70\\xc9\\xcb\\x27\\xd9\\x86\\xc6\\xfe\\xbb\\xad\\xc7\\xe7\\xa8\\x9e\\x96\\\r\n\\x39\\xc4\\x11\\x4c\\x2e\\xf2\\x58\\xbc\\xb8\\xab\\x10\\xd2\\xb2\\x74\\x86\\x92\\\r\n\\xc4\\xe0\\x0d\\x97\\xd3\\xf1\\x19\\xa3\\xb8\\x9a\\x40\\xa4\\x29\\x45\\x60\\xa1\\\r\n\\x9b\\xb7\\x51\\x6d\\xf0\\xd8\\x1b\\x03\\xbe\\x95\\xbc\\xe1\\x81\\xf9\\x88\\xeb\\\r\n\\x17\\x0c\\x0d\\xee\\xb7\\xf5\\x06\\xd7\\xfe\\x5a\\xe0\\xb5\\xd0\\x92\\xc3\\x97\\\r\n\\x37\\x0c\\xac\\x37\\x3f\\x0e\\x48\\x08\\x74\\xbe\\x00\\xb1\\x69\\x20\\x36\\x46\\\r\n\\x3f\\x2a\\x69\\xd6\\x08\\xa0\\x1c\\xb1\\x92\\x19\\x16\\x49\\x1c\\xb6\\xc2\\xdb\\\r\n\\xb8\\xdb\\xe6\\xb5\\xac\\x6d\\xda\\xfa\\xa7\\x8a\\x39\\x92\\x19\\x26\\x9a\\x1a\\\r\n\\x7f\\x83\\x04\\x71\\x9f\\x88\\xcb\\x18\\xdf\\x12\\xdb\\x65\\x7d\\xb7\\xd2\\x51\\\r\n\\xc3\\xe7\\x68\\x28\\xd2\\xa1\\xbd\\x56\\x91\\x27\\x8e\\x08\\xa3\\xcb\\xbf\\xc7\\\r\n\\x9c\\xbc\\xf2\\x9e\\xec\\xd1\\x2e\\x5a\\xad\\x04\\xc6\\xa9\\x2c\\x74\\xb2\\x38\\\r\n\\x64\\xcb\\x20\\x63\\xfb\\xc1\\xd4\\x2c\\xca\\x5b\\xd4\\x1f\\x4d\\x42\\xd4\\x14\\\r\n\\x35\\x55\\xb5\\x0e\\x91\\x51\\x48\\x69\\xa1\\x96\\x5e\\x52\\x52\\x18\\x8b\\xdd\\\r\n\\xa3\\x46\\x09\\xcc\\xe9\\x5c\\x89\\xf2\\xe6\\x3b\\x1d\\x51\\x3c\\x7c\\x4b\\x86\\\r\n\\xf0\\xc8\\xa1\\xf0\\xd1\\x48\\x95\\xd5\\xb4\\xfc\\xd7\\x52\\x6c\\xeb\\x1d\\x34\\\r\n\\x7c\\xea\\xbc\\x8c\\x72\\x63\\xd1\\x0a\\xdf\\xb1\\x6b\\x6a\\x7e\\x39\\xc4\\x78\\\r\n\\x9d\\x67\\x81\\x7a\\x8e\\x7c\\xb4\\x9c\\x32\\x9c\\xe5\\x0d\\x5a\\x87\\x4a\\xa0\\\r\n\\xd3\\x4c\\xbf\\x0a\\x39\\xd9\\x41\\xb0\\x4c\\xb2\\x4f\\x5b\\xd8\\x50\\x70\\x7f\\\r\n\\xb3\\x3f\\x64\\xe8\\x68\\x69\\x2a\\x65\\x7c\\xb8\\x97\\x13\\x2f\\xc4\\xf8\\x93\\\r\n\\xa4\\x31\\x4b\\x36\\x40\\xcc\\x7c\\x3c\\x3b\\xc7\\x7c\\x4a\\x48\\x16\\xe2\\xc0\\\r\n\\x1d\\x71\\x1a\\xf9\\xf8\\xe7\\x11\\x7e\\x0b\\xc3\\xaa\\x67\\x10\\xf0\\xaa\\x59\\\r\n\\x3c\\x24\\x55\\x13\\x09\\x1e\\x3a\\x5a\\x3e\\x55\\x32\\xc4\\xb2\\x46\\x7c\\xd2\\\r\n\\x64\\x1a\\xf6\\x01\\xbc\\xda\\xa7\\x0b\\xcc\\x92\\x96\\xb2\\x39\\x16\\xaa\\x9e\\\r\n\\x78\\xda\\x78\\xf9\\xc2\\xe2\\x44\\xe5\\xc8\\x48\\xc6\\x40\\x70\\x38\\x90\\x56\\\r\n\\xe6\\xdb\\x6a\\x2a\\x9a\\x5a\\x24\\xe1\\x4f\\x50\\xbf\\x0e\\x3f\\xd9\\xf4\\x72\\\r\n\\xc7\\x27\\x70\\x63\\x69\\x27\\xa7\\x9a\\xa9\\x63\\xb9\\xb7\\x53\\xcb\\xfd\\xe0\\\r\n\\x35\\x23\\x16\\x9a\\x1e\\x27\\x42\\xca\\xd0\\xe1\\x70\\x03\\xa3\\xf4\\xb2\\x05\\\r\n\\xb2\\xf2\\x5f\\xf8\\x6d\\x6f\\x2d\\xf4\\xb5\\xb3\\x7d\\xa9\\xe2\\x7c\\x3a\\x6a\\\r\n\\xc0\\x2a\\xa5\\xe1\\xf1\\x54\\x7c\\x2a\\x19\\x2a\\x3e\\x2b\\xd1\\xc7\\xd1\\xf7\\\r\n\\x74\\xcc\\xc6\\x14\\xfe\\x14\\x1a\\x5e\\x68\\xf1\\x15\\xb0\\x20\\x86\\x40\\xd2\\\r\n\\xb5\\xa3\\x67\\xf8\\xab\\x23\\x46\\x84\\x2e\\x66\\xe7\\x16\\xee\\x00\\xf7\\xed\\\r\n\\x2d\\x2d\\x4d\\xac\\xfd\\x63\\x0f\\xc2\\xd6\\xee\\x3e\\x8d\\x7f\\xeb\\xa0\\xd1\\\r\n\\xae\\x61\\x6c\\x6f\\xec\\x07\\xf9\\x5b\\xbf\\xe5\\xa3\\xca\\x17\\x3d\\xed\\x6f\\\r\n\\xea\\x7f\\x3f\\xf0\\xd4\\x6e\\xcb\\x87\\x31\\x77\\xf6\\xcb\\xd7\\xfc\\xf5\\xc9\\\r\n\\x60\\x08\\x91\\xf2\\x52\\x3d\\x1b\\x6f\\x6f\\x7c\\x47\\xe5\\xb7\\xd7\\x43\\x9d\\\r\n\\x2b\\x19\\xa9\\xd5\\xa2\\xdf\\x76\\x78\\xb2\\x18\\x3b\\x7b\\x98\\xef\\x6c\\xbd\\\r\n\\x98\\x5f\\xb6\\x80\\x06\\xf1\\x6f\\x74\\xee\\xa6\\xfd\\xc9\\x5f\\x43\\xb7\\x7e\\\r\n\\xff\\x00\\x5d\\x62\\x76\\xdb\\xb7\\xb6\\xb8\\x97\\x14\\xe1\\xe9\\x2c\\xf5\\x50\\\r\n\\xd0\\xcc\\x23\\x89\\x6c\\x6e\\x6c\\x45\\xd7\\xd6\\xe0\\x5c\\xec\\x77\\x03\\xb5\\\r\n\\xf4\\xe6\\x74\\x64\\x90\\x93\\x90\\x61\\x63\\x73\\xeb\\xfc\\xf5\\x47\\xc5\\xd8\\\r\n\\x30\\xa4\\x4a\\xea\\x75\\x2c\\xa2\\xe7\\x2e\\x68\\xc2\\xc3\\xea\\xc3\\xdb\\x51\\\r\n\\x54\\x45\\x08\\x15\\xdc\\x52\\x9e\\x97\\x28\\x92\\xfc\\xbe\\x41\\xa6\\x3f\\x11\\\r\n\\xd8\\xf6\\x31\\x60\\xea\\xe6\\xf6\\x2a\\x8a\\x7a\\x5b\\x6d\\x14\\xa5\\x8d\\x9a\\\r\n\\xa2\\x68\\x7f\\x7c\\xac\\x61\\x79\\x16\\x29\\x3e\\x68\\x95\\xc4\\x6b\\x00\\x2a\\\r\n\\x96\\x59\\x0a\\xb9\\xea\\x0c\\x0e\\xaa\\xde\\x91\\x16\\x9a\\x2a\\x55\\x60\\x98\\\r\n\\xd8\\x37\\xc5\\x68\\x84\\x6d\\x94\\x97\\x2e\\xe7\\x12\\xc9\\xb8\\x3b\\xc7\\x23\\\r\n\\x63\\x73\\x63\\xe2\\x6a\\xc4\\x70\\x52\\x42\\x85\\x58\\xa9\\x45\\xa8\\xf8\\x83\\\r\n\\x9e\\xb1\\xf5\\x0e\\x66\\x55\\x0e\\x94\\xf9\\x9e\\x5e\\x68\\x8f\\xf2\\x48\\x6d\\\r\n\\x34\\xd0\\xc8\\x67\\xe6\\x51\\xc5\\x00\\x76\\x46\\x48\\xe4\\xaa\\xaa\\x61\\x50\\\r\n\\xa2\\x32\\x2f\\xb2\\xa1\\x72\\x64\\x25\\x5c\\x84\\xeb\\x6b\\xcf\\x6d\\x53\\x55\\\r\n\\x2d\\xd2\\x9f\\x84\\xa8\\x66\\x90\\x07\\x4f\\x11\\x1c\\x50\\xc9\\x4a\\x57\\x11\\\r\n\\x89\\x65\\xc6\\x9a\\x2c\\x2f\\x95\\xc1\\x57\\xfe\\xd4\\x0d\\x2d\\x64\\x99\\x53\\\r\n\\xa1\\xa9\\xac\\x79\\xec\\xcd\\x88\\x86\\x46\\xc9\\x8f\\x73\\x70\\xa1\\x55\\x36\\\r\n\\x3f\\x33\\x02\\xbf\\x28\\xa6\\x32\\x5b\\xc6\\xd4\\xd4\\xbc\\xcb\\x9f\\x92\\x9c\\\r\n\\x37\\x31\\xae\\x41\\xd8\\x5a\\xea\\x88\\x3c\\xa1\\x00\\xcf\\xca\\xc7\\x42\\x8d\\\r\n\\x62\\x98\\xb5\\x6a\\x47\\x11\\x79\\x0d\\xe5\\x96\\x54\\x65\\x89\\x59\\xb3\\x2a\\\r\n\\x79\\x6f\\x24\\x52\\x43\\x11\\x6c\\x43\\xbc\\xaa\\x84\\xa2\\x23\\x63\\x33\\xc9\\\r\n\\x09\\xca\\x79\\x1d\\x25\\x66\\xbf\\x50\\x8a\\xff\\x00\\x19\\x0f\\xcd\\xf0\\xb3\\\r\n\\x50\\x45\\xd6\\xdb\\xa8\\x16\\x28\\xae\\xb1\\xa5\\xed\\x37\\x28\\xb1\\x1b\\x87\\\r\n\\x03\\xd7\\xe9\\xbd\\xc7\\xe9\\x7b\\xdf\\x68\\x82\\xde\\xf9\\x5b\\x6e\\xef\\xdb\\\r\n\\x63\\xec\\x3b\\xb1\\xdf\\xd3\\xf2\\xd4\\x4c\\xf1\\xe2\\xf4\\xd6\\x0b\\xd8\\xb4\\\r\n\\x86\\x55\\xc6\\x65\\x6f\\x4b\\x73\\x1b\\x99\\xec\\xd7\\x90\\x9e\\x9b\\x5a\\x4e\\\r\n\\x6a\\xa4\\x8b\\x0c\\x79\\xab\\xe2\\x6f\\xfd\\xa4\\x85\\x57\\xdc\\x59\\x49\\x5b\\\r\n\\x93\\x67\\x21\\x6f\\xdf\\x53\\x4b\\xde\\x8e\\x76\\x91\\x26\\x8d\\xbd\\xb7\\x4c\\\r\n\\xbe\\x87\\x18\\xc1\\x1f\\xf0\\x9d\\x78\\x62\\xd7\\x8a\\x4e\\xa8\\x1b\\xe9\\xe9\\\r\n\\xf9\\x13\\xb0\\x20\\xfa\\xae\\xa5\\xe0\\x2b\\xf0\\xe6\\x96\\x21\\x27\\x09\\x92\\\r\n\\xf8\\xe1\\x59\\x02\\x8c\\xe9\\x33\\xbf\\x4c\\x75\\x91\\x2e\\x3f\\xde\\xc5\\xbd\\\r\n\\x2d\\xaf\\xb4\\x50\\x4a\\x14\\x18\\x78\\xd4\\x11\\x62\\xd7\\x1d\\x2b\\x4e\\xd4\\\r\n\\xe1\\x5a\\xfd\\xec\\x09\\xc9\\x6f\\xb1\\x5b\\xf7\\x1a\\x90\\xd4\\xa6\\x1e\\x16\\\r\n\\x22\\xcc\\x72\\xca\\x39\\x31\\x1f\\x0a\\x5f\\xc2\\xac\\x72\\xbb\\x76\\xb1\\xf4\\\r\n\\xd5\\x4c\\x4e\\x14\\x99\\x19\\xd3\\x16\\xd9\\x85\\xda\\xc9\\x6f\\xfb\\xf5\\x1e\\\r\n\\x9a\\x7a\\x72\\xd7\\x60\\xe7\\xfe\\x43\\x27\\x4d\\xfe\\xa1\\x4e\\xe7\\x52\\xd4\\\r\n\\xc8\\xc9\\x2b\\x44\\x4f\\x2f\\xe5\\x26\\x2c\\xb6\\x40\\x14\\x13\\xd8\\xfa\\xec\\\r\n\\x7d\\x4e\\x9a\\x43\\x83\\xf8\\x78\\x20\\x85\\x9b\\x1d\\xad\\xe1\\xe2\\x64\\xc0\\\r\n\\x05\\xb7\\x48\\x76\\x5b\\x8e\\x9f\\x6d\\x0a\\x3b\\x03\\x0a\\x45\\x60\\x87\\xd7\\\r\n\\x1b\\xf5\\x37\\xe5\\xdf\\x4d\\x37\\x0e\\x72\\x5e\\x9b\\xaa\\xa2\\x24\\x19\\x6c\\\r\n\\x37\\x3c\\xbd\\xd6\\xf6\\xc5\\x98\\x8e\\xf6\\x0d\\xdf\\x4a\\x1a\\x6a\\x81\\x96\\\r\n\\xc0\\x06\\xe5\\x95\\x55\\x3d\\xf6\\xcb\\xbb\\x7d\\x7b\\x03\\xef\\xa3\\x0c\\xcf\\\r\n\\x2b\\x45\\x54\\xb4\\xf3\\x26\\x64\\xb6\\xed\\x12\\xcb\\x6f\\xee\\x09\\x79\\x85\\\r\n\\x57\\xd0\\x8f\\x6d\\x56\\x0c\\xad\\x94\\xae\\x95\\x30\\xb0\\xb7\\x99\\xaf\\x04\\\r\n\\xf1\\x1f\\x9f\\x72\\x43\\x02\\x01\\x5b\\xfa\\xdf\\x6c\\x61\\x79\\xa6\\xa4\\xa6\\\r\n\\x76\\x99\\xe2\\x0f\\x7e\\x4b\\x13\\x88\\x6e\\x5f\\x9c\\xa2\\xec\\xaa\\x6c\\x55\\\r\n\\x01\\x03\\x6b\\xe9\\x65\\xe5\\xe0\\xad\\x6d\\x80\\x20\\x5e\\xd6\\x23\\xf9\\x82\\\r\n\\x74\\x62\\xfc\\x7b\\xaf\\xfe\\x60\\xff\\x00\\xf7\\x0b\\x83\\xf5\\xb6\\xb8\\x97\\\r\n\\x0a\\x65\\xb8\\x9a\\x25\\xad\\xa5\\x3f\\x86\\xa2\\x9a\\xe2\\x61\\xbf\\xa9\\x85\\\r\n\\x99\\x08\\x1f\\xe0\\x46\\x9e\\x5b\\x9f\\xbd\\x11\\x90\\x3d\\xc2\\x86\\x17\\xfe\\\r\n\\xa3\\xf4\\xd7\\x0f\\xc4\\x11\\x6b\\xcc\\x6f\\xdc\\x18\\xd4\\xe0\\xd6\\xf6\\xe6\\\r\n\\x18\\xfd\\xbe\\x87\\x5f\\x69\\x8c\\x3b\\x8e\\x17\\x5f\\x47\\x43\\x15\\xec\\x6f\\\r\n\\x4b\\x0c\\xd1\\xc7\\x14\\x9f\\x93\\xc9\\x0c\\xed\\x73\\x7d\\xcd\\xc9\\xdf\\x50\\\r\n\\x53\\x9e\\xa3\\x55\\x4b\\x12\\x0f\\xcd\\x6a\\x04\\x16\\xb0\\xf5\\x16\\xfc\\xf7\\\r\n\\xd5\\x41\\x52\\xe5\\x68\\x78\\xcc\\xcd\\x1c\\x70\\x39\\x2b\\xca\\x8d\\x6d\\xf1\\\r\n\\x14\\x3e\\x20\\xf3\\x62\\x3c\\xec\\x94\\x58\\xf5\\x36\\xa4\\xa8\\xa8\\xb5\\x4d\\\r\n\\x59\\x93\\x24\\x55\\xde\\x96\\x07\\xbd\\xa2\\x56\\x95\\x7e\\xfc\\xa6\\xdf\\x77\\\r\n\\xf0\\xf6\\x1d\\x72\\x6f\\xae\\x23\\xc1\\xf8\\x8d\\x54\\x52\\xc1\\xc6\\x96\\x26\\\r\n\\x8b\\x87\\x95\\x94\\x35\\xaa\\x68\\x62\\x9a\\x49\\x16\\x4c\\x79\\x02\\x39\\x25\\\r\n\\x79\\x23\\x88\\x07\\xe6\\xa5\\x44\\x37\\xc6\\xcc\\x4b\\x4a\\xd0\\x52\\xc7\\x05\\\r\n\\x34\\x3c\\x2e\\x7e\\x2b\\x0a\\xc5\\x98\\xa6\\x8e\\x38\\xa8\\x12\\x06\\x65\\x57\\\r\n\\x19\\x73\\x7c\\x47\\x34\\xc8\\x99\\x3a\\xa3\\x1d\\x89\\x27\\x6e\\x12\\xb5\\x8b\\\r\n\\x96\\x53\\x9e\\x31\\x50\\x0d\\xc0\\x32\\x4b\\x25\\xe1\\xcb\\xdf\\xe1\\x26\\xe3\\\r\n\\xeb\\x7d\\x31\\x94\\xc4\\xc5\\x24\\x77\\x6e\\xdd\\x39\\x13\\x7f\\xcb\\x6d\\x2c\\\r\n\\x71\\xf2\\xec\\x96\\xc6\\xd6\\xda\\xdf\\x87\\xdb\\x5f\\x05\\x17\\x1c\\x40\\x2c\\\r\n\\x16\\xf7\\xb0\\xfe\\x7f\\x9f\\xeb\\xa2\\x79\\x80\\x5c\\xde\\xd7\\x7d\\xbe\\x9e\\\r\n\\x5d\\x49\\x53\\x2c\\x3c\\xb9\\x24\\x2b\\x0e\\x4e\\x46\\x52\\x63\\xd8\\xaa\\x28\\\r\n\\x0a\\x00\\x1e\\x5d\\x89\\xb7\\x73\\xae\\x7d\\x33\\x7d\\xe3\\x2a\\x1b\\x8f\\xe6\\\r\n\\x3e\\x9a\\x34\\xe5\\x81\\x72\\xb8\\xb0\\xfc\\xf5\\x24\\x6e\\x3b\\x33\\x5a\\xfe\\\r\n\\xd7\\xd1\\x8d\\x71\\x12\\x6e\\x43\\x77\\xb5\\xfe\\x80\\xeb\\xc5\\x89\\x92\\xf1\\\r\n\\xba\\x98\\xfa\\xb7\\xdf\\xde\\xfe\\x84\\xec\\x40\\xd4\\x24\\xd8\\x49\\x83\\xf4\\\r\n\\xfb\\x82\\xc6\\x23\\xff\\x00\\x30\\x4b\\xeb\\x23\\xeb\\xbe\\x84\\x79\\x72\\xe3\\\r\n\\x5b\\x16\\x65\\x41\\x95\\xff\\x00\\x09\\x1f\\x51\\xd8\\xfa\\x6a\\x5a\\x7c\\x32\\\r\n\\x8d\\x8f\\x5a\\x93\\x62\\x00\\xfe\\x21\\xa4\\x97\\x85\\xd1\\x19\\x64\\x25\\xb9\\\r\n\\xa1\\x4e\\x24\\x0f\\x4e\\xfe\\xbf\\xfb\\xea\\x7a\\x75\\xa3\\x75\\xa8\\x8e\\x51\\\r\n\\x34\\x4a\\xcd\\x67\\x2f\\x19\\xcd\\x4e\\x5f\\xdf\\x1a\\xa0\\xae\\x91\\xb2\\xae\\\r\n\\x6e\\x13\\x4f\\x49\\xc9\\x2e\\xcd\\x28\\xa8\\x06\\x59\\x42\\x31\\x00\\xf4\\x46\\\r\n\\xb2\\xda\\x56\\xf3\\x30\\xb8\\xba\\x80\\x75\\x37\\x0d\\x89\\x0c\\xf0\\xe2\\xcd\\\r\n\\x51\\x3b\\xab\\x67\\x2c\\xc8\\xb2\\x7c\\x35\\x23\\x0b\\xc5\\xd0\\xee\\xec\\x4a\\\r\n\\xc4\\xb0\\x82\\xa7\\x97\\x99\\x63\\x0c\\xd1\\x24\\x8d\\x1d\\x44\\xd4\\xb7\\x81\\\r\n\\x9b\\x13\\x3c\\x22\\xaa\\x24\\x1f\\x0f\\x6e\\xaa\\xa6\\x64\\x58\\x05\\x91\\x42\\\r\n\\x63\\x25\\xd6\\xc8\\x4c\\x55\\x52\\xc4\\x38\\x84\\xd1\\x7c\\x6f\\x0b\\x1b\\x29\\\r\n\\xa5\\x99\\x30\\x96\\x18\\x89\\x05\\xac\\x60\\x82\\xa1\\x66\\x90\\xf4\\xa9\\x7e\\\r\n\\x74\\x6c\\x1d\\xd8\\x3e\\xa9\\x29\\xeb\\x58\\x01\\x4b\\x4b\\x53\\xcc\\xa7\\x65\\\r\n\\x22\\xf4\\x32\\x48\\x60\\x49\\x6d\\xb2\\xf3\\x61\\x8f\\xc4\\xc3\\x1c\\xa0\\xa8\\\r\n\\x0c\\xb1\\x58\\x22\\xb1\\xd4\\x14\\x52\\x1c\\xda\\x49\\x24\\x69\\x5b\\xbb\\xad\\\r\n\\x3d\\xc7\\x83\\x85\\xe4\\x8c\\x01\\x92\\xd2\\x42\\x84\\xef\\x73\\x4d\\x01\\xbf\\\r\n\\x56\\xfa\\x86\\x9e\\x11\\x8c\\x30\\x7d\\xe3\\x5d\\x4d\\xc9\\x77\\x61\\x7f\\x56\\\r\n\\x1f\\x2d\\xed\\xb0\\xe6\\x80\\x48\\x17\\x11\\xc9\\x50\\x8d\\x3d\\x31\\xac\\xa4\\\r\n\\xa6\\x65\\xdc\\xdd\\x88\\x6b\\xc6\\xd6\\xb7\\xc0\\x38\\xb7\\x30\\x02\\x3c\\xa0\\\r\n\\x65\\xb9\\x62\\x6a\\xa8\\xd6\\xe8\\x8b\\x4d\\xcd\\xeb\\xc9\\xdd\\x0c\\xbc\\xd4\\\r\n\\xc3\\xcd\\x70\\x22\\x48\\xf1\\xbb\\x63\\x1a\\x64\\x55\\x3a\\x80\\xd4\\x0b\\x4b\\\r\n\\x4e\\x92\\x56\\x47\\xc4\\xe1\\x91\\xa1\\x4e\\xaf\\x13\\x4f\\x3c\\x72\\x1a\\x88\\\r\n\\xa9\\x97\\x7b\\x98\\xa0\\xa9\\xc8\\x01\\xd6\\xc3\\x60\\x1b\\xd5\\x84\\x0c\\x9e\\\r\n\\x58\\x15\\x92\\xdb\\xab\\x82\\xc7\\x23\\xec\\x5a\\x3e\\x57\\x71\\xf5\\xf7\\x1a\\\r\n\\xa4\\x94\\xae\\x20\\xc8\\x12\\x43\\x8f\\x4a\\xdf\\x6f\\xcb\\x7b\\xea\\x68\\x65\\\r\n\\x21\\x8a\\xe4\\xe9\\x23\\x6d\\xf1\\x02\\xa4\\x91\\xa9\\xff\\x00\\x76\\xea\\xcd\\\r\n\\x1a\\xff\\x00\\x74\\xea\\xaa\\xad\\x3c\\xe6\\x34\\xc1\\x80\\xdd\\x5c\\xec\\x18\\\r\n\\xda\\xf6\\xbf\\x63\\xb5\\xb7\\x37\\x23\\x4f\\x25\\x4b\\x73\\x25\\x0d\\x1e\\x5f\\\r\n\\xed\\x00\\xdd\\x3b\\xfe\\xab\\xb9\\xf7\\xfa\\x0d\\x72\\x1c\\x2a\\xb6\\x3f\\x06\\\r\n\\x4f\\xc1\\x36\\x2a\\x4e\\xfe\\x99\\x1d\\x8f\\xe5\\x7f\\xa6\\xa3\\xad\\x52\\xd1\\\r\n\\xd5\\x52\\x58\\xb8\\xec\\x6f\\x1d\\xca\\x49\\x63\\xb5\\xd4\\xfd\\x08\\x60\\x7e\\\r\n\\x83\\x52\\x56\\xb4\\xa2\\x8e\\xa2\\xa6\\xae\\x92\\x4a\\xee\\x4c\\x49\\x2a\\x2d\\\r\n\\x54\\x50\\xb8\\x96\\x56\\x2a\\xe8\\xab\\x15\\x4d\\xf9\\xac\\xe5\\x8d\\xa5\\x76\\\r\n\\xf5\\x61\\xae\\x23\\x2b\\x4f\\xe3\\x04\\xf2\\x0a\\x5a\\x79\\x6c\\x62\\x2b\\x11\\\r\n\\xf4\\x4b\\xa5\\xce\\x39\\x03\\xf9\\x7a\\x9e\\xfa\\xf8\\xb4\\x05\\x31\\x27\\xf7\\\r\n\\x94\\x76\\x6f\\x62\\x85\\x8c\\x57\\x55\\x21\\xaf\\x62\\xf1\\xaf\\xe7\\x7d\\x16\\\r\n\\x59\\x09\\x38\\x82\\xcc\\x7b\\x7a\\x58\\x1d\\xaf\\xb9\\xee\\x71\\xfa\\xea\\x0a\\\r\n\\x19\\x91\\x47\\x99\\x9c\\xc4\\x43\\xa1\\x07\\xc9\\x73\\xb9\\xbd\\xef\\xde\\xd7\\\r\n\\xd4\\xf5\\x25\\x4d\\xa4\\x58\\x32\\x24\\x79\\x44\\x10\\x88\\xfb\\xfb\\x74\\x8d\\\r\n\\x4b\\x34\\x46\\xce\\xce\\xe1\\x6f\\xf5\\xd8\\x7e\\x9a\\xf0\\xf5\\x45\\x7e\\x32\\\r\n\\xf2\\xee\\x4f\\x4b\\x31\\xeb\\x51\\x6d\\x83\\x75\\x0b\\x6f\\xf2\\xb3\\x8f\\x5b\\\r\n\\x6a\\x68\\x79\\x61\\x0a\\x39\\x11\\xb2\\xc7\\xb1\\x8b\\xbc\\x60\\xf4\\x9f\\x42\\\r\n\\x05\\xef\\x7b\\xf7\\xbe\\xa8\\xea\\x61\\x40\\xa6\\x02\\xb4\\xf2\\x59\\x6c\\xd6\\\r\n\\x8f\\x61\\x25\\xc7\\xca\\x43\\x7e\\x97\\xd4\\x75\\x41\\x17\\x9c\\xd1\\x80\\x7e\\\r\n\\xb6\\x03\\x21\\x71\\xf9\\x6b\\x30\\x54\\x16\\x57\\x1f\\x10\\x74\\xb2\\xba\\x14\\\r\n\\x92\\x19\\x0f\\xa6\\x4b\\xb6\\x5d\\xb2\\xc5\\xb4\\x62\\x92\\x9d\\x80\\x42\\xc0\\\r\n\\x8f\\x70\\xdf\\x30\\xfa\\x5e\\xf6\\xb7\\xbf\\x7d\\x48\\x57\\x99\\x1a\\x25\\xc8\\\r\n\\x6b\\x02\\x76\\x37\\xfa\\x6a\\x0a\\xa8\\x81\\xe5\\x66\\x24\\x98\\xbe\\xd8\\x1b\\\r\n\\xe1\\x2d\\x94\\x0b\\xb6\\x56\\x3b\\x28\\x37\\x1b\\x1f\\x7d\\x55\\x53\\xc1\\x13\\\r\n\\xb2\\x48\\xed\\x50\\x92\\x48\\xbd\\x2c\\xb8\\x99\\x50\\x41\\xb7\\xfb\\x36\\xd8\\\r\n\\xfa\\x9b\\xfb\\x6b\\xed\\x0f\\x1d\\x39\\x67\\xc2\\xb8\\x6e\\x14\\xf9\\x7a\\xd6\\\r\n\\xd7\\x13\\x05\\x2a\\x29\\xf7\\xce\\xcc\\x45\\x8f\\x6d\\x71\\xbe\\x1a\\xeb\\x20\\\r\n\\xf1\\xfc\\x2a\\xa2\\x5b\\x4c\\x8c\\x18\\xd4\\xd0\\xba\\xd5\\xc1\\xdf\\xbd\\xd5\\\r\n\\x27\\x50\\x7d\\x72\\xd7\\x04\\x2e\\x19\\x6d\\x2c\\xb7\\xdb\\x1f\\x23\\x34\\x8c\\\r\n\\xa7\\xf4\\xb3\\x8f\\xee\\xeb\\x89\\xc3\\x2c\\x8e\\xd5\\x32\\x97\\xaa\\x71\\x91\\\r\n\\xb2\\xb7\\x3f\\xa2\\xea\\x3b\\x96\\x8d\\x8b\\xc8\\x4f\\xa3\\x29\\xef\\xa6\\x6e\\\r\n\\xbc\\x04\\xea\\x2e\\x72\\x29\\x92\\xb5\\xf1\\xbf\\x96\\xff\\x00\\xd7\\x5c\\x1b\\\r\n\\x8d\\x56\\x54\\x25\\x3c\\x3e\\x12\\x48\\x79\\xa1\\xfe\\x34\\x32\\x45\\x5b\\x3c\\\r\n\\xb4\\xd5\\x11\\xd8\\x8c\\xcc\\x34\\xf2\\x46\\x5e\\x10\\x59\\x99\\x56\\xc1\\x0e\\\r\n\\x9a\\x5e\\x17\\x2d\\x34\\xf5\\x52\\x53\\xcd\\x41\\x94\\xc8\\x41\\x1c\\xe7\\x58\\\r\n\\xdf\\x99\\x1e\\x49\\x24\\x70\\x55\\x34\\x49\\x98\\xcb\\xd6\\x36\\xf5\\x6d\\x41\\\r\n\\xf6\\x6f\\x1c\\x3c\\x3c\\x92\\x52\\xb2\\x8a\\x78\\x21\\x31\\xb4\\x31\\x4a\\x4a\\\r\n\\xbb\\xc5\\xbc\\x84\\xb2\\x59\\x2e\\x10\\x28\\xd8\\x67\\x60\\x75\\x2d\\x1c\\x92\\\r\n\\x5d\\xe4\\x59\\x22\\x9c\\xe7\\x97\\x2e\\xae\\xd9\\x72\\x6f\\xdb\\xe1\\xa5\\xd4\\\r\n\\x9f\\xf6\\x81\\xbd\\x86\\xab\\xac\\x1c\\x39\\x74\\xa7\\x89\\xdc\\x39\\x0b\\x38\\\r\n\\x32\\x12\\x6d\\xf8\\x3b\\x16\\x6b\\xe3\\xb2\\x83\\xbe\\x96\\x4a\\xa6\\x5e\\x60\\\r\n\\x5b\\x10\\x1b\\x2b\\x9f\\x75\\xec\\x00\\xd5\\xf2\\xef\\xbf\\xf3\\xfd\\x35\\x1d\\\r\n\\x64\\x92\\xc8\\xe1\\x2d\\x04\\x74\\xe5\\xae\\x88\\xfe\\x46\\x90\\x0e\\xdf\\x77\\\r\n\\x7b\\x6d\\xb6\\x4d\\xeb\\x7d\\x73\\x45\\xb0\\x0f\\x90\\xf7\\xea\\xf5\\xfc\\xc7\\\r\n\\xa6\\xb1\\x7f\\x37\\x71\\xa4\\x9b\\xac\\xd9\\x4d\\xa2\\x8b\\x66\\x95\\x8f\\xbb\\\r\n\\x7c\\xab\\xee\\x7f\\x96\\xb6\\xa5\\x4e\\x51\\x5b\\x33\\x33\\xb1\\xfd\\x10\\x7a\\\r\n\\x63\\xf8\\x98\\x9b\\xdb\\x52\\x45\\xd4\\xca\\xff\\x00\\x84\\xfa\\xfe\\x7f\\x4d\\\r\n\\x44\\xe8\\xf3\\x12\\xb1\\xac\\x7d\\x40\\x76\\x5b\\xee\\xdb\\xf7\\x24\\x9d\\x2b\\\r\n\\xef\\x75\\xf4\\x1f\\xe5\\xa9\\x18\\xdc\\x5b\\x7e\\xc0\\x1f\\xe9\\xae\\x62\\x6e\\\r\n\\x65\\xb0\\x17\\xbd\\xaf\\xe8\\x6c\\x3e\\xba\\xb5\\x45\\x24\\x67\\x9b\\xeb\\xd9\\\r\n\\xad\\xee\\x03\\x65\\xbf\\xd7\\x55\\x14\\xe3\\x99\\x86\\x1b\\x07\\xb5\\x87\\xf7\\\r\n\\x4a\\xa8\\xee\\x7f\\x5d\\x41\\x34\\x49\\x04\\x76\\xa6\\x60\\x72\\xf3\\xbc\\xe9\\\r\n\\x91\\x41\\xba\\x9c\\x97\\x6e\\xc4\\x95\\x1b\\xb9\\x52\\x01\\xbc\\x6f\\x6c\\x8c\\\r\n\\xff\\x00\\x02\\x99\\x5e\\x03\\x02\\xd4\\xbb\\x45\\xca\\x7a\\x87\\xd8\\xb8\\xa5\\\r\n\\x5e\\x72\\x67\\xbe\\x6d\\xcb\\x8d\\x2d\\x78\\x48\\x63\\x2d\\x75\\x5d\\x4d\\x56\\\r\n\\xd1\\x2f\\x33\\x96\\x22\\xe5\\x72\\x7a\\x1f\\x95\\x1b\\xb2\\xaf\\x2b\\x18\\xe1\\\r\n\\x48\\x08\\x97\\x38\\xc4\\x5c\\xc6\\x7c\\xdd\\x86\\x92\\x92\\x05\\xf0\\x14\\xd4\\\r\n\\xf1\\xf2\\xa7\\x3c\\xff\\x00\\xbc\\x8a\\x3b\\xca\\x52\\x56\\x31\\xac\\x49\\x66\\\r\n\\x6c\\x0f\\x28\\x85\\x88\\x37\\x2e\\xe4\\x11\\xa9\\x25\\xa9\\x0f\\x2a\\xa8\\xa7\\\r\n\\xa8\\x24\\x37\\xc3\\x63\\xcd\\x72\\x94\\xd9\\x76\\x7e\\x6c\\xf8\\x59\\x50\\xe0\\\r\n\\x53\\x2e\\xd7\\xb6\\xa4\\x9e\\xad\\xe3\\x51\\x0d\\x6c\\xcf\\x55\\x85\\xfa\\x43\\\r\n\\xac\\x51\\xa4\\x8c\\xa7\\xef\\x1e\\x31\\x0e\\x50\\xb1\\x19\\x72\\xa3\\xe5\\x85\\\r\n\\xc5\\xed\\xae\\x79\\x07\\x95\\x54\\x00\\x89\\x77\\x1d\\x11\\x44\\xec\\x3e\\x62\\\r\n\\xb9\\x79\\xc3\\x10\\x06\\x4c\\x4b\\x01\\x8e\\x23\\x54\\x94\\xac\\xdf\\xbd\\x3d\\\r\n\\x6d\\x32\\x6c\\x46\\xe2\\xf8\\x2b\\x49\\xda\\xe2\\x49\\x01\\x06\\xfb\\x37\\x6b\\\r\n\\xd9\\x8e\\xb9\\x15\\x0c\\x8e\\x64\\x8e\\x0a\\x73\\x25\\xda\\xe6\\x65\\x4c\\x46\\\r\n\\xdb\\x06\\x01\\x18\\x13\\x61\\x8f\\xf3\\x20\\x53\\x3c\\x3f\\xbb\\x84\\x95\\x66\\\r\n\\x8b\\xf1\\x07\\x50\\xc3\\x36\\x61\\xb8\\xb5\\x9f\\x1b\\x5b\\x63\\xfc\\xa9\\xf8\\\r\n\\xd4\\x4e\\x16\\x4a\\xae\\x58\\xaa\\x11\\xfd\\xda\\xd5\\x84\\x0a\\xc6\\xc3\\xe4\\\r\n\\x9a\\xd9\\xa7\\xb1\\x2e\\x36\\xc3\\x52\\xcb\\x53\\x67\\x51\\x96\\xd7\\xc6\\xcd\\\r\n\\x6e\\x96\\x27\\xd3\\x7b\\x1c\\xbd\\x0e\\xfa\\x9e\\x19\\x56\\x41\\x2c\\xc8\\x94\\\r\n\\xe2\\xb6\\x16\\xce\\x28\\xac\\x6e\\x9c\\xc5\\x1e\\x47\\x0d\\x82\\xe6\\x37\\xc7\\\r\n\\xca\\x8d\\xbe\\x3e\\x06\\x59\\x4f\\x2d\\x24\\x53\\x93\\x2a\\xbc\\x55\\x54\\x15\\\r\n\\x5f\\x75\\x3c\\x24\\xdc\\x3a\\xc3\\x3e\\x51\\xbe\\x3b\\xf5\\xa0\\x7c\\x48\\x23\\\r\n\\x4d\\x19\\xc7\\x02\\x39\\x84\\x08\\xd5\\x2f\\xcb\\x9a\\x36\\x63\\xb5\\x8f\\x61\\\r\n\\xf5\\x1e\\x9a\\xde\\xe4\\xc8\\xd7\\x1e\\xe2\\xf7\\xf5\\xd4\\x81\\x86\\x75\\x34\\\r\n\\xf1\\x39\\x92\\x05\\xef\\x3c\\x31\\x8e\\xed\\x6b\\xe2\\xca\\xb7\\x0c\\x3c\\xe4\\\r\n\\x01\\xe5\\x3b\\xea\\x5a\\x7a\\x81\\x1a\\xc3\\x55\\x52\\x22\\x08\\x88\\xa8\\x21\\\r\n\\x84\\xc3\\xd0\\xca\\x07\\xac\\x72\\xad\\xf2\\x6c\\x98\\xfc\\xc4\\xdf\\x54\\x94\\\r\n\\x05\\xb0\\x93\\x29\\x24\\x2c\\x2c\\xc1\\xe4\\xb3\\x15\\xfd\\x18\\x1d\\xbf\\x4d\\\r\n\\x34\\xcd\\x3c\\xa3\\x78\\x72\\x4b\\xe2\\x98\\xe2\\x40\\xb7\\xa7\\x57\\xaf\\x4e\\\r\n\\xb9\\xce\\x8a\\xdb\\xd8\\x98\\xc9\\x49\\x0a\\xae\\xf7\\x24\\x02\\xa7\\x7f\\xc4\\\r\n\\x0f\\xd3\\x4d\\x2a\\xb2\\xbe\\x05\\x40\\x57\\x1c\\xa9\\x82\\x83\\xd9\\x48\\xe9\\\r\n\\x93\\xdc\\xd8\\xfe\\x63\\x4c\\xae\\x2f\\x9e\\xc0\\x13\\x7f\\xeb\\xdf\\xd3\\xf2\\\r\n\\xd4\\x8f\\x19\\x65\\xdd\\xbb\\x75\\x0e\\xf7\\x16\\x53\\xdf\\x4d\\x57\\x05\\x1d\\\r\n\\x67\\x11\\xc1\\x92\\x54\\x14\\x72\\x2b\\x49\\xe6\\x50\\x47\\x26\\x38\\xe5\\x9f\\\r\n\\xa7\\xb9\\xe9\\x17\\x17\\xb1\\xdb\\x54\\x9c\\x4c\\x53\\x02\\x5f\\x97\\xce\\xe6\\\r\n\\xc5\\x23\\x34\\x79\\x7a\\x72\\x81\\x4b\\x98\\xe4\\xc9\\x0a\\x91\\x7d\\xed\\xae\\\r\n\\x43\\xf1\\x88\\x20\\x9c\\xb2\\xbb\\x43\\xfb\\x3d\\xa1\\x54\\x32\\x58\\x2a\\x97\\\r\n\\x84\\xb9\\x17\\x3e\\xe3\\x7d\\xbd\\x37\\xd4\\x68\\x25\\x12\\x00\\xaa\\x43\\x05\\\r\n\\x0a\\xb6\\xed\\xd3\\x6e\\xe3\\x6e\\xe7\\x7f\\x7d\\x11\\xb2\\xa9\\xf5\\x24\\x01\\\r\n\\xfd\\x74\\x63\\xaa\\x3c\\xd5\\x4e\\xd2\\x63\\x63\\x18\\x3d\\x90\\x3f\\x76\\xbf\\\r\n\\xa2\\xd8\\xfa\\xfb\\x69\\xa4\\xa7\\xe1\\x70\\x54\\x5d\\x2e\\xaf\\x55\\x94\\xb1\\\r\n\\x3e\\xde\\xaa\\xac\\x16\\xff\\x00\\x43\\xa3\\x4f\\x14\\x34\\x14\\x86\\x58\\xe5\\\r\n\\x68\\xe3\\x82\\x97\\x92\\x6d\\x0b\\x90\\x57\\x30\\xf9\\x28\\x62\\x0e\\x3c\\xb2\\\r\n\\x3b\\x6b\\x87\\xf1\\x7a\\x77\\x82\\x2a\\xae\\x1b\\x22\\xf0\\xfe\\x29\\x94\\x31\\\r\n\\x54\\x2e\\x2f\\xd5\\x47\\x2b\\x0a\\x95\\x95\\xb0\\x7e\\xb8\\x1d\\xaf\\x7c\\xf0\\\r\n\\xef\\xaa\\x18\\xb8\\xa7\\x0f\\xa5\\x91\\x78\\xc5\\x7c\\xf5\\x45\\x29\\x73\\xe1\\\r\n\\x0e\\xf4\\x94\\x44\\x45\\x4e\\xf2\\x35\\x19\\x51\\x24\\x8d\\x23\\x4e\\x7a\\x86\\\r\n\\x0c\\x85\\x0d\\xb2\\xb3\\x6a\\x92\\xbf\\x87\\x56\\xcf\\x1b\\xc3\\x2b\\x09\\x28\\\r\n\\x6a\\x80\\x91\\x84\\x52\\x29\\x8e\\x58\\xd6\\x54\\xdd\\x87\\x2d\\xd8\\x21\\x2a\\\r\n\\xdb\\x91\\x97\\xbe\\xa5\\xab\\xaa\\x65\\xfd\\xcb\\xf6\\x85\\x4d\\x34\\x31\\x8e\\\r\n\\x7b\\xba\\x49\\x4c\\xdc\\xa7\\x99\\x45\\xb9\\x10\\x02\\x09\\x19\\x80\\xd2\\xb5\\\r\n\\x96\\x24\\x65\\x2c\\xea\\xd3\\x33\\x03\\x15\\x4a\\xba\\xb1\\x3b\\x86\\xe7\\x59\\\r\n\\x5a\\xfb\\x7a\\x1d\\xfb\\x6d\\xaa\\xee\\x17\\xc3\\xa9\\x24\\xe2\\x30\\xcd\\x2c\\\r\n\\xc9\\x55\\x44\\x7f\\xd5\\x44\\x21\\xd8\\x78\\x89\\x25\\x90\\xac\\x34\\x7c\\xbd\\\r\n\\x99\\x6a\\xe4\\x78\\xd6\\x32\\x2e\\x5a\\xdb\\x6a\\x95\\x0c\\xb1\\xd4\\x49\\x4d\\\r\n\\xc4\\x55\\x52\\x1a\\x69\\xe1\\xac\\x95\\xd1\\xa1\\xca\\xe9\\xe1\\x8c\\x9c\\xe8\\\r\n\\x99\\xe9\\xcc\\x3c\\xc8\\xba\\x18\\xb7\\x49\\xdc\\x6a\\x57\\xa6\\xa6\\x34\\xb1\\\r\n\\x4f\\x2d\\x34\\x8b\\x53\\x56\\x56\\x1b\\x45\\x0d\\x64\\x53\\xb1\\xe5\\x38\\xe6\\\r\n\\x91\\xe1\\x55\\xe2\\x65\\x54\\xea\\x91\\xf1\\x16\\xb6\\x62\\x8f\\x8e\\xe5\\xca\\\r\n\\xe6\\xc7\\xcf\\xe4\\xc3\\x10\\x48\\xa5\\xad\\xaa\\xfd\\xd0\\x54\\x4f\\x51\\xf8\\\r\n\\xb1\\x3c\\xad\\xfe\\x66\\x56\\x52\\xbb\\xe5\\x3f\\x0f\\xa3\\xa0\\xfd\\xfb\\x9e\\\r\n\\xfc\\xe9\\x65\\x66\\x2a\\x27\\x3f\\x10\\x72\\xcb\\x64\\xdf\\x36\\xc5\\x0a\\x00\\\r\n\\x0e\\xd7\\xd4\\x31\\x43\\x3a\\xe3\\x1c\\x2d\\x68\\xe2\\x2b\\x89\\x93\\xac\\x13\\\r\n\\x23\\x46\\xdc\\xc5\\x70\\xca\\x16\\xc4\\xf5\\x15\\x66\\x6e\\xfa\\x88\\x8a\\x69\\\r\n\\xd5\\xa5\\xa8\\x21\\xb9\\xe5\\xa3\\x8a\\x38\\x23\\x8d\\x0e\\x41\\x5a\\xcc\\xdc\\\r\n\\xe9\\x64\\x6b\\x32\\xa9\\x1f\\x0f\\xd3\\x4b\\xf1\\x17\\xb0\\xf5\\x1e\\xda\\x4a\\\r\n\\xa6\\x3b\\xb3\\x2c\\xae\\x49\\xd9\\x82\\xc4\\x91\\x8c\\x7d\\xba\\xf3\\xfd\\x74\\\r\n\\x7d\\x50\\x65\\x7f\\xa1\\x56\\xb0\\xfd\\x08\\x3a\\x51\\x12\\x8e\\x69\\xf7\\x20\\\r\n\\x7f\\x5f\\x6d\\x41\\x32\\x92\\x11\\x1b\\xe2\\xe2\\x41\\xe9\\x1d\\xf7\\x17\\xee\\\r\n\\x40\\xd4\\xdc\\xa9\\xe4\\xc2\\x2a\\x86\\x02\\x26\\x67\\xe5\\xd8\\x1b\\x79\\x43\\\r\n\\x2d\\xc7\\xd2\\xf6\\xd5\\x2d\\x37\\x09\\x8a\\x56\\x2f\\x8f\\x8b\\x33\\x82\\xb1\\\r\n\\xab\\x80\\x03\\x08\\x01\\x72\\xd6\\x76\\xc9\\xba\\xbc\\xbb\\x28\\xbd\\xb5\\x61\\\r\n\\x61\\xeb\\xa2\\x2e\\x34\\xe0\\xaf\\x7e\\xdf\\x51\\xeb\\x63\\xed\\xa1\\x4f\\xb6\\\r\n\\xf1\\x11\\x4e\\x76\\xf3\\xa9\\xea\\xfe\\x9f\\xc8\\xe9\\x54\\x9e\\x6c\\xd2\\x1d\\\r\n\\xfd\\x70\\x03\\xa7\\xbf\\xb7\\xae\\xb6\\x3b\\x91\\xe9\\xb0\\xd1\\x67\\xb0\\x31\\\r\n\\x77\\x2c\\x05\\x88\\xb8\\x2c\\xbf\\x4b\\x90\\x2f\\xf4\\xb8\\xec\\x75\\x59\\x1c\\\r\n\\x36\\xf8\\x62\\x28\\x23\\x9e\\x75\\x8c\\x14\\x32\\xc8\\xcc\\x45\\x33\\xe2\\xce\\\r\n\\xa3\\xce\\x09\\x63\\xb9\\x61\\xd8\\x1d\\xe2\\x86\\xa4\\xe4\\x49\\x19\\x3d\\xf9\\\r\n\\xd3\\x33\\x73\\x3e\\x2d\\xda\\xde\\x6b\\x5b\\x10\\x6e\\x11\\x5a\\xf8\\xdd\\x50\\\r\n\\x0a\\xa9\\x25\\x45\\x33\\xcd\\x53\\xf1\\x15\\x06\\xf2\\x8b\\xf4\\x45\\x1f\\x7b\\\r\n\\x59\\xda\\xc3\\xdc\\xaf\\xd2\\xfa\\x9e\\x24\\x36\\x60\\x79\\xf2\\x12\\x32\\x1c\\\r\n\\xd9\\x64\\xe6\\x2c\\x63\\x71\\xf7\\x24\\x2d\\x80\\xba\\x9b\\x37\\x7e\\xab\\xc7\\\r\n\\x3a\\xf4\\x97\\x40\\xd5\\x0b\\xe4\\x05\\xe3\\x12\\xb5\\xe4\\xf7\\x44\\x49\\x18\\\r\n\\xa8\\xfa\\x5f\\xdb\\x5c\\x3e\\x09\\x02\\x6d\\x2f\\xc4\\x55\\xe9\\x55\\x0c\\xa1\\\r\n\\x15\\x42\\x93\\xb0\\x50\\x0a\\xdb\\xdc\\xdf\\xe9\\xa8\\x2a\\x78\\x76\\x31\\xcc\\\r\n\\xd2\\x25\\x9c\\xa0\\x60\\xa5\\x43\\xc9\\x19\\xed\\xd4\\x03\\x1c\\xbb\\xf7\\x27\\\r\n\\x5f\\xe9\\x29\\x79\\xfc\\x95\\x50\\x5a\\xc3\\x18\\xb9\\xd9\\x08\\xc8\\x51\\xdb\\\r\n\\xe2\\x58\\x76\\x26\\xc1\\x05\\xf6\\xbe\\xa2\\x74\\x66\\x33\\x8f\\x85\\x21\\x6f\\\r\n\\xec\\xc9\\x67\\xc5\\x85\\xfd\\x8e\\x49\\xb1\\x3e\\xe3\\x50\\xd2\\xbd\\xea\\x38\\\r\n\\x6d\\x7a\\x95\\x99\\x47\\x5f\\x87\\x7d\\x9a\\x2a\\x8f\\xe1\\x28\\xc6\\xce\\x3d\\\r\n\\x47\\xe7\\xaa\\xf5\\x68\\xc3\\xca\\x23\\x7b\\x01\\xba\\x37\\x45\\xd6\\xdf\\x46\\\r\n\\xd4\\x09\\x0d\\xf9\\x9d\\xa7\\x10\\xae\\x20\\x8e\\x60\\x63\\x1c\\x99\\x46\\xc5\\\r\n\\xed\\x6d\\xbd\\xbf\\x15\\x8e\\xa9\\xa7\\x32\\x54\\xf2\\x89\\x65\\x92\\x92\\xa2\\\r\n\\xcb\\x1f\\x25\\xd8\\xf3\\x0a\\x29\\xf2\\x3a\\x31\\xcc\\x36\\xf7\\xd8\\xdc\\x81\\\r\n\\xa7\\x84\\xe3\\x75\\x89\\x80\\xc7\\xb3\\xa3\\x30\\x21\\x87\\xd3\\x1b\\x5f\\xf5\\\r\n\\xd5\\xa3\\x50\\x2d\\x71\\xb0\\xbb\\xed\\xb9\\xdf\\xd3\\xd7\\x71\\x6d\\xb4\\xf5\\\r\n\\x94\\xcd\\x8c\\xb1\\xa5\\xf7\\xdd\\x1c\\x4f\\x64\\x2a\\x7f\\xe6\\xfe\\x7a\\x47\\\r\n\\x43\\x83\\xd4\\x4c\\x42\\xfe\\x18\\xe4\\xc7\\x74\\xbf\\xa7\\x5e\\xc0\\x7b\\x36\\\r\n\\xa1\\x19\\x16\\x93\\x87\\x98\\x9a\\x55\\xfc\\x51\\x14\\xb1\\xff\\x00\\x90\\xb0\\\r\n\\x2d\\xfc\\x07\\xd9\\x74\\xf2\\x0b\\x48\\xf5\\x4c\\x23\\x8e\\x33\\xda\\xeb\\x61\\\r\n\\xb9\\x56\\x0d\\xbe\\x40\\xed\\x6d\\x75\\xdd\\x09\\x8b\\x2c\\x22\\x44\\x07\\xa0\\\r\n\\x5c\\xdb\\xcb\\x76\\xb7\\xb9\\xb9\\xf5\\x3a\\xf1\\x0a\\xc0\\x37\\xa0\\x2b\\xdc\\\r\n\\x7b\\xe4\\x2f\\xff\\x00\\x4f\\xae\\x91\\x1d\\x72\\x18\\x8b\\xb5\\xbb\\x12\\x3e\\\r\n\\x56\\xf4\\x3f\\xe2\\x35\\xe5\\xe9\\x23\\x67\\xb6\\xca\\x7e\\x5d\\x3d\\xe4\\x92\\\r\n\\xf8\\xa9\\x8e\\x40\\x81\\x0a\\x3a\\x9f\\xc2\\xf9\\x5c\\x65\\xe5\\xee\\xb6\\xdc\\\r\n\\x6a\\x3a\\x79\\x37\\xc3\\x76\\xa8\\x7e\\xa9\\x24\\xe6\\x35\\xe4\\x2f\\x23\\x87\\\r\n\\x24\\xa9\\x39\\x28\\xea\\x1b\\x12\\x54\\x9d\\xf5\\xc4\\xe6\\xe0\\xef\\x3c\\xcd\\\r\n\\x4c\\x64\\x86\\xa2\\x1a\\xf4\\xf0\\xd2\\xcb\\x2e\\x68\\xf0\\xf2\\x26\\xff\\x00\\\r\n\\x55\\x9c\\x95\\x65\\x6f\\x34\\x2f\\x8b\\x21\\xe5\\xef\\xbb\\xc1\\x50\\xac\\xb5\\\r\n\\x34\\xcb\\xcc\\x2a\\xe8\\xc0\\x29\\xed\\x2a\\x28\\x60\\xa4\\xdb\\xcd\\x91\\x18\\\r\n\\x9b\\xdc\\x02\\x37\\x2d\\x37\\x34\\x38\\x59\\x2c\\x00\\x6f\\xa6\\xc3\\xf8\\x77\\\r\n\\xda\\xdb\\x68\\x61\\x20\\x49\\x61\\x2c\\x99\\x5f\\x6e\\x63\\x7a\\xb7\\xb8\\x71\\\r\n\\x88\\x07\\xd3\\x1d\\xbd\\x75\\x85\\x72\\x2c\\xb0\\xbc\\x67\\x38\\xcd\\xbd\\x36\\\r\n\\x6c\\x49\\xec\\xde\\xde\\xff\\x00\\xd7\\x51\\x7d\\xa3\\xfb\\x2a\\xe7\\x8a\\x70\\\r\n\\xd8\\x32\\x5a\\xca\\x68\\xdb\\x2a\\xba\\x27\\x33\\x34\\xac\\x25\\x87\\xf0\\x28\\\r\n\\x90\\xe5\\xf3\\x04\\xc5\\xfa\\x93\\xaf\\x4f\\xc0\\xea\\x98\\x27\\x0d\\xfb\\x49\\\r\n\\x49\\x3f\\x0e\\x95\\x9b\\x74\\x86\\xa2\\x42\\x24\\xa0\\x9b\\xf0\\xde\\x3a\\x96\\\r\n\\xe9\\xfe\\xf6\\xb8\\x6f\\x0e\\x66\\xe5\\xcf\\x41\\x46\\x69\\xd2\\x2b\\x10\\x23\\\r\n\\x10\\xd5\\x4c\\x8b\\x15\\x98\\xb5\\x9b\\xc3\\x45\\x4b\\xea\\x73\\xbb\\x1e\\xe6\\\r\n\\xfa\\x96\\x6f\\x3c\\xa5\\x19\\x52\\x46\\xdf\\x94\\x48\\x23\\x20\\x9e\\x52\\xdb\\\r\n\\xed\\x98\\x38\\xf9\\x80\\xcc\\x29\\x5a\\xba\\xda\\x2e\\x64\\x35\\x35\\x74\\x3c\\\r\n\\x3e\\x78\\x26\\x92\\x6d\\xa6\\xf1\\xb1\\xc4\\xca\\x79\\x9d\\xd6\\x7c\\xd6\\xa6\\\r\n\\x8b\\x2c\\x80\\x32\\x42\\x72\\xb1\\x37\\xd4\\x5c\\x4b\\xed\\xac\\xbc\\x97\\x9c\\\r\n\\xab\\xf0\\x6e\\x19\\x4c\\x30\\xe3\\x7c\\x45\\x0c\\xd1\\x81\\x53\\x56\\xea\\xbc\\\r\n\\xba\\x4e\\x1e\\x58\\x59\\x6a\\x6a\\x91\\xea\\x2a\\x46\\x7c\\x81\\x85\\xa5\\xd5\\\r\n\\x55\\x17\\x13\\xa9\\x93\\x82\\x70\\x18\\x5d\\x9b\\xf6\\x17\\xd9\\xca\\x46\\x33\\\r\n\\xd6\\xca\\xab\\xcc\\x26\\xa6\\xaa\\x70\\xab\\x53\\x2d\\xae\\xed\\x53\\xc4\\x2a\\\r\n\\x27\\x70\\x7e\\xe2\\x9b\\x0b\\x36\\xa6\\xa6\\xfb\\x21\\xc3\\x12\\x8e\\x58\\x69\\\r\n\\xe4\\x3c\\x3a\\x5a\\xf7\\x5a\\xb9\\x99\\xe1\\xa8\\x45\\x66\\xa9\\x77\\xe8\\x46\\\r\n\\x48\\xa5\\x92\\x45\\x11\\x5a\\x31\\xbf\\xa6\\xc5\\xb8\\x72\\x56\\xb5\\x65\\x74\\\r\n\\xb5\\x5e\\x1a\\xae\\xbf\\x98\\xb1\\x73\\xaa\\xa2\\xe4\\x4d\\x59\\x14\\x61\\x42\\\r\n\\xac\\x50\\x24\\x73\\x59\\x6d\\xbf\\x4b\\xa9\\xeb\\x26\\xfc\\x1b\\x8d\\x47\\xfb\\\r\n\\xe4\\x34\\xf2\\x47\\xc3\\x2a\\x91\\x48\\x31\\xc9\\x05\\x4f\\x2e\\x23\\x23\\x07\\\r\n\\x17\\x38\\x4f\\x1d\\xd0\\x79\\xee\\xf6\\xee\\x75\\x4d\\xc4\\xea\\x54\\xa5\\x4c\\\r\n\\xa7\\xc4\\x3c\\xf3\\x4d\\x2f\\x32\\x0b\\x46\\xbc\\xb4\\x4a\\x38\\xec\\xb3\\x76\\\r\n\\x66\\x96\\x59\\x85\\x81\\x01\\x6e\\x54\\xa8\\x8d\\x53\\x87\\xd0\\x8e\\x29\\xc5\\\r\n\\xe7\\x94\\x47\\x1c\\x92\\x5a\\xb6\\xa4\\xcc\\xef\\xb2\\xc7\\x12\\x37\\x85\\xa7\\\r\n\\x7c\\xda\\xff\\x00\\x7c\\xcd\\xef\\x19\\xd4\\x51\\x71\\x23\\xe2\\xb8\\xb1\\xeb\\\r\n\\x92\\x82\\x07\\xb5\\x27\\x0f\\x0d\\x87\\x2e\\x29\\x9a\\x20\\x39\\xf3\\xdc\\xef\\\r\n\\x1d\\x32\\x47\\x1e\\xf8\\x9e\\x66\\xd9\\x03\\x82\\x2d\\xc0\\x38\\xe0\\x83\\x1b\\\r\n\\xfc\\xb6\\xc7\\x6b\\x76\\xb6\\xa8\\xd6\\x55\\xe5\\x9e\\x5c\\x29\\x89\\xbf\\x53\\\r\n\\xd9\\x4b\\x5b\\xe8\\x09\\x6b\\x9f\\x7d\\x6d\\xbe\\x64\\x5c\\x7e\\x1f\\x7f\\xea\\\r\n\\x36\\xd2\\x49\\x1b\\x2a\\xed\\x96\\x4d\\xd8\\x0f\\x98\\x1b\\x5c\\xed\\xaa\\x88\\\r\n\\xa4\\x91\\x67\\x82\\x61\\xb1\\x40\\xdd\\x0d\\xff\\x00\\x15\\xbc\\xdb\\x76\\xd7\\\r\n\\x12\\x4f\\xd9\\x90\\xd7\\xd3\\xd2\\x5d\\xb2\\xaf\\xeb\\x92\\x47\\x24\\x0e\\x55\\\r\n\\x33\\x42\\x90\\xc9\\x4c\\xab\\xdd\\x3e\\x24\\xcc\\xc5\\xb2\\xc8\\x0b\\x20\\x49\\\r\n\\x79\\x55\\x34\\x45\\x9b\\xfd\\x5a\\x72\\x64\\x40\\x6f\\x97\\xc1\\xa8\\x51\\x76\\\r\n\\x17\\x16\\xc6\\x55\\x56\\xfe\\x2b\\xeb\\x01\\xe6\\x36\\x3f\\x4b\\x7d\\x35\\xde\\\r\n\\xf7\\x17\\x1a\\x90\\xb7\\x98\\x26\\x23\\xf3\\x6d\\xbf\\xa6\\xfa\\x33\\x98\\xda\\\r\n\\x72\\x1f\\x34\\xcc\\x6d\\x11\\x20\\xa3\\x62\\x47\\xa9\\xfa\\xfa\\xdb\\xdb\\x4d\\\r\n\\xc9\\xb2\\xe0\\x46\\x76\\x1b\\xd8\\xe2\\xd2\\x2d\\xfe\\x8d\\xb7\\xe9\\xa8\\x9f\\\r\n\\x16\\x1c\\xcb\\x79\\x98\\x1d\\xcf\\x7d\\xbe\\x97\\xd4\\xf1\\xb5\\x99\\x4b\\x95\\\r\n\\x6f\\xcf\\x4c\\xd1\\xc4\\x8e\\x63\\x75\\x92\\x28\\xc0\\xb0\\x79\\x02\\xd9\\x1a\\\r\n\\x4b\\x6e\\xc1\\x3a\\x58\\x0f\\x75\\x03\\xd7\\x79\\xa0\\x91\\x7c\\xa3\\x67\\x36\\\r\n\\x0c\\xc4\\xb8\\x79\\x1e\\xfb\\xf6\\x2e\\xdb\\x5f\\xdc\\x77\\xd2\\x55\\xa8\\xb3\\\r\n\\x1c\\x80\\x1e\\x99\\x29\\x6c\\x5e\\xde\\xf6\\x1b\\x7d\\x75\\x51\\x05\\x3f\\x9d\\\r\n\\xde\\x37\\xbf\\x61\\x1b\\x65\\x18\\x49\\x09\\x3f\\x83\\x07\\x20\\x7c\\xd9\\xbf\\\r\n\\xb6\\xa5\\x8d\\xd9\\xa7\\x95\\xaa\\xa4\\x31\\x25\\xbb\\x88\\xa5\\x64\\x60\\x7d\\\r\n\\xa0\\x8c\\xf4\\x48\\x48\\xb1\\x46\\x0b\\xe6\\x95\\x35\\x34\\xae\\x39\\x8e\\x62\\\r\n\\x92\\x58\\x80\\xf5\\x91\\x0d\\x95\\x3d\\x4e\\xcc\\xe8\\x4e\\xd7\\x37\\x27\\x54\\\r\n\\xb3\\x4e\\x2f\\x92\\xaa\\xc9\\x6f\\x95\\xad\\xfe\\x1e\\x60\\x3f\\x86\\xda\\xad\\\r\n\\x82\\xa0\\x67\\x15\\x54\\x34\\xd6\\x73\\xb1\\x37\\x67\\x83\\x2d\\xad\\xf3\\xbe\\\r\n\\x7f\\xc2\\xf6\\xf6\\xd7\\x26\\xa1\\x09\\x8d\\x27\\x44\\x69\\x47\\x63\\x18\\x90\\\r\n\\xed\\xef\\xdd\\x97\\x1d\\xbd\\x4d\\x8d\\xc8\\xd1\\xaa\\x8f\\xa8\\xbc\\x60\\x90\\\r\n\\xcb\\xf4\\xc7\\x61\\xfa\\x5b\\xfb\\xde\\xd7\\xd4\\x9c\\xb4\\x53\\x51\\x8b\\x24\\\r\n\\x60\\xdb\\xa8\\x0e\\xcb\\x73\\xb5\\xfd\\xaf\\xde\\xf6\\xf6\\xd4\\x91\\x71\\x11\\\r\n\\x25\\x1c\\xe9\\x2c\\xac\\x63\\x45\\xe5\\xba\\xe6\\xd7\\xfa\\x1d\\xfb\\x5c\\xdf\\\r\n\\x6d\\xfd\\x40\\xd4\\x49\\xb9\\x70\\x05\\xa4\\x7b\\x65\\xd5\\x75\\x22\\xf6\\xea\\\r\n\\x1d\\xcf\\xa5\\xb5\\x1c\\x6f\\xb3\\x2f\\x36\\x9b\\x7d\\xae\\xac\\x84\\xc4\\xdf\\\r\n\\xa3\\xe2\\x34\\x27\\x96\\x42\\xfc\\xb9\\xae\\x16\\x3d\\xef\\xe8\\x41\\xdf\\xb7\\\r\n\\x70\\xdb\\xfe\\x9a\\x35\\xb4\\x92\\x2a\\x53\\xd4\\xc2\\x1d\\x04\\x68\\xa5\\x15\\\r\n\\xaf\\x73\\xd2\\x76\\x07\\x2b\\x12\\x3d\\xd7\\x54\\xf1\\x52\\xf0\\x8e\\x1f\\x9b\\\r\n\\x37\\xc6\\x69\\x5f\\x65\\xb0\\x01\\x9e\\x30\\x90\\xf3\\x39\\x92\\x10\\xc6\\xcc\\\r\n\\xdb\\x7c\\xcf\\xa3\\x50\\x5a\\x8e\\x78\\xdb\\xac\\x88\\x51\\x97\\xe0\\xb2\\xb7\\\r\n\\xc3\\x25\\xdd\\x9a\\x49\\x30\\xc8\\x3d\\xc2\\x8b\\xe2\\x02\\xed\\xbc\\x51\\x34\\\r\n\\xcd\\x2f\\x0f\\x9a\\x3e\\x77\\x0e\\x73\\x7c\\x55\\x27\\x91\\x58\\x2b\\x9f\\x99\\\r\n\\xa0\\x91\\x4a\\x58\\xee\\xa7\\x7d\\x81\\x1a\\xa4\\x46\\xf4\\xb7\\x32\\xff\\x00\\\r\n\\xc5\\xb1\\xff\\x00\\x1f\\xe5\\xa9\\xa3\\x5e\\xd0\\xe4\\x3f\\xe1\\xee\\x3f\\xa6\\\r\n\\x97\\xfb\\x88\\x7f\\xfb\\x75\\xc1\\x62\\x12\\x24\\x51\\x3c\\x95\\x42\\x76\\xcf\\\r\n\\x15\\x12\\xe4\\x16\\x2c\\xc2\\x86\\x6f\\xf6\\x96\\x36\\x3e\\xbb\\x5b\\x48\\x2f\\\r\n\\x75\\x2a\\x16\\xe0\\xe4\\x36\\x1f\\x8a\\xdb\\xfb\\x8d\\x3d\\xd4\\x3a\\x81\\xcc\\\r\n\\x0b\\xef\\xd4\\x5a\\xc3\\x4d\\x2a\\x64\\xa2\\x5f\\x35\\x82\\x81\\xbd\\xba\\x4e\\\r\n\\xc7\\x2c\\xd5\\x42\\x31\\xb7\\x63\\x61\\x6d\\x8e\\x95\\x6a\\x1f\\x99\\xc9\\xe6\\\r\n\\x04\\x08\\x64\\x2a\\x22\\x6c\\x51\\xd5\\xcf\\x95\\x9c\\x93\\x7b\\x28\\xf2\\x9e\\\r\n\\xfd\\x3b\\x04\\x8a\\x04\\x4c\\xaa\\xe1\\x8a\\x40\\xbd\\x3e\\x26\\x3a\\xa2\\xa2\\\r\n\\x37\\x5d\\x8d\\xe6\\x52\\x47\\x57\\x4f\\x62\\x32\\xed\\xa7\\xa7\\x86\\x39\\x9a\\\r\n\\x56\\x60\\x24\\xa8\\x79\\x1b\\x39\\x5b\\xa9\\xcb\\x91\\x71\\x1a\\x2a\\x13\\x75\\\r\n\\xc4\\x74\\xf6\\x24\\xf7\\x26\\x68\\x95\\xb3\\x83\\x18\\x6a\\x63\\x1b\\x9e\\xae\\\r\n\\x91\\x30\\xb6\\xf8\\x9f\\xf1\\xb6\\xab\\xf8\\xe0\\x9b\\xc2\\xd0\\x4e\\x56\\xf4\\\r\n\\xf5\\x26\\xd1\\x55\\xac\\x37\\x5f\\x8c\\xae\\x6c\\x23\\x28\\xec\\xb9\\xdb\\x3e\\\r\n\\x66\\x38\\x9e\\x8d\\x53\\xfd\\xa7\\xe1\\x3c\\x2c\\xd4\\x24\\xd3\\x14\\x30\\xc3\\\r\n\\x5b\\x25\\x25\\x2c\\x15\\xcb\\x96\\x72\\xe3\\x4f\\x18\\x98\\xde\\x45\\x38\\x88\\\r\n\\xa6\\x81\\x4f\\x4b\\xff\\x00\\x69\\x7d\\x70\\x6e\\x3d\\xc3\\xa8\\x38\\x5a\\x37\\\r\n\\x15\\xa3\\x86\\x92\\xbc\\xbd\\x1a\\xcb\\x3d\\x3f\\x16\\xa7\\xa5\\x8a\\x5e\\x4b\\\r\n\\x4d\\x24\\x86\\x4e\\x4c\\xd4\\xee\\x93\\x40\\x8c\\xd7\\xbf\\x35\\x89\\x2c\\x75\\\r\n\\x21\\xab\\xa0\\xe0\\xf5\\xab\\x01\\xc6\\x55\\x9b\\x85\\xc0\\x70\\xcb\\xf0\\x4d\\\r\n\\x17\\x2e\\x75\\xbe\\x27\\xb4\\xb7\\xdb\\xbe\\xaa\\x26\\xfd\\x95\\x4f\\x1a\\xf0\\\r\n\\xd7\\xb4\\x71\\x19\\xa6\\x9a\\x9e\\x5e\\x4f\\x33\\x88\\x47\\x10\\x8e\\x62\\xf2\\\r\n\\x34\\x51\\x4f\\x24\\x93\\x1a\\x7e\\x73\\x66\\xac\\xd1\\x93\\xcb\\x6b\\x2f\\x32\\\r\n\\xb6\\x8e\\x3a\\x89\\x27\\x45\\x35\\x32\\xd6\\xd3\\x23\\x54\\xcd\\x7c\\x70\\x91\\\r\n\\x27\\x2a\\x27\\x8d\\xe3\\xc5\\x70\\x00\\xaa\\x20\\x23\\x08\\xf1\\xb6\\xaa\\xe5\\\r\n\\xa3\\xa6\\xa8\\xaa\\x8a\\xa3\\x95\\x9c\\x51\\x44\\xf2\\x82\\xc6\\x11\\x0a\\x5b\\\r\n\\x01\\xd2\\xfd\\x3e\\x6f\\x4f\\x5f\\x6d\\x25\\x15\\x64\\xe6\\x3a\\x9a\\xd1\\x37\\\r\n\\x32\\x4c\\x7a\\xa9\\x15\\xa2\\xb8\\x87\\xa7\\x6c\\xb9\\x9d\\x73\\x11\\xb1\\x7e\\\r\n\\x91\\x70\\xb6\\x27\\x81\\xab\\xcb\\x57\\xc8\\xad\\x3c\\x40\\xf1\\x37\\x65\\x80\\\r\n\\x5e\\x53\\x21\\xa8\\x98\\xcc\\x23\\xac\\x55\\xe8\\x8e\\x35\\xe5\\x75\\xc8\\xd6\\\r\n\\x73\\x75\\xb5\\xc4\\xdc\\x0f\\x84\\x57\\x2f\\x14\\x92\\x96\\x27\\x9e\\x5e\\x61\\\r\n\\x59\\xe2\\x8e\\xb1\\xae\\xcb\\xcb\\x7c\\x55\\x36\\x65\\xfe\\xcd\\x9b\\x07\\xbd\\\r\n\\xa4\\x07\\xca\\xd4\\xfc\\x50\\x3d\\x5b\\x2b\\x1b\\xd2\\x70\\xb5\\x31\\x53\\xa9\\\r\n\\x61\\x78\\xc4\\xb5\\x0e\\xe7\\x98\\xdd\\xb2\\x5c\\x64\\xc8\\x9d\\xcd\\xb4\\xfc\\\r\n\\x79\\xa9\\x20\\xa4\\xae\\x96\\x4f\\x03\\xc2\\x4b\\xe2\\xd8\\x4a\\xf1\\xfc\\x5a\\\r\n\\xc2\\x0c\\x41\\xc7\\x87\\x88\\xe2\\x3d\\xe4\\x38\\xed\\xa3\\x59\\x55\\xc4\\xab\\\r\n\\x24\\x87\\x2f\\x8f\\x58\\xb0\\x8a\\x1a\\x4e\\x69\\xea\\x90\\xc7\\x2b\\xe5\\x55\\\r\n\\x57\\x3d\\xf6\\x5e\\x42\\x31\\xed\\x7b\\x6e\\xda\\xbc\\x3e\\x27\\x94\\x77\\x8a\\\r\n\\xe8\\xd7\\xe5\\x9f\\x27\\x9a\\x5c\\xbc\\xb6\\xef\\xbf\\xbe\\x90\\x34\\x5d\\x34\\\r\n\\x94\\xf0\\x59\\x80\\x3f\\x16\\x43\\x9a\\xbb\\x93\\xb0\\x18\\x84\\x07\\x05\\xec\\\r\n\\x1a\\xfa\\x3c\\xd7\\x45\\x39\\x37\\x6f\\x4b\\xee\\x3f\\x5d\\x48\\xf2\\xcc\\x02\\\r\n\\x31\\xbc\\x51\\x9f\\x39\\xe9\\xb1\\xb5\\xfd\\x0e\\x91\\x2a\\x2c\\x9c\\xdb\\x15\\\r\n\\x6f\\x4e\\xfb\\x5c\\x7a\\x6a\\x35\\x68\\x14\\xc7\\x5a\\x04\\xc2\\x40\\x37\\x59\\\r\n\\x22\\x65\\x57\\x07\\xe9\\x83\\x23\\x7f\\xed\\xae\\x1b\\x0c\\x02\\x3c\\xb3\\x39\\\r\n\\x95\\xef\\x80\\x5c\\xb7\\xf6\\xed\\xa4\\x32\\xc5\\x78\\x44\\x9c\\xa1\\x28\\x52\\\r\n\\x3b\\x0d\\xb2\\x3d\\xbb\\x77\\x3f\\x96\\xad\\x8e\\xc5\\x76\\x3e\\x9a\\xb9\\x3d\\\r\n\\xcd\\xf4\\xaa\\xc3\\x6b\\xdf\\xdf\\xea\\x2f\\xa6\\x95\\x10\\x00\\x5b\\xe2\\x01\\\r\n\\x7b\\x16\\xbd\\xef\\xbf\\x6f\\x72\\x3d\\xfe\\x9b\\x6a\\x3b\\x10\\x2d\\x6d\\x87\\\r\n\\xa5\\x8e\\xaa\\x1d\\xbe\\x69\\x5d\\xff\\x00\\x56\\x6b\\xea\\xf0\\x9e\\xda\\xc3\\\r\n\\xa8\\x07\\x6f\\x35\\x8d\\xed\\x65\\x24\\x7b\\x7c\\x9d\\xfe\\xba\\x8e\\x43\\xbc\\\r\n\\x49\\x30\\x87\\x94\\x07\\xb2\\x73\\x13\\x7f\\x5c\\xd8\\x00\\x7b\\x8c\\x4f\\xa9\\\r\n\\xbe\\x9a\\x9e\\x91\\x81\\xae\\xab\\x11\\x0c\\x20\\x19\\xc8\\x8a\\xd1\\x2c\\xcd\\\r\n\\x7b\\x02\\x23\\x21\\x3a\\x87\\xa2\\x5f\\x1b\\x8e\\xa3\\xa8\\x92\\xa1\\xa3\\x5a\\\r\n\\x8a\\x8c\\x62\\x0e\\x82\\xdf\\x0e\\x57\\x79\\x64\\x7f\\x70\\xa7\\x21\\x99\\x26\\\r\n\\xec\\x53\\x7b\\x2f\\x48\\x09\\xcc\\x8f\\x03\\xd5\\x77\\x7d\\xb9\\x2c\\x7a\\x09\\\r\n\\x3e\\x8d\\x36\\x46\\x52\\x7b\\xe0\\xb6\\xd9\\x6d\\xae\\x21\\x4d\\x04\\x78\\x53\\\r\n\\xa2\\x81\\x4c\\x5a\\xc3\\x2e\\x5d\\xd0\\xb2\\x8b\\xf6\\x62\\xb9\\x2d\\xbb\\x86\\\r\n\\xf4\\xd5\\xcd\\xb9\\xb0\\x9c\\x0f\\x7b\\x98\\x94\\xe4\\x76\\xfd\\x01\\x5f\\xe2\\\r\n\\xb6\\xa9\\xbc\\x3c\\x68\\xa2\\xa7\\xe3\\x38\\x90\\x5c\\x87\\x56\\x45\\x50\\xde\\\r\n\\xc3\\x6f\\xe4\\x6f\\xa8\\xec\\xaa\\x96\\x18\\x9f\\xf1\\xff\\x00\\x1b\\xea\\x74\\\r\n\\xd9\\xac\\xac\\xd6\\xfc\\xbb\\xff\\x00\\xd7\\x53\\x27\\x17\\xa7\\x4e\\x23\\x45\\\r\n\\xcd\\x3e\\x1a\\x46\\x01\\x2a\\xe8\\x86\\x20\\xe3\\x4d\\x52\\x06\\x78\\x03\\xfd\\\r\n\\x8c\\xbc\\xc8\\x2f\\xf2\\x8e\\xfa\\x66\\xa2\\x75\\xa9\\xa5\\x6c\\xad\\xd3\\x8c\\\r\n\\xf0\\x6d\\xe5\\x9e\\x1b\\xf4\\xff\\x00\\xe6\\x2e\\x51\\xb7\\xb8\\x3b\\x68\\x2c\\\r\n\\xee\\x62\\x8a\\x25\\x8e\\xeb\\x8d\\xd1\\xb3\\x6e\\x96\\x1b\\x8b\\x34\\x6e\\x89\\\r\n\\x28\\x6d\\xfc\\xb8\\x76\\x7d\\xab\\x38\\x7c\\xbf\\x0d\\x5a\\xa0\\xb4\\x72\\x1f\\\r\n\\x2c\\x7c\\xfb\\x3c\\x5f\\xf0\\x59\\xd5\\x5b\\xf8\\x4e\\x5e\\x9a\\xfb\\x42\\x93\\\r\n\\x4b\\x14\\x74\\xbc\\x2a\\xaa\\x92\\x18\\x92\\x43\\xf1\\x5a\\xae\\xab\\x2e\\x64\\\r\n\\x31\\xf7\\xf2\\xe0\\x59\\x87\\x6b\\x12\\xc3\\x60\\x48\\x76\\x94\\x5f\\x10\\x5a\\\r\n\\xc3\\xb9\\x3f\\x2a\\x80\\x3e\\x63\\x6c\\x54\\x7b\\x9f\\xe7\\x1c\\xd5\\xac\\xb0\\\r\n\\x4d\\x23\\x09\\x76\\x65\\x65\\x55\\x60\\xc3\\x92\\x5b\\x65\\x2a\\xa0\\xff\\x00\\\r\n\\x4f\\x37\\x73\\xa7\\xa3\\x9a\\xa5\\x2a\\xb9\\x55\\x1e\\x23\\x87\\xb2\\xdb\\x28\\\r\n\\xc8\\x51\\xcc\\xa7\\x24\\xb6\\xfc\\xe1\\xf1\\x17\\x1e\\x8b\\x81\\xb9\\xd6\\xed\\\r\n\\xd5\\xbe\\x04\\x82\\x09\\xc7\\x6c\\x4f\\x7f\\x4f\\x5d\\x54\\x48\\x2d\\x94\\x91\\\r\n\\x2a\\xec\\xc3\\xce\\x36\\x3f\\xd2\\xda\\x39\\x86\\x16\\xa7\\x8a\\xdf\\xf2\\x0b\\\r\n\\xfe\\x64\\x6a\\x9a\\x2a\\x96\\x69\\x64\\x68\\xcc\\xde\\x18\\x40\\xd5\\x22\\x51\\\r\n\\x2e\\x67\\xca\\x9b\\xab\\xa6\\x2d\\xb8\\xdf\\x6d\\x08\\xa9\\xe6\\x84\\xd3\\x29\\\r\n\\xc1\\xa2\\xe9\\xf8\\x0c\\xbb\\x15\\x06\\x31\\x7d\\xac\\x36\\x6b\\x90\\x76\\x27\\\r\n\\xd7\\x58\\x82\\x37\\xe9\\x1e\\xc2\\xfb\\x1f\\xf1\\xd7\\x55\\xb6\\xed\\x6e\\xfa\\\r\n\\xf1\\x0a\\x01\\x65\\x38\\xdd\\x5a\\xfb\\x1f\\x95\\x80\\xf5\\xf5\\xed\\xf5\\xdf\\\r\n\\x54\\xb2\\x4a\\x47\\xee\\xd2\\x60\\xc5\\x8d\\xf9\\x98\\x6f\\x08\\x18\\xdf\\x7b\\\r\n\\x9e\\xff\\x00\\xdd\\xec\\x75\\x51\\xcb\\x45\\x59\\x0c\\x67\\x97\\x72\\xdb\\xb9\\\r\n\\xf5\\x55\\x1b\\xed\\x6d\\x87\\x63\\xa1\\x55\\x5f\\x34\\x84\\xc7\\x1a\\x47\\xc8\\\r\n\\xb7\\x4b\\x3f\\x57\\x51\\xfc\\x39\\x2d\\x89\\xf6\\xb7\\xbe\\xbb\\x40\\xf4\\xd2\\\r\n\\x6f\\x4d\\xd1\\x75\\x6b\\x7c\\xa6\\xdb\\x2b\\xa7\\x6d\\xff\\x00\\x3f\\x5d\\x71\\\r\n\\x68\\x0f\\x0c\\x8a\\x59\\x20\\x96\\x29\\x61\\xa5\\x8a\\x10\\xd1\\xb5\\xd8\\x86\\\r\n\\xdb\\x1c\\x4c\\x80\\x28\\xea\\xee\\x4e\\xb8\\xbf\\x03\\xe2\\x9c\\x26\\xa6\\x06\\\r\n\\xe2\\x0c\\x2a\\x38\\x67\\x36\\x39\\xe1\\x77\\xe2\\x5c\\x32\\x9d\\x79\\x12\\x2a\\\r\n\\xf9\\x62\\x8e\\x58\\x2d\\x4a\\x5e\\xe0\\x10\\x42\\xef\\xe9\\xc7\\xa2\\xfd\\x9b\\\r\n\\xc4\\x20\\x93\\xc3\\xc5\\x55\\x10\\x9e\\x9f\\x9a\\xa6\\x7a\\x4a\\xa0\\xcd\\x12\\\r\n\\xa3\\x18\\x59\\x8c\\xb1\\xb4\\xb1\\x98\\x8b\\x75\\xad\\xfa\\x81\\xd7\\x08\\x5a\\\r\n\\x25\\x82\\x92\\x92\\x77\\xab\\xfd\\xa1\\x1a\\xfc\\x31\\xe3\\x2a\\xa1\\x89\\x42\\\r\n\\xac\\x7b\\xb2\\x18\\xb1\\xb2\\x46\\xe4\\x95\\x54\\x20\\x9e\\xad\\x3d\\x67\\x12\\\r\n\\xad\\x7a\\xb9\\x22\\x17\\x92\\x9c\\xcb\\xcb\\x89\\x8a\\x8f\\xbe\\xa8\\x96\\x46\\\r\n\\x0c\\x43\\x37\\x7b\\x15\\xb5\\xfe\\x6d\\x09\\x29\\x60\\x81\\x23\\x43\\x78\\x16\\\r\n\\x08\\xf9\\x60\\x34\\x96\\x54\\x8e\\x2e\\x6a\\xc7\\x79\\x1c\\xd8\\x73\\x31\\x41\\\r\n\\xf3\\xf6\\xdf\\x55\\x1c\\x57\\x8b\\xd0\\xb5\\x2c\\x9c\\xc6\\x34\\x54\\xf2\\x3f\\\r\n\\x31\\x1d\\x29\\xf6\\x72\\xc3\\x3b\\x58\\x33\\x00\\x31\\x4c\\x64\\xf3\\x75\\x77\\\r\n\\xd7\\x83\\x82\\x96\\x0e\\x1d\\xc1\\xa1\\x82\\x1a\\x5a\\x98\\xb8\\x70\\x9a\\x29\\\r\n\\x9f\\xc5\\x30\\x7e\\x6c\\x93\\xa9\\xf8\\x86\\x16\\x24\\xe3\\x28\\xe5\\x95\\xb8\\\r\n\\x24\\xb3\\x1d\\x45\\x43\\x0b\\xbd\\x54\\xf5\\x95\\x0c\\xf3\\xd6\\xb4\\x78\\x88\\\r\n\\x62\\x8f\\x3f\\x0d\\x4c\\x2d\\x90\\x54\\x01\\xba\\xe4\\xc8\\x73\\xa5\\x75\\x0a\\\r\n\\x31\\x51\\xae\\x25\\x9b\\x42\\x90\\x47\\x50\\x92\\x50\\x72\\xf6\\x79\\x04\\x85\\\r\n\\x65\\x8d\\x99\\x42\\x63\\x80\\x59\\x19\\x32\\x76\\xf3\\x2b\\x2f\\xcd\\xae\\x11\\\r\n\\x4d\\x55\\x8b\\xc9\\x4b\\x43\\x1b\\x49\\xb1\\x11\\xf8\\xda\\x90\\x5a\\x47\\x60\\\r\n\\x08\\x1d\\x2c\\x33\\xc3\\x75\\x61\\x7b\\x8d\\xb5\\x1d\\x5f\\x1b\\x1e\\x22\\x34\\\r\n\\x52\\xd4\\xd1\\x3d\\xf9\\x92\\x10\\x2d\\x14\\x54\\xd4\\xdf\\x74\\x91\\x00\\x33\\\r\n\\x55\\x65\\xc4\\xbb\\x64\\xd9\\x26\\x9c\\x47\\xc2\\x69\\x84\\x79\\x36\\x01\\xaa\\\r\n\\x6a\\x0b\\x04\\xbf\\x48\\x62\\x27\\x00\\x9b\\x77\\xd8\\x6f\\xe8\\x34\\xf4\\xeb\\\r\n\\x20\\x65\\x92\\x06\\x03\\x2b\\x79\\x99\\x4a\\xed\\xf9\\xe9\\xd5\\xd6\\xf1\\xe4\\\r\n\\xa6\\xc7\\x7e\\xda\\x5e\\x75\\x28\\xa8\\x89\\xfa\\x10\\x91\\x6c\\x3d\\x31\\x17\\\r\n\\xf5\\xd7\\x3e\\x14\\xc5\\x0b\\xa8\\x41\\xdc\\x2e\\x3b\\x11\\xff\\x00\\x36\\xaa\\\r\n\\xf3\\x4f\\xf4\\x8f\\x0b\\xac\\x2e\\x62\\xb8\\x62\\x61\\x52\\x60\\x97\\x7f\\xc2\\\r\n\\xd4\\xcf\\xce\\xff\\x00\\x85\\x6f\\xbe\\xb8\\x7d\\x6c\\x27\\x91\\x5e\\x94\\x8f\\\r\n\\x2f\\x13\\xa5\\x43\\x23\\xfc\\x2f\\x0a\\x54\\xcb\\x1a\\x75\\xaa\\xbf\\x33\\xd7\\\r\n\\x20\\xad\\x7f\\x7d\\x2a\\x53\\x47\\x5b\\x4f\\x40\\x23\\x73\\xcb\\xa9\\x51\\x19\\\r\n\\xca\\x47\\x38\\x9c\\xb7\\xcb\\x60\\x2f\\x73\\xf4\\xf4\\x17\\x68\\x79\\x97\\x4c\\\r\n\\x54\\x8b\\xfb\\xdb\\x4c\\x50\\xec\\xae\\x10\\x7d\\x40\\xf5\\x1a\\x00\\xfc\\xa3\\\r\n\\x71\\xae\\xbf\\x51\\xdb\\x40\\x5f\\xf2\\x1e\\xba\\x71\\x7f\\xa7\\xeb\\x61\\xa2\\\r\n\\x48\\xb9\\xdf\\xbe\\xac\\xed\\x8a\\x8c\\xfc\\x9b\\x77\\x04\\x0e\\xdd\\x87\\xf5\\\r\n\\xf6\\xd3\\xb2\\xbc\\x9c\\xd5\\x00\\x22\\x27\\x4c\\x1c\\xd4\\x0c\\xec\\x42\\xfc\\\r\n\\xcd\\xca\\x8f\\xdb\\xd0\\x93\\xdb\\x4c\\xf1\\x28\\xc8\\xd2\\xcd\\x2a\\x13\\xe8\\\r\n\\xd5\\x2d\\x13\\x79\\xad\\xe6\\x69\\x64\\x65\\xef\\x61\\x10\\xf4\\xdf\\x58\\x73\\\r\n\\x04\\x70\\x64\\x63\\xc9\\x8b\\xfd\\xdf\\xcc\\xc7\\xbb\\x6d\\x10\\xdc\\x74\\x8e\\\r\n\\xe2\\xeb\\xdf\\x54\\xf1\\xc7\\x04\\x90\\xac\\xfc\\xb9\\x79\\x92\\xab\\x2b\\x11\\\r\n\\x25\\xb7\\x71\\xb9\\x0e\\xcb\\x26\\x01\\x17\\xc8\\xa8\\xd7\\xc4\\x2e\\x99\\x51\\\r\n\\x9f\\x97\\x09\\xe4\\x47\\xb9\\xc4\\xd9\\x22\\x39\\xfd\\x6f\\x84\\x8b\\xd4\\x76\\\r\n\\xee\\x06\\xe3\\x4b\\x2a\\xf9\\x19\\x87\\xe5\\xdf\\x6d\\x52\\xd5\\xc2\\x01\\x31\\\r\n\\xbc\\xce\\xe3\\xde\\x27\\x94\\x29\\x5b\\x7b\\x29\\x3d\\x3e\\xd7\\x07\\x40\\xd2\\\r\n\\x75\\xc6\\x15\\xcb\\xa2\\x26\\x4d\\x76\\xc3\\x96\\x76\\x37\\x4b\\x65\\x26\\xc4\\\r\n\\x5d\\xc0\\xba\\x8b\\x6b\\x88\\x4d\\x24\\x52\\xc5\\x6a\\x73\\x12\\x2b\\xab\\x28\\\r\n\\xbe\\x27\\x26\\xb1\\x03\\xd8\\xef\\xf5\\xd4\\xc9\\x21\\xf9\\xe4\\xb5\\xc5\\xfd\\\r\n\\x48\\xff\\x00\\xbf\\xd3\\x51\\xf2\\xfe\\x1c\\xb1\\x29\\x29\\x20\\x16\\x59\\x17\\\r\n\\x6c\\x90\\xfa\\x1b\\xff\\x00\\x91\\xf7\\xd4\\x75\\x8a\\x89\\x1c\\xb1\\x10\\x93\\\r\n\\x28\\xfe\\x8d\\xf9\\x82\\x3f\\xae\\xbc\\x2d\\x6d\\x75\\x44\\x78\\x74\\x2b\\x53\\\r\n\\xa2\\x19\\x9f\\x20\\xb1\\x28\\xb9\\x57\\xb1\\xd9\\x02\\x92\\x2d\\x7d\\x56\\xd3\\\r\n\\x24\\xbc\\x54\\x19\\x3a\\xeb\\x64\\x92\\x6e\\x5c\\x4b\\x3a\\x45\\x89\\x92\\x44\\\r\n\\x18\\x7c\\x4c\\x18\\xee\\x51\\x58\\xe6\\x54\\x1e\\xbb\\x6a\\x9f\\x87\\xc4\\xed\\\r\n\\x14\\xa5\\x63\\x48\\x19\\xca\\xb0\\x96\\x34\\xf8\\x79\\x82\\xec\\xc5\\xe5\\x70\\\r\n\\xb7\\x7b\\x7a\\x35\\xf6\\x0d\\x6d\\x50\\x51\\xf3\\x70\\xc6\\x32\\x59\\x41\\xc7\\\r\n\\x2e\\x90\\x2f\\xb7\\xb6\\x81\\x80\\xaf\\x8a\\x55\\x8f\\xaa\\xe3\\x6c\\x3c\\x8c\\\r\n\\x40\\x24\\xdf\\x7b\\x65\\x61\\xed\\xa1\\x2a\\xaf\\xd5\\xd4\\x7a\\x48\\x7c\\xd6\\\r\n\\xfa\\x1e\\xe3\\xf3\\xd4\\x8c\\x05\\x8b\\x38\\x36\\xfa\\x7c\\xda\\xe9\\x18\\x12\\\r\n\\x8a\\x3d\\xff\\x00\\xec\\xea\\x1a\\xa0\\x64\\xe6\\x72\\x8c\\x52\\x2c\\x98\\xb5\\\r\n\\x24\\x61\\xc6\\xcf\\x83\\x2b\\x16\\x97\\x1b\\x5a\\xcc\\xaa\\x9f\\x30\\x6b\\x90\\\r\n\\x6b\\xa9\\xe6\\x9a\\x82\\x51\\x34\\xbe\\x26\\x1e\\x5c\\x08\\x65\\x48\\x67\\x66\\\r\n\\x64\\xe6\\x4f\\x4e\\x54\\xe7\\x75\\x27\\xad\\x9d\\x8f\\x99\\xad\\x96\\x8d\\xf0\\\r\n\\x69\\x97\\x17\\x90\\x2d\\xca\\xc7\\x91\\xb0\\x3b\\xfd\\x37\\x3e\\xde\\xfa\\x2c\\\r\n\\xc2\\xf8\\x10\\xae\\xd9\\xa8\\x55\\x63\\xf2\\xdb\\x70\\xc6\\xde\\x9f\\xcf\\x52\\\r\n\\xb4\\x6c\\xae\\x57\\xad\\xc0\\x16\\xf8\\x9f\\xcf\\x7d\\x94\\x75\\x0f\\x7b\\x6a\\\r\n\\xaa\\x47\\x78\\xe3\\x3b\\x08\\x41\\x03\\xaa\\x52\\x41\\xd8\\xdb\\x6c\\x48\\x1d\\\r\n\\xf6\\xb6\\x9e\\x29\\x4a\\xdd\\x6c\\x09\\x17\\x20\\x9e\\xe5\\xb2\\x6e\\xf6\\xbf\\\r\n\\x7e\\xde\\xda\\x70\\xab\\x92\\x93\\x8f\\xe7\\xd2\\x75\\xc8\\xe8\\x57\\x8a\\xf8\\\r\n\\x33\\xc3\\x14\\xe0\\xf9\\x7e\\xf5\\x25\\x46\\x46\\xfe\\x5f\\xae\\xbc\\x03\\x0a\\\r\n\\x3f\\x08\\x47\\x4b\\xd2\\xd2\\x53\\x52\\x7c\\x45\\xbf\\x53\\xa4\\x51\\xa8\\x66\\\r\n\\xfe\\x22\\x3f\\x5b\\x5b\\x49\\x3b\\x11\\xcd\\x55\\x5e\\xa3\\x6b\\x86\\x1f\\xf5\\\r\n\\xd7\\x0c\\x41\\x2c\\x8f\\x4d\\xf6\\x81\\x6a\\x21\\xb7\\x37\\x28\\xa3\\x77\\x5c\\\r\n\\x0a\\xb2\\x91\\x6f\\xbd\\x23\\x15\\xb9\\xb6\\x43\\x60\\x35\\x51\\x41\\x51\\x80\\\r\n\\x9a\\x2a\\xde\\x21\\xcb\\xe5\\xc6\\x91\\x80\\x69\\xe4\\xe6\\x53\\xb0\\x11\\x85\\\r\n\\x1b\\xc1\\xe6\\xda\\xed\\x91\\x3a\\x1c\\xf0\\xd2\\x60\\x6e\\x21\\xb5\\xc3\\xe2\\\r\n\\x2f\\x99\\xfe\\x04\\xb1\\xda\\xd6\\x36\\xd5\\x13\\xf8\\x51\\x53\\xc9\\x22\\xa6\\\r\n\\x3a\\x79\\xd8\\x2a\\x92\\x8d\\xd3\\x20\\x5c\\x93\\x3c\\xad\\xd4\\x8d\\x95\\xd7\\\r\n\\x15\\x02\\xc4\\xde\\xa1\\x23\\xe6\\x41\\x5f\\x0c\\x33\\x2b\\x52\\x39\\xb5\\xf2\\\r\n\\x1d\\x7c\\xb0\\x6c\\x01\\x16\\x05\\x6c\\xa2\\xe0\\x58\\xef\\xaf\\x0a\\x5d\\xfc\\\r\n\\x32\\x42\\xf5\\x3c\\x4a\\x6c\\xb1\\xb3\\x1b\\xc7\\x12\\x7a\\x5f\\x97\\x8b\\x15\\\r\n\\x4f\\x9d\\xcd\\x9a\\xe2\\xe3\\x55\\xb4\\xd0\\x73\\x59\\xa6\\x8a\\x69\\xb8\\x72\\\r\n\\x3b\\x31\\x96\\x14\\xa0\\xc6\\x48\\x4e\\x5b\\x65\\xcf\\x31\\xb9\\x23\\xcb\\xb5\\\r\n\\x97\\x6d\\x70\\x29\\xd9\\x79\\x8b\\x5a\\x8b\\x03\\x04\\x2a\\x42\\xcb\\x03\\x8e\\\r\n\\x6a\\x5e\\xfe\\xab\\x71\\xde\\xff\\x00\\x0f\\x43\\x8a\\xd7\\x13\\xe1\\x29\\x41\\\r\n\\x69\\x02\\xd8\\x89\\x9b\\x27\\xe5\\xc6\\xa1\\xad\\x7b\\x2a\\x02\\xc3\\x20\\x2c\\\r\n\\x2c\\x6c\\x0d\\xf5\\x4e\\xf2\\x46\\x7c\\x31\\xaa\\xb2\\xc6\\xc7\\xa6\\x18\\x4d\\\r\n\\xd5\\x6f\\xee\\xcd\\xb6\\xdf\\x5f\\xa5\\xf5\\x52\\xaa\\xd3\\xe2\\x2a\\x26\\x02\\\r\n\\xcb\\xb5\\x84\\x8d\\x6b\\x75\\xf6\\xf6\\xd2\\xce\\xdd\\x31\\x88\\xba\\x42\\x7b\\\r\n\\xfe\\x9a\\x92\\x79\\x5c\\x48\\x5b\\xb0\\xbe\\xe5\\x0f\\xaf\\xe6\\x02\\x9d\\x45\\\r\n\\x18\\x82\\x35\\x44\\x73\\x53\\x95\\x85\\xfa\\x2e\\x77\\x3e\\x99\\x3e\\xc7\\x4f\\\r\n\\x4c\\x7e\\x7b\\x4a\\x84\\xfe\\x37\\xb1\\x36\\xff\\x00\\x8a\\xfa\\xac\\x8a\\x58\\\r\n\\x21\\xf8\\xc3\\x99\\x21\\xe5\\x2d\\xe5\\xba\\xf2\\xe5\\x0e\\x6f\\x76\\xc9\\x71\\\r\n\\xee\\x34\\xaa\\x29\\xdf\\x26\\x87\\x95\\xd3\\x51\\x3a\\x07\\x8d\\x64\\x3b\\x04\\\r\n\\x0e\\x53\\xcb\\xf3\\x0b\\x32\\xff\\x00\\x2b\\x25\\x0c\\x30\\xf2\\xc1\\x04\\x39\\\r\n\\x16\\xc5\\x1d\\x72\\xb8\\x3e\\xa4\\xed\\x72\\xde\\x6b\\xef\\xeb\\xa9\\x52\\xe4\\\r\n\\x8b\\xd9\\x5b\\xf1\\x20\\x16\\x1f\\xaf\\xa1\\xf7\\xd2\\x7e\\x12\\x7f\\xae\\xb2\\\r\n\\xfd\\x6e\\x7b\\x1d\\x76\\xcc\\x5c\\x1d\\xb7\\xff\\x00\\x3d\\xb5\\xfb\\x46\\x3c\\\r\n\\xca\\xdc\\x26\\x24\\x6e\\x84\\xec\\x37\\xf5\\x1a\\x12\\x13\\xf0\\xe4\\x8a\\x9e\\\r\n\\x60\\x3e\\xaf\\x0a\\x16\\xff\\x00\\xee\\xbf\\xff\\x00\\x0c\\xd7\\xd6\\xff\\x00\\\r\n\\x95\\xf4\\xd5\\xae\\xf9\\x10\\xae\\xb6\\x62\\x71\\x92\\x43\\x4e\\x15\\xf1\\x5f\\\r\n\\x5d\\xc3\\x1b\\x28\\xc8\\xaf\\xb1\\xd1\\xa4\\x90\\x48\\x96\\xa3\\x92\\x66\\xaa\\\r\n\\x8a\\xf7\\x8a\\x67\\x5e\\x5d\\x2c\\x43\\xf8\\x59\\x63\\x9f\\x35\\x37\\xc7\\x98\\\r\n\\x1a\\xf9\\xdb\\x4e\\xf3\\x10\\x25\\xe6\\xe7\\x23\\x74\\xda\\x28\\xac\\x5c\\x9b\\\r\n\\x9f\\x61\\xd5\\xd2\\x41\\xb7\\x6d\\xc5\\xb4\\x5e\\xa2\\x62\\x1c\\x73\\x1e\\x97\\\r\n\\x21\\x8e\\xcd\\x19\\xe5\\x6c\\xdd\\x6d\\x22\\x25\\xae\\x72\\xb6\\x52\\x01\\x71\\\r\n\\x62\\x35\\x1d\\x1d\\x18\\x33\\x72\\x12\\xf5\\x53\\x8b\\x5a\\x36\\x65\\x7b\\xfc\\\r\n\\x51\\xe6\\x6c\\xec\\x16\\xde\\x99\\x77\\xbe\\xa1\\xac\\x8f\\xe7\\x41\\x27\\xeb\\\r\n\\xdc\\xfd\\x6e\\x2e\\x3f\\x96\\xb8\\x6f\\x12\\x89\\xaf\\x0c\\x5c\\xca\\x7a\\x95\\\r\n\\x41\\x91\\xe5\\xca\\x01\\x6e\\x60\\xb6\\xc9\\x70\\x7a\\xf6\\xc5\\xf0\\xbe\\xb8\\\r\n\\x87\\x06\\x6a\\x49\\x9a\\x8e\\x7a\\x46\\x75\\xa8\\x88\\xf2\\x95\\x64\\x93\\x17\\\r\n\\x8e\\x61\\x27\\x9d\\x84\\x78\\xf9\\x37\\x17\\x04\\x1b\\x63\\xb4\\x94\\xbe\\x22\\\r\n\\x57\\xe8\\x03\\x32\\xc4\\x1f\\xe2\\x36\\xbd\\x87\\x62\\xba\\x79\\x9b\\x93\\x28\\\r\n\\x69\\xac\\xac\\x69\\xa1\\xe6\\xf2\\xc8\\xdf\\xa9\\x57\\x2c\\xbe\\xb9\\x1d\\xb5\\\r\n\\x1a\\x4a\\x96\\x8e\\x9d\\xae\\x39\\x6c\\x55\\xb3\\x2c\\x7a\\xae\\xd9\\x00\\x2d\\\r\n\\xb1\\x51\\x6b\\xaf\\xb1\\x37\\xd3\\xbc\\x2f\\xe7\\x40\\x25\\x5f\\x4b\\x95\\x04\\\r\n\\x3f\\xeb\\xb1\\xbe\\xbc\\x30\\x95\\x51\\x40\\xb1\\x96\\xed\\x12\\xa8\\x39\\x12\\\r\n\\xc6\\x41\\xd4\\x0a\\xde\\xf9\\x80\\x5f\\x6e\\x81\\x70\\x2d\\x25\\x2d\\x14\\xbc\\\r\n\\x89\\x67\\x77\\x69\\x7c\\x3b\\x4d\\x23\\xda\\x05\\x04\\x53\\xd9\\xda\\x43\\x2a\\\r\n\\x82\\xad\\x69\\x4a\\x82\\xec\\xf7\\x7f\\x24\\x61\\x69\\xe4\\xab\\x8b\\x39\\x21\\\r\n\\x84\\x05\\x2e\\xbb\\xa9\\x42\\x50\\x77\\xef\\x70\\x2f\\xd8\\x10\\x45\\xc7\\x7d\\\r\n\\x16\\xc7\\x28\\xe2\\x8f\\x1f\\xaa\\xfd\\x7f\\x23\\xfc\\xf5\\x09\\x54\\x7b\\xad\\\r\n\\xc3\\x91\\xe4\\xc6\\xfd\\x9b\\x7f\\xe5\\xf5\\x1a\\xe5\\xae\\x58\\xc8\\x7e\\xb7\\\r\n\\x53\\xe9\\xff\\x00\\x63\\x47\\x9a\\x7c\\x97\\xee\\x7f\\xee\\xfa\\x68\\xd3\\xc8\\\r\n\\xa7\\xe5\\xf6\\xf7\\xb6\\x83\\x45\\x13\\x3b\\xbd\\xd0\\xfc\\x26\\x0b\\xbe\\xde\\\r\n\\x66\\x29\\x6b\\x9b\\x75\\x03\\x7f\\x62\\x75\\xc4\\x2b\\x0a\\x54\\x4f\\x51\\x3b\\\r\n\\xa9\\x48\\x64\\x25\\x61\\xa7\\x53\\x1a\\xaa\\x86\\x6b\\x89\\xa7\\x07\\x1f\\x93\\\r\n\\x1b\\x0b\\x5f\\x23\\x7d\\x59\\x2a\\x23\\x5a\\x88\\xe6\\x22\\x0a\\x58\\x43\\x47\\\r\n\\x4d\\x24\\x58\\xa3\\x04\\x28\\x55\\x6d\\x2b\\x65\\x22\\x8c\\xba\\x9a\\xdf\\x5c\\\r\n\\xf5\\x55\\x2c\\xe2\\xa5\\x23\\x93\\x93\\x30\\xa5\\xf2\\x4f\\xcf\\x27\\x97\\x2c\\\r\n\\x18\\x37\\x97\\x06\\x28\\xcf\\x29\\x52\\x11\\x58\\xec\\xc6\\xc3\\x51\\xf3\\x61\\\r\n\\x72\\x8c\\xb8\\x88\\x97\\xb6\\xe4\\x0c\\x49\\x27\\x2b\\x1b\\x93\\x91\\x24\\xf6\\\r\n\\xdb\\x40\\x43\\x07\\x85\\xa7\\x1d\\x58\\x8b\\xb1\\x2c\\x3b\\xd8\\xb7\\x61\\xb5\\\r\n\\xfd\\xfb\\xef\\xa7\\x24\\xdd\\x1b\\xab\\xf9\\xef\\x61\\xaa\\x94\\x12\\x06\\xe4\\\r\n\\x18\\xcb\\xa7\\x6c\\x04\\x99\\x22\\x9f\\xae\\xfa\\x67\\x62\\x2c\\xd7\\x60\\xdd\\\r\n\\xbd\\x06\\xa2\\x92\\x53\\x8a\\xc8\\xf3\\x08\\x5d\\x41\\x2b\\xca\\x4c\\x46\\x6d\\\r\n\\x7e\\xd7\\x90\\xe2\\x7d\\xf1\\x24\\x77\\xd2\\x45\\x1b\\xa9\\x88\\xae\\xf8\\xef\\\r\n\\x7d\\xbf\\xa5\\xf5\\x79\\x90\\xad\\x47\\x0f\\x73\\xc6\\xf8\\x04\\x83\\xaa\\x49\\\r\n\\xbc\\x03\\x89\\x38\\x94\\x00\\x8d\\x8d\\xe1\\x31\\xba\\x45\\x72\\xec\\xd1\\x5f\\\r\n\\x6d\\x86\\x90\\xa8\\xe5\\xbc\\xa5\\x66\\x23\\xf8\\xa6\\xa7\\x54\\x71\\xfc\\x8d\\\r\n\\xb4\\xf5\\x92\\xb2\\x17\\x5a\\x79\\x1e\\x9e\\x91\\x58\\xf3\\x2a\\x02\\x24\\x8f\\\r\n\\x32\\xbf\\xf0\\xe0\\x15\\x90\\x03\\x7e\\xf9\\xed\\xb6\\xa8\\xea\\xf8\\xa4\\x94\\\r\n\\xf4\\x82\\x5a\\x45\\x79\\x72\\x92\\xe1\\x59\\xdd\\xfe\\x1a\\xc5\\x80\\x69\\x2c\\\r\n\\x00\\xc7\\xcb\\x7d\\xfb\\x01\\xa9\\x16\\x92\\x1e\\x5d\\x55\\x3c\\x32\\xc9\\xe2\\\r\n\\x55\\x4c\\x68\\x55\\x48\\xba\\xb7\\xa9\\x37\\xf4\\x2b\\xb6\\xf6\\xd3\\x71\\x2e\\\r\n\\x19\\x1e\\x54\\xb3\\x49\\xfe\\x98\\x08\\x59\\x79\\x15\\x28\\xab\\xc8\\x71\\x15\\\r\n\\xbe\\xe2\\x52\\xc5\\xae\\x76\\x0e\\x06\\xdd\\x46\\xd4\\x9c\\x72\\xa0\\x45\\xc3\\\r\n\\x38\\x5c\\x08\\x42\\xd4\\xd7\\xca\\x20\\x59\\x94\\xa3\\x40\\xb1\\xc5\\x11\\xbc\\\r\n\\xb2\\xdd\\x5f\\x3d\\x93\\x12\\x7d\\x4d\\xf5\\x55\\xc2\\xa0\\xe2\\x74\\x9c\\x42\\\r\n\\xab\\x83\\xd5\\xd5\\xd6\\x40\\xb0\\x99\\x03\\xc6\\xf5\\x29\\x34\\x51\\x89\\x23\\\r\n\\x92\\x38\\xd9\\x57\\x29\\x72\\xc9\\x73\\x07\\xb8\\x3a\\xa3\\xfb\\x39\\x4e\\xf1\\\r\n\\xcb\\x4f\\x04\\x49\\x35\\x7a\\xf5\\x2c\\x86\\x62\\x8f\\x0c\\x65\\xdb\\x6c\\x59\\\r\n\\xd7\\x9b\\x21\\x17\\xd9\\x65\\x5d\\x52\\x3a\\x43\\xcb\\x4c\\xe0\\x9d\\x77\\xc1\\\r\n\\x4a\\x96\\x42\\x5c\\x92\\x32\\x7d\\x8d\\x86\\xfb\\x9f\\x5f\\x79\\x26\\xbf\\xde\\\r\n\\xbb\\x49\\xff\\x00\\x3b\\x16\\xff\\x00\\x3d\\x3c\\x55\\x04\\xba\\x72\\x09\\xc7\\\r\n\\xd3\\xca\\x75\\x4e\\x23\\x24\\x02\\x18\\x1f\\xd0\\x0d\\x4c\\xb7\\xd8\\x4a\\xcb\\\r\n\\xff\\x00\\x0b\\x39\\x24\\x7e\\x57\\xd4\\x6d\\xbd\\xff\\x00\\x3f\\x6e\\xdf\\x4d\\\r\n\\x23\\x2f\\x76\\xef\\xfa\\xae\\xfa\\x84\\xb5\\xf6\\x05\\xb6\\x36\\xf5\\xff\\x00\\\r\n\\x0d\\xfb\\x6a\\x29\\x22\\x0c\\x0c\\x8c\\x4b\\x6f\\xb1\\x3d\\xaf\\xdb\\xdb\\x52\\\r\n\\x7f\\x0c\\xac\\xa3\\xe8\\x14\\x90\\x3f\\xc3\\x4c\\xde\\xb6\\xff\\x00\\x1d\\x15\\\r\n\\x3d\\x81\\xff\\x00\\xf6\\xe9\\x79\\x88\\x1b\\x22\\x41\\xfd\\x1b\\xd3\\xd8\\xe8\\\r\n\\x22\\x20\\x00\\xb2\\x03\\xff\\x00\\x32\\xea\\x9f\\x7e\\xd0\\x43\\xfd\\x16\\xdb\\\r\n\\xe8\\xfe\\x7f\\xe5\\xac\\xbd\\x43\\x6b\\x86\\x87\\x66\\x1c\\x8a\\xe8\\x59\\x31\\\r\n\\x36\\xdd\\xb3\\xce\\xe3\\x70\\xc1\\xc2\\xe2\\x6e\\x3c\\xa4\\xda\\xc7\\x7d\\x54\\\r\n\\x46\\x9b\\x2a\\xa4\\x16\\x1f\\xf9\\x92\\x4d\\x7f\\xa7\\xc8\\xa0\\x5f\\x70\\x36\\\r\n\\xd7\\x1c\\xcf\\xaf\\x2a\\xb4\\xa6\\x39\\x6f\\xf0\\x4d\\x43\\xa6\\x3f\\x4e\\x81\\\r\n\\x86\\xde\\x97\\xf5\\x24\\xea\\x56\\x69\\xf9\\x40\\xcc\\x69\\x84\\x74\\xeb\\xcb\\\r\n\\x8d\\x22\\x2c\\x2e\\xa8\\x3a\\x88\\xbf\\x7b\\xe4\\x4d\\xf5\\x55\\x07\\x2d\\x30\\\r\n\\x66\\x84\\xb1\\xc7\\xad\\xb9\\x54\\xa2\\x41\\x76\\xfa\\xb3\\xb1\\x23\\xb6\\xfb\\\r\n\\x5b\\x50\\xa5\\xba\\x44\\x3f\\xe2\\x97\\xd7\\x12\\x8b\\xbc\\x69\\x93\\x2a\\xb6\\\r\n\\xe2\\xe3\\x7f\\xe4\\x6d\\xb8\\xf5\\x04\\xeb\\x90\\x2e\\x51\\x58\\xd8\\xb5\\x8b\\\r\n\\xd9\\x8b\\x9c\\x72\\xb0\\xb8\\x5c\\x16\\xd7\\xb9\\xdb\\x72\\x4e\\x8b\\x5b\\x73\\\r\n\\x32\\x27\\xe9\\x8b\\x9f\\xf1\\x1a\\x16\\xfc\\x67\\xfc\\x34\\x25\\x51\\x66\\x7e\\\r\n\\x59\\x6f\\x62\\x6d\\xde\\xc7\\xde\\xfa\\x95\\x19\\xba\\x50\\x24\\x40\\x7f\\x0a\\\r\n\\x02\\xab\\x7f\\xad\\x80\\xdf\\x52\\x0c\\x37\\x5c\\x26\\x56\\xbf\\x52\\xb8\\xb7\\\r\n\\x63\\xf8\\x4e\\x6c\\x08\\xf5\\x1b\\x68\\x54\\xa0\\x44\\x95\\x2a\\xca\\x82\\xa3\\\r\n\\x62\\x37\\x04\\x30\\xbe\\xf9\\x0f\\x30\\xed\\xac\\xb1\\x55\\xbc\\x61\\xac\\xa2\\\r\n\\xc2\\xe4\\x5f\\xb6\\x9d\\xfb\\xb1\\x94\\x8e\\xc3\\xf1\\x11\\xe9\\x6e\\xde\\x97\\\r\n\\xd6\\x6c\\xbd\\x43\\x71\\xf9\\xfe\\xb7\\xfc\\xf5\\x7f\\x61\\x71\\xa9\\xcd\\xff\\\r\n\\x00\\x17\\xf9\\xea\\xab\\xa8\\xf4\\xa1\\x23\\xf3\\x1a\\x78\\xeb\\x0f\\x39\\x16\\\r\n\\x38\\x02\\xab\\x79\\x46\\x55\\x31\\x29\\x20\\x76\\xbe\\x24\\xad\\xfd\\x8f\\xbd\\\r\n\\x8e\\xab\\x61\\x96\\x9d\\x6c\\x93\\x54\\x98\\xd8\\x6c\\xf1\\xd8\\xed\\x8b\\xda\\\r\n\\xfb\\x7b\\x6e\\x3d\\xf5\\x51\\x49\\x3b\\x4b\\xca\\x84\\x34\\xa9\\x81\\x40\\xd9\\\r\n\\x53\\x44\\xef\\x18\\x25\\x91\\x85\\xaf\\xe6\\xb0\\x04\\xfa\\x11\\xa6\\xec\\x73\\\r\n\\x91\\x63\\x21\\xba\\x86\\x27\\x11\\xb0\\x3d\\xbd\\xee\\x2d\\xbe\\xfa\\x6c\\xe3\\\r\n\\x4f\\x87\\x23\\x63\\x61\\xec\\x45\\xbb\\x93\\xa3\\xb7\\xa1\\xd2\\xc8\\xbe\\x6e\\\r\n\\xdf\\x4b\\x0d\\x7d\\xa8\\x91\\xee\\x24\\x8a\\x80\\x48\\x8e\\x84\\xab\\x07\\x82\\\r\n\\x55\\x96\\x26\\xfc\\xd5\\xf5\\x28\\x91\\xfc\\xab\\xb1\\x17\\xbe\\xe5\\x6f\\xeb\\\r\n\\xaa\\x00\\xdf\\x27\\x0c\\x4a\\x85\\x6f\\x98\\x3b\\x56\\x30\\x6d\\xfd\\x55\\x83\\\r\n\\x6e\\xa7\\xe8\\x45\\x8e\\xfa\\x7e\\xe3\\xc9\\xb0\\xed\\xd4\\xc0\\x1f\\xf1\\x3a\\\r\n\\x8a\\xab\\xe2\\xbc\\x94\\x4d\\x4f\\x3d\\x30\\x91\\x91\\x96\\x27\\xc0\\xa3\\xe3\\\r\n\\xf0\\xc3\\xda\\x65\\x66\\x13\\x02\\xfd\\x77\\x3a\\xab\\x46\\x46\\x29\\x4d\\x50\\\r\n\\x56\\x15\\xbe\\xca\\xab\\xe5\\x1d\\xbe\\x5f\\x4d\\x47\\x53\\x83\\x73\\xa1\\xa1\\\r\n\\x95\\x51\\xf2\\xb7\\x4c\\xb4\\xac\\x8e\\x0a\\x80\\x10\\xdc\\x1f\\xc3\\x7d\\x70\\\r\n\\x68\\xc5\\xd9\\x69\\xf8\\x54\\x72\\x26\\x66\\xf7\\x68\\x3c\\x74\\x89\\x9f\\x6c\\\r\n\\xba\\xd4\\x13\\xda\\xfa\\xe2\\x51\\xb3\\x17\\x09\\xc3\\x6a\\x18\\x17\\xdd\\xae\\\r\n\\x5b\\x7b\\xb7\\xaf\\xeb\\x7d\\x51\\xd2\\x9b\\x35\\x3f\\x14\\xe1\\xe9\\xe3\\x21\\\r\n\\x61\\x74\\x90\\xfc\\x45\\xca\\xde\\x8d\\x68\\xd7\\x7d\\xf5\\x2d\\x1d\\x56\\x4d\\\r\n\\x4f\\x49\\x50\\x79\\x68\\x1d\\x86\\xd1\\x22\\xb0\\x0c\\x6f\\xe5\\x27\\xba\\x8c\\\r\n\\x47\\xb5\\xb5\\xc4\\x6a\\x23\\x8d\\x44\\xab\\x4c\\x8b\\x95\\xbb\\xa7\\x36\\x49\\\r\n\\x42\\x37\\xba\\xab\\x79\\x6f\\xb8\\x53\\x8d\\xec\\x16\\xc7\\x8c\\x49\\x1a\\x8a\\\r\n\\xc9\\x78\\x84\\xf0\\xc8\\x50\\x5a\\x37\\x4a\\x77\\xc6\\x2b\\xc7\\xb8\\xc9\\x56\\\r\n\\xc2\\xe3\\xb8\\x03\\x6d\\x50\\xca\\x7c\\xe6\\x96\\x8c\\x9f\\xcc\\x82\\x0f\\xff\\\r\n\\x00\\x88\\xfd\\x75\\x1e\\xff\\x00\\x22\\x7f\\xf8\\x8d\\x7f\\xff\\xc4\\x00\\x25\\\r\n\\x10\\x01\\x01\\x00\\x03\\x01\\x01\\x00\\x03\\x00\\x02\\x02\\x03\\x01\\x00\\x00\\\r\n\\x00\\x01\\x11\\x00\\x21\\x31\\x41\\x51\\x61\\x71\\x81\\x91\\xa1\\xb1\\xd1\\xc1\\\r\n\\xf0\\xf1\\xe1\\xff\\xda\\x00\\x08\\x01\\x01\\x00\\x01\\x3f\\x21\\x68\\xd7\\xa4\\\r\n\\xa1\\x2d\\x83\\x58\\xed\\x92\\x8d\\x61\\xad\\x5f\\xa2\\x0d\\x7a\\x10\\xbf\\x04\\\r\n\\x7e\\xf2\\x56\\x71\\xa0\\xd2\\x94\\xd0\\x2d\\xe5\\x82\\x18\\x6a\\x61\\x3d\\xa3\\\r\n\\x16\\x98\\xd5\\xa4\\xaa\\x45\\x28\\x14\\x0a\\x8b\\x16\\x2b\\x68\\xdd\\x67\\x6e\\\r\n\\x49\\xc3\\xb1\\xe0\\xa0\\x7e\\x34\\xbc\\xff\\x00\\xba\\x89\\x48\\x72\\x9d\\x5b\\\r\n\\x21\\x50\\xd2\\xea\\xdf\\x05\\x9c\\xc0\\x44\\x8b\\x6d\\x78\\x58\\x06\\x8c\\x25\\\r\n\\x64\\xf7\\x00\\x1e\\x43\\xaa\\x75\\x31\\xc2\\xd1\\x36\\x98\\x78\\x24\\x75\\x43\\\r\n\\x7b\\x24\\xe0\\x08\\x85\\x0b\\x18\\x5f\\x76\\x4d\\xe0\\x49\\x26\\x9d\\xf4\\xb7\\\r\n\\xa2\\xb2\\xc0\\x52\\x4e\\x0d\\x84\\x2e\\xf9\\x6d\\x05\\x08\\x38\\x8e\\x62\\xbd\\\r\n\\x30\\x87\\xc2\\x92\\x44\\x04\\x14\\x2d\\x20\\x34\\xb2\\x20\\xd4\\x2a\\x29\\x82\\\r\n\\xb2\\x10\\xa3\\xa4\\xf0\\x3a\\x3e\\xee\\x2f\\x9b\\xe0\\x4c\\x53\\xf9\\xd3\\x25\\\r\n\\x39\\x29\\x3f\\xb6\\xc0\\x06\\x84\\x31\\xfc\\xb0\\x9a\\x01\\xa8\\x71\\xef\\x35\\\r\n\\xbe\\x1e\\x9a\\x08\\xb9\\x30\\xd8\\xd3\\xb1\\x92\\x3f\\xe5\\x24\\xf4\\xeb\\x3d\\\r\n\\x86\\x18\\xed\\xb6\\x8d\\xc6\\x04\\xe0\\xb7\\x4e\\x7a\\x8d\\x6b\\x71\\xce\\xd3\\\r\n\\x64\\xc2\\xd6\\x5f\\xee\\x77\\x58\\x29\\x14\\xbc\\xbf\\x0c\\x3a\\x6e\\x0b\\x57\\\r\n\\x4f\\x74\\x01\\xe4\\x85\\x92\\x67\\x22\\x20\\x50\\xda\\x6e\\x85\\x1e\\x7c\\x47\\\r\n\\x2f\\x0c\\x26\\x28\\x8e\\x8d\\x93\\x7d\\xde\\xf4\\xea\\x98\\xa4\\x40\\x04\\xad\\\r\n\\x9d\\xbc\\xf5\\x1e\\x62\\x46\\xc1\\x81\\x2d\\xd0\\x30\\x7d\\xdf\\x5c\\x64\\xcf\\\r\n\\x05\\x17\\x69\\xc6\\x66\\xe4\\x75\\x80\\x67\\x36\\xac\\x80\\x07\\x8e\\x40\\x10\\\r\n\\x34\\xc0\\x39\\x3f\\xd0\\x62\\xd0\\xc3\\x44\\xdb\\x58\\x6f\\x06\\xb0\\xa8\\x0a\\\r\n\\x30\\x80\\xed\\x26\\x51\\x72\\x9a\\x98\\x2f\\xbd\\x89\\xdb\\x82\\xf0\\xea\\x42\\\r\n\\xf6\\x23\\x96\\x90\\xec\\x4d\\x1c\\xc0\\x2f\\x4f\\x66\\x50\\x30\\xc4\\x17\\x46\\\r\n\\x8d\\xe3\\x84\\xdd\\x35\\xab\\x07\\x67\\x91\\x22\\x2a\\xf1\\x90\\x09\\x39\\x5d\\\r\n\\xe8\\xa4\\x90\\x22\\x0c\\x76\\x03\\x81\\xe8\\x07\\x4f\\x10\\xad\\x74\\x64\\x4e\\\r\n\\x88\\xeb\\xd9\\x27\\xe7\\x9f\\xc8\\x7e\\x92\\x3b\\xbf\\xdd\\x02\\xa1\\x27\\x41\\\r\n\\x9b\\xfe\\xe3\\x4b\\x70\\x22\\xb3\\x1e\\x8d\\xa1\\x37\\x49\\x4d\\x29\\x32\\x4d\\\r\n\\x57\\x7a\\x36\\x51\\xe6\\x2b\\x1c\\xe6\\xd4\\x91\\x45\\x4c\\x1d\\x9b\\xa9\\x28\\\r\n\\x55\\x86\\x24\\xd8\\x7b\\xdd\\x1d\\x30\\x11\\x14\\x66\\x5a\\x30\\xb4\\xfc\\x34\\\r\n\\x5e\\x0d\\xdd\\x28\\xdd\\x62\\x68\\x60\\x80\\x20\\x18\\x7e\\xf6\\xf4\\x4b\\x49\\\r\n\\x65\\x93\\xa2\\x00\\x8a\\xe5\\x45\\x09\\xe0\\xb5\\xec\\x47\\x2c\\x56\\x2c\\x4b\\\r\n\\x0e\\x80\\xdf\\x36\\xd7\\x7a\\xd1\\xe6\\x1a\\x45\\x0e\\x0e\\xc1\\xff\\x00\\x11\\\r\n\\x27\\xea\\xc0\\x2d\\x39\\x00\\x7b\\x26\\xe2\\xf4\\xda\\x99\\x26\\x7f\\x96\\x65\\\r\n\\xd8\\xe3\\x88\\x26\\xdc\\x96\\x4d\\x09\\x40\\x9a\\x1a\\xde\\x99\\x00\\x98\\x09\\\r\n\\x76\\x7d\\x21\\x36\\xa7\\x41\\xb7\\x28\\x51\\x3c\\x4c\\x24\\xc1\\x70\\x4a\\x57\\\r\n\\x65\\x0a\\x5c\\xce\\x7a\\xfd\\xb5\\x35\\xd4\\x1e\\x2d\\x95\\x89\\x93\\x8f\\x98\\\r\n\\x1f\\xe9\\x8c\\x60\\x12\\x14\\x4d\\x2a\\x5f\\x15\\x27\\xd2\\xce\\xe6\\x8a\\x0b\\\r\n\\xab\\x7a\\x8f\\xbe\\x01\\x6d\\x69\\x81\\xb0\\x5f\\x61\\x9d\\xf0\\xa6\\xb4\\x96\\\r\n\\x99\\x9a\\x3a\\x25\\x55\\x49\\x16\\x64\\x89\\x1a\\x24\\xcd\\x4a\\xaa\\x9c\\xdf\\\r\n\\xba\\xe7\\xeb\\xce\\xae\\xb0\\x7d\\xfb\\xe5\\x41\\x5d\\xfa\\x4d\\xe8\\xb3\\xe5\\\r\n\\xc7\\xcb\\x5d\\x21\\xa5\\xd3\\xaf\\x4b\\xe8\\xdb\\x02\\x6c\\x88\\x96\\x28\\xb4\\\r\n\\xa2\\x81\\xa1\\x21\\x65\\x20\\x1c\\x2b\\x3e\\xc4\\xc3\\xbf\\xe9\\xcb\\x24\\x88\\\r\n\\xa6\\x14\\xc2\\x09\\xe0\\x9a\\xcb\\x4f\\xf0\\x16\\xa4\\x46\\xa2\\x59\\x47\\x66\\\r\n\\x96\\x56\\x2d\\x6a\\x15\\x4c\\xec\\xff\\x00\\x38\\x2b\\xd4\\xad\\x04\\xad\\x33\\\r\n\\x21\\x21\\xa2\\x24\\x47\\x84\\x41\\x30\\x0f\\x71\\x12\\x05\\x60\\xc0\\xd9\\x88\\\r\n\\x3e\\x39\\x04\\x7e\\x76\\x8b\\x21\\x9a\\x34\\x35\\x06\\xf4\\x38\\xf1\\x07\\x53\\\r\n\\x11\\xb7\\xd3\\xb2\\x4f\\x07\\xf3\\xc0\\xb2\\xe1\\x97\\xf0\\xb6\\x21\\x5c\\x18\\\r\n\\xda\\x34\\x56\\x4a\\xb3\\xe5\\x2c\\xa6\\xba\\xea\\x5b\\x0b\\x6c\\xd7\\xf1\\x29\\\r\n\\x09\\xdc\\xf9\\xe8\\x5a\\x3c\\x32\\x31\\xd1\\x99\\x1b\\xf2\\x24\\xf0\\x90\\xc0\\\r\n\\xa2\\x33\\x51\\x7f\\xd6\\xfa\\x1a\\x66\\xb0\\xfa\\x3d\\x5c\\x3d\\x62\\xc8\\x35\\\r\n\\x79\\xec\\x3b\\xfd\\xe1\\xe1\\x5c\\x1a\\x6f\\xdb\\x27\\x79\\xd3\\xb5\\x9b\\xf0\\\r\n\\x08\\xc7\\x22\\x56\\x42\\x10\\xcc\\x73\\x5b\\xd2\\x44\\x81\\xfc\\x86\\xf2\\x68\\\r\n\\x5c\\x7a\\xb0\\x58\\x10\\xd8\\x91\\xd1\\xbc\\x68\\xc6\\x22\\x2a\\x80\\x54\\xd2\\\r\n\\x40\\x45\\xc5\\x85\\x0a\\x6a\\x9a\\x68\\x01\\xa6\\x42\\x3c\\xd1\\x5e\\x77\\xb4\\\r\n\\x5b\\x25\\x55\\xc1\\xf1\\xe6\\xa1\\x2f\\x92\\x51\\x2a\\x52\\x01\\x55\\xec\\xc3\\\r\n\\x46\\x77\\x32\\x35\\x07\\x2b\\xaf\\xd8\\xe9\\xae\\x5c\\xb3\\xed\\xcf\\x55\\x73\\\r\n\\xb3\\x50\\xd3\\x0a\\x3e\\xa6\\x0a\\x5d\\xd2\\xd1\\x21\\x01\\x81\\x41\\xfd\\xfa\\\r\n\\x11\\x13\\x49\\xa2\\x46\\x97\\x1d\\x06\\xbb\\xac\\xc5\\xd8\\xe9\\x73\\x5f\\x53\\\r\n\\x24\\x96\\xa0\\x16\\xba\\x4a\\x83\\xf8\\x08\\xb9\\x7d\\xec\\x1e\\x8a\\xfa\\xde\\\r\n\\x55\\xf8\\xb9\\xb8\\xf5\\x59\\xda\\x77\\x0f\\x07\\x8b\\x82\\xf8\\xd1\\xae\\x15\\\r\n\\xa5\\xe0\\xf0\\x71\\x77\\xd5\\xa5\\xb5\\x53\\x4c\\x53\\x88\\x27\\x07\\xee\\x9a\\\r\n\\xac\\x79\\xdf\\x60\\x4c\\x12\\x8d\\x30\\xac\\x13\\x8c\\xb3\\x7e\\x9d\\xa2\\x38\\\r\n\\xa5\\xd0\\x4f\\x81\\x4a\\x42\\x48\\x00\\xc0\\x9a\\x31\\x10\\xc7\\xd6\\x4c\\x31\\\r\n\\x83\\x61\\xfe\\x98\\x14\\x84\\xe9\\xa8\\xb4\\xfe\\x33\\xea\\xe0\\x32\\x01\\xda\\\r\n\\x49\\x97\\xe1\\xee\\x8e\\xec\\x5c\\xdf\\x24\\x0d\\xdd\\x21\\xf6\\xed\\xdb\\x2c\\\r\n\\x19\\x9a\\x36\\x10\\x6f\\xd2\\x1e\\x79\\x9e\\x20\\x95\\xfd\\xa9\\x47\\x5a\\x82\\\r\n\\xf0\\xd9\\x8d\\xb1\\xf2\\xd9\\xd4\\x2b\\xe9\\x2f\\x17\\x78\\xf0\\x9a\\x92\\x0c\\\r\n\\x20\\x4f\\x88\\xa7\\xf0\\x29\\x18\\x4c\\x10\\x0b\\x87\\x31\\xc0\\xd8\\x3a\\x7a\\\r\n\\xd0\\x0b\\x59\\xad\\xad\\xd0\\xd9\\xb6\\x1f\\x39\\x92\\x65\\x4c\\xa5\\x16\\x82\\\r\n\\x9d\\x20\\x5d\\x0d\\xa1\\xb2\\x74\\xf6\\x66\\xb0\\xf4\\x67\\x34\\x7c\\x1d\\x7e\\\r\n\\x53\\x02\\x1c\\xca\\x71\\xc2\\x6f\\x91\\xe2\\xab\\xcc\\x29\\x29\\x21\\xf8\\x87\\\r\n\\x32\\x84\\x16\\xc0\\x98\\xd5\\x2d\\x3f\\x0f\\x84\\xb3\\xb1\\x53\\x54\\xb3\\x05\\\r\n\\x19\\x25\\x88\\x69\\x04\\xe8\\xa5\\x30\\x3a\\x08\\x2d\\x33\\xeb\\x41\\x6f\\xfd\\\r\n\\x07\\x48\\x80\\x38\\x0e\\x62\\x00\\x61\\x3a\\xe0\\x07\\x54\\x68\\x5d\\xce\\xb6\\\r\n\\x56\\xb6\\x51\\x7d\\x6a\\x25\\x17\\x0d\\xb8\\x25\\x3a\\x40\\xaa\\xe2\\x55\\xeb\\\r\n\\x98\\x8e\\x5b\\xbd\\xa5\\xee\\xd2\\xc7\\x84\\xca\\xcf\\xb3\\x98\\x0d\\x7f\\xfb\\\r\n\\x50\\xc6\\xb1\\xaf\\x30\\xa5\\x9c\\x04\\x42\\xd2\\x87\\x5c\\x5c\\x0b\\x0f\\xe0\\\r\n\\xe0\\x48\\xdf\\xbd\\x1b\\x29\\x00\\xad\\x3e\\xd9\\x8e\\x58\\x09\\x2c\\x2f\\x03\\\r\n\\x82\\x70\\x8e\\xb2\\x14\\x43\\x94\\xd0\\x68\\xd0\\x95\\x06\\x7f\\xce\\x4d\\x50\\\r\n\\x5b\\x72\\xec\\x83\\x35\\x5c\\xd4\\x84\\xa8\\x03\\x61\\x00\\xe2\\x82\\x9d\\x12\\\r\n\\xed\\xee\\x4a\\x52\\x9e\\xd7\\x04\\x1d\\x0d\\x6e\\x80\\xa8\\xb5\\x9e\\x5c\\x6c\\\r\n\\x59\\x64\\x3a\\xcc\\x68\\xa9\\x0d\\x22\\x73\\x19\\x4f\\xf9\\xdd\\xbe\\x9e\\x49\\\r\n\\x4b\\x84\\x7e\\x94\\x54\\x69\\x66\\x87\\xf1\\x88\\x48\\x6e\\x92\\x89\\x33\\x2a\\\r\n\\xdf\\x9a\\x40\\x5d\\xe3\\xba\\x18\\x4c\\xf4\\xa3\\x7c\\xd1\\x6a\\x10\\x12\\x83\\\r\n\\xec\\x54\\x59\\x35\\xd6\\x9b\\x98\\x2e\\x55\\x08\\x1e\\x75\\x33\\x84\\xd5\\x62\\\r\n\\xc5\\xa5\\x88\\xd3\\x33\\xee\\xc4\\x0c\\x60\\xcb\\x64\\xa1\\xe3\\x73\\x70\\x35\\\r\n\\x56\\xee\\x57\\x38\\x10\\xf3\\xfd\\x28\\xff\\x00\\x60\\x91\\x47\\x0b\\x45\\x0a\\\r\n\\xe5\\xf3\\x72\\xf3\\xc5\\x8b\\x7e\\x50\\xd8\\x52\\xf1\\x57\\x5c\\x62\\xb3\\xd2\\\r\n\\xf6\\x19\\x8c\\x01\\xa2\\xb8\\x46\\xc7\\x26\\x5b\\x80\\x59\\x76\\x4d\\x20\\x17\\\r\n\\x53\\xf3\\x21\\x84\\x23\\x58\\x1c\\x9e\\xc4\\x8b\\x45\\x28\\xae\\x0a\\xf3\\xec\\\r\n\\xe8\\x50\\x42\\x0f\\x10\\x26\\x75\\x0d\\x1d\\x75\\xc6\\x43\\xb8\\x5d\\xcd\\xcc\\\r\n\\x42\\xcc\\x43\\xd7\\x5a\\x33\\xf0\\x80\\x85\\x8d\\xfb\\x60\\x03\\xc6\\xf4\\x97\\\r\n\\xea\\x95\\xdc\\xc5\\xec\\x7a\\x40\\xfc\\x2c\\x81\\x35\\xc1\\xcc\\x31\\x8a\\x58\\\r\n\\x58\\x82\\x26\\xf5\\xd6\\xa6\\xe6\\x2d\\xdb\\x69\\x6d\\x76\\x28\\xff\\x00\\xd7\\\r\n\\xe6\\xe6\\x08\\xfe\\xad\\x26\\x7f\\x47\\x5b\\xda\\x26\\x49\\xf0\\x1b\\x06\\x61\\\r\n\\x74\\xd4\\x07\\x72\\x40\\xc1\\x53\\x57\\x2e\\x81\\x00\\x45\\x45\\x63\\xac\\x06\\\r\n\\x8b\\xdf\\x5d\\xa6\\xca\\x04\\x38\\xc8\\x05\\x44\\x0c\\x38\\xbc\\x74\\xd0\\x9f\\\r\n\\x8c\\xb0\\xea\\x05\\x75\\x3c\\x45\\x80\\xa4\\xc5\\x4b\\xcf\\x87\\x5c\\x17\\x96\\\r\n\\x55\\x03\\xdc\\x98\\xd4\\x88\\x31\\x91\\x01\\xfc\\xc3\\x90\\x11\\xbe\\xa9\\xa7\\\r\n\\x14\\xa1\\x61\\xcd\\x28\\x98\\xf5\\x92\\x8e\\x9a\\x3d\\xcb\\xa0\\x36\\xee\\x00\\\r\n\\xe9\\x5c\\xae\\x07\\xe4\\x0f\\x76\\x18\\xbc\\xec\\x9f\\x99\\xb6\\xac\\xd6\\x72\\\r\n\\xea\\xd6\\x37\\x6d\\xca\\x5b\\x83\\x76\\x04\\x48\\x80\\x3b\\x13\\x83\\xa2\\x21\\\r\n\\xa6\\x43\\x33\\x35\\xc1\\x44\\x0a\\xaa\\x1e\\xc7\\x80\\x96\\x1f\\xd7\\x46\\xe7\\\r\n\\x97\\xc3\\x80\\x06\\x92\\xcd\\x53\\x6d\\x24\\x3f\\xaf\\x47\\x6c\\x2f\\xa3\\x2d\\\r\n\\x4f\\x2b\\xa6\\xc7\\x79\\xa9\\xfa\\x0b\\xcd\\xe4\\x27\\x1e\\x10\\xb0\\xce\\xaf\\\r\n\\xf1\\x56\\x71\\xc8\\xa2\\x61\\x0b\\xd2\\xf6\\xcb\\xb7\\x81\\x8f\\xcb\\xb2\\xca\\\r\n\\xe4\\x32\\x0e\\xe7\\x57\\xf6\\xc0\\x7c\\x2e\\xe7\\x30\\x21\\x6f\\x03\\x62\\x13\\\r\n\\x44\\x63\\x80\\xd2\\xf4\\xaa\\x03\\x1a\\x75\\xa1\\x7d\\x7a\\xfe\\x02\\xc2\\x49\\\r\n\\x80\\x9c\\x30\\x87\\x88\\xd8\\x64\\x80\\x77\\x88\\x7e\\xc1\\x2d\\x3a\\xdf\\xb8\\\r\n\\xbb\\x22\\x62\\xbc\\xd3\\xf2\\x3f\\xe3\\x38\\x96\\x01\\x0b\\xb1\\xdf\\xee\\xbf\\\r\n\\xe1\\x89\\xdf\\x46\\x0a\\x53\\x28\\xcd\\x9c\\x24\\x0b\\x81\\x06\\x9d\\x47\\x4b\\\r\n\\x3b\\x05\\x04\\x05\\x42\\xd4\\x84\\xe6\\x00\\x24\\xec\\x86\\x3b\\x28\\x8e\\x37\\\r\n\\xb3\\x4e\\xbd\\x50\\xa0\\x1b\\xc6\\x68\\x31\\x14\\x56\\x85\\x51\\xee\\x9b\\x6a\\\r\n\\x01\\xaa\\x37\\x89\\x7c\\xcc\\x10\\xcf\\x98\\x37\\x55\\xe4\\x2b\\x58\\xd8\\xd0\\\r\n\\xd5\\xae\\xf3\\x9d\\x0e\\x5a\\x0e\\x1c\\x61\\xca\\xf8\\x9f\\x69\\xd4\\xcd\\x05\\\r\n\\x5e\\xe1\\xdd\\x58\\xd3\\xf6\\x7d\\x8d\\xa6\\x37\\xe6\\x35\\x8c\\x85\\x48\\x5e\\\r\n\\xb1\\x62\\xce\\x47\\x26\\x18\\x6b\\x2a\\xab\\x74\\xb2\\xcd\\xf1\\xad\\x8d\\x7a\\\r\n\\x41\\x2c\\x68\\x44\\xe0\\xd8\\x61\\xa4\\x38\\xd7\\x9b\\x28\\x98\\x2d\\xec\\x26\\\r\n\\xed\\x04\\x36\\xc3\\x59\\x98\\xfa\\x86\\x75\\xce\\x20\\x59\\x1e\\x9c\\x56\\x21\\\r\n\\x98\\x4c\\x6e\\x33\\x27\\x77\\x92\\x16\\xbc\\x60\\xf6\\x9d\\x16\\x26\\x05\\xc3\\\r\n\\x72\\xe7\\xcc\\x76\\x55\\xf0\\xc9\\x56\\x96\\xd2\\xab\\x3b\\x9e\\x84\\x85\\xfb\\\r\n\\xcb\\xac\\x96\\x8e\\x62\\x3b\\xdc\\x24\\x49\\x47\\x68\\x18\\x90\\x4d\\x63\\xb6\\\r\n\\x29\\x0e\\xe1\\x64\\x4e\\x63\\x01\\x70\\x37\\x09\\x4b\\x4c\\x37\\xbc\\x48\\x2f\\\r\n\\x06\\x60\\x90\\x96\\xa0\\x83\\x4a\\x34\\x31\\xd5\\x42\\x3e\\x69\\x44\\x66\\xa7\\\r\n\\x7e\\xdd\\x38\\x6d\\x42\\x55\\x46\\x08\\xff\\x00\\x24\\x64\\x38\\xe7\\x60\\x32\\\r\n\\x75\\x9c\\xae\\xcd\\xd6\\xc8\\x81\\x05\\x4c\\x4d\\x30\\x4c\\xb4\\xc6\\x21\\x51\\\r\n\\x68\\xc9\\x2a\\x52\\x4f\\x0a\\xd0\\x08\\x7d\\x28\\x5c\\xaf\\x4d\\x2b\\x7a\\x6e\\\r\n\\x88\\xd8\\xbf\\xf3\\x96\\x3c\\xca\\xb7\\x8e\\x6a\\x8c\\xd6\\xa9\\xa2\\x9f\\x19\\\r\n\\x25\\xb0\\xd0\\x3a\\x3e\\x9e\\x8a\\x78\\x9c\\xaf\\x8d\\x62\\xca\\xf6\\xf8\\xf1\\\r\n\\x0e\\x8b\\x93\\x4f\\x0a\\xa6\\x55\\x58\\x0e\\xf9\\x15\\x3d\\x16\\x26\\x2c\\x17\\\r\n\\x20\\x61\\xe6\\x64\\x23\\xf3\\xbe\\xce\\x4f\\x0a\\xcb\\x14\\x13\\x9d\\x61\\xb0\\\r\n\\x36\\x05\\xbc\\x15\\x83\\x5c\\xbe\\xe8\\x15\\xdf\\xfe\\xc4\\xc2\\xf9\\x4a\\xb7\\\r\n\\x9e\\xd0\\x5c\\xd6\\xa0\\x1c\\x04\\x02\\x9e\\x4a\\x77\\x82\\x8b\\x67\\x2c\\x1c\\\r\n\\x6f\\x85\\x9b\\x48\\xe8\\x98\\x82\\xcc\\x16\\x08\\x03\\x69\\x4e\\x12\\x5b\\xea\\\r\n\\xf1\\x55\\x19\\x0c\\x01\\x1c\\xac\\x58\\x24\\xac\\x38\\xdc\\xd0\\x63\\x39\\x93\\\r\n\\x1b\\x21\\x55\\x9b\\xdc\\x84\\x26\\x8c\\x08\\x48\\x04\\x0b\\x38\\x9a\\x8c\\xea\\\r\n\\xf1\\xf2\\x0f\\x35\\x15\\xa2\\x50\\x59\\xb1\\x01\\x80\\x8f\\x71\\x54\\x64\\x8f\\\r\n\\xdd\\x6d\\xab\\xc5\\x85\\x11\\xdf\\xf7\\xc1\\xf0\\xc5\\x0b\\x06\\x61\\x13\\x9d\\\r\n\\x08\\x9d\\x1e\\xc3\\xa2\\x7d\\xd2\\xc4\\xab\\x14\\x76\\x4f\\x64\\x25\\xdb\\x47\\\r\n\\xe4\\x5c\\x09\\xa3\\xc5\\x06\\xa7\\x41\\x04\\x18\\x94\\x85\\xd8\\x38\\x51\\xa2\\\r\n\\xd5\\x2f\\xa1\\x1e\\x5d\\x20\\x61\\x6f\\xb9\\x65\\x4b\\x52\\x2b\\x65\\x4a\\x80\\\r\n\\x6f\\x0d\\xda\\xa3\\x1a\\xce\\xd6\\xcd\\x84\\x80\\x34\\x66\\x1f\\x5b\\xf6\\x78\\\r\n\\xb7\\xe1\\x36\\x33\\xd3\\xd5\\xe9\\x01\\xe7\\x1d\\x93\\x4e\\xdb\\x3e\\x7c\\xc9\\\r\n\\xf8\\xc4\\x18\\x0a\\x4b\\x7b\\x2c\\xa0\\xbe\\xe1\\xc3\\xb4\\x9d\\xe7\\x77\\x61\\\r\n\\xf6\\x0c\\x1b\\x32\\x95\\xa5\\x77\\xb1\\x78\\xfb\\x66\\x89\\xe3\\x30\\x70\\x5c\\\r\n\\x68\\x36\\x0d\\xe0\\xfa\\x9b\\x78\\x21\\xdc\\x86\\x0b\\x15\\x33\\x44\\x8d\\x15\\\r\n\\x4c\\x6c\\x83\\x52\\xa0\\x16\\x9a\\x03\\xfd\\x67\\xe4\\xc2\\xd4\\x3e\\x98\\x66\\\r\n\\xe7\\x7b\\x02\\x93\\x89\\x98\\x9c\\xd4\\x20\\xe9\\xaf\\xce\\x0b\\xa5\\x04\\xeb\\\r\n\\xb8\\x8f\\x04\\x5e\\x3a\\x38\\x65\\x69\\x8a\\x30\\x8d\\x3d\\xa5\\x25\\xa0\\x9b\\\r\n\\x4f\\xa1\\xd5\\x86\\x25\\xc3\\xe2\\xf1\\xca\\x57\\xd0\\x0d\\x7f\\x19\\xf8\\x55\\\r\n\\xc4\\x2c\\xae\\x8d\\x0e\\xe0\\x08\\xf3\\x15\\x93\\x0f\\x62\\xac\\x0e\\x2a\\x76\\\r\n\\x7e\\x13\\x1e\\x9a\\x24\\xd6\\x47\\x0f\\x42\\x3c\\xd4\\x91\\xf0\\xa9\\xd9\\xd5\\\r\n\\x12\\xa0\\xe6\\x1c\\xcb\\x41\\xba\\x6c\\xae\\x95\\x8d\\x51\\x9a\\xb8\\x11\\xff\\\r\n\\x00\\xc7\\x54\\x87\\x0b\\x11\\x98\\x46\\xf9\\xf0\\x00\\x6c\\xd1\\x33\\xb7\\xee\\\r\n\\x87\\x2b\\xb4\\x14\\xa8\\xbb\\x9a\\x02\\xb3\\xb9\\xe0\\x84\\x76\\x91\\x3b\\x84\\\r\n\\x52\\x56\\x60\\x9a\\x8d\\x82\\x90\\xfb\\xa5\\xd6\\x3e\\x20\\x64\\x77\\x07\\x05\\\r\n\\x2f\\x1a\\x5b\\x0e\\x99\\x12\\x63\\x48\\x2e\\xcc\\xf0\\xa8\\xb2\\x62\\x48\\x6c\\\r\n\\x65\\xba\\x8c\\x85\\x4d\\xb4\\xaf\\x50\\xda\\x39\\xea\\x38\\xcc\\xdf\\xee\\x4a\\\r\n\\x5e\\x64\\xcd\\xeb\\x54\\x62\\x08\\xce\\xc6\\xd6\\xd5\\x26\\x5e\\x6b\\x20\\xcc\\\r\n\\x97\\x5c\\x83\\xc9\\xee\\x3e\\x26\\x1a\\x16\\x0e\\x30\\xf0\\xec\\x1c\\x9d\\x2e\\\r\n\\x51\\x2c\\x94\\xad\\x54\\xe8\\x03\\x20\\xc3\\x79\\x90\\xe4\\x3f\\x64\\x46\\xaa\\\r\n\\x54\\x61\\x20\\x51\\x88\\x21\\xb1\\x01\\xf2\\xe4\\x52\\x01\\xa0\\xc5\\x00\\x68\\\r\n\\x2b\\x07\\xac\\x25\\xcf\\xa1\\x4f\\xa1\\xaa\\xed\\x50\\x72\\xb6\\xfb\\x7e\\x89\\\r\n\\x90\\x29\\xde\\x43\\xc3\\x80\\xf5\\xd5\\xcf\\x45\\xe9\\x52\\xd1\\xb0\\x6f\\x0a\\\r\n\\x30\\x1f\\xa7\\x0b\\xba\\x34\\x53\\x49\\xdf\\xdc\\x5c\\x9d\\xbe\\x20\\xcd\\x20\\\r\n\\x17\\x7d\\x73\\xa5\\x56\\xd0\\x09\\x04\\x20\\x3b\\x4f\\x6f\\x2e\\xcc\\x15\\xc9\\\r\n\\xce\\x89\\x4a\\xa0\\x19\\x8b\\xda\\x86\\x1c\\xed\\xb6\\x4e\\x86\\xc8\\x51\\x68\\\r\n\\x77\\x02\\x63\\xd4\\x9f\\x3a\\xda\\x93\\xd5\\xb9\\x5a\\xea\\xda\\xd0\\xb8\\x10\\\r\n\\xdd\\x23\\xb0\\x32\\x54\\x02\\x23\\xc0\\xd0\\x1f\\x20\\xbf\\x16\\x73\\x27\\xe3\\\r\n\\xb6\\xe0\\xd0\\x91\\xba\\xa6\\x8f\\xdf\\x1c\\xeb\\xe0\\x30\\x55\\x12\\x66\\x80\\\r\n\\x12\\x0a\\xd9\\xd3\\x24\\xc3\\xd4\\x47\\x48\\x06\\x0d\\x5c\\x8b\\xce\\x89\\x0c\\\r\n\\x81\\x36\\xf0\\x20\\xee\\x62\\xc3\\x46\\x98\\x76\\x14\\x30\\xad\\x28\\x2e\\x3c\\\r\n\\x0e\\xa4\\x91\\x24\\x21\\x6d\\xac\\xa5\\x2a\\x09\\x46\\x60\\xb5\\x03\\x58\\x89\\\r\n\\x88\\xd1\\x8b\\xb5\\x4b\\xea\\xf5\\xe3\\x90\\x90\\x2d\\x21\\x52\\x00\\x5f\\xb5\\\r\n\\x58\\x0d\\xa6\\x35\\xd7\\xcd\\x69\\x0c\\xdb\\x01\\x1f\\xfb\\x02\\x8e\\x05\\x19\\\r\n\\x7f\\x59\\x65\\xbf\\x6a\\x88\\x17\\x25\\xc9\\x5a\\xa8\\x28\\xd0\\x92\\x24\\x69\\\r\n\\x4f\\x4c\\x3a\\x28\\x43\\x3c\\xa4\\x29\\xb1\\xfb\\xf7\\x12\\x1d\\xc3\\xf1\\x0a\\\r\n\\x11\\xbd\\x69\\xff\\x00\\xc3\\x6b\\xa2\\xf4\\xb4\\x70\\x9a\\x43\\x57\\xc5\\xc3\\\r\n\\x2e\\xf5\\x98\\xc8\\x5b\\x6b\\x7a\\x4a\\x32\\x2d\\x64\\x22\\xe7\\xf4\\x6c\\xdd\\\r\n\\x44\\x44\\x03\\xa6\\x18\\xb2\\xc0\\x26\\x68\\x86\\x88\\x31\\x10\\x6d\\x84\\xd9\\\r\n\\x9a\\x97\\x73\\x29\\x42\\x02\\xca\\xab\\x58\\x06\\xa1\\xdd\\xb4\\x72\\xe8\\x9c\\\r\n\\xd1\\xba\\x9d\\x39\\x0b\\x45\\xd5\\x58\\x1e\\x51\\xea\\x6a\\xfd\\x09\\x8e\\x9f\\\r\n\\x6e\\x06\\x8a\\x3d\\xaf\\xa1\\x52\\xec\\xb1\\xb3\\xa1\\xf4\\x03\\x46\\xe2\\x21\\\r\n\\x4e\\xda\\xd0\\xae\\x87\\xec\\x0b\\x42\\x74\\x62\\x3e\\x40\\xb0\\x2b\\xca\\x1b\\\r\n\\xd4\\x9d\\x3c\\x7d\\x6b\\x9c\\x92\\x96\\x62\\xd9\\x91\\x63\\x32\\x7e\\xdb\\x11\\\r\n\\x5e\\x7d\\xa9\\x35\\x96\\x30\\x43\\x4f\\x7b\\x8b\\x6b\\xe0\\x37\\xe8\\x23\\x73\\\r\n\\xd7\\x48\\x6d\\x91\\xdb\\xcd\\xa0\\x82\\xc0\\xaa\\xdf\\x7e\\xba\\x19\\x40\\xc1\\\r\n\\x16\\xf3\\x48\\x6c\\x26\\xa2\\x29\\x6e\\xc2\\xb2\\xc8\\xd1\\x02\\x7b\\x1c\\x4c\\\r\n\\xd7\\x65\\xb0\\xa3\\x1f\\xdf\\x68\\x10\\x62\\x8e\\xc1\\x50\\x98\\x60\\xa1\\xb5\\\r\n\\xd5\\xc2\\x0b\\xce\\xc1\\xe7\\x13\\x1f\\xd9\\x39\\xb5\\x4f\\x0c\\x45\\x94\\x7d\\\r\n\\xa2\\x4f\\x12\\x82\\xc0\\xac\\x45\\x96\\x1e\\x2e\\x8d\\x4b\\xca\\x01\\x28\\x8b\\\r\n\\x52\\x18\\x66\\x0e\\xbf\\xc0\\x8f\\x4c\\xec\\xf0\\x68\\xe1\\xb1\\xcb\\x83\\xe1\\\r\n\\xd7\\xc1\\x12\\x87\\x06\\xb6\\xb3\\xdc\\x25\\x1c\\x02\\x18\\x1d\\x35\\xc0\\x28\\\r\n\\x32\\x6b\\xf9\\xd6\\x4e\\xd1\\x28\\x38\\xe6\\x9d\\xd6\\x13\\xc3\\x9d\\x22\\xcb\\\r\n\\x5f\\x03\\x54\\x1c\\x60\\x45\\x7d\\x39\\x3f\\x0b\\xc1\\x96\\xe8\\x17\\x9e\\xa0\\\r\n\\x60\\x93\\x02\\x3f\\x58\\x7f\\xe8\\x80\\x3c\\x55\\x80\\x2a\\x5c\\x0e\\x12\\x2c\\\r\n\\x1a\\xe5\\xb5\\xd3\\x68\\xe2\\x60\\x4f\\x51\\x87\\xcb\\x52\\xfd\\x68\\x83\\xa3\\\r\n\\x8a\\x63\\x62\\x3a\\x2c\\x33\\x34\\x58\\xe2\\x6d\\x21\\xbf\\xc9\\x6b\\x29\\x1a\\\r\n\\x20\\x1c\\x95\\xd5\\x3f\\xcb\\xe6\\xa4\\x07\\x21\\x14\\x17\\xe8\\xd2\\x86\\xbd\\\r\n\\xb6\\x9e\\x1c\\x45\\xe5\\xc4\\x6b\\xa4\\x14\\xc9\\x8d\\x7d\\x35\\x46\\x96\\xe7\\\r\n\\x52\\x92\\x25\\xae\\xb6\\x3d\\x5e\\xed\\xf9\\x8d\\x59\\x0b\\xbb\\x42\\x5c\\xfc\\\r\n\\xbb\\x84\\xfa\\x10\\x20\\xb4\\x28\\xae\\xa2\\x8f\\xd0\\xd8\\x9c\\x4b\\xea\\x4a\\\r\n\\xfc\\xb9\\x12\\x24\\x76\\xd7\\x86\\xff\\x00\\x57\\x35\\x13\\xb6\\xe0\\x10\\x2c\\\r\n\\xca\\x7c\\xbc\\x5b\\x4e\\x5b\\x8a\\xeb\\x10\\x1d\\xb1\\xf1\\x90\\x0f\\x2a\\xe5\\\r\n\\x3a\\xa0\\x21\\x10\\xe4\\x41\\xf9\\x5a\\x25\\xdd\\xae\\xf0\\xc4\\xa4\\x00\\xc7\\\r\n\\xcb\\x40\\x3b\\x54\\x35\\xa9\\x4d\\x34\\x91\\xcb\\x00\\x8f\\x4d\\xa2\\xca\\xb4\\\r\n\\xdf\\x94\\xbb\\x0d\\xa1\\xdc\\x22\\x08\\x60\\x04\\x12\\x09\\xe3\\x85\\x40\\xf3\\\r\n\\x68\\x94\\x24\\x76\\x1a\\x90\\x05\\x02\\x43\\x67\\x41\\x66\\xda\\x91\\xb4\\xd7\\\r\n\\x38\\xb9\\xd5\\x9a\\x6d\\x02\\x74\\x21\\x44\\x3d\\xb6\\x0f\\x02\\x61\\xf5\\xa3\\\r\n\\xbc\\x07\\x92\\xa6\\x93\\x10\\x24\\x5b\\x65\\xd4\\xbe\\x54\\x6a\\x6b\\x1f\\x80\\\r\n\\x00\\x3f\\xf6\\x7e\\x70\\xd9\\x84\\x7a\\x8e\\x8d\\xa4\\x3c\\xd8\\xfd\\x77\\x06\\\r\n\\x05\\x13\\xc2\\xb6\\xd8\\xe8\\x0a\\x07\\x43\\x7d\\x0b\\x48\\x80\\x88\\x7a\\x8c\\\r\n\\x9b\\x31\\xfa\\x20\\x15\\xc1\\xaf\\x77\\x83\\xc8\\x96\\x14\\x0d\\xcd\\xc4\\xcc\\\r\n\\xdc\\xf8\\x76\\x3b\\xc3\\x4c\\x30\\x27\\x92\\xab\\x50\\xd9\\x71\\x77\\xdc\\xaf\\\r\n\\x55\\x1e\\x55\\x9e\\x61\\x03\\x8c\\xd0\\x69\\x9b\\xf9\\x6b\\x6d\\xf9\\x81\\xe1\\\r\n\\xea\\xd1\\x00\\x99\\x30\\x21\\xc9\\x09\\x46\\xe9\\x45\\x45\\xa1\\xae\\x46\\xdb\\\r\n\\x00\\x31\\xc5\\x47\\x6c\\x85\\xa8\\xc4\\x12\\xeb\\x40\\xdb\\xd8\\x86\\xab\\x7b\\\r\n\\x29\\x50\\x58\\xc5\\x3f\\xd4\\x42\\x08\\x69\\xd4\\x3c\\x43\\x45\\x3e\\x51\\x6c\\\r\n\\xfd\\x4a\\x9b\\x8f\\x0c\\x87\\x30\\x51\\x44\\x8b\\x35\\x61\\x05\\xda\\xf4\\x70\\\r\n\\x5d\\x7e\\x0b\\x1a\\xd7\\xa7\\xc4\\x6e\\xd9\\xee\\x5c\\x0e\\xae\\xcd\\x1b\\x61\\\r\n\\xa8\\xf1\\xbf\\x6f\\x72\\x8b\\x6e\\x0f\\xdb\\x48\\x3d\\x05\\x1a\\xd4\\x61\\x2a\\\r\n\\x69\\x1f\\x99\\xcc\\xf6\\x90\\x9a\\xe5\\x29\\x11\\x47\\x72\\xd7\\xef\\xc8\\xb7\\\r\n\\x6d\\xc0\\xce\\x8c\\xfb\\x1b\\x91\\x17\\x46\\x3b\\x08\\x78\\xf0\\x91\\x02\\xaa\\\r\n\\x11\\xa3\\x52\\xb6\\x7c\\x88\\x1c\\x89\\x30\\x56\\xc5\\x07\\x11\\xb4\\xd1\\x75\\\r\n\\x59\\x53\\x39\\x3a\\x0c\\x99\\xd0\\x03\\x46\\xd3\\xc7\\xd0\\x24\\x87\\x1f\\x37\\\r\n\\x8e\\x4b\\xb3\\x08\\x11\\xfd\\x70\\x1c\\xd8\\xc7\\x39\\x16\\x69\\x36\\x63\\x72\\\r\n\\x51\\xc2\\x2e\\x85\\x48\\x3e\\xe3\\x5a\\xd1\\x0f\\xbb\\x16\\xb4\\xe8\\x03\\x36\\\r\n\\xca\\x53\\xb3\\x24\\x5c\\x7e\\x7e\\x76\\x12\\xd4\\x0e\\x98\\x88\\x3a\\xac\\x01\\\r\n\\xfd\\xaa\\xc4\\x35\\x37\\x34\\xae\\x6a\\xd1\\xd2\\x7b\\xc6\\xc3\\xed\\xa0\\x1c\\\r\n\\x15\\x87\\xa5\\x1a\\x9b\\xbe\\xa1\\x2b\\x42\\x97\\x58\\x43\\x68\\x91\\xb1\\x14\\\r\n\\x3a\\x43\\xdc\\x57\\x79\\x5c\\xdc\\x12\\x85\\x8e\\x01\\xa5\\x27\\xe4\\x38\\xb3\\\r\n\\xc8\\xd4\\x6a\\x8c\\x97\\xd1\\x00\\x22\\x6d\\xf6\\xe6\\xd0\\xee\\x47\\x81\\x41\\\r\n\\x16\\x29\\x63\\x2c\\x22\\x1f\\xa4\\x33\\x68\\x8a\\x22\\xa2\\x45\\x07\\x27\\xf2\\\r\n\\x8e\\x0a\\xe4\\x64\\xf3\\x1c\\x4c\\xc8\\x52\\x22\\xba\\x68\\x68\\x98\\x55\\xff\\\r\n\\x00\\x11\\xb1\\x5a\\x42\\x1f\\xae\\x2a\\x28\\x21\\x67\\x99\\xa5\\xbd\\x59\\xdf\\\r\n\\x4c\\xf5\\xf4\\xbb\\x5e\\x89\\xb6\\x9d\\xb5\\x17\\x40\\xcd\\x7f\\x49\\xb5\\x17\\\r\n\\xea\\x3b\\x80\\x23\\xee\\x4a\\xc1\\x71\\xd5\\x59\\x67\\xb4\\x50\\x5a\\xa0\\x38\\\r\n\\x28\\x1d\\x47\\xba\\xd1\\xe5\\x4c\\x3c\\x7e\\x40\\xf9\\x97\\x68\\xd4\\x8b\\x59\\\r\n\\xab\\x9a\\xd3\\xf6\\xbb\\x34\\x28\\x4d\\x9e\\xbb\\xc3\\x01\\xa8\\x94\\x2d\\x0f\\\r\n\\xc1\\xa8\\xd0\\x98\\x90\\x03\\xb4\\x3d\\x80\\xd2\\x7a\\x75\\xae\\xd2\\xa5\\x45\\\r\n\\xe8\\x86\\x52\\x30\\x26\\x03\\x6e\\x4f\\x9a\\x74\\x01\\x53\\xf8\\xeb\\x26\\xe3\\\r\n\\x65\\x28\\x88\\x49\\x40\\xef\\x61\\x0c\\xcf\\x28\\x23\\x3a\\x12\\x30\\x42\\xa2\\\r\n\\xc3\\xd0\\xca\\x91\\xec\\x25\\x5c\\xbc\\xbf\\xfb\\xac\\x6d\\x8c\\x6f\\x1d\\xae\\\r\n\\x91\\x86\\x44\\x8b\\xb6\\x98\\x30\\xcd\\x3f\\xa9\\x90\\x22\\x5b\\x6b\\x50\\xed\\\r\n\\x1c\\x5a\\x5f\\x53\\xa8\\x1d\\x6c\\xa3\\x49\\xdc\\xb8\\xd9\\x08\\x7d\\x82\\x53\\\r\n\\xae\\xfd\\x5d\\x4c\\x30\\x6c\\xa1\\x5e\\x28\\x8a\\x94\\x5f\\xd0\\xd6\\xed\\x0e\\\r\n\\x0d\\x7c\\xe0\\x42\\x3a\\x39\\x05\\x1c\\xe9\\x6f\\xca\\x1e\\xe4\\xc8\\x15\\x71\\\r\n\\xdf\\xed\\xb6\\x16\\xee\\x00\\x0c\\xec\\x7c\\x65\\x6a\\xe8\\x4f\\xd9\\x3d\\x4d\\\r\n\\x49\\xa0\\x94\\x26\\x13\\xff\\x00\\xa9\\x23\\x46\\xbd\\x0d\\x1e\\x0b\\xf3\\x35\\\r\n\\xe3\\xb0\\x41\\x42\\xc8\\x08\\xf1\\xc6\\xc2\\xea\\xe3\\x24\\x7b\\x0c\\x7a\\xd7\\\r\n\\x09\\x76\\x9d\\x7b\\x9a\\x36\\x50\\x2a\\x3b\\xcf\\x43\\xb2\\x6d\\x2f\\x70\\x29\\\r\n\\x6f\\x08\\x49\\xf8\\x07\\x00\\x22\\xe9\\x30\\x08\\x98\\x1e\\x32\\x5a\\xc6\\x1d\\\r\n\\xc9\\xd9\\x03\\x36\\x39\\x44\\x02\\xb5\\xaf\\xd3\\xbb\\x5b\\x9c\\x93\\xd8\\x00\\\r\n\\x4e\\x3f\\xe1\\xc0\\xe4\\xd6\\x36\\xbe\\x08\\x5e\\xa0\\xba\\x67\\x6d\\xef\\xf7\\\r\n\\x01\\xd5\\xff\\x00\\x46\\xf7\\xf9\\x1a\\x3d\\x9f\\x70\\x41\\x88\\x1c\\x80\\xe8\\\r\n\\x8b\\x39\\x03\\xfb\\xc6\\x52\\x59\\xa2\\x6f\\x84\\x41\\x3c\\x20\\xfa\\xdc\\xba\\\r\n\\x18\\xcb\\x84\\x90\\x56\\xae\\xc0\\x9a\\xa4\\xb5\\xdd\\x3b\\x21\\x44\\xaa\\x8c\\\r\n\\x59\\x15\\x23\\xf9\\x0b\\x68\\xe5\\x33\\x92\\xb7\\x2d\\x82\\x99\\x1b\\xe5\\x3b\\\r\n\\x14\\x60\\x5b\\xa4\\x2e\\x20\\x9e\\x8d\\x97\\xf9\\xb1\\x21\\xe9\\xdf\\x8e\\x51\\\r\n\\x5a\\xf5\\xe3\\x81\\x09\\x35\\x88\\xc4\\xb0\\x80\\x43\\xd5\\x0c\\x58\\x88\\x06\\\r\n\\x91\\x3a\\x0c\\x8d\\x87\\x02\\x55\\xa2\\xa0\\x2b\\x68\\x70\\xe7\\x30\\xc7\\xc0\\\r\n\\x89\\x90\\xee\\xdc\\xa3\\xc5\\x91\\x4a\\x36\\xe0\\x69\\x68\\xbd\\x6c\\xd3\\x7f\\\r\n\\x18\\x3b\\xcd\\x56\\x58\\x57\\x0e\\x52\\x1b\\xdb\\xc9\\xa8\\x3e\\x8c\\xdd\\x01\\\r\n\\xe1\\x07\\x4a\\x2f\\x71\\x4b\\x7f\\x4b\\xad\\x6b\\x73\\xec\\x0c\\x38\\xe8\\x77\\\r\n\\x12\\x3a\\x7f\\x59\\xbe\\x65\\x8a\\x4b\\x04\\x77\\xa7\\x51\\x73\\xf3\\x8f\\x3a\\\r\n\\x27\\x4d\\x8a\\x59\\xac\\x32\\x83\\x7a\\xfc\\xb9\\xbb\\x30\\x31\\x40\\x40\\x87\\\r\n\\x65\\xc0\\x45\\x3a\\x5f\\x5a\\xe2\\xc6\\xda\\xc8\\xfc\\x35\\xc5\\xa8\\x08\\xe4\\\r\n\\xee\\xc1\\x13\\x62\\x9c\\xc1\\x7b\\xb2\\xc0\\x98\\x74\\x46\\xdd\\x24\\x81\\x8d\\\r\n\\x49\\x85\\x34\\x1e\\x70\\x26\\x02\\xca\\xcf\\x86\\x62\\x44\\xce\\xf1\\x2a\\x57\\\r\n\\x10\\x02\\x91\\x6f\\x2c\\x71\\xa2\\x46\\xdb\\x62\\x53\\xc6\\xa8\\x92\\xb2\\xba\\\r\n\\x5d\\xf9\\x7c\\x53\\x3a\\x5b\\x1b\\xd5\\x0c\\xf4\\x0b\\xc9\\xff\\x00\\x82\\xd1\\\r\n\\x1e\\x18\\x26\\x2d\\x7f\\xca\\xcf\\xce\\x3e\\x04\\x5b\\x7f\\xc3\\xd5\\x4b\\x55\\\r\n\\xd1\\x69\\x1e\\xee\\xa5\\x96\\x47\\x77\\xf8\\x9a\\x4c\\x31\\x43\\xc7\\xca\\x19\\\r\n\\x46\\xe5\\x5b\\x71\\x44\\xe0\\x84\\xe0\\x4b\\x83\\xbd\\x54\\x64\\x95\\x16\\x00\\\r\n\\x53\\x36\\x09\\x6c\\x15\\x34\\x76\\x88\\x93\\x98\\x12\\x82\\xb4\\x52\\x6d\\x57\\\r\n\\xf6\\x44\\x68\\xe5\\x36\\xa7\\x3a\\xe1\\xff\\x00\\xb9\\xaf\\x58\\xf4\\xde\\x57\\\r\n\\xec\\x00\\xf4\\xb8\\x23\\xf0\\xc2\\xe9\\x53\\x10\\xd7\\x54\\x87\\x69\\x63\\x88\\\r\n\\x09\\x44\\x57\\xf0\\xf6\\xff\\x00\\x38\\x1a\\xff\\x00\\xb3\\xcc\\x75\\x16\\xdb\\\r\n\\x17\\x55\\x21\\x26\\xeb\\xa8\\x6e\\x18\\x3f\\x7e\\xaa\\x29\\x74\\xcc\\x54\\x74\\\r\n\\xdb\\xe1\\x92\\x46\\x96\\x3e\\xf8\\x25\\x87\\x74\\x62\\x15\\x2c\\xf0\\x73\\xfe\\\r\n\\xae\\x80\\xa4\\x69\\x15\\x91\\xdc\\x23\\x37\\xb6\\xaf\\x27\\xfa\\x56\\x25\\xd0\\\r\n\\x95\\xde\\x3c\\x07\\xca\\x60\\x87\\xab\\x03\\x35\\x12\\xef\\x6d\\x75\\x2d\\x33\\\r\n\\x94\\x1a\\x98\\x48\\x2b\\x8f\\xb4\\x17\\xbe\\x24\\x64\\x1d\\xae\\x33\\x6d\\x17\\\r\n\\xff\\x00\\x30\\x03\\x20\\x40\\xc1\\xdd\\xa6\\x0e\\xb6\\x0d\\x1c\\x2f\\x03\\xf1\\\r\n\\x90\\xe0\\x9b\\x50\\xdd\\x43\\xab\\xc5\\xa7\\x8d\\xb9\\x55\\x34\\x4c\\xa8\\xf9\\\r\n\\x5c\\x0f\\x5d\\x45\\x40\\x57\\x7b\\x95\\x6d\\x95\\x10\\x51\\x40\\xd2\\x0d\\xf0\\\r\n\\x58\\xdd\\xb9\\x34\\xd0\\x21\\x5d\\x7c\\x35\\x8d\\x1a\\x0a\\x7b\\x55\\x14\\xcf\\\r\n\\xc6\\xfb\\x8b\\x60\\x41\\xed\\xe9\\x02\\xd4\\xb4\\x0f\\xc1\\x83\\xae\\x41\\x3d\\\r\n\\x0f\\xbf\\x84\\xe3\\x7f\\x3f\\x44\\xe7\\xbe\\x98\\xdf\\xcd\\x85\\xf7\\xa7\\xfb\\\r\n\\xc0\\xc9\\x6b\\x89\\x75\\xeb\\xf7\\x7e\\xe7\\xe3\\x22\\x33\\xec\\x0b\\xd6\\x71\\\r\n\\xd9\\xa0\\xf5\\xfc\\x8c\\x81\\x1c\\x18\\x1a\\xdd\\x37\\xfb\\xbc\\xcd\\xc0\\x3b\\\r\n\\xd9\\x95\\x92\\xde\\x1f\\x61\\x33\\xd9\\x8d\\xcb\\xc7\\xed\\x07\\xe4\\xb2\\x32\\\r\n\\x3c\\x04\\x90\\x53\\x00\\x3d\\xa4\\xce\\x4a\\xbf\\x30\\x15\\xe6\\xda\\x0e\\xb7\\\r\n\\x43\\x1b\\x2e\\x9e\\x21\\x11\\x92\\x2e\\xdc\\x07\\x61\\x8c\\x02\\xfa\\x22\\x0e\\\r\n\\xf7\\x62\\xc7\\x50\\x51\\x0d\\x71\\xb2\\x2a\\x37\\x6e\\xb3\\xa3\\xb4\\x0e\\x77\\\r\n\\xf6\\x3b\\x38\\x15\\x30\\x95\\x23\\xc7\\x6a\\x89\\x29\\x34\\x9b\\x00\\x52\\x4a\\\r\n\\x97\\x05\\xef\\x49\\x69\\xb5\\x6d\\x78\\xe8\\x18\\x9a\\x3b\\xa1\\x7d\\x89\\x83\\\r\n\\xbd\\x04\\x34\\xac\\x56\\xa8\\x26\\x2b\\x88\\x48\\x92\\xa1\\x09\\x4a\\x65\\x26\\\r\n\\xa8\\x95\\x12\\x3c\\x52\\x24\\x24\\x57\\x4e\\x69\\x52\\x1e\\xd9\\x51\\x77\\xf9\\\r\n\\xed\\x66\\xf2\\x9f\\x6a\\x56\\x78\\x0c\\xdf\\x1d\\x5f\\xde\\x0d\\xba\\x0e\\xf0\\\r\n\\x98\\xe0\\x37\\x16\\xd1\\x8c\\x42\\x57\\x12\\xd9\\x7b\\x26\\xdb\\x30\\x6d\\x93\\\r\n\\xb0\\x2a\\x93\\x4c\\xd7\\xe0\\x70\\x07\\x96\\x1d\\x7c\\xea\\x0c\\x84\\xee\\x1e\\\r\n\\xec\\xa6\\xfa\\x1e\\x89\\x5d\\xa0\\xe9\\x67\\x8b\\x2a\\x47\\x3c\\x9c\\xe0\\x27\\\r\n\\xf7\\xde\\xc8\\x32\\xcd\\x17\\x42\\xb1\\x6c\\xf7\\xc0\\x6a\\x8a\\x5d\\x30\\xea\\\r\n\\x0b\\xfb\\xac\\x47\\x05\\x00\\x54\\x96\\x38\\x2a\\x2c\\x8f\\x0e\\x60\\xab\\x46\\\r\n\\x81\\xb8\\x2f\\xb0\\x23\\x30\\x02\\x16\\x70\\x10\\x7f\\x80\\xa6\\x7b\\x3e\\x3b\\\r\n\\x52\\x5f\\xd0\\x48\\x38\\x70\\x0e\\xb3\\x39\\x04\\x81\\x76\\x82\\x84\\x60\\x2d\\\r\n\\xdd\\x33\\x03\\xe9\\x45\\x60\\x26\\x34\\xa4\\x35\\x12\\x54\\xc4\\x16\\x50\\x43\\\r\n\\x78\\xb8\\x4d\\x2e\\x92\\x4b\\xa5\\x30\\x0e\\x54\\xa9\\x51\\x7a\\x6f\\x10\\x0b\\\r\n\\x2d\\xc5\\xb4\\xe7\\x76\\x68\\x49\\xc3\\xa2\\x34\\x90\\xd1\\xd0\\x23\\x04\\x30\\\r\n\\xc0\\x0c\\x26\\x83\\x90\\x68\\x3e\\x61\\x8c\\xb9\\xc6\\x47\\xc2\\x5f\\xde\\x8e\\\r\n\\x8f\\x32\\x8f\\xd0\\x1c\\x9c\\x58\\x97\\x5b\\x54\\xdb\\x9a\\x87\\x28\\xad\\x1a\\\r\n\\x22\\x7d\\x22\\x2d\\xfc\\xe7\\x75\\x15\\x9a\\xdd\\x20\\x41\\xba\\xef\\x97\\x1b\\\r\n\\xb0\\x90\\x9b\\x16\\xe9\\x20\\x62\\xe0\\x77\\xef\\x5c\\x77\\x10\\x69\\x43\\x82\\\r\n\\xa2\\x9d\\x8b\\xcc\\x0b\\x70\\x14\\xbb\\xc5\\xcf\\xc1\\xdd\\xad\\x98\\x7f\\xee\\\r\n\\x03\\xa8\\x5d\\x24\\x66\\x9b\\x80\\x70\\x37\\xdc\\x31\\x61\\x01\\x1a\\x2a\\xa3\\\r\n\\x8e\\x8c\\x6b\\x62\\xd0\\xf7\\xee\\xd0\\x28\\xab\\x09\\x74\\x39\\x26\\xcd\\x73\\\r\n\\x75\\x74\\x32\\x4c\\xd9\\xac\\x0b\\x57\\x01\\x31\\xad\\x35\\xb0\\x1e\\xb8\\x9b\\\r\n\\x4a\\xe7\\x39\\x03\\xb9\\xe3\\x7c\\x0a\\xba\\x30\\x76\\x86\\xb4\\x10\\x66\\x00\\\r\n\\xb5\\xe4\\x91\\xbb\\x8b\\x07\\x6f\\x6d\\x26\\xe2\\xea\\x91\\x11\\xd6\\xed\\x30\\\r\n\\xee\\x83\\xb7\\xd9\\x4b\\x34\\x72\\x64\\xd3\\xe9\\x11\\xfe\\x04\\x30\\xaa\\x9a\\\r\n\\x26\\xb2\\x71\\xa8\\x79\\xbf\\xdf\\x49\\xad\\x2c\\xa3\\x0e\\x6a\\x41\\xe9\\x10\\\r\n\\x84\\xba\\x05\\xa4\\x14\\x3d\\x1a\\x84\\x58\\xa5\\x45\\xad\\x73\\xf8\\x62\\x60\\\r\n\\x80\\x0d\\xb8\\xa7\\xbd\\x50\\x5d\\x95\\x85\\x8a\\x1d\\xfa\\x0e\\x89\\x33\\x2c\\\r\n\\x53\\x39\\x74\\x08\\x7e\\x0c\\x75\\x41\\x0e\\x8d\\x94\\x72\\x34\\x70\\x97\\xc8\\\r\n\\x04\\x77\\x26\\xff\\x00\\x06\\x05\\xd0\\xbd\\x05\\x8e\\x91\\xc3\\xf0\\xfd\\x18\\\r\n\\x57\\x43\\xb4\\x0e\\x75\\xf8\\xa0\\xc0\\xce\\x8c\\xaa\\x8e\\xf0\\xff\\x00\\x61\\\r\n\\x30\\x94\\x11\\xc0\\x3e\\x75\\x88\\xc1\\x02\\x31\\xb0\\x51\\x1b\\x86\\x49\\x64\\\r\n\\x31\\xbb\\x0d\\x3f\\x50\\x28\\x6b\\x1f\\x41\\xca\\xaa\\x98\\xf0\\x39\\xef\\x12\\\r\n\\x8b\\x30\\xbe\\x0d\\x1e\\x05\\x0a\\x44\\x29\\xc1\\x02\\xe9\\xfa\\x1b\\x6b\\xea\\\r\n\\x32\\xaf\\x61\\xc9\\x70\\xb0\\xed\\xa4\\x16\\x17\\x7b\\xfe\\xcd\\x33\\xf1\\x97\\\r\n\\x38\\xb6\\xef\\x49\\x35\\xec\\x62\\x1a\\x0f\\xfa\\x00\\x1a\\xcd\\x89\\x58\\x6e\\\r\n\\x68\\x65\\x3f\\x89\\x3a\\xf7\\xe0\\x2e\\xcf\\x01\\x27\\xf6\\x7b\\x5e\\xef\\xec\\\r\n\\xdf\\xcc\\xc7\\x3d\\x5a\\x14\\xfd\\x2e\\x8d\\xb4\\x4f\\x35\\x9e\\x24\\xc3\\x77\\\r\n\\xfe\\x21\\xe4\\x8b\\xd6\\x45\\x24\\x64\\x8c\\x48\\x06\\x36\\x84\\x31\\x42\\x73\\\r\n\\xef\\x27\\xfb\\x8c\\x08\\x3c\\x5c\\xe8\\xba\\xf8\\x83\\x05\\x6d\\x12\\x4d\\x23\\\r\n\\x8a\\xd3\\x64\\xf5\\x90\\xc5\\xce\\x98\\xbb\\x1c\\x9f\\xb1\\x3b\\x71\\xe9\\x55\\\r\n\\xc9\\x3c\\x1c\\xbd\\x45\\x52\\x7d\\x29\\x22\\xee\\x0c\\x06\\xc8\\xb9\\xd0\\x89\\\r\n\\x88\\x2a\\x27\\x84\\x2a\\x7d\\x0f\\x16\\x94\\xa2\\x92\\xea\\x8c\\xe2\\x8d\\x80\\\r\n\\x29\\xc8\\x70\\x9c\\xc5\\xbc\\x0c\\x1a\\x84\\xd9\\xb4\\x06\\x95\\x4f\\xf6\\xfc\\\r\n\\x5f\\xc8\\x2e\\xe6\\x75\\x38\\x1a\\x95\\x11\\x95\\xe0\\x0c\\x34\\x00\\x68\\x19\\\r\n\\xc0\\x22\\x08\\xc2\\xe8\\x48\\x85\\xaa\\xdb\\xf2\\x6e\\x84\\xfd\\xea\\x4c\\x9a\\\r\n\\x4e\\x68\\x36\\xb3\\x48\\x91\\x6c\\x91\\xf4\\x32\\xe0\\xba\\x58\\xd3\\x08\\x78\\\r\n\\x88\\x0e\\x30\\x1c\\xa3\\x61\\x92\\xf6\\x28\\x9b\\x0c\\x81\\x8d\\x91\\x24\\xa8\\\r\n\\x99\\x13\\x0b\\x85\\x26\\xa6\\x00\\x06\\xb8\\xfd\\x2c\\xe2\\x2e\\x89\\xb4\\x06\\\r\n\\x99\\x39\\xbc\\xe5\\x36\\x18\\xa1\\xf8\\xea\\x02\\x6e\\xa8\\xc8\\xc0\\xe9\\x9b\\\r\n\\x75\\x21\\x18\\x45\\xe3\\x22\\xc3\\xf4\\x8f\\x31\\x71\\xc1\\x72\\x48\\x41\\xf6\\\r\n\\xca\\x2b\\x7c\\xb0\\x83\\xa3\\x5d\\x31\\x0e\\xb1\\x1d\\xf7\\x9a\\xb8\\xc3\\x6b\\\r\n\\x49\\xb1\\x91\\x5d\\xc1\\x10\\x9a\\x89\\x88\\x7a\\x2e\\x3e\\x74\\x83\\x44\\xd5\\\r\n\\x20\\x62\\xc4\\x1f\\x61\\xdd\\x82\\x43\\x56\\xc8\\x71\\xba\\x1e\\x88\\x24\\x06\\\r\n\\x13\\x69\\x75\\x21\\x8e\\x83\\x3d\\x53\\xba\\x62\\x9d\\x26\\x12\\x22\\x1c\\x94\\\r\n\\x60\\x04\\xd7\\x94\\xcc\\xe1\\xa1\\xe3\\x0c\\x23\\x2a\\x28\\x7a\\x3d\\x85\\x4b\\\r\n\\xad\\xe5\\x42\\x77\\xb9\\x80\\xde\\xd6\\x3e\\x8b\\xb4\\x98\\xd3\\x9f\\x14\\xa2\\\r\n\\x08\\xd2\\x1c\\x00\\x95\\x8e\\x1a\\x88\\xdb\\xd2\\xb4\\x16\\x80\\xec\\x6f\\x15\\\r\n\\x23\\x36\\x32\\x50\\x3e\\x0b\\x7a\\xaa\\xaa\\xb8\\x32\\x61\\x85\\x94\\x7f\\x7a\\\r\n\\x61\\xe4\\x9e\\xe2\\x1e\\xad\\xdd\\xd5\\x92\\x7c\\xc5\\x93\\xaf\\x8d\\x33\\xa2\\\r\n\\x15\\x06\\x24\\xa1\\x94\\x4f\\xcc\\x70\\x18\\xd6\\xdd\\x51\\xa8\\x5c\\x6e\\xc4\\\r\n\\xc1\\xb8\\xbc\\x8a\\xb0\\x21\\x39\\x08\\xc3\\xde\\x02\\xc3\\x9c\\x00\\xa5\\x9e\\\r\n\\xc6\\x42\\x57\\x8d\\xf1\\xda\\x60\\x41\\xa3\\xab\\x9d\\x90\\xdb\\x69\\x63\\xe0\\\r\n\\x98\\x96\\xb8\\xee\\x27\\x06\\xbd\\x4e\\x14\\x36\\x1e\\x1b\\xde\\x1e\\x81\\x0a\\\r\n\\x8a\\x2d\\xad\\xc4\\x84\\x8e\\xe2\\x32\\x91\\x0a\\xf5\\x45\\xe8\\x9a\\x2c\\xdb\\\r\n\\xe6\\x21\\x29\\x07\\xa7\\x01\\x14\\xfb\\x1a\\x0b\\x8c\\x09\\x14\\xae\\x88\\x09\\\r\n\\x44\\x4d\\xf3\\x14\\xf2\\x8d\\x9a\\xb6\\x12\\x9e\\xec\\x03\\x60\\x29\\xbc\\x08\\\r\n\\xd2\\x56\\x48\\x5d\\x86\\x99\\xf5\\x9c\\xfc\\x61\\xff\\x00\\xc0\\xeb\\x99\\xed\\\r\n\\xec\\x3d\\x83\\x09\\x51\\x32\\x03\\xb5\\x10\\x65\\x8b\\x62\\xf6\\xe9\\xcd\\x6c\\\r\n\\x2d\\x13\\xda\\xa9\\xc8\\xbc\\x3a\\x38\\x26\\x94\\x47\\x02\\xec\\xd9\\x60\\x92\\\r\n\\xa1\\x1d\\x27\\x02\\xa4\\xe4\\xe7\\x85\\x90\\xa1\\x33\\x21\\x6b\\x85\\xd1\\x06\\\r\n\\x3f\\xda\\x49\\xc7\\xe3\\x1b\\xb4\\x31\\x1e\\x0b\\xce\\xeb\\xc9\\xff\\x00\\x1d\\\r\n\\x1e\\x21\\x36\\x6c\\xfc\\xff\\x00\\x7f\\xfd\\xc1\\x86\\xf9\\x2e\\xdd\\xb5\\x4d\\\r\n\\xab\\x36\\x45\\x47\\xd5\\x74\\xaf\\x8e\\x43\\x87\\x8d\\x15\\x81\\xef\\xed\\x44\\\r\n\\x28\\xd4\\x57\\x63\\x6d\\x02\\x10\\xaf\\x7d\\xa5\\x99\\x0a\\x13\\x42\\x00\\xa9\\\r\n\\x61\\x1d\\xa9\\x01\\x20\\x49\\x86\\xe3\\x09\\x77\\xdd\\xb3\\xbc\\x96\\x42\\x6c\\\r\n\\x24\\x76\\xc2\\xb7\\x65\\xa4\\x38\\x93\\x45\\xae\\x4e\\x3a\\xa8\\xc6\\x55\\xd0\\\r\n\\x02\\x8e\\xda\\xa9\\xbc\\x30\\x8a\\x07\\xd8\\x36\\x96\\x88\\x88\\x89\\xa0\\x8e\\\r\n\\x40\\x46\\x57\\x26\\x42\\x51\\x3a\\x1b\\x6f\\x52\\x3a\\xe7\\x39\\x8e\\x4e\\x84\\\r\n\\x3b\\xdd\\x5d\\xd6\\x03\\x36\\xd7\\xd0\\x00\\x3a\\x7b\\x3a\\xc9\\x06\\x60\\x50\\\r\n\\x45\\x89\\x0b\\xb7\\xa6\\xe0\\x18\\xd4\\x10\\x6f\\xa3\\xd1\\xe8\\xc3\\x10\\x46\\\r\n\\x23\\x86\\xc5\\x8e\\xa3\\x4f\\x59\\x59\\x3c\\xa0\\xa4\\x1a\\x0b\\x61\\x49\\xad\\\r\n\\x07\\x85\\xd9\\x9c\\x00\\x40\\x61\\x30\\x06\\x49\\xba\\x26\\x46\\xf1\\x91\\x5b\\\r\n\\x98\\x00\\x04\\xc2\\x0a\\xc0\\xd0\\xae\\x91\\xd7\\xd7\\x2c\\x45\\x87\\xba\\x01\\\r\n\\x78\\xd9\\x17\\x96\\xe5\\xc0\\x3a\\xb4\\x28\\x1d\\x96\\x3f\\x80\\x7f\\xce\\x40\\\r\n\\x32\\x01\\x2c\\x29\\xf1\\xf4\\xb6\\x5b\\xe3\\x85\\x56\\x24\\xfb\\x1b\\xa0\\x9b\\\r\n\\x6c\\x0a\\x91\\xc6\\x74\\x50\\xb0\\x15\\x8f\\xf6\\x9a\\x3e\\x04\\x20\\x67\\x08\\\r\n\\xd0\\x7e\\xef\\x50\\x16\\xb7\\x9a\\xaa\\xb6\\x13\\x0d\\xa4\\x4f\\xcc\\x19\\x48\\\r\n\\x53\\x69\\xcd\\xa9\\x82\\x20\\x6a\\x90\\x30\\x25\\xa9\\x68\\x75\\x00\\x86\\x42\\\r\n\\xa4\\x88\\x06\\x03\\xa7\\x60\\x32\\x34\\xad\\xae\\x80\\x4d\\xf3\\x3b\\x78\\xe1\\\r\n\\x86\\x88\\xdb\\x30\\xf0\\x5f\\xc6\\x03\\x75\\x7d\\xa1\\x50\\x07\\xb2\\x47\\xdd\\\r\n\\x5c\\xd4\\xea\\xc4\\x59\\x0c\\x09\\x21\\x41\\x75\\x61\\xbf\\x70\\x1c\\x9c\\xe0\\\r\n\\x26\\x80\\x98\\x1d\\x98\\x97\\x64\\x22\\x1f\\xb4\\x6b\\x71\\x9e\\xef\\x1d\\xd6\\\r\n\\x0b\\xab\\x77\\x60\\xb5\\xb0\\x79\\x1b\\xc5\\xff\\x00\\xe0\\xd0\\x64\\x20\\xf7\\\r\n\\x43\\xe9\\x8f\\x32\\x90\\x9d\\xc7\\xd2\\xd9\\x22\\xaa\\x31\\x04\\xad\\xfc\\xc8\\\r\n\\x47\\xdd\\x83\\x71\\xc1\\x97\\xfd\\x49\\xb6\\x9a\\x32\\x23\\x29\\x71\\x0f\\x51\\\r\n\\xba\\x1b\\x2e\\x64\\xe9\\xa6\\x98\\x48\\xbc\\x48\\x18\\x21\\x81\\x0d\\x54\\x84\\\r\n\\x82\\x65\\x7f\\x00\\x08\\xbd\\x93\\x95\\x21\\xc9\\x2c\\x2b\\x8f\\xb4\\x01\\x01\\\r\n\\xfe\\xb0\\x60\\x3a\\xb7\\x8a\\x96\\x92\\x42\\x2f\\xf6\\xe8\\x5d\\x66\\x91\\x69\\\r\n\\xea\\x0e\\xe8\\xf2\\xb0\\xf1\\x73\\x88\\x68\\xd5\\x30\\x2f\\x6a\\x52\\x1e\\xe6\\\r\n\\x47\\xc9\\x1f\\xdb\\x6a\\x4a\\xd0\\x15\\x75\\xc3\\xb0\\xef\\x41\\x6b\\x4f\\x86\\\r\n\\xa0\\x39\\xd0\\x03\\xdc\\x14\\x72\\x9f\\x54\\x1a\\x3c\\xfa\\xa5\\xc6\\x2e\\xd3\\\r\n\\xe1\\xc0\\xf6\\x88\\xe9\\x91\\x5f\\x25\\x99\\xad\\xa8\\x6d\\x48\\x22\\xa9\\x15\\\r\n\\x7f\\xe5\\x1f\\xb0\\x4f\\x6c\\x50\\x44\\x9d\\xdc\\xac\\xa0\\x5e\\xd4\\x04\\xe3\\\r\n\\x3e\\x64\\xfa\\x51\\x2f\\x87\\xea\\xfd\\x1c\\x3d\\xb0\\x12\\x4b\\xae\\x50\\xc8\\\r\n\\x2c\\xae\\x0a\\x80\\x22\\x00\\x99\\x2b\\xdd\\x7e\\x5f\\xca\\xeb\\x78\\x5b\\x4b\\\r\n\\xc7\\xa2\\x8b\\x1d\\x37\\xf8\\xb6\\x61\\xd8\\x7b\\x49\\xfa\\x41\\xfc\\xed\\x9a\\\r\n\\xcf\\x66\\xab\\x1f\\x72\\x05\\x8d\\xf9\\x57\\x01\\xf7\\x4b\\x52\\xd2\\x59\\x8d\\\r\n\\x18\\x28\\xcc\\x71\\x6e\\xbc\\xa1\\x3c\\xf5\\x25\\x42\\x8e\\x82\\x5e\\x29\\x09\\\r\n\\x61\\x63\\x9b\\xd3\\xc6\\x91\\x72\\x1c\\x1b\\xc0\\x88\\x3a\\x48\\x92\\xc3\\x7f\\\r\n\\xcc\\xad\\xf0\\x32\\x0a\\x45\\x08\\x2d\\xb2\\x3b\\x1d\\xdc\\x2d\\x0f\\x8a\\x65\\\r\n\\xab\\x59\\xd0\\x58\\x9b\\x10\\x20\\x5d\\x4c\\x80\\x86\\x2d\\x57\\xab\\x14\\x4c\\\r\n\\x8d\\x0a\\x92\\x05\\x11\\x50\\x52\\x0a\\x06\\x2f\\xc1\\x60\\x8e\\xf9\\x40\\xa3\\\r\n\\x4a\\x50\\x25\\x44\\xaa\\x4c\\x12\\x68\\xc0\\xda\\xe1\\x20\\xb6\\xbd\\x56\\x21\\\r\n\\x6c\\xc7\\x88\\x94\\x0c\\x81\\x2c\\xc3\\xd0\\xae\\x06\\x00\\xf2\\x1a\\xc3\\x27\\\r\n\\x69\\x62\\xf0\\x45\\x29\\x6a\\x25\\x61\\x62\\x6d\\x28\\xdc\\x41\\x40\\x3b\\x8e\\\r\n\\xc8\\x17\\xd2\\x3d\\x52\\xa4\\xc3\\x26\\x07\\xce\\x24\\xf7\\xa2\\xbd\\x17\\x3a\\\r\n\\x65\\xc4\\x35\\xd3\\xaa\\xbb\\x07\\x91\\x7b\\x86\\x5a\\xd8\\x84\\x84\\x70\\xab\\\r\n\\x3a\\xae\\x3e\\x60\\x68\\xaa\\x59\\xf9\\x6b\\xbf\\x9c\\xa3\\x2b\\xea\\x61\\xe7\\\r\n\\xe1\\x4d\\x68\\xc3\\xe0\\xa4\\xac\\x6a\\x24\\x85\\x0d\\x03\\x2d\\xc3\\xa9\\xd7\\\r\n\\x5b\\xb7\\xbc\\xcb\\x6e\\x87\\x72\\xa3\\xaf\\x24\\x4e\\x44\\x34\\x34\\x8e\\xc9\\\r\n\\x87\\x8f\\x2c\\x29\\x1a\\x02\\xa8\\x3d\\x83\\x00\\x8c\\x87\\xbe\\x86\\x18\\x15\\\r\n\\x45\\x35\\x51\\x12\\x1e\\x33\\x9c\\xaa\\xb0\\xd8\\x78\\xfb\\x92\\xe8\\x24\\x97\\\r\n\\x6c\\x40\\x2d\\x06\\x8a\\x02\\x47\\x10\\x0a\\x4b\\xd0\\x9b\\xd4\\x05\\xf4\\xae\\\r\n\\x0c\\x21\\x1b\\xcb\\x60\\x1b\\x4d\\xbc\\x91\\x57\\xd6\\x3b\\xec\\x2e\\x5e\\x2b\\\r\n\\x5f\\xd4\\x5a\\x65\\x8c\\xd8\\xb8\\x74\\x1f\\xd1\\xe8\\x53\\xd8\\xe3\\x0a\\x5d\\\r\n\\x30\\x3b\\x12\\x44\\x53\\xb5\\x09\\x33\\xe0\\x5e\\x2c\\xc1\\x10\\x66\\xa2\\xfd\\\r\n\\xac\\x17\\xa0\\x58\\xb2\\x0f\\x40\\xe1\\x77\\x5f\\xd6\\x26\\x3b\\xda\\x4d\\x07\\\r\n\\x9b\\x5a\\xc6\\xec\\x2e\\x68\\xca\\x90\\x2b\\x71\\x57\\x2c\\x37\\x08\\xc3\\x11\\\r\n\\x99\\x31\\xb9\\x36\\x8b\\xd8\\xcc\\x00\\x03\\x18\\x4a\\x68\\x8a\\x4f\\xd6\\xec\\\r\n\\x46\\x32\\x12\\xc7\\x29\\x20\\xa6\\xdf\\xe1\\xa8\\x69\\xfd\\xb2\\xfd\\x4c\\x45\\\r\n\\x2e\\x82\\xdf\\x5d\\x0f\\xcf\\x5c\\x9a\\xf5\\x21\\x22\\x00\\xc1\\x9a\\xb2\\x42\\\r\n\\x38\\x43\\xdf\\xf5\\x82\\x71\\xec\\xac\\xc9\\x64\\x8f\\x75\\x0f\\x37\\x53\\x27\\\r\n\\xe7\\x40\\x31\\x39\\x17\\x05\\xa2\\x23\\xa9\\xf2\\x17\\x0e\\x74\\x56\\xe6\\xa2\\\r\n\\x24\\x8c\\x53\\x40\\xcf\\x58\\x8a\\xa2\\x2c\\x25\\x3a\\x05\\x40\\x77\\x30\\xbe\\\r\n\\x03\\xa4\\x0c\\x6f\\xbd\\xd5\\xa3\\xfc\\x50\\xbd\\x2c\\xf3\\x7b\\x23\\x00\\xda\\\r\n\\x61\\xa3\\x4a\\xea\\xb0\\x16\\x36\\x90\\x4f\\x1d\\xc6\\xc3\\xcb\\x98\\xc4\\xd2\\\r\n\\xa6\\x5b\\xb1\\xc1\\x21\\x93\\x48\\x41\\x22\\x60\\xcc\\xeb\\x82\\xf6\\x20\\x2e\\\r\n\\x89\\x47\\x82\\x95\\x44\\x01\\xe5\\x5d\\x51\\x6a\\x58\\x44\\x1e\\xe5\\xfb\\xc2\\\r\n\\x1d\\x2d\\x1e\\xf3\\x09\\xaa\\xe7\\x25\\x52\\x20\\xef\\x51\\x9f\\x43\\xe3\\x22\\\r\n\\x06\\xad\\x14\\x98\\x1b\\xae\\xd3\\x64\\x36\\x22\\x5d\\x9a\\x4f\\x3d\\xee\\x1c\\\r\n\\x47\\x40\\xa4\\x73\\xf3\\x76\\x34\\x49\\xe3\\x8a\\xf4\\x80\\xa4\\x00\\xb0\\x8f\\\r\n\\x3f\\x8b\\xc6\\xbb\\x8d\\xc5\\x00\\x2f\\x73\\x3f\\x61\\x21\\xeb\\x1a\\xc3\\x8b\\\r\n\\x34\\xc1\\x99\\x55\\xbb\\x5e\\x9b\\xd1\\xc0\\x35\\x2a\\xae\\xf7\\xbb\\x20\\xbd\\\r\n\\xf2\\xee\\xf4\\x56\\x1a\\x8c\\x60\\xc3\\xe9\\x0f\\xd8\\x20\\x94\\x69\\x94\\x1e\\\r\n\\xe7\\x46\\x9d\\xab\\xea\\x35\\x52\\xbe\\x01\\xa8\\x00\\x2d\\x24\\x56\\xd1\\x00\\\r\n\\x5e\\x24\\xe1\\x02\\x76\\x45\\xc1\\x7a\\x58\\xc8\\xaa\\xb1\\x69\\xc0\\x17\\x48\\\r\n\\xc7\\xa9\\x5f\\x4e\\xd1\\x59\\x03\\x22\\xbf\\x29\\x9d\\x26\\xfe\\xf8\\xb5\\x89\\\r\n\\x18\\x75\\xc8\\x4d\\x28\\x7b\\x60\\x70\\x18\\x85\\x81\\xf9\\x41\\x3a\\x8d\\x4e\\\r\n\\xa2\\xe8\\x88\\x9e\\xb2\\xe0\\x63\\x12\\x26\\xfb\\x0c\\x27\\xa0\\x50\\xc3\\x35\\\r\n\\x28\\x2b\\x68\\xc0\\xbc\\xaa\\xfa\\x01\\x26\\xb9\\x8e\\x74\\xd3\\x80\\x6a\\x5d\\\r\n\\x4b\\x7a\\x00\\x6a\\xc1\\x6b\\x9c\\x80\\x60\\xfa\\xca\\x4d\\xba\\xa1\\x90\\xf2\\\r\n\\x26\\xf4\\xae\\x81\\x0c\\xa9\\x0a\\x98\\xeb\\x08\\xd8\\x62\\xe8\\x83\\x43\\x50\\\r\n\\xdf\\x04\\x32\\xe3\\x08\\x9f\\x91\\xbf\\xff\\x00\\x5f\\xb8\\x17\\x83\\xa2\\xb3\\\r\n\\xb3\\x69\\xb5\\x9d\\xcb\\x09\\x97\\xbd\\xcc\\x05\\x75\\x81\\x15\\x0a\\x29\\x07\\\r\n\\x58\\x8d\\x77\\x91\\x9a\\x21\\xcf\\x6e\\x3c\\x2c\\x28\\x95\\x55\\x86\\xe7\\xb9\\\r\n\\x13\\x07\\xda\\xb5\\xc2\\x21\\x1b\\x8f\\x32\\x3c\\x6b\\x1b\\x3f\\x75\\x6f\\x49\\\r\n\\x5d\\xd0\\x20\\x45\\x8f\\x4f\\x10\\x01\\xe0\\x5a\\x0e\\x29\\x49\\x4e\\xcd\\x91\\\r\n\\x06\\xf2\\x27\\x50\\x3b\\xf5\\x40\\x32\\x4c\\xf5\\xfa\\x11\\x1b\\xea\\xbd\\x2b\\\r\n\\xd3\\x80\\x3a\\x1a\\xa8\\x41\\x15\\xf3\\x09\\xe0\\xa9\\x43\\xf6\\x85\\x36\\x6a\\\r\n\\xea\\xce\\x3c\\x9d\\xc0\\x07\\xec\\x6a\\xa9\\x29\\x14\\x39\\xc0\\xf4\\x5b\\xb4\\\r\n\\x0b\\x81\\x68\\x87\\xbc\\xcf\\xcb\\xbc\\xde\\xa7\\x74\\xb6\\xa9\\xf0\\x09\\xd1\\\r\n\\x1a\\x18\\x36\\xe5\\x54\\x4c\\x95\\xef\\xfe\\x83\\x23\\x17\\x15\\x08\\xb4\\x3e\\\r\n\\x79\\x05\\xfb\\x97\\x2d\\xd7\\x00\\x9a\\xb9\\x2b\\x2a\\xe8\\x6a\\xbc\\x04\\x45\\\r\n\\x2e\\xc2\\xc6\\x26\\x83\\x29\\xf4\\xb2\\x5b\\xa4\\x8d\\x30\\x05\\x21\\x31\\x10\\\r\n\\x58\\xed\\x77\\x76\\xc2\\x4d\\x9a\\x83\\x60\\xb0\\xc6\\x28\\x5d\\xa1\\x9d\\x3a\\\r\n\\x68\\x42\\xca\\x20\\x93\\x64\\x3a\\x2a\\x51\\x0c\\x97\\x81\\xa3\\x04\\x22\\xeb\\\r\n\\x28\\x34\\x96\\xbc\\x4a\\xad\\x00\\xc9\\xac\\x19\\x78\\x12\\x61\\xaf\\xb6\\xb4\\\r\n\\xe0\\xf2\\x54\\x53\\x15\\x9d\\xb5\\x8c\\x6a\\xc8\\x53\\x81\\x21\\xbd\\xd6\\x0b\\\r\n\\x95\\x8a\\x72\\xce\\x63\\x6a\\xa4\\x60\\xda\\xc9\\x21\\xc8\\x96\\x15\\x6f\\xa8\\\r\n\\x4c\\x52\\x41\\x50\\x7a\\x16\\x17\\xde\\x5b\\xb6\\x80\\x42\\x9e\\x04\\xae\\x69\\\r\n\\x60\\xa6\\xb6\\xb3\\x91\\x43\\x06\\xe4\\x3b\\x77\\xa6\\x38\\x2b\\x61\\x2b\\x22\\\r\n\\xe1\\x8a\\x1c\\x41\\xc1\\x51\\x40\\xd3\\x50\\x95\\x4b\\x44\\xc6\\x92\\x30\\x89\\\r\n\\x33\\x4c\\x10\\x05\\x7f\\xa8\\xd8\\xbc\\xe4\\x38\\x82\\x67\\x3a\\x0a\\xcd\\x80\\\r\n\\x71\\x8a\\x3c\\xdb\\x20\\xc5\\x41\\x46\\x8d\\x81\\x7c\\x29\\x29\\xb3\\xe7\\x93\\\r\n\\x1e\\x7c\\x06\\x00\\x7e\\x1f\\xb0\\x76\\x0d\\x1f\\x0f\\x63\\x5c\\x50\\x12\\x91\\\r\n\\x74\\x73\\x69\\x6b\\x67\\xb1\\xa0\\xf7\\x04\\x55\\x48\\x54\\x4a\\x3d\\x94\\x03\\\r\n\\x44\\x65\\x8f\\x97\\x67\\xe8\\xf4\\xf6\\xe2\\xb1\\x37\\xc2\\x70\\xf3\\xff\\x00\\\r\n\\x87\\xfd\\xe0\\x05\\x44\\x32\\xe8\\x9a\\x18\\x2c\\x12\\x17\\x45\\x32\\x97\\x55\\\r\n\\xb5\\xda\\x87\\x34\\x93\\x86\\x8c\\xec\\x00\\x6d\\x11\\x52\\x21\\xb9\\x47\\x7f\\\r\n\\x05\\x70\\x59\\x23\\xde\\x2d\\xa6\\x97\\xe6\\x89\\x93\\x0b\\x49\\x7f\\x65\\x8c\\\r\n\\x2c\\xe5\\x01\\x61\\x73\\x40\\x92\\xb4\\xfc\\x05\\xaa\\x42\\x0e\\x0a\\x85\\xcb\\\r\n\\xb8\\x1f\\xd5\\x2b\\xb8\\xdc\\x15\\xcb\\x8d\\xd2\\x34\\x5b\\xd0\\x71\\x4a\\xe0\\\r\n\\xe4\\xae\\xb3\\xb2\\xd9\\x3f\\x14\\x8b\\x23\\x12\\x54\\x28\\xcb\\xd7\\x48\\xe8\\\r\n\\x41\\x8a\\x62\\x6c\\x71\\x42\\x2b\\x62\\x23\\x52\\x3c\\x10\\x31\\x22\\x2a\\x01\\\r\n\\xef\\xaa\\x99\\x9a\\xac\\xc1\\x06\\x8a\\x72\\x51\\xbe\\x10\\xa2\\xd6\\x1f\\x43\\\r\n\\xf8\\x02\\x7b\\x0f\\x9a\\x00\\xbb\\x96\\x21\\x13\\x98\\x2d\\xd5\\x83\\xd8\\x31\\\r\n\\xde\\x7d\\x26\\x34\\x7f\\x91\\x07\\x35\\x94\\xd4\\xe0\\x72\\x7f\\x7c\\x87\\xdf\\\r\n\\xf1\\x84\\x6e\\x3c\\x21\\xbf\\x58\\xbe\\x8f\\xe3\\xf3\\x82\\x9b\\x91\\xec\\x27\\\r\n\\xc1\\x05\\x3e\\x1b\\xd9\\x5b\\x3c\\x2a\\xf9\\x40\\xb4\\x55\\xa1\\x09\\x82\\x61\\\r\n\\x67\\xec\\x02\\xde\\xe8\\x6c\\x0f\\x1b\\xc7\\xa3\\x6e\\x9f\\xb7\\xeb\\xa1\\x03\\\r\n\\x6b\\xd1\\xdb\\x6a\\x84\\xc4\\x24\\x0d\\xc8\\x08\\xf0\\xfc\\xda\\xc8\\xf5\\xa3\\\r\n\\xa1\\x03\\x46\\x4c\\x64\\x9a\\xb0\\x27\\x03\\x65\\xed\\x64\\x35\\x07\\x0d\\xc8\\\r\n\\x71\\x86\\xcb\\x06\\x06\\xfb\\x1a\\x85\\xa0\\x18\\xc8\\xde\\xa2\\xda\\x84\\x16\\\r\n\\x88\\x68\\x88\\x1a\\xca\\x7a\\x0b\\xba\\x9f\\x60\\x1b\\xbf\\x42\\x98\\x33\\x61\\\r\n\\x84\\x2a\\xd0\\x15\\x0c\\x0d\\x90\\xca\\xeb\\x7c\\x8c\\xc4\\x3d\\x75\\x68\\x3c\\\r\n\\x71\\xda\\x76\\xd8\\x94\\x60\\x1f\\xaa\\x41\\x1b\\xc5\\x17\\xb3\\x6a\\x3d\\x0e\\\r\n\\x34\\x2f\\x35\\x84\\x50\\x08\\xfd\\x69\\xbd\\xea\\xfb\\xe6\\x7f\\x0e\\xa6\\x6f\\\r\n\\x92\\xc3\\x47\\x7a\\x6f\\x31\\x9a\\xa7\\x88\\x23\\xaa\\x6b\\x80\\x1b\\xb7\\xb3\\\r\n\\x04\\xde\\x20\\x32\\x28\\x97\\x70\\x23\\xe8\\xd2\\xef\\xef\\xae\\x8a\\x57\\x6c\\\r\n\\xaa\\xc3\\x0b\\x1c\\x57\\x20\\x97\\x83\\xa3\\x4e\\xea\\x6c\\x30\\x4f\\x7f\\x31\\\r\n\\x82\\x77\\x68\\x7f\\xbd\\xb8\\x3b\\xa1\\xbd\\x40\\x25\\x2c\\x45\\x89\\x8c\\xca\\\r\n\\x35\\x82\\xb6\\x2f\\x55\\xc6\\xcb\\x42\\x5d\\xb4\\xdf\\x36\\xb8\\x56\\x08\\xf3\\\r\n\\x01\\x98\\xa8\\x39\\x44\\x6c\\xda\\x6c\\xf4\\xe3\\xb0\\xde\\x6e\\x04\\x53\\x2e\\\r\n\\xa6\\x83\\x71\\x85\\xea\\xeb\\x14\\x86\\xca\\xd1\\x8d\\x85\\xc3\\x0b\\x43\\xf5\\\r\n\\xb3\\x48\\xb8\\xb7\\x46\\x23\\x0f\\x6b\\x75\\x12\\x59\\xec\\x19\\x8c\\xc8\\xa3\\\r\n\\xa4\\xae\\x30\\xbe\\x35\\x04\\x0e\\x27\\x32\\x4c\\x2d\\xe3\\x29\\x48\\x9b\\x60\\\r\n\\xfa\\xc5\\xba\\x04\\x8c\\x31\\xe3\\xc4\\x0b\\xe8\\xa2\\x31\\x87\\xb0\\x06\\x39\\\r\n\\x3d\\xb2\\xfe\\x39\\xe9\\x54\\x43\\x4c\\x23\\x9e\\x8e\\x3d\\xd7\\xdc\\x34\\xb0\\\r\n\\x5b\\x9f\\x1a\\x8f\\x1a\\x6d\\x32\\xe0\\x1e\\x9c\\x75\\xb4\\xa2\\xbb\\xa3\\xc6\\\r\n\\x28\\x55\\xe2\\x66\\x9c\\xf0\\x7a\\x95\\x85\\xc0\\x31\\x96\\x23\\x14\\xd4\\x83\\\r\n\\xf4\\x50\\x7c\\xd6\\x14\\xda\\x27\\x42\\xe6\\x93\\xf6\\x48\\x65\\x93\\x8c\\x3d\\\r\n\\xc3\\xee\\x91\\x1c\\x16\\x73\\x2a\\xbb\\xa2\\x2a\\x4d\\xfd\\x98\\x1d\\xc0\\x19\\\r\n\\x36\\xdd\\x00\\xf4\\x3f\\x7d\\xd0\\x50\\x59\\x9e\\x30\\x6d\\xb2\\xb5\\x82\\x74\\\r\n\\xa6\\x27\\xcd\\x8f\\x18\\xb4\\xdc\\xea\\x24\\x10\\xbd\\x53\\x03\\x8a\\xc3\\x14\\\r\n\\xea\\xb7\\x6e\\x07\\x3c\\xf6\\x13\\xc3\\xba\\x88\\x4b\\x88\\x38\\x04\\x6e\\xb0\\\r\n\\x15\\x49\\x4b\\xa1\\x99\\x10\\x4f\\x1d\\x48\\x14\\xc8\\xc0\\x8c\\xa4\\x53\\x2d\\\r\n\\x9c\\xaa\\x66\\x4e\\x3e\\xe9\\x7d\\x56\\xc8\\xb3\\xdb\\x23\\x25\\x5c\\x00\\x16\\\r\n\\xa7\\x8a\\xb2\\x5a\\x76\\x21\\x83\\x4a\\x8f\\x18\\xc2\\x99\\x97\\x7a\\x1b\\x21\\\r\n\\x80\\x00\\x42\\xd4\\x97\\x10\\xe5\\xfe\\x10\\xbe\\x6b\\x68\\xcd\\x54\\xe2\\xc4\\\r\n\\x13\\xa3\\xbf\\xf0\\x78\\x3a\\x49\\xa9\\x8b\\xa7\\x07\\x5c\\xda\\x2b\\x6b\\x50\\\r\n\\xe6\\x25\\x7c\\xd1\\xe0\\xf8\\x07\\x86\\xdc\\xfd\\x98\\x85\\x55\\x6f\\x9e\\xbe\\\r\n\\x9d\\x1c\\xdc\\x54\\x36\\xda\\xc3\\xea\\x88\\x9a\\x4c\\x43\\x0e\\x6e\\x6d\\xbf\\\r\n\\xc6\\x21\\x7f\\x5c\\x54\\x74\\x27\\xbf\\x55\\x36\\x43\\xa4\\x83\\x7d\\x01\\x8b\\\r\n\\x33\\x11\\xdd\\xf5\\x1d\\xad\\x00\\xd6\\x3b\\xb7\\xb6\\x10\\x92\\x06\\xb1\\x48\\\r\n\\x62\\x29\\x42\\xeb\\xbf\\xc1\\x3f\\x01\\x69\\x54\\x61\\x59\\x6c\\x30\\xcb\\xb1\\\r\n\\x28\\xec\\x67\\x7d\\xa3\\x19\\x81\\x02\\x20\\xa5\\x3e\\x36\\x53\\xe6\\xaf\\xcc\\\r\n\\x1a\\x91\\x22\\xc2\\xe8\\x41\\x20\\x11\\x44\\xd6\\x8e\\xd9\\x1b\\x1c\\x2a\\xfa\\\r\n\\x9e\\xf7\\x7f\\x71\\xb2\\x10\\x29\\xa4\\x09\\x19\\xb5\\xa7\\xfe\\x66\\x02\\x25\\\r\n\\xb5\\xe9\\xde\\xde\\x81\\xad\\x19\\xfc\\xc9\\x68\\xf8\\xcd\\xa5\\xbd\\x0b\\xc0\\\r\n\\x74\\x95\\xd3\\xd1\\x61\\x02\\xb5\\xea\\x3b\\x9f\\xe6\\x11\\x88\\x21\\x83\\x11\\\r\n\\x26\\xe9\\xed\\xf8\\x3f\\x2c\\xa8\\x2d\\x96\\x3b\\x42\\x90\\x14\\xbb\\x0e\\x1c\\\r\n\\x8a\\x8a\\x34\\x7f\\xf8\\x5c\\x65\\x9e\\x5a\\x46\\x21\\x57\\xfb\\x73\\x24\\x2d\\\r\n\\xc7\\x7c\\x04\\x8f\\x9a\\x40\\x7c\\x86\\x89\\x58\\x72\\xe3\\x3b\\x58\\xc0\\xf9\\\r\n\\x4b\\x35\\xa2\\x85\\x95\\xb2\\xd7\\x55\\xc2\\x56\\x9b\\x60\\x8a\\xa5\\x03\\xb9\\\r\n\\x8c\\x08\\x17\\x02\\xac\\x43\\x8c\\x79\\xc3\\xcf\\x00\\x50\\x46\\x0d\\x78\\x4d\\\r\n\\xc0\\x7f\\x1e\\xc7\\x3c\\x76\\x89\\x66\\x98\\xc1\\x20\\x07\\x8d\\x68\\xe9\\xda\\\r\n\\xb0\\x82\\xe6\\x5b\\x31\\x5c\\x3e\\xd0\\x84\\x33\\xba\\xf8\\x34\\xfd\\xa5\\x4a\\\r\n\\x80\\xcd\\x68\\xc2\\x9c\\xf0\\x57\\xa9\\x18\\x91\\x0f\\x40\\x46\\x61\\x91\\xa4\\\r\n\\xd4\\xa0\\x04\\x52\\xb6\\x45\\x77\\x1d\\x9b\\x48\\x64\\xfb\\x6e\\xde\\xd8\\x90\\\r\n\\xb1\\xc2\\x8a\\x16\\xb6\\xdd\\x0e\\x8d\\xa1\\x16\\x1c\\xcd\\xa6\\x53\\x2c\\x92\\\r\n\\xdb\\x55\\x84\\x1d\\xd8\\x45\\xa2\\x70\\x12\\x9f\\xe2\\xad\\xc7\\xcc\\x93\\x4f\\\r\n\\xa4\\xb0\\x82\\xf5\\xfd\\xa7\\xb8\\x55\\xf6\\x24\\xfe\\x0e\\xc0\\x9a\\x3f\\x6e\\\r\n\\xe3\\x2b\\x6a\\x01\\x19\\xee\\x3a\\x1c\\xdb\\x39\\x9b\\x02\\x10\\x48\\x50\\xbf\\\r\n\\x08\\x8b\\x41\\x60\\xc1\\xd2\\x06\\x23\\x79\\x8e\\x0b\\x09\\xa9\\x8e\\xe3\\x91\\\r\n\\xb3\\x81\\xd8\\xa3\\x9b\\x77\\xf8\\x35\\x92\\x11\\x5e\\x00\\x0a\\x79\\x83\\x8b\\\r\n\\xdf\\xb8\\x01\\xe2\\x01\\x2e\\x65\\x23\\xa5\\xaf\\x0e\\x07\\x33\\x45\\x38\\x22\\\r\n\\x38\\xfe\\x44\\x20\\x2a\\xfd\\x96\\x02\\xe1\\x1f\\xb5\\x26\\x0b\\x70\\xa7\\x27\\\r\n\\xac\\x44\\x85\\x40\\x65\\xd0\\x3a\\xa4\\x9e\\x53\\x13\\x3d\\x22\\xf0\\xe8\\x98\\\r\n\\x25\\x9b\\x12\\x3a\\x0c\\x54\\x18\\x78\\x5d\\xdf\\x5d\\x9c\\x7a\\xd4\\xa6\\x9c\\\r\n\\x9c\\x06\\x5d\\x64\\x39\\x56\\x6e\\x41\\xf4\\xc1\\x10\\x87\\x19\\x9c\\xb2\\x33\\\r\n\\x05\\xc0\\xb1\\xde\\x1c\\x70\\x9c\\x3b\\x61\\xec\\xe3\\xb2\\x05\\x22\\x4f\\x75\\\r\n\\xae\\x0d\\x86\\x52\\x71\\x1a\\x61\\x42\\x1a\\xe6\\xb9\\x61\\xc7\\x70\\x0f\\x8a\\\r\n\\x40\\xa4\\x25\\xc3\\xcb\\x46\\x3e\\x83\\xa1\\xea\\xa1\\xc5\\xec\\x39\\xe2\\x52\\\r\n\\x04\\x49\\x41\\x45\\x28\\xb9\\xd7\\xbf\\xcb\\x0c\\x83\\x2a\\xc1\\x84\\x5f\\xd3\\\r\n\\x0f\\x41\\xe9\\x69\\xe2\\x09\\x0e\\xf6\\x5b\\xca\\x4f\\x46\\x8a\\xa5\\x0d\\x29\\\r\n\\xc9\\xa6\\x26\\x60\\xd1\\x7d\\x23\\x00\\x3e\\x8f\\xaf\\x47\\x14\\x04\\xd8\\x53\\\r\n\\x39\\x17\\x86\\xf9\\x36\\x71\\x9c\\x54\\x43\\x7d\\x3f\\x21\\x9b\\xc7\\x39\\x76\\\r\n\\xb7\\x8c\\x12\\x6e\\x83\\xd8\\xfa\\xc4\\x61\\x67\\xdd\\x9f\\xa8\\x36\\x8b\\xa8\\\r\n\\xce\\x80\\x3b\\x44\\x82\\x4e\\xe1\\xd3\\xf0\\xed\\xb3\\x9d\\x01\\xa1\\xd0\\xa6\\\r\n\\x9d\\x7a\\xbd\\xbe\\x32\\x01\\x4f\\xa0\\x8a\\xf3\\xfd\\xe9\\xff\\x00\\x38\\x0d\\\r\n\\x82\\xfc\\xb7\\xd7\\xcd\\x3f\\xe3\\xf3\\x82\\x17\\x07\\xa7\\xe3\\x60\\xd9\\x46\\\r\n\\x9c\\x0a\\xe6\\x9b\\xdc\\x0a\\x91\\x69\\x4b\\x35\\xa6\\xcb\\xa1\\xc3\\x66\\xc2\\\r\n\\xb4\\x93\\xa4\\xec\\x6b\\x74\\xb8\\x98\\x6c\\x34\\x8e\\xd0\\x59\\x43\\x53\\xae\\\r\n\\x5c\\x42\\x02\\xa0\\x0a\\x63\\xb4\\xb3\\x49\\x3b\\xd5\\x51\\xfc\\xd6\\xf8\\xff\\\r\n\\x00\\x27\\xfd\\x86\\xf4\\x33\\xb7\\xaa\\x1a\\xdb\\x11\\xd6\\x97\\xba\\xc3\\xb4\\\r\n\\x04\\xc1\\x6e\\x28\\x5d\\x81\\xf9\\xe6\\xd2\\x9e\\x42\\x63\\x33\\xfc\\x8b\\xf4\\\r\n\\xba\\xf2\\x64\\x35\\x06\\x3f\\x05\\x01\\x9d\\x77\\x55\\x5b\\xba\\x84\\x52\\xe5\\\r\n\\x01\\x03\\x8f\\xab\\x87\\x4a\\xa7\\x2e\\x9a\\x18\\x6b\\xba\\xd9\\x83\\x84\\x84\\\r\n\\x91\\xdc\\xdd\\x8b\\x31\\x50\\xc8\\xc8\\xac\\x21\\x51\\xab\\x45\\x25\\xb1\\xd7\\\r\n\\x29\\x6e\\xb7\\xe4\\xa8\\x83\\x06\\xa1\\x82\\x9d\\x56\\x66\\x21\\xa8\\xb7\\xbe\\\r\n\\xb2\\x0b\\x1c\\x8d\\x34\\xd4\\x64\\x45\\x17\\x59\\x93\\xcd\\x15\\x37\\x16\\x23\\\r\n\\x2e\\x1d\\x1f\\x7a\\x1c\\xe2\\x1e\\x75\\x13\\x6a\\x8c\\x96\\xae\\x80\\x40\\xc3\\\r\n\\x9e\\xd4\\x45\\xb1\\x3b\\x50\\xca\\x23\\x17\\x1c\\x80\\xdd\\x8c\\x87\\xe1\\x6c\\\r\n\\xc6\\xa3\\x10\\xe4\\xa9\\xca\\x55\\x04\\x2c\\x85\\xd6\\xf5\\x2a\\xe3\\x9c\\x4e\\\r\n\\xa5\\xe1\\x13\\x19\\x8c\\x1a\\xbf\\xb8\\xc2\\xf7\\x5a\\x13\\x46\\x9e\\xab\\xcc\\\r\n\\xaf\\xc4\\xd1\\xd2\\xd9\\xf9\\x78\\x73\\x5d\\x7a\\xbb\\x1a\\x96\\xc3\\x3d\\x8f\\\r\n\\xd7\\xdc\\x6d\\xf0\\xaf\\x84\\x3b\\xd0\\x9f\\x93\\x49\\x85\\x15\\x8c\\x96\\xe5\\\r\n\\x96\\xc0\\xbe\\x2f\\x79\\x6b\\xc9\\x83\\xf1\\x10\\x8f\\xfb\\x55\\xcd\\x70\\xc3\\\r\n\\x5d\\x1f\\x9e\\xbc\\x91\\x57\\x7f\\x9c\\x51\\x52\\x1a\\xbd\\x8c\\xac\\xad\\x85\\\r\n\\xb2\\x90\\x44\\xac\\x1f\\x37\\x52\\x99\\x28\\xc3\\x7a\\xc3\\xa1\\xfa\\x0c\\x37\\\r\n\\xd2\\xdd\\xdb\\x60\\x64\\x21\\x0a\\x6d\\x9b\\xdc\\x10\\x04\\x3d\\x85\\xd0\\xa0\\\r\n\\x31\\x27\\x5f\\x11\\x9e\\xe0\\x3a\\x90\\x26\\x7a\\xfb\\xd6\\xa2\\x68\\xc5\\xbe\\\r\n\\xa8\\xc8\\x47\\x78\\x01\\xea\\x8a\\x1c\\xa0\\xd5\\xfc\\x8e\\x1b\\x90\\x2d\\x64\\\r\n\\xd4\\x36\\xe7\\x59\\xff\\x00\\x86\\x9a\\xd5\\xc1\\xfc\\x70\\xc0\\x8c\\xce\\x2e\\\r\n\\xcf\\xc1\\x9c\\x00\\x2c\\x02\\x56\\xce\\x1f\\xbe\\xb6\\x0d\\x3d\\x6a\\x6e\\x18\\\r\n\\xe1\\xcb\\x7b\\xbd\\xfa\\xe6\\xac\\x0e\\x43\\x1c\\xe2\\x63\\xa6\\x8e\\xa2\\x15\\\r\n\\x4a\\x40\\x8f\\x5e\\x30\\x36\\x1f\\x68\\x19\\x3d\\x01\\x2a\\xc0\\xae\\x0c\\x2e\\\r\n\\x00\\x44\\x18\\x6c\\xc6\\x3a\\x20\\x37\\xa0\\x32\\xa8\\x43\\x7d\\x5d\\x38\\x04\\\r\n\\x00\\xa8\\x93\\x90\\xe2\\x60\\x88\\xb9\\x41\\xe9\\x02\\xbf\\x43\\x89\\x13\\xa0\\\r\n\\xe8\\x78\\xba\\xf9\\x29\\x1b\\xd6\\x6a\\xbf\\x9d\\xcc\\xd0\\xab\\x7f\\x03\\xb5\\\r\n\\xf5\\x80\\x20\\x9e\\x4e\\xaa\\xdf\\x14\\xd6\\xb5\\x2b\\x83\\xa3\\xb4\\x98\\x21\\\r\n\\x2f\\xde\\xe9\\x16\\x3a\\xc8\\x86\\x61\\x1f\\x02\\x68\\x65\\x14\\x97\\x70\\xc5\\\r\n\\x5c\\x15\\x08\\x5a\\x00\\x0b\\x9a\\xb6\\x5c\\x37\\xa4\\xc4\\x91\\xfa\\xe0\\x5a\\\r\n\\x34\\x00\\xc5\\x02\\xa8\\xb7\\x41\\xef\\x77\\xfa\\x2c\\x75\\x9a\\x95\\xf3\\x00\\\r\n\\x9a\\xfb\\xfe\\xee\\x5d\\xeb\\x4c\\xb6\\x7c\\x0f\\x96\\xbe\\x26\\x2c\\x5e\\x6d\\\r\n\\x88\\x03\\xd9\\x40\\x0d\\xaa\\xdc\\xa9\\x83\\x26\\x43\\xa5\\x83\\x6f\\x2a\\x77\\\r\n\\x19\\x75\\xd1\\x4d\\xa6\\x58\\x1a\\xd0\\xdc\\xd4\\xdb\\x07\\xd0\\x06\\x6d\\xab\\\r\n\\xf3\\xfe\\x52\\xf3\\xf7\\x9a\\x61\\x53\\xa4\\xf1\\xfe\\x08\\x62\\x13\\x78\\x94\\\r\n\\x83\\x50\\xe6\\xb8\\x5f\\x7f\\x9d\\xb8\\x2a\\xad\\xb8\\x8e\\xab\\xbc\\xc5\\xf4\\\r\n\\x86\\x38\\x0d\\xb5\\xfd\\x40\\x03\\x81\\x3b\\xa6\\x3c\\x42\\x0a\\x92\\x0b\\x6f\\\r\n\\x83\\xfc\\x7e\\x71\\x69\\xc0\\x70\\x5d\\x48\\x15\\xe8\\x58\\x85\\x16\\x9d\\x68\\\r\n\\x69\\x04\\x53\\xc1\\x05\\x56\\x6b\\x36\\x77\\x92\\x64\\x36\\xf0\\xf0\\x24\\x16\\\r\n\\x5c\\x77\\x46\\x7c\\xdc\\xf4\\x3e\\xa4\\x85\\x31\\x1a\\x2e\\x03\\x1f\\xc3\\x64\\\r\n\\x28\\xda\\x85\\x9d\\xaf\\x53\\x9a\\xab\\x54\\x9b\\x91\\xc2\\xf4\\x01\\x10\\xa4\\\r\n\\x1a\\x12\\xc2\\x30\\x03\\x8c\\xe0\\xb7\\x17\\xbd\\x6a\\x11\\x6c\\x47\\xdb\\x93\\\r\n\\x51\\x65\\xf3\\x94\\x3d\\x2b\\xdf\\x42\\x8e\\x4b\\x24\\x1b\\x1b\\x06\\xff\\x00\\\r\n\\x38\\x02\\x08\\xc4\\x6b\\xd6\\x50\\x77\\x30\\x3a\\x88\\x8e\\x82\\x55\\x9b\\x12\\\r\n\\xaf\\x24\\xdb\\x04\\x96\\x85\\x28\\xc9\\xbc\\x68\\x3c\\x6c\\x3b\\x76\\x8d\\x90\\\r\n\\x12\\xe1\\xdb\\x2f\\x6c\\x2c\\x62\\x83\\x69\\x4a\\x6a\\xb9\\x7a\\x85\\x26\\xa1\\\r\n\\x88\\x50\\xa5\\xbe\\x3a\\xd6\\x2e\\x00\\x34\\x79\\x83\\x17\\xcb\\xcb\\x32\\x06\\\r\n\\x68\\x21\\xd8\\x0a\\xcd\\x2f\\xa3\\xfe\\x8a\\x18\\x1f\\x36\\x1a\\xd1\\x40\\x67\\\r\n\\x6f\\x85\\x49\\x03\\xee\\x5d\\x18\\x0e\\xe5\\x03\\xfa\\x5b\\x02\\x98\\x50\\x9d\\\r\n\\x1b\\xe6\\xda\\xbf\\x47\\xf3\\xd7\\xcc\\x48\\xfd\\xa2\\xb5\\x6d\\x2f\\x42\\xff\\\r\n\\x00\\xe3\\x36\\xed\\x0e\\xd1\\x63\\x43\\xfb\\x00\\x05\\x94\\x73\\x2a\\xf7\\x00\\\r\n\\xab\\x21\\x11\\x45\\xcb\\x3d\\x03\\xe6\\x18\\x55\\x9d\\xc4\\x03\\x6e\\x8e\\xb4\\\r\n\\xa8\\x06\\x16\\xf8\\x3c\\x89\\x35\\x0e\\x54\\x7b\\x11\\x99\\x29\\x51\\x37\\x23\\\r\n\\x16\\x5f\\xac\\xce\\x18\\xdf\\x11\\x94\\x8c\\x10\\xa0\\xab\\x95\\xac\\x18\\x82\\\r\n\\x41\\xd6\\xba\\x9f\\x74\\x86\\xe6\\x87\\xfb\\xa4\\x62\\x51\\x9a\\x7a\\x67\\x46\\\r\n\\xc4\\x0b\\x16\\x28\\xc5\\xc4\\x82\\x18\\xb5\\xff\\x00\\x09\\x44\\x09\\x71\\x30\\\r\n\\xc4\\xa2\\x4d\\xac\\xf1\\xb1\\x44\\x4d\\xd5\\x65\\x63\\x0e\\xb6\\xd6\\x80\\xd0\\\r\n\\x40\\xc1\\xa6\\x80\\xf3\\xdc\\xa7\\xe7\\x32\\x79\\xad\\x84\\xc2\\x64\\x5e\\xe3\\\r\n\\x17\\xb7\\x07\\x1d\\x00\\x7d\\x08\\x06\\x00\\x08\\xb4\\x02\\x04\\xe8\\x42\\x28\\\r\n\\x16\\x63\\xf6\\x0f\\xa5\\xbe\\x92\\x66\\x0e\\x99\\x22\\xc4\\x26\\x7d\\x2d\\xc9\\\r\n\\x41\\x6e\\xe8\\x59\\x57\\x12\\x48\\xa9\\xb6\\x92\\x8b\\x51\\x0a\\xd1\\x6a\\xf0\\\r\n\\xbf\\x80\\x4d\\x5b\\xed\\xa0\\x68\\x2b\\xe8\\x48\\x6e\\xa9\\x1a\\x9a\\x42\\xd2\\\r\n\\x07\\xc7\\xa0\\x0a\\xf8\\xd1\\xa3\\x05\\xea\\x1e\\x03\\xd9\\xfa\\xca\\x14\\x38\\\r\n\\x8a\\xf4\\xe0\\x1b\\xdb\\xbd\\x66\\xb5\\x49\\x73\\x43\\xa8\\x52\\xfe\\x97\\xe7\\\r\n\\xb2\\x0c\\xba\\xb7\\x88\\x34\\x28\\x55\\xaf\\xdc\\x59\\x32\\xa8\\xba\\x5a\\xed\\\r\n\\xfd\\xec\\x12\\xaa\\x64\\x00\\x2e\\x6f\\x31\\x01\\x2b\\x4a\\x03\\x24\\x4f\\x9f\\\r\n\\x5b\\xb0\\x48\\xbe\\xd1\\x3a\\x39\\x59\\xdf\\xb6\\x1d\\x35\\x91\\x5d\\x63\\xd6\\\r\n\\xbd\\x85\\xb3\\xa5\\xab\\x1b\\x51\\xbc\\xde\\xb7\\x83\\x0b\\xb7\\x0b\\xc5\\xab\\\r\n\\xd5\\x6f\\x50\\x31\\x70\\xd3\\xa2\\x13\\x0f\\xf9\\x80\\x23\\x64\\x30\\x9c\\xb2\\\r\n\\x7d\\x02\\x83\\xf1\\xad\\xbd\\x7f\\x18\\x32\\x50\\x36\\xd6\\x20\\x48\\xdf\\xa1\\\r\n\\xdf\\x6e\\x70\\x78\\x14\\x05\\x0a\\xc5\\x2d\\x84\\xa9\\x90\\x5b\\x2a\\x9c\\x54\\\r\n\\x2a\\x42\\x3e\\x00\\xae\\x6e\\x4e\\x4d\\x81\\xa9\\xb1\\xa1\\xa2\\x04\\x99\\x2a\\\r\n\\x01\\xce\\xf2\\xa4\\x6c\\x7a\\xc7\\x42\\xb4\\x90\\xc0\\x44\\xf3\\x68\\x21\\x12\\\r\n\\x22\\x25\\xc2\\xc6\\x79\\xe6\\xdb\\xb0\\x0a\\xa5\\x69\\x89\\xec\\xaa\\x09\\x17\\\r\n\\x96\\xa8\\x3b\\x07\\x51\\x89\\x10\\x9c\\x45\\x56\\x2d\\xac\\x00\\x38\\x82\\xfc\\\r\n\\x4f\\x6c\\xba\\x9b\\x85\\xa0\\x8a\\xcc\\x4d\\x7c\\x29\\x89\\x2d\\x59\\xd5\\x0a\\\r\n\\xb5\\x6e\\x0a\\x5b\\x43\\xa8\\x6c\\xbd\\xf4\\x8d\\xb7\\x5a\\x5c\\x1e\\xcc\\x6e\\\r\n\\xe0\\xb7\\x08\\x04\\x82\\x8e\\xf1\\xf8\\x61\\x17\\x23\\x6c\\xd3\\x30\\x51\\x0f\\\r\n\\x16\\xfc\\x83\\x37\\x22\\x3e\\x40\\x24\\x47\\x9c\\xe4\\xf6\\x22\\xd8\\x5a\\xdd\\\r\n\\xdd\\x95\\x8b\\xec\\x48\\x28\\x69\\x2d\\xb4\\x83\\x4c\\x81\\xc1\\x51\\xdc\\x0a\\\r\n\\x3d\\x20\\xaa\\x69\\x17\\x8b\\xca\\xd2\\x6c\\x3c\\x0b\\x64\\xd4\\xf8\\xe7\\x54\\\r\n\\x0a\\xb8\\x4f\\x9b\\xa1\\x36\\x17\\x67\\xb7\\x2a\\xf0\\xb1\\x2c\\xf8\\x0b\\x0b\\\r\n\\xaf\\xb4\\xd7\\xee\\x67\\xd1\\x58\\x04\\x12\\xb4\\x20\\x44\\xd0\\x6b\\xe1\\xdb\\\r\n\\xf6\\x8a\\x1d\\x57\\x70\\x9e\\x5f\\xfc\\xe5\\xb4\\x1e\\xb2\\xa9\\x42\\xba\\xa6\\\r\n\\x8b\\xe7\\x39\\x9a\\xa9\\xa9\\x15\\xe8\\xfa\\x86\\xee\\xa7\\x2f\\x13\\x98\\xf5\\\r\n\\x0b\\xa9\\x01\\x8a\\xa6\\xa1\\x1b\\x8c\\xdc\\x96\\x8f\\xb4\\x52\\x5d\\xf9\\x0c\\\r\n\\x85\\x5a\\xa0\\x1c\\x2e\\x95\\xa4\\x84\\x94\\x1a\\x54\\xf3\\xf8\\xb8\\x3e\\x67\\\r\n\\x20\\x40\\x81\\x67\\xcd\\xad\\x5b\\x13\\x1b\\x6c\\xfd\\x33\\x6b\\xf3\\x72\\x37\\\r\n\\x9a\\x61\\xf9\\xd6\\x46\\x68\\xb4\\x18\\x38\\x2d\\xa0\\x60\\xa9\\xbb\\x00\\x38\\\r\n\\xeb\\x07\\x02\\xb2\\x2e\\x4e\\x36\\xe4\\xc4\\x86\\x17\\x93\\x8c\\xf4\\x8d\\x1a\\\r\n\\xba\\x43\\x44\\xd2\\xc3\\xaa\\x0e\\xc7\\x87\\x02\\x9e\\x0c\\x20\\xde\\x01\\xdf\\\r\n\\xa2\\x56\\x76\\x45\\x23\\x95\\x4c\\x2f\\x84\\x8e\\x4b\\x7e\\x50\\x9a\\x47\\xe7\\\r\n\\xb1\\xf2\\xae\\x57\\x30\\x67\\x0e\\x08\\xf6\\x94\\x89\\x20\\x60\\x3b\\x7a\\x45\\\r\n\\x73\\x11\\x7e\\x6c\\x4e\\x35\\x05\\xef\\xed\\xef\\x5d\\x8b\\x7b\\xd9\\xf7\\x7f\\\r\n\\x70\\x54\\x8f\\x56\\x51\\xe3\\xd1\\x21\\x9b\\x35\\x7c\\x5c\\xfa\\x0a\\x52\\xe1\\\r\n\\x45\\x72\\x72\\xb2\\x33\\x6c\\x30\\xd5\\x50\\x0d\\x8a\\xdc\\x9d\\x41\\x33\\xe1\\\r\n\\x8f\\x84\\x08\\x6c\\x16\\x0e\\x98\\x48\\x4f\\x4d\\x81\\x15\\x43\\x76\\x21\\x45\\\r\n\\xa1\\x16\\x11\\xd4\\x9b\\xb1\\xa3\\x8c\\x8f\\x5f\\x7f\\xce\\x1f\\x05\\x17\\x60\\\r\n\\xf2\\x86\\xff\\x00\\xfd\\xc7\\x62\\x22\\xc6\\x9c\\x68\\x8a\\x85\\x3f\\x06\\x41\\\r\n\\xb1\\x20\\xc4\\xdc\\x21\\xdd\\xe9\\xc8\\xdf\\x9e\\x11\\x70\\x17\\x98\\x02\\x50\\\r\n\\xf9\\x61\\x6d\\x21\\x2f\\x05\\x14\\xff\\x00\\x93\\x58\\x11\\x6b\\x0f\\x41\\xd9\\\r\n\\xfc\\xd6\\xbc\\xfc\\xe1\\x97\\x5e\\x5d\\x91\\x53\\xea\\x05\\xd5\\x69\\xdc\\x08\\\r\n\\x66\\x5f\\x0e\\xc5\\xf7\\xe2\\x6b\\x15\\x64\\x35\\xfc\\xe8\\x54\\x10\\x2f\\xa5\\\r\n\\x46\\x5c\\x4a\\xef\\x0c\\x75\\x3d\\x77\\x07\\x5d\\xe6\\x7b\\x96\\x07\\x23\\x8a\\\r\n\\xde\\x87\\x17\\x51\\x86\\x10\\x1a\\x7a\\x08\\xd0\\x53\\x75\\x67\\xef\\x02\\x93\\\r\n\\x17\\xd0\\x4c\\xb0\\x85\\x31\\x0d\\x2c\\x36\\x0a\\xf7\\x3a\\xf1\\xf1\\xa3\\x5f\\\r\n\\x57\\x32\\xe6\\x14\\x26\\xf9\\x5b\\xb1\\x03\\x61\\x04\\xcf\\xc2\\xf6\\xe8\\x41\\\r\n\\xa7\\x64\\x8a\\x15\\x69\\xe3\\x0b\\x68\\xd2\\xb4\\xce\\x82\\xad\\x89\\x02\\xe0\\\r\n\\x47\\x8b\\x20\\xb8\\x00\\x43\\xa4\\x29\\x5c\\xc8\\x04\\x69\\x86\\x26\\x3b\\x49\\\r\n\\xf7\\x62\\xc5\\x37\\x23\\x27\\xee\\xe2\\x1d\\xc0\\x11\\xb3\\x66\\x83\\x46\\x09\\\r\n\\xda\\x4e\\xec\\x37\\xc4\\xa3\\xde\\x54\\x7f\\x43\\x33\\x04\\x73\\xa6\\xcf\\x5b\\\r\n\\xa0\\x87\\xc1\\xb2\\xa9\\x75\\x03\\x0a\\xc5\\x25\\xc1\\x70\\xec\\xa4\\xfa\\x0d\\\r\n\\x84\\x19\\xe8\\x32\\x48\\x27\\x54\\x34\\xaf\\xa5\\xd8\\x76\\x91\\x63\\xd4\\xc4\\\r\n\\x37\\x52\\x50\\x81\\x31\\xac\\x76\\xc2\\x17\\x01\\x4b\\x0f\\x63\\xa7\\x99\\x1f\\\r\n\\x81\\x95\\x91\\x6a\\x44\\x5f\\xed\\x46\\x34\\x48\\x22\\x91\\x01\\x0c\\xb4\\x7c\\\r\n\\x93\\x53\\x58\\x7c\\x3a\\x99\\x2b\\x15\\xf8\\x3a\\xe1\\xae\\xe2\\xa6\\x6c\\x6a\\\r\n\\xbb\\x5c\\x34\\x7c\\x11\\xbf\\xb8\\xbc\\x4d\\x56\\x52\\x5d\\x8d\\xb3\\x88\\x7f\\\r\n\\x2c\\x94\\x11\\xe8\\x53\\xe8\\xe0\\xb0\\x10\\x09\\xd6\\x0d\\x40\\x38\\x83\\x13\\\r\n\\xf4\\x41\\x11\\x1d\\x93\\xf3\\x91\\xc4\\x55\\x76\\x1b\\xf8\\x7b\\x8a\\x12\\x96\\\r\n\\x6e\\x34\\xd7\\x85\\x7c\\x87\\x96\\x5c\\x7a\\xb2\\x3b\\x83\\x03\\x4e\\xe2\\xd7\\\r\n\\x46\\xd9\\x38\\x62\\x8e\\x41\\x31\\xfe\\xe1\\x14\\x0f\\x86\\x2d\\x21\\xcd\\x1e\\\r\n\\xc6\\xd0\\x49\\xa4\\x92\\x77\\x71\\xeb\\x4e\\x85\\xdb\\x42\\x22\\x21\\x74\\x21\\\r\n\\x29\\x9d\\xc9\\xc5\\x57\\x91\\xa7\\x2b\\xc7\\x31\\x83\\x4e\\x52\\x4a\\xd3\\x3d\\\r\n\\x56\\x67\\x72\\x91\\x05\\x27\\xce\\x00\\x44\\x4c\\x0e\\xc7\\x68\\xcc\\x4a\\x5d\\\r\n\\x0d\\x5b\\x5a\\x42\\x83\\x19\\xe0\\xb3\\x30\\x12\\x00\\xb6\\x05\\x3a\\x98\\xc2\\\r\n\\xc2\\x74\\xcb\\x5d\\x26\\x55\\x34\\xec\\x41\\x74\\x81\\x32\\xd6\\xb9\\x83\\x08\\\r\n\\xe1\\x24\\xac\\x0d\\xbd\\xe1\\xbe\\x93\\xc2\\xf2\\x02\\xbe\\xfe\\x2b\\xeb\\x0d\\\r\n\\xdf\\xbd\\x47\\xc8\\x03\\xa2\\xde\\x52\\xc6\\xe4\\x4f\\x50\\xb1\\xe6\\xb9\\xe2\\\r\n\\x47\\x4c\\x2a\\x62\\xa6\\x1c\\x6e\\xe3\\x9f\\xf0\\x1a\\xf3\\x21\\x84\\x93\\x89\\\r\n\\x12\\x3a\\xcd\\x3f\\x4d\\x90\\xfd\\x84\\xa3\\x62\\x7c\\x69\\x36\\x95\\x81\\xc3\\\r\n\\x5d\\xd1\\x19\\x02\\xcd\\xa1\\xea\\xc1\\xa1\\x61\\xc4\\xb4\\x7b\\x1f\\xcb\\xec\\\r\n\\x76\\x7a\\x3b\\x35\\x9e\\x40\\x54\\xff\\x00\\x0d\\x1e\\x27\\xe3\\xe6\\x12\\x46\\\r\n\\xf4\\x28\\x29\\xae\\x7e\\xd8\\x67\\x27\\xae\\xad\\xbb\\xaf\\x5f\\x7f\\x98\\xc2\\\r\n\\x77\\x47\\xc6\\x68\\xb2\\xcf\\xbf\\xdc\\xa9\\x4d\\xa8\\xe9\\x00\\x08\\x54\\x1b\\\r\n\\x0a\\xdd\\x18\\xb4\\x25\\x02\\xce\\x3f\\xa3\\xfd\\xf9\\x82\\x68\\xff\\x00\\xa7\\\r\n\\x09\\x3e\\xfc\\xfe\\x65\\xdd\\x6b\\x04\\x90\\x85\\x2b\\x53\\xe9\\xb9\\x02\\x8f\\\r\n\\x24\\xec\\xa9\\x4d\\x37\\xd9\\xdf\\xc6\\x57\\x07\\xdf\\xde\\xce\\xfe\\x46\\x83\\\r\n\\xd3\\x10\\xb9\\x8a\\x9e\\xe8\\x4b\\xd6\\xc7\\xf2\\x4c\\xbc\\x11\\x45\\x34\\x2f\\\r\n\\x87\\x6b\\x50\\x03\\x50\\x5e\\xfa\\x1b\\x66\\xe9\\x2b\\x5a\\xcb\\xbc\\xec\\x14\\\r\n\\x34\\x40\\x29\\xec\\x05\\x83\\x96\\x58\\x46\\xef\\x87\\x02\\x73\\x5f\\x24\\xc2\\\r\n\\x31\\x78\\x5a\\x28\\xfc\\xad\\xf1\\x00\\x3c\\x22\\x82\\xa2\\x6b\\xe9\\x0b\\x1f\\\r\n\\x1d\\x8c\\xc0\\xae\\x9e\\x31\\x51\\x4d\\x9f\\x04\\x84\\x84\\x4a\\x3d\\xf9\\x80\\\r\n\\xfe\\x37\\x2a\\x82\\xc5\\x18\\x88\\x00\\xcf\\x6a\\x78\\x23\\xcf\\x71\\xcb\\x45\\\r\n\\x7a\\xea\\x54\\x79\\x09\\x38\\x01\\x3c\\x85\\xd2\\xe2\\x9f\\x0c\\xe4\\xda\\xf6\\\r\n\\x3a\\x9a\\x19\\xc0\\xdd\\x68\\xb2\\x52\\x95\\x33\\xa0\\xd2\\xa8\\xa2\\xd1\\xa2\\\r\n\\xc5\\xa0\\x6e\\xf2\\x7c\\x3e\\x62\\x61\\xd1\\x2b\\x43\\x69\\x2f\\x4b\\x86\\xf4\\\r\n\\x25\\x40\\x07\\xf3\\x58\\x1b\\x61\\x58\\x81\\x33\\x4b\\xa4\\x26\\x0a\\x0e\\x0c\\\r\n\\x6f\\xd3\\x1b\\x84\\xc7\\xbe\\xb2\\xe3\\x35\\x75\\xf4\\x9c\\xe0\\x6b\\x4c\\x06\\\r\n\\xbb\\x5e\\x8f\\x33\\xce\\xba\\x1b\\xa7\\x9f\\x98\\x1d\\xe2\\xaa\\xc8\\x35\\xe6\\\r\n\\x5f\\x68\\xcf\\xb0\\x7e\\xe0\\x27\\x23\\x28\\xdb\\x09\\x7c\\x2f\\x52\\x07\\x30\\\r\n\\xf4\\xf0\\xec\\x59\\x16\\xf6\\x46\\x3f\\xdf\\xb9\\x4b\\xaa\\x15\\x62\\x83\\xb6\\\r\n\\xc4\\x39\\x4c\\x61\\x21\\xe8\\x96\\xd0\\x00\\x8a\\xfc\\x88\\x7c\\xc4\\x2f\\x55\\\r\n\\xa8\\x0a\\x96\\xb6\\x28\\xd3\\xa2\\x7b\\x9f\\x23\\x07\\x22\\x52\\x2b\\xe9\\xff\\\r\n\\x00\\x1f\\x8c\\x40\\x71\\x2d\\x25\\x2e\\xa6\\xd7\\xa5\\x6a\\x6d\\x36\\xba\\x5d\\\r\n\\x86\\x32\\xaf\\x15\\x95\\x24\\x61\\xe2\\x92\\x92\\xb5\\xda\\x0e\\x1e\\x57\\x40\\\r\n\\xa3\\xe3\\xcb\\x1c\\xb7\\x4c\\x1d\\x48\\x2e\\x0e\\x9d\\x3c\\xb3\\x7b\\x57\\x34\\\r\n\\x8e\\x0c\\x9c\\x30\\xaf\\xbe\\x88\\x57\\x47\\xbe\\x82\\xa4\\x5c\\xc5\\xcc\\x8a\\\r\n\\x6e\\x74\\x00\\x59\\x19\\x7d\\x73\\x11\\xd4\\x24\\x03\\x72\\x6e\\x16\\xed\\xf8\\\r\n\\x0b\\x5c\\x97\\x1b\\x41\\x9c\\xb5\\x3e\\x92\\x70\\x44\\xec\\x00\\x21\\x61\\x80\\\r\n\\xfd\\x4e\\x14\\x04\\x40\\x4d\\x0d\\x06\\xb9\\x06\\x50\\x75\\xb5\\x16\\xd8\\xad\\\r\n\\x6e\\xf2\\x8e\\x4a\\xd1\\x67\\x20\\xcf\\x53\\x8b\\xc7\\x56\\xc4\\x37\\xae\\x9d\\\r\n\\xa3\\x94\\x3b\\x77\\xb8\\x0f\\x57\\x20\\xda\\x60\\xd8\\xab\\x4b\\xe8\\xed\\xa9\\\r\n\\x59\\xed\\x3e\\xb1\\xff\\x00\\xc4\\x77\\xde\\xe0\\x40\\xd4\\x31\\xb0\\x87\\xa8\\\r\n\\xfe\\x10\\x18\\x9d\\x74\\xa2\\xd8\\x5a\\x7d\\x61\\x08\\x47\\x29\\xfa\\x13\\x45\\\r\n\\xf2\\x83\\xef\\xc2\\x74\\x3b\\x04\\x07\\xdd\\x30\\x77\\xf7\\x84\\xb0\\xda\\x99\\\r\n\\x0e\\x7f\\x9a\\xfd\\x73\\x9d\\x99\\x04\\x1a\\x94\\xe9\\x1f\\xde\\x38\\x03\\x40\\\r\n\\xf7\\xfa\\x1e\\x7f\\xe2\\xe1\\x23\\x81\\xa7\\x08\\xd4\\x42\\x00\\x02\\x49\\x82\\\r\n\\x08\\x39\\xc2\\x2b\\x99\\xae\\xc4\\xc4\\xd3\\x53\\x06\\x96\\x2c\\x77\\xaf\\x4e\\\r\n\\xe2\\x24\\xfc\\xbe\\x60\\x40\\xcd\\xf9\\x67\\xff\\x00\\xb3\\x59\\xad\\x31\\x4a\\\r\n\\xd4\\x3f\\x34\\x0f\\xee\\xbc\\xc6\\xe0\\xaa\\xb5\\x51\\x30\\x24\\xa3\\x92\\x14\\\r\n\\x4b\\x12\\x69\\xf6\\x1c\\xed\\x5b\\x17\\x4e\\xcc\\x80\\x3f\\x60\\xae\\xa4\\x47\\\r\n\\x98\\xbc\\x11\\x48\\xbf\\xec\\xa2\\xc9\\x6f\\x8b\\xcc\\x45\\x14\\x21\\x0a\\x1d\\\r\n\\x3c\\x7f\\xfb\\xff\\x00\\xc5\\xaa\\x85\\x26\\xbb\\xdb\\x7d\\x11\\xf8\\x41\\x72\\\r\n\\x38\\x05\\x22\\xd7\\x91\\xaa\\x83\\xd1\\xc4\\x40\\xbe\\xbd\\x14\\x35\\x09\\xa8\\\r\n\\xeb\\xc5\\x43\\x20\\x07\\x95\\xb3\\x4c\\x6b\\x5d\\xd1\\xa3\\x9b\\x5b\\x4b\\xc8\\\r\n\\x76\\xd3\\x0b\\x05\\xec\\xc6\\x1d\\x32\\x08\\x74\\xc8\\xe2\\xc4\\xc6\\xc2\\x71\\\r\n\\x8f\\x30\\xfc\\xc6\\xb7\\xa5\\x83\\x72\\x4e\\xcc\\x26\\x78\\x13\\x98\\x97\\x79\\\r\n\\x13\\x40\\x6a\\x0e\\xc6\\xc2\\x10\\x97\\x26\\x05\\x49\\x2f\\xf6\\x44\\x0f\\x3a\\\r\n\\x2d\\x19\\x94\\x60\\xe1\\x47\\x11\\x40\\x29\\x8e\\xd1\\x2d\\x2c\\x09\\x1f\\x1b\\\r\n\\x95\\x06\\xae\\x8b\\x04\\x19\\x2a\\x90\\xd2\\xda\\x77\\xca\\x49\\xa9\\xdb\\xe1\\\r\n\\xb4\\x3a\\x77\\x40\\x34\\x38\\xb9\\x12\\xfc\\x56\\x66\\xe0\\x04\\x55\\x95\\xe8\\\r\n\\x4e\\x92\\x89\\x3e\\xfe\\x7b\\xbc\\x07\\x9c\\xea\\xc8\\xb6\\x29\\x08\\xe1\\xa6\\\r\n\\xe8\\x95\\x47\\xb0\\x35\\xa5\\xc2\\xeb\\x22\\x29\\xe8\\x37\\xfc\\xc3\\x73\\xa4\\\r\n\\xc7\\x02\\x1a\\x89\\x3d\\xa3\\x36\\xcf\\x77\\x9b\\x8a\\xdb\\x06\\xaf\\xc2\\xc0\\\r\n\\x88\\xe9\\xa7\\x73\\xa9\\xb0\\xe4\\x66\\xfb\\x53\\x41\\x3d\\xf8\\xe4\\x00\\x52\\\r\n\\x84\\xf5\\x3d\\x77\\xbc\\xf8\\xdd\\xb4\\x94\\x83\\x5c\\x74\\x5b\\x49\\x54\\x44\\\r\n\\x0c\\x81\\x9e\\xc6\\xf0\\x83\\x59\\xb9\\xa2\\x06\\x42\\xd7\\x99\\x22\\xe3\\x9a\\\r\n\\x45\\xaf\\x56\\x6c\\x6c\\x38\\xe3\\xa9\\x29\\xa6\\xb3\\xa4\\xd4\\x30\\xb7\\x13\\\r\n\\x26\\xdb\\x43\\x38\\x43\\x7c\\x8e\\x60\\xe8\\x44\\x84\\x06\\x8f\\xa7\\xd1\\xa1\\\r\n\\x74\\x03\\x87\\xe4\\x87\\x18\\x04\\x4a\\xff\\x00\\x84\\x32\\xbe\\x83\\x59\\x99\\\r\n\\x17\\x33\\x55\\xd5\\xa8\\xca\\x27\\x86\\xb4\\x84\\xba\\x03\\xb8\\x06\\xf3\\x7a\\\r\n\\x58\\xa4\\x63\\x04\\xd1\\x1d\\x42\\xda\\xe0\\xc3\\xc0\\x92\\x3c\\x2c\\x50\\x23\\\r\n\\xc5\\xb1\\xe0\\x22\\xc6\\x99\\x06\\xf8\\xd9\\x15\\xd9\\x64\\xb8\\x62\\xa7\\x82\\\r\n\\xe4\\x3c\\x14\\xb5\\x77\\x1a\\x5b\\xb2\\x96\\x72\\x51\\xd0\\x3f\\x8a\\xb8\\x9e\\\r\n\\x00\\xb2\\x19\\xa3\\x26\\x34\\x70\\x01\\x62\\xe4\\x0e\\x88\\x81\\x47\\x2d\\xa9\\\r\n\\x01\\x18\\x80\\x96\\x07\\xda\\x20\\x3b\\xc3\\x7c\\x46\\x72\\x0b\\xc5\\x55\\x66\\\r\n\\xaa\\xfa\\xbf\\x72\\x39\\x65\\x83\\x2a\\x05\\x40\\xbc\\x15\\x68\\xda\\xcc\\x83\\\r\n\\xf0\\x57\\xf7\\x76\\x8b\\x58\\x5b\\x1c\\x61\\xd0\\x82\\xb5\\x8d\\xb5\\xa9\\x15\\\r\n\\x2b\\x31\\xa7\\xe6\\x64\\xe0\\xc2\\x93\\xc3\\xac\\x6e\\x0d\\xea\\x27\\xf3\\xff\\\r\n\\x00\\x7f\\xb9\\x22\\x1b\\x14\\xf2\\x3f\\x5f\\x75\\xfe\\x72\\x6b\\x60\\x3a\\xf7\\\r\n\\xf9\\xf0\\xf3\\x3a\\x50\\xe5\\x7d\\x52\\x10\\x0a\\xc8\\x41\\x35\\xcd\\xc6\\xe8\\\r\n\\xfd\\xb6\\x3a\\x74\\x2b\\xa8\\x3e\\xe1\\x42\\x03\\x31\\x1d\\x85\\xc8\\x88\\x45\\\r\n\\x3e\\x1b\\xc6\\x0b\\xde\\xc8\\x82\\xfe\\x00\\x41\\x64\\xba\\xf3\\xed\\x80\\x09\\\r\n\\xa1\\xb4\\xd0\\xfd\\xc8\\x08\\xd8\\x4b\\xee\\xe0\\xb7\\xf0\\x5f\\xb8\\x06\\xe1\\\r\n\\xbb\\x49\\xc0\\xf9\\x27\\xa9\\x7d\\xc0\\x0f\\x66\\x9a\\x30\\x7a\\x89\\xdb\\x95\\\r\n\\x83\\xb9\\x09\\x2f\\x7b\\xff\\x00\\x9f\\xb9\\x6e\\x1b\\x53\\xaa\\x04\\x1f\\xb3\\\r\n\\xf4\\x2b\\x88\\x45\\x7d\\x22\\x99\\x32\\x66\\xe1\\x21\\x60\\x51\\x31\\xa7\\x56\\\r\n\\xa6\\x97\\x59\\xa9\\x4f\\x2e\\x1c\\x3e\\xd3\\xd6\\x92\\x60\\x62\\x07\\x64\\xdd\\\r\n\\xb3\\x6a\\x13\\x73\\xd2\\xfe\\xe8\\xed\\xe1\\xc0\\xe9\\xe5\\x4a\\x4c\\xed\\x51\\\r\n\\x01\\x61\\x3e\\xa9\\x68\\x0e\\x69\\x3d\\x1e\\x72\\x95\\xe0\\x68\\xbe\\x38\\xaf\\\r\n\\xd9\\x5a\\x08\\x56\\x03\\x04\\xf8\\xde\\x86\\x49\\x5a\\x47\\x5a\\xd3\\x33\\x9a\\\r\n\\xb9\\x68\\xe1\\xdd\\x66\\x24\\x6f\\xb6\\xad\\x06\\x17\\x70\\x23\\x52\\x82\\x2b\\\r\n\\x4f\\x20\\x89\\xd9\\xd4\\x09\\xdc\\x63\\x8b\\xa5\\xd6\\x1b\\xf7\\x76\\xa9\\x20\\\r\n\\x96\\xd0\\xa9\\x0e\\xc7\\x23\\xf9\\xdd\\x12\\x12\\x07\\xe3\\x8a\\x0f\\x37\\x88\\\r\n\\xe1\\x57\\xb5\\x07\\x62\\x5a\\xf0\\x00\\x06\\x82\\x25\\x62\\x8c\\xb0\\x28\\x2b\\\r\n\\x45\\x17\\x34\\x1f\\x02\\xf9\\xc7\\xbc\\x63\\x0a\\xbd\\xba\\x2a\\x44\\xe0\\x3f\\\r\n\\x18\\x1f\\x93\\xd5\\x83\\x01\\x7f\\xa7\\xa1\\x47\\x3a\\x27\\x4a\\xba\\xc6\\x4a\\\r\n\\xe8\\xe6\\xf6\\x07\\x8f\\xe9\\xbf\\xce\\x0c\\x6e\\xcb\\x0b\\x33\\x53\\x63\\xab\\\r\n\\xaf\\xef\\x31\\xb5\\xf7\\xf5\\xac\\xbb\\x08\\x04\\xbe\\xcf\\xb7\\x37\\x4d\\x71\\\r\n\\x2e\\x50\\x22\\x80\\x96\\xc3\\x93\\x24\\x00\\x68\\x14\\x4a\\xff\\x00\\x49\\xd3\\\r\n\\x71\\xdc\\x12\\x82\\xae\\x16\\xa3\\x60\\x6f\\xa9\\x05\\x9a\\x4d\\x58\\x15\\x7d\\\r\n\\xae\\xad\\x8c\\x88\\xb3\\x57\\x78\\xf9\\x2d\\x5a\\x98\\x10\\x54\\xd3\\x74\\xc1\\\r\n\\x6f\\x54\\xbf\\x34\\x23\\xe0\\xf5\\x7d\\x10\\x3d\\xbf\\x57\\x9f\\x2c\\xf8\\xc0\\\r\n\\x2c\\x24\\xbc\\x20\\x23\\x31\\xc8\\xb6\\xfe\\x93\\x31\\xbb\\xc4\\xe9\\x42\\xb6\\\r\n\\x0e\\x52\\x5c\\x0d\\x53\\x58\\x58\\xcb\\x16\\x67\\xb2\\x88\\x1d\\xc5\\x5c\\xd2\\\r\n\\xc3\\x1c\\xa8\\x84\\x14\\x36\\xfd\\x03\\xd6\\x86\\x11\\x1a\\x38\\x2b\\xae\\x4e\\\r\n\\x04\\xbc\\x91\\x13\\xa2\\xe9\\xfd\\x56\\x30\\xbe\\x0c\\x84\\x0b\\x89\\xe6\\xfa\\\r\n\\x1c\\x9e\\x11\\x22\\xc0\\xfb\\xd7\\x14\\x2b\\x3c\\x74\\xec\\xd2\\x25\\x11\\x71\\\r\n\\x7b\\x15\\x19\\x34\\x70\\x20\\x32\\x0a\\x2c\\x95\\x26\\x68\\x07\\x18\\x59\\x8d\\\r\n\\x30\\x0a\\x0d\\x21\\xd8\\x2c\\x9f\\xb0\\x24\\xad\\x88\\x00\\x53\\x69\\x17\\x78\\\r\n\\x8b\\x85\\x3b\\x78\\xaf\\x44\\x55\\x25\\x60\\xb8\\x0b\\x42\\xc3\\xd0\\x8a\\xd4\\\r\n\\xa4\\xcc\\x26\\x39\\x9f\\x0d\\x6a\\x11\\x39\\x74\\xb1\\x0e\\x18\\xba\\x4c\\xce\\\r\n\\x61\\x07\\x62\\x61\\xc0\\x98\\x06\\x04\\x21\\x5b\\x04\\x6e\\xb5\\x7d\\xa2\\xf6\\\r\n\\x2e\\x4c\\xdd\\xfb\\xef\\xf7\\x36\\x92\\x1e\\xf3\\x7f\\x87\\xff\\x00\\x99\\xfb\\\r\n\\xab\\xb0\\x04\\x05\\xe9\\x0c\\x6d\\x46\\x36\\xb5\\x22\\xc3\\x9a\\x1c\\x51\\x8b\\\r\n\\xe4\\x98\\x31\\x08\\x5a\\x43\\xb8\\xa2\\x92\\x84\\x70\\x01\\x30\\xfa\\xf4\\x30\\\r\n\\x5d\\x68\\xee\\xb5\\x87\\x72\\xa3\\xd6\\x1e\\xc3\\xe3\\x3d\\xf7\\xcc\\x03\\x90\\\r\n\\x5d\\x8c\\x02\\xf8\\x9f\\x37\\x5d\\x63\\x3e\\xfb\\x19\\x7d\\xb2\\x19\\x45\\xe8\\\r\n\\x3d\\x39\\x77\\x5e\\x7e\\x95\\x47\\x1f\\xd3\\x02\\x6e\\x15\\x0e\\xfa\\x8b\\x55\\\r\n\\xc5\\x80\\x8a\\x3c\\xe1\\x5d\\x8f\\xbd\\x21\\xf1\\xf3\\x6e\\xa6\\xe0\\xaa\\x22\\\r\n\\xed\\xad\\x05\\x7a\\x34\\xa6\\x2a\\x86\\x06\\xa7\\x36\\x8e\\xc2\\xb7\\x58\\x50\\\r\n\\x35\\x30\\x8e\\x2d\\x19\\x40\\xc5\\x00\\x47\\x71\\x08\\xa4\\xea\\x37\\xc2\\xd1\\\r\n\\xc0\\x30\\x00\\x76\\x81\\x30\\x52\\x72\\x46\\xc2\\x90\\x4c\\x9f\\xbc\\x5c\\x1d\\\r\n\\x3d\\xe6\\x95\\x15\\xce\\x42\\x81\\x91\\x1c\\x07\\x84\\xdf\\xab\\xe5\\x50\\x61\\\r\n\\x99\\xee\\xc2\\x05\\xa4\\x16\\x59\\x3d\\xc6\\x58\\x9b\\xc8\\x89\\xb0\\x19\\x17\\\r\n\\x0c\\x30\\xc9\\x2b\\xa0\\x1e\\xad\\x50\\x29\\xe7\\x6d\\x62\\xc9\\x4d\\xd5\\x34\\\r\n\\xd3\\xb1\\x34\\x14\\xa4\\xac\\x69\\xc2\\x74\\x26\\x51\\xc2\\x45\\x01\\x58\\xe2\\\r\n\\x8f\\x85\\x0e\\xdb\\x7d\\x45\\xdd\\xb7\\xd9\\x58\\x32\\x68\\x14\\x75\\x12\\xbf\\\r\n\\x51\\x36\\x83\\xf3\\x86\\x68\\x01\\x7b\\xc2\\x29\\xeb\\xf9\\x65\\xb0\\xc8\\x2f\\\r\n\\xaa\\x54\\x20\\x80\\x40\\x11\\xf9\\xb2\\xcc\\x0c\\x07\\x76\\xe9\\x20\\x03\\x5e\\\r\n\\xcc\\x78\\x7c\\x33\\x45\\xa6\\xc6\\x9b\\x5f\\x0d\\x18\\x46\\x54\\xa5\\x04\\x8d\\\r\n\\x93\\x85\\x05\\xef\\xbc\\xc1\\x92\\x93\\x06\\xad\\xbd\\xf0\\xd4\\x49\\xcc\\x1f\\\r\n\\xc4\\xae\\xea\\x37\\xe4\\xa5\\xf1\\x0a\\x39\\x36\\x16\\x24\\x3c\\xee\\x63\\xc9\\\r\n\\x16\\x7d\\x70\\x54\\x3b\\x42\\x14\\x9d\\x7e\\x24\\x1f\\x5b\\x5c\\x0b\\x91\\xca\\\r\n\\x2b\\x92\\x86\\xae\\x11\\x2a\\xd6\\xf9\\xd1\\x66\\x68\\x6e\\x5b\\xfc\\x2f\\x36\\\r\n\\x12\\xc8\\x64\\x23\\x82\\x0a\\xf6\\x8f\\x3f\\xe8\\x4c\\xb4\\x61\\x6c\\xa4\\x5b\\\r\n\\x12\\xad\\x06\\x81\\x40\\x26\\x06\\x78\\xdc\\x2e\\x16\\xda\\xa7\\xc0\\x72\\x2e\\\r\n\\xa6\\x2c\\x36\\xa6\\xba\\x0c\\x41\\x66\\xc6\\x69\\xdb\\x60\\xd8\\x83\\x84\\x1b\\\r\n\\x8b\\xe8\\x5f\\x7d\\x0c\\x38\\xd3\\xae\\x04\\x21\\xaa\\x02\\x40\\x2e\\xbd\\x72\\\r\n\\xc3\\x8d\\x30\\xc6\\x2d\\x37\\xef\\x53\\x43\\x61\\x2d\\x5b\\xa0\\x35\\x81\\xd6\\\r\n\\x6c\\x12\\x96\\xb5\\x3a\\xe1\\xa6\\x08\\x2d\\x57\\x56\\x29\\x74\\x12\\x22\\x8e\\\r\n\\x44\\x21\\x89\\x25\\xac\\x70\\x92\\xa8\\x80\\x6f\\x16\\x88\\xbc\\x2e\\x2e\\xba\\\r\n\\x52\\x2a\\x6e\\xab\\x95\\x91\\x18\\xac\\x59\\x40\\x1d\\x28\\x90\\x50\\x40\\xe1\\\r\n\\x58\\x7f\\x0c\\x13\\x14\\x9c\\xd8\\xd9\\x4d\\xc5\\x3a\\x16\\x9d\\x70\\x69\\xa2\\\r\n\\x10\\x95\\xd1\\xca\\xb7\\x12\\x34\\x88\\xf5\\xbb\\x21\\xae\\x63\\x90\\xc0\\x56\\\r\n\\x0d\\x4f\\xb3\\x30\\xbc\\x71\\x78\\x96\\x91\\x41\\x3d\\x4a\\xfa\\x21\\x2c\\xd6\\\r\n\\x23\\x3a\\x38\\x59\\x4f\\x75\\x61\\x13\\xf2\\xb1\\x2d\\x19\\xcd\\x42\\x47\\xd5\\\r\n\\x6d\\x7b\\xa6\\xd7\\x29\\x7a\\x87\\x55\\x0e\\x31\\xdd\\xfe\\xed\\x62\\xd7\\xd6\\\r\n\\xda\\x79\\x04\\x85\\x7c\\xd8\\x0f\\x19\\x21\\xc6\\x22\\x7d\\x68\\xdc\\xda\\x25\\\r\n\\xa8\\x9b\\x2d\\x48\\x61\\xf8\\x81\\xdf\\x7e\\xff\\x00\\x73\\xa5\\xfb\\xf7\\x05\\\r\n\\x27\\x1c\\x6f\\x35\\x1b\\x90\\xba\\x18\\x14\\xd5\\x12\\x6a\\x8f\\x7f\\xcc\\x8a\\\r\n\\x99\\x3d\\x0f\\xc0\\x77\\xef\\x8b\\xc1\\xc6\\x6d\\x0d\\xb1\\x80\\x3f\\x08\\x8e\\\r\n\\x4f\\x98\\x8c\\xe9\\x91\\x43\\x44\\x32\\xd4\\x69\\x4c\\xec\\x20\\xc4\\x38\\x6f\\\r\n\\x0b\\x11\\xd2\\x81\\xee\\x6c\\x26\\xee\\xf8\\x10\\x1e\\xf8\\xeb\\xf4\\xe0\\x72\\\r\n\\x82\\x02\\x03\\x57\\x38\\x0c\\x88\\x3b\\xd1\\x27\\x64\\xa4\\x0c\\xbc\\x94\\xd5\\\r\n\\x85\\x1d\\x8c\\x20\\x29\\x11\\x46\\x02\\x8a\\xbd\\x54\\xc0\\x33\\x8b\\x09\\x4a\\\r\n\\x26\\x30\\x1f\\x5b\\x3d\\x8a\\xf0\\x4e\\x66\\x14\\x03\\x3a\\xe8\\x52\\x18\\x03\\\r\n\\x34\\x9f\\x92\\x8e\\x68\\x02\\x69\\x08\\x4b\\x9c\\x28\\xd4\\x46\\xc8\\xae\\x1b\\\r\n\\xbe\\x11\\x03\\x22\\x9c\\x7f\\xc1\\x4c\\x8c\\xc2\\xaf\\x85\\x8c\\x6c\\x44\\x54\\\r\n\\x06\\xe3\\xc4\\x92\\x63\\x17\\x05\\xf4\\x23\\xf2\\xc5\\x47\\x81\\x39\\x92\\xc2\\\r\n\\xd9\\xb2\\x47\\xf0\\x07\\x17\\x5c\\x82\\x1d\\x9f\\xed\\xa7\\x58\\xd4\\x06\\x40\\\r\n\\x34\\x32\\x7d\\x44\\x0d\\xee\\x0d\\x88\\x40\\x26\\x91\\x03\\x03\\xa8\\x6e\\xc5\\\r\n\\x15\\xfd\\x03\\x98\\x46\\x32\\xec\\x30\\x2f\\xad\\x05\\xa8\\xbf\\x17\\x90\\x42\\\r\n\\x04\\x79\\xcf\\xb5\\x8e\\xed\\x68\\x0e\\x0c\\xef\\x6a\\x4e\\x42\\x23\\x26\\xf7\\\r\n\\xd5\\x86\\xc1\\x6d\\x00\\xe7\\x1c\\x02\\xb2\\x66\\x25\\xc7\\xbe\\x2d\\xf0\\xd0\\\r\n\\x10\\x4f\\x96\\x1d\\x61\\xb0\\x81\\x19\\x55\\x24\\x80\\x05\\x7e\\x3f\\x0c\\xbc\\\r\n\\xfb\\xf8\\xb1\\x68\\xd6\\x09\\x29\\x04\\xcd\\x31\\x3b\\x81\\x89\\x62\\x02\\xbb\\\r\n\\x48\\x37\\xdf\\x3b\\x54\\x02\\x1e\\xf2\\x32\\xed\\xd6\\x10\\x70\\x55\\xe7\\x2f\\\r\n\\xdc\\xb0\\xd4\\xf9\\x3f\\x49\\xec\\x5f\\x14\\x17\\x02\\x06\\xe1\\x04\\x12\\x69\\\r\n\\x01\\xae\\xd1\\x15\\x00\\x54\\xfa\\xc0\\x1e\\xa5\\xe6\\x56\\x58\\x9c\\x85\\x96\\\r\n\\x9c\\x3d\\xb5\\xab\\x0d\\x1a\\x0b\\xa1\\x84\\xa1\\x72\\x5f\\x70\\x3b\\xe7\\x66\\\r\n\\xc3\\x81\\x6b\\x94\\x01\\x0a\\x1a\\x38\\x70\\x86\\xd0\\x8d\\xf0\\xc1\\x1c\\x1a\\\r\n\\xdd\\xc9\\x95\\x76\\x0f\\xb9\\x1d\\x86\\x84\\x96\\xde\\x2c\\x55\\xc6\\x63\\xa1\\\r\n\\xd9\\xe3\\x51\\xba\\x0c\\x35\\x28\\x11\\x22\\x7e\\x94\\x3d\\x47\\xeb\\x04\\x82\\\r\n\\x43\\xad\\xae\\x55\\x7e\\x1f\\x0e\\xc4\\xe5\\x4f\\x06\\x0d\\x68\\x5d\\xa1\\xb1\\\r\n\\x1f\\x07\\x41\\xb5\\xa4\\xd3\\xb0\\x10\\x26\\xcc\\xb6\\x42\\xf6\\x87\\x45\\x0d\\\r\n\\xa6\\xc4\\x03\\x56\\xf4\\x1c\\xf9\\x27\\xf8\\xd9\\x3c\\x97\\x01\\x09\\x18\\x10\\\r\n\\x35\\x34\\x06\\xd7\\x8e\\x01\\x76\\xcb\\x07\\x31\\x9a\\x8e\\x06\\xa3\\xd7\\x9d\\\r\n\\xf7\\xb8\\x5f\\xac\\x55\\x5b\\x23\\x04\\x25\\x7a\\x8b\\x13\\xd9\\xde\\xed\\x75\\\r\n\\x35\\xbd\\x47\\x33\\xbb\\x2e\\x38\\xf7\\x05\\x06\\x4a\\xd1\\xe3\\x4e\\x5a\\x58\\\r\n\\xcf\\x5e\\xe2\\x53\\xd4\\x91\\x95\\x78\\x44\\x94\\x0d\\xe3\\xab\\xdf\\x1d\\x0d\\\r\n\\x0a\\xfc\\xe6\\x42\\xed\\xa3\\x54\\x8a\\xd7\\x7a\\x74\\x7a\\xd6\\x45\\xec\\xf9\\\r\n\\xbc\\x67\\xcb\\xe8\\x5d\\xcd\\x92\\xcf\\x27\\x70\\x16\\x16\\x90\\xc1\\xf2\\x7c\\\r\n\\xc7\\x94\\x18\\x6e\\xd5\\xe3\\xff\\x00\\x7f\\xb8\\xe3\\x10\\xbc\\x15\\xa1\\xde\\\r\n\\xf3\\xf3\\xbf\\xd6\\x27\\x6e\\x1c\\xf1\\xb8\\x07\\xd2\\xb3\\x0a\\x40\\x7f\\xd0\\\r\n\\x88\\x70\\xb4\\x1c\\x87\\x99\\xb2\\x6b\\x0f\\x92\\x88\\xd4\\x16\\x1d\\xa1\\x90\\\r\n\\x96\\x1d\\x24\\xe9\\x56\\x6d\\x1a\\xfc\\x28\\x18\\x07\\x49\\x7f\\xba\\x69\\x6e\\\r\n\\x60\\x83\\x68\\x6d\\x11\\x0b\\x45\\x99\\x66\\xb4\\x75\\xa0\\xa9\\x46\\x53\\x47\\\r\n\\x9e\\x84\\x0c\\x99\\xba\\x33\\x24\\x45\\x30\\x21\\x64\\x21\\x45\\x20\\x70\\xde\\\r\n\\x6e\\x44\\x78\\x79\\xfa\\x07\\x35\\xdc\\x5a\\x99\\x48\\xdc\\x3c\\xa5\\xa5\\x88\\\r\n\\x2a\\x88\\x4c\\x99\\x7e\\xd4\\x0e\\xc7\\x46\\x59\\x48\\x1c\\x92\\x0c\\x88\\x70\\\r\n\\x74\\x7b\\x70\\x85\\x16\\x50\\x8b\\xc3\\x06\\xbb\\x6d\\x9d\\xf1\\x8f\\x56\\xd7\\\r\n\\xd0\\x16\\x83\\xd0\\x03\\x48\\xea\\x28\\xc7\\x75\\x4a\\x3f\\x28\\x10\\x43\\xc8\\\r\n\\xf0\\x0d\\x1d\\x56\\x58\\xe4\\x2c\\xc5\\x7f\\x55\\x18\\xac\\x93\\x76\\x48\\xc0\\\r\n\\x51\\x3e\\x96\\xe6\\x11\\xae\\x3a\\x07\\xbd\\xbd\\x86\\x3f\\x6d\\xeb\\x1c\\xdc\\\r\n\\x7b\\x69\\x2d\\x07\\xaf\\x4f\\x46\\xf1\\x0a\\x80\\x1f\\xa4\\x7d\\x33\\x00\\x26\\\r\n\\x30\\xb1\\x49\\xfb\\x6e\\xa9\\xd0\\xbe\\x86\\x96\\xb0\\x7c\\x6a\\x74\\xbe\\xb0\\\r\n\\x38\\x9d\\xa2\\xb6\\x92\\xe1\\xc5\\xe4\\x0c\\x44\\x09\\x10\\x64\\xd8\\x3b\\xca\\\r\n\\x58\\x7d\\xc6\\x97\\xe3\\xa8\\x91\\x77\\x9d\\xdf\\xe8\\x08\\x71\\xd8\\x7e\\x62\\\r\n\\xb0\\xb4\\x69\\x41\\x03\\x4c\\x40\\xc7\\xf9\\xf9\\x9a\\x24\\xd7\\x32\\x9b\\xc2\\\r\n\\xa0\\x42\\x26\\xc2\\xe1\\x02\\x21\\x25\\x16\\xd2\\xfa\\xc6\\x88\\x35\\xde\\x6d\\\r\n\\xa0\\xe3\\xdf\\x9e\\xff\\x00\\xf3\\x25\\x6d\\xa6\\xb9\\xff\\x00\\x00\\x7f\\xc6\\\r\n\\x6e\\xb8\\x0f\\xf7\\xde\\xb4\\x22\\xb6\\xbf\\x18\\x32\\xdb\\x43\\x0f\\x11\\x20\\\r\n\\xf8\\x01\\xd1\\xc6\\x45\\x82\\x5a\\x5b\\x1a\\x77\\xe2\\x68\\xdf\\x18\\xa0\\x3b\\\r\n\\x8e\\xb1\\x8f\\x4b\\x31\\x8b\\x41\\x52\\xc2\\xdc\\x5d\\xa1\\x01\\xc1\\x63\\x60\\\r\n\\x0c\\x02\\x22\\xd8\\xa6\\x94\\x23\\xa2\\xac\\x8c\\x6d\\x98\\x09\\x50\\xa3\\xa5\\\r\n\\x66\\x4d\\x8e\\xa6\\xae\\xcc\\xad\\xe3\\x19\\x9e\\x05\\xaf\\x26\\x48\\x72\\x6a\\\r\n\\x2a\\x70\\x19\\x68\\x8d\\x8c\\x78\\x83\\x8d\\x09\\x6f\\xe3\\xd0\\xd1\\x33\\xf9\\\r\n\\x1a\\xde\\x6e\\xab\\x5c\\x2b\\x75\\xe1\\x7d\\x16\\x91\\x1d\\x74\\xdf\\x90\\xd4\\\r\n\\x44\\xed\\x79\\x51\\xe9\\x81\\x9c\\x20\\x73\\xb6\\xa6\\xf4\\x4f\\x95\\x6e\\x42\\\r\n\\x9a\\x09\\x1d\\x7f\\xba\\xbc\\x2a\\x35\\xc4\\xa5\\xbe\\x07\\xf9\\xa1\\x58\\x00\\\r\n\\x2c\\x3a\\xf4\\x94\\x33\\x22\\x59\\xfa\\x1a\\x2b\\x86\\xca\\x80\\x1e\\x29\\x05\\\r\n\\x20\\x21\\x01\\x59\\xb1\\x23\\x54\\x1a\\x0d\\x5a\\xc1\\xa1\\xc9\\x96\\x75\\x8a\\\r\n\\xd2\\xdc\\xd2\\x3e\\xd2\\x25\\x23\\x3c\\xf4\\x25\\x09\\x5a\\xd4\\x5f\\x67\\x73\\\r\n\\xb4\\x03\\xfa\\xdd\\xa9\\xf7\\x37\\x57\\xbe\\xad\\x73\\x54\\x93\\x70\\x0b\\x1a\\\r\n\\x6c\\xee\\xff\\x00\\x9f\\x92\\x5a\\x92\\xda\\x5f\\xad\\x03\\x5a\\x1b\\x1e\\x95\\\r\n\\x49\\x5a\\xfd\\x13\\x99\\xa7\\x13\\xfd\\x61\\xe9\\xd6\\x84\\xb1\\x10\\x87\\x12\\\r\n\\x9a\\xe7\\xdc\\xb5\\x2e\\x4a\\x3f\\xf3\\xfe\\x73\\x44\\x0c\\xaa\\x3e\\x6f\\xf5\\\r\n\\x33\\x4f\\xf1\\x75\\x01\\xaf\\xdf\\x7f\\xcb\\x88\\x4e\\x30\\x31\\x55\\x88\\xf3\\\r\n\\xb3\\xfc\\x77\\x11\\xd8\\x92\\x20\\xd6\\x53\\xc8\\x57\\xf3\\x82\\x4b\\xb1\\xf0\\\r\n\\xe3\\x5e\\xdb\\x02\\x1a\\x45\\xb2\\xe2\\x37\\xdb\\x5b\\x8b\\x56\\xdc\\x72\\xb5\\\r\n\\xc1\\x11\\x6b\\x04\\x85\\x6b\\x5b\\x86\\x70\\xd5\\x0c\\x65\\x30\\x5d\\x66\\x80\\\r\n\\x8e\\x00\\xa8\\xea\\xde\\xa2\\x5a\\x09\\xd5\\x98\\x49\\x98\\xa3\\x11\\x70\\x3b\\\r\n\\x51\\xa0\\x36\\x6e\\xc6\\x91\\x83\\x28\\x88\\x2b\\x21\\xd2\\x64\\xd6\\x8b\\x60\\\r\n\\xf4\\xe6\\xa3\\x61\\xbc\\x32\\xe0\\x01\\x97\\x82\\x43\\xb6\\xbf\\x32\\x55\\x0c\\\r\n\\xf5\\x86\\xe0\\x10\\x6f\\xa8\\x87\\xad\\xbb\\x0b\\x94\\xa3\\x48\\x5e\\x12\\xf0\\\r\n\\x74\\x44\\x34\\x15\\x84\\x29\\x6d\\xe0\\xb0\\xb2\\x37\\xdb\\x62\\xdc\\x30\\x32\\\r\n\\x44\\xd4\\x08\\x73\\x30\\xb3\\x64\\x7d\\x07\\x3e\\x58\\x84\\x45\\x3b\\x0d\\xdb\\\r\n\\xa2\\xdb\\xac\\x92\\xe8\\xe1\\x5a\\xcb\\xc8\\x73\\x76\\xf4\\xb6\\xc1\\xb2\\x9b\\\r\n\\x30\\xa7\\x83\\xb1\\xda\\x69\\x16\\x11\\xc8\\xa2\\x45\\x4d\\x4e\\x47\\xa7\\x5e\\\r\n\\xd3\\x41\\xcb\\x74\\x5f\\xcb\\xfb\\x46\\x0a\\xa0\\x2a\\x87\\x53\\xad\\x24\\xd5\\\r\n\\x3e\\xb8\\xd1\\x07\\x7c\\x1c\\xc4\\x83\\x85\\x10\\x4b\\xb6\\x1c\\xf1\\x9e\\xaa\\\r\n\\xb3\\x4f\\x51\\xe1\\x59\\x1d\\x78\\x5d\\x03\\xbe\\xe4\\x3e\\xb4\\x32\\x07\\x1f\\\r\n\\x00\\x74\\xd9\\xe0\\x7a\\x26\\xb7\\x81\\xfe\\xbf\\xb5\\xfa\\x52\\x24\\x95\\xb3\\\r\n\\x0b\\x49\\xef\\x66\\xca\\x1e\\xb6\\x8f\\xf5\\xf7\\x99\\x79\\x0b\\xb2\\xa5\\xf7\\\r\n\\xe9\\x3f\\xc6\\x32\\x04\\x5f\\xb2\\x36\\x81\\xeb\\xae\\x08\\xfe\\x94\\x4a\\xe9\\\r\n\\xdd\\x3c\\x8d\\x35\\x69\\xd6\\xa3\\x87\\x53\\x21\\xb8\\xfa\\xc7\\xe2\\x43\\xa4\\\r\n\\x0e\\x40\\x32\\x07\\xf5\\x1a\\xbd\\x8c\\xfe\\x01\\x61\\x93\\xdd\\xe0\\x03\\xbc\\\r\n\\xc7\\xc4\\x53\\x29\\xbb\\x11\\x15\\x76\\x85\\xee\\x98\\x75\\x1d\\xf6\\x16\\xda\\\r\n\\x5f\\x6f\\x3a\\xc5\\xa4\\x4c\\x2a\\x1a\\x6f\\x4d\\xa5\\x54\\xb5\\x47\\xcc\\x45\\\r\n\\xb9\\xe9\\x11\\x2c\\x26\\xd8\\x63\\xcb\\x60\\xb6\\x83\\xea\\xf1\\x90\\xd4\\x30\\\r\n\\xda\\x55\\xc6\\x24\\x40\\x31\\x45\\x98\\x89\\xc1\\x60\\xcb\\x57\\xe7\\xc7\\x41\\\r\n\\x10\\x7b\\x83\\x14\\x90\\xc3\\x0a\\xa2\\x74\\x07\\x5d\\x14\\x68\\x07\\x08\\xa6\\\r\n\\x96\\x99\\xb0\\x44\\xbb\\x95\\xac\\x4a\\x5e\\x97\\x38\\x9c\\x1a\\x34\\x15\\xd7\\\r\n\\x00\\x65\\x97\\x31\\xc0\\xe9\\x06\\x7f\\x5d\\x18\\xb5\\xaa\\x91\\x71\\x40\\x10\\\r\n\\x85\\xee\\x18\\xcf\\xa5\\xf7\\xde\\xf4\\x84\\xd4\\xd0\\x13\\x88\\x38\\x67\\xd6\\\r\n\\xaf\\x5a\\xa6\\x21\\xb5\\xab\\x01\\x8b\\x09\\x20\\x03\\x35\\x20\\xb4\\x54\\x26\\\r\n\\x28\\x09\\xd6\\xbb\\x5e\\x08\\x1a\\x32\\x31\\x71\\x06\\x2d\\x21\\x77\\xe0\\xdd\\\r\n\\xea\\xc2\\x9d\\x50\\xd1\\x40\\x2d\\x8b\\x46\\xbe\\x0b\\xd2\\x33\\x76\\x79\\x79\\\r\n\\x89\\x99\\x1f\\xbf\\x58\\x16\\x6b\\xd5\\x83\\xf9\\x28\\xc6\\xc6\\x84\\x32\\xdf\\\r\n\\xf2\\xff\\x00\\x23\\x1e\\x2d\\x00\\x29\\xb0\\x4b\\xd8\\xdd\\x40\\x76\\x19\\xcd\\\r\n\\xc4\\x2b\\xa4\\xff\\x00\\xe3\\x9f\\xf1\\x89\\xe1\\xd9\\x98\\x85\\x7f\\x7a\\xff\\\r\n\\x00\\xce\\x37\\xe5\\xbb\\x73\\x40\\xfd\\x1b\\xe6\\xf1\\x6a\\x7f\\x09\\x90\\x3f\\\r\n\\x0b\\x1f\\x8e\\xfb\\xd4\\xd7\\xdd\\x4e\\xa8\\xd2\\x0e\\x2b\\xbd\\x5b\\x2e\\xf9\\\r\n\\x10\\x79\\xbc\\x6c\\x30\\xba\\x24\\xe1\\xf3\\xd5\\xc2\\x46\\x29\\xb0\\xd7\\x5e\\\r\n\\x18\\x1d\\x83\\xc5\\x2f\\xd3\\x86\\x03\\x81\\x40\\x4b\\xb2\\x0a\\x92\\xd4\\xa5\\\r\n\\xd2\\xf1\\x4d\\x82\\xc0\\x45\\x9a\\xd3\\x46\\xc0\\x06\\x46\\xd2\\x05\\xe2\\xc6\\\r\n\\x39\\x5d\\x31\\x54\\x25\\x08\\xcf\\xf6\\xe4\\x16\\x61\\xac\\x99\\x4c\\x5e\\x13\\\r\n\\xe0\\x00\\x8a\\x20\\x81\\x7a\\x4d\\xa7\\x0e\\x6e\\x5f\\x29\\xc1\\x06\\xa4\\xfa\\\r\n\\x2c\\xd2\\xe0\\xd0\\xe1\\x17\\xb3\\xd6\\xad\\x8c\\x2e\\x5b\\xb2\\x45\\x5f\\x06\\\r\n\\x9f\\x79\\xc1\\x9c\\x5d\\xf7\\x1d\\x3b\\x17\\x1a\\xb1\\x82\\xf3\\x7b\\x1c\\xc8\\\r\n\\xc1\\x27\\x88\\x92\\xf1\\x4f\\xeb\\x5b\\x96\\xa9\\xee\\x4a\\x1b\\x8d\\x11\\xd5\\\r\n\\xf0\\x7e\\x45\\xbe\\x90\\xc8\\x3b\\xb4\\x43\\x86\\xd6\\x04\\x35\\x01\\x57\\xda\\\r\n\\x98\\xca\\x4c\\xa0\\x68\\x02\\x62\\x1f\\x12\\x8a\\xac\\x30\\x7c\\x01\\xd3\\x0f\\\r\n\\x29\\x0a\\x3b\\x04\\x58\\x95\\x98\\x7d\\x82\\x39\\x44\\xee\\xa3\\xfd\\x4d\\x8f\\\r\n\\x9f\\x83\\x8e\\x8c\\x60\\xcb\\x20\\x1b\\x1b\\xb8\\x7c\\x03\\x09\\x71\\xd6\\xa4\\\r\n\\x16\\xa3\\xb0\\x17\\x20\\x02\\x73\\x44\\x90\\x09\\x7a\\xc2\\x05\\xc0\\x64\\x21\\\r\n\\x84\\x38\\x3c\\x5f\\x69\\xc4\\x4d\\x4f\\xb9\\x27\\x3e\\x45\\x32\\xe8\\xea\\xcf\\\r\n\\x11\\x32\\x4d\\x9b\\x02\\x1b\\xdf\\xba\\xf1\\xd4\\xe8\\x24\\xb9\\xa3\\x0c\\x0e\\\r\n\\xba\\x40\\x55\\x7d\\x67\\xe1\\x37\\x9a\\x14\\x68\\x3a\\x72\\x98\\xe9\\x36\\xe0\\\r\n\\x74\\x41\\xe6\\x8d\\xeb\\x50\\xb1\\xda\\x4c\\xb8\\x8a\\x27\\x42\\x6e\\x17\\x59\\\r\n\\xa6\\xaa\\x85\\x4d\\xc2\\x1d\\xad\\x14\\xb1\\x98\\x9d\\xb5\\xad\\x3e\\x89\\x40\\\r\n\\x13\\x01\\x73\\x48\\x6d\\x60\\x13\\x00\\xf0\\x1c\\x58\\x60\\x0a\\x23\\x5b\\x0e\\\r\n\\x46\\x36\\x09\\xc7\\x81\\x2f\\x77\\x7f\\x40\\x7e\\x1f\\x89\\x0b\\xe5\\xc0\\x28\\\r\n\\xac\\x48\\xbe\\xb0\\xce\\x88\\x89\\xa5\\x65\\x5d\\x63\\x30\\x42\\xfd\\x97\\x3e\\\r\n\\xd8\\x75\\x44\\x4f\\x03\\x82\\x1e\\xa4\\x5c\\x05\\x99\\xc3\\x84\\x85\\x0a\\x1e\\\r\n\\xa7\\x9f\\xf3\\x02\\xf3\\x7a\\xc1\\xc2\\x81\\x0a\\x81\\x59\\xbc\\x38\\x44\\x46\\\r\n\\x0d\\x28\\x8b\\x51\\xbc\\xc5\\x82\\x7e\\x84\\xc8\\xb4\\x76\\x1a\\x16\\xe7\\xc9\\\r\n\\x88\\xe0\\xc2\\x59\\x94\\x59\\xef\\x2f\\xbd\\xde\\xa0\\x31\\x39\\x39\\x50\\xec\\\r\n\\xb3\\x7f\\xc3\\x3e\\x18\\x77\\x97\\xc8\\x07\\xb8\\x4c\\x3a\\x1c\\x39\\x88\\xa5\\\r\n\\xc1\\x98\\xc0\\xc4\\x69\\x9e\\x56\\xd8\\xd3\\x70\\xc0\\x3e\\xe4\\xfc\\xd0\\x29\\\r\n\\xc7\\x66\\x1c\\x41\\x7d\\xd7\\x95\\x08\\xc4\\x6b\\x84\\x70\\x92\\x0c\\x0d\\x31\\\r\n\\x00\\x30\\x5e\\x24\\x5d\\x18\\x3d\\x47\\xd7\\xc5\\xf5\\xa0\\x4a\\x2f\\x3c\\xf7\\\r\n\\x24\\x5f\\xa6\\x90\\x55\\x2e\\xb1\\x37\\x08\\xa1\\x6b\\x49\\xa0\\x42\\xf7\\xa9\\\r\n\\x6d\\xb3\\x16\\x09\\xd8\\x0e\\x03\\x58\\xb2\\x2c\\xd1\\xf7\\x35\\xd2\\x83\\x7f\\\r\n\\xdd\\x23\\xdf\\xfc\\x7e\\xf0\\x46\\x3e\\x86\\x15\\x0e\\xd3\\x9b\\x1c\\xcf\\xc4\\\r\n\\x42\\x3c\\x0f\\xe9\\x6e\\xfd\\xee\\x31\\x11\\xf9\\x60\\xad\\xbf\\x26\\xb3\\x63\\\r\n\\x70\\x7c\\x21\\x03\\xef\\x7c\\x7b\\xee\\x19\\x71\\x4d\\x18\\xd0\\x54\\x09\\x80\\\r\n\\xbd\\x81\\x34\\x40\\xa9\\x2e\\x14\\x2f\\x08\\x87\\x16\\xcc\\x53\\xfb\\x65\\x6f\\\r\n\\xd1\\x48\\x9a\\x8d\\x00\\x37\\x89\\xb3\\x30\\xf1\\xa8\\xc9\\x84\\x29\\xcd\\x8a\\\r\n\\x24\\x63\\x25\\x43\\x3d\\x22\\x22\\x01\\x2b\\xa9\\xc6\\x03\\x38\\xd5\\x78\\x60\\\r\n\\xac\\x82\\xc7\\xcf\\xe3\\x4f\\x3e\\x80\\x91\\x04\\xb8\\xfb\\x12\\x2d\\xc0\\x29\\\r\n\\x7b\\xb3\\x8d\\x2b\\x10\\x06\\x94\\xc5\\x79\\x4b\\x64\\x41\\x00\\x24\\x6c\\xba\\\r\n\\x64\\x17\\xc2\\x9e\\xc4\\x70\\x07\\x86\\x8c\\x88\\xc2\\x22\\xcd\\x50\\x70\\xc7\\\r\n\\x0c\\x28\\x2f\\xc0\\xa8\\xb7\\xb6\\x34\\x59\\xb6\\x80\\x5b\\x7a\\x20\\x74\\xc1\\\r\n\\x44\\x86\\x26\\xd2\\xe2\\x8d\\xa6\\xda\\x42\\x03\\x74\\xe3\\xf4\\x01\\x08\\xb1\\\r\n\\xff\\x00\\xe2\\x5e\\x1a\\x8a\\x8d\\xc2\\x13\\x34\\xa7\\x6c\\x26\\x6c\\x50\\x23\\\r\n\\x77\\x11\\x0c\\x1d\\x8a\\x08\\x42\\x6e\\x18\\x7d\\x8b\\xc6\\x42\\x75\\xde\\xf4\\\r\n\\xa2\\xa2\\x00\\x01\\xb2\\xf7\\x45\\x3a\\x0d\\xd4\\xaa\\xd3\\xc5\\xac\\x81\\x7e\\\r\n\\xa2\\x67\\xc2\\x58\\x56\\x65\\x97\\x62\\x3a\\x89\\xa9\\x52\\x40\\x13\\xce\\x6f\\\r\n\\x00\\x16\\xa6\\x23\\x45\\x37\\xe8\\x14\\x8d\\xd7\\x6f\\x34\\xb9\\x9c\\x56\\xc7\\\r\n\\xf0\\x7b\\x6d\\xfa\\x73\\x7d\\xe8\\x75\\x2e\\x1a\\x21\\x06\\xd8\\xdf\\xa7\\x2d\\\r\n\\x05\\x23\\x81\\x52\\x76\\xb6\\x42\\xa0\\xe1\\x8f\\xef\\x15\\x40\\x81\\x16\\x87\\\r\n\\xed\\x58\\x86\\xd2\\xe3\\xc3\\x50\\xee\\x16\\x9a\\xd4\\x75\\x32\\xf2\\xa9\\xba\\\r\n\\x38\\x85\\xab\\x61\\x20\\x71\\x33\\x86\\x4c\\xda\\xe9\\xd1\\x09\\xd8\\xb1\\x2c\\\r\n\\xc8\\x64\\x7c\\x2c\\xd2\\x0d\\x5b\\xfe\\x01\\xb1\\xac\\x45\\x84\\xff\\x00\\xf1\\\r\n\\xaa\\x00\\x3f\\xad\\x8f\\xbf\\x7c\\x8b\\x52\\x82\\x07\\xa5\\x21\\x32\\x19\\xef\\\r\n\\x57\\x8b\\x99\\x03\\x04\\xae\\x2e\\x36\\x8a\\x0a\\x55\\x9f\\xae\\x91\\xe8\\xa0\\\r\n\\xb7\\x45\\x1c\\x90\\x56\\x99\\x77\\x52\\xc1\\xac\\xc5\\xe0\\xa1\\xf3\\x36\\x55\\\r\n\\xc0\\xfd\\x1e\\x0d\\xf7\\x1c\\x35\\x7a\\xab\\x14\\x72\\x0c\\x18\\xf3\\xcd\\x3c\\\r\n\\xa6\\x4f\\x1f\\x4b\\x48\\x23\\x95\\x50\\xc7\\x36\\x94\\x49\\x20\\x04\\x86\\x6b\\\r\n\\x9c\\x95\\xa0\\xbb\\xae\\x70\\x2b\\x83\\xa0\\xf6\\x29\\xef\\xac\\x13\\xac\\xb4\\\r\n\\x60\\x4c\\x4a\\xbe\\x11\\xca\\x28\\x09\\xe4\\xcd\\x81\\x82\\xf5\\x21\\x02\\x08\\\r\n\\x5f\\xde\\x80\\x6b\\x4a\\x44\\x0a\\x47\\x18\\x3e\\xa6\\xdd\\x3e\\xac\\x1a\\xb6\\\r\n\\x61\\x02\\x72\\xda\\x4f\\x0e\\xce\\x01\\xa9\\xd5\\x72\\x59\\x15\\x60\\x51\\x5b\\\r\n\\xb4\\xfd\\xc1\\x42\\x56\\x85\\x18\\x6d\\x77\\xa2\\x5f\\x53\\x00\\xc5\\xe0\\xfa\\\r\n\\x71\\x43\\xb4\\x71\\xdf\\x18\\x0a\\x21\\xfa\\xe8\\x1f\\xc4\\x7f\\xf4\\x65\\xd7\\\r\n\\x50\\x6b\\x0a\\x7f\\x29\\x0f\\xa8\\x46\\x34\\xa8\\xf7\\xf0\\x12\\xde\\x24\\xd6\\\r\n\\x4e\\x12\\x1a\\xf3\\x6d\\x4f\\x01\\x60\\xff\\x00\\x81\\xd7\\xe1\\xa8\\x23\\x40\\\r\n\\x39\\xe9\\xe6\\xff\\x00\\x38\\x7a\\x69\\xe2\\x48\\x26\\x3e\\x94\\xd1\\x30\\x09\\\r\n\\x91\\x4c\\x22\\x2a\\xaf\\xda\\x5c\\xda\\x2e\\x3f\\x63\\x00\\x2a\\x88\\xd2\\x9d\\\r\n\\x9a\\xc4\\x35\\x9e\\x8c\\xb2\\x68\\x19\\x65\\xb8\\x25\\xb1\\x2c\\xa1\\x44\\x8c\\\r\n\\xca\\xc6\\xfb\\x22\\x18\\xc2\\x04\\x92\\xec\\x48\\x08\\x7b\\xe5\\xe6\\xb7\\x6a\\\r\n\\x5c\\x01\\xc1\\xb5\\x01\\xea\\xb2\\x40\\xa4\\x32\\x8b\\xe3\\x71\\x48\\xbc\\x9b\\\r\n\\x28\\xdf\\xc0\\x85\\x86\\xc5\\x17\\x5b\\xb8\\x14\\x42\\xd7\\x43\\x70\\x96\\x83\\\r\n\\x2a\\xb0\\xb9\\x87\\x64\\x53\\xa3\\xd9\\x1b\\xed\\x96\\x4c\\x02\\x1c\\x1c\\x14\\\r\n\\x68\\x1c\\xd4\\x49\\x44\\x64\\x49\\xfd\\xa1\\x13\\x89\\x61\\xba\\xf9\\x71\\x1c\\\r\n\\x42\\x7a\\x3f\\x7d\\xd7\\x66\\x9a\\x1b\\xa3\\x82\\xdc\\xdd\\x1d\\x0c\\x7e\\x00\\\r\n\\x50\\x08\\x7d\\x61\\xe2\\xa0\\x07\\x45\\x7a\\x10\\x46\\x82\\xd0\\xa6\\x76\\xc0\\\r\n\\x69\\x00\\xa2\\x69\\xfa\\x0c\\x68\\x5e\\x36\\xfe\\x00\\xc1\\xb2\\x10\\x00\\x76\\\r\n\\x0c\\xfc\\x46\\x55\\x6d\\x7e\\x92\\x77\\xa6\\xc0\\x3a\\x77\\x94\\x94\\xbf\\xda\\\r\n\\x46\\x14\\xd0\\x20\\xa2\\xce\\xad\\x03\\x6c\\x90\\x77\\x14\\x76\\x82\\x1a\\x0f\\\r\n\\x46\\x28\\xd0\\x6d\\xa3\\x66\\x07\\x00\\x49\\x5a\\x09\\x62\\xd0\\x48\\x0a\\x36\\\r\n\\x9a\\x60\\x17\\xa5\\x36\\xb3\\xcc\\x0a\\xe8\\xc2\\x9d\\x3c\\xdf\\x49\\x72\\xf7\\\r\n\\x13\\xca\\xfa\\x92\\x87\\x09\\x61\\x50\\x07\\x1a\\xef\\x33\\x2b\\xc2\\xb5\\x1c\\\r\n\\x04\\x2a\\x10\\xdc\\xb3\\xae\\x6f\\x1a\\x12\\xf9\\x5f\\x71\\x3e\\x72\\x55\\x41\\\r\n\\x73\\xf4\\x31\\xc2\\x74\\x31\\x4c\\x9f\\x68\\xe0\\x09\\x92\\x9a\\xa8\\xb4\\x2a\\\r\n\\x52\\x93\\x44\\xbe\\x4f\\x00\\xfe\\x25\\x07\\x09\\x2d\\xc0\\xca\\x7c\\x66\\x01\\\r\n\\x07\\x7a\\xe0\\x62\\x40\\xa2\\x3a\\x0d\\x06\\x2a\\x14\\xf4\\xb3\\x41\\x51\\x11\\\r\n\\x48\\x6b\\xbe\\xe7\\xb4\\x01\\xcd\\x42\\x93\\xe7\\x36\\xa1\\xcd\\x73\\x0f\\x0b\\\r\n\\x36\\x4d\\x85\\xdc\\x69\\xe6\\x70\\x5a\\x7b\\x40\\x77\\x77\\x1c\\xf0\\x57\\xfc\\\r\n\\x5b\\xc1\\xb5\\xc0\\xbb\\xb6\\xdd\\xa2\\x97\\xeb\\xa4\\xc5\\x27\\xb4\\x2d\\x07\\\r\n\\x8e\\xf5\\x4b\\x3a\\x30\\xc3\\x22\\x19\\x6f\\xd8\\xed\\x8d\\x0a\\xf1\\xac\\x79\\\r\n\\xb7\\xd0\\xbc\\x56\\xbc\\x51\\x62\\x3c\\xce\\x9a\\xd5\\x36\\x80\\x49\\x92\\x95\\\r\n\\x5d\\x91\\x94\\xf5\\x00\\x69\\xe0\\xd1\\x2b\\x0c\\x79\\xaf\\x55\\xfd\\x1f\\xb8\\\r\n\\xeb\\x36\\x6c\\x79\\xaf\\xaf\\x03\\x09\\x86\\xa4\\xc4\\xb6\\x7a\\x71\\xc7\\xbd\\\r\n\\x47\\x6a\\x4e\\xbd\\x26\\xb1\\x4b\\x4d\\x53\\x45\\x90\\x00\\xc1\\x3c\\xf7\\xbb\\\r\n\\xcf\\x2f\\xb6\\x60\\x42\\xac\\xab\\x23\\xf6\\x87\\x1b\\x2b\\x44\\x95\\xa6\\xd2\\\r\n\\xd3\\x39\\x70\\x56\\xcc\\x2b\\x53\\x22\\x99\\x40\\x3a\\xda\\xa6\\x44\\xb6\\xaa\\\r\n\\x88\\x05\\x1f\\xa4\\xf9\\x3b\\xcc\\x14\\x81\\x4e\\xf6\\x36\\x3f\\x50\\xd3\\xfe\\\r\n\\x30\\xc7\\xc9\\xa3\\xa8\\x51\\xaf\\x92\\x67\\xac\\xe0\\x9d\\x9d\\xeb\\x1d\\x3a\\\r\n\\x1e\\xec\\x47\\x2b\\xcb\\x85\\x0a\\x8e\\x41\\xc9\\xb8\\x8d\\x5f\\x32\\x8b\\xb4\\\r\n\\x48\\xca\\xa1\\xbb\\x3c\\x6e\\xbf\\x4c\\x2a\\x9e\\xe1\\x3b\\x7f\\x1e\\xf9\\xcf\\\r\n\\xde\\x12\\xc5\\x22\\x1c\\x5a\\x19\\x12\\x28\\xd6\\xe6\\x3e\\xa2\\x20\\x56\\xc0\\\r\n\\x82\\x23\\xb0\\xfe\\x34\\xcb\\x1c\\xe1\\xff\\x00\\x0b\\xd1\\xba\\xe9\\x74\\x38\\\r\n\\xb7\\xf0\\x78\\xb1\\x05\\x89\\x1a\\x3a\\x4d\\x62\\x0a\\x10\\x83\\x64\\x58\\x0e\\\r\n\\xd4\\x88\\x9a\\xa0\\x1d\\xd8\\x50\\x12\\xc9\\x24\\x23\\x03\\xf7\\x86\\xe4\\x09\\\r\n\\x5f\\x61\\xc4\\x98\\x6a\\x2f\\x10\\x27\\x80\\x05\\xdf\\x27\\x2c\\xb5\\x18\\x74\\\r\n\\x6e\\xb8\\xd5\\x45\\x37\\x33\\xc7\\x28\\x8d\\xee\\x36\\x41\\x4f\\x28\\x15\\x19\\\r\n\\x51\\x16\\x2e\\xf0\\x21\\x74\\xe8\\x6c\\xab\\xdc\\xa6\\xd5\\x81\\x3e\\xfb\\xe9\\\r\n\\xc9\\x0a\\x19\\x89\\x7e\\xc0\\x3a\\xea\\x43\\xa0\\xf7\\x11\\x49\\x1d\\x71\\x1c\\\r\n\\x89\\x32\\x4e\\x55\\x88\\x33\\x78\\x37\\x3c\\x88\\x74\\x42\\x76\\x56\\x55\\x77\\\r\n\\xb8\\x50\\xd3\\xe5\\x29\\xb6\\x68\\x46\\x9f\\xaf\\x59\\x8b\\x3a\\xa7\\x8b\\xd5\\\r\n\\x32\\x91\\x29\\x12\\xd4\\xc2\\x9a\\xb0\\x1a\\x32\\xe0\\x02\\xd7\\x60\\xd1\\xef\\\r\n\\x34\\xec\\x85\\x64\\x0b\\xae\\xc1\\x62\\xad\\x58\\xdd\\x5a\\x4a\\x48\\x50\\xfc\\\r\n\\x50\\x1a\\x8f\\x3d\\x63\\xb8\\x2f\\xfa\\x7a\\xa4\\xce\\xbb\\x0d\\x22\\x86\\xee\\\r\n\\x10\\x2e\\xfa\\xfd\\x1f\\x8d\\x4d\\x07\\x86\\x62\\xe2\\xa5\\x5d\\x48\\x32\\x17\\\r\n\\x49\\x01\\x44\\x4f\\x0e\\x2c\\xcc\\x3a\\x16\\x06\\x8c\\x45\\x70\\x1c\\xb0\\xe3\\\r\n\\x28\\x0f\\x0c\\x86\\x86\\x94\\x43\\x29\\x1d\\x2c\\xb2\\xe8\\xa3\\x07\\x34\\x3a\\\r\n\\x19\\xaf\\xa8\\xa2\\x42\\xe3\\x88\\x97\\xf3\\x16\\xc4\\x24\\x1d\\x6f\\x3a\\x6e\\\r\n\\x9f\\x8d\\xef\\x2b\\x02\\xe9\\x63\\xca\\xd2\\x04\\x15\\x79\\xb3\\x0e\\xad\\xc0\\\r\n\\x93\\x19\\xd8\\x8c\\x1e\\x8c\\x0f\\x3e\\x24\\x08\\xc8\\x57\\x60\\x9a\\xfc\\x0b\\\r\n\\x86\\x35\\x05\\xd2\\x88\\x9b\\x37\\x16\\xb7\\xe7\\xe7\\x7b\\x94\\xc7\\xe7\\x96\\\r\n\\x3a\\xb8\\x08\\x7c\\x85\\x1a\\xa3\\x8a\\x8e\\x51\\xda\\x69\\x34\\x08\\xc2\\x02\\\r\n\\x18\\xad\\xbc\\x36\\x35\\x0d\\x7e\\xf2\\x1f\\x15\\xa8\\xd2\\x1c\\x08\\x52\\xb6\\\r\n\\x04\\x0a\\xe9\\x9f\\x81\\x29\\x91\\xf9\\x5a\\x26\\xf9\\x41\\x62\\x43\\x6d\\xc4\\\r\n\\x5f\\x3c\\xd4\\xd9\\xe8\\x73\\xc2\\xa8\\x69\\x9d\\xa2\\x48\\x8d\\x4e\\x26\\x30\\\r\n\\x86\\x95\\x75\\x42\\xf7\\x62\\x40\\x53\\xee\\x6b\\x44\\xb0\\x1e\\x23\\xc5\\xf8\\\r\n\\x07\\x14\\xe5\\xe0\\x60\\xbe\\xa0\\x8d\\x07\\x65\\x8e\\xe4\\xae\\x67\\x79\\xe3\\\r\n\\x18\\x64\\xca\\x52\\x07\\x67\\x96\\xb7\\x4b\\x1d\\x10\\x68\\xed\\xc4\\x7a\\x8d\\\r\n\\xaf\\x06\\x62\\x46\\x4e\\xf7\\xca\\x54\\x2e\\x9e\\x80\\x45\\xb2\\x54\\xb7\\x76\\\r\n\\x52\\x3d\\x67\\xe6\\x80\\x04\\xd7\\x56\\xda\\x79\\xc6\\xbc\\x0b\\xa2\\xee\\x9b\\\r\n\\xea\\x5a\\x6a\\x72\\xeb\\x29\\x35\\x52\\xa7\\x36\\xb8\\x31\\x82\\x81\\xf9\\x50\\\r\n\\x1d\\x30\\x0d\\x3d\\x96\\x2b\\x46\\x6d\\xda\\x6d\\xcf\\xb1\\x95\\xa1\\x6f\\x4c\\\r\n\\xb8\\x10\\x95\\x1f\\x7c\\xfd\\xda\\xd6\\xe4\\x50\\x9d\\xb1\\x03\\x1c\\x96\\x2f\\\r\n\\x5d\\xf1\\xdc\\x40\\x21\\xae\\x5a\\x95\\x3c\\x8a\\x94\\x55\\x42\\xc0\\x0b\\x43\\\r\n\\xc9\\x49\\x44\\x11\\xd5\\x66\\xbb\\xfb\\xdc\\x9b\\xd3\\xec\\x16\\x9d\\x91\\x50\\\r\n\\xe3\\xf7\\x3d\\xe2\\x03\\xb3\\x73\\x4f\\x1d\\xfc\\xf1\\xd7\\xb8\\xf3\\xf6\\x05\\\r\n\\x9a\\x29\\x14\\x2a\\xa1\\x76\\xbe\\x7d\\xc0\\xd4\\xc7\\x4b\\xa7\\x5a\\x5a\\x23\\\r\n\\xfd\\xc9\\x64\\xb7\\x36\\x2e\\x82\\x14\\x5d\\x09\\xb3\\x58\\x44\\x1b\\x9d\\xaf\\\r\n\\x15\\x54\\xf4\\x5a\\x22\\xaf\\xc3\\x12\\xd0\\x33\\x0a\\x96\\x91\\x02\\x35\\x2c\\\r\n\\x7a\\x20\\xdf\\x41\\xbc\\x9b\\x67\\x5a\\x64\\x2c\\x61\\x42\\x75\\x5c\\xe5\\x5b\\\r\n\\xb6\\xdd\\x0c\\xc1\\x30\\xce\\xc5\\x6f\\x5e\\x02\\x4e\\x54\\x88\\x8d\\x4b\\x3d\\\r\n\\x64\\x3b\\x0b\\x2a\\xec\\x31\\x17\\x69\\xea\\xed\\x82\\x26\\xab\\x4c\\x99\\x3c\\\r\n\\x9b\\x97\\x83\\x4a\\xa9\\x28\\xc4\\x5b\\x81\\x68\\xed\\x56\\xea\\x87\\x39\\xac\\\r\n\\x22\\x85\\xb5\\x78\\x9b\\xca\\x0c\\xb3\\x03\\xa4\\x26\\xf0\\x2f\\xd4\\xf0\\x29\\\r\n\\x27\\x90\\x1e\\x12\\x08\\x44\\x33\\x47\\x32\\x8f\\x16\\x02\\x14\\xcf\\x1b\\x06\\\r\n\\x95\\x43\\x91\\x30\\x1a\\x16\\xf8\\x9e\\x0c\\x04\\x74\\xd8\\xe7\\x9f\\x67\\xec\\\r\n\\x6a\\xa0\\x9c\\x4e\\x06\\xb7\\x49\\x7a\\xaf\\xad\\x13\\xf0\\x0c\\x91\\x2c\\x14\\\r\n\\xd2\\x9d\\x93\\x2b\\x1a\\x09\\x00\\x93\\xa3\\xbc\\x4d\\x28\\x0e\\xd0\\x13\\xfc\\\r\n\\x6c\\xc0\\x32\\xd8\\x84\\xc2\\x3c\\xa6\\x10\\x89\\x44\\x31\\x6c\\x10\\x78\\xe8\\\r\n\\x33\\x4f\\x64\\x71\\x4a\\xc2\\x61\\x5d\\x08\\x29\\xb9\\x27\\xf9\\x3e\\x67\\xd4\\\r\n\\x3e\\x80\\x46\\xe9\\xa0\\xf0\\xf3\\xb8\\x8d\\x62\\x0c\\x21\\xd0\\x10\\xfe\\x88\\\r\n\\x32\\xa4\\x6e\\xd0\\x43\\xf5\\x74\\x35\\xdf\\x39\\x8e\\xd8\\xab\\x20\\x08\\x71\\\r\n\\x68\\x4e\\x0f\\x4c\\xc5\\x72\\x29\\x36\\x37\\xd9\\x28\\xb2\\x05\\x7e\\xcc\\x47\\\r\n\\x01\\x60\\x80\\x17\\x62\\xa9\\x4b\\xa8\\x8f\\xee\\x10\\x2d\\x2a\\xdf\\x6b\\x6a\\\r\n\\x34\\xde\\x2d\\x40\\x15\\x30\\x00\\x47\\x17\\x5d\\x27\\x41\\x06\\x92\\xa8\\xbb\\\r\n\\x2e\\x7e\\x67\\x63\\xf3\\xb0\\xd7\\x52\\x6d\\x4f\\x7e\\xa9\\xdd\\x43\\xb8\\x1f\\\r\n\\x7a\\xa1\\xd3\\x1d\\xba\\x43\\x41\\xc0\\x92\\x83\\x0b\\xa1\\x86\\x6d\\x27\\xa5\\\r\n\\xfe\\x98\\xab\\x30\\x14\\x17\\x5b\\x8f\\x47\\x55\\x6e\\x16\\x57\\x60\\x2f\\x2a\\\r\n\\x47\\xcf\\xd0\\xa8\\x71\\x85\\xdc\\x66\\x3d\\x72\\x4e\\x98\\x48\\x06\\x3d\\xa3\\\r\n\\x51\\xe8\\xb8\\x95\\xb4\\x0a\\x8e\\xbc\\x4d\\x42\\xc6\\xdb\\x13\\x9d\\xc2\\x72\\\r\n\\xd4\\x9d\\x8f\\x59\\xe3\\xa8\\x8e\\x09\\xd3\\x24\\xd9\\xf7\\xb2\\x27\\xb4\\x1c\\\r\n\\x02\\xb6\\x4e\\xad\\xc4\\xeb\\x83\\xde\\xd6\\x63\\x18\\x05\\x7e\\x12\\xb9\\x17\\\r\n\\x9a\\x72\\xdc\\x22\\x8d\\x10\\x13\\xa0\\x1d\\xea\\x01\\x69\\x52\\x8c\\x3a\\x90\\\r\n\\xfa\\x1b\\xa1\\x9a\\x29\\x50\\xd0\\x60\\x7e\\x01\\x24\\x0e\\x80\\x18\\x03\\xc6\\\r\n\\x68\\x2c\\x10\\xf6\\xb9\\x68\\x80\\xc7\\x14\\xaa\\x2a\\x22\\xac\\x9c\\x98\\xa7\\\r\n\\x3c\\xc8\\x4b\\x43\\xa8\\x33\\x6f\\x82\\x7e\\xaa\\x99\\x14\\x8c\\x42\\xcd\\xc0\\\r\n\\x45\\xda\\x1c\\xbf\\x74\\x38\\x44\\xa3\\x7f\\x36\\x5d\\xa0\\x0f\\x83\\x5c\\x8f\\\r\n\\x2c\\xb2\\x50\\x61\\xd2\\x81\\xd3\\x4e\\x76\\xc5\\xbe\\x5f\\xf8\\xe1\\xd0\\x4f\\\r\n\\x69\\x4c\\x0e\\x47\\x5e\\xed\\x33\\xa0\\x68\\xa8\\x54\\x0b\\x0d\\x40\\x59\\x41\\\r\n\\x34\\x5d\\x7f\\xcf\\xf7\\x06\\x24\\x5a\\xb3\\xe7\\xeb\\x77\\x7f\\xe7\\x0f\\x6c\\\r\n\\x21\\x01\\xe9\\x5f\\xec\\x7f\\xc7\\xb9\\x56\\x40\\x60\\x55\\xdf\\xa7\\x8f\\x88\\\r\n\\x1c\\xb8\\xc7\\xf4\\x45\\x48\\x05\\xf0\\x5f\\xa6\\x6e\\x7c\\x52\\xfc\\xd3\\x34\\\r\n\\x04\\xfd\\xed\\xf9\\x4b\\x37\\x8c\\xcd\\x43\\x44\\x21\\x7b\\xea\\x00\\xd1\\x50\\\r\n\\xcb\\x61\\xf5\\x67\\xb8\\x50\\x82\\x68\\x73\\x2b\\xde\\xc5\\x44\\xea\\xb7\\x8e\\\r\n\\x61\\x13\\x8b\\x60\\xa2\\x3f\\xba\\x20\\x7b\\x91\\xab\\xc2\\x5e\\x87\\xef\\x6c\\\r\n\\x90\\xe9\\x94\\xe8\\xd3\\x46\\x03\\x52\\x0f\\x0d\\xd0\\x5b\\x43\\xd2\\x13\\xf9\\\r\n\\xde\\x1d\\x9b\\x14\\x58\\x54\\xba\\x54\\xc3\\x72\\xbe\\xa0\\xd3\\x34\\x4f\\x0e\\\r\n\\xce\\x3b\\x8d\\x22\\x25\\xd1\\xc6\\x4d\\x34\\x29\\xe1\\x40\\x89\\xc4\\xe1\\xd2\\\r\n\\x70\\x1e\\xa8\\x1e\\x2d\\x09\\x54\\xe7\\x2d\\xd3\\xdc\\x3e\\x88\\x41\\x18\\xa2\\\r\n\\x71\\x76\\xd1\\x79\\x5a\\x42\\xd0\\x1b\\xae\\x65\\x6d\\x8d\\x12\\x7b\\x9b\\x2b\\\r\n\\x67\\x0a\\x81\\x2d\\x04\\x31\\x9b\\x69\\xa6\\x08\\xba\\x28\\x04\\xb5\\xb5\\x42\\\r\n\\x29\\x03\\xbd\\x94\\x37\\x18\\x6b\\x8d\\x5c\\x7c\\x75\\xb8\\x3a\\xa0\\x13\\xa6\\\r\n\\x95\\xd6\\x20\\xdc\\x1b\\xec\\x19\\x4a\\x34\\x07\\x93\\xee\\x6f\\x57\\x51\\xdd\\\r\n\\x0e\\x86\\x85\\x22\\x40\\xda\\x26\\x7e\\xf1\\x0c\\xaf\\x47\\x5f\\xf2\\xc3\\x80\\\r\n\\x16\\x73\\x28\\x4b\\x78\\x74\\x61\\x73\\x2a\\xe0\\x11\\x20\\x07\\xc6\\x91\\x4b\\\r\n\\x15\\x5f\\x6a\\x8a\\x65\\x19\\x61\\x42\\x03\\x5d\\x31\\x53\\x8a\\x71\\x31\\x11\\\r\n\\xab\\x6c\\x7e\\xe2\\xe9\\x23\\x44\\x77\\x33\\xd0\\x9c\\x6c\\x7d\\x46\\x1c\\x67\\\r\n\\x7e\\xf9\\xe4\\xf0\\x94\\x03\\x02\\xcb\\x59\\xbd\\x4d\\x0a\\x18\\x68\\x6b\\x80\\\r\n\\x5b\\xd8\\x0a\\x65\\x14\\x1a\\xa4\\xc7\\x9a\\x0f\\x59\\x2b\\x45\\xb2\\x34\\x98\\\r\n\\x5b\\x91\\xd2\\x12\\x00\\x2c\\x8e\\x85\\x93\\x04\\xd1\\xc1\\x83\\x7a\\x29\\x1a\\\r\n\\x36\\x2a\\xbc\\x66\\xf0\\x70\\xb5\\xfc\\x77\\x35\\x3e\\xd8\\xbe\\x16\\xd7\\xed\\\r\n\\x02\\x3d\\xa0\\x38\\xaa\\xce\\x9d\\x61\\x23\\xc7\\xa8\\x0d\\xa2\\x03\\xa3\\x8d\\\r\n\\xd3\\x33\\xae\\xb5\\xd1\\x1b\\xa4\\x2f\\x74\\x39\\x90\\x94\\x02\\x0e\\x53\\x07\\\r\n\\xba\\xb5\\xf5\\xcc\\xbc\\xd3\\x02\\x91\\x28\\x38\\x0c\\x2e\\xe1\\x33\\x76\\x83\\\r\n\\x40\\x99\\x3e\\xe7\\x01\\x4d\\x98\\x08\\x9b\\x6a\\xcb\\x86\\x4d\\xa4\\xc2\\x4c\\\r\n\\x28\\xde\\x59\\x1c\\x07\\xd7\\xe7\\x30\\x28\\x2a\\x55\\xf5\\x00\\xd2\\x31\\x3c\\\r\n\\x38\\xaa\\x3c\\x99\\xc6\\x5c\\xb9\\x8b\\x89\\xc0\\x05\\x3a\\x35\\x02\\xf8\\x86\\\r\n\\x72\\x83\\x14\\xc3\\x53\\x37\\x9d\\x5c\\x82\\x32\\x01\\x14\\x29\\x0f\\xfc\\xe4\\\r\n\\x51\\x05\\x4d\\xfb\\xd7\\x4c\\x65\\x15\\x8c\\xc0\\x46\\xd5\\x5d\\xe3\\x5a\\x16\\\r\n\\x3b\\x36\\xc5\\x52\\xb4\\xa9\\x76\\x5c\\x93\\x16\\x8b\\x68\\xa4\\xb6\\xb4\\x53\\\r\n\\x93\\x47\\x87\\x36\\xa4\\x95\\x44\\x36\\x4b\\xfb\\xfe\\xc3\\xfa\\xc1\\x57\\x96\\\r\n\\x11\\x25\\xd8\\x14\\x55\\x93\\xba\\xce\\x43\\x45\\xc6\\xe8\\xbb\\x3a\\x50\\x84\\\r\n\\xdb\\x5c\\xf0\\x43\\x16\\x7c\\xd0\\x7d\\x2f\\x60\\xe1\\x95\\x9e\\xdc\\x08\\xd2\\\r\n\\x47\\xa1\\xcf\\xb1\\x5a\\x3d\\x4a\\x83\\x48\\xd0\\x20\\x96\\x7b\\xf7\\xb8\\x41\\\r\n\\xb3\\x4f\\xa4\\xfc\\x7d\\x43\\xf2\\x73\\x0b\\xdf\\x83\\x35\\xaf\\xf6\\xe9\\x62\\\r\n\\x08\\xe6\\xa3\\xe4\\x86\\x14\\xfd\\x08\\xd9\\x47\\xb3\\xa2\\x54\\x3b\\x02\\x2b\\\r\n\\xc3\\xe7\\x89\\x89\\xd5\\x1b\\xd9\\xa6\\x88\\x1f\\x08\\x10\\xfb\\xd9\\xb2\\xce\\\r\n\\xec\\x4a\\xf4\\xe8\\xf8\\x9f\\xdc\\xa4\\x58\\xca\\x64\\xad\\x5b\\x12\\xa6\\xec\\\r\n\\xe1\\x82\\x47\\xed\\x0a\\x34\\x1a\\x5f\\x04\\x6e\\xc9\\x75\\xa1\\xb7\\x28\\x5e\\\r\n\\x91\\x54\\xd3\\xab\\x72\\xc2\\xc0\\xf0\\x7a\\x24\\x4d\\x4c\\x1a\\xa2\\x99\\x10\\\r\n\\xcb\\x83\\x01\\xba\\xd4\\x43\\x84\\xa1\\x47\\x4a\\xac\\xe3\\x0f\\x86\\xc3\\x48\\\r\n\\x66\\x61\\x86\\xe9\\x08\\x90\\x22\\x6f\\x41\\x55\\x6f\\xa5\\xc4\\x52\\x06\\x31\\\r\n\\xf4\\x20\\xdb\\x9c\\x27\\x5f\\x58\\x48\\x82\\x65\\x90\\x24\\xd9\\x41\\x55\\x04\\\r\n\\x11\\x83\\xd1\\x1b\\x16\\x2a\\x9f\\x89\\xcb\\xc1\\x65\\x31\\x5d\\xa7\\xe8\\x16\\\r\n\\x1c\\x95\\x6a\\xfe\\x0f\\x18\\xce\\x03\\x14\\x73\\xbe\\xc1\\x06\\xd5\\x0b\\x80\\\r\n\\xbf\\xf1\\x89\\x52\\x18\\x1a\\x1a\\xfd\\x9c\\x4c\\xbe\\x83\\x40\\x04\\x7b\\xa1\\\r\n\\xe4\\xe0\\xd7\\x2a\\xca\\x20\\x0f\\x65\\x02\\xa8\\x38\\x75\\x45\\xa1\\x58\\x37\\\r\n\\x85\\x0a\\xd2\\x79\\xd1\\x02\\x2d\\x21\\x41\\x11\\x2e\\x13\\x20\\x32\\x5d\\x74\\\r\n\\xf0\\x59\\xa2\\x7f\\xa0\\x3c\\x0e\\x2b\\x86\\xa7\\x07\\xdc\\x97\\xfb\\xae\\x14\\\r\n\\x66\\xd7\\x30\\x73\\xaf\\x6e\\x42\\x80\\x4d\\x3f\\x91\\xe9\\x86\\x3c\\xcb\\x82\\\r\n\\x4f\\x85\\x3f\\x73\\xf5\\x8b\\x77\\x7f\\xad\\x10\\xec\\xff\\x00\\xbf\\xfc\\x62\\\r\n\\x36\\x0e\\x50\\xc4\\x12\\x1b\\x07\\x37\\x86\\x38\\xe9\\x10\\xeb\\x34\\x01\\x1b\\\r\n\\xe0\\x77\\x99\\x46\\x8e\\x0d\\x69\\xf4\\xf6\\xc2\\xcd\\x1a\\x44\\x51\\x21\\xfa\\\r\n\\x1d\\xab\\xca\\x15\\x40\\x34\\xa0\\xc0\\xd2\\x7c\\x19\\xa4\\xe3\\x55\\x19\\x00\\\r\n\\x13\\x18\\x55\\x70\\xd2\\xed\\x38\\xdb\\xe9\\x4e\\x9d\\x33\\xa7\\x95\\x21\\x40\\\r\n\\x18\\x31\\x84\\x34\\x5c\\x09\\xb5\\x29\\xe5\\x1d\\x50\\x58\\xa1\\xaa\\xae\\xdc\\\r\n\\x6c\\xeb\\x9e\\x8c\\xe1\\x1a\\x9c\\x64\\x4a\\x14\\x09\\x69\\x1a\\x2b\\x4d\\x24\\\r\n\\x17\\x54\\x60\\x7a\\x07\\x07\\x58\\x51\\xf4\\x10\\x4e\\xb8\\x39\\x0a\\xec\\xdc\\\r\n\\x0c\\x40\\x82\\x7a\\x46\\xd8\\xbd\\xaa\\xe8\\x92\\x74\\x39\\x31\\x2a\\x17\\xb2\\\r\n\\x74\\x5f\\x7a\\x95\\x8f\\xea\\x0d\\x17\\x9f\\x7a\\x78\\x90\\xfc\\xdf\\x67\\x96\\\r\n\\xb4\\x31\\x10\\x51\\x15\\xa0\\x01\\x82\\xd0\\x3a\\xba\\x14\\x30\\xea\\xd4\\x1d\\\r\n\\xb9\\xf8\\xb4\\xe8\\x23\\x25\\xd6\\x3a\\x14\\x9c\\x9e\\x2d\\x91\\x9e\\x67\\x91\\\r\n\\x5d\\x6a\\x56\\x95\\xc7\\x5e\\xc3\\x4a\\x61\\x45\\x20\\x1b\\x2f\\x8e\\x5e\\x15\\\r\n\\x4f\\x76\\xa0\\xbf\\x72\\x45\\x01\\xab\\xff\\x00\\x93\\x70\\x0b\\xe8\\xe9\\xfe\\\r\n\\xf5\\xce\\xe6\\x69\\x8e\\xa4\\xe3\\x91\\xba\\x2b\\xa9\\x42\\xd7\\xd1\\x12\\xab\\\r\n\\xf0\\x8b\\x3c\\xfd\\x67\\x62\\x38\\x4d\\x00\\xb3\\x58\\xb5\\x3a\\xbf\\x72\\x03\\\r\n\\xf2\\x3b\\xb5\\x01\\x0d\\xa4\\xfd\\xce\\xfb\\x94\\x57\\x40\\x13\\x68\\xf6\\xb1\\\r\n\\x5a\\x55\\xc1\\x51\\x58\\x18\\x6a\\x28\\xdf\\x71\\x3f\\x1e\\x5c\\xad\\x63\\x0e\\\r\n\\x6c\\x40\\xd4\\x91\\xea\\xda\\xf3\\x1b\\x3f\\x63\\x1e\\x88\\x47\\xef\\x7d\\x33\\\r\n\\x7d\\xce\\x90\\xa5\\x1d\\x6d\\x9b\\x93\\x5f\\x9c\\x30\\x0e\\x8d\\x0a\\x38\\x69\\\r\n\\xb9\\x96\\xb7\\xaa\\xce\\xa7\\x54\\x3e\\x84\\xa6\\x71\\x8e\\xe6\\x1a\\x8f\\xa6\\\r\n\\xf3\\xff\\x00\\x7e\\xb5\\xcd\\xc0\\x0d\\x77\\xa1\\xbf\\xce\\x1f\\x88\\x64\\x94\\\r\n\\xbd\\x49\\x63\\xf7\\xf4\\x9e\\x7b\\xb3\\x77\\x1c\\x9c\\xa5\\x93\\x4b\\xda\\x55\\\r\n\\x67\\xd2\\x15\\x5b\\x88\\x1f\\x88\\x7e\\x20\\xb5\\xf2\\x08\\xf4\\x04\\x3a\\x23\\\r\n\\x41\\x45\\xb6\\xea\\x13\\x5d\\x6c\\x0b\\x7d\\x90\\x4b\\x27\\xf6\\x93\\xf2\\x80\\\r\n\\xc1\\x74\\x53\\x89\\x16\\xe9\\x76\\x9a\\x6a\\x25\\x0e\\x27\\x82\\xc1\\xc7\\x99\\\r\n\\x5b\\xe2\\x79\\x74\\x73\\xdf\\xa8\\x44\\x8c\\xb5\\xdb\\xca\\x1d\\x54\\x5d\\xe6\\\r\n\\xd1\\x5a\\xf0\\xab\\x16\\x25\\xc9\\xf8\\x49\\xbd\\x35\\xcc\\x8d\\x46\\x28\\x86\\\r\n\\xba\\xf5\\xbf\\xac\\xce\\x2d\\xc6\\xc7\\xf2\\x7c\\xd0\\xfd\\x5d\\x7e\\x73\\x55\\\r\n\\x97\\xa3\\x25\\x1a\\xdc\\x93\\x54\\x76\\x6f\\xa0\\x7a\\x18\\x08\\x94\\xad\\xe9\\\r\n\\xde\\x91\\xb9\\x4f\\x30\\x2b\\x54\\x43\\xc2\\x84\\xdd\\x85\\x1c\\x7d\\xc8\\xfa\\\r\n\\xc9\\x4b\\xf9\\x10\\xe7\\xc4\\xc7\\x54\\x87\\xba\\x4b\\x06\\x89\\xba\\x4b\\x84\\\r\n\\xd8\\x51\\xda\\x6e\\x8b\\x0b\\xac\\x37\\xb3\\xbb\\xc0\\x1b\\xfc\\x79\\x0c\\xb4\\\r\n\\x33\\xe6\\xd5\\x55\\x72\\x51\\x21\\x52\\xc3\\x55\\x99\\x0e\\x32\\x7a\\x74\\x35\\\r\n\\xa2\\x5f\\x12\\x03\\x49\\xd3\\xad\\xe5\\x36\\x28\\x3d\\x2f\\xa1\\x68\\x5c\\xc7\\\r\n\\x06\\xc6\\x11\\x8a\\x77\\x71\\x0a\\x3f\\x3e\\x62\\x06\\xb2\\x9c\\xc0\\x10\\xd4\\\r\n\\x84\\xf4\\xa5\\x8c\\x78\\xa2\\xfb\\x31\\x89\\x44\\x95\\xb0\\x60\\x0d\\x82\\xd7\\\r\n\\xe2\\xd9\\xfd\\x6b\\xbe\\x60\\x13\\xc6\\x27\\xe0\\x7f\\xed\\xef\\x3d\\xca\\x61\\\r\n\\xb3\\x98\\x7a\\xb7\\x8d\\x28\\xdf\\xe4\\xc0\\x20\\x59\\xa3\\x8b\\x19\\x07\\xa9\\\r\n\\x22\\xd4\\x36\\xcf\\x08\\x7a\\xcb\\xec\\xc8\\x70\\xe6\\xd1\\x4c\\xe3\\x20\\x66\\\r\n\\x7d\\x75\\x10\\x34\\x25\\xa6\\x50\\x90\\xa9\\x12\\xf4\\x49\\xbf\\x84\\xe9\\x00\\\r\n\\x9b\\x59\\xf3\\x17\\x4c\\xe5\\x38\\x9a\\xe0\\x49\\xa3\\x2f\\x3e\\x97\\x5c\\x97\\\r\n\\x0a\\xae\\xd4\\xf7\\x03\\x64\\xde\\x20\\xb0\\x55\\x03\\x54\\x9b\\x19\\x7f\\x20\\\r\n\\x76\\x9d\\x63\\xf0\\xda\\xb9\\x2d\\x22\\x4a\\x1b\\xf8\\x27\\x87\\xc1\\x00\\x68\\\r\n\\xf8\\x56\\x82\\xa4\\x30\\xe1\\x44\\x6d\\x74\\x20\\x72\\xba\\x1e\\xf5\\x82\\x10\\\r\n\\xdc\\x10\\x99\\xae\\x6d\\x1e\\xd9\\x5b\\xf7\\x42\\x3d\\x65\\xed\\xf7\\xee\\x72\\\r\n\\xae\\x87\\x0b\\xcf\\xe1\\xd5\\xae\\xc0\\x4c\\xcf\\x9a\\x4c\\x44\\x06\\x17\\x21\\\r\n\\x03\\x65\\x71\\xbb\\x44\\x6e\\x20\\x0c\\xe5\\xf8\\x3c\\xfc\\xeb\\x72\\x30\\x01\\\r\n\\x06\\xce\\x08\\x22\\xc8\\x82\\x19\\x91\\x84\\xd2\\x06\\xb1\\xc9\\x60\\x78\\x72\\\r\n\\xcd\\x51\\x7f\\x4d\\xce\\x47\\x0d\\x6a\\xf3\\x3f\\x0f\\x30\\xfe\\x9a\\x28\\x21\\\r\n\\xd6\\x13\\xfd\\x1f\\xef\\x3e\\x9d\\xea\\x98\\x0f\\x84\\x08\\x9e\\x79\\x9a\\xef\\\r\n\\x6e\\x91\\xd4\\x04\\xe2\\x2e\\xb6\\x81\\x8f\\x22\\xfb\\x0d\\x2a\\x84\\x24\\x5e\\\r\n\\x6a\\x6e\\x52\\x7f\\x97\\x37\\x42\\x49\\xa8\\x17\\x9d\\x3e\\x01\\x27\\x44\\x42\\\r\n\\x9b\\x9d\\x9e\\x62\\xe1\\x88\\xcd\\x1b\\x5f\\x65\\x46\\xf9\\xbc\\x39\\x0c\\x87\\\r\n\\x0b\\xb9\\xff\\x00\\xdc\\x3b\\xfb\\x5c\\x6f\\xf3\\xf9\\x34\\x7f\\xc6\\x4a\\x8f\\\r\n\\xcd\\x3f\\x2d\\x17\\xe6\\x41\\x37\\x51\\x82\\x5d\\x89\\x3f\\xbe\\x1e\\xe7\\x91\\\r\n\\xe0\\x71\\xcd\\x6b\\x1b\\x20\\x25\\x36\\xa9\\x45\\x1a\\xae\\xd3\\xa9\\xa3\\x8f\\\r\n\\xbd\\xad\\xa2\\x91\\x06\\x80\\x34\\x07\\x43\\x94\\x12\\x00\\x52\\x47\\x7a\\x1e\\\r\n\\x3b\\x8a\\x69\\x63\\x00\\x01\\x46\\x46\\xb0\\x36\\xc4\\xd1\\x52\\xf0\\x4b\\x40\\\r\n\\xd7\\xcc\\x3f\\x61\\x0a\\x8a\\xb5\\x26\\x55\\xf7\\x46\\x43\\x37\\x4f\\x48\\x88\\\r\n\\xca\\x33\\x62\\xa2\\xa7\\x48\\x6f\\xcd\\xd3\\xc3\\xef\\xe3\\x14\\x5c\\x9f\\x48\\\r\n\\x42\\xc2\\xbd\\x47\\xac\\x6b\\x48\\x93\\xfb\\xf1\\xb1\\xc2\\x9b\\xe9\\x88\\x4d\\\r\n\\x07\\x95\\x1e\\x53\\x51\\xa6\\xa6\\xb4\\x8e\\x74\\x14\\xa0\\xa1\\x76\\x3d\\x04\\\r\n\\xf2\\xeb\\xfa\\x73\\xbf\\xb8\\x0e\\x8e\\x5a\\x6d\\x4f\\x61\\x13\\x8c\\x3d\\xa6\\\r\n\\x89\\x60\\xac\\xb6\\x91\\x8f\\xc6\\xb0\\xe5\\x8a\\xeb\\x5a\\x0e\\xba\\x29\\x4d\\\r\n\\x43\\x74\\x2d\\x34\\xb3\\xdb\\x5f\\x29\\x35\\x91\\x78\\xc1\\x9c\\x00\\x1c\\xea\\\r\n\\xb7\\x1a\\xa9\\x51\\x6a\\xd5\\xd0\\x95\\x7a\\x75\\xba\\xa7\\xe7\\xc7\\x25\\x40\\\r\n\\x32\\x6a\\xde\\x66\\x61\\x2b\\x01\\xce\\x1b\\x63\\x55\\x03\\xe4\\xbb\\x43\\xf5\\\r\n\\x2f\\xc6\\x30\\xfa\\x6c\\xd8\\x09\\xc6\\xbf\\xef\\xec\\x70\\x57\\x77\\xa9\\x57\\\r\n\\xde\\x7a\\x3c\\xba\\x19\\xe3\\x87\\x01\\x07\\x32\\xbf\\x16\\x24\\xd8\\x50\\xe4\\\r\n\\x15\\xe7\\x4d\\xbf\\x3c\\x28\\x92\\x9a\\x61\\xb2\\x41\\xfc\\x8e\\x14\\x2b\\xb9\\\r\n\\x62\\xd0\\x98\\xae\\x38\\xf9\\x02\\x1a\\x59\\x5a\\x4c\\x37\\x46\\xaa\\xca\\x74\\\r\n\\x74\\xf0\\x1a\\x52\\x78\\x03\\x03\\x87\\x90\\xc5\\xb1\\x4d\\x5d\\x59\\x08\\x14\\\r\n\\x71\\x85\\xcb\\xa0\\x21\\x46\\xca\\x22\\x5d\\x65\\x26\\x7f\\x78\\x4b\\x0e\\xdd\\\r\n\\xeb\\xf5\\xfb\\x99\\x3e\\x17\\x49\\x57\\xd1\\xb4\\xbd\\xbf\\x63\\x89\\xad\\xa2\\\r\n\\x26\\xd2\\x59\\x1a\\x97\\xcf\\x79\\x30\\x1a\\x1c\\xd9\\x00\\xdd\\x02\\x2b\\xbf\\\r\n\\xdc\\x32\\xdb\\x5c\\x29\\x1d\\x24\\x73\\x04\\xa3\\x20\\x22\\xf0\\xd6\\x32\\xaf\\\r\n\\x52\\xa9\\x15\\xc1\\xc0\\x68\\x0a\\x53\\xaa\\xee\\x15\\x6f\\x68\\x38\\xb0\\x7b\\\r\n\\xa4\\x49\\x4b\\x46\\x54\\x6a\\x06\\x7b\\x6d\\x37\\x23\\xf3\\x48\\xa7\\x64\\x09\\\r\n\\xc1\\x26\\x5f\\xe0\\x46\\x16\\xc9\\xb0\\x03\\x8e\\x67\\x79\\x69\\xb7\\x08\\x6b\\\r\n\\x75\\xd0\\xbe\\x50\\xaa\\x1b\\x21\\x1a\\xad\\x7c\\x80\\xa2\\x47\\x27\\x5b\\x7e\\\r\n\\x4d\\x3d\\xf2\\x07\\x33\\xab\\x17\\xad\\xba\\x21\\xbe\\xd8\\x25\\x3b\\x55\\x4d\\\r\n\\x40\\x6c\\xc4\\xf5\\xc8\\x1f\\x88\\x1f\\xa6\\x3f\\x42\\x56\\x34\\x26\\xa9\\x1e\\\r\n\\xfd\\xe6\\x21\\x64\\x0b\\x95\\x54\\xff\\x00\\x5c\\x68\\x63\\x96\\xf7\\x29\\x61\\\r\n\\x4e\\x8d\\x83\\xb2\\xbb\\xfb\\x8f\\x14\\xf2\\x28\\x00\\xbd\\xed\\x7a\\x1f\\x3b\\\r\n\\x8a\\x16\\x56\\x2c\\x23\\xe3\\xa6\\xa7\\xbb\\x71\\x0a\\xc1\\x34\\x95\\xe9\\x50\\\r\n\\x47\\xa8\\x49\\x86\\xb9\\xf6\\x86\\xd0\\x4a\\xf6\\xc2\\x55\\x6a\\xac\\xee\\x01\\\r\n\\x14\\x60\\x6c\\xe6\\xe5\\x3f\\x6e\\xe0\\x6c\\x5a\\x9a\\x52\\x26\\xef\\xea\\xff\\\r\n\\x00\\x31\\x35\\x02\\x68\\x1a\\x04\\xb1\\x3c\\xde\\xfb\\x84\\xd1\\x75\\x11\\x5e\\\r\n\\xc8\\x81\\x87\\x57\\x67\\xd3\\x0e\\xf9\\x7c\\x9c\\x02\\x98\\x0b\\x75\\xdf\\x79\\\r\n\\x9e\\x39\\x39\\x59\\x0a\\x7e\\x83\\xd6\\xdf\\x31\\xe3\\xba\\x51\\x0b\\xdf\\xce\\\r\n\\x24\\x00\\x6c\\x5d\\xd2\\xf4\\xfc\\x53\\xfd\\xba\\xc8\\x17\\x65\\x25\\xd6\\xb3\\\r\n\\x67\\xd8\\x1c\\x91\\x40\\xfb\\x64\\xe0\\x0e\\xf6\\xd1\\x86\\xe8\\xf2\\x43\\x1d\\\r\n\\xbf\\x95\\xb9\\x37\\x8d\\x07\\x73\\xc4\\x8a\\xda\\x10\\x23\\xe9\\x40\\x75\\x01\\\r\n\\x41\\x6b\\x3e\\xa4\\x5a\\xd0\\xd7\\xf0\\x1e\\xac\\x0a\\xd3\\x49\\x11\\x38\\x1b\\\r\n\\xa0\\x0b\\x8a\\x2e\\x8f\\xaa\\x25\\x65\\x06\\x0d\\xb1\\xae\\xc6\\x4d\\x85\\x24\\\r\n\\xc6\\x51\\x8a\\xda\\x08\\x03\\x0d\\xc6\\x3a\\x0a\\x5f\\x49\\x2c\\x5f\\x03\\xee\\\r\n\\x6c\\x61\\x34\\x45\\x80\\x2e\\xdf\\x43\\xed\\x75\\x88\\xbe\\x23\\x5a\\x74\\x15\\\r\n\\x11\\xc8\\xa7\\x55\\xaa\\x69\\x4d\\xd0\\x14\\xac\\x3c\\x1f\\x79\\x84\\x83\\xbb\\\r\n\\x00\\x28\\xd5\\xd0\\xb4\\x14\\x46\\x63\\x0d\\x0f\\x6c\\x4c\\xad\\x2e\\x46\\x61\\\r\n\\xad\\x06\\xfe\\x37\\x0d\\xe1\\xbf\\x01\\x88\\x57\\xbb\\x84\\x0e\\x32\\x6c\\x4d\\\r\n\\x2f\\xa5\\x4b\\x9c\\x68\\x12\\x0b\\xcd\\x76\\x1f\\x97\\x40\\x4b\\x8b\\x0f\\x75\\\r\n\\xe0\\x65\\x5a\\xe0\\x34\\xab\\x66\\x58\\xfd\\xb4\\x44\\xbe\\xed\\x7a\\xf8\\xe8\\\r\n\\xcf\\x4a\\x82\\x0a\\xd5\\xe0\\x7c\\xdd\\xf3\\xfb\\x90\\x58\\x0e\\xd3\\xd5\\x78\\\r\n\\x00\\xc8\\xb5\\x18\\x11\\x1e\\x36\\x00\\x76\\x93\\xbb\\x0e\\xcb\\xd2\\x27\\x04\\\r\n\\x7e\\x2c\\x08\\xdf\\xd4\\x8f\\xba\\x53\\x99\\x12\\xa4\\x75\\x86\\xa5\\x75\\xf6\\\r\n\\x60\\xdb\\x4e\\x9d\\xa1\\x76\\x70\\x66\\x68\\x08\\x36\\x84\\x96\\x1a\\xc0\\xf7\\\r\n\\x78\\x43\\x1c\\x0f\\xa2\\xf0\\x32\\x4a\\xea\\xf5\\xff\\x00\\x58\\x20\\x0b\\x02\\\r\n\\xbe\\x49\\x06\\xa6\\x9d\\x7e\\xa5\\x34\\x42\\x09\\xe0\\x26\\xac\\x28\\xbe\\xff\\\r\n\\x00\\xac\\x94\\xfe\\x9e\\xcb\\x04\\x02\\x86\\x7c\\x46\\x81\\x9e\\x76\\xd4\\x7d\\\r\n\\x11\\x3e\\x06\\xcf\\xbc\\x31\\x46\\xd9\\x5c\\xf6\\xd1\\x2d\\xa1\\x99\\x18\\x1c\\\r\n\\xb9\\xff\\x00\\xa3\\xa7\\xca\\xd1\\x3f\\xc5\\xc2\\x0e\\xf7\\x05\\xe2\\xc3\\x74\\\r\n\\xc4\\xd8\\x25\\x0f\\xda\\x20\\xb9\\xc8\\xc1\\x41\\xf9\\x01\\xc6\\xc2\\xf1\\xbf\\\r\n\\x2f\\x54\\x10\\xfe\\xc0\\xde\\x68\\xc0\\x1b\\xa9\\xc0\\x11\\x1b\\xc4\\xaa\\x60\\\r\n\\x01\\x30\\xe0\\x18\\x86\\x90\\xf9\\x06\\xd5\\x0e\\x72\\xa5\\x84\\x62\\xc5\\x22\\\r\n\\xb4\\x4c\\xa0\\xba\\x60\\x2a\\x25\\x22\\x3f\\xcb\\x09\\x90\\x99\\xc0\\xd1\\xe4\\\r\n\\x02\\xdc\\x1e\\x40\\x71\\xfa\\x79\\xf7\\x25\\x6e\\x4e\\xeb\\xa2\\x21\\x3a\\xf8\\\r\n\\x7b\\x83\\x60\\x61\\x69\\x20\\xd7\\x30\\x2a\\xe2\\x3f\\x2a\\x7f\\x3e\\x07\\x98\\\r\n\\x6b\\x5d\\x3a\\x6b\\x57\\xc0\\x3c\\x7e\\xb1\\x4a\\x00\\x0a\\xd8\\x8c\\x7a\\xfd\\\r\n\\x7f\\x83\\x22\\x81\\x36\\xdb\\xc6\\x94\\xdb\\xba\\xa6\\x3e\\xdc\\x21\\x0c\\xb0\\\r\n\\xd4\\x68\\xe1\\x74\\x62\\x63\\x32\\xe8\\x1f\\x82\\xa0\\xfd\\x57\\xed\\x5f\\x71\\\r\n\\x48\\xe0\\x27\\x7f\\x07\\xdc\\x90\\x2b\\xa1\\xb3\\xbb\\x0e\\xf9\\x84\\x83\\x16\\\r\n\\x4b\\x08\\x0d\\x7f\\x93\\xb9\\xdc\\xc3\\xa2\\xc2\\x3b\\x7d\\xcf\\xc1\\x4f\\xcd\\\r\n\\x90\\x57\\x5d\\x01\\x86\\xde\\x7a\\xe7\\xe2\\xe2\\x1f\\x9b\\x3f\\x14\\x70\\xc2\\\r\n\\x9f\\x81\\x80\\x68\\x8c\\xd3\\xd7\\xc2\\x7e\\x22\\x6d\\xa0\\x83\\x25\\x41\\x10\\\r\n\\x87\\x6d\\xb4\\xf7\\x3c\\x1c\\x95\\x1c\\x70\\x63\\x42\\xf5\\xa8\\x65\\x8c\\xb0\\\r\n\\x9f\\x65\\x6b\\x67\\x41\\xdc\\x81\\xe5\\x7b\\xb5\\xbd\\x1b\\x04\\x40\\xb4\\x1b\\\r\n\\x63\\x35\\xdc\\x06\\xba\\xbf\\xc7\\x7e\\x06\\x80\\xc2\\xfa\\x16\\xe8\\x17\\x49\\\r\n\\x41\\xd0\\xe4\\x07\\xb8\\x6a\\xcb\\x30\\x14\\xa1\\xa3\\x73\\x8e\\xdc\\xb8\\x6c\\\r\n\\xa6\\x4b\\xbd\\xda\\x7f\\x41\\xc7\\x56\\x92\\x51\\x4d\\x78\\xd2\\x68\\x84\\x9b\\\r\n\\xd1\\xbc\\xe4\\x00\\x7d\\x9e\\xaa\\x9b\\x4a\\xc4\\x3f\\x19\\x5f\\x9b\\x89\\x3d\\\r\n\\x91\\xb0\\x0f\\xd0\\xce\\x34\\x87\\xa3\\x9a\\x2f\\x06\\x63\\x4a\\x66\\x36\\xf9\\\r\n\\xc2\\x2c\\xbc\\xc0\\x73\\x42\\xae\\x8c\\x22\\x5a\\xef\\xc4\\xd6\\xda\\xae\\x5d\\\r\n\\xc2\\x12\\x86\\xa4\\xe5\\xb0\\x44\\x97\\xb5\\x6e\\x2a\\x3d\\x68\\x2c\\x86\\x8a\\\r\n\\x2a\\xdf\\xf9\\x6f\\x02\\x0e\\xbb\\x7c\\x42\\x7f\\xf7\\x2c\\x00\\xbb\\x4f\\xd6\\\r\n\\x4d\\x44\\x29\\xd7\\x54\\x8f\\x9c\\x9e\\xe4\\x57\\xfc\\xc7\\xc5\\xa4\\xf4\\xdb\\\r\n\\xb3\\x80\\x73\\x09\\x02\\xaf\\x44\\x24\\x11\\x68\\x20\\x4c\\x23\\x75\\xed\\xec\\\r\n\\x60\\xd2\\x40\\xc2\\x6c\\xd9\\x33\\x15\\xad\\x27\\x11\\x1b\\xf4\\xb0\\xe7\\x93\\\r\n\\x5c\\x68\\xc1\\x50\\x99\\x73\\x37\\xcf\\xf0\\xe3\\x93\\x01\\xf9\\xec\\x42\\x7f\\\r\n\\x65\\xf9\\x83\\xac\\x55\\xc5\\xc2\\xba\\x42\\x20\\x6b\\x58\\x65\\x5d\\x22\\x04\\\r\n\\xed\\x51\\xbf\\x92\\x64\\xbe\\x2c\\x0b\\x55\\x1d\\x54\\x00\\x42\\x40\\x28\\x71\\\r\n\\x40\\x05\\x64\\x04\\x88\\xea\\x4a\\x49\\xe6\\x10\\xe2\\x0e\\x7a\\x5d\\x07\\x60\\\r\n\\x36\\x97\\x27\\xbc\\x2b\\xbb\\xc3\\xb0\\x00\\x1d\\x43\\x75\\xde\\x72\\x7b\\xe4\\\r\n\\x36\\x83\\x83\\xdc\\x50\\x6f\\xc6\\x52\\x6d\\x5b\\x73\\x7c\\x00\\x1f\\x83\\x8b\\\r\n\\x8c\\x43\\x13\\x11\\x1c\\x02\\x58\\x7c\\xbc\\x43\\x0b\\x43\\x3f\\x09\\x7d\\x9e\\\r\n\\x85\\xd0\\xb3\\x22\\x16\\x56\\x1a\\x5e\\x2a\\x6e\\xab\\xa2\\x75\\x87\\xae\\x7f\\\r\n\\x4d\\x33\\x46\\xd1\\x6e\\x80\\x4c\\x91\\x0b\\x3a\\x46\\xeb\\xa4\\x69\\x0a\\x1a\\\r\n\\x19\\xbb\\x91\\x68\\x75\\xc6\\x1b\\xa6\\xdf\\xd3\\xee\\x75\\xbc\\x8f\\xff\\xda\\\r\n\\x00\\x0c\\x03\\x01\\x00\\x02\\x00\\x03\\x00\\x00\\x00\\x10\\x71\\x32\\x25\\x50\\\r\n\\xe6\\x76\\x2c\\xf7\\x40\\x3b\\x2a\\x8f\\xf4\\x83\\x84\\x5a\\x84\\xf5\\xea\\xe5\\\r\n\\x30\\x14\\x64\\x8c\\xe5\\x42\\xb5\\x99\\x9a\\x6c\\x75\\x72\\x26\\x9e\\x29\\x5d\\\r\n\\x93\\x3e\\x6a\\x42\\x2c\\xef\\x9b\\xfe\\x65\\xb7\\x79\\xdc\\xf2\\x27\\x90\\x9f\\\r\n\\x93\\x9d\\x1c\\x31\\x67\\x10\\x74\\x6c\\xf7\\x51\\xe8\\x81\\xb7\\xfd\\xff\\x00\\\r\n\\xbb\\xf3\\x85\\x3b\\x69\\x6f\\x57\\xfa\\x26\\x92\\x82\\x75\\x73\\x3a\\xd1\\x2d\\\r\n\\x2d\\x96\\xd8\\x28\\x28\\x51\\x38\\xf9\\x7d\\x7d\\x2c\\x59\\x24\\x40\\x1e\\x95\\\r\n\\x9d\\xd5\\x96\\xf3\\xfc\\x41\\xd7\\x3d\\x6d\\xba\\x38\\x54\\xe7\\xf6\\xd9\\xd7\\\r\n\\x6b\\x88\\x1d\\x30\\xbe\\xb5\\x97\\x47\\x59\\x36\\x0a\\x09\\xc4\\xdc\\x35\\x49\\\r\n\\x6f\\xe4\\x38\\x86\\x8b\\xa1\\x24\\xc8\\x79\\x2d\\x74\\x8a\\xd9\\x8a\\xf8\\x66\\\r\n\\xa8\\x1d\\x8d\\xb4\\x62\\x74\\x2e\\x02\\x40\\x77\\xf7\\x12\\x5c\\x97\\x1e\\xb4\\\r\n\\x21\\x89\\x50\\x0d\\xb9\\x39\\xf4\\x4c\\x20\\xb5\\x62\\x79\\x26\\xdf\\xf4\\x53\\\r\n\\x65\\x6a\\x27\\xbb\\xd0\\x83\\xe2\\xd4\\x91\\x8f\\x77\\x56\\x59\\x64\\x4d\\x86\\\r\n\\x12\\xd4\\xe7\\x58\\xdd\\x4b\\x66\\x7b\\x60\\xcc\\x87\\x70\\x30\\x73\\xf6\\x54\\\r\n\\x63\\x23\\x12\\x97\\xc7\\x9a\\x87\\x79\\xd8\\x06\\x7b\\xe3\\xd5\\xd6\\x30\\x17\\\r\n\\x16\\xc1\\x3a\\xd1\\xbc\\x0d\\x96\\xd7\\xc8\\x12\\x03\\x5c\\x6c\\x9f\\x65\\xf7\\\r\n\\xa7\\xd3\\x6b\\x77\\x20\\x93\\xa2\\x6a\\xe5\\x36\\x08\\xdd\\x4d\\x85\\xc1\\x6c\\\r\n\\xb4\\x9d\\xb9\\xac\\x7c\\x91\\x3f\\x74\\xed\\xe6\\x24\\x8b\\xc2\\x36\\x8b\\x8a\\\r\n\\xf7\\xb8\\x09\\xc9\\xaf\\x37\\x1d\\x0b\\x8e\\xaf\\xf4\\xc7\\x27\\x57\\x09\\xe3\\\r\n\\xbd\\x31\\x1e\\x01\\x4c\\x54\\x51\\xdc\\x8d\\xe6\\x12\\xe7\\xd0\\x61\\x5f\\xa7\\\r\n\\x48\\xbd\\x4f\\xc1\\x73\\x9b\\xc4\\x45\\x53\\xd5\\xe9\\x82\\xf0\\xbe\\x71\\x57\\\r\n\\xd1\\x25\\x3c\\xcd\\xb4\\xbf\\xd4\\x32\\x49\\xd0\\x38\\x68\\x8a\\xb2\\x94\\x5c\\\r\n\\x25\\xd2\\x6f\\x40\\x35\\x4f\\xd7\\x60\\xdf\\x71\\xae\\xeb\\xe4\\x1e\\x33\\xe7\\\r\n\\xc9\\x9f\\xf3\\x7b\\x31\\x93\\x4f\\x57\\x78\\x02\\xc3\\x44\\x81\\x4f\\xea\\x1f\\\r\n\\x8a\\x8b\\xb0\\x39\\xe2\\xe3\\x24\\x60\\x6a\\xdf\\x8d\\xd8\\xa7\\x54\\x27\\x71\\\r\n\\x77\\xe0\\xf8\\x8c\\x9d\\xd9\\x5f\\x91\\xc5\\x2c\\x30\\xc0\\xaa\\x15\\xd6\\x52\\\r\n\\xbb\\x96\\xb9\\x9d\\x14\\x2a\\x87\\x5c\\x56\\x3e\\x14\\x9c\\x12\\xdf\\x45\\x39\\\r\n\\xfe\\x37\\xb8\\xe0\\xbf\\x82\\x8c\\x08\\x65\\x7f\\xb5\\x9b\\x11\\x95\\xbc\\xe6\\\r\n\\xfc\\xd5\\xbd\\x3c\\x40\\x06\\x1e\\x8a\\xa3\\x9e\\x24\\xde\\x2b\\x63\\xb4\\x5e\\\r\n\\x98\\xb8\\x30\\x14\\xf2\\x08\\x3d\\xb9\\x95\\x15\\xb5\\xfe\\x47\\xfb\\x77\\x40\\\r\n\\x93\\xdd\\x47\\x69\\xd4\\x1e\\xd1\\xa1\\x4a\\x4c\\x99\\x22\\x3d\\x36\\xd4\\xb1\\\r\n\\x2e\\x3a\\x98\\xe0\\xfc\\xc7\\x03\\xf5\\x79\\x2b\\x33\\x43\\x2e\\x34\\x56\\x0c\\\r\n\\x25\\x84\\x5c\\xd0\\x13\\x62\\x68\\x01\\x4b\\x95\\x35\\x8a\\x10\\xeb\\x08\\x25\\\r\n\\xbb\\x25\\xce\\x0a\\x40\\x0c\\x76\\x75\\x8f\\xde\\xe9\\x1a\\xf2\\xbd\\x51\\x6d\\\r\n\\x56\\x2d\\x47\\xaf\\x4a\\x10\\x17\\x51\\x1f\\x67\\xdc\\xe0\\x86\\xca\\xf8\\x66\\\r\n\\xcb\\xb5\\xea\\x73\\xaa\\x74\\x6a\\x30\\x4f\\xa1\\x53\\x47\\xfa\\xd0\\x5c\\xf6\\\r\n\\x91\\xfd\\xe4\\x75\\x90\\x74\\x62\\x43\\x61\\xa2\\xb6\\x6e\\xa7\\x35\\x98\\x75\\\r\n\\xe4\\x74\\x0e\\x72\\x76\\xea\\x87\\x6a\\x45\\x7f\\xe5\\x92\\x5c\\xca\\x92\\x81\\\r\n\\x7d\\x04\\x4a\\x3b\\xd9\\x08\\xac\\xfe\\xd7\\xf0\\x5e\\x8e\\xd8\\x2a\\x76\\xe4\\\r\n\\x28\\x28\\x09\\x04\\x50\\x78\\xa9\\x6d\\xbc\\x56\\x0e\\x97\\xe9\\x21\\x0b\\x6b\\\r\n\\x61\\xe8\\x05\\x23\\x81\\xfa\\x66\\xba\\xdf\\xca\\x00\\x2d\\xd4\\x71\\x43\\x62\\\r\n\\x49\\x99\\xa2\\x96\\x56\\x81\\xd7\\xbc\\x91\\x65\\xfe\\x2d\\x88\\x56\\x77\\xf3\\\r\n\\x26\\x28\\x62\\x7f\\x2e\\x7f\\x55\\x29\\x2a\\x63\\xfb\\xfa\\x59\\x0e\\x78\\xe0\\\r\n\\xab\\x0d\\xf1\\x05\\xa7\\xcc\\x2c\\x7b\\x53\\x29\\x3b\\xdf\\x17\\xb3\\xeb\\x13\\\r\n\\x43\\xaf\\x28\\xee\\xec\\xfe\\x57\\xa4\\xe5\\x36\\x51\\xcb\\x1a\\x82\\x8f\\x48\\\r\n\\xd5\\x54\\x93\\x58\\xb5\\x5d\\x2a\\x46\\xf8\\xa0\\x29\\x09\\x8c\\x70\\x84\\x84\\\r\n\\xf7\\x69\\x4d\\x23\\xf2\\x42\\xae\\xd2\\xa5\\x4d\\x79\\x48\\x9c\\xe1\\x0f\\xf8\\\r\n\\xeb\\x13\\x2f\\x86\\xe7\\xcb\\x75\\x1d\\xaa\\xac\\x03\\xa0\\x58\\xfb\\xd2\\xe0\\\r\n\\xc2\\xf8\\x18\\x0c\\xa4\\x5b\\x68\\x0b\\xad\\x11\\xb0\\xa1\\xaa\\xa6\\xfd\\xbc\\\r\n\\x4d\\xe4\\xc3\\xc4\\x64\\x2d\\x6a\\x5c\\x8c\\x4f\\x4c\\x94\\x8a\\xf8\\xcb\\xdd\\\r\n\\xe6\\xaf\\xaa\\xb1\\x6b\\xf1\\x80\\xdf\\x14\\xd5\\x8f\\x94\\xda\\xbe\\x92\\xf0\\\r\n\\x31\\xad\\xbc\\xa9\\xf5\\x45\\xa2\\xf1\\xc9\\x7f\\xff\\xc4\\x00\\x25\\x11\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x00\\x02\\x02\\x03\\x00\\x01\\\r\n\\x11\\x21\\x31\\x00\\x41\\x51\\x61\\x71\\x81\\x91\\xa1\\xc1\\xb1\\xd1\\xe1\\xf0\\\r\n\\xf1\\xff\\xda\\x00\\x08\\x01\\x03\\x01\\x01\\x3f\\x10\\xc1\\x2a\\x96\\x09\\x54\\\r\n\\x83\\x2a\\xb9\\xbf\\x08\\xa5\\xcb\\xe0\\xd2\\x95\\x00\\x88\\x0c\\x58\\xc9\\x44\\\r\n\\x6a\\x65\\xaa\\x79\\x8f\\xce\\x1d\\xc4\\x4f\\x2d\\x6a\\x1b\\xa0\\x7c\\x0a\\x62\\\r\n\\xe0\\xc2\\xcd\\x89\\xc1\\x99\\x20\\x94\\x7d\\x7e\\xdc\\x76\\xe2\\x61\\x31\\x21\\\r\n\\xa6\\x01\\x1f\\x65\\x80\\xfb\\xd4\\xe3\\xd4\\xbf\\xf4\\xce\\x70\\x3c\\xb6\\xd4\\\r\n\\xb5\\x0f\\x80\\x35\\x5d\\xe3\\x0f\\x89\\x5c\\xf1\\xd3\\x62\\x85\\x76\\x07\\xd0\\\r\n\\x13\\x76\\x98\\x89\\x11\\x91\\x9b\\xda\\x7e\\x4a\\xfc\\x35\\x65\\x29\\x22\\xd3\\\r\n\\x37\\x92\\xb8\\x92\\x6b\\xb1\\x65\\x23\\x44\\xf9\\x42\\x3a\\x8a\\x48\\x11\\x34\\\r\n\\x91\\x55\\xc2\\xa5\\xf3\\x92\\xf4\\x15\\x02\\x01\\x9a\\x82\\xec\\x56\\xf9\\xbd\\\r\n\\x18\\x10\\x21\\x71\\x28\\x64\\x45\\xbd\\x17\\x11\\x71\\xd2\\x2c\\x70\\x15\\x16\\\r\n\\xe6\\x03\\xc5\\x93\\x6f\\x64\\xd0\\xad\\x30\\xa4\\x3f\\x81\\x7e\\x9e\\x14\\x32\\\r\n\\x83\\x11\\x48\\x50\\x42\\x54\\xf1\\x0a\\x54\\xa7\\xa5\\xa8\\xda\\xa0\\x10\\x10\\\r\n\\xfa\\xca\\x81\\xf2\\x3d\\x9b\\x40\\xc2\\x94\\x91\\x52\\x1c\\x44\\x20\\x71\\x08\\\r\n\\x90\\x68\\x23\\xc0\\x1b\\x42\\xba\\x53\\xe8\\x01\\xa2\\x92\\x62\\x0a\\x8f\\xb5\\\r\n\\xe8\\x85\\xa1\\x88\\x52\\x95\\x0b\\x10\\x1d\\xb5\\x0c\\x11\\x14\\xb5\\xa3\\xeb\\\r\n\\x08\\x75\\x48\\xa2\\xa8\\x68\\x01\\xb7\\xb8\\x1b\\x2d\\x82\\x5a\\x06\\xa7\\x8a\\\r\n\\x68\\x9e\\x40\\x80\\xa0\\x0b\\x08\\xed\\x5a\\x8c\\x7c\\xa0\\x05\\x91\\x98\\x01\\\r\n\\x8c\\x43\\x1e\\x11\\xce\\x2f\\x9f\\x90\\x01\\x0b\\x03\\x40\\x8b\\x0c\\x4a\\xc6\\\r\n\\x3c\\x85\\x43\\xc1\\xe2\\x91\\x19\\x8a\\x8a\\x53\\x11\\xe7\\xab\\xa4\\x82\\x59\\\r\n\\x15\\x44\\xcc\\xdf\\xde\\x92\\xbd\\x07\\x2b\\x63\\x20\\xfa\\x64\\xfc\\x54\\x4a\\\r\n\\x70\\x18\\xca\\x93\\x15\\xe2\\xc1\\x52\\x00\\x20\\x8a\\x92\\x2d\\x7d\\x19\\xc4\\\r\n\\x68\\x00\\xa4\\x2a\\x10\\x27\\x4e\\x7a\\x54\\xc6\\x8d\\x57\\x3a\\x02\\x0c\\x1a\\\r\n\\x2c\\x3a\\x79\\xd0\\x84\\x5b\\x88\\xa4\\x28\\x22\\x9f\\x09\\x19\\xe7\\xc7\\xe8\\\r\n\\xec\\xa4\\x08\\xab\\xb0\\x52\\xf4\\x11\\x3c\\x5f\\x45\\x45\\x31\\x80\\xa6\\x81\\\r\n\\x29\\x29\\x62\\x8d\\x7f\\x27\\xab\\x60\\x5e\\x1d\\xc0\\x85\\x5d\\xa9\\xd5\\x96\\\r\n\\x88\\x23\\x89\\xe0\\xa2\\x1e\\x22\\xa0\\xf0\\x20\\x09\\x05\\x25\\x55\\x21\\x6e\\\r\n\\x9a\\x42\\x68\\x82\\xe8\\x01\\x70\\x83\\x10\\x71\\xad\\x20\\x44\\xf1\\x50\\x5f\\\r\n\\x95\\xc5\\xad\\x2c\\xb8\\x47\\xe5\\x6f\\x88\\x20\\x09\\x6b\\x0d\\x1b\\x54\\x08\\\r\n\\x11\\xdb\\x61\\xf5\\xdb\\xd7\\xc3\\x00\\x2f\\x46\\xa5\\x62\\x47\\x8c\\xc4\\xc6\\\r\n\\x81\\x09\\x2f\\x02\\x2f\\x80\\x2f\\x86\\xaf\\xdc\\x02\\xc1\\xa1\\x86\\x50\\x44\\\r\n\\x0f\\x8b\\xf0\\xb4\\x08\\x22\\x2a\\xa8\\x8e\\xd0\\xba\\xb6\\x4e\\x23\\x22\\xaa\\\r\n\\x12\\x51\\x99\\xb9\\x7a\\xac\\x58\\xa0\\x92\\xa8\\x27\\xa0\\x55\\x55\\x5b\\x48\\\r\n\\xfc\\x3d\\xaa\\xc7\\x0f\\xf1\\x46\\x55\\xe2\\x21\\xcb\\x8c\\x89\\x19\\x50\\x83\\\r\n\\x24\\xc4\\x08\\x1b\\x81\\x8a\\x0a\\xa1\\x27\\xc1\\x05\\xa5\\x17\\x9a\\xf9\\xa7\\\r\n\\x26\\xe5\\xc2\\x50\\xac\\x90\\x04\\xd6\\xa9\\x48\\x94\\xbf\\x01\\x4e\\x79\\x95\\\r\n\\x58\\xd2\\x94\\x47\\x08\\x60\\x8e\\x60\\x36\\x22\\xdb\\x55\\xad\\xb1\\x20\\x22\\\r\n\\x10\\xf7\\xb1\\xf4\\xba\\xc5\\xc5\\x2f\\xad\\x61\\x80\\x8e\\x94\\x62\\xea\\x91\\\r\n\\x22\\x01\\x99\\x1a\\x07\\x77\\xb6\\x8b\\x89\\x9b\\xef\\x24\\x6a\\xc3\\x52\\xb3\\\r\n\\xa8\\x22\\x3d\\x10\\x04\\xd9\\xeb\\xb4\\x43\\x53\\xf4\\x45\\x0a\\x9d\\x06\\xe0\\\r\n\\xa8\\x88\\x2d\\x09\\xc0\\x56\\x7f\\x47\\x00\\x1e\\xb2\\xac\\x7c\\xf2\\x13\\x54\\\r\n\\x80\\x40\\x00\\x10\\x7d\\x0a\\x80\\xd6\\xa5\\x91\\xf8\\x88\\x09\\xfa\\x95\\x00\\\r\n\\xad\\x55\\xf0\\x2c\\x08\\xdb\\x04\\x04\\x3c\\xbf\\x81\\xd0\\xad\\x27\\x84\\xed\\\r\n\\x50\\x33\\x8e\\xc1\\x40\\x8e\\x1a\\x93\\xed\\xf5\\xd7\\xb5\\x0c\\xd2\\x48\\xa4\\\r\n\\xad\\x40\\xa0\\xc6\\xf8\\x21\\x27\\x57\\xe0\\x99\\xac\\x1e\\x57\\x20\\x79\\xf8\\\r\n\\x78\\xaa\\x53\\xfa\\xc6\\x05\\x01\\x4b\\x6f\\x85\\x8d\\x07\\x4d\\x29\\x62\\xd3\\\r\n\\x85\\x4a\\x2a\\xbb\\x2a\\xb4\\x67\\x2e\\xb8\\x01\\x17\\x40\\x21\\x42\\x92\\x89\\\r\n\\x80\\x5b\\xc5\\x46\\xa6\\xe9\\xf4\\x88\\x4a\\x5f\\x68\\xe5\\xad\\xd2\\x90\\x48\\\r\n\\x4a\\x44\\xad\\xab\\x3c\\x4f\\xaa\\xb8\\xec\\xb9\\xfb\\x89\\xa6\\xe4\\x7d\\x09\\\r\n\\x5c\\xb5\\x76\\x30\\x82\\x02\\x80\\x47\\xa7\\x81\\x9a\\x4c\\x9f\\xb5\\x95\\x10\\\r\n\\x0a\\xad\\x11\\xe1\\x4b\\x45\\x41\\x1a\\x3b\\x0d\\x50\\x8a\\x90\\xa0\\x44\\x11\\\r\n\\xe7\\x87\\x42\\xd4\\x48\\xc5\\x46\\x9e\\xbb\\xde\\x66\\x32\\x8c\\xd8\\x44\\x66\\\r\n\\x08\\x78\\x9e\\x88\\xc3\\x23\\x28\\xe1\\xc5\\x00\\x08\\xf2\\xbd\\xce\\x40\\x67\\\r\n\\x36\\xac\\xad\\xf9\\x0a\\x22\\x61\\x64\\x29\\x55\\x09\\xb2\\x50\\x22\\x38\\x8d\\\r\n\\xc8\\x60\\xeb\\x23\\x29\\x12\\x8a\\x86\\x84\\x5b\\x89\\xdf\\x38\\x3b\\x80\\x2a\\\r\n\\x54\\xb9\\xf8\\x70\\x7f\\xe5\\x9e\\x51\\xeb\\x29\\x02\\xe1\\x0a\\x48\\x3b\\x1a\\\r\n\\x8f\\x8e\\x2f\\x09\\xe4\\xba\\x00\\xa9\\x91\\x32\\x06\\x3b\\xd2\\x54\\x75\\x70\\\r\n\\x32\\x0c\\x0d\\x08\\xa1\\xaa\\x2b\\xf1\\x23\\x07\\x04\\x00\\x1a\\x2f\\x49\\x0f\\\r\n\\x19\\xdd\\x1a\\xe9\\x3e\\x2b\\xd8\\x28\\x1a\\x61\\xd9\\x46\\xba\\x34\\x59\\x19\\\r\n\\x42\\x30\\x3a\\x28\\xa0\\xcd\\x0a\\x08\\x10\\x52\\x74\\x52\\xac\\x69\\x03\\x2c\\\r\n\\x04\\xcb\\xd4\\xa6\\x71\\xd2\\x20\\xb5\\x37\\x04\\x9b\\x80\\x11\\xa8\\x99\\x81\\\r\n\\xa2\\xad\\x3e\\xec\\x6d\\x19\\x42\\xea\\xb8\\x20\\xa9\\xc0\\x87\\x83\\x10\\x1e\\\r\n\\xfb\\x47\\xa6\\x80\\x64\\x69\\xb2\\x05\\x60\\xbb\\xb0\\x4c\\x14\\x05\\xe8\\xb5\\\r\n\\xb0\\xd5\\x05\\xb8\\xee\\x0d\\x41\\x2f\\xd2\\x40\\x2a\\x43\\xc1\\x9a\\x98\\x86\\\r\n\\x18\\x2d\\x95\\x63\\xfe\\xce\\x8b\\x76\\xe9\\xf1\\x50\\xe9\\x08\\x62\\x90\\x07\\\r\n\\x55\\xc1\\xac\\x93\\x5d\\x38\\x6b\\x49\\xac\\x16\\x29\\xca\\xf8\\x58\\x13\\x40\\\r\n\\x20\\xa3\\x2e\\x9a\\x5a\\x30\\xd4\\xf0\\xa4\\xef\\x2c\\xc9\\x28\\x38\\x6c\\x23\\\r\n\\x6b\\x85\\xe5\\x30\\x2c\\x32\\xf7\\x1d\\xf2\\xa1\\x18\\x38\\x3f\\xa9\\x52\\x89\\\r\n\\x34\\x86\\x02\\x3f\\x03\\xc5\\x2e\\x04\\xac\\xca\\x27\\xcc\\xa9\\x40\\x20\\x6b\\\r\n\\x1e\\x67\\x44\\xc8\\x2f\\xa1\\xcd\\x7c\\x09\\x48\\x8c\\xf2\\x98\\x94\\xba\\xa4\\\r\n\\x53\\x80\\x0c\\x08\\xa1\\x11\\x79\\xe9\\x32\\xab\\xa5\\x40\\x6b\\x41\\x54\\x3a\\\r\n\\x34\\x47\\x22\\x0c\\x12\\x54\\x62\\xc1\\x00\\x6c\\x1e\\x10\\xc2\\x8a\\x44\\xd0\\\r\n\\x00\\xa6\\x06\\x41\\x5c\\x3c\\x96\\x8e\\xcc\\xc4\\x50\\x01\\x05\\x9a\\xb8\\x5e\\\r\n\\x06\\xf8\\x26\\x39\\xfe\\x30\\x33\\x3d\\x78\\x35\\x8e\\x47\\xa3\\x9c\\x10\\x95\\\r\n\\x04\\x96\\xcb\\x30\\xcb\\xd5\\x37\\xdb\\xc7\\x4d\\xbf\\x42\\xa3\\x91\\x06\\x0a\\\r\n\\xb1\\x41\\x6b\\xc0\\x22\\x44\\x94\\x78\\x32\\x46\\x0b\\x41\\xc1\\x0a\\x95\\x52\\\r\n\\xc0\\x04\\x64\\x00\\x80\\x01\\x22\\x01\\x22\\x07\\x3c\\xa2\\xbe\\x8a\\x06\\x02\\\r\n\\x20\\xa0\\x19\\x54\\x11\\x41\\xc5\\xeb\\x8c\\x38\\x08\\x6d\\x40\\x22\\x2d\\x40\\\r\n\\xf3\\x2c\\x7c\\x82\\x19\\x62\\xa7\\x14\\x4d\\x24\\xa0\\xf4\\x6f\\x43\\x20\\x2a\\\r\n\\x0c\\xd8\\x61\\x42\\xb8\\x6a\\xf9\\x70\\x64\\xa8\\xc1\\x52\\x01\\x15\\x95\\x00\\\r\n\\x00\\xbd\\x55\\x40\\x88\\x27\\x51\\x61\\x52\\x35\\x03\\x01\\x1d\\xce\\x21\\xca\\\r\n\\x4c\\x6b\\xf0\\x18\\x10\\xe6\\x28\\x34\\x2d\\xc0\\xa0\\x6a\\x03\\x20\\x85\\xb9\\\r\n\\xae\\x77\\x05\\x04\\x84\\x8c\\x00\\x67\\x19\\x3c\\x5c\\xa3\\xd1\\x08\\xde\\x04\\\r\n\\xa5\\x8c\\x72\\x8a\\x54\\x50\\x44\\xf0\\x65\\x31\\x5d\\x94\\x8d\\x98\\x10\\xbe\\\r\n\\x0d\\xb1\\xf3\\x57\\x2c\\x3b\\x2c\\x40\\x0a\\xbe\\x60\\xa5\\x68\\x45\\x23\\x16\\\r\n\\x1a\\xcf\\xd8\\x8c\\x47\\x97\\x05\\x69\\x29\\x40\\x44\\x63\\x10\\xa0\\x20\\x46\\\r\n\\x36\\xf2\\xa1\\xd8\\x14\\xd2\\x19\\x08\\x11\\xf0\\x02\\xe5\\x98\\x7a\\x35\\xb1\\\r\n\\x28\\xc2\\x34\\x39\\xdb\\x59\\x85\\x50\\x22\\xb4\\x54\\x80\\xfc\\x7d\\xaa\\x04\\\r\n\\x30\\x61\\x43\\x11\\x5e\\x46\\x11\\x23\\xc8\\x18\\xab\\x58\\xd8\\x27\\x60\\x08\\\r\n\\x12\\xe0\\x27\\x17\\xc7\\xf0\\x4d\\x4e\\x19\\x04\\x31\\x6a\\x4b\\x0a\\x32\\x82\\\r\n\\x68\\xb0\\xf6\\xdf\\x40\\x60\\x5f\\x65\\x58\\xfa\\xf4\\x52\\x30\\x74\\x10\\x9f\\\r\n\\xa9\\x8a\\x81\\x30\\x88\\xa1\\x8c\\x62\\xaa\\x92\\xaa\\x11\\x35\\xbb\\x10\\x4a\\\r\n\\x02\\x41\\x80\\xcb\\xe0\\x22\\x93\\xc0\\xa1\\x12\\x9c\\x81\\x21\\xfe\\xd9\\xb2\\\r\n\\xfc\\x22\\x83\\x59\\x01\\x09\\xa2\\xc8\\xf5\\xca\\x13\\x58\\x58\\x35\\xc6\\xf1\\\r\n\\x51\\xbe\\xd3\\x94\\xd8\\x1a\\x48\\x0f\\x8c\\x9f\\x22\\x5d\\x48\\x62\\x5e\\x44\\\r\n\\x0f\\xd0\\x0f\\x0a\\x01\\x44\\xe2\\x28\\x32\\xba\\x70\\x89\\x49\\x36\\x40\\x0c\\\r\n\\x5d\\xd0\\x21\\x0f\\x8e\\x59\\xd2\\x24\\x54\\x7a\\x0c\\x10\\x2b\\x7e\\x23\\x04\\\r\n\\x22\\x10\\xe6\\xf3\\xd5\\x6c\\xa8\\x40\\x54\\x2c\\xd7\\x4c\\x07\\x33\\x28\\xe3\\\r\n\\x8d\\x4d\\x79\\x72\\xc9\\xf1\\x0c\\x46\\x9d\\x0b\\x12\\xd3\\xa3\\xe4\\x66\\x38\\\r\n\\x19\\xbc\\x90\\x58\\xe0\\x0a\\xb0\\xaf\\x09\\xdf\\x8d\\x03\\xf3\\x23\\x08\\x6d\\\r\n\\x70\\x25\\x1e\\x46\\xe6\\x69\\x75\\x34\\x41\\x52\\x70\\xc6\\x0a\\x48\\x83\\x50\\\r\n\\xc4\\xb4\\xb4\\xb4\\xc2\\xa1\\x10\\x46\\x0d\\x65\\x44\\xcc\\xed\\x69\\x50\\x20\\\r\n\\x11\\x54\\x57\\xd7\\x65\\xad\\x95\\x02\\x82\\x30\\xb1\\x18\\x21\\x4f\\x0b\\xe6\\\r\n\\xf2\\x14\\x25\\x4d\\x08\\x90\\xea\\xbe\\x73\\x3f\\x92\\xc5\\xa4\\x84\\x08\\x41\\\r\n\\x8d\\x78\\x6c\\xb5\\x18\\x18\\x29\\x14\\xc1\\x08\\x6d\\x53\\xc7\\x19\\xb8\\x64\\\r\n\\x4a\\x4a\\x29\\x51\\x32\\x84\\x4a\\xa5\\xd1\\x61\\x98\\x55\\x80\\x37\\xb1\\xd2\\\r\n\\x0f\\x3d\\x2e\\x32\\xaf\\xa8\\x45\\x80\\xba\\x0e\\x0a\\x1c\\x4c\\xd9\\x14\\x4b\\\r\n\\xe7\\xca\\x92\\xd5\\x2d\\x93\\x5a\\xf6\\x99\\x5a\\xa8\\xb9\\x12\\xa1\\xf4\\xd2\\\r\n\\x87\\xf3\\xa5\\x16\\xf0\\x6f\\xe9\\xf0\\x84\\xd8\\x13\\xa0\\x46\\xa3\\x0e\\x70\\\r\n\\x4e\\xd9\\x32\\x80\\x02\\xd6\\x74\\x9d\\x17\\x42\\x47\\xc0\\x1c\\x0a\\x10\\x08\\\r\n\\x0a\\x86\\x84\\xa5\\x12\\x9b\\x1c\\x04\\x04\\x28\\x84\\x22\\x2d\\x0d\\x43\\x22\\\r\n\\x60\\xf0\\x31\\xf0\\xf6\\xb5\\x01\\x0c\\xac\\x1c\\xc3\\x16\\x19\\xd7\\x64\\xa8\\\r\n\\x83\\x06\\x14\\x04\\x28\\x10\\xa2\\x74\\x4e\\x11\\xe9\\xf1\\xf4\\x67\\x91\\x29\\\r\n\\x65\\x8b\\xc0\\x3a\\x80\\x42\\xac\\x22\\x86\\xed\\x51\\xa4\\x44\\xc4\\x42\\x02\\\r\n\\x20\\x8e\\xdf\\x5d\\x8f\\x5b\\x0d\\xc0\\x19\\x0e\\x8a\\x41\\x67\\x87\\x9c\\xc7\\\r\n\\x03\\xe8\\x90\\x01\\x81\\x2c\\x3a\\x14\\xc7\\xd7\\x29\\xcb\\x20\\x85\\xb4\\x8c\\\r\n\\x25\\x69\\xab\\xc1\\x34\\x30\\xe4\\xa1\\x94\\x60\\x0a\\x81\\x18\\x7b\\x01\\x3d\\\r\n\\x8a\\x45\\x50\\x40\\x74\\x00\\x8d\\xb1\\x35\\xf0\\x51\\xad\\x09\\x60\\xc1\\x13\\\r\n\\x87\\x5f\\xd7\\x3b\\x48\\x2e\\x71\\x34\\x60\\x8d\\xd1\\xfa\\x1c\\x1d\\x44\\xa4\\\r\n\\x91\\x1f\\x88\\x1a\\xc4\\x71\\x78\\x8c\\xe1\\xd9\\xa0\\x9c\\xc9\\x80\\x11\\x50\\\r\n\\x04\\xa5\\x2e\\xde\\x45\\x9e\\x99\\x53\\x24\\x50\\xeb\\x55\\x50\\x60\\x27\\xdb\\\r\n\\x09\\x1e\\x80\\x3f\\xa1\\x51\\xc2\\x4f\\x05\\x00\\x12\\x50\\x57\\xc0\\x55\\x6a\\\r\n\\xab\\xe2\\x07\\x01\\xa2\\x31\\xac\\x0a\\x09\\x5c\\x80\\x6e\\x36\\x24\\x23\\x5a\\\r\n\\x31\\x82\\x7f\\xeb\\x7e\\xa5\\x44\\xe8\\x04\\xbb\\xd2\\x0b\\x33\\xba\\x95\\x90\\\r\n\\x96\\xa3\\x88\\x4d\\xb4\\x1f\\x45\\x2d\\x60\\x23\\x58\\x28\\x7f\\xa5\\x78\\xc1\\\r\n\\x27\\x19\\x35\\xa9\\x05\\x48\\x10\\x8b\\xda\\x88\\x89\\x10\\x5e\\x80\\x40\\x88\\\r\n\\x3d\\xa2\\x03\\x4d\\x30\\x59\\xc0\\x20\\xca\\xd1\\xac\\x33\\x20\\xf8\\x5c\\x58\\\r\n\\x05\\xcd\\x00\\x5d\\x0b\\x16\\x48\\x95\\x1a\\xa5\\xf8\\x6e\\x55\\xbd\\xda\\x8a\\\r\n\\x78\\x7b\\x82\\x52\\x9a\\x17\\xb0\\xe3\\xa4\\x2c\\x11\\x44\\xda\\x41\\xc5\\x0b\\\r\n\\x09\\x21\\xa1\\x05\\x62\\x29\\x86\\x7d\\xed\\x4f\\x87\\x54\\x18\\x0d\\x38\\x38\\\r\n\\x8b\\x60\\x50\\x11\\x0c\\x1c\\x77\\xda\\x1c\\x16\\x6f\\x44\\x4c\\x37\\x84\\x4e\\\r\n\\xb0\\x96\\x44\\x06\\x88\\xe2\\xfc\\xcb\\x9d\\x67\\x11\\x34\\x05\\x7e\\xa1\\x81\\\r\n\\xf6\\xa9\\x3d\\x82\\x1e\\x72\\x54\\x94\\x18\\x8a\\x36\\x3c\\x4b\\x85\\x81\\x56\\\r\n\\x34\\xd2\\x61\\x29\\x1a\\x03\\x49\\x50\\x89\\x94\\xba\\xa2\\x11\\x45\\x48\\x96\\\r\n\\x16\\x84\\xd2\\xaa\\x0a\\xd1\\x94\\xa2\\x38\\x30\\xea\\x35\\x0a\\x9e\\x84\\x0a\\\r\n\\xa2\\xa0\\x5d\\x43\\x2a\\x4f\\x54\\x1a\\xb0\\x10\\x17\\x18\\x00\\xbe\\x05\\x61\\\r\n\\x72\\xc3\\xaa\\xec\\x81\\x08\\x39\\x40\\xc0\\x63\\xd5\\x24\\x6c\\x40\\xeb\\x20\\\r\n\\x0e\\x8c\\x2e\\x84\\x43\\x57\\x0d\\x50\\x29\\xa5\\xc2\\xfd\\x04\\x12\\xb8\\x98\\\r\n\\xac\\x1c\\x58\\x8c\\x11\\x28\\xa4\\x13\\xd4\\xa8\\x84\\x68\\x15\\xdc\\x82\\x73\\\r\n\\x36\\x97\\x8e\\xaf\\x25\\x49\\x42\\x07\\x83\\xb0\\x04\\x21\\xe2\\xbd\\x95\\x3a\\\r\n\\xb5\\x09\\xda\\x1e\\x4c\\xa0\\x93\\xd5\\x07\\x21\\x06\\x55\\x00\\x0e\\xae\\x5f\\\r\n\\xe1\\xb1\\xe2\\xa8\\xd2\\x8c\\x35\\x18\\xbb\\xe2\\xd5\\xc4\\xdb\\x6c\\x64\\x5c\\\r\n\\x06\\x08\\xc4\\xf0\\x85\\xd1\\x57\\x9b\\x46\\x14\\xa2\\x22\\x42\\xa2\\x79\\xcb\\\r\n\\xa1\\x53\\x55\\xb4\\x54\\xb3\\x48\\xb1\\x96\\x03\\x20\\xec\\x92\\x85\\xe1\\xd0\\\r\n\\xaf\\xba\\x81\\x0c\\x26\\x22\\x3e\\x9c\\xed\\x56\\x20\\x07\\xa9\\x16\\xdc\\x03\\\r\n\\x14\\x31\\x99\\x04\\x7c\\x05\\x0f\\xae\\xae\\xdb\\x92\\x70\\x0a\\xc5\\x92\\x2f\\\r\n\\x3c\\x8d\\x2e\\x9d\\x6e\\x4e\\xd4\\x47\\x80\\x85\\xd8\\xd9\\xd9\\x53\\x74\\xb3\\\r\n\\xb5\\x08\\xf2\\xcc\\x15\\xa1\\x0f\\xa1\\x00\\xc2\\xdb\\x79\\xd6\\x17\\xc6\\x54\\\r\n\\xeb\\x1c\\x5d\\x01\\xa8\\x10\\x51\\x01\\xf1\\xca\\x86\\x82\\x01\\x64\\x05\\x40\\\r\n\\x58\\x6b\\x9f\\x5f\\x1c\\x8e\\x84\\x12\\x49\\x21\\x71\\x30\\x0d\\xc0\\x8f\\x04\\\r\n\\x53\\xe0\\xc4\\x9d\\x68\\x74\\xf4\\x26\\x90\\xa4\\x9d\\xd0\\xbd\\xca\\xc4\\xbd\\\r\n\\xa0\\xd9\\x65\\x40\\x82\\x41\\x6d\\x39\\xa0\\x30\\x99\\x02\\xf4\\x17\\xc2\\x31\\\r\n\\xfc\\x3e\\xff\\x00\\xe2\\x40\\x0a\\x2a\\xc3\\xb1\\x5d\\xb8\\x17\\x15\\x4a\\x24\\\r\n\\x03\\x81\\x15\\x9d\\x0b\\xed\\x20\\x18\\x35\\xcb\\xb2\\x92\\xc0\\x52\\xaf\\x3c\\\r\n\\x7a\\xf8\\x04\\x41\\x77\\x0b\\x0a\\xd0\\x21\\xa9\\xaf\\x97\\x98\\xa3\\xaa\\x23\\\r\n\\xea\\xc5\\x0a\\xba\\x02\\x34\\x04\\x06\\x5d\\x78\\xd4\\xa8\\x4d\\x25\\x0e\\xa7\\\r\n\\x95\\x08\\x24\\x99\\x4a\\x87\\x68\\x1a\\x41\\x69\\xfa\\xed\\xb9\\x66\\x06\\xe8\\\r\n\\x03\\x51\\x2b\\x3f\\xaa\\xf0\\xfc\\xf0\\x40\\x40\\xa7\\xf0\\xb1\\xf8\\x48\\x89\\\r\n\\x14\\xe8\\x25\\x15\\x5a\\x84\\x60\\x89\\x0a\\x6a\\x1e\\xd1\\xa1\\xcd\\x6e\\x1c\\\r\n\\x2c\\x24\\x68\\x0a\\x62\\x13\\x02\\x25\\x17\\x4b\\x10\\xab\\x43\\xfb\\x69\\x8e\\\r\n\\x50\\x93\\x70\\xb8\\xe1\\x13\\xa4\\x7e\\xc1\\x2b\\xc2\\x56\\x38\\x4c\\x02\\xeb\\\r\n\\xa3\\x00\\x88\\x88\\xd5\\xbe\\x2f\\x72\\x79\\xe0\\x15\\x6d\\x3a\\x0f\\xa3\\xfc\\\r\n\\xbe\\xc6\\xf9\\xc4\\x45\\xb0\\x5d\\xac\\x52\\x02\\xd3\\x8a\\x18\\x0c\\x06\\x3d\\\r\n\\x21\\x51\\x41\\x01\\x25\\x7a\\xdd\\xd2\\x88\\xc3\\x94\\x28\\xc9\\x99\\x05\\xbd\\\r\n\\x7b\\xed\\xcc\\x93\\x00\\x08\\xe0\\x30\\x8b\\xe6\\xd9\\xe7\\x5e\\x4f\\xc1\\xc0\\\r\n\\x28\\x38\\x80\\xa0\\x18\\x69\\xcb\\x24\\x4d\\x4c\\xb6\\x0b\\x48\\x2d\\xac\\xc8\\\r\n\\xec\\x18\\x06\\x47\\x0b\\xdc\\x30\\x2f\\x0d\\x1c\\x0d\\xd5\\x43\\xfb\\x24\\x45\\\r\n\\x4a\\x53\\xca\\xdb\\x1f\\xf7\\x8b\\xc8\\x63\\xa9\\xd8\\x7c\\x0e\\x70\\x4a\\xaa\\\r\n\\x40\\x0b\\x0a\\x08\\xc2\\x84\\xe7\\xbc\\x9c\\xca\\xba\\x4f\\xd8\\xb6\\x1b\\x4f\\\r\n\\x22\\x59\\x87\\x4a\\x81\\x0e\\x6b\\x22\\x8a\\x02\\x78\\x85\\x8c\\x11\\x59\\xb6\\\r\n\\x89\\x4c\\x6b\\x45\\x22\\xc5\\xf5\\x49\\x59\\x06\\xb0\\x34\\xa1\\x09\\x46\\x08\\\r\n\\x32\\xa2\\x14\\xc8\\x45\\x36\\x9a\\x20\\xcd\\xa1\\xa8\\xf0\\xcf\\x1a\\x05\\x20\\\r\n\\x45\\x40\\x3f\\x11\\xe8\\x46\\xa5\\xe0\\xa3\\x1f\\xd1\\x22\\x42\\x81\\xa9\\x8c\\\r\n\\x80\\xdd\\x14\\x19\\x7a\\x8f\\xb8\\xe8\\x94\\x64\\x01\\x9d\\x17\\x86\\xb1\\x98\\\r\n\\xb4\\x9a\\xc7\\x8a\\x26\\x85\\x68\\x06\\x71\\x0e\\xc8\\x12\\xc6\\x0a\\xa2\\xa1\\\r\n\\x5e\\xb6\\x65\\xf9\\xb3\\x30\\x42\\xa5\\x61\\xfa\\x23\\xc4\\x77\\xe0\\x40\\x29\\\r\n\\x50\\x27\\x04\\x14\\x44\\x04\\x79\\xf4\\x14\\x8e\\x1a\\x80\\x06\\x82\\xc0\\x24\\\r\n\\x22\\x47\\xc5\\xf2\\x80\\x7c\\x30\\x6a\\xa6\\x28\\x14\\x74\\x3d\\x7b\\x11\\x01\\\r\n\\x5a\\x6b\\x14\\x87\\x64\\xa4\\x95\\x47\\x84\\x01\\x93\\xe1\\x13\\x5d\\xd3\\x5f\\\r\n\\x1d\\xf1\\x9c\\xf4\\x7d\\x57\\x04\\x6a\\x1d\\xa0\\xd1\\xe4\\x0c\\xc0\\x84\\x67\\\r\n\\x42\\xab\\xa0\\xc9\\x20\\xaf\\xc4\\xbd\\xc4\\xeb\\x40\\x22\\x42\\xe0\\x04\\x4f\\\r\n\\x1d\\x16\\xd1\\x12\\x64\\xa2\\x6d\\x61\\xa0\\x0b\\xe2\\x33\\x09\\xa1\\x08\\x00\\\r\n\\x5a\\x08\\x04\\x46\\x3e\\x44\\x11\\xbf\\x42\\x42\\x25\\xa7\\xc3\\x51\\x09\\xb0\\\r\n\\xc3\\x0b\\x14\\xa5\\x64\\xd4\\x84\\xcc\\x1a\\x96\\xc9\\x81\\x08\\x1d\\x44\\x00\\\r\n\\xac\\x7c\\x53\\x91\\x0d\\x24\\x5a\\xb5\\x65\\x21\\x42\\x84\\x1e\\x30\\x5c\\xd0\\\r\n\\x97\\x50\\x1f\\x50\\x42\\x0d\\x51\\x43\\x90\\xf3\\x50\\x50\\xc9\\xe6\\x8e\\x51\\\r\n\\xad\\x4c\\xa3\\x02\\xa4\\x4d\\x14\\x1d\\x1a\\x1f\\xd1\\xd3\\xef\\x8b\\x40\\x9d\\\r\n\\x8b\\xd4\\xd9\\xea\\x42\\xcd\\x50\\x5e\\x10\\xd2\\xca\\x86\\xe8\\x44\\x10\\x1d\\\r\n\\xa0\\x4d\\x79\\x05\\x0a\\x96\\x88\\x30\\xda\\x15\\xe1\\x8c\\xa4\\xf0\\xbd\\x82\\\r\n\\xe1\\x30\\xa5\\x8c\\xa0\\xb0\\x56\\x07\\x17\\xc6\\x22\\x8b\\x00\\x59\\xa9\\x90\\\r\n\\x15\\x1b\\xe8\\x83\\x2c\\x05\\xe9\\x38\\x08\\x60\\x54\\x1f\\x6d\\x65\\x31\\x0b\\\r\n\\x20\\x05\\x26\\x20\\xd0\\x35\\x52\\x62\\x44\\xf4\\x60\\x45\\x69\\x0c\\x54\\x9a\\\r\n\\x28\\x96\\x65\\xb3\\xd0\\x11\\x42\\x2c\\x12\\x20\\xa8\\x28\\xe0\\x1b\\x39\\x5f\\\r\n\\x1b\\x64\\xae\\xb0\\xb5\\x46\\x81\\x69\\x40\\x90\\x13\\xa5\\x29\\x9c\\xb6\\x75\\\r\n\\x01\\xfa\\x13\\x93\\x1d\\x14\\x47\\x1b\\x6c\\xae\\x48\\x3b\\x62\\x02\\xd1\\xc8\\\r\n\\xb4\\x81\\x57\\x54\\xbf\\x3d\\x15\\x3a\\xb4\\x96\\xce\\xa7\\x41\\xae\\x2d\\x58\\\r\n\\xfc\\x0b\\x38\\xdd\\x5f\\x25\\x12\\x8b\\x00\\x29\\xdd\\xaf\\x99\\xa5\\x7f\\x27\\\r\n\\xe4\\xeb\\x5e\\x60\\xb1\\x50\\x58\\x7b\\xa5\\x25\\x41\\xcb\\x2b\\x4c\\x42\\x84\\\r\n\\x29\\x90\\x1e\\xf6\\x23\\x1c\\x2a\\xa1\\x44\\x49\\x25\\xaa\\x28\\x78\\x5d\\x9e\\\r\n\\xc6\\x61\\x04\\x0d\\x48\\x44\\x5b\\xc0\\x1f\\x21\\xd8\\x0f\\x67\\x69\\x81\\xa0\\\r\n\\x0d\\x37\\x80\\x19\\x59\\x3c\\xb1\\xd8\\xf5\\x1a\\x2a\\xea\\x87\\x82\\x3d\\x4a\\\r\n\\x16\\xc9\\x81\\x4c\\x85\\x05\\x0b\\x12\\xae\\x80\\x1a\\x98\\x8c\\x30\\x10\\x49\\\r\n\\x8e\\xa5\\x14\\x6b\\x1c\\xb7\\x82\\x06\\xa5\\x23\\x61\\x49\\xeb\\x04\\x5b\\x12\\\r\n\\x4d\\x25\\x09\\xe6\\xbd\\x12\\x13\\x88\\x6e\\x63\\x85\\x48\\x32\\x42\\xe0\\x04\\\r\n\\x1c\\x0e\\x5f\\x3d\\x11\\x40\\xa1\\x44\\x77\\xa7\\x84\\x2a\\x08\\x82\\x62\\x86\\\r\n\\x02\\x60\\xe2\\xa8\\x01\\xf4\\x74\\x2a\\x4b\\x02\\xb7\\x06\\x00\\xaf\\x14\\x92\\\r\n\\x6c\\x01\\x20\\x1a\\x13\\x12\\x1a\\x30\\x3c\\x31\\x8c\\x4a\\x03\\xcd\\x90\\xfd\\\r\n\\xd0\\xe8\\x29\\x26\\x49\\x34\\x8a\\x25\\x92\\x0a\\xc9\\x6c\\x1f\\x37\\x80\\x5a\\\r\n\\x86\\x2b\\x81\\x40\\x33\\x10\\x02\\xa6\\x70\\xad\\x58\\xb1\\xb8\\x2b\\x02\\xca\\\r\n\\x88\\x87\\x53\\xc5\\x2f\\xaa\\x40\\x09\\x23\\x9a\\x15\\x61\\xe6\\x61\\xf4\\x62\\\r\n\\xf0\\x29\\xcb\\x00\\x14\\x0b\\x3c\\x27\\x43\\x99\\x40\\xb0\\x88\\x7d\\x11\\x2d\\\r\n\\x88\\x1a\\xe7\\xca\\x64\\x12\\x98\\xc1\\x02\\xa1\\x0d\\x18\\xa1\\x77\\x78\\x2a\\\r\n\\x16\\x8f\\xa5\\x10\\xce\\x35\\x0f\\x98\\x61\\x6e\\xab\\x8b\\x10\\xe1\\x0b\\x84\\\r\n\\x1e\\x05\\x95\\x40\\x03\\x0c\\x10\\x3a\\x65\\x58\\x9a\\xf8\\x67\\xfa\\x25\\xe2\\\r\n\\xb9\\x98\\x25\\xaa\\x8d\\x27\\x8c\\x6c\\x2a\\xa5\\x4a\\x27\\x25\\x5e\\x42\\x1f\\\r\n\\x15\\xfb\\xa8\\x62\\xf0\\x96\\x3b\\xad\\x62\\xaa\\xed\\x18\\xf5\\xb4\\xd8\\x9e\\\r\n\\x9c\\x5d\\x74\\x11\\x38\\x90\\x8c\\xca\\x93\\x2d\\x00\\xba\\x94\\x01\\x61\\xf0\\\r\n\\xa0\\xc1\\xaf\\xb3\\x36\\x18\\x8a\\x2c\\x30\\x2c\\x2a\\xf8\\x74\\x64\\x62\\x41\\\r\n\\x80\\x60\\x31\\xfa\\x2b\\x71\\xfc\\xeb\\x49\\x41\\x03\\xe6\\x58\\xaa\\x22\\x8c\\\r\n\\xac\\xb7\\x69\\x44\\xa9\\xa0\\xe1\\x00\\x84\\x41\\x00\\xd2\\xe6\\x84\\x4c\\x00\\\r\n\\xc4\\x11\\x60\\x25\\xf2\\x9a\\xcd\\x8e\\x5a\\x95\\x08\\xfa\\x72\\x2c\\x96\\x48\\\r\n\\xe9\\xf0\\xec\\x16\\xd0\\x85\\x66\\x62\\xa0\\x0b\\xd2\\x4a\\x70\\x4f\\x87\\x94\\\r\n\\xb6\\x5d\\x0d\\x46\\xc6\\x56\\xaa\\x24\\x06\\x49\\x2b\\x42\\xd3\\x2c\\x5e\\x02\\\r\n\\x8d\\x95\\x22\\xa4\\x14\\x00\\xa6\\x82\\x60\\x70\\x3f\\x3c\\xb4\\xce\\xd1\\x2f\\\r\n\\xc8\\x38\\x68\\x6f\\xd3\\x1f\\x56\\x2a\\x27\\xc6\\xe0\\x54\\x41\\x8f\\xd1\\x4e\\\r\n\\xbe\\x62\\x38\\xf7\\x14\\x00\\x41\\x08\\x7d\\x21\\x40\\x5d\\x7d\\x46\\x4c\\x0d\\\r\n\\x98\\x41\\x21\\x9c\\x81\\x11\\xd1\\xe5\\xac\\x21\\x4c\\x37\\x45\\xfd\\xa6\\x80\\\r\n\\x37\\x23\\x7c\\xa1\\x46\\x50\\x5a\\x0a\\x3b\\x73\\x03\\xc9\\x8d\\x62\\xb7\\x57\\\r\n\\x51\\x05\\x88\\x57\\x2e\\x28\\x98\\xf0\\x4f\\x3c\\x0c\\x2a\\xe5\\x10\\x92\\x02\\\r\n\\x12\\x9a\\x51\\x19\\xb5\\x89\\xc4\\xea\\xd9\\x12\\x56\\x0a\\x04\\x18\\x79\\xf6\\\r\n\\x60\\xb5\\x86\\x61\\x47\\xe0\\x04\\xf8\\xa3\\xe1\\x65\\x64\\xed\\x1d\\xd8\\x90\\\r\n\\x89\\x41\\x87\\xc4\\x1d\\xf6\\x19\\xd2\\x23\\x68\\x33\\x19\\x23\\xb7\\xd6\\xb6\\\r\n\\x88\\x34\\x0b\\x68\\x31\\x0b\\xa5\\x54\\x87\\xab\\x95\\x58\\x8c\\x02\\x70\\xe3\\\r\n\\x48\\x70\\x75\\xed\\x0d\\x8a\\x62\\xa3\\x5d\\x6c\\xd6\\xb7\\x40\\x00\\x08\\x8d\\\r\n\\x8d\\x67\\x14\\xcb\\x02\\xa8\\x20\\x1d\\x5a\\x30\\xb0\\xec\\x52\\xfe\\x96\\x45\\\r\n\\x05\\x48\\x9b\\xe7\\x8b\\xca\\x80\\x06\\xe4\\x2c\\x40\\x82\\x41\\xa3\\x8d\\x54\\\r\n\\x53\\x36\\x02\\x2a\\x8b\\x15\\xb0\\xc1\\xe5\\x94\\xe8\\xc0\\xa3\\xc2\\x03\\x38\\\r\n\\xe2\\x77\\x1a\\xd0\\x62\\x11\\x4f\\xaa\\x46\\x49\\x00\\xd1\\x5b\\x4f\\xdf\\x43\\\r\n\\x20\\xa5\\x3f\\x81\\x4a\\xe0\\x0a\\x16\\x74\\x7d\\x25\\x80\\x11\\x30\\x04\\xa2\\\r\n\\x1c\\x0e\\x1f\\x51\\xf8\\x21\\x01\\x01\\x09\\x04\\x95\\xea\\x52\\x0b\\x5e\\x3c\\\r\n\\x6e\\x64\\x31\\x6e\\xc6\\x40\\x65\\x95\\x94\\x0e\\xbf\\xb9\\xe9\\x02\\x2e\\x91\\\r\n\\x08\\x41\\xf0\\x10\\x8e\\xe5\\x38\\x62\\xc6\\xd7\\x2a\\x14\\x22\\x5b\\x70\\x28\\\r\n\\xbe\\x76\\x74\\x75\\x6d\\x3c\\x91\\x61\\xd7\\x09\\x03\\xe1\\xda\\x66\\x41\\x7c\\\r\n\\x1f\\xe1\\x0e\\x15\\x41\\x8a\\x08\\x82\\xc5\\x42\\x32\\xb2\\x31\\x55\\x27\\x78\\\r\n\\x5b\\x75\\x53\\x11\\xee\\x52\\x30\\xb6\\x10\\x50\\x25\\xfa\\xd1\\x87\\xa2\\x64\\\r\n\\xd9\\xd8\\x83\\xa0\\x05\\x7a\\x94\\x10\\x05\\xce\\x4a\\x0d\\xa0\\x62\\xa8\\xd1\\\r\n\\xac\\x20\\x7c\\xd9\\x30\\x1f\\x31\\x10\\x9a\\x00\\x18\\x62\\xd4\\x63\\xea\\x4b\\\r\n\\x41\\x1d\\x10\\xba\\xd0\\x10\\x40\\x0a\\xa7\\x8d\\x8f\\x07\\x04\\x06\\x7a\\x0a\\\r\n\\x68\\x30\\x0a\\x8c\\x25\\x02\\x0d\\xcc\\x14\\xb1\\x03\\x89\\x48\\x88\\xc5\\x05\\\r\n\\x04\\xe5\\x80\\x91\\x28\\xaa\\x09\\x43\\x1b\\xf1\\x5e\\xcf\\x78\\x50\\x2a\\x10\\\r\n\\xfd\\x1a\\x34\\xd2\\x59\\x22\\x25\\x48\\xb4\\x50\\x8d\\x02\\x98\\x7f\\x8c\\xb4\\\r\n\\x45\\xc4\\xb8\\x2f\\x42\\x13\\xa8\\x42\\x10\\x98\\x40\\x01\\x1e\\x74\\xa0\\x54\\\r\n\\x25\\x09\\x48\\x44\\xd8\\xd2\\xf1\\x08\\x10\\xb0\\x8c\\xd0\\x69\\x16\\x3d\\x7b\\\r\n\\x28\\xf0\\x17\\x25\\xd4\\x5c\\x02\\x01\\xcc\\xd8\\x38\\x28\\x70\\x4d\\x29\\x45\\\r\n\\x43\\x7f\\x80\\xe8\\x60\\x13\\x35\\x01\\x23\\xa9\\xe1\\x06\\x1f\\xda\\xd0\\x90\\\r\n\\x42\\x5e\\x12\\x6a\\x0f\\xfd\\xc8\\x54\\x05\\xa9\\xe8\\x8f\\x84\\x24\\xf8\\xf0\\\r\n\\x47\\x8f\\x0a\\x7e\\x94\\xee\\x34\\xf7\\x10\\x10\\x15\\x40\\x31\\x47\\x71\\x6f\\\r\n\\x81\\xcf\\x26\\x3f\\x2f\\xcc\\x27\\x8c\\xbe\\x07\\x15\\x07\\x00\\xaa\\x14\\x02\\\r\n\\x6a\\x30\\x8b\\xc9\\x29\\x1c\\x89\\x74\\x0a\\x50\\x62\\x32\\x5d\\x80\\x88\\xb2\\\r\n\\x43\\x81\\x13\\x11\\xab\\x00\\x14\\x48\\x31\\x81\\x70\\xeb\\x08\\xc5\\xa5\\xc8\\\r\n\\xb0\\x41\\x9a\\x19\\xa1\\xb3\\x10\\x8d\\xa2\\x9c\\xf0\\x8e\\x50\\x68\\x46\\x11\\\r\n\\x4a\\x7e\\x59\\x7d\\x98\\x25\\xc4\\x37\\x5a\\x21\\x62\\x61\\x01\\x6b\\x02\\x1e\\\r\n\\x08\\x28\\x5d\\x58\\xaa\\xc2\\x91\\xd0\\x10\\xe7\\x95\\x0b\\x52\\xd1\\x06\\xe2\\\r\n\\x92\\xdd\\x35\\x5a\\x5f\\x4b\\x28\\xa5\\x28\\x34\\x08\\x22\\x15\\x1b\\xfd\\xa2\\\r\n\\xfa\\xcb\\x86\\x13\\x0a\\xe1\\x40\\xf3\\x95\\x62\\x19\\x12\\x7c\\x5a\\x1b\\x05\\\r\n\\x66\\x21\\x51\\x38\\x4f\\xe8\\x48\\x0c\\x49\\x0c\\xa5\\xd5\\x40\\x03\\xb4\\xf1\\\r\n\\x12\\x02\\x33\\x29\\x28\\xaa\\x88\\x00\\x05\\x79\\x85\\xd6\\x7a\\xf1\\x89\\x69\\\r\n\\x04\\x49\\x2c\\x0a\\xa4\\x09\\x2d\\x1e\\x71\\x61\\xc2\\x4b\\x0b\\xbe\\x1d\\xee\\\r\n\\x83\\xca\\x42\\x08\\xa6\\xa1\\xbf\\x50\\x73\\xab\\xa3\\x84\\x5a\\x02\\x15\\x04\\\r\n\\x16\\xa0\\x34\\x65\\x0a\\xc0\\x29\\xc1\\x90\\x8c\\x34\\xca\\x74\\x41\\xcd\\x54\\\r\n\\x84\\x02\\xc0\\xc1\\xb3\\x09\\x6a\\xc9\\xeb\\x22\\xf1\\x6f\\xb7\\x51\\x25\\x90\\\r\n\\x48\\x41\\x2a\\xa1\\xa5\\x78\\x86\\xa2\\x6a\\x16\\xe0\\x1a\\x52\\x79\\x9d\\xd8\\\r\n\\x24\\xd0\\x07\\xe8\\x07\\x0e\\x29\\xe0\\x71\\x89\\x2f\\xcb\\x0d\\xa2\\x8f\\x52\\\r\n\\xe0\\x88\\xe8\\x81\\x28\\x48\\x96\\xa8\\x09\\x55\\x85\\xc6\\xbd\\x9e\\x17\\x2a\\\r\n\\x93\\x11\\x8a\\xa0\\xa4\\x0a\\x75\\xfd\\x3b\\xe1\\xf8\\x9a\\x81\\xc0\\x85\\xa0\\\r\n\\x02\\xda\\x97\\x16\\xa7\\x95\\x5c\\x46\\x0c\\x2e\\x35\\x0c\\x29\\x10\\x8b\\xfa\\\r\n\\x71\\x7c\\x40\\x86\\x60\\x21\\x50\\x8a\\x44\\x5e\\x83\\x41\\x01\\x7d\\x61\\x24\\\r\n\\x95\\xa9\\x12\\x68\\xfa\\x54\\xc0\\x07\\xf1\\x5a\\x1d\\x7d\\x7a\\x21\\xe2\\xa0\\\r\n\\x2b\\xd2\\x3c\\xaa\\x18\\x00\\x50\\xca\\x8a\\x90\\x4b\\x37\\x84\\xd3\\x2e\\x82\\\r\n\\xa2\\x06\\xe0\\xe8\\x78\\x82\\xea\\xa8\\x89\\x75\\x8c\\x31\\x9b\\x00\\x41\\xe2\\\r\n\\x89\\xd3\\x15\\x40\\x6a\\x01\\x8a\\x94\\x86\\xbb\\x47\\xf5\\xd8\\x88\\xa3\\xaf\\\r\n\\x23\\x40\\x91\\x5e\\x46\\x94\\x5e\\x5f\\x87\\x83\\x52\\xa3\\x37\\xea\\x81\\x4b\\\r\n\\xeb\\xe1\\xa2\\x80\\x41\\x65\\x94\\x13\\xfc\\x87\\x10\\xf8\\xe9\\x80\\x7a\\xca\\\r\n\\x18\\xde\\x07\\x11\\x24\\x1e\\x78\\xbb\\x36\\x84\\x74\\x14\\x31\\x26\\xd6\\xf9\\\r\n\\xb1\\x10\\x93\\x03\\xea\\x6c\\x94\\x71\\x57\\x19\\xc5\\x85\\x91\\x14\\x07\\x53\\\r\n\\x42\\x8c\\x42\\x2f\\x85\\x36\\xe3\\xa0\\x98\\xb4\\x21\\x21\\x09\\x2b\\x01\\xf5\\\r\n\\xab\\xa8\\x56\\x18\\x08\\x1c\\x6a\\xa9\\x05\\x58\\xcd\\x44\\x60\\x15\\x59\\x03\\\r\n\\x11\\x56\\x85\\x40\\xe6\\xd0\\xf1\\x39\\x0a\\x90\\x88\\x22\\x05\\xa4\\x4a\\x66\\\r\n\\x84\\x9e\\x53\\x09\\x54\\x40\\x97\\xd3\\x60\\x0d\\x35\\x14\\x01\\x7a\\x92\\xa0\\\r\n\\x19\\x06\\x63\\x38\\x18\\x89\\x41\\xa1\\x5f\\x6b\\x60\\xb9\\x55\\xea\\x98\\xd0\\\r\n\\xb5\\xfc\\xa3\\x8e\\xf6\\xc8\\x6a\\x9a\\xd1\\x05\\x02\\xa6\\x49\\x59\\x21\\x11\\\r\n\\x55\\x72\\x09\\xda\\xb1\\xae\\xca\\x68\\x8a\\x73\\xb9\\xd0\\x07\\x62\\x3a\\x30\\\r\n\\x03\\x2b\\xe4\\x20\\x0f\\xa7\\x4a\\x02\\x4e\\x00\\xd8\\xfa\\x54\\x0c\\x41\\x04\\\r\n\\x0a\\x1d\\x40\\x8e\\x89\\x3f\\x1f\\x2a\\xe1\\x2b\\x56\\x89\\xd1\\xf1\\x68\\x21\\\r\n\\x56\\x35\\xfb\\xb6\\x68\\x8e\\x0d\\x5a\\x34\\x19\\x01\\x5c\\x2f\\x9e\\x68\\xbe\\\r\n\\xdb\\x44\\x40\\x84\\x49\\x91\\x8c\\x02\\xb4\\x01\\x12\\xb7\\x82\\x40\\x3b\\x85\\\r\n\\xa3\\x5d\\x48\\x6f\\x42\\xe9\\x3a\\x33\\x41\\xda\\x02\\x3e\\x57\\x6a\\xfa\\x6b\\\r\n\\x5d\\x28\\xf0\\xca\\xdd\\x57\\xab\\x99\\x45\\x51\\x05\\x45\\x2d\\x7b\\x39\\x50\\\r\n\\xb0\\x84\\x89\\x35\\x54\\x88\\x67\\x20\\x50\\x98\\x80\\xa8\\x04\\x94\\x17\\xef\\\r\n\\x01\\xd0\\xba\\xa1\\x85\\x64\\xa1\\xb2\\x3c\\x42\\x33\\x5a\\x34\\xdf\\x1f\\x82\\\r\n\\x02\\xc9\\x08\\x8e\\x39\\x9a\\xa1\\x0f\\x8a\\x46\\x81\\xd4\\x23\\x4d\\x19\\x0c\\\r\n\\x24\\x28\\x5c\\xed\\xbe\\xfc\\x80\\x28\\x94\\x59\\xa6\\x96\\x11\\xfe\\x1d\\xe6\\\r\n\\xa8\\x83\\x48\\x01\\x26\\xc0\\x3f\\x29\\x41\\xf4\\x79\\x69\\x57\\x07\\x00\\x69\\\r\n\\x48\\x87\\x00\\x40\\x6c\\xc4\\xd0\\x45\\x88\\x59\\x89\\x40\\x98\\xdf\\x1d\\x9d\\\r\n\\xf6\\xf4\\x35\\xea\\x09\\x51\\x2c\\x44\\xcb\\x43\\xb6\\x62\\xa2\\xdb\\x2a\\x06\\\r\n\\x15\\x7a\\xcf\\x01\\x70\\x26\\xd1\\x24\\x81\\x81\\x28\\xa9\\x46\\x9d\\x35\\x3d\\\r\n\\x40\\x24\\x79\\x8f\\x09\\xd1\\x9a\\x15\\x7e\\x43\\xa9\\x02\\x6b\\x2a\\x88\\x30\\\r\n\\xd5\\xf0\\x9e\\xf3\\xc6\\x04\\x00\\x8a\\x21\\x00\\xd6\\x97\\xc2\\xf6\\x86\\x22\\\r\n\\x58\\x60\\x34\\x14\\x1f\\xc1\\x2d\\xc0\\xb1\\x88\\xa2\\x02\\x12\\x01\\x22\\x06\\\r\n\\x2a\\x57\\x31\\xb4\\x85\\x11\\x10\\x40\\xc0\\xac\\x1b\\xe0\\x52\\xd4\\x28\\x36\\\r\n\\x3c\\x22\\xda\\x48\\xe9\\x9e\\x69\\x9c\\x52\\x05\\x41\\x90\\x2d\\x1c\\x01\\x98\\\r\n\\x5b\\x09\\x31\\x85\\x22\\xc2\\x50\\xaf\\x19\\xaa\\x43\\xca\\xc3\\x06\\x50\\x2b\\\r\n\\xa2\\x27\\x03\\x03\\x05\\xc1\\xf3\\x82\\x45\\x07\\x14\\x48\\xa0\\x43\\x12\\x7d\\\r\n\\x38\\x15\\x7d\\x31\\x9a\\x9c\\x00\\x70\\x0f\\x14\\xa7\\xdb\\x70\\xf0\\xe3\\x72\\\r\n\\x54\\x45\\x0a\\x9a\\x5c\\x11\\x9c\\xf6\\x81\\x21\\xd3\\x01\\x55\\x0a\\xc2\\x82\\\r\n\\x98\\xa0\\x84\\x3c\\x85\\x04\\x2a\\x0a\\x52\\x3a\\x4a\\x0a\\x0b\\x8f\\x01\\x44\\\r\n\\x8b\\xc2\\x97\\x03\\x20\\x49\\x80\\x0e\\x99\\x73\\x85\\x14\\x93\\x90\\x94\\x60\\\r\n\\x08\\xbc\\x09\\x1e\\x8b\\xe1\\x86\\x84\\x09\\x88\\x40\\xd0\\x80\\x99\\x69\\x09\\\r\n\\x15\\x48\\xb0\\x28\\x6d\\x5e\\xdb\\x1e\\x11\\xc3\\x88\\x04\\x38\\x61\\x55\\x09\\\r\n\\x16\\x02\\x53\\xc5\\x8d\\x90\\x44\\xa4\\x06\\x0b\\xcb\\x54\\x41\\x43\\xc2\\x42\\\r\n\\x72\\x22\\x82\\x1d\\x2d\\x5b\\x20\\xa2\\x33\\xcd\\xa7\\x3a\\x0e\\x89\\xcc\\xa0\\\r\n\\x14\\x5b\\x6a\\x41\\xcc\\x5c\\xdd\\xa4\\x88\\x89\\x40\\x40\\x00\\x6f\\x81\\xe0\\\r\n\\x31\\x97\\x02\\x35\\x00\\x32\\x85\\x7c\\x14\\xd1\\x92\\x29\\xc8\\x4b\\xa2\\xa2\\\r\n\\xdf\\xda\\x41\\xf2\\xfb\\x55\\x2a\\x92\\x25\\x67\\xf4\\x00\\x7d\\x65\\xf1\\xab\\\r\n\\x80\\x26\\xab\\x40\\x3a\\x26\\x3b\\x16\\x34\\x3d\\x48\\x2f\\xaa\\x02\\x0a\\x23\\\r\n\\x16\\xa2\\x57\\x28\\xb7\\xcb\\xac\\xe6\\xae\\x03\\x33\\x80\\x50\\x08\\x4f\\x81\\\r\n\\x67\\x38\\x54\\x07\\x03\\x16\\x69\\xb2\\xc6\\xd1\\xe3\\x26\\x21\\x26\\x10\\x2e\\\r\n\\x64\\x45\\x55\\x58\\x1d\\x71\\x61\\x47\\x00\\xc9\\x61\\x90\\x45\\x15\\x72\\x96\\\r\n\\x43\\xfb\\x5a\\x0a\\x12\\x81\\x0e\\x50\\x41\\x85\\xf5\\x66\\x57\\x55\\xa3\\xe0\\\r\n\\x35\\x0d\\xc3\\x88\\x48\\x5d\\x09\\xbe\\xbd\\x13\\x18\\x89\\x45\\x2d\\xbe\\xbb\\\r\n\\x83\\x69\\x90\\x9c\\x80\\x6a\\x35\\x95\\xa9\\xe7\\xbb\\x56\\x34\\x4c\\xa0\\x21\\\r\n\\x02\\x26\\x0c\\x44\\xf0\\x77\\x09\\xcf\\x2f\\xe8\\xfd\\x06\\xa5\\x1a\\xb4\\x15\\\r\n\\x15\\x4c\\xe7\\x69\\x95\\x00\\x77\\xa7\\x95\\x72\\x5e\\x21\\x36\\xcc\\x48\\xdc\\\r\n\\x78\\x2a\\x2a\\x1f\\x50\\x87\\xa2\\x2c\\x4c\\xbb\\xa0\\x4e\\x06\\x0d\\x93\\x29\\\r\n\\x1a\\x2b\\x4a\\xf6\\x7f\\x45\\x8a\\x30\\x09\\x10\\x02\\x44\\x70\\x14\\x38\\x55\\\r\n\\x01\\x02\\x7a\\xe6\\x59\\x11\\x01\\xc0\\xa4\\xa0\\x38\\x95\\xac\\xd9\\x28\\x0a\\\r\n\\x28\\x12\\x3a\\x70\\xc2\\x90\\x1b\\x10\\x82\\x04\\x02\\x42\\x08\\xe4\\x39\\xe9\\\r\n\\x6c\\x2b\\x1f\\xaa\\x61\\x87\\x84\\x0a\\x25\\xf8\\x83\\xf4\\x2c\\x80\\x62\\x17\\\r\n\\x20\\x8b\\x14\\xd0\\xf8\\xad\\xe1\\x3c\\xe4\\x62\\x98\\x8c\\x40\\xb5\\x2f\\x43\\\r\n\\xe0\\x27\\x9f\\x67\\xc7\\xc1\\xda\\x2c\\xa0\\xa4\\x07\\xc7\\x03\\x0a\\xc8\\x52\\\r\n\\x46\\xd1\\x20\\x00\\x65\\x20\\x68\\x72\\x3a\\x50\\x28\\xc5\\xa0\\x41\\x95\\x68\\\r\n\\x44\\x05\\x5f\\x0d\\x5c\\x76\\x0b\\x35\\x08\\x58\\x54\\xad\\x54\\x12\\x68\\x14\\\r\n\\x73\\xe6\\x83\\x51\\x09\\x06\\x57\\x89\\x20\\x49\\x08\\xdb\\x89\\x34\\x28\\x0f\\\r\n\\x75\\xdf\\x60\\x63\\xe1\\xa1\\x0b\\x61\\x50\\x7e\\xa7\\xb9\\xf2\\xe3\\xaa\\x90\\\r\n\\x35\\x60\\x94\\x26\\x09\\xd0\\x50\\x28\\xa5\\xda\\x30\\x98\\x7e\\xd8\\xb8\\x79\\\r\n\\xcd\\xa6\\x29\\x40\\x38\\xde\\xe7\\xd2\\x17\\x3d\\x0c\\x2c\\x08\\x67\\xad\\x95\\\r\n\\xdc\\x03\\x3e\\xfc\\x12\\x4c\\xbe\\xa9\\x42\\x63\\x72\\x00\\x24\\x08\\x25\\xb1\\\r\n\\xa5\\x43\\x14\\xd8\\x62\\x54\\x36\\x08\\x42\\x25\\x7c\\xe1\\x72\\xf5\\xb0\\x31\\\r\n\\x0b\\x0a\\x1e\\x1d\\xca\\xbb\\xaa\\x08\\x24\\x95\\xa0\\x20\\x9d\\x07\\xd4\\xef\\\r\n\\x57\\xa0\\xc1\\x85\\x45\\x58\\x82\\xa8\\x0a\\x2f\\xae\\x47\\x04\\xbe\\x41\\x92\\\r\n\\x50\\xdf\\x83\\x0c\\x27\\x95\\x8c\\xd0\\x82\\x51\\x63\\x63\\xdd\\xd8\\x44\\x23\\\r\n\\x3c\\x47\\xe0\\x2b\\xe8\\x08\\x21\\x5a\\xfc\\x20\\x76\\x40\\xb5\\xd0\\x18\\x88\\\r\n\\x00\\xd0\\x71\\x54\\x4f\\xa3\\xc5\\x04\\x82\\x53\\x59\\x06\\x35\\xd1\\x1c\\x15\\\r\n\\xb7\\x85\\xc5\\x75\\xa6\\x44\\x81\\xda\\x91\\xf5\\x1f\\x0f\\xb2\\xc8\\x3b\\x69\\\r\n\\x95\\xf0\\x54\\x1a\\xcd\\xf6\\x1c\\xe7\\xc5\\x40\\x28\\xa8\\x80\\x0f\\x87\\x1e\\\r\n\\xd1\\xaa\\xfe\\x3a\\x08\\x58\\x80\\x2c\\xff\\x00\\x47\\x8a\\x9f\\x5d\\x96\\x19\\\r\n\\xb3\\x13\\x59\\x22\\x9a\\xf9\\x7d\\x52\\xbc\\x51\\x8a\\x6b\\xa2\\xd8\\x30\\x50\\\r\n\\x53\\xda\\xc6\\x15\\x51\\x51\\xc8\\x46\\xd6\\x16\\xe0\\x93\\xc9\\x66\\x62\\xb5\\\r\n\\x4c\\x20\\x1a\\x42\\xc1\\x2e\\x02\\x04\\x5a\\x2e\\x49\\xba\\x23\\xd8\\x51\\x0b\\\r\n\\x03\\x51\\xe4\\x7f\\x83\\x30\\xb0\\x4d\\x00\\x74\\x24\\x20\\x3d\\xd8\\x75\\xc7\\\r\n\\x74\\xed\\x07\\xcc\\xa8\\xa2\\x74\\xd8\\x84\\x63\\x1c\\x89\\x16\\x6a\\x7c\\x01\\\r\n\\x22\\x91\\x62\\xfc\\x19\\x00\\x28\\x0b\\x11\\x02\\x15\\x23\\x21\\x3b\\xc4\\x55\\\r\n\\xcb\\xb5\\xe5\\x50\\x25\\x4b\\xbd\\xbe\\xb5\\xdb\\x42\\x51\\x16\\x8a\\x8a\\x0c\\\r\n\\x61\\x92\\xac\\x7d\\x6c\\x2c\\x0d\\x30\\x13\\x19\\xf6\\xb1\\x05\\x98\\x75\\x41\\\r\n\\x1d\\x19\\x49\\x61\\x94\\x42\\xc5\\xf5\\x0b\\xa7\\x30\\xea\\x17\\x1b\\x18\\x86\\\r\n\\x20\\x87\\xc0\\xda\\xd5\\x2a\\x06\\x61\\x51\\x60\\x4b\\x89\\x07\\x63\\x41\\xb2\\\r\n\\x98\\xe8\\x04\\xa5\\x82\\x88\\xd4\\xc1\\x3b\\xbc\\xd9\\x04\\xf4\\xf4\\xc0\\x54\\\r\n\\x04\\x5f\\x8a\\x83\\xb6\\xfc\\x19\\x01\\x60\\xdf\\x82\\x75\\x0a\\xbc\\x65\\x05\\\r\n\\x2a\\x07\\x03\\x59\\x54\\x65\\x8a\\x47\\x2d\\x51\\xd9\\x88\\xd4\\x7c\\x26\\x52\\\r\n\\x5b\\xe5\\x10\\xd6\\xa5\\x2f\\x3e\\x83\\x6c\\x7b\\x41\\x73\\x73\\x87\\x82\\xa1\\\r\n\\x3c\\x88\\x23\\xc5\\x30\\xc4\\x0d\\x60\\xae\\x8b\\xc0\\x8a\\x20\\x5c\\x01\\x17\\\r\n\\x44\\x48\\x22\\xc8\\x04\\x66\\x05\\x46\\x74\\xf4\\xd8\\x65\\x39\\x7a\\xd1\\x9c\\\r\n\\x00\\x92\\x0f\\x20\\xa9\\x56\\x24\\x34\\x2a\\xc2\\xc7\\x56\\x0d\\x63\\xc7\\x73\\\r\n\\x11\\x57\\x53\\x8a\\x6a\\x31\\x75\\x9a\\x5e\\xa0\\x69\\xc0\\x0e\\x4c\\xa1\\x49\\\r\n\\x10\\xfa\\x01\\xe5\\x58\\x4a\\x20\\xe8\\x04\\x88\\xbb\\xe5\\x75\\x98\\x5e\\x02\\\r\n\\x77\\x22\\x99\\x4c\\x7d\\x38\\xaf\\xa1\\x57\\x22\\x41\\xc3\\x04\\x50\\x03\\x03\\\r\n\\xc2\\x45\\x34\\xc8\\x73\\x21\\x2a\\xd4\\x7e\\xce\\x1e\\x50\\x4a\\x13\\x20\\x45\\\r\n\\x42\\x7b\\x3f\\x0b\\xdb\\xea\\xa0\\x0e\\x82\\x6d\\xa0\\xe8\\x55\\xdb\\x05\\xe2\\\r\n\\xf8\\x93\\xfa\\x04\\x0e\\x8a\\x02\\x02\\x03\\xe1\\x63\\xc2\\xa7\\x10\\xc6\\x11\\\r\n\\x45\\x84\\x62\\x45\\x5e\\x12\\x78\\xb1\\xff\\x00\\x85\\x28\\xb0\\x15\\x4a\\x86\\\r\n\\x83\\x1b\\xe4\\xc1\\x52\\xe8\\x30\\xbb\\xa8\\x94\\xc5\\xd1\\xe6\\xd0\\x70\\x4a\\\r\n\\x80\\x2b\\x25\\x55\\xb3\\x45\\x1c\\x21\\x30\\x04\\x40\\x08\\xa2\\x28\\xd0\\x94\\\r\n\\x20\\x50\\xff\\x00\\x09\\x9e\\xaa\\x57\\x02\\x54\\xa7\\x5e\\x16\\xc4\\x43\\x04\\\r\n\\x0c\\xea\\x5f\\xcc\\x58\\xe4\\x96\\xe7\\xa6\\x88\\xc8\\xec\\x84\\x08\\x2c\\x03\\\r\n\\xc6\\x90\\x24\\xfe\\xc2\\x8e\\x9d\\x09\\x71\\x0e\\x1c\\xa0\\xa8\\x7f\\x5a\\xbd\\\r\n\\x44\\x6d\\xdd\\x81\\x00\\x22\\x1e\\x1c\\x1e\\x01\\x78\\x4b\\x43\\xaa\\x76\\x4b\\\r\n\\xf3\\x80\\x41\\x81\\x48\\x0b\\x93\\x00\\x35\\x23\\x55\\xda\\xfa\\x12\\xbe\\xe1\\\r\n\\x3c\\x88\\xa0\\x20\\xa3\\xa4\\x2b\\x7c\\x47\\x52\\x0c\\x87\\xa9\\x8a\\xb8\\x25\\\r\n\\x34\\x47\\x96\\x6b\\x60\\x7a\\x35\\x5a\\x8b\\x29\\x21\\xad\\x24\\x40\\x88\\x0d\\\r\n\\xde\\x21\\x29\\x85\\x01\\x49\\xa1\\xc3\\xea\\x0b\\x86\\xe2\\x08\\xc5\\x43\\x43\\\r\n\\x1b\\x0b\\xe5\\x8c\\x7f\\xd2\\x37\\xf0\\x86\\x17\\x20\\x08\\x33\\xd6\\x41\\x6a\\\r\n\\xcd\\x2c\\xb4\\x0e\\x08\\xc8\\x73\\x3f\\x43\\x34\\x92\\x02\\x5c\\x50\\xc6\\xe6\\\r\n\\x26\\x85\\x67\\x92\\xf4\\xa4\\xb7\\xa6\\x18\\x2a\\x3a\\xff\\x00\\x8b\\xfd\\x06\\\r\n\\x7e\\x10\\x84\\x4a\\xc6\\x85\\x41\\x62\\x42\\x0b\\x7c\\x46\\x0f\\x6c\\x28\\x01\\\r\n\\x28\\xc1\\x0e\\x71\\xe3\\xb7\\x83\\x05\\x4a\\x06\\x0a\\x06\\xa0\\xc5\\x00\\x41\\\r\n\\xf0\\x80\\x0a\\x36\\x15\\x80\\x83\\x58\\x05\\x6b\\xa7\\xd1\\xff\\x00\\x79\\x31\\\r\n\\x90\\xfa\\x72\\x2d\\x12\\x01\\xf0\\x6d\\x7c\\xb9\\x24\\xf4\\xaa\\x9b\\x4d\\xa2\\\r\n\\x1e\\x40\\xa0\\x02\\xd4\\xd8\\xb6\\xfc\\x18\\xe0\\xd8\\x39\\xe3\\x20\\x40\\xbf\\\r\n\\xd0\\x50\\x05\\xac\\x20\\x5d\\xf4\\xef\\x1b\\xb1\\x68\\x8d\\x2b\\x02\\xc4\\xd2\\\r\n\\xee\\xfb\\x84\\x5b\\x37\\x30\\x21\\xd0\\xbd\\xa7\\xe9\\x3a\\x0b\\x06\\x88\\x58\\\r\n\\x52\\x96\\xa4\\x3f\\x73\\x7d\\x6c\\xa6\\x58\\x2c\\xe2\\xc6\\xeb\\xa2\\x25\\xfb\\\r\n\\xf6\\xdd\\x4b\\x19\\x59\\x02\\x10\\x10\\xa4\\xa5\\x88\\x69\\x7d\\x47\\xc1\\x52\\\r\n\\xf1\\x0e\\x24\\xa0\\x8b\\xfc\\x02\\xc1\\xe0\\x19\\xa2\\x85\\x63\\x0c\\x22\\x94\\\r\n\\x17\\x8e\\x8c\\xce\\xbb\\xae\\xa2\\x14\\x70\\xc6\\x3e\\x20\\x97\\x0e\\x94\\x51\\\r\n\\x8a\\x54\\xd0\\x5d\\x80\\x90\\x31\\x24\\xd5\\x21\\xf7\\x22\\x3b\\x01\\x26\\x7f\\\r\n\\x54\\xd5\\x89\\x0a\\x07\\x93\\x40\\x96\\xbe\\x51\\xe9\\x42\\x61\\xc1\\x16\\x3c\\\r\n\\x02\\x4a\\xa6\\x4e\\x30\\x26\\xc1\\xb8\\xa0\\x07\\x0a\\x35\\x59\\xe1\\x3f\\x22\\\r\n\\x69\\xb5\\x08\\x4a\\xd3\\x54\\x18\\x92\\x0a\\x7e\\xd8\\xc4\\x78\\x40\\xa0\\xb3\\\r\n\\xab\\xe9\\x3e\\x8b\\xa0\\x4a\\x91\\x86\\xb1\\x41\\x35\\xc1\\x48\\x80\\xfe\\x98\\\r\n\\x87\\x91\\x42\\x0e\\x4a\\x21\\x83\\xd0\\x21\\x89\\x52\\x60\\xb1\\x68\\x41\\x8a\\\r\n\\x0f\\x11\\x09\\xe0\\x42\\x26\\x24\\x00\\x30\\x99\\x3b\\x70\\x81\\x5b\\xc3\\x57\\\r\n\\x47\\xa5\\x80\\xea\\x22\\x2b\\x60\\xd0\\x02\\xdf\\x57\\x0e\\x40\\x79\\x11\\x37\\\r\n\\x65\\xbe\\x05\\xec\\x00\\x01\\x82\\x20\\x21\\x8a\\x12\\x8d\\xa8\\x84\\xac\\x3c\\\r\n\\x34\\xe3\\x90\\xbb\\x57\\x09\\xad\\x45\\xf4\\x84\\x5e\\x88\\x49\\xbb\\x87\\x52\\\r\n\\x15\\x22\\xb9\\x54\\x62\\xc0\\x11\\xbd\\x20\\x45\\x92\\x27\\xf2\\x2b\\x0b\\xc0\\\r\n\\x06\\x65\\x88\\xa7\\x01\\x14\\x04\\xb7\\x10\\x6d\\x5d\\x07\\x7c\\x6f\\x73\\x09\\\r\n\\xb6\\x21\\x3d\\xa0\\x31\\xc7\\x17\\x3c\\x57\\x20\\x66\\x09\\xa0\\x8b\\x30\\x6d\\\r\n\\x14\\x89\\x15\\x36\\xdf\\x85\\x9d\\x0d\\x4a\\x57\\x70\\xcc\\x58\\x48\\xc2\\x44\\\r\n\\xe1\\x45\\x02\\x10\\x81\\x03\\xca\\x04\\x6c\\x09\\x84\\x82\\xc1\\xb1\\x02\\x25\\\r\n\\x0f\\x13\\xc2\\xca\\xd2\\x00\\xe8\\x88\\x44\\x90\\xd3\\xec\\x94\\x80\\x8b\\x90\\\r\n\\xa9\\x40\\x8d\\x6d\\x22\\xa8\\xe7\\x9e\\x11\\x7b\\x30\\x16\\xba\\x26\\xa8\\x83\\\r\n\\x2a\\x1f\\x7c\\x45\\x20\\x0a\\x01\\x46\\x00\\x8a\\xe0\\x8a\\x2f\\x59\\xec\\xc6\\\r\n\\xe0\\xb5\\xd0\\x61\\x58\\x56\\xa0\\x7f\\x3c\\xaf\\x33\\x90\\x54\\x51\\x01\\x45\\\r\n\\xc7\\x59\\x81\\x57\\xcc\\x48\\xc4\\x00\\x8a\\x53\\x22\\x3a\\xb9\\xac\\x18\\xb7\\\r\n\\x2a\\x0c\\x63\\xea\\x49\\xc1\\x33\\x5a\\x85\\x6d\\x3c\\xcc\\xb7\\x01\\x27\\x40\\\r\n\\x49\\x6c\\xc0\\x30\\x54\\x3e\\xc6\\xe8\\xd7\\x59\\xda\\xc2\\x62\\xec\\x0c\\x42\\\r\n\\xe0\\x50\\x8b\\x8d\\x22\\x91\\x85\\x9c\\x62\\x00\\xbb\\xeb\\x8f\\x28\\x52\\x61\\\r\n\\xb1\\x22\\x17\\x57\\x75\\xf0\\x50\\xe8\\x05\\x74\\x68\\x6e\\x6a\\x86\\x3a\\x23\\\r\n\\xa8\\x06\\xcd\\x91\\x28\\xd8\\x04\\xa2\\xc1\\x7a\\xb6\\xfa\\x9d\\xd7\\x18\\x23\\\r\n\\xd2\\x98\\xc6\\xbe\\x84\\x52\\x6f\\x93\\x15\\x65\\xd0\\x44\\x24\\xc0\\x03\\x44\\\r\n\\x7b\\x35\\xd9\\x7c\\x01\\x08\\x42\\xe0\\x02\\x2c\\x4c\\x35\\x3e\\xee\\xa4\\x2c\\\r\n\\xd2\\xd6\\x58\\x3b\\x48\\x23\\x08\\x48\\xbb\\xce\\x71\\xc9\\xda\\x00\\x30\\x84\\\r\n\\xfa\\x11\\xb2\\x93\\x0e\\x84\\x13\\xaa\\xcc\\x02\\xc9\\x2b\\x3a\\xa0\\x98\\x50\\\r\n\\x1c\\xa4\\x02\\xff\\x00\\x94\\x7c\\x1a\\x5a\\x38\\x61\\x69\\x7e\\x80\\xb2\\xf6\\\r\n\\x21\\x4c\\x6c\\x13\\x04\\x99\\x74\\x8b\\xbe\\x07\\xe7\\x64\\x48\\xc1\\x7d\\xf6\\\r\n\\x0c\\x3e\\x51\\xe1\\x6d\\x48\\x25\\xb0\\xa0\\x12\\x40\\x61\\xb1\\xd5\\x20\\x2e\\\r\n\\x56\\x79\\x11\\x1d\\x83\\xe4\\xc0\\x85\\x30\\xb6\\x29\\x0c\\x25\\x5e\\x90\\x27\\\r\n\\xa0\\x6e\\x0a\\x76\\x6d\\x65\\x5a\\x0a\\x74\\xd5\\xbe\\x17\\x96\\x8d\\x2e\\x85\\\r\n\\x18\\xb2\\xe5\\x7f\\xdd\\xbd\\x2e\\x94\\x00\\x2d\\x00\\x07\\x9c\\x78\\x8c\\x17\\\r\n\\x7e\\x96\\xd0\\x96\\x24\\x40\\x86\\x04\\x53\\x55\\xe6\\x0d\\x35\\x6b\\x85\\x03\\\r\n\\xd3\\xad\\x14\\x04\\x0b\\x03\\x11\\x0a\\x80\\xc9\\x02\\x28\\xc3\\x66\\x11\\x3d\\\r\n\\x51\\x40\\xe0\\x58\\xc1\\x54\\x42\\x45\\x26\\x31\\x84\\xb3\\xf2\\x06\\xfa\\xa0\\\r\n\\x20\\xc1\\xcf\\x80\\x80\\x96\\x3f\\xa3\\x33\\xad\\x10\\xe0\\xa3\\x3a\\xd9\\xad\\\r\n\\xc6\\xb5\\x94\\x45\\xa3\\x50\\x5a\\x31\\xeb\\x50\\x39\\xdd\\x31\\x4f\\x17\\x0f\\\r\n\\x51\\xea\\x7f\\xb1\\x98\\x3f\\x1d\\x8f\\x32\\x74\\x2c\\x87\\x57\\x74\\x90\\x20\\\r\n\\x92\\xda\\x87\\x82\\xa8\\x8f\\xd4\\x8f\\x43\\xc4\\xcf\\xdc\\x55\\x7c\\x1e\\x05\\\r\n\\xa0\\x01\\xb6\\x2b\\x58\\x09\\xa0\\xc0\\x7a\\xa3\\xb1\\x3a\\x7a\\x02\\x00\\x6a\\\r\n\\xb4\\xd7\\x8d\\x37\\x25\\x0d\\xa8\\x84\\x48\\x56\\xc8\\x23\\xd6\\x34\\x61\\x29\\\r\n\\x29\\xaa\\xc2\\xf6\\x40\\x4f\\x67\\x70\\x5c\\x1f\\xca\\x95\\x88\\x8b\\x44\\x03\\\r\n\\xc8\\x8c\\xed\\xc1\\xa8\\x12\\xb4\\x0b\\xa7\\x02\\x4f\\x22\\xb1\\xce\\x50\\xc4\\\r\n\\x16\\x5e\\x00\\x97\\x99\\xe2\\x85\\x09\\x50\\x02\\x80\\x25\\x04\\x15\\x77\\xc8\\\r\n\\x4e\\x06\\x80\\x0d\\x2d\\x11\\x8e\\x27\\xed\\x2b\\x0f\\x18\\x91\\xa4\\x25\\xc2\\\r\n\\x15\\xa2\\x99\\xa4\\xdd\\xf2\\xf3\\x45\\x72\\x4d\\x34\\x67\\x6e\\xaa\\xa7\\x6f\\\r\n\\xb3\\xde\\x91\\x4e\\x9d\\x01\\xc0\\x04\\x08\\x10\\xf5\\x55\\x7c\\x18\\xc1\\x42\\\r\n\\x2c\\x42\\xc2\\xba\\xf8\\x8c\\x20\\x6c\\x18\\x6b\\x75\\x6a\\x0e\\x81\\x11\\x12\\\r\n\\x89\\x28\\x26\\xa6\\x32\\x4c\\x74\\x87\\x81\\x8a\\x99\\x85\\x51\\x0a\\x50\\x2e\\\r\n\\xb9\\x44\\x13\\x73\\xa3\\x8f\\x08\\xda\\xd2\\x9d\\x46\\x08\\xc9\\x01\\x8a\\xfe\\\r\n\\xb9\\x86\\x35\\xf1\\x50\\x58\\x1d\\x12\\xaa\\x12\\x46\\xb9\\xc0\\x88\\xaa\\x83\\\r\n\\xa7\\x47\\x60\\xc0\\x18\\x75\\x6f\\xd8\\x34\\x53\\x44\\xad\\x13\\xc6\\x03\\x08\\\r\n\\x57\\x11\\x60\\x90\\x89\\x55\\x85\\x6f\\xc0\\x50\\x74\\xb6\\xa4\\x84\\x96\\x7c\\\r\n\\x08\\x4f\\xe9\\xb3\\xc1\\x25\\x01\\x83\\x2a\\xf4\\x53\\xec\\x87\\x31\\x82\\x98\\\r\n\\x12\\x98\\xfe\\xb7\\x92\\x28\\x80\\x09\\xb1\\xb3\\xd0\\x01\\x84\\xc0\\x04\\x02\\\r\n\\x53\\x3a\\x4a\\xe8\\x26\\x9e\\x4d\\x5d\\xf6\\xad\\x11\\xb0\\x10\\x96\\x18\\x69\\\r\n\\x4d\\x63\\x83\\x44\\x11\\x04\\x02\\x10\\x34\\x62\\x06\\x8b\\xe4\\xdb\\x44\\x02\\\r\n\\x4d\\x10\\x40\\x34\\x09\\x11\\xe1\\xa8\\xa5\\x90\\x13\\x58\\xa0\\x23\\x85\\xbd\\\r\n\\x7c\\x0d\\x24\\xb5\\x74\\x00\\x65\\x8b\\x71\\xdc\\x4c\\x28\\xd8\\xc2\\x55\\x04\\\r\n\\x04\\x47\\x40\\x14\\x89\\x56\\x07\\xcd\\x44\\xdb\\xac\\xd5\\x01\\x40\\xa1\\x07\\\r\n\\x1c\\x3d\\x0d\\x53\\x14\\xb8\\x44\\x09\\x5d\\xc7\\xd0\\x9f\\x14\\x11\\x07\\xc2\\\r\n\\x00\\x3e\\x61\\x40\\x20\\xa0\\x25\\xad\\x4e\\x20\\x22\\x4a\\x3b\\x56\\x81\\x90\\\r\n\\x81\\x4b\\xe4\\x68\\x83\\xe3\\xd6\\xa1\\xa1\\x81\\x31\\xd0\\x67\\x81\\x65\\xd2\\\r\n\\x06\\xd1\\xb2\\x16\\x07\\xca\\x0e\\xa9\\xe8\\x6b\\x2c\\xd3\\x94\\xb4\\x30\\xa6\\\r\n\\x1e\\xdd\\x15\\x8a\\x94\\x28\\xd8\\x25\\x32\\x18\\xa7\\x83\\x08\\x1d\\x3e\\x30\\\r\n\\xb4\\x2b\\x22\\xec\\x18\\xd1\\x90\\xed\\x70\\x7a\\xcd\\x21\\x3b\\x60\\x03\\xcf\\\r\n\\x81\\xe2\\xc4\\x17\\x65\\x70\\x8b\\x50\\x65\\xab\\x9b\\x35\\xfa\\xed\\xf3\\x25\\\r\n\\x92\\x30\\xf8\\x3e\\xf2\\x9a\\x2b\\x0c\\x43\\x91\\xd2\\x28\\x21\\xe4\\xba\\xa1\\\r\n\\x84\\x85\\x00\\xfd\\xa4\\xd4\\xaa\\x4a\\x79\\xce\\xaf\\x94\\xdd\\xa7\\xe9\\x04\\\r\n\\x94\\x46\\x15\\xaf\\x9b\\x06\\x1d\\x14\\x36\\xc0\\xc2\\x78\\xe1\\x16\\xc3\\x5b\\\r\n\\x01\\x61\\x99\\xc7\\x35\\x21\\x28\\xfa\\x2e\\xd0\\xf0\\xc9\\xd2\\x28\\xd0\\xf1\\\r\n\\x09\\x0e\\xa1\\x43\\x45\\xd0\\x8a\\x67\\x12\\xa9\\x4a\\x82\\x91\\x76\\x15\\xe9\\\r\n\\x85\\xf6\\x98\\x4f\\x2c\\x66\\x9a\\x72\\x75\\x22\\xb3\\x45\\x85\\xf0\\x2d\\x69\\\r\n\\xe3\\x21\\x52\\xa5\\x40\\x08\\xad\\x14\\x34\\xe0\\x5c\\x80\\x54\\x08\\x98\\x60\\\r\n\\xe2\\x1a\\x68\\x85\\x68\\xa3\\x2f\\x12\\x1a\\x65\\xd3\\x42\\x00\\xb4\\x1a\\x2d\\\r\n\\x8c\\x29\\x14\\x42\\x54\\x8d\\x0f\\xb8\\x07\\x4d\\x1a\\x46\\x01\\x45\\x4a\\xe1\\\r\n\\xf2\\x25\\xc4\\x9a\\x61\\x1d\\x12\\x43\\x80\\x2f\\x0f\\x88\\x00\\x01\\xa1\\xd0\\\r\n\\x85\\x00\\x4d\\xa1\\xc1\\x45\\x35\\x13\\xac\\xf4\\x98\\x38\\x70\\x54\\x38\\x20\\\r\n\\xe5\\xb0\\x89\\x0c\\x1a\\x4b\\xc8\\xb1\\x09\\xf1\\x03\\x8a\\xa6\\x8a\\x02\\x32\\\r\n\\x98\\x2a\\xf2\\x34\\x3b\\xc3\\xf3\\x71\\x89\\x63\\x09\\xbf\\x1d\\xa4\\xe3\\xc7\\\r\n\\x23\\x3f\\x85\\x9a\\x6a\\xf5\\x10\\xd9\\xb3\\xba\\xba\\x3a\\x70\\x19\\xb5\\x7c\\\r\n\\xa2\\x8d\\x40\\x08\\x90\\x16\\x82\\x04\\x15\\x67\\x7c\\x94\\x51\\x2f\\x8d\\x61\\\r\n\\x24\\xc5\\xb0\\x3e\\xac\\xd5\\xe5\\x1a\\xb4\\x04\\x5a\\x13\\x42\\xd1\\x66\\x53\\\r\n\\x57\\xd6\\x0b\\x82\\x96\\x05\\x52\\x52\\x54\\xe8\\xcb\\x42\\x2c\\x00\\xfc\\x45\\\r\n\\x8a\\x57\\x02\\xc2\\xa6\\x3c\\x05\\x13\\x19\\x8d\\x51\\x0a\\x00\\x2b\\xaa\\xb8\\\r\n\\xf0\\x70\\xfd\\xd6\\xad\\x35\\x2d\\x36\\x90\\x80\\xeb\\x65\\x0c\\x43\\x1e\\x38\\\r\n\\x40\\xda\\x55\\x32\\x13\\x7a\\x01\\xa8\\xf3\\x20\\x3e\\xe8\\xac\\xfa\\xa4\\x04\\\r\n\\x0c\\x0f\\x65\\x9d\\xcc\\x03\\x92\\x05\\x3e\\x2a\\xae\\xfa\\x9b\\x84\\x28\\x02\\\r\n\\x59\\x02\\x68\\x12\\xfb\\x9a\\xe0\\x22\\xb0\\x00\\x4d\\x04\\xf1\\x91\\x89\\x8a\\\r\n\\x00\\x8f\\xcb\\x28\\xce\\xbf\\xb7\\x9f\\x5e\\xfa\\x18\\x12\\x77\\x75\\x52\\x8f\\\r\n\\x04\\x0c\\xc0\\x2a\\x3c\\xa7\\xb8\\x52\\x40\\x00\\xb2\\xd5\\x02\\x96\\x9d\\xbe\\\r\n\\x58\\x21\\x14\\x26\\x1c\\x70\\x83\\x31\\xac\\xaa\\x36\\x8d\\x49\\x58\\x88\\xde\\\r\n\\x80\\x07\\xa5\\x85\\x85\\x9e\\xb5\\xd2\\x04\\x85\\x34\\xa1\\x1a\\x34\\x82\\xa0\\\r\n\\x24\\x7d\\x79\\xb9\\x7e\\x9a\\x28\\x06\\xa0\\x84\\x7e\\x08\\x79\\x10\\x20\\xbc\\\r\n\\xba\\x5b\\x25\\x8a\\x2f\\xb4\\xc1\\x87\\x81\\x43\\xb8\\xe1\\x5e\\x50\\x54\\x05\\\r\n\\x68\\x02\\xf5\\x79\\x02\\x9f\\x02\\x26\\xe8\\x3f\\xeb\\x49\\x47\\x59\\x1a\\x1b\\\r\n\\x5d\\x51\\x1f\\xfa\\xad\\xfd\\x79\\xaa\\xa6\\x25\\x3e\\x05\\x19\\x4c\\x11\\x94\\\r\n\\x45\\x77\\x3d\\x9a\\x8b\\x66\\x1f\\x82\\x90\\xa9\\x8f\\x00\\x81\\x74\\x10\\xb9\\\r\n\\x42\\x95\\x5c\\xbd\\x9b\\x8a\\x22\\x71\\xbe\\x0a\\x21\\x25\\x9c\\x80\\x12\\xa4\\\r\n\\x30\\xb0\\x0c\\x74\\xc0\\x32\\x88\\xae\\xd2\\x0b\\xe0\\xb2\\x2d\\x15\\x3c\\x41\\\r\n\\xde\\x2e\\xb1\\xa7\\xa1\\x09\\x9c\\xe4\\x72\\x65\\x33\\x2a\\x00\\x25\\x15\\xa9\\\r\n\\x80\\x80\\x2d\\x39\\xa8\\xd0\\x02\\x0b\\xd0\\x08\\x70\\x44\\x10\\xf1\\xe7\\x0e\\\r\n\\xbf\\xdd\\x02\\x17\\x1a\\x92\\xa0\\xcc\\xe8\\xe1\\x21\\xd8\\x66\\x27\\x01\\x93\\\r\n\\xd7\\x96\\xb2\\xe9\\x73\\x08\\xeb\\x0a\\xd0\\xbf\\x15\\x54\\xa6\\x1d\\xcc\\x95\\\r\n\\x0b\\x5e\\xe1\\x60\\x13\\xa7\\x1a\\x33\\xae\\xe2\\x1a\\x8c\\x8a\\x82\\x7a\\x8a\\\r\n\\x96\\xb0\\x08\\x00\\x26\\x58\\x58\\x00\\xfc\\xc1\\xd9\\xab\\x11\\x39\\x20\\x18\\\r\n\\xa2\\x5c\\x6a\\x0a\\x61\\x38\\x33\\xbe\\x08\\x86\\x80\\x6c\\x51\\xe3\\x5f\\x14\\\r\n\\xe7\\x67\\x55\\x48\\x2e\\x60\\x88\\x0a\\x08\\x0c\\x3a\\x80\\x4c\\x6a\\x3a\\x03\\\r\n\\xb6\\xbb\\xd6\\x81\\xe1\\x35\\xaa\\x6f\\xc8\\x31\\x8b\\x41\\xd1\\x54\\x6b\\xe5\\\r\n\\x32\\x95\\x29\\x0f\\x40\\xf4\\xc8\\x08\\x4d\\x2e\\x68\\x8f\\x46\\x30\\x81\\x16\\\r\n\\x04\\xa8\\x0a\\x22\\xcc\\xaf\\x83\\x1a\\x10\\x46\\x44\\xda\\x08\\x7d\\x22\\x16\\\r\n\\xee\\x40\\x06\\xb4\\xf4\\x61\\x08\\x82\\xd2\\x93\\x5f\\x10\\xfd\\x04\\x71\\xe6\\\r\n\\xed\\xb2\\x80\\xaa\\x07\\x81\\x80\\x84\\x80\\xa8\\x61\\x4b\\xf9\\xf3\\x05\\x1b\\\r\n\\xfa\\x82\\xd4\\xc6\\x29\\x60\\xb4\\x03\\xf4\\x18\\x7b\\x33\\x8d\\x50\\x60\\x93\\\r\n\\x15\\x05\\x2b\\x00\\x29\\x1f\\x14\\x90\\x70\\x81\\xc8\\x40\\xf7\\x31\\x01\\x0a\\\r\n\\xc4\\x28\\xaa\\x45\\x02\\xbf\\xd2\\xbc\\xbb\\x75\\x4a\\x53\\x42\\xa1\\xa2\\xb5\\\r\n\\x68\\xc5\\x4d\\xb5\\xb0\\x62\\x15\\x64\\x01\\xe8\\x0f\\x61\\x47\\x93\\x21\\x14\\\r\n\\xa8\\x26\\x63\\xf2\\x24\\x7c\\x83\\x0e\\xf3\\x62\\x45\\x56\\x0a\\x26\\x7f\\xa5\\\r\n\\xb6\\x9f\\x58\\x36\\x02\\x0a\\x9a\\x8f\\x95\\x1d\\x04\\x20\\x14\\x15\\x01\\x08\\\r\n\\x40\\xca\\x29\\xbe\\x1a\\x9a\\x96\\xa1\\x0f\\xa0\\x7e\\x9f\\xd0\\xfc\\xbb\\x21\\\r\n\\x00\\x20\\x24\\x35\\x63\\x29\\xd4\\x60\\x2d\\xf8\\x7b\\x5e\\xd8\\xbe\\x27\\xe1\\\r\n\\xf5\\x78\\x68\\x6f\\x84\\xa4\\x8c\\xb0\\x05\\xd5\\x40\\x58\\x80\\xd3\\x03\\xa9\\\r\n\\x28\\x8c\\x66\\xb4\\x37\\xe4\\x87\\x29\\x18\\xad\\x19\\x48\\x89\\xb1\\x32\\x10\\\r\n\\xb0\\xfb\\xbf\\x8a\\x0b\\x84\\x04\\xa5\\xdc\\x22\\xdc\\x95\\x45\\x08\\x76\\x3d\\\r\n\\xb1\\xb2\\x97\\xae\\xa2\\xd5\\x34\\x47\\xbf\\x7c\\x3e\\x88\\x09\\xb2\\xc9\\xd4\\\r\n\\x2a\\x5d\\x68\\x6f\\x9c\\xa7\\xa7\\x88\\x4a\\x00\\x84\\x02\\x82\\x59\\x89\\xe2\\\r\n\\x8b\\x78\\x32\\x16\\x5b\\xf3\\x14\\xb1\\x01\\xdf\\x1d\\xb9\\x40\\xe1\\x6d\\x70\\\r\n\\x4c\\x62\\x8f\\xff\\x00\\xc9\\xe7\\x4f\\xdc\\x33\\x42\\x88\\xdb\\x0c\\xc1\\x5c\\\r\n\\x65\\xf2\\x60\\x33\\x2a\\x0f\\xd0\\x78\\xfe\\x11\\x21\\xf5\\xa0\\xba\\xda\\xc6\\\r\n\\x89\\x21\\xb7\\x13\\xf1\\xc3\\xcc\\xf8\\x42\\xa6\\xa5\\x69\\x66\\x25\\x00\\x1a\\\r\n\\x24\\x1a\\xad\\x18\\x4d\\x35\\x7b\\x54\\x45\\x1d\\xae\\x32\\x90\\x0b\\x7d\\xc8\\\r\n\\x45\\x89\\x14\\xa0\\x58\\xba\\xbb\\xe8\\x6c\\xaf\\x68\\x24\\xc8\\x43\\x08\\x32\\\r\n\\x89\\x52\\x28\\x80\\x02\\x83\\xf4\\x8d\\xa8\\x55\\x3a\\x1a\\x6b\\xd0\\x28\\x12\\\r\n\\x56\\x12\\x44\\x54\\x6e\\x92\\x4a\\x2b\\x1d\\x01\\x97\\x60\\x41\\xcd\\x12\\x7d\\\r\n\\xd3\\xbd\\x3c\\x68\\xaa\\xc2\\x80\\x0c\\xc2\\x84\\xbf\\x44\\x14\\x8c\\x79\\x83\\\r\n\\xe4\\x48\\x5b\\x72\\x0a\\x25\\x5c\\x24\\x62\\x2a\\xd4\\x8a\\x5a\\xd3\\x0f\\xe8\\\r\n\\x45\\x8a\\x96\\xee\\x0c\\xbe\\x2a\\x80\\xf4\\x87\\xb8\\x23\\x00\\xa0\\x2a\\x54\\\r\n\\x0f\\x12\\xb2\\x0a\\x94\\x05\\x78\\xb0\\x00\\xbf\\x51\\x8d\\x5f\\x03\\xd9\\x29\\\r\n\\x21\\x99\\xd8\\x16\\x24\\x23\\xc1\\x85\\x87\\x54\\xb6\\x92\\xa2\\x52\\x10\\xd1\\\r\n\\x21\\x02\\x99\\x16\\x62\\xb9\\x62\\x46\\xa1\\x37\\x1a\\xdd\\x7d\\xab\\x81\\x28\\\r\n\\x49\\x94\\x54\\xec\\x85\\x24\\x04\\x7c\\x49\\xc5\\x28\\x12\\xbb\\x90\\xac\\xa8\\\r\n\\x2a\\x62\\x78\\x20\\x8d\\xa2\\x04\\x00\\xaa\\x66\\x42\\x00\\xce\\x84\\xbe\\x18\\\r\n\\x14\\x22\\x81\\x4c\\xba\\x0e\\xe1\\x43\\xd0\\xd5\\x5d\\x08\\x6c\\x0b\\x21\\x48\\\r\n\\x60\\x63\\x15\\x48\\x04\\x14\\x4a\\x04\\xc0\\x1a\\xa2\\xa2\\xac\\x63\\x15\\x41\\\r\n\\x03\\x01\\x08\\xb0\\x64\\xc5\\xd0\\xa8\\x1f\\xa9\\x14\\x04\\xc1\\x2b\\x45\\x9d\\\r\n\\x22\\x59\\x62\\x31\\xae\\x7a\\x48\\x13\\xd7\\xe3\\x34\\x98\\xc0\\xc1\\xa5\\x81\\\r\n\\x9a\\x7d\\xc9\\xb3\\x36\\xf9\\x60\\x64\\x00\\x78\\x4c\\x98\\x3c\\x28\\xe2\\x93\\\r\n\\xa3\\x20\\x17\\x44\\xc0\\xc8\\x5e\\x02\\xd2\\x31\\xfa\\x99\\x8a\\x63\\x39\\xdf\\\r\n\\x54\\x10\\xb7\\x61\\x74\\x38\\x98\\x00\\x58\\x04\\x14\\x92\\x2a\\x98\\x2a\\xdd\\\r\n\\x24\\x82\\xc7\\x42\\xf9\\x5a\\x11\\xa2\\x14\\x14\\x2c\\xa5\\x14\\x04\\x26\\xc2\\\r\n\\x80\\x14\\x87\\x60\\x11\\x0a\\x0a\\xc5\\x7e\\x2e\\xfa\\x80\\x30\\x09\\xba\\x18\\\r\n\\x43\\xe1\\x9c\\xb1\\x6d\\x65\\x02\\xa0\\x2a\\xb8\\x74\\x1a\\xfc\\x8c\\xbd\\xc8\\\r\n\\xc3\\xfb\\x42\\x61\\xf2\\x42\\xac\\xf1\\xbb\\xd0\\x02\\x0a\\x09\\x60\\x5a\\x26\\\r\n\\x24\\xa0\\xc5\\xd4\\xe0\\x0a\\x41\\x9e\\x91\\xed\\x6c\\x20\\xa4\\x50\\x0d\\xb0\\\r\n\\x20\\x85\\x62\\x26\\x8d\\xaa\\x1a\\xde\\x20\\x47\\xc2\\xb2\\x3c\\x68\\x3c\\x52\\\r\n\\x85\\x90\\xa4\\x5a\\x2c\\x06\\x4a\\xf0\\xd8\\xcd\\xb0\\x09\\x41\\x08\\x47\\xa9\\\r\n\\x45\\xb8\\x22\\x25\\x8e\\x43\\x6c\\x4e\\x22\\xca\\x62\\x8e\\x2f\\x73\\xb4\\xf5\\\r\n\\xb5\\xd6\\x92\\xd3\\xb7\\xc5\\x07\\xf4\\xb8\\x89\\x00\\x8a\\x08\\x30\\x9a\\xe9\\\r\n\\x11\\x2a\\x00\\x6a\\xbf\\x1b\\x11\\x0a\\x0b\\x77\\xc7\\x20\\xb1\\x00\\x43\\x44\\\r\n\\x74\\x1b\\x66\\x9f\\x47\\xc6\\x2e\\x2c\\x9a\\xe4\\x30\\x74\\x41\\x2e\\x52\\x13\\\r\n\\xf0\\x95\\xa0\\xd0\\x41\\x0d\\x45\\x54\\x73\\x52\\xa0\\x24\\x1c\\x04\\x80\\x22\\\r\n\\xd7\\x14\\x31\\x41\\xba\\xa7\\xc6\\x91\\x56\\x8a\\x94\\x60\\x02\\x20\\x4d\\x3c\\\r\n\\xb8\\xa3\\x3a\\xe3\\x79\\x1c\\x19\\xc0\\xd4\\x8a\\x88\\x45\\x43\\x28\\xce\\x23\\\r\n\\x05\\x1a\\xc6\\x2b\\xe8\\x56\\x92\\x41\\x44\\x47\\x49\\x10\\xf1\\x95\\xf3\\xaa\\\r\n\\x6d\\x56\\x14\\x9b\\x75\\xac\\x5f\\xa9\\xe0\\x33\\xf3\\xa7\\xe0\\x6b\\x00\\x35\\\r\n\\x09\\xfc\\x98\\xd5\\xf5\\x70\\x90\\xd9\\x92\\x1d\\x4c\\xe6\\x9c\\x27\\xce\\xfb\\\r\n\\xe6\\xb3\\x88\\x3b\\x8a\\x30\\xb7\\x07\\x75\\x4a\\x59\\x0c\\x88\\x48\\x00\\xfe\\\r\n\\x62\\x3f\\x0d\\x74\\xaf\\xa8\\x90\\x11\\x65\\x31\\x24\\x57\\x57\\x93\\xff\\x00\\\r\n\\x42\\x5b\\x46\\x69\\x22\\x95\\x52\\x0a\\x8a\\x00\\x84\\x5a\\x0f\\x2b\\x3c\\xe1\\\r\n\\x48\\x00\\x53\\x86\\x6c\\x17\\x32\\xf8\\x7e\\x02\\xf3\\x98\\xc5\\xa0\\x83\\x3a\\\r\n\\xa7\\xc9\\xe6\\x77\\xb5\\x8d\\x02\\x11\\x24\\x32\\xa5\\x09\\x62\\xc6\\x6e\\xaf\\\r\n\\xe3\\x40\\x21\\x02\\x00\\x08\\x7c\\x40\\x49\\x1a\\xc4\\xa0\\x4e\\xc5\\xd9\\x7a\\\r\n\\x26\\x52\\x91\\x30\\x70\\x04\\x65\\x4d\\x62\\xe3\\x04\\xf4\\x11\\xe7\\x82\\xa1\\\r\n\\xc6\\xd4\\x57\\x79\\x05\\x1d\\x58\\xa7\\x39\\x4f\\x23\\x6b\\x59\\xa2\\xc3\\x89\\\r\n\\xa0\\x45\\x12\\x18\\x7d\\xa3\\xb6\\x13\\x11\\xd1\\x04\\x2d\\x47\\x4b\\x14\\x5a\\\r\n\\x82\\x0c\\x3e\\x94\\xb4\\x0a\\xe8\\x5d\\x2c\\x82\\xe0\\xbb\\x1d\\xdc\\xe2\\x0f\\\r\n\\x25\\x08\\xaa\\xa8\\x36\\x11\\x9f\\x61\\xb7\\xc1\\x12\\xbd\\x03\\xfc\\x07\\x72\\\r\n\\x5c\\x74\\x0d\\x63\\x44\\x58\\xe4\\x98\\xae\\xbf\\xf8\\xcd\\x1f\\xbd\\xec\\x55\\\r\n\\x59\\x61\\xb4\\xfc\\x04\\x7a\\x15\\x41\\x08\\x6f\\x8e\\xe4\\x35\\x29\\x6b\\x03\\\r\n\\xb1\\x1a\\x58\\x72\\xf1\\x91\\x08\\x76\\x72\\x16\\x20\\x14\\x06\\x73\\x1a\\xf2\\\r\n\\x32\\x9f\\xfd\\x66\\x10\\x6e\\x54\\x13\\x2f\\xdf\\x22\\x47\\xaf\\x7c\\x58\\x1d\\\r\n\\x8b\\x6a\\x5a\\x01\\x3c\\xa4\\xa6\\xa2\\x60\\x62\\xe0\\x2e\\x94\\x57\\xec\\x1f\\\r\n\\x82\\x45\\x87\\x01\\x4e\\xd0\\xa3\\x41\\x3a\\x63\\x18\\x09\\x1d\\x50\\x25\\xd2\\\r\n\\x87\\xa5\\x51\\x7f\\x3c\\x4c\\xdf\\x3e\\x12\\xa8\\x88\\x48\\x60\\x65\\x03\\xe0\\\r\n\\x73\\x5b\\x5d\\xda\\x92\\xa5\\x2a\\x48\\x50\\x45\\xb2\\x33\\x9e\\xe0\\x50\\x1a\\\r\n\\x82\\xb2\\x0e\\x7a\\x50\\x90\\x1e\\x20\\x54\\x62\\x75\\x09\\x74\\xa4\\xed\\x3d\\\r\n\\xaa\\xaa\\xf6\\x34\\x99\\xc5\\x73\\x83\\xf3\\xd3\\x7d\\x71\\x31\\x08\\x8c\\x88\\\r\n\\x8b\\x41\\xf4\\x8b\\x7d\\xd5\\x42\\x3e\\x24\\x10\\x1d\\x0f\\x83\\x24\\xf1\\x5a\\\r\n\\x39\\x96\\x41\\x64\\xc0\\x70\\x84\\x68\\x1e\\x0a\\xa9\\x86\\x23\\xeb\\xa0\\x12\\\r\n\\x51\\x31\\x08\\x5e\\xc6\\x14\\xa5\\xc5\\x2c\\x10\\x58\\x22\\x09\\x40\\x5c\\x87\\\r\n\\x8b\\x2e\\x41\\x2a\\xeb\\xdb\\xa4\\x01\\x0d\\x8a\\x20\\x3e\\x84\\x9c\\x95\\xf5\\\r\n\\xa1\\xda\\x21\\x0a\\x50\\x84\\x01\\xaa\\x87\\x1b\\xe7\\x84\\x01\\x61\\xa9\\x98\\\r\n\\x55\\x1b\\xe4\\x86\\x30\\xa1\\xa0\\xa2\\x90\\x70\\x25\\x06\\x17\\x24\\x12\\x5d\\\r\n\\xa1\\x4b\\x14\\x32\\x4a\\x21\\x11\\x18\\x24\\xf5\\x40\\x56\\xd1\\x20\\xa6\\x08\\\r\n\\x18\\x7d\\x11\\xf5\\x56\\x2d\\x30\\x09\\xf4\\xc3\\x06\\x50\\xb2\\x88\\x04\\x80\\\r\n\\xc0\\x88\\xc4\\x30\\x91\\x92\\x7e\\x2f\\xfa\\xf8\\x13\\x82\\x92\\xda\\xc4\\x60\\\r\n\\xb3\\x00\\x77\\xd5\\xe1\\xca\\x8d\\x1a\\x0a\\x40\\x42\\x61\\xe3\\x8b\\xa1\\xcf\\\r\n\\x57\\x28\\xe2\\x3b\\x40\\xe8\\x18\\x7f\\x83\\x94\\xd6\\x87\\x69\\x14\\x8a\\xc3\\\r\n\\xa0\\x04\\x28\\x5f\\x04\\x9c\\xb3\\xa2\\xd5\\x01\\xa1\\x69\\x44\\x16\\x6b\\x76\\\r\n\\xa7\\x68\\x04\\xea\\x00\\x80\\xaf\\xa4\\x80\\xe1\\xcd\\x22\\xff\\x00\\x2c\\xa9\\\r\n\\x10\\x29\\x58\\xb5\\xf7\\x22\\x41\\x20\\xae\\x05\\xa0\\x41\\x49\\x13\\x1c\\x9e\\\r\n\\x62\\x61\\xd0\\x5e\\x11\\x0b\\x82\\xf7\\x0a\\xee\\xd5\\xb2\\xaa\\x0b\\xb0\\x32\\\r\n\\xf1\\xac\\x4f\\xe8\\x93\\xc7\\xa6\\x40\\x12\\xaa\\x41\\x00\\x91\\x1c\\x46\\xdc\\\r\n\\x3f\\x7c\\x87\\x60\\xb2\\x80\\xe7\\xd5\\x28\\x02\\x35\\x7b\\xb6\\xfb\\x4d\\xea\\\r\n\\x65\\x01\\x06\\x92\\x0e\\x80\\x05\\xc7\\xcf\\x0b\\x11\\x50\\x53\\x00\\x2d\\x25\\\r\n\\x86\\x92\\xb0\\x97\\xc1\\xca\\xc7\\x4d\\xe4\\xa8\\x96\\x0d\\x54\\x1d\\x87\\xce\\\r\n\\x48\\x4c\\xec\\xa8\\xad\\x6a\\x0c\\xeb\\x89\\x89\\xeb\\x99\\xc3\\xb2\\x24\\x62\\\r\n\\x54\\xe5\\x8a\\x2f\\xcb\\x50\\x2f\\xe9\\xc8\\x20\\x0e\\x83\\x52\\x08\\x01\\x8e\\\r\n\\x81\\x48\\x36\\xa2\\x00\\x6c\\xdb\\x01\\x11\\xf8\\xef\\x8d\\xb8\\x1f\\x84\\x83\\\r\n\\x33\\xa3\\xaa\\x50\\x11\\x0f\\x9f\\x69\\x16\\xe8\\x05\\x44\\xea\\xa3\\x6f\\xc2\\\r\n\\xf9\\xbc\\xb1\\xb3\\x02\\x26\\xcb\\x48\\xd1\\x69\\x7d\\x85\\x04\\x75\\xfc\\x72\\\r\n\\xcd\\x08\\x41\\x6e\\x27\\xaa\\xd5\\x0a\\xa8\\x51\\x0a\\x0a\\x5e\\x12\\x38\\x11\\\r\n\\x11\\x88\\x12\\x26\\x10\\xc4\\x61\\xf0\\x6b\\xc0\\x77\\xbe\\x42\\xaa\\x00\\x8a\\\r\n\\x80\\x02\\x92\\x06\\xa4\\x27\\xf3\\xc2\\x05\\x04\\x88\\x82\\xaa\\x94\\x0d\\x08\\\r\n\\x84\\x4c\\xc3\\xe7\\x50\\x84\\xb5\\x2e\\x48\\x00\\x04\\x73\\x61\\xd8\\xe7\\x98\\\r\n\\x24\\x28\\x28\\x15\\x7e\\xc3\\x15\\x92\\x9f\\xf8\\x6f\\xac\\x16\\x20\\xa5\\xab\\\r\n\\x88\\xc1\\xef\\xda\\xea\\x73\\x2b\\xc6\\x93\\x2a\\x78\\x15\\x2d\\x18\\x40\\x6a\\\r\n\\x95\\xea\\xfc\\xfd\\x20\\x48\\x83\\xbf\\xc0\\x0b\\x5e\\x16\\x53\\x03\\xe2\\xe2\\\r\n\\x81\\x64\\x22\\x2c\\xb1\\x18\\xbe\\xa6\\x04\\x28\\xac\\x3f\\x16\\x63\\xe8\\xd5\\\r\n\\x11\\x1f\\x19\\x68\\xa7\\x11\\x49\\x26\\x10\\xeb\\x4e\\x00\\xaf\\x08\\x56\\x52\\\r\n\\x1d\\x83\\x50\\x60\\x09\\x20\\x65\\xb9\\xac\\xe4\\xee\\x5a\\x6c\\x22\\x83\\x69\\\r\n\\xb7\\x63\\xf8\\x97\\x89\\x36\\x85\\x14\\xb4\\x10\\x80\\xc2\\x98\\xc4\\x79\\x78\\\r\n\\xa0\\xac\\x19\\x93\\x41\\xaf\\x68\\x08\\x8c\\x47\\x78\\xf9\\x36\\x05\\x36\\x15\\\r\n\\x84\\x0c\\xe1\\x57\\x81\\x69\\x4d\\x0e\\x86\\x88\\xc6\\x01\\x00\\xee\\x93\\xca\\\r\n\\x85\\xa4\\x10\\x71\\x6d\\x5c\\x50\\xaa\\x44\\xaa\\xaf\\x8d\\x29\\xe1\\x06\\x42\\\r\n\\x04\\x08\\x84\\x29\\xb7\\x85\\xea\\x16\\x61\\xf0\\x41\\x84\\x80\\x7e\\x80\\xa6\\\r\n\\xac\\x88\\x46\\xd5\\x34\\xea\\x20\\x30\\xd4\\x4f\\xa9\\xab\\x3d\\x28\\x59\\xd2\\\r\n\\x8d\\x55\\x8a\\xa6\\x91\\x4c\\x44\\xaa\\x11\\xc8\\x42\\xb9\\xd5\\x2e\\x62\\x05\\\r\n\\x64\\x80\\x10\\x80\\xee\\x84\\xc1\\x7b\\x5f\\x89\\xad\\x5c\\x3d\\x15\\x84\\x17\\\r\n\\x20\\x1f\\xc8\\x16\\xcf\\x1a\\x56\\x4c\\x12\\x69\\x39\\x19\\x55\\x8d\\x06\\x95\\\r\n\\xe2\\x75\\x31\\x1f\\x8b\\xa8\\x65\\xeb\\xa9\\x7c\\x06\\xe6\\x54\\xaa\\x6f\\x40\\\r\n\\x89\\xc0\\xa1\\x7c\\x0a\\x50\\x93\\x2c\\x34\\xc5\\x41\\x06\\xd8\\x81\\xe0\\xad\\\r\n\\x89\\x28\\x58\\x54\\x05\\x0e\\xdd\\x66\\x40\\xf3\\x7f\\x39\\xb2\\x6d\\xa0\\x90\\\r\n\\xca\\xaa\\x38\\x3e\\x82\\xa6\\x09\\x2a\\x11\\x20\\xe9\\xac\\x11\\xd8\\x20\\x2e\\\r\n\\x15\\x08\\xd4\\x68\\x71\\x34\\x0e\\xbb\\xe6\\x20\\x3b\\x9d\\xb0\\xb1\\x78\\xae\\\r\n\\xcc\\x05\\x3e\\x0e\\x45\\x84\\x5a\\x09\\x06\\xad\\x8a\\x53\\x1d\\x3e\\x4c\\xe6\\\r\n\\x20\\x40\\x93\\xa9\\xd0\\xd3\\x42\\x69\\x00\\xbc\\xd8\\x05\\x01\\x25\\x5e\\xf7\\\r\n\\x47\\x62\\x10\\x37\\xef\\x3a\\x0d\\x61\\x0e\\xd3\\x8d\\x00\\xe0\\x9a\\x2b\\x80\\\r\n\\x27\\x0c\\x62\\xc2\\x7c\\x05\\x14\\x74\\x34\\xba\\xba\\x09\\xd5\\x05\\x6c\\x04\\\r\n\\xc8\\x83\\xb6\\x84\\x2f\\xb9\\x71\\x70\\x03\\x1d\\xac\\x89\\xe6\\xaa\\x61\\xca\\\r\n\\x81\\xb2\\x11\\x49\\x02\\xa1\\xc0\\xf0\\xee\\x63\\x8b\\x01\\x62\\x51\\x5d\\xc8\\\r\n\\xb0\\xc5\\x9e\\x50\\xc2\\x09\\x21\\x62\\x3b\\x8d\\x4b\\x14\\xb3\\xa4\\xf3\\xd2\\\r\n\\x31\\x75\\xaf\\x8f\\xc0\\xe1\\xff\\x00\\xf6\\xcc\\x93\\x82\\x91\\x05\\xbf\\xa9\\\r\n\\xda\\xe7\\xe1\\xe1\\xcc\\x90\\x84\\x16\\xba\\x08\\x1f\\xf9\\xbb\\x99\\xdb\\x91\\\r\n\\x31\\x46\\x0f\\x60\\x10\\xf6\\xb4\\x58\\x00\\x61\\x8c\\x16\\x7e\\x41\\xfb\\x22\\\r\n\\x2a\\x2b\\x2c\\xf6\\x00\\x5f\\xba\\x85\\xfe\\x41\\x4b\\x52\\x34\\x2d\\xcf\\x0c\\\r\n\\x94\\x68\\xf5\\x75\\x3a\\xd3\\x36\\x93\\x3d\\x30\\x14\\x02\\x9b\\xba\\xc6\\xdb\\\r\n\\x8d\\x02\\xdf\\x25\\x94\\x52\\x2e\\xc9\\x50\\x09\\x48\\x1a\\x7e\\xf9\\xff\\x00\\\r\n\\x8d\\x5b\\x17\\x49\\x84\\x10\\x40\\x49\\xd1\\x93\\xc1\\x84\\xea\\x84\\x70\\x97\\\r\n\\x4d\\x14\\x60\\xe9\\xdb\\x12\\x48\\x10\\xd0\\x34\\x85\\x01\\x6a\\x40\\x2c\\xa9\\\r\n\\xe6\\xff\\x00\\x04\\x88\\x30\\x4a\\xa6\\xc3\\xc4\\x11\\x52\\x0f\\x97\\x56\\x51\\\r\n\\xa1\\xfd\\x04\\xb4\\xc2\\x42\\x15\\x07\\x6e\\x12\\x84\\xab\\x43\\x42\\x41\\x13\\\r\n\\xaf\\x1e\\x7a\\xa0\\xe0\\x48\\x9e\\x07\\xf8\\x84\\xbb\\x9e\\xa2\\x60\\x53\\x8b\\\r\n\\x02\\x8e\\x82\\xe8\\xdb\\xb3\\xfe\\x79\\x19\\xe9\\x1b\\x65\\xaa\\x97\\x2d\\x76\\\r\n\\x85\\x78\\x43\\xc8\\x80\\x43\\x80\\x20\\x5f\\xaa\\x58\\xdd\\x27\\x2d\\x20\\xd3\\\r\n\\x22\\xd1\\xde\\x3f\\xe0\\xc3\\x9a\\x7a\\xa7\\x22\\x80\\xa2\\x61\\x2a\\x45\\x54\\\r\n\\x61\\xe8\\xc4\\x48\\xbd\\x6c\\x94\\xc2\\xb6\\x6a\\xae\\x41\\x8a\\x69\\x84\\x36\\\r\n\\x28\\x0e\\x21\\xa5\\xa5\\x1b\\x3c\\x23\\x41\\x27\\x22\\x85\\x57\\x43\\x46\\x8b\\\r\n\\x47\\x17\\x84\\x75\\x88\\x40\\x61\\x18\\x68\\xaf\\x5c\\x94\\xaa\\xa2\\x48\\xcb\\\r\n\\xea\\x04\\x0d\\xc7\\x5c\\x3e\\xfd\\xfc\\x10\\x91\\x9f\\x52\\x13\\x24\\xf4\\x77\\\r\n\\x6e\\xc9\\xfb\\x38\\x70\\x1e\\xa1\\x56\\x19\\xd0\\xa9\\x71\\x8e\\x0b\\xc1\\x21\\\r\n\\x41\\x4a\\xc5\\x08\\xb1\\xde\\x08\\xb3\\x38\\xef\\xa5\\x2f\\x61\\x5c\\x22\\x87\\\r\n\\x05\\x0b\\x3f\\x84\\x0e\\x91\\x6c\\xd4\\x5c\\xfa\\x5c\\x93\\xee\\x4c\\xef\\xdf\\\r\n\\x2d\\xca\\x97\\x81\\x48\\x40\\xe2\\x28\\x4b\\x84\\x62\\xf8\\x0b\\x1e\\xa6\\x0c\\\r\n\\x27\\x40\\x2e\\xf4\\x2d\\x50\\xe4\\x29\\xf1\\x90\\x39\\xe4\\x7c\\x27\\xf5\\x78\\\r\n\\x6f\\xa9\\xf1\\xa3\\x0a\\xa0\\x44\\x14\\x59\\x00\\xa8\\x84\\x19\\x33\\x74\\xe1\\\r\n\\xf0\\x0c\\x09\\xe5\\x04\\xa2\\x5d\\x8a\\x40\\x91\\x07\\x51\\x10\\x28\\x28\\xd5\\\r\n\\xfb\\x01\\x9e\\x05\\x29\\xb3\\xcd\\xd1\\x51\\x13\\x42\\x95\\x40\\xd8\\x01\\x3c\\\r\n\\x7f\\xb2\\xa2\\x12\\x35\\x88\\x55\\xe3\\xf0\\xc7\\xcd\\x83\\xfe\\xf1\\x01\\xeb\\\r\n\\xaf\\xe2\\x07\\x4c\\xf2\\x29\\x25\\x55\\x75\\xab\\x8a\\x9a\\xe1\\xf2\\x10\\x46\\\r\n\\x59\\x60\\x51\\x0d\\x89\\x0e\\x60\\x4b\\xa7\\x82\\x1c\\x49\\x29\\xc6\\xbf\\x8b\\\r\n\\x08\\x00\\x14\\xf8\\x0e\\xa1\\x89\\x5d\\x6a\\xc1\\x1d\\x51\\x85\\x78\\x67\\xdc\\\r\n\\xa0\\xb5\\xd8\\x0a\\x08\\x2c\\x53\\xbe\\xb5\\x89\\x17\\x35\\x21\\x82\\x24\\xee\\\r\n\\x29\\xf5\\x3c\\x1d\\x3e\\xa2\\x17\\x0a\\x18\\xd5\\x50\\xa5\\xe1\\x12\\xa2\\x0d\\\r\n\\x46\\x77\\xc7\\xc9\\x58\\xef\\x80\\x08\\x58\\xc4\\x49\\x80\\x04\\x98\\xb2\\x5c\\\r\n\\x01\\xbc\\x88\\x98\\x34\\x80\\xa0\\xa2\\x68\\xc0\\x4a\\xe8\\x58\\x52\\x8a\\x3a\\\r\n\\xd1\\xf8\\xae\\x87\\xcb\\xa1\\x52\\xd1\\x40\\x0f\\x9f\\x48\\x6f\\x33\\x3b\\x7c\\\r\n\\x8a\\x53\\x2e\\x28\\x2b\\x44\\x24\\x0d\\x4d\\xfe\\x3c\\xe6\\x15\\x80\\xa1\\x10\\\r\n\\xb4\\x85\\x44\\x44\\x65\\x57\\x3c\\x9d\\x15\\xc9\\x4f\\x23\\xca\\x00\\x0a\\x65\\\r\n\\xa9\\x59\\x29\\x20\\x01\\x6c\\x06\\xab\\x50\\xd3\\x87\\x99\\xdf\\x09\\xe6\\x2e\\\r\n\\xa1\\x10\\x21\\xbc\\x3f\\x01\\x9c\\x07\\x0a\\x10\\x6c\\x8b\\x92\\x40\\xc1\\xa4\\\r\n\\x82\\xeb\\x3c\\xa1\\x1a\\x2d\\xc1\\x06\\xad\\x58\\x5a\\xc0\\x99\\xe4\\xce\\x23\\\r\n\\x8d\\x02\\x90\\x21\\xbf\\xa0\\xd1\\xd3\\xe2\\x0d\\x24\\x0d\\x4a\\x8a\\x57\\x41\\\r\n\\x9e\\xaf\\xe7\\x3c\\x36\\x11\\xb6\\x66\\x0d\\x55\\x15\\x55\\xe2\\x4a\\x5f\\x38\\\r\n\\x40\\x85\\x60\\x25\\x13\\x9b\\x52\\xc0\\xe3\\x6e\\x78\\x0d\\x2f\\x24\\xc8\\xd8\\\r\n\\x14\\xaf\\xe3\\x0f\\x94\\x47\\x33\\x34\\x76\\x0a\\x42\\x82\\x2b\\x85\\x52\\xd6\\\r\n\\x19\\x09\\x62\\x97\\x35\\x92\\xa9\\x62\\xd8\\x58\\xa2\\xf2\\xc4\\x00\\x79\\xba\\\r\n\\x26\\xc2\\x57\\x00\\xb8\\x2b\\x21\\x29\\x4a\\x1c\\xc8\\x7d\\x86\\x1c\\x24\\x08\\\r\n\\xad\\x8a\\xc1\\x4f\\xb1\\x14\\x02\\xae\\xa7\\x0c\\x1c\\x7c\\x67\\xe9\\x41\\x1a\\\r\n\\x12\\x52\\xb2\\xa8\\x36\\x59\\x75\\x7c\\x2e\\xb6\\xda\\x0d\\x0b\\x9b\\xa1\\xad\\\r\n\\xac\\x98\\x2f\\xb4\\xc2\\xb2\\x0a\\x00\\x40\\x7c\\x85\\xdb\\x4a\\x07\\x7e\\x44\\\r\n\\xa4\\x4a\\x45\\x69\\x50\\x89\\x01\\x3f\\xcb\\xb9\\x1f\\x86\\x46\\x74\\x08\\x94\\\r\n\\xd2\\x0a\\xa5\\xa2\\xd8\\xad\\x25\\x95\\x39\\xd4\\x44\\xd2\\x88\\x62\\x50\\xa3\\\r\n\\xcf\\x12\\xee\\xb4\\x20\\xcb\\x04\\x55\\xaa\\x00\\xcd\\x55\\x4e\\x76\\x00\\x13\\\r\n\\xda\\x16\\x28\\x5d\\xbb\\x59\\x17\\x5e\\xf4\\x81\\xbd\\x38\\x67\\x7c\\x0f\\xb0\\\r\n\\x32\\x8e\\x49\\x94\\xd5\\xbd\\x88\\x84\\xdf\\x6c\\x1a\\x55\\x26\\x0c\\x69\\x30\\\r\n\\xe8\\xbc\\x96\\xe3\\x1d\\xc0\\x8b\\xf9\\x84\\x38\\x2c\\xeb\\x94\\x91\\xf4\\xc3\\\r\n\\x92\\xb7\\x02\\x34\\x62\\x8e\\x1a\\xbf\\x43\\x80\\xd6\\xb0\\x40\\x22\\x2a\\x2a\\\r\n\\x5a\\x22\\x59\\xdd\\x34\\x92\\x59\\xca\\x35\\x00\\xc2\\x40\\x51\\x8f\\xd7\\x7c\\\r\n\\x94\\x3a\\xea\\xba\\xc4\\x20\\x4c\\xdb\\x97\\xeb\\xbc\\x60\\x42\\x43\\x21\\xd6\\\r\n\\xad\\x17\\xeb\\x37\\xca\\xc4\\xfa\\x7a\\x2a\\x2c\\x01\\x06\\x95\\x1a\\x4d\\x42\\\r\n\\xe5\\xfc\\xfe\\x0c\\xc3\\xb0\\x40\\x00\\x35\\x60\\xc7\\x04\\x93\\x65\\x37\\x81\\\r\n\\x01\\x40\\x3a\\x2a\\xb4\\x07\\x14\\x56\\x55\\xaf\\x7b\\x80\\x84\\x08\\xf0\\xd5\\\r\n\\x2e\\x02\\xc8\\xdc\\xab\\x22\\x29\\x21\\x2b\\x00\\xe0\\x0f\\xb2\\x1e\\xd7\\x71\\\r\n\\x50\\xe4\\xb8\\xc3\\x70\\x94\\x54\\x2a\\xd4\\x20\\xa3\\x1d\\x14\\x11\\x24\\xf8\\\r\n\\x81\\x91\\x9d\\xb2\\x04\\x89\\x87\\x60\\xbe\\xa0\\x93\\x25\\xb1\\x01\\x07\\x40\\\r\n\\x11\\x16\\xd1\\xd8\\x5b\\x48\\x10\\x25\\x4c\\x00\\x8c\\xa3\\xba\\x88\\xed\\xa6\\\r\n\\xc8\\x59\\xd8\\x10\\x22\\x20\\xc5\\x1d\\x14\\x2e\\x0b\\xe0\\x0b\\x48\\x82\\xc8\\\r\n\\x8f\\x2b\\x48\\xc4\\x76\\x71\\x41\\xd6\\xb1\\x05\\x08\\x48\\x23\\xc5\\x5f\\x4f\\\r\n\\xab\\xb1\\xd1\\xeb\\x15\\x25\\x04\\x10\\x47\\xcf\\xbc\\x03\\x95\\x05\\x04\\x71\\\r\n\\x4d\\x16\\xe8\\x70\\xf0\\x2e\\x20\\x5c\\xeb\\x62\\x5f\\x83\\x4f\\x19\\x1c\\xa1\\\r\n\\x07\\x16\\x64\\xbc\\x62\\x1c\\x00\\x5d\\xe4\\x90\\xde\\x2d\\x12\\x50\\x13\\xd9\\\r\n\\xe3\\xfe\\xe7\\x1e\\x68\\x06\\x49\\x1e\\x81\\xa7\\xdb\\x7a\\x73\\x02\\x78\\x20\\\r\n\\x60\\x20\\x3e\\x07\\xa8\\x72\\x12\\xde\\x2c\\x61\\xa0\\x24\\x3a\\x15\\xe5\\xb8\\\r\n\\x2e\\x24\\x04\\x33\\x00\\xeb\\x10\\x5f\\xe9\\x68\\x0f\\x41\\x2c\\x14\\x80\\xba\\\r\n\\x43\\x48\\x89\\xfb\\x16\\xb0\\xcc\\x50\\x74\\xa2\\xd2\\x8d\\xfd\\x69\\xb2\\x8d\\\r\n\\x66\\x9c\\x6a\\x98\\x1d\\x0a\\x0a\\x50\\x70\\xae\\x85\\x16\\xc4\\xdb\\x78\\xa1\\\r\n\\xc6\\xc7\\x42\\xc0\\xb6\\x37\\xc9\\x30\\x48\\x40\\xd1\\x8d\\x16\\x81\\xd3\\x21\\\r\n\\xf7\\x3c\\x43\\x5f\\x4c\\x50\\xa4\\x8b\\x48\\xcf\\x8b\\x63\\x9e\\xae\\x21\\xa1\\\r\n\\xae\\x08\\x41\\x36\\xe1\\x99\\xf3\\x3c\\xfa\\x92\\xa8\\x90\\x10\\x05\\x7f\\xed\\\r\n\\x39\\x3f\\x0f\\x64\\x04\\x8e\\x44\\x29\\x36\\x95\\x13\\xb0\\x68\\x55\\x92\\xa0\\\r\n\\x91\\x64\\xc5\\x5a\\x2a\\x15\\x3a\\x7e\\xfa\\x0d\\x27\\x63\\xcd\\x00\\xca\\x98\\\r\n\\x60\\xf1\\x19\\x50\\x19\\x95\\x4e\\xeb\\x42\\x08\\x2a\\xbf\\xb8\\x32\\x8d\\x92\\\r\n\\x82\\x22\\x40\\x25\\x50\\x03\\x58\\x5d\\x34\\xdc\\xaf\\xaf\\x70\\x81\\x00\\x24\\\r\n\\xa1\\x0f\\x03\\x02\\x6c\\x28\\x45\\x0a\\x46\\xfc\\x02\\x06\\xbf\\x57\\xd3\\x98\\\r\n\\x11\\x02\\xd1\\xc9\\x74\\xb1\\x58\\x55\\x16\\x2a\\x22\\xbb\\xa4\\xd4\\xa7\\x10\\\r\n\\x8a\\x97\\x0d\\x3e\\x28\\x88\\x24\\x88\\x62\\xb4\\x4b\\x99\\x2b\\x5d\\xf3\\x5b\\\r\n\\x04\\xfd\\x30\\x16\\x0c\\x2a\\x15\\x75\\x41\\x17\\xc3\\x73\\x1f\\x0a\\x60\\x02\\\r\n\\x30\\x7e\\x1c\\x03\\xc0\\x78\\x3b\\xc0\\x69\\xe5\\x3e\\xc3\\x48\\x96\\xeb\\xa5\\\r\n\\x17\\xc2\\x40\\x32\\x54\\x53\\x1a\\xc9\\xe4\\x23\\x88\\x6c\\x0f\\x31\\xc5\\x75\\\r\n\\xc8\\x90\\x3c\\xd9\\xc7\\xa9\\xe0\\xca\\x51\\x08\\x69\\x28\\xf1\\x93\\x23\\x74\\\r\n\\x4c\\x2b\\xec\\x0e\\x3d\\x84\\xc5\\x50\\x22\\x03\\x88\\x00\\x95\\xe1\\x65\\x6e\\\r\n\\x5b\\xfa\\x23\\x78\\x86\\xec\\xc8\\x8c\\x0a\\x4f\\xa4\\x35\\xf2\\x7c\\x6d\\xca\\\r\n\\xe8\\x40\\x0a\\x69\\x51\\xd3\\xf4\\x22\\x63\\xf6\\x32\\x2e\\x94\\x5a\\xb4\\xd0\\\r\n\\xd4\\x0a\\xf8\\x86\\x02\\x0c\\x1f\\xc1\\xc6\\xc7\\x89\\xce\\xe7\\x8e\\x8a\\x39\\\r\n\\x60\\x05\\x28\\x01\\x43\\xe0\\x19\\xdd\\x04\\x5c\\x29\\xd6\\x94\\xa8\\x00\\xbd\\\r\n\\x80\\xa0\\x4b\\x6f\\x9e\\x4c\\xe6\\x2d\\xc5\\x26\\x80\\x81\\x1c\\x75\\x82\\x26\\\r\n\\xd2\\x8b\\xb0\\x2c\\x05\\xa0\\x00\\x0a\\x12\\xc6\\x82\\x63\\xcb\\xd5\\xaa\\x02\\\r\n\\x18\\xae\\xe0\\xa9\\x7f\\x7c\\xfe\\x67\\x80\\xa1\\x46\\x46\\xda\\x64\\x91\\xfc\\\r\n\\xfe\\xd8\\xfc\\xcc\\x61\\x54\\x00\\x39\\x50\\x58\\x01\\x9a\\xbe\\x00\\x8c\\xdd\\\r\n\\x09\\xa8\\xd0\\x94\\x80\\x12\\xb4\\xb4\\x00\\xa0\\x14\\x53\\x48\\x45\\x04\\x21\\\r\n\\x08\\x13\\x8e\\xad\\x52\\xa3\\x0a\\x51\\x2c\\x0c\\x28\\x57\\xa7\\x98\\x39\\x0c\\\r\n\\x01\\x53\\x4c\\xeb\\xb5\\xe0\\x14\\xa2\\x5a\\x94\\x60\\xa8\\x54\\xc7\\x4b\\x56\\\r\n\\xd9\\x9b\\x8d\\x5e\\x66\\x98\\x30\\x29\\xc1\\x04\\x56\\x0f\\x7d\\xbb\\x6c\\x5f\\\r\n\\x8c\\xf4\\xd2\\xe0\\xf1\\x12\\xf9\\x14\\x38\\x2a\\x28\\x30\\xa4\\x98\\x0b\\xe1\\\r\n\\xe1\\x64\\x98\\x52\\xc0\\x6c\\x5c\\x28\\x76\\x63\\x41\\x22\\x2c\\x6d\\x54\\xf0\\\r\n\\x26\\x87\\xba\\xe4\\x2b\\xc0\\x90\\x80\\xa4\\x62\\xdc\\x5b\\x51\\xd0\\x1d\\x0a\\\r\n\\x69\\x29\\xa4\\x4f\\x88\\x13\\x01\\xcc\\x04\\x7a\\x9d\\xc1\\x0b\\x77\\xda\\x69\\\r\n\\xb0\\xd5\\xc2\\xed\\x33\\x10\\x00\\x00\\x28\\x00\\x48\\x4e\\x06\\x07\\x3c\\xd0\\\r\n\\xd9\\x34\\xb1\\x20\\x28\\x2d\\x31\\x88\\x4b\\xad\\xf4\\x42\\x2d\\xb3\\x8d\\x51\\\r\n\\x11\\x54\\x5e\\xac\\xb0\\xa4\\x90\\x8c\\x73\\x15\\x5a\\x60\\x03\\xc0\\xc2\\xd2\\\r\n\\xc9\\x00\\x68\\xfd\\x02\\xf3\\xef\\x1a\\x78\\xf8\\x85\\x81\\x35\\xff\\x00\\x41\\\r\n\\x04\\xd5\\x02\\x74\\xb6\\x15\\xf0\\xb5\\x10\\x81\\x24\\x00\\x3a\\xd2\\xbc\\x2f\\\r\n\\xdf\\x02\\xac\\x82\\xde\\xab\\x0d\\x49\\xf4\\x2c\\x94\\x37\\xc8\\xd0\\x30\\x00\\\r\n\\x86\\x01\\xe0\\x03\\x62\\x1d\\xa9\\x3c\\x54\\x26\\x13\\xe9\\x26\\x40\\x58\\x0f\\\r\n\\x3e\\x57\\xa5\\x0d\\xbb\\x71\\x40\\x89\\x99\\x2d\\xfe\\x08\\xf7\\x8e\\x6d\\x32\\\r\n\\x5d\\x2e\\x13\\xf9\\xd0\\x7e\\xea\\x64\\xf3\\xd3\\x94\\xc6\\x27\\x17\\x29\\xb6\\\r\n\\x22\\x89\\x05\\x0b\\x35\\x68\\xfe\\x29\\x20\\x24\\xda\\x7d\\x9f\\xd6\\x78\\xc2\\\r\n\\x1a\\x38\\x6c\\x24\\x10\\xc0\\xa2\\x8b\\x72\\x06\\x05\\x34\\x84\\x61\\x22\\x56\\\r\n\\x03\\x4b\\xd2\\x62\\xad\\x4e\\xe9\\x53\\xca\\xe9\\xf6\\xc2\\x10\\x78\\xa6\\x92\\\r\n\\xb1\\x81\\xc7\\x60\\xc3\\xf4\\x1e\\x67\\x33\\xc0\\xc5\\x86\\x01\\x4d\\x70\\x60\\\r\n\\xa4\\x87\\x17\\x55\\x28\\x16\\xfd\\x89\\x14\\x4c\\x42\\x31\\xba\\xea\\xb2\\x60\\\r\n\\xb6\\x03\\x14\\x95\\x70\\xe5\\x2e\\x9d\\x2c\\x92\\x83\\xe9\\x74\\x26\\x6c\\x6d\\\r\n\\xe8\\x00\\x78\\x53\\x2b\\x84\\xa6\\x10\\x70\\x01\\xf6\\x17\\x14\\xdd\\xf2\\xcd\\\r\n\\x29\\x03\\x1a\\x14\\x28\\x6c\\x96\\x60\\x37\\xe3\\x73\\xb2\\xe1\\x12\\x08\\xa3\\\r\n\\x52\\xea\\x89\\x45\\x05\\xc3\\x10\\x95\\x44\\x10\\x09\\x34\\x0d\\xab\\x38\\x6d\\\r\n\\xf3\\x8c\\x64\\xa7\\x69\\x7c\\x60\\x54\\x3b\\x36\\xd5\\x64\\x4d\\x31\\x59\\x07\\\r\n\\x55\\xd9\\x41\\x04\\xf8\\x0f\\x02\\x2a\\x92\\x83\\xbd\\x2a\\x4e\\xa1\\x7e\\x4b\\\r\n\\x59\\xbe\\x89\\xd0\\x65\\xb6\\x0f\\xaa\\xe1\\xa8\\x42\\x36\\xa0\\x42\\x81\\xc2\\\r\n\\x21\\x06\\x18\\x0f\\xeb\\x24\\x07\\x99\\x40\\x0d\\x94\\x8c\\x3c\\x1e\\xb3\\x6f\\\r\n\\x54\\x82\\x16\\x8e\\x50\\xe9\\xfc\\x11\\x0f\\x31\\x14\\x44\\x08\\xd1\\xc1\\x7f\\\r\n\\x50\\x24\\x90\\x9c\\x8c\\x4a\\x40\\x00\\x98\\xa6\\x5f\\xe7\\x80\\x99\\x03\\x42\\\r\n\\x5d\\x2a\\x6a\\x30\\xdb\\xa3\\xaa\\x9b\\xeb\\x4a\\x60\\xa9\\x4d\\xc1\\xca\\xa9\\\r\n\\x45\\x09\\x69\\x22\\x43\\x07\\xd0\\x4e\\xe9\\x49\\x8d\\x7e\\x16\\x6a\\xa4\\x0a\\\r\n\\x06\\x81\\x12\\x60\\x26\\x34\\x02\\x68\\x50\\x95\\x65\\x37\\x41\\x07\\x6f\\xd1\\\r\n\\x94\\xfe\\x0a\\x8e\\x83\\xc6\\xab\\x67\\x08\\x22\\x1d\\x16\\x8d\\x4f\\x6c\\x2a\\\r\n\\x29\\xe0\\x91\\x80\\xb8\\xc2\\x0e\\xa6\\x4e\\x2b\\x4a\\x14\\x90\\x10\\xd3\\x58\\\r\n\\x0c\\x78\\x48\\x24\\x7d\\xc2\\x26\\xce\\x0f\\xd6\\x30\\xa0\\x61\\x54\\xf2\\xcd\\\r\n\\xee\\x44\\x26\\x52\\x58\\x2a\\x87\\x10\\xec\\xf0\\xad\\xcd\\xec\\x56\\xa7\\xd0\\\r\n\\xae\\xe2\\x57\\xc5\\x61\\x03\\x8d\\xd2\\x12\\x88\\xc9\\x20\\x2c\\x20\\x2e\\x13\\\r\n\\x58\\x56\\x7f\\x43\\xc5\\xa8\\xb7\\x1f\\xec\\x3c\\xda\\x0a\\x88\\x88\\x1b\\x4f\\\r\n\\x1c\\xc2\\x3d\\x53\\x9e\\x02\\x81\\x48\\x14\\x41\\x3c\\x20\\x30\\x06\\x8b\\x0a\\\r\n\\x2d\\x30\\xaa\\x7c\\x12\\x18\\x17\\x91\\x33\\x14\\xcd\\x82\\xe8\\xd0\\x10\\x8b\\\r\n\\x81\\x37\\xb0\\x5c\\xa0\\x11\\x44\\x91\\x82\\x05\\xf0\\x43\\x5b\\x1c\\x02\\x6c\\\r\n\\x5a\\xf7\\x80\\x94\\xb5\\x46\\x23\\x68\\x14\\x30\\x96\\xa2\\x83\\x16\\x2e\\xbd\\\r\n\\x98\\xb9\\xd4\\xf6\\xc0\\x68\\x8f\\x90\\xc1\\x7c\\xf3\\x99\\x1d\\x41\\x0f\\xa8\\\r\n\\x04\\x03\\x09\\x6d\\x1b\\xe0\\xe0\\x10\\x0a\\x20\\x30\\x30\\x4a\\x0c\\x75\\xdf\\\r\n\\xaf\\x8c\\xc5\\xea\\x28\\x24\\xaa\\xac\\x82\\x93\\xc1\\xfb\\x12\\x8c\\x38\\x11\\\r\n\\xa8\\x00\\xa6\\x2c\\xf0\\x30\\xd0\\x3c\\x88\\x19\\xd2\\x09\\x76\\xa3\\xc0\\x13\\\r\n\\xbc\\xa4\\x40\\xa8\\x56\\xd0\\x2d\\xaa\\x0f\\x09\\xe6\\x6a\\x14\\x2e\\x0a\\xb1\\\r\n\\x65\\x0e\\x56\\x44\\xec\\x64\\x21\\x00\\x29\\x91\\x4b\\x1e\\x05\\x7a\\x66\\x04\\\r\n\\x35\\xbe\\x63\\xe1\\x45\\x81\\x95\\x75\\x51\\x4a\\x66\\x6e\\x8e\\x9e\\x01\\x48\\\r\n\\xa2\\x82\\x02\\xc8\\x08\\xe8\\x31\\xde\\xe1\\x15\\x43\\x73\\x84\\x81\\x76\\x6b\\\r\n\\x9f\\xf0\\x26\\xec\\x17\\x26\\x0a\\x35\\xaf\\x3a\\x01\\x15\\x6b\\xe7\\xf0\\x36\\\r\n\\xb1\\x80\\x61\\x31\\xc8\\xae\\x2c\\x9c\\xda\\xd1\\x00\\x2c\\x15\\x60\\xbd\\x62\\\r\n\\x94\\x04\\x53\\x1f\\xc3\\x6b\\xc0\\x81\\x38\\xe2\\xc0\\x5b\\x68\\xe4\\x77\\xd6\\\r\n\\xe0\\xb0\\xba\\xa2\\xa0\\x28\\xb8\\xa7\\x6b\\xec\\x4b\\x83\\x17\\x21\\x54\\x80\\\r\n\\x6a\\x9a\\xe4\\x1b\\xa3\\x4d\\x64\\x23\\xa4\\x47\\x0f\\xa2\\x28\\xb0\\x8d\\x0c\\\r\n\\x2b\\x47\\x45\\xb4\\xd1\\x4e\\x89\\x78\\x79\\x2e\\x3c\\xdd\\xbe\\xab\\xd3\\xee\\\r\n\\x8b\\xb0\\x26\\xdd\\x02\\xe1\\xfa\\x9e\\x53\\x25\\x00\\x84\\x88\\xa0\\xa3\\x86\\\r\n\\x83\\xaf\\xc4\\x12\\x42\\x00\\x96\\xe1\\xb5\\x0c\\xa6\\x17\\x24\\xf4\\x9c\\x56\\\r\n\\xa6\\xa0\\x2d\\x23\\x6d\\x20\\xd2\\x7e\\x60\\x6d\\xa9\\xc1\\xb8\\x05\\x2c\\xd1\\\r\n\\x40\\x2f\\xce\\xfb\\xc8\\x25\\x1a\\x55\\x0f\\xa8\\x40\\x14\\xa7\\xce\\x94\\x2d\\\r\n\\x21\\x02\\x09\\xf4\\x0c\\x84\\x7f\\x0a\\x4f\\x1b\\x4d\\xaa\\x08\\x11\\xfc\\x11\\\r\n\\x6a\\x89\\x04\\x79\\xbe\\x51\\xf8\\x32\\x0c\\x60\\x6a\\xe9\\x18\\x0d\\x1c\\xf2\\\r\n\\x5f\\x82\\x95\\x80\\x8e\\x0b\\x0d\\x80\\x90\\x53\\x3d\\xaa\\x16\\xe9\\x04\\x42\\\r\n\\x45\\xb9\\x91\\x28\\x03\\xc6\\x43\\x82\\x18\\x00\\x17\\x53\\xe8\\x93\\x1f\\x51\\\r\n\\x30\\x3d\\xa3\\x40\\x96\\x32\\xb4\\x98\\x13\\xd3\\x9a\\x48\\x11\\x97\\xd4\\x00\\\r\n\\x41\\x4c\\xd8\\x25\\x01\\xe8\\x11\\x21\\xb0\\x06\\x87\\x8b\\x0d\\x48\\x91\\x63\\\r\n\\x86\\x49\\x98\\x81\\xb1\\x0a\\x38\\x88\\xd0\\x90\\x40\\xb5\\x12\\x80\\x70\\x68\\\r\n\\x3e\\xb3\\xda\\x17\\x51\\x8b\\x90\\x59\\xa1\\x2a\\x04\\xdd\\x0c\\x00\\xdf\\x2c\\\r\n\\x29\\x01\\xd4\\x5c\\x89\\x44\\x1a\\x56\\xa9\\xe1\\x6e\\x6a\\x8a\\x11\\x18\\xe0\\\r\n\\x92\\xc8\\x28\\xa9\\xa7\\xaa\\x72\\x36\\xd4\\x14\\x45\\x1a\\x22\\x10\\x47\\xf3\\\r\n\\xd9\\xd2\\x40\\xf6\\x21\\x00\\x41\\x42\\x92\\x0e\\xb8\\xa6\\x6c\\x34\\x12\\x19\\\r\n\\x80\\xab\\xd1\\xa5\\x1a\\x6a\\x1e\\x64\\xc3\\x84\\x44\\x22\\x4b\\x06\\xf3\\x00\\\r\n\\x12\\x89\\xc6\\x02\\xf9\\x0a\\x86\\xa9\\xa8\\x22\\x29\\x11\\x3c\\x16\\x02\\xc6\\\r\n\\x02\\xe9\\x16\\x04\\x84\\x17\\xe8\\x56\\xee\\x58\\x38\\x71\\xac\\x64\\x80\\x07\\\r\n\\xb5\\x68\\x40\\xea\\x99\\x80\\x68\\x62\\x52\\xd0\\xf8\\x52\\x24\\x34\\xc5\\x08\\\r\n\\x2e\\x50\\x6c\\x66\\xc4\\x23\\x55\\xb5\\x12\\xa5\\x14\\x15\\x30\\x15\\x90\\x62\\\r\n\\x15\\x41\\x8e\\x05\\xc8\\x40\\x4a\\x6a\\x15\\x11\\xf5\\x10\\x4b\\xa4\\x27\\xd4\\\r\n\\x86\\x17\\x71\\xe8\\xd3\\x16\\xe1\\xa4\\x0b\\x44\\x45\\x6c\\x06\\x05\\xbe\\x3b\\\r\n\\x8a\\x9a\\x26\\xba\\x29\\xb6\\x4e\\x88\\x50\\xf0\\x05\\x4b\\x54\\x23\\x46\\x11\\\r\n\\xf3\\x25\\x00\\x54\\xea\\x2f\\x28\\x06\\xc1\\x45\\x99\\x83\\xa5\\xf0\\xb9\\x75\\\r\n\\x34\\x84\\xcb\\x24\\x15\\x80\\x5f\\x43\\xc2\\x83\\x56\\x66\\x96\\xc0\\x00\\x97\\\r\n\\x15\\xba\\x03\\xe0\\xd0\\x9d\\x91\\xc7\\x27\\xc4\\x88\\x1f\\xd3\\x0c\\x16\\xd0\\\r\n\\xfa\\x7f\\xf8\\xb9\\xff\\x00\\xaf\\xfb\\xe3\\x5a\\xb5\\x9f\\x11\\xb0\\xdb\\x44\\\r\n\\x23\\x58\\xb3\\xac\\x22\\x30\\xc5\\xff\\x00\\xb5\\x1d\\xaf\\x35\\xf3\\x8c\\x06\\\r\n\\x40\\x21\\x28\\x0e\\x00\\x03\\xd4\\xba\\x22\\x5b\\xc9\\x50\\x40\\x08\\x62\\xc0\\\r\n\\x0d\\xf5\\x7c\\x97\\x7a\\x44\\x7a\\x05\\xc6\\x0a\\x26\\x65\\x7c\\xe3\\x41\\xa1\\\r\n\\xad\\x0a\\xa2\\x7c\\xb3\\x27\\xfb\\xb9\\x3c\\xd8\\x05\\xda\\x22\\xd7\\x2a\\xbf\\\r\n\\xe8\\x45\\x5f\\xfe\\xbc\\xfd\\x52\\xd1\\x8a\\x7e\\xc4\\x35\\x2a\\x89\\xa0\\xf9\\\r\n\\x7c\\x5c\\x4b\\xf0\\x84\\x82\\x31\\x8a\\x9d\\x12\\xb9\\xa2\\x7a\\x05\\xa0\\x4d\\\r\n\\x03\\x77\\x26\\xb0\\x67\\x4b\\x36\\x29\\x0f\\xcc\\x5f\\xe1\\x05\\x70\\xdf\\x19\\\r\n\\x64\\x27\\x66\\x9a\\xa8\\x49\\x00\\x37\\x5b\\x3d\\xd8\\x91\\x90\\x11\\x4d\\x19\\\r\n\\xf4\\x55\\x05\\x49\\xb9\\xe6\\x78\\xc2\\x13\\x0a\\xa3\\x96\\xd6\\x86\\xfc\\x3a\\\r\n\\xad\\x67\\xeb\\x22\\xa2\\x81\\xf1\\xd0\\xb7\\xfe\\x7a\\xa8\\xcb\\x14\\x4d\\x54\\\r\n\\x68\\x89\\xdb\\xfd\\xc2\\xeb\\xe2\\x28\\x61\\x29\\x2d\\xd8\\x84\\x69\\x0a\\xcf\\\r\n\\xe8\\xa8\\x30\\xc2\\x27\\x98\\xf6\\xd4\\xd6\\x58\\x51\\x7a\\x79\\x72\\xdf\\x72\\\r\n\\x89\\x51\\x30\\x71\\x87\\x10\\xda\\xf4\\x14\\xd9\\x16\\xa5\\x4a\\xa2\\x34\\x24\\\r\n\\x83\\x08\\x98\\xfa\\x44\\x21\\x20\\x12\\x54\\x44\\x75\\x27\\x86\\xbe\\x5c\\xca\\\r\n\\xd4\\x18\\x3a\\x62\\x46\\x0a\\xb7\\x54\\xe1\\x71\\x8b\\x10\\x91\\x39\\x08\\xa0\\\r\n\\xa1\\xb4\\xbb\\x57\\x40\\x76\\x1b\\xb3\\x5d\\x9b\\xff\\x00\\x3f\\xd4\\x03\\x04\\\r\n\\x22\\x2a\\x76\\x82\\xe3\\xb8\\x4a\\x6f\\xad\\x70\\x9f\\x4a\\x62\\x22\\xf7\\x0d\\\r\n\\xe0\\xe9\\xa8\\x85\\x79\\x24\\xc8\\x9b\\x71\\x10\\x42\\x55\\x9e\\x50\\x2a\\x84\\\r\n\\x14\\xe9\\x15\\x46\\x3a\\x51\\x13\\x69\\x21\\xf8\\x1d\\x88\\x80\\xdc\\x8d\\x42\\\r\n\\x21\\xdd\\xf7\\xe5\\x0d\\xb0\\xd5\\x68\\xb6\\x46\\x0a\\x8b\\x86\\x81\\x54\\x02\\\r\n\\x43\\xa9\\x02\\x80\\x1c\\x46\\x97\\xc6\\x07\\xb9\\x41\\x60\\x21\\x80\\x64\\x2a\\\r\n\\x55\\x83\\xe8\\x95\\xad\\x1a\\x6e\\x20\\x5a\\x6b\\x50\\x5f\\xcc\\x7f\\x94\\x15\\\r\n\\xc3\\x74\\x51\\x20\\x28\\x0a\\x21\\xeb\\x34\\x77\\x72\\x1c\\x05\\x2a\\x89\\x86\\\r\n\\xff\\x00\\x27\\xb5\\xcf\\xa0\\xe9\\xe8\\x00\\x42\\x39\\xef\\x64\\xf3\\x19\\x93\\\r\n\\x00\\x09\\xad\\x74\\x68\\xc0\\x20\\x55\\x28\\x36\\x25\\x28\\x82\\x5d\\xc6\\x80\\\r\n\\x25\\x50\\x5c\\x63\\x6a\\xf9\\x42\\x05\\x5c\\xc4\\xcf\\x15\\x47\\x82\\x85\\xb0\\\r\n\\xf6\\xe2\\xb2\\x1c\\x02\\xa0\\x21\\x96\\xd3\\xe6\\x5e\\x56\\x98\\x0d\\x10\\xd7\\\r\n\\x11\\x6c\\x85\\x8f\\x3b\\xe2\\x01\\x21\\x27\\xc2\\x02\\x86\\xe0\\x40\\x05\\xfb\\\r\n\\x07\\x09\\x81\\xe9\\xb0\\x60\\x88\\x82\\x0a\\x6c\\x05\\x5b\\xf9\\x48\\x47\\x65\\\r\n\\x80\\x6a\\x8d\\x00\\xa6\\x6e\\x98\\xd8\\xb3\\x85\\x45\\x4d\\x85\\x01\\x6f\\x38\\\r\n\\x20\\xb5\\x64\\x88\\x58\\x89\\x08\\xd9\\xfe\\x08\\x20\\x7a\\x08\\x08\\xc0\\x5e\\\r\n\\x28\\x34\\xb2\\x8f\\x25\\x73\\x7e\\x58\\x3b\\xb2\\xad\\xe0\\xad\\x52\\x31\\x5a\\\r\n\\x1d\\x33\\xa3\\x43\\x02\\x08\\x00\\x51\\xdd\\x65\\x08\\x92\\x4a\\x50\\x00\\xe1\\\r\n\\x31\\x50\\x53\\x27\\x66\\x00\\x21\\x04\\x07\\xd0\\x62\\xcf\\x7e\\x0b\\x17\\xc6\\\r\n\\x7d\\x82\\x60\\x3f\\xa3\\x8a\\x6f\\x76\\x76\\xd9\\xe4\\x08\\xa8\\x02\\x42\\x7a\\\r\n\\x8c\\x46\\xf2\\x8b\\x69\\x43\\x02\\x8a\\x6d\\xe6\\xbc\\xce\\xb7\\xac\\x23\\x35\\\r\n\\x2c\\x89\\x9f\\x7b\\x66\\x6e\\x83\\x18\\x51\\x83\\x04\\x04\\x83\\x3a\\x66\\xe4\\\r\n\\x80\\x84\\x10\\xa2\\x88\\x14\\xd4\\x3c\\x58\\x3c\\xc5\\xf9\\x71\\x88\\x17\\x46\\\r\n\\x0b\\xc7\\xb7\\x1a\\x7a\\xb6\\x21\\x98\\xf0\\x7f\\x00\\x79\\x9a\\x44\\x82\\x41\\\r\n\\x68\\x25\\x50\\x22\\xeb\\xd5\\xdf\\x38\\xda\\x10\\x50\\x52\\x34\\x56\\xcb\\xa1\\\r\n\\xb0\\x04\\xa5\\xb9\\x03\\x11\\x69\\xb0\\x20\\xdc\\x0b\\xf8\\xf9\\x32\\x0e\\xcd\\\r\n\\x81\\x29\\xf4\\x45\\xd3\\xf3\\x2e\\xf9\\xaa\\x8b\\x6e\\xae\\x47\\xf9\\xfe\\xfa\\\r\n\\xf7\\x8c\\x8c\\xc7\\x5a\\x8a\\x2c\\x0a\\x58\\x31\\x9e\\xc1\\x9b\\x94\\x27\\x36\\\r\n\\x48\\x62\\x68\\x8b\\x73\\x4c\\x3e\\xcd\\x04\\x8d\\x01\\x31\\x0d\\x51\\xe5\\x2b\\\r\n\\x22\\x60\\x2e\\xe2\\x19\\x41\\x4b\\x44\\x67\\xeb\\x12\\xf3\\x14\\x33\\xf3\\x80\\\r\n\\xc4\\x20\\xeb\\x44\\x7b\\x6f\\x98\\x76\\xe2\\x93\\xfd\\x47\\x59\\xa1\\x4c\\xeb\\\r\n\\x2c\\x3a\\x13\\xaa\\xa8\\x81\\x20\\x49\\x10\\x08\\x14\\xf2\\x6a\\x29\\x6d\\x0e\\\r\n\\x6d\\x13\\x1a\\x77\\x88\\xf8\\xb3\\x80\\x84\\x18\\x47\\xe1\\x81\\xab\\x20\\x78\\\r\n\\xef\\x12\\xa0\\x20\\xf0\\x8c\\xa7\\x00\\x75\\x00\\x15\\xee\\x45\\x39\\x20\\x90\\\r\n\\x26\\xef\\x40\\x4d\\x6d\\xa2\\x85\\x01\\x41\\xf1\\x42\\xc4\\xc8\\x00\\xa0\\x1d\\\r\n\\x2b\\x12\\xa6\\xcc\\xf0\\xb6\\xa0\\x45\\x26\\xf0\\x61\\xe6\\xd0\\xa3\\x44\\x28\\\r\n\\xcf\\xa3\\x28\\x00\\x08\\xa8\\x9e\\x15\\x69\\x49\\x12\\xaa\\x75\\x3e\\x9c\\xf8\\\r\n\\x33\\xe8\\xfe\\x34\\x1f\\xe9\\x51\\x23\\x6d\\x5c\\xac\\xc8\\x10\\x03\\xc8\\x51\\\r\n\\xb8\\x9c\\x5b\\x7f\\x71\\xe8\\x3f\\xe3\\xff\\x00\\x5e\\x92\\x09\\x01\\xac\\x53\\\r\n\\x86\\xbf\\x33\\x43\\x12\\x84\\xe0\\xd3\\x74\\x88\\x09\\xd5\\x18\\x95\\x1d\\x17\\\r\n\\xbe\\x51\\x73\\xc4\\x29\\x31\\x19\\x00\\x9b\\xb0\\x53\\x47\\x9a\\x8b\\x35\\x56\\\r\n\\x4c\\x28\\x1f\\xd4\\x05\\x46\\x55\\x60\\x00\\x0c\\x16\\xa1\\x38\\xe7\\x9e\\x43\\\r\n\\x58\\xa8\\xc9\\x6b\\x02\\x02\\xe5\\x18\\xaa\\xf2\\x03\\x72\\x49\\x00\\x22\\x23\\\r\n\\x15\\xaa\\x82\\x41\\x69\\xe1\\x7a\\xa5\\x00\\x1e\\xf2\\x81\\x40\\xa3\\x0d\\xdc\\\r\n\\xf3\\x15\\x95\\xad\\x01\\x48\\xc1\\xa0\\x02\\xc7\\xca\\x28\\xa8\\x68\\x95\\x9b\\\r\n\\x80\\x80\\x91\\x46\\x90\\x49\\x26\\xfd\\x78\\x4c\\xa9\\x06\\xc6\\x5c\\xb8\\x92\\\r\n\\xf8\\xa3\\x4e\\x28\\x42\\x4b\\xd1\\x51\\x08\\xed\\x5b\\xe4\\x03\\x87\\x0a\\xea\\\r\n\\xf4\\x16\\x04\\xa5\\x52\\x1f\\x38\\x6d\\x6d\\x43\\x40\\xeb\\x6b\\xaf\\xd0\\x7d\\\r\n\\x4d\\x57\\x18\\x08\\xa9\\x14\\x41\\x05\\x68\\x2e\\xed\\x50\\x02\\x0c\\x52\\x96\\\r\n\\x6e\\x28\\xad\\x8f\\x1a\\x54\\x9d\\xaf\\x9d\\xac\\x04\\x0e\\x51\\x21\\x00\\x77\\\r\n\\xa7\\x6c\\x70\\xf3\\xba\\x82\\x8e\\x74\\x5f\\xa0\\xa4\\x0d\\x52\\x89\\xe0\\x92\\\r\n\\xac\\xd1\\x16\\x48\\x20\\x58\\x56\\x0f\\x0f\\x89\\xc8\\xe0\\xa7\\xdb\\xf4\\x40\\\r\n\\x3c\\x0d\\x2b\\xe2\\x8e\\x05\\x20\\x18\\x11\\x53\\x2c\\xc2\\x2c\\x80\\x3a\\xc2\\\r\n\\x35\\x3a\\x36\\xb5\\x4b\\xa2\\xc3\\x05\\xa7\\x90\\x13\\x1c\\x90\\xa4\\xfa\\x4c\\\r\n\\x0b\\x22\\x60\\x20\\xa4\\x0f\\x08\\x95\\x0e\\x4e\\x82\\x4a\\x0a\\x79\\xd1\\x1a\\\r\n\\x58\\x91\\x7a\\x50\\xf4\\x02\\x16\\x13\\xcf\\xe5\\xd1\\x35\\x58\\x30\\x4e\\x85\\\r\n\\xf3\\x7c\\x99\\x4f\\x4c\\x75\\x05\\x58\\x2c\\x34\\x50\\x80\\xca\\xa3\\x11\\x38\\\r\n\\x80\\x11\\x17\\x23\\x85\\x0f\\x44\\xae\\x39\\x61\\x8a\\x88\\x80\\x45\\x95\\x5a\\\r\n\\x27\\x90\\x59\\xe7\\x23\\xda\\x22\\x20\\x26\\x80\\x52\\x35\\xde\\xe8\\xd0\\x22\\\r\n\\x95\\x43\\x0a\\x18\\xa5\\x0f\\xa0\\x88\\xa8\\xb1\\x9d\\x16\\xb0\\x41\\x26\\x39\\\r\n\\x81\\x88\\x65\\x8b\\x2b\\x58\\xad\\x4b\\x62\\xef\\xee\\xfb\\x76\\x48\\x8c\\x00\\\r\n\\x46\\x04\\xb9\\x59\\x83\\xe5\\x08\\x6b\\x2c\\xe2\\x54\\x99\\xa4\\xd4\\x0f\\x82\\\r\n\\x69\\x88\\x43\\x9e\\xac\\x9f\\x7a\\x68\\xef\\x95\\x09\\x8f\\x44\\xc8\\x5b\\x40\\\r\n\\x29\\x56\\x83\\x3c\\x6f\\x55\\xf9\\x25\\x54\\x55\\x6a\\x88\\xa8\\x01\\x56\\x22\\\r\n\\x1b\\xb4\\x54\\x55\\x44\\x98\\xba\\x1c\\xcc\\xeb\\x23\\x1a\\xac\\xbc\\xb9\\x33\\\r\n\\x07\\xba\\xad\\x3c\\xca\\xcc\\x03\\xe9\\x00\\x01\\x9a\\x82\\x48\\xa9\\x28\\xa0\\\r\n\\x09\\x8a\\xc1\\xb1\\x75\\x0d\\xfe\\xfe\\xa5\\x30\\xf0\\xe8\\xb7\\x9a\\x40\\xf5\\\r\n\\x4c\\x40\\xe2\\x58\\xc5\\xd5\\x60\\x4a\\x13\\x01\\x20\\xc2\\x05\\x85\\x94\\x5a\\\r\n\\x87\\x01\\xe5\\xca\\xb4\\x16\\x17\\xf3\\xe9\\xea\\xaa\\x70\\xdf\\x3f\\x7a\\xc5\\\r\n\\xda\\x1d\\x62\\x8a\\x3d\\x8e\\x81\\xe6\\x88\\x82\\x42\\xd2\\x00\\x4a\\x86\\xba\\\r\n\\x1c\\x79\\xd7\\x17\\xb8\\xb2\\x68\\xb1\\x8e\\x10\\x74\\x23\\x17\\xd4\\x38\\x92\\\r\n\\x06\\x80\\x10\\x00\\x3a\\x04\\x08\\xe6\\x80\\xdb\\xdd\\x14\\x96\\x0e\\x8c\\x09\\\r\n\\x52\\x03\\xca\\xdb\\x55\\x14\\x49\\x2c\\x16\\xf2\\xa1\\x00\\x22\\x16\\x29\\x91\\\r\n\\x24\\xa3\\x29\\xb0\\xe2\\x02\\xac\\x75\\x2c\\x1e\\x26\\x3c\\x89\\x9b\\xec\\xcd\\\r\n\\x87\\xc4\\x89\\xe4\\x0d\\xc4\\x4a\\x2a\\x81\\x90\\x0a\\x0b\\xb5\\xfd\\xe0\\x0f\\\r\n\\x81\\xc5\\xb4\\x3d\\x8a\\xb3\\x4c\\xc0\\x0a\\xb2\\x14\\x21\\xa6\\xa0\\xad\\x32\\\r\n\\x5b\\x5c\\x1b\\x00\\xa2\\x47\\xe5\\x20\\x54\\xdf\\xb0\\x61\\x43\\x25\\x87\\x49\\\r\n\\x9b\\xbe\\x68\\x5b\\x7a\\x84\\xcb\\x29\\x42\\xc0\\x63\\xa9\\xd1\\x5c\\xbb\\x20\\\r\n\\x7e\\x09\\x04\\xd0\\xaa\\x25\\x21\\x3c\\xbd\\x41\\x60\\xa2\\x94\\x21\\x00\\xd4\\\r\n\\x96\\x94\\xc9\\x02\\xf7\\x3a\\x30\\x8d\\x35\\x80\\x52\\xd6\\x95\\x40\\xda\\xb0\\\r\n\\x19\\x33\\x09\\x40\\x5c\\x01\\x7d\\x32\\xc0\\xc0\\x03\\x90\\x00\\xb8\\x0a\\x73\\\r\n\\x81\\xbb\\xc1\\x1a\\x30\\x49\\x61\\x5d\\x89\\x82\\x58\\x52\\x41\\xc1\\xa2\\x26\\\r\n\\x21\\xd0\\x88\\x86\\x44\\x5f\\x01\\xd4\\x62\\xfe\\xcd\\x27\\x02\\xba\\xff\\x00\\\r\n\\x09\\xbd\\x5e\\xa3\\x08\\x0a\\x25\\x10\\x0e\\x90\\x87\\x81\\x52\\x82\\x1b\\x09\\\r\n\\xa2\\xe8\\x3a\\xb4\\x31\\x77\\x02\\xa8\\x21\\x84\\x88\\x03\\x68\\xbd\\x1c\\xc0\\\r\n\\x4d\\xbe\\x8a\\x01\\x4f\\x06\\x25\\x80\\x8a\\xfb\\xfe\\xba\\x79\\x25\\x46\\xa2\\\r\n\\x25\\x95\\x70\\x1d\\x28\\xdf\\x94\\xdf\\x16\\xa3\\x20\\x02\\xa2\\xe0\\xb6\\x01\\\r\n\\x21\\x5a\\xdf\\xa9\\x5e\\xc0\\x4e\\x6e\\xa9\\x0b\\xf7\\x3b\\xb7\\xcf\\xc8\\x34\\\r\n\\x1a\\xa2\\xde\\x3d\\x45\\x69\\x81\\x47\\x5d\\xe8\\x11\\x61\\xe9\\x01\\x73\\x15\\\r\n\\x51\\x31\\x1e\\x3a\\x2e\\x08\\x35\\x50\\x31\\xb6\\x09\\x69\\x0f\\x77\\x1b\\x88\\\r\n\\xc5\\xa1\\x01\\x29\\xa1\\x01\\x3f\\x04\\x08\\x90\\x0a\\x9a\\x89\\x1a\\x18\\x0d\\\r\n\\xa7\\x41\\x7c\\x90\\xf8\\xfa\\xb8\\xd9\\xa1\\xed\\x08\\xa4\\x50\\xf2\\x9c\\x24\\\r\n\\xa5\\xd8\\x5e\\x74\\x14\\x28\\x12\\x05\\xf0\\x7c\\xb8\\x25\\x2e\\x94\\x22\\x34\\\r\n\\xaa\\xab\\x30\\xb4\\x3e\\x09\\x90\\x34\\x21\\xda\\x34\\x32\\x85\\xfb\\xc6\\x2d\\\r\n\\xe4\\xa4\\x78\\x55\\x22\\x60\\xa8\\xe4\\xd4\\x8a\\x43\\x72\\x06\\x4e\\x06\\x68\\\r\n\\x0d\\x9d\\x8e\\xe0\\x80\\x8b\\x41\\x40\\xf5\\xa4\\x2a\\x83\\x91\\x05\\xa9\\xab\\\r\n\\x1a\\x50\\xc3\\x60\\x46\\x09\\xe3\\xc7\\x5c\\x21\\xb4\\xf8\\x08\\xe5\\xe5\\x16\\\r\n\\x85\\xc5\\x65\\x6d\\xb2\\xa1\\x1a\\x82\\xa4\\x05\\xe8\\xe6\\x53\\xf6\\xd4\\x80\\\r\n\\x9a\\xa6\\x02\\x61\\x42\\x00\\xc4\\x82\\xb0\\x61\\xd4\\xe4\\x75\\x7f\\xd7\\xc7\\\r\n\\x92\\x70\\x1c\\x34\\xa2\\x23\\x6c\\xb7\\x1f\\x55\\xa2\\x01\\xa3\\x00\\xc5\\x84\\\r\n\\xd4\\x68\\x07\\x3c\\xac\\xfb\\x9b\\x7d\\xc5\\x57\\x0b\\x5b\\x86\\x3c\\xfb\\xb4\\\r\n\\x6d\\xa3\\x00\\x90\\x9a\\x2e\\x14\\xc3\\xda\\xb7\\x20\\x31\\x90\\xff\\x00\\xc2\\\r\n\\x55\\x23\\xcb\\x7c\\xeb\\x91\\x04\\x46\\xb0\\xd5\\x0a\\xa0\\x11\\xea\\x2b\\xc4\\\r\n\\x64\\x18\\x80\\xaa\\x69\\x36\\x28\\xba\\x02\\xa8\\x10\\xcc\\x66\\xb9\\x45\\x28\\\r\n\\x22\\xe9\\xd0\\x93\\x7a\\xea\\x4c\\x1f\\x54\\x15\\x7a\\x71\\x0c\\x79\\x49\\x91\\\r\n\\x3c\\xd8\\xe3\\x1c\\x68\\xb0\\x06\\x94\\x42\\xef\\xd0\\xff\\x00\\xbe\\x24\\x08\\\r\n\\x48\\xd1\\x62\\x10\\x56\\xb4\\xd4\\x2a\\x7e\\x26\\x8d\\xc8\\x27\\x48\\x1a\\xd4\\\r\n\\xac\\x08\\x38\\xfe\\xd2\\x82\\x91\\xab\\xb3\\xc2\\xd0\\x37\\x9b\\x16\\x11\\x9e\\\r\n\\x0b\\xa5\\xb0\\x5c\\x40\\x86\\xd9\\x80\\x0c\\x2c\\xdf\\x2f\\x2f\\x93\\x42\\x98\\\r\n\\xe3\\x48\\xb7\\x88\\x86\\xd2\\x6d\\x43\\x51\\xb1\\x84\\xa0\\xa8\\x85\\x29\\x71\\\r\n\\xf4\\x80\\x11\\x12\\xc2\\x04\\x05\\xa2\\x15\\x13\\x15\\x57\\xc4\\x2a\\x84\\xb1\\\r\n\\x02\\xad\\x8a\\x46\\x81\\x2a\\xd7\\x8d\\x55\\xed\\x02\\xa7\\xd5\\x6a\\x56\\x1f\\\r\n\\x70\\x03\\x01\\x43\\x40\\x14\\x0a\\x0d\\x1e\\x55\\x02\\x6d\\x5f\\xe0\\x79\\xda\\\r\n\\x04\\xa2\\xb8\\xc1\\xaf\\xf5\\x4d\\xb8\\xba\\xdf\\x58\\xf4\\xa8\\x7b\\x74\\x86\\\r\n\\xa7\\x3e\\x7e\\xf3\\xd0\\x74\\x80\\x23\\x71\\xfa\\x0a\\xa4\\xac\\x69\\x65\\x49\\\r\n\\x98\\x38\\x02\\x23\\x9f\\x02\\x9f\\x7a\\x06\\x7c\\xf4\\xf4\\x7e\\xa4\\x65\\x4a\\\r\n\\x34\\xaa\\x81\\x0a\\x0e\\xb3\\x20\\x34\\x43\\x33\\xe2\\x00\\x40\\x06\\xa2\\x51\\\r\n\\x40\\xe8\\xa1\\x48\\x3f\\x03\\xa4\\xfe\\xd2\\x96\\x85\\xf7\\xcd\\x04\\x10\\x26\\\r\n\\x46\\x1c\\xd6\\xc1\\xc9\\xe5\\xc0\\xd1\\x15\\x6d\\xac\\x56\\x2f\\xb6\\x55\\x23\\\r\n\\x88\\x1e\\x2a\\x00\\x0b\\x0c\\x2a\\x02\\x99\\x4a\\xdf\\x3a\\xed\\x02\\xa6\\xc6\\\r\n\\x50\\x20\\x09\\x62\\x02\\x66\\x07\\x17\\x23\\xec\\x1a\\xd2\\x01\\x9a\\x94\\x13\\\r\n\\x02\\xa2\\x86\\x90\\xe9\\x45\\x37\\x47\\x41\\x9e\\x08\\xab\\x14\\xce\\x45\\x46\\\r\n\\x2a\\x4b\\x54\\x5b\\xc3\\x2a\\x33\\x1d\\x82\\xba\\x4d\\x20\\x2c\\xa2\\x86\\x23\\\r\n\\x42\\x8d\\x06\\x8f\\xeb\\xa2\\x08\\x16\\x45\\xc4\\x05\\x20\\xf9\\xe2\\x24\\x36\\\r\n\\xfd\\x16\\xc0\\x22\\x06\\x54\\x41\\xf3\\x2b\\x0e\\x94\\x88\\x26\\x90\\x4b\\xd1\\\r\n\\x3e\\x21\\xcf\\x10\\x43\\x48\\x08\\x96\\xe5\\x86\\x91\\x3f\\x4e\\x27\\x09\\xe9\\\r\n\\x23\\x32\\x80\\x84\\xe6\\x4c\\x03\\x21\\x3c\\x13\\xcf\\xa2\\x82\\x0a\\x14\\x4d\\\r\n\\x20\\x8e\\xf4\\x58\\x04\\x59\\x4b\\x0a\\xc0\\x93\\x51\\xf9\\x09\\x1e\\x19\\xe3\\\r\n\\xf3\\x33\\x81\\x9d\\x02\\x00\\x69\\x38\\xf2\\xb0\\x47\\xa2\\xbd\\xb6\\x40\\x7a\\\r\n\\x60\\xc5\\xcf\\x7a\\xc4\\xb0\\xb4\\x96\\xa9\\x2f\\xc2\\xe2\\x85\\x49\\xef\\x14\\\r\n\\xa4\\xbc\\x06\\x02\\x12\\x84\\x68\\x43\\x94\\x86\\xda\\x70\\x24\\x1a\\x41\\xc1\\\r\n\\x05\\x88\\x78\\xac\\x26\\x5a\\x12\\x88\\xb9\\x14\\x08\\x2c\\xab\\xdf\\xad\\x33\\\r\n\\x61\\x18\\xc2\\xf8\\x2a\\x50\\x82\\xc4\\x90\\xf8\\xec\\xec\\x74\\x23\\x7e\\x3b\\\r\n\\xd7\\x4c\\xc3\\x53\\xc6\\x3b\\x1b\\x46\\x30\\x07\\x46\\x58\\x4c\\x42\\x09\\x13\\\r\n\\xb8\\x8c\\xd4\\x7c\\xa4\\x01\\x22\\x26\\xb0\\x91\\x6b\\xd2\\x2d\\xdb\\xe0\\x42\\\r\n\\x01\\x44\\x35\\x61\\xad\\x04\\x61\\x24\\x79\\x0e\\x4d\\x0c\\xa1\\x49\\x01\\xe5\\\r\n\\x40\\x07\\x81\\x6e\\x98\\xe3\\x95\\x21\\x2b\\x29\\x07\\xca\\x99\\x60\\x3d\\x20\\\r\n\\xb5\\xe9\\x44\\x0d\\xa4\\x83\\xc5\\x93\\xeb\\xba\\x10\\x4a\\x2c\\x45\\x71\\x0a\\\r\n\\x80\\x53\\x8c\\x4b\\xe8\\x0b\\x63\\x79\\x45\\x07\\x92\\xcc\\xf6\\x14\\xf1\\x6c\\\r\n\\x0c\\xe3\\x47\\x44\\x02\\xa4\\x60\\x3a\\x07\\x14\\x45\\x41\\x9f\\x40\\x72\\x70\\\r\n\\x43\\xe2\\x44\\x8d\\x55\\x1a\\xc4\\x8e\\x92\\x27\\xcf\\x53\\xed\\xa0\\x35\\x6e\\\r\n\\xfe\\x6e\\xa0\\x02\\xc4\\x4f\\x00\\x4b\\x32\\x00\\x68\\x3d\\x75\\x65\\x2d\\x08\\\r\n\\xbc\\x17\\xc2\\x50\\x61\\xf3\\x2a\\xc3\\x10\\x47\\x0e\\x6c\\x7d\\x09\\xbf\\xc3\\\r\n\\x03\\x0a\\xc9\\x9a\\x0e\\xad\\xe7\\xdf\\x2d\\xc5\\x16\\xac\\x8a\\x04\\x00\\x82\\\r\n\\x28\\x4c\\xff\\x00\\x50\\x40\\x28\\xbf\\x87\\x78\\xc5\\x86\\x50\\x3a\\x2f\\x4f\\\r\n\\x3d\\x0b\\x02\\xbf\\x28\\xd7\\x0c\\x7a\\xc2\\xda\\xaa\\x78\\x56\\x60\\xac\\x64\\\r\n\\xfc\\x5f\\xfa\\x3b\\xbf\\x37\\xd2\\xff\\x00\\x9e\\x48\\x82\\x89\\x17\\x6b\\x17\\\r\n\\xc1\\x8f\\xa2\\xae\\x46\\x30\\x41\\xb3\\xc2\\x22\\x03\\xd1\\x85\\x8f\\x70\\x28\\\r\n\\x0a\\x84\\x44\\x0a\\x81\\x32\\x0e\\xf8\\xb3\\x12\\x42\\x15\\x2e\\xc6\\x31\\x40\\\r\n\\x6e\\xdf\\x3a\\x12\\x84\\xe0\\x06\\xc8\\x05\\xd5\\x56\\xb0\\x13\\xcf\\x5f\\x42\\\r\n\\x35\\x38\\xd8\\x1d\\x5a\\x7c\\xf9\\xfc\\xf0\\x13\\x86\\x13\\xaa\\x91\\xa3\\x5c\\\r\n\\xc7\\x7f\\x7f\\x0f\\x12\\x0a\\x84\\x94\\x14\\x2e\\x04\\x76\\x46\\x8f\\x42\\x04\\\r\n\\x82\\x6a\\x84\\x15\\x40\\x14\\x08\\x35\\xe3\\xf2\\xfa\\x94\\x48\\x43\\x84\\x61\\\r\n\\x30\\x92\\x81\\x66\\xab\\x18\\x18\\x26\\x00\\x0c\\xa0\\x65\\x21\\xae\\x2b\\x5a\\\r\n\\xfd\\x7b\\xe2\\x4c\\x9c\\x80\\x28\\x4c\\x40\\xc4\\x38\\xbd\\x58\\x39\\x31\\xe4\\\r\n\\x8e\\x12\\x4a\\x7a\\x37\\x97\\x7c\\x67\\x82\\x40\\x93\\x45\\x27\\x19\\x00\\x00\\\r\n\\xaf\\x22\\xa2\\xa8\\x51\\x15\\xa8\\x43\\x81\\x52\\x66\\x73\\x9e\\xaa\\x08\\x18\\\r\n\\x90\\x80\\x20\\xaf\\x84\\x10\\x77\\x06\\x9c\\x08\\xed\\x29\\x77\\x00\\x92\\x09\\\r\n\\x81\\xf3\\xa4\\x35\\x28\\x95\\xa0\\x9f\\x93\\xc5\\x54\\x83\\xf6\\x42\\x34\\xb4\\\r\n\\x57\\x7f\\xc6\\x81\\xe2\\x62\\xe8\\x5e\\x28\\x2e\\x17\\xe8\\x18\\xbc\\x30\\xf2\\\r\n\\xcc\\x22\\x12\\x8c\\x8a\\x13\\x0c\\x21\\xa8\\xb0\\x62\\xda\\x00\\x83\\x48\\x8e\\\r\n\\x42\\x56\\x0d\\x0a\\xe2\\x15\\xd4\\x63\\x21\\x42\\x90\\x20\\x00\\xdc\\xaf\\x81\\\r\n\\x21\\xe3\\xe0\\x25\\x05\\x82\\x68\\x18\\x1d\\xd4\\xe4\\xc1\\x01\\x41\\xaa\\x4b\\\r\n\\x82\\x18\\xa0\\x95\\x97\\x5b\\x5e\\x72\\x8b\\x0d\\x02\\x32\\xd8\\x93\\x32\\x38\\\r\n\\x3f\\x7c\\x02\\x02\\x08\\xa7\\x37\\x1a\\x34\\x90\\x11\\x2c\\xe7\\x7d\\x72\\xea\\\r\n\\x60\\x01\\xa0\\x52\\xc2\\x16\\x22\\xb2\\xbe\\x44\\xc3\\x6e\\x06\\xb2\\x1a\\xad\\\r\n\\xce\\x40\\x28\\x53\\xc9\\x85\\x08\\xa5\\x2c\\x84\\x0a\\x21\\x08\\x60\\xfa\\x38\\\r\n\\x75\\x01\\xb8\\x7b\\x32\\xc0\\x90\\x3f\\x01\\x3b\\xfa\\x21\\xb6\\x0b\\xec\\x10\\\r\n\\xe8\\xd6\\x36\\x21\\x20\\x18\\x02\\xe0\\x20\\x18\\x6f\\xc2\\xf8\\xeb\\x94\\x8e\\\r\n\\x08\\x57\\x47\\x46\\xc7\\xbd\\x0b\\xf6\\xe3\\x39\\xdc\\x84\\x10\\x12\\xb4\\xf0\\\r\n\\x88\\x39\\xaa\\x89\\x7d\\x2a\\x92\\x89\\x17\\x80\\xb0\\xfc\\x54\\x34\\x74\\x22\\\r\n\\xc2\\xba\\x28\\xed\\x14\\xbd\\xa1\\x41\\xb8\\x2e\\x74\\x11\\x7c\\x5c\\xb3\\x20\\\r\n\\x88\\x90\\x81\\x94\\x56\\x9f\\x83\\xbe\\x2d\\x59\\x17\\x10\\x94\\xad\\xc7\\x07\\\r\n\\x14\\x21\\xb7\\x2a\\xa6\\x0d\\x6c\\x0f\\xd3\\x3a\\xd0\\x6f\\x52\\xd1\\x9c\\x3b\\\r\n\\x88\\xa0\\x14\\x58\\x15\\xbd\\x6a\\x94\\x12\\xa6\\x29\\x98\\x80\\x05\\x1b\\x86\\\r\n\\x02\\xe0\\x04\\x00\\x41\\xc1\\x10\\x72\\x60\\xe1\\x9e\\x78\\x0a\\x38\\x6f\\x02\\\r\n\\x4d\\x90\\xa8\\x6b\\x06\\x9f\\x3c\\x9b\\xb3\\x94\\x26\\x7d\\x62\\xcb\\x2c\\x75\\\r\n\\x82\\x59\\xb8\\x6a\\x50\\xa9\\x47\\x21\\x75\\x0e\\x00\\x81\\x28\\x54\\x25\\x2a\\\r\n\\x1c\\xee\\x16\\xb3\\xef\\xb4\\xa0\\x97\\xf2\\x3f\\x51\\x52\\x89\\x57\\x23\\x47\\\r\n\\xc0\\xf5\\xc2\\xa7\\x4c\\xa7\\xe3\\xd0\\xc6\\x6a\\x24\\xf2\\xab\\x12\\x6d\\x22\\\r\n\\x39\\x30\\x5a\\x3d\\x04\\x36\\x42\\x8b\\x70\\x13\\x89\\x63\\x2c\\x6a\\x0a\\x1a\\\r\n\\x3a\\x30\\x4b\\x9e\\x80\\x72\\xd1\\xe0\\x5a\\x02\\x7c\\x35\\x77\\x6e\\x9f\\x00\\\r\n\\xa3\\x0c\\x00\\x0b\\xc4\\x00\\x5c\\x3a\\xae\\xee\\x18\\x33\\x00\\x80\\x0d\\x00\\\r\n\\x2f\\x41\\x55\\x7a\\x28\\xb5\\x3c\\x2e\\xaa\\x71\\x8a\\xfc\\x29\\x0f\\x95\\xff\\\r\n\\x00\\x27\\x7c\\x92\\x89\\x30\\x6a\\x14\\x09\\x0e\\x50\\x32\\xdc\\x7c\\x8d\\x00\\\r\n\\x41\\xad\\xb6\\xbe\\xa2\\x1d\\x52\\x81\\x19\\x40\\x48\\x48\\x02\\x85\\xa2\\xa2\\\r\n\\xd9\\xa0\\x3e\\x9d\\x54\\xa0\\xa9\\xce\\xbb\\xb0\\xc1\\x0f\\x8c\\x21\\xa3\\x60\\\r\n\\x0e\\x94\\x01\\x3a\\xa2\\x60\\x80\\x61\\x75\\x0c\\xf9\\x16\\x53\\x01\\x3e\\x10\\\r\n\\x1f\\x81\\xda\\x55\\x6c\\x42\\x0e\\xb8\\xd6\\x9c\\xc7\\xf3\\xe7\\xb5\\xc9\\x50\\\r\n\\xd7\\x1b\\x9c\\x7f\\x0e\\x2e\\xad\\x46\\xfb\\xe6\\x09\\x15\\x1e\\x10\\x50\\xd4\\\r\n\\xb5\\xcf\\x80\\x4d\\x7b\\x77\\x02\\xd0\\xb4\\x15\\x48\\xfe\\x02\\x00\\xdb\\x81\\\r\n\\xe2\\x80\\x52\\xe0\\xb2\\x91\\x60\\x08\\x01\\x2a\\x7d\\x0a\\xda\\x3d\\x90\\x4a\\\r\n\\xdb\\x34\\x67\\xf8\\xa7\\xd8\\xfd\\x73\\xd7\\x0b\\x64\\x46\\x34\\x41\\xad\\x29\\\r\n\\x9f\\x0d\\x44\\x4a\\x15\\x01\\xd3\\xf0\\x5f\\x24\\x45\\x65\\x7b\\xbe\\x13\\x24\\\r\n\\x40\\x21\\x02\\xc5\\x96\\xf6\\x2d\\x56\\x07\\x0c\\x42\\x14\\x0a\\x80\\x54\\x44\\\r\n\\x1a\\x0a\\x78\\x66\\xa1\\x4c\\xe4\\x55\\x04\\x26\\x28\\x54\\x09\\xe2\\x1a\\xe0\\\r\n\\x2c\\xd2\\xae\\xbd\\xd4\\x0d\\x3c\\x09\\xbd\\xa9\\x04\\x10\\x09\\x05\\x02\\x0c\\\r\n\\xaa\\xb2\\x9e\\x2c\\x45\\xc5\\x39\\x83\\xe1\\xc0\\x09\\x6d\\x49\\x45\\xe6\\x2c\\\r\n\\x49\\x41\\xc3\\xa4\\x89\\xa4\\x0d\\x43\\x52\\x55\\x31\\x24\\xc9\\x63\\x13\\x10\\\r\n\\xb5\\x48\\x5a\\xf8\\x1a\\x40\\x05\\x80\\x72\\xa2\\x14\\x9c\\x07\\x81\\x5e\\x4a\\\r\n\\x8f\\x94\\x08\\x03\\x76\\x32\\x40\\x2a\\x91\\xac\\xf5\\x09\\xc1\\xc2\\x50\\x1c\\\r\n\\x43\\xd2\\x22\\x04\\xcb\\x9e\\xc0\\x1d\\x9e\\x22\\x8f\\xe0\\x98\\x22\\x91\\x86\\\r\n\\x7a\\x91\\x22\\x2a\\xea\\xb4\\x2b\\x13\\x72\\x38\\x8a\\x7b\\x2e\\x26\\x5a\\x15\\\r\n\\x52\\x04\\x12\\x03\\x15\\x72\\x5d\\x3b\\xe6\\xac\\x35\\x29\\xa1\\x68\\xc8\\x8a\\\r\n\\x22\\x2a\\x2f\\x61\\xdb\\x92\\x04\\x32\\x82\\x80\\x30\\x00\\xaa\\x24\\xa8\\x04\\\r\n\\x5a\\x0e\\x85\\x81\\x05\\x89\\x41\\x47\\x9e\\x8f\\xf0\\xaa\\x7c\\x12\\x07\\x20\\\r\n\\x9e\\x6f\\xe5\\xdd\\x21\\x0e\\x40\\x31\\x5c\\x25\\x60\\x3e\\xb9\\xea\\x59\\xcc\\\r\n\\x03\\x51\\x5f\\x26\\xd9\\x9d\\x44\\x94\\x81\\xf5\\x51\\xb8\\x39\\x51\\x15\\xc0\\\r\n\\x37\\x02\\x19\\x47\\x62\\xa3\\x07\\x5c\\x0d\\x09\\x7c\\x42\\x25\\xc5\\x52\\x88\\\r\n\\xd7\\xa2\\xf0\\x03\\x50\\xe2\\x08\\xc2\\xed\\x5f\\xe8\\x08\\x01\\x68\\x6c\\x93\\\r\n\\xd0\\xb8\\xd3\\x22\\x05\\x28\\xa9\\x42\\x34\\xb8\\x4d\\x6c\\x80\\xa6\\x55\\x07\\\r\n\\x67\\xc4\\x85\\xc1\\x09\\x84\\x51\\xc0\\xca\\xc2\\x02\\x8f\\x3a\\x75\\x44\\xc4\\\r\n\\xe2\\x52\\xbc\\x02\\x2d\\x05\\xf2\\xb9\\x7c\\x68\\x45\\xa0\\xde\\x89\\xd4\\x9c\\\r\n\\xf1\\x20\\xe4\\x99\\x84\\x2c\\xa8\\xfd\\xa1\\x01\\xe7\\xc8\\x6d\\x76\\x2d\\x83\\\r\n\\x81\\x69\\xdf\\x60\\x3e\\x34\\x18\\x94\\xc0\\x8a\\x02\\x80\\x00\\x64\\x1f\\x62\\\r\n\\x38\\x6a\\xd0\\x50\\x42\\x8b\\xf1\\xe3\\x4d\\xb1\\xa4\\xd5\\xb8\\x91\\xa0\\xa4\\\r\n\\x58\\x61\\x0e\\x44\\xca\\x0b\\x82\\x01\\x48\\x38\\xe5\\xdf\\xd2\\xaf\\xd7\\xd5\\\r\n\\x84\\x09\\xc9\\xb8\\x64\\xf9\\x0b\\xa7\\x13\\x29\\xe0\\x89\\x18\\x2c\\x18\\x40\\\r\n\\x18\\x30\\xa1\\x27\\xc5\\x63\\xe3\\x60\\x91\\x64\\x09\\x28\\x3c\\x2b\\xb1\\xc1\\\r\n\\x35\\xee\\xc4\\x4d\\x02\\xb8\\xae\\x2a\\x46\\xce\\xac\\xef\\x97\\x04\\x8b\\x02\\\r\n\\x5a\\x55\\x08\\x44\\xea\\xa1\\xc8\\x78\\x77\\x42\\x1c\\x69\\x50\\xb5\\xda\\x51\\\r\n\\xec\\x21\\xb7\\xc2\\x85\\x00\\xa0\\x62\\xc2\\x8b\\xf5\\xfd\\x66\\xf7\\xcd\\x41\\\r\n\\x10\\xc8\\xed\\x92\\x26\\xd7\\x19\\xca\\xbf\\x22\\xa0\\x0d\\xf8\\x0a\\xd4\\xb5\\\r\n\\x36\\x9b\\x7e\\xf7\\xc7\\x1b\\x2f\\x5a\\xea\\x38\\xa0\\x54\\x42\\x52\\x24\\xb5\\\r\n\\x5f\\x31\\x82\\x50\\x19\\x10\\x12\\x96\\x04\\xcf\\x34\\x5a\\x46\\x8a\\x88\\x10\\\r\n\\x11\\xa2\\xa6\\x70\\x30\\xcf\\x08\\x5a\\x92\\x20\\x95\\x0a\\xa2\\x4a\\x9f\\x24\\\r\n\\x0b\\x38\\xba\\x86\\x08\\x82\\xab\\x10\\x2a\\xa7\\xc3\\xca\\x80\\xc1\\xe5\\x0a\\\r\n\\x02\\xfe\\x54\\xc5\\xe8\\xca\\x9e\\x6c\\x51\\x8a\\x03\\x19\\x88\\x0b\\x8b\\x08\\\r\n\\xcf\\x8f\\x50\\x52\\xb1\\xa2\\x9c\\x32\\x2e\\x4b\\x3f\\xe5\\xf3\\xd2\\x12\\x91\\\r\n\\x46\\x77\\x2a\\xa6\\x00\\xc6\\x27\\xd7\\xdf\\x62\\x20\\x29\\x71\\x26\\xad\\x61\\\r\n\\x2c\\x63\\xa3\\x82\\x6c\\x4a\\x04\\x85\\x17\\x44\\x19\\x42\\x99\\x44\\xe7\\x8d\\\r\n\\xe3\\x06\\x02\\x40\\xc4\\x18\\x15\\x20\\xa2\\xb5\\xc4\\xf3\\xe7\\x73\\x06\\x03\\\r\n\\xf0\\xc1\\xa0\\x87\\x60\\x01\\xe2\\xcd\\x86\\x28\\x4a\\x80\\x29\\x8c\\xc0\\x87\\\r\n\\x87\\x5b\\x36\\xa8\\x81\\x42\\xd6\\xae\\x43\\x70\\x18\\x78\\x90\\x91\\x64\\x14\\\r\n\\x04\\x51\\x2d\\x4a\\xfd\\x05\\x5c\\x8b\\x30\\xe5\\xe9\\xa8\\x49\\x28\\x91\\x2d\\\r\n\\xdc\\x22\\x45\\x95\\x22\\xc3\\x69\\x35\\x80\\x0d\\x64\\xe7\\x5b\\xa0\\x45\\x32\\\r\n\\x88\\x44\\x54\\x15\\x4e\\x04\\x35\\x85\\x84\\x42\\x01\\x57\\xe8\\x50\\x6f\\x0f\\\r\n\\x1c\\xa3\\x38\\x24\\x2b\\x45\\xa1\\x00\\xbb\\x53\\xbf\\x12\\x80\\xf4\\x95\\xc4\\\r\n\\x9a\\x5a\\xe0\\x19\\xc0\\x2a\\x79\\x00\\x2a\\x50\\x08\\x2c\\x94\\x54\\xc2\\x11\\\r\n\\x7f\\x84\\x75\\xc4\\xd4\\x22\\x8a\\x08\\x5c\\x31\\xb1\\x58\\x7a\\xbd\\x34\\xcb\\\r\n\\x10\\x0a\\x51\\x0a\\x5f\\x11\\x11\\x51\\xbe\\xad\\x80\\xe8\\x4d\\xba\\x02\\xc0\\\r\n\\x09\\x84\\xfd\\x83\\x18\\x18\\x66\\xc0\\xb6\\x0a\\x53\\x83\\xa2\\x11\\xd2\\x94\\\r\n\\xf6\\x4b\\x3a\\x40\\xf8\\x0a\\x21\\xe8\\xe8\\xf4\\xc5\\x80\\x28\\x90\\x1d\\x81\\\r\n\\x0a\\x6a\\xfb\\x7f\\x8d\\x29\\x69\\x23\\x06\\xbe\\x27\\x43\\x47\\x32\\x54\\xb1\\\r\n\\x3b\\x76\\x16\\x49\\xda\\xa3\\xdb\\x26\\x20\\x94\\x85\\x62\\xc1\\x23\\x40\\x14\\\r\n\\x47\\xa0\\xa4\\xea\\x4c\\x85\\x02\\x41\\x01\\xa7\\x26\\xe0\\x32\\xb8\\xcc\\x60\\\r\n\\x32\\x0b\\x40\\x8c\\x7a\\x90\\xee\\x38\\xe8\\xac\\xe3\\x37\\x8f\\x4d\\x6a\\xcf\\\r\n\\x84\\xa4\\x00\\xca\\xe4\\x4d\\xaa\\xc1\\x45\\xf0\\xa0\\xa0\\x66\\xe3\\x02\\x44\\\r\n\\x7a\\xa8\\x00\\xd4\\x2f\\x23\\xa1\\xb2\\x35\\x02\\x3d\\x94\\x50\\x42\\x22\\x4a\\\r\n\\x80\\x46\\xd3\\x65\\x20\\x03\\x08\\xaa\\x82\\xa8\\xa7\\x50\\x88\\x56\\xfc\\xca\\\r\n\\x22\\x8e\\x08\\xba\\x03\\x93\\x63\\x04\\x85\\x0a\\x46\\x78\\xe3\\x6f\\x0a\\x02\\\r\n\\xc9\\x02\\xe1\\x7d\\x35\\x42\\x3a\\xbc\\x22\\x48\\xd0\\x13\\x10\\x15\\x4b\\x01\\\r\n\\x61\\xba\\xb5\\xb6\\xc2\\x29\\xa4\\x0e\\x21\\x08\\x29\\x40\\xbf\\x47\\xff\\x00\\\r\n\\x04\\x4a\\x0f\\x24\\x42\\xac\\x81\\x11\\xa0\\x54\\x36\\x47\\x47\\x55\\xf8\\x4d\\\r\n\\x78\\x4c\\x90\\x83\\x36\\x1a\\xb8\\xfe\\x65\\xcb\\xeb\\x4a\\x09\\x08\\x3f\\xde\\\r\n\\x12\\x3d\\x3e\\x09\\x69\\xc1\\xf2\\xc2\\x4f\\x02\\xa2\\x4b\\xab\\x20\\x6f\\x7f\\\r\n\\xec\\xf0\\x02\\xa4\\xd5\\xa5\\x46\\x12\\x23\\x3f\\x13\\xff\\x00\\x1d\\x24\\xaa\\\r\n\\x6f\\x4b\\x99\\x1f\\x02\\x8e\\x03\\x4e\\xc8\\x28\\x82\\x84\\x02\\x08\\xb0\\x07\\\r\n\\x0b\\xb6\\x8d\\xcb\\x42\\x79\\xa5\\x51\\xa0\\x0f\\x96\\xa6\\xee\\xd7\\xfb\\xf3\\\r\n\\xe6\\x06\\x18\\x05\\xa5\\x73\\x76\\x51\\x38\\x05\\x6c\\xf1\\x10\\xfa\\xa6\\x22\\\r\n\\x21\\x42\\x62\\x21\\x79\\x3f\\x2d\\xf0\\x35\\x62\\xaa\\x45\\xb4\\xe3\\x46\\xdc\\\r\n\\xf8\\xd1\\x22\\x1b\\x58\\xcc\\x6e\\x8d\\xa8\\x45\\x12\\x16\\x12\\x7e\\x78\\xb5\\\r\n\\x2c\\xd9\\xa8\\x8d\\x02\\x13\\xbf\\x7f\\x35\\xfb\\xe1\\xe2\\x44\\x3b\\x54\\x82\\\r\n\\xed\\x42\\x0e\\xa3\\xd7\\x0f\\x51\\x89\\x70\\x14\\xb9\\x90\\x10\\x0a\\xd0\\xb4\\\r\n\\x3f\\x41\\x28\\x14\\x46\\xb8\\xfd\\x48\\x72\\xa3\\x0d\\xb8\\x7e\\x02\\x4a\\x13\\\r\n\\xab\\x01\\x10\\xa8\\x1e\\x12\\xdc\\x18\\xad\\xd8\\x53\\x4a\\x69\\xc8\\xa1\\xd0\\\r\n\\x0b\\xda\\x3c\\xb7\\x62\\x80\\x84\\x8b\\x19\\x48\\x80\\x16\\x30\\x25\\x54\\x4e\\\r\n\\x54\\x21\\x30\\x60\\x41\\x01\\xd0\\xd6\\xf8\\x1b\\x48\\x98\\x71\\x8a\\xca\\x03\\\r\n\\x02\\x40\\x8a\\x35\\xed\\xfd\\xbd\\x1a\\x16\\xe0\\x51\\x3e\\xa4\\xe3\\x3a\\xe2\\\r\n\\xd0\\x0c\\x30\\xe9\\xa1\\x66\\xee\\xf0\\xf1\\xac\\x26\\x68\\x1a\\x84\\x40\\xa0\\\r\n\\x42\\x25\\x9e\\x51\\x41\\x42\\xab\\xa0\\x29\\x79\\x8f\\xa2\\x10\\x78\\x4c\\xc4\\\r\n\\xf9\\x81\\x8c\\x51\\x1b\\x45\\x0f\\x00\\x7a\\xb7\\x15\\xdc\\x9c\\x60\\x82\\x1f\\\r\n\\xad\\x46\\xa6\\xcb\\x10\\x20\\x39\\x20\\x04\\xa3\\xe0\\x31\\x69\\xea\\x45\\x63\\\r\n\\x5b\\xa5\\x84\\xaa\\xda\\x44\\x4d\\x8f\\xac\\xf9\\x95\\x17\\x78\\x08\\xd3\\x37\\\r\n\\x6a\\x9d\\x4f\\x80\\xa3\\x51\\xc5\\x12\\x88\\xba\\x8d\\x58\\xda\\x08\\x92\\x30\\\r\n\\x37\\xd2\\x01\\x41\\x41\\x6a\\xd2\\x1b\\x2a\\x3b\\x48\\x11\\xa8\\x0e\\x08\\x45\\\r\n\\x92\\x58\\x74\\x48\\x82\\x04\\x9b\\x43\\x11\\x88\\x48\\x8a\\x42\\xa2\\xb1\\xfb\\\r\n\\x02\\x48\\xdd\\x3d\\x62\\x08\\x29\\x69\\xb1\\xb0\\x4a\\xf1\\x1b\\x1b\\x70\\x80\\\r\n\\x98\\x23\\x81\\x43\\x4a\\x19\\xa8\\x0c\\x29\\xa5\\xc5\\x22\\xa4\\x28\\x34\\x11\\\r\n\\xaf\\x87\\x26\\x19\\xc1\\x50\\x38\\x58\\xbf\\xaf\\x3c\\xaa\\x92\\x0c\\x03\\x40\\\r\n\\xb9\\xf4\\x48\\x58\\x6a\\x2d\\x2a\\x84\\x82\\x4e\\x66\\xb0\\xb2\\x59\\x16\\x82\\\r\n\\x46\\x92\\x42\\x34\\x23\\xf4\\x05\\x61\\xd1\\xab\\x61\\x80\\xc6\\x2b\\xc3\\x10\\\r\n\\x8b\\xe9\\xb1\\xf0\\xa8\\x38\\x05\\xd4\\xa4\\x42\\x29\\x22\\xb9\\x69\\xa0\\xaf\\\r\n\\x9a\\x43\\xde\\x28\\x54\\x90\\x8f\\xc1\\x69\\xfe\\x85\\x7c\\x63\\x31\\x10\\x2d\\\r\n\\x70\\x63\\x0a\\x20\\x11\\xf3\\xfb\\x5e\\x81\\xec\\xc0\\x9c\\x5a\\x08\\x04\\xf2\\\r\n\\x45\\x20\\xa8\\x42\\xbb\\x11\\x0c\\x62\\x61\\xa7\\x9a\\x93\\x1c\\x05\\x48\\xb2\\\r\n\\xda\\xc3\\xc1\\x14\\xfa\\x34\\xed\\x99\\x8b\\xa9\\x08\\xc3\\x00\\x46\\x87\\xad\\\r\n\\xb2\\xda\\xe8\\xb1\\x88\\x9b\\x17\\x72\\x00\\x3c\\xd1\\xb4\\x0c\\x54\\xe5\\x87\\\r\n\\xa0\\xc0\\x38\\xcf\\x57\\x68\\x66\\x96\\x38\\x28\\x80\\x9c\\x24\\xc8\\x09\\x37\\\r\n\\x5b\\x35\\x55\\x58\\x47\\x16\\xc7\\xfe\\x3c\\x15\\xe8\\x10\\xe5\\x23\\x4f\\x45\\\r\n\\x4b\\x8b\\xbc\\xf2\\xa1\\x40\\x1e\\xd7\\x01\\x68\\xe2\\x98\\xec\\x96\\x33\\xdb\\\r\n\\x25\\xfe\\x07\\xa7\\x82\\x05\\xec\\x00\\x2c\\x0f\\x11\\x1c\\x67\\x20\\x04\\x94\\\r\n\\x0e\\x00\\x78\\x36\\x18\\xe1\\xab\\x24\\x49\\x64\\x50\\x78\\xfc\\x32\\x8f\\x8b\\\r\n\\x82\\x80\\xab\\x62\\x8a\\x1f\\x6d\\x9f\\xe1\\x8f\\xf3\\xd9\\x47\\xdd\\x82\\x28\\\r\n\\x52\\xc5\\xfd\\x0b\\x93\\x13\\x3e\\x0f\\xe9\\xc2\\xb5\\x6c\\x05\\x54\\xba\\x84\\\r\n\\x69\\x14\\xf0\\x1d\\x91\\xe5\\x38\\x92\\x8f\\x41\\xb5\\x55\\xc3\\xc8\\x30\\x34\\\r\n\\x12\\x8a\\x9a\\x52\\x11\\x05\\x55\\xd1\\x25\\xd1\\x48\\x85\\x59\\x04\\x3f\\x3a\\\r\n\\xf3\\x4d\\x3f\\xc7\\x40\\x18\\x60\\x4b\\x12\\x80\\xd3\\x68\\xbf\\x64\\x06\\xaa\\\r\n\\x00\\xb4\\x04\\x7f\\x87\\xdf\\xda\\x6f\\xec\\x69\\xe3\\xc9\\x99\\xa2\\x44\\xab\\\r\n\\x5a\\x0a\\x9a\\x08\\x54\\x50\\x47\\x1a\\xfc\\x96\\xa8\\x0d\\xaf\\xb0\\x4d\\x28\\\r\n\\xb4\\x73\\x86\\x34\\x70\\xc5\\x50\\x90\\xb2\\x26\\x74\\xa7\\x6d\\x1d\\x20\\x89\\\r\n\\x8b\\x69\\x7e\\xa0\\xaa\\x2f\\x70\\x67\\xc4\\xe1\\x14\\x56\\x9a\\x0d\\xf8\\xda\\\r\n\\xfd\\x1e\\x49\\x5a\\x6b\\x90\\x1a\\xa8\\xd5\\xaa\\xaf\\xd5\\x0d\\xdf\\x25\\x52\\\r\n\\x68\\x93\\x8f\\x70\\x8b\\x46\\x14\\x18\\xa6\\x3e\\x62\\x8a\\x82\\x0e\\x35\\x02\\\r\n\\x12\\x60\\x32\\xb3\\xc5\\x29\\xf8\\xd4\\x70\\x8a\\x04\\xea\\x4c\\x0d\\x3e\\xa8\\\r\n\\x18\\xfc\\xc1\\xa0\\xc4\\xa0\\x7c\\x90\\x94\\x51\\xf4\\x08\\x95\\x45\\x3b\\x01\\\r\n\\x8a\\xb6\\xca\\x70\\x8c\\x3a\\x27\\x89\\x6b\\x83\\x29\\x52\\x5b\\x97\\x9e\\x96\\\r\n\\x58\\x08\\x70\\x96\\x8c\\x23\\x6e\\x0a\\x69\\x46\\x7a\\x64\\x75\\x20\\xcd\\xa2\\\r\n\\x29\\xac\\x0e\\xe6\\xdf\\xc7\\x7a\\xe8\\x11\\x20\\x99\\x61\\xfe\\x2f\\xa0\\x8b\\\r\n\\x66\\x10\\xb1\\x2a\\x4a\\xaa\\xfc\\x43\\x90\\xa5\\xe8\\x56\\xd6\\x94\\x56\\x31\\\r\n\\x09\\x21\\x4a\\x0a\\x2a\\x2b\\xe1\\xf7\\xc0\\xd9\\x42\\x60\\x88\\xa5\\xa5\\x0c\\\r\n\\x5c\\x16\\xa9\\x55\\x27\\x9d\\x6b\\x48\\x26\\x85\\x02\\xe0\\x41\\x7e\\x08\\xbc\\\r\n\\x36\\x70\\x4c\\x28\\x0a\\x2a\\x41\\x47\\x65\\xb1\\x6f\\x1e\\x40\\xc1\\x0b\\xb6\\\r\n\\x87\\x62\\x38\\x24\\xcd\\x71\\xa7\\x0a\\x52\\xa4\\x03\\xfd\\x57\\xd0\\xa3\\xa9\\\r\n\\x00\\xea\\xca\\xa4\\x8a\\x2f\\xd6\\xcf\\x74\\x56\\x0e\\x56\\x06\\xd4\\x2e\\x9c\\\r\n\\x11\\xa4\\x0a\\xa0\\x91\\x92\\x0e\\x8e\\x0a\\x62\\x05\\x9b\\xa0\\x51\\x87\\x56\\\r\n\\x2d\\x80\\x9b\\x16\\x02\\x81\\xf0\\x8a\\x80\\xd4\\x05\\x0a\\x80\\x8b\\xa6\\x95\\\r\n\\xfa\\x1a\\x99\\x0b\\x5b\\xb4\\x17\\x07\\x26\\x15\\x05\\x74\\x28\\x57\\x4f\\x34\\\r\n\\x42\\x4c\\xaa\\x46\\x60\\x89\\x5f\\xfe\\x02\\x9b\\x8a\\xa3\\xc2\\x14\\x70\\x58\\\r\n\\x7f\\xf0\\x14\\xd4\\x6b\\xae\\xd5\\x32\\xd8\\x5d\\x8d\\xfc\\x05\\xb2\\x61\\x87\\\r\n\\x00\\x68\\x23\\x88\\x29\\xd0\\xaa\\x8e\\x7b\\xad\\x01\\x58\\x60\\x40\\x34\\xea\\\r\n\\x5a\\xbc\\x07\\x5e\\x18\\x24\\xc3\\x98\\x14\\x4a\\x08\\xd0\\x4c\\x1d\\x1b\\x53\\\r\n\\x3c\\xc7\\x00\\x3b\\x01\\x00\\x00\\x7c\\x1b\\xe0\\x17\\x91\\x8a\\x04\\x27\\x15\\\r\n\\xa0\\x4a\\x0c\\x8b\\x44\\xce\\xa7\\x4c\\x41\\x9f\\xd1\\x81\\x54\\xb1\\xfb\\xe1\\\r\n\\x30\\xa0\\x20\\x22\\x74\\x2c\\x4d\\xaa\\x6a\\x23\\x4f\\x3e\\x34\\x47\\x09\\x69\\\r\n\\x74\\xb2\\xc7\\x03\\x84\\xb6\\xdd\\x1e\\x17\\xe8\\xb0\\x50\\xe2\\xd4\\x8e\\xd0\\\r\n\\x29\\xb5\\x00\\x4d\\x97\\x65\\x2c\\x2a\\x15\\x4b\\xc1\\x34\\xed\\x21\\x66\\x8d\\\r\n\\x3c\\x88\\x22\\x2d\\x95\\x57\\xd3\\x21\\x2a\\xc8\\x58\\x58\\x9e\\x5b\\xd1\\xdc\\\r\n\\xd6\\x68\\x3a\\x08\\x09\\x50\\x33\\x7d\\x93\\x5d\\x06\\x60\\x44\\x06\\x80\\xeb\\\r\n\\x83\\x0a\\x05\\x44\\x60\\xe1\\x09\\x68\\xe0\\xc4\\xa5\\x1c\\xf8\\x78\\x41\\x0e\\\r\n\\xbe\\x7e\\xbf\\x91\\xff\\x00\\x99\\xed\\xce\\x66\\x49\\xaa\\x9c\\x25\\xec\\x70\\\r\n\\x6b\\x93\\x1a\\x33\\x30\\xbf\\x07\\x15\\x25\\xc3\\xa0\\x8c\\x02\\x0c\\x6f\\x5f\\\r\n\\x5f\\x00\\x32\\x12\\xdc\\xc7\\xbf\\x5f\\x58\\x3c\\x2b\\x01\\x56\\x03\\x74\\x60\\\r\n\\xbb\\x13\\x2f\\xb0\\xc3\\x09\\x61\\x35\\xe0\\x52\\x52\\x62\\xb3\\xf8\\x19\\x2d\\\r\n\\x3e\\x34\\x4a\\x37\\x0d\\x44\\xe1\\x7f\\xf1\\x9a\\x0a\\xd2\\x08\\xe4\\x05\\x26\\\r\n\\x9e\\x45\\xa0\\xbe\\x90\\x06\\x27\\x62\\x95\\xea\\x6f\\x43\\xb7\\x83\\xbb\\x44\\\r\n\\x9e\\x56\\x2d\\x5c\\x31\\x6b\\x8a\\x93\\x54\\xfc\\x3c\\x9c\\x89\\x81\\x89\\x1c\\\r\n\\xd3\\x84\\x5d\\xe4\\xa3\\x63\\xe4\\x81\\xc9\\x1a\\x8c\\x14\\x05\\x9d\\x22\\x18\\\r\n\\x63\\x93\\x81\\xcd\\x9b\\x05\\x39\\x7c\\x01\\xc1\\x54\\x81\\x11\\xf8\\xb2\\x20\\\r\n\\x90\\xb4\\x43\\x40\\xe4\\xc7\\xae\\x6f\\x28\\x61\\x18\\x11\\x1a\\xc6\\x47\\xa1\\\r\n\\xe7\\x9e\\xb3\\xb1\\x90\\x71\\xd5\\xac\\x02\\x87\\xa0\\x7b\\x3d\\xc3\\xd2\\x34\\\r\n\\x8a\\x31\\x18\\xa7\\xa3\\xee\\x4f\\x58\\x08\\x2b\\x05\\x44\\xc6\\xc9\\x9e\\x7b\\\r\n\\x60\\xca\\xc4\\x40\\x2a\\x17\\x53\\x5e\\xf8\\x81\\x14\\xea\\x8d\\x09\\x92\\x12\\\r\n\\x0c\\x20\\xfd\\xcf\\x3c\\x84\\x80\\x6c\\x00\\xb8\\xaa\\x2b\\xa5\\x2e\\xe7\\x80\\\r\n\\x6e\\x0b\\x41\\xf6\\x90\\x14\\xbb\\x40\\xd7\\xb2\\x6c\\x3c\\xcc\\x84\\x64\\xa1\\\r\n\\x4b\\xf7\\xab\\x50\\x99\\x76\\xdf\\x7e\\x36\\x54\\x93\\x0a\\x80\\x8a\\xab\\x26\\\r\n\\x21\\x4a\\xf2\\x78\\x1c\\x4b\\x41\\x13\\xa8\\x6c\\x94\\xfc\\xff\\x00\\x7c\\x20\\\r\n\\x10\\xe0\\xb7\\x78\\xe5\\xce\\x50\\x97\\x29\\xed\\xf8\\x47\\x50\\x30\\x51\\x14\\\r\n\\xb2\\x80\\x62\\x2c\\xa0\\x41\\x29\\x09\\xa5\\x03\\x97\\x50\\x38\\xe6\\x21\\xf0\\\r\n\\x7c\\xb0\\x21\\x97\\x57\\x80\\x94\\xf0\\x20\\x13\\x32\\x78\\x58\\x06\\x22\\xc2\\\r\n\\x7d\\xa8\\x84\\x18\\x68\\x40\\x07\\x25\\x17\\xb5\\x94\\xa4\\x1d\\xb1\\x3a\\x0d\\\r\n\\x8b\\xdc\\x05\\x23\\x18\\x01\\xd8\\x41\\x43\\x03\\x09\\x7c\\x51\\xb8\\x3d\\x5c\\\r\n\\x60\\x85\\x6c\\x50\\x0a\\x1c\\x2a\\xba\\x06\\x38\\x00\\x5a\\x28\\x05\\x3f\\x1d\\\r\n\\x51\\xaf\\x12\\x98\\x75\\x54\\x4b\\x85\\x48\\x22\\x5c\\xd3\\xd0\\x6c\\x40\\x75\\\r\n\\x54\\x17\\x53\\xf2\\x2c\\xea\\xc3\\x5a\\x95\\x2f\\xd1\\x52\\x6a\\xdf\\xe8\\x08\\\r\n\\x5b\\xf3\\xc3\\x98\\xa9\\x88\\x9b\\x4f\\x20\\xbf\\x13\\x53\\xe4\\x3f\\xa7\\xd8\\\r\n\\x78\\x38\\xc8\\x00\\x20\\xac\\x71\\x0d\\xd1\\x8c\\xeb\\x0f\\xca\\x18\\xd1\\x0f\\\r\n\\x24\\x52\\x68\\x60\\x9e\\xe0\\xb9\\x52\\xcc\\x2a\\xbd\\xf0\\x45\\x69\\xbb\\x0c\\\r\n\\x0a\\xa1\\x54\\xf8\\xfc\\x14\\x7d\\xf4\\x69\\x58\\x86\\x06\\x12\\x41\\x47\\x5d\\\r\n\\x08\\xa8\\xa9\\x88\\xc2\\x2c\\x83\\x00\\xa4\\x45\\x5c\\xd9\\xe7\\xfa\\xc6\\x7f\\\r\n\\xb0\\x10\\xc0\\x8b\\xd2\\x88\\xd7\\x80\\xd5\\x2c\\x3f\\x9b\\x5c\\x00\\x08\\x81\\\r\n\\x54\\x62\\x46\\xea\\x24\\x42\\x76\\x46\\x9d\\x0f\\x22\\x19\\x26\\x78\\xac\\xe1\\\r\n\\x70\\x6b\\x50\\x72\\x60\\x19\\x25\\xc0\\xd4\\x42\\x70\\x07\\x28\\x0f\\x12\\xcd\\\r\n\\x64\\x5f\\x83\\x0d\\x5f\\x42\\x92\\xfe\\x09\\x4b\\xed\\x8c\\xdd\\x8c\\xe2\\x83\\\r\n\\x55\\x00\\x00\\xa8\\x28\\x2e\\xc8\\x20\\xf9\\x2d\\xb6\\x54\\x10\\x4b\\xf9\\x78\\\r\n\\x51\\x4e\\xd0\\x59\\xc9\\x4a\\x1e\\x20\\x7b\\x91\\xaa\\x5f\\x18\\x48\\x4d\\x7c\\\r\n\\x11\\x2d\\x67\\x50\\xdf\\x52\\x45\\x13\\x12\\xe5\\xb8\\x73\\x1b\\x92\\x93\\xc8\\\r\n\\xf9\\x6d\\x18\\x54\\x3c\\x6a\\xd2\\xd2\\x40\\x04\\xa0\\x71\\x15\\x25\\x25\\x53\\\r\n\\xf6\\xb0\\x36\\xc9\\xab\\x77\\x76\\xed\\xf1\\xac\\x40\\x13\\x3f\\x52\\x54\\x32\\\r\n\\x8a\\xcd\\x1f\\xca\\x42\\x70\\x00\\xfc\\x48\\x40\\xa5\\x4a\\xb7\\x23\\x6b\\x87\\\r\n\\x5c\\x90\\xea\\xda\\x86\\x94\\x70\\x00\\xcc\\x1e\\x0e\\x11\\xd2\\x05\\xc1\\x45\\\r\n\\x39\\x5a\\x94\\x4a\\x54\\xf5\\x7f\\x39\\x7a\\x9a\\x70\\x0e\\x9c\\x0f\\x83\\x66\\\r\n\\x8e\\x05\\xa8\\x40\\x03\\x69\\x38\\x42\\x86\\xb5\\x68\\x9e\\x63\\xc6\\x50\\xb1\\\r\n\\x54\\x1e\\x85\\x1a\\x4f\\xaf\\xc5\\xf2\\x44\\x20\\xaf\\x30\\x82\\x00\\x86\\xe0\\\r\n\\x45\\x98\\xdb\\xa9\\xe5\\x6e\\xe1\\xaf\\xa4\\x4f\\x81\\x00\\x6d\\x3f\\x86\\x78\\\r\n\\x0e\\x16\\xc8\\xc1\\x28\\xdc\\x73\\x4c\\x12\\x0b\\x6e\\x78\\x80\\x46\\xf3\\x11\\\r\n\\x3b\\xee\\xa3\\xb1\\x95\\xeb\\x1f\\x5e\\x50\\x78\\xea\\x02\\x27\\xf0\\xb8\\x3e\\\r\n\\xff\\x00\\xa2\\x06\\x52\\x1c\\xa9\\xc5\\x28\\xc4\\x18\\x2a\\xf6\\x3c\\xe2\\xba\\\r\n\\xbe\\xbe\\xc2\\x8c\\x81\\x0e\\x8a\\x40\\x82\\x11\\xcf\\x81\\x32\\x82\\x9c\\x6f\\\r\n\\x7d\\x2c\\x92\\x59\\x80\\xaa\\xab\\xc9\\xba\\x1f\\xf4\\x9e\\x48\\xc1\\x09\\xc1\\\r\n\\x40\\x44\\x2a\\x21\\x45\\x14\\x30\\xe8\\x50\\x44\\x82\\x90\\x9b\\x6c\\x48\\x4c\\\r\n\\x10\\xae\\xf4\\xd9\\x68\\x06\\x0b\\x0e\\xa4\\xe9\\xc3\\xac\\xe0\\xf6\\x8d\\x9c\\\r\n\\xca\\x12\\x01\\x0a\\xe7\\xea\\x3a\\xe3\\xc6\\xe6\\xd0\\x20\\x22\\x9a\\x24\\xaf\\\r\n\\x13\\x61\\xfa\\x7a\\x71\\x23\\x02\\x09\\x88\\x46\\xa8\\x8a\\xeb\\xd0\\xdd\\x06\\\r\n\\x6b\\x09\\xd4\\x94\\x2e\\xa0\\xb8\\x70\\x92\\x00\\x23\\xd1\\x76\\xad\\x06\\xa1\\\r\n\\xe7\\x54\\x70\\xc9\\x35\\x3f\\x9e\\x31\\x9a\\x02\\x0d\\x6f\\xf7\\x7c\\xc1\\x81\\\r\n\\x56\\x05\\x2a\\x11\\x68\\x95\\x01\\x28\\x20\\x9a\\x80\\x2e\\x24\\x08\\x09\\x51\\\r\n\\x93\\x1e\\x16\\x5f\\xba\\x12\\xa4\\x0b\\x17\\xf9\\x4f\\xe7\\xf7\\xff\\x00\\xdf\\\r\n\\x8c\\x13\\x82\\xaf\\xd1\\xa7\\x2e\\x8f\\xf9\\xa7\\xe7\\xb7\\x85\\x52\\x22\\x0c\\\r\n\\x9d\\x24\\x32\\xb4\\x24\\x01\\xe1\\x67\\x77\\x69\\x85\\x4a\\x6b\\x00\\xad\\x16\\\r\n\\xb4\\x0f\\x3f\\xe8\\x60\\x1e\\x99\\x30\\xb5\\x35\\x44\\x12\\xd7\\x9e\\x30\\x03\\\r\n\\x2a\\x56\\x8a\\x12\\x6a\\x87\\xde\\xde\\xfa\\x7a\\xa0\\x60\\x11\\x86\\xc0\\x3a\\\r\n\\x85\\x97\\x0f\\xc3\\xc5\\xae\\x99\\xb1\\x44\\x14\\xb2\\x84\\x89\\xf1\\x87\\x09\\\r\n\\x1a\\x69\\xca\\xd0\\x80\\x53\\x3a\\xd7\\x1c\\x47\\xac\\xf1\\xea\\xf2\\xd9\\x4e\\\r\n\\x88\\xd0\\x18\\x02\\x83\\xc5\\xf0\\xb2\\x6c\\xa8\\x51\\xf4\\x01\\x52\\xc3\\xfa\\\r\n\\x70\\x23\\x92\\xb6\\x93\\x18\\xb1\\xc1\\x0a\\x4f\\x15\\x7a\\xb9\\x95\\x40\\xad\\\r\n\\xd9\\x61\\x34\\x08\\x06\\x05\\xc1\\x1c\\xe0\\x98\\xc1\\x29\\x05\\x1b\\x0a\\xda\\\r\n\\xfb\\x73\\x49\\x92\\xc3\\x40\\x3c\\xa2\\x00\\x20\\x7f\\x01\\x66\\x21\\x16\\xbb\\\r\n\\xd1\\x52\\x97\\x35\\x6d\\x46\\xd8\\x81\\x38\\xbb\\x2b\\x29\\xb5\\x20\\x06\\xf1\\\r\n\\x81\\x6e\\x14\\x4b\\xbd\\x1d\\x0c\\x4a\\x10\\x05\\x02\\x04\\x7c\\xeb\\xa0\\x15\\\r\n\\x28\\x28\\x0c\\x75\\xd2\\xd8\\x9c\\xcd\\xc2\\x84\\x71\\x17\\x4a\\x34\\x43\\x04\\\r\n\\x9f\\x21\\x57\\x98\\x12\\xc6\\xe5\\x6e\\x04\\xed\\x68\\xf3\\x88\\xf3\\x14\\x61\\\r\n\\xb8\\x21\\xa8\\xb0\\xa0\\x6a\\x78\\xc0\\xcd\\xe8\\xc4\\xa0\\x68\\xb3\\x0c\\x42\\\r\n\\x95\\x15\\xf5\\x38\\x59\\x83\\x74\\x84\\xd3\\x14\\x27\\x8a\\x1c\\x18\\xac\\x09\\\r\n\\x54\\x0f\\x01\\x2a\\x4d\\xa1\\x85\\xbf\\x50\\x51\\x00\\xdb\\x70\\x7d\\x92\\x43\\\r\n\\xad\\xe4\\xf1\\xc4\\x9b\\x70\\x14\\xf9\\xc6\\x9c\\x85\\x70\\x81\\xc2\\x6a\\xbf\\\r\n\\x60\\x1e\\x10\\x4d\\x2a\\xd7\\x26\\x02\\x55\\x5d\\x24\\x04\\x52\\x7f\\xa6\\x70\\\r\n\\x2f\\x1d\\x97\\x87\\xf8\\x7b\\x61\\x93\\x65\\x55\\xbe\\x88\\x81\\x85\\x0c\\x7c\\\r\n\\x00\\xb6\\x10\\x22\\x6f\\x58\\x21\\x7b\\xd6\\x29\\xa4\\xb8\\x91\\x1c\\xf5\\xc3\\\r\n\\x81\\x17\\x76\\x26\\x16\\xf8\\x16\\x02\\xba\\x86\\x14\\xae\\x06\\x5d\\x8d\\xcd\\\r\n\\xeb\\x66\\x4c\\x58\\xaa\\x6a\\x32\\xc0\\xca\\x9d\\x78\\x64\\x4b\\xad\\x4e\\xe8\\\r\n\\x55\\xc2\\x5a\\xc5\\x63\\xe9\\x26\\xc1\\x24\\x42\\x8f\\x40\\xda\\x17\\x0c\\xc1\\\r\n\\xfe\\x20\\xb0\\xb4\\x22\\x54\\x62\\x6c\\xa2\\x71\\x25\\xa6\\xfa\\xda\\x49\\xa8\\\r\n\\xaa\\x06\\x27\\xa2\\xc5\\x1c\\x34\\x9d\\x4e\\x98\\x12\\x30\\x11\\x1e\\x05\\x44\\\r\n\\x4a\\x22\\x2a\\x7e\\x9f\\x2c\\x2a\\xda\\xa5\\x00\\xdd\\x1a\\xd7\\x90\\xba\\x82\\\r\n\\x88\\x33\\x1a\\x50\\xdd\\x2c\\xe2\\xa7\\x8b\\x59\\xa1\\x89\\x58\\x42\\xdd\\x65\\\r\n\\x3e\\x21\\xd2\\xa9\\x11\\x28\\xd1\\x28\\x87\\x1c\\x60\\xa0\\xb5\\xe5\\x59\\x8e\\\r\n\\x81\\x8a\\xb4\\x02\\x94\\x30\\x7e\\x7c\\xf3\\x64\\x31\\xc2\\x05\\x44\\xd5\\x03\\\r\n\\x04\\x51\\x8f\\xc3\\xe8\\x07\\x53\\xad\\x05\\xca\\x0a\\x30\\x3a\\x1c\\x05\\x12\\\r\n\\x20\\x08\\x28\\xbf\\xd1\\x50\\x66\\xad\\x12\\x3e\\x99\\x53\\x39\\xc7\\x08\\x06\\\r\n\\x8c\\xc0\\x9a\\x20\\x44\\x4e\\x4c\\x02\\xc0\\x0d\\x85\\xaa\\x46\\xa8\\x20\\x5a\\\r\n\\x70\\xa2\\x46\\x98\\x20\\x54\\x58\\x7a\\x59\\x3d\\x0f\\xd5\\xec\\x27\\xa5\\x74\\\r\n\\xa4\\x10\\xb5\\x44\\x5d\\x22\\xaa\\x1a\\x00\\x17\\x0f\\x85\\x41\\x79\\xfa\\x7d\\\r\n\\x4c\\xeb\\xa8\\x72\\xa2\\xe4\\x26\\x42\\xb4\\x72\\x21\\x1c\\x23\\x82\\x41\\x33\\\r\n\\x1a\\x8c\\xf8\\xee\\xf8\\xb3\\x6a\\xa3\\x4c\\x16\\x7d\\xe0\\xfd\\xf4\\x16\\x62\\\r\n\\x22\\xa8\\x2a\\xbf\\x6b\\x8c\\xb9\\xf0\\xfa\\x90\\xe2\\x28\\x68\\x68\\x00\\x34\\\r\n\\xea\\xc0\\x31\\x1a\\x27\\xb8\\xe9\\x94\\x2f\\x00\\x06\\x7e\\x57\\xe8\\x26\\x97\\\r\n\\x1f\\x27\\x24\\x88\\x15\\x3e\\x22\\x18\\x1e\\x44\\xed\\x8b\\x3a\\xd2\\x00\\x24\\\r\n\\x9a\\x00\\x51\\xbe\\xa0\\x02\\x60\\x0b\\x20\\xc5\\x93\\x1a\\x2e\\xcb\\xea\\x54\\\r\n\\x80\\x15\\x80\\x32\\x9d\\x04\\x3b\\xf4\\x8d\\xc9\\x12\\x70\\x15\\x52\\x46\\xc9\\\r\n\\xf0\\xe0\\x8b\\xa2\\x82\\x78\\x43\\xa5\\xab\\xac\\x2b\\x4f\\x2b\\x75\\x7f\\xc3\\\r\n\\x13\\xcb\\x98\\x4e\\x82\\xb4\\x40\\x50\\x17\\x58\\x9a\\xfd\\xef\\x84\\xb1\\x11\\\r\n\\xa4\\x4b\\x05\\x58\\x72\\xc8\\xa8\\xb6\\x78\\x00\\x5a\\xca\\x91\\x21\\xf4\\x4e\\\r\n\\x6f\\x38\\xc7\\x3c\\x9f\\xc5\\xa9\\xca\\x49\\x2f\\x40\\x15\\x04\\x63\\x20\\x11\\\r\n\\x3e\\xc3\\xd7\\x25\\x32\\x65\\xe3\\xfb\\x14\\x75\\x30\\x65\\x8e\\x92\\x33\\x43\\\r\n\\x17\\x79\\x54\\x10\\xeb\\x20\\x47\\xd4\\x46\\xae\\xd0\\x20\\x3c\\x75\\x07\\xc1\\\r\n\\x0a\\x45\\x14\\x42\\x02\\x29\\x20\\x9d\\x42\\x90\\x9e\\x8a\\x81\\x43\\x91\\xa1\\\r\n\\x75\\x03\\x63\\x1c\\xbd\\x61\\xec\\x74\\xef\\x73\\x3a\\x5f\\x57\\xe0\\xac\\x9c\\\r\n\\xc4\\x0f\\xc6\\x20\\xa4\\x20\\xf8\\x5f\\xa9\\x05\\xc0\\x81\\x2b\\x6e\\x29\\xb3\\\r\n\\x4f\\x3e\\xfd\\xf9\\xca\\xc5\\xaa\\xa2\\x80\\xb5\\x15\\x79\\x7c\\xb6\\x10\\x38\\\r\n\\xf7\\xba\\x80\\x6d\\xc7\\x84\\x80\\x43\\xc2\\x11\\x3a\\x48\\x00\\x4c\\xbe\\xd3\\\r\n\\x30\\x33\\x00\\x8d\\x90\\xea\\x43\\xd2\\xc5\\x43\\x05\\x01\\x42\\x4e\\x5c\\x3d\\\r\n\\xd3\\xe6\\x92\\x98\\x18\\xd6\\xf0\\x32\\x01\\x21\\x73\\xd8\\x03\\x68\\x47\\x45\\\r\n\\x62\\x14\\x02\\xca\\x1a\\x06\\xc1\\x30\\x89\\x80\\x32\\x08\\x87\\x01\\x44\\x3e\\\r\n\\x31\\xa7\\x80\\xec\\x63\\xa0\\x68\\x9a\\xab\\xa1\\x84\\x60\\x03\\x80\\x50\\x0b\\\r\n\\xc0\\x61\\xfc\\xf0\\x34\\x65\\x39\\xb2\\xc0\\x82\\xb4\\xac\\x11\\x12\\xd0\\x02\\\r\n\\xa5\\x01\\x04\\xb1\\x0f\\xc8\\x22\\x90\\xa9\\x80\\xf9\\xbf\\x64\\xc0\\x78\\x7e\\\r\n\\x80\\x22\\x2d\\x54\\x88\\x41\\x18\\xb8\\x59\\x98\\x10\\x43\\x61\\x18\\x14\\x2c\\\r\n\\xf0\\xc0\\x25\\xc3\\x24\\x20\\x81\\xce\\x12\\x7f\\x49\\x28\\x62\\x4c\\x28\\x2a\\\r\n\\xca\\xbe\\x9a\\x18\\x31\\x00\\x46\\x48\\xd1\\x75\\xa5\\x31\\x6a\\xc4\\x28\\xf8\\\r\n\\xa3\\x19\\xf6\\x42\\x11\\x24\\x1b\\x09\\x6d\\x3f\\xf3\\xf6\\xe8\\x50\\x05\\x60\\\r\n\\x46\\x95\\x93\\x50\\xdb\\x87\\xfc\\x54\\xd4\\xc6\\x81\\x2c\\xc5\\xa2\\x25\\x28\\\r\n\\xe1\\x34\\x22\\x35\\x40\\x8a\\x8c\\x82\\x19\\xc0\\x5d\\x4d\\x1e\\xbd\\x0c\\x8c\\\r\n\\x4b\\xc2\\x31\\x5a\\x0d\\x5a\\x50\\xf5\\x7f\\x40\\x4a\\x66\\x4c\\x48\\x80\\xdd\\\r\n\\x5e\\x2d\\x5f\\xbc\\xa6\\x31\\x33\\x64\\x64\\xf8\\x56\\x6d\\x77\\x94\\xa5\\x9c\\\r\n\\x08\\x90\\x04\\x51\\xb8\\x06\\xa8\\x07\\x54\\xa6\\xb1\\x3d\\xa1\\x31\\x04\\xb5\\\r\n\\x8c\\x19\\x42\\x8d\\x20\\x4f\\x31\\x48\\xe9\\x10\\x3a\\x80\\x2c\\x90\\xc4\\x58\\\r\n\\xa9\\x65\\x15\\x68\\x18\\x1b\\x0b\\x84\\xa6\\x4c\\xf1\\xbc\\x02\\x83\\x8e\\x22\\\r\n\\x94\\x20\\x18\\xac\\x08\\x1e\\x32\\x1c\\xe3\\xa2\\x94\\x50\\x01\\x00\\xaf\\x88\\\r\n\\x44\\x2b\\xc9\\x05\\x25\\x28\\xa9\\x10\\x78\\x01\\x01\\x11\\x92\\x05\\x4a\\x51\\\r\n\\x38\\xb2\\xbd\\x80\\x0c\\x44\\x96\\xb2\\x0a\\xa0\\x01\\xa5\\x30\\x02\\x2a\\x64\\\r\n\\x71\\x3c\\x80\\x8a\\xa9\\x48\\xb0\\x1f\\xec\\x2c\\x2e\\xcc\\x3b\\x15\\xd1\\x2c\\\r\n\\x4f\\x4c\\x99\\xd7\\xf0\\x95\\x2a\\x05\\x7d\\x4b\\xb8\\x6c\\xb0\\x47\\x82\\x3a\\\r\n\\x6f\\x0f\\x87\\xee\\x23\\x6a\\x28\\x8b\\x82\\xa0\\xd3\\x1c\\x1a\\x3f\\x51\\x59\\\r\n\\xed\\x0d\\x1c\\xf0\\x07\\x40\\x84\\x5b\\xa1\\x47\\xc2\\x11\\x04\\x16\\x49\\x0a\\\r\n\\x12\\x41\\x36\\x48\\xd7\\x99\\xd2\\x04\\xa8\\x04\\x19\\x79\\x00\\x12\\x26\\xde\\\r\n\\xda\\x5a\\x01\\x32\\x00\\x01\\x51\\x10\\xb7\\x10\\x32\\x23\\x90\\x63\\xee\\x1a\\\r\n\\x94\\x08\\x59\\x5e\\x1c\\x38\\x38\\x42\\xda\\x08\\xcc\\xe1\\x74\\x67\\x23\\xea\\\r\n\\x7b\\x1f\\x01\\xe4\\xb7\\xb5\\x1e\\x88\\x40\\xc4\\x9a\\x54\\x24\\x05\\x05\\x40\\\r\n\\xf1\\x8b\\x33\\xe2\\xdf\\x8b\\xe0\\xd8\\xdc\\x81\\xe8\\x6c\\x85\\x28\\x9a\\x74\\\r\n\\x42\\xe0\\xc4\\x2c\\x56\\x24\\x10\\x0a\\x8a\\x85\\xa3\\xae\\xcb\\x14\\x34\\x33\\\r\n\\xa5\\x0c\\x6a\\x00\\x5a\\x3c\\xab\\x92\\x66\\x2d\\x2e\\xd0\\xa5\\x5f\\x9d\\x5f\\\r\n\\xd5\\x58\\xa7\\x20\\xf1\\xdc\\x82\\x90\\xca\\xff\\x00\\xd6\\x7a\\xf3\\xb1\\xc1\\\r\n\\xc0\\x6c\\x00\\x1a\\x91\\x82\\x87\\xb1\\xe1\\x96\\x92\\xa1\\x09\\x15\\x35\\xdb\\\r\n\\x22\\xb5\\xf5\\xc1\\xa8\\x4c\\xf4\\x16\\x16\\xc2\\x75\\x22\\x94\\x3c\\xff\\x00\\\r\n\\x2d\\x6c\\xe5\\x70\\x28\\x91\\x43\\x12\\xd5\\x23\\x6a\\xa5\\x11\\x51\\x03\\xda\\\r\n\\xa1\\x82\\x95\\x89\\xea\\xce\\xa4\\xb8\\x2a\\x14\\x80\\x4c\\xc2\\xff\\x00\\x05\\\r\n\\x6a\\xe9\\x3e\\xe6\\xff\\x00\\x33\\x18\\x51\\xbe\\x39\\xf5\\xb8\\xd2\\x86\\xd7\\\r\n\\x38\\x89\\x02\\x1e\\x4b\\x98\\x5e\\x8a\\x03\\xc0\\x8c\\x16\\x28\\x8a\\x78\\xf8\\\r\n\\x9e\\x92\\x34\\xc2\\x1c\\xdc\\xbd\\x10\\x8b\\x95\\x26\\x32\\xd4\\xb2\\xab\\x00\\\r\n\\x9a\\x6a\\x14\\x9a\\x4a\\x58\\x5a\\x19\\xfa\\x08\\xf6\\x04\\x12\\x60\\xf4\\x02\\\r\n\\xc1\\xc1\\x10\\x6a\\x8b\\xa9\\x88\\x2a\\x59\\x04\\x36\\x7c\\xb4\\x64\\xb1\\x90\\\r\n\\x3c\\x02\\x3f\\x4a\\xc5\\x54\\xa4\\x28\\x14\\x69\\x05\\x74\\x04\\x0c\\x9c\\x20\\\r\n\\xa9\\x26\\xb0\\x42\\xdc\\x44\\x1e\\x5a\\xff\\x00\\xbc\\x5f\\x4d\\x33\\xac\\x50\\\r\n\\x24\\x1a\\x03\\x48\\xab\\xa4\\x2b\\x50\\x3f\\x40\\x04\\xe2\\x20\\x12\\xa8\\x84\\\r\n\\x47\\x35\\x85\\x15\\xfe\\x85\\x42\\x60\\x27\\x1c\\x28\\x80\\x14\\x34\\x6f\\x4a\\\r\n\\x04\\xa0\\xc9\\x0e\\x78\\xe2\\x7b\\x22\\xf5\\x32\\xd0\\xac\\x2d\\x54\\xd5\\x3c\\\r\n\\xdb\\x9a\\xb8\\x10\\x34\\xea\\x4d\\xe8\\xd7\\xed\\x2e\\xa4\\xed\\x82\\x0f\\xf8\\\r\n\\x40\\x93\\x22\\x07\\x08\\xb2\\x02\\x1d\\x14\\x12\\xbf\\xee\\x22\\x29\\x05\\x30\\\r\n\\x48\\xa1\\x00\\xa4\\x50\\x88\\x60\\x50\\x52\\x39\\xec\\x53\\xc2\\x2c\\x13\\xd2\\\r\n\\xce\\x78\\x2b\\xfe\\x6c\\x52\\x9d\\x3a\\x95\\xa6\\xee\\x8f\\x3b\\xff\\x00\\x3c\\\r\n\\xa8\\x20\\x43\\xe8\\x54\\x1b\\x42\\xf0\\xfd\\x3b\\xf6\\x9e\\x62\\x4c\\x45\\x54\\\r\n\\xe1\\x83\\x42\\x9b\\xff\\x00\\xe4\\x62\\x8e\\x94\\x63\\x9a\\x45\\xf8\\x24\\x95\\\r\n\\xfc\\x3c\\xee\\x79\\x51\\x5f\\xd6\\x07\\x11\\xe6\\x77\\x9f\\xff\\x00\\xbe\\x96\\\r\n\\x0e\\x0a\\x70\\x11\\x11\\x16\\x1d\\xe2\\x69\\xf1\\x62\\x75\\x3c\\xdd\\x84\\x76\\\r\n\\x78\\x55\\x52\\x86\\xd0\\x21\\x1c\\x0d\\x50\\x8c\\x50\\x2d\\x5c\\x08\\x60\\x30\\\r\n\\x25\\x54\\x80\\x45\\x84\\x2c\\x6c\\x86\\xa2\\xfa\\x45\\x88\\x34\\xd2\\x52\\x66\\\r\n\\xfc\\x0e\\xf9\\x1c\\x64\\x58\\xca\\x58\\x35\\x42\\x4a\\x54\\x0c\\x60\\x49\\x07\\\r\n\\x9f\\x4d\\x2a\\x25\\x40\\x86\\xff\\x00\\x10\\x1c\\x22\\x6a\\xc4\\xa6\\x65\\x75\\\r\n\\xa1\\x90\\x23\\xab\\xea\\x68\\x3e\\x84\\x45\\x81\\x4d\\x8f\\x24\\x0b\\x0e\\x88\\\r\n\\x02\\x04\\x1d\\xb1\\x28\\x8b\\x0f\\x88\\x1c\\xfa\\x22\\x53\\xd0\\xd0\\xe8\\xdc\\\r\n\\xc3\\xb5\\x88\\x13\\xa3\\xd0\\x39\\x52\\x47\\x88\\x82\\xb6\\xc1\\xac\\x28\\x61\\\r\n\\x10\\x32\\x0a\\x2c\\x81\\x60\\x2c\\x51\\xc4\\x00\\x2b\\x3a\\x45\\x3c\\xd8\\x09\\\r\n\\xc4\\xb5\\x2a\\x18\\x15\\xb1\\xf0\\x58\\x85\\x3e\\xb0\\xa5\\x59\\xca\\x70\\x4e\\\r\n\\x42\\x4f\\x28\\x23\\x59\\x0a\\x03\\x40\\x88\\xe3\\x4b\\xad\\x47\\x4e\\xab\\x35\\\r\n\\x88\\x14\\x64\\xab\\xf0\\x09\\xa9\\x9e\\x30\\x31\\x60\\xb3\\x14\\x84\\xe2\\x0a\\\r\n\\x62\\x96\\xc8\\xac\\x80\\x50\\xc1\\x11\\x80\\x17\\x0e\\xce\\x51\\xed\\x5b\\x08\\\r\n\\x49\\xf6\\x19\\x22\\xae\\x48\\x75\\x1b\\x55\\x30\\xaa\\xe4\\x36\\x23\\x4b\\x90\\\r\n\\xa4\\x17\\x30\\x00\\x47\\xc6\\xd2\\xcf\\x9a\\xca\\xe0\\x45\\x25\\x26\\x40\\x10\\\r\n\\xdd\\x13\\xa0\\x07\\xe9\\x52\\x42\\xe8\\x8a\\x23\\xe8\\x04\\x20\\x24\\x4c\\x08\\\r\n\\x89\\xa0\\x29\\x31\\x11\\x40\\x5c\\xa2\\x19\\x5a\\x63\\x86\\x00\\x74\\x71\\x20\\\r\n\\xbc\\x04\\x86\\xc0\\x54\\x10\\x4e\\xf8\\x4f\\x88\\x45\\x7c\\xfb\\x2d\\x45\\x2b\\\r\n\\x10\\xf0\\x47\\x05\\x0c\\xa6\\x52\\x0d\\xd3\\xa9\\x90\\xa0\\x83\\xd2\\x8e\\x2d\\\r\n\\x8b\\x79\\xef\\x9e\\x80\\x82\\x24\\x3f\\xe9\\x82\\xa6\\xa2\\x10\\x20\\x91\\x61\\\r\n\\x82\\x6d\\x29\\x68\\xe2\\x8a\\xf5\\x4a\\x80\\xc0\\x10\\x03\\xbf\\x8b\\x8d\\x1d\\\r\n\\x2f\\x9c\\xde\\x61\\x8e\\x16\\xdc\\x90\\x0c\\xc0\\x30\\xf5\\x90\\xb3\\xa5\\x85\\\r\n\\xb1\\xc8\\x1f\\xb8\\x0a\\xf8\\x34\\xc4\\x0d\\x6c\\x24\\xb9\\x56\\xd0\\x94\\x45\\\r\n\\x4f\\x42\\x01\\xe2\\x91\\x93\\x08\\xa0\\x2a\\xfb\\x8e\\x7a\\xee\\x8a\\x31\\x09\\\r\n\\x02\\x5f\\xc2\\x19\\x08\\x5e\\x12\\xaa\\x20\\x49\\x05\\x74\\x2d\\x8a\\x78\\xe5\\\r\n\\x44\\xa0\\xe8\\xd3\\xa5\\x34\\x14\\x03\\x42\\xb7\\x5e\\x70\\x70\\x26\\x25\\x2d\\\r\n\\x48\\x45\\x4e\\xbd\\x28\\x2b\\x6a\\x88\\x2c\\x5f\\xd2\\xef\\xd0\\x04\\xa7\\xac\\\r\n\\x55\\xdd\\xb9\\xa6\\xa3\\x52\\x00\\x06\\x27\\xc2\\xa1\\x51\\x2a\\x7c\\x0b\\x0f\\\r\n\\x3d\\x37\\x9e\\x1a\\x22\\x84\\x03\\x4a\\x60\\xa5\\xa1\\x09\\xfe\\xe9\\xea\\xa3\\\r\n\\x34\\xa9\\xb2\\x11\\x5d\\xb4\\x20\\x2a\\x0b\\x5e\\x32\\xec\\x69\\x0a\\x55\\xca\\\r\n\\x9c\\x08\\x3a\\x68\\x35\\xa8\\x12\\x34\\x01\\x87\\xea\\x04\\x0b\\xf4\\xe3\\x31\\\r\n\\xf4\\x00\\x61\\xa7\\xd3\\xdb\\xc2\\xff\\x00\\xe3\\xd1\\x1a\\x6a\\x9f\\xf8\\xa4\\\r\n\\x00\\x14\\x68\\x01\\x9e\\x71\\x2c\\xd6\\xd2\\x4d\\x05\\x04\\x33\\x0e\\x24\\xa5\\\r\n\\xb2\\x5a\\x45\\x7e\\x08\\x29\\xf8\\x1b\\x24\\x5b\\xe9\\x48\\x14\\x48\\x5b\\xb6\\\r\n\\xff\\x00\\xc1\\x73\\xa7\\xe6\\x78\\xb0\\xa6\\x18\\x70\\x2a\\x3c\\x57\\x7b\\x3e\\\r\n\\x7e\\x6b\\xe1\\x0f\\x0b\\x03\\x53\\x90\\x26\\x7d\\x48\\xc4\\x88\\xf4\\x44\\xa0\\\r\n\\x43\\x10\\x16\\xbc\\xc0\\xab\\xaa\\x8e\\x92\\x7a\\x49\\x92\\xb7\\xf2\\x63\\x88\\\r\n\\x62\\x6f\\x79\\x72\\x22\\x20\\x88\\x3b\\xf5\\x07\\x29\\xd3\\x7f\\x3f\\x27\\x88\\\r\n\\x09\\xe1\\xa2\\x6c\\x01\\x72\\x0c\\x5a\\x7b\\xdf\\x32\\x81\\x01\\x21\\xc6\\xd0\\\r\n\\x77\\x92\\x21\\x63\\xc7\\x7a\\x95\\x92\\x74\\xa7\\x8c\\x36\\x98\\x64\\xf2\\xe1\\\r\n\\x70\\xaa\\x69\\x40\\xed\\x6a\\xbb\\x04\\x1c\\xe9\\xf0\\xd9\\x09\\xfe\\xa0\\x22\\\r\n\\x2d\\x51\\x69\\xaa\\x56\\x48\\x1a\\xa2\\xa8\\x56\\xab\\x92\\xff\\x00\\x2e\\x79\\\r\n\\xc8\\x12\\x2d\\x3a\\x4f\\x82\\x88\\x1f\\xab\\x67\\x19\\xe5\\x5a\\xc8\\x98\\x3b\\\r\n\\x5c\\x61\\x4e\\xf8\\xda\\x61\\xcd\\x05\\x59\\x00\\x92\\xfa\\x34\\xc0\\x79\\x54\\\r\n\\x95\\x89\\xa4\\x21\\xa9\\x44\\xfc\\x12\\x89\\x7d\\x5e\\x52\\x79\\xa0\\x06\\x10\\\r\n\\xa1\\x10\\x77\\x6c\\x36\\x44\\x29\\x53\\xbb\\xd4\\x05\\x44\\x07\\x17\\x03\\x4d\\\r\n\\x09\\x23\\x54\\x32\\x9f\\xea\\x18\\x8e\\xcc\\xff\\x00\\xb4\\x69\\x1c\\xf8\\x2a\\\r\n\\x76\\x20\\x2b\\x06\\x86\\xa0\\x58\\xcb\\x2c\\x34\\x12\\x83\\x02\\xc0\\x80\\x55\\\r\n\\xa8\\xc7\\x60\\x71\\x2a\\x8a\\xa5\\x22\\x70\\x1b\\x61\\x10\\x00\\x47\\x88\\xb6\\\r\n\\xb0\\x4a\\x95\\xa1\\x2f\\x84\\xc0\\xa5\\x27\\x7a\\x53\\x86\\x09\\x5d\\xe4\\xd9\\\r\n\\xe9\\x65\\x86\\x54\\x04\\x01\\x11\\x99\\x35\\x1b\\xcf\\xa7\\x80\\xf1\\x62\\x54\\\r\n\\xba\\x02\\xe0\\xab\\xb1\\xe1\\x47\\xa5\\x99\\x5c\\xd9\\x42\\x36\\xe0\\x70\\x0a\\\r\n\\x5f\\xe0\\x79\\x8d\\x86\\x01\\x21\\x85\\x7b\\x00\\x9f\\x4d\\x51\\x7b\\x45\\xb4\\\r\n\\x78\\x26\\xd1\\x23\\x13\\x2c\\x43\\x02\\x34\\xe3\\x6a\\xe4\\x29\\x1a\\x95\\x88\\\r\n\\x2d\\xd5\\x13\\x20\\x30\\xa3\\x01\\x50\\x50\\x1c\\x30\\x39\\xe0\\x81\\x53\\x29\\\r\n\\x09\\xa7\\xa0\\x51\\x29\\x26\\xa6\\x74\\x88\\x01\\x60\\x70\\x52\\x02\\x3b\\xf4\\\r\n\\x21\\x48\\x62\\xf5\\x3d\\x75\\x8d\\xc8\\x0d\\x0a\\x2a\\xd7\\xab\\xb2\\x07\\x95\\\r\n\\xaa\\x90\\xb4\\x00\\x4f\\x85\\x48\\xe4\\x55\\x8b\\x40\\x5e\\x02\\x21\\x55\\xd4\\\r\n\\xfc\\x2b\\x55\\xcd\\x43\\xfc\\x7d\\x47\\x0d\\x19\\x76\\x1d\\x28\\xdb\\xd6\\xd0\\\r\n\\x12\\x4f\\x15\\xca\\x90\\xc6\\x85\\x61\\xaa\\x54\\x21\\x03\\xed\\x9a\\x51\\xa5\\\r\n\\x8b\\x6c\\x29\\x3c\\x3a\\x0a\\xcf\\x19\\x80\\x72\\xad\\x2e\\xe0\\x94\\xa8\\xff\\\r\n\\x00\\x90\\x21\\xda\\x10\\x62\\x13\\x24\\x52\\x57\\x49\\x00\\x20\\x53\\xb8\\x72\\\r\n\\x0e\\xb8\\x01\\xd1\\x8a\\x82\\xc8\\xfc\\x0d\\x23\\x4d\\xdb\\x22\\x55\\x85\\x53\\\r\n\\x06\\x58\\x3c\\x22\\x18\\x2f\\x4b\\xbb\\x41\\xb8\\x62\\x42\\x3c\\x3e\\x42\\x60\\\r\n\\xe2\\xe4\\xcc\\x58\\x38\\x09\\x53\\xe1\\x4c\\xd5\\x13\\x4a\\x60\\x4c\\x0a\\x09\\\r\n\\x91\\x80\\xc3\\x22\\xda\\x04\\x46\\x84\\x29\\xc3\\x09\\xf0\\x9d\\x80\\x99\\x4b\\\r\n\\x32\\x82\\xac\\xaa\\x01\\x29\\xa7\\x80\\x28\\xd1\\x00\\x30\\x38\\x14\\x59\\xf3\\\r\n\\xc9\\xbc\\x89\\x52\\xcc\\xa1\\x8c\\x2e\\x27\\xff\\x00\\x7e\\x04\\x4b\\xdf\\x3e\\\r\n\\xb0\\x4f\\xa0\\x09\\x95\\xaa\\xaa\\xf8\\xc0\\x8c\\x27\\x2b\\x0b\\xb5\\x94\\xef\\\r\n\\xf7\\xc8\\xb6\\x41\\x54\\xa8\\x34\\x18\\x18\\x2a\\x9f\\x8f\\xf3\\xc4\\x32\\x32\\\r\n\\xfc\\x9b\\x61\\x35\\x43\\xdc\\xff\\x00\\xbe\\x99\\xd1\\x79\\xba\\x75\\x15\\x17\\\r\n\\x0d\\x03\\x04\\x73\\xca\\xac\\x89\\x0a\\x86\\x62\\xcd\\x3b\\xfb\\x5b\\xdf\\x1e\\\r\n\\xea\\xd2\\xb5\\x62\\xfb\\xde\\x01\\xde\\x01\\xf0\\xf4\\x77\\xac\\x6f\\xe2\\xeb\\\r\n\\x3f\\xd5\\x6f\\xfb\\xea\\x16\\xa2\\x90\\x4a\\xa1\\xc1\\xf8\\x43\\x2b\\xfb\\xe3\\\r\n\\x22\\x15\\x40\\x90\\x05\\xeb\\x00\\xf2\\x86\\x21\\xb4\\x22\\x0a\\x74\\x41\\x4c\\\r\n\\xd9\\x0b\\x87\\xb7\\x05\\x40\\x2a\\xb8\\x40\\xdf\\xf5\\x7f\\xdd\\xf6\\x6c\\x2b\\\r\n\\xf3\\xfc\\xe3\\xff\\x00\\xbf\\x21\\x42\\x20\\x68\\x02\\x75\\x66\\xa1\\x50\\xac\\\r\n\\x3c\\x79\\xcb\\xa8\\x28\\xa2\\xa8\\x15\\x04\\x3a\\x3c\\xf0\\x68\\x1f\\x01\\x09\\\r\n\\x08\\x14\\x1a\\xa9\\x61\\xe0\\xf8\\xa8\\x34\\xc2\\x4a\\x04\\xab\\xad\\xc5\\x6f\\\r\n\\xef\\xa7\\xc8\\x30\\x2f\\xc4\\x15\\x55\\x5c\\x17\\xf3\\xc3\\x64\\xd5\\x53\\x4d\\\r\n\\xc0\\x3e\\x06\\x80\\xc1\\x0f\\xcf\\x31\\x18\\xd8\\xcd\\x6e\\xb9\\x8e\\x1b\\xfb\\\r\n\\xe5\\x24\\xaf\\x13\\x37\\x32\\xc2\\xd0\\x82\\x13\\x3c\\x48\\x22\\x58\\x02\\xaa\\\r\n\\x10\\x00\\x07\\x32\\x9a\\x05\\x7f\\x04\\x35\\xa4\\xb0\\x3f\\x84\\x93\\xf3\\xd7\\\r\n\\xac\\x85\\xc9\\xc1\\x0b\\xd3\\xc3\\x5f\\xc3\\xf0\\xf2\\x55\\xd4\\x06\\x24\\x40\\\r\n\\xe8\\x25\\x5e\\x4a\\xf3\\xca\\x04\\x18\\xcb\\x49\\x12\\xd6\\x9e\\xc2\\xb0\\x08\\\r\n\\x12\\xd1\\x5e\\x4b\\x08\\xf1\\x41\\xe5\\x34\\x36\\x7a\\xc6\\x36\\x96\\x98\\x6f\\\r\n\\xba\\xb6\\xad\\x17\\x5f\\xb7\\x4a\\xe6\\x30\\x9c\\x8a\\x3d\\x18\\x2b\\xf2\\x9f\\\r\n\\x5f\\x60\\x0b\\xf4\\x5b\\x4a\\x42\\x8b\\xad\\xa8\\x1f\\x9e\\x84\\xc2\\x11\\x86\\\r\n\\x41\\x44\\x3f\\x28\\xa7\\xf8\\xa3\\xdf\\x5f\\x8a\\x23\\xf0\\xc2\\x97\\xec\\xcf\\\r\n\\xf3\\x3d\\x41\\xc2\\x19\\x0d\\x46\\xfe\\xb1\\x7f\\xcc\\xf2\\x94\\x54\\x85\\xd1\\\r\n\\xcc\\x1b\\x8a\\x3f\\xf9\\xfd\\xf5\\xdc\\x36\\xa8\\x4d\\x21\\x15\\x70\\xc8\\x87\\\r\n\\x83\\x31\\x4c\\x6c\\x4c\\x96\\xc8\\x14\\x2d\\x82\\x9f\\x7c\\x00\\xe1\\x19\\x04\\\r\n\\x89\\x1c\\x21\\xa8\\xd4\\x5a\\x0b\\xe2\\x34\\x6f\\x68\\x8d\\x01\\x70\\x04\\x89\\\r\n\\x92\\x82\\x01\\x25\\x08\\x22\\xd4\\x30\\x08\\x3f\\xde\\xfe\\xe6\\x7b\\x18\\x53\\\r\n\\xfd\\x78\\x9b\\x66\\xfd\\x0d\\x11\\x95\\xcc\\xec\\xf6\\xa3\\x83\\x68\\x85\\xc9\\\r\n\\x45\\x24\\x8d\\x35\\x65\\xf2\\x6a\\x88\\x89\\xa0\\x12\\xfe\\x13\\xfd\\x34\\x8f\\\r\n\\x89\\xc6\\x1c\\x00\\xd1\\x65\\x7d\\xa0\\x82\\x40\\xb1\\x24\\xf9\\x7f\\x42\\x82\\\r\n\\x2c\\x68\\x15\\xdf\\xf7\\xb7\\xc1\\x69\\x6d\\x50\\xb5\\x7c\\x40\\x30\\x10\\x53\\\r\n\\x49\\x09\\x68\\x82\\x8a\\x46\\x22\\x4a\\x62\\x22\\x00\\x5b\\xbe\\x68\\x20\\x71\\\r\n\\xea\\xf4\\xa0\\x24\\x08\\x88\\x80\\xb7\\xc6\\x54\\x4a\\x04\\x04\\xaf\\xda\\xe0\\\r\n\\xe3\\xa1\\x87\\x9b\\xfa\\x68\\x44\\x33\\x90\\x0e\\x84\\x4e\\x79\\xa9\\x23\\x22\\\r\n\\x30\\xba\\x08\\x40\\x00\\x34\\x00\\x01\\xe7\\x22\\x2c\\xce\\x50\\x29\\xb4\\x0c\\\r\n\\xa2\\x51\\x3d\\x88\\xe1\\x41\\x0d\\x40\\x17\\x17\\x20\\x84\\x09\\xf1\\x2f\\x28\\\r\n\\xe0\\x4f\\x68\\x84\\x78\\x35\\x85\\x41\\x5a\\x7d\\x88\\x04\\x15\\x72\\x6d\\x9a\\\r\n\\xb6\\xed\\xaf\\xa0\\x26\\x65\\xc7\\xc7\\xef\\xff\\xc4\\x00\\x20\\x11\\x01\\x01\\\r\n\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x00\\x00\\x00\\x01\\x11\\\r\n\\x21\\x00\\x31\\x41\\x51\\x61\\x71\\x81\\x91\\xa1\\xb1\\xff\\xda\\x00\\x08\\x01\\\r\n\\x02\\x01\\x01\\x3f\\x10\\x36\\x68\\x50\\x13\\xca\\x10\\x48\\x92\\x05\\x7a\\xbc\\\r\n\\xa1\\x6d\\x32\\xa6\\x50\\x60\\x1a\\xb1\\x75\\x8b\\xe0\\x27\\x8c\\x66\\x69\\x0c\\\r\n\\xa8\\x21\\x92\\x4b\\x1e\\x38\\x95\\x86\\x80\\x8c\\x96\\x60\\x00\\x04\\xb7\\x03\\\r\n\\x53\\xac\\x00\\x81\\x03\\xfa\\x80\\x96\\x26\\xcc\\xec\\x80\\x55\\x81\\x00\\x2f\\\r\n\\x90\\x14\\x85\\xa8\\x5d\\xb7\\xc6\\x48\\x82\\x0e\\x98\\x9a\\x04\\xd4\\x3c\\x0b\\\r\n\\x13\\xbc\\x2c\\x40\\x39\\x7c\\x0d\\x8a\\x80\\xdb\\x6f\\xce\\x4d\\x6f\\x14\\x8b\\\r\n\\x0d\\x61\\x6e\\x20\\xad\\xbc\\xd8\\xa8\\x19\\x18\\xc6\\x8c\\x98\\x11\\x08\\xbc\\\r\n\\x12\\xf6\\x75\\x6e\\x25\\x40\\x29\\xe8\\x34\\x40\\x2b\\xf0\\xad\\x24\\x30\\x08\\\r\n\\xd8\\x41\\x20\\x21\\x01\\x21\\x03\\x01\\xa4\\x54\\xaa\\x82\\xa1\\x16\\x22\\xd6\\\r\n\\x46\\x88\\xcb\\x52\\x02\\x88\\x08\\xa8\\x21\\x47\\x15\\xb7\\x6a\\x48\\x76\\x0a\\\r\n\\xc5\\x10\\x9d\\x2a\\xd6\\xdd\\x22\\x69\\x4a\\x9c\\x34\\x3f\\xe0\\x16\\xcb\\x40\\\r\n\\x80\\xcc\\x01\\x53\\xf0\\xe0\\x73\\xec\\xde\\xd8\\x0d\\x00\\xeb\\x23\\x1b\\x0c\\\r\n\\x51\\x3e\\x35\\x09\\x8e\\x03\\x62\\x41\\x2b\\x84\\xb3\\x80\\x43\\x06\\x68\\xa1\\\r\n\\x96\\x1f\\x32\\xb8\\x36\\xce\\x34\\x20\\xce\\x00\\x14\\xa5\\x52\\xe6\\x21\\xa0\\\r\n\\x52\\x46\\x74\\x2a\\xad\\xc2\\xc2\\x40\\x7c\\x60\\x73\\x93\\xd3\\x45\\x51\\x59\\\r\n\\xd4\\x00\\x4c\\x73\\x1e\\xfa\\x66\\x88\\x6f\\x20\\x88\\xea\\x93\\x4c\\x34\\xe6\\\r\n\\xeb\\xfa\\x8a\\x95\\xfe\\x82\\x26\\x81\\xc2\\x38\\xf7\\x18\\x64\\x00\\x8c\\xca\\\r\n\\xd5\\x12\\x45\\x0f\\x05\\x00\\x32\\xa2\\x81\\x1a\\x85\\x04\\x0b\\x81\\x41\\xde\\\r\n\\xc8\\x4c\\xd4\\x15\\x4d\\x1f\\x40\\x51\\xb0\\x0e\\x88\\x1e\\x09\\x46\\x71\\x22\\\r\n\\xed\\x25\\x51\\x08\\x03\\x78\\x54\\x68\\x1e\\x22\\x38\\x50\\x11\\xf4\\x95\\xd1\\\r\n\\x75\\x51\\x49\\xc7\\xad\\x39\\x23\\x38\\xf8\\x27\\x83\\x1b\\x6a\\x2f\\x89\\x60\\\r\n\\x0a\\x62\\xae\\x0f\\x44\\xd3\\x6a\\x08\\xba\\xa2\\x2c\\x3d\\x80\\x92\\x62\\x71\\\r\n\\xb5\\x0a\\x02\\x05\\x6f\\x98\\x01\\xaa\\x61\\x10\\xe7\\xad\\x6c\\xd8\\x0f\\x51\\\r\n\\x13\\x5a\\x47\\x45\\xd2\\x09\\xec\\x0d\\xb2\\x26\\xf0\\xa9\\x48\\x90\\xd3\\x80\\\r\n\\xef\\xb1\\x18\\x08\\x8c\\x42\\x50\\x4c\\xda\\x82\\xfd\\x00\\x08\\x34\\x00\\x8a\\\r\n\\x58\\xa2\\x5a\\x56\\x6c\\xfe\\x12\\x5b\\x2d\\x13\\x16\\x22\\x36\\x48\\x11\\xca\\\r\n\\xe4\\x67\\xd1\\x14\\x44\\x00\\x0b\\x5b\\xb7\\x8a\\x56\\xb8\\x46\\x03\\x49\\xc6\\\r\n\\x2e\\x0a\\x24\\x27\\x6a\\x87\\x9c\\x8b\\x44\\x97\\xa3\\xfd\\xca\\xce\\x1d\\x94\\\r\n\\x05\\x63\\xd4\\x27\\x08\\x33\\xaf\\xb5\\xc8\\x10\\xfe\\xe0\\x08\\x70\\x4b\\xee\\\r\n\\x10\\x73\\xd0\\xff\\x00\\x08\\x26\\x61\\xe2\\x8d\\x39\\x31\\x99\\x8c\\xc1\\x4a\\\r\n\\x92\\x3c\\x2e\\x53\\x51\\x5f\\x36\\x5b\\x87\\x60\\x30\\xe4\\x8b\\x63\\x65\\x50\\\r\n\\xf4\\x36\\xf8\\x02\\xc8\\x5f\\x5f\\x90\\x9e\\x6f\\xa8\\xa2\\x29\\x5a\\x74\\x87\\\r\n\\x12\\x11\\x8f\\x68\\x12\\x22\\xbc\\x1c\\x56\\x9c\\x98\\x2c\\x20\\x08\\x55\\x02\\\r\n\\x40\\x51\\x34\\x90\\x8d\\x09\\x3d\\x26\\x80\\x40\\x11\\x4e\\x08\\x15\\x8a\\x00\\\r\n\\xaa\\x95\\x48\\x43\\x60\\x2c\\x02\\x93\\x08\\x0a\\xc7\\x0f\\x88\\x38\\x00\\xd5\\\r\n\\xc4\\x4a\\x91\\xc2\\x1d\\x35\\xc7\\xd2\\x8e\\x87\\x05\\x94\\xaf\\x2e\\x60\\x77\\\r\n\\xc9\\xcc\\x07\\x2a\\xf3\\x83\\xf4\\xf7\\x46\\x00\\xec\\x71\\x6b\\xa8\\xb0\\x15\\\r\n\\xed\\x10\\x80\\x18\\x47\\x18\\xa2\\x99\\x28\\xb4\\x0f\\x28\\xa3\\xc2\\xb5\\xc3\\\r\n\\xe3\\xa8\\xc9\\x48\\xa4\\x10\\x08\\x2e\\x8a\\x25\\x0e\\x70\\x28\\x51\\x44\\x56\\\r\n\\x88\\x22\\x7c\\x48\\x69\\x18\\xe8\\xf8\\x20\\x23\\x96\\x75\\x06\\xdf\\x49\\x3c\\\r\n\\x23\\x5f\\xa0\\x01\\x28\\x3a\\xce\\x62\\x13\\x12\\xf4\\xc0\\xa0\\x9f\\x40\\xc6\\\r\n\\xa3\\xd2\\xba\\x4e\\xaa\\x78\\x17\\xc3\\xa3\\x00\\x40\\x03\\x47\\x7c\\x43\\x18\\\r\n\\xad\\x61\\x20\\x5a\\x4f\\x47\\x97\\x61\\x87\\xa0\\x50\\x26\\xa1\\x16\\x5c\\x09\\\r\n\\x17\\x8d\\x6c\\xbc\\xb0\\xa5\\x62\\xb5\\x8e\\x70\\x43\\x8c\\x45\\x61\\x25\\x68\\\r\n\\x25\\x36\\x81\\x5b\\x03\\x38\\xe0\\x75\\x63\\x28\\x09\\x0c\\x95\\x8b\\x22\\xaa\\\r\n\\xa9\\xca\\xa2\\xca\\x08\\x5c\\xc5\\x61\\x88\\x5d\\x1f\\x51\\xc9\\x0b\\x46\\x20\\\r\n\\x92\\x90\\xb0\\x40\\x2a\\x1d\\x4e\\x42\\xb2\\x0e\\x76\\xf9\\xb6\\x4c\\xe5\\xc3\\\r\n\\x09\\x50\\x54\\x7f\\x07\\xd1\\x53\\x0a\\x0d\\xc2\\xeb\\x95\\x8a\\xcf\\x6b\\xc8\\\r\n\\x24\\x45\\x68\\xe4\\xb4\\x8d\\x40\\xe4\\x48\\x36\\xd3\\xb9\\xea\\x27\\xc9\\xa6\\\r\n\\x24\\x48\\x4a\\x8a\\x01\\x06\\x39\\x02\\x59\\x43\\x0d\\x94\\x01\\x0b\\x51\\x68\\\r\n\\x33\\xab\\x64\\xd8\\xdb\\x11\\x44\\xd6\\xf6\\x18\\xe9\\x65\\x78\\x6a\\xd4\\x41\\\r\n\\x15\\x05\\x30\\x34\\x62\\x7d\\x50\\xcf\\x26\\xe9\\xb3\\xe8\\x80\\x80\\xa2\\xf2\\\r\n\\xa4\\x57\\xa7\\x38\\x25\\x16\\x4c\\x8a\\xdf\\x1f\\x9c\\x1b\\x0f\\x74\\x21\\x52\\\r\n\\x68\\x6e\\x93\\x01\\xc1\\xdb\\x06\\x2e\\xb6\\x00\\x48\\x81\\x4b\\x8a\\xf0\\x48\\\r\n\\xc4\\x01\\x54\\x0a\\xc0\\x7a\\x18\\x18\\xed\\xa8\\xe2\\x7d\\x6a\\x10\\xa2\\x60\\\r\n\\x0d\\xb4\\x48\\x45\\x0f\\xe6\\x08\\x18\\xe2\\xfe\\xc2\\x05\\xe8\\x86\\x7a\\xd5\\\r\n\\x4d\\x26\\xe1\\x53\\xe4\\x50\\x82\\x95\\x56\\xc0\\x56\\x55\\x65\\x00\\x69\\xa0\\\r\n\\x70\\x55\\x3f\\x0c\\xf7\\xec\\x4a\\xd6\\xbf\\x48\\x11\\x50\\x80\\x1a\\x29\\x76\\\r\n\\x48\\x21\\x12\\x00\\x14\\xd6\\x85\\x15\\x46\\x46\\x29\\x40\\xb2\\x11\\x2b\\x6f\\\r\n\\xf4\\xbb\\x13\\x34\\x67\\x41\\x9c\\x66\\xbc\\x88\\xe5\\xa8\\x43\\x26\\x66\\x0a\\\r\n\\x83\\xc0\\x4e\\x1a\\x51\\xd0\\x04\\x31\\x54\\x58\\xf0\\xa9\\xc1\\xb6\\x14\\xe2\\\r\n\\x94\\xaa\\x16\\x05\\xdb\\xaa\\x54\\x4a\\xa0\\x1d\\xb9\\x50\\x1f\\x5e\\x8a\\x0f\\\r\n\\x95\\x06\\xb8\\xc3\\x2a\\x28\\x48\\x5a\\x4d\\x3c\\x29\\x8a\\x9a\\x16\\xbd\\x58\\\r\n\\x36\\x5a\\x10\\x82\\x91\\xf4\\xd6\\x45\\x8d\\x06\\x50\\x6c\\x74\\xb1\\x5b\\x84\\\r\n\\x18\\xd8\\x9a\\x0c\\xb1\\x49\\xd2\\x20\\x47\\xc6\\x58\\xe1\\x60\\x28\\x48\\x9a\\\r\n\\x23\\xfa\\x1b\\xac\\x01\\x29\\x35\\x05\\x10\\x62\\x42\\x34\\x61\\x55\\xe1\\xbc\\\r\n\\x0f\\x43\\xe9\\x74\\x05\\x54\\x80\\x81\\x37\\x93\\x61\\xdc\\x89\\x5f\\x28\\x42\\\r\n\\x34\\x24\\x5c\\x00\\x51\\xd4\\xb0\\x41\\x4b\\x0c\\x8c\\x1d\\xf4\\x68\\x50\\x15\\\r\n\\x94\\xa8\\x83\\x34\\x20\\xff\\x00\\x4e\\x53\\x92\\xb8\\xb4\\x40\\xc6\\xc0\\x9b\\\r\n\\x54\\x01\\x7f\\x4f\\x05\\x0d\\x68\\x17\\xd4\\x0f\\x15\\xbc\\x74\\x63\\x86\\x61\\\r\n\\x58\\x22\\xc2\\xa7\\x03\\x78\\x6e\\xa9\\x2f\\x21\\x53\\xfe\\xee\\x10\\x12\\x58\\\r\n\\x97\\x01\\xd7\\x1a\\x49\\xf0\\xb4\\xf0\\x49\\x2b\\x8c\\x89\\xf5\\x21\\x88\\xd3\\\r\n\\x50\\x89\\xd8\\xaa\\x1a\\x98\\x44\\xcc\\x2a\\x30\\x6a\\xbb\\x72\\xee\\x95\\x13\\\r\n\\x59\\x21\\x95\\x2a\\x0b\\x2f\\x04\\x46\\x12\\x38\\x36\\x29\\x8f\\xf0\\x00\\x06\\\r\n\\xa0\\x64\\x31\\x08\\x42\\xc9\\x6e\\x94\\x26\\x0e\\xc3\\x83\\x1c\\x33\\x51\\x80\\\r\n\\x2d\\xa8\\xe2\\xc4\\x21\\x84\\xec\\x26\\x30\\xba\\xf0\\xa9\\x52\\x20\\x4a\\x7c\\\r\n\\x09\\x14\\x90\\x41\\x31\\xd0\\x00\\x3d\\x65\\x0c\\x5b\\xcb\\x90\\x41\\xc5\\x45\\\r\n\\xb7\\xc3\\x03\\xd2\\x34\\x4d\\xa2\\x40\\x49\\xd8\\x13\\x58\\x30\\x84\\xa5\\xea\\\r\n\\xdc\\xf4\\x4a\\x02\\x05\\x4b\\x83\\xe0\\x9f\\x55\\xe5\\x65\\x10\\xb0\\x78\\x18\\\r\n\\xa2\\x51\\x63\\xe2\\x3c\\x22\\x07\\xc4\\x08\\x65\\x74\\x8c\\x6b\\xe3\\x5e\\x21\\\r\n\\x34\\x6a\\x02\\xa6\\x4d\\x2c\\x8f\\xa4\\xca\\x60\\x00\\x68\\x02\\x90\\xaa\\x1c\\\r\n\\x0a\\x01\\x08\\x95\\x06\\x0c\\xda\\x5f\\x30\\xa1\\xa6\\x38\\x4a\\x25\\x43\\x61\\\r\n\\x23\\x3f\\x01\\xb1\\x68\\x15\\x13\\x3b\\xc7\\x9d\\x52\\x40\\x78\\xd2\\x44\\x5a\\\r\n\\x1a\\x1b\\x1e\\x95\\x27\\x21\\x0c\\x12\\x00\\x90\\x1f\\x28\\x4b\\xeb\\x81\\x4f\\\r\n\\x0d\\x88\\x28\\x94\\x9d\\xc2\\x52\\x2a\\xf4\\xcd\\xde\\x58\\xd1\\x4d\\x50\\x09\\\r\n\\x43\\xc3\\xc0\\x39\\x36\\x00\\x07\\x70\\x4a\\xfa\\x16\\x24\\x51\\xd3\\xcc\\xd0\\\r\n\\xb3\\x65\\x32\\x9a\\xe8\\x42\\xc6\\x18\\x78\\x19\\x65\\xa7\\x7c\\xba\\x2f\\xdc\\\r\n\\x01\\x91\\x43\\x5e\\x8a\\x65\\x45\\x07\\xca\\x4b\\x00\\xa7\\x45\\x5a\\x55\\x17\\\r\n\\xc2\\x0a\\xc2\\x5a\\x00\\xd4\\x31\\x53\\x20\\xee\\x56\\x7d\\x24\\x3d\\x0a\\x95\\\r\n\\xbc\\xf1\\x6e\\xf1\\xfa\\xf9\\xa3\\x31\\x98\\xbc\\xd4\\xc4\\x26\\xb8\\x1a\\xc0\\\r\n\\xf8\\x18\\x5f\\xa6\\xa4\\xc5\\x7e\\x1e\\x67\\x0c\\x6c\\xdb\\x6e\\xb2\\x60\\x28\\\r\n\\x65\\x8c\\xc6\\x89\\xbe\\x17\\xb1\\x94\\x63\\x92\\x84\\x66\\x66\\x97\\x01\\x20\\\r\n\\x76\\xcd\\x4a\\x82\\x68\\x23\\x2d\\xec\\x8e\\x8e\\x18\\x81\\x12\\x8e\\x88\\x2b\\\r\n\\xb0\\x36\\xc0\\x24\\x41\\x44\\x14\\x0d\\xb1\\x0d\\x12\\x08\\xd1\\x19\\x94\\xe5\\\r\n\\x83\\x77\\xfd\\x02\\x02\\xc4\\xfa\\x89\\x21\\x3a\\xf2\\xd9\\xdf\\x94\\xa5\\x2a\\\r\n\\x1a\\x19\\xf2\\xd3\\x2e\\xa4\\x20\\xcd\\x85\\x71\\x7d\\x3e\\xc8\\xa9\\x68\\x02\\\r\n\\x82\\x8c\\x09\\x87\\x71\\x17\\x4f\\x46\\x22\\x21\\x01\\x90\\x0d\\x54\\x7a\\x02\\\r\n\\x8f\\x47\\xa4\\xaf\\xd4\\x6a\\x41\\x69\\xfe\\xd0\\x00\\x6d\\x94\\x00\\x48\\xb7\\\r\n\\x00\\x9a\\x9e\\x82\\x1a\\x68\\x13\\x3a\\x42\\x77\\x81\\x2a\\xd3\\x43\\x4b\\xcc\\\r\n\\x73\\xb8\\xb5\\xd6\\x02\\x28\\x47\\xad\\x2f\\x16\\x28\\xd5\\x25\\xcf\\xb3\\x51\\\r\n\\x18\\x66\\x72\\xc9\\xc2\\xbe\\xa7\\x5d\\xd5\\x49\\x02\\xfd\\xe6\\x8e\\x4c\\xcd\\\r\n\\x28\\xaf\\xa6\\x14\\x16\\x30\\xa7\\x26\\xf0\\x17\\xd0\\xa3\\x47\\x42\\x04\\x3c\\\r\n\\x45\\x5a\\x48\\x11\\x7d\\xf3\\x37\\x42\\x4a\\x03\\x11\\x9c\\x1f\\xda\\xa6\\x1a\\\r\n\\x08\\xc2\\x75\\x46\\x0e\\x9a\\xa6\\x6c\\xf4\\xd6\\x56\\x9e\\xe9\\x17\\x18\\xb2\\\r\n\\x83\\x40\\x12\\x2a\\xb4\\xc0\\x95\\x86\\x63\\x2c\\x80\\x47\\xce\\x12\\x90\\xb1\\\r\n\\x60\\x3a\\x07\\x02\\x4d\\x75\\x92\\x84\\x3a\\xa8\\x1d\\xcd\\xe8\\xa9\\xb9\\x91\\\r\n\\x42\\x88\\xce\\xc9\\x71\\x19\\x57\\x0c\\x17\\x02\\x2d\\x4e\\x8e\\xc8\\x60\\xed\\\r\n\\xec\\x50\\x08\\xb8\\x4d\\x30\\x08\\x72\\x01\\xb2\\xd8\\x06\\xcc\\x50\\xe3\\xf0\\\r\n\\x4f\\x7e\\x70\\x8b\\xa1\\x75\\xa2\\xc1\\x08\\x0a\\x31\\x46\\x5b\\xc3\\x6c\\x30\\\r\n\\x27\\xc7\\x50\\xa9\\x5f\\x47\\x95\\xe3\\xd2\\x00\\xa1\\xa0\\x05\\x09\\xec\\x20\\\r\n\\xf3\\xc5\\x37\\x7c\\xb1\\x86\\x6f\\xe8\\x81\\xb5\\x85\\xc9\\x36\\x22\\x63\\x1f\\\r\n\\x87\\x14\\x0f\\x1e\\xc5\\x2e\\x98\\x89\\x83\\x00\\x02\\x28\\x28\\x70\\x89\\x92\\\r\n\\xad\\x92\\x54\\x87\\x81\\xa8\\x58\\x54\\x2a\\x6c\\xd1\\x71\\x82\\x58\\xa0\\x55\\\r\n\\x61\\x10\\x63\\xfc\\x0e\\x4a\\x80\\x22\\xe4\\x0e\\x83\\x8a\\x28\\x71\\xd0\\x9c\\\r\n\\x49\\x15\\x5c\\x92\\x6c\\x22\\x00\\xf9\\x07\\x91\\x99\\x01\\xb3\\xfe\\x44\\x6b\\\r\n\\x0e\\xe2\\xfd\\x9d\\x62\\x21\\xd9\\x09\\x1c\\x64\\x5b\\xb2\\x50\\x55\\xa2\\x20\\\r\n\\xed\\xd2\\x0b\\x05\\x5b\\x10\\x60\\xf8\\x82\\x28\\x7d\\x64\\x77\\x2c\\x06\\x93\\\r\n\\x06\\x28\\xa0\\xa8\\x20\\x25\\xb0\\xb1\\x31\\xd2\\x19\\x23\\xd0\\x72\\xc8\\x1a\\\r\n\\x74\\x41\\x9b\\x95\\x95\\x65\\xe5\\x41\\xaa\\xc8\\x42\\x02\\x19\\x3c\\x06\\x89\\\r\n\\x45\\x51\\x82\\xa9\\x3a\\x79\\x00\\x7d\\x14\\x91\\xaa\\xa0\\x30\\x22\\x31\\x60\\\r\n\\x68\\x8e\\xef\\x6c\\x02\\x07\\x90\\x3b\\x41\\xa5\\xc3\\xc1\\xa6\\x04\\x32\\x40\\\r\n\\x50\\x35\\x58\\x26\\x85\\x1e\\x99\\x8b\\x74\\xd1\\x3c\\x93\\x00\\x90\\x96\\x88\\\r\n\\xab\\xf0\\x61\\x4c\\x32\\xb5\\xd3\\x8e\\x1f\\x49\\x17\\x92\\xc5\\x40\\x49\\xa4\\\r\n\\x20\\xa8\\x91\\x81\\xe9\\x92\\xd0\\x40\\xfd\\x19\\x90\\x3a\\xc0\\xb9\\xfa\\x03\\\r\n\\x5b\\x0a\\x58\\x61\\xef\\xb8\\xb1\\x6a\\x29\\x4d\\xcb\\x5c\\xc5\\x02\\xc5\\xe0\\\r\n\\x14\\xab\\x00\\xa4\\xcb\\x44\\x50\\x8c\\x80\\x2d\\x7b\\x92\\x5b\\x13\\x75\\xbb\\\r\n\\x27\\xe4\\x0c\\x99\\x7a\\x55\\x1f\\x99\\x56\\xea\\x1d\\x0e\\x97\\x49\\xeb\\x37\\\r\n\\x40\\x2a\\x89\\x39\\x5f\\xbb\\x2f\\xe8\\x58\\x0d\\x54\\xd5\\x94\\x4e\\x34\\x55\\\r\n\\xcf\\x56\\xaa\\x96\\x3e\\x5f\\x8a\\x41\\x0a\\x17\\x27\\x1c\\xd8\\xc0\\x02\\x28\\\r\n\\x12\\x62\\x04\\xab\\xa7\\x4f\\x45\\x60\\x20\\x88\\x21\\x2c\\x36\\x3d\\x1f\\x40\\\r\n\\xc1\\x9e\\x11\\xe8\\xf2\\x1c\\x00\\x0f\\x07\\x30\\x06\\x91\\x26\\x12\\x52\\x04\\\r\n\\x80\\x10\\x4c\\xe7\\x7a\\x4c\\x26\\xde\\x89\\x30\\x58\\x7c\\x2a\\x0f\\x03\\x90\\\r\n\\x80\\x30\\x21\\xc0\\xf7\\x67\\x38\\x60\\x6b\\xa2\\xc4\\xe4\\x53\\xc1\\x44\\xbc\\\r\n\\xe4\\xb2\\x4e\\x5c\\x00\\xf9\\x86\\x3a\\x7b\\x28\\x58\\x9f\\x28\\xb2\\xcc\\x02\\\r\n\\x42\\x28\\x90\\xd5\\x05\\x18\\x81\\x88\\x8b\\x02\\x64\\x6a\\x89\\x02\\x29\\x5a\\\r\n\\xa3\\x17\\xdb\\x18\\x62\\x98\\x10\\xb5\\x82\\x94\\x50\\x25\\xa5\\x20\\x11\\x01\\\r\n\\x18\\x43\\x8b\\x4a\\x9c\\x4a\\xc4\\x54\\x11\\x11\\x3d\\x62\\x64\\x02\\x0e\\x58\\\r\n\\x86\\x93\\xdd\\x49\\x6c\\xea\\x14\\xc6\\x02\\x15\\x76\\x34\\x21\\x3b\\xe8\\x63\\\r\n\\xa1\\xa5\\xe9\\x82\\xde\\xf7\\xa0\\x2a\\x7d\\x25\\x74\\x3c\\xfb\\xc7\\x13\\x0e\\\r\n\\xa4\\xce\\x78\\x30\\x60\\x9d\\x53\\x11\\x8a\\x7e\\x41\\x69\\xeb\\xb2\\x4d\\x40\\\r\n\\x52\\x44\\x17\\x15\\xfa\\x40\\x82\\x46\\x3c\\x36\\x6b\\x8b\\x2d\\x9a\\x9c\\xb8\\\r\n\\xc4\\x50\\x15\\xb0\\xa3\\x1c\\x56\\xb7\\x19\\x86\\xe8\\x01\\x59\\x55\\xc5\\x30\\\r\n\\xc0\\x2b\\x06\\x52\\x2e\\x0e\\xd6\\x9f\\x68\\x8c\\x00\\xcf\\x5c\\x8a\\xa8\\xaa\\\r\n\\x63\\x38\\x1a\\xd0\\x84\\xe8\\x60\\x36\\xc9\\x26\\x4d\\xe0\\xa9\\xb0\\x84\\x68\\\r\n\\xa8\\x7e\\x0c\\x70\\x82\\x24\\x29\\x2c\\x65\\xd2\\x2d\\x06\\x04\\xeb\\x22\\xed\\\r\n\\x83\\x29\\x1a\\xc6\\x6a\\x6c\\xb5\\xe6\\xee\\x84\\x69\\xbb\\x56\\x85\\x40\\x4d\\\r\n\\x0b\\x05\\x5f\\x0c\\xd5\\x07\\xa0\\x20\\x89\\x0c\\x24\\x04\\xe0\\x37\\xb2\\xa1\\\r\n\\xf3\\x89\\x43\\x4c\\x9a\\xbd\\x94\\x83\\x3e\\x28\\x03\\x4a\\x1e\\x6f\\x0a\\xae\\\r\n\\x33\\x3d\\x18\\x80\\x60\\x5f\\x88\\xad\\x6e\\x1b\\xa2\\xfd\\xc7\\x82\\x11\\x02\\\r\n\\x70\\xa5\\x20\\x80\\x3d\\x37\\x29\\x48\\x90\\x2f\\x1f\\x52\\x03\\x62\\xf9\\x27\\\r\n\\x19\\xbb\\x10\\x26\\xf8\\xa8\\x14\\x52\\xc3\\x44\\x7e\\xf2\\xe8\\x7c\\x06\\x84\\\r\n\\x1e\\x68\\x00\\x17\\x42\\x40\\x3c\\x0f\\xc0\\x45\\xf4\\x00\\x14\\xb9\\xfc\\x29\\\r\n\\xa2\\xf0\\xfd\\x98\\x80\\xa2\\x95\\x99\\x6d\\xd0\\xc5\\x48\\xa9\\x2e\\xae\\x3c\\\r\n\\x2a\\x92\\x46\\x10\\x5f\\x00\\x0f\\x81\\xca\\xb6\\x16\\x70\\xd5\\xd6\\x62\\xed\\\r\n\\xc8\\x23\\x84\\x42\\xa7\\xca\\xa7\\xe8\\x20\\xdb\\x31\\x60\\xfd\\x03\\xd5\\x75\\\r\n\\x4d\\x31\\x15\\xf1\\x53\\x01\\x04\\xfa\\x3b\\xc6\\x14\\x06\\xb2\\x21\\x16\\xd1\\\r\n\\xf8\\x26\\x00\\x83\\x3c\\x2c\\xae\\x43\\xa9\\x46\\x2b\\x50\\xf3\\x25\\x48\\x80\\\r\n\\xa0\\x85\\x45\\x0a\\x03\\x47\\x47\\x86\\x47\\xf7\\x30\\xad\\x48\\x01\\x4c\\x29\\\r\n\\x18\\x3c\\xdb\\x96\\x62\\x39\\x36\\x9e\\x89\\x01\\xf2\\x15\\x0d\\xca\\x03\\xc0\\\r\n\\x8e\\x49\\x75\\x85\\x89\\x4a\\x34\\x18\\x71\\x40\\x00\\x62\\x25\\x52\\x86\\x73\\\r\n\\xf6\\x5a\\x38\\xb9\\x53\\x6c\\xb8\\x44\\xa8\\x1c\\xdc\\x94\\x8b\\xb8\\x40\\x04\\\r\n\\x97\\xca\\x34\\x25\\x11\\xc9\\x21\\x25\\x17\\x5d\\x2a\\x98\\x7f\\xb8\\xe4\\x08\\\r\n\\xb2\\xa1\\x6e\\x64\\x19\\x39\\x67\\x5e\\x04\\x8c\\x89\\xae\\x5a\\xba\\x8c\\x1f\\\r\n\\x65\\xef\\xeb\\xe4\\x09\\x66\\xf8\\x85\\x45\\x3d\\x96\\xfb\\x62\\x88\\x42\\x94\\\r\n\\xb6\\x90\\x05\\x2e\\x07\\x87\\x35\\xc7\\xcd\\xc8\\xc3\\x78\\x90\\x60\\xd3\\x13\\\r\n\\xbb\\x40\\x54\\xc2\\x68\\xa8\\x40\\xa9\\xaa\\xb0\\x30\\x4e\\x90\\x4d\\x88\\xfc\\\r\n\\x2b\\xa8\\xab\\xe4\\x23\\xd6\\xbc\\x8b\\x49\\xa0\\xf1\\x21\\xe6\\xd7\\x9b\\x42\\\r\n\\x23\\x20\\x60\\x0a\\xf5\\x68\\x22\\xad\\x02\\xe8\\x30\\x20\\x1b\\x39\\x11\\x80\\\r\n\\x05\\xe1\\x57\\x3b\\x0c\\x4e\\x24\\x62\\x92\\xa8\\xa3\\x29\\x07\\x1b\\x9d\\xb0\\\r\n\\xe7\\x5d\\x13\\x6c\\x5c\\x0d\\xe7\\xc9\\xd0\\x11\\x04\\x46\\x72\\x00\\xb0\\xe3\\\r\n\\x32\\xc4\\x26\\x69\\x03\\x21\\x20\\x8a\\x42\\x93\\x9e\\x51\\x6c\\x37\\x54\\xc2\\\r\n\\x85\\x26\\x8f\\x45\\x3e\\x00\\xa3\\x00\\x63\\x4c\\x86\\x2a\\x30\\x88\\x34\\x1f\\\r\n\\x2b\\x1c\\xc1\\x6c\\x24\\x06\\xa8\\x5b\\x61\\x5f\\x95\\x42\\x6a\\x28\\x51\\x7e\\\r\n\\x43\\x2c\\xb3\\x12\\xb5\\xae\\x04\\xc1\\x71\\x6a\\x50\\xa3\\xea\\xb5\\x80\\x4f\\\r\n\\x49\\x81\\x05\\x8b\\x24\\xc9\\xa7\\x11\\xc0\\x5b\\x54\\xa0\\x25\\x1a\\x72\\x1f\\\r\n\\x80\\x82\\x47\\x49\\x70\\xaf\\x82\\x81\\xe7\\x22\\x63\\x82\\xc5\\x0f\\x48\\xb3\\\r\n\\x5c\\x09\\xbb\\xb4\\x87\\x74\\xa4\\xa4\\x83\\x21\\x54\\x80\\x2c\\x42\\xe8\\x70\\\r\n\\x6c\\x95\\x08\\xb6\\xd3\\x11\\x11\\x88\\x2b\\x98\\x89\\x19\\x51\\x60\\xaf\\x0c\\\r\n\\x7a\\x04\\x80\\xf0\\x2c\\x23\\x4f\\x18\\x40\\x82\\xb5\\x10\\x83\\x82\\x6b\\x31\\\r\n\\x65\\x0c\\x7d\\x00\\x6d\\x09\\x49\\xc0\\xc5\\xa0\\x4a\\xc5\\x00\\x54\\xa2\\x29\\\r\n\\x54\\xf4\\xb8\\x2f\\xc0\\xbf\\xa5\\x22\\x50\\x95\\x05\\x13\\x06\\xf4\\xda\\xde\\\r\n\\x1e\\x89\\x06\\xd0\\xc5\\xd0\\xf2\\xa5\\x6d\\x54\\x45\\x52\\x34\\x81\\xa6\\x98\\\r\n\\x1f\\x33\\x85\\x06\\x05\\x99\\x9f\\x28\\x80\\x31\\xa8\\x27\\x14\\x16\\xae\\x29\\\r\n\\x0b\\x40\\x21\\x1f\\x93\\x4d\\x6a\\x37\\x71\\x3f\\x54\\x87\\x1c\\xd1\\x88\\x11\\\r\n\\xfb\\xd2\\x30\\xd8\\x7b\\x00\\xc2\\xb6\\x27\\x44\\xb5\\x18\\x35\\x44\\x60\\xda\\\r\n\\x2c\\xfa\\x0c\\x5e\\xbf\\x84\\x37\\x98\\x59\\xb2\\x41\\xc5\\x96\\xe5\\x1b\\xb0\\\r\n\\x7a\\x40\\x88\\xfd\\xb8\\x16\\xed\\x8f\\x11\\x53\\x18\\x6a\\x98\\x15\\x37\\xa9\\\r\n\\xb4\\x02\\x02\\xd6\\xa0\\x0f\\xec\\x52\\xde\\x15\\xa4\\x2f\\x14\\x15\\xd1\\x5d\\\r\n\\x20\\xba\\x25\\xe7\\x2c\\x18\\x14\\x57\\x80\\xa4\\x02\\xa3\\x40\\x79\\x14\\xe7\\\r\n\\x4a\\x1e\\xb4\\x0d\\xb1\\x01\\xa2\\x3a\\x67\\x8d\\x66\\x64\\xdf\\xa4\\x04\\x24\\\r\n\\x84\\x15\\xbc\\xb4\\xf0\\xe2\\x05\\x88\\x7d\\x48\\x81\\x4a\\x5a\\x6e\\xba\\x8e\\\r\n\\xe4\\x06\\x09\\x5a\\x05\\x59\\x18\\x1d\\x40\\x93\\x16\\xb4\\xd1\\xea\\x80\\xd4\\\r\n\\x97\\xd6\\xda\\xe6\\x99\\xc1\\x89\\xba\\x53\\x8c\\x10\\x91\\x24\\x94\\x2b\\x05\\\r\n\\xc0\\x2c\\x52\\x30\\xa8\\x03\\x2c\\xef\\x0a\\xb5\\xcb\\x90\\xa1\\x2c\\x06\\x2e\\\r\n\\xa6\\xa7\\x3e\\xd5\\x02\\x2e\\x1a\\x15\\x1e\\x22\\x6b\\x11\\x61\\x57\\xb3\\x08\\\r\n\\xe4\\x56\\x10\\x11\\x99\\xc0\\x53\\xd4\\xa4\\x70\\x55\\x23\\x55\\x9d\\xb7\\x1c\\\r\n\\x0a\\x24\\x5b\\xaf\\x4b\\x16\\x51\\x5b\\xfa\\xc3\\xb6\\xd6\\x5a\\x2e\\xdf\\xf3\\\r\n\\xc4\\x2b\\xcb\\xd6\\x6a\\xb3\\x8e\\xad\\xb1\\x66\\xb8\\xab\\x6d\\x56\\x62\\x08\\\r\n\\xfa\\xb1\\x88\\x6c\\x51\\x2f\\x77\\x23\\xa6\\x40\\xc2\\xc3\\x5f\\x01\\xd3\\xe9\\\r\n\\x96\\x0e\\x98\\x4a\\x89\\x80\\xa8\\xd5\\xa7\\x20\\xb6\\x18\\xa7\\x41\\x48\\xde\\\r\n\\xa5\\xa6\\x8a\\xf2\\xe8\\x43\\x06\\x22\\x18\\xc0\\xda\\xa4\\x73\\x31\\xdb\\x3d\\\r\n\\x1a\\x18\\x80\\xe6\\x1e\\x43\\x98\\xa8\\x92\\x82\\x89\\x2e\\x02\\xbb\\x3c\\xc6\\\r\n\\xe7\\x3c\\x51\\x32\\xa8\\xa9\\x1b\\x81\\x5d\\x84\\x24\\x2e\\x05\\x01\\xa0\\x90\\\r\n\\x01\\xb5\\xc0\\x71\\xa2\\xbc\\xb4\\x86\\x5e\\x05\\x93\\xc0\\x42\\xb8\\xda\\xa0\\\r\n\\x04\\x43\\xc0\\xb2\\x69\\x00\\x86\\x34\\x14\\x50\\x4c\\xa9\\xa8\\x94\\xf5\\x07\\\r\n\\xa1\\xd2\\xcd\\x6c\\x41\\x0c\\x77\\x1b\\xa5\\xe0\\x60\\x41\\x4d\\x48\\x09\\x09\\\r\n\\x92\\xa0\\x24\\x7e\\x09\\xf2\\xcb\\x45\\xe6\\x00\\x9e\\x2e\\x17\\x18\\x6d\\xe0\\\r\n\\x5c\\x41\\x52\\x14\\x10\\x0b\\xc1\\x02\\x18\\xf2\\xa4\\x60\\x81\\xa0\\x29\\x01\\\r\n\\x0e\\x5c\\x7d\\xa2\\x20\\xe9\\x76\\xd8\\x48\\x48\\x64\\xda\\xcf\\x94\\x2e\\xbe\\\r\n\\x3e\\xc2\\x81\\xf5\\x30\\x41\\x00\\x8c\\x84\\xa1\\xbb\\x10\\x90\\x20\\xd6\\x15\\\r\n\\x2a\\x82\\x34\\xe3\\x2d\\x03\\xc0\\x58\\xbd\\x23\\x00\\x86\\xd2\\xa1\\xf9\\xfd\\\r\n\\x46\\x0b\\xa7\\xc0\\xa2\\x20\\x5c\\xc0\\xe1\\x52\\x4e\\xa0\\x65\\x8c\\x0d\\x47\\\r\n\\x33\\xaa\\x86\\xcc\\x67\\x81\\x60\\xa6\\x81\\x2e\\x9f\\x34\\x15\\x52\\xb0\\x84\\\r\n\\x1b\\x05\\x57\\x72\\x14\\x89\\x55\\x9d\\xba\\x92\\x95\\xae\\x36\\xad\\x06\\xb3\\\r\n\\xaa\\x12\\x06\\xe0\\xb0\\x57\\x9b\\x90\\x80\\x5c\\x85\\xab\\xca\\xe2\\xb4\\x35\\\r\n\\x6d\\x12\\xe1\\x28\\x42\\x6f\\xcb\\x3c\\x28\\x0a\\x49\\x97\\x64\\xe2\\x50\\xa5\\\r\n\\x00\\x57\\x83\\x10\\x59\\x85\\x21\\x52\\xbc\\x40\\x15\\x48\\xb9\\x5a\\xb0\\x03\\\r\n\\x3b\\xaa\\xa1\\x71\\xce\\x47\\xda\\x91\\xe9\\xea\\xfb\\x35\\x42\\x68\\x16\\x6d\\\r\n\\x6a\\x9d\\x5a\\xbc\\x16\\x14\\x9e\\x93\\x01\\x10\\xa0\\xfa\\x71\\x47\\x86\\x82\\\r\n\\x19\\x5a\\x3b\\x51\\xb1\\xc7\\xf5\\xb7\\x03\\x91\\x7e\\x2a\\x20\\x44\\x50\\xd6\\\r\n\\x0d\\x02\\x3d\\x5f\\x52\\xde\\x4e\\x5a\\x39\\x44\\x00\\x0c\\x9a\\x28\\x4b\\x4e\\\r\n\\x41\\x57\\xdb\\x49\\x62\\x7a\\x41\\x88\\x6c\\xda\\xfa\\x82\\x76\\x59\\xc4\\x2d\\\r\n\\x01\\x82\\x50\\x0b\\xe8\\x7d\\x1b\\xc6\\x0a\\x54\\x8c\\xa0\\x44\\x00\\x4f\\x00\\\r\n\\x78\\x68\\x94\\x69\\x91\\x1a\\xc2\\xfa\\xd4\\x00\\xcb\\x9e\\x14\\x2c\\xdd\\xa0\\\r\n\\x63\\xe1\\xc5\\x10\\x01\\x50\\x18\\x9e\\x2c\\xb6\\x30\\xab\\x38\\x41\\x8d\\x82\\\r\n\\x40\\x68\\xa3\\x03\\x0f\\x0b\\x60\\x80\\xa0\\x18\\xa8\\xf0\\x0e\\x80\\x40\\x42\\\r\n\\xa8\\x87\\x83\\xf9\\x3f\\xb8\\xf6\\xda\\x12\\x00\\x39\\x19\\x15\\x0e\\x8c\\xc3\\\r\n\\x65\\xe1\\x1c\\x54\\x67\\x1a\\xa0\\x15\\x68\\xac\\x4d\\x7c\\x37\\x12\\xa2\\xa2\\\r\n\\x15\\x68\\x0d\\x42\\x00\\x08\\x71\\x7f\\xb9\\xaa\\x7a\\x00\\x99\\x32\\x81\\x05\\\r\n\\x1c\\x68\\x50\\x28\\xc2\\x17\\x48\\x5d\\x11\\x1f\\x21\\x7a\\xc0\\x20\\x47\\x12\\\r\n\\x26\\xc2\\x85\\x8a\\x21\\x09\\x0c\\xb4\\x6a\\xc7\\x28\\x8c\\x52\\x02\\x04\\x07\\\r\n\\x14\\xfd\\x55\\x07\\x9a\\xd6\\xe2\\x6e\\x42\\x92\\x54\\xf4\\x12\\x80\\x15\\x9a\\\r\n\\x6a\\x25\\x56\\x39\\x99\\xbf\\x0f\\x22\\xe9\\x0f\\x26\\x3a\\x02\\xa8\\x6e\\xb3\\\r\n\\x38\\x22\\x06\\x24\\x82\\x0c\\x30\\x42\\xd6\\x2f\\x30\\x18\\x12\\x99\\x0f\\xa4\\\r\n\\x91\\x6a\\x28\\x64\\x57\\x3a\\x2c\\x4b\\x8c\\x55\\x34\\xc9\\x8f\\x2a\\xa1\\x51\\\r\n\\xc7\\x3a\\xdc\\x31\\xd1\\x0a\\x91\\xdd\\x63\\x71\\x29\\x2d\\x08\\x01\\x50\\xa0\\\r\n\\x72\\x74\\x6b\\xed\\xa7\\x96\\x85\\x32\\xc1\\x4e\\x11\\x45\\x42\\x12\\x2a\\xb3\\\r\n\\x08\\x55\\x1a\\xa9\\xcd\\x7c\\xa7\\x9c\\x30\\x2a\\xa3\\x04\\xa4\\x29\\xa7\\xb4\\\r\n\\x2f\\x24\\x4c\\x11\\x82\\xd1\\x4a\\x78\\x84\\x11\\xd7\\x62\\x9f\\x6f\\x07\\xa8\\\r\n\\x78\\x42\\x52\\x48\\x50\\x10\\xfd\\x4e\\x91\\x3b\\x5a\\xd4\\x8f\\x95\\xfe\\xd6\\\r\n\\xa2\\x06\\x1b\\x89\\x04\\xf0\\xcb\\xec\\xbb\\x5a\\x91\\x9d\\x10\\x52\\x45\\x88\\\r\n\\xc2\\xf0\\x17\\x22\\xe9\\x37\\x65\\x81\\x1f\\xbf\\x1a\\xce\\x6a\\x27\\x19\\x16\\\r\n\\xd1\\xab\\x02\\x9a\\x44\\xde\\x94\\xee\\x8c\\xaf\\x51\\x49\\x51\\x40\\x26\\xd4\\\r\n\\x51\\x02\\xe0\\x56\\x95\\x08\\x30\\x10\\x04\\x8a\\xcc\\x1d\\x04\\xe0\\x0b\\xd3\\\r\n\\x46\\x9a\\xe4\\x68\\x29\\x14\\x41\\x26\\xf0\\xf0\\x81\\x20\\x24\\xe4\\x20\\x8f\\\r\n\\x84\\x2d\\x2d\\x3d\\xff\\x00\\x71\\x53\\x4c\\x0b\\x74\\x13\\x0f\\x67\\x41\\x88\\\r\n\\x57\\xae\\x14\\x15\\x04\\x44\\x92\\x08\\xaf\\x19\\x9a\\x10\\x61\\xc9\\x55\\xf6\\\r\n\\x89\\xf4\\xa7\\x08\\x09\\xe1\\x8a\\x38\\x20\\x10\\x14\\x80\\x05\\xbf\\x0f\\xa9\\\r\n\\x98\\xb7\\x82\\x58\\x1c\\x1b\\x7c\\x18\\x20\\xac\\x81\\xfa\\x0c\\x12\\x02\\x3c\\\r\n\\xf6\\x56\\x0b\\x26\\x0f\\xa0\\x5c\\x80\\xc1\\xfe\\xc0\\x6a\\x9c\\x02\\x1c\\x23\\\r\n\\x01\\xd9\\x5b\\xf1\\x2b\\xe8\\xde\\x11\\x54\\xfa\\x98\\x4d\\x84\\x48\\x81\\x69\\\r\n\\x40\\x1e\\x25\\x12\\xde\\xb1\\x75\\x7a\\x81\\x01\\x53\\xf6\\x4d\\x42\\x12\\xaa\\\r\n\\x00\\x80\\xb5\\x78\\x67\\xec\\x20\\xd0\\xc5\\x95\\x46\\x21\\x66\\xf8\\x98\\x16\\\r\n\\xc6\\x15\\x43\\x43\\x69\\x85\\x58\\x35\\xb6\\x25\\x99\\x38\\xe4\\x62\\x51\\xbc\\\r\n\\xad\\xef\\xec\\x24\\x95\\xda\\x3c\\x26\\x67\\xc0\\x9a\\x8b\\x0a\\x31\\xc4\\xba\\\r\n\\x30\\xc6\\x3e\\x1c\\xb8\\xcd\\x85\\x4c\\xa0\\x61\\x43\\xe4\\x2c\\x11\\x5c\\x3e\\\r\n\\x2d\\x44\\xa9\\x76\\x54\\x0e\\xc0\\x7f\\xa0\\xf0\\x21\\xb1\\x6d\\x6c\\x44\\x78\\\r\n\\xa5\\x7d\\x54\\x7d\\x26\\x08\\x92\\xa9\\x17\\x0a\\xe0\\x94\\x0d\\x48\\x5a\\xa9\\\r\n\\x27\\x30\\x32\\x78\\xb4\\x1c\\xce\\x83\\x7e\\x96\\xf8\\x0b\\x54\\x04\\x61\\xff\\\r\n\\x00\\x81\\x49\\x1a\\x87\\x00\\xe8\\x4a\\x41\\xf1\\x2f\\xc5\\x15\\x01\\x51\\x1f\\\r\n\\x54\\xe6\\x60\\xb7\\x06\\x03\\x43\\x55\\x4f\\xe8\\x81\\x96\\xd3\\x34\\xf0\\x68\\\r\n\\x30\\x09\\x21\\xa4\\xf0\\x45\\x62\\x01\\x1b\\xbf\\x66\\x8a\\x10\\x1d\\x53\\x6a\\\r\n\\x84\\x31\\x38\\x28\\x02\\xad\\x55\\x5b\\x83\\xd1\\xbb\\xf3\\x11\\x4c\\xb4\\x69\\\r\n\\xa9\\x28\\x0a\\x28\\x13\\x74\\x83\\xa2\\x25\\xa0\\x62\\x98\\x35\\x29\\x00\\xa2\\\r\n\\x48\\x5d\\x30\\x11\\x3d\\xd0\\xad\\x37\\x0f\\x08\\x9c\\xc0\\x00\\x8d\\xd0\\x82\\\r\n\\x86\\xcd\\xb8\\x50\\xec\\x20\\x4a\\xa6\\x29\\x60\\x68\\x18\\xa6\\x96\\x40\\x38\\\r\n\\x30\\x42\\x4a\\xc2\\xda\\x3f\\x5f\\x04\\x57\\xc9\\xc0\\x2b\\x42\\x25\\xa7\\x15\\\r\n\\x03\\x53\\x25\\x17\\xaa\\x07\\x6a\\x32\\xc4\\x4f\\xb2\\x5b\\x06\\xa1\\x47\\xd5\\\r\n\\x65\\x78\\x19\\x8d\\x59\\x42\\xad\\xa3\\x69\\x3e\\xf9\\xe0\\x86\\x2d\\xd0\\x78\\\r\n\\xda\\xb5\\x28\\x9d\\x17\\x87\\x85\\x41\\xaa\\xc0\\xad\\xa2\\xa8\\xb4\\x22\\x3b\\\r\n\\xc3\\x20\\x51\\x43\\x40\\xcc\\x82\\x6a\\xa8\\xba\\xa4\\x4d\\x1b\\x75\\xc3\\x28\\\r\n\\x98\\x10\\x78\\x39\\x3f\\x0f\\x16\\x16\\xa7\\x55\\x02\\xbc\\x43\\x44\\xb1\\xc1\\\r\n\\x00\\xca\\xed\\x86\\x6e\\x9a\\xfa\\x0f\\x5c\\x0b\\xe4\\x7a\\xdd\\x6e\\xe9\\x2d\\\r\n\\x0e\\x3b\\x77\\xa0\\x52\\x20\\xa4\\xc1\\x86\\xa1\\xad\\xf4\\x45\\xbe\\xb6\\xa9\\\r\n\\x7e\\xcb\\x9a\\x5a\\x94\\x45\\x54\\x07\\xbc\\xf9\\x3d\\x04\\x01\\x79\\x0a\\x95\\\r\n\\xf2\\x2b\\x81\\x17\\xc0\\x80\\x04\\x26\\x38\\x48\\x01\\xa6\\xe0\\x84\\x81\\xdc\\\r\n\\x95\\x80\\x20\\x03\\x0a\\x3a\\xa6\\x9a\\x69\\xa3\\x03\\x78\\x61\\x3c\\x53\\x40\\\r\n\\x43\\xce\\x93\\x7f\\xbd\\x30\\x59\\xa0\\xd9\\xe5\\x40\\xc7\\x74\\xf6\\xa0\\x45\\\r\n\\x5a\\x9e\\x6d\\xcf\\xbc\\x31\\x14\\xc5\\xdf\\x5a\\x06\\x02\\xf1\\x55\\x42\\x5a\\\r\n\\x1b\\xc2\\xad\\x13\\xc0\\xc7\\xa5\\xb6\\x11\\xd0\\xa8\\x08\\xb6\\x40\\xa0\\x00\\\r\n\\xb8\\x5d\\x6c\\x5e\\x49\\x50\\x21\\x15\\x99\\x33\\xc8\\x2d\\xf7\\xe3\\xf4\\x72\\\r\n\\x26\\x8e\\x1d\\xee\\x22\\xd0\\x2a\\x94\\x53\\x48\\xa3\\x55\\x67\\x3a\\x44\\xae\\\r\n\\x50\\x1c\\x2c\\x0b\\xd6\\x25\\xc9\\xa7\\x2d\\x5a\\x94\\x0b\\x48\\x00\\x2a\\x0b\\\r\n\\x7f\\xa9\\x61\\xb0\\x0e\\x04\\x84\\xc2\\x1c\\x68\\x6a\\x64\\x04\\x58\\x54\\x0e\\\r\n\\x9e\\x39\\x73\\x6c\\x8d\\x50\\xe0\\x01\\x79\\xa5\\x2b\\x25\\xc1\\xab\\xea\\x20\\\r\n\\xba\\x65\\x72\\x04\\x7d\\x23\\xc2\\x8d\\xbe\\x25\\x22\\x13\\x51\\x40\\xad\\x44\\\r\n\\x02\\x25\\xa4\\xe8\\x67\\x40\\xc5\\x8a\\xc5\\xb4\\xa4\\xa5\\xa3\\x56\\xb0\\x94\\\r\n\\x73\\x40\\x36\\xdc\\x87\\xa4\\xe1\\x08\\x8d\\x09\\x4e\\x09\\xbf\\x03\\x11\\xc0\\\r\n\\xd7\\x8f\\x30\\x2c\\xea\\x05\\x55\\x29\\x40\\x4e\\x56\\x71\\x2b\\x0f\\x82\\x01\\\r\n\\x62\\x26\\x68\\x41\\x0e\\x2e\\x85\\x49\\x87\\xa5\\xcc\\x22\\x52\\xc1\\xc0\\x62\\\r\n\\x06\\x10\\x84\\x56\\xd3\\x5e\\x04\\xe7\\x40\\x8e\\xbc\\xa2\\xc0\\xc4\\x60\\x37\\\r\n\\x25\\x70\\x0c\\x02\\x9f\\x4b\\x88\\x02\\x05\\xb8\\x05\\xf5\\x14\\xea\\x98\\xdd\\\r\n\\x52\\xa4\\xf4\\x3a\\x24\\x79\\x80\\xf2\\x08\\xa9\\x70\\x30\\x05\\x1a\\xbd\\xf9\\\r\n\\x83\\xd6\\x48\\xf7\\x80\\x80\\x95\\x15\\x83\\xcd\\xad\\x3c\\x01\\x2d\\x05\\x02\\\r\n\\x22\\x48\\x57\\xe2\\xd1\\x0e\\x65\\x65\\x6c\\x82\\xc0\\x40\\x1c\\x1b\\xa1\\x40\\\r\n\\x6c\\x4e\\x10\\x8e\\x6c\\x2a\\xd6\\x0a\\x8d\\x11\\x0b\\xa2\\x2d\\xd9\\xf3\\x94\\\r\n\\x5d\\x12\\x9a\\x14\\x1b\\x94\\xe5\\xa6\\x89\\x15\\x0b\\x84\\xb6\\x80\\x7c\\xf0\\\r\n\\x60\\xe8\\x1f\\x30\\x0a\\x58\\xe7\\x22\\x98\\x02\\x3d\\x6d\\x14\\xdb\\x8a\\x02\\\r\n\\x14\\x10\\x0c\\xa0\\xa5\\xe9\\x0e\\xc3\\x6c\\x6a\\x76\\x21\\x40\\xc0\\x03\\x43\\\r\n\\x69\\x0a\\x9c\\x82\\x3c\\xc3\\x41\\xa3\\xe8\\x11\\x9d\\xe1\\x37\\x26\\x19\\x01\\\r\n\\x11\\x15\\x3c\\x13\\x46\\x49\\x45\\x8b\\xf5\\x50\\x20\\x2a\\x41\\xe3\\xf3\\x64\\\r\n\\x56\\x15\\x40\\x69\\x04\\xb8\\x00\\x12\\x1c\\xf3\\x51\\x7c\\x8d\\x49\\x6a\\x1a\\\r\n\\x40\\x51\\xcd\\x69\\xd0\\x46\\x95\\x30\\x81\\x22\\x55\\xce\\xf9\\xc9\\xc3\\x0e\\\r\n\\xa3\\x0c\\x81\\x9b\\xfa\\x1e\\x92\\x21\\x26\\x04\\x41\\x63\\x2a\\xa3\\x8a\\xab\\\r\n\\x6a\\xa8\\xd1\\x82\\x01\\x5a\\xaa\\x88\\x7e\\x00\\x38\\x2b\\x4a\\x8b\\x25\\xf4\\\r\n\\x20\\x50\\x80\\x7e\\x63\\x81\\x93\\x7d\\x08\\x62\\xd5\\x54\\x44\\xa3\\x7f\\x07\\\r\n\\x24\\xf8\\xab\\x79\\x94\\x8d\\x0c\\x05\\xa4\\x0a\\x4e\\x57\\xc6\\x91\\x08\\x53\\\r\n\\x15\\xa0\\x20\\x7e\\x20\\x40\\x52\\x98\\xd2\\x95\\x70\\x92\\x13\\x34\\x21\\x42\\\r\n\\x85\\xbc\\x39\\xc5\\xa0\\x93\\x0a\\xa6\\x3e\\x04\\x2c\\x20\\x6b\\xef\\x40\\xc9\\\r\n\\x04\\xee\\x95\\x4c\\x21\\x03\\x47\\x3a\\x89\\xbb\\x8f\\x07\\x00\\x7a\\xcb\\x7c\\\r\n\\xc8\\x81\\x2d\\x14\\x8f\\xc4\\x4f\\x44\\x05\\x8e\\x04\\xaf\\x40\\x74\\x84\\x90\\\r\n\\x42\\x44\\x31\\x1f\\x78\\xf4\\x74\\x14\\x2b\\x44\\x8e\\x1a\\x7c\\x41\\x08\\x86\\\r\n\\xb2\\x4c\\x6f\\x42\\x89\\x21\\x87\\x6d\\x87\\xf0\\x26\\x10\\x83\\xa4\\x48\\x13\\\r\n\\x18\\x19\\x3e\\x08\\x48\\x6a\\xdd\\x79\\x81\\x64\\x85\\xb6\\x43\\x87\\x82\\x36\\\r\n\\x00\\x44\\x89\\x18\\xd5\\x63\\x94\\xc5\\x4f\\x5a\\x90\\x03\\x29\\x45\\x56\\xe1\\\r\n\\x98\\x02\\x10\\x4b\\x09\\xf8\\x42\\x92\\x4e\\x07\\xcc\\x7a\\x01\\x0a\\x11\\xb5\\\r\n\\x02\\x0c\\x10\\xf8\\xfa\\xc7\\x05\\x15\\x30\\x7d\\x05\\x92\\xc6\\x44\\xc1\\xf6\\\r\n\\x3c\\xd0\\x44\\x60\\x10\\x20\\x5a\\xf8\\x94\\xa8\\x02\\x2b\\x59\\xaa\\x1d\\x9c\\\r\n\\x54\\x1b\\x5f\\x42\\xc5\\xe8\\xd4\\x05\\xe2\\xa9\\x72\\x50\\xc1\\x1a\\xb4\\xd0\\\r\n\\x45\\x08\\xd4\\xaf\\x4f\\x5c\\x1d\\xee\\x82\\x56\\xd8\\x89\\x35\\xcf\\x1a\\x0f\\\r\n\\x08\\x7d\\x89\\xcc\\x37\\x16\\x1a\\x92\\x6c\\x60\\xd0\\xf3\\x21\\xb0\\xa0\\x69\\\r\n\\x38\\xf3\\x76\\xc3\\x69\\xbd\\x42\\x20\\x42\\x89\\xc9\\xc8\\xb5\\x02\\x7b\\xe8\\\r\n\\x57\\x04\\xa8\\xa9\\xb0\\xa9\\x03\\x22\\x90\\x14\\xd1\\x88\\x71\\x27\\xbd\\x56\\\r\n\\x89\\x37\\x49\\x02\\xda\\x71\\x16\\x50\\x87\\x98\\xbe\\xb0\\x40\\x86\\x12\\x8f\\\r\n\\xd0\\x5c\\x0b\\x32\\xd8\\x84\\x0e\\x09\\xd7\\x51\\xff\\x00\\x8b\\xe5\\xf9\\x96\\\r\n\\xa8\\x19\\x70\\x06\\xca\\x27\\x29\\xb8\\x9b\\xd3\\xf3\\xd2\\x4c\\xa8\\x42\\x75\\\r\n\\xdd\\xa6\\x43\\xd1\\xd9\\x92\\x46\\x66\\x5e\\x51\\xb8\\x29\\x51\\xc9\\xc4\\x31\\\r\n\\x01\\xb1\\x2e\\x4f\\x60\\x4c\\xb4\\x8f\\xaa\\x46\\x2c\\xb5\\xe1\\xf4\\x10\\x8b\\\r\n\\xb6\\x6e\\x66\\xd2\\x13\\xa0\\x54\\x97\\x70\\xcf\\x11\\xf4\\xb5\\x3e\\xab\\xdb\\\r\n\\x1b\\xc7\\x2c\\x6a\\x91\\x51\\x45\\xa3\\x11\\x47\\x69\\xd3\\x34\\x02\\x82\\xf4\\\r\n\\x8a\\x32\\x43\\xf0\\x91\\x30\\xda\\x2b\\xf8\\x2b\\x58\\x51\\x02\\x9d\\x3a\\xdc\\\r\n\\x50\\xb1\\x64\\x5a\\x91\\x39\\x9f\\x00\\x0c\\x51\\xc6\\xf1\\x23\\x13\\x02\\x22\\\r\n\\xe2\\xa8\\x8f\\x06\\xc8\\xd0\\x1a\\x81\\xac\\x92\\xa5\\x55\\x8d\\xe0\\xa0\\x20\\\r\n\\x08\\x21\\x4a\\xfd\\x26\\x21\\x6a\\x87\\x45\\x01\\x72\\xe0\\x88\\x19\\x3e\\x10\\\r\n\\x10\\xfe\\x12\\x8c\\xe0\\x41\\xc4\\x50\\x4d\\x82\\x80\\x80\\x43\\x86\\x2b\\x9d\\\r\n\\xa0\\xcf\\xe0\\xa0\\x95\\x25\\xd0\\x70\\x50\\x12\\x95\\xa0\\xb1\\xa3\\x8a\\xf8\\\r\n\\x47\\x05\\xed\\x72\\x80\\x38\\x8a\\x8a\\x81\\xf5\\x2e\\x79\\x03\\x4a\\x3c\\x00\\\r\n\\xea\\x09\\x17\\x53\\xd0\\x09\\x87\\x78\\xcd\\xa4\\x25\\xf4\\xb3\\x81\\x15\\xae\\\r\n\\x36\\xb6\\xb7\\x5e\\x6e\\x30\\x72\\x16\\x43\\x4a\\x11\\xc2\\x19\\xab\\x6f\\x2a\\\r\n\\x4f\\x48\\x40\\x29\\x15\\x79\\xa5\\x36\\x25\\xa0\\x5e\\x17\\x48\\x41\\x35\\x03\\\r\n\\x87\\xcd\\x8d\\x90\\xf0\\x02\\xaa\\xa2\\x86\\x97\\x16\\x0a\\x0b\\x93\\x1c\\xc8\\\r\n\\x09\\x82\\xec\\xb9\\xb1\\x82\\x32\\x80\\x12\\x10\\x22\\x6a\\x00\\x6a\\x51\\x0e\\\r\n\\x58\\x5a\\x6d\\x58\\x14\\x88\\x81\\x57\\x38\\x40\\xf1\\x8d\\x32\\xb5\\xbb\\x4d\\\r\n\\xe2\\x00\\xe3\\x41\\xcc\\x8d\\x3d\\xb4\\xc8\\x25\\x08\\x21\\x42\\xb5\\x38\\x73\\\r\n\\x22\\xd5\\x4f\\x5b\\x47\\x87\\x3d\\x92\\x1c\\x19\\x28\\x04\\x9e\\x24\\x40\\x12\\\r\n\\xe0\\x9f\\x9e\\x8a\\x94\\x49\\x61\\xf5\\x45\\xcf\\xd2\\x80\\xa7\\xdf\\x9c\\x6e\\\r\n\\x46\\x2c\\x68\\xe6\\x0a\\x44\\x7e\\x9a\\xb4\\x72\\x7c\\xa8\\xe5\\xf2\\x56\\x9c\\\r\n\\x68\\xe9\\x14\\xef\\xa5\\xe8\\xde\\x44\\x47\\x22\\x82\\x21\\x54\\xf0\\xac\\x7f\\\r\n\\x10\\x24\\x85\\x8a\\x23\\xd0\\x31\\x83\\x57\\x81\\xb0\\x15\\xab\\x0b\\x18\\x5c\\\r\n\\x4a\\xca\\x13\\x9f\\xf1\\xe1\\x61\\xd0\\x4e\\x56\\xa3\\x41\\xe1\\x7b\\x78\\x12\\\r\n\\x20\\x30\\x08\\x34\\x02\\x00\\xcb\\x4d\\x29\\x9b\\xd7\\x09\\x51\\x71\\x42\\x08\\\r\n\\x02\\x96\\x4d\\x82\\x60\\x1d\\xb6\\x09\\x9e\\x29\\xe8\\xaa\\x4a\\x14\\xbc\\x6b\\\r\n\\x17\\x24\\x14\\x12\\x98\\xbb\\xbb\\x57\\x47\\x08\\x25\\x36\\xf8\\xbe\\x41\\x64\\\r\n\\xf2\\x46\\xcc\\x04\\x01\\x95\\x50\\x22\\xeb\\x3e\\x9c\\xec\\x42\\xfc\\x2c\\x67\\\r\n\\x82\\xa9\\x43\\x33\\x25\\xbe\\x1a\\x85\\xd8\\xa8\\xcb\\x75\\xb3\\x20\\x2e\\x60\\\r\n\\x00\\xb9\\xe3\\x30\\xbf\\x11\\x54\\xdd\\x17\\xe3\\x32\\x52\\x93\\x48\\x45\\x35\\\r\n\\x3e\\x40\\xf0\\xae\\x8b\\x51\\x66\\xcd\\x10\\x1a\\xa8\\x90\\xca\\x07\\x95\\x32\\\r\n\\x93\\x21\\xd2\\xb5\\xa4\\x3d\\x40\\x74\\x86\\x80\\x8f\\x84\\xde\\x15\\x25\\x74\\\r\n\\x23\\x34\\x52\\xcd\\x38\\xea\\xd1\\x56\\x42\\x62\\x5f\\x00\\x16\\xc6\\x6f\\x70\\\r\n\\x93\\xe1\\xda\\xbc\\x19\\xdf\\xd4\\x04\\x28\\x94\\x40\\xf4\\x0a\\xa8\\x1b\\xc4\\\r\n\\x90\\x20\\x86\\x96\\x8a\\x0a\\x56\\x0c\\xaa\\x29\\xe6\\x86\\x2e\\x52\\x03\\x4d\\\r\n\\x20\\xa0\\x20\\x7c\\x3c\\xee\\x44\\x7e\\xa5\\x48\\x64\\x39\\x3f\\x2b\\xa6\\x60\\\r\n\\x15\\x7a\\xb4\\x08\\x95\\x50\\x87\\x47\\xc1\\x31\\x1c\\x00\\xa6\\x08\\x1f\\xb4\\\r\n\\x24\\x61\\x1e\\x89\\xa9\\xc7\\xf7\\x1c\\x57\\xac\\x78\\xc3\\xba\\x16\\x85\\x8a\\\r\n\\x50\\x76\\x68\\x25\\x28\\x62\\xd2\\x1c\\x07\\x45\\x6c\\xa2\\xf7\\x23\\x12\\x20\\\r\n\\x50\\x8e\\x98\\x73\\x48\\x80\\x54\\x4d\\x2a\\x93\\x24\\x99\\xc5\\x07\\x34\\xed\\\r\n\\xa9\\x00\\x68\\x16\\x80\\x45\\xe0\\x57\\x0e\\x34\\xa5\\x65\\x35\\x16\\x05\\x02\\\r\n\\x0c\\x84\\x8a\\x3d\\x1c\\x12\\x1a\\x80\\x08\\x05\\x78\\x4a\\x3b\\x91\\x25\\x00\\\r\n\\x16\\x16\\x53\\xd6\\x9b\\x6c\\xa2\\xb2\\x28\\x89\\x0a\\x09\\x68\\x20\\x31\\xb1\\\r\n\\x00\\xd0\\x6c\\x45\\x12\\x88\\xa0\\x10\\x54\\xd2\\x23\\x14\\x5e\\xc9\\xb4\\x13\\\r\n\\x45\\x16\\x87\\xc2\\xe8\\x10\\xce\\x93\\x5b\\x53\\xf5\\xba\\x10\\x0a\\x29\\x3f\\\r\n\\x12\\x29\\xa1\\xc1\\xe2\\x1f\\xb8\\x14\\x48\\x2a\\x64\\x14\\xdd\\x30\\x10\\xd3\\\r\n\\xca\\xd0\\x35\\x12\\xc5\\xe1\\xaa\\x01\\x01\\x66\\xe3\\x0c\\xaf\\x2c\\xb6\\xa8\\\r\n\\x78\\x40\\x90\\x04\\x84\\x73\\x88\\x48\\xa8\\x0d\\x17\\x51\\x78\\xd2\\x42\\x89\\\r\n\\x41\\x00\\x7e\\x97\\x84\\x45\\x06\\x8a\\x76\\x4d\\x72\\x68\\xa2\\x94\\x33\\xe6\\\r\n\\x09\\x46\\x11\\x76\\x00\\x66\\xfa\\x64\\x14\\x2a\\x46\\xb1\\x21\\x46\\xa4\\x50\\\r\n\\xa6\\xaa\\xc3\\xe1\\x9e\\x8d\\x68\\xa8\\xd4\\x8c\\x91\\x4c\\x78\\x88\\x6a\\x23\\\r\n\\x1f\\x7c\\xe4\\xb7\\x18\\x10\\x41\\x42\\x32\\x09\\x17\\x0e\\x2b\\xe0\\x94\\xe6\\\r\n\\x3b\\x5a\\xa5\\x0a\\x90\\xa4\\x39\\x0c\\x0e\\xa0\\x15\\xd1\\x06\\xea\\x81\\x7a\\\r\n\\x39\\xfb\\xd7\\x84\\x76\\x96\\x93\\x23\\x09\\x37\\xd4\\x58\\xef\\xa7\\x3c\\x19\\\r\n\\xa5\\x97\\xd3\\x60\\xaf\\xa5\\xb9\\x23\\xe7\\x3a\\x54\\x15\\xeb\\x80\\x78\\xf8\\\r\n\\x29\\x04\\x28\\x48\\xcc\\x3d\\x11\\xb4\\x44\\xf3\\xcf\\x46\\x25\\x74\\x69\\x9c\\\r\n\\x44\\x46\\x09\\x23\\x40\\xd3\\x4e\\xa0\\xcd\\x9c\\x17\\x95\\x48\\x28\\x1d\\x00\\\r\n\\x6a\\xe9\\x0c\\x12\\xab\\x1d\\x18\\x69\\x32\\x0e\\xc3\\x43\\xa3\\xc2\\x0a\\x1a\\\r\n\\x70\\x0b\\xb6\\xe2\\x3e\\x22\\x9f\\x23\\xf0\\x1f\\x11\\xd1\\x54\\x5c\\xb0\\x64\\\r\n\\x96\\x13\\x44\\x6b\\xf1\\x54\\xa9\\x18\\x50\\x4a\\xad\\x4a\\x82\\xc1\\xec\\x48\\\r\n\\xb1\\x10\\x2c\\xa5\\x35\\xc0\\x19\\x96\\x68\\x7e\\x87\\x3c\\x4c\\x08\\xca\\xe0\\\r\n\\x0d\\x14\\x10\\x56\\x0c\\x7a\\x86\\x0b\\x9e\\x98\\xe6\\xdb\\x48\\xb2\\xb8\\xaf\\\r\n\\x3f\\xb0\\x70\\x19\\x45\\x33\\x8d\\xa4\\x21\\xec\\x1a\\x32\\x69\\x70\\xe1\\x8e\\\r\n\\x2a\\x00\\x7c\\x3b\\xc0\\x42\\xc1\\x0c\\x4d\\x04\\xa0\\xa1\\x67\\xe8\\x34\\xbd\\\r\n\\x04\\x84\\x5f\\xc1\\xe1\\x95\\xd6\\x6a\\xbd\\x17\\x40\\x22\\x0a\\xd2\\x88\\x1e\\\r\n\\x33\\x6e\\x7f\\xbf\\x78\\x0b\\xfe\\x84\\x7e\\xfc\\xd7\\xfa\\xfd\\xf9\\xe7\\x54\\\r\n\\x69\\x14\\x17\\x47\\x09\\x02\\xda\\x18\\x85\\x82\\x2d\\x2e\\x61\\x02\\x48\\x31\\\r\n\\x28\\x07\\x00\\x78\\xe0\\x48\\x16\\xb0\\x3c\\x49\\x0c\\xc1\\xf8\\x08\\xe8\\x5b\\\r\n\\xde\\x1a\\x88\\x86\\x46\\xd4\\x58\\x3d\\xe7\\x65\\x60\\x84\\x06\\xac\\x38\\x0d\\\r\n\\x51\\x12\\x20\\xa5\\xac\\x2a\\x2c\\x88\\x19\\x27\\x00\\x5c\\xeb\\xa2\\x12\\x9d\\\r\n\\x18\\x03\\x2c\\xaa\\x60\\x63\\x44\\x50\\x8d\\x54\\x45\\x17\\x6a\\x54\\x25\\x57\\\r\n\\x76\\xe1\\x06\\x01\\x40\\x03\\x00\\x2c\\x50\\x14\\xe2\\x58\\x49\\xca\\x01\\x36\\\r\n\\x62\\x6e\\x49\\x5b\\x2a\\x27\\x35\\x68\\x25\\x50\\x00\\x00\\x70\\x08\\x28\\x57\\\r\n\\x76\\x2c\\x41\\x43\\xb0\\xb5\\x8b\\x41\\xd3\\x5c\\x3a\\x99\\x15\\x20\\xca\\xa0\\\r\n\\x3d\\xac\\xe0\\x36\\x30\\x63\\x51\\x3e\\x02\\x25\\x2a\\x8a\\x20\\x62\\x8a\\xd5\\\r\n\\x0b\\x47\\xd5\\x83\\x58\\xd6\\xfa\\x60\\x84\\xe2\\x88\\xba\\x4b\\x31\\xfa\\xad\\\r\n\\x11\\xa3\\xdc\\x3c\\x32\\xce\\x92\\x4c\\x42\\x80\\x48\\x8d\\x71\\x68\\x95\\xf2\\\r\n\\x30\\x09\\x70\\xd0\\x15\\xad\\x77\\x94\\x99\\xb7\\x40\\x85\\xbd\\x0d\\x69\\x04\\\r\n\\xab\\xec\\x66\\x96\\xa1\\x82\\xa7\\xa6\\x99\\x4b\\x00\\xc4\\xeb\\x51\\x04\\x58\\\r\n\\x98\\x83\\x48\\xe0\\xa1\\x42\\x20\\x70\\x4c\\xf2\\xc5\\xc0\\x2b\\x00\\x91\\x8f\\\r\n\\x46\\x0d\\x91\\x5b\\x56\\xb3\\xee\\x21\\x40\\x4c\\x21\\x75\\x54\\x22\\x08\\x48\\\r\n\\x04\\x22\\x48\\xaa\\xac\\xec\\x0c\\xd0\\xed\\x00\\x68\\xb4\\xb2\\x8a\\x00\\x08\\\r\n\\x97\\xc8\\xcc\\x98\\x58\\x81\\x41\\x5a\\x32\\xa8\\x20\\x01\\x3f\\xc9\\xe9\\x8d\\\r\n\\x5c\\x11\\x50\\x6c\\x4c\\xb2\\x20\\xf9\\x44\\x14\\xc5\\x1f\\x2c\\x44\\x66\\xcc\\\r\n\\x75\\x92\\x76\\x86\\x36\\x48\\x70\\x05\\xe1\\x3d\\xf1\\xc2\\x8f\\xb0\\x4d\\x50\\\r\n\\x43\\x83\\x07\\xf8\\x12\\xbc\\x1c\\xb6\\x8e\\x42\\xf7\\x31\\x5a\\x15\\x60\\x45\\\r\n\\xfd\\xe4\\x57\\x82\\x69\\xf9\\x70\\x6a\\x8d\\x07\\x41\\xbb\\x13\\xa4\\x75\\x8a\\\r\n\\x1a\\x85\\x01\\x68\\x22\\xa3\\x13\\x1e\\x45\\xa8\\x7b\\x51\\x10\\xd2\\xc0\\x88\\\r\n\\xb6\\x82\\x05\\xe1\\x0f\\xd8\\xaa\\x05\\x14\\x03\\x4c\\x84\\x59\\xa0\\xe0\\x01\\\r\n\\x6e\\x06\\x08\\xd3\\x0d\\x2d\\xb4\\x7a\\x75\\x2a\\xa3\\x60\\x0d\\x0a\\xa8\\x0c\\\r\n\\x89\\x2f\\x08\\xaa\\xe2\\xad\\x83\\x58\\x5a\\x00\\x42\\xa0\\xe1\\x16\\xfb\\xda\\\r\n\\x41\\x74\\x7e\\x8d\\x81\\x61\\x10\\xaf\\x4b\\x50\\x95\\xa4\\x2d\\x89\\x29\\x56\\\r\n\\x30\\xfa\\x3e\\xf6\\x8f\\xe6\\x17\\xce\\x94\\x33\\x42\\xb4\\x8c\\x83\\x99\\x19\\\r\n\\x6c\\xc4\\x31\\xda\\x0d\\x00\\xa2\\xbe\\x85\\x1e\\x58\\x06\\x9d\\x1f\\xaa\\x0f\\\r\n\\xe1\\xa5\\xf5\\xf9\\xe7\\x03\\xed\\x78\\xad\\x09\\x10\\x60\\x56\\x28\\x79\\x1c\\\r\n\\x4d\\xef\\x70\\xc0\\x10\\xd8\\x30\\x3e\\xd0\\xc1\\x55\\xc8\\x1c\\x80\\x25\\x59\\\r\n\\x0b\\x5f\\x66\\x51\\x63\\x88\\xf9\\xe5\\x25\\x2f\\xff\\x00\\xb0\\x88\\x15\\xc6\\\r\n\\x14\\x1c\\xb6\\xda\\x67\\x9a\\x01\\xd2\\x7f\\x2c\\x8b\\x01\\xc6\\xa1\\x55\\xc0\\\r\n\\x20\\x73\\x04\\x40\\xd5\\x12\\x7a\\x6b\\x66\\x29\\x5c\\xc5\\x2d\\x07\\x9c\\x60\\\r\n\\x08\\x94\\xc7\\x94\\xe6\\xac\\x8a\\x54\\x23\\x51\\x5f\\x44\\x17\\x3b\\x46\\x8c\\\r\n\\xe1\\x14\\xeb\\xbc\\xae\\xa5\\xce\\x82\\x5b\\x09\\xfd\\x20\\xb9\\x29\\x73\\x69\\\r\n\\x68\\xb0\\x40\\x35\\x27\\xeb\\x26\\xa7\\xe8\\xf3\\x6f\\x9c\\x86\\x62\\x02\\x6e\\\r\n\\x5d\\x15\\xad\\x40\\x3d\\xa3\\xe8\\xf0\\xd8\\xc3\\x62\\x4c\\x54\\x88\\x08\\x94\\\r\n\\xd8\\x01\\x7c\\xed\\xa7\\x6d\\x2e\\x14\\x02\\x4a\\x62\\x20\\xfd\\x7c\\x5e\\x7e\\\r\n\\xf1\\x02\\x24\\xd8\\x2c\\x34\\x5a\\xc5\\x12\\xe4\\x5b\\x16\\x90\\x2e\\xb5\\xa2\\\r\n\\xcd\\x48\\x03\\xa5\\xa4\\xb1\\x40\\x04\\x83\\xeb\\x09\\x2b\\xd5\\xf0\\x39\\x15\\\r\n\\x1a\\xa3\\x1b\\x40\\x24\\x02\\x40\\xb7\\xe0\\x10\\xe0\\xfb\\xed\\xcd\\x16\\x95\\\r\n\\x16\\x52\\x6c\\x12\\xf0\\x74\\x3b\\x8b\\x08\\x07\\xd8\\x35\\x26\\x84\\x03\\x32\\\r\n\\x11\\x9e\\x19\\x2c\\x5f\\x5a\\x49\\x21\\x88\\xa9\\x68\\x02\\x31\\x2a\\x06\\xf2\\\r\n\\x00\\x34\\x80\\x0c\\x24\\x02\\x8b\\xcc\\x40\\xae\\x85\\x69\\x6b\\xca\\x6e\\x7d\\\r\n\\xc1\\x6c\\x86\\x46\\x9c\\x4a\\xec\\xbc\\x57\\x67\\x89\\x42\\xe1\\xc0\\x85\\x39\\\r\n\\xd5\\x48\\x86\\x6e\\xc6\\xb2\\x1d\\x14\\x38\\x0e\\x3b\\x4b\\x04\\x12\\x08\\x22\\\r\n\\xe0\\x84\\xe4\\x5d\\xef\\xe9\\x03\\x03\\xc9\\xe9\\x30\\xd0\\x09\\xae\\xd2\\xe8\\\r\n\\xa1\\x24\\x2f\\x09\\x1a\\xe0\\x89\\x84\\x88\\x15\\x80\\x84\\x40\\x25\\xa8\\x55\\\r\n\\xc4\\x70\\x23\\x08\\x02\\x30\\x22\\x7f\\xd0\\xf7\\x94\\x10\\x0d\\x54\\x40\\x90\\\r\n\\x82\\x81\\xe0\\xf1\\x7c\\xa1\\xcc\\xbc\\x48\\x4d\\x0a\\xfd\\x95\\xff\\x00\\x84\\\r\n\\x7d\\xbb\\xe1\\x12\\x9a\\x6e\\xde\\x4d\\x8f\\xec\\x28\\xa6\\x83\\xc5\\x51\\x84\\\r\n\\xc6\\x83\\x41\\xc1\\x81\\x85\\xbc\\x59\\x9d\\xea\\x60\\x38\\x1b\\x17\\x3a\\xc6\\\r\n\\x21\\x93\\xd5\\x6b\\x40\\xab\\x0c\\x44\\xa5\\x1c\\xab\\x62\\x12\\x54\\xe4\\x7e\\\r\n\\x1e\\x02\\xa0\\x41\\xc0\\x86\\x10\\x75\\x54\\xf6\\xb4\\x29\\x5f\\x45\\x14\\x2e\\\r\n\\x15\\x1e\\xaa\\x27\\x0e\\x9a\\x00\\x69\\xe1\\x5d\\xe2\\x4b\\x71\\x5a\\x50\\xa8\\\r\n\\x44\\x22\\x57\\x90\\x6b\\x09\\x05\\x8d\\x94\\x17\\x63\\xf8\\x52\\x22\\x55\\x64\\\r\n\\x02\\x41\\x8a\\x42\\x07\\xb8\\x65\\x7f\\x3e\\x78\\x09\\xe1\\x49\\x01\\x48\\x5d\\\r\n\\x04\\xa5\\x2b\\xc8\\x01\\xc1\\x82\\x60\\xc6\\x15\\x13\\x08\\xf4\\x5d\\x65\\x3a\\\r\n\\x89\\xe0\\x39\\x86\\x04\\xa2\\x64\\xd0\\xb1\\xa2\\x9d\\x6c\\x86\\xa2\\xf8\\x94\\\r\n\\xe2\\x22\\x2e\\x64\\xa8\\xf2\\xc3\\x50\\x45\\x20\\x8c\\x10\\x18\\xb1\\x58\\x29\\\r\n\\x49\\xc5\\x18\\x6a\\x94\\x25\\x18\\xa0\\x2f\\x89\\xf2\\xd5\\x3d\\x42\\x42\\xb9\\\r\n\\x32\\x01\\x57\\x0c\\x6a\\x84\\x85\\x13\\x20\\x0d\\x42\\x55\\x18\\xf5\\x5c\\x45\\\r\n\\x75\\x2b\\x84\\x8d\\x12\\x14\\x3a\\x3f\\x8d\\x19\\x20\\x0b\\xfe\\x57\\x8f\\x81\\\r\n\\x18\\x82\\x08\\x58\\xea\\xa2\\x5f\\xb8\\xbb\\xcc\\x44\\xe8\\x14\\x09\\x83\\x68\\\r\n\\xd3\\x40\\xae\\xab\\x43\\xaa\\x3c\\xd3\\x85\\x8c\\x30\\x63\\x45\\x08\\x10\\xa1\\\r\n\\xaf\\x3d\\xe0\\x2a\\x95\\x31\\xd2\\x3a\\x88\\xa5\\xe0\\x94\\xce\\x20\\x1d\\x44\\\r\n\\xd7\\xc0\\x47\\x80\\xb1\\xe0\\x40\\xe1\\xb4\\xe2\\xc7\\x70\\x68\\x21\\x23\\x27\\\r\n\\xba\\x14\\x1b\\x42\\x88\\x12\\x17\\x40\\x4a\\x42\\x30\\xe0\\x1f\\x46\\x4c\\x58\\\r\n\\x1a\\x94\\x53\\x70\\x1e\\x99\\x71\\xc4\\x0b\\xa1\\x53\\x1e\\x87\\xae\\x06\\x39\\\r\n\\x69\\xf3\\xba\\xfa\\xa8\\x97\\x55\\x16\\xef\\xc2\\x8f\\x95\\x5c\\x30\\x22\\x2a\\\r\n\\x44\\x4a\\x23\\x54\\x43\\x34\\x54\\x00\\xaa\\x10\\xcf\\x06\\xea\\x42\\x55\\x30\\\r\n\\xe2\\x54\\x07\\x7d\\xea\\xba\\xd2\\x2b\\x5c\\x56\\x05\\x4f\\x29\\x48\\x04\\x12\\\r\n\\x7d\\xac\\x03\\x88\\xcf\\x76\\xfd\\x82\\x0b\\x6f\\x84\\x18\\x00\\x40\\x60\\x38\\\r\n\\x98\\x5f\\x13\\x0e\\x98\\x20\\x50\\x61\\x11\\x09\\x2d\\xd4\\xa9\\x14\\x00\\x6c\\\r\n\\x52\\x06\\xf9\\x6a\\xf2\\x90\\xa1\\x43\\x7e\\xb7\\x38\\xff\\x00\\x10\\x22\\xe1\\\r\n\\x40\\x0a\\x01\\x09\\x05\\x0b\\x41\\xd7\\x8d\\x9c\\xf9\\x04\\x27\\xc2\\x44\\x46\\\r\n\\x3c\\x29\\xf3\\xfc\\xd0\\x38\\x01\\x98\\x55\\x16\\x4d\\x0f\\x0c\\x3e\\x22\\x98\\\r\n\\xa8\\x41\\xaa\\x49\\x11\\xd3\\x58\\x13\\x88\\x53\\x96\\xa8\\xa3\\x4b\\xb1\\x11\\\r\n\\x20\\x4e\\x04\\x6a\\x16\\x11\\x86\\x31\\x01\\x0d\\xd9\\xad\\x72\\xff\\x00\\x1b\\\r\n\\xf7\\xd0\\xc3\\x1b\\x48\\x3e\\x8c\\x91\\x41\\x60\\x8b\\x60\\x2e\\x2c\\x74\\x40\\\r\n\\x8e\\x08\\x14\\x8c\\x94\\x01\\x8e\\x9a\\x48\\x83\\xd2\\xb0\\x5d\\x1a\\x77\\x06\\\r\n\\x4f\\x40\\x99\\x0b\\x88\\x33\\x88\\xbb\\xde\\xa9\\x50\\x6a\\xa4\\x40\\xa7\\x23\\\r\n\\x9f\\x55\\x19\\x85\\x80\\x9d\\x01\\x88\\x15\\x18\\x02\\x8a\\x8b\\xc0\\x06\\x92\\\r\n\\x36\\x80\\x09\\x11\\x19\\x44\\x12\\xbb\\xdb\\x16\\xa1\\x22\\x46\\x21\\xa1\\xcd\\\r\n\\xc6\\x11\\x2a\\x54\\x03\\x9e\\x24\\x28\\x4c\\xd1\\x4e\\x58\\xf2\\xb3\\xe9\\xe9\\\r\n\\x75\\x5e\\x55\\x2b\\xa6\\x83\\x98\\x54\\xb4\\xb3\\x47\\xf8\\x34\\x00\\x6a\\x7e\\\r\n\\xa7\\x79\\x32\\xc7\\xd2\\xc1\\x51\\xbe\\xb6\\xb7\\xee\\xaa\\x37\\x79\\xb2\\x20\\\r\n\\x5a\\xa4\\x20\\x55\\x72\\xba\\x8f\\x9c\\x3c\\xb4\\x0a\\x2c\\xa8\\x05\\x0e\\x25\\\r\n\\x80\\x6a\\x13\\x8c\\xef\\x81\\x65\\xb7\\xe0\\x64\\x83\\x65\\x57\\x92\\x34\\x09\\\r\n\\xc1\\x92\\x41\\x08\\x7b\\x98\\x61\\xe0\\x58\\x9f\\x12\\x13\\x77\\x55\\x6e\\x13\\\r\n\\xe4\\xc2\\xc4\\x7e\\x8e\\xd4\\x54\\x97\\xbc\\x8b\\x80\\xa5\\x50\\xc1\\x29\\x60\\\r\n\\x00\\x6b\\x64\\xe0\\xa1\\xa3\\x57\\xa8\\x91\\x10\\xc0\\xf9\\xa1\\x04\\x44\\x77\\\r\n\\xb2\\xd1\\xa5\\x00\\x70\\x1b\\x51\\x56\\x94\\x3c\\xe6\\x5c\\xc1\\x33\\x0d\\x08\\\r\n\\xa5\\x4b\\x31\\x42\\x30\\x6a\\x01\\xfe\\xb7\\x17\\xcf\\xd2\\x2a\\x7e\\xf8\\x79\\\r\n\\xde\\x76\\x4a\\x69\\xac\\xc0\\x50\\x0a\\x8b\\xe3\\xee\\x46\\x36\\xa8\\x82\\x58\\\r\n\\x9c\\x50\\x56\\x92\\xa6\\x11\\xaa\\xb1\\xf8\\x30\\xbe\\xea\\x8c\\x58\\x2c\\x80\\\r\n\\x3f\\x7a\\x6e\\xd8\\x05\\xca\\xae\\xa2\\x8f\\xa4\\x45\\x76\\x51\\x11\\x39\\x9a\\\r\n\\xe1\\x18\\x88\\xe9\\x09\\x17\\x10\\x99\\xcb\\xc4\\xb6\\x3c\\xc0\\xc0\\x83\\xa2\\\r\n\\x80\\x1c\\xc9\\xa1\\x6f\\x22\\x45\\xb0\\x51\\x6a\\xe1\\xf5\\xe1\\x63\\x88\\x46\\\r\n\\x08\\x7a\\x20\\x0d\\x60\\xac\\x41\\x07\\x36\\x82\\x88\\xd6\\x0b\\x34\\xb2\\x6b\\\r\n\\xa1\\x4a\\x5d\\xfc\\xcb\\x43\\x07\\xfa\\xc4\\xc8\\x9f\\x47\\xf9\\xca\\xd8\\x19\\\r\n\\x94\\x09\\x75\\x9e\\x31\\xd1\\x08\\x9a\\x6f\\x0d\\x02\\x53\\x04\\x80\\xe2\\x48\\\r\n\\x12\\x92\\x2d\\x0a\\xc7\\x52\\xd1\\x2c\\xb4\\xa2\\x90\\x52\\xd3\\x8d\\xa3\\x38\\\r\n\\x29\\xa8\\x02\\x9c\\xe4\\x13\\x0b\\x1a\\xa1\\x3d\\x31\\x1d\\xa1\\x85\\xe3\\x42\\\r\n\\x26\\xfd\\x43\\x40\\x86\\x24\\x83\\xaa\\x6c\\xbc\\xcd\\x7b\\x8f\\xc1\\xc4\\x27\\\r\n\\x79\\x15\\xa6\\x10\\x09\\xe4\\x64\\x48\\x23\\x65\\x78\\x88\\x53\\x38\\xb0\\x01\\\r\n\\x41\\xb0\\x0c\\x70\\x9c\\xfa\\x49\\x09\\xd8\\x08\\x9e\\x60\\x27\\x00\\x90\\x4f\\\r\n\\xca\\xad\\x4a\\xab\\x93\\x02\\xc9\\x50\\x58\\x12\\x40\\x9d\\x06\\x25\\x98\\x01\\\r\n\\xa0\\x70\\x06\\x5a\\x24\\x2d\\x46\\x13\\x50\\x1d\\x1a\\xac\\x91\\x6b\\xa6\\xd1\\\r\n\\xe5\\x96\\xb7\\x05\\xe3\\xa0\\x9f\\x10\\xa8\\x92\\xb8\\x84\\x85\\x52\\x40\\xb0\\\r\n\\x18\\x50\\x7d\\x52\\xae\\x03\\x00\\xb4\\x38\\xc4\\xb1\\xb2\\xa2\\xd5\\x5a\\x52\\\r\n\\x00\\x5d\\xa3\\x3e\\x86\\x46\\x5f\\xf0\\xf0\\x11\\x16\\xc5\\x70\\x9c\\x1f\\x52\\\r\n\\x70\\xab\\xa8\\x55\\x9a\\x04\\xf1\\x9c\\xb2\\x93\\x22\\x79\\xaa\\x17\\x22\\x78\\\r\n\\xf8\\x06\\xf2\\x42\\x46\\xe3\\x9a\\x64\\x24\\x4b\\x50\\x8d\\x16\\xa1\\x8d\\x44\\\r\n\\x2c\\xee\\x4d\\x08\\x0a\\x3b\\xd3\\xef\\x16\\x06\\xb1\\x4c\\xc3\\x10\\xf5\\x5a\\\r\n\\x33\\xae\\x9a\\x71\\x54\\x74\\x15\\x44\\x50\\x86\\x06\\xf0\\x0b\\x13\\x51\\xa4\\\r\n\\x8a\\xbc\\x41\\x02\\xb8\\x9f\\x3e\\xa3\\x4d\\xeb\\xbe\\x28\\x12\\xe0\\x37\\xd6\\\r\n\\x7f\\x0d\\xc6\\xdd\\x8c\\xa5\\xcc\\xb9\\x52\\xbe\\x40\\x3a\\x0d\\x89\\x32\\x05\\\r\n\\x56\\x3c\\x35\\x0e\\x37\\x0e\\x80\\x08\\x12\\xe0\\x02\\xe1\\x61\\x8d\\xd7\\x64\\\r\n\\x0d\\x3f\\x48\\xca\\x9a\\x75\\xb5\\x52\\x20\\x52\\xcc\\x5c\\xd3\\xcc\\x0d\\x70\\\r\n\\x72\\xe7\\xf7\\x85\\xae\\xe1\\x5e\\xe1\\x5e\\xa0\\x1e\\x4b\\xde\\x35\\x22\\x42\\\r\n\\x01\\x0f\\x92\\x61\\xf0\\x11\\xb9\\x08\\x58\\x04\\x78\\x2e\\xa0\\x3f\\x69\\xdc\\\r\n\\x0c\\x30\\x41\\x78\\x90\\x76\\xfc\\x43\\xea\\x51\\xa2\\x90\\xb2\\x5b\\xaa\\xde\\\r\n\\xc4\\xf8\\x58\\x20\\x26\\xa2\\xa8\\x7b\\xbe\\xfb\\x9b\\xe4\\xb2\\x37\\xe0\\x2d\\\r\n\\x53\\x44\\x0f\\xa7\\xd3\\x7c\\xce\\x66\\x06\\xb2\\xc0\\x04\\x8f\\xa0\\x89\\x01\\\r\n\\x82\\xac\\x3a\\xb2\\x49\\xf1\\x1e\\x22\\xbc\\x28\\x37\\x6d\\x05\\x63\\x91\\x8c\\\r\n\\x31\\x1a\\x82\\x01\\x88\\x05\\x45\\xa0\\xb7\\x73\\x8a\\x46\\x45\\xa5\\x26\\xc3\\\r\n\\x62\\x48\\xca\\x67\\xef\\x13\\x11\\x50\\x0c\\x0f\\xbc\\x2c\\x2d\\x00\\x27\\xc5\\\r\n\\xc5\\x73\\xb5\\x82\\xf8\\x03\\x15\\x12\\xba\\x3e\\x91\\xba\\x34\\xd3\\x41\\x42\\\r\n\\x91\\xb4\\x80\\xdd\\x51\\x6b\\x26\\x94\\x70\\x16\\x1a\\xe4\\x17\\x46\\x2b\\x9c\\\r\n\\x52\\x10\\x11\\x04\\xb7\\xe9\\x05\\xe4\\x84\\x83\\x80\\xd4\\x66\\x57\\x01\\x55\\\r\n\\x54\\x41\\xac\\x56\\x9d\\x20\\x63\\xcd\\x16\\x0c\\x4a\\x0d\\x6f\\x9b\\xad\\xe4\\\r\n\\x33\\xd9\\x58\\x51\\x42\\x59\\xa5\\x70\\x08\\x85\\x89\\x20\\x09\\xe3\\x82\\x9f\\\r\n\\x42\\xb4\\x12\\x9a\\x37\\x60\\x0c\\x04\\x56\\x1b\\x2f\\x93\\x68\\x4a\\x20\\xd1\\\r\n\\x5c\\xe8\\xa4\\x21\\xbb\\x46\\x8c\\x2b\\x13\\x52\\x0d\\x48\\x69\\xce\\x9e\\x91\\\r\n\\x02\\x55\\x21\\xfa\\x4f\\x5e\\x94\\xe6\\x57\\x4c\\x45\\x11\\x8c\\xfa\\x12\\x91\\\r\n\\xa6\\x9e\\x25\\x82\\x96\\x86\\x03\\xae\\x94\\x1f\\xa8\\x3d\\xe9\\xb2\\x7a\\x22\\\r\n\\x39\\x05\\xdc\\xac\\x20\\x03\\x83\\x38\\x0f\\xe0\\xdb\\xea\\x16\\xbc\\x13\\x2b\\\r\n\\xce\\xcc\\x80\\x40\\xe4\\x01\\xda\\xa1\\x54\\x85\\x4b\\x91\\xc0\\x24\\x81\\xf2\\\r\n\\x80\\x07\\x4c\\x14\\xa3\\xc7\\x8b\\xcb\\x64\\x80\\x0a\\xc0\\x00\\x52\\x2f\\x90\\\r\n\\x30\\xad\\x53\\x54\\x45\\x0c\\x70\\xa6\\x32\\xb4\\x40\\x12\\x88\\x00\\xf2\\x67\\\r\n\\x86\\x92\\xa3\\x00\\x86\\xa3\\x50\\x40\\x63\\x9e\\x1c\\x6d\\x75\\x84\\x03\\x42\\\r\n\\x3e\\x5c\\x04\\x50\\x5e\\x2e\\xfa\\xae\\xc7\\xa8\\xcc\\x40\\xc8\\x05\\x15\\xc1\\\r\n\\x7f\\xb0\\x82\\xac\\xa4\\x1b\\xf0\\xa3\\xd7\\xdb\\x09\\xd3\\x6b\\x30\\x55\\xcc\\\r\n\\x58\\x0a\\xb0\\x17\\x41\\xc4\\xb5\\x4d\\x70\\xab\\x78\\x84\\xc2\\x10\\x23\\x83\\\r\n\\xf9\\xf4\\xa4\\xf4\\x16\\x8c\\x15\\x01\\x2a\\xf0\\x88\\x66\\x1a\\x38\\x44\\x10\\\r\n\\xf4\\x23\\x4a\\xb8\\xc8\\xce\\x0a\\x9d\\x05\\xd3\\x42\\xa4\\x4a\\x14\\xe2\\x08\\\r\n\\xc4\\x9b\\xc2\\x0a\\x0a\\x26\\x14\\x8f\\x36\\x09\\x71\\xa2\\x88\\xa3\\xfa\\xcd\\\r\n\\x04\\x18\\x7c\\xf3\\x94\\x5f\\x64\\x20\\x00\\xb2\\x28\\xbb\\x71\\x69\\x13\\x63\\\r\n\\x22\\x22\\x8a\\x00\\x48\\xad\\x52\\x32\\x80\\x44\\x8e\\xac\\x8e\\xc0\\xc4\\x44\\\r\n\\x2a\\xb8\\x30\\x00\\x70\\xb0\\x42\\x54\\x9c\\x14\\x94\\xa0\\xda\\xb3\\x8c\\x44\\\r\n\\x68\\xca\\x91\\x62\\xd0\\x22\\x47\\x9b\\xa7\\x56\\x3a\\xe6\\x24\\x7a\\x70\\xd5\\\r\n\\x28\\x08\\x3c\\x0e\\x5c\\x0d\\x6c\\xe3\\xee\\x2c\\xf2\\x6d\\x71\\x4e\\x27\\xf0\\\r\n\\x44\\x81\\xa3\\x91\\x2a\\x79\\x05\\xf7\\x7a\\x32\\x39\\x65\\xac\\xa6\\xae\\x54\\\r\n\\x2c\\x4c\\x8e\\x80\\x47\\x85\\x9a\\x10\\xe0\\x78\\x89\\x42\\xa7\\x92\\x87\\x90\\\r\n\\x03\\xe7\\x8e\\x7b\\xc6\\x90\\x5b\\xd2\\x6a\\x51\\x32\\x08\\xe7\\xf0\\xb0\\xfa\\\r\n\\x17\\x11\\x48\\xa8\\xc4\\xff\\x00\\x2c\\x84\\xd1\\xc4\\x4a\\xf4\\x28\\x16\\x0a\\\r\n\\x2d\\x85\\xe1\\x75\\x69\\x62\\x09\\xd9\\x88\\xcc\\xd4\\xb4\\x6d\\xc0\\xa7\\x3d\\\r\n\\x83\\xd2\\x2d\\x0a\\xbb\\x26\\x53\\x98\\x45\\x00\\x29\\xe9\\x09\\xe4\\x21\\x74\\\r\n\\x1a\\x6c\\x05\\x44\\x5c\\xce\\x07\\xa6\\x93\\x3f\\x94\\xb1\\x42\\x41\\x1d\\x1e\\\r\n\\x2b\\x55\\x65\\x18\\x6e\\x59\\x05\\x0c\\x68\\x63\\xce\\x8a\\x8a\\x14\\x4b\\x65\\\r\n\\x98\\xc3\\xa2\\xc1\\xd6\\x08\\xb1\\x02\\x0c\\x10\\x60\\xa0\\x38\\x10\\x6b\\x78\\\r\n\\x2a\\x8d\\x63\\x00\\xc1\\xa0\\x1f\\x2a\\x89\\xfd\\xab\\xc2\\x11\\x4a\\x4a\\x92\\\r\n\\xd4\\x42\\x31\\x49\\xd8\\x79\\x82\\x80\\x11\\xb0\\x03\\x26\\x72\\x08\\x3c\\x6f\\\r\n\\xcb\\x0e\\x3f\\xdd\\x17\\x21\\xa3\\x65\\x16\\x92\\x83\\x42\\xa0\\x30\\x6c\\xc5\\\r\n\\xac\\x0c\\xc1\\x48\\x09\\xf3\\xff\\x00\\x07\\xad\\xa8\\xa1\\xb6\\x36\\xa8\\x62\\\r\n\\x5a\\xac\\x0c\\xba\\x2f\\x91\\x61\\x2d\\x30\\x0a\\x98\\xd4\\x07\\xa2\\xb8\\x11\\\r\n\\x11\\x69\\xad\\x32\\x06\\x41\\xca\\x52\\xb2\\xa0\\x42\\x56\\x0f\\x48\\x26\\xc0\\\r\n\\x90\\x42\\x3f\\xc9\\x89\\xa4\\x41\\x15\\x1a\\xa1\\x60\\x68\\x49\\x0f\\xe8\\xa7\\\r\n\\x69\\x29\\x21\\x5e\\xe9\\xf7\\x71\\x44\\xb0\\x53\\x67\\x2d\\xe4\\xe4\\xa8\\x30\\\r\n\\x28\\x01\\xc2\\x63\\xb6\\x3f\\x39\\x01\\xc6\\xde\\x03\\x44\\xc9\\xf9\\x77\\xe6\\\r\n\\x96\\xbc\\xce\\x01\\x90\\x52\\x7c\\xdf\\x21\\x5f\\x01\\xf4\\x07\\x38\\x00\\xb0\\\r\n\\x00\\x6a\\xc3\\x55\\x82\\x8a\\xd0\\x81\\x57\\x87\\xa9\\x4b\\x92\\x09\\x45\\x74\\\r\n\\x52\\x29\\xf5\\xe7\\x1c\\x21\\x92\\x3a\\x89\\xb3\\x49\\x2c\\x58\\x2c\\x1b\\xaa\\\r\n\\x0c\\xd5\\x01\\x59\\x8d\\xe4\\x8b\\x54\\x18\\xb2\\x57\\x0b\\x49\\x0c\\xa8\\x78\\\r\n\\x01\\x74\\x22\\x12\\x61\\x18\\xa5\\x21\\xa6\\xab\\xc8\\x48\\x59\\x43\\x96\\x2f\\\r\n\\xeb\\x5f\\xa4\\x48\\x4a\\x9f\\x43\\xac\\xea\\x9f\\x82\\x84\\x10\\x2b\\x91\\x20\\\r\n\\x1f\\xcc\\x35\\x69\\x44\\x8a\\x15\\x33\\x6f\\x82\\xa6\\x32\\x67\\xf9\\xd9\\x98\\\r\n\\x00\\x17\\x01\\x18\\xf5\\x0a\\x42\\x11\\x02\\x8d\\xe2\\x12\\xd1\\x21\\x1c\\x05\\\r\n\\x23\\xf8\\x57\\xc4\\x62\\x5c\\x0a\\xa1\\xd1\\xa0\\x28\\x10\\x5f\\x03\\x53\\xd6\\\r\n\\xb3\\x8a\\xa4\\x90\\x50\\x44\\x6d\\x80\\xac\\x4d\\x43\\xfb\\x78\\x31\\x01\\x61\\\r\n\\x9a\\x21\\x0c\\x05\\x8d\\xf3\\xdb\\xf7\\x85\\x1c\\x92\\x94\\x58\\xa8\\xc4\\x00\\\r\n\\x14\\x5a\\xa1\\x68\\x3d\\x66\\xaa\\x0c\\xc4\\x3c\\x33\\x00\\x14\\x87\\x04\\xad\\\r\n\\x1f\\x90\\x50\\x41\\x16\\x05\\x0a\\x05\\x01\\x02\\xc9\\xbe\\xb0\\xa5\\xf6\\x31\\\r\n\\x82\\x8c\\xb4\\x1c\\x31\\x37\\x48\\x7d\\x78\\x52\\x06\\xa8\\x38\\xb6\\x00\\x37\\\r\n\\x54\\x91\\x05\\x2c\\x82\\x94\\x87\\x19\\x94\\x01\\x42\\xaf\\x94\\x90\\x80\\x25\\\r\n\\x65\\x41\\x00\\xba\\x10\\xa2\\xa9\\x84\\xa0\\x50\\x24\\xd4\\x8d\\x08\\xb0\\x26\\\r\n\\x22\\xa2\\x61\\xea\\x9a\\x84\\x02\\x85\\x38\\x87\\x2d\\xf0\\x82\\x13\\x6e\\x95\\\r\n\\x72\\x02\\x43\\xa9\\xb6\\x2c\\xb7\\x86\\x01\\x01\\x4c\\x25\\x95\\x6f\\x52\\x35\\\r\n\\x20\\x20\\x10\\xaa\\xdf\\x46\\x79\\x06\\x76\\xf9\\x29\\x2d\\x97\\xd0\\xa0\\x7c\\\r\n\\x09\\xf1\\x2f\\x3d\\x0c\\x97\\x5d\\x35\\x82\\x11\\x8a\\x2f\\xc6\\x03\\xca\\x40\\\r\n\\x04\\xd4\\x53\\x40\\x21\\x10\\x65\\x17\\x90\\xf6\\xc7\\x00\\xc4\\x02\\xa3\\x2e\\\r\n\\x8d\\x1a\\x15\\x25\\x6a\\x59\\x7d\\xf5\\x6e\\x62\\x41\\xd1\\x2d\\xc1\\xf9\\xc2\\\r\n\\xac\\xa8\\xcb\\xe0\\xc2\\x4b\\xc2\\x41\\xf3\\x03\\x32\\x5e\\x14\\x2b\\x80\\x9e\\\r\n\\x45\\x45\\x24\\x81\\x2d\\xa4\\x31\\x09\\x8f\\x0a\\xb2\\x40\\x82\\xf1\\x2c\\x42\\\r\n\\x12\\x40\\x9f\\x03\\xb9\\x37\\x0f\\x0d\\x40\\x4b\\x01\\x05\\x9d\\xc4\\xbb\\x73\\\r\n\\xeb\\x55\\x10\\x98\\xaa\\x35\\x02\\x21\\xf0\\x0c\\x14\\x41\\x2c\\x14\\x8b\\x90\\\r\n\\x07\\x86\\x7e\\x7a\\x42\\x4b\\x11\\xb7\\x06\\x13\\x01\\x78\\xa2\\x1a\\x18\\x28\\\r\n\\xd2\\x2b\\x46\\xf8\\xd0\\x2e\\x16\\x86\\x90\\x9c\\x18\\x00\\xb2\\x84\\xf1\\x4d\\\r\n\\xe7\\xd1\\x44\\x2b\\x29\\x55\\x68\\x03\\x34\\xbc\\x0c\\x98\\xb4\\x4d\\x64\\x81\\\r\n\\xa8\\x50\\x12\\x80\\x3e\\x21\\xc8\\x30\\xa5\\x31\\x03\\x21\\x40\\x53\\xc5\\x61\\\r\n\\x78\\x42\\xd5\\xac\\xa8\\x08\\x41\\x42\\xb8\\x44\\xe9\\xc1\\x74\\x68\\x82\\xa9\\\r\n\\x9e\\x36\\xcb\\xca\\xd8\\xc1\\x59\\xf1\\xe2\\xd2\\xd0\\x28\\x04\\xd5\\x4d\\xc3\\\r\n\\x50\\xe4\\xa0\\x70\\xf4\\x54\\xb5\\x13\\x2f\\x02\\x63\\xd3\\xc3\\xc1\\x13\\x08\\\r\n\\x66\\x32\\x8b\\xa5\\x88\\xc4\\x11\\x45\\x78\\x88\\x08\\x6d\\x6a\\xd2\\xaf\\xc9\\\r\n\\x51\\xa8\\xb8\\xab\\xd9\\xcb\\x4b\\x8e\\x0b\\x3d\\x18\\x03\\x87\\x4a\\x28\\xb3\\\r\n\\x68\\x19\\x76\\xe2\\xb2\\x02\\x33\\x00\\x3d\\xe5\\x52\\x08\\x59\\x4b\\x18\\x84\\\r\n\\x6f\\xf4\\xfe\\x3c\\x29\\x85\\x3d\\x46\\x38\\x95\\x15\\xfa\\x45\\x5e\\x5e\\xbb\\\r\n\\x72\\x90\\x91\\x3e\\xc6\\x52\\x91\\xa4\\x04\\xf3\\x92\\x09\\x4b\\x16\\xb0\\x93\\\r\n\\x68\\x24\\x28\\x40\\xd0\\xd4\\xa5\\x70\\x4a\\x78\\xf3\\x4b\\x37\\x60\\xab\\x1a\\\r\n\\x35\\xe0\\x88\\x9b\\xa8\\x07\\xe6\\x0c\\x14\\x20\\xc7\\x2e\\x7b\\xd5\\x1d\\x21\\\r\n\\x4a\\x03\\xe1\\x8d\\xb2\\x74\\x90\\x0a\\x44\\x1e\\x75\\xca\\x2a\\x52\\x9b\\x79\\\r\n\\x12\\xa9\\x04\\x8f\\xa1\\x4d\\x54\\x03\\xc8\\x96\\xc3\\xd0\\xf0\\x5d\\x8c\\x03\\\r\n\\xc1\\xfd\\x1b\\xa2\\x3f\\x8b\\xd4\\x1c\\x3a\\x4a\\x09\\x0d\\x63\\x96\\x92\\x9b\\\r\n\\xc9\\x20\\xc4\\xac\\x00\\xe0\\x85\\x41\\xb0\\x08\\xa1\\xcc\\xd2\\x56\\x53\\x82\\\r\n\\x21\\x44\\x22\\x8c\\xad\\x0b\\x0b\\xc0\\x07\\x63\\x88\\xca\\x74\\xe8\\x83\\xf7\\\r\n\\x30\\xbc\\x45\\x8a\\xbf\\x02\\x84\\x78\\x3e\\x8f\\x36\\xa0\\xfb\\xd6\\x91\\x7c\\\r\n\\x2b\\x73\\x06\\x04\\x3c\\x22\\x45\\x13\\x51\\xe9\\xa2\\x96\\x60\\x89\\x48\\xa8\\\r\n\\xa3\\x9a\\x34\\xf3\\xe1\\x79\\x05\\x22\\x40\\x0b\\xe0\\x30\\xaa\\x89\\x93\\x54\\\r\n\\xcb\\xe1\\xc6\\x05\\x50\\x86\\x21\\x41\\x49\\xbf\\xc5\\xd4\\xf1\\x70\\x31\\x82\\\r\n\\x3d\\x11\\x29\\x14\\x5c\\xf4\\x2d\\x3d\\x2c\\xeb\\xe4\\x4b\\x70\\x40\\x1f\\x20\\\r\n\\xb1\\x5e\\x73\\x54\\xd4\\x82\\xb9\\xa0\\x23\\x11\\xf4\\xf5\\xc5\\x3c\\x44\\x04\\\r\n\\xc8\\x9b\\x5a\\x90\\x80\\xd4\\x42\\x87\\xdd\\x60\\x01\\x0c\\x7b\\x4c\\x95\\x2b\\\r\n\\x2b\\xc6\\xce\\x1a\\x8d\\x49\\x02\\xf1\\x77\\x46\\x03\\x20\\xde\\x51\\x80\\xe2\\\r\n\\x81\\xaa\\xe8\\xa8\\x06\\x2b\\xf0\\x76\\x70\\x12\\xb4\\x7d\\x03\\x21\\x88\\x05\\\r\n\\xf4\\x17\\x16\\xda\\xd1\\x48\\xc8\\x6a\\x24\\x2e\\x14\\xb2\\xb8\\xb2\\x71\\xa3\\\r\n\\x55\\x00\\x5a\\x2e\\xa0\\x1d\\x59\\x00\\x5f\\x29\\xc5\\x81\\x50\\x40\\xb7\\xcc\\\r\n\\x80\\x86\\x04\\x2e\\x89\\x1a\\x2a\\xd1\\x2a\\xb2\\x7c\\x16\\x22\\xab\\x15\\x37\\\r\n\\x84\\xb9\\x65\\x5c\\x11\\x4c\\x58\\xbe\\x38\\xd0\\x81\\xc1\\x98\\x1e\\x92\\xcc\\\r\n\\x8a\\x01\\x4a\\x0a\\x17\\x9e\\xc5\\x30\\x40\\x54\\x94\\x85\\x44\\x52\\x6b\\x0e\\\r\n\\x63\\xbc\\x42\\x79\\x41\\x4e\\x47\\x93\\x30\\x4b\\xca\\xc6\\x90\\x2d\\x99\\x12\\\r\n\\x93\\xba\\x41\\xce\\x23\\x77\\x14\\x38\\x05\\x19\\xf4\\x49\\x0e\\x1a\\xf5\\x0c\\\r\n\\x53\\x65\\xf5\\xc8\\x5b\\x75\\x51\\x20\\x9d\\x9e\\x94\\x28\\x1b\\x4f\\xfd\\x25\\\r\n\\x2c\\xf9\\xd7\\xa2\\x0b\\x15\\x7e\\xfa\\xc2\\xdf\\x75\\x20\\xf5\\xc4\\x9e\\x00\\\r\n\\x66\\x4a\\xb4\\xa5\\x1e\\x26\\x69\\x2d\\xb0\\xd7\\x25\\x22\\x28\\x68\\xb2\\x2b\\\r\n\\xd1\\xc4\\x16\\x2c\\xce\\x31\\xfb\\x83\\x4a\\x34\\x04\\x70\\x05\\x34\\xf2\\x4d\\\r\n\\x2c\\x1a\\xa6\\x24\\x4a\\x59\\x2b\\xd4\\x8f\\x28\\x48\\x40\\x0a\\xe1\\x5e\\xc7\\\r\n\\x6a\\x5e\\x50\\x42\\xa0\\x36\\xf0\\xd4\\xce\\xa8\\x1e\\xa6\\xc7\\xe9\\x5a\\x72\\\r\n\\xa5\\x12\\x2c\\xea\\x27\\x4d\\x41\\x5b\\x0b\\xd8\\x7a\\xc3\\xf8\\xa2\\xdd\\x20\\\r\n\\x16\\x84\\x45\\x30\\x83\\x10\\x10\\x22\\x75\\x45\\x29\\x33\\xb6\\x4a\\xe1\\xe7\\\r\n\\x06\\x60\\xf1\\x09\\xa7\\x4c\\x10\\x43\\xd7\\xe0\\x7f\\x58\\x5b\\xc8\\xfb\\x3d\\\r\n\\x64\\x20\\xc9\\x7c\\x28\\x2c\\xbf\\x66\\x4f\\x47\\x42\\x6d\\x88\\x08\\x10\\x0a\\\r\n\\x94\\x15\\x5e\\x9f\\xd4\\xe4\\xa4\\x02\\x82\\x56\\x50\\x86\\xd8\\x10\\x94\\x8a\\\r\n\\x12\\xe1\\x48\\x2f\\x04\\xc0\\x63\\xa0\\x50\\x05\\xf4\\xe8\\x4a\\x86\\x68\\x83\\\r\n\\x47\\x45\\x00\\x72\\x15\\x1b\\x08\\x41\\xa2\\x00\\xc6\\x14\\x16\\x39\\xf2\\x72\\\r\n\\x24\\xa2\\x08\\x0f\\xdd\\x51\\xc3\\xf3\\xe7\\xf0\\x61\\xd0\\xcd\\x11\\x8a\\xc0\\\r\n\\x40\\x96\\x86\\xb1\\x00\\x52\\x79\\xcb\\xc8\\x9a\\x30\\x89\\x44\\x02\\xa2\\x58\\\r\n\\x26\\x82\\x92\\x70\\x54\\x11\\x33\\xd7\\x4a\\x7d\\x67\\xc0\\x76\\x19\\x4c\\xb0\\\r\n\\xdf\\x60\\x98\\x34\\x6c\\x15\\xfa\\xf0\\xb4\\x0a\\x1c\\xf6\\x15\\xf0\\x69\\x14\\\r\n\\x02\\xab\\x84\\x4a\\xa0\\x28\\x52\\x7b\\x01\\x92\\xa4\\x49\\x97\\xd7\\x28\\xe3\\\r\n\\x90\\x40\\x31\\xc1\\x81\\x2a\\x03\\x9e\\xca\\x91\\xe0\\xe6\\x00\\x52\\x90\\x01\\\r\n\\xf0\\x90\\xa6\\xeb\\xf3\\x38\\x38\\xd1\\xb0\\x20\\xcc\\x72\\x40\\xba\\x9d\\x36\\\r\n\\xd0\\xf8\\xc1\\x5a\\x00\\x97\\x44\\x68\\x49\\xac\\x24\\xa3\\x43\\x25\\x3e\\xc0\\\r\n\\x8e\\xb6\\x7e\\x96\\x83\\xab\\x5d\\x74\\xdf\\xa5\\x01\\x50\\xa0\\xd7\\x0b\\x88\\\r\n\\x3a\\x40\\xa2\\x5d\\xc2\\x1c\\x01\\x59\\xe8\\xb7\\xa6\\x08\\x60\\xed\\x83\\x89\\\r\n\\x8d\\x57\\x6f\\xdc\\x22\\x07\\x97\\x08\\x61\\xc4\\x00\\x18\\x10\\xa1\\xa0\\x2d\\\r\n\\x45\\x08\\x29\\x55\\x65\\x7e\\x86\\xd3\\xe5\\x31\\xf3\\xb4\\x96\\x1d\\xfa\\x58\\\r\n\\xb9\\x20\\x79\\x03\\xca\\xdb\\x48\\xde\\x18\\x30\\xc3\\xac\\xcc\\x0a\\xc5\\xbf\\\r\n\\xf4\\x95\\xbc\\x1e\\x0d\\xe2\\x22\\xf8\\x10\\x66\\xfa\\x28\\x6d\\x27\\x24\\x54\\\r\n\\x88\\x7c\\x0f\\x44\\x51\\x5a\\xbc\\x00\\x2a\\xa0\\x58\\xee\\x49\\x22\\x78\\x72\\\r\n\\xaa\\x85\\x74\\x0c\\xaa\\x50\\x5c\\x50\\x04\\x57\\x88\\xe0\\xde\\xb8\\x55\\x2a\\\r\n\\x2a\\x6f\\xe1\\xf0\\xc5\\xe0\\x13\\xf2\\x50\\xbd\\xc5\\x41\\x2a\\x17\\xdf\\x30\\\r\n\\x61\\x28\\x24\\xb0\\x80\\x1a\\x1f\\x43\\xe2\\x14\\x70\\x68\\x93\\x0c\\xe8\\x5b\\\r\n\\x57\\xf6\\x00\\x0b\\x46\\x8a\\x3d\\x94\\x42\\xb9\\xa4\\x83\\x09\\xfb\\x3c\\xcc\\\r\n\\x08\\xb2\\x28\\x85\\x8d\\x51\\xf2\\xc1\\x54\\x54\\x79\\x1e\\x24\\x36\\x29\\x88\\\r\n\\x62\\x29\\x20\\x0f\\xa0\\xa4\\x18\\x70\\x39\\x45\\xc4\\x0e\\xa0\\x9f\\x11\\x55\\\r\n\\xe5\\x75\\x13\\x93\\xe8\\x3a\\x7a\\x08\\xd4\\x00\\xa9\\x15\\x00\\x10\\x7b\\xc7\\\r\n\\xaf\\x8d\\x0d\\xc3\\x02\\x74\\xd2\\x51\\x1d\\x8b\\xc0\\x00\\xae\\x6f\\x2d\\x24\\\r\n\\xf6\\x88\\x30\\xc5\\xa1\\x29\\xa9\\xe1\\x8d\\x80\\x20\\xb9\\x83\\x3b\\x23\\x61\\\r\n\\x88\\x1a\\x48\\xf0\\x1c\\x62\\xd4\\x56\\x25\\x9b\\xa1\\x82\\x1a\\x40\\xe1\\xdd\\\r\n\\x00\\x28\\xa8\\x51\\x45\\x28\\x09\\x88\\x70\\x65\\x54\\xbd\\xa1\\x25\\x2d\\xa4\\\r\n\\x88\\x45\\x38\\x94\\x2b\\xf6\\x40\\xd9\\x35\\xdc\\x1a\\x3d\\xcf\\x10\\x47\\xad\\\r\n\\x66\\x50\\x51\\x91\\xaa\\xc2\\x8d\\x3a\\xed\\x7c\\x39\\x01\\x6b\\x21\\x19\\x43\\\r\n\\x24\\x20\\xdb\\x42\\x60\\xca\\x4f\\x18\\x24\\xa0\\x00\\xe2\\xe5\\xa7\\xee\\xb2\\\r\n\\xc5\\xaf\\x82\\xe3\\xe0\\x51\\xd9\\x0e\\x09\\xbe\\xb2\\x65\\x1e\\x81\\xc3\\x59\\\r\n\\xcb\\x45\\x1e\\x28\\x22\\xa8\\x20\\x83\\x1e\\xca\\xc1\\x40\\xb2\\x0b\\x00\\x04\\\r\n\\x1c\\x42\\x90\\x6c\\xbc\\x58\\x99\\x64\\x48\\x54\\x06\\xb0\\x4c\\xaa\\xc8\\xee\\\r\n\\x68\\x24\\x95\\x60\\x13\\x4e\\x08\\xdd\\xd6\\x96\\x45\\x3a\\x34\\x54\\x21\\x01\\\r\n\\x9a\\x3a\\xbc\\xac\\x02\\xe0\\x0f\\x6b\\x14\\x02\\x2f\\x13\\x37\\x78\\x75\\xa1\\\r\n\\x42\\x8c\\x02\\x64\\xf3\\x27\\x13\\x16\\xc8\\x50\\xac\\x50\\x0d\\x02\\x94\\x71\\\r\n\\x8b\\x1f\\xdb\\xb0\\x00\\xbc\\x05\\x84\\xa6\\x90\\x0c\\x3e\\x3c\\x99\\xa5\\x0d\\\r\n\\x30\\x10\\x59\\x32\\xa5\\x1a\\xb1\\x3a\\xfd\\x75\\x86\\xb7\\x2a\\xa0\\xe8\\xa1\\\r\n\\xa4\\xe9\\xed\\x6d\\x49\\xfa\\x28\\xe4\\xa4\\x44\\x2a\\x94\\x57\\x35\\x54\\x4f\\\r\n\\x92\\xae\\x1f\\x18\\xe8\\x5d\\x61\\x28\\x42\\xca\\x65\\x0c\\x00\\x9e\\x81\\x54\\\r\n\\x81\\x0a\\x6e\\x62\\x49\\xa0\\x21\\x80\\xb0\\x41\\x01\\x07\\x98\\xaf\\xd0\\x40\\\r\n\\x0c\\x6d\\xbe\\xb1\\x63\\x9a\\x2a\\x05\\xad\\xa2\\xa9\\x2b\\x6b\\x50\\xc3\\x10\\\r\n\\x9c\\x35\\x1a\\x35\\x99\\x0b\\x63\\x0b\\x6b\\x16\\xd5\\x38\\x22\\x20\\xd4\\xd6\\\r\n\\x12\\x0b\\x10\\xd9\\xea\\xfb\\x97\\x90\\x39\\x16\\xab\\x00\\xcb\\x40\\x42\\x0a\\\r\n\\xfa\\x03\\x96\\x9d\\x29\\x21\\x7c\\x72\\x90\\x09\\x5a\\x70\\x12\\x40\\x20\\x00\\\r\n\\x13\\x15\\xa8\\x57\\x28\\x05\\xe3\\xf1\\x19\\x7e\\xa4\\xfe\\x44\\x5b\\xd0\\x83\\\r\n\\x86\\x15\\x00\\x28\\x69\\xa4\\x80\\x4f\\x44\\x28\\xa3\\x39\\x88\\x89\\x50\\x41\\\r\n\\xf5\\x18\\xb0\\x28\\xaa\\xa4\\xa0\\xf3\\x80\\xd0\\xca\\x28\\x4d\\xe6\\xd1\\x15\\\r\n\\x50\\xab\\xc0\\x15\\x50\\xb3\\x18\\x15\\xa1\\x85\\x9f\\x7d\\xd2\\x9c\\xdd\\x2b\\\r\n\\xd9\\x3c\\x25\\x43\\x94\\x78\\x65\\x80\\xe8\\x7d\\x04\\xf5\\xa1\\x13\\xe7\\xcd\\\r\n\\xa2\\x45\\x00\\x54\\x35\\xa2\\x0c\\x02\\xa6\\x04\\x26\\x42\\x84\\x13\\x1e\\xbc\\\r\n\\x28\\xbe\\xc3\\x28\\x50\\x2d\\x0a\\x85\\x40\\x10\\xf0\\xc7\\x78\\x31\\x46\\x48\\\r\n\\x81\\x90\\x57\\x10\\x33\\xa8\\x3d\\x69\\x78\\x83\\xa8\\x71\\x5a\\x51\\xf4\\x37\\\r\n\\xb8\\xa0\\x15\\x40\\x29\\x16\\xa4\\x37\\x50\\x9c\\x42\\x15\\x05\\xfd\\x06\\x50\\\r\n\\x65\\x21\\xaf\\x49\\x0c\\x58\\x1b\\x5b\\x6a\\x88\\x42\\xbc\\xaa\\x75\\x6f\\x54\\\r\n\\x13\\x9b\\x88\\x39\\x97\\xc5\\x7d\\x42\\xb1\\xf0\\x08\\x04\\xb4\\x5c\\x92\\x62\\\r\n\\x6b\\x00\\x08\\xb0\\x81\\x41\\xda\\x14\\x83\\xd9\\x00\\xc6\\x28\\x29\\x50\\x60\\\r\n\\x6c\\x71\\xab\\xac\\x82\\x04\\x10\\x81\\x04\\x0e\\xa2\\x56\\xb0\\xf2\\x80\\x51\\\r\n\\x11\\x0d\\x45\\x7d\\x67\\xa7\\x25\\xc4\\x0b\\x53\\x2c\\xb8\\xc8\\x13\\x88\\x25\\\r\n\\x87\\x16\\x35\\x93\\xda\\x45\\x11\\x2e\\x8b\\x4c\\xa2\\xbc\\x25\\xc8\\x91\\x11\\\r\n\\x55\\x22\\x21\\x68\\xe8\\x16\\x7e\\xf2\\xef\\xa8\\xa4\\x56\\xb1\\x29\\xdf\\x12\\\r\n\\xa6\\xcf\\x89\\x50\\x15\\xcf\\x82\\x97\\x84\\x10\\x1e\\x9a\\x40\\x9b\\x60\\x00\\\r\n\\x03\\x0f\\xa1\\x47\\xf6\\x22\\xb6\\x93\\x01\\xc7\\xb2\\xa5\\x0e\\x0e\\xfa\\xe1\\\r\n\\x45\\x8f\\x62\\x0f\\x33\\xba\\x21\\x48\\x43\\x29\\x06\\x6d\\xb3\\x0b\\x90\\x73\\\r\n\\x46\\xbf\\x48\\x68\\x6d\\x46\\x0a\\x3a\\x32\\x64\\x44\\xe0\\x4e\\x9b\\x9c\\x10\\\r\n\\x44\\x39\\x91\\x05\\xa6\\x42\\x66\\xb0\\x26\\xd7\\x23\\x14\\x14\\xbe\\x90\\xdc\\\r\n\\x70\\x18\\xc3\\x04\\xc2\\x29\\x52\\xb0\\xe4\\x65\\x62\\x31\\x6e\\x2f\\x40\\x94\\\r\n\\xaa\\xc0\\x8a\\x77\\xaf\\x95\\xca\\x57\\xe1\\x0b\\x8d\\x8f\\x28\\x2d\\x96\\x2e\\\r\n\\x42\\x48\\x48\\x14\\x10\\x82\\x22\\x54\\xef\\xed\\x25\\x06\\x1c\\x21\\x10\\x04\\\r\n\\x41\\x13\\xc3\\x95\\x69\\x90\\xac\\xc1\\xc4\\x79\\xb3\\xd5\\xc4\\x20\\x10\\x26\\\r\n\\xb2\\x5c\\x78\\xc2\\xad\\x08\\x5e\\x17\\x29\\x93\\x28\\x40\\x40\\x04\\x08\\xbe\\\r\n\\x09\\x0a\\x09\\x80\\x5b\\x86\\x62\\x6c\\xdc\\x25\\x43\\xe8\\x79\\xa3\\xc7\\x9a\\\r\n\\x7e\\x3d\\x41\\xa8\\x40\\x00\\x1c\\xb4\\x41\\xe0\\x5f\\x05\\x3a\\x00\\x85\\x92\\\r\n\\xe1\\x0c\\x9c\\x8c\\x34\\xf0\\x1a\\x02\\x90\\xd5\\x15\\x3e\\xb7\\xfd\\xe1\\x2a\\\r\n\\x27\\xbf\\x8a\\x95\\x3f\\x02\\x20\\x50\\x1b\\x1a\\x2c\\x50\\x48\\x10\\x01\\x42\\\r\n\\x0a\\xe2\\xc8\\xfa\\xf1\\xb2\\xcd\\x94\\xe2\\x89\\x0f\\xa2\\x25\\xf0\\x37\\x8b\\\r\n\\xab\\x70\\x30\\x55\\x52\\x10\\x05\\x68\\x78\\xae\\x69\\x2d\\xa0\\x19\\x54\\xb4\\\r\n\\x15\\x40\\xe8\\xba\\x8b\\x81\\xd4\\x4c\\x1d\\x54\\x8a\\x9a\\xba\\x26\\xa7\\x91\\\r\n\\x17\\x3a\\x45\\x11\\x44\\x6a\\x2d\\x18\\x54\\xf4\\x11\\x14\\x55\\xab\\x07\\x1e\\\r\n\\x37\\x23\\x4d\\x48\\x2b\\xce\\x42\\x49\\x44\\x21\\x0c\\x19\\x2a\\x08\\x20\\xd0\\\r\n\\xb3\\x9f\\x01\\x31\\x8b\\x10\\x82\\x4a\\xad\\xc1\\xa1\\x50\\x72\\x95\\x2b\\x8a\\\r\n\\x03\\x0e\\x80\\x80\\x42\\xde\\x7b\\x3f\\x2f\\x28\\x95\\x46\\x7d\\x02\\xce\\x35\\\r\n\\xb9\\x5d\\xa2\\x14\\xa6\\x4c\\x85\\x40\\x09\\xf3\\x93\\xb1\\xf0\\x82\\x20\\x4e\\\r\n\\x2d\\x04\\x4f\\x04\\x39\\xc5\\xa8\\xb1\\x3f\\x04\\xcd\\x12\\xa8\\xa3\\xee\\xbc\\\r\n\\x18\\x96\\x1b\\x02\\x04\\x04\\x2b\\x08\\x50\\x4c\\x4a\\x24\\x37\\x28\\x29\\x0b\\\r\n\\xf2\\x37\\x7c\\x08\\x45\\xfe\\xb3\\x29\\x0d\\xaf\\x20\\x16\\xaa\\xd5\\x18\\x22\\\r\n\\xe6\\xf2\\x2a\\x0f\\x85\\x01\\x76\\x0e\\x8d\\x7f\\x3a\\xcf\\x1c\\xfb\\xc4\\xec\\\r\n\\x09\\xa0\\xd1\\x9a\\xe9\\x5b\\xb1\\x31\\xa0\\x05\\xc9\\xa2\\xab\\xc8\\x04\\x9d\\\r\n\\x63\\x72\\x36\\x13\\xa8\\xd2\\x3a\\x53\\x72\\x32\\x91\\xd2\\x18\\x30\\x6c\\xeb\\\r\n\\x4c\\x52\\x12\\x90\\xc0\\x6b\\x5f\\x5f\\x0a\\x00\\x45\\xd3\\x14\\x63\\xa9\\x42\\\r\n\\x06\\xa8\\x4a\\x29\\x8b\\x31\\xca\\xda\\xba\\xb3\\x0e\\x39\\x10\\xc1\\xbe\\xf3\\\r\n\\x98\\xbd\\x8c\\xe1\\x27\\x99\\x45\\xb1\\x10\\x14\\x72\\x48\\x2f\\x20\\x88\\xd0\\\r\n\\x08\\x01\\x42\\x84\\x1a\\xe0\\x6a\\x10\\x6a\\x60\\x14\\x00\\x55\\x00\\xf8\\xee\\\r\n\\xb8\\x7b\\xe6\\x55\\x2c\\x6a\\xa3\\x11\\x77\\xf3\\xce\\x20\\x7f\\x12\\xd3\\x71\\\r\n\\xa4\\x4d\\x16\\x11\\x01\\x9d\\x5d\\x96\\x10\\x60\\x0a\\x9f\\xa5\\x52\\x87\\x88\\\r\n\\x2a\\x02\\x00\\x28\\xac\\x8e\\x2a\\x5a\\x32\\x15\\x07\\xa4\\x51\\xb8\\x25\\x14\\\r\n\\x89\\x7e\\x0c\\x54\\x40\\x88\\x3d\\xe8\\x8d\\xdc\\x14\\x59\\x00\\x10\\x80\\x31\\\r\n\\x54\\x68\\xde\\x05\\xd5\\x6d\\x38\\xec\\x0c\\x93\\x02\\xa9\\x68\\x7c\\x3c\\x1b\\\r\n\\xe8\\x24\\xc9\\xc0\\xa4\\xa8\\x1f\\xa4\\x3c\\x16\\x10\\x84\\x02\\xca\\xb2\\x0f\\\r\n\\xa0\\xf9\\xc4\\xcd\\xa8\\x02\\xd5\\x25\\x0b\\x3d\\x4d\\xf5\\x09\\x6c\\x62\\x0c\\\r\n\\x0a\\x42\\xe0\\x22\\xe9\\x11\\x05\\x31\\x17\\x35\\x08\\x23\\x2d\\xaa\\xcc\\x75\\\r\n\\xa3\\xda\\xb1\\x35\\xc0\\x0c\\x11\\x12\\x5a\\xc7\\x73\\xd1\\x8f\\x3e\\xd9\\xd1\\\r\n\\xf1\\xec\\x85\\xba\\x38\\xe9\\x3e\\x6b\\x01\\x14\\xd2\\xce\\x12\\x94\\x3b\\x2c\\\r\n\\x58\\x04\\x23\\x80\\x02\\x55\\x8a\\xc1\\x57\\x12\\x6d\\x60\\xb0\\x11\\x6a\\x4d\\\r\n\\x81\\xca\\xa6\\xa1\\xb0\\x08\\x55\\xa4\\x20\\xa5\\xaa\\x51\\x59\\x90\\x47\\x96\\\r\n\\xf2\\x40\\x53\\xf8\\xc7\\x2d\\x70\\x0e\\xcc\\x52\\x88\\xcd\\x50\\x48\\x53\\x44\\\r\n\\xd6\\x5c\\xca\\x74\\xc2\\xa8\\x01\\xd0\\x29\\x9d\\x04\\xb7\\xaa\\x78\\x58\\x96\\\r\n\\xc1\\x23\\x12\\xdb\\x92\\x34\\x93\\x30\\x3a\\x68\\xd3\\x34\\x38\\x42\\x3a\\x3e\\\r\n\\x84\\x88\\xb1\\x30\\x05\\xb3\\xe1\\xc1\\xc3\\x42\\x3d\\xec\\x04\\x49\\x18\\x21\\\r\n\\xa4\\xc6\\xc1\\x39\\x08\\x04\\x59\\xaf\\xa8\\x90\\x15\\x36\\x48\\x93\\x99\\xd0\\\r\n\\xa5\\x34\\x91\\x30\\x81\\x51\\xb8\\x8f\\xfe\\x9a\\xe0\\x33\\x00\\xdc\\xd6\\x29\\\r\n\\x6a\\x8a\\x06\\x8b\\x00\\xce\\x74\\xb0\\x40\\x00\\x1b\\xf4\\x03\\x20\\x92\\x0a\\\r\n\\xc6\\x17\\xd0\\x08\\x09\\x82\\xe0\\xd8\\x42\\x1f\\x4c\\xf1\\x29\\x0a\\x50\\xa8\\\r\n\\x35\\x81\\x46\\xa6\\x1e\\x74\\x48\\x8e\\xc8\\xd5\\x55\\x84\\x62\\x84\\x12\\x5c\\\r\n\\x46\\x74\\xc8\\x50\\x37\\x64\\x81\\x00\\xf4\\x76\\x0d\\x04\\x73\\x94\\xeb\\x83\\\r\n\\xe4\\xa8\\x41\\x58\\x85\\xcd\\x65\\x6b\\xc3\\x05\\x70\\x0e\\xcc\\x20\\x02\\xcd\\\r\n\\xaf\\xd7\\x0f\\x30\\xb7\\x19\\xea\\x33\\x04\\x45\\xb5\\x3f\\x86\\x03\\x8c\\xe0\\\r\n\\x70\\x2f\\xc8\\x0d\\x74\\x0f\\x88\\xb6\\x05\\xc3\\x33\\xdd\\xfd\\x92\\xac\\x5e\\\r\n\\x32\\xab\\xfd\\xe3\\xfa\\x88\\x05\\x85\\x59\\x30\\x41\\x84\\xc2\\x14\\x44\\xc2\\\r\n\\x37\\x05\\x46\\xa0\\x92\\xd1\\x48\\xaa\\xe3\\x58\\xae\\x0a\\x50\\x8a\\x8a\\x04\\\r\n\\x44\\x04\\x12\\xf5\\x05\\x99\\x0a\\x1a\\xd5\\x44\\x4b\\x4c\\x0a\\x09\\x49\\x41\\\r\n\\x11\\xd9\\x01\\x2b\\x82\\xab\\x44\\xad\\xa1\\xf6\\x76\\x76\\x4f\\x01\\x28\\xc5\\\r\n\\x42\\x85\\x50\\xd1\\x36\\x82\\xc3\\x62\\xa8\\x14\\x54\\x8b\\xd8\\x14\\x40\\xc6\\\r\n\\xb8\\xb1\\x54\\xa1\\x6e\\x03\\x6e\\x2b\\x05\\x8d\\x1c\\xd2\\xd0\\x99\\x64\\x93\\\r\n\\x61\\xf0\\x0b\\x3e\\xa5\\x0a\\xf1\\xb9\\x2a\\xa3\\x70\\x47\\x91\\x1b\\xfb\\x19\\\r\n\\x08\\x93\\x0c\\x21\\x2c\\x3e\\x22\\x42\\x14\\x8f\\x65\\x71\\x06\\x76\\x21\\x0e\\\r\n\\x44\\x00\\x2e\\xa2\\x98\\xd8\\x41\\x41\\xc8\\x0a\\x82\\xcd\\xda\\x2c\\xfd\\x74\\\r\n\\xef\\x47\\x0d\\x00\\x03\\x89\\x22\\xd9\\x33\\x93\\x17\\x6a\\xc8\\x1e\\xf0\\xa0\\\r\n\\xce\\x5a\\x1b\\x7e\\x87\\x71\\x46\\xff\\x00\\x6a\\x2f\\x0c\\x99\\xd4\\xdd\\x40\\\r\n\\x6b\\x64\\x22\\x38\\x12\\x71\\xe9\\xc9\\x99\\x0e\\x7a\\x20\\x68\\xa8\\xe1\\x91\\\r\n\\x9d\\x22\\x9b\\xea\\x40\\x64\\xc0\\x6d\\x28\\x4d\\xcb\\xea\\xa1\\x08\\x32\\xf0\\\r\n\\xe8\\x61\\x73\\xb2\\xf8\\xc3\\x14\\x02\\x0b\\xa0\\x02\\x2d\\x85\\xd4\\x73\\x16\\\r\n\\x61\\x78\\x18\\x5a\\x08\\xd0\\x06\\x8a\\x09\\x42\\x52\\x35\\x36\\xc0\\x66\\x12\\\r\n\\x24\\x0b\\x1b\\x18\\x17\\xc5\\x31\\xe9\\x29\\x13\\x74\\x38\\x2c\\x41\\x7e\\xec\\\r\n\\x1b\\xe8\\x78\\xc8\\xcc\\xdc\\x49\\xc0\\xb4\\x1f\\xa6\\x6b\\xd0\\x4b\\xd1\\x56\\\r\n\\x05\\xac\\xaf\\x0a\\x10\\xaa\\xbd\\x08\\xb2\\x02\\x24\\x82\\x6c\\xd1\\xf0\\x84\\\r\n\\x4a\\xf1\\x3e\\xa6\\x5a\\xf3\\xd7\\xde\\x80\\x40\\x12\\xb5\\x32\\x3e\\x00\\xdc\\\r\n\\x22\\x32\\x48\\x20\\x59\\x32\\x00\\x11\\xf8\\xf8\\xe5\\x45\\x69\\xb0\\xab\\xda\\\r\n\\x98\\x63\\x0e\\x57\\x8b\\x40\\x2e\\x72\\x9b\\x09\\x11\\x57\\x0f\\x43\\x16\\x8b\\\r\n\\x00\\xaf\\x46\\x52\\x91\\xbd\\x00\\x71\\xaa\\xfd\\x81\\xeb\\x93\\xfa\\x24\\xc6\\\r\n\\x33\\x8c\\x02\\x41\\x5c\\x1d\\x67\\x56\\xf6\\x2a\\x59\\x52\\xd1\\x88\\x22\\x1f\\\r\n\\x20\\xbd\\x8b\\x91\\xa7\\x95\\x4e\\x11\\x07\\x9e\\xf4\\xbe\\x9d\\x52\\x66\\x92\\\r\n\\xd5\\x4b\\x85\\x7a\\x42\\x53\\x31\\xb0\\x71\\xf4\\x37\\x0d\\x2c\\x51\\xc2\\x0b\\\r\n\\x95\\x85\\xa2\\x3e\\x8f\\xbc\\x2b\\x0b\\xc1\\x00\\x00\\x24\\x10\\xc0\\x4a\\x8c\\\r\n\\x74\\xaf\\xfb\\xcf\\x7c\\x21\\x10\\x6e\\x26\\xe3\\x45\\xe2\\xc4\\x28\\x08\\x30\\\r\n\\x88\\x28\\x35\\x14\\x85\\x85\\xa7\\x02\\x2d\\x90\\x99\\x30\\x4b\\x0a\\xc5\\x5d\\\r\n\\x07\\xa5\\xb8\\xcf\\xa7\\xb2\\x2e\\x86\\x29\\x2c\\x2b\\x0a\\x8f\\x10\\xc3\\x5f\\\r\n\\x00\\xe0\\xa9\\x80\\x00\\xc9\\xeb\\x58\\xf0\\x13\\x81\\x5b\\x43\\x2d\\x0b\\xdd\\\r\n\\xb9\\x4c\\x92\\xf8\\x51\\x00\\x48\\x07\\xf5\\x5f\\x00\\xf1\\xab\\x46\\x71\\xf1\\\r\n\\x68\\x64\\xa4\\x3d\\x21\\x5a\\x28\\x53\\x18\\x7b\\xd8\\x72\\xbd\\x59\\xab\\x52\\\r\n\\x7a\\x3a\\x30\\x71\\x93\\x40\\x79\\x40\\x24\\x16\\x91\\x8c\\x08\\x6b\\xc6\\x48\\\r\n\\x8c\\x4f\\xd1\\x5f\\x08\\x7e\\x1a\\x95\\xb6\\xa9\\xde\\x00\\x2c\\x03\\x1a\\x8a\\\r\n\\x11\\xfa\\x8a\\x7e\\xe4\\x7c\\x5e\\xa0\\x20\\x83\\xae\\x1d\\x04\\x04\\x5d\\x69\\\r\n\\x6c\\x43\\xa0\\x32\\xa8\\x03\\x01\\x68\\x62\\x51\\xd0\\xe5\\x0c\\x04\\xf0\\x08\\\r\n\\xc9\\xe8\\xf8\\xf3\\x7f\\x4e\\x35\\x16\\x91\\x45\\x34\\x57\\x71\\x97\\xf5\\xbf\\\r\n\\xca\\x4a\\xa8\\x28\\x88\\xcd\\xd5\\x75\\xfd\\x7e\\x73\\x57\\x16\\xc5\\x79\\x97\\\r\n\\x7e\\x28\\x46\\xd1\\xe9\\x1d\\x7d\\xca\\xd9\\x38\\xb0\\xce\\x96\\x88\\xd7\\xcd\\\r\n\\x31\\x81\\x30\\x4c\\x68\\x28\\xa9\\xb1\\x51\\x60\\x11\\xc1\\x12\\x05\\x6f\\x02\\\r\n\\x0a\\x88\\x30\\x04\\x00\\xaa\\x72\\xec\\x84\\x22\\xe0\\x08\\x99\\x2a\\x66\\x0d\\\r\n\\xb3\\x50\\x06\\x01\\x84\\x55\\x75\\xb3\\xe1\\x36\\x57\\x5d\\x38\\x16\\x14\\xd5\\\r\n\\xc4\\x4b\\x41\\x30\\x61\\xaf\\x1d\\xd0\\x45\\xd4\\x56\\xb0\\xbe\\x02\\x53\\x7d\\\r\n\\xfb\\xf3\\x85\\x34\\x14\\x20\\xde\\x0b\\x2c\\x09\\xe8\\x62\\x4e\\x34\\xf3\\x87\\\r\n\\x43\\x47\\xdf\\x70\\x28\\xa7\\x01\\x35\\x62\\x78\\x51\\x4a\\x75\\x45\\xf8\\x36\\\r\n\\x06\\x50\\x02\\x05\\x46\\x68\\x49\\xd5\\xf2\\x49\\xdf\\x11\\x93\\xac\\xc8\\x82\\\r\n\\x0f\\x06\\x36\\x3a\\x9a\\xa3\\x8a\\x16\\x90\\x61\\x4a\\x50\\xf0\\xb0\\xab\\x98\\\r\n\\x44\\x09\\x4a\\x2d\\xbf\\x2e\\x23\\x33\\x36\\xfa\\x7d\\xac\\x54\\x3f\\x0a\\xa1\\\r\n\\x1e\\x5f\\xa4\\x28\\x0c\\x97\\x2c\\x15\\x25\\xd3\\x37\\x45\\xc3\\x00\\x68\\xa0\\\r\n\\xd5\\x80\\x20\\x31\\x11\\x78\\xa3\\x87\\x30\\x10\\x3a\\x16\\x2e\\xd3\\xe0\\x47\\\r\n\\x02\\x01\\x8f\\x72\\x80\\x80\\x50\\x30\\xda\\x93\\xc7\\xdc\\x1e\\x7d\\xa9\\x96\\\r\n\\x16\\x01\\x51\\x95\\x90\\x00\\x46\\xef\\x05\\x2b\\x9e\\x78\\x6c\\x1f\\x25\\x45\\\r\n\\x49\\x02\\x85\\x3d\\x25\\x7c\\x44\\x0a\\xb4\\x28\\x35\\x0b\\x4b\\x94\\xe6\\x30\\\r\n\\xbf\\xcd\\x48\\x01\\x13\\xd0\\xb1\\x29\\x90\\xa7\\x4e\\x46\\x08\\x22\\x7e\\xa7\\\r\n\\xa2\\x7c\\x55\\x88\\xa2\\x06\\x76\\x4a\\x0b\\xe9\\xc2\\x33\\x88\\xc6\\x82\\x9e\\\r\n\\xeb\\xe5\\x13\\x40\\x20\\x28\\xcf\\x74\\x90\\x94\\xd1\\x29\\x80\\x98\\xe2\\xd1\\\r\n\\x08\\x71\\xc2\\x21\\xcf\\x4e\\x3f\\xab\\x8a\\x68\\x1b\\x0c\\x91\\x8f\\x8b\\x09\\\r\n\\x70\\x12\\xc0\\x70\\x0f\\x21\\xee\\xf0\\xe8\\x14\\xef\\xf4\\xc3\\x82\\x63\\x11\\\r\n\\xe0\\x70\\x01\\x4a\\x80\\x61\\x01\\xc1\\x8b\\x02\\x02\\x12\\xae\\xd5\\x01\\xc0\\\r\n\\xaa\\x14\\x38\\xd3\\xad\\xa2\\x92\\xad\\xa4\\x2e\\xd1\\x0a\\x51\\xc1\\x53\\x4a\\\r\n\\xef\\x5b\\x91\\x11\\x20\\x12\\x09\\x88\\x19\\x21\\xda\\x27\\x0a\\x59\\x08\\xa6\\\r\n\\xe0\\xc0\\x75\\xba\\xe4\\xa4\\xe8\\xfb\\x25\\x61\\xae\\xc9\\x25\\xb7\\x26\\x8e\\\r\n\\xf1\\x0b\\x84\\x58\\xa8\\x38\\x37\\x15\\xc1\\xb4\\x3d\\xd2\\x51\\xc6\\xfb\\x31\\\r\n\\xfe\\x35\\x06\\xa9\\x49\\x49\\x91\\x94\\xfe\\x74\\xb7\\x44\\x21\\x4c\\xa0\\x81\\\r\n\\x60\\x23\\x2c\\xa2\\xd1\\x74\\xc2\\x1a\\x6b\\x36\\x25\\x0c\\xb8\\x00\\x1c\\x29\\\r\n\\x25\\xc2\\x40\\xc0\\x0c\\xd0\\xde\\x0a\\x34\\x7b\\x65\\x50\\x36\\x86\\x44\\x80\\\r\n\\xf9\\x00\\x78\\xe4\\x17\\x88\\x13\\x0c\\xd8\\xc3\\xf0\\x0a\\xd0\\x67\\x66\\x43\\\r\n\\x0b\\x9e\\x2a\\xc5\\x12\\xac\\x87\\xe0\\xfe\\x27\\x24\\x15\\xa4\\x62\\x82\\xc8\\\r\n\\xfa\\x5c\\xdb\\x97\\xf3\\xa4\\x1d\\xb3\\x6f\\xc8\\x4a\\x4f\\xc4\\x00\\x3d\\x11\\\r\n\\xd8\\x02\\x81\\x85\\x87\\xc1\\x18\\x7d\\x21\\xda\\xfb\\xaa\\x02\\xfd\\x02\\x02\\\r\n\\xaa\\x1a\\xc7\\x60\\x9a\\x86\\xd1\\x95\\x03\\xfa\\x05\\x94\\x12\\x7a\\xa8\\x1e\\\r\n\\x3c\\xcc\\x22\\x82\\xc2\\x98\\x42\\x3b\\xbf\\x4f\\xda\\x32\\x50\\x07\\xc8\\x83\\\r\n\\xad\\x61\\x2a\\x0c\\x1f\\xae\\x19\\x6e\\x03\\x4c\\x85\\x8b\\x1d\\x1f\\xa8\\x50\\\r\n\\xd6\\x01\\x21\\x50\\x3e\\x3e\\x7a\\x53\\xe5\\x77\\xcd\\x7e\\xa7\\x2c\\xac\\x10\\\r\n\\x7e\\xf8\\xff\\x00\\xa1\\x82\\xaf\\xff\\x00\\x39\\x73\\xee\\x48\\xf8\\x2a\\x1d\\\r\n\\xf4\\x34\\xff\\x00\\x51\\x69\\x28\\xc9\\xea\\x13\\x15\\x0a\\x7f\\x05\\xd0\\xca\\\r\n\\x49\\x57\\xfb\\x4c\\x81\\x85\\x56\\xcb\\xaa\\x3d\\xe1\\xfa\\x82\\xc4\\x34\\xf7\\\r\n\\x03\\x60\\x20\\xc6\\x22\\xb1\\xa3\\x30\\x2a\\x06\\x63\\x2a\\x03\\x1b\\x95\\xc2\\\r\n\\xc0\\x30\\x81\\x5a\\x3d\\xba\\xb6\\xa9\\xa3\\x86\\x69\\x42\\x11\\x03\\x83\\x2e\\\r\n\\x96\\xfc\\x3f\\x60\\x72\\x9a\\x28\\x01\\x57\\x7e\\xe0\\xa5\\x60\\xf8\\x2f\\x28\\\r\n\\x78\\x71\\x92\\x6a\\x10\\x11\\x71\\x06\\x3e\\xf5\\x38\\x67\\xc7\\xca\\x27\\xaa\\\r\n\\x24\\x39\\x47\\x90\\x39\\xa4\\xe9\\x79\\x89\\x28\\xd0\\x62\\x15\\x51\\x39\\xbd\\\r\n\\xf6\\x1a\\xbc\\x0d\\x1c\\x2a\\x0d\\x4f\\x3a\\xa5\\xda\\x48\\x49\\x42\\x10\\x6c\\\r\n\\x8d\\x20\\x89\\xcf\\x97\\x7e\\xab\\x31\\x06\\x66\\x04\\xb7\\x8f\\x23\\xa0\\x22\\\r\n\\xaa\\x24\\x1e\\x48\\x4f\\x85\\xa0\\x21\\x72\\x45\\x52\\x8d\\x55\\x88\\xdd\\x27\\\r\n\\xb0\\x0f\\x3d\\xb9\\x64\\x54\\x49\\x54\\x28\\x52\\xc2\\x80\\x87\\x9d\\x1c\\xff\\\r\n\\x00\\xbe\\x8c\\x81\\xe8\\x08\\x24\\x11\\x89\\xbe\\x19\\x42\\x0d\\x49\\x5a\\x28\\\r\n\\xfc\\x6a\\x6e\\x3d\\xbc\\xdf\\x12\\xfc\\x16\\x85\\x11\\x2c\\x40\\x01\\x27\\x13\\\r\n\\x4b\\x28\\x5d\\x5a\\x16\\x1a\\xbe\\xae\\x15\\xe1\\x2c\\x11\\x36\\xb5\\xbc\\x00\\\r\n\\x10\\x32\\xb1\\x60\\xd1\\x78\\x84\\xda\\x58\\xd3\\x7c\\x08\\x2d\\x3a\\xee\\x5b\\\r\n\\x16\\x10\\x22\\x06\\x42\\x54\\x48\\x12\\x05\\x42\\x43\\xed\\x3a\\xa0\\x1a\\xe9\\\r\n\\x81\\x41\\x8a\\x46\\x49\\x81\\xa0\\x50\\x31\\xd3\\xce\\x95\\x1f\\xa0\\x16\\x7d\\\r\n\\xdd\\xe8\\xcb\\xd8\\x41\\x45\\x20\\x03\\xac\\xf1\\xe1\\xe7\\x26\\x98\\x81\\x1a\\\r\n\\x01\\xf3\\x83\\x2b\\x08\\x40\\x50\\x75\\x41\\x3a\\x8c\\x37\\x9c\\x5d\\x4e\\x8c\\\r\n\\x68\\xaa\\x55\\x18\\x04\\x50\\x91\\xe2\\x07\\x44\\xc4\\x15\\x60\\xee\\x69\\x84\\\r\n\\xa1\\xd0\\xa1\\x17\\x84\\x52\\x04\\x71\\x60\\xd2\\x08\\xa5\\xa5\\x99\\x85\\x39\\\r\n\\x58\\x55\\x34\\x79\\xdc\\xa0\\x0e\\x93\\x12\\x2b\\x1d\\x52\\x87\\x17\\x91\\x22\\\r\n\\x54\\x2d\\x41\\x04\\x85\\x89\\x04\\x45\\x53\\x96\\xb0\\xc6\\x9c\\x6d\\x14\\x2e\\\r\n\\x40\\xd2\\x92\\x95\\xb5\\x72\\x00\\xa9\\x75\\x9b\\x21\\x2d\\xae\\x90\\x83\\x7e\\\r\n\\x43\\xa8\\x23\\x1a\\x29\\x93\\x92\\x29\\x9a\\x64\\x2a\\x59\\x77\\xe6\\x1b\\xbc\\\r\n\\xdc\\xb0\\x1e\\x72\\x40\\xab\\xd1\\x44\\x60\\xc0\\xe2\\x06\\x22\\x22\\xc9\\x14\\\r\n\\x8b\\x52\\x7d\\x74\\xfb\\xbc\\xae\\xf2\\x71\\x18\\x13\\xf5\\xd6\\x22\\x28\\x47\\\r\n\\x12\\x92\\xb2\\xa1\\xb3\\x50\\x91\\x43\\xcc\\x01\\x6a\\x94\\x74\\xb7\\x10\\xa2\\\r\n\\x85\\x29\\xa3\\x4e\\xb0\\xf1\\x5a\\x06\\x54\\x02\\x14\\xc3\\x14\\x2d\\xa5\\xf1\\\r\n\\xd5\\xfb\\x56\\xb5\\x40\\x7f\\x07\\x03\\x0b\\x56\\xae\\x2c\\xf5\\x90\\xa8\\x53\\\r\n\\x42\\x1e\\x8c\\xf4\\x9f\\x1d\\xf2\\xe5\\x41\\x70\\x0a\\x30\\x4d\\x02\\x0f\\x5c\\\r\n\\x84\\x35\\x34\\xea\\x78\\xd0\\x1a\\xaa\\x59\\x75\\x54\\xaa\\x40\\xbe\\x37\\x13\\\r\n\\xae\\xeb\\x8b\\x20\\x80\\xe2\\xe3\\x08\\xfc\\x22\\x94\\xa1\\x5e\\x06\\x80\\x1a\\\r\n\\x9a\\x49\\x97\\x0c\\x22\\x68\\x08\\xab\\x03\\x09\\xea\\x33\\xfa\\xa0\\x18\\x13\\\r\n\\x49\\xa5\\x14\\x41\\x11\\x8c\\x0f\\xba\\x84\\x38\\x90\\xc3\\x5a\\x31\\x2b\\x8a\\\r\n\\xc8\\x83\\xf7\\x99\\x15\\x6d\\xb4\\x04\\x50\\x10\\xb0\\x0c\\x40\\x66\\xa2\\x93\\\r\n\\x63\\x2b\\x95\\x40\\x40\\x46\\xa2\\x8a\\x11\\x3a\\x2a\\xf5\\x08\\x41\\x02\\xc6\\\r\n\\x46\\x13\\xe8\\x8c\\x44\\xaa\\x1b\\x8d\\x10\\x22\\xcb\\x06\\x53\\x79\\x22\\x7d\\\r\n\\x22\\x4a\\x32\\x08\\x34\\xa5\\xfd\\x4f\\x39\\x4e\\xb9\\x04\\x6e\\xa0\\x2d\\x81\\\r\n\\xf6\\x0b\\x6d\\x57\\x9c\\x44\\x7b\\xd4\\x22\\x21\\x2c\\x83\\xe7\\xa7\\x93\\x2a\\\r\n\\x18\\x92\\x0a\\xd0\\x85\\x00\\x98\\xd4\\x9a\\x90\\x22\\x08\\x00\\x4d\\x1f\\x06\\\r\n\\x99\\xf8\\x5a\\x28\\x45\\xd9\\xc9\\x45\\x80\\xa4\\x05\\x88\\x27\\xff\\x00\\xae\\\r\n\\x4b\\xa2\\x11\\x52\\x94\\x11\\x26\\xdb\\x91\\x04\\x93\\x96\\xc1\\x1e\\xbe\\xe0\\\r\n\\x10\\x09\\xf0\\x0b\\xc3\\xf5\\xb5\\xab\\x44\\x11\\x2a\\x48\\x8b\\xee\\x54\\xcc\\\r\n\\xb9\\x7c\\x7e\\x98\\x6e\\x1c\\x09\\x89\\x10\\x12\\x8c\\x15\\x38\\xbb\\x00\\x47\\\r\n\\x43\\x51\\x1d\\x2f\\x2c\\x60\\xe3\\xa0\\xa9\\xe0\\x34\\x00\\x20\\x12\\xbc\\x53\\\r\n\\x38\\x0c\\x22\\xc5\\xf6\\x09\\xec\\x11\\x55\\x09\\xec\\x5d\\x83\\x04\\x5a\\x98\\\r\n\\x9c\\xb0\\x10\\x97\\x36\\x00\\x93\\x3e\\xb8\\xac\\x68\\x49\\xff\\x00\\x63\\x9b\\\r\n\\x68\\x79\\x0d\\xd0\\x20\\x05\\xa3\\xf0\\x02\\xc7\\x5c\\x4a\\xfb\\x4c\\x82\\x47\\\r\n\\x40\\x1f\\x4e\\xa1\\x76\\x11\\x8b\\xb1\\x5a\\x98\\x0a\\x80\\xf8\\xf1\\x5a\\x28\\\r\n\\xe8\\x24\\x31\\x21\\x88\\x51\\xcb\\x68\\xc2\\x38\\x22\\x46\\x6b\\xc0\\x6a\\x47\\\r\n\\x43\\x40\\x72\\x9a\\x3a\\xa2\\x49\\x94\\xc1\\x82\\x40\\x52\\x3a\\x25\\x32\\x01\\\r\n\\x26\\xfb\\x2e\\xb0\\xc9\\xe8\\x07\\x99\\xe0\\x9c\\x11\\x20\\x80\\xd5\\x4a\\xa4\\\r\n\\xf0\\xad\\x5e\\xf0\\x01\\x40\\x15\\xa0\\x9a\\x04\\x68\\x00\\x96\\xd9\\x41\\xbf\\\r\n\\xe1\\xb9\\x2a\\x50\\x54\\xa1\\xed\\x9a\\x10\\xb3\\xe1\\x14\\x21\\x34\\x99\\x70\\\r\n\\x41\\xd0\\x02\\x97\\x55\\x40\\xd5\\x00\\x24\\x5a\\x2d\\x08\\xbc\\x6a\\x11\\x30\\\r\n\\x31\\x82\\x91\\x06\\x36\\xbf\\x00\\x83\\x81\\x42\\x58\\xd1\\xac\\x21\\x40\\x8b\\\r\n\\xf0\\x0c\\x17\\x8c\\x34\\x2a\\x05\\x68\\xea\\xc8\\x88\\x5a\\x0e\\x8f\\xe8\\x09\\\r\n\\x72\\xe1\\xdc\\x01\\x6a\\x21\\xc4\\x86\\xf4\\xf0\\x5f\\x16\\xb6\\x80\\x89\\x67\\\r\n\\x2a\\x00\\x10\\x9a\\x13\\x3d\\x29\\x99\\xa0\\x4c\\x04\\x20\\xb0\\x1a\\xd8\\x0f\\\r\n\\x45\\xa2\\x88\\x45\\x10\\x0e\\x43\\xcf\\x61\\x03\\x0f\\x03\\x0e\\xa2\\x4a\\x09\\\r\n\\xcc\\xc2\\xed\\x4e\\x38\\x58\\xd6\\x25\\x0d\\x8b\\xcb\\x2f\\x18\\x01\\xed\\x44\\\r\n\\x69\\x81\\x5f\\x14\\x00\\xd5\\xb9\\xdb\\x2a\\x91\\x62\\x01\\x0a\\xa4\\xc5\\x49\\\r\n\\x8e\\x38\\x05\\x03\\x6d\\xd3\\xf8\\x16\\x15\\x83\\x1d\\xad\\x1d\\xe8\\x1a\\x42\\\r\n\\xab\\x40\\x52\\x29\\x78\\x96\\x41\\xc1\\x00\\xd2\\x32\\x41\\x91\\xa2\\x06\\x8f\\\r\n\\x6c\\x0a\\x54\\xb2\\xa0\\x42\\xaa\\x95\\x14\\xaf\\x34\\x67\\x07\\x94\\x10\\x61\\\r\n\\x52\\x9e\\x69\\xd3\\x8d\\x22\\x00\\x04\\x99\\x80\\x15\\x4c\\x44\\xf4\\x45\\xd0\\\r\n\\x68\\x59\\xd0\\x2f\\x08\\x68\\xca\\x3e\\x7e\\x90\\xf0\\x51\\x34\\x28\\x92\\x82\\\r\n\\xcf\\xb6\\x2b\\xe2\\x7a\\x71\\x44\\x06\\x40\\xe1\\x01\\xb1\\x09\\xaa\\x2d\\x0a\\\r\n\\x4e\\x4b\\x38\\xa4\\x39\\x11\\x10\\xf1\\xf4\\xa2\\x08\\x02\\x59\\x23\\xd0\\x60\\\r\n\\x41\\x02\\x10\\x16\\xbf\\x76\\x7e\\x33\\x22\\x11\\x96\\x7d\\x85\\x7c\\x50\\x7e\\\r\n\\x1e\\x0f\\x09\\x13\\x60\\x06\\x11\\xfd\\x80\\x3f\\xb3\\x2f\\x97\\xbe\\x10\\x84\\\r\n\\x58\\x4f\\x5d\\x5b\\xa9\\x1d\\x69\\x2b\\x4b\\xda\\x0e\\x52\\x86\\x87\\xd0\\xb0\\\r\n\\x35\\x4f\\xeb\\xc1\\x48\\x29\\xa7\\x00\\x16\\x3e\\x8a\\xa9\\x7d\\xe0\\x10\\xb2\\\r\n\\xc4\\x34\\x48\\x05\\x44\\x42\\xb5\\xe7\\xd0\\xc1\\x11\\x46\\x54\\xb0\\x40\\x82\\\r\n\\x04\\x12\\xb8\\x8e\\x18\\x41\\x58\\x59\\x48\\x21\\x4a\\x41\\x09\\x07\\x44\\xe9\\\r\n\\x80\\xaa\\xb1\\x53\\x02\\x35\\x8a\\x92\\x68\\x84\\xaf\\x78\\xa4\\x83\\x15\\xb4\\\r\n\\x89\\x06\\x8e\\xd1\\xd1\\x8c\\x08\\xb2\\x78\\x51\\x90\\x00\\xea\\xb8\\xb0\\xf8\\\r\n\\xca\\x16\\xe6\\xb4\\x0a\\xaa\\x16\\x0c\\x18\\x94\\xcf\\xaa\\x62\\x5c\\x2f\\x3a\\\r\n\\xb3\\x70\\x02\\x82\\x60\\x24\\x0b\\x70\\x86\\x83\\x47\\x8c\\x20\\xd9\\xc9\\x14\\\r\n\\x42\\x27\\x5a\\x78\\xe6\\x58\\x84\\x80\\x80\\x53\\xc5\\x3f\\xf5\\x2a\\x62\\x28\\\r\n\\x94\\x4d\\x8f\\xc3\\xa0\\xd7\\x22\\x73\\x45\\x10\\x2d\\xc0\\x1a\\x8d\\x52\\x08\\\r\n\\x26\\x9e\\x16\\xed\\x86\\x41\\xb0\\x3e\\x82\\x52\\xa8\\xd0\\x0c\\x04\\xe2\\xe8\\\r\n\\x10\\x17\\x40\\x40\\xe1\\x00\\xb4\\x01\\x84\\x71\\x8c\\x8d\\x17\\x13\\x90\\x34\\\r\n\\x20\\xe0\\x2e\\x78\\xce\\xd1\\x60\\x80\\x89\\x42\\xdd\\xa6\\x17\\x83\\xd0\\xd3\\\r\n\\xd0\\xb8\\xb0\\x0c\\x62\\x40\\x22\\x12\\x57\\x3a\\x95\\x08\\x28\\x5c\\xd1\\x57\\\r\n\\xe0\\xbc\\x45\\xc2\\x8c\\x02\\x61\\xf3\\xa6\\x82\\x62\\x2e\\xf3\\x8e\\xbb\\xd0\\\r\n\\x09\\x08\\x78\\x96\\x0a\\xd3\\x26\\xa1\\xf7\\x61\\x2c\\x52\\x0d\\x46\\x82\\xe0\\\r\n\\x51\\x83\\x40\\x5c\\x41\\xa2\\x51\\x12\\x02\\xdf\\x5d\\x51\\x79\\x9c\\x23\\x58\\\r\n\\xc5\\x60\\xac\\x5c\\x0e\\x1a\\x42\\x09\\x48\\xa0\\xc6\\x13\\x40\\x12\\x1a\\x5a\\\r\n\\x3a\\x04\\x61\\x13\\x01\\xb3\\xd1\\xfc\\x34\\xfa\\x82\\x1a\\x9c\\x14\\x0b\\x25\\\r\n\\x80\\x85\\x14\\x6c\\x2b\\xfa\\x83\\x4f\\xbc\\xf6\\x1c\\xea\\x94\\xd1\\xc5\\x2d\\\r\n\\x95\\xc1\\x17\\x37\\x99\\x11\\x0d\\x18\\xe5\\xa5\\x1f\\x45\\x2f\\x4b\\xc5\\xb1\\\r\n\\x04\\xc3\\xed\\x58\\xa2\\x16\\x56\\x3c\\x1b\\x09\\xa4\\x46\\x81\\x02\\x8a\\x87\\\r\n\\x45\\x5a\\xa8\\x8e\\x35\\x00\\x80\\x50\\xc4\\xb3\\x47\\x8a\\x3c\\x6c\\x20\\x2c\\\r\n\\x72\\xb2\\xb0\\x09\\xe4\\x43\\x2c\\x34\\x71\\x6b\\xfc\\x62\\xd5\\xe0\\x8e\\xdb\\\r\n\\x58\\x38\\x4a\\xbd\\x27\\x07\\x14\\x62\\x05\\x90\\x91\\x45\\xbd\\xb2\\xf6\\xc3\\\r\n\\x8f\\x35\\x36\\xc1\\x71\\x57\\x12\\x83\\x65\\x95\\x21\\xa4\\x22\\x82\\xf2\\xd4\\\r\n\\x71\\x30\\xf2\\xb8\\x4e\\x4b\\x0c\\x16\\x89\\xb5\\xdc\\x14\\x13\\xea\\x0d\\x60\\\r\n\\x2d\\x02\\x82\\x38\\x45\\xa8\\x03\\x3b\\x7a\\xaf\\xdc\\x46\\x34\\x8f\\x62\\x00\\\r\n\\x4a\\x06\\x36\\x5e\\x24\\x89\\x4f\\x8c\\x0f\\x6a\\x00\\x94\\x40\\x2a\\xb6\\x12\\\r\n\\x3c\\x70\\x15\\x9f\\xe9\\x17\\x16\\x27\\x2e\\xca\\x83\\xfd\\x76\\x6b\\x72\\xd6\\\r\n\\xb7\\x17\\x78\\x26\\x3e\\x15\\x48\\xf2\\xa9\\x44\\xe0\\xa0\\x39\\x6d\\x54\\x06\\\r\n\\x40\\x90\\xd0\\x6b\\xb0\\x01\\xdc\\x1d\\x63\\x04\\x49\\x42\\xf4\\x01\\x11\\x51\\\r\n\\xe0\\xae\\x3d\\x0e\\x86\\x74\\x18\\x4d\\x18\\xaa\\x90\\x0e\\x3c\\x29\\x59\\x20\\\r\n\\xfc\\xcc\\xd9\\x1f\\x2d\\x1a\\x0a\\x92\\x86\\x74\\xca\\x5b\\x48\\x8a\\x24\\x7c\\\r\n\\x42\\x5e\\xde\\xa3\\x84\\x60\\x41\\x2c\\x7c\\x68\\x8d\\x40\\xd2\\x17\\x12\\x47\\\r\n\\xaa\\xc0\\x49\\x92\\xe5\\xac\\x16\\xe1\\xaa\\x05\\x21\\xbe\\x8b\\x09\\xfb\\x01\\\r\n\\xff\\x00\\x5f\\xca\\xf5\\x23\\x30\\xa5\\x7f\\x41\\x50\\x31\\xb8\\x14\\x62\\xce\\\r\n\\x02\\x08\\xd2\\x5d\\x54\\x22\\x27\\x96\\x1b\\x30\\x70\\x24\\x41\\x04\\x25\\xa8\\\r\n\\x82\\xa1\\x31\\x07\\x7e\\xfc\\x79\\x6a\\x64\\x34\\x08\\xd2\\xe6\\x3f\\xa4\\xd4\\\r\n\\xf5\\xde\\x3a\\xab\\xba\\x55\\x11\\x95\\x49\\x05\\xf5\\xa0\\xfc\\x01\\x25\\x10\\\r\n\\x9e\\xa1\\x01\\x30\\x7c\\xd4\\x69\\x70\\xd8\\x2a\\x74\\xa2\\x09\\x98\\x11\\x49\\\r\n\\xaa\\xf2\\xaf\\x00\\x55\\x2a\\x41\\x55\\x00\\x03\\x5b\\x4b\\x50\\x88\\x81\\x89\\\r\n\\xae\\x84\\xd2\\x42\\xa0\\x14\\x5d\\x84\\x20\\x1c\\x18\\x41\\x85\\x17\\x05\\x11\\\r\n\\x04\\xc6\\x25\\xd7\\xe6\\xf2\\x16\\xa1\\x62\\x30\\x08\\xc5\\x36\\x0a\\xb4\\x02\\\r\n\\xb0\\x70\\x84\\xd4\\xf9\\x29\\xff\\x00\\x04\\x2f\\x86\\x50\\x7d\\x2b\\x45\\x9a\\\r\n\\x25\\x05\\xf7\\x7f\\x74\\xf2\\x9f\\xef\\x63\\xe5\\x56\\x0b\\x84\\xb5\\x0e\\x34\\\r\n\\xa0\\x4a\\x28\\x44\\xa6\\x24\\xd2\\x16\\x8a\\x0a\\x88\\xbe\\xb9\\x99\\xcd\\x8f\\\r\n\\xf4\\x9c\\x2c\\x36\\x2c\\x60\\x64\\x22\\xd8\\x1d\\x5c\\xa4\\x04\\x46\\x90\\x0b\\\r\n\\x50\\xa5\\x26\\x87\\x3e\\xee\\xac\\x18\\x0e\\x08\\x32\\xdb\\xb3\\x41\\x30\\x0b\\\r\n\\x1b\\xcb\\xc5\\x4a\\x92\\x81\\x06\\xea\\x33\\x16\\xe9\\x44\\xe3\\x17\\xd5\\x0e\\\r\n\\x19\\xd2\\xe1\\x15\\x1b\\x97\\x8c\\xfd\\x55\\xfa\\x0c\\xed\\x45\\x23\\x0f\\xb8\\\r\n\\x8c\\x44\\x22\\x21\\x29\\x7e\\x83\\x19\\x8f\\xfe\\x90\\xd9\\x23\\x54\\x1d\\x32\\\r\n\\x0d\\x11\\x76\\x83\\x6a\\x0c\\x95\\xa0\\xc4\\x7d\\x81\\x8b\\x92\\xc7\\xd5\\xeb\\\r\n\\xb2\\xa5\\x74\\xe3\\x42\\x8b\\x4e\\x34\\x0c\\xee\\xb0\\xa0\\x89\\x6a\\x41\\x06\\\r\n\\xe0\\x06\\x54\\x36\\x00\\x20\\x48\\xdf\\x90\\x82\\x08\\x66\\x87\\x94\\x10\\xa8\\\r\n\\xc4\\xc0\\x4a\\x33\\x20\\x40\\xef\\x8f\\x5e\\x69\\xc9\\x21\\xb4\\x1b\\x42\\x2b\\\r\n\\xbd\\x26\\x03\\x00\\x80\\xe8\\x06\\x88\\x31\\x5c\\x34\\x29\\xc8\\x42\\x02\\x14\\\r\n\\x04\\x8a\\x98\\xa1\\x5f\\xf3\\x70\\x79\\x47\\x23\\xd0\\x1d\\xac\\x50\\x39\\x8a\\\r\n\\x41\\x14\\x70\\xe7\\x58\\x12\\x0a\\x00\\x30\\xf4\\xd5\\x00\\xd0\\x27\\x89\\xec\\\r\n\\x95\\x84\\x1d\\x16\\x34\\xb0\\x5a\\x33\\x49\\x18\\xec\\x80\\x14\\x90\\x30\\x19\\\r\n\\xae\\x60\\x23\\xc2\\x97\\x19\\x2d\\x30\\x08\\xc3\\x62\\x38\\x14\\xd6\\x37\\x80\\\r\n\\xcd\\x44\\x53\\x40\\x0a\\x1c\\x10\\x65\\xdc\\xb2\\xc4\\x10\\xd0\\x3d\\x7d\\x34\\\r\n\\xe6\\x53\\xa6\\x2d\\xa9\\x94\\xc4\\x0c\\x80\\x55\\x40\\x36\\x25\\xaf\\x2f\\x25\\\r\n\\x04\\x2e\\x0d\\x50\\x5a\\x48\\x1c\\x64\\x1d\\x82\\x61\\x10\\x99\\xf9\\x68\\x02\\\r\n\\x9d\\xea\\x20\\xc2\\xa0\\x08\\x44\\x43\\x6b\\x17\\x04\\x92\\x3c\\x6e\\x9a\\x64\\\r\n\\x51\\x6a\\xd3\\x5c\\x0a\\x0d\\x8c\\x12\\x14\\x8b\\x37\\x40\\xe1\\x9e\\xa4\\x66\\\r\n\\x8e\\x10\\x66\\x48\\x55\\xfc\\x04\\x47\\x14\\x9e\\xc6\\x98\\x30\\x0a\\x46\\x9e\\\r\n\\x20\\xbb\\xd2\\x18\\x14\\x7c\\xb1\\x24\\x03\\xc0\\xce\\x7b\\x59\\x63\\x18\\xc8\\\r\n\\x93\\x0f\\xf0\\xe1\\x83\\x1b\\x59\\x10\\x4b\\x0a\\x62\\x2b\\x28\\xde\\xba\\x4c\\\r\n\\x2a\\x01\\x56\\x48\\x25\\xf0\\x87\\x4e\\x34\\x3e\\xf7\\x85\\x93\\x55\\x82\\x29\\\r\n\\xa7\\xbf\\x79\\x03\\xd9\\x46\\xef\\xa3\\xc2\\x28\\x60\\x45\\x14\\x0d\\x12\\x84\\\r\n\\x1b\\xf2\\x8b\\x43\\x74\\xbb\\x14\\x02\\x27\\xb5\\xa2\\xcc\\x4a\\xa8\\x5b\\x3e\\\r\n\\xdc\\x82\\xcc\\x50\\x34\\xd0\\x18\\x10\\xc5\\x01\\xcf\\x53\\x92\\xd6\\x13\\x4a\\\r\n\\x00\\x6a\\x13\\x1f\\x06\\xc3\\xdf\\xb2\\xcf\\x24\\xa9\\x30\\x78\\xc3\\x04\\x16\\\r\n\\x2a\\x5f\\x78\\x74\\x32\\xeb\\xb0\\x16\\x0c\\x2a\\x1e\\xc9\\xf8\\xf4\\x34\\x83\\\r\n\\xeb\\x6a\\xa2\\x08\\x91\\x81\\x4e\\x11\\x47\\xbd\\xed\\xd1\\x41\\x41\\x7d\\x2a\\\r\n\\x41\\x99\\x3e\\x78\\xb3\\x0b\\x03\\x02\\xca\\xc2\\x62\\x4f\\xf9\\x9f\\x9a\\x6f\\\r\n\\xbd\\xae\\x84\\x0f\\x50\\xf4\\xf6\\xa7\\xc5\\x02\\x00\\xa5\\x28\\xd1\\x0c\\x80\\\r\n\\x3a\\xc8\\xa1\\x37\\x57\\x95\\x21\\x71\\xff\\x00\\x7e\\x48\\xc2\\xa0\\xca\\x54\\\r\n\\x77\\xd0\\x9b\\x24\\x80\\x18\\x53\\x53\\xc3\\xfd\\x5d\\x0e\\x4b\\xa9\\x34\\x80\\\r\n\\x0e\\xaf\\xc0\\x60\\x78\\xc7\\x36\\x1d\\x90\\x00\\x35\\x13\\xc7\\xbb\\xad\\x7f\\\r\n\\xcc\\xed\\x02\\xc2\\x8b\\x06\\xa4\\xa3\\xfa\\x42\\xbf\\x5a\\x12\\x03\\x13\\x3a\\\r\n\\x85\\xc5\\x45\\xc8\\x8a\\xd8\\x98\\x1e\\x55\\x4a\\x42\\x3e\\x9b\\x42\\x9d\\x82\\\r\n\\x51\\x12\\x8f\\xbe\\xab\\x10\\xd2\\x5f\\xa1\\x4e\\xa3\\x4a\\xfb\\x84\\x44\\xc6\\\r\n\\xcb\\xf5\\x14\\x03\\x43\\x48\\xa5\\x2b\\x09\\x89\\xd0\\x11\\x30\\xd3\\x90\\x09\\\r\n\\x19\\x51\\x19\\x48\\xc8\\xe7\\x2a\\x84\\x52\\x08\\x02\\x21\\x54\\x28\\xf1\\xac\\\r\n\\x1e\\x01\\x99\\x62\\x28\\xf4\\x0a\\x4b\\x48\\x2d\\xa1\\x92\\x8b\\xc2\\x8b\\x40\\\r\n\\x92\\x14\\x2a\\x1c\\x87\\xd9\\x22\\x14\\x94\\x20\\x8a\\xa8\\x31\\x54\\x53\\xa0\\\r\n\\x9d\\xa8\\x40\\x01\\x42\\x9f\\x67\\xba\\x2a\\xe0\\x40\\x63\\x2a\\x1c\\x78\\x00\\\r\n\\xe3\\x03\\xca\\xf4\\x22\\x84\\xf6\\x47\\x00\\x96\\xd9\\x49\\x72\\xb0\\x37\\xb2\\\r\n\\x74\\xb9\\x6e\\x63\\x2d\\xf4\\xd1\\xe6\\x10\\x15\\x53\\xb2\\xb1\\x03\\xe3\\x78\\\r\n\\x95\\xa2\\x1d\\x68\\x83\\x92\\x72\\x3d\\x20\\x64\\xd5\\x0e\\xaa\\xa8\\x13\\x2a\\\r\n\\xb1\\x15\\xa8\\x59\\x0f\\x45\\xb2\\x26\\x11\\xdf\\xc2\\x6c\\xc7\\x42\\xb1\\xca\\\r\n\\xba\\x11\\x56\\x08\\xf0\\x35\\x84\\xb0\\x2e\\x30\\xaa\\x20\\x91\\xad\\x0c\\x28\\\r\n\\xbf\\x1b\\xfb\\xc4\\x59\\x03\\x22\\xa3\\x63\\x3f\\xf3\\x91\\x24\\x48\\xa5\\x19\\\r\n\\x40\\x84\\x94\\x2a\\x78\\xd0\\xbb\\xd0\\x20\\x5f\\x30\\xfc\\xb0\\x98\\x10\\x06\\\r\n\\x28\\x1c\\x92\\x85\\xef\\x7f\\x07\\x92\\x50\\x48\\x00\\xbc\\x03\\x97\\x39\\x0c\\\r\n\\x12\\x61\\x25\\xc4\\xd2\\x85\\xe3\\x9d\\x24\\x84\\xe7\\xf2\\x70\\xd6\\xd7\\x48\\\r\n\\x43\\x45\\x94\\x6d\\x6c\\x67\\x58\\x81\\x0a\\xa0\\x84\\x67\\xd8\\xe1\\x88\\xbb\\\r\n\\x60\\xa9\\x54\\xc5\\x80\\x6c\\xa0\\x82\\xe1\\x3d\\xc2\\x2c\\x56\\xea\\x70\\x8a\\\r\n\\x2d\\xcf\\x0b\\x6d\\x4c\\x50\\xd8\\x9c\\x1a\\x3f\\x04\\x7e\\x17\\x3a\\x81\\x94\\\r\n\\x55\\x71\\x8d\\x9b\\xfe\\x00\\x99\\x11\\xf1\\x02\\x0a\\x7d\\x65\\x0c\\xa3\\x57\\\r\n\\xcc\\x50\\x03\\x12\\x82\\xac\\x20\\xca\\x5a\\x19\\x54\\xc9\\x5d\\x08\\x25\\xae\\\r\n\\xab\\x20\\x9a\\xba\\x71\\x00\\x50\\x16\\x1a\\x54\\xac\\x22\\x0c\\xc7\\x8a\\x23\\\r\n\\x25\\x05\\x1a\\x3d\\xdf\\xc7\\x42\\xda\\xa7\\xb0\\xe3\\x42\\x60\\x72\\x63\\x3d\\\r\n\\xe8\\x71\\x26\\x62\\x0d\\x89\\x01\\xe1\\x0c\\x40\\xfc\\x20\\x3c\\x33\\x3c\\xc5\\\r\n\\x33\\x19\\xc7\\xb9\\x1c\\x16\\x69\\x08\\x0b\\x32\\x6f\\xd3\\x74\\x0e\\xb2\\x54\\\r\n\\x49\\x44\\xc5\\xa4\\x15\\x51\\x1c\\x54\\x94\\x14\\x5b\\x1a\\x0d\\x40\\x69\\xc7\\\r\n\\x50\\x12\\x62\\x0a\\x2c\\xad\\x13\\xc5\\x09\\x24\\xbc\\x32\\x19\\x06\\xfb\\x6c\\\r\n\\x2b\\x5c\\x75\\x2e\\x85\\x2f\\x81\\x01\\xca\\xd8\\x83\\x20\\x64\\x48\\x9f\\x51\\\r\n\\x39\\xed\\xe1\\x8a\\x0e\\x92\\x6a\\x8b\\xd2\\x0b\\xd1\\xd1\\xad\\x78\\xab\\x18\\\r\n\\x47\\x74\\xd6\\xa0\\xba\\x8f\\x53\\x8b\\x51\\x0d\\xcf\\x11\\x5c\\xcf\\x82\\x46\\\r\n\\x5e\\x4a\\x58\\x40\\x34\\x44\\xa2\\xf9\\x51\\xa1\\x5d\\xf1\\x18\\x4e\\x19\\xa5\\\r\n\\x6c\\xf6\\x25\\x5d\\xfb\\xbe\\x93\\x81\\x39\\x7e\\x31\\x82\\x54\\x26\\xa1\\x59\\\r\n\\x46\\xbf\\x79\\xa9\\xe3\\x51\\x3d\\x07\\xa4\\x10\\x22\\x05\\x1c\\x67\\x50\\xcd\\\r\n\\xaa\\xc1\\x02\\xc1\\x58\\x21\\xa0\\xbc\\x07\\x0a\\x29\\x2d\\xa8\\x83\\x05\\x5b\\\r\n\\x5c\\x51\\x45\\x01\\x08\\xe5\\x28\\x11\\x03\\xd1\\x82\\x2e\\x35\\xa6\\x71\\xc6\\\r\n\\x62\\x8a\\xe5\\xae\\x29\\x46\\x54\\xb4\\xab\\x4e\\x61\\xb0\\xa8\\x38\\x58\\x83\\\r\n\\xe5\\x29\\xef\\xf7\\xc4\\xe7\\x94\\xa4\\x12\\xdf\\x5e\\x34\\x13\\x10\\x04\\xbe\\\r\n\\xb1\\x4e\\x50\\xc6\\x68\\x17\\xd1\\xef\\xd4\\x17\\xe2\\xf6\\x5d\\x41\\x03\\xbf\\\r\n\\x54\\x10\\x08\\x6c\\x3d\\xb5\\xaf\\x05\\xe1\\x40\\x68\\xfb\\x6a\\x02\\x49\\x44\\\r\n\\xb2\\x82\\xf3\\xdf\\x8d\\x38\\xc0\\xf5\\xee\\xa1\\x08\\xbc\\x70\\x83\\x24\\x57\\\r\n\\x30\\xc4\\x5f\\x53\\x64\\x9c\\x20\\x77\\x10\\xe9\\xb8\\x11\\x02\\x59\\x4f\\xd0\\\r\n\\x09\\xf5\\x40\\xab\\x4f\\x7d\\x06\\x5d\\x28\\x2b\\x02\\x29\\xa7\\x41\\xde\\x97\\\r\n\\xfc\\x70\\x8a\\x2b\\x20\\x15\\x5a\\xf4\\xa1\\xe6\\xe2\\xa0\\x81\\x84\\xc0\\x42\\\r\n\\x02\\x2d\\x20\\x7a\\xb7\\x28\\xa0\\x99\\x35\\xa0\\x28\\x04\\x88\\x59\\x12\\x08\\\r\n\\x00\\x56\\xac\\x72\\x8c\\x81\\x54\\xe9\\x82\\x91\\x60\\x18\\x37\\x1a\\xb4\\x92\\\r\n\\x0f\\xd6\\xc0\\x80\\xb5\\x00\\xb2\\xd1\\x59\\x57\\x81\\x98\\xb1\\x1d\\xb2\\xda\\\r\n\\x00\\xf8\\xf8\\x49\\xf0\\xfc\\x1e\\x88\\xc4\\x65\\x6d\\x9a\\x44\\x3a\\x06\\x13\\\r\n\\xa2\\x91\\x19\\xbe\\xe5\\x1f\\xfb\\x1f\\x7b\\xf1\\x4a\\xa4\\x0c\\x80\\xad\\x8a\\\r\n\\xd8\\x98\\x4a\\x17\\x95\\x48\\xfc\\xa2\\x31\\x40\\x61\\x42\\x22\\x92\\x80\\x10\\\r\n\\xb6\\x21\\x66\\x02\\x4c\\x8c\\x2e\\x8c\\x2a\\xc1\\x8a\\x53\\x6e\\x3e\\xaa\\x2c\\\r\n\\x48\\x63\\x48\\x6a\\x79\\x12\\x79\\xaa\\x9b\\xfa\\x12\\x79\\x5e\\x58\\xd0\\x2d\\\r\n\\xc2\\x41\\x41\\x03\\x88\\xe9\\x9b\\xba\\x87\\xd8\\x6c\\x98\\x85\\xf8\\x15\\xd5\\\r\n\\x6a\\xb4\\x97\\x27\\x1b\\x82\\xa8\\x08\\x2a\\x71\\x91\\xf1\\x42\\xb2\\x8e\\x2a\\\r\n\\x27\\xd0\\x40\\x44\\xe1\\x44\\x03\\x6e\\x21\\x90\\x41\\xb0\\x69\\x54\\x1a\\x46\\\r\n\\x35\\x8a\\x01\\x23\\x4c\\x1e\\x82\\x1e\\x47\\xe9\\x8a\\x34\\x1a\\x20\\xa0\\x58\\\r\n\\x22\\xfd\\x54\\x20\\x04\\x44\\xcc\\x20\\x34\\x6e\\x68\\x6b\\xe8\\xe0\\x80\\x0a\\\r\n\\x47\\x00\\x47\\x48\\xbd\\x17\\x38\\x03\\x10\\x51\\x67\\x44\\x1c\\x69\\xc5\\xa0\\\r\n\\x48\\x0d\\x40\\x5b\\x2b\\x01\\x51\\x81\\x62\\xf8\\x22\\x4e\\xa2\\xd8\\x10\\x40\\\r\n\\xad\\x33\\x1e\\x12\\x37\\x0d\\x7a\\x01\\xe8\\xa3\\xae\\x55\\x42\\xcc\\x41\\xe1\\\r\n\\x66\\x09\\x07\\x40\\xef\\x80\\x84\\xd0\\x20\\x36\\x6b\\xc4\\x07\\xcc\\x48\\x0b\\\r\n\\xb2\\x1c\\x0d\\x30\\x04\\xc9\\x4c\\xda\\xdd\\xd4\\x02\\x81\\x26\\xd7\\x17\\x6a\\\r\n\\x14\\x90\\xb8\\x4b\\xe0\\x78\\xae\\x29\\x0e\\x88\\x8f\\xd3\\x46\\x3f\\x48\\xf3\\\r\n\\x3f\\xed\\x88\\xb7\\x0c\\x99\\x30\\x2a\\x0e\\xcd\\x11\\x47\\x33\\x88\\x87\\xc2\\\r\n\\xf5\\x63\\xa9\\xc4\\xe2\\x57\\x62\\x95\\x40\\x15\\xd0\\xa9\\x02\\x2b\\x40\\x30\\\r\n\\x5c\\x94\\x86\\x5c\\x52\\x10\\x4c\\x1a\\x15\\x43\\x78\\x0b\\xf4\\xc8\\x49\\x22\\\r\n\\x80\\xfa\\xf4\\x42\\x5b\\xaf\\x7b\\xe6\\xb2\\x96\\x09\\x00\\x2c\\x5a\\x9b\\xe5\\\r\n\\x95\\x90\\x90\\x1e\\x6d\\xc1\\x7d\\x71\\x34\\x29\\x49\\x09\\x70\\x23\\x60\\x8d\\\r\n\\x34\\x85\\x90\\x1a\\xc2\\x2f\\xa8\\xee\\x7a\\xb0\\xa3\\x0a\\x4c\\x58\\xc3\\x2c\\\r\n\\xfe\\xe7\\x2f\\x2a\\xc4\\x48\\x24\\x34\\x50\\x10\\x83\\x90\\x40\\x74\\x29\\x7d\\\r\n\\xb2\\xe6\\xcd\\xbf\\xd1\\xb6\\xfd\\xbd\\x51\\x14\\xd4\\x00\\xb4\\x5f\\x04\\x3e\\\r\n\\x23\\xf4\\x7e\\x30\\x01\\x08\\x4e\\x2b\\x12\\x07\\x0c\\x44\\x1b\\x73\\x9c\\x7b\\\r\n\\x14\\x08\\x30\\x45\\x5a\\x88\\x04\\x5f\\xab\\x12\\x84\\x62\\xac\\x09\\x15\\x57\\\r\n\\x56\\xd6\\x9a\\x8e\\x30\\xd8\\x9d\\xd0\\x46\\x29\\x1a\\x02\\x36\\xd2\\x12\\x9a\\\r\n\\x64\\x4a\\x12\\x0f\\xe8\\x47\\x58\\x34\\x09\\x4b\\x46\\x16\\x55\\xb1\\x20\\xaa\\\r\n\\x9c\\x60\\x3e\\x7b\\x98\\x49\\x18\\x10\\xaf\\x42\\x66\\x96\\x7c\\x6f\\xe7\\x79\\\r\n\\x22\\x9a\\x98\\xda\\x80\\x8f\\x13\\x10\\x8a\\xa9\\xc1\\x42\\x12\\x88\\x03\\xbb\\\r\n\\x61\\x37\\xc9\\xf1\\x66\\xcf\\x3b\\xc4\\x08\\x1f\\x77\\xd2\\x58\\x40\\x06\\xaa\\\r\n\\x7b\\x5e\\x6a\\xc1\\xba\\xd7\\x74\\xa2\\x11\\x1a\\x20\\x9b\\x8f\\xa5\\xfc\\x91\\\r\n\\xfd\\x78\\x8d\\x83\\x42\\x31\\x24\\x7a\\xd1\\xd0\\xf6\\xe6\\x51\\xed\\xfb\\x01\\\r\n\\x95\\x7a\\x02\\x0a\\x01\\x29\\xea\\x40\\x83\\x59\\x66\\x9e\\x0e\\xba\\x8e\\xa3\\\r\n\\xe4\\x47\\x58\\x6d\\x02\\x94\\x8f\\x54\\x85\\x46\\x82\\x88\\x29\\x1a\\x10\\x01\\\r\n\\x20\\xd1\\x54\\x53\\x07\\x20\\xc1\\x94\\x2a\\x0a\\x54\\xa3\\x49\\xa2\\x39\\xca\\\r\n\\x59\\xb9\\xbb\\x50\\x00\\x10\\x6b\\x91\\x24\\x52\\x55\\x6e\\x94\\xfb\\x06\\x68\\\r\n\\xa3\\xd7\\x95\\x8e\\x4c\\x41\\xa1\\xa7\\xa4\\x61\\x10\\x3b\\x49\\x90\\x85\\x4c\\\r\n\\x69\\x9a\\x28\\x8f\\x44\\x65\\xe7\\x10\\x1a\\x8c\\x1c\\x41\\x44\\x4f\\xe2\\xa4\\\r\n\\x5e\\x11\\x67\\x74\\x2f\\xf7\\x03\\xdc\\x41\\xa0\\xd7\\xc1\\xca\\x99\\x8d\\x9c\\\r\n\\x05\\x51\\x0a\\x8f\\xb4\\x4d\\xd3\\x11\\x07\\x70\\x92\\x0b\\xa0\\x4d\\x17\\x84\\\r\n\\x82\\xa2\\xa0\\x1b\\xa2\\x65\\x15\\x0c\\x11\\x2f\\x1b\\xd0\\xaa\\x31\\xc8\\x09\\\r\n\\xc4\\x10\\x50\\x41\\xc8\\x06\\xc4\\x45\\x0a\\x68\\xf1\\xa2\\x40\\x05\\x0d\\x10\\\r\n\\x1c\\xf7\\xcb\\x1c\\x6d\\x29\\x40\\x2b\\x30\\x3c\\x23\\x9b\\xd4\\xc2\\x48\\xf2\\\r\n\\x4c\\x02\\x8b\\xcd\\xe7\\xed\\x19\\x36\\xcd\\x4f\\x01\\xe3\\x1c\\x23\\xc0\\xc0\\\r\n\\xeb\\xc8\\xdc\\x00\\x14\\x21\\x42\\x52\\x80\\x8e\\x2a\\x3a\\xd0\\xf3\\x5f\\x3e\\\r\n\\x23\\xa9\\x65\\x2b\\xd7\\x15\\x35\\xd0\\x2a\\x00\\x6e\\x49\\x79\\x28\\xde\\x62\\\r\n\\x45\\x01\\x53\\x43\\xa7\\xad\\x4e\\x15\\x41\\x00\\xaf\\x5b\\x6e\\x00\\x01\\x22\\\r\n\\xf8\\x2c\\x16\\x2f\\x52\\xe0\\xd0\\x42\\x97\\xcf\\x17\\x07\\x5a\\x54\\x1e\\x56\\\r\n\\xa3\\x07\\xcc\\x12\\x81\\xc5\\x4a\\x15\\xe7\\x55\\x0b\\x81\\x08\\x81\\xd3\\x48\\\r\n\\x68\\xb0\\xf8\\x10\\x78\\x15\\x08\\xf0\\x63\\x87\\xc1\\xc0\\x3c\\x9c\\x83\\x88\\\r\n\\x82\\xc4\\x93\\x98\\x08\\xe5\\x72\\x32\\x89\\xb0\\xb6\\x70\\x61\\x48\\x26\\xa5\\\r\n\\xb7\\x05\\x51\\x69\\x65\\x54\\xab\\xb7\\x05\\xc8\\x0b\\x0a\\xb6\\xc6\\x78\\xb4\\\r\n\\x73\\xd6\\x59\\x4d\\xef\\x9b\\xc2\\x88\\xa2\\x7c\\xe3\\xda\\x62\\xad\\x5d\\x12\\\r\n\\x0b\\x40\\xa2\\xa2\\x6e\\xc4\\xe2\\x26\\xac\\x1a\\x14\\x01\\xfd\\x1c\\x08\\x82\\\r\n\\x0d\\x08\\x54\\x85\\x24\\x58\\x69\\x11\\x74\\x30\\x4d\\xf3\\x8b\\xab\\xc1\\xf8\\\r\n\\x64\\x58\\x16\\x1a\\x49\\xff\\x00\\x47\\x13\\x98\\xd8\\xbe\\x8d\\x30\\x34\\xdc\\\r\n\\x6b\\x54\\x42\\x71\\xbe\\x80\\xca\\x87\\xb0\\x2c\\x68\\x06\\x19\\xb2\\x19\\x24\\\r\n\\x8a\\x40\\x80\\x25\\xc1\\x4d\\x41\\x45\\x81\\xc5\\x46\\x62\\x08\\x13\\x00\\x02\\\r\n\\x01\\x21\\x16\\x3c\\xfd\\x99\\xa4\\x08\\x6d\\xa8\\x14\\xfe\\x9a\\xf9\\xaf\\x47\\\r\n\\xcb\\x50\\x37\\x84\\xea\\x83\\xe1\\xfc\\x06\\x08\\xa1\\x70\\x01\\x9f\\x98\\x09\\\r\n\\xed\\xff\\x00\\x67\\xf7\\x9f\\x44\\x14\\x96\\x92\\x0a\\x86\\x92\\xe3\\xe9\\xe3\\\r\n\\x79\\x2d\\x1a\\x94\\x24\\x08\\x91\\x07\\x20\\x06\\xd7\\x04\\x01\\x7a\\xa8\\x10\\\r\n\\x41\\x7a\\x98\\x2c\\x53\\x6c\\x38\\x59\\x60\\x7a\\x62\\xa8\\xc1\\x00\\x21\\x2f\\\r\n\\xc8\\x7e\\x00\\x20\\x14\\x46\\x06\\x17\\x2c\\x42\\x10\\x5d\\x00\\xf2\\x05\\xec\\\r\n\\xd4\\x8c\\xd5\\x13\\x36\\x1f\\xea\\x60\\x5e\\x11\\xae\\xd4\\x57\\xb8\\x5b\\xf5\\\r\n\\xe4\\x7c\\x0a\\xee\\x03\\xae\\x8a\\x72\\x15\\x69\\x8f\\x88\\x9c\\xcf\\xe4\\x90\\\r\n\\x7c\\xa1\\x82\\x51\\x20\\xd3\\x72\\xa0\\x63\\x50\\x04\\x8a\\x09\\x02\\xe9\\xed\\\r\n\\x86\\x59\\x1f\\x56\\x91\\xa8\\x0a\\x13\\x11\\xc3\\x50\\x63\\xb3\\xce\\x73\\x0c\\\r\n\\x10\\x7a\\xb8\\xa7\\xea\\xa3\\xe2\\x40\\x85\\xe2\\x3a\\x56\\x46\\x30\\x5f\\x8a\\\r\n\\x1e\\x9a\\x5a\\xe3\\x33\\x9a\\x10\\xb2\\x67\\xea\\x82\\x20\\xc4\\xfb\\x2d\\x88\\\r\n\\x11\\xb4\\x2c\\x82\\x84\\x36\\x43\\x51\\x2a\\xe4\\x84\\x4e\\x1d\\x0d\\xa5\\x8f\\\r\n\\xd8\\xc0\\x84\\x4e\\xc1\\x0a\\x64\\x52\\xa0\\xa8\\x90\\x97\\x19\\x1c\\x08\\x28\\\r\n\\x38\\x1c\\x6a\\x69\\xa0\\xd8\\x88\\x51\\xf5\\x49\\x52\\x72\\xd0\\x05\\xe8\\x15\\\r\n\\xb8\\x1e\\xc8\\x55\\x86\\x1c\\x46\\xcf\\x0d\\x15\\x9d\\x07\\x05\\x91\\xc1\\x1d\\\r\n\\x7f\\x82\\x89\\x42\\x50\\x28\\x10\\xa8\\xaa\\x1a\\xa6\\xf4\\xe0\\x1a\\xb1\\xe5\\\r\n\\x3e\\x28\\x09\\x90\\x8c\\x04\\xf0\\x85\\x09\\xc1\\xa5\\x34\\x41\\xc2\\xd0\\xf4\\\r\n\\x08\\x84\\x64\\xe1\\x49\\x0d\\x9f\\x84\\x40\\xe9\\xe2\\xf5\\xe2\\xb0\\x36\\xcd\\\r\n\\x40\\x0d\\x21\\x48\\x1a\\x2a\\xf2\\xdb\\x25\\xe7\\x83\\x08\\x62\\x96\\xb6\\x12\\\r\n\\xde\\x18\\x97\\xbe\\xb2\\xc8\\x61\\xd8\\x47\\x10\\xf8\\xe1\\xa1\\x22\\x0d\\xa8\\\r\n\\x02\\x51\\xda\\x5d\\x51\\x32\\x22\\x78\\x68\\xa1\\xab\\x51\\x54\\x0c\\x8b\\xe9\\\r\n\\xb5\\xef\\xd6\\xa1\\x6d\\x2d\\xc3\\x41\\xe2\\x52\\x47\\x80\\x28\\x6a\\x21\\xa9\\\r\n\\x82\\xd9\\xf4\\x52\\x44\\xab\\x3a\\x71\\x7e\\x55\\xe3\\x08\\x35\\xfa\\xd3\\x42\\\r\n\\x6f\\x20\\x59\\x44\\xbd\\x0c\\x22\\x6c\\x41\\xb5\\xad\\x47\\x05\\x20\\x7e\\xa1\\\r\n\\xd5\\x8b\\x38\\xa6\\xf1\\xe0\\x11\\x42\\x90\\x80\\x29\\x9b\\x1a\\x19\\x10\\x64\\\r\n\\x33\\xd0\\x51\\x81\\x11\\x0d\\x81\\x27\\x18\\xe2\\x64\\x65\\xbf\\x41\\x63\\x31\\\r\n\\x7e\\xaf\\xbc\\x81\\xda\\x58\\x16\\x54\\x09\\x44\\x22\\xbe\\x00\\x96\\x1d\\xdb\\\r\n\\x0d\\x41\\xf4\\x11\\x01\\x43\\x81\\x16\\xa0\\xc1\\xbd\\x7f\\x90\\xcc\\x90\\x5e\\\r\n\\x01\\x76\\xad\\x46\\x11\\x8f\\x85\\x90\\x1d\\xb8\\x0d\\x46\\x55\\x21\\xf0\\x1f\\\r\n\\x5b\\x51\\x8c\\x9c\\x73\\x23\\xf2\\x25\\xba\\x44\\x59\\x18\\xa1\\x99\\x24\\xbc\\\r\n\\x69\\xe4\\x1f\\x34\\x28\\x84\\xf4\\x4f\\x0c\\x4d\\x0f\\xd6\\x7a\\x30\\x00\\x68\\\r\n\\xd1\\x00\\x40\\x44\\xbe\\x24\\xe4\\x10\\xa9\\x40\\x4d\\x4e\\x1e\\x0f\\xce\\x6b\\\r\n\\x86\\x63\\x82\\x40\\x62\\x40\\x22\\x20\\xe2\\x74\\x82\\xa8\\x26\\x0c\\x1c\\xc4\\\r\n\\x84\\x02\\xfc\\x0a\\x13\\x39\\x84\\xac\\x71\\xfb\\xf8\\xf7\\xd2\\xd7\\xff\\x00\\\r\n\\xbc\\xe2\\x1b\\x05\\x11\\xc2\\xa8\\x0a\\x16\\x0a\\x3c\\xb9\\x13\\x02\\x36\\x3e\\\r\n\\x00\\x9a\\x7d\\x7f\\x0a\\x8e\\x42\\x8f\\x70\\x4b\\x34\\x90\\x60\\x00\\xfa\\xa1\\\r\n\\x54\\x30\\xa2\\xf7\\x8b\\x42\\x1d\\x3f\\xec\\x3d\\x30\\xde\\x30\\x21\\x15\\x4b\\\r\n\\x4f\\xc1\\x5b\\xa2\\x4f\\xa6\\x44\\x93\\xa8\\x92\\xa0\\x50\\x5a\\xa5\\x14\\x8d\\\r\n\\x60\\x0e\\x46\\xf4\\x0a\\x51\\x49\\x22\\xf9\\x0f\\xb1\\x95\\x51\\x11\\x18\\x1a\\\r\n\\x09\\x5f\\x00\\x2d\\x4a\\xb0\\xcc\\x20\\x1a\\xbb\\xca\\xba\\x90\\x26\\x30\\x82\\\r\n\\x6a\\xb6\\x0f\\xd4\\xfe\\xb9\\x9e\\x01\\x41\\x31\\x09\\xf6\\x10\\xe0\\x58\\x79\\\r\n\\xf8\\x9e\\x31\\x0a\\x28\\x41\\xac\\x51\\xaf\\x9a\\xb8\\x29\\xa0\\xe0\\x22\\x41\\\r\n\\x70\\xd7\\x3e\\x7e\\x1b\\x40\\x95\\x95\\x38\\x18\\x0f\\x9f\\xa2\\xdc\\x03\\x91\\\r\n\\x8f\\x1b\\x06\\xb6\\x33\\x08\\x51\\x22\\xf5\\x52\\xa5\\xcd\\x71\\x62\\x0b\\xe8\\\r\n\\x95\\x04\\x99\\x43\\xb4\\x50\\x0c\\x7c\\x60\\x24\\x11\\x5f\\x48\\xd4\\x79\\x4c\\\r\n\\xeb\\x51\\xbf\\x42\\x4f\\x60\\x4d\\xec\\x62\\x43\\x55\\x06\\x8a\\x9d\\x6d\\x06\\\r\n\\xa8\\x08\\x3c\\x30\\x3b\\x9d\\x09\\x0c\\xf2\\x6a\\xda\\x01\\x15\\xc5\\x4f\\xb5\\\r\n\\xbb\\xd1\\x4a\\x80\\xfa\\x2b\\x2d\\x23\\x5d\\x70\\x85\\x2a\\x86\\x89\\xe0\\x7e\\\r\n\\xd4\\xb4\\x3e\\xdf\\x13\\x38\\xd9\\x41\\xa4\\x3c\\x95\\x18\\xb1\\x7c\\x2f\\xd5\\\r\n\\x6f\\x84\\x62\\x96\\x08\\x15\\x90\\xd1\\xa2\\x46\\x83\\x8f\\xcf\\x10\\x86\\x49\\\r\n\\xfd\\x58\\x17\\x44\\x22\\x5a\\xbd\\xe9\\x2e\\x88\\xa4\\x01\\xd3\\x2a\\x9a\\x1b\\\r\n\\x08\\xf0\\xeb\\x92\\x9a\\xa1\\x29\\xa8\\x14\\x46\\xee\\x31\\xd7\\x71\\x42\\xa5\\\r\n\\x55\\x39\\xa7\\xe0\\xb5\\xa3\\xc8\\xf6\\xd4\\xf2\\x64\\x61\\x11\\x30\\xaa\\x08\\\r\n\\x0e\\x29\\xd8\\x87\\x3b\\xd4\\xa4\\x02\\x60\\x68\\x5c\\xba\\xc4\\x90\\xc0\\x42\\\r\n\\x32\\x3a\\x17\\x87\\x81\\x53\\x7f\\x1a\\x41\\xb0\\x98\\x8a\\x0d\\xfe\\x18\\x27\\\r\n\\x37\\xbc\\x94\\x1b\\x64\\x78\\xa8\\xb8\\x28\\x11\\x98\\xd7\\xd2\\x2e\\x14\\xc2\\\r\n\\x57\\xd2\\xa4\\x18\\x80\\x6f\\xab\\xfc\\xd5\\xa5\\x95\\x82\\x9a\\x56\\x01\\xd0\\\r\n\\x1d\\x6e\\x0f\\x10\\xc0\\x6a\\x74\\xec\\x28\\x90\\x38\\x2b\\x45\\x84\\x8c\\x0b\\\r\n\\x51\\xd4\\xd1\\x44\\x71\\xea\\x50\\x5a\\xa5\\xa7\\xd4\\x47\\x06\\x8c\\x15\\x40\\\r\n\\x0d\\x9c\\xaa\\x60\\x05\\x95\\x22\\x0c\\xb1\\xee\\x95\\x20\\x13\\x18\\xba\\x0c\\\r\n\\x79\\x6b\\x95\\xa4\\x7f\\x09\\x23\\xb0\\x35\\x14\\x30\\x16\\x19\\x22\\x08\\x2d\\\r\n\\xd1\\x86\\xc0\\x54\\x60\\x84\\x1a\\xb0\\xa2\\xa0\\xc4\\x6c\\x01\\x0f\\x56\\x37\\\r\n\\x71\\x0a\\x91\\xeb\\xe8\\x06\\x62\\xc7\\x26\\xb6\\xcd\\x21\\x15\\x05\\xb7\\x96\\\r\n\\xa2\\x46\\x21\\x89\\x96\\x08\\x18\\x06\\x83\\x3a\\x06\\x49\\xc5\\x6f\\x2c\\x6d\\\r\n\\x92\\x44\\x24\\xd5\\x29\\xc6\\x6d\\x09\\xd5\\x69\\x2d\\x59\\xc2\\x23\\x0d\\x51\\\r\n\\xad\\xf9\\x5a\\x9a\\x35\\x4d\\x43\\xc7\\x01\\x1c\\x6d\\x51\\x83\\x7b\\x5a\\x9f\\\r\n\\x22\\xc4\\xa0\\x1e\\x1f\\x6c\\x98\\x8a\\x73\\xd0\\x09\\x8d\\xc0\\x0e\\x5f\\xb5\\\r\n\\x16\\x7c\\x7d\\x83\\xe4\\x96\\x18\\x6e\\x77\\x0f\\xad\\x27\\x94\\xd3\\xa4\\x54\\\r\n\\xa8\\x72\\xc9\\x29\\x8c\\x52\\x13\\x09\\xe3\\x40\\x60\\x47\\x33\\x40\\xd2\\xda\\\r\n\\xa5\\x40\\xc1\\x31\\x46\\x13\\xef\\x2e\\xa9\\x95\\xa7\\xe0\\xf9\\xf7\\xb3\\x00\\\r\n\\x86\\x1d\\x33\\x61\\x39\\x42\\x40\\x4a\\xa2\\xd5\\x1c\\x09\\x41\\x82\\x2c\\x31\\\r\n\\x08\\xd7\\x95\\x3d\\x25\\xb4\\x55\\x85\\x48\\x2e\\x91\\xa2\\xcb\\x8d\\x85\\x44\\\r\n\\x89\\xe4\\x6a\\xa2\\x94\\x30\\x8a\\x82\\x86\\xb8\\x68\\x38\\x24\\xe1\\x00\\xe5\\\r\n\\x45\\x00\\x55\\x0b\\xc1\\x45\\xdd\\x91\\x50\\x90\\x67\\xb2\\x0c\\x7c\\x40\\x7e\\\r\n\\x0e\\x21\\x6e\\x91\\x13\\x46\\x08\\x20\\x8b\\x09\\x4e\\xa1\\xb0\\x40\\x60\\x14\\\r\n\\x27\\x8c\\x57\\xec\\x01\\xf7\\x67\\xc5\\xe4\\x00\\xda\\x24\\x26\\x27\\xd4\\xac\\\r\n\\x89\\x93\\x85\\xba\\x20\\x0a\\x0c\\x9e\\x02\\x35\\x54\\x0b\\xad\\x05\\x7c\\x10\\\r\n\\x57\\x40\\x21\\x8f\\xc5\\x05\\x51\\xd8\\xce\\x98\\x20\\xb1\\x11\\x0a\\x28\\x45\\\r\n\\x60\\x8a\\x60\\x5c\\x27\\x1c\\x4b\\x61\\x04\\xdc\\x34\\x4a\\xb2\\x95\\xa0\\x5d\\\r\n\\xcd\\x13\\x0e\\x1c\\x0a\\xda\\xb2\\xd1\\x52\\x82\\x41\\xe5\\x1b\\x82\\xd2\\x03\\\r\n\\x1d\\x42\\xcc\\xe0\\x8c\\x18\\x58\\x69\\xe0\\xa2\\x52\\x47\\x52\\x38\\x21\\x5b\\\r\n\\x60\\xd5\\x88\\xa3\\xa0\\xc1\\xf8\\x80\\x33\\xe8\\x20\\xa9\\x3b\\xd3\\x56\\xc5\\\r\n\\x63\\xc1\\x68\\x01\\x95\\x22\\x78\\xa1\\xa0\\x74\\xd4\\x4e\\x01\\x5a\\xe2\\x02\\\r\n\\x05\\xb4\\xfd\\x00\\xa1\\x17\\x10\\x30\\xea\\x8b\\x4d\\xa9\\x56\\x87\\xc2\\xb6\\\r\n\\x23\\xbc\\x42\\x25\\x8a\\xd0\\x88\\xa2\\x78\\xca\\x8f\\xb2\\x67\\x8b\\x6c\\x49\\\r\n\\xb4\\x3f\\x0b\\x6a\\x69\\x6b\\xa4\\xb2\\x03\\x67\\xaa\\x26\\x57\\xb4\\x45\\xf0\\\r\n\\x4f\\x80\\xcc\\xca\\x99\\x23\\x88\\x18\\x94\\x3c\\x1a\\x7a\\xa9\\x80\\xbe\\x88\\\r\n\\xa1\\xf0\\x30\\x00\\x29\\x6a\\x67\\x6a\\x19\\x85\\x01\\x3a\\xbe\\x35\\x2e\\x14\\\r\n\\x95\\x29\\xba\\x00\\xd9\\xbc\\x00\\x8c\\x85\\x5d\\x53\\x4f\\x99\\x76\\x9f\\x2f\\\r\n\\xdb\\xc8\\x0f\\xf4\\xc9\\x08\\xd8\\x2f\\xe4\\x64\\x5c\\xc6\\xb6\\xca\\x20\\x0c\\\r\n\\xd0\\xa9\\xb8\\xfe\\x93\\x16\\xe5\\x63\\x65\\x82\\x4e\\x92\\x81\\x09\\x78\\xf4\\\r\n\\x4f\\x31\\x89\\x9c\\xa5\\x19\\xcc\\x29\\x39\\x4a\\x34\\xe6\\xb2\\xc8\\xa3\\xe5\\\r\n\\x02\\x81\\x51\\xbe\\x0e\\xf8\\x20\\x8a\\x82\\x09\\x86\\x4d\\x2a\\x08\\x58\\x15\\\r\n\\x56\\x12\\xaf\\x4a\\x10\\x10\\xb3\\x4d\\x09\\x35\\x31\\x71\\xb3\\x69\\x8a\\x84\\\r\n\\xa8\\x27\\x44\\x19\\x2a\\x62\\x50\\xe3\\x14\\x00\\xe4\\x6e\\x55\\x02\\x6a\\x43\\\r\n\\x47\\x27\\x94\\xa3\\xc0\\x44\\x94\\x26\\xdd\\x40\\x10\\x17\\x76\\x5a\\x40\\x12\\\r\n\\xb6\\xc3\\xaa\\x48\\xd9\\x8d\\xa3\\x33\\x06\\xa1\\x4c\\x48\\xc1\\x2a\\x00\\xa9\\\r\n\\xaa\\x85\\xa6\\x3d\\xa3\\x54\\x94\\x92\\x28\\xb5\\x01\\x6f\\x3f\\x0a\\x0a\\x4b\\\r\n\\x38\\x94\\x65\\x19\\x51\\x5c\\x24\\x02\\xbc\\x5f\\x51\\x48\\x34\\x2d\\x27\\xd3\\\r\n\\x38\\x8b\\xa0\\x0d\\x9e\\x92\\x29\\x35\\xa1\\x21\\x3a\\x2c\\x2c\\x2b\\x0a\\xed\\\r\n\\x4b\\x04\\x21\\x09\\xc3\\xfb\\xe3\\x9b\\x00\\x19\\xd0\\x02\\x51\\x44\\x41\\xca\\\r\n\\x02\\x8a\\x4b\\x0b\\xb6\\xa7\\xa8\\x50\\xe0\\xfa\\x38\\x09\\x65\\x25\\x44\\x34\\\r\n\\x82\\x53\\xd2\\x20\\x6f\\x90\\xc2\\x28\\x3c\\x04\\xa1\\x45\\x54\\x51\\xd0\\x2a\\\r\n\\x62\\xfd\\x54\\x83\\x83\\x43\\xed\\xed\\x91\\x47\\x2e\\x8a\\x95\\x2a\\x54\\x0c\\\r\n\\x72\\x4c\\x03\\x55\\x1f\\x68\\x39\\xec\\xd4\\x7a\\x00\\x39\\x96\\x1a\\x10\\x2b\\\r\n\\x0d\\x16\\xa6\\x40\\x4d\\x83\\x82\\x48\\xb8\\x1d\\x3e\\x73\\x5e\\x42\\x3a\\x90\\\r\n\\x6b\\x3a\\xb0\\x24\\x8d\\x81\\xf7\\x1e\\x0d\\xf3\\x20\\x09\\x06\\x24\\x31\\x2d\\\r\n\\x70\\x02\\x0c\\x4a\\x88\\x16\\x04\\xa0\\x42\\x55\\x43\\xfa\\x3a\\x79\\xd6\\x89\\\r\n\\xed\\x20\\x46\\x04\\x9e\\xb2\\x14\\x9e\\x3d\\x84\\x26\\x48\\x72\\x89\\x0f\\x1e\\\r\n\\x46\\xb9\\xf1\\x82\\xba\\x45\\x14\\x30\\x52\\x7d\\x86\\x20\\xac\\x10\\x80\\xc2\\\r\n\\x41\\x49\\xc3\\x92\\x47\\xc0\\x26\\x14\\x4b\\xd2\\xf4\\x5a\\x42\\xed\\x61\\x02\\\r\n\\xb0\\x6a\\x31\\x17\\x53\\x82\\x9f\\xc8\\x14\\x0a\\xa0\\xc0\\x4b\\x2a\\xa2\\x29\\\r\n\\x00\\xbe\\x10\\x51\\x00\\xa8\\x5b\\x59\\x6a\\xf0\\x79\\xac\\xe8\\x12\\x18\\x02\\\r\n\\x8f\\xa1\\xf8\\x29\\xe1\\xf0\\x29\\x08\\x1f\\x18\\x7c\\xc1\\x0f\\xc2\\x2b\\x7e\\\r\n\\x5d\\xe3\\x10\\x65\\x80\\x08\\x5a\\x5b\\x20\\xf7\\x46\\xe9\\xf4\\x1a\\xbc\\x9c\\\r\n\\x90\\x04\\x45\\x02\\xa1\\x6a\\xc7\\x9d\\x6b\\xc0\\x91\\x68\\x18\\x14\\xcf\\x8a\\\r\n\\xc5\\x13\\x6d\\xc0\\x03\\x68\\x69\\xd9\\x55\\x2a\\xe9\\x41\\xcd\\xae\\x3b\\xed\\\r\n\\x10\\xb1\\x9b\\x10\\x94\\xb0\\x37\\xd4\\x0e\\x8e\\xfe\\x92\\x2f\\xb1\\x34\\x2a\\\r\n\\x8e\\x7f\\x89\\xc6\\x87\\x30\\x0a\\xaa\\xc1\\xa2\\x4c\\x7e\\x04\\x87\\x14\\x10\\\r\n\\x4a\\x10\\x04\\x01\\x70\\x39\\x01\\x4b\\x54\\x56\\x91\\x02\\x39\\x65\\x8d\\x1a\\\r\n\\x2f\\x1a\\x1f\\x02\\x0d\\x30\\x54\\xa4\\xb4\\xb1\\x7c\\x35\\x06\\x9d\\xa0\\xc5\\\r\n\\x20\\x5a\\x02\\x20\\xaa\\x8f\\x14\\x51\\x0f\\xd6\\x12\\x48\\x6d\\x75\\x83\\x41\\\r\n\\x80\\xf2\\xa8\\x41\\x69\\x4b\\x08\\x08\\xb6\\x01\\x99\\xb3\\xde\\x58\\x7c\\x44\\\r\n\\xae\\x62\\x7f\\x41\\xa9\\xaa\\x90\\x45\\xb0\\x0a\\xda\\x41\\x74\\x06\\x58\\x94\\\r\n\\x21\\xa1\\x96\\x0f\\x23\\x6c\\x14\\x80\\x84\\xb8\\x88\\xd9\\xa7\\xbf\\x3c\\xe1\\\r\n\\xc0\\x86\\x48\\x43\\x83\\xe4\\xa2\\xee\\x91\\xf6\\x1a\\x10\\x20\\xa9\\x86\\x91\\\r\n\\x62\\x2e\\x47\\xf1\\x99\\xa5\\x1c\\x33\\x04\\x3f\\x66\\xd3\\x3d\\x26\\x7f\\x0e\\\r\n\\x00\\x39\\x82\\xb5\\x01\\x4a\\x7c\\x40\\x6f\\xe8\\x4f\\xde\\x59\\xd0\\x54\\x07\\\r\n\\x81\\x37\\xa0\\x60\\x9e\\x34\\x71\\xc2\\x29\\x88\\x6d\\xf0\\x64\\x15\\x48\\x06\\\r\n\\x92\\x73\\x7e\\xc6\\x80\\x12\\xe2\\x65\\x04\\x19\\x81\\xbc\\xb3\\x84\\x5c\\x52\\\r\n\\x44\\x52\\xb1\\xa9\\x4b\\x50\\xa2\\xd3\\x81\\x21\\x53\\xc1\\xc2\\x3a\\x8c\\x87\\\r\n\\xd6\\xf0\\x76\\x88\\xfb\\xa4\\xd5\\x57\\xea\\x70\\xa3\\x61\\x3d\\xcf\\x01\\x24\\\r\n\\x40\\x24\\xf1\\x81\\x66\\xc3\\xfb\\xd3\\x99\\xaa\\x95\\xe4\\x04\\x10\\x29\\x8a\\\r\n\\xf1\\x37\\x9a\\xe3\\xbf\\x11\\x56\\xb1\\x6e\\x00\\x25\\xd7\\x22\\xc5\\x6a\\xb8\\\r\n\\xee\\x98\\x40\\x8f\\x2a\\x59\\x60\\xe1\\x09\\x7c\\x21\\xf0\\xae\\xa9\\x12\\xf2\\\r\n\\x96\\x04\\x82\\x1a\\xd0\\x08\\x46\\xba\\x0d\\x45\\x23\\xc3\\xd4\\xd9\\xa3\\x21\\\r\n\\x6b\\x15\\x02\\x01\\x20\\xc3\\xc8\\x55\\x53\\xaa\\xcd\\x82\\xc7\\x07\\x87\\x5e\\\r\n\\x42\\xac\\x0c\\x0d\\xa8\\x05\\xa2\\xc8\\x34\\xc2\\x25\\x57\\x01\\x5d\\x13\\x18\\\r\n\\xa8\\x30\\x4c\\x24\\xec\\x79\\x84\\x8c\\x16\\x89\\xe0\\x3c\\xb3\\x16\\x14\\xf0\\\r\n\\xba\\x5c\\x8d\\x31\\x4a\\x19\\x84\\x22\\x94\\x69\\x37\\x93\\x69\\xc5\\x24\\xe1\\\r\n\\x08\\x93\\x32\\xc3\\x81\\x74\\x4a\\xca\\x17\\x00\\xf1\\xa3\\x52\\xbf\\x02\\x27\\\r\n\\x12\\x91\\xb5\\x80\\x76\\x05\\x04\\x3c\\x98\\xdf\\x9b\\x51\\x64\\x0d\\x10\\x48\\\r\n\\x80\\xbc\\x03\\xc6\\x14\\x87\\xb1\\xf6\\x88\\x46\\xef\\x20\\x9c\\x61\\x65\\x86\\\r\n\\x04\\x5b\\xe3\\x46\\x4f\\xa2\\xe3\\xd8\\x92\\x29\\xbb\\x8d\\xed\\x14\\xfb\\x5a\\\r\n\\x41\\x24\\x8a\\xa6\\x61\\xad\\x6f\\x37\\x88\\x92\\x21\\x12\\x15\\x5a\\x95\\x4d\\\r\n\\x4a\\x4e\\x42\\xcc\\x19\\x88\\x3f\\x41\\x1e\\xa4\\xa2\\x22\\x9c\\xe9\\xbc\\x0a\\\r\n\\x59\\x51\\x58\\x28\\x7c\\xb9\\x43\\xc0\\x21\\x63\\xa5\\xc6\\x71\\x90\\xbe\\x01\\\r\n\\x03\\x55\\xd7\\x2c\\x95\\x06\\x80\\xd6\\x0a\\x21\\xd4\\x1f\\x45\\x25\\x74\\xe1\\\r\n\\xb6\\x8c\\xca\\x45\\xab\\xd4\\xe4\\x6a\\x70\\xb6\\xf0\\x13\\x18\\xa7\\x90\\x13\\\r\n\\x10\\xd5\\x34\\x26\\x83\\x2d\\x44\\x8d\\x82\\x83\\x52\\xaf\\x64\\x01\\x25\\x5a\\\r\n\\x82\\x43\\x40\\x8c\\x75\\x46\\x45\\xa1\\x1f\\xd0\\x35\\x58\\x20\\x82\\x4f\\x2d\\\r\n\\x6d\\x5c\\x39\\x60\\x84\\x05\\x16\\x93\\xcc\\x2c\\x4a\\x08\\x2b\\x01\\xe6\\x6a\\\r\n\\x48\\x35\\x15\\x0a\\x5a\\x86\\x81\\x5d\\x1a\\x09\\x30\\x50\\x46\\x22\\xf5\\x53\\\r\n\\xe9\\x49\\x29\\x6a\\x81\\xe4\\xa0\\xf6\\x25\\xa5\\x10\\xa4\\x17\\x65\\x57\\xaa\\\r\n\\xa3\\xb3\\xb3\\x36\\x9c\\x17\\x3a\\x0f\\x87\\x53\\x45\\x14\\xb2\\xa2\\x42\\x04\\\r\n\\x6f\\x5a\\x34\\xbd\\x10\\xa6\\x0b\\x22\\xac\\x47\\xba\\x94\\xfa\\x67\\xfb\\xd8\\\r\n\\x45\\xdc\\xf0\\x0a\\x01\\x5c\\x0a\\x0c\\xfa\\x76\\x11\\xd4\\x84\\x0e\\x29\\xf8\\\r\n\\xa4\\x7e\\x00\\xfa\\x75\\x63\\xc9\\x20\\x04\\x96\\x80\\x42\\x60\\xaa\\xa0\\x7c\\\r\n\\x46\\x80\\xa1\\x15\\x11\\xd3\\x3e\\x69\\x05\\x67\\x28\\x45\\x26\\xb6\\x48\\x0a\\\r\n\\x9c\\x18\\xa1\\x0e\\x8c\\x84\\xab\\x62\\x06\\x91\\x19\\xc0\\x1a\\x05\\x72\\xb5\\\r\n\\x09\\xfc\\x9c\\xc4\\x09\\xe8\\x2d\\x3e\\x43\\x99\\xa7\\x80\\xd0\\x54\\xa1\\xf1\\\r\n\\x12\\x5f\\xa9\\xaf\\x9d\\x01\\x11\\xcd\\x8e\\xc1\\x48\\x55\\x50\\x9a\\x44\\x02\\\r\n\\x7a\\xf2\\x1f\\x8a\\xc2\\x3f\\xf4\\x87\\xbf\\xf9\\xf3\\x3f\\x6b\\x31\\x07\\xe1\\\r\n\\xc4\\xfe\\xa1\\x4f\\x7d\\xa7\\xfb\\xc3\\xcb\\x0e\\xab\\x7c\\x88\\x6a\\xa9\\x8b\\\r\n\\x3d\\xcc\\xfc\\xe6\\x47\\x84\\xb7\\x06\\x18\\xd6\\xb8\\x23\\xf2\\x92\\xf5\\xf5\\\r\n\\x08\\xaa\\xd4\\xa1\\x21\\xb6\\x62\\x8d\\x7e\\xf4\\x8a\\xd2\\x29\\x82\\x5a\\x00\\\r\n\\x14\\x87\\x7e\\x21\\xa6\\x2c\\x49\\x67\\x14\\x66\\x6d\\xc8\\xc6\\xc0\\xe0\\x5d\\\r\n\\x15\\xa4\\xb1\\x6d\\x56\\xbd\\x42\\xe7\\x88\\x12\\xa2\\x29\\x07\\xc9\\x55\\x0d\\\r\n\\x1a\\x70\\x71\\x32\\x6a\\x8a\\x40\\x82\\x7b\\x2d\\xb3\\x6d\\xcd\\xeb\\x03\\xf0\\\r\n\\xd5\\xaa\\x08\\xa1\\x0f\\x97\\xee\\xbf\\x4e\\x93\\x87\\x92\\x89\\xa7\\x0a\\xc9\\\r\n\\x9a\\x41\\x82\\xf1\\x60\\x50\\x8d\\xa7\\x82\\x35\\x4a\\x4a\\x6b\\x02\\x3c\\x47\\\r\n\\xd0\\xba\\xa0\\x1a\\xac\\x03\\x32\\x20\\x22\\xe0\\xe5\\x05\\x54\\x60\\x68\\x24\\\r\n\\x86\\x04\\x08\\x71\\x25\\x0d\\x8a\\x11\\x06\\x54\\x04\\xa5\\x2e\\x41\\xae\\xd8\\\r\n\\xf8\\xb0\\xb4\\x03\\x08\\x92\\x97\\xf6\\x8a\\x3c\\x10\\x48\\x03\\xda\\x7e\\x85\\\r\n\\x01\\xc0\\x0e\\x62\\x86\\x89\\xf4\\x20\\xa9\\x92\\x80\\x03\\x53\\xc4\\xde\\x25\\\r\n\\xfa\\xc9\\x58\\x20\\x44\\x33\\x28\\x30\\x10\\xab\\x99\\x5c\\x89\\x61\\x7c\\x5e\\\r\n\\xec\\xa4\\x43\\x15\\x00\\x05\\x8f\\xae\\xe2\\x20\\x18\\x81\\x04\\xe9\\x86\\x58\\\r\n\\x54\\x21\\x4d\\xb0\\x02\\x02\\x23\\x4c\\x41\\xd0\\x8c\\x7a\\x8b\\x69\\x49\\x35\\\r\n\\x21\\x66\\x47\\x62\\x30\\x2d\\x21\\x0c\\xa3\\x66\\xb8\\x56\\x17\\x2b\\xa5\\xc2\\\r\n\\x27\\x00\\xac\\xc3\\x79\\x23\\x62\\x52\\x78\\x80\\x09\\x0d\\xae\\x31\\x9b\\x47\\\r\n\\x77\\x2f\\x6f\\x65\\x42\\xc0\\xaa\\x38\\xc9\\xc2\\x2d\\x71\\x98\\x80\\x8a\\x23\\\r\n\\x94\\x3a\\x6e\\x78\\x00\\x84\\x29\\x12\\x20\\xb7\\xa8\\x09\\x1a\\xa5\\xd5\\x42\\\r\n\\x10\\x48\\x87\\x95\\x2e\\x47\\x70\\x97\\x29\\x6c\\x22\\x0e\\xe3\\x7c\\x4d\\xdf\\\r\n\\xa5\\xcb\\x3f\\xc2\\x22\\x79\\x45\\x33\\xd7\\xde\\xb9\\x44\\x89\\xa2\\x55\\x4d\\\r\n\\x15\\x92\\x51\\xa2\\x5f\\x5a\\x4f\\xaa\\xfa\\x91\\x44\\x8c\\x75\\x29\\x54\\x70\\\r\n\\xfa\\x82\\x20\\x7a\\x81\\x02\\x47\\x84\\x71\\x4c\\x52\\x35\\x2e\\x5c\\x44\\x1c\\\r\n\\x62\\xe7\\x1f\\xc3\\x03\\x6d\\xb4\\xc1\\x00\\x00\\xa1\\x98\\x9b\\x54\\x92\\x4e\\\r\n\\x54\\xe0\\x82\\x00\\xa1\\xa3\\x43\\x03\\xfa\\x12\\x29\\xd6\\xaa\\x93\\xd4\\x4c\\\r\n\\x00\\x82\\xb0\\x0a\\xd0\\x47\\x00\\x93\\x41\\xb1\\x61\\x86\\x0c\\x11\\x58\\x5a\\\r\n\\xb3\\x81\\x21\\x2c\\xcd\\x26\\x96\\x1c\\x98\\x8f\\xfa\\x78\\xeb\\xe8\\x44\\x08\\\r\n\\xb6\\xca\\xc1\\x69\\xc1\\x5b\\xe4\\x15\\x6a\\x54\\xe2\\xcf\\xd1\\x15\\x03\\x50\\\r\n\\x85\\x5a\\x85\\x3e\\x3d\\x89\\x84\\x28\\x91\\x28\\xd0\\xbe\\x8a\\x26\\x00\\x10\\\r\n\\x80\\x2a\\x8f\\x54\\x2e\\x63\\x67\\xed\\x95\\xef\\xac\\x86\\x3f\\x29\\xfd\\x17\\\r\n\\xfb\\x79\\x88\\x8e\\x1e\\xd4\\x03\\xed\\x50\\xf5\\x60\\xd7\\x5c\\xc7\\x85\\x52\\\r\n\\x4c\\x05\\x95\\x75\\x60\\x63\\x85\\x10\\xe1\\xeb\\x31\\x82\\x91\\x10\\x1b\\x53\\\r\n\\x2e\\x81\\x35\\x01\\x53\\x24\\x40\\xdd\\x1a\\x55\\xab\\xc0\\xb3\\x81\\x50\\x8e\\\r\n\\x81\\xe0\\x45\\x5d\\x0b\\xd2\\x49\\xf1\\x0c\\x34\\x51\\xb3\\xc0\\x92\\xbf\\xa3\\\r\n\\x44\\x85\\xc5\\x2a\\xa0\\xa3\\x11\\x8a\\x41\\xb4\\xa4\\x28\\x29\\x57\\xf4\\xe8\\\r\n\\x96\\xd1\\x80\\x07\\x74\\x54\\xa1\\x23\\x40\\xb6\\xc2\\x32\\x0c\\xfe\\x3e\\xac\\\r\n\\x24\\x63\\x63\\x00\\xd0\\xcf\\x97\\x0f\\xc4\\xc7\\xe7\\x58\\x16\\x40\\x01\\x7c\\\r\n\\x85\\xf3\\x3a\\xb3\\xea\\x96\\x0e\\x34\\x16\\x9a\\x2a\\x09\\xa0\\x60\\xa5\\xf1\\\r\n\\x47\\xc5\\x92\\xac\\xf9\\x50\\x04\\x44\\x00\\x40\\xa1\\x23\\x7d\\x06\\x38\\x07\\\r\n\\x86\\x04\\x68\\x68\\x28\\x2d\\x89\\x11\\x39\\x80\\x24\\xbe\\x05\\xe0\\x53\\x7e\\\r\n\\xce\\x80\\x7c\\x19\\x5d\\x21\\x8a\\x55\\x08\\x29\\xcc\\x04\\x61\\x05\\xbc\\x0d\\\r\n\\x69\\xc1\\xd9\\x19\\x2d\\x70\\x01\\xd6\\x64\\x29\\x31\\x78\\x54\\x09\\x00\\x3d\\\r\n\\x05\\x40\\xc8\\x4f\\x0a\\x54\\xf5\\xfe\\xc6\\x5d\\x47\\xbe\\xef\\x6c\\x24\\x32\\\r\n\\xc1\\x83\\x20\\x89\\x5c\\x49\\xc9\\x05\\x8f\\xa1\\x65\\x84\\x7e\\x2e\\x2d\\x34\\\r\n\\x79\\xcf\\x18\\x3c\\xd4\\x86\\x96\\x1d\\x50\\x7c\\x31\\xa2\\xd6\\x19\\x8a\\x48\\\r\n\\x06\\x45\\x00\\x14\\x44\\x70\\x5e\\xb0\\x52\\xbc\\x83\\x12\\x0a\\x01\\x46\\x5c\\\r\n\\x07\\x00\\x38\\xbd\\x4a\\x79\\x87\\xe1\\xaf\\x42\\x12\\xbd\\x4b\\x5d\\x2c\\x54\\\r\n\\x20\\xa0\\x4d\\x40\\x01\\x82\\x3a\\xad\\xf2\\x00\\x50\\x2c\\xe5\\x40\\xc1\\x15\\\r\n\\x41\\x6e\\x8a\\x0a\\x1b\\x92\\xa8\\xd2\\x12\\x3a\\x1b\\x38\\x58\\xc2\\xae\\x08\\\r\n\\xae\\x0a\\x2a\\x43\\x02\\x03\\x94\\x6e\\xc4\\x65\\x81\\xa4\\x00\\x31\\x88\\x2c\\\r\n\\x1a\\x05\\x6a\\xec\\x26\\x0e\\xc8\\x8a\\xa8\\x69\\x42\\xc8\\x10\\x5c\\x03\\xe5\\\r\n\\x58\\xf7\\x60\\x32\\xf0\\xd3\\x0b\\x7e\\x7b\\x62\\x71\\x68\\x8a\\x31\\x48\\x31\\\r\n\\xb0\\x36\\x43\\x43\\xc9\\x22\\xeb\\xa8\\x27\\x3f\\x74\\x88\\xb4\\x42\\x4b\\x01\\\r\n\\x8f\\xd4\\x83\\x02\\x7e\\x01\\xac\\x68\\xe4\\x40\\x80\\x2b\\x41\\xc1\\x3a\\x5d\\\r\n\\xf3\\x00\\x9a\\x60\\x94\\x05\\x1c\\x13\\xc7\\x41\\x00\\x01\\x43\\x28\\x8c\\x3c\\\r\n\\x45\\x3d\\x97\\x55\\xe5\\x2a\\x86\\x34\\x41\\xca\\x57\\xd0\\x3c\\x15\\xf0\\x38\\\r\n\\x10\\xb4\\x01\\xb1\\xb8\\x52\\x85\\xac\\xcf\\xba\\x4a\\xdc\\x3d\\xbe\\x22\\x84\\\r\n\\x9a\\x05\\x43\\xc0\\xe5\\x49\\x12\\xab\\xb3\\x6c\\x57\\xd0\\xaf\\x08\\x3e\\x57\\\r\n\\xb5\\xe0\\xf6\\xd7\\x9c\\x75\\x15\\x06\\x09\\x3e\\x9f\\x2b\\x54\\x38\\xc9\\x14\\\r\n\\xaa\\x06\\xc2\\x82\\x93\\x3a\\x80\\x98\\x4c\\x24\\x00\\x1e\\x3e\\x24\\x88\\x05\\\r\n\\x54\\x09\\xe1\\x39\\xf8\\xf5\\xc2\\x0a\\x82\\x83\\x87\\x04\\x4c\\x0e\\x0f\\xd8\\\r\n\\xda\\x80\\xc3\\x18\\x86\\xe0\\x9e\\xe1\\x6c\\xde\\xf7\\x6c\\x51\\x10\\x55\\x77\\\r\n\\x23\\x0f\\x1a\\x77\\x4f\\x30\\xa0\\x49\\x0a\\x27\\xd1\\x7c\\x3c\\x8b\\x21\\xa2\\\r\n\\x8c\\x0c\\xeb\\xe5\\x75\\xf1\\x0b\\x79\\x82\\x45\\x03\\xa1\\x50\\x30\\x4d\\x29\\\r\n\\xd2\\xa5\\x0b\\xd1\\x0c\\x21\\x81\\x1a\\xab\\x08\\xa5\\x6a\\xff\\x00\\xe2\\xb0\\\r\n\\x40\\x07\\xa0\\x09\\xfd\\x50\\x5c\\x52\\x52\\x30\\xe6\\x5e\\x28\\x0d\\x8d\\xa4\\\r\n\\x20\\x50\\xa1\\xe4\\xc2\\xbf\\x4d\\xfd\\x00\\xa5\\x34\\x8f\\xbe\\x91\\x4d\\xfb\\\r\n\\xb0\\xe8\\xba\\x92\\xa1\\xf2\\x85\\x07\\xf8\\xc9\\xe7\\x1e\\xd3\\x87\\x5b\\x34\\\r\n\\x02\\x68\\xf8\\x06\\x2d\\xa9\\xc2\\xe8\\x4c\\x09\\x13\\xb0\\xc3\\x84\\x57\\xac\\\r\n\\x0e\\x9a\\x2d\\xc0\\xd2\\x12\\x12\\x31\\x02\\x13\\xae\\x76\\xdd\\x5a\\x94\\x49\\\r\n\\xc4\\x6c\\x88\\x1b\\x26\\xa2\\x18\\xc3\\x49\\x2c\\x44\\x1e\\xe5\\x41\\xa3\\x9e\\\r\n\\x15\\x19\\x01\\x0a\\x8f\\x88\\x44\\x40\\x50\\x6a\\x70\\x20\\x64\\x0c\\x0a\\x11\\\r\n\\x03\\x1a\\x06\\x8b\\x6c\\x79\\x7c\\xc0\\x60\\xd8\\x56\\xbe\\xf8\\xa5\\x84\\x1c\\\r\n\\x2c\\x87\\xc0\\xa3\\xd3\\x40\\x00\\xc1\\x96\\xb5\\xcb\\x4f\\xc8\\x94\\x5f\\x5f\\\r\n\\xab\\x7e\\x55\\x0c\\xef\\x1c\\x63\\x51\\x2c\\x48\\xfb\\xbe\\x9f\\xcf\\xfe\\x59\\\r\n\\xd5\\x5a\\x18\\x85\\xbc\\x0b\\x43\\x61\\xe1\\xae\\xeb\\xd2\\x7a\\xf7\\x2c\\x7b\\\r\n\\xa3\\x1a\\x78\\x6c\\xad\\xaa\\x2a\\x4c\\xd5\\x61\\x87\\xc2\\x4c\\x35\\x0a\\xaf\\\r\n\\xa5\\x6c\\xe2\\xcf\\x29\\x6f\\x79\\x43\\x12\\x94\\xa1\\xe6\\x70\\xf2\\xd5\\xfa\\\r\n\\x2e\\x55\\xa1\\x19\\xcd\\x52\\x96\\x5b\\x35\\x2c\\x58\\x20\\xa9\\x19\\x26\\xbf\\\r\n\\xc1\\x4a\\xb2\\xc4\\x68\\x8b\\xb5\\x43\\x66\\x5e\\x11\\x28\\x84\\x43\\x14\\x6a\\\r\n\\xaa\\x81\\x29\\x34\\x81\\xe0\\x56\\x0f\\xb2\\x88\\x31\\xb1\\x15\\x64\\x31\\xe3\\\r\n\\xfc\\x52\\x97\\x7c\\x44\\xa3\\x17\\x74\\x48\\x74\\x2a\\x98\\xf0\\xef\\x95\\xcd\\\r\n\\x48\\x15\\x65\\x76\\x04\\xc7\\x03\\x1e\\xa2\\x23\\x89\\x6d\\x41\\x7f\\xc0\\xf0\\\r\n\\xa3\\x01\\x46\\xc5\\xf2\\x3c\\xe1\\x19\\x48\\x62\\x2b\\xcb\\x4f\\xb2\\x65\\x04\\\r\n\\xb2\\x48\\x2b\\x57\\x8b\\x34\\x6a\\xa0\\x2a\\xae\\xd0\\x89\\x37\\x0c\\x89\\xcc\\\r\n\\x91\\x82\\x12\\xa1\\x00\\x53\\x00\\x40\\x6f\\x2d\\x13\\x03\\xda\\x45\\x01\\x06\\\r\n\\xc4\\x14\\xd5\\x71\\x55\\x31\\x0a\\x20\\x1b\\xa0\\x1a\\x3b\\xe3\\xd0\\xd7\\x38\\\r\n\\x20\\x0a\\x40\\x20\\x08\\xd0\\x17\\xd0\\x92\\xba\\x05\\xf9\\x58\\x34\\xdb\\x8d\\\r\n\\xa5\\xb5\\x88\\x00\\x09\\x2f\\x39\\x93\\x22\\x6b\\xf4\\x5f\\x86\\xd8\\x73\\x13\\\r\n\\x02\\x0e\\x81\\x42\\x70\\x52\\x0d\\xcd\\x38\\xba\\xb7\\x02\\x7a\\x47\\x06\\x0e\\\r\n\\x20\\x0f\\x27\\x10\\x03\\xd7\\x04\\xe1\\x94\\x99\\x6a\\x44\\x78\\x13\\xe1\\x74\\\r\n\\xc0\\x38\\x86\\x1e\\x51\\xb8\\xbf\\x9c\\xd2\\x52\\x62\\xc2\\xa9\\x35\\xb3\\xca\\\r\n\\xfa\\xe4\\xb4\\xc2\\x7e\\xc4\\x92\\x48\\xa0\\xc0\\x12\\x94\\x8c\\x0f\\x47\\x62\\\r\n\\x10\\x90\\x70\\xda\\x28\\x06\\x91\\xb2\\xd6\\x3b\\x78\\xda\\x0b\\xbf\\x8f\\x76\\\r\n\\x9b\\x91\\x54\\x1a\\x14\\x03\\xa7\\x0c\\x50\\xa1\\x44\\x02\\xdd\\x91\\x7c\\xa0\\\r\n\\x8b\\xc8\\x03\\xb0\\x06\\x1b\\x79\\xa8\\xff\\x00\\xde\\x5a\\x7a\\xd1\\x55\\x0b\\\r\n\\xb2\\x8b\\x02\\x10\\x4b\\x55\\xc5\\x5d\\xda\\x00\\x24\\x22\\xb8\\x08\\x50\\x03\\\r\n\\xaf\\x52\\x59\\xa1\\x06\\x0e\\x9b\\x48\\x9a\\x36\\x38\\x12\\x0a\\x2d\\xac\\x53\\\r\n\\x65\\x57\\x0b\\x3a\\x25\\xf9\\x5b\\x50\\xb3\\x08\\x22\\x96\\x8a\\xc8\\x51\\xcb\\\r\n\\x5f\\x1f\\x20\\x45\\x32\\xa2\\xa9\\x30\\x10\\xf0\\x1f\\x98\\x9c\\xfa\\x92\\x4b\\\r\n\\x04\\x2c\\xa3\\x07\\x93\\x51\\x29\\xd2\\x18\\x51\\x6a\\x30\\xc2\\xd3\\x5c\\x08\\\r\n\\x90\\x82\\x0a\\x0e\\x20\\x2d\\x84\\x96\\x63\\x83\\xde\\xc2\\x10\\x09\\x03\\x82\\\r\n\\x28\\x93\\xf0\\xda\\xfa\\x72\\x24\\x1a\\x12\\x95\\xbf\\x94\\x56\\x8d\\x48\\xaa\\\r\n\\xf3\\xbd\\x6c\\x40\\x42\\x42\\x9c\\x51\\x0f\\x07\\xa1\\xa0\\x87\\x08\\x34\\x34\\\r\n\\x3f\\x74\\xcd\\xc0\\xfe\\xd7\\x5d\\xf3\\x80\\x7f\\x44\\x28\\xab\\x7f\\x86\\x46\\\r\n\\x5c\\xd3\\x4f\\x71\\x1c\\x0a\\x58\\x09\\x40\\x44\\xa4\\xa6\\x9f\\x0f\\x3b\\x05\\\r\n\\xc4\\x1c\\xd4\\xa9\\x30\\x08\\x9f\\x48\\xcd\\x1e\\x75\\x20\\x9b\\x84\\x06\\xaa\\\r\n\\xe0\\xcd\\xd7\\x06\\xdd\\x2e\\xb9\\x18\\x26\\xc4\\xe8\\x4f\\x1e\\x50\\x0e\\x10\\\r\n\\x94\\x28\\xd4\\x95\\xc9\\xab\\x8b\\x68\\x42\\x20\\xa5\\x60\\xd0\\xd2\\xd7\\xe5\\\r\n\\xd9\\xd0\\xa0\\xa0\\x28\\x58\\xba\\x89\\x52\\x1a\\x71\\x0f\\xa1\\x57\\x06\\xdf\\\r\n\\xb0\\x60\\xa1\\xe2\\xa1\\xa4\\x8f\\x28\\xd2\\x30\\x95\\x30\\x2c\\x97\\xa2\\xd5\\\r\n\\x58\\x20\\x02\\x2e\\x8a\\xb2\\x6e\\xb7\\xc1\\xcd\\x94\\x30\\x1a\\x41\\xc5\\x55\\\r\n\\x22\\x17\\x07\\x37\\x9e\\x31\\xa6\\x21\\x89\\x2f\\xd1\\x4f\\xc4\\x50\\x47\\x9d\\\r\n\\x08\\x9a\\x96\\x41\\x82\\x92\\x52\\xe3\\xaf\\xb5\\x02\\x16\\x27\\x8a\\x46\\x3c\\\r\n\\x18\\x15\\x0a\\x51\\x9d\\xf2\\xaa\\x7e\\xe9\\x4c\\x95\\xa4\\xb4\\xb7\\x96\\x8c\\\r\n\\x09\\x6d\\x06\\x28\\x77\\x02\\x06\\x08\\xa7\\x85\\x18\\x6e\\x09\\x69\\xaa\\x14\\\r\n\\x18\\x34\\x14\\xf7\\xbc\\xd2\\x6c\\x51\\xa2\\xbc\\xf0\\xc6\\x41\\xfd\\xe0\\x6c\\\r\n\\x1f\\xf5\\x24\\xa8\\x81\\xc0\\x44\\x41\\xf5\\xda\\x64\\x01\\xff\\x00\\x51\\xa7\\\r\n\\x93\\xdf\\x03\\x09\\xf4\\x79\\xfc\\x10\\xc1\\x00\\x7e\\xa2\\x14\\x61\\x7a\\xae\\\r\n\\x1c\\x3a\\xaf\\x66\\x57\\x05\\x05\\xec\\x02\\xa8\\x0d\\xf1\\xc5\\x5c\\x55\\x63\\\r\n\\x02\\x82\\x95\\x3c\\xc4\\xe1\\x68\\x28\\x98\\xc5\\x46\\x10\\x81\\x30\\xc5\\xe5\\\r\n\\x1a\\xa9\\xfd\\x41\\x38\\x70\\x3c\\x64\\x4b\\x78\\xd1\\x56\\x11\\x10\\xfb\\x29\\\r\n\\xa1\\x11\\x40\\x52\\xa0\\xfd\\x29\\x18\\x97\\xa0\\xc3\\x10\\xa4\\x88\\x70\\x2a\\\r\n\\xb9\\x00\\x09\\x7b\\x25\\xb5\\xe2\\x34\\xc8\\xa4\\x75\\xd0\\x2e\\xa3\\xf4\\x30\\\r\n\\x81\\x03\\xe7\\xf4\\xeb\\x14\\x96\\x81\\x94\\x40\\x10\\x7e\\x11\\xa0\\x68\\x65\\\r\n\\x2b\\x5b\\x22\\xc0\\x06\\xab\\x3b\\x7e\\x2f\\xc0\\x5a\\x7c\\x60\\x63\\x02\\x83\\\r\n\\x1f\\xb2\\xfd\\x80\\xf0\\x89\\xd9\\xd9\\x29\\x14\\x28\\x43\\xe4\\x2b\\x63\\x9a\\\r\n\\x21\\xa0\\x00\\xe2\\x0d\\xff\\x00\\x0a\\x61\\x0e\\x2f\\x88\\x01\\x84\\xb9\\x09\\\r\n\\x0c\\x00\\x05\\x35\\x00\\x0a\\x92\\x29\\x48\\x7c\\x94\\x76\\x4f\\x60\\x8a\\x21\\\r\n\\x84\\x77\\x34\\x70\\x40\\x90\\xa4\\xe0\\xb6\\x1f\\x48\\xca\\x61\\x12\\x10\\xe7\\\r\n\\x5e\\xec\\x3a\\xa5\\x2b\\x3e\\x00\\x80\\xb0\\x14\\xa9\\x9a\\xb6\\x1d\\x46\\xa3\\\r\n\\x12\\x1d\\x63\\x07\\xa3\\xcf\\x80\\x36\\x54\\xc0\\x02\\x6f\\x5e\\x27\\x81\\x76\\\r\n\\x47\\x80\\x11\\x30\\xd8\\x85\\x16\\x4e\\xb0\\x2a\\x97\\xe0\\x23\\xea\\xdf\\x0f\\\r\n\\xf3\\x98\\x32\\x23\\xaa\\xd4\\x43\\xf1\\x75\\x23\\xa4\\x62\\x52\\x08\\x5a\\xbf\\\r\n\\x28\\xf8\\x10\\x28\\xf0\\x06\\xf2\\xde\\x13\\x58\\x20\\x1a\\xa0\\x62\\x8e\\x07\\\r\n\\x83\\x8d\\x54\\xb2\\xa8\\xc6\\xf4\\x03\\x42\\x98\\x07\\xf3\\x8f\\x14\\x0b\\xb5\\\r\n\\x30\\x80\\xa0\\x45\\x8f\\xc8\\x72\\x91\\x00\\x8f\\x80\\x5a\\x4a\\x21\\x04\\x66\\\r\n\\x42\\x48\\x72\\x95\\x06\\x46\\x37\\x46\\x82\\x45\\x4d\\x94\\xbc\\xc2\\x7e\\xc6\\\r\n\\x42\\xe1\\x55\\x40\\x00\\x5c\\x00\\x67\\x30\\x4d\\x49\\x41\\x19\\xfc\\x99\\xaf\\\r\n\\xfb\\x5b\\xeb\\xc8\\x64\\xc2\\x20\\x45\\xe2\\xa0\\x63\\xc3\\xdd\\xe7\\xce\\x2f\\\r\n\\x05\\xf0\\x1e\\xab\\x19\\x4a\\x4c\\x47\\xe4\\x87\\xc2\\x50\\xd2\\xb2\\x20\\x1b\\\r\n\\x83\\x35\\xeb\\xab\\x26\\x83\\xc4\\xd0\\x17\\x3f\\x77\\xf7\\x33\\x90\\xc8\\x2f\\\r\n\\x7e\\x83\\x47\\xcf\\x65\\xfc\\xbb\\xc5\\x2a\\x8a\\x02\\x3b\\x37\\x55\\xb3\\xf4\\\r\n\\x2d\\x87\\x22\\x06\\x5d\\x90\\xa8\\x40\\x82\\x82\\x09\\x60\\x57\\x86\\xc1\\xab\\\r\n\\x28\\x9e\\x20\\x0b\\xa0\\xa1\\x96\\x03\\xbc\\x41\\x92\\x05\\x72\\x15\\x53\\x6a\\\r\n\\x38\\xf4\\xe1\\x80\\x2c\\x1f\\x00\\x78\\x7e\\xbf\\xaf\\x29\\xc0\\x1c\\x22\\xcc\\\r\n\\xaf\\x8c\\xdf\\x93\\x7c\\xe2\\x99\\x66\\x58\\xb5\\x08\\xfa\\x7e\\xfd\\xd5\\x7d\\\r\n\\x5e\\x20\\xa7\\x6e\\x02\\xb8\\x8f\\xc5\\x63\\xa0\\x44\\xe8\\xaf\\xbb\\x92\\x75\\\r\n\\x1f\\x30\\xfa\\x41\\x2d\\xb8\\x8b\\x6b\\xa0\\x46\\xfb\\x52\\x5d\\xd4\\x1f\\x9c\\\r\n\\xed\\x52\\x1f\\xd1\\xe8\\xfd\\xd4\\xff\\x00\\x9c\\x14\\x8e\\x60\\x85\\x52\\x04\\\r\n\\xd5\\x0a\\xfa\\xbb\\x45\\x5e\\x55\\x20\\x79\\xe9\\x4d\\x1f\\x55\\xa2\\xf8\\xb7\\\r\n\\xd8\\x8b\\x87\\x9c\\x2b\\x7c\\x62\\x90\\x09\\x10\\x20\\x3a\\x54\\x59\\xe5\\x1f\\\r\n\\xd7\\x10\\x0d\\xc4\\x1d\\x6f\\x05\\x21\\xec\\x02\\x17\\x3f\\xa1\\x3e\\x29\\xf5\\\r\n\\xe2\\x70\\x7e\\x27\\x54\\x55\\xb1\\x55\\x6a\\x9b\\x5b\\xdb\\xd9\\x68\\x88\\x06\\\r\n\\xd1\\xf4\\xa9\\x17\\xe9\\x47\\xd7\\x8a\\x0a\\x16\\xa5\\x6d\\x7d\\x6f\\xf3\\xff\\\r\n\\x00\\x0f\\xce\\xf6\\x8c\\xa1\\xc0\\xa3\\x4c\\x33\\xe7\\xe7\\xef\\xef\\x13\\x59\\\r\n\\xf7\\x03\\x54\\x5a\\x89\\x7e\\xd9\\xef\\x3e\\x11\\xe1\\xa2\\x84\\x08\\x7f\\x03\\\r\n\\x9c\\x0d\\x08\\x88\\x31\\x8f\\x06\\xb4\\x71\\xab\\xfa\\x77\\xd6\\x83\\x80\\x21\\\r\n\\x26\\xf2\\x0a\\x7a\\xac\\x2a\\x8d\\xb7\\xb4\\xe8\\x5d\\x5e\\x0b\\x0d\\xac\\x20\\\r\n\\x3c\\x87\\x54\\xa8\\x38\\x11\\x32\\x06\\x05\\x64\\x21\\x00\\xf9\\xc0\\x9f\\x82\\\r\n\\x81\\x86\\xbb\\x4f\\x15\\xd6\\xfb\\x55\\xf7\\x96\\x00\\x1d\\x38\\x11\\xc2\\x48\\\r\n\\xa5\\x98\\xab\\x9b\\xcc\\x70\\x8b\\xc6\\x88\\x87\\xc3\\x07\\xed\\x88\\xa7\\x16\\\r\n\\x70\\x5b\\x15\\x4c\\x50\\x54\\x5a\\x8f\\x80\\x00\\x01\\xda\\x3f\\xca\\x5f\\x2a\\\r\n\\xaf\\x6e\\x08\\x6a\\xa2\\xc4\\x98\\xc1\\x1a\\xed\\x47\\xa5\\x5a\\xa0\\x38\\x10\\\r\n\\xf2\\xef\\x2a\\xb5\\x84\\x29\\x23\\x11\\x92\\x9a\\x0b\\x57\\xab\\xe5\\x46\\x2e\\\r\n\\xab\\x3a\\x0e\\xef\\xef\\x96\\xba\\x98\\x85\\x43\\x90\\x52\\x44\\xa9\\xa0\\x86\\\r\n\\x03\\x10\\x93\\xf4\\x00\\x83\\x51\\xa9\\x4f\\xf8\\xc0\\x8e\\x9d\\x11\\xec\\x32\\\r\n\\x89\\x48\\xb2\\xc8\\x34\\xc9\\xc7\\x71\\x29\\x08\\xa0\\xcd\\x3b\\x09\\x40\\xd2\\\r\n\\x8e\\x59\\xf7\\x74\\x54\\xc1\\x16\\xa9\\xae\\xae\\xd1\\x19\\xc2\\x05\\xaa\\x42\\\r\n\\x94\\x01\\x04\\x05\\x57\\x81\\x0d\\xa7\\xf1\\xbb\\xcc\\x2a\\xe8\\xf0\\x60\\x01\\\r\n\\x62\\x8f\\x41\\xe7\\x88\\x09\\x09\\x45\\xdd\\x5e\\x30\\x84\\x03\\x00\\x20\\x78\\\r\n\\xf9\\xdf\\xff\\xc4\\x00\\x21\\x10\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x00\\\r\n\\x03\\x01\\x01\\x01\\x00\\x00\\x00\\x01\\x11\\x21\\x00\\x31\\x41\\x51\\x61\\x10\\\r\n\\x71\\x81\\x91\\xb1\\xf0\\xff\\xda\\x00\\x08\\x01\\x01\\x00\\x01\\x3f\\x10\\x00\\\r\n\\xad\\x23\\x5f\\x8c\\x33\\xb0\\x88\\x45\\x21\\xd5\\x1c\\x9c\\x83\\x97\\x86\\xf0\\\r\n\\x54\\x41\\xa4\\x09\\x5f\\x8c\\x47\\x86\\x55\\x2e\\x91\\xc5\\xdb\\x57\\x82\\xa7\\\r\n\\x58\\x20\\xee\\x12\\x8e\\x0a\\x69\\xd9\\x4b\\x74\\x99\\x8a\\xc0\\x7a\\xf8\\x1b\\\r\n\\x40\\x47\\xd9\\x4c\\x2e\\x83\\x4e\\x25\\x86\\x18\\x44\\x2d\\x60\\x23\\xe5\\x99\\\r\n\\xf2\\x53\\xdf\\xd0\\xe0\\x10\\xc0\\xb0\\x38\\xe2\\x84\\x54\\xb4\\x4c\\x9a\\x98\\\r\n\\xc5\\x02\\x76\\xa2\\x3c\\xa8\\x87\\x60\\x64\\xb1\\x12\\x43\\x27\\xc1\\x20\\x36\\\r\n\\x83\\x9c\\xe1\\x20\\x6c\\x11\\x94\\xbf\\x44\\x79\\xa8\\x72\\x07\\x14\\x45\\x13\\\r\n\\x20\\xbf\\x03\\xbe\\xff\\x00\\x68\\xe9\\x88\\x00\\x7a\\xc0\\xa7\\x22\\x89\\xa3\\\r\n\\xd2\\x74\\x4c\\x15\\x8e\\xd5\\x85\\x51\\xc0\\x20\\x11\\x5a\\xbd\\x29\\x6d\\x16\\\r\n\\xa2\\x65\\x1b\\x44\\x76\\x42\\x21\\x0b\\xfe\\x66\\xbb\\xf9\\x97\\xee\\xd4\\x4d\\\r\n\\xe1\\x1c\\x86\\x38\\x1c\\xf4\\x9f\\xfe\\x0a\\x0a\\x46\\x9c\\x02\\x71\\x0c\\x1c\\\r\n\\x39\\x7e\\xf1\\x32\\x0a\\x43\\xea\\x04\\xb6\\x03\\xb0\\x6c\\x2e\\x7a\\x5b\\x99\\\r\n\\x5b\\xb4\\x39\\xfb\\x3c\\xf5\\xd4\\x18\\xdb\\x09\\x09\\x1c\\xbc\\x32\\x64\\x55\\\r\n\\x8e\\xbb\\x72\\x7a\\xe0\\xcd\\x86\\x35\\xc4\\xdc\\x5b\\x32\\x10\\x8d\\x3c\\x08\\\r\n\\xea\\x58\\x52\\xc1\\x90\\x56\\x02\\xdd\\x03\\xf8\\x6b\\xc2\\xb8\\x28\\x44\\x1c\\\r\n\\x83\\x4b\\x4b\\x1a\\xc1\\xe1\\x05\\x04\\x20\\xc5\\x9d\\x13\\x2b\\x3d\\x7b\\x81\\\r\n\\x40\\x72\\x2f\\x0c\\xd3\\x42\\x28\\x79\\x33\\x46\\x42\\x10\\x31\\x2f\\x98\\x51\\\r\n\\x28\\x22\\xc8\\xee\\x27\\x26\\x72\\x80\\x57\\x2b\\x02\\x01\\xa1\\xe7\\x5e\\x2f\\\r\n\\x39\\xb1\\x35\\xe4\\x20\\x83\\xec\\x31\\x06\\xf4\\x5b\\x45\\x81\\x47\\x32\\x50\\\r\n\\x44\\xa2\\x11\\x7b\\x2e\\xfe\\x98\\x60\\x3f\\xa6\\xe4\\x3e\\x7a\\x02\\x80\\x43\\\r\n\\x2a\\xc2\\x91\\x1c\\x0b\\xc2\\xfa\\xd2\\x65\\x49\\xe7\\xa4\\x37\\x24\\x4f\\x3b\\\r\n\\x4a\\xc8\\x07\\x52\\x38\\xbd\\xf5\\x26\\x02\\x40\\x4a\\x94\\x74\\xc1\\x59\\xcc\\\r\n\\x70\\x3c\\x85\\xbb\\x4d\\x48\\xe4\\x8c\\x5b\\x9c\\xb1\\x1d\\x32\\x6e\\x9c\\x3d\\\r\n\\x0b\\x04\\xdd\\x44\\xb1\\x45\\x60\\x3c\\x60\\x6f\\x0b\\xc0\\xa9\\x33\\x98\\x4b\\\r\n\\xb9\\xd2\\x3b\\x20\\x47\\xc3\\x52\\x83\\x45\\x82\\x10\\xe8\\xdc\\x1d\\xfd\\x8d\\\r\n\\x2b\\x06\\x70\\x8e\\x05\\x9c\\x25\\x88\\x64\\x82\\x9a\\xb3\\xda\\x9d\\xbc\\x0c\\\r\n\\xb0\\xfc\\xe4\\x06\\x3c\\x6e\\x78\\x3c\\x52\\x76\\x6a\\x4e\\x41\\x3c\\xf6\\x9f\\\r\n\\x83\\x79\\xb4\\x1d\\x2e\\xc1\\x75\\x6a\\x8a\\xd1\\x14\\x65\\x8a\\x8b\\x5f\\x0f\\\r\n\\x90\\x4c\\x56\\x02\\x74\\x28\\xc5\\x31\\x05\\x60\\x26\\x6a\\x5a\\x3c\\x6d\\xcc\\\r\n\\xce\\x77\\x16\\x9f\\x58\\x62\\x92\\x8b\\x0b\\x0d\\xb5\\xf7\\x52\\x1d\\x46\\x7c\\\r\n\\x40\\xa1\\x75\\x8f\\x0e\\xde\\x4e\\x33\\xee\\xe7\\x10\\x60\\xb1\\x47\\x1b\\x37\\\r\n\\xe7\\xcd\\x5a\\x99\\x34\\x4e\\xda\\xd1\\xd7\\x1e\\x4c\\x11\\x96\\xd2\\x36\\xab\\\r\n\\x5c\\xc7\\x95\\x14\\x7c\\x05\\x81\\x64\\x55\\xf4\\x1e\\x09\\xfc\\x1a\\x0b\\x1f\\\r\n\\x70\\x6f\\xee\\x99\\x4c\\x7a\\x78\\x64\\x98\\x52\\x4a\\xb5\\xcb\\x45\\xea\\x9e\\\r\n\\x67\\xab\\xc3\\xc1\\x01\\x6c\\x10\\x81\\x62\\x0d\\x62\\x87\\xf8\\x56\\x58\\x06\\\r\n\\xaa\\x0a\\x9d\\x72\\x65\\xb1\\xf5\\x85\\xc9\\xeb\\x9e\\x96\\xcb\\x64\\x15\\x4a\\\r\n\\x52\\xc1\\x0a\\x50\\xc3\\xe9\\x25\\x5d\\x6b\\xc2\\x15\\xea\\x2f\\x00\\x71\\x9d\\\r\n\\x68\\x74\\x33\\xca\\xf3\\xd4\\x1d\\xd5\\x7e\\x8a\\x37\\x5a\\x88\\x42\\xb4\\x04\\\r\n\\x68\\xd4\\x92\\x59\\xd5\\x04\\xc1\\xf4\\xa1\\x87\\x2d\\x6e\\xe3\\x56\\xda\\xdb\\\r\n\\x49\\x52\\x47\\x81\\x4e\\xe7\\x78\\x92\\x2d\\x66\\xe0\\x9a\\x19\\xe2\\x94\\xc7\\\r\n\\x34\\x22\\x1f\\xbf\\x00\\x72\\x0a\\x88\\x39\\x46\\xa9\\x30\\x0d\\x92\\x9e\\xbf\\\r\n\\x54\\x89\\xb2\\x3f\\x29\\x98\\x61\\xdc\\xa0\\x88\\x3b\\xaf\\x0d\\xc0\\x58\\x56\\\r\n\\x8e\\x20\\xf4\\xb2\\x2c\\x51\\xcd\\xcc\\x2f\\x5c\\x12\\xad\\x70\\x2d\\xf7\\x6d\\\r\n\\xfc\\x04\\x91\\x55\\x75\\x75\\x46\\x5a\\x8a\\x98\\xe7\\x48\\xee\\x99\\x20\\x38\\\r\n\\x17\\x34\\x04\\x69\\xc1\\x82\\xc5\\x2a\\x88\\x95\\xae\\x39\\x5e\\xf4\\xd1\\x31\\\r\n\\x33\\x05\\x10\\x7c\\xa4\\xa2\\x84\\x47\\x24\\xee\\xde\\xfe\\xf1\\xb8\\x0e\\xb8\\\r\n\\x05\\xbc\\xb3\\x0d\\xab\\x43\\x04\\x92\\xa8\\x01\\xeb\\x42\\xdd\\x10\\x44\\x3b\\\r\n\\x83\\x95\\x38\\xbe\\x1c\\xd9\\x00\\x11\\x04\\x69\\x4f\\x13\\x8e\\x88\\xf6\\x0e\\\r\n\\xa9\\xfa\\xd8\\x00\\x04\\x86\\x03\\x82\\xe4\\x41\\x9d\\xf0\\xc0\\x5f\\x57\\x6b\\\r\n\\xbe\\x26\\xb9\\xe7\\x04\\x82\\x2d\\x50\\xf7\\xe4\\x8b\\x60\\x8f\\x72\\x2a\\xd2\\\r\n\\xe7\\x01\\x21\\xc3\\x8a\\xac\\x24\\x6b\\x14\\xc2\\x88\\x20\\x4f\\x2a\\x03\\xe9\\\r\n\\x9c\\x48\\xa3\\x80\\x47\\x2a\\x5c\\x5c\\x50\\x3e\\xc8\\x16\\xc1\\xc2\\x32\\x72\\\r\n\\xe7\\x91\\x6e\\x7a\\xd9\\xf0\\xbe\\xb0\\x76\\x13\\x42\\xae\\x5c\\x80\\x71\\xfa\\\r\n\\xad\\x1b\\x6c\\x21\\x66\\xe3\\x44\\x90\\xda\\xc5\\x6d\\xa1\\x30\\x18\\x34\\x8a\\\r\n\\x02\\x65\\x46\\xed\\x47\\xac\\x21\\x24\\x0e\\x12\\xe5\\x06\\x48\\xdb\\xbb\\x5c\\\r\n\\x48\\x14\\x09\\x89\\x18\\xd2\\xfd\\x86\\x48\\x95\\x38\\x99\\x28\\x20\\x27\\x8f\\\r\n\\x59\\x32\\xee\\x3c\\xf8\\xae\\x51\\x2f\\x5f\\x87\\x70\\x67\\x6d\\xb1\\x31\\xf0\\\r\n\\x00\\xad\\x6d\\x73\\xb6\\x27\\x50\\x06\\xd2\\xb9\\x57\\x2c\\x8a\\xa8\\x93\\xc8\\\r\n\\x8b\\x98\\x79\\x8e\\xa9\\xeb\\xd9\\x43\\x18\\x91\\xb2\\x93\\x41\\x00\\x53\\xdf\\\r\n\\xd1\\xe1\\xf3\\x90\\x60\\x09\\x46\\x2c\\xb9\\x44\\x05\\x33\\x91\\x0f\\x31\\xc0\\\r\n\\x44\\x72\\x1a\\xbd\\xa7\\x04\\xbd\\xf9\\xa9\\x40\\x53\\x77\\x91\\x13\\x7a\\x30\\\r\n\\x22\\xda\\x7c\\x1e\\xa0\\x87\\x48\\x34\\x78\\x8f\\x34\\x91\\x28\\x3c\\xfa\\xc5\\\r\n\\x0b\\x34\\x7f\\xe5\\xe4\\x2e\\x27\\xb7\\xe2\\xc1\\xf3\\x68\\xc4\\xc4\\xe4\\x08\\\r\n\\xfd\\x1c\\x88\\x1c\\x63\\x9b\\x25\\xf4\\x7c\\x45\\x4e\\x7a\\x73\\x60\\x81\\xb3\\\r\n\\xbe\\x3f\\x69\\xd0\\xd4\\xc8\\x58\\x83\\xc1\\x77\\x4e\\x5e\\xa4\\xc5\\xa0\\x15\\\r\n\\x75\\x60\\x56\\xac\\x9d\\xc6\\xde\\x2e\\x0d\\x74\\x5b\\x90\\x01\\x20\\x08\\x21\\\r\n\\x0c\\x97\\x69\\xa1\\xae\\x43\\x77\\x53\\x2e\\xd4\\xc4\\xf0\\x47\\xdc\\x7f\\xdf\\\r\n\\xa1\\x0d\\xb4\\xae\\x94\\xb3\\xc4\\x3c\\xa4\\x6a\\x15\\x07\\x81\\x85\\x60\\x9c\\\r\n\\x96\\x33\\x21\\x95\\x0b\\xdb\\x56\\x86\\xba\\xae\\x76\\xd9\\x5a\\x05\\x73\\x90\\\r\n\\xf1\\x2e\\x0f\\x0e\\xb1\\xe7\\x60\\x38\\xe7\\x55\\x83\\x1a\\x8c\\x1d\\x41\\x2a\\\r\n\\xea\\x00\\x64\\x03\\xf9\\x40\\xdd\\x70\\x8a\\xe2\\xc3\\xb6\\x1e\\xca\\xa5\\xe6\\\r\n\\x78\\xe2\\x99\\x13\\x90\\x0a\\x3a\\x32\\x00\\x67\\x02\\x5a\\x6a\\xc2\\x0d\\x0e\\\r\n\\x76\\xd4\\xa9\\x0d\\x42\\x08\\x0d\\x7d\\xc4\\x61\\xa1\\xaa\\xe0\\xf1\\xd2\\x37\\\r\n\\x32\\x5a\\x34\\x4c\\x2e\\x40\\x5d\\xbb\\x60\\x60\\x16\\xfb\\x3a\\x80\\x59\\x36\\\r\n\\x81\\xa2\\xc0\\x46\\x30\\x22\\x50\\x38\\x9f\\x64\\x7a\\x4d\\x65\\x20\\xe4\\x35\\\r\n\\x79\\x4f\\x83\\x3b\\x75\\x7b\\xae\\x10\\x25\\x7a\\x08\\xcd\\x8b\\x62\\xa8\\x4d\\\r\n\\x90\\x18\\xdc\\xd2\\xa3\\x4a\\x04\\x93\\x50\\xe9\\xc3\\x01\\x93\\x7c\\xc5\\x6f\\\r\n\\x6e\\x95\\xd0\\x1c\\x32\\xcf\\x2c\\xe4\\x6e\\xf8\\x9a\\xa9\\xd8\\x9d\\x70\\x00\\\r\n\\xbe\\x63\\x33\\x9a\\x38\\x91\\x28\\x58\\x2a\\xcd\\x5c\\x5d\\x2d\\x08\\x3a\\x7b\\\r\n\\xa6\\x6d\\x1d\\x70\\x42\\x47\\xf9\\x9d\\x33\\x24\\x05\\xf4\\xab\\xbe\\x22\\xeb\\\r\n\\x30\\x8c\\xd4\\x91\\x19\\x13\\x1e\\xd2\\x46\\x79\\x9d\\x2f\\xae\\x11\\x03\\x53\\\r\n\\xb3\\x8e\\x15\\xcd\\x9e\\xb8\\x10\\xda\\xcf\\xa5\\x7e\\x86\\x17\\x10\\x3a\\xb7\\\r\n\\xae\\x7b\\xbc\\x23\\xb4\\xa1\\x17\\x96\\xc4\\x51\\xf6\\x1e\\x1a\\x1d\\x3b\\xa8\\\r\n\\x10\\x3d\\x69\\xf4\\x13\\x45\\xdc\\x62\\x89\\x26\\xb2\\x62\\x85\\x02\\x61\\xe8\\\r\n\\x1f\\xbc\\xc3\\xbe\\x9a\\x91\\x45\\x1b\\x3f\\x9e\\x9a\\x13\\x61\\x78\\x29\\x59\\\r\n\\x69\\x7f\\x61\\xf3\\x7e\\xca\\x58\\x81\\x05\\xf5\\x0e\\x03\\x74\\x89\\x20\\x87\\\r\n\\x62\\xea\\xda\\xf2\\x06\\x54\\x3e\\x2c\\xe2\\x06\\x41\\xeb\\xfe\\x3f\\x45\\xa2\\\r\n\\x01\\x0e\\x50\\x0e\\xe6\\x60\\x45\\x0b\\x29\\x2e\\x4a\\x74\\x19\\x29\\x78\\x31\\\r\n\\x26\\x8b\\x5f\\xd1\\x0e\\x2a\\x41\\x4f\\xcc\\xb0\\x32\\x0e\\x19\\xad\\x4a\\xb2\\\r\n\\x2a\\x6c\\x7c\\x4c\\xdb\\xb2\\xfe\\xcf\\x99\\x8f\\xf7\\x49\\xc4\\xab\\x32\\x89\\\r\n\\xde\\xc1\\x16\\xf1\\xe7\\x77\\x78\\x2a\\x72\\xf9\\xb6\\x71\\x1d\\x45\\x26\\x27\\\r\n\\x57\\x01\\x56\\x82\\x08\\xc5\\x30\\xdc\\x29\\xc0\\xd4\\x79\\x4a\\xd5\\x7b\\x6f\\\r\n\\x18\\x5c\\x44\\x44\\x72\\x71\\xac\\x7d\\x5c\\xab\\x1c\\xd8\\x37\\x0b\\x87\\x7b\\\r\n\\x6b\\x55\\xa9\\x50\\x2f\\xa0\\x82\\x53\\x99\\xd4\\x8b\\x40\\x02\\x93\\x37\\x21\\\r\n\\x5c\\x2e\\xfe\\x22\\x5b\\xfa\\xd3\\xe8\\x1a\\x9d\\xa8\\x7a\\xd8\\x1f\\x34\\x80\\\r\n\\x50\\x7e\\x80\\xdd\\x02\\x99\\x90\\x4c\\x1e\\x32\\x2b\\x02\\x68\\x35\\xa6\\x00\\\r\n\\x17\\x55\\xd4\\xd1\\xb4\\x3e\\xc9\\x63\\x83\\x19\\xa0\\x85\\xe2\\x73\\xff\\x00\\\r\n\\x48\\x64\\xdd\\xf2\\xdc\\x64\\x02\\xf6\\x39\\x55\\x20\\x0a\\xd2\\x05\\x52\\x1d\\\r\n\\xb4\\x80\\xfe\\xb8\\x82\\xa9\\x46\\x15\\x48\\xa3\\xd9\\x6b\\x33\\x14\\x4a\\xe1\\\r\n\\x7f\\x36\\x56\\x2c\\x59\\x50\\xc5\\xe2\\x1f\\x22\\x50\\x9a\\x70\\x8a\\x84\\x4e\\\r\n\\x0b\\x00\\xb1\\x18\\xae\\xf9\\x65\\x2b\\x66\\x31\\xa8\\x6b\\x5b\\x4a\\xe6\\x3d\\\r\n\\xfd\\xd1\\x54\\xf1\\x01\\x71\\xa8\\xa5\\xe2\\x29\\x45\\x04\\x02\\x8c\\x92\\x33\\\r\n\\x60\\x10\\xd6\\x77\\x39\\x2c\\x90\\xa1\\x92\\xb0\\xfc\\xe7\\x40\\x09\\x72\\xb2\\\r\n\\xe1\\x34\\x59\\xaa\\xc6\\x66\\xf1\\x81\\x10\\xaa\\x31\\x14\\x02\\x9a\\x90\\x74\\\r\n\\xc3\\xc4\\x40\\x92\\x07\\x15\\x8a\\x21\\x1a\\x23\\x9a\\xc0\\xc7\\x85\\x21\\x8f\\\r\n\\x4d\\xee\\x67\\x2c\\x93\\x04\\x04\\x9a\\xd5\\x03\\xab\\x75\\x4a\\x16\\x49\\xd6\\\r\n\\x1d\\x60\\x26\\xa6\\xac\\xad\\xe7\\xe3\\xa6\\x53\\x19\\x28\\x8a\\x18\\xf4\\x34\\\r\n\\x82\\x08\\x32\\x98\\xc6\\x37\\x98\\x0d\\x0f\\x4c\\xec\\x8e\\x04\\x9a\\xdf\\xd6\\\r\n\\xd7\\x12\\x7a\\xc0\\x52\\xf7\\x8a\\xbd\\x4c\\x46\\xa0\\x8a\\x6a\\x53\\x53\\x87\\\r\n\\x0b\\x12\\x84\\x56\\x5b\\xf3\\xda\\xb2\\xb5\\x92\\xe2\\xa4\\x5e\\x30\\x7e\\x40\\\r\n\\x69\\x90\\x9f\\x62\\x06\\xf9\\xbb\\xa0\\x06\\x59\\xae\\x6c\\xb7\\x07\\x05\\xa1\\\r\n\\xbf\\x76\\x22\\x5a\\x10\\xf6\\x1a\\xc1\\x7b\\x37\\x4d\\x48\\xce\\xb0\\xb2\\xa6\\\r\n\\x2d\\xd9\\x8f\\x59\\x11\\x39\\x92\\x99\\x1e\\x51\\x49\\x5a\\xb5\\xf5\\x9c\\x22\\\r\n\\x28\\x8a\\x75\\x09\\x0e\\xfe\\x74\\x88\\xa7\\x33\\xcf\\x98\\xe6\\x97\\x76\\x08\\\r\n\\x8c\\x9f\\x61\\x21\\x50\\xad\\xe7\\x88\\x13\\xe1\\x24\\xcc\\x4d\\x75\\xc0\\xc5\\\r\n\\x11\\xa8\\xf8\\x01\\xe2\\x7f\\x9a\\x91\\x40\\xdd\\x25\\x50\\x9b\\x6d\\xfe\\xc6\\\r\n\\xfc\\x40\\x86\\xf0\\xce\\xe5\\xe9\\xc8\\xca\\x88\\x66\\xfd\\xd9\\xa4\\x5e\\xeb\\\r\n\\x38\\xcd\\xbd\\x43\\x51\\x50\\x41\\x91\\x34\\x45\\x1a\\xf9\\x8a\\xf8\\x40\\x35\\\r\n\\xeb\\xd9\\xc3\\x8a\\x65\\x45\\xdc\\x97\\xa4\\x04\\x84\\x47\\xce\\xe0\\x9d\\xf8\\\r\n\\x93\\x13\\xb5\\x78\\x67\\x62\\xd0\\xae\\xf6\\xa0\\x00\\x0b\\x0a\\xd5\\x57\\x72\\\r\n\\x88\\xd3\\x05\\x11\\x65\\xd1\\x41\\xa9\\xa6\\x03\\x5a\\xb0\\x37\\x84\\x41\\xf3\\\r\n\\x5b\\xd5\\xfa\\xfa\\x63\\xf7\\xa2\\x2c\\x3a\\x49\\xc3\\x6c\\xcb\\xe9\\xc3\\x3e\\\r\n\\xe4\\xea\\xa7\\x59\\x80\\x53\\x65\\x5c\\x6d\\x73\\xa4\\x92\\xab\\xc9\\x13\\xb4\\\r\n\\x25\\xb6\\xc5\\x3b\\xdc\\xfc\\xf6\\xb8\\x6c\\xf8\\x3b\\xe2\\x0c\\x3d\\x01\\x8c\\\r\n\\x94\\xb1\\x68\\x0c\\x99\\xb9\\x40\\xcb\\x0d\\x48\\xa2\\x44\\x94\\xa2\\xd0\\x8d\\\r\n\\x70\\x5e\\x7d\\x14\\x14\\x71\\x0c\\xce\\x05\\x67\\x47\\x8c\\xf1\\x3e\\xba\\x1c\\\r\n\\x06\\xd5\\xa3\\x36\\x14\\x51\\x3c\\x00\\x17\\x97\\x9e\\xaa\\x2a\\x07\\x05\\xe6\\\r\n\\x86\\x08\\x5d\\xe9\\x6b\\xc6\\xa5\\x71\\xe4\\x9d\\xe1\\x17\\x09\\x4b\\xaa\\x61\\\r\n\\xc2\\x0a\\xbe\\x39\\x13\\xb0\\xce\\x4d\\x14\\x8b\\x28\\x58\\x56\\xc7\\x85\\x72\\\r\n\\x1c\\x8d\\x30\\xcf\\xb8\\xaa\\xa4\\x19\\x1b\\xe1\\xc9\\x10\\x2b\\x27\\x29\\x71\\\r\n\\x7e\\x9d\\x41\\x12\\x21\\x6e\\x1a\\xf6\\x9c\\x01\\xe2\\xf9\\x7a\\x5a\\x0d\\x55\\\r\n\\xb1\\xc0\\xf3\\x31\\x30\\xb3\\x36\\xc1\\x4c\\x4c\\x49\\xef\\x25\\x62\\xc5\\x11\\\r\n\\x0d\\x40\\x96\\x68\\x88\\x5d\\x8e\\xe3\\xa8\\x20\\xa2\\x00\\x50\\x10\\xb0\\x42\\\r\n\\xc4\\xd8\\x86\\x6f\\xb2\\x87\\x37\\x2c\\x75\\x07\\xe7\\x33\\x44\\x98\\xd6\\xd3\\\r\n\\x25\\x38\\xbe\\x01\\x6d\\x68\\x7a\\xf6\\x83\\xc8\\xec\\x72\\x1e\\x81\\x88\\x1e\\\r\n\\xa8\\xf1\\x16\\x3e\\xa0\\x12\\xd9\\xbd\\xdd\\xd0\\xc5\\x46\\x74\\x89\\x32\\x24\\\r\n\\x5f\\xd4\\x76\\x20\\xe2\\x74\\x57\\x58\\x74\\x03\\xaa\\x7e\\x0a\\xcc\\xba\\xbe\\\r\n\\xe8\\xf0\\xca\\x65\\xbf\\xc0\\x44\\x38\\xd1\\xb0\\x1a\\xe8\\x44\\xfb\\xfb\\x27\\\r\n\\x88\\x17\\x56\\xea\\x3c\\x2b\\x32\\x96\\x80\\xd0\\x10\\x11\\xf7\\xc6\\x0e\\x68\\\r\n\\x10\\x99\\xb7\\x8e\\xe5\\x48\\x11\\x1e\\x47\\xc9\\xc4\\x2b\\x20\\x2c\\xa1\\x87\\\r\n\\xe3\\xc7\\x70\\x97\\xca\\x46\\xe7\\xd7\\xe1\\x9a\\xf0\\xf5\\x54\\xdd\\x59\\x04\\\r\n\\x68\\x5b\\xca\\xa9\\x41\\x48\\xf0\\x8b\\x6c\\xc0\\xc2\\x80\\x15\\xa6\\x1b\\x73\\\r\n\\xd0\\x3c\\x8b\\xcb\\x86\\x2a\\x9a\\x00\\xb4\\xd9\\x08\\xd0\\x19\\x9d\\x56\\xf8\\\r\n\\xa5\\x42\\xa1\\x76\\x56\\xf3\\xee\\xd0\\x3b\\x07\\xd6\\xf6\\x23\\xa3\\x9e\\xea\\\r\n\\x02\\xe2\\xcc\\x50\\xa4\\x38\\x2b\\x63\\x6c\\x0f\\xb5\\x6f\\x49\\x7f\\xfc\\x46\\\r\n\\x44\\x33\\x5c\\x05\\x9e\\x36\\x40\\x0c\\xd7\\x4c\\xb6\\x9c\\xcc\\x1f\\x55\\x62\\\r\n\\xa3\\x45\\x1f\\x40\\x88\\x17\\xb9\\x6c\\x90\\x8a\\x41\\x94\\xea\\xb0\\x86\\xd9\\\r\n\\x92\\x24\\x83\\xeb\\x0d\\x22\\x26\\x07\\x85\\x3a\\x7a\\xac\\xb2\\x80\\x95\\x8a\\\r\n\\x72\\xc2\\x81\\xbb\\xd4\\xb9\\x9e\\x0f\\x14\\x03\\xd8\\xbe\\x10\\x49\\x43\\x58\\\r\n\\xe1\\x68\\x8f\\xa0\\x80\\xd0\\x11\\x64\\x92\\xf5\\x42\\x13\\xc7\\xd5\\x65\\x02\\\r\n\\x66\\x2b\\x3a\\xb5\\x62\\xcc\\x34\\x67\\x07\\x2e\\x30\\xd5\\x10\\x11\\xe1\\xc0\\\r\n\\x36\\xd1\\x4a\\x31\\x40\\x2e\\xc6\\x51\\x1d\\xec\\x59\\x81\\x4a\\xf2\\xd8\\xb9\\\r\n\\x50\\xe5\\xc1\\x4a\\xf4\\x1b\\x87\\x96\\x80\\x73\\x9d\\x54\\xcb\\x68\\x2a\\x83\\\r\n\\x53\\x8e\\x1c\\xa3\\x74\\x47\\xb8\\xd4\\xb0\\x02\\xac\\xf3\\x7f\\x84\\x2f\\xe3\\\r\n\\x72\\x7a\\x0a\\x61\\xb1\\x5d\\xd7\\x2c\\x7a\\x60\\x6f\\x32\\x13\\xfd\\x38\\x41\\\r\n\\x62\\x64\\x88\\x41\\x8a\\xdc\\xbd\\x14\\x98\\x47\\x40\\xf9\\x16\\xa0\\x5b\\x93\\\r\n\\x55\\xb4\\x8e\\xa6\\x05\\xab\\x08\\xf6\\x9c\\x7b\\x47\\x90\\x5c\\x15\\xc2\\x21\\\r\n\\xd0\\x10\\x8a\\xe4\\x3c\\x50\\xdc\\xeb\\x24\\x0d\\xd5\\x2d\\x44\\x4c\\x43\\x42\\\r\n\\xd4\\x98\\x42\\x84\\x88\\x05\\xdc\\xae\\x77\\xd4\\xf3\\x5b\\xe7\\x96\\x6c\\x8f\\\r\n\\x32\\x03\\x82\\xdf\\x53\\x1d\\x44\\xc9\\xb6\\xae\\x11\\x3d\\x46\\xa4\\x1d\\x9c\\\r\n\\xa1\\x34\\xa4\\xd2\\x5b\\x4e\\x08\\x48\\x33\\x5b\\x01\\x54\\xc2\\x83\\xfa\\x4c\\\r\n\\xa2\\x6c\\x1a\\x69\\x79\\x08\\x73\\x4f\\x0d\\xf1\\x28\\x07\\xaa\\x31\\xa8\\x57\\\r\n\\x0a\\x38\\x42\\xcf\\xb3\\x40\\x2c\\xaa\\xd0\\x00\\x11\\xe2\\x16\\xca\\x08\\x80\\\r\n\\x73\\x4a\\x75\\x62\\xbf\\xe7\\xbe\\x7f\\x71\\x5f\\x83\\xf4\\x26\\xf4\\xd2\\x6f\\\r\n\\x66\\xb5\\x4a\\x29\\xc6\\xbf\\x33\\xe7\\x74\\x4b\\xf4\\x23\\x03\\x80\\xab\\xb3\\\r\n\\x94\\x83\\x40\\x50\\xa9\\x64\\x79\\x29\\xc4\\x39\\x56\\xb8\\x49\\x58\\x61\\xed\\\r\n\\x70\\x04\\xf2\\x37\\x02\\xb4\\x61\\x50\\x01\\xa4\\x9c\\x4c\\x7c\\xfd\\xb5\\x90\\\r\n\\x1b\\x92\\x06\\x8d\\x07\\x87\\xb9\\x08\\x16\\xc8\\xd3\\x57\\xa8\\x74\\x78\\x57\\\r\n\\xc8\\x5a\\x10\\xb4\\x85\\xcd\\x88\\x56\\x07\\x4e\\x76\\xce\\x24\\xb2\\x0d\\x27\\\r\n\\xd0\\x4d\\x5e\\xad\\x79\\x13\\x96\\x80\\x40\\xd0\\xd6\\x8b\\x55\\x8f\\x36\\x2e\\\r\n\\xe4\\xa0\\x24\\x8a\\xb2\\xce\\x0b\\x0d\\x98\\xb4\\xaf\\x15\\x81\\xc1\\xf5\\x8d\\\r\n\\x06\\xa0\\xc7\\x84\\x21\\x50\\x47\\x82\\x90\\xe0\\x51\\x20\\x20\\xa5\\x43\\x53\\\r\n\\x8f\\x39\\x1a\\x86\\x01\\x95\\x33\\x05\\x55\\x70\\x47\\xee\\xca\\xa1\\xb7\\x62\\\r\n\\x5e\\x42\\x8b\\xcd\\xd3\\xbe\\x77\\x52\\x85\\x52\\xd1\\x78\\xcb\\xa4\\xd5\\xe4\\\r\n\\xb2\\x62\\x23\\x82\\x78\\x8d\\x96\\x16\\x2e\\x40\\xb8\\x2b\\x9e\\xee\\xe0\\x95\\\r\n\\xb0\\xd2\\xa6\\x30\\x20\\x96\\x07\\x8c\\x6e\\x12\\x98\\xe8\\xf0\\x6b\\x67\\x37\\\r\n\\xa9\\xf8\\x06\\xf6\\x2c\\x43\\x4b\\xd2\\x43\\x86\\x7f\\x0c\\xb5\\xb2\\xdd\\xea\\\r\n\\x14\\x53\\xa5\\xff\\x00\\x8c\\x02\\x78\\xbb\\xb0\\x05\\xab\\x23\\xde\\xcd\\x51\\\r\n\\xc8\\x76\\x05\\x98\\x11\\xd1\\x66\\xc6\\xa1\\x4a\\x0a\\x76\\xe6\\x72\\x38\\x87\\\r\n\\xff\\x00\\x81\\xaf\\x39\\x44\\x41\\x7f\\x5b\\x9c\\xe5\\xed\\x8e\\xc6\\xc2\\x81\\\r\n\\x18\\x86\\xa8\\xf0\\xac\\xe7\\x59\\x04\\x48\\x2c\\x13\\x16\\xb8\\x1d\\xe1\\x65\\\r\n\\xca\\xb5\\x00\\xfe\\xba\\xa4\\x19\\x77\\x96\\xc9\\xed\\xd1\\x24\\x54\\x19\\x29\\\r\n\\x19\\x20\\xf3\\x3c\\x1e\\x07\\x6f\\xf8\\x75\\x24\\xbb\\xbd\\x6b\\xeb\\x6c\\x78\\\r\n\\xad\\x10\\x01\\x6b\\x95\\xc5\\x5f\\xf1\\x58\\x5c\\xf9\\x8f\\x07\\x5b\\xc8\\x4a\\\r\n\\xe8\\x62\\x4a\\xf1\\x84\\x2c\\x4f\\x8f\\x46\\x22\\x18\\x56\\x12\\x9c\\xfe\\xf3\\\r\n\\x4e\\xac\\xcc\\x0c\\x80\\x04\\x95\\xe6\\xc6\\x65\\x8c\\x96\\xc8\\xca\\xea\\x5e\\\r\n\\x70\\x0a\\xc3\\x0c\\xc8\\xb3\\xe4\\x83\\xcc\\xb8\\x4e\\x92\\xda\\x45\\x8e\\x78\\\r\n\\x26\\xa3\\x8d\\xbb\\xd8\\x09\\xac\\x15\\xfa\\xbc\\x5c\\xdc\\x7e\\x34\\xbb\\x00\\\r\n\\x46\\xda\\xa3\\x13\\xd2\\x01\\xd1\\x3a\\x89\\xd5\\x68\\xcc\\x03\\x91\\x55\\x3f\\\r\n\\x15\\x40\\x41\\x41\\x3d\\xaa\\x41\\x09\\xb2\\xb5\\x20\\x35\\x6c\\xc8\\x6b\\x04\\\r\n\\xd5\\x74\\xbb\\x89\\x16\\x72\\xe0\\x0d\\x16\\xe7\\x05\\xe2\\xa9\\x68\\x93\\x43\\\r\n\\xeb\\xb0\\x00\\xce\\x99\\x29\\xf1\\x58\\x7b\\x33\\xbb\\x6e\\x83\\x3f\\x44\\xa0\\\r\n\\x27\\x65\\x52\\x02\\xc0\\xe1\\xff\\x00\\xd5\\x05\\x68\\x69\\x2c\\x0f\\x4c\\x49\\\r\n\\x6f\\x99\\x7e\\x28\\xa1\\xa2\\x46\\x04\\xe9\\xec\\x2d\\x6d\\xd5\\xe6\\x9f\\x49\\\r\n\\xc9\\xec\\xe1\\x11\\x40\\x90\\x23\\x80\\x32\\x48\\x05\\xf3\\xe7\\x52\\x38\\x8c\\\r\n\\x29\\x11\\x9e\\x74\\xcc\\x28\\xa0\\x85\\x55\\x80\\x60\\x21\\x87\\x6c\\xd5\\x56\\\r\n\\x00\\x4b\\x03\\xd1\\x7b\\x63\\x42\\x2e\\x63\\x22\\x00\\xf0\\x15\\x05\\x7c\\x04\\\r\n\\xc6\\x33\\x9e\\x47\\x30\\xa4\\x8e\\xc2\\x2e\\xa8\\x29\\x64\\xc6\\xe2\\xc6\\x55\\\r\n\\x58\\x83\\xa2\\x94\\x9e\\x6a\\xc5\\xf8\\xc1\\x9a\\x07\\x15\\x35\\x8a\\x07\\x59\\\r\n\\xec\\x22\\x25\\x35\\xfa\\x7f\\x58\\xf1\\x3e\\x08\\xee\\x22\\x20\\xd2\\xb8\\xa8\\\r\n\\x52\\x04\\x0f\\xe6\\xc1\\xb4\\x43\\x46\\xa6\\xa9\\x5e\\x25\\x69\\x7d\\x47\\x74\\\r\n\\x5b\\x8a\\x99\\x20\\xe5\\xc9\\x6c\\x52\\x38\\xd6\\x23\\x43\\x8b\\xbd\\x90\\x9f\\\r\n\\xd2\\x03\\x0d\\x30\\x1a\\xa0\\xd9\\x47\\x61\\x6e\\x53\\x42\\xa7\\xa5\\x47\\x50\\\r\n\\x86\\x17\\x47\\xe1\\x42\\x7e\\x88\\x29\\xcf\\x14\\xc2\\x27\\x45\\x39\\x5f\\x14\\\r\n\\x26\\xc0\\x36\\x88\\x4e\\x9f\\x19\\x21\\x5a\\xe6\\xd8\\x6c\\x14\\x71\\x6d\\x2c\\\r\n\\x81\\x09\\x28\\x87\\x34\\x2e\\x44\\x4b\\xc0\\x16\\x23\\x38\\xa3\\x54\\xcb\\xa6\\\r\n\\x7c\\x7e\\xa5\\x02\\x28\\xa8\\x17\\x9e\\xad\\xdc\\x45\\x28\\x89\\x58\\x05\\x69\\\r\n\\x95\\x70\\x8f\\x77\\x12\\x27\\xcb\\x51\\x12\\x54\\xac\\x80\\xa0\\x09\\x86\\xcc\\\r\n\\xd9\\x05\\xe4\\x8a\\x80\\x21\\xcc\\xf2\\x18\\x3c\\xc2\\x8f\\x1c\\x9e\\x14\\xe0\\\r\n\\xc0\\x02\\x24\\x70\\xb1\\x76\\xaf\\x61\\xcb\\xb6\\x01\\xfa\\x06\\x69\\x20\\x64\\\r\n\\x46\\xbf\\x40\\xda\\xd1\\x11\\x3b\\x0e\\xa3\\x39\\x26\\x30\\x46\\x49\\x7b\\x7e\\\r\n\\x7d\\xc6\\xce\\x95\\x59\\xfe\\x86\\x4b\\x0a\\x03\\xb9\\x11\\x6c\\xa7\\x94\\xab\\\r\n\\x76\\x34\\x4b\\xc4\\x17\\x3c\\x64\\xc9\\xf1\\xed\\x4d\\x08\\xa2\\xdd\\xd0\\xa7\\\r\n\\x26\\xe5\\xcc\\x3f\\x22\\x0f\\xe4\\x61\\xc5\\x32\\xc3\\x49\\xca\\xa0\\xbe\\x2c\\\r\n\\x22\\xa3\\x50\\x50\\x10\\xd2\\xba\\x44\\xa0\\x3d\\x0a\\x85\\x1d\\x53\\x58\\x5e\\\r\n\\x95\\x19\\x72\\x24\\x01\\x04\\xc0\\x48\\xd0\\x9f\\xd9\\x6b\\x78\\x53\\x8f\\xed\\\r\n\\x79\\x27\\x1f\\x90\\xfb\\x7e\\xbe\\xdc\\x9a\\x79\\x74\\x82\\x50\\xc8\\xc8\\x34\\\r\n\\x48\\x3d\\x06\\xbe\\x31\\xe8\\x58\\x02\\xc4\\x97\\x42\\xc8\\x22\\x4d\\x75\\x51\\\r\n\\xe9\\x51\\xc7\\xe8\\x00\\x21\\x54\\x74\\x70\\x1c\\x05\\x03\\x0a\\x20\\xa4\\xa0\\\r\n\\xa5\\x87\\x99\\xcc\\x1e\\xab\\x74\\x30\\x0b\\x8f\\x74\\xe8\\x85\\x31\\x2d\\xb4\\\r\n\\x2c\\x5c\\x20\\xa7\\xe7\\x4b\\x90\\xb4\\xf7\\xd0\\x3c\\x95\\x85\\xe1\\x8e\\xa3\\\r\n\\x71\\xa6\\xb9\\x43\\xcb\\x6b\\xdb\\x24\\x91\\x83\\x2e\\x65\\x86\\x1b\\x30\\x7e\\\r\n\\x6c\\x16\\x56\\x76\\x06\\xb1\\x29\\x64\\x90\\x3f\\x19\\x04\\x7c\\x01\\xc3\\x48\\\r\n\\x19\\x61\\xc6\\x45\\x41\\x4c\\x9e\\x89\\xc0\\x93\\x7b\\x02\\x33\\xe4\\x44\\x50\\\r\n\\x91\\x8d\\x22\\xec\\x49\\x4a\\x84\\xc7\\x12\\x1c\\x29\\xc0\\x21\\x04\\xe8\\xba\\\r\n\\x63\\x11\\x7a\\xfd\\xd7\\x65\\x10\\xae\\x7e\\xd3\\x58\\x39\\xcc\\xdd\\x09\\x4c\\\r\n\\x63\\x91\\x31\\x14\\x2d\\xa5\\xa9\\x0e\\xab\\xe3\\x61\\x43\\xc1\\x62\\xb2\\xc1\\\r\n\\x8c\\x69\\x4b\\x9a\\x92\\x36\\x53\\xf2\\x7a\\x84\\xb7\\xaf\\x6d\\x33\\x2e\\x60\\\r\n\\x6d\\x2e\\x41\\x31\\x2a\\xa0\\x4b\\x97\\x59\\x5b\\xe9\\xd6\\x18\\x7e\\xb2\\x24\\\r\n\\x00\\xb0\\xaa\\xb0\\x3b\\x3d\\xc5\\xd0\\x71\\x96\\x25\\xb3\\xd1\\x7e\\x2c\\xf0\\\r\n\\x93\\x96\\xc8\\x14\\x1e\\x04\\x57\\x4a\\x3a\\x42\\xbb\\xf0\\x21\\xd6\\x05\\x0d\\\r\n\\x03\\x19\\x05\\x61\\x67\\xe3\\xb5\\x82\\x1c\\x29\\x44\\x1e\\x93\\xc5\\x79\\x04\\\r\n\\x54\\x51\\x0d\\x64\\x50\\x0a\\xc4\\x46\\x15\\xa1\\x05\\x2c\\x24\\xa0\\x00\\x19\\\r\n\\xce\\x83\\x7c\\x59\\x75\\xa4\\x81\\x69\\x5c\\x00\\x48\\x82\\x20\\x55\\x44\\x10\\\r\n\\x99\\x13\\xb3\\x9c\\x50\\xd0\\x7b\\x57\\x69\\xc4\\x00\\x4d\\x84\\xcb\\xb2\\xdb\\\r\n\\xab\\xe0\\xf4\\x09\\xca\\xca\\xf9\\x68\\x91\\xcf\\x78\\xc8\\x25\\x62\\x4d\\x34\\\r\n\\x94\\xdc\\x8c\\x12\\x24\\x6a\\xfa\\x25\\x6d\\x44\\x0f\\x6d\\x12\\x52\\x3b\\x54\\\r\n\\xf5\\xf1\\xbb\\x94\\xf6\\x79\\xdb\\x7b\\x61\\x5b\\xc7\\x86\\xd0\\x12\\x6d\\x31\\\r\n\\x99\\x11\\x6f\\x4e\\xde\\xc8\\x08\\x40\\x40\\xf4\\x27\\xdc\\x2d\\x97\\x79\\x80\\\r\n\\x1b\\x22\\xbd\\x03\\x61\\xd5\\xde\\xf8\\x79\\xe2\\x5b\\xd4\\xc8\\xd5\\x00\\xaa\\\r\n\\xc6\\x9a\\xfa\\x41\\x90\\xbc\\x97\\xc2\\xd0\\x59\\x08\\x29\\xa9\\x82\\x56\\x03\\\r\n\\x50\\x14\\x02\\xd0\\x09\\xef\\x1c\\xd7\\x5b\\x43\\x3e\\x20\\x90\\x57\\x0a\\x21\\\r\n\\x9c\\x7a\\xc0\\x38\\x32\\x1b\\x8e\\x0e\\xfe\\x4e\\x87\\x2e\\xa6\\x4d\\x3d\\x19\\\r\n\\x94\\xdb\\xa1\\xc3\\x7a\\xf2\\x07\\x4a\\x63\\x1d\\x94\\x1d\\xae\\x28\\xac\\x46\\\r\n\\x9f\\x8b\\x3c\\x2b\\x91\\x1d\\x96\\x1a\\xb4\\x34\\x21\\xbc\\xd3\\xa2\\xe5\\x73\\\r\n\\x86\\xbb\\xe4\\xa5\\xf7\\x4c\\x90\\x38\\xd5\\x52\\x99\\x78\\xa8\\x11\\x11\\x52\\\r\n\\x9d\\xe8\\xe3\\xb8\\x6d\\x17\\x0d\\x55\\xa1\\xd3\\x89\\x03\\x47\\x00\\x39\\x46\\\r\n\\x82\\x23\\xdc\\x48\\x49\\xac\\x3d\\xbb\\x36\\x06\\x1e\\xfc\\x77\\xb2\\x10\\xe4\\\r\n\\x9e\\x90\\xb9\\xcf\\x06\\xf3\\xf0\\xb6\\x55\\x92\\x33\\x82\\x7a\\x52\\xec\\x68\\\r\n\\xf0\\x99\\xa2\\x88\\xbb\\xcf\\x0d\\xfa\\x88\\xda\\x36\\x6e\\x86\\x25\\x44\\x2d\\\r\n\\x6c\\x89\\xa3\\xb2\\x53\\x42\\xc9\\x52\\x3a\\xa7\\xd5\\x48\\x1a\\xa0\\x2a\\x2e\\\r\n\\xe0\\x42\\x40\\xa1\\x94\\xa3\\xe9\\xe1\\xa1\\x40\\x01\\x82\\xd9\\x06\\x86\\x2a\\\r\n\\x03\\xf1\\x56\\xec\\xbd\\x3c\\xa9\\x1b\\xb1\\xc3\\x4b\\xcb\\x75\\x52\\x01\\x79\\\r\n\\x15\\x21\\x8d\\x61\\x04\\x38\\xb5\\x98\\xd3\\x82\\x26\\xd7\\x50\\x1a\\x56\\x31\\\r\n\\xb3\\x21\\x26\\x48\\x7b\\x03\\x2d\\xde\\x72\\xfa\\xa0\\xed\\x55\\x4a\\xaf\\x1e\\\r\n\\xd7\\x70\\x30\\x0a\\xd5\\x0c\\xbf\\x75\\x49\\xf0\\xee\\xe8\\x4c\\x28\\x00\\xbd\\\r\n\\x7a\\x01\\xca\\x99\\x9e\\x0b\\xff\\x00\\x34\\x7e\\x60\\x01\\x1f\\x1c\\xd4\\xba\\\r\n\\x4e\\x59\\x84\\x39\\x1d\\xa3\\xa3\\x60\\x74\\x74\\xd0\\x68\\x4b\\x32\\x8a\\x2f\\\r\n\\x1a\\x81\\x4e\\x00\\x35\\xe6\\xe8\\x1f\\x04\\x0e\\xce\\xa0\\x09\\xc1\\x8c\\x65\\\r\n\\x89\\x8a\\x1a\\x23\\x12\\xf0\\x12\\xc5\\x5a\\xf7\\x85\\x1a\\x10\\x5a\\x33\\x90\\\r\n\\x70\\xea\\x13\\x80\\x2a\\xcb\\xaa\\x61\\x77\\x8c\\x00\\x51\\x27\\x03\\xb4\\x89\\\r\n\\xe7\\x40\\x17\\x3a\\x3c\\x09\\xa2\\xf7\\xb4\\xa7\\x91\\x28\\x56\\x8c\\x19\\x67\\\r\n\\x05\\xfa\\x9e\\x01\\x05\\xd8\\x0c\\xd2\\xbd\\x34\\x84\\x5f\\x09\\x9a\\x24\\x37\\\r\n\\x2c\\x9d\\xd2\\x56\\x40\\x76\\x88\\xa3\\x19\\x48\\xcd\\xf5\\x02\\x9e\\x4b\\xf4\\\r\n\\xe3\\x6a\\xcf\\xcb\\x22\\x39\\xa4\\x5a\\x2a\\x8f\\x53\\x6d\\x4f\\xe9\\x3a\\xb2\\\r\n\\x50\\x60\\x42\\xf7\\x03\\x59\\xb4\\x22\\xe0\\x3a\\x43\\x2e\\x02\\xe3\\x5a\\xe9\\\r\n\\x02\\xde\\x50\\x99\\xe8\\xe1\\xa7\\x32\\xe2\\xc4\\x2a\\xd3\\x2d\\x41\\xf8\\x6e\\\r\n\\x79\\x7e\\xbd\\x88\\x58\\x51\\x83\\x2d\\x4b\\x1e\\x7c\\x82\\xa0\\x9b\\x0d\\x7a\\\r\n\\x9c\\x38\\x5e\\x43\\x31\\xab\\xbb\\x21\\x40\\xba\\x0f\\x48\\x7b\\x8a\\xae\\xa3\\\r\n\\x2a\\xa6\\xb3\\xc0\\x6a\\x08\\x13\\x80\\xe4\\x98\\x5c\\x67\\xea\\x2a\\x8a\\x40\\\r\n\\xe2\\x02\\x10\\x95\\x42\\x22\\x2a\\x43\\x8a\\xc9\\x06\\x25\\xdd\\x94\\x4e\\x9b\\\r\n\\xf6\\xda\\x5d\\x81\\x63\\x80\\x30\\xd0\\xd9\\xe1\\xb1\\x99\\x58\\xf3\\xa3\\x33\\\r\n\\x76\\x50\\x3c\\xa5\\x05\\xb9\\x52\\x3a\\x38\\x1f\\xbf\\xda\\x87\\x5c\\x7b\\x6d\\\r\n\\xd6\\xea\\x28\\x25\\xea\\x00\\x54\\x18\\x69\\x55\\x70\\x5a\\x00\\x01\\xc4\\xc1\\\r\n\\xc5\\xe4\\xa0\\x20\\x94\\xc1\\x52\\x70\\x11\\xb1\\xeb\\xaf\\x37\\x4a\\xb5\\x2c\\\r\n\\x42\\xee\\x0f\\xe0\\x08\\xb1\\x9c\\xd9\\xe2\\x24\\x79\\x04\\x27\\x30\\x37\\x41\\\r\n\\x51\\x78\\x62\\xc9\\x34\\xf6\\xa5\\x85\\x49\\x14\\x86\\x00\\x82\\xbf\\x6f\\xd5\\\r\n\\x12\\x25\\x04\\x92\\x00\\x16\\x1e\\x75\\xfc\\x77\\xd7\\xd0\\x70\\xc0\\xb8\\xfa\\\r\n\\x8c\\x5f\\x68\\xb7\\xc8\\x48\\x1e\\x19\\x89\\xae\\x92\\xe1\\x89\\x6d\\x97\\x88\\\r\n\\x1f\\xe6\\xf4\\xe2\\xf4\\x9d\\x90\\xe6\\x10\\x2b\\xd2\\xfd\\x5a\\x73\\x3e\\x49\\\r\n\\x18\\x31\\x17\\x43\\x89\\x45\\x26\\x40\\xa5\\x02\\xac\\xbe\\x85\\x94\\xab\\xac\\\r\n\\xf6\\xac\\xe3\\xc2\\x82\\xd4\\xb9\\x88\\x68\\xd7\\xe5\\xf2\\x1e\\xe8\\x85\\xc0\\\r\n\\x88\\x36\\x7b\\x94\\x40\\xb2\\x01\\xd8\\x84\\x1f\\x0d\\x00\\xe5\\xcb\\x12\\x78\\\r\n\\xc2\\xaa\\x7f\\xb0\\x91\\x70\\xa0\\xe6\\x89\\xb3\\xdc\\x1e\\x93\\x65\\x81\\x05\\\r\n\\xa4\\x40\\x42\\xc8\\xa4\\x26\\xb6\\xa5\\x04\\x0e\\xb0\\xbc\\xf1\\x52\\x3e\\x47\\\r\n\\x8f\\x6e\\x8a\\x38\\x8e\\x35\\x04\\xbc\\xaf\\x45\\x92\\x3e\\x0c\\xa4\\x70\\x8c\\\r\n\\xd5\\xc2\\xa6\\xfc\\xc7\\x25\\x83\\x85\\x42\\x11\\xb2\\x87\\x32\\x0e\\x71\\x51\\\r\n\\x0b\\x55\\x91\\x67\\x56\\x96\\x2f\\x8d\\xc1\\x4c\\x29\\x68\\x24\\x39\\xb5\\xca\\\r\n\\x45\\xf4\\xe4\\x27\\xb8\\x62\\x74\\xd5\\x18\\x39\\xd2\\xa3\\xb4\\x59\\xe0\\x24\\\r\n\\xe1\\x93\\x21\\x7d\\x65\\x05\\x71\\x07\\xba\\x1b\\xc7\\xcc\\x19\\x2c\\x5f\\xca\\\r\n\\x90\\x3f\\xf9\\x26\\xc5\\xfb\\x83\\xbe\\x32\\x1f\\x1e\\x39\\xf0\\x4a\\xb1\\x24\\\r\n\\xe7\\x81\\xe0\\x5a\\xad\\x9e\\xa4\\xc0\\x9d\\x12\\xa4\\x0a\\x3c\\x5e\\xb6\\xbd\\\r\n\\xfe\\x85\\xa1\\x19\\x09\\x48\\x6a\\x8b\\xac\\xce\\x39\\x40\\xa9\\xc7\\x06\\xb1\\\r\n\\x35\\x1d\\x1f\\x86\\x3d\\x88\\xd9\\x46\\xc3\\x40\\xb0\\x22\\x29\\x4e\\xf6\\x7d\\\r\n\\xb1\\x87\\x8b\\xd4\\x05\\xd6\\x93\\xe5\\x29\\xed\\xb9\\xf2\\x7a\\xb1\\xce\\xa3\\\r\n\\xc1\\x82\\x88\\xf7\\x21\\x00\\x84\\x20\\x00\\x10\\xf3\\x95\\xbd\\x08\\x15\\x28\\\r\n\\xa2\\x01\\x18\\x2d\\xb3\\xa0\\xf8\\x80\\x4a\\xcf\\x21\\x00\\x11\\x56\\x42\\xb7\\\r\n\\xb5\\xa5\\x05\\x23\\x0c\\x54\\x85\\x02\\x2f\\x28\\xb8\\x10\\x44\\xac\\x81\\x08\\\r\n\\x6c\\xed\\xc7\\x48\\x89\\x83\\xd3\\x4d\\x08\\x51\\xae\\x88\\x4a\\x83\\xf9\\xe9\\\r\n\\xf4\\x84\\x40\\x8d\\x39\\x79\\xdd\\xaf\\x0c\\x11\\x01\\x34\\x8c\\x14\\x7e\\x09\\\r\n\\x78\\x2c\\x2d\\x01\\x4f\\x90\\xc3\\x4f\\x06\\xe4\\x81\\x2c\\x98\\x15\\x8e\\x1d\\\r\n\\x05\\xd7\\xe5\\x2d\\x8a\\x39\\x60\\x46\\x89\\x2a\\xc9\\x10\\x16\\xca\\x16\\x68\\\r\n\\xf7\\x02\\x3f\\x6a\\x1c\\x6c\\x7a\\x3f\\x28\\x40\\x1e\\x65\\x7d\\xad\\x29\\x23\\\r\n\\xc8\\x0b\\xd5\\x44\\x85\\x28\\xb2\\x51\\x90\\x62\\x49\\xfd\\xaa\\x47\\xae\\xca\\\r\n\\x8a\\x45\\xa1\\xe0\\x94\\xd4\\x62\\xe2\\x9d\\x2a\\xcb\\x05\\xa0\\x7a\\x34\\xc0\\\r\n\\x2b\\xe1\\xf8\\xe3\\x77\\xd2\\x13\\x45\\x46\\x4a\\x27\\x67\\xf3\\xa5\\x19\\x32\\\r\n\\x14\\x25\\x45\\x84\\xe6\\xeb\\x3c\\x44\\x29\\x3c\\xc5\\xe4\\x03\\x0d\\x10\\x69\\\r\n\\x16\\x59\\x3f\\xdc\\x46\\xc0\\xee\\xd6\\x8b\\x8b\\x8a\\xc9\\x52\\x98\\xb7\\xb3\\\r\n\\xbd\\x30\\xe7\\x85\\xcd\\x16\\x0b\\x34\\x1c\\xaf\\xee\\x5c\\xbd\\xcc\\x23\\x17\\\r\n\\x40\\x24\\x38\\x6c\\xa3\\x49\\x30\\xda\\x41\\x44\\x69\\x3f\\xe8\\x8c\\x85\\x42\\\r\n\\x84\\xc2\\x20\\x30\\x10\\xeb\\xdb\\x6e\\xbe\\x85\\x41\\x1f\\xa1\\x86\\x27\\x5e\\\r\n\\xca\\xc8\\x80\\x40\\x44\\x01\\x75\\xfd\\x49\\xbe\\x37\\xa4\\xd3\\x2b\\x81\\xd2\\\r\n\\xdf\\x5f\\x51\\xe1\\x41\\x1a\\x11\\x88\\x95\\x76\\xfc\\xf1\\x6b\\x24\\x32\\x5f\\\r\n\\x4c\\xc7\\xa3\\x27\\xa5\\x09\\x61\\x1a\\x95\\x6c\\x5d\\x11\\xca\\x03\\x1e\\x82\\\r\n\\x1a\\x01\\x51\\x94\\x54\\x2f\\x5a\\xf8\\x51\\x5a\\x8b\\xa2\\x06\\x22\\xcc\\x52\\\r\n\\x26\\x30\\x11\\x51\\xfe\\xd9\\xb2\\x8d\\xf7\\x1e\\x69\\xa3\\x32\\x0f\\x3c\\x8a\\\r\n\\x67\\x1e\\x88\\x40\\xe5\\x80\\x37\\xca\\x41\\x04\\x72\\xf2\\x34\\x7c\\xf7\\x26\\\r\n\\x82\\x5a\\x77\\xe1\\x74\\x0e\\x4c\\x20\\xf8\\x60\\x99\\xd3\\x4d\\x04\\xff\\x00\\\r\n\\xb4\\x39\\x6b\\xd4\\xda\\x09\\x94\\x08\\x45\\x0c\\x29\\x44\\xda\\x37\\xa3\\xe4\\\r\n\\x5b\\x66\\xb4\\x0e\\x52\\xbb\\xb6\\x60\\xac\\x12\\x97\\xe7\\xf3\\x64\\xc7\\x7c\\\r\n\\xef\\xd4\\x02\\xc5\\xf4\\x5c\\xca\\xc0\\xa0\\x44\\xd2\\x0e\\x16\\x63\\x22\\x00\\\r\n\\x6a\\x26\\xa6\\xa6\\xbd\\x8d\\xc7\\x8c\\x9d\\xa0\\xd5\\x9a\\x6e\\x9a\\xde\\x70\\\r\n\\x07\\xfc\\x54\\xaf\\x11\\xea\\x4c\\x6e\\xcf\\x9f\\xec\\x2e\\x64\\x4a\\x87\\x4d\\\r\n\\x24\\x09\\x5d\\xc2\\xf8\\xe2\\x78\\xe8\\xe1\\x34\\x70\\x2d\\x32\\x76\\xc9\\xe0\\\r\n\\x21\\xec\\x17\\x4b\\x5e\\x33\\xb0\\xf8\\xcd\\xfd\\x47\\xb1\\x25\\x4e\\x8d\\xb4\\\r\n\\x86\\x80\\x47\\x93\\x04\\xbf\\x55\\x8d\\x19\\x44\\x34\\x25\\x8d\\xd7\\xaa\\x88\\\r\n\\x10\\x0a\\x8d\\xc5\\xba\\x2c\\xfc\\x72\\x50\\x4d\\x16\\x40\\x59\\x57\\x14\\xdc\\\r\n\\xd7\\xa5\\x77\\x1b\\x05\\xc0\\x1b\\x49\\x76\\xe7\\x83\\x7e\\x95\\x35\\xda\\x6e\\\r\n\\xc4\\x22\\x09\\x2f\\x53\\x31\\x86\\x46\\x03\\xe7\\x03\\x7a\\x0e\\x83\\xf8\\xfa\\\r\n\\xeb\\x23\\xfc\\x8e\\xc1\\x42\\x0e\\xb0\\xa8\\x95\\x68\\x3a\\x38\\x8e\\xf8\\x12\\\r\n\\x8b\\x00\\xb7\\xc4\\xc6\\xd8\\x26\\xaa\\xbd\\x3b\\xe8\\xab\\x37\\x44\\x84\\x0a\\\r\n\\x2c\\xa1\\x57\\x8f\\x76\\x83\\x21\\x2c\\x14\\x15\\x8a\\xa8\\x15\\x8e\\x3d\\x0e\\\r\n\\xee\\x12\\x6a\\xeb\\x40\\x53\\x09\\x34\\x0c\\x59\\xa3\\x8d\\x28\\x25\\xda\\x14\\\r\n\\xa7\\x46\\x68\\x8a\\x0a\\x60\\x69\\xb4\\xe3\\xcd\\x39\\xeb\\x77\\x85\\x9b\\x60\\\r\n\\x87\\x6e\\x85\\x9d\\x65\\x3d\\x46\\x77\\x59\\x5a\\x39\\x59\\x77\\x6e\\xf2\\x14\\\r\n\\x10\\xbe\\xcd\\xe3\\xfa\\xed\\x67\\xce\\x05\\x8e\\x22\\xc0\\xb6\\xf3\\x88\\x6d\\\r\n\\x73\\x03\\xc1\\x83\\x81\\x80\\x1a\\xac\\x9e\\x31\\x00\\x88\\xae\\x32\\x78\\xfe\\\r\n\\x82\\xae\\x67\\x05\\xdb\\xb4\\x0c\\xa3\\xa6\\xaf\\xc7\\x54\\x5a\\xd5\\x28\\x0d\\\r\n\\x01\\x0a\\xa8\\xc5\\x2f\\x03\\x01\\xa1\\x51\\x92\\xe5\\x3c\\xf7\\xb5\\x84\\x06\\\r\n\\x97\\xd8\\x8c\\x34\\x7c\\xd0\\x10\\x56\\x51\\x04\\x73\\x2d\\x38\\xe4\\x39\\xda\\\r\n\\xb9\\x27\\xe4\\x83\\x05\\x5e\\xcd\\xa0\\x45\\x4e\\x94\\xe7\\x17\\xd6\\x0d\\x9c\\\r\n\\xae\\xba\\x41\\x2f\\xb0\\x4e\\x52\\xc6\\x7b\\x06\\x93\\x2d\\xf3\\x72\\x8c\\x84\\\r\n\\xbc\\xc4\\xe0\\x0b\\xe5\\x51\\x15\\x4a\\xd8\\x06\\x1a\\xf5\\xc2\\xc1\\xdd\\xd0\\\r\n\\xf4\\xa0\\x06\\xc1\\xcd\\x6c\\x76\\x43\\x28\\x66\\x68\\x9a\\x9d\\x21\\x5e\\xbc\\\r\n\\xce\\x3e\\x84\\x45\\x47\\x09\\x94\\x00\\x07\\xd2\\x8f\\x8a\\x9d\\x3b\\xf7\\x66\\\r\n\\x09\\x2c\\x29\\x5b\\x84\\xf7\\xf2\\x18\\x07\\x58\\x2f\\xb4\\xf0\\x52\\xa6\\x36\\\r\n\\x34\\xd4\\xa2\\x81\\x25\\x4f\\x6d\\x3c\\xa1\\xca\\x30\\xec\\xec\\xe8\\xb9\\x74\\\r\n\\x26\\x8a\\x60\\x5a\\xa2\\xd3\\x99\\x6f\\x1b\\xe0\\x40\\x47\\x0c\\x03\\xd5\\xc9\\\r\n\\x0e\\xdd\\x1e\\x04\\x9a\\xbd\\x68\\x58\\x8d\\x35\\x60\\x35\\x11\\x1c\\xa5\\xd4\\\r\n\\xb1\\x4f\\xec\\xf6\\xf4\\x52\\x56\\x8c\\x87\\x1a\\x2e\\x8a\\x40\\x30\\xf7\\xf1\\\r\n\\x58\\xb0\\x59\\x25\\x84\\x82\\x94\\x09\\xa2\\x27\\xca\\xfb\\x96\\xb3\\x0a\\x84\\\r\n\\xe2\\x96\\xac\\x08\\x10\\x8a\\x27\\x84\\x59\\x2b\\x45\\x24\\x69\\xef\\xcd\\x63\\\r\n\\x00\\x28\\x06\\x67\\x6e\\x06\\xcd\\x29\\x59\\xd7\\x34\\xb1\\x69\\xb3\\x92\\xfc\\\r\n\\x5f\\x98\\xe0\\x64\\x61\\xaa\\xbd\\xb1\\xe2\\x95\\xbf\\x48\\x57\\x10\\x12\\xf1\\\r\n\\xf3\\x51\\xb1\\x26\\x92\\xf1\\x56\\xc7\\x5c\\x9e\\xab\\xff\\x00\\x4d\\x52\\x00\\\r\n\\x13\\x48\\x76\\x16\\xaf\\x86\\x48\\x8d\\x1c\\xe9\\x37\\x1d\\xd2\\x52\\xff\\x00\\\r\n\\x4d\\x01\\xea\\xbb\\x1e\\x19\\x53\\x63\\x5f\\xf6\\xfa\\x28\\x88\\x9d\\xbe\\xf2\\\r\n\\x74\\x3b\\x5d\\x8a\\x69\\x34\\xea\\x9f\\x0c\\x63\\x32\\x09\\x63\\x64\\x2e\\xe1\\\r\n\\x3c\\x51\\x3a\\xa5\\x80\\xb4\\x02\\xcc\\x26\\x25\\x3b\\x26\\x75\\x35\\x0c\\x49\\\r\n\\x87\\x63\\x90\\xbd\\x45\\x72\\xad\\x65\\xbc\\x9d\\xeb\\xe1\\x82\\x96\\xb7\\x06\\\r\n\\x95\\x49\\xf4\\x34\\x6e\\x70\\xb8\\x18\\xd3\\x49\\xf0\\x09\\x05\\xd6\\x2b\\xeb\\\r\n\\x3b\\x0b\\xb5\\x91\\x9c\\xf7\\xce\\x08\\x18\\x3f\\x70\\x8e\\xc8\\x1f\\xb8\\xbf\\\r\n\\x79\\x2e\\xd2\\xad\\xf0\\xe0\\x2c\\xd0\\x02\\x1f\\x12\\x72\\x27\\xa4\\x74\\xe5\\\r\n\\x0d\\x0f\\x54\\xa8\\x70\\x52\\xc0\\xa3\\x79\\xa0\\x99\\x52\\x4b\\x59\\x73\\xf1\\\r\n\\x40\\x35\\xd4\\x24\\xca\\x21\\xaa\\x41\\x26\\xa1\\x44\\x42\\x88\\x02\\x98\\x81\\\r\n\\xa1\\x70\\xbc\\x8a\\xae\\x68\\x41\\xbc\\x4a\\x64\\xa6\\x94\\x5d\\x50\\xce\\x78\\\r\n\\x67\\x28\\x05\\x2a\\x78\\xab\\xdf\\xb5\\x26\\x93\\x19\\x54\\x53\\x91\\x12\\x35\\\r\n\\x8a\\x81\\x93\\x3a\\x81\\xbb\\xa0\\x11\\x44\\x84\\x20\\x46\\x9b\\xb5\\xca\\xc7\\\r\n\\x87\\xac\\x3f\\x14\\xea\\x08\\xa6\\xa1\\x21\\x0b\\xe0\\xe9\\x49\\x39\\xdb\\x0a\\\r\n\\x43\\x7f\\x4a\\xad\\x48\\x17\\x18\\xf1\\x16\\x34\\x48\\x67\\x6a\\x12\\x06\\x1c\\\r\n\\xf6\\x8a\\xd0\\x70\\x51\\x82\\x84\\x17\\x20\\xec\\xd4\\x0a\\x61\\x36\\x90\\x80\\\r\n\\xe2\\xe4\\x05\\x32\\x96\\x25\\x50\\xe2\\xb5\\x00\\x22\\xdb\\x0e\\x4c\\xaf\\x30\\\r\n\\x14\\x50\\x1a\\x91\\x61\\x03\\x3d\\xa8\\x15\\xca\\x68\\x46\\x1f\\x0b\\x00\\xae\\\r\n\\xc8\\xda\\x96\\x2d\\x82\\x88\\xef\\x74\\xd2\\x79\\x35\\x9f\\xde\\x9e\\x38\\x56\\\r\n\\xa9\\x99\\x78\\x52\\xd0\\x35\\x40\\x7a\\x00\\x7f\\xde\\x56\\xa7\\x28\\xed\\x10\\\r\n\\x5f\\x93\\x70\\x81\\x6c\\x6b\\xa9\\x3e\\xda\\x5c\\xf8\\x7a\\x1c\\xd8\\x26\\x92\\\r\n\\x97\\x39\\xcc\\xc2\\x08\\x52\\xd5\\x24\\x84\\x82\\x84\\x14\\x54\\x55\\x0c\\x9d\\\r\n\\xec\\xf8\\x0f\\x40\\x8a\\x6a\\x14\\x61\\x56\\xcf\\x04\\xbb\\x1f\\x66\\xf6\\x64\\\r\n\\x67\\x45\\x61\\x9b\\x58\\x0f\\x01\\xdc\\x9e\\x0c\\xc2\\xc3\\x8f\\x83\\x60\\x34\\\r\n\\x60\\xbc\\x18\\xf3\\x79\\xd2\\xde\\xe9\\xa5\\x90\\x19\\xbd\\x08\\x7d\\xc4\\x40\\\r\n\\xda\\xde\\x97\\x49\\x29\\x0a\\xaa\\x2c\\xe3\\xf5\\x84\\x8d\\xa5\\x91\\x55\\x18\\\r\n\\x0e\\x4f\\x07\\xb1\\x80\\xb1\\x00\\x7b\\x5e\\x8d\\x8b\\x3f\\xa0\\x89\\x47\\x3d\\\r\n\\x1a\\xf2\\xcf\\x4e\\x9c\\x18\\xa0\\xd7\\x5a\\x20\\x3a\\x39\\xb8\\x5d\\x55\\x42\\\r\n\\x30\\xb0\\x27\\x00\\x80\\x85\\x00\\x34\\x29\\x16\\xbd\\x2a\\x08\\x61\\x00\\x46\\\r\n\\x8c\\x10\\x39\\x4e\\x14\\x10\\x62\\x62\\x05\\x88\\xc8\\x82\\xd0\\x8f\\x16\\xc6\\\r\n\\x6a\\x20\\x45\\xb9\\x08\\x64\\x06\\x5e\\x87\\x11\\x49\\xa0\\x52\\x71\\xa4\\x0b\\\r\n\\x42\\xf4\\xf7\\x20\\xee\\x8a\\x6b\\x69\\x72\\x83\\x83\\x6a\\x9c\\x09\\x94\\x77\\\r\n\\x65\\x42\\x51\\x40\\x7b\\xd3\\x4e\\x18\\x49\\x8a\\x24\\x04\\x3a\\xd1\\xa5\\x88\\\r\n\\x79\\x46\\x12\\xe6\\x90\\x92\\x15\\xf4\\xb2\\xe8\\xef\\x6c\\x40\\x1c\\x08\\x81\\\r\n\\x4e\\x5d\\xe4\\xa5\\xda\\x2e\\xbc\\xe1\\x1c\\xe2\\x21\\xa6\\xc0\\x70\\xf2\\x49\\\r\n\\x7d\\x5e\\x6a\\x2e\\x6f\\x9c\\x51\\xb4\\xde\\x07\\x87\\x34\\xf8\\x16\\x28\\x88\\\r\n\\x59\\x89\\x99\\xd7\\x00\\x80\\x0a\\xfa\\x07\\x64\\x24\\xd7\\x53\\x81\\x18\\xe8\\\r\n\\xcd\\x2e\\xd3\\xbf\\xc3\\x88\\x4c\\x29\\xac\\xdd\\xa8\\xdc\\x1d\\xd0\\x1b\\x4c\\\r\n\\x40\\x2a\\x83\\xb9\\x34\\x1d\\x68\\x83\\xa5\\x20\\xa6\\x48\\x9b\\x78\\x23\\xbe\\\r\n\\x0f\\x65\\xb6\\x02\\x34\\xe4\\xc4\\x02\\xf0\\x04\\x39\\x7f\\xbb\\x71\\xaa\\xa8\\\r\n\\x90\\x43\\x50\\x00\\xa9\\x25\\x22\\x44\\x4c\\x78\\xb8\\x21\\x61\\x43\\xec\\xae\\\r\n\\xd5\\x2d\\x22\\xf3\\xd1\\x0e\\x8a\\x23\\x4b\\xf3\\x86\\x73\\xa8\\x00\\x43\\x39\\\r\n\\x28\\x04\\x88\\x83\\xb2\\x99\\xa1\\xab\\x5b\\x90\\x46\\x35\\x18\\xa3\\x7d\\xf4\\\r\n\\xd6\\x01\\x90\\x1d\\xa9\\x72\\x90\\x62\\x83\\x35\\x46\\xc9\\x42\\xa0\\x56\\x15\\\r\n\\x27\\xba\\x0a\\x94\\xc1\\xb9\\x55\\xa0\\x4c\\x85\\x58\\x13\\xc0\\xb9\\x28\\x4e\\\r\n\\x34\\xd6\\xf0\\x2a\\xd0\\x51\\x3b\\xf2\\xe2\\x73\\xcb\\xae\\xa3\\xb8\\xc0\\x51\\\r\n\\xd3\\x1c\\x6e\\x11\\xd9\\xb3\\xd8\\x08\\x18\\x1a\\xb1\\x4f\\xab\\xd0\\x48\\x8e\\\r\n\\x6b\\x60\\xc5\\x2c\\xec\\xf6\\x68\\xb0\\x1c\\x31\\x6b\\x7e\\x0d\\x22\\x5e\\x67\\\r\n\\x1a\\xc4\\x22\\x16\\xc8\\x1c\\xba\\xa8\\xb9\\x38\\xc0\\x98\\xa4\\x7c\\x21\\xa7\\\r\n\\x65\\x13\\xe7\\x36\\xe6\\xae\\xe6\\x2c\\xf6\\xf1\\x74\\x13\\x0f\\x54\\xc3\\x5f\\\r\n\\x66\\xf0\\xc8\\x06\\xfb\\xa5\\x48\\xd4\\x18\\xd3\\xd5\\x38\\x70\\xd2\\x03\\xb9\\\r\n\\x4f\\xfa\\x40\\xc3\\xb5\\xc0\\x70\\xda\\x93\\xbd\\xc8\\xdc\\x01\\x24\\x7a\\x98\\\r\n\\x04\\xb2\\xc0\\x86\\x52\\xa5\\x00\\x0b\\x2b\\xe4\\x2b\\x85\\x47\\xb3\\x7d\\x5c\\\r\n\\x31\\x00\\x01\\xf6\\x8e\\xd2\\x36\\x1a\\x19\\x29\\x47\\x4f\\x0f\\x80\\xa1\\x21\\\r\n\\xa2\\xf8\\x0e\\x85\\xdf\\x96\\x99\\x78\\x4c\\x04\\xdf\\xb8\\xfc\\x3f\\xe0\\x8c\\\r\n\\x34\\x21\\xc7\\xf0\\x54\\x7f\\x2f\\x12\\xf7\\x70\\x74\\xca\\x6e\\x94\\xcc\\xed\\\r\n\\x40\\xa3\\xba\\x0e\\x45\\xa7\\xc7\\xad\\xc3\\xae\\xd3\\xa3\\x14\\xc5\\x32\\xa8\\\r\n\\x89\\x14\\xec\\x48\\x40\\x3e\\x8c\\x47\\x4d\\xbc\\x82\\x14\\xd4\\xc8\\x38\\xad\\\r\n\\x61\\xd4\\x09\\x3e\\x44\\x42\\x86\\xfe\\x35\\x46\\x94\\xb7\\x7d\\xf5\\xc4\\x70\\\r\n\\xe3\\x8a\\xdd\\xab\\x53\\x55\\x3e\\xf8\\x08\\x5a\\x2d\\x83\\x2e\\xd7\\x93\\xfb\\\r\n\\xad\\x18\\xe3\\x37\\x1f\\x38\\xa1\\x75\\x15\\x1e\\xf2\\x2a\\x64\\xde\\x12\\xea\\\r\n\\xb0\\x41\\x54\\x35\\x35\\x35\\xa1\\x26\\x98\\x7c\\x2a\\x81\\xa5\\x4a\\x2d\\xff\\\r\n\\x00\\xa4\\x49\\xf3\\x95\\x0d\\xc5\\x08\\xad\\x9d\\x13\\xd1\\x0c\\x51\\x7c\\x1f\\\r\n\\x45\\x41\\x01\\x4e\\x00\\x4d\\x7c\\x19\\x71\\x09\\x27\\x49\\x16\\x86\\x24\\x85\\\r\n\\x2e\\x1d\\x8a\\xc1\\x48\\xc8\\xdd\\x3c\\xdf\\x79\\xbd\\xa3\\x35\\x1b\\x57\\x65\\\r\n\\x48\\xe2\\xd3\\xd3\\x11\\xaa\\x64\\xac\\xa6\\x8d\\x38\\x55\\x85\\x36\\x0c\\x03\\\r\n\\x49\\x68\\xb2\\x22\\xc7\\x1a\\x81\\x82\\x7a\\xbd\\x84\\x7e\\xa1\\x17\\xc2\\x53\\\r\n\\x10\\xb3\\x19\\x15\\x24\\x73\\xd5\\xc5\\x28\\x66\\xa5\\x10\\x5d\\x8e\\x67\\xa2\\\r\n\\x56\\x91\\x78\\xbe\\x40\\x49\\x9b\\x4b\\x07\\x62\\x2d\\xab\\x1c\\x61\\x42\\x01\\\r\n\\x8e\\xa1\\xd4\\xb3\\xe9\\xb3\\x95\\x13\\xa3\\x99\\xe1\\x22\\xe7\\xbc\\xab\\x11\\\r\n\\x8f\\xcf\\xa0\\xca\\xe1\\x8c\\x46\\x66\\x0e\\x88\\x6c\\xa8\\xc7\\x19\\x71\\x6d\\\r\n\\x43\\x9f\\x97\\x09\\x47\\x4e\\x15\\x3c\\xa9\\x25\\xf6\\x88\\x69\\xd0\\x79\\x4d\\\r\n\\x10\\x01\\x48\\x30\\x9f\\x54\\x70\\xf6\\xfb\\x2b\\x23\\x6a\\xbb\\x0c\\x92\\xa1\\\r\n\\x0d\\x17\\xa5\\x54\\x79\\xb5\\xc2\\xd4\\xf5\\x0b\\x51\\xfd\\xe5\\x1a\\xc1\\x0c\\\r\n\\x41\\xd0\\x12\\xb6\\xb0\\x29\\xcc\\x1c\\x6b\\x1f\\x04\\xb1\\x98\\xad\\x49\\xdb\\\r\n\\x0f\\x29\\x21\\x9c\\x02\\x02\\xcc\\x9d\\xc0\\xa1\\x48\\xfc\\xe6\\x35\\x58\\x1a\\\r\n\\x77\\x28\\xd1\\xf0\\xfe\\x2f\\x7a\\x81\\x57\\x5e\\x0e\\x94\\x01\\xd6\\xa5\\x81\\\r\n\\x04\\xde\\x05\\x46\\x1a\\x01\\x41\\xa5\\x02\\x9e\\x45\\xa4\\x9d\\x87\\x17\\x16\\\r\n\\x87\\xb2\\x18\\x0d\\x2f\\xac\\x3d\\x8a\\x77\\x20\\xc9\\x7c\\x8a\\x48\\x22\\x0b\\\r\n\\xc5\\x75\\x71\\x04\\x1c\\x80\\x6d\\x50\\x08\\x6a\\xe1\\x67\\x1c\\x06\\x48\\x80\\\r\n\\x05\\x1d\\x0d\\x47\\xa5\\xee\\x52\\x87\\x4f\\x33\\x06\\xdd\\x6b\\x9b\\x56\\xe6\\\r\n\\x55\\x00\\x8c\\x05\\x84\\xb1\\x28\\x7c\\x78\\xe8\\x77\\x83\\x96\\xad\\x30\\x04\\\r\n\\x0f\\x68\\x2b\\x45\\x2d\\x76\\xad\\x18\\x0e\\xad\\xc9\\x2c\\xd2\\x51\\x69\\x40\\\r\n\\xaf\\x18\\x3d\\xc7\\xb5\\x9a\\xba\\xa4\\x51\\x6b\\x73\\x40\\x94\\x1c\\x1c\\x29\\\r\n\\x13\\x31\\x09\\x71\\xf1\\x74\\x97\\x5f\\x44\\x17\\x0a\\x8d\\x82\\x53\\x68\\x54\\\r\n\\x70\\xa4\\xe7\\xb5\\xac\\x64\\x2d\\xd2\\xe1\\xd6\\x69\\x92\\xa1\\x15\\x83\\xd1\\\r\n\\x8f\\x17\\xe1\\x0a\\xb0\\x60\\x48\\x42\\x41\\xb7\\xd9\\x1a\\xed\\x0e\\xd4\\x99\\\r\n\\x62\\xfa\\x56\\x21\\xcd\\x43\\xa1\\x38\\x7b\\x44\\x07\\x53\\xfe\\x5b\\x5b\\xf5\\\r\n\\xdd\\x0c\\x98\\x64\\x20\\x64\\xff\\x00\\x24\\xa5\\x75\\x78\\xb1\\x7f\\xc6\\x2d\\\r\n\\xcd\\xa4\\x90\\xda\\x20\\xcf\\x83\\x5b\\x5c\\x42\\xfd\\xc9\\x30\\x5e\\xbf\\x66\\\r\n\\x88\\x37\\xf9\\x6f\\x8c\\x62\\x0c\\x3d\\x59\\xed\\x48\\xc1\\x05\\xb6\\x11\\x1b\\\r\n\\x03\\x4d\\xc4\\x18\\x0e\\x9a\\x1e\\x4e\\x4b\\xba\\x2c\\x92\\x17\\x83\\x46\\x16\\\r\n\\x77\\xd8\\xed\\xcd\\xbf\\x08\\x39\\xbd\\xff\\x00\\x55\\x7b\\x97\\x5c\\x24\\x64\\\r\n\\x94\\x1c\\xa6\\xcc\\xc1\\x83\\x4f\\x54\\xdc\\x71\\xbf\\xd3\\x14\\x10\\x5d\\x67\\\r\n\\x00\\x95\\x64\\x4c\\x63\\xec\\x83\\x47\\x78\\x89\\x4e\\x04\\xa4\\x71\\x63\\xad\\\r\n\\x2b\\x8e\\x30\\xd2\\x07\\x93\\x3e\\x00\\x84\\x44\\xd4\\xa4\\xa4\\xe1\\xe0\\xd0\\\r\n\\xe2\\x23\\x0e\\x37\\xb5\\x7c\\x71\\x51\\x40\\x60\\x78\\x34\\xd0\\xe4\\xc9\\xd6\\\r\n\\xd7\\xd0\\x60\\xb8\\x25\\xc6\\x88\\x03\\xa5\\x7a\\x15\\x63\\x5e\\x1b\\xdc\\xe7\\\r\n\\x68\\x63\\xe5\\x86\\x02\\x90\\xc0\\xea\\x0f\\xae\\x81\\x50\\xd1\\x2e\\x1a\\x49\\\r\n\\x0c\\x96\\x78\\xca\\xb0\\xb9\\x21\\xd0\\x76\\x52\\x12\\x9a\\xe3\\x14\\xe6\\x1b\\\r\n\\x06\\xd1\\x8f\\x31\\x1c\\x52\\xb2\\x02\\xba\\x05\\x11\\x45\\x61\\x65\\xc1\\x38\\\r\n\\x30\\xea\\xc0\\x11\\x17\\x52\\x94\\x8e\\x0a\\x94\\x5f\\x9d\\xa0\\x2a\\x5c\\x8c\\\r\n\\x27\\x05\\xda\\x09\\xcf\\x79\\xcb\\x50\\xfc\\xdb\\x19\\x28\\x41\\x72\\xa5\\x23\\\r\n\\x48\\x8a\\xa1\\x17\\x11\\x12\\xa4\\x5c\\x28\\x26\\x13\\x70\\xbd\\x09\\x0d\\x75\\\r\n\\x16\\x94\\xf6\\x25\\x55\\xda\\xe5\\x9f\\x17\\x4b\\xb1\\xd3\\x23\\x79\\x23\\x55\\\r\n\\x10\\x00\\x83\\x18\\x21\\x5e\\xed\\xe4\\x07\\x4d\\x96\\xd7\\xd1\\x0e\\x67\\xae\\\r\n\\xf3\\x07\\x53\\x62\\xb5\\x45\\x7f\\x70\\xb5\\x09\\xc4\\x98\\x6a\\xbb\\x03\\x33\\\r\n\\x49\\xa0\\x9b\\xf0\\xf6\\x4c\\xb1\\x4c\\x02\\x34\\x23\\xfa\\x10\\x1a\\x53\\xf4\\\r\n\\x0a\\xd0\\x54\\x42\\xa4\\xba\\xe2\\xe7\\x82\\x15\\xaf\\x72\\x1b\\x86\\xc8\\x50\\\r\n\\x93\\x58\\x04\\x22\\xea\\xc0\\x00\\x10\\x10\\xb0\\x1c\\x12\\x90\\x7b\\xee\\xef\\\r\n\\x52\\x84\\x52\\x3d\\x83\\x79\\x9c\\x0c\\x81\\x2c\\x34\\x04\\x49\\x14\\xd0\\xa0\\\r\n\\x80\\xe8\\xc2\\x12\\x97\\x1d\\x50\\x9a\\x31\\x69\\xc0\\xeb\\x9c\\x10\\x6c\\x0c\\\r\n\\x0e\\xfa\\x0c\\xcf\\x2e\\x8f\\x84\\x11\\xd6\\xf3\\x6b\\x5f\\x54\\x15\\x05\\x80\\\r\n\\x80\\x27\\x2b\\xb4\\x8a\\x05\\xd6\\x69\\xa2\\x00\\x82\\x58\\x1f\\x55\\xec\\xe5\\\r\n\\xd5\\x5e\\xdb\\x10\\xfa\\x6c\\xd3\\x04\\xa4\\x4c\\x06\\x21\\x24\\x34\\x0f\\x95\\\r\n\\x85\\x6d\\x83\\x69\\x28\\x46\\x60\\x29\\xd6\\x86\\x51\\xc3\\x2c\\x20\\x28\\x2d\\\r\n\\x51\\x08\\x1a\\xc0\\xf6\\x91\\xdc\\x0c\\x63\\x48\\x43\\x50\\x09\\xd8\\x9b\\x0b\\\r\n\\xca\\x94\\xdc\\xd0\\x59\\x18\\x14\\x2b\\xd3\\x97\\x38\\x89\\x86\\xbc\\x2a\\x40\\\r\n\\x3e\\x23\\x7c\\x55\\xc0\\xec\\x91\\x2d\\x7c\\x3d\\x23\\xb6\\x65\\xd1\\x72\\x4a\\\r\n\\x4f\\x46\\xc3\\xdd\\x63\\x47\\x58\\x86\\xe8\\xc5\\x4e\\xce\\xca\\x97\\x33\\xa9\\\r\n\\x13\\x02\\x00\\x08\\x7d\\xd3\\x46\\x05\\x8e\\xc5\\x87\\x59\\xbb\\xf6\\x18\\x10\\\r\n\\x45\\x82\\xf3\\x58\\x20\\xf7\\x7b\\x16\\xfe\\xce\\xb4\\x42\\x54\\x59\\xdc\\x59\\\r\n\\x96\\x2a\\x7b\\x4e\\xf5\\xe6\\x0a\\x4d\\xe7\\x1a\\x61\\xd1\\x4a\\x58\\x98\\x8f\\\r\n\\x6e\\x65\\x9a\\x1f\\xd2\\xfd\\xea\\xae\\xa3\\x2b\\x40\\xb2\\x58\\xf5\\x84\\xde\\\r\n\\x64\\x82\\x91\\x82\\x15\\x3f\\x0a\\x25\\x83\\xe8\\xe9\\xb2\\x6a\\x11\\x7a\\x64\\\r\n\\xa8\\xc3\\x02\\xe3\\xd1\\xd3\\x24\\x83\\x12\\x45\\xd5\\x09\\x67\\x2e\\xd0\\xd0\\\r\n\\xa5\\x6a\\xd6\\x52\\x75\\x5f\\x59\\xc0\\xa9\\x85\\xa3\\x22\\xa1\\x00\\xd0\\x8b\\\r\n\\xce\\x57\\x1f\\xa5\\x16\\x2c\\x00\\x90\\x45\\x21\\xa5\\xc4\\x6e\\xb2\\x9e\\x0f\\\r\n\\x01\\xe8\\x9c\\x7c\\x1a\\xd4\\x17\\xd4\\xa7\\x07\\x4b\\x07\\x6b\\x5d\\xc1\\xde\\\r\n\\xe3\\xab\\x51\\x1c\\x07\\x88\\x69\\x7f\\x30\\x26\\x43\\xc1\\x5a\\x36\\x78\\x2e\\\r\n\\x3e\\x31\\x1e\\x82\\xa5\\xb0\\xa2\\xc5\\x2d\\xe0\\x96\\x52\\x85\\x6a\\x9d\\xc2\\\r\n\\x61\\x80\\x5d\\xed\\x34\\x19\\x2b\\x94\\xa1\\x10\\xe7\\xba\\x0a\\xbd\\xc3\\x52\\\r\n\\xa1\\x18\\x3a\\x22\\x1e\\x18\\xe1\\x79\\x00\\xf0\\xad\\xff\\x00\\x1a\\xa6\\xd4\\\r\n\\xaa\\xf5\\x5e\\x74\\xc9\\xa6\\x92\\x60\\xcf\\x7e\\x8d\\x31\\x34\\x54\\xe4\\x2b\\\r\n\\xea\\x32\\xde\\x4f\\xa7\\xcc\\x77\\x21\\x6d\\x9a\\xa0\\x4d\\x4a\\xd1\\x49\\x58\\\r\n\\xef\\xce\\x4e\\x9f\\xee\\xb7\\xdd\\x8e\\xc3\\xdc\\xed\\xc6\\xc6\\x03\\x8a\\x06\\\r\n\\xfa\\x09\\xc8\\xde\\x82\\x43\\x7e\\x19\\x70\\x38\\x13\\xa7\\x70\\x6f\\x67\\x80\\\r\n\\x49\\x9e\\xd7\\x98\\x9c\\x1b\\x38\\xa5\\x17\\xd7\\x68\\xc7\\x5a\\x01\\x69\\x2d\\\r\n\\x63\\xc3\\xbd\\x38\\xb1\\x58\\xb2\\xbc\\xc2\\x5a\\x96\\xc8\\xff\\x00\\x90\\x61\\\r\n\\x43\\xc3\\xff\\x00\\xaf\\xc2\\x42\\x2b\\x36\\x24\\x21\\x0b\\x03\\xf4\\x8f\\x45\\\r\n\\x9f\\x5d\\xf3\\xb6\\xf2\\x6c\\xd8\\x16\\x20\\x33\\x48\\x9b\\x95\\x1a\\x12\\xed\\\r\n\\x06\\xa2\\x98\\x35\\x18\\xa8\\x05\\xdd\\x73\\x43\\xcc\\x02\\x50\\x00\\x47\\x42\\\r\n\\xc8\\xf1\\xd0\\x21\\x83\\x15\\x1d\\x94\\xf0\\x85\\xd4\\x35\\x55\\x97\\x0d\\x87\\\r\n\\xc2\\x00\\x24\\x85\\x49\\x2d\\xc5\\x52\\xd0\\x41\\xfb\\xbb\\xec\\x6e\\x4f\\x6d\\\r\n\\x5a\\x91\\xd8\\x90\\xed\\x27\\x68\\x8d\\xbb\\xf4\\x25\\xbc\\x04\\x7a\\x84\\xe6\\\r\n\\x16\\x5d\\x88\\xd5\\x36\\x58\\x52\\x99\\x10\\x5b\\xd4\\x8d\\x9b\\x45\\x3f\\x8d\\\r\n\\x52\\x20\\x28\\x70\\x74\\x29\\x5a\\xdb\\x41\\xa1\\x42\\x6c\\x2b\\x54\\xa0\\x8d\\\r\n\\xd6\\x85\\x34\\xc3\\x5e\\x4a\\x38\\x84\\x2e\\x04\\x22\\xd6\\x48\\xc2\\x3f\\x1d\\\r\n\\x2e\\x2b\\xa9\\x37\\x08\\x97\\xe5\\xc0\\xe2\\x60\\xe2\\x0c\\xeb\\x04\\x45\\x2a\\\r\n\\x0b\\x53\\x65\\x2c\\x68\\x0c\\x7a\\x4c\\xce\\x9c\\xc8\\xb6\\x05\\x55\\x12\\x3c\\\r\n\\x0a\\x38\\x0c\\x40\\xc5\\x3a\\x00\\x2a\\x0e\\x18\\xd7\\xc2\\x6c\\x82\\xc8\\x5d\\\r\n\\x34\\x45\\x60\\x3c\\xe7\\x93\\x7b\\xf4\\x5a\\xc8\\x01\\xc0\\x03\\x38\\x4a\\x9b\\\r\n\\x8a\\xa5\\x70\\x83\\xe0\\xab\\x71\\xfb\\xd8\\xa2\\x99\\xac\\xc0\\xaf\\x4c\\x92\\\r\n\\x3e\\xc3\\x05\\x81\\x12\\x9f\\xc1\\xd9\\x05\\x72\\x3a\\xd3\\x7a\\x44\\xdb\\x20\\\r\n\\x32\\x0a\\x85\\xe7\\x31\\x9d\\x77\\x43\\xa4\\x36\\x45\\xad\\x0b\\x0d\\x48\\x66\\\r\n\\x53\\xaa\\x21\\xa5\\x1b\\xfd\\x11\\x13\\x6f\\xc0\\xca\\x1f\\xf0\\x0f\\xc5\\x2d\\\r\n\\x84\\x27\\x7a\\x2a\\x0a\\x43\\x7b\\x39\\x93\\xa8\\x5d\\xcb\\x1b\\xbe\\x84\\x8c\\\r\n\\x1c\\x70\\xdc\\x0e\\x4e\\xc1\\x3a\\xe7\\x33\\xe8\\xc3\\xf4\\x8a\\x84\\xd0\\x7b\\\r\n\\x00\\x38\\xcc\\x0d\\xca\\xb1\\xfa\\xb0\\x5c\\xcf\\xd4\\x1d\\x84\\x29\\xe7\\xf7\\\r\n\\xa4\\x79\\x93\\x97\\xd4\\xa2\\xd4\\xf0\\x22\\x82\\x15\\xec\\x2a\\x3f\\xde\\x95\\\r\n\\x0b\\x45\\x0f\\x29\\x56\\x3a\\x53\\x80\\x11\\x0d\\x22\\x37\\xb6\\x1d\\xc6\\x1b\\\r\n\\x4a\\x8d\\x4d\\xd2\\x93\\x57\\x9c\\x35\\x50\\x26\\x3a\\x94\\xb5\\xcd\\x3b\\xf0\\\r\n\\xc6\\xdc\\x30\\xda\\x91\\x05\\x4b\\x5b\\x73\\x7a\\xaa\\x14\\xc7\\x4f\\x81\\x20\\\r\n\\x2c\\xf0\\x9b\\xa0\\xa9\\x18\\x33\\xf0\\xab\\x7b\\x00\\x0c\\x05\\x02\\x24\\xd9\\\r\n\\xa8\\x35\\x18\\x18\\x65\\x88\\x05\\xed\\x6d\\x10\\xc0\\xc4\\x22\\x8d\\x04\\x81\\\r\n\\x8d\\x64\\x7b\\x49\\x5c\\x18\\x55\\x9c\\x9c\\x00\\x49\\xdb\\x38\\xb3\\xf9\\x14\\\r\n\\xa5\\x0b\\x45\\x4d\\x2c\\xd2\\x3d\\xc4\\xf0\\x73\\xf7\\xa9\\x50\\x40\\xb0\\x4b\\\r\n\\x83\\x40\\xc2\\x8b\\x08\\x07\\x93\\x62\\x80\\x54\\xdc\\x76\\x16\\x0a\\x06\\x85\\\r\n\\x50\\x7a\\x21\\x9e\\x9f\\x80\\xa1\\x4b\\x9d\\x06\\x5b\\x08\\x29\\x29\\x52\\xbe\\\r\n\\xcf\\xda\\x60\\x36\\xac\\xd8\\xc8\\x7c\\xbd\\x5c\\xa6\\xc3\\x03\\x40\\xa3\\x81\\\r\n\\x33\\x0e\\x60\\x05\\x23\\x3d\\x8c\\x89\\xd8\\x07\\x09\\x41\\x75\\x63\\x03\\x5d\\\r\n\\xb8\\x2d\\xb3\\x40\\x05\\x97\\xb6\\x96\\x1b\\xae\\x68\\x5e\\x23\\xbb\\xbb\\x11\\\r\n\\x74\\x09\\x15\\x7a\\x01\\xce\\x05\\xa9\\x8d\\x1d\\x00\\x9e\\xe5\\x9a\\xd5\\x1c\\\r\n\\xc2\\x11\\x15\\x80\\x00\\xe7\\x83\\x35\\x0d\\xa9\\x5c\\x4d\\xe6\\xc0\\x9e\\x06\\\r\n\\xc0\\x02\\xda\\xd5\\x2d\\x6c\\x08\\x10\\x8e\\x10\\x88\\x52\\x95\\xd6\\x04\\x6a\\\r\n\\xb3\\x68\\xbd\\xb5\\x6a\\x78\\x22\\x0e\\x92\\x88\\x2d\\x80\\x8f\\x23\\x74\\x8c\\\r\n\\x93\\x15\\x9e\\xb5\\x08\\xa8\\x73\\x64\\x9b\\xf5\\x42\\xd3\\x19\\x37\\x91\\xb1\\\r\n\\x94\\x1d\\x52\\xe4\\x43\\x76\\x13\\x05\\x96\\xf9\\x60\\xca\\xc8\\xc6\\x1c\\x0c\\\r\n\\xc6\\xba\\x3c\\x35\\x0d\\x09\\x50\\x41\\x94\\x82\\x01\\x08\\xa4\\x5f\\x78\\xb8\\\r\n\\x1f\\x63\\x15\\xdc\\x14\\xbe\\x78\\x91\\x1e\\x6d\\x10\\x5d\\x14\\x40\\x80\\xb8\\\r\n\\x2a\\xa4\\x0e\\x4f\\xf8\\xdd\\x9c\\xb0\\x38\\x8b\\x10\\x47\\x01\\xa5\\x9b\\xe0\\\r\n\\x6c\\x54\\xdd\\x91\\x62\\xb1\\xe3\\x55\\xd8\\x1e\\xcc\\x15\\x49\\x2c\\x34\\x38\\\r\n\\x27\\x11\\xee\\x0a\\x21\\x7c\\x98\\x17\\x81\\xfa\\x44\\x56\\xab\\x54\\xf3\\x68\\\r\n\\x08\\xfc\\xa0\\xe0\\x0d\\x66\\x3a\\xec\\x2b\\x2d\\xb2\\x22\\xda\\xb2\\xbd\\xe1\\\r\n\\xce\\x6d\\x2b\\x10\\x26\\x18\\xe1\\x85\\x28\\x56\\xda\\x0d\\x11\\x44\\xa4\\x55\\\r\n\\x3c\\x1e\\x22\\x62\\x2f\\x4a\\x5e\\x1d\\x5a\\x1d\\x20\\xe6\\x5c\\x24\\x16\\x4a\\\r\n\\xa9\\x1d\\x4b\\x93\\xf9\\x05\\x9e\\x5a\\x71\\x6e\\xbc\\x3a\\x8d\\xdf\\x82\\xb3\\\r\n\\x63\\xe9\\x66\\x04\\xbc\\x89\\xe0\\x2e\\x0b\\x0c\\x71\\xf7\\x61\\x4b\\x2a\\xa0\\\r\n\\x2e\\x4b\\x96\\x22\\xf5\\x96\\x92\\xf2\\x80\\x98\\xa2\\xdc\\x3c\\x40\\x07\\xa3\\\r\n\\x48\\x8b\\xf3\\x31\\x78\\xdd\\xed\\xc7\\xc4\\x0f\\x08\\x98\\xde\\x68\\xd8\\x27\\\r\n\\x6d\\x6b\\x34\\xc3\\xa9\\x8c\\x29\\x3d\\xcd\\x0c\\xb5\\xf0\\x58\\x0b\\x09\\xb5\\\r\n\\xc0\\x23\\x07\\x5e\\x52\\x4b\\x7d\\x83\\x81\\x9d\\x47\\x18\\xd7\\x79\\x4b\\x0e\\\r\n\\x0d\\x22\\x52\\x38\\x1b\\xa4\\xb8\\x94\\x7e\\xd9\\x25\\x20\\x01\\xe5\\xa2\\x01\\\r\n\\x54\\xc4\\x08\\xba\\x2a\\xc0\\x0f\\x7f\\xe7\\x3c\\x14\\x80\\x18\\x55\\x56\\x29\\\r\n\\x84\\xd5\\x5d\\x9c\\xa9\\x11\\x09\\x08\\x80\\x53\\xea\\xa0\\x29\\xe0\\xca\\x80\\\r\n\\x00\\x7c\\x85\\x0b\\xee\\x11\\x5e\\x4b\\x70\\x85\\x22\\x25\\x86\\xe2\\x75\\x6d\\\r\n\\x4b\\x26\\xe9\\x10\\x2e\\x6d\\x90\\x05\\xa1\\x21\\xae\\x63\\xda\\x86\\xa9\\x14\\\r\n\\x4f\\xd1\\x83\\x40\\xd2\\x35\\x34\\x5b\\x80\\x80\\x11\\xe4\\x21\\xe4\\x06\\x1d\\\r\n\\x82\\x5d\\xaa\\xc0\\xf0\\x8b\\x76\\x9d\\x62\\x4a\\x17\\x05\\x76\\xa2\\x1c\\x1c\\\r\n\\xd8\\x7c\\x63\\x0c\\x72\\x1c\\x3d\\x48\\x20\\x00\\x1f\\x76\\xe7\\x67\\x72\\xb5\\\r\n\\x24\\x7a\\x03\\x12\\x4f\\x14\\x0b\\x5a\\xef\\xe6\\x49\\xf5\\xf4\\x58\\x88\\x52\\\r\n\\x17\\xf0\\x80\\xe4\\x75\\x10\\x54\\x1c\\x12\\x71\\x23\\x4a\\x21\\x55\\x90\\x20\\\r\n\\xb3\\x42\\xf9\\x2b\\x99\\xe4\\x90\\xfe\\x66\\xdd\\x3e\\xd8\\xf3\\x9c\\xee\\x34\\\r\n\\xe1\\xad\\xf7\\x4a\\x8f\\x95\\x41\\x03\\x7a\\x80\\x40\\x1c\\x69\\xab\\x20\\xa2\\\r\n\\x10\\x6e\\x68\\x9e\\xb4\\x1a\\xe7\\x80\\x34\\x01\\x7b\\x27\\x5e\\xf3\\xb0\\x37\\\r\n\\x85\\xc2\\x05\\x8c\\x63\\xdf\\x36\\x0d\\x2c\\x8e\\x4e\\x32\\x02\\x6d\\xba\\x2b\\\r\n\\x40\\x5b\\xd3\\x0b\\x92\\x94\\xf9\\x1c\\x0e\\x34\\x8e\\x86\\x10\\x0c\\x39\\x1a\\\r\n\\x6d\\xc3\\x38\\x2a\\x2f\\x04\\x20\\x76\\x86\\x93\\x23\\x02\\x06\\x18\\x88\\x2c\\\r\n\\x08\\x07\\x2a\\x3d\\x76\\xc6\\xa7\\x28\\x39\\xa4\\xc1\\x38\\x78\\xc8\\x57\\x08\\\r\n\\xbf\\x2d\\x52\\x84\\xb5\\x0b\\x87\\x3f\\x28\\xd7\\xb2\\x51\\x08\\x7a\\x65\\x67\\\r\n\\x22\\xaf\\xc9\\x30\\x68\\xac\\xbc\\x12\\x54\\xd4\\x80\\x95\\xc6\\x78\\xd0\\x30\\\r\n\\xa5\\xf9\\x1c\\x3a\\xd6\\x50\\x2c\\x4c\\x22\\x5a\\x83\\xd1\\x41\\x00\\x0d\\xb0\\\r\n\\x1c\\x52\\x8b\\xf4\\xd8\\x53\\xc6\\x60\\xbb\\x41\\x74\\x68\\x50\\x28\\x29\\x15\\\r\n\\xa6\\xc9\\x98\\xe2\\x01\\x60\\x12\\x88\\x03\\x10\\x6d\\x90\\xa3\\x75\\xfb\\x84\\\r\n\\x80\\xd2\\x10\\xe9\\x77\\x09\\x85\\x3f\\xf6\\x1b\\x84\\x41\\x53\\xe2\\xe2\\x88\\\r\n\\x78\\x86\\x31\\x0d\\x48\\x5a\\x05\\xd5\\x05\\xc2\\x44\\x0d\\xda\\x8a\\xb6\\xe1\\\r\n\\x22\\xc8\\xab\\xdc\\x34\\x18\\x09\\xd0\\x00\\x94\\xd4\\x14\\xc7\\xa2\\xc7\\x43\\\r\n\\xef\\x2e\\x0b\\x18\\x41\\x09\\xc3\\x51\\x09\\x04\\x2c\\xb2\\x6b\\x93\\x4d\\x13\\\r\n\\x88\\x40\\x28\\x84\\xac\\x82\\xc0\\x2c\\x51\\xec\\x1b\\x8a\\x70\\xfa\\x28\\x03\\\r\n\\x25\\xc4\\x7b\\x36\\x54\\xe3\\xaa\\x80\\xa8\\xc8\\x2b\\x16\\x9b\\xdf\\x5c\\x29\\\r\n\\x59\\x2a\\x3f\\xb4\\x57\\x78\\x90\\xdb\\xe7\\x82\\x16\\xc2\\x7f\\x0d\\x21\\x82\\\r\n\\x81\\xcd\\x61\\x8b\\x2c\\x07\\x3d\\x08\\x44\\x74\\xe1\\xe0\\x80\\xa3\\x6c\\x33\\\r\n\\x25\\x07\\x90\\x01\\x87\\x28\\xc1\\x38\\x82\\xdd\\xaa\\x7d\\x1c\\x4f\\x66\\x41\\\r\n\\x67\\x52\\x3d\\x06\\x8c\\x39\\x52\\x80\\x6c\\x13\\x88\\xf6\\x99\\xd5\\xb8\\x9c\\\r\n\\xdc\\xe1\\xce\\x65\\xa9\\xb0\\x40\\x97\\xb8\\x0c\\xbe\\x48\\xf1\\xf2\\xaa\\x2b\\\r\n\\xb6\\x54\\x28\\x0d\\x3d\\x17\\x74\\x8a\\xf1\\xa6\\x49\\x00\\x82\\xa7\\x9d\\xe4\\\r\n\\xd7\\x74\\x70\\xc4\\x25\\x3a\\x58\\x61\\x79\\xcf\\x3c\\x2a\\x18\\x14\\x54\\x29\\\r\n\\x7a\\x8e\\xd6\\x4a\\x00\\x0b\\x44\\x4b\\x2d\\x14\\x22\\x81\\xd1\\xe9\\x10\\xc5\\\r\n\\xe0\\xc9\\x44\\x9b\\x1c\\x18\\xba\\x3a\\x60\\x3d\\x22\\xd5\\xec\\x66\\x08\\x4b\\\r\n\\x19\\x23\\xe8\\xe3\\x81\\x50\\x59\\x48\\x0f\\x30\\x40\\x91\\xae\\x22\\x69\\x08\\\r\n\\xa2\\xd1\\x22\\x15\\x40\\xe2\\xfa\\x2e\\x9f\\x12\\x42\\x58\\x10\\x2d\\x70\\x94\\\r\n\\xa0\\x25\\x4a\\x05\\x20\\xb1\\x34\\x49\\xd3\\x1c\\x99\\xbe\\x3f\\x7b\\xa3\\x88\\\r\n\\x78\\x99\\xc3\\x50\\xf0\\x9c\\x89\\xd3\\xe9\\x37\\x6c\\x53\\x4f\\x3a\\x8e\\x9b\\\r\n\\xd0\\x90\\xaa\\x6f\\xa3\\x03\\x02\\xb9\\x0f\\x89\\xc2\\x4b\\x75\\xcb\\x5c\\x97\\\r\n\\x0a\\x4a\\x96\\xef\\x46\\xa5\\xe1\\xcc\\xc8\\x7b\\x44\\x0a\\x0c\\xdd\\x1d\\x4a\\\r\n\\x12\\xd6\\x8f\\xb8\\xfa\\xc7\\xbe\\x3f\\x0e\\x95\\x05\\x76\\x11\\x51\\xad\\xc1\\\r\n\\xaa\\x7b\\x05\\xca\\xdd\\xf1\\x22\\xf9\\x52\\x22\\x84\\x15\\x9c\\x18\\x91\\x91\\\r\n\\xf9\\xd4\\x5a\\x39\\xf9\\x03\\x54\\xea\\x94\\x52\\xb7\\xba\\xba\\xc8\\x0b\\xc3\\\r\n\\x66\\x5a\\x83\\xb0\\xb5\\x07\\x48\\xf1\\x07\\x06\\x94\\xb0\\xdf\\x99\\xc2\\x6d\\\r\n\\xc0\\xed\\x06\\xed\\x04\\x81\\x28\\x00\\x66\\xf0\\x5e\\xe8\\x48\\xd1\\xad\\x0e\\\r\n\\xe2\\x2f\\x12\\x7c\\xc3\\x24\\xbf\\x69\\xa1\\x1c\\x30\\xbb\\x78\\x3e\\x02\\xf9\\\r\n\\x00\\x5d\\x88\\xe0\\xe3\\x5f\\xf1\\x09\\x96\\x01\\x13\\x72\\x3d\\x58\\x9d\\x5a\\\r\n\\xf9\\x78\\x0a\\x74\\x00\\x2c\\x8d\\x00\\xce\\x03\\x93\\x7b\\x4b\\x05\\x74\\xab\\\r\n\\x20\\x9b\\x6d\\xc3\\x49\\xd4\\xfc\\x06\\xc6\\x80\\x92\\x39\\x31\\xed\\x1d\\xe3\\\r\n\\x4e\\x00\\xae\\x6b\\xa0\\xbe\\x06\\x1f\\x18\\x38\\x24\\x51\\xc3\\xfc\\x4a\\xd8\\\r\n\\x03\\x38\\x0e\\x08\\x73\\x0c\\x3e\\x14\\x42\\x6d\\x39\\x02\\x4d\\x19\\xf2\\x01\\\r\n\\x2a\\x37\\xd9\\x11\\x6d\\x10\\xc4\\x87\\x99\\xab\\x7b\\x7b\\xca\\xe0\\x19\\x98\\\r\n\\x25\\xd8\\xdf\\x0d\\x58\\x46\\x20\\x28\\x73\\x63\\x40\\x1a\\x37\\x90\\x9a\\xcc\\\r\n\\xdb\\xf4\\x51\\xa5\\xb2\\x70\\xa9\\x26\\x22\\x42\\x64\\x90\\x93\\x0b\\xda\\x21\\\r\n\\x12\\xa9\\x7d\\x12\\xfd\\x8b\\x88\\xb1\\x7d\\x48\\x26\\xff\\x00\\x10\\x6e\\xbd\\\r\n\\x48\\x44\\x86\\x87\\x8e\\x46\\x32\\x14\\xaa\\xa5\\x3f\\x5b\\xe0\\x6a\\xd6\\x52\\\r\n\\xd1\\x64\\x60\\x31\\x10\\x56\\x73\\x18\\x41\\x60\\x77\\x22\\xab\\x38\\xf0\\x1c\\\r\n\\x3f\\xb4\\x92\\x36\\x81\\x63\\x38\\x20\\x08\\xd1\\x81\\xf1\\x15\\xdb\\x45\\x67\\\r\n\\xb1\\x24\\x19\\x0b\\xe3\\x83\\xf7\\x8e\\xb1\\x50\\xaf\\x77\\x00\\x83\\x2a\\xed\\\r\n\\xcc\\xce\\x7e\\x31\\xb6\\xbd\\x9c\\xba\\x8f\\xbf\\x43\\x3d\\xa1\\xaf\\x48\\x0f\\\r\n\\x9b\\x7e\\xfd\\x5c\\x28\\xc4\\x2e\\x28\\x0d\\x74\\x6a\\x01\\x40\\xa6\\x19\\x99\\\r\n\\xa4\\xd1\\xba\\x00\\x2d\\xe3\\xdc\\xc1\\x2a\\x35\\x19\\x36\\x5b\\x0f\\x24\\x46\\\r\n\\x55\\x15\\xf9\\x08\\xcd\\x79\\x20\\x0f\\x20\\xe3\\x55\\x5a\\x2f\\x9b\\x86\\x16\\\r\n\\x7d\\x11\\xed\\x10\\x99\\x40\\x06\\x49\\xa6\\x53\\xa7\\x44\\xbe\\x12\\xd7\\x5c\\\r\n\\x0e\\x3c\\xa0\\xa4\\x8b\\xa7\\xea\\xd8\\xe8\\xa1\\xcb\\x70\\xa7\\x3e\\x90\\xcc\\\r\n\\x96\\x62\\x02\\x8e\\x44\\xf5\\x6c\\x1f\\x4e\\x6d\\x23\\x35\\x44\\x40\\x42\\x40\\\r\n\\xbe\\x9c\\xd4\\xf3\\x03\\xbc\\x27\\x84\\x46\\xc0\\x22\\x71\\x73\\x64\\x61\\x71\\\r\n\\x54\\x68\\xd1\\x08\\x93\\x80\\x21\\x06\\x37\\x55\\xa0\\x05\\x10\\x35\\xb8\\x23\\\r\n\\x81\\xee\\x81\\x09\\x34\\xc1\\x03\\x02\\x14\\xf8\\x03\\xa7\\xac\\x82\\x0a\\x9e\\\r\n\\x00\\xe2\\xc0\\xa8\\x78\\xb5\\x31\\xfb\\x82\\xb9\\x2a\\x15\\x40\\x3c\\xb8\\x5d\\\r\n\\x0e\\x52\\x64\\xec\\x0f\\x04\\x40\\x2f\\x36\\x3f\\x35\\x33\\xca\\x21\\x92\\x78\\\r\n\\x36\\x14\\x99\\x3a\\x07\\xa6\\x2d\\x8a\\xaf\\x56\\xd8\\x18\\x37\\x58\\x88\\x0e\\\r\n\\xe7\\x32\\x38\\x63\\xdc\\x97\\xbe\\x11\\xa5\\x88\\x07\\x36\\x2d\\x3b\\x7e\\x01\\\r\n\\xf5\\x2d\\x10\\x3c\\x89\\xef\\x43\\x4b\\x9d\\x62\\x29\\xb0\\xbe\\x3d\\xca\\x46\\\r\n\\x79\\x26\\x39\\x1a\\xa5\\x27\\x97\\x12\\x94\\x57\\x9e\\x36\\x60\\x98\\x5b\\xd5\\\r\n\\x08\\x12\\x7d\\xcf\\x61\\xd5\\x0b\\x8e\\x30\\x21\\x42\\xca\\x9c\\x05\\x66\\x8d\\\r\n\\x4a\\x64\\xe5\\x18\\xe6\\x21\\xb2\\x72\\x52\\x16\\x7a\\x2b\\x59\\x02\\x49\\x29\\\r\n\\xe5\\x5a\\xd8\\x38\\x15\\x2a\\xe6\\xd2\\xad\\x8e\\xea\\x37\\x6b\\x75\\x7a\\xcd\\\r\n\\x97\\x39\\xf0\\x41\\x93\\xed\\x2c\\x50\\x55\\x8d\\x34\\xf3\\xac\\x56\\xde\\xe2\\\r\n\\xbd\\xe3\\x97\\x35\\xfb\\x29\\x06\\xd4\\x39\\xf3\\x1d\\x2f\\xd4\\x2b\\xb4\\xf9\\\r\n\\x5c\\x05\\x49\\xa8\\xa8\\x79\\x6f\\x63\\x86\\xfa\\x38\\x70\\xca\\x4c\\x24\\x3f\\\r\n\\x00\\xb5\\xda\\x32\\x38\\x9c\\x3c\\x1c\\x74\\x48\\xaa\\x13\\xfd\\x90\\x03\\xed\\\r\n\\x21\\x15\\x88\\x44\\x31\\x04\\x0e\\x14\\x6c\\x13\\x93\\xdf\\x64\\x3c\\xa7\\x83\\\r\n\\x08\\x28\\x17\\x97\\x11\\x10\\x80\\xc1\\x95\\x81\\x84\\x41\\x2f\\x5a\\xa7\\x18\\\r\n\\x29\\x1f\\x64\\x89\\x0d\\x52\\x00\\x79\\x7c\\xc1\\x58\\x90\\x0f\\x38\\x57\\xa3\\\r\n\\x56\\x15\\xc2\\x1c\\x4f\\xcd\\x2d\\x0b\\xf0\\x4e\\x61\\x38\\x7d\\x7f\\x25\\x45\\\r\n\\x42\\xf0\\x6e\\x3c\\x0b\\x0e\\x11\\x98\\x8e\\xb1\\x36\\x18\\xa9\\x2d\\x0e\\x03\\\r\n\\x0a\\x38\\xb6\\xc9\\xd2\\x27\\x70\\xb5\\x61\\x6a\\x03\\x81\\x02\\xda\\x6c\\x68\\\r\n\\xe4\\xb1\\x4c\\x49\\xd2\\xc3\\xaa\\x49\\x72\\x48\\xaa\\x91\\x90\\xca\\x33\\xc9\\\r\n\\x1d\\x84\\x06\\x38\\x0b\\x29\\xf4\\x10\\x8a\\x59\\x32\\xc2\\x09\\x2f\\x0d\\xf4\\\r\n\\x7b\\x08\\x22\\xea\\x33\\x59\\x8e\\xf0\\xdb\\x6e\\xcf\\x04\\x5d\\x7d\\x29\\x8a\\\r\n\\x15\\xc0\\x0f\\x83\\x05\\x4c\\x6a\\x81\\x44\\x87\\xaf\\x76\\x01\\x27\\x24\\x5c\\\r\n\\x87\\xc5\\x1b\\x17\\x8b\\xc2\\xca\\xb7\\x94\\x9d\\xdf\\xa7\\x66\\xb9\\xa9\\xa7\\\r\n\\x22\\xab\\x97\\x4d\\x00\\xad\\xa8\\xf5\\xc7\\x2c\\x33\\x2a\\x7d\\xae\\x73\\x1b\\\r\n\\x5e\\x10\\x57\\xca\\x85\\x01\\x2c\\x04\\xec\\x3d\\x78\\xfc\\x5b\\xcd\\x37\\x7b\\\r\n\\x59\\xf9\\xea\\xb5\\x1e\\x0f\\x0d\\x3d\\x9a\\x70\\x35\\x2c\\x10\\x90\\x55\\x85\\\r\n\\x0e\\x07\\x97\\xc2\\xd4\\x55\\x80\\x9d\\x08\\x18\\xe7\\xef\\x80\\x9b\\xc7\\x20\\\r\n\\x34\\xb6\\x0a\\x86\\x0d\\xca\\x03\\xee\\xaa\\xc1\\x4b\\xc2\\x30\\xf3\\xab\\x4e\\\r\n\\x8a\\x98\\x37\\x5d\\x84\\xe1\\xa8\\x80\\x88\\xf8\\x41\\x40\\x62\\x8b\\xee\\x17\\\r\n\\x9c\\x91\\xdc\\x91\\xed\\x92\\xba\\x11\\xa6\\x89\\xc1\\x7b\\x21\\x2e\\x60\\xca\\\r\n\\xcd\\x44\\x89\\x35\\x59\\x69\\xa4\\x17\\x04\\x16\\x51\\x9e\\xe4\\x42\\x30\\xcb\\\r\n\\x55\\x40\\xc9\\x2b\\x60\\x96\\xcb\\x43\\x9e\\x49\\xc8\\x6d\\x04\\x14\\xea\\xef\\\r\n\\xae\\x0b\\xc6\\x86\\x5a\\x55\\x4a\\xcc\\x84\\x49\\x55\\x1b\\xac\\x43\\xd7\\x46\\\r\n\\xd0\\x3c\\x0b\\x28\\x50\\x2e\\x14\\xa9\\x1e\\x4a\\x27\\x69\\x16\\x02\\x38\\x57\\\r\n\\xa6\\x48\\x9e\\xf9\\x40\\x09\\x76\\xd0\\x95\\x1c\\x3f\\x44\\xe6\\xd5\\x5b\\x02\\\r\n\\xb3\\x3d\\xc2\\x1b\\x61\\x49\\xcc\\xc5\\x03\\x6e\\x90\\x32\\xe2\\xc1\\x7d\\xc0\\\r\n\\x95\\x68\\xbb\\x34\\x09\\x33\\xe2\\xc4\\x9d\\x39\\xa8\\xa8\\x2d\\x22\\xb4\\x0d\\\r\n\\xa3\\x62\\x3d\\x95\\xba\\x75\\xeb\\xb2\\xc0\\x41\\x69\\xb9\\x54\\x40\\xc4\\x39\\\r\n\\xc2\\x59\\x46\\xa0\\x51\\x47\\x0a\\xd5\\x95\\xc0\\xee\\xae\\x9d\\x65\\xe0\\xab\\\r\n\\x6e\\x2d\\x41\\x72\\x81\\x0e\\x46\\x8d\\x42\\x96\\xe0\\xe8\\xec\\x0a\\x28\\x50\\\r\n\\xc6\\x69\\xf3\\x50\\xa8\\x84\\x82\\x7e\\xa0\\xf6\\xa3\\x27\\x03\\x79\\x00\\x14\\\r\n\\x34\\x21\\x92\\x31\\x28\\xca\\x8f\\x01\\x21\\xcc\\x66\\x8a\\x22\\xe8\\x94\\xdc\\\r\n\\xb9\\xd7\\x3c\\x7a\\x9e\\x3c\\x94\\x84\\x0a\\x10\\x82\\xe8\\x96\\xf6\\x34\\xe8\\\r\n\\x70\\x86\\x90\\xda\\x02\\x8a\\x69\\x3d\\x17\\x44\\x10\\x34\\x5c\\x80\\xd0\\x4c\\\r\n\\x05\\x14\\x03\\x13\\x4b\\x1f\\xed\\x0e\\x5b\\x05\\xc4\\x02\\x81\\x21\\xe8\\x01\\\r\n\\xae\\x2b\\xeb\\x45\\x08\\xc4\\x29\\xf3\\x69\\xf8\\x0c\\xad\\x40\\x0f\\xb2\\xe4\\\r\n\\x18\\x16\\xa6\\x90\\x9c\\x52\\x40\\x11\\x5e\\x28\\x52\\x01\\xb3\\x1b\\x42\\x48\\\r\n\\xa6\\x02\\x9a\\x14\\x2c\\x63\\xa0\\x86\\xdd\\x51\\x62\\xd2\\xa3\\x48\\x21\\x11\\\r\n\\x56\\xc4\\xc0\\x7f\\x42\\x92\\x83\\x5d\\x5a\\x67\\x4a\\x40\\x62\\xbe\\xd3\\x40\\\r\n\\xd3\\xa1\\x02\\x09\\x90\\x02\\x0b\\x17\\x80\\xbf\\xa1\\x38\\xb5\\x39\\x44\\x34\\\r\n\\x01\\x34\\x03\\x21\\x09\\x82\\xc1\\xf3\\x71\\x54\\x43\\x10\\x61\\x1e\\x20\\xa6\\\r\n\\xa4\\x36\\xe2\\xa6\\xd1\\x92\\xc5\\xe5\\x44\\x12\\x34\\x45\\x05\\x10\\x7a\\xd3\\\r\n\\xf0\\xb0\\x39\\x4a\\x87\\x71\\xf9\\x58\\x45\\xc5\\x75\\xc2\\xda\\x5c\\x5e\\xa4\\\r\n\\xa0\\x82\\x7d\\xbc\\x47\\x49\\x19\\x05\\x28\\xd6\\x18\\xff\\x00\\x58\\x9e\\x40\\\r\n\\x2e\\xe5\\x8f\\x02\\x0b\\x24\\x05\\x20\\x50\\xc2\\x21\\x69\\x87\\xa4\\x01\\xe1\\\r\n\\xfa\\xfc\\xc3\\xf0\\x84\\x1a\\x45\\xdf\\x25\\x2e\\xab\\xca\\xd7\\x44\\xa3\\x86\\\r\n\\x3d\\x74\\x8f\\xbf\\x23\\x45\\x70\\xa7\\x8e\\xa3\\x1c\\x61\\x83\\x66\\xb2\\x29\\\r\n\\x8a\\x10\\xc2\\xa7\\x8a\\x22\\xaf\\x32\\x9e\\x22\\x31\\x87\\xf3\\x31\\x3a\\xd8\\\r\n\\x84\\x56\\x8e\\x5b\\x59\\x12\\x88\\xce\\xa3\\x69\\x67\\x07\\x49\\xa5\\x53\\x80\\\r\n\\x6c\\xde\\xbb\\x1a\\x40\\x14\\x5c\\x1c\\x8a\\x78\\xdf\\xf4\\x7d\\x50\\x5b\\x78\\\r\n\\x20\\x27\\x0f\\x0e\\xf0\\xda\\xe4\\xb3\\xb8\\x1b\\xb2\\x6b\\xc4\\x39\\x7c\\x59\\\r\n\\x9b\\x2b\\xc9\\x0a\\x11\\x66\\x11\\x48\\x9a\\x31\\xc7\\xe8\\xe4\\x67\\xd2\\x02\\\r\n\\x2a\\x01\\x95\\x4b\\x23\\x0a\\x71\\xb8\\xaa\\x9a\\x38\\x58\\x93\\x53\\x12\\x95\\\r\n\\x38\\xbf\\xf7\\x3f\\x13\\xc1\\x50\\x28\\x94\\x69\\x58\\xe3\\x5c\\x03\\x48\\x8d\\\r\n\\x20\\x61\\x71\\xaf\\xc0\\x8d\\x79\\x38\\x4c\\xd1\\xc8\\xa7\\x55\\x85\\xe4\\x02\\\r\n\\xa2\\xd8\\x10\\x40\\xab\\x20\\x4c\\x01\\x63\\xb5\\x00\\x60\\xa0\\xff\\x00\\x5f\\\r\n\\x48\\x82\\x02\\x0e\\x9d\\x62\\x84\\x50\\x69\\xaa\\x04\\x97\\xe6\\x43\\x09\\xe2\\\r\n\\x90\\xac\\xb3\\x0a\\x88\\x44\\x49\\x55\\x50\\xc9\\x18\\x32\\x98\\xd0\\xe1\\x41\\\r\n\\xaf\\x50\\x68\\x10\\xc2\\x66\\x96\\x20\\x21\\x00\\x19\\x0b\\xd8\\x16\\x21\\x7b\\\r\n\\x4d\\xf8\\x54\\x1f\\x5a\\xca\\x25\\xff\\x00\\xc2\\x41\\xc6\\x9b\\x83\\xc7\\xe3\\\r\n\\xc6\\x8a\\xa6\\xd8\\xad\\x33\\xe8\\x18\\x70\\x6a\\xce\\x92\\xe3\\x88\\x26\\x99\\\r\n\\x4c\\x08\\xb7\\xc8\\x68\\xe0\\x73\\x55\\x21\\x64\\x7c\\x36\\x0b\\x62\\xc7\\x82\\\r\n\\xb1\\x4b\\xe7\\xd2\\xc3\\x5f\\x68\\xe2\\xed\\x77\\xb3\\x62\\x08\\x09\\xf2\\x88\\\r\n\\x9d\\x63\\x5a\\x85\\xad\\x39\\x04\\x5b\\x62\\x00\\x7c\\xd6\\xc8\\xb9\\x08\\x78\\\r\n\\x30\\xb5\\x62\\x3e\\xe4\\x05\\xa0\\x22\\x42\\x70\\x03\\x3a\\x48\\x6f\\xd0\\x4d\\\r\n\\x0e\\xaf\\x7d\\xb5\\xe5\\x42\\x03\\x01\\x3a\\x81\\xa2\\xd6\\xe7\\x00\\x36\\xa5\\\r\n\\x60\\xc3\\x42\\xf9\\x3d\\xd4\\xf5\\xa2\\xe5\\x90\\xb6\\x75\\x87\\xbb\\xc1\\xf1\\\r\n\\x8c\\x7b\\x31\\x53\\x71\\xe5\\x98\\xc9\\x0e\\x92\\x10\\xf4\\x30\\x00\\x81\\x30\\\r\n\\x01\\xf9\\x84\\xbe\\xa0\\x13\\x2b\\x5e\\x9e\\x97\\xe3\\xe7\\xf7\\x6c\\x07\\x2e\\\r\n\\x04\\x67\\x12\\xc0\\x9b\\x22\\x4a\\x31\\x14\\xb0\\xa3\\x92\\xbd\\x80\\xd5\\x41\\\r\n\\xe2\\xd8\\x81\\x5a\\xb8\\xd3\\x92\\xb8\\xd1\\xd5\\xa1\\x44\\x85\\x73\\xdd\\xdc\\\r\n\\x47\\x70\\x87\\xca\\x04\\xaa\\x65\\x00\\x24\\x57\\x05\\x63\\x73\\x20\\xf8\\x34\\\r\n\\x02\\x98\\x48\\x86\\x40\\x94\\x52\\x27\\xd1\\x88\\x31\\x55\\x1d\\x8a\\xa3\\x4f\\\r\n\\x3a\\x44\\xd0\\x90\\x84\\xa8\\xe8\\x03\\x31\\x0a\\x5b\\x84\\x7a\\x8c\\xbd\\x3c\\\r\n\\x19\\x04\\x40\\x83\\x12\\x2b\\x1e\\x84\\x7d\\x82\\x28\\x22\\xf3\\x21\\x80\\x27\\\r\n\\x8a\\x2c\\x28\\xaf\\x58\\x1e\\x5b\\x28\\x1c\\x48\\xa9\\x46\\xe9\\x61\\x14\\xf1\\\r\n\\x8c\\xe0\\x34\\xb8\\xc5\\x03\\x24\\xf2\\x53\\x2b\\x71\\x44\\x76\\x44\\xe1\\xe0\\\r\n\\x32\\x99\\x44\\x22\\x0e\\x98\\xd3\\xd5\\xaa\\x50\\x1d\\x49\\x1a\\x75\\x2f\\x34\\\r\n\\x8a\\x48\\xcc\\x98\\x29\\xe6\\x0e\\x03\\xaa\\x1d\\x7d\\xc0\\xbf\\x32\\x0f\\x98\\\r\n\\x58\\xd7\\xc2\\xc1\\x58\\x35\\x10\\xe8\\x8b\\xdd\\x36\\x68\\x67\\xc7\\xdf\\xc7\\\r\n\\x5c\\x56\\xa9\\x9d\\xbc\\x53\\xf2\\x5a\\x57\\x9b\\x04\\x08\\x64\\xba\\x73\\x00\\\r\n\\xa8\\x39\\xbd\\x9f\\x3d\\x48\\xb0\\x48\\xd6\\xf3\\xe4\\xc2\\xd0\\xa3\\x5c\\x03\\\r\n\\x11\\x92\\xe6\\x47\\xce\\x77\\x12\\x4d\\xb9\\xbb\\x12\\x4e\\x72\\x03\\x20\\xed\\\r\n\\x68\\xe3\\xd2\\x3c\\xcc\\x46\\x70\\x33\\x41\\x8f\\x4a\\x84\\x04\\xe9\\xab\\x9a\\\r\n\\xb3\\xdd\\xb4\\x0c\\x6f\\x00\\xbe\\x3f\\xef\\x23\\x73\\x59\\x03\\x59\\x20\\xc2\\\r\n\\x25\\x74\\xd5\\x30\\x06\\xf0\\x8a\\xb9\\x03\\x8e\\xd1\\x14\\x25\\x50\\xa4\\x9a\\\r\n\\x82\\x07\\x08\\x0d\\x2f\\x05\\x77\\x0d\\x26\\x01\\x87\\x83\\xd6\\xdd\\xaf\\x09\\\r\n\\xa5\\xad\\x02\\x89\\x52\\xa6\\x3a\\x10\\x84\\x90\\x5b\\x85\\x99\\x00\\x0d\\x74\\\r\n\\x82\\x03\\x0a\\x04\\xb8\\xba\\xd2\\xbc\\x2f\\x0b\\x83\\x89\\xc4\\x0b\\x54\\xde\\\r\n\\x28\\x8b\\x01\\x15\\x15\\x6d\\xb6\\xd1\\xad\\x15\\x26\\x08\\x30\\x20\\x6c\\x0f\\\r\n\\xc7\\x43\\x82\\xce\\x13\\xb4\\x4f\\x3e\\x94\\xc7\\x0d\\x4e\\x14\\xc0\\x8e\\x8d\\\r\n\\x1f\\x1f\\x91\\xa2\\xc8\\xed\\x89\\xc3\\x97\\xfd\\xd0\\xea\\xdc\\xac\\xbf\\x57\\\r\n\\xc5\\x97\\x20\\x66\\x5d\\xf4\\x61\\xb1\\xd6\\xfc\\x67\\x73\\x0f\\x77\\xe8\\xbb\\\r\n\\xcd\\xc5\\xe4\\x4b\\x37\\x98\\xde\\x62\\xdc\\x8a\\xcb\\x44\\x55\\x15\\x88\\x71\\\r\n\\x9f\\x1b\\xbc\\xea\\xfb\\x62\\x2d\\x80\\xe9\\x8c\\xbb\\x43\\x5e\\x9d\\x17\\x79\\\r\n\\x08\\xa8\\x0a\\x4f\\x57\\x9d\\xa9\\xf1\\x67\\x9b\\x96\\x89\\xd5\\xba\\xe7\\x74\\\r\n\\xb2\\x7b\\xac\\x96\\x06\\x48\\x6b\\x32\\x85\\x1a\\xf2\\xa0\\xa2\\x1b\\x0f\\x3f\\\r\n\\x55\\x95\\x60\\x82\\xed\\x36\\x01\\xd1\\xc6\\x35\\xaf\\x13\\xe2\\x0f\\x2c\\x50\\\r\n\\xc2\\xf3\\xcc\\x3c\\x42\\x18\\x00\\x40\\x15\\x0a\\x2a\\xa2\\x8d\\xe5\\x7e\\x0c\\\r\n\\xd4\\xa9\\xc9\\x22\\x4e\\x8a\\x70\\x1b\\x91\\x44\\x75\\x31\\x80\\xdc\\xd0\\xb7\\\r\n\\x41\\xf7\\xdf\\xc9\\x3e\\x40\\xdc\\x7d\\x67\\x7e\\xf3\\x10\\xd3\\x62\\x21\\x70\\\r\n\\x81\\x01\\xc8\\xd0\\xc0\\xb0\\xcd\\x05\\x47\\x49\\x5d\\xfd\\x70\\xc0\\xc9\\x29\\\r\n\\x46\\x1f\\xfb\\x28\\x1a\\xcc\\xa3\\xce\\x94\\xaf\\xa2\\x00\\xb4\\x76\\x32\\x94\\\r\n\\xd8\\x8b\\x76\\x15\\xa7\\x1f\\x85\\xd4\\xa3\\x52\\x40\\xca\\xec\\x56\\x43\\x87\\\r\n\\x1d\\xae\\x28\\x09\\xc8\\x89\\xea\\x81\\x77\\x48\\x48\\x12\\x62\\xc3\\x55\\x49\\\r\n\\x0b\\x1e\\xb2\\x10\\x15\\xea\\x74\\x02\\xe7\\x09\\x4d\\x5d\\x12\\xd2\\xb4\\x85\\\r\n\\xec\\x5c\\x4e\\xb3\\x07\\x07\\x61\\x29\\xe0\\xfd\\x59\\xe2\\x93\\xab\\x00\\x70\\\r\n\\xf4\\xdf\\xed\\xce\\x9c\\xaa\\x62\\x88\\xa4\\xa1\\x78\\x08\\x87\\x88\\x8a\\xa0\\\r\n\\x4f\\x63\\x11\\xe0\\x9d\\xa2\\x03\\x3e\\x9a\\xcf\\x05\\x46\\xc7\\xeb\\xb8\\xe6\\\r\n\\xb6\\xac\\x6d\\x50\\xfe\\xd0\\xcd\\x37\\x22\\x2d\\x49\\xd2\\x1e\\x50\\x0e\\x37\\\r\n\\xad\\x2f\\x7d\\xa3\\xf1\\xe9\\x30\\xc0\\x64\\x25\\x19\\x89\\x8f\\xec\\xe1\\xb1\\\r\n\\xf1\\x86\\xf2\\xe5\\xae\\xba\\x40\\xf7\\x1a\\x14\\xd4\\xf2\\x6c\\x41\\x30\\x61\\\r\n\\x68\\x6d\\xd8\\xd8\\xb0\\xde\\xe9\\x81\\x3d\\x4c\\x67\\x94\\x91\\xdf\\x06\\xce\\\r\n\\x12\\x83\\x97\\xfa\\x6a\\x3a\\xb0\\x22\\xcc\\x78\\x0a\\x58\\xfb\\x9e\\xbb\\x60\\\r\n\\xda\\x40\\x14\\x6b\\x8d\\xd9\\xed\\x0f\\x3a\\x89\\x6e\\x01\\x2c\\x54\\x94\\xa8\\\r\n\\x3d\\x43\\x91\\xde\\x8d\\x07\\xa0\\x21\\x1d\\x93\\xb3\\x06\\xe6\\xcc\\x82\\xc8\\\r\n\\xa7\\xe5\\x08\\x35\\x38\\x1f\\xaa\\xb3\\x28\\xba\\x49\\x00\\xaf\\x23\\xdc\\x34\\\r\n\\x2d\\x57\\x13\\x9e\\x56\\x92\\xe9\\x26\\x6f\\xd3\\xd3\\x5b\\xc2\\x26\\x1b\\xf5\\\r\n\\xb8\\x22\\xb5\\x88\\xe0\\xe0\\xac\\x46\\x46\\x30\\xa0\\x69\\xcc\\x1f\\x64\\x48\\\r\n\\x29\\x25\\x30\\x3c\\x12\\xed\\x41\\x86\\xbb\\x17\\xe6\\xd3\\x15\\xa3\\x02\\xa3\\\r\n\\x1a\\xd7\\x53\\x8c\\x32\\x50\\x29\\x94\\x54\\xe1\\x20\\x2e\\x5a\\x5d\\x4e\\xa4\\\r\n\\xa9\\xab\\x45\\x1a\\x45\\x53\\xe1\\x04\\x8b\\x41\\x06\\xb5\\xf5\\x94\\x50\\x0a\\\r\n\\x26\\x7a\\x92\\x42\\x99\\x4b\\x6a\\x69\\x91\\xbb\\xa4\\xcc\\x4e\\x08\\x5b\\x91\\\r\n\\x1d\\xe9\\x47\\xa4\\x80\\x72\\x85\\x21\\x13\\x1a\\x73\\xc4\\x29\\x58\\xc9\\xc7\\\r\n\\xa6\\x2c\\x98\\x74\\xec\\xa6\\x64\\x6c\\x68\\xfa\\xed\\x79\\x10\\xde\\x59\\x29\\\r\n\\x82\\x20\\x9b\\x19\\xb5\\x43\\x8c\\x05\\x6b\\xd0\\x5f\\x41\\xee\\x10\\xeb\\x69\\\r\n\\x58\\x90\\x0a\\xc2\\xae\\xe9\\xe1\\xc5\\xfe\\x3e\\x54\\x6d\\x52\\xb0\\x52\\x23\\\r\n\\xaa\\xdf\\x55\\x32\\x76\\x69\\x54\\x48\\x73\\xd9\\xa7\\x8f\\x1c\\x27\\x0a\\x84\\\r\n\\xdb\\xd7\\x85\\x5f\\x17\\x0f\\xc7\\x7c\\x10\\x5a\\xf1\\x71\\xca\\xa0\\x9b\\x26\\\r\n\\xc4\\xa9\\x4a\\x14\\x44\\x04\\xf4\\x1a\\xf8\\xe0\\x20\\x74\\xc2\\x98\\x75\\x02\\\r\n\\x02\\x93\\xad\\x6c\\x8b\\x1a\\xaa\\xff\\x00\\x09\\xc2\\x52\\xd2\\x47\\xe9\\x7a\\\r\n\\x47\\xa4\\x8e\\x44\\xbe\\xfa\\x9a\\xa0\\x8e\\x2f\\x46\\x71\\x22\\x0f\\xc4\\x78\\\r\n\\x29\\xe8\\x58\\xec\\x6b\\xa9\\x02\\x0b\\x65\\x18\\x4b\\x82\\xdb\\xdd\\xd2\\x20\\\r\n\\xc1\\x62\\x10\\xe3\\x78\\xbd\\x6c\\x44\\x11\\x58\\x06\\x68\\xda\\xca\\x6c\\x7b\\\r\n\\x32\\x53\\x86\\x4a\\xd8\\x47\\x93\\xaf\\x4c\\x08\\x75\\xee\\x00\\x1d\\xbf\\x34\\\r\n\\x06\\xd5\\xe8\\xe8\\x1c\\x21\\xa6\\x36\\xfc\\xd0\\x91\\xac\\x54\\x2b\\xc3\\xe0\\\r\n\\xd6\\x7e\\x99\\xfe\\xf9\\xc0\\x69\\x12\\x12\\xae\\xf0\\x16\\x58\\x95\\x40\\x70\\\r\n\\x14\\xa2\\x2a\\x2e\\xa0\\xc6\\x65\\x93\\x01\\x08\\xdc\\x03\\xb9\\x44\\xa9\\xd0\\\r\n\\x0e\\xdb\\x02\\x4b\\x0d\\xe4\\x6a\\xeb\\x0b\\x1f\\x64\\xfa\\xb3\\x38\\x5d\\x01\\\r\n\\x00\\x04\\x9e\\xbd\\x7a\\x3a\\xeb\\x4c\\x23\\xb3\\xfa\\x28\\x5e\\x8c\\x2a\\x10\\\r\n\\xa5\\x53\\x13\\xba\\xc6\\x40\\x12\\xdc\\x3d\\x1b\\x5c\\x43\\x68\\x80\\x51\\xc4\\\r\n\\x3a\\x38\\x49\\x10\\x44\\x79\\x60\\x8b\\x92\\x10\\x3a\\x18\\x15\\xf7\\x6c\\x34\\\r\n\\x99\\xa6\\x37\\xc2\\x2c\\xde\\xfd\\xbd\\x23\\x7a\\xad\\xaa\\x83\\x19\\x94\\x96\\\r\n\\x11\\xf6\\x2a\\x2c\\x9f\\x50\\x85\\x12\\x87\\xa2\\x39\\x85\\x59\\xfc\\x96\\x49\\\r\n\\xa7\\x41\\xfc\\xab\\x7e\\xed\\xc5\\x71\\xc1\\xa7\\xfa\\x66\\x43\\x25\\x3c\\xab\\\r\n\\x3f\\xd8\\xde\\x30\\x16\\x8f\\xc4\\x24\\xd3\\x12\\xd5\\x8d\\x63\\x24\\x04\\x27\\\r\n\\x6e\\xa8\\x39\\x35\\xa4\\x4a\\xeb\\xa1\\x83\\xdd\\xe2\\x21\\x61\\x1b\\x22\\x7c\\\r\n\\x92\\xda\\xc6\\xe7\\xa4\\x32\\xce\\x1e\\x4a\\x99\\x08\\xf3\\x8d\\x52\\x73\\x18\\\r\n\\x23\\xca\\x73\\x3c\\xc9\\x4e\\x80\\xd1\\x78\\xb1\\x3d\\x41\\xca\\x08\\x51\\xed\\\r\n\\x9d\\x36\\x85\\xde\\xad\\x0f\\x89\\x3b\\x01\\x00\\x2e\\xa4\\x49\\x9e\\x40\\x3a\\\r\n\\xe5\\xe3\\x5f\\x7e\\x93\\x41\\xc0\\xa3\\x03\\xaa\\x08\\xbd\\x08\\xb2\\x02\\x04\\\r\n\\xa8\\x34\\xf2\\x80\\x83\\xa1\\x81\\x6a\\x4d\\x29\\xcd\\x3e\\x27\\x40\\xc8\\x40\\\r\n\\xe0\\xa0\\x83\\x1b\\x04\\x14\\xec\\xb1\\x4b\\x25\\xa6\\xb1\\xfc\\x22\\xd3\\xf3\\\r\n\\x33\\x2b\\x48\\x38\\x92\\x6f\\xe7\\x78\\x55\\x78\\x64\\xa2\\xc1\\x8e\\x12\\x2a\\\r\n\\xd5\\x57\\x8d\\x82\\x59\\x91\\x81\\x44\\x08\\xbb\\x45\\xe3\\x66\\x6c\\xae\\x66\\\r\n\\xd2\\x13\\x83\\x0a\\x4b\\x04\\x0d\\x50\\x6a\\x6f\\x44\\x21\\x92\\x8c\\x0e\\x0d\\\r\n\\x38\\x66\\x05\\x52\\xd1\\xf6\\x08\\x83\\xc0\\x39\\x42\\x24\\xe7\\x19\\x1a\\xbb\\\r\n\\x97\\x84\\x9b\\x01\\x2b\\x66\\x67\\x00\\x7f\\x49\\xd9\\x0f\\x2b\\x31\\xea\\xa4\\\r\n\\xd3\\x85\\xc4\\x53\\x98\\x6e\\x00\\xfd\\xe4\\x0c\\x53\\x7b\\x23\\x90\\xae\\x94\\\r\n\\xa9\\xc9\\x69\\x99\\x5e\\x76\\x70\\xb0\\xe5\\x6c\\x62\\xc0\\x04\\x46\\x03\\x83\\\r\n\\xc3\\x8a\\x06\\xa7\\x24\\x12\\xce\\x50\\x45\\x3d\\xff\\x00\\x0b\\xd1\\xc3\\x4d\\\r\n\\xec\\xe3\\x68\\x51\\x32\\x67\\xf5\\x0b\\x68\\x15\\x93\\xba\\x94\\xb6\\x4c\\xa2\\\r\n\\x0b\\xb9\\x8f\\xe2\\x86\\x37\\x4f\\xe3\\x25\\xeb\\x10\\x39\\x7d\\x22\\xef\\x17\\\r\n\\xd1\\x34\\x48\\x62\\xd9\\x22\\xec\\xcf\\xbc\\x63\\x31\\x77\\x70\\x80\\x4c\\x57\\\r\n\\x99\\x12\\xbd\\x42\\xf5\\xb1\\x8d\\xda\\xbd\\x32\\xee\\x90\\xa2\\x56\\x05\\x82\\\r\n\\x9b\\xc2\\xa6\\xf4\\x27\\xd4\\xae\\x22\\xcd\\x3d\\x40\\x6e\\x42\\x8f\\x5e\\xf9\\\r\n\\xd3\\x87\\x30\\xd9\\x72\\xc2\\x84\\x2a\\x1c\\xb9\\x91\\xc0\\xce\\xe1\\x34\\xf0\\\r\n\\xc9\\x9f\\x2f\\xe0\\x75\\x79\\x08\\x99\\x61\\x47\\x5f\\x1a\\x6f\\x4d\\x40\\x4a\\\r\n\\xa8\\x19\\xf8\\x20\\xdd\\x1a\\xec\\x3b\\xc1\\x56\\x21\\x60\\x9d\\x57\\xa0\\x5e\\\r\n\\xc3\\xd1\\xf9\\x29\\x0b\\xdd\\xcb\\x60\\xc1\\x60\\x03\\xcc\\x34\\x21\\x8c\\xd6\\\r\n\\x9d\\x42\\x43\\xb6\\x12\\x1d\\xab\\x19\\x5d\\x14\\x9d\\xa2\\x28\\x18\\x3a\\xc4\\\r\n\\x83\\xfc\\x34\\x36\\xbd\\x8d\\x0a\\x6d\\x53\\x95\\x78\\x44\\x60\\x09\\x44\\x12\\\r\n\\xb3\\x7a\\x54\\x40\\x54\\x1a\\x99\\x33\\x48\\x9c\\x81\\x58\\x14\\x2b\\xe3\\x64\\\r\n\\xb8\\xe4\\x9a\\x51\\x6d\\xa1\\x45\\x4b\\xf5\\x8a\\x17\\x14\\x51\\xb7\\xdc\\x00\\\r\n\\xa1\\x5b\\x54\\x26\\x07\\x60\\x7e\\x80\\xa6\\xb0\\x42\\xf1\\xe4\\x33\\x08\\x9f\\\r\n\\xc9\\x00\\x2d\\x3e\\x36\\xf0\\x8d\\xc0\\x9d\\x5c\\x30\\xac\\x26\\xe6\\x17\\x93\\\r\n\\x10\\x33\\x4b\\x93\\x47\\x96\\x89\\x44\\xff\\x00\\x47\\x3c\\xe2\\xa4\\x34\\x1e\\\r\n\\x0e\\x5d\\x4a\\x6e\\x85\\xc8\\xbb\\x1b\\xff\\x00\\x4d\\xc6\\x6f\\x7a\\x43\\xc9\\\r\n\\x73\\xba\\x1e\\xf7\\x0f\\xa3\\xad\\x72\\xde\\xde\\x85\\x08\\x20\\x64\\x84\\xbc\\\r\n\\x16\\x47\\x44\\x68\\xea\\x6c\\xf0\\x57\\x5a\\xf2\\x84\\xa3\\x2e\\x9f\\xa1\\x0b\\\r\n\\xc0\\x75\\x09\\xf0\\x95\\x35\\x24\\x67\\x92\\x48\\x9b\\x0f\\x7a\\x39\\x80\\x31\\\r\n\\x46\\xde\\x5d\\x04\\xa0\\x57\\x05\\x49\\x16\\x86\\x82\\x5a\\x9d\\xcc\\x69\\xca\\\r\n\\x81\\xbe\\x77\\x4a\\x62\\x2b\\x08\\x35\\x02\\x28\\x27\\x51\\xb1\\x67\\x80\\xf5\\\r\n\\x40\\x08\\xc7\\x54\\x2e\\x0e\\x1b\\xd6\\x2f\\x62\\xc5\\x3a\\x54\\x19\\x8e\\x2c\\\r\n\\xe5\\x6c\\x6f\\xe7\\xc5\\x6d\\x80\\xb8\\x01\\xf8\\x4c\\xd7\\xb9\\xdc\\xa3\\x76\\\r\n\\x68\\x89\\x03\\x2b\\x94\\x32\\x64\\x74\\xd0\\x5f\\x8a\\x68\\x17\\xa0\\x70\\x04\\\r\n\\x57\\xc0\\xbc\\xe1\\xd2\\x4d\\xfb\\x14\\x1a\\x87\\xa9\\x6b\\xe1\\x43\\xbc\\x6f\\\r\n\\x80\\x4b\\x13\\x8c\\x00\\xfd\\x72\\x6a\\x48\\x00\\x7c\\x12\\x22\\xfa\\xaf\\x70\\\r\n\\x59\\x21\\x12\\x2c\\x48\\x2a\\x1f\\x32\\xd8\\x70\\x7c\\x5f\\x57\\x69\\x8d\\x1c\\\r\n\\x00\\x2c\\x03\\x1c\\x5a\\x90\\xa4\\x45\\xdb\\x93\\xc8\\xd4\\xf1\\x0d\\x3f\\x52\\\r\n\\x4a\\xf8\\x80\\x38\\x98\\x86\\x83\\xac\\xe8\\xab\\x80\\x8c\\x8a\\x9c\\x46\\x5b\\\r\n\\xea\\xdc\\x93\\x4a\\x1d\\xac\\xd2\\xe3\\xdc\\x32\\xb4\\x10\\xac\\xc4\\xf7\\x4d\\\r\n\\xc0\\xb3\\x8f\\xa2\\x86\\x41\\xc9\\x1c\\x5d\\xe1\\xe2\\xea\\x83\\xd4\\x76\\xc7\\\r\n\\x46\\x23\\x05\\xa8\\xe5\\xc0\\xc5\\x4a\\x48\\x9f\\x74\\xa5\\x03\\xec\\xdc\\x6f\\\r\n\\xab\\x8d\\x74\\x9d\\xda\\x79\\x58\\xd4\\x6a\\x80\\x37\\x2f\\xfe\\x6f\\x6e\\x97\\\r\n\\x02\\xd0\\x88\\x6c\\xd2\\x78\\x2e\\xd6\\x4c\\x9b\\x00\\x4c\\x25\\xec\\xe1\\x8f\\\r\n\\x51\\x57\\x89\\xa1\\x48\\x0a\\x57\\x44\\x74\\x0b\\x88\\xf4\\xba\\x78\\x10\\x81\\\r\n\\xec\\x73\\x6a\\x7a\\x2a\\x24\\xca\\x19\\x70\\xc0\\x8f\\x0d\\xef\\xe1\\xc3\\x21\\\r\n\\x32\\x7e\\x05\\xe8\\xc5\\xa6\\x0a\\x24\\x56\\x05\\x61\\xf2\\x32\\xbb\\xfe\\xd9\\\r\n\\x24\\x11\\xd1\\xa8\\x0f\\x99\\x3d\\xf0\\x14\\x4a\\x40\\x96\\x12\\x28\\xba\\x19\\\r\n\\xb3\\xf2\\x93\\x63\\xad\\x56\\x03\\xa0\\x22\\x8f\\xd7\\xa8\\x48\\x0c\\x00\\x52\\\r\n\\x79\\x49\\x7e\\xf3\\x34\\x34\\xb0\\x39\\x18\\xfd\\x0c\\xa9\\xc0\\xcd\\xe9\\x9d\\\r\n\\x12\\x4e\\x89\\xc4\\x45\\xb9\\x27\\x80\\xd2\\xf2\\x3f\\x01\\x54\\xd2\\xff\\x00\\\r\n\\xe2\\xd4\\x20\\xf8\\xc0\\x01\\x41\\x16\\xb1\\xf7\\xa5\\xc0\\xf6\\x99\\x62\\x5c\\\r\n\\x25\\x56\\x35\\x4a\\x94\\xa2\\x3c\\x46\\x55\\x4a\\xbf\\x21\\xb4\\x05\\x18\\x77\\\r\n\\x34\\x75\\x75\\x19\\x24\\x0c\\xc8\\x35\\xf1\\xb7\\x18\\xb8\\x5b\\x00\\x01\\x80\\\r\n\\x68\\xa3\\x82\\x74\\xb8\\x1b\\xa9\\x90\\xd6\\xfc\\xd1\\x4e\\xf0\\xb8\\x99\\x64\\\r\n\\x08\\x10\\xa3\\x73\\xe3\\xdc\\xf6\\x04\\x81\\xc0\\xc2\\xd9\\xf1\\x01\\xc5\\x6a\\\r\n\\x54\\x0f\\x64\\x80\\x87\\x53\\x2a\\x0c\\x3d\\x99\\x85\\xb8\\x67\\xb3\\xe4\\x55\\\r\n\\x74\\xae\\x8a\\x46\\xd0\\x22\\x74\\x84\\x22\\xe3\\xbc\\x2c\\x1d\\x01\\xf0\\x14\\\r\n\\xd9\\xaf\\xf2\\x27\\x66\\x94\\x50\\xaf\\xea\\xa1\\x15\\xd0\\xb0\\xbc\\x35\\x50\\\r\n\\x33\\xea\\x7b\\x61\\x92\\xe0\\x8c\\x01\\x10\\x5e\\x01\\xf8\\x82\\x64\\xb7\\xe5\\\r\n\\x51\\x86\\x7b\\xa0\\x7e\\x21\\x8a\\x00\\xf2\\x34\\x35\\xb7\\xa6\\x69\\x9a\\x3a\\\r\n\\x82\\x09\\x78\\x07\\x9d\\x9e\\xd6\\x48\\x39\\x05\\xc2\\x69\\x06\\xe9\\x6d\\xfa\\\r\n\\x8c\\x08\\x00\\xd2\\x81\\xd3\\xda\\x00\\x4d\\x5d\\x53\\x6d\\xe7\\x40\\xb4\\x4b\\\r\n\\x82\\x89\\x57\\x65\\x79\\x5a\\xd7\\xd8\\x4e\\xc8\\x90\\x8d\\x3b\\x1e\\x0c\\x20\\\r\n\\x91\\xcb\\x0f\\x37\\xb4\\xa5\\x5a\\xcd\\x18\\xe3\\x2b\\x8e\\x44\\x3e\\x20\\x92\\\r\n\\xb2\\x28\\xd0\\x51\\x2b\\xc7\\x30\\x8d\\x37\\xde\\x33\\x2c\\x16\\xeb\\x5f\\xdb\\\r\n\\x40\\x60\\x83\\x71\\xd2\\xc4\\x2e\\x89\\x00\\x8a\\xa4\\x9b\\x80\\xe2\\x0c\\x50\\\r\n\\xba\\x60\\xd9\\x76\\x92\\xa1\\x98\\xde\\x81\\xfa\\x4e\\xcc\\x9c\\x7c\\x86\\x20\\\r\n\\x06\\xb1\\x1f\\x02\\x61\\x05\\xe8\\x05\\x84\\x68\\x04\\x07\\xd4\\xf7\\xd5\\xeb\\\r\n\\xf2\\x41\\x26\\x52\\x54\\x08\\xe9\\x22\\x48\\x58\\xa0\\x2f\\x5b\\xa8\\x04\\x02\\\r\n\\xd4\\x8d\\xe1\\x01\\x54\\xb8\\x95\\x0e\\x07\\x6c\\x4b\\xbc\\xc0\\xf1\\x0b\\x11\\\r\n\\x8e\\x5e\\xd2\\x21\\xee\\x7a\\x6a\\xd0\\x50\\xf6\\xbd\\x95\\x2c\\xc6\\x94\\xc5\\\r\n\\xba\\x27\\x72\\xbb\\xe4\\x63\\xe0\\x09\\xf7\\x1c\\xd6\\x18\\x28\\x1c\\x04\\x0c\\\r\n\\xd4\\x84\\xc7\\xb6\\x5b\\x1b\\x65\\xb5\\x7e\\xc4\\x8a\\x60\\x64\\x46\\x31\\xb4\\\r\n\\x0a\\x82\\x01\\xe0\\x1e\\x0f\\xea\\x72\\xa5\\xbe\\x29\\x8a\\x6e\\x50\\x72\\x45\\\r\n\\x5c\\xd9\\x8e\\xa0\\x65\\x5e\\xc7\\xa8\\xd8\\xc6\\x86\\xc3\\x68\\x6d\\xbc\\x08\\\r\n\\x40\\x7f\\x14\\xa9\\x40\\x90\\xe0\\xa0\\x38\\x2e\\xdc\\x2c\\x87\\xa7\\x1d\\x21\\\r\n\\x84\\xc7\\x0c\\x4e\\x28\\x97\\x2b\\x70\\x93\\xc9\\xd2\\x8a\\x95\\x2f\\x50\\x9f\\\r\n\\x4e\\xde\\x3b\\x91\\x5f\\x5b\\x23\\x51\\x04\\x5c\\x03\\xf4\\x08\\x16\\xe0\\x37\\\r\n\\xe5\\x95\\xdd\\x90\\x00\\x85\\x03\\x06\\x56\\xec\\x37\\x71\\x0e\\x8a\\xea\\xd9\\\r\n\\xa1\\x17\\xe8\\xb4\\x2a\\x24\\xfa\\x70\\x9f\\xaf\\x22\\xc2\\x8e\\xa5\\x4b\\x67\\\r\n\\x30\\x62\\xdb\\x31\\x80\\x6b\\x52\\x08\\xdd\\x72\\x95\\x09\\x68\\x50\\x99\\x42\\\r\n\\x52\\xe9\\x00\\xc7\\x87\\x55\\xca\\xc7\\x74\\x46\\x0c\\x00\\x79\\x60\\xfc\\x30\\\r\n\\x15\\x34\\x3d\\x68\\x88\\x7d\\x25\\x8e\\x7d\\xa2\\x06\\x57\\x0c\\xba\\x14\\x82\\\r\n\\x04\\x61\\x34\\x5a\\xa0\\x46\\x7d\\x90\\x7d\\x31\\x55\\xb9\\xe0\\x79\\xb8\\x41\\\r\n\\x28\\x81\\x2c\\xf4\\x66\\x33\\x5f\\x6a\\x71\\x97\\x2f\\x64\\x0e\\x60\\x5d\\x20\\\r\n\\xa2\\xc6\\x7e\\x92\\xdd\\xea\\x08\\x81\\xa8\\x49\\x3d\\x47\\xf8\\x70\\xc2\\x62\\\r\n\\x21\\xa4\\xa3\\x0d\\xb6\\xad\\x16\\x87\\x5e\\x95\\x9d\\x6c\\xbe\\xdf\\x51\\x32\\\r\n\\x1e\\x82\\x14\\x93\\xe5\\x97\\x31\\xf0\\xad\\x31\\xa5\\x52\\xaf\\xe1\\xbd\\x41\\\r\n\\x84\\xf8\\x1f\\x14\\x9a\\x67\\x41\\x86\\x3d\\x71\\x01\\x47\\x7d\\xd1\\x8a\\x32\\\r\n\\x7c\\xc2\\xf1\\x99\\xb7\\x4a\\x28\\xa9\\xc4\\x6c\\x18\\xb3\\x7e\\x84\\x1a\\x52\\\r\n\\x2d\\x99\\x08\\x60\\x1f\\x0b\\xa0\\x62\\xb0\\xe4\\x93\\x68\\xd6\\x32\\x26\\xf7\\\r\n\\x08\\x6e\\x68\\x17\\x38\\xbe\\x64\\x17\\x1f\\x8d\\xb4\\xe6\\x90\\xed\\xa3\\x32\\\r\n\\x7b\\xb5\\x13\\x2d\\xed\\x15\\x9e\\x92\\x00\\x49\\x4e\\x20\\x42\\x06\\xd0\\x8a\\\r\n\\x17\\x1b\\x4f\\x1e\\x78\\x40\\xfd\\xbc\\x46\\x7e\\x82\\xce\\x9c\\x5c\\x44\\x1a\\\r\n\\x39\\xa0\\x12\\x21\\x09\\xa2\\x2b\\x87\\x00\\xc1\\x17\\xec\\x16\\x90\\xc8\\x1f\\\r\n\\xbe\\xdd\\xc6\\x17\\xbf\\x62\\x80\\xd2\\x4e\\x67\\x0f\\xf2\\x7f\\x61\\x0d\\x25\\\r\n\\x30\\x0e\\x68\\x58\\xa4\\x46\\xea\\x80\\x10\\x64\\x32\\xb4\\xbc\\x11\\xc5\\x0d\\\r\n\\x4d\\xda\\x87\\x56\\x12\\x50\\xe1\\xec\\x77\\xd4\\x09\\x8c\\x0d\\x69\\x45\\x2a\\\r\n\\x3b\\x8d\\xcc\\x2f\\x04\\x5d\\x6e\\xc6\\xe6\\x30\\xcf\\x9b\\x7b\\x02\\xa4\\x04\\\r\n\\x40\\x23\\xfe\\x20\\xa6\\xbe\\xdc\\xc9\\x14\\x04\\x24\\x9e\\x39\\xed\\x01\\xc8\\\r\n\\x12\\xa9\\x68\\xc6\\x13\\x09\\xf4\\x20\\x1d\\x2e\\x01\\xfb\\x08\\x42\\xc4\\x3c\\\r\n\\xab\\x1c\\x6e\\x04\\x02\\x40\\x5a\\x9f\\x5e\\xf8\\x27\\x01\\xbd\\x21\\x81\\x90\\\r\n\\xaa\\x50\\x18\\xe8\\xe1\\x39\\xe9\\x0e\\x30\\x56\\x1a\\x75\\xa4\\x69\\x2e\\x45\\\r\n\\xea\\x67\\x8f\\xa9\\xe8\\x97\\xc2\\x47\\x80\\x09\\xe4\\xe5\\xa3\\x27\\xb9\\xa9\\\r\n\\x4d\\x1e\\x6b\\x94\\xba\\x66\\xae\\x18\\xad\\x4f\\xb9\\x11\\x7c\\x28\\xee\\xbb\\\r\n\\x33\\x36\\xb5\\x70\\x06\\x7b\\x5a\\xd9\\x2c\\xc4\\x52\\x2d\\xc8\\x42\\x70\\x4a\\\r\n\\x80\\x5f\\x1a\\xc9\\x0c\\xba\\xa3\\x41\\x69\\x4f\\xcc\\x57\\x9f\\x73\\x09\\xc9\\\r\n\\x5a\\x29\\x63\\xb1\\xe4\\x0b\\xd7\\x31\\x01\\x22\\x9f\\xd4\\x34\\xe6\\xd6\\x95\\\r\n\\xaf\\xda\\x00\\xdb\\x8a\\x80\\x68\\x5e\\x46\\x04\\xe8\\x04\\x07\\x59\\xad\\x28\\\r\n\\x0c\\x49\\x59\\x4c\\x9a\\x40\\x6e\\x8b\\x8a\\xe2\\x8e\\x96\\x8c\\x17\\xbf\\xb0\\\r\n\\xde\\xe8\\x4a\\x5c\\x61\\xea\\xa4\\xfe\\xef\\x47\\xb4\\xb0\\x3a\\xc2\\x5b\\x37\\\r\n\\xb0\\xcf\\x42\\x08\\x15\\x84\\x89\\x9d\\x20\\x0f\\x89\\x51\\xb6\\xdd\\x18\\x81\\\r\n\\xef\\x0f\\x14\\xb2\\xf0\\x15\\xf2\\xe3\\x8a\\x13\\x82\\x4a\\x11\\x04\\x64\\xa0\\\r\n\\xd6\\xf4\\xac\\x3c\\x2a\\x0e\\xe9\\xcf\\x27\\x2c\\x4e\\x52\\x6f\\x96\\x8a\\x43\\\r\n\\x25\\x4e\\x0b\\xe5\\xa5\\x36\\x72\\xb9\\x0d\\x10\\x15\\x51\\x0f\\x41\\xc9\\x86\\\r\n\\x43\\xc4\\x36\\xfe\\x83\\x65\\x09\\x14\\xee\\x85\\xb0\\x91\\x72\\x74\\x04\\x04\\\r\n\\x51\\xd8\\x4e\\x0f\\xd3\\xbb\\x03\\xc2\\xcb\\xe8\\x04\\x3c\\x19\\x25\\x41\\x13\\\r\n\\x34\\xa5\\x6d\\x61\\x42\\xe6\\x81\\xec\\x82\\x7c\\x04\\x80\\x06\\x47\\x8c\\x82\\\r\n\\xc1\\x4b\\x6a\\xa4\\x5e\\x64\\xa5\\xa4\\x15\\x14\\x6e\\xaf\\x3c\\x98\\x07\\x60\\\r\n\\xdb\\x00\\x25\\x86\\x3f\\xf6\\xf5\\xc2\\x55\\xe0\\x95\\x18\\x4c\\xd0\\x11\\x18\\\r\n\\xd5\\x0f\\x31\\x05\\x95\\x65\\xb9\\x23\\xfb\\xca\\xb2\\x0b\\x1d\\xa2\\x11\\x79\\\r\n\\x72\\x76\\x21\\xd0\\xfd\\x82\\xc6\\x26\\xae\\x21\\x37\\x14\\xe2\\x0e\\x9f\\xc1\\\r\n\\xa6\\xfd\\x89\\x41\\x5c\\xa1\\x86\\x3b\\x8f\\x12\\x2a\\x96\\xf8\\x5d\\x4e\\xda\\\r\n\\xfe\\xc6\\x21\\x45\\x43\\x12\\xbb\\x60\\x39\\x11\\x17\\xea\\x30\\x1f\\x44\\x37\\\r\n\\xcc\\x4b\\x87\\xb4\\x03\\xb2\\xe1\\x85\\x8e\\x82\\xb9\\x4d\\xaa\\xad\\x87\\x0a\\\r\n\\x8b\\xd0\\x7f\\x5d\\x04\\x56\\xa0\\x39\\x2e\\xa8\\xaf\\xf6\\x9d\\xcb\\x2c\\x73\\\r\n\\x9a\\x1a\\xb6\\x24\\x73\\x6f\\x02\\x8a\\x52\\xdb\\x24\\x04\\x12\\x4b\\x57\\xd7\\\r\n\\xec\\x7f\\x6d\\x04\\x69\\x9c\\xa2\\x85\\xe0\\x6d\\x74\\x22\\x4f\\x6a\\xcd\\x5a\\\r\n\\x45\\x01\\xf2\\xa4\\x96\\x23\\x41\\x74\\x69\\x32\\x00\\x79\\xb1\\x0e\\x25\\xc7\\\r\n\\x8f\\x62\\x66\\x46\\xf1\\x1d\\x23\\x46\\xe6\\x93\\x57\\x45\\xd8\\x1e\\x01\\x31\\\r\n\\x8a\\x22\\x50\\x84\\xcb\\x1c\\x40\\xee\\x0f\\x30\\x72\\xe0\\x29\\x94\\xd0\\xd1\\\r\n\\x91\\x0e\\x78\\x9b\\xb6\\xac\\x11\\xd3\\xaa\\x2c\\x61\\x3f\\xc5\\xdf\\xc7\\xf3\\\r\n\\xdd\\x9e\\x5b\\xea\\x58\\x02\\xeb\\xe6\\x19\\x06\\x8a\\x72\\x60\\x60\\x88\\x0a\\\r\n\\xac\\x02\\xea\\x73\\x85\\x43\\xd2\\x1a\\x93\\xf6\\xb1\\x7b\\x29\\x25\\xd1\\xed\\\r\n\\x50\\x5c\\x8e\\xad\\x25\\xf0\\xc9\\x5a\\x85\\x64\\x1e\\xf6\\x90\\x4d\\xfa\\x89\\\r\n\\x0c\\xdd\\x56\\x01\\x97\\x97\\x25\\x9d\\x45\\x12\\x4d\\x15\\x46\\x82\\xa1\\x7c\\\r\n\\x69\\xe3\\x11\\x79\\x45\\x41\\x9c\\x53\\xa9\\x2e\\xb5\\xbe\\x45\\xd8\\x30\\xbd\\\r\n\\x26\\x10\\x92\\x56\\x36\\xdc\\xa1\\xa4\\x66\\x14\\xa3\\x97\\x57\\xd6\\x70\\x98\\\r\n\\x20\\xa8\\x51\\xea\\x49\\x39\\xb4\\x46\\x41\\x60\\xd5\\xa6\\x00\\x0a\\x4f\\x10\\\r\n\\x6c\\x80\\xa8\\x02\\xbb\\xf4\\x9c\\xd2\\x00\\x4e\\xc0\\xa8\\xca\\x9b\\xee\\x94\\\r\n\\x8b\\x2b\\x0d\\x1d\\x9c\\xb5\\xc6\\x79\\x64\\x3f\\xc7\\x33\\x0a\\x09\\xdd\\x4a\\\r\n\\xa9\\xf4\\xad\\xc9\\xa1\\x51\\x98\\xbc\\x22\\x3e\\x50\\x92\\xe5\\xa2\\x39\\x89\\\r\n\\x62\\x12\\xaa\\x29\\xc2\\xb6\\x6e\\x8a\\x0b\\xfc\\x6b\\x91\\xca\\xdc\\x1a\\xe9\\\r\n\\x5e\\xb9\\x83\\x76\\xb3\\x89\\xc7\\xf0\\x9e\\xf8\\x09\\xb1\\xe8\\xcf\\xfe\\x89\\\r\n\\x7f\\xc2\\x97\\x0e\\xc4\\x3e\\x8b\\x41\\x8c\\x68\\x08\\xca\\xe4\\x83\\x8a\\x91\\\r\n\\x8d\\xe5\\x64\\xa4\\xe4\\x82\\x0f\\x98\\x5b\\x63\\x4a\\x07\\xf6\\xdd\\xba\\x2f\\\r\n\\xec\\x2c\\x54\\xbe\\x18\\x43\\x3d\\xc8\\x87\\x42\\xa5\\x05\\x88\\xc5\\xf8\\x70\\\r\n\\x83\\x2a\\x47\\xa0\\x13\\x40\\xcc\\x40\\x53\\x46\\x25\\xa4\\x4e\\xc9\\x6a\\x5a\\\r\n\\x6d\\x71\\xa9\\x25\\xb8\\xf8\\x81\\x65\\x1d\\x8c\\x56\\x72\\xd6\\xd0\\x8a\\x77\\\r\n\\x13\\x24\\xb4\\x57\\xeb\\xf7\\x77\\x40\\x14\\x9a\\xa9\\x49\\xf0\\xa1\\x01\\xf4\\\r\n\\x80\\x17\\x4a\\x99\\x25\\x4c\\x3b\\x27\\xb0\\x84\\x42\\xd5\\x01\\x15\\xe1\\xff\\\r\n\\x00\\x45\\x5b\\xb2\\xec\\x64\\x60\\x05\\x7d\\xbc\\xf3\\x34\\xc6\\x38\\xa2\\x96\\\r\n\\x19\\xd4\\x10\\xb4\\x43\\xcc\\x12\\xa5\\x9f\\x07\\x88\\x34\\x46\\x33\\xed\\xe2\\\r\n\\x4b\\x7c\\x0c\\x1b\\x91\\x34\\x07\\x46\\x89\\xc6\\x72\\x3b\\x6a\\xe9\\x01\\x11\\\r\n\\xe1\\xe4\\xba\\x0b\\x0d\\x2e\\xb5\\x14\\x5b\\x54\\xa7\\x4c\\xa5\\x23\\x9a\\xe9\\\r\n\\xa1\\x8b\\x11\\x7f\\x1a\\x03\\x42\\x7e\\xaa\\xcf\\x29\\x1a\\x72\\xf8\\x4e\\x71\\\r\n\\x9a\\xe8\\x90\\x35\\x92\\x7e\\xe2\\xc3\\xac\\x64\\xcc\\x12\\x5e\\xfe\\x4f\\x24\\\r\n\\x00\\x4e\\xd3\\x07\\x13\\x3e\\x87\\x54\\x39\\x87\\x41\\x93\\xaf\\x80\\xfc\\xae\\\r\n\\x10\\x58\\x23\\x39\\x8e\\x57\\x8a\\x4a\\xc1\\x66\\xba\\x84\\x24\\x27\\x90\\xa2\\\r\n\\x03\\x6c\\xab\\x5a\\x28\\x01\\x52\\x1b\\xc8\\x89\\x82\\xd5\\x0a\\xb4\\xa9\\xe5\\\r\n\\xc7\\xa9\\x4a\\x71\\x3b\\x7e\\x49\\xc8\\x5e\\xf5\\x5d\\x47\\xc5\\x2b\\xaa\\xba\\\r\n\\x75\\x6a\\x0b\\x1a\\x00\\x03\\xba\\x87\\x43\\x84\\x86\\x91\\xc7\\xb8\\x22\\xae\\\r\n\\xdf\\x65\\x1b\\x3c\\x2c\\xc8\\x28\\xa8\\xfe\\x98\\x20\\x10\\x24\\x5d\\x9b\\xfa\\\r\n\\x80\\xea\\xab\\x0e\\x85\\x90\\xc8\\x31\\x47\\x26\\x13\\xcd\\x4f\\x3a\\x92\\xb8\\\r\n\\x19\\x18\\x29\\xd1\\x0e\\x14\\x76\\x4b\\x52\\x94\\x6b\\x7d\\xe7\\x12\\x7c\\x95\\\r\n\\xc8\\x6a\\x9b\\x0c\\xe4\\x54\\x1e\\x66\\x8a\\x1a\\x0f\\x03\\x8a\\x2e\\xe3\\xad\\\r\n\\x73\\xb6\\x44\\xca\\xe0\\xb5\\x4f\\xaa\\x8f\\x05\\x67\\x55\\xed\\x70\\x92\\x39\\\r\n\\x31\\x1e\\x22\\x8c\\x07\\xa6\\xe9\\x11\\x52\\x7d\\x18\\x4e\\x92\\xda\\xca\\xe4\\\r\n\\x22\\x02\\xa5\\x42\\xa6\\x00\\x59\\x32\\x83\\x7d\\x16\\x5b\\x25\\x3e\\xe0\\x2e\\\r\n\\xcd\\xcc\\x3a\\xeb\\x4f\\x5b\\x21\\x6f\\x36\\x85\\x27\\xc5\\xef\\x46\\xb0\\x0d\\\r\n\\x6e\\xe5\\xc2\\x5b\\xbd\\x01\\x5e\\x7f\\x1e\\x1a\\xfa\\x82\\x9e\\x0d\\x68\\x11\\\r\n\\xb4\\xf2\\x25\\xd2\\xb1\\x29\\x02\\x4c\\x14\\xec\\x20\\x83\\x60\\x6d\\x01\\x64\\\r\n\\xb1\\x67\\xb1\\x9a\\x2b\\x39\\x72\\x14\\x4c\\xf7\\x15\\xad\\xcb\\xc1\\xd7\\xc4\\\r\n\\x98\\x94\\x57\\x38\\xad\\x2b\\x5f\\x88\\x16\\xb2\\x00\\x5b\\x0d\\x11\\xc5\\xd5\\\r\n\\x60\\x74\\x49\\x67\\xb6\\xe3\\x5d\\xe9\\x24\\x02\\x99\\x96\\x3f\\x10\\x60\\xfd\\\r\n\\x71\\xec\\xd4\\x21\\x81\\x4e\\xa9\\x90\\xe4\\x8e\\x20\\xe1\\xe4\\xea\\x97\\xb2\\\r\n\\xd9\\x3c\\x1e\\x09\\x3f\\xe8\\x17\\xbd\\xc0\\x38\\xbb\\x91\\xcc\\xd7\\x11\\x83\\\r\n\\xe9\\x90\\x38\\x13\\xf0\\x54\\x0d\\x42\\xeb\\x39\\x78\\x41\\xc9\\xae\\x2c\\x9e\\\r\n\\x1c\\x92\\x03\\x05\\xca\\x00\\xaf\\x79\\xf9\\xfa\\x2e\\x32\\xd4\\xf8\\x4e\\xed\\\r\n\\x59\\x87\\x3c\\x04\\x87\\x8c\\x28\\x2c\\x95\\x5e\\x6d\\xdd\\xe8\\x30\\x7c\\xc2\\\r\n\\x61\\x55\\x8a\\x85\\x6e\\x82\\x6b\\x08\\x00\\x04\\x82\\x8a\\xa0\\x27\\xd3\\xa3\\\r\n\\xe2\\x01\\x75\\x11\\x19\\x26\\x41\\x04\\x85\\x54\\x29\\xb3\\x73\\x54\\x41\\xfa\\\r\n\\x6c\\x69\\x61\\xe0\\xa6\\x83\\xe3\\x2b\\xc1\\x12\\x35\\x40\\xa0\\xbd\\x4c\\x89\\\r\n\\x3d\\xd1\\x2c\\x43\\x28\\x7c\\xc5\\x51\\xc7\\x20\\x00\\x24\\xd4\\x7b\\x14\\xc8\\\r\n\\x90\\x48\\x8e\\xf0\\x02\\xe2\\x32\\x0b\\x23\\xdd\\xcd\\x6c\\x08\\x5b\\xfb\\xd1\\\r\n\\x0a\\x05\\x68\\x4b\\xbf\\xa4\\xe8\\x63\\x63\\xcd\\xab\\x18\\x24\\x85\\xa1\\x0d\\\r\n\\x92\\xe2\\x20\\xb9\\x5d\\x21\\x44\\xdf\\x0e\\x7b\\xdb\\x89\\xe4\\x0b\\x6e\\x68\\\r\n\\xc8\\xcb\\x75\\x3d\\x05\\xa3\\xca\\xcd\\xdd\\x55\\x8b\\x9d\\x01\\xae\\x91\\x28\\\r\n\\x80\\x95\\x70\\x46\\x5e\\xb4\\xb2\\x0a\\x4c\\xdd\\xb8\\x52\\xc1\\x82\\x88\\x4d\\\r\n\\xa6\\x38\\x8e\\x3d\\x0e\\xc5\\x08\\x01\\x2e\\x37\\xf2\\x99\\x1f\\x9d\\xc2\\x25\\\r\n\\x61\\x6b\\xf5\\x10\\xa8\\x8c\\x6d\\xb1\\x03\\xb0\\xa0\\x20\\xf7\\xf2\\xdd\\x14\\\r\n\\x11\\x96\\xf2\\xae\\x1c\\x5a\\x81\\xe5\\x22\\xa5\\xba\\xca\\x92\\x72\\x2a\\x2d\\\r\n\\x81\\x3a\\xb0\\x79\\xc1\\x68\\xe2\\x31\\x80\\x55\\x01\\x14\\x33\\x30\\x95\\x9c\\\r\n\\xe2\\x7c\\xdc\\x17\\x24\\x50\\x2c\\xc1\\x9e\\xa4\\x48\\x68\\xd5\\xe5\\x21\\x34\\\r\n\\x31\\x02\\xa8\\xc9\\x08\\x06\\x51\\x65\\xfd\\x38\\x02\\x48\\x80\\x31\\xfe\\xfc\\\r\n\\xe2\\xe8\\x54\\xd5\\x65\\x0c\\x10\\x67\\x28\\xe1\\xd1\\x22\\x20\\x23\\x97\\xef\\\r\n\\x22\\x01\\x48\\x75\\x82\\x27\\x3e\\xe8\\x33\\x27\\x1a\\x09\\x15\\xa9\\x02\\x81\\\r\n\\x84\\x4a\\x12\\x01\\x01\\xc4\\xea\\x42\\x46\\x2b\\x81\\x56\\x63\\x15\\xc2\\x40\\\r\n\\x86\\x94\\xb4\\x41\\x8d\\x7f\\x64\\x9c\\x00\\x4e\\x38\\x99\\x2b\\x97\\xdd\\x85\\\r\n\\x72\\x95\\x4c\\xc8\\x83\\x08\\x4c\\x8a\\x36\\xd4\\xec\\x59\\x05\\x6c\\x81\\x67\\\r\n\\x14\\x54\\xb6\\xd3\\x70\\xb2\\x85\\x2a\\x1a\\xd8\\x13\\xa4\\x9e\\xa7\\xcb\\x74\\\r\n\\x96\\x7c\\x49\\x12\\xe6\\xa5\\x40\\x5e\\xb9\\x76\\xb0\\x85\\xed\\xb7\\xee\\x6f\\\r\n\\x0b\\xc0\\xae\\xe4\\x02\\xbd\\x9a\\x93\\x7e\\xd8\\xe9\\xa6\\x20\\x58\\x4f\\x60\\\r\n\\xc6\\x33\\x65\\x2e\\x20\\x81\\x7c\\xc0\\xce\\x51\\x98\\x58\\x19\\x2a\\x71\\xf1\\\r\n\\x48\\x10\\x99\\x34\\x63\\x04\\x93\\x38\\x74\\x68\\x03\\x48\\x62\\x16\\xfc\\x15\\\r\n\\x2d\\x55\\x50\\xd9\\xff\\x00\\x06\\x09\\x14\\x02\\x2b\\x4c\\xa3\\x44\\xb8\\xd8\\\r\n\\x9d\\x12\\xf7\\xee\\x09\\x83\\x81\\x12\\x9a\\xc8\\x91\\x0d\\x84\\x78\\x1d\\x4f\\\r\n\\x04\\x54\\x1b\\x30\\x84\\x57\\xb2\\xbc\\xf2\\x6f\\x5d\\xa4\\x02\\xca\\x2a\\xe2\\\r\n\\xc9\\x04\\x43\\xc2\\x8c\\xe1\\xd2\\xbe\\xa5\\x8e\\xb3\\x9f\\x2c\\xc8\\x8d\\x1e\\\r\n\\x9e\\xa0\\x53\\xd8\\x40\\x70\\x42\\x55\\x96\\x5b\\xf4\\x88\\x47\\x96\\x4e\\x39\\\r\n\\xf7\\x3a\\x10\\x2a\\x1d\\xc9\\x63\\xcf\\xf8\\x66\\x69\\x6c\\x03\\x85\\x46\\x42\\\r\n\\x0b\\x79\\xe5\\x8f\\x72\\xc8\\x09\\x6d\\x1c\\xb9\\x90\\x80\\x86\\x05\\x24\\xb2\\\r\n\\x42\\x8d\\xa4\\xaa\\x95\\x55\\xbc\\xfa\\xdf\\x54\\x4a\\x44\\xc2\\x0e\\x05\\xdc\\\r\n\\x9c\\x94\\x3a\\xcc\\x56\\xb2\\x9d\\x16\\x85\\x29\\x20\\x9a\\x6d\\x0f\\xa1\\x3e\\\r\n\\x81\\xcf\\x6a\\x44\\x5e\\x59\\xf6\\x06\\x52\\xec\\x34\\x58\\xe2\\xc3\\xf8\\x3a\\\r\n\\x1d\\x50\\x6d\\x03\\x03\\xf0\\x67\\xe8\\x02\\xb1\\x80\\x8a\\x31\\x0a\\x5f\\x66\\\r\n\\x43\\x20\\x14\\x59\\x26\\x61\\x51\\x07\\x0f\\xa5\\x01\\xfc\\x08\\xf8\\x92\\x20\\\r\n\\x11\\x41\\x54\\x50\\x18\\xb7\\xf1\\x6c\\xe2\\x8b\\x04\\x4d\\x89\\x68\\xf6\\x61\\\r\n\\xe1\\xd1\\xde\\x02\\x02\\xde\\x67\\x35\\xb5\\x86\\xcb\\xd6\\x59\\xe8\\x78\\x5a\\\r\n\\x8c\\x05\\xa0\\x8f\\xb0\\x94\\x52\\x84\\x70\\xb3\\xe8\\x01\\x82\\x1c\\x1b\\x6c\\\r\n\\xc4\\xe9\\xa5\\x41\\x74\\x0c\\xd0\\xb2\\xa2\\x9b\\x91\\xf8\\x1a\\xa6\\xe3\\x94\\\r\n\\x80\\xb0\\xaa\\xb5\\x12\\x37\\x5c\\xda\\x3f\\xc6\\x56\\xcd\\x14\\x8c\\x0e\\xc4\\\r\n\\x48\\x4f\\x06\\xc6\\x84\\x87\\x4e\\x5c\\xdc\\x85\\x61\\xa1\\xb1\\xc6\\xe4\\xa9\\\r\n\\x00\\x10\\x27\\x44\\x93\\xc2\\x0a\\x25\\x5b\\xee\\x35\\x51\\x1e\\x50\\x50\\x17\\\r\n\\x20\\x90\\x42\\x94\\x5b\\x1a\\x88\\xd6\\x0b\\x3e\\x5d\\xe0\\x4b\\x25\\x1b\\x33\\\r\n\\x57\\x43\\x4b\\x85\\x87\\x2c\\x1e\\x83\\xcc\\x08\\x8c\\x38\\x0d\\x51\\x4a\\xa7\\\r\n\\x4f\\xb7\\xb7\\x13\\x10\\x2a\\x55\\x44\\x10\\x19\\x39\\xc9\\x81\\xf2\\x37\\xc6\\\r\n\\xcc\\xc2\\x12\\x16\\x25\\xe1\\x3f\\x26\\x1c\\x2c\\x22\\x26\\x46\\x5b\\x1f\\x36\\\r\n\\x37\\xa4\\x9a\\x72\\x19\\x41\\x2e\\x83\\x30\\x4b\\x03\\xe3\\xc4\\x19\\x3b\\xe3\\\r\n\\x7d\\x08\\xe3\\x6a\\xc7\\x2b\\xb7\\x1c\\x1e\\xd5\\xcc\\xb2\\x5c\\x33\\x06\\xe1\\\r\n\\x6b\\xa1\\x0d\\x8c\\xb2\\x45\\x39\\x63\\xc2\\x5b\\xe7\\x3d\\xdc\\xdb\\xba\\x4a\\\r\n\\x21\\x38\\x61\\xa9\\x91\\xb9\\x5d\\x42\\x74\\x84\\x39\\xbe\\x88\\x1a\\x10\\x94\\\r\n\\xab\\x39\\x53\\x62\\x46\\x6f\\x89\\x0b\\xc3\\xe8\\x66\\x98\\x02\\xe2\\xeb\\x49\\\r\n\\x49\\xa4\\x15\\xb7\\x29\\x58\\x4b\\x3a\\x07\\xb3\\x50\\xf4\\x10\\x03\\x5d\\xdf\\\r\n\\xc7\\x38\\x7a\\x0b\\x30\\xd9\\x99\\xc2\\x60\\x54\\x00\\x6f\\xa4\\xdc\\x42\\x50\\\r\n\\xaa\\x18\\x4e\\xae\\x52\\x21\\xdf\\x21\\x8b\\x52\\x59\\xaa\\x07\\x95\\xf7\\xcb\\\r\n\\x00\\xb0\\x8a\\xd5\\xa2\\xbe\\x1e\\x00\\x21\\x1c\\x03\\x05\\xe3\\xae\\x55\\x02\\\r\n\\x03\\x1d\\x63\\xb8\\x00\\x90\\x44\\x7c\\x9a\\x55\\xbc\\xb1\\x7a\\x01\\xf0\\x13\\\r\n\\x2c\\xcb\\x79\\x04\\xfc\\x2c\\xb7\\x04\\xa4\\x60\\xe9\\x50\\xdf\\x0e\\xbc\\x00\\\r\n\\x59\\xf3\\x91\\xbc\\x51\\x34\\x70\\x11\\xb3\\x10\\xea\\x15\\x2e\\xc8\\x03\\x41\\\r\n\\xcb\\x85\\xcc\\x93\\x20\\xaa\\x51\\x4a\\x05\\x0a\\x05\\xc2\\xba\\x98\\x1a\\x39\\\r\n\\x01\\xa7\\xe8\\x9d\\x83\\xa0\\x99\\x60\\x74\\x29\\x60\\x40\\xac\\xe9\\xd3\\xcd\\\r\n\\x68\\x5b\\xa7\\x5e\\xcf\\x82\\x71\\xf9\\xfc\\x03\\x8b\\xe8\\xd4\\x69\\x6a\\xde\\\r\n\\x78\\x54\\xfe\\x50\\xbf\\x33\\x86\\x43\\x89\\xc2\\x05\\x5a\\x8b\\xdd\\xdc\\x07\\\r\n\\x2f\\x21\\xed\\x32\\xea\\xca\\x30\\x00\\x61\\x59\\x53\\xc1\\x34\\x52\\x6d\\x54\\\r\n\\x2a\\x1b\\xc0\\x84\\x46\\xa1\\x0a\\x20\\x6e\\x82\\xc1\\xae\\x73\\x40\\x89\\x77\\\r\n\\x7f\\xd9\\x65\\xbe\\x03\\x90\\x86\\x84\\xad\\x80\\xc1\\x58\\x64\\xf6\\x0c\\x1e\\\r\n\\xca\\x5e\\xac\\x11\\x61\\x49\\x49\\x11\\x5c\\x21\\x54\\x4f\\x8e\\x80\\x61\\xb0\\\r\n\\x2e\\x8b\\x3e\\xc7\\x87\\x05\\x69\\x51\\x19\\xa7\\x55\\xce\\x01\\xc0\\x6c\\x94\\\r\n\\x28\\xe4\\x40\\x5d\\x4f\\x85\\x1c\\x1c\\x3b\\xbb\\x27\\x56\\xdc\\x18\\x3a\\x91\\\r\n\\x7e\\x08\\x3e\\x59\\xa9\\x92\\xea\\x80\\xa5\\xf8\\x35\\x74\\xdd\\x84\\x5e\\xbb\\\r\n\\x56\\x60\\x5c\\xf9\\x3e\\x0a\\xf8\\xe0\\xbd\\x84\\x28\\x26\\xaa\\x7e\\x01\\xe8\\\r\n\\xdc\\x0d\\xcc\\xb0\\xbb\\x12\\x72\\x7d\\x94\\xe1\\xd5\\x21\\x02\\xd0\\xc4\\x25\\\r\n\\x24\\x03\\x5e\\x03\\xe5\\xf0\\xc4\\x49\\x32\\x82\\x5f\\x5c\\xdb\\x37\\x10\\x75\\\r\n\\xbc\\xcd\\x1c\\x4e\\x29\\x96\\x8d\\xc1\\x00\\x98\\x66\\x05\\x11\\xd1\\x27\\xec\\\r\n\\x70\\x00\\x2b\\x83\\x1e\\x87\\x00\\x30\\xe9\\x5a\\x2b\\xf6\\x69\\x20\\x6e\\x3d\\\r\n\\x49\\x83\\x16\\x02\\x07\\x21\\x71\\x7a\\xf4\\x1e\\x19\\x6b\\x44\\x23\\x40\\xc5\\\r\n\\x5f\\x22\\xfe\\x19\\x68\\x4e\\xc8\\xc2\\xea\\x3a\\x7c\\x5b\\x6a\\xab\\x4e\\x53\\\r\n\\xc2\\x3a\\xa0\\xe9\\xaf\\x45\\xf8\\x47\\x82\\x5a\\xba\\xb2\\xf6\\x17\\x90\\xd5\\\r\n\\x64\\xba\\x4e\\x1b\\x53\\xb9\\x86\\x0e\\xe3\\xa8\\x70\\x08\\x6f\\xa9\\x52\\x00\\\r\n\\xf0\\xa4\\x2d\\x31\\x4f\\x04\\xf2\\xa9\\xa1\\xc0\\xdd\\x36\\x81\\x21\\x84\\x4e\\\r\n\\x6a\\xcc\\x43\\xf1\\x55\\x52\\x66\\x1c\\xac\\x00\\x3d\\x0e\\x6c\\xba\\x50\\x52\\\r\n\\x76\\x17\\xe0\\x93\\x31\\xd4\\xcd\\x5e\\xc5\\x95\\xea\\xbd\\x8e\\xcc\\x94\\xc0\\\r\n\\x63\\xa5\\x1d\\x1b\\xa8\\x82\\x5b\\x5f\\x0e\\x25\\x6d\\x6b\\x2d\\x3c\\x8a\\xbb\\\r\n\\x21\\x21\\xf7\\x2c\\x51\\x01\\x93\\xfe\\x83\\xc5\\xd6\\x12\\xb0\\x79\\xcb\\x9b\\\r\n\\x18\\xad\\x61\\x5f\\x2e\\x20\\x39\\x81\\x1f\\x08\\x64\\x43\\x26\\x63\\xd6\\x8d\\\r\n\\x5a\\x25\\x48\\x08\\xc0\\x00\\x5a\\xaa\\xe0\\xb0\\xa5\\xcc\\x11\\x66\\xd9\\xbc\\\r\n\\x26\\xe1\\x71\\x16\\x91\\x31\\x0c\\xef\\x9b\\x58\\xb7\\xd5\\x27\\xec\\x19\\x62\\\r\n\\x00\\xe5\\xdd\\x5b\\x7c\\x7d\\x89\\x05\\x71\\x79\\x78\\x60\\x70\\xb2\\x12\\x60\\\r\n\\xc1\\x66\\x2d\\xec\\x26\\x88\\x76\\x15\\x78\\x12\\xbd\\x2a\\x26\\x22\\x48\\x07\\\r\n\\xba\\x2a\\xb2\\x2d\\x1a\\xb5\\x13\\x80\\xa5\\x27\\xe3\\xc8\\x50\\x58\\xa9\\x72\\\r\n\\x96\\x88\\x79\\xb9\\x75\\x04\\xfa\\xb4\\x60\\x3f\\x3d\\x02\\x4a\\xe2\\xa1\\x55\\\r\n\\x86\\x6e\\x96\\x97\\xce\\xa5\\xd4\\x5a\\x06\\x87\\x79\\x24\\x29\\x42\\x04\\xd8\\\r\n\\x78\\x11\\x26\\xee\\x83\\xea\\xa7\\x6e\\x2c\\xd8\\x15\\x1e\\x41\\x04\\x52\\x57\\\r\n\\x66\\xaa\\xa1\\xc2\\x20\\xc5\\x39\\xb6\\x88\\xc7\\xa4\\xbf\\xbd\\x6d\\x5f\\xd1\\\r\n\\xd7\\x9f\\xb0\\xc9\\xac\\x01\\x52\\xce\\x27\\x7a\\x88\\xb9\\x5c\\x91\\x83\\x72\\\r\n\\x5d\\x2a\\x6e\\x11\\x8f\\xbe\\xaa\\x8f\\x7a\\x0d\\x72\\x5c\\x92\\xe4\\xb6\\x3d\\\r\n\\xce\\x05\\xa2\\x15\\x51\\x49\\x86\\x18\\xf4\\x90\\x48\\xbc\\x7c\\x5e\\x70\\x34\\\r\n\\x24\\x08\\xe6\\x7c\\x1e\\x4c\\x9b\\x70\\x64\\x0f\\xca\\x53\\xfe\\x76\\xfc\\xba\\\r\n\\x12\\xec\\x90\\x9e\\x02\\xd8\\x01\\xef\\x07\\xb5\\x29\\xb4\\xc5\\x26\\x88\\x01\\\r\n\\x50\\x2a\\x9f\\xd6\\xea\\x05\\x66\\xdb\\xf6\\x67\\xbb\\x8b\\x2a\\xc4\\x30\\xd6\\\r\n\\x92\\x82\\x25\\x12\\x49\\xcd\\x0d\\x50\\x81\\x09\\x28\\x86\\x90\\x10\\x6a\\x68\\\r\n\\xc3\\x77\\x09\\x44\\x5f\\xc0\\x68\\x3a\\xf5\\x0c\\x49\\x12\\x03\\x04\\xd2\\x6b\\\r\n\\x31\\xa8\\xf2\\x77\\x6a\\xa6\\xfa\\x01\\xe1\\x02\\x05\\x7f\\x96\\x70\\x52\\x35\\\r\n\\x1e\\x82\\xd1\\x70\\x6a\\x7c\\x57\\xd7\\x1c\\x55\\x05\\xa8\\x48\\x86\\x65\\x08\\\r\n\\xd0\\x20\\xad\\x88\\xf0\\xb8\\x12\\xc6\\x0a\\x58\\x0f\\x2e\\x27\\x34\\x62\\x11\\\r\n\\x0d\\x14\\x8a\\xe4\\x61\\xc7\\x15\\x90\\x80\\x3b\\x28\\x74\\xaa\\x8e\\xe1\\x97\\\r\n\\xea\\xf6\\x02\\xa1\\xfe\\x60\\x8a\\x63\\xdd\\xc8\\xa1\\x90\\x85\\x56\\x9c\\xe4\\\r\n\\xda\\x27\\xa2\\xff\\x00\\xa7\\x7f\\x99\\xaa\\x19\\x25\\x78\\x56\\x02\\x66\\x3b\\\r\n\\x74\\xaa\\x04\\x00\\x0e\\x61\\xad\\x2a\\x4a\\xd6\\x0f\\x8e\\xad\\x7a\\xf9\\x1d\\\r\n\\xc1\\xea\\x8e\\xe1\\x2c\\x50\\xb1\\x45\\x6c\\x28\\x4f\\xe3\\x92\\xec\\x31\\x80\\\r\n\\xa6\\x03\\x17\\x91\\x09\\xab\\x48\\xb2\\x03\\xdf\\x52\\x71\\x15\\xe4\\xf6\\xda\\\r\n\\x3a\\xeb\\xe2\\x1c\\x76\\xec\\x81\\xcc\\x46\\x4f\\xcd\\xc9\\x06\\x8e\\xa5\\x24\\\r\n\\x08\\x00\\x28\\xba\\x0a\\xc6\\x36\\xf0\\x3a\\xfe\\x01\\x3e\\x0b\\x61\\x05\\x37\\\r\n\\x41\\x30\\x68\\xd2\\x05\\x0b\\x44\\xba\\x8a\\x12\\x3c\\x0f\\x69\\x2d\\x02\\x51\\\r\n\\x55\\x40\\xbd\\xe3\\x1d\\x77\\x29\\x26\\x33\\x0d\\x41\\x17\\x81\\x2c\\xa7\\xa3\\\r\n\\x1d\\x50\\x39\\xe0\\xcc\\x70\\xd2\\x13\\x0a\\x25\\xb0\\xbc\\x24\\x29\\xc1\\x29\\\r\n\\x45\\x58\\xa9\\x00\\x73\\x53\\xd9\\x14\\x18\\x88\\x46\\x43\\xfd\\x6a\\xaf\\x12\\\r\n\\xa2\\xe8\\x3f\\x40\\xbc\\xac\\xaa\\x4f\\x72\\x58\\x59\\xc9\\x25\\x0a\\xf1\\x67\\\r\n\\x24\\x0b\\x05\\x05\\x60\\x8a\\xc2\\xea\\x0c\\x11\\x13\\x6d\\x80\\x01\\x0a\\x01\\\r\n\\x0c\\xaf\\x3e\\x38\\x02\\x09\\x54\\x10\\x9f\\x6f\\x00\\xfc\\x03\\x98\\xd9\\x1e\\\r\n\\xb0\\xb8\\x5f\\xc5\\x0c\\x0a\\x60\\xa0\\x7f\\x03\\xf3\\xa0\\x88\\x28\\x23\\x3b\\\r\n\\x91\\x9c\\xfb\\xc8\\x5e\\x61\\x18\\x9e\\xb8\\x12\\xc8\\x80\\x81\\xec\\x37\\xad\\\r\n\\xd4\\x37\\xde\\x80\\xc2\\x44\\x8a\\xb1\\x30\\x2e\\xb3\\x41\\x82\\xb4\\x03\\xd9\\\r\n\\x8c\\x07\\x16\\x54\\xaf\\x14\\xcd\\x22\\x40\\x83\\xf0\\x53\\x39\\x6b\\xcb\\x08\\\r\n\\xc5\\xcd\\xa0\\x15\\xd0\\x3d\\x9a\\xc9\\x88\\xa8\\x46\\x18\\x16\\x02\\x3e\\xaa\\\r\n\\x62\\xb2\\x2f\\xa8\\xb3\\x52\\xd6\\xe7\\xc8\\x0a\\x2c\\x68\\x1e\\x59\\xfb\\x89\\\r\n\\xc7\\xfe\\x0c\\x36\\x78\\x6e\\x81\\x72\\x46\\x22\\x91\\x8a\\x61\\x5a\\x14\\xd7\\\r\n\\xbe\\x8e\\x55\\x2a\\xf9\\xdf\\x33\\x8b\\x42\\xcd\\xd2\\x88\\xfe\\x18\\x7a\\xdb\\\r\n\\x02\\x9d\\xe8\\xa5\\x9c\\x3c\\x72\\x56\\x61\\xe6\\x28\\xe1\\x51\\x2d\\x87\\x76\\\r\n\\xcb\\x0b\\x34\\xf7\\x21\\x0e\\xe6\\xf6\\x87\\xa9\\x18\\x81\\x3a\\x43\\x93\\xa5\\\r\n\\x4b\\x4e\\xe8\\x2e\\x25\\x98\\x47\\xde\\x1c\\xe2\\x4d\\xde\\x6c\\xff\\x00\\x5f\\\r\n\\x87\\x65\\x16\\x66\\x64\\x94\\x20\\x0b\\x48\\xa7\\x2c\\x99\\x13\\x6d\\x14\\x05\\\r\n\\x40\\xda\\x44\\xe0\\x9a\\xa6\\x51\\x0c\\x92\\x84\\x73\\x60\\xd9\\x62\\x94\\xa6\\\r\n\\x6a\\xa0\\x24\\x48\\x80\\x5c\\x08\\x06\\x93\\x58\\x56\\x38\\x07\\x1a\\x20\\x2a\\\r\n\\xa6\\x41\\xce\\x7c\\x1b\\x33\\x81\\x5c\\x8c\\x56\\xee\\x05\\xdd\\x44\\x3b\\x8b\\\r\n\\x55\\x40\\x01\\x49\\x9c\\x34\\x84\\xb4\\x0d\\x22\\x28\\x68\\xd4\\x0c\\x4b\\xd5\\\r\n\\xa1\\xd4\\xac\\x2d\\x88\\x14\\x46\\x08\\x0d\\x7c\\xa1\\x08\\x6a\\x7a\\x07\\x46\\\r\n\\x0a\\x40\\x5a\\x44\\x84\\xf8\\xce\\x08\\x05\\xbc\\x1a\\x24\\x6b\\x0e\\x1c\\x80\\\r\n\\x99\\xeb\\xd5\\xc9\\x76\\x7f\\x26\\x72\\xda\\xa8\\x82\\x21\\x5f\\xcc\\x24\\xa0\\\r\n\\x00\\x46\\x9e\\x63\\x11\\x7e\\xa7\\x7d\\x2b\\x05\\x22\\x47\\xc2\\x0a\\x71\\x7e\\\r\n\\x03\\x14\\x5a\\xf0\\x41\\x43\\xa2\\xf7\\x48\\x24\\x87\\x2e\\xba\\x48\\x85\\xe4\\\r\n\\xfc\\xf0\\xde\\xf4\\xd2\\x20\\x5e\\xe2\\x8d\\x72\\x5d\\x2f\\x83\\x46\\x01\\xe9\\\r\n\\x7b\\xa7\\x5a\\x56\\x42\\x78\\xe1\\x8e\\xf7\\x44\\x1a\\xf3\\xe1\\x21\\x63\\x82\\\r\n\\x1f\\x35\\x80\\x28\\xf0\\x24\\xeb\\x92\\x71\\x79\\x8a\\xc2\\x41\\xd6\\xe0\\xff\\\r\n\\x00\\x8b\\x20\\x43\\x72\\xb4\\x95\\x49\\x3b\\xf2\\xfd\\x8e\\x41\\x3f\\x92\\x1d\\\r\n\\xab\\x52\\xa4\\xfb\\x05\\xd4\\xa1\\x39\\x2d\\x1c\\x8c\\x15\\x5d\\xb9\\xa3\\x03\\\r\n\\x7c\\x49\\x42\\x2a\\xa4\\xb8\\xac\\xc8\\x4a\\x13\\xd9\\xa2\\x12\\x48\\x6a\\xa0\\\r\n\\xcc\\x6b\\x90\\xab\\xf8\\x27\\x81\\x42\\x36\\x2a\\xf8\\x56\\x8f\\x03\\x0e\\x02\\\r\n\\x27\\x6c\\x5e\\x3f\\xee\\x0e\\xa2\\x55\\x95\\xc4\\xb8\\x09\\x95\\x3f\\x83\\xcd\\\r\n\\xb6\\xf7\\x07\\x75\\x44\\x35\\xcb\\x78\\x58\\x65\\x40\\xf6\\x57\\xd9\\xe4\\xc8\\\r\n\\xa0\\xa0\\x12\\x4f\\x24\\x98\\xb5\\xb7\\xcc\\x87\\x0c\\x2c\\xc6\\xcb\\xe0\\x88\\\r\n\\x61\\x38\\x5a\\x5a\\xf1\\x45\\xb4\\xf0\\xa4\\xdc\\x08\\xda\\x19\\xa6\\xac\\x74\\\r\n\\x49\\xe2\\x70\\x24\\x0b\\x2a\\x90\\xff\\x00\\x01\\xf6\\x5a\\x7e\\x72\\xbe\\x5d\\\r\n\\x28\\xa0\\x00\\x88\\x84\\x97\\xc0\\x97\\x29\\xb4\\x8c\\x33\\x99\\x59\\x1b\\x4d\\\r\n\\x9c\\x8c\\xfd\\x50\\xd9\\x4d\\x10\\x1e\\xa4\\xf8\\x20\\x52\\xf1\\xde\\x08\\xaa\\\r\n\\x2d\\x1a\\x35\\x33\\x36\\x4a\\x8a\\x73\\xe7\\x89\\xc9\\x53\\xc9\\x04\\xed\\xdc\\\r\n\\x3e\\xf6\\x2a\\x68\\x81\\xc2\\x3b\\xae\\x1c\\x3b\\x4c\\x02\\x99\\x0b\\xa5\\x19\\\r\n\\x7f\\x9d\\xa1\\xaa\\xe3\\xc3\\x04\\x4e\\x77\\x35\\x1f\\xd8\\x53\\xd0\\x11\\xc1\\\r\n\\x17\\x04\\x6a\\x78\\x73\\x30\\xb4\\xfc\\x7b\\xa6\\x92\\x27\\x17\\x92\\x8a\\x40\\\r\n\\x68\\xd0\\x5b\\x50\\x9a\\x7c\\x2d\\x84\\x4b\\x62\\xb1\\x92\\xdc\\x93\\x8f\\x46\\\r\n\\x65\\x7c\\xdc\\xa2\\x32\\xd3\\xca\\xd4\\xfd\\x38\\x4c\\x02\\x1b\\x7c\\xbf\\x0c\\\r\n\\x06\\xf9\\x09\\x13\\xab\\xaf\\xc0\\x88\\xd8\\x91\\xeb\\xc3\\x89\\x05\\x1d\\x80\\\r\n\\x56\\x48\\x41\\x53\\x01\\x8b\\x83\\x5c\\x17\\x22\\xc3\\xb9\\xd3\\x72\\x11\\xeb\\\r\n\\x47\\x57\\x31\\xe4\\x1d\\x8a\\x91\\xf2\\xf0\\xb2\\x9e\\x99\\x00\\xb9\\xce\\x12\\\r\n\\x25\\x77\\x85\\xd6\\xfb\\x08\\x0f\\x24\\x4d\\xc5\\x1e\\x2f\\x84\\xe1\\x00\\x79\\\r\n\\x55\\x17\\x93\\x43\\x4e\\xd7\\x48\\x0a\\xac\\x82\\x68\\x48\\x31\\x67\\x33\\x88\\\r\n\\x95\\xcd\\x23\\x2c\\x10\\xd8\\x34\\x99\\x07\\x29\\x72\\x1a\\x8b\\x50\\x4c\\xe6\\\r\n\\x3a\\xae\\x96\\xb9\\x19\\x43\\x85\\x49\\x29\\x08\\x52\\x08\\x70\\x91\\x2c\\xec\\\r\n\\x0a\\x28\\xdb\\x22\\x08\\xbe\\x10\\x80\\xf0\\xee\\xc2\\x53\\x5e\\xb5\\x80\\x13\\\r\n\\xd3\\xf1\\x31\\x45\\x7e\\x6d\\x58\\x02\\xca\\x84\\x30\\x03\\xba\\xa5\\x08\\x30\\\r\n\\x34\\x68\\x16\\x36\\xf4\\x66\\x04\\x20\\x60\\xc1\\x50\\x12\\xa7\\xf0\\x85\\x39\\\r\n\\x97\\x64\\xe3\\x5d\\x46\\x1b\\xba\\xfb\\x5a\\xba\\xf3\\xfe\\x45\\xc4\\x40\\x69\\\r\n\\xa9\\xf3\\x35\\x81\\x20\\x60\\x54\\x10\\x1f\\x00\\x0d\\x6d\\xb5\\x59\\x80\\xce\\\r\n\\x26\\x0b\\xa1\\x00\\x09\\x10\\xa5\\x94\\x10\\x0a\\x32\\xd3\\xc2\\xa4\\xa6\\x22\\\r\n\\xa8\\x06\\xb2\\xa0\\x03\\xc2\\x90\\x1b\\x40\\x50\\xc0\\x11\\xe1\\x42\\x50\\xa5\\\r\n\\x4e\\x8d\\x8a\\x72\\xe5\\x0b\\xaa\\xe4\\x90\\xd2\\xe5\\xbe\\x2c\\x74\\xf5\\x32\\\r\n\\x0d\\x76\\x55\\x2e\\x93\\x58\\xa9\\xcc\\x3d\\x83\\xbc\\x6a\\x8d\\x68\\x7e\\xa8\\\r\n\\xa7\\x75\\x2a\\x10\\xfd\\x96\\x20\\xb2\\x98\\xde\\x67\\x6d\\x16\\x70\\x46\\x4b\\\r\n\\x31\\x04\\xaf\\x25\\x07\\x3c\\x91\\xf3\\xb8\\xe1\\x6e\\x62\\xe2\\x13\\x1c\\x50\\\r\n\\x29\\x4c\\x00\\x68\\xcd\\x0e\\x4a\\x23\\xd1\\xd0\\xf1\\xe0\\xf4\\xc4\\xf1\\x40\\\r\n\\x93\\x50\\xb3\\x45\\xcd\\x45\\xe4\\x8b\\xe0\\x98\\xa2\\x0c\\x3b\\x95\\x4d\\x42\\\r\n\\x88\\xbc\\x0b\\xe0\\x64\\xc4\\x7c\\x01\\x06\\x51\\xd0\\xb8\\x20\\x36\\xf5\\xd0\\\r\n\\xc8\\x66\\x22\\x59\\x25\\x84\\x99\\x47\\xc4\\xc7\\xc0\\xa0\\xf2\\x41\\xaa\\x27\\\r\n\\x79\\x1d\\x90\\x67\\xa0\\xad\\x88\\x15\\x22\\x09\\x2a\\x78\\x18\\x44\\xb1\\xe0\\\r\n\\x34\\xcd\\x01\\x5b\\x0f\\xd2\\xa2\\xee\\xf5\\xc0\\xf3\\x22\\x59\\x6f\\xbc\\x82\\\r\n\\x61\\x82\\x1c\\x71\\x82\\x2b\\x8a\\x47\\xe0\\x9f\\x50\\x2d\\x4c\\xe5\\x6a\\x70\\\r\n\\xd9\\x08\\x12\\x06\\x1c\\x31\\x77\\xe2\\x3c\\x88\\x9e\\xc7\\x0a\\xf4\\x05\\xa0\\\r\n\\x49\\xbe\\xa9\\x8a\\x69\\xf1\\x99\\xa2\\xda\\xa9\\xd0\\xa2\\xc7\\x5e\\x8e\\x5f\\\r\n\\xce\\xb0\\x2c\\xe8\\xdb\\xa2\\x3e\\x90\\x99\\xe3\\xa1\\x46\\x01\\xaa\\x80\\x48\\\r\n\\x1b\\x55\\x51\\x4a\\x91\\xd4\\xf5\\xda\\x77\\xd6\\x8d\\x97\\x00\\x40\\x05\\xc9\\\r\n\\x2e\\xd4\\x40\\x59\\x6b\\x8f\\x5f\\x1c\\x04\\xf3\\x1f\\xa8\\xd9\\x8f\\x02\\xa1\\\r\n\\x15\\x64\\xa2\\x2c\\x86\\x5c\\x2d\\x45\\x11\\x42\\xfb\\x98\\xf4\\xe1\\x7f\\x4a\\\r\n\\xe2\\x29\\xd3\\x40\\x57\\x53\\x90\\x54\\x54\\x88\\x9c\\x4b\\xdc\\xde\\x2d\\x32\\\r\n\\x0d\\xc5\\x4b\\xf0\\x6c\\x5b\\x2e\\xed\\x97\\x36\\x17\\x8c\\x36\\x75\\x08\\x1d\\\r\n\\xb1\\xc9\\xca\\xef\\x31\\x9f\\x2c\\xd7\\x25\\xd8\\x60\\x74\\x79\\xfa\\x89\\x07\\\r\n\\x2a\\xc9\\x7c\\x24\\xb9\\xd2\\xb1\\x4b\\x0c\\x9d\\x5e\\x57\\x2e\\x6d\\xc8\\xac\\\r\n\\x34\\x9b\\x65\\xe4\\xa7\\xb3\\xf4\\x8c\\xe0\\xa7\\x8c\\xcf\\x61\\xec\\xb8\\xa3\\\r\n\\xe4\\x17\\x5c\\xe6\\x78\\x62\\x08\\xda\\x9b\\x1e\\x5c\\xe3\\x47\\xc5\\x9e\\x9b\\\r\n\\xa5\\x31\\x00\\x54\\xa4\\x1a\\x59\\xc7\\xe8\\xcc\\xeb\\x7e\\x50\\x70\\x09\\x29\\\r\n\\xc4\\x31\\x23\\x93\\x72\\x00\\x02\\xb4\\x92\\x50\\x42\\x00\\xcb\\x6d\\x62\\x28\\\r\n\\x29\\x49\\x02\\xec\\x32\\x27\\x51\\x1a\\xd6\\x0e\\x2b\\x45\\x6b\\x06\\x78\\x6d\\\r\n\\x73\\x74\\x60\\x35\\x41\\xc3\\xc1\\x28\\x51\\x45\\x7b\\xaa\\xc5\\x92\\x08\\x48\\\r\n\\x0c\\xc8\\x78\\xaa\\xb5\\xd3\\x04\\x14\\x4c\\xc5\\x24\\xbe\\x77\\x55\\xbf\\x33\\\r\n\\x4e\\xa6\\x06\\x5b\\x45\\xce\\x8e\\x9c\\xd6\\x3a\\x15\\x79\\x96\\x36\\x21\\x1e\\\r\n\\x15\\x1d\\x50\\x00\\xd3\\x4b\\x03\\xb5\\x8c\\xa4\\x48\\x1e\\x41\\x33\\xe8\\x1b\\\r\n\\xef\\x36\\x18\\xda\\xe0\\x79\\x52\\x2a\\x45\\x5f\\x09\\xeb\\x92\\xf2\\x32\\x68\\\r\n\\x07\\x54\\x8b\\x18\\x05\\xc5\\x40\\x19\\xc0\\x3d\\x62\\x86\\x8f\\x54\\x4a\\xb4\\\r\n\\x6e\\x03\\x49\\xb1\\x99\\x5b\\x49\\x3c\\x02\\x03\\x43\\x69\\x7d\\x59\\x3c\\x1c\\\r\n\\x06\\xdf\\x4c\\x23\\x62\\xf8\\xe9\\x6b\\x1d\\xe5\\x29\\x13\\x37\\xb7\\xc4\\x4a\\\r\n\\x82\\x82\\xd0\\x24\\x0c\\x9c\\xd6\\xe6\\x12\\x07\\x8c\\xe9\\xd0\\x05\\x24\\x42\\\r\n\\x82\\xec\\x8e\\x26\\xfc\\x09\\xbf\\x9b\\xad\\x91\\xd4\\xc0\\x8f\\x1e\\xef\\x78\\\r\n\\x19\\x62\\x97\\x67\\x15\\x21\\x71\\xb0\\x20\\xd3\\x8a\\x76\\xa0\\x76\\xb1\\xeb\\\r\n\\x34\\x01\\xc5\\x00\\x15\\x50\\x22\\x47\\xf6\\x04\\x79\\x4d\\x9c\\x28\\x4e\\x00\\\r\n\\x91\\x02\\xd4\\xad\\xe1\\x31\\x3d\\xce\\x36\\x16\\x24\\x23\\x54\\xf2\\x3b\\x49\\\r\n\\x6b\\xb0\\x85\\xe5\\x15\\x82\\x80\\x55\\xe4\\xee\\xad\\x22\\x64\\xe5\\x88\\x64\\\r\n\\x00\\x70\\x3b\\x54\\xad\\xe8\\x70\\xf1\\x79\\x5c\\x27\\x30\\x8d\\x4b\\xfc\\xc4\\\r\n\\x61\\xac\\x42\\x68\\x43\\xa2\\xdc\\xe9\\x78\\xb3\\x81\\xe0\\xd6\\x0f\\x45\\x65\\\r\n\\x12\\xb8\\x48\\xde\\x46\\x45\\x94\\x11\\x76\\x7b\\xe9\\xff\\x00\\x11\\xc1\\x01\\\r\n\\x7c\\xd0\\xad\\x23\\x40\\x31\\x01\\x51\\xb1\\xa2\\x27\\x01\\x91\\xeb\\x41\\xa2\\\r\n\\x0d\\x90\\x39\\xf3\\xcf\\x03\\x65\\xf4\\x31\\x71\\x63\\x06\\x82\\x42\\x1f\\x00\\\r\n\\x79\\x61\\x39\\x83\\x05\\x9e\\x08\\x50\\x21\\x86\\x3b\\x94\\x93\\x94\\x65\\x59\\\r\n\\x11\\x89\\x35\\x06\\x2c\\x22\\x6a\\xc8\\x45\\x3b\\xa2\\xb0\\x8f\\x6f\\x85\\x82\\\r\n\\x09\\x21\\x3b\\xc1\\x9f\\x78\\xe9\\x65\\xf8\\x38\\xb4\\x21\\x7c\\x69\\x0e\\x04\\\r\n\\xaa\\x7a\\x49\\x08\\xe5\\x14\\xa0\\xa7\\xaf\\x8d\\x2a\\x41\\xa0\\x06\\x92\\x5f\\\r\n\\x37\\xdc\\xce\\xb4\\x52\\xb2\\xb9\\x73\\x20\\x55\\xa8\\x71\\x04\\x11\\x4c\\x05\\\r\n\\x4f\\x75\\x88\\x28\\x07\\x07\\x50\\xca\\x03\\xa3\\x88\\x08\\x27\\xa3\\xe1\\x46\\\r\n\\x75\\x9b\\x8b\\xa0\\xa4\\x01\\xf3\\x59\\xac\\x20\\x70\\xc6\\xad\\x5a\\x95\\x61\\\r\n\\x41\\x2a\\xa8\\x43\\x90\\x37\\xf9\\x12\\x24\\x84\\x03\\xf2\\x03\\x80\\xb5\\x5f\\\r\n\\x12\\x00\\xea\\x05\\x8c\\x02\\x00\\x56\\xdd\\xc3\\x45\\x54\\x19\\x26\\xf2\\x53\\\r\n\\x44\\x8d\\x41\\xe7\\xe6\\xec\\xd2\\x51\\x22\\xde\\xae\\xf1\\x28\\xf4\\x42\\xa4\\\r\n\\xcd\\x9e\\x27\\x66\\x9b\\x80\\x20\\x54\\xb9\\x07\\x60\\x9b\\xbc\\x69\\x42\\x6d\\\r\n\\x5b\\x7d\\x4d\\xfc\\x13\\xb8\\x8a\\xb4\\x14\\x78\\x83\\x14\\xf0\\x66\\x81\\x93\\\r\n\\xa0\\x42\\xd0\\xa2\\x20\\x59\\x89\\x1d\\x2f\\x03\\x17\\x11\\x2d\\xf0\\x84\\xea\\\r\n\\xea\\x02\\x4f\\x4a\\xca\\x82\\x68\\x99\\xf0\\x20\\x95\\x5e\\x8f\\x81\\x92\\x50\\\r\n\\x32\\x50\\xe6\\xac\\x00\\x65\\x8a\\x5e\\xb7\\xe4\\x2b\\xcf\\x45\\x83\\x12\\xc1\\\r\n\\x06\\x13\\x31\\x2d\\x42\\x25\\xd6\\xbc\\xb4\\xa7\\x8e\\x62\\x40\\x5d\\x1b\\x5c\\\r\n\\x22\\x61\\x3e\\x28\\x7a\\x10\\x36\\x8a\\x15\\xd4\\x1c\\x94\\x44\\x16\\xdc\\x17\\\r\n\\x0f\\xa8\\x05\\x00\\x43\\x21\\x49\\x06\\xc7\\x1a\\x80\\x52\\x05\\x37\\x0e\\x63\\\r\n\\x03\\x9a\\xa0\\x8f\\x73\\xa1\\xe1\\x7c\\x5e\\x78\\x66\\x22\\x84\\xc4\\x86\\xb4\\\r\n\\xf1\\xd2\\x63\\x01\\xfa\\x3a\\x40\\x4a\\xb0\\x03\\x13\\x46\\xe6\\xad\\xc0\\x00\\\r\n\\xff\\x00\\x9d\\x01\\x54\\x32\\x90\\x94\\x24\\x49\\xba\\x8b\\xd2\\x11\\x88\\xaa\\\r\n\\x5d\\x4b\\x9e\\x50\\xcc\\x05\\x56\\x2a\\x58\\x21\\x63\\xaf\\xf3\\xc5\\xd1\\x30\\\r\n\\xa0\\x9e\\x8c\\x08\\x4d\\x27\\x30\\x8a\\xe1\\x11\\xa2\\x4a\\x8f\\xe1\\x03\\xfa\\\r\n\\xf3\\x65\\x88\\x0a\\xac\\x02\\x6d\\x16\\x26\\xc8\\x28\\x29\\x07\\x73\\x6c\\x71\\\r\n\\x86\\x75\\x38\\x67\\x7f\\xe7\\x1e\\x4c\\x2f\\x22\\x64\\xd0\\x4c\\x20\\x77\\x16\\\r\n\\xd0\\xfd\\x18\\x6f\\xdc\\x47\\x8b\\xb8\\xf5\\xce\\xcf\\x24\\x58\\x89\\xaf\\xca\\\r\n\\x85\\x85\\x2e\\x55\\xae\\x1d\\x10\\x47\\x6d\\x44\\x7e\\x34\\xbd\\x86\\x85\\x11\\\r\n\\x54\\x9d\\x50\\xeb\\xfa\\x2c\\x73\\x69\\x55\\xf9\\x16\\xac\\xe9\\xd2\\xfc\\x30\\\r\n\\x03\\xfe\\x22\\x7c\\x29\\xd3\\x60\\x68\\xc1\\x86\\x08\\x74\\xc5\\x46\\x2b\\xac\\\r\n\\x27\\x92\\x39\\x96\\xfb\\xa3\\x6e\\xb8\\x1a\\x4e\\x48\\xb6\\xd0\\x5e\\xbe\\xcd\\\r\n\\xfe\\xec\\x2f\\x6a\\xc0\\xd0\\xe8\\xc7\\x01\\x55\\x82\\x01\\x34\\x40\\xd8\\xf9\\\r\n\\xd2\\xdc\\x21\\xf6\\xb1\\x6f\\x6c\\x99\\x19\\x01\\xbe\\x25\\xe9\\x50\\xf0\\x8d\\\r\n\\x9a\\x64\\xbe\\x84\\x90\\x8a\\xf0\\x20\\xee\\x53\\x44\\x50\\x60\\x14\\x64\\x04\\\r\n\\xaa\\x05\\x4e\\xb1\\x08\\x43\\x05\\x08\\x01\\xbe\\x23\\x85\\xe9\\x2f\\xdc\\xb3\\\r\n\\xd6\\x23\\x15\\xaa\\xb6\\x5d\\xcc\\xb0\\xa1\\xa9\\x2f\\x95\\x45\\xf0\\xdd\\x8d\\\r\n\\xa9\\x18\\x05\\x44\\xa7\\x01\\x6c\\x05\\x83\\xec\\x14\\x33\\xe1\\x81\\x55\\x1d\\\r\n\\x0a\\x14\\x41\\x03\\xfd\\x72\\x87\\x32\\x4a\\x88\\x13\\xa7\\x7d\\x4c\\xc4\\x86\\\r\n\\xc6\\xc6\\x0e\\xa0\\x8c\\x7d\\xc9\\x30\\x12\\x56\\x40\\xdb\\xd0\\xa4\\x11\\xc4\\\r\n\\xa0\\x5b\\x4a\\x4a\\x4d\\x02\\xed\\x86\\xee\\x19\\x52\\x33\\x3d\\x6c\\x98\\x11\\\r\n\\x0b\\x48\\x1c\\x0f\\x13\\x42\\x8c\\xc0\\x87\\x74\\x29\\x99\\x08\\xd5\\x1f\\x90\\\r\n\\x1b\\x80\\x22\\x52\\x00\\xac\\x4e\\x96\\x77\\x91\\x05\\x69\\x24\\x25\\x9c\\x55\\\r\n\\xa4\\xe2\\xaa\\x20\\x24\\x01\\x80\\x09\\x10\\xa2\\x1c\\x55\\xe7\\x7c\\x10\\xe1\\\r\n\\x94\\x2b\\x80\\x6a\\x8f\\x0c\\x63\\xe9\\x06\\x0c\\x83\\xb1\\x89\\xbb\\x20\\x44\\\r\n\\x1b\\x25\\x08\\x68\\xbc\\x0c\\x20\\x19\\x30\\xf3\\xdc\\xd0\\x9c\\x82\\xd6\\xe5\\\r\n\\xd4\\x47\\x7a\\xac\\x13\\x07\\xaf\\x88\\x15\\xbe\\x6e\\xac\\xd8\\x69\\x0c\\xb0\\\r\n\\x13\\x62\\xa4\\x4c\\xec\\xab\\xb2\\x0e\\xbf\\x78\\xdb\\xb0\\xca\\xc7\\xb4\\x27\\\r\n\\x2d\\x71\\xca\\x45\\xe1\\x45\\x36\\x34\\x42\\xc2\\xf7\\x73\\x6c\\x75\\x4b\\x90\\\r\n\\x8a\\x8a\\x48\\x2a\\x83\\x23\\x86\\x5c\\x3a\\x70\\x21\\x65\\xa2\\x04\\x37\\x10\\\r\n\\xf2\\xa6\\x7f\\xe1\\x0a\\x7f\\xca\\x9f\\x8f\\x0c\\x17\\xfd\\xa6\\xd4\\x04\\x7d\\\r\n\\x92\\x4c\\x8c\\x45\\x6e\\xb9\\x5d\\x28\\x4e\\xaa\\xd5\\x15\\x14\\x68\\xf0\\xd3\\\r\n\\x92\\x65\\xc2\\xcd\\x52\\x98\\x04\\x81\\xad\\x42\\x12\\xc8\\xf1\\x48\\x41\\x4a\\\r\n\\x9a\\x8a\\xa4\\x77\\x89\\xd9\\x79\\x48\\xa4\\x6a\\x31\\x1a\\xc5\\x3e\\x6d\\xb7\\\r\n\\xa1\\x7a\\xc1\\x64\\x56\\xed\\x72\\x60\\xe6\\x32\\xd2\\xb2\\xd6\\xe9\\x4b\\x01\\\r\n\\x3d\\x2a\\xa8\\xc6\\x49\\x35\\x5e\\xcc\\xa1\\x01\\x3f\\x72\\xb0\\x24\\xc2\\xe0\\\r\n\\xe0\\x40\\x10\\x19\\xf4\\x91\\x1f\\x1f\\x6b\\x06\\x84\\x02\\x20\\x48\\x2e\\xbc\\\r\n\\x64\\x67\\xdc\\x38\\x32\\x4c\\xb0\\x0e\\x81\\x00\\x32\\xeb\\x48\\xaf\\x25\\x61\\\r\n\\xaa\\x9a\\xe1\\x18\\x3f\\x43\\x96\\x16\\x04\\x40\\x2d\\x00\\x1e\\x90\\xdb\\x00\\\r\n\\x10\\xe9\\xdb\\x41\\x2d\\x55\\x65\\xdb\\x28\\x7d\\xff\\x00\\xbc\\xfc\\xba\\x5c\\\r\n\\x4a\\x8c\\xa2\\xe4\\x25\\x59\\x0f\\xa7\\x24\\x00\\x16\\x9a\\x82\\x60\\x02\\xc5\\\r\n\\x70\\xa4\\xd3\\xbb\\xbf\\xe5\\x0a\\x85\\x62\\x11\\xd8\\xfd\\x50\\xd2\\x0d\\x97\\\r\n\\xd0\\x10\\x57\\x3e\\x23\\x0c\\x4a\\x07\\x72\\x01\\x2e\\x08\\x87\\x54\\x94\\xc6\\\r\n\\x61\\xa9\\xb6\\x2c\\xa8\\x81\\x6a\\x11\\xd4\\x24\\x1d\\x00\\x18\\xcc\\xc1\\xe0\\\r\n\\x1a\\x5d\\x0f\\xc4\\xd0\\x5e\\x83\\x62\\x83\\x0a\\x10\\x93\\xef\\x01\\x15\\x90\\\r\n\\xdc\\x8d\\x68\\x83\\x8a\\x5f\\x52\\x60\\x42\\xa8\\x51\\xd3\\xce\\xde\\x9e\\x61\\\r\n\\x53\\x93\\x16\\x8a\\x07\\xe0\\xe7\\xe9\\xbb\\x16\\x85\\x88\\x61\\x70\\xc4\\x09\\\r\n\\x78\\x3f\\x12\\x65\\x08\\x02\\x8c\\x30\\x29\\x62\\x13\\x96\\x42\\x01\\x6e\\x58\\\r\n\\xb0\\x04\\x17\\xf7\\x80\\xb0\\x83\\xa3\\xc5\\x88\\x31\\xa1\\x83\\xc4\\x98\\x6b\\\r\n\\x31\\x05\\x34\\x80\\x90\\xaa\\x19\\x7a\\xd7\\xae\\x62\\xc4\\x57\\x03\\x01\\x0d\\\r\n\\x04\\xf4\\x03\\xbb\\x2d\\x00\\x15\\x19\\x5c\\x08\\x03\\x68\\x8b\\x5e\\x12\\xac\\\r\n\\x3e\\x18\\x8b\\x1e\\x37\\xb7\\x97\\xc9\\x85\\x50\\x7d\\x18\\x33\\x64\\xff\\x00\\\r\n\\xc8\\x01\\x12\\x71\\xd3\\xf9\\xda\\x50\\x4d\\x47\\x49\\x93\\xce\\x4e\\xda\\x3e\\\r\n\\x9f\\x02\\x0a\\x04\\xe8\\x94\\x37\\x81\\xe5\\xbe\\x2a\\x25\\x03\\x0d\\xca\\x9d\\\r\n\\xe1\\x86\\x86\\x92\\x94\\x22\\x1e\\x15\\x41\\xa4\\x43\\x94\\x8d\\x50\\xd6\\xd5\\\r\n\\x92\\x76\\xee\\x92\\x04\\x11\\x40\\x29\\x41\\x7e\\x4c\\xe4\\xcb\\x84\\x3c\\x02\\\r\n\\x08\\xc3\\xee\\x4b\\xec\\x53\\xeb\\x52\\x0f\\xb1\\x68\\xc5\\x1e\\x58\\x95\\x0c\\\r\n\\x00\\x93\\x85\\xf0\\xed\\x75\\xf9\\x31\\x94\\x88\\xbc\\x5e\\x86\\xf9\\x76\\x88\\\r\n\\x6a\\x54\\x7f\\xf1\\x79\\x10\\x62\\x63\\x15\\x5e\\x45\\x5a\\xfb\\x79\\x09\\x10\\\r\n\\xee\\x51\\xc5\\x07\\x08\\xaa\\xd8\\xda\\xd5\\xcf\\x14\\x5d\\x8a\\x2b\\x49\\xb5\\\r\n\\x73\\x29\\x3e\\x1a\\x10\\xfe\\xda\\x60\\x08\\xa2\\x2e\\x77\\x02\\xc0\\xb9\\x19\\\r\n\\x51\\x2e\\xc1\\xe2\\x8b\\xda\\x99\\x4b\\x44\\x03\\xa2\\x17\\x08\\x89\\xc6\\x38\\\r\n\\xf1\\xed\\x76\\x74\\x88\\xc2\\x26\\x8b\\xf4\\x09\\x04\\x07\\x5d\\x83\\xc8\\x20\\\r\n\\x08\\x13\\x6f\\xff\\x00\\xf2\\x2d\\xf5\\x45\\xd4\\xcf\\x5d\\xc2\\xa4\\x1b\\xea\\\r\n\\xe5\\xe7\\xda\\x25\\xef\\xab\\x32\\x5b\\xa6\\xc3\\x06\\xb0\\x96\\x21\\xec\\x60\\\r\n\\x35\\x65\\x59\\x5f\\x12\\x10\\x7f\\xfb\\x85\\xfd\\x37\\xbf\\xff\\xd9\\\r\n\"\r\n\r\nqt_resource_name = b\"\\\r\n\\x00\\x09\\\r\n\\x0c\\x78\\x54\\x88\\\r\n\\x00\\x6e\\\r\n\\x00\\x65\\x00\\x77\\x00\\x50\\x00\\x72\\x00\\x65\\x00\\x66\\x00\\x69\\x00\\x78\\\r\n\\x00\\x22\\\r\n\\x01\\xce\\xa5\\x07\\\r\n\\x00\\x42\\\r\n\\x00\\x72\\x00\\x61\\x00\\x6d\\x00\\x62\\x00\\x6c\\x00\\x65\\x00\\x73\\x00\\x2d\\x00\\x66\\x00\\x6f\\x00\\x72\\x00\\x2d\\x00\\x74\\x00\\x68\\x00\\x65\\x00\\x2d\\\r\n\\x00\\x52\\x00\\x61\\x00\\x62\\x00\\x62\\x00\\x69\\x00\\x74\\x00\\x5f\\x00\\x73\\x00\\x63\\x00\\x61\\x00\\x6c\\x00\\x65\\x00\\x64\\x00\\x2e\\x00\\x6a\\x00\\x70\\\r\n\\x00\\x67\\\r\n\"\r\n\r\nqt_resource_struct_v1 = b\"\\\r\n\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\\r\n\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\\r\n\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\\r\n\"\r\n\r\nqt_resource_struct_v2 = b\"\\\r\n\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\\r\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\\r\n\\x00\\x00\\x01\\x63\\xf4\\x1e\\xd5\\x44\\\r\n\"\r\n\r\nqt_version = QtCore.qVersion().split('.')\r\nif qt_version < ['5', '8', '0']:\r\n    rcc_version = 1\r\n    qt_resource_struct = qt_resource_struct_v1\r\nelse:\r\n    rcc_version = 2\r\n    qt_resource_struct = qt_resource_struct_v2\r\n\r\ndef qInitResources():\r\n    QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)\r\n\r\ndef qCleanupResources():\r\n    QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)\r\n\r\nqInitResources()\r\n"
  },
  {
    "path": "other/Tomato_IPTables.txt",
    "content": "########################################################\n#Setup instructions for copying WAN packets over to your\n#Raspberry PI box using Tomato firmware\n########################################################\n\n#1. After you setup the Tomato, enable SSH and DISABLE telnet for obvious reasons\n#2. SSH into your Tomato Router.  You will be greeted with a friendly banner message\n#3. Issue the commands below accordingly\n--> /sbin/modprobe ipt_ROUTE\n--> /usr/sbin/iptables -t mangle -I PREROUTING -i vlan2 -j ROUTE --gw [RaspberryPI-IP-address] --tee \n\n#4. Watch the packets roll in to your IDS!\n\n#############################################################\n#Helpful Information:\n#\n# Note: VLAN2 is your WAN interface btw...\n# \n# If you want to flush your IPTable rule we just created,\n# simply do a : iptables -F -t mangle\n#\n# if you'd like to confirm they exist/deleted,\n# do: iptables -L -t mangle\n#############################################################\n"
  },
  {
    "path": "scripts/bro-alienvaultintel-installer.sh",
    "content": "#!/bin/bash\necho \"installing python requests module\"\npip install requests\necho \"creating nsm log directory in /var/log\"\nmkdir /var/log/nsm\n \nOTX_PATH=\"/opt/nsm/bro/share/bro/policy/bro-otx\"\n\n# Download connector\necho\necho \"Downloading Bro/OTX Connector ...\"\necho\ncd /opt/nsm/bro/share/bro/policy\nif [ ! -d bro-otx ]; then\n\tgit clone https://github.com/hosom/bro-otx\nelse\n\techo \"Bro-OTX directory already exists!\"\nfi\ncd bro-otx\nif [ -d scripts ]; then\n\tcp -av scripts/* .\n\trm -rf scripts\nfi \n\n# Get APIKEY\necho\necho \"First, be sure to browse here and sign up for Alienvault OTX: https://otx.alienvault.com/\"\necho \"Next, subscribe to a feed/pulse: https://otx.alienvault.com/user/AlienVault/pulses\"\necho \"Ok, now copy your Alienvault Api key\"\necho \"and please paste your Alienvault OTX API key here [ENTER]:\"\necho \"(Input field is hidden)\"\necho\nread -s APIKEY\n\n# Configure connector\necho \"Configuring Bro OTX Connector...\"\necho\nif [ -f $OTX_PATH/bro-otx.conf ]; then\n\tsed -i \"s|api_key.*|api_key = $APIKEY|\" $OTX_PATH/bro-otx.conf\n\tsed -i \"s|outfile.*|outfile = $OTX_PATH/otx.dat|\" $OTX_PATH/bro-otx.conf\nfi \nif [ -f $OTX_PATH/bro-otx.py ];then\n\tsed -i \"s|default='bro-otx.conf'|default='$OTX_PATH/bro-otx.conf'|\" $OTX_PATH/bro-otx.py\nfi\n \n# Add to local.bro\ncp /opt/nsm/bro/share/bro/site/local.bro /opt/nsm/bro/share/bro/site/local.bro.bak \ncat << EOF >> /opt/nsm/bro/share/bro/site/local.bro\n \n# Load Bro OTX Pulses\n@load bro-otx\nEOF\n \n# Run Pulse retrieval script for first time\necho \"Pulling OTX Pulses...\"\necho\nif [ -f $OTX_PATH/bro-otx.py ];then\n\t/usr/bin/python $OTX_PATH/bro-otx.py\nfi\n\n# Add cron job\necho \"Adding cron job...will run hourly to pull new pulses\"\necho\ncat << EOF > /etc/cron.d/bro-otx\n# /etc/cron.d/bro-otx\n#\n# crontab entry to manage Bro OTX pulse updates\n \nSHELL=/bin/sh\nPATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin\n \n0 * * * * root python $OTX_PATH/bro-otx.py >> /var/log/nsm/bro-otx.log 2>&1\nEOF\n\nsudo sed -i \"\\$agoogle.com\tIntel::DOMAIN\tTest-Google-Intel\thttps://google.com\tT\" /opt/nsm/bro/share/bro/policy/bro-otx/otx.dat\n\necho \"done!  now starting bro with new intel feeds\"\necho \"i've added a line to your otx.dat file so you can test to make sure your intel feeds were loaded successfully\"\necho \"simply issue a curl google.com request and check your /opt/nsm/bro/logs/current directory for an intel.log file\"\necho \"if you see that log file, then that confirms everything is working as expected!\"\n/opt/nsm/bro/bin/broctl deploy\n"
  },
  {
    "path": "scripts/bro-installer.sh",
    "content": "#!/bin/bash\n\n#wipe log to have a fresh version\n> /usr/local/src/broinstall.log\necho \"Installation log file located here: /usr/local/src/broinstall.log\"\n#Installing prereqs\ncd ~\necho \"Installing prereqs\"\necho \"Installing prereqs\" >> /usr/local/src/broinstall.log\nsudo apt-get update\nsudo apt-get install cmake make gcc g++ flex bison libcanberra-gtk* libpcap-dev locate libgeoip-dev python-dev zlib1g-dev libmagic-dev swig -y\n\n#determine libssl version to install\nourversion=\"$(cat /etc/*release)\"\n\nshopt -s nocasematch\nif [[ $ourversion = *\"Debian\"* ]] ; then\necho \"running debian\"\nsudo apt-get install libssl1.0-dev -y\nelse\necho \"not running debian\"\nsudo apt-get install libssl-dev -y\nfi\nshopt -u nocasematch\n\nsudo apt-get install python-pip -y\necho \"Installing setuptools via pip...\" >> /usr/local/src/broinstall.log\nsudo pip install setuptools\ngit clone git://git.bro-ids.org/pysubnettree.git\ncd pysubnettree\nsudo python setup.py install\ncd ~\n#Install Bro\nclear\necho \"Installing Bro...depending on your PI (zero, pi2, pi 3) this could take anywhere from 2 - 5 hours to complete, so go grab a coffee and when you get back this should be about done ;)\"\n#sudo wget https://www.bro.org/downloads/release/bro-2.4.1.tar.gz\necho \"using wget to download the most recent bro version...\" >> /usr/local/src/broinstall.log\nsudo wget https://www.bro.org/downloads/bro-2.5.4.tar.gz\necho \"issuing the tar command on the file...\" >> /usr/local/src/broinstall.log\nsudo tar -xzf bro-2.5.4.tar.gz\necho \"creating necessary directories...\" >> /usr/local/src/broinstall.log\nsudo mkdir /opt/nsm\nsudo mkdir /opt/nsm/bro\necho \"navigating into the directory\" >> /usr/local/src/broinstall.log\ncd bro-2.5.4\necho \"issuing 'configure' command.\"\necho \"issuing 'configure' command.\" >> /usr/local/src/broinstall.log\nsudo make distclean\nsudo ./configure --prefix=/opt/nsm/bro\necho \"issuing 'make' command.\"\necho \"issuing 'make' command\" >> /usr/local/src/broinstall.log\nsudo make\necho \"issuing 'make install' command\" >> /usr/local/src/broinstall.log\necho \"issuing 'make install' command\"\nsudo make install\ncd ..\ntouch /opt/nsm/bro/bro_install_complete\necho \"Bro Install complete! Hit enter to continue or review your console output for any errors above this text.\"\necho \"hit enter to continue...please review console output above to check for any errors during make and make install\"\nread\n\n"
  },
  {
    "path": "scripts/bromenu.sh",
    "content": "#!/bin/bash\n\nfunction selecter\n{\nclear\necho \"Choose an option from the list below\"\necho \"====================================\"\necho \"1. Install Bro\"\necho \"2. Configure Bro\"\necho \"3. Configure Intel-Critical-Stack Agent\"\necho \"4. Start Bro\"\necho \"5. Stop Bro\"\necho \"6. Check Bro Status\"\necho \"7. Show captured files\"\necho \"8. Exit\"\necho \"Enter choice:\"\nread choice\n\nif [ -z \"$choice\" ]; then\necho \"Uh oh...Looks like you forgot to make a choice\"\nsleep 3\nfi\n\nif [[ $choice == \"1\" ]]; then\nsudo /usr/local/bin/./bro-installer.sh\nfi\n\n\nif [[ $choice == \"2\" ]]; then\necho \"Please enter your desired monitoring interface below (eth0, wlan0, etc):\"\necho -n \":\"\nread monint\necho \"Adding monitor interface to node.cfg\"\nsudo sed -i '12,$d' /opt/nsm/bro/etc/node.cfg #remove all other lines except what we need\nsudo sed -i \"/interface=/c\\interface=$monint\" /opt/nsm/bro/etc/node.cfg\necho \"Ok monitor interface is set.\"\necho \"Checking WAN IP information...\"\ngrep Public /opt/nsm/bro/etc/networks.cfg\nif [ $? != 0 ] ; then\necho \"Please enter your WAN ip below (hint: you can go to ipchicken.com to grab it):\"\necho -n \":\"\nread wanip\necho \"Adding in WAN ip to networks.cfg\"\nsed -i \"\\$a$wanip/32      Public WAN IP\" \"/opt/nsm/bro/etc/networks.cfg\"\necho \"Done.\"\nelse\necho \"You've already added in your WAN IP.  Would you like to add in a new WAN IP?\"\necho \"y or n?\"\necho -n \":\"\nread choice2\nif [[ $choice2 == \"y\" ]]; then\necho \"updating WAN IP info...\"\nsudo sed -i '/Public/,+1 d' /opt/nsm/bro/etc/networks.cfg\nsed -i \"\\$a$wanip/32      Public WAN IP\" \"/opt/nsm/bro/etc/networks.cfg\"\nelse\necho \"ok leaving as is.\"\nfi\nfi\n\nsudo /opt/nsm/bro/bin/broctl install\necho \"ok done updating bro configuration items.  You should be all set to go.\"\nsleep 3\nfi\n\nif [[ $choice == \"3\" ]]; then\nsudo chown critical-stack:critical-stack /etc/sudoers.d\nsudo -u critical-stack critical-stack-intel config --set bro.include.path=/opt/nsm/bro/share/bro/site/local.bro\nsudo -u critical-stack critical-stack-intel config --set bro.broctl.path=/opt/nsm/bro/bin/broctl\nsudo -u critical-stack critical-stack-intel config --set bro.path=/opt/nsm/bro/bin/bro\nsudo chmod -R 777 /opt/nsm/bro/share/bro/site/local.bro\nsudo chown critical-stack:critical-stack /etc/sudoers.d/99-critical-stack\nsudo -u critical-stack critical-stack-intel pull\nsudo chown root:root /etc/sudoers.d/99-critical-stack\nsudo chown root:root /etc/sudoers.d\necho \"Done!  Your intel critical stack configuration should be good to go now.\"\nsleep 3\nfi\n\nif [[ $choice == \"4\" ]]; then\nsudo /opt/nsm/bro/bin/broctl start\nfi\n\nif [[ $choice == \"5\" ]]; then\nsudo /opt/nsm/bro/bin/broctl stop\nfi\n\nif [[ $choice == \"6\" ]]; then\nsudo /opt/nsm/bro/bin/broctl status\nsleep 5\nfi\n\nif [[ $choice == \"7\" ]]; then\nls /opt/nsm/bro/logs/current\nsleep 5\nfi\n\nif [[ $choice == \"8\" ]]; then\nexit\nfi\nselecter\n}\nselecter\n\n"
  },
  {
    "path": "scripts/checkXauth.sh",
    "content": "#!/bin/bash\n\n###########################\n# .Xauthority craziness\n#\n#\n#rollback the last change as it did not function as expected\n########################################\nls /etc/profile.d/xauth.sh &>/dev/null\n\nif [ \"$?\" == \"0\" ]; then\nsudo rm /etc/profile.d/xauth.sh\nfi\n\n##########################################################################\n#try this for a while until someone forks and replaces w/ more optimal code\n#I opted not to use the $HOME variable as it always assumed it \n#was /root since ran as sudo\n##########################################################################\n\n\nls -ahg /home/pi/.Xauthority &>/dev/null\n\nif [ \"$?\" == \"0\" ]; then\nsudo cp /home/pi/.Xauthority /root/\nfi\n\n\n"
  },
  {
    "path": "scripts/configcheck.sh",
    "content": "#!/bin/bash\n\nls /opt/suricata/etc/suricata/suricata.yaml\nif [ $? != 0 ] ; then\n   clear\n   zenity --info --text=\"You need to install BriarIDS first before you check its config...\" &> /dev/null\n   sleep 4\n   exit\n   else\n   clear\n   echo \"Loading...\"\n   sleep 1\n   fi\n\ngrep -F '[192.168.0.0/16,10.0.0.0/8,172.16.0.0/12]' /opt/suricata/etc/suricata/suricata.yaml\nif [ $? == 0 ] ; then\n   clear\n   zenity --text=\"It doesn't look like you have a WAN IP entry in your config.  Would you like to add it in so you can monitor traffic against your WAN interface?\" --question &> /dev/null\n   if [ $? == 0 ] ; then\n   YOUR_WAN_IP=$(zenity --entry --entry-text=\"[WAN_IP]\" --text=\"Please enter your WAN IP below\" 2> /dev/null)\n   if [ $? == 0 ] ; then\n   sed -i \"/172.16.0.0\\/12/c\\    HOME_NET: \\\"[$YOUR_WAN_IP\\/32,10.0.0.0\\/8,192.168.0.0\\/16,172.16.0.0\\/12]\\\"\" /opt/suricata/etc/suricata/suricata.yaml\n   sed -i \"/EXTERNAL_NET/c\\    EXTERNAL_NET: \\\"any\\\"\" /opt/suricata/etc/suricata/suricata.yaml\n   zenity --info --text=\"done!\" &> /dev/null\n   sleep 4\n   exit\n   else\n   echo \"\"\n   fi\n   else\n   zenity --info --text=\"ok skipping for now\" &> /dev/null\n   fi\n   else\n   clear\n   zenity --info --text=\"Main config looks good ;)\" &> /dev/null\n   sleep 3\n   fi\n   exit\n"
  },
  {
    "path": "scripts/filetypescan.sh",
    "content": "#!/bin/bash\nclear\necho \"========================================================================================\"\necho \"A file scanning utility for BriarIDS to use alongside Suricata\"\necho \"Goal: Help locate all potentially malicious files captured via the file extract feature\"\necho \"Note: Displays .exe, .php, and .zip file information that has been discovered by default\"\necho \"========================================================================================\"\n\n#checking for virustotal API key\n\nls /opt/suricata/etc/suricata/Vtotalapi.key 2> /dev/null\nif [ $? != 0 ] ; then\n   clear\n   zenity --info --text=\"It doesn't look like you have added your virustotal API key yet.  Let's add that now\" &> /dev/null\n   YOUR_API_KEY=$(zenity --entry --entry-text=\"[VTOTAL_API_KEY]\" --text=\"Please enter your VTOTAL API KEY below\" 2> /dev/null)\n   echo $YOUR_API_KEY > /opt/suricata/etc/suricata/Vtotalapi.key\n   else\n   clear\n   echo \"API key found!  Don't forget to check the github wiki on how to configure file extraction suricata feature before using this add-on.  This will be quite lackluster otherwise.  Ok loading program now...\"\n   sleep 1\n   fi\n\n\nzenity --info --text=\"Current available options: .exe, .php, and .zip/.rar files. NOTE: .php will scan every php file collected from all websites browsed so use at your own risk\" &> /dev/null\nselection=$( zenity --forms --title \"Select files to scan\" --text \"Filetype Selection\" --add-combo \"Choose a filetype to scan below\" --combo-values \".exe|.php|.zip|.rar|ALL\" 2> /dev/null )\nvtotlocation=$( locate Vtotalcheck.py )\nif [[ $selection == \".exe\" ]] ; then\nsed -i \"/\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy1/c\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy1\" /usr/local/bin/./filetypescan_part2.sh\n\nelif [[ $selection == \".php\" ]] ; then\nsed -i \"/\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy2/c\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy2\" /usr/local/bin/./filetypescan_part2.sh\n\nelif [[ $selection == \".zip\" ]] ; then\nsed -i \"/\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy3/c\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy3\" /usr/local/bin/./filetypescan_part2.sh\n\nelif [[ $selection == \".rar\" ]] ; then\nsed -i \"/\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy4/c\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy4\" /usr/local/bin/./filetypescan_part2.sh\n\nelif [[ $selection == \"ALL\" ]] ; then\nsed -i \"/\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy1/c\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy1\" /usr/local/bin/./filetypescan_part2.sh\n\nsed -i \"/\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy2/c\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy2\" /usr/local/bin/./filetypescan_part2.sh\n\nsed -i \"/\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy3/c\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy3\" /usr/local/bin/./filetypescan_part2.sh\n\nsed -i \"/\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy4/c\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy4\" /usr/local/bin/./filetypescan_part2.sh\n\nelif [[ $? == 1 ]] ; then\necho \"No filetype selected...defaulting to simply displaying the file information found.\"\nfi\n\n/usr/local/bin/./filetypescan_part2.sh\nsed -i \"/\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy1/c\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy1\" /usr/local/bin/./filetypescan_part2.sh\n\nsed -i \"/\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy2/c\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy2\" /usr/local/bin/./filetypescan_part2.sh\nsed -i \"/\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy3/c\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy3\" /usr/local/bin/./filetypescan_part2.sh\n\nsed -i \"/\\python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy4/c\\#python \\$vtotlocation \\/var\\/log\\/suricata\\/files\\/\\$listy4\" /usr/local/bin/./filetypescan_part2.sh\n\n"
  },
  {
    "path": "scripts/filetypescan_part2.sh",
    "content": "#!/bin/bash\n\nvtotlocation=$( locate Vtotalcheck.py )\necho -e \"\\033[0;33m\"\necho \"Scanning for .exe files...\"\nscanner=$( grep -He 'FILENAME:.*\\.exe' /var/log/suricata/files/*.meta )\nif [[ $scanner == *\".exe\"* ]]; then\necho -e \"\\033[32m discovered .exe file(s)! \"\nexe_catcher=$( echo $scanner | egrep -o 'file.[[:digit:]]{1,3}' )\necho -e \"\\033[1;33m\"\nfor listy1 in $exe_catcher; do\necho \"File location and name:\" /var/log/suricata/files/$listy1\necho file details below:\necho \"==================\"\necho \"\"\ncat /var/log/suricata/files/$listy1.meta;\necho \"\"\n#echo $vtotlocation\n#python $vtotlocation /var/log/suricata/files/$listy1\ndone\nelse\necho -e \"\\033[0;34m no .exe files discovered...\"\nfi\n\necho -e \"\\033[0;33m\"\necho \"Scanning for .php files...\"\nscanner=$( file --mime /var/log/suricata/files/* | grep text/x-php )\nif [[ $scanner == *\"x-php\"* ]]; then\necho -e \"\\033[32m discovered .php file(s)! \"\nphp_catcher=$( echo $scanner | egrep -o 'file.[[:digit:]]{1,3}' )\necho -e \"\\033[1;33m\"\nfor listy2 in $php_catcher; do\necho \"File location and name:\" /var/log/suricata/files/$listy2\necho file details below:\necho \"==================\"\necho \"\"\ncat /var/log/suricata/files/$listy2.meta;\necho \"\"\n#python $vtotlocation /var/log/suricata/files/$listy2\ndone\nelse\necho -e \"\\033[0;34m no .php files discovered...\"\nfi\n\necho -e \"\\033[0;33m\"\necho \"Scanning for .zip files...\"\nscanner=$( grep -He 'FILENAME:.*\\.zip' /var/log/suricata/files/*.meta )\nif [[ $scanner == *\".zip\"* ]]; then\necho -e \"\\033[32m discovered .zip file(s)! \"\nzip_catcher=$( echo $scanner | egrep -o 'file.[[:digit:]]{1,3}' )\necho -e \"\\033[1;33m\"\nfor listy3 in $zip_catcher; do\necho \"File location and name:\" /var/log/suricata/files/$listy3\necho file details below:\necho \"==================\"\necho \"\"\ncat /var/log/suricata/files/$listy3.meta;\necho \"\"\n#python $vtotlocation /var/log/suricata/files/$listy3\ndone\nelse\necho -e \"\\033[0;34m no .zip files discovered...\"\nfi\n\necho -e \"\\033[0;33m\"\necho \"Scanning for .rar files...\"\nscanner=$( file --mime /var/log/suricata/files/* | grep application/x-rar )\nif [[ $scanner == *\"x-rar\"* ]]; then\necho -e \"\\033[32m discovered .rar file(s)! \"\nrar_catcher=$( echo $scanner | egrep -o 'file.[[:digit:]]{1,3}' )\necho -e \"\\033[1;33m\"\nfor listy4 in $rar_catcher; do\necho \"File location and name:\" /var/log/suricata/files/$listy4\necho file details below:\necho \"==================\"\necho \"\"\ncat /var/log/suricata/files/$listy4.meta;\necho \"\"\n#python $vtotlocation /var/log/suricata/files/$listy4\ndone\nelse\necho -e \"\\033[0;34m no .rar files discovered...\"\nfi\n\n"
  },
  {
    "path": "scripts/rulecleanup.sh",
    "content": "#!/bin/bash\n\n#cleaning up previous files\necho \"cleaning up previously captured files.  If you'd rather keep these and remove them manually just comment out the code below\"\nrm /var/log/suricata/files/* 2>/dev/null\n\n#checking to see if the updatedb command is listed in rc.local and if the user would like to add it to the file\ngrep updatedb /etc/rc.local &>/dev/null\n\nif [ $? != 0 ] ; then\n   echo \"It doesn't look like you have an 'updatedb' entry in your rc.local (startup) script.  This helps keep track of recently installed and added files on your Pi.  Adding now.\"\n   sed -i '\\/bin\\/sh/a updatedb' /etc/rc.local\n   fi\n\n########################################\n#Removing unnecessary rules\n#\n#Feel free to add your own to this list\n#######################################\n\ngrep -qF '# - emerging-chat.rules' /opt/suricata/etc/suricata/suricata.yaml\nif [ $? != 0 ] ; then\n   clear\n   echo \"Commenting out AIM_SERVERS rule...\"\n   sed -i \"/ - emerging-chat.rules/c\\# - emerging-chat.rules\" /opt/suricata/etc/suricata/suricata.yaml\n  #zenity --info --text=\"Ok.  AIM_SERVERS rule has been corrected!\" &> /dev/null\n   fi\n\ngrep -qF '# - tls-events.rules' /opt/suricata/etc/suricata/suricata.yaml\nif [ $? != 0 ] ; then\n   clear\n   echo \"Commenting out TLS_EVENTS rule...\"\n   sed -i \"/ - tls-events.rules/c\\# - tls-events.rules\" /opt/suricata/etc/suricata/suricata.yaml\n   #zenity --info --text=\"Ok.  TLS_EVENTS rule has been corrected!\" &> /dev/null\n   fi\n\ngrep -qF '# - stream-events.rules' /opt/suricata/etc/suricata/suricata.yaml\nif [ $? != 0 ] ; then\n   clear\n   echo \"Commenting out STREAM_EVENTS rule...\"\n   sed -i \"/ - stream-events.rules/c\\# - stream-events.rules\" /opt/suricata/etc/suricata/suricata.yaml\n   #zenity --info --text=\"Ok.  STREAM_EVENTS rule has been corrected!\" &> /dev/null\n   fi\n\ngrep -qF '# - app-layer-events.rules' /opt/suricata/etc/suricata/suricata.yaml\nif [ $? != 0 ] ; then\n   clear\n   echo \"Commenting out APP_LAYER_EVENTS rule...\"\n   sed -i \"/ - app-layer-events.rules/c\\# - app-layer-events.rules\" /opt/suricata/etc/suricata/suricata.yaml\n   #zenity --info --text=\"Ok.  APP_LAYER_EVENTS rule has been corrected!\" &> /dev/null\n   fi\n\ngrep -qF '# - decoder-events.rules' /opt/suricata/etc/suricata/suricata.yaml\nif [ $? != 0 ] ; then\n   clear\n   echo \"Commenting out DECODER_EVENTS rule...\"\n   sed -i \"/ - decoder-events.rules/c\\# - decoder-events.rules\" /opt/suricata/etc/suricata/suricata.yaml\n   #zenity --info --text=\"Ok.  DECODER_EVENTS rule has been corrected!\" &> /dev/null\n   fi\n\n   exit\n\n"
  },
  {
    "path": "scripts/suricata-install-script.sh",
    "content": "#!/bin/bash\ntouch /usr/local/src/install_log.log\nrm /usr/local/src/install_log.log\n\nls /opt/suricata/etc/suricata/BriarIDS_installed 2>/dev/null\n#echo $?\nif [ $? == 0 ] ; then\n   clear\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   echo \"It looks like you've already installed BriarIDS.\"\n   echo \"Delete this file if you'd like to re-install: '/opt/suricata/etc/suricata/BriarIDS_installed' \"\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   sleep 10\n   exit\n   else\n   clear\n   echo \"[Doesn't look like you have installed BriarIDS.  Continuing with the installation...]\"\n   fi\n\n\necho \"#######################################################\"\necho \"# BriarIDS Suricata install script for the raspberry pi\"\necho \"#------------------------------------------------------\"\necho \"#######################################################\"\nsleep 3\necho \"--------------------------------\"\necho \"make sure you are ROOT for this!\"\necho \"--------------------------------\"\nsleep 3\necho \"Phase-1: Gettin' the dependencies...\"\napt-get update \n\n\napt-get -y install libpcre3 libpcre3-dbg libpcre3-dev \\\nbuild-essential autoconf automake libtool libpcap-dev libnet1-dev \\\nlibyaml-0-2 libyaml-dev zlib1g zlib1g-dev libcap-ng-dev libcap-ng0 \\\nmake libmagic-dev libjansson-dev libjansson4 pkg-config libnetfilter-queue-dev \\\nlibnetfilter-queue1 libnfnetlink-dev libnss3-dev libnspr4-dev libnfnetlink0 \n\nif [ $? != 0 ] ; then\n   clear\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   echo \"There was an error...\"\n   echo \"review the log file:: '/usr/local/src/install_log.log' for more info\"\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   sleep 5\n   exit\n   else\n   clear\n   echo \"so far so good ;)\"\n   fi\n\necho \"Now it's time to install SURICATA!\"\necho \"This can take up to 30-45 minutes total to complete configure -> make install or longer depending on PI unit used\"\n\nsleep 3\ncd /usr/local/src\nVER=4.0.4\nwget \"http://www.openinfosecfoundation.org/download/suricata-$VER.tar.gz\"\nif [ $? != 0 ] ; then\n   clear\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   echo \"There was an error...\"\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   sleep 5\n   exit\n   else\n   clear\n   echo \"so far so good ;)\"\n   fi\ntar xvf suricata* \nrm *.gz\ncd suricata*\necho \"Phase-2: Issuing the configure command.  Please be patient while this completes...\"\n./configure --enable-nfqueue --with-libnss-libraries=/usr/lib --with-libnss-includes=/usr/include/nss/ --with-libnspr-libraries=/usr/lib --with-libnspr-includes=/usr/include/nspr --prefix=/opt/suricata --sysconfdir=/opt/suricata/etc --localstatedir=/var\nif [ $? != 0 ] ; then\n   clear\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   echo \"There was an error...\"\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   sleep 5\n   exit\n   else\n   clear\n   echo \"configure command finished without errors ;)\"\n   fi\necho \"Phase-3: Issuing the MAKE command...this could take a bit to complete so please be patient...\"\nmake\nif [ $? != 0 ] ; then\n   clear\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   echo \"There was an error...\"\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   sleep 5\n   exit\n   else\n   clear\n   echo \"MAKE command finished without errors ;)\"\n   fi\necho \"Phase-4: Issuing the 'make install' command...\"\nmake install-full\nif [ $? != 0 ] ; then\n   clear\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   echo \"There was an error...\"\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   sleep 5\n   exit\n   else\n   clear\n   echo \"Phase-5: finalizing installation!\"\n   fi\nldconfig\necho \"installing ethtool...\"\napt-get install -y ethtool \nif [ $? != 0 ] ; then\n   clear\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   echo \"There was an error...\"\n   echo \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\n   sleep 5\n   exit\n   else\n   clear\n   echo \"almost done!\"\n   fi\n\necho \"enabling http-log for capturing http log traffic\"\nsed -i '/http-log:/!b;n;s/enabled: no/enabled: yes/' /opt/suricata/etc/suricata/suricata.yaml\necho \"touching the BriarIDS_installed file to show suricata is installed for the Raspberry PI unit\"\ntouch /opt/suricata/etc/suricata/BriarIDS_installed\necho \"You made it!  Installation was a success.  You can give it a test run now by following the commands below or just close this terminal.  Your installation of suricata is complete\"\necho \"To continue the test run, please select the interface you would like to monitor: examples: eth0/eth1/wlan0,etc\"\nread yourinterface\nethtool -K $yourinterface tx off rx off sg off gso off gro off\necho \"Starting your PI IDS!  Give it a sec to load the rules...\"\necho \"Once this is loaded and running, you can test your IDS by issuing the following command in a separate shell on your PI IDS box:\"\necho \"curl http://testmyids.com\"\necho \"review the output of your detected alerts by issuing this command in a separate shell on your PI IDS box: tail -f /var/log/suricata/fast.log /var/log/suricata/http.log\"\n/opt/suricata/bin/suricata -c /opt/suricata/etc/suricata/suricata.yaml  --af-packet=$yourinterface\n\n"
  },
  {
    "path": "scripts/updatecheck.sh",
    "content": "#!/bin/bash\n\n###############################\n#check for existence of zenity\n############################### \nwhich zenity &> /dev/null\nif [ $? != 0 ] ; then\nsudo apt-get install zenity \nfi\n"
  },
  {
    "path": "setup.cfg",
    "content": ""
  },
  {
    "path": "setup.py",
    "content": "from setuptools import setup, find_packages\n\nsetup(name='briar',\n      version='0.1.27',\n      author='tylerebel',\n      author_email='sifiebel@gmail.com',\n      packages=find_packages(),\n      url='https://github.com/musicmancorley/BriarIDS',\n      scripts=['scripts/bro-installer.sh', 'scripts/bro-alienvaultintel-installer.sh', 'scripts/bromenu.sh', 'scripts/checkXauth.sh', 'scripts/configcheck.sh', 'scripts/filetypescan.sh', 'scripts/filetypescan_part2.sh', 'scripts/suricata-install-script.sh', 'scripts/updatecheck.sh', 'scripts/rulecleanup.sh'],\n      entry_points={\n          'console_scripts': ['briar=briarids.briar_ids:main', ],\n\n      },\n      classifiers=[\n            'Development Status :: 3 - Alpha',\n            'Intended Audience :: Developers',\n            'Intended Audience :: Information Technology',\n            'Topic :: System :: Monitoring'\n            'License :: OSI Approved :: MIT License',\n            'Programming Language :: Python :: 2.7',\n      ],\n\n      )\n"
  },
  {
    "path": "suricata.yaml",
    "content": "##################################################\n# Add the changes below to your suricata.yaml file\n##################################################\n\n# Holds variables that would be used by the engine.\nvars:\n\n  # Holds the address group vars that would be passed in a Signature.\n  # These would be retrieved during the Signature address parsing stage.\n  address-groups:\n\n    HOME_NET: \"[YOUR_WAN_IP_GOES_HERE/32]\"\n\n    EXTERNAL_NET: \"any\"\n\n"
  }
]