diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/ArduloaderWindow.py b/ArduloaderWindow.py new file mode 100644 index 0000000..30d60a3 --- /dev/null +++ b/ArduloaderWindow.py @@ -0,0 +1,136 @@ +#-*- coding: utf-8 -*- +from os import path as OSPath +from Ui_MainWindow import Ui_MainWindow +from Uploader import Uploader +from PortManager import PortManager +from ConfigHelper import ConfigHelper +from icons import * +import const +import BoardHelper + +from PyQt4.QtGui import QMainWindow +from PyQt4.QtGui import QPixmap, QBitmap +from PyQt4.QtGui import QPainter +from PyQt4.QtGui import QColor +from PyQt4 import QtGui +from PyQt4 import QtCore + +tostr = lambda qstr: qstr.toUtf8().data() +togbk = lambda qstr: unicode(tostr(qstr), "utf-8").encode("gbk") + +class ArduloaderWindow(QMainWindow): + def __init__(self, parent=None): + QMainWindow.__init__(self) + + self.ui = Ui_MainWindow() + self.ui.setupUi(self) + self.portManager = PortManager(self.ui, startmonitor=True) + self.configHelper = ConfigHelper(self.ui) + self.initSignal() + self.setupUi_Ex() + + def setupUi_Ex(self): + self.setWindowTitle(const.windowtitle) + self.ui.textEdit.append(const.aboutinfo) + self.ui.headLabel.setPixmap(QPixmap(":/main/icons/main/arduloader.png")) + self.setWindowIcon(QtGui.QIcon(":/main/icons/main/logo.png")) + self.setBoards() + + self.configHelper.updateUiByConfig() + + def setBoards(self): + ret, self.__boardsinfodict = BoardHelper.getBoardsInfo() + if not ret: + self.__boardsinfodict = {} + return + + for boardname in self.__boardsinfodict.keys(): + self.ui.mcuCombox.addItem(boardname) + + def onUploadFinish(self, ret, text): + self.timer.stop() + try: + res = ret == 0 and "Upload SUCCESS:)" or ("%s\nUpload FAILED:(" % text) + except IOError: + res = "Read tmp file error" + except: + res = "Unknown error" + + self.ui.textEdit.append(res) + + def onUploading(self): + prev_cursor = self.ui.textEdit.textCursor() + self.ui.textEdit.moveCursor(QtGui.QTextCursor.End) + self.ui.textEdit.insertPlainText (".") + self.ui.textEdit.setTextCursor(prev_cursor) + + def getUploadArgs(self): + infodict = self.__boardsinfodict.get(tostr(self.ui.mcuCombox.currentText())) + if not infodict: + return + + mcu = infodict["mcu"] + speed = infodict["speed"] + protocol = infodict["protocol"] + maximum_size = infodict["maximum_size"] + comport = tostr(self.ui.portCombox.currentText()) + flash_bin = togbk(self.ui.hexfileCombox.currentText()) + + return {"mcu": mcu, + "speed": speed, + "protocol": protocol, + "maximum_size": maximum_size, + "comport": comport, + "flash_bin": flash_bin + } + + def checkUploadArgs(self, argsdict): + if not argsdict: + self.ui.textEdit.append("Get chip data error") + return False + + if not OSPath.exists(argsdict.get("flash_bin", "")): + self.ui.textEdit.append("Hex file not exists") + return False + + # TODO: 检查文件大小是否超多当前芯片允许的最大值 + return True + + def startUpload(self): + argsdict = self.getUploadArgs() + if not self.checkUploadArgs(argsdict): + return + + self.uploader = Uploader() + self.connect(self.uploader.qobj, QtCore.SIGNAL(const.finish_sig), self.onUploadFinish) + self.uploader.resetUploadArgs(argsdict) + + self.ui.textEdit.clear() + self.ui.textEdit.append("Start uploading\n") + self.timer = QtCore.QTimer() + self.timer.timeout.connect(self.onUploading) + self.uploader.start() + self.timer.start(const.process_interval) + + def onOpenHexFile(self): + filename = QtGui.QFileDialog.getOpenFileName(self, "Choose a HEX file", ".", "HEX (*.hex)") + if filename == "": + return + index = self.ui.hexfileCombox.findText(filename) + if index < 0: + self.ui.hexfileCombox.insertItem(0, filename) + index = 0 + self.ui.hexfileCombox.setCurrentIndex(index) + + def closeEvent(self, e): + hex = tostr(self.ui.hexfileCombox.currentText()) + com = tostr(self.ui.portCombox.currentText()) + board = tostr(self.ui.mcuCombox.currentText()) + self.configHelper.updateConfig(hex, com, board) + e.accept() + + def initSignal(self): + self.ui.exitButton.clicked.connect(self.close) + self.ui.uploadButton.clicked.connect(self.startUpload) + self.ui.openHexButton.clicked.connect(self.onOpenHexFile) + diff --git a/BoardHelper.py b/BoardHelper.py new file mode 100644 index 0000000..1ef8476 --- /dev/null +++ b/BoardHelper.py @@ -0,0 +1,37 @@ +#-*- coding: utf-8 -*- +import const +from re import search as ReSearch + +def __parseBoards(fp): + boardsinfo = {} + cur_board_name = "" + for line in fp.readlines(): + line = line.strip() + if line == '' or line.startswith('#'): + continue + value = line.split("=")[-1] + if ReSearch(const.boards_name_matcher, line): + cur_board_name = value + boardsinfo[cur_board_name] = {} + if cur_board_name == "": + continue + + if ReSearch(const.boards_upload_protocol_matcher, line): + boardsinfo[cur_board_name]["protocol"] = value + if ReSearch(const.boards_upload_maximum_size_matcher, line): + boardsinfo[cur_board_name]["maximum_size"] = int(value) + if ReSearch(const.boards_upload_speed_matcher, line): + boardsinfo[cur_board_name]["speed"] = value + if ReSearch(const.boards_mcu_matcher, line): + boardsinfo[cur_board_name]["mcu"] = value + + return boardsinfo + +def getBoardsInfo(): + try: + fp = open(const.boards_txt, "r") + boardsinfo = __parseBoards(fp) + fp.close() + return True, boardsinfo + except Exception, e: + return False, repr(e) \ No newline at end of file diff --git a/ConfigHelper.py b/ConfigHelper.py new file mode 100644 index 0000000..bd16455 --- /dev/null +++ b/ConfigHelper.py @@ -0,0 +1,86 @@ +#-*- coding: utf-8 -*- +import const +from ConfigParser import ConfigParser + +class ConfigHelper: + SEC_UPLOAD = "upload" + SEC_UI = "ui" + KEY_HEX = "hex" + KEY_COM = "port" + KEY_BOARD = "board" + KEY_STYLE = "style" + KEY_PROGPAPER = "progpaper" + + def __init__(self, ui, cfgini=const.config): + self.ui = ui + self.cfgini = cfgini + self.cfg = ConfigParser() + self.readCfg() + + def readCfg(self): + return len(self.cfg.read(self.cfgini)) > 0 + + def getVal(self, section, key): + if not self.cfg.has_section(section): + return "" + if not self.cfg.has_option(section, key): + return "" + + return self.cfg.get(section, key).strip() + + def setVal(self, section, key, val): + if not self.cfg.has_section(section): + self.cfg.add_section(section) + + self.cfg.set(section, key, val) + + def writeCfg(self): + try: + self.cfg.write(open(self.cfgini, "w")) + except IOError: + pass + + def __updateUiAboutUpload(self): + hex = self.getVal(self.SEC_UPLOAD, self.KEY_HEX) + if hex != "": + self.ui.hexfileCombox.addItem(hex) + + board = self.getVal(self.SEC_UPLOAD, self.KEY_BOARD) + if board != "": + index = self.ui.mcuCombox.findText(board) + if index != -1: + self.ui.mcuCombox.setCurrentIndex(index) + + com = self.getVal(self.SEC_UPLOAD, self.KEY_COM) + if com != "": + index = self.ui.portCombox.findText(com) + if index != -1: + self.ui.portCombox.setCurrentIndex(index) + else: + self.ui.portCombox.addItem(com) + self.ui.portCombox.setCurrentIndex(self.ui.portCombox.count() - 1) + + def __updateUiAboutUi(self): + style = self.getVal(self.SEC_UI, self.KEY_STYLE) + if style != "": + from PyQt4.QtGui import QApplication + QApplication.setStyle(style) + + progpaper = self.getVal(self.SEC_UI, self.KEY_PROGPAPER) + if progpaper != "": + from os import path as OSPath + from PyQt4.QtGui import QPixmap + progpaper = unicode(progpaper, "gbk") + if OSPath.exists(progpaper): + self.ui.headLabel.setPixmap(QPixmap(progpaper).scaled(const.width, const.height)) + + def updateUiByConfig(self): + self.__updateUiAboutUpload() + self.__updateUiAboutUi() + + def updateConfig(self, hex="", com="", board=""): + self.setVal(self.SEC_UPLOAD, self.KEY_HEX, hex) + self.setVal(self.SEC_UPLOAD, self.KEY_COM, com) + self.setVal(self.SEC_UPLOAD, self.KEY_BOARD, board) + self.writeCfg() + \ No newline at end of file diff --git a/PortManager.py b/PortManager.py new file mode 100644 index 0000000..2c1de3d --- /dev/null +++ b/PortManager.py @@ -0,0 +1,44 @@ +#-*- coding: utf-8 -*- +import serial.tools.list_ports as lp +from PyQt4.QtCore import QTimer + +class PortManager(object): + def __init__(self, ui, queryinterval=1000, startmonitor=False): + self.ui = ui + self.queryinterval = queryinterval + self.querytimer = QTimer() + self.querytimer.timeout.connect(self.__updateUiComPorts) + self.com_list = [] + self.__updateUiComPorts(showmsg=False) + if startmonitor: + self.startComPortMonitor() + + def __updateUiComPorts(self, com_list=None, showmsg=True): + if com_list is None: + com_list = self.__getComInfoList() + + # NEW ADDED + for comport in list(set(com_list) - set(self.com_list)): + self.ui.portCombox.addItem(comport) + if showmsg: + self.ui.textEdit.append("New port found: %s" % comport) + # NEW REMOVED + for comport in list(set(self.com_list) - set(com_list)): + index = self.ui.portCombox.findText(comport) + if index == -1: + continue + self.ui.portCombox.removeItem(index) + if showmsg: + self.ui.textEdit.append("Port removed: %s" % comport) + + self.com_list = com_list + + def __getComInfoList(self): + return [tup[0] for tup in list(lp.comports())] + + def startComPortMonitor(self): + self.querytimer.start(self.queryinterval) + + def stopComPortMonitor(self): + self.querytimer.stop() + \ No newline at end of file diff --git a/README.md b/README.md index ad98d8c..2eaea9c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,13 @@ +#Arduloader + Arduloader is tool for uploading hex file to your Arduino board. It's implemented by Python. -These development env is required: +- You can build exe file on Windows like this: python buildexe.py py2exe + + +Dependences: +1. Python 1. PyQt4 -2. Py2exe \ No newline at end of file +2. Py2exe(build exe file on Windows) + diff --git a/Ui_MainWindow.py b/Ui_MainWindow.py new file mode 100644 index 0000000..09f1e7b --- /dev/null +++ b/Ui_MainWindow.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file '../ui/mainwindow.ui' +# +# Created: Tue Jul 14 22:43:58 2015 +# by: PyQt4 UI code generator 4.9.5 +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore, QtGui + +try: + _fromUtf8 = QtCore.QString.fromUtf8 +except AttributeError: + _fromUtf8 = lambda s: s + +class Ui_MainWindow(object): + def setupUi(self, MainWindow): + MainWindow.setObjectName(_fromUtf8("MainWindow")) + MainWindow.resize(447, 556) + self.centralwidget = QtGui.QWidget(MainWindow) + self.centralwidget.setObjectName(_fromUtf8("centralwidget")) + self.gridLayout = QtGui.QGridLayout(self.centralwidget) + self.gridLayout.setObjectName(_fromUtf8("gridLayout")) + self.headLabel = QtGui.QLabel(self.centralwidget) + self.headLabel.setText(_fromUtf8("")) + self.headLabel.setObjectName(_fromUtf8("headLabel")) + self.gridLayout.addWidget(self.headLabel, 0, 0, 1, 5) + self.horizontalLayout = QtGui.QHBoxLayout() + self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) + self.hexfileCombox = QtGui.QComboBox(self.centralwidget) + self.hexfileCombox.setMinimumSize(QtCore.QSize(311, 0)) + self.hexfileCombox.setEditable(True) + self.hexfileCombox.setObjectName(_fromUtf8("hexfileCombox")) + self.horizontalLayout.addWidget(self.hexfileCombox) + self.openHexButton = QtGui.QPushButton(self.centralwidget) + self.openHexButton.setObjectName(_fromUtf8("openHexButton")) + self.horizontalLayout.addWidget(self.openHexButton) + self.gridLayout.addLayout(self.horizontalLayout, 1, 0, 1, 5) + self.portCombox = QtGui.QComboBox(self.centralwidget) + self.portCombox.setEditable(False) + self.portCombox.setObjectName(_fromUtf8("portCombox")) + self.gridLayout.addWidget(self.portCombox, 2, 0, 1, 1) + self.textEdit = QtGui.QTextEdit(self.centralwidget) + self.textEdit.setStyleSheet(_fromUtf8("")) + self.textEdit.setFrameShape(QtGui.QFrame.NoFrame) + self.textEdit.setObjectName(_fromUtf8("textEdit")) + self.gridLayout.addWidget(self.textEdit, 3, 0, 1, 5) + spacerItem = QtGui.QSpacerItem(260, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) + self.gridLayout.addItem(spacerItem, 4, 0, 1, 3) + self.uploadButton = QtGui.QPushButton(self.centralwidget) + self.uploadButton.setObjectName(_fromUtf8("uploadButton")) + self.gridLayout.addWidget(self.uploadButton, 4, 3, 1, 1) + self.exitButton = QtGui.QPushButton(self.centralwidget) + self.exitButton.setObjectName(_fromUtf8("exitButton")) + self.gridLayout.addWidget(self.exitButton, 4, 4, 1, 1) + self.mcuCombox = QtGui.QComboBox(self.centralwidget) + self.mcuCombox.setEnabled(True) + self.mcuCombox.setEditable(False) + self.mcuCombox.setObjectName(_fromUtf8("mcuCombox")) + self.gridLayout.addWidget(self.mcuCombox, 2, 1, 1, 4) + MainWindow.setCentralWidget(self.centralwidget) + + self.retranslateUi(MainWindow) + QtCore.QMetaObject.connectSlotsByName(MainWindow) + + def retranslateUi(self, MainWindow): + MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "Arduloader", None, QtGui.QApplication.UnicodeUTF8)) + self.openHexButton.setText(QtGui.QApplication.translate("MainWindow", "Browser", None, QtGui.QApplication.UnicodeUTF8)) + self.uploadButton.setText(QtGui.QApplication.translate("MainWindow", "Upload", None, QtGui.QApplication.UnicodeUTF8)) + self.exitButton.setText(QtGui.QApplication.translate("MainWindow", "Exit", None, QtGui.QApplication.UnicodeUTF8)) + diff --git a/Uploader.py b/Uploader.py new file mode 100644 index 0000000..94f1941 --- /dev/null +++ b/Uploader.py @@ -0,0 +1,59 @@ +#-*- coding: utf-8 -*- +from PyQt4.QtCore import QObject, SIGNAL +import const +import os +import threading + +def getstatusoutput(cmd): + """Return (status, output) of executing cmd in a shell.""" + pipe = os.popen(cmd + ' 2>&1', 'r') + text = pipe.read() + sts = pipe.close() + if sts is None: sts = 0 + if text[-1:] == '\n': text = text[:-1] + return sts, text + +class Uploader(threading.Thread): + def __init__(self): + threading.Thread.__init__(self) + self.qobj = QObject() + + self.avrdude = const.avrdude + self.avrdude_conf = const.avrconf + self.mcu = 'atmega328p' + self.speed = "115200" + self.protocol = "arduino" + self.comport = "COM3" + self.flash_bin = '' + + self.__buildUploadCmd() + + def __buildUploadCmd(self): + self.upload_cmd = "%s -C%s -v -p%s -c%s -P%s -b%s -D -Uflash:w:%s:i 2>%s" % ( + self.avrdude, + self.avrdude_conf, + self.mcu, + self.protocol, + self.comport, + self.speed, + self.flash_bin, + const.arduloader_log) + + def resetUploadArgs(self, argsdict): + assert type(argsdict) is dict + + self.mcu = argsdict["mcu"] + self.speed = argsdict["speed"] + self.protocol = argsdict["protocol"] + self.comport = argsdict["comport"] + self.flash_bin = argsdict["flash_bin"] + + self.__buildUploadCmd() + + def run(self): + self.upload() + + def upload(self): + ret, text = getstatusoutput(self.upload_cmd) + self.qobj.emit(SIGNAL(const.finish_sig), ret, text) + \ No newline at end of file diff --git a/avrtool/avrdude.conf b/avrtool/avrdude.conf new file mode 100644 index 0000000..0c2446c --- /dev/null +++ b/avrtool/avrdude.conf @@ -0,0 +1,16919 @@ +# $Id: avrdude.conf.in 991 2011-08-26 20:50:32Z joerg_wunsch $ -*- text -*- +# +# AVRDUDE Configuration File +# +# This file contains configuration data used by AVRDUDE which describes +# the programming hardware pinouts and also provides part definitions. +# AVRDUDE's "-C" command line option specifies the location of the +# configuration file. The "-c" option names the programmer configuration +# which must match one of the entry's "id" parameter. The "-p" option +# identifies which part AVRDUDE is going to be programming and must match +# one of the parts' "id" parameter. +# +# Possible entry formats are: +# +# programmer +# id = [, [, ] ...] ; # are quoted strings +# desc = ; # quoted string +# type = par | stk500 | stk500v2 | stk500pp | stk500hvsp | stk500generic | +# stk600 | stk600pp | stk600hvsp | +# avr910 | butterfly | usbasp | +# jtagmki | jtagmkii | jtagmkii_isp | jtagmkii_dw | +# jtagmkII_avr32 | jtagmkii_pdi | +# dragon_dw | dragon_jtag | dragon_isp | dragon_pp | +# dragon_hvsp | dragon_pdi | arduino | wiring; # programmer type +# baudrate = ; # baudrate for avr910-programmer +# vcc = [, ... ] ; # pin number(s) +# reset = ; # pin number +# sck = ; # pin number +# mosi = ; # pin number +# miso = ; # pin number +# errled = ; # pin number +# rdyled = ; # pin number +# pgmled = ; # pin number +# vfyled = ; # pin number +# usbvid = ; # USB VID (Vendor ID) +# usbpid = ; # USB PID (Product ID) +# usbdev = ; # USB interface or other device info +# usbvendor = ; # USB Vendor Name +# usbproduct = ; # USB Product Name +# usbsn = ; # USB Serial Number +# +# To invert a bit, use = ~ , the spaces are important. +# ; +# +# part +# id = ; # quoted string +# desc = ; # quoted string +# has_jtag = ; # part has JTAG i/f +# has_debugwire = ; # part has debugWire i/f +# has_pdi = ; # part has PDI i/f +# has_tpi = ; # part has TPI i/f +# devicecode = ; # deprecated, use stk500_devcode +# stk500_devcode = ; # numeric +# avr910_devcode = ; # numeric +# signature = ; # signature bytes +# chip_erase_delay = ; # micro-seconds +# reset = dedicated | io; +# retry_pulse = reset | sck; +# pgm_enable = ; +# chip_erase = ; +# chip_erase_delay = ; # chip erase delay (us) +# # STK500 parameters (parallel programming IO lines) +# pagel = ; # pin name in hex, i.e., 0xD7 +# bs2 = ; # pin name in hex, i.e., 0xA0 +# serial = ; # can use serial downloading +# parallel = ; # can use par. programming +# # STK500v2 parameters, to be taken from Atmel's XML files +# timeout = ; +# stabdelay = ; +# cmdexedelay = ; +# synchloops = ; +# bytedelay = ; +# pollvalue = ; +# pollindex = ; +# predelay = ; +# postdelay = ; +# pollmethod = ; +# mode = ; +# delay = ; +# blocksize = ; +# readsize = ; +# hvspcmdexedelay = ; +# # STK500v2 HV programming parameters, from XML +# pp_controlstack = , , ...; # PP only +# hvsp_controlstack = , , ...; # HVSP only +# hventerstabdelay = ; +# progmodedelay = ; # PP only +# latchcycles = ; +# togglevtg = ; +# poweroffdelay = ; +# resetdelayms = ; +# resetdelayus = ; +# hvleavestabdelay = ; +# resetdelay = ; +# synchcycles = ; # HVSP only +# chiperasepulsewidth = ; # PP only +# chiperasepolltimeout = ; +# chiperasetime = ; # HVSP only +# programfusepulsewidth = ; # PP only +# programfusepolltimeout = ; +# programlockpulsewidth = ; # PP only +# programlockpolltimeout = ; +# # JTAG ICE mkII parameters, also from XML files +# allowfullpagebitstream = ; +# enablepageprogramming = ; +# idr = ; # IO addr of IDR (OCD) reg. +# rampz = ; # IO addr of RAMPZ reg. +# spmcr = ; # mem addr of SPMC[S]R reg. +# eecr = ; # mem addr of EECR reg. +# # (only when != 0x3c) +# is_avr32 = ; # AVR32 part +# +# memory +# paged = ; # yes / no +# size = ; # bytes +# page_size = ; # bytes +# num_pages = ; # numeric +# min_write_delay = ; # micro-seconds +# max_write_delay = ; # micro-seconds +# readback_p1 = ; # byte value +# readback_p2 = ; # byte value +# pwroff_after_write = ; # yes / no +# read = ; +# write = ; +# read_lo = ; +# read_hi = ; +# write_lo = ; +# write_hi = ; +# loadpage_lo = ; +# loadpage_hi = ; +# writepage = ; +# ; +# ; +# +# If any of the above parameters are not specified, the default value +# of 0 is used for numerics or the empty string ("") for string +# values. If a required parameter is left empty, AVRDUDE will +# complain. +# +# NOTES: +# * 'devicecode' is the device code used by the STK500 (see codes +# listed below) +# * Not all memory types will implement all instructions. +# * AVR Fuse bits and Lock bits are implemented as a type of memory. +# * Example memory types are: +# "flash", "eeprom", "fuse", "lfuse" (low fuse), "hfuse" (high +# fuse), "signature", "calibration", "lock" +# * The memory type specified on the avrdude command line must match +# one of the memory types defined for the specified chip. +# * The pwroff_after_write flag causes avrdude to attempt to +# power the device off and back on after an unsuccessful write to +# the affected memory area if VCC programmer pins are defined. If +# VCC pins are not defined for the programmer, a message +# indicating that the device needs a power-cycle is printed out. +# This flag was added to work around a problem with the +# at90s4433/2333's; see the at90s4433 errata at: +# +# http://www.atmel.com/atmel/acrobat/doc1280.pdf +# +# INSTRUCTION FORMATS +# +# Instruction formats are specified as a comma seperated list of +# string values containing information (bit specifiers) about each +# of the 32 bits of the instruction. Bit specifiers may be one of +# the following formats: +# +# '1' = the bit is always set on input as well as output +# +# '0' = the bit is always clear on input as well as output +# +# 'x' = the bit is ignored on input and output +# +# 'a' = the bit is an address bit, the bit-number matches this bit +# specifier's position within the current instruction byte +# +# 'aN' = the bit is the Nth address bit, bit-number = N, i.e., a12 +# is address bit 12 on input, a0 is address bit 0. +# +# 'i' = the bit is an input data bit +# +# 'o' = the bit is an output data bit +# +# Each instruction must be composed of 32 bit specifiers. The +# instruction specification closely follows the instruction data +# provided in Atmel's data sheets for their parts. +# +# See below for some examples. +# +# +# The following are STK500 part device codes to use for the +# "devicecode" field of the part. These came from Atmel's software +# section avr061.zip which accompanies the application note +# AVR061 available from: +# +# http://www.atmel.com/atmel/acrobat/doc2525.pdf +# + +#define ATTINY10 0x10 /* the _old_ one that never existed! */ +#define ATTINY11 0x11 +#define ATTINY12 0x12 +#define ATTINY15 0x13 +#define ATTINY13 0x14 + +#define ATTINY22 0x20 +#define ATTINY26 0x21 +#define ATTINY28 0x22 +#define ATTINY2313 0x23 + +#define AT90S1200 0x33 + +#define AT90S2313 0x40 +#define AT90S2323 0x41 +#define AT90S2333 0x42 +#define AT90S2343 0x43 + +#define AT90S4414 0x50 +#define AT90S4433 0x51 +#define AT90S4434 0x52 +#define ATMEGA48 0x59 + +#define AT90S8515 0x60 +#define AT90S8535 0x61 +#define AT90C8534 0x62 +#define ATMEGA8515 0x63 +#define ATMEGA8535 0x64 + +#define ATMEGA8 0x70 +#define ATMEGA88 0x73 +#define ATMEGA168 0x86 + +#define ATMEGA161 0x80 +#define ATMEGA163 0x81 +#define ATMEGA16 0x82 +#define ATMEGA162 0x83 +#define ATMEGA169 0x84 + +#define ATMEGA323 0x90 +#define ATMEGA32 0x91 + +#define ATMEGA64 0xA0 + +#define ATMEGA103 0xB1 +#define ATMEGA128 0xB2 +#define AT90CAN128 0xB3 +#define AT90CAN64 0xB3 +#define AT90CAN32 0xB3 + +#define AT86RF401 0xD0 + +#define AT89START 0xE0 +#define AT89S51 0xE0 +#define AT89S52 0xE1 + +# The following table lists the devices in the original AVR910 +# appnote: +# |Device |Signature | Code | +# +-------+----------+------+ +# |tiny12 | 1E 90 05 | 0x55 | +# |tiny15 | 1E 90 06 | 0x56 | +# | | | | +# | S1200 | 1E 90 01 | 0x13 | +# | | | | +# | S2313 | 1E 91 01 | 0x20 | +# | S2323 | 1E 91 02 | 0x48 | +# | S2333 | 1E 91 05 | 0x34 | +# | S2343 | 1E 91 03 | 0x4C | +# | | | | +# | S4414 | 1E 92 01 | 0x28 | +# | S4433 | 1E 92 03 | 0x30 | +# | S4434 | 1E 92 02 | 0x6C | +# | | | | +# | S8515 | 1E 93 01 | 0x38 | +# | S8535 | 1E 93 03 | 0x68 | +# | | | | +# |mega32 | 1E 95 01 | 0x72 | +# |mega83 | 1E 93 05 | 0x65 | +# |mega103| 1E 97 01 | 0x41 | +# |mega161| 1E 94 01 | 0x60 | +# |mega163| 1E 94 02 | 0x64 | + +# Appnote AVR109 also has a table of AVR910 device codes, which +# lists: +# dev avr910 signature +# ATmega8 0x77 0x1E 0x93 0x07 +# ATmega8515 0x3B 0x1E 0x93 0x06 +# ATmega8535 0x6A 0x1E 0x93 0x08 +# ATmega16 0x75 0x1E 0x94 0x03 +# ATmega162 0x63 0x1E 0x94 0x04 +# ATmega163 0x66 0x1E 0x94 0x02 +# ATmega169 0x79 0x1E 0x94 0x05 +# ATmega32 0x7F 0x1E 0x95 0x02 +# ATmega323 0x73 0x1E 0x95 0x01 +# ATmega64 0x46 0x1E 0x96 0x02 +# ATmega128 0x44 0x1E 0x97 0x02 +# +# These codes refer to "BOOT" device codes which are apparently +# different than standard device codes, for whatever reasons +# (often one above the standard code). + +# There are several extended versions of AVR910 implementations around +# in the Internet. These add the following codes (only devices that +# actually exist are listed): + +# ATmega8515 0x3A +# ATmega128 0x43 +# ATmega64 0x45 +# ATtiny26 0x5E +# ATmega8535 0x69 +# ATmega32 0x72 +# ATmega16 0x74 +# ATmega8 0x76 +# ATmega169 0x78 + +# +# Overall avrdude defaults +# +default_parallel = "lpt1"; +default_serial = "com1"; +# default_bitclock = 2.5 + + +# +# PROGRAMMER DEFINITIONS +# + +# http://wiring.org.co/ +# Basically STK500v2 protocol, with some glue to trigger the +# bootloader. +programmer + id = "wiring"; + desc = "Wiring"; + type = wiring; +; + +programmer + id = "arduino"; + desc = "Arduino"; + type = arduino; +; +# this will interface with the chips on these programmers: +# +# http://real.kiev.ua/old/avreal/en/adapters +# http://www.amontec.com/jtagkey.shtml, jtagkey-tiny.shtml +# http://www.olimex.com/dev/arm-usb-ocd.html, arm-usb-tiny.html +# http://www.ethernut.de/en/hardware/turtelizer/index.html +# http://elk.informatik.fh-augsburg.de/hhweb/doc/openocd/usbjtag/usbjtag.html +# http://dangerousprototypes.com/docs/FT2232_breakout_board +# http://www.ftdichip.com/Products/Modules/DLPModules.htm,DLP-2232*,DLP-USB1232H +# http://flashrom.org/FT2232SPI_Programmer +# +# The drivers will look for a specific device and use the first one found. +# If you have mulitple devices, then look for unique information (like SN) +# And fill that in here. + +programmer + id = "avrftdi"; + desc = "FT2232D based generic programmer"; + type = avrftdi; + usbvid = 0x0403; + usbpid = 0x6010; + usbvendor = ""; + usbproduct = ""; + usbdev = "A"; + usbsn = ""; +#ISP-signals - lower ACBUS-Nibble (default) + reset = 4; + sck = 1; + mosi = 2; + miso = 3; +#LED SIGNALs - higher ACBUS-Nibble +# errled = 5; +# rdyled = 6; +# pgmled = 7; +# vfyled = 8; +#Buffer Signal - ADBUS - Nibble +# buff = 9; +; +# This is an implementation of the above with a buffer IC (74AC244) and +# 4 LEDs directly attached, active low. The buff and reset pins are +# understood (by avrdude) to be active low, so there's no +# need to invert the bits. +programmer + id = "2232HIO"; + desc = "FT2232H based generic programmer"; + type = avrftdi; + usbvid = 0x0403; +# Note: This PID is reserved for generic H devices and +# should be programmed into the EEPROM +# usbpid = 0x8A48; + usbpid = 0x6010; + usbdev = "A"; + usbvendor = ""; + usbproduct = ""; + usbsn = ""; +#ISP-signals + reset = 4; + sck = 1; + mosi = 2; + miso = 3; + buff = 5; +#LED SIGNALs + errled = ~ 12; + rdyled = ~ 15; + pgmled = ~ 14; + vfyled = ~ 13; +; + +programmer + id = "jtagkey"; + desc = "Amontec JTAGKey, JTAGKey-Tiny and JTAGKey2"; + type = avrftdi; + usbvid = 0x0403; +# Note: This PID is used in all JTAGKey variants + usbpid = 0xCFF8; + usbdev = "A"; + usbvendor = ""; + usbproduct = ""; + usbsn = ""; +#ISP-signals => 20 - Pin connector on JTAGKey + reset = 4; # TMS 7 violet + sck = 1; # TCK 9 white + mosi = 2; # TDI 5 green + miso = 3; # TDO 13 orange + buff = 5; +# VTG VREF 1 brown with red tip +# GND GND 20 black +# The colors are on the 20 pin breakout cable +# from Amontec +; + +programmer + id = "avrisp"; + desc = "Atmel AVR ISP"; + type = stk500; +; + +programmer + id = "avrispv2"; + desc = "Atmel AVR ISP V2"; + type = stk500v2; +; + +programmer + id = "avrispmkII"; + desc = "Atmel AVR ISP mkII"; + type = stk500v2; +; + +programmer + id = "avrisp2"; + desc = "Atmel AVR ISP mkII"; + type = stk500v2; +; + +programmer + id = "buspirate"; + desc = "The Bus Pirate"; + type = buspirate; +; + +# This is supposed to be the "default" STK500 entry. +# Attempts to select the correct firmware version +# by probing for it. Better use one of the entries +# below instead. +programmer + id = "stk500"; + desc = "Atmel STK500"; + type = stk500generic; +; + +programmer + id = "stk500v1"; + desc = "Atmel STK500 Version 1.x firmware"; + type = stk500; +; + +programmer + id = "mib510"; + desc = "Crossbow MIB510 programming board"; + type = stk500; +; + +programmer + id = "stk500v2"; + desc = "Atmel STK500 Version 2.x firmware"; + type = stk500v2; +; + +programmer + id = "stk500pp"; + desc = "Atmel STK500 V2 in parallel programming mode"; + type = stk500pp; +; + +programmer + id = "stk500hvsp"; + desc = "Atmel STK500 V2 in high-voltage serial programming mode"; + type = stk500hvsp; +; + +programmer + id = "stk600"; + desc = "Atmel STK600"; + type = stk600; +; + +programmer + id = "stk600pp"; + desc = "Atmel STK600 in parallel programming mode"; + type = stk600pp; +; + +programmer + id = "stk600hvsp"; + desc = "Atmel STK600 in high-voltage serial programming mode"; + type = stk600hvsp; +; + +programmer + id = "avr910"; + desc = "Atmel Low Cost Serial Programmer"; + type = avr910; +; + +programmer + id = "usbasp"; + desc = "USBasp, http://www.fischl.de/usbasp/"; + type = usbasp; +; + +programmer + id = "usbtiny"; + desc = "USBtiny simple USB programmer, http://www.ladyada.net/make/usbtinyisp/"; + type = usbtiny; +; + +programmer + id = "butterfly"; + desc = "Atmel Butterfly Development Board"; + type = butterfly; +; + +programmer + id = "avr109"; + desc = "Atmel AppNote AVR109 Boot Loader"; + type = butterfly; +; + +programmer + id = "avr911"; + desc = "Atmel AppNote AVR911 AVROSP"; + type = butterfly; +; + +# suggested in http://forum.mikrokopter.de/topic-post48317.html +programmer + id = "mkbutterfly"; + desc = "Mikrokopter.de Butterfly"; + type = butterfly_mk; +; + +programmer + id = "butterfly_mk"; + desc = "Mikrokopter.de Butterfly"; + type = butterfly_mk; +; + +programmer + id = "jtagmkI"; + desc = "Atmel JTAG ICE (mkI)"; + baudrate = 115200; # default is 115200 + type = jtagmki; +; + +# easier to type +programmer + id = "jtag1"; + desc = "Atmel JTAG ICE (mkI)"; + baudrate = 115200; # default is 115200 + type = jtagmki; +; + +# easier to type +programmer + id = "jtag1slow"; + desc = "Atmel JTAG ICE (mkI)"; + baudrate = 19200; + type = jtagmki; +; + +programmer + id = "jtagmkII"; + desc = "Atmel JTAG ICE mkII"; + baudrate = 19200; # default is 19200 + type = jtagmkii; +; + +# easier to type +programmer + id = "jtag2slow"; + desc = "Atmel JTAG ICE mkII"; + baudrate = 19200; # default is 19200 + type = jtagmkii; +; + +# JTAG ICE mkII @ 115200 Bd +programmer + id = "jtag2fast"; + desc = "Atmel JTAG ICE mkII"; + baudrate = 115200; + type = jtagmkii; +; + +# make the fast one the default, people will love that +programmer + id = "jtag2"; + desc = "Atmel JTAG ICE mkII"; + baudrate = 115200; + type = jtagmkii; +; + +# JTAG ICE mkII in ISP mode +programmer + id = "jtag2isp"; + desc = "Atmel JTAG ICE mkII in ISP mode"; + baudrate = 115200; + type = jtagmkii_isp; +; + +# JTAG ICE mkII in debugWire mode +programmer + id = "jtag2dw"; + desc = "Atmel JTAG ICE mkII in debugWire mode"; + baudrate = 115200; + type = jtagmkii_dw; +; + +# JTAG ICE mkII in AVR32 mode +programmer + id = "jtagmkII_avr32"; + desc = "Atmel JTAG ICE mkII im AVR32 mode"; + baudrate = 115200; + type = jtagmkii_avr32; +; + +# JTAG ICE mkII in AVR32 mode +programmer + id = "jtag2avr32"; + desc = "Atmel JTAG ICE mkII im AVR32 mode"; + baudrate = 115200; + type = jtagmkii_avr32; +; + +# JTAG ICE mkII in PDI mode +programmer + id = "jtag2pdi"; + desc = "Atmel JTAG ICE mkII PDI mode"; + baudrate = 115200; + type = jtagmkii_pdi; +; + +# AVR Dragon in JTAG mode +programmer + id = "dragon_jtag"; + desc = "Atmel AVR Dragon in JTAG mode"; + baudrate = 115200; + type = dragon_jtag; +; + +# AVR Dragon in ISP mode +programmer + id = "dragon_isp"; + desc = "Atmel AVR Dragon in ISP mode"; + baudrate = 115200; + type = dragon_isp; +; + +# AVR Dragon in PP mode +programmer + id = "dragon_pp"; + desc = "Atmel AVR Dragon in PP mode"; + baudrate = 115200; + type = dragon_pp; +; + +# AVR Dragon in HVSP mode +programmer + id = "dragon_hvsp"; + desc = "Atmel AVR Dragon in HVSP mode"; + baudrate = 115200; + type = dragon_hvsp; +; + +# AVR Dragon in debugWire mode +programmer + id = "dragon_dw"; + desc = "Atmel AVR Dragon in debugWire mode"; + baudrate = 115200; + type = dragon_dw; +; + +# AVR Dragon in PDI mode +programmer + id = "dragon_pdi"; + desc = "Atmel AVR Dragon in PDI mode"; + baudrate = 115200; + type = dragon_pdi; +; + +programmer + id = "pavr"; + desc = "Jason Kyle's pAVR Serial Programmer"; + type = avr910; +; + +# Parallel port programmers. + +programmer + id = "bsd"; + desc = "Brian Dean's Programmer, http://www.bsdhome.com/avrdude/"; + type = par; + vcc = 2, 3, 4, 5; + reset = 7; + sck = 8; + mosi = 9; + miso = 10; +; + +programmer + id = "stk200"; + desc = "STK200"; + type = par; + buff = 4, 5; + sck = 6; + mosi = 7; + reset = 9; + miso = 10; +; + +# The programming dongle used by the popular Ponyprog +# utility. It is almost similar to the STK200 one, +# except that there is a LED indicating that the +# programming is currently in progress. + +programmer + id = "pony-stk200"; + desc = "Pony Prog STK200"; + type = par; + buff = 4, 5; + sck = 6; + mosi = 7; + reset = 9; + miso = 10; + pgmled = 8; +; + +programmer + id = "dt006"; + desc = "Dontronics DT006"; + type = par; + reset = 4; + sck = 5; + mosi = 2; + miso = 11; +; + +programmer + id = "bascom"; + desc = "Bascom SAMPLE programming cable"; + type = par; + reset = 4; + sck = 5; + mosi = 2; + miso = 11; +; + +programmer + id = "alf"; + desc = "Nightshade ALF-PgmAVR, http://nightshade.homeip.net/"; + type = par; + vcc = 2, 3, 4, 5; + buff = 6; + reset = 7; + sck = 8; + mosi = 9; + miso = 10; + errled = 1; + rdyled = 14; + pgmled = 16; + vfyled = 17; +; + +programmer + id = "sp12"; + desc = "Steve Bolt's Programmer"; + type = par; + vcc = 4,5,6,7,8; + reset = 3; + sck = 2; + mosi = 9; + miso = 11; +; + +programmer + id = "picoweb"; + desc = "Picoweb Programming Cable, http://www.picoweb.net/"; + type = par; + reset = 2; + sck = 3; + mosi = 4; + miso = 13; +; + +programmer + id = "abcmini"; + desc = "ABCmini Board, aka Dick Smith HOTCHIP"; + type = par; + reset = 4; + sck = 3; + mosi = 2; + miso = 10; +; + +programmer + id = "futurlec"; + desc = "Futurlec.com programming cable."; + type = par; + reset = 3; + sck = 2; + mosi = 1; + miso = 10; +; + + +# From the contributor of the "xil" jtag cable: +# The "vcc" definition isn't really vcc (the cable gets its power from +# the programming circuit) but is necessary to switch one of the +# buffer lines (trying to add it to the "buff" lines doesn't work in +# avrdude versions before 5.5j). +# With this, TMS connects to RESET, TDI to MOSI, TDO to MISO and TCK +# to SCK (plus vcc/gnd of course) +programmer + id = "xil"; + desc = "Xilinx JTAG cable"; + type = par; + mosi = 2; + sck = 3; + reset = 4; + buff = 5; + miso = 13; + vcc = 6; +; + + +programmer + id = "dapa"; + desc = "Direct AVR Parallel Access cable"; + type = par; + vcc = 3; + reset = 16; + sck = 1; + mosi = 2; + miso = 11; +; + +programmer + id = "atisp"; + desc = "AT-ISP V1.1 programming cable for AVR-SDK1 from micro-research.co.th"; + type = par; + reset = ~6; + sck = ~8; + mosi = ~7; + miso = ~10; +; + +programmer + id = "ere-isp-avr"; + desc = "ERE ISP-AVR "; + type = par; + reset = ~4; + sck = 3; + mosi = 2; + miso = 10; +; + +programmer + id = "blaster"; + desc = "Altera ByteBlaster"; + type = par; + sck = 2; + miso = 11; + reset = 3; + mosi = 8; + buff = 14; +; + +# It is almost same as pony-stk200, except vcc on pin 5 to auto +# disconnect port (download on http://electropol.free.fr) +programmer + id = "frank-stk200"; + desc = "Frank STK200"; + type = par; + vcc = 5; + sck = 6; + mosi = 7; + reset = 9; + miso = 10; + pgmled = 8; +; + +# The AT98ISP Cable is a simple parallel dongle for AT89 family. +# http://www.atmel.com/dyn/products/tools_card.asp?tool_id=2877 +programmer +id = "89isp"; +desc = "Atmel at89isp cable"; +type = par; +reset = 17; +sck = 1; +mosi = 2; +miso = 10; +; + + +# +# some ultra cheap programmers use bitbanging on the +# serialport. +# +# PC - DB9 - Pins for RS232: +# +# GND 5 -- |O +# | O| <- 9 RI +# DTR 4 <- |O | +# | O| <- 8 CTS +# TXD 3 <- |O | +# | O| -> 7 RTS +# RXD 2 -> |O | +# | O| <- 6 DSR +# DCD 1 -> |O +# +# Using RXD is currently not supported. +# Using RI is not supported under Win32 but is supported under Posix. + +# serial ponyprog design (dasa2 in uisp) +# reset=!txd sck=rts mosi=dtr miso=cts + +programmer + id = "ponyser"; + desc = "design ponyprog serial, reset=!txd sck=rts mosi=dtr miso=cts"; + type = serbb; + reset = ~3; + sck = 7; + mosi = 4; + miso = 8; +; + +# Same as above, different name +# reset=!txd sck=rts mosi=dtr miso=cts + +programmer + id = "siprog"; + desc = "Lancos SI-Prog "; + type = serbb; + reset = ~3; + sck = 7; + mosi = 4; + miso = 8; +; + +# unknown (dasa in uisp) +# reset=rts sck=dtr mosi=txd miso=cts + +programmer + id = "dasa"; + desc = "serial port banging, reset=rts sck=dtr mosi=txd miso=cts"; + type = serbb; + reset = 7; + sck = 4; + mosi = 3; + miso = 8; +; + +# unknown (dasa3 in uisp) +# reset=!dtr sck=rts mosi=txd miso=cts + +programmer + id = "dasa3"; + desc = "serial port banging, reset=!dtr sck=rts mosi=txd miso=cts"; + type = serbb; + reset = ~4; + sck = 7; + mosi = 3; + miso = 8; +; + +# C2N232i (jumper configuration "auto") +# reset=dtr sck=!rts mosi=!txd miso=!cts + +programmer + id = "c2n232i"; + desc = "serial port banging, reset=dtr sck=!rts mosi=!txd miso=!cts"; + type = serbb; + reset = 4; + sck = ~7; + mosi = ~3; + miso = ~8; +; + +# +# PART DEFINITIONS +# + +#------------------------------------------------------------ +# ATtiny11 +#------------------------------------------------------------ + +# This is an HVSP-only device. + +part + id = "t11"; + desc = "ATtiny11"; + stk500_devcode = 0x11; + signature = 0x1e 0x90 0x04; + chip_erase_delay = 20000; + + timeout = 200; + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x00, + 0x68, 0x78, 0x68, 0x68, 0x00, 0x00, 0x68, 0x78, + 0x78, 0x00, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + hvspcmdexedelay = 0; + synchcycles = 6; + latchcycles = 1; + togglevtg = 1; + poweroffdelay = 25; + resetdelayms = 0; + resetdelayus = 50; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 64; + blocksize = 64; + readsize = 256; + delay = 5; + ; + + memory "flash" + size = 1024; + blocksize = 128; + readsize = 256; + delay = 3; + ; + + memory "signature" + size = 3; + ; + + memory "lock" + size = 1; + ; + + memory "calibration" + size = 1; + ; + + memory "fuse" + size = 1; + ; +; + +#------------------------------------------------------------ +# ATtiny12 +#------------------------------------------------------------ + +part + id = "t12"; + desc = "ATtiny12"; + stk500_devcode = 0x12; + avr910_devcode = 0x55; + signature = 0x1e 0x90 0x05; + chip_erase_delay = 20000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x00, + 0x68, 0x78, 0x68, 0x68, 0x00, 0x00, 0x68, 0x78, + 0x78, 0x00, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x00; + hventerstabdelay = 100; + hvspcmdexedelay = 0; + synchcycles = 6; + latchcycles = 1; + togglevtg = 1; + poweroffdelay = 25; + resetdelayms = 0; + resetdelayus = 50; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 64; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 x x x x x x x x", + "x x a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 x x x x x x x x", + "x x a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 8; + blocksize = 64; + readsize = 256; + ; + + memory "flash" + size = 1024; + min_write_delay = 4500; + max_write_delay = 20000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 5; + blocksize = 128; + readsize = 256; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x o o x"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "fuse" + size = 1; + read = "0 1 0 1 0 0 0 0 x x x x x x x x", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 x x x x x", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; +; + +#------------------------------------------------------------ +# ATtiny13 +#------------------------------------------------------------ + +part + id = "t13"; + desc = "ATtiny13"; + has_debugwire = yes; + flash_instr = 0xB4, 0x0E, 0x1E; + eeprom_instr = 0xBB, 0xFE, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBC, 0x0E, 0xB4, 0x0E, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; + stk500_devcode = 0x14; + signature = 0x1e 0x90 0x07; + chip_erase_delay = 4000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x66, + 0x68, 0x78, 0x68, 0x68, 0x7A, 0x6A, 0x68, 0x78, + 0x78, 0x7D, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + hvspcmdexedelay = 0; + synchcycles = 6; + latchcycles = 1; + togglevtg = 1; + poweroffdelay = 25; + resetdelayms = 0; + resetdelayus = 90; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 64; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x x", + "x x a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x x", + "x x a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 5; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 1024; + page_size = 32; + num_pages = 32; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 0 0 0 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 0 0 0 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 0 0 0 a8", + " a7 a6 a5 a4 x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 32; + readsize = 256; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 2; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 a0 o o o o o o o o"; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + ; + +; + + +#------------------------------------------------------------ +# ATtiny15 +#------------------------------------------------------------ + +part + id = "t15"; + desc = "ATtiny15"; + stk500_devcode = 0x13; + avr910_devcode = 0x56; + signature = 0x1e 0x90 0x06; + chip_erase_delay = 8200; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x00, + 0x68, 0x78, 0x68, 0x68, 0x00, 0x00, 0x68, 0x78, + 0x78, 0x00, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x00; + hventerstabdelay = 100; + hvspcmdexedelay = 5; + synchcycles = 6; + latchcycles = 16; + togglevtg = 1; + poweroffdelay = 25; + resetdelayms = 0; + resetdelayus = 50; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 64; + min_write_delay = 8200; + max_write_delay = 8200; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 x x x x x x x x", + "x x a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 x x x x x x x x", + "x x a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 10; + blocksize = 64; + readsize = 256; + ; + + memory "flash" + size = 1024; + min_write_delay = 4100; + max_write_delay = 4100; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 5; + blocksize = 128; + readsize = 256; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x o o x"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "fuse" + size = 1; + read = "0 1 0 1 0 0 0 0 x x x x x x x x", + "x x x x x x x x o o o o x x o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 x x x x x", + "x x x x x x x x i i i i 1 1 i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; +; + +#------------------------------------------------------------ +# AT90s1200 +#------------------------------------------------------------ + +part + id = "1200"; + desc = "AT90S1200"; + stk500_devcode = 0x33; + avr910_devcode = 0x13; + signature = 0x1e 0x90 0x01; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 20000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 1; + bytedelay = 0; + pollindex = 0; + pollvalue = 0xFF; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 0; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 15; + chiperasepolltimeout = 0; + programfusepulsewidth = 2; + programfusepolltimeout = 0; + programlockpulsewidth = 0; + programlockpolltimeout = 1; + + memory "eeprom" + size = 64; + min_write_delay = 4000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 x x x x x x x x", + "x x a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 x x x x x x x x", + "x x a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 20; + blocksize = 32; + readsize = 256; + ; + memory "flash" + size = 1024; + min_write_delay = 4000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x02; + delay = 15; + blocksize = 128; + readsize = 256; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "fuse" + size = 1; + ; + memory "lock" + size = 1; + min_write_delay = 9000; + max_write_delay = 20000; + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + ; + ; + +#------------------------------------------------------------ +# AT90s4414 +#------------------------------------------------------------ + +part + id = "4414"; + desc = "AT90S4414"; + stk500_devcode = 0x50; + avr910_devcode = 0x28; + signature = 0x1e 0x92 0x01; + chip_erase_delay = 20000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 0; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 15; + chiperasepolltimeout = 0; + programfusepulsewidth = 2; + programfusepolltimeout = 0; + programlockpulsewidth = 0; + programlockpolltimeout = 1; + + memory "eeprom" + size = 256; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0x80; + readback_p2 = 0x7f; + read = " 1 0 1 0 0 0 0 0 x x x x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0 x x x x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 64; + readsize = 256; + ; + memory "flash" + size = 4096; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0x7f; + readback_p2 = 0x7f; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 64; + readsize = 256; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "fuse" + size = 1; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + ; + +#------------------------------------------------------------ +# AT90s2313 +#------------------------------------------------------------ + +part + id = "2313"; + desc = "AT90S2313"; + stk500_devcode = 0x40; + avr910_devcode = 0x20; + signature = 0x1e 0x91 0x01; + chip_erase_delay = 20000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 0; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 15; + chiperasepolltimeout = 0; + programfusepulsewidth = 2; + programfusepolltimeout = 0; + programlockpulsewidth = 0; + programlockpolltimeout = 1; + + memory "eeprom" + size = 128; + min_write_delay = 4000; + max_write_delay = 9000; + readback_p1 = 0x80; + readback_p2 = 0x7f; + read = "1 0 1 0 0 0 0 0 x x x x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 x x x x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 64; + readsize = 256; + ; + memory "flash" + size = 2048; + min_write_delay = 4000; + max_write_delay = 9000; + readback_p1 = 0x7f; + readback_p2 = 0x7f; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 128; + readsize = 256; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "fuse" + size = 1; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x i i x", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + ; + +#------------------------------------------------------------ +# AT90s2333 +#------------------------------------------------------------ + +part + id = "2333"; +##### WARNING: No XML file for device 'AT90S2333'! ##### + desc = "AT90S2333"; + stk500_devcode = 0x42; + avr910_devcode = 0x34; + signature = 0x1e 0x91 0x05; + chip_erase_delay = 20000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 0; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 15; + chiperasepolltimeout = 0; + programfusepulsewidth = 2; + programfusepolltimeout = 0; + programlockpulsewidth = 0; + programlockpolltimeout = 1; + + memory "eeprom" + size = 128; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0x00; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 x x x x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 x x x x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 128; + readsize = 256; + ; + + memory "flash" + size = 2048; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 128; + readsize = 256; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "fuse" + size = 1; + min_write_delay = 9000; + max_write_delay = 20000; + pwroff_after_write = yes; + read = "0 1 0 1 0 0 0 0 x x x x x x x x", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 i i i i i", + "x x x x x x x x x x x x x x x x"; + ; + memory "lock" + size = 1; + min_write_delay = 9000; + max_write_delay = 20000; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x o o x"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + ; + ; + + +#------------------------------------------------------------ +# AT90s2343 (also AT90s2323 and ATtiny22) +#------------------------------------------------------------ + +part + id = "2343"; + desc = "AT90S2343"; + stk500_devcode = 0x43; + avr910_devcode = 0x4c; + signature = 0x1e 0x91 0x03; + chip_erase_delay = 18000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x00, + 0x68, 0x78, 0x68, 0x68, 0x00, 0x00, 0x68, 0x78, + 0x78, 0x00, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x00; + hventerstabdelay = 100; + hvspcmdexedelay = 0; + synchcycles = 6; + latchcycles = 1; + togglevtg = 0; + poweroffdelay = 25; + resetdelayms = 0; + resetdelayus = 50; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 128; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0x00; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0", + "x a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0", + "x a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 64; + readsize = 256; + ; + memory "flash" + size = 2048; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 128; + readsize = 128; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "fuse" + size = 1; + min_write_delay = 9000; + max_write_delay = 20000; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x o o o x x x x o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 1 1 1 1 i", + "x x x x x x x x x x x x x x x x"; + ; + memory "lock" + size = 1; + min_write_delay = 9000; + max_write_delay = 20000; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x o o o x x x x o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + ; + ; + + +#------------------------------------------------------------ +# AT90s4433 +#------------------------------------------------------------ + +part + id = "4433"; + desc = "AT90S4433"; + stk500_devcode = 0x51; + avr910_devcode = 0x30; + signature = 0x1e 0x92 0x03; + chip_erase_delay = 20000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 0; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 15; + chiperasepolltimeout = 0; + programfusepulsewidth = 2; + programfusepolltimeout = 0; + programlockpulsewidth = 0; + programlockpolltimeout = 1; + + memory "eeprom" + size = 256; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0x00; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0 x x x x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0 x x x x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 128; + readsize = 256; + ; + memory "flash" + size = 4096; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 128; + readsize = 256; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "fuse" + size = 1; + min_write_delay = 9000; + max_write_delay = 20000; + pwroff_after_write = yes; + read = "0 1 0 1 0 0 0 0 x x x x x x x x", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 i i i i i", + "x x x x x x x x x x x x x x x x"; + ; + memory "lock" + size = 1; + min_write_delay = 9000; + max_write_delay = 20000; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x o o x"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + ; + ; + +#------------------------------------------------------------ +# AT90s4434 +#------------------------------------------------------------ + +part + id = "4434"; +##### WARNING: No XML file for device 'AT90S4434'! ##### + desc = "AT90S4434"; + stk500_devcode = 0x52; + avr910_devcode = 0x6c; + signature = 0x1e 0x92 0x02; + chip_erase_delay = 20000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + memory "eeprom" + size = 256; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0x00; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0 x x x x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0 x x x x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + ; + memory "flash" + size = 4096; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "fuse" + size = 1; + min_write_delay = 9000; + max_write_delay = 20000; + read = "0 1 0 1 0 0 0 0 x x x x x x x x", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 i i i i i", + "x x x x x x x x x x x x x x x x"; + ; + memory "lock" + size = 1; + min_write_delay = 9000; + max_write_delay = 20000; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x o o x"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + ; + ; + +#------------------------------------------------------------ +# AT90s8515 +#------------------------------------------------------------ + +part + id = "8515"; + desc = "AT90S8515"; + stk500_devcode = 0x60; + avr910_devcode = 0x38; + signature = 0x1e 0x93 0x01; + chip_erase_delay = 20000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 0; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + resetdelay = 15; + chiperasepulsewidth = 15; + chiperasepolltimeout = 0; + programfusepulsewidth = 2; + programfusepolltimeout = 0; + programlockpulsewidth = 0; + programlockpolltimeout = 1; + + memory "eeprom" + size = 512; + min_write_delay = 4000; + max_write_delay = 9000; + readback_p1 = 0x80; + readback_p2 = 0x7f; + read = " 1 0 1 0 0 0 0 0 x x x x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0 x x x x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 128; + readsize = 256; + ; + memory "flash" + size = 8192; + min_write_delay = 4000; + max_write_delay = 9000; + readback_p1 = 0x7f; + readback_p2 = 0x7f; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 128; + readsize = 256; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "fuse" + size = 1; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + ; + +#------------------------------------------------------------ +# AT90s8535 +#------------------------------------------------------------ + +part + id = "8535"; + desc = "AT90S8535"; + stk500_devcode = 0x61; + avr910_devcode = 0x68; + signature = 0x1e 0x93 0x03; + chip_erase_delay = 20000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 0; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 15; + chiperasepolltimeout = 0; + programfusepulsewidth = 2; + programfusepolltimeout = 0; + programlockpulsewidth = 0; + programlockpolltimeout = 1; + + memory "eeprom" + size = 512; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0x00; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0 x x x x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0 x x x x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 128; + readsize = 256; + ; + memory "flash" + size = 8192; + min_write_delay = 9000; + max_write_delay = 20000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write_lo = " 0 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + write_hi = " 0 1 0 0 1 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 128; + readsize = 256; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "fuse" + size = 1; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x x x o"; + write = "1 0 1 0 1 1 0 0 1 0 1 1 1 1 1 i", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x o o x x x x x x"; + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + ; + +#------------------------------------------------------------ +# ATmega103 +#------------------------------------------------------------ + +part + id = "m103"; + desc = "ATMEGA103"; + stk500_devcode = 0xB1; + avr910_devcode = 0x41; + signature = 0x1e 0x97 0x01; + chip_erase_delay = 112000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x8E, 0x9E, 0x2E, 0x3E, 0xAE, 0xBE, + 0x4E, 0x5E, 0xCE, 0xDE, 0x6E, 0x7E, 0xEE, 0xDE, + 0x66, 0x76, 0xE6, 0xF6, 0x6A, 0x7A, 0xEA, 0x7A, + 0x7F, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 0; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 15; + chiperasepolltimeout = 0; + programfusepulsewidth = 2; + programfusepolltimeout = 0; + programlockpulsewidth = 0; + programlockpolltimeout = 10; + + memory "eeprom" + size = 4096; + min_write_delay = 4000; + max_write_delay = 9000; + readback_p1 = 0x80; + readback_p2 = 0x7f; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 64; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 131072; + page_size = 256; + num_pages = 512; + min_write_delay = 22000; + max_write_delay = 56000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x11; + delay = 70; + blocksize = 256; + readsize = 256; + ; + + memory "fuse" + size = 1; + read = "0 1 0 1 0 0 0 0 x x x x x x x x", + "x x x x x x x x x x o x o 1 o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 1 i 1 i i", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x o o x"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# ATmega64 +#------------------------------------------------------------ + +part + id = "m64"; + desc = "ATMEGA64"; + has_jtag = yes; + stk500_devcode = 0xA0; + avr910_devcode = 0x45; + signature = 0x1e 0x96 0x02; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x22; + spmcr = 0x68; + allowfullpagebitstream = yes; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 2048; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 20; + blocksize = 64; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 128; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 4; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + + + + +#------------------------------------------------------------ +# ATmega128 +#------------------------------------------------------------ + +part + id = "m128"; + desc = "ATMEGA128"; + has_jtag = yes; + stk500_devcode = 0xB2; + avr910_devcode = 0x43; + signature = 0x1e 0x97 0x02; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x22; + spmcr = 0x68; + rampz = 0x3b; + allowfullpagebitstream = yes; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 12; + blocksize = 64; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 131072; + page_size = 256; + num_pages = 512; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 128; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 4; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90CAN128 +#------------------------------------------------------------ + +part + id = "c128"; + desc = "AT90CAN128"; + has_jtag = yes; + stk500_devcode = 0xB3; +# avr910_devcode = 0x43; + signature = 0x1e 0x97 0x81; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + eecr = 0x3f; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + + mode = 0x41; + delay = 20; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 131072; + page_size = 256; + num_pages = 512; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90CAN64 +#------------------------------------------------------------ + +part + id = "c64"; + desc = "AT90CAN64"; + has_jtag = yes; + stk500_devcode = 0xB3; +# avr910_devcode = 0x43; + signature = 0x1e 0x96 0x81; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + eecr = 0x3f; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 2048; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + + mode = 0x41; + delay = 20; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90CAN32 +#------------------------------------------------------------ + +part + id = "c32"; + desc = "AT90CAN32"; + has_jtag = yes; + stk500_devcode = 0xB3; +# avr910_devcode = 0x43; + signature = 0x1e 0x95 0x81; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + eecr = 0x3f; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + + mode = 0x41; + delay = 20; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 256; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# ATmega16 +#------------------------------------------------------------ + +part + id = "m16"; + desc = "ATMEGA16"; + has_jtag = yes; + stk500_devcode = 0x82; + avr910_devcode = 0x74; + signature = 0x1e 0x94 0x03; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 100; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + resetdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = yes; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 512; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x04; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 16384; + page_size = 128; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 128; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "calibration" + size = 4; + + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# ATmega164P +#------------------------------------------------------------ + +# close to ATmega16 + +part + id = "m164p"; + desc = "ATMEGA164P"; + has_jtag = yes; + stk500_devcode = 0x82; # no STK500v1 support, use the ATmega16 one + avr910_devcode = 0x74; + signature = 0x1e 0x94 0x0a; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 512; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 16384; + page_size = 128; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 128; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x 1 1 1 1 1 i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# ATmega324P +#------------------------------------------------------------ + +# similar to ATmega164P + +part + id = "m324p"; + desc = "ATMEGA324P"; + has_jtag = yes; + stk500_devcode = 0x82; # no STK500v1 support, use the ATmega16 one + avr910_devcode = 0x74; + signature = 0x1e 0x95 0x08; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x 1 1 1 1 1 i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# ATmega324PA +#------------------------------------------------------------ + +# similar to ATmega324P + +part + id = "m324pa"; + desc = "ATmega324PA"; + has_jtag = yes; + stk500_devcode = 0x82; # no STK500v1 support, use the ATmega16 one + avr910_devcode = 0x74; + signature = 0x1e 0x95 0x11; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x 1 1 1 1 1 i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# ATmega644 +#------------------------------------------------------------ + +# similar to ATmega164 + +part + id = "m644"; + desc = "ATMEGA644"; + has_jtag = yes; + stk500_devcode = 0x82; # no STK500v1 support, use the ATmega16 one + avr910_devcode = 0x74; + signature = 0x1e 0x96 0x09; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 2048; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x 1 1 1 1 1 i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega644P +#------------------------------------------------------------ + +# similar to ATmega164p + +part + id = "m644p"; + desc = "ATMEGA644P"; + has_jtag = yes; + stk500_devcode = 0x82; # no STK500v1 support, use the ATmega16 one + avr910_devcode = 0x74; + signature = 0x1e 0x96 0x0a; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 2048; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x 1 1 1 1 1 i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + + + +#------------------------------------------------------------ +# ATmega1284P +#------------------------------------------------------------ + +# similar to ATmega164p + +part + id = "m1284p"; + desc = "ATMEGA1284P"; + has_jtag = yes; + stk500_devcode = 0x82; # no STK500v1 support, use the ATmega16 one + avr910_devcode = 0x74; + signature = 0x1e 0x97 0x05; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 131072; + page_size = 256; + num_pages = 512; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 256; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x 1 1 1 1 1 i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + + + +#------------------------------------------------------------ +# ATmega162 +#------------------------------------------------------------ + +part + id = "m162"; + desc = "ATMEGA162"; + has_jtag = yes; + stk500_devcode = 0x83; + avr910_devcode = 0x63; + signature = 0x1e 0x94 0x04; + chip_erase_delay = 9000; + pagel = 0xd7; + bs2 = 0xa0; + + idr = 0x04; + spmcr = 0x57; + allowfullpagebitstream = yes; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + memory "flash" + paged = yes; + size = 16384; + page_size = 128; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + + ; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 512; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 16000; + max_write_delay = 16000; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 16000; + max_write_delay = 16000; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 16000; + max_write_delay = 16000; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x 1 1 1 1 1 i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 16000; + max_write_delay = 16000; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "signature" + size = 3; + + read = "0 0 1 1 0 0 0 0 0 0 x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; +; + + + +#------------------------------------------------------------ +# ATmega163 +#------------------------------------------------------------ + +part + id = "m163"; + desc = "ATMEGA163"; + stk500_devcode = 0x81; + avr910_devcode = 0x64; + signature = 0x1e 0x94 0x02; + chip_erase_delay = 32000; + pagel = 0xd7; + bs2 = 0xa0; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 0; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 30; + programfusepulsewidth = 0; + programfusepolltimeout = 2; + programlockpulsewidth = 0; + programlockpolltimeout = 2; + + + memory "eeprom" + size = 512; + min_write_delay = 4000; + max_write_delay = 4000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 16384; + page_size = 128; + num_pages = 128; + min_write_delay = 16000; + max_write_delay = 16000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x11; + delay = 20; + blocksize = 128; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o x x o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i 1 1 i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x 1 o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x 1 1 1 1 1 i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x 0 x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega169 +#------------------------------------------------------------ + +part + id = "m169"; + desc = "ATMEGA169"; + has_jtag = yes; + stk500_devcode = 0x85; + avr910_devcode = 0x78; + signature = 0x1e 0x94 0x05; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 512; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 16384; + page_size = 128; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 128; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + ; + + memory "lock" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega329 +#------------------------------------------------------------ + +part + id = "m329"; + desc = "ATMEGA329"; + has_jtag = yes; +# stk500_devcode = 0x85; # no STK500 support, only STK500v2 +# avr910_devcode = 0x?; # try the ATmega169 one: + avr910_devcode = 0x75; + signature = 0x1e 0x95 0x03; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega329P +#------------------------------------------------------------ +# Identical to ATmega329 except of the signature + +part + id = "m329p"; + desc = "ATMEGA329P"; + has_jtag = yes; +# stk500_devcode = 0x85; # no STK500 support, only STK500v2 +# avr910_devcode = 0x?; # try the ATmega169 one: + avr910_devcode = 0x75; + signature = 0x1e 0x95 0x0b; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega3290 +#------------------------------------------------------------ + +# identical to ATmega329 + +part + id = "m3290"; + desc = "ATMEGA3290"; + has_jtag = yes; +# stk500_devcode = 0x85; # no STK500 support, only STK500v2 +# avr910_devcode = 0x?; # try the ATmega169 one: + avr910_devcode = 0x75; + signature = 0x1e 0x95 0x04; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a3 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega3290P +#------------------------------------------------------------ + +# identical to ATmega3290 except of the signature + +part + id = "m3290p"; + desc = "ATMEGA3290P"; + has_jtag = yes; +# stk500_devcode = 0x85; # no STK500 support, only STK500v2 +# avr910_devcode = 0x?; # try the ATmega169 one: + avr910_devcode = 0x75; + signature = 0x1e 0x95 0x0c; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a3 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega649 +#------------------------------------------------------------ + +part + id = "m649"; + desc = "ATMEGA649"; + has_jtag = yes; +# stk500_devcode = 0x85; # no STK500 support, only STK500v2 +# avr910_devcode = 0x?; # try the ATmega169 one: + avr910_devcode = 0x75; + signature = 0x1e 0x96 0x03; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 2048; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega6490 +#------------------------------------------------------------ + +# identical to ATmega649 + +part + id = "m6490"; + desc = "ATMEGA6490"; + has_jtag = yes; +# stk500_devcode = 0x85; # no STK500 support, only STK500v2 +# avr910_devcode = 0x?; # try the ATmega169 one: + avr910_devcode = 0x75; + signature = 0x1e 0x96 0x04; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 2048; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega32 +#------------------------------------------------------------ + +part + id = "m32"; + desc = "ATMEGA32"; + has_jtag = yes; + stk500_devcode = 0x91; + avr910_devcode = 0x72; + signature = 0x1e 0x95 0x02; + chip_erase_delay = 9000; + pagel = 0xd7; + bs2 = 0xa0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = yes; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x04; + delay = 10; + blocksize = 64; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 64; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 4; + read = "0 0 1 1 1 0 0 0 0 0 x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega161 +#------------------------------------------------------------ + +part + id = "m161"; + desc = "ATMEGA161"; + stk500_devcode = 0x80; + avr910_devcode = 0x60; + signature = 0x1e 0x94 0x01; + chip_erase_delay = 28000; + pagel = 0xd7; + bs2 = 0xa0; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 0; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 30; + programfusepulsewidth = 0; + programfusepolltimeout = 2; + programlockpulsewidth = 0; + programlockpolltimeout = 2; + + memory "eeprom" + size = 512; + min_write_delay = 3400; + max_write_delay = 3400; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 5; + blocksize = 128; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 16384; + page_size = 128; + num_pages = 128; + min_write_delay = 14000; + max_write_delay = 14000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 16; + blocksize = 128; + readsize = 256; + ; + + memory "fuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 0 0 0 0 x x x x x x x x", + "x x x x x x x x x o x o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 x x x x x", + "x x x x x x x x 1 i 1 i i i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# ATmega8 +#------------------------------------------------------------ + +part + id = "m8"; + desc = "ATMEGA8"; + stk500_devcode = 0x70; + avr910_devcode = 0x76; + signature = 0x1e 0x93 0x07; + pagel = 0xd7; + bs2 = 0xc2; + chip_erase_delay = 10000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 2; + resetdelayus = 0; + hvleavestabdelay = 15; + resetdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + size = 512; + page_size = 4; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 20; + blocksize = 128; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 0 x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 0 x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 10; + blocksize = 64; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 4; + read = "0 0 1 1 1 0 0 0 0 0 x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + + + +#------------------------------------------------------------ +# ATmega8515 +#------------------------------------------------------------ + +part + id = "m8515"; + desc = "ATMEGA8515"; + stk500_devcode = 0x63; + avr910_devcode = 0x3A; + signature = 0x1e 0x93 0x06; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + size = 512; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 20; + blocksize = 128; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 0 x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 0 x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 64; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 4; + read = "0 0 1 1 1 0 0 0 0 0 x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + + + + +#------------------------------------------------------------ +# ATmega8535 +#------------------------------------------------------------ + +part + id = "m8535"; + desc = "ATMEGA8535"; + stk500_devcode = 0x64; + avr910_devcode = 0x69; + signature = 0x1e 0x93 0x08; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 6; + togglevtg = 0; + poweroffdelay = 0; + resetdelayms = 0; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + size = 512; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + mode = 0x04; + delay = 20; + blocksize = 128; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 0 x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 0 x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 64; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 2000; + max_write_delay = 2000; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 4; + read = "0 0 1 1 1 0 0 0 0 0 x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# ATtiny26 +#------------------------------------------------------------ + +part + id = "t26"; + desc = "ATTINY26"; + stk500_devcode = 0x21; + avr910_devcode = 0x5e; + signature = 0x1e 0x91 0x09; + pagel = 0xb3; + bs2 = 0xb2; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0xC4, 0xE4, 0xC4, 0xE4, 0xCC, 0xEC, 0xCC, 0xEC, + 0xD4, 0xF4, 0xD4, 0xF4, 0xDC, 0xFC, 0xDC, 0xFC, + 0xC8, 0xE8, 0xD8, 0xF8, 0x4C, 0x6C, 0x5C, 0x7C, + 0xEC, 0xBC, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 2; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + size = 128; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 x x x x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 x x x x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + mode = 0x04; + delay = 10; + blocksize = 64; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 2048; + page_size = 32; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 x x x x", + " x x x x x x x x"; + + mode = 0x21; + delay = 6; + blocksize = 16; + readsize = 256; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x x o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 1 i i", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x x x x i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 4; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + +; + + +#------------------------------------------------------------ +# ATtiny261 +#------------------------------------------------------------ +# Close to ATtiny26 + +part + id = "t261"; + desc = "ATTINY261"; + has_debugwire = yes; + flash_instr = 0xB4, 0x00, 0x10; + eeprom_instr = 0xBB, 0xFF, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBC, 0x00, 0xB4, 0x00, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; +# stk500_devcode = 0x21; +# avr910_devcode = 0x5e; + signature = 0x1e 0x91 0x0c; + pagel = 0xb3; + bs2 = 0xb2; + chip_erase_delay = 4000; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0xC4, 0xE4, 0xC4, 0xE4, 0xCC, 0xEC, 0xCC, 0xEC, + 0xD4, 0xF4, 0xD4, 0xF4, 0xDC, 0xFC, 0xDC, 0xFC, + 0xC8, 0xE8, 0xD8, 0xF8, 0x4C, 0x6C, 0x5C, 0x7C, + 0xEC, 0xBC, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 2; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; + size = 128; + page_size = 4; + num_pages = 32; + min_write_delay = 4000; + max_write_delay = 4000; + readback_p1 = 0xff; + readback_p2 = 0xff; + + read = "1 0 1 0 0 0 0 0 x x x x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 x x x x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 2048; + page_size = 32; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x x x x a9 a8", + " a7 a6 a5 a4 x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 32; + readsize = 256; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x x o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 1 i i", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x x x x o"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + +; + + +#------------------------------------------------------------ +# ATtiny461 +#------------------------------------------------------------ +# Close to ATtiny261 + +part + id = "t461"; + desc = "ATTINY461"; + has_debugwire = yes; + flash_instr = 0xB4, 0x00, 0x10; + eeprom_instr = 0xBB, 0xFF, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBC, 0x00, 0xB4, 0x00, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; +# stk500_devcode = 0x21; +# avr910_devcode = 0x5e; + signature = 0x1e 0x92 0x08; + pagel = 0xb3; + bs2 = 0xb2; + chip_erase_delay = 4000; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0xC4, 0xE4, 0xC4, 0xE4, 0xCC, 0xEC, 0xCC, 0xEC, + 0xD4, 0xF4, 0xD4, 0xF4, 0xDC, 0xFC, 0xDC, 0xFC, + 0xC8, 0xE8, 0xD8, 0xF8, 0x4C, 0x6C, 0x5C, 0x7C, + 0xEC, 0xBC, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 2; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; + size = 256; + page_size = 4; + num_pages = 64; + min_write_delay = 4000; + max_write_delay = 4000; + readback_p1 = 0xff; + readback_p2 = 0xff; + + read = " 1 0 1 0 0 0 0 0 x x x x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0 x x x x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 4096; + page_size = 64; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x x o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 1 i i", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x x x x o"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + +; + + +#------------------------------------------------------------ +# ATtiny861 +#------------------------------------------------------------ +# Close to ATtiny461 + +part + id = "t861"; + desc = "ATTINY861"; + has_debugwire = yes; + flash_instr = 0xB4, 0x00, 0x10; + eeprom_instr = 0xBB, 0xFF, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBC, 0x00, 0xB4, 0x00, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; +# stk500_devcode = 0x21; +# avr910_devcode = 0x5e; + signature = 0x1e 0x93 0x0d; + pagel = 0xb3; + bs2 = 0xb2; + chip_erase_delay = 4000; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 0; + + pp_controlstack = + 0xC4, 0xE4, 0xC4, 0xE4, 0xCC, 0xEC, 0xCC, 0xEC, + 0xD4, 0xF4, 0xD4, 0xF4, 0xDC, 0xFC, 0xDC, 0xFC, + 0xC8, 0xE8, 0xD8, 0xF8, 0x4C, 0x6C, 0x5C, 0x7C, + 0xEC, 0xBC, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 2; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; + size = 512; + num_pages = 128; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4000; + readback_p1 = 0xff; + readback_p2 = 0xff; + + read = " 1 0 1 0 0 0 0 0 x x x x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0 x x x x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + + read_lo = " 0 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 x x x x x x x x", + "x x x x x x x x x x x x x x o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 1 1 1 i i", + "x x x x x x x x x x x x x x x x"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x x x x o"; + min_write_delay = 4500; + max_write_delay = 4500; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + +; + + +#------------------------------------------------------------ +# ATmega48 +#------------------------------------------------------------ + +part + id = "m48"; + desc = "ATMEGA48"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x59; +# avr910_devcode = 0x; + signature = 0x1e 0x92 0x05; + pagel = 0xd7; + bs2 = 0xc2; + chip_erase_delay = 45000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + resetdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; + page_size = 4; + size = 256; + min_write_delay = 3600; + max_write_delay = 3600; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 x x x x x", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 4096; + page_size = 64; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x x x x o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# ATmega88 +#------------------------------------------------------------ + +part + id = "m88"; + desc = "ATMEGA88"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x73; +# avr910_devcode = 0x; + signature = 0x1e 0x93 0x0a; + pagel = 0xd7; + bs2 = 0xc2; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + resetdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; + page_size = 4; + size = 512; + min_write_delay = 3600; + max_write_delay = 3600; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x x o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega88P +#------------------------------------------------------------ + +part + id = "m88p"; + desc = "ATMEGA88P"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x73; +# avr910_devcode = 0x; + signature = 0x1e 0x93 0x0f; + pagel = 0xd7; + bs2 = 0xc2; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + resetdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; + page_size = 4; + size = 512; + min_write_delay = 3600; + max_write_delay = 3600; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x x o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# ATmega168 +#------------------------------------------------------------ + +part + id = "m168"; + desc = "ATMEGA168"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x86; + # avr910_devcode = 0x; + signature = 0x1e 0x94 0x06; + pagel = 0xd7; + bs2 = 0xc2; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + resetdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; + page_size = 4; + size = 512; + min_write_delay = 3600; + max_write_delay = 3600; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 16384; + page_size = 128; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 128; + readsize = 256; + + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x x o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; +; + +#------------------------------------------------------------ +# ATmega168P +#------------------------------------------------------------ + +part + id = "m168p"; + desc = "ATMEGA168P"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x86; + # avr910_devcode = 0x; + signature = 0x1e 0x94 0x0b; + pagel = 0xd7; + bs2 = 0xc2; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + resetdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; + page_size = 4; + size = 512; + min_write_delay = 3600; + max_write_delay = 3600; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 x x x x a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 16384; + page_size = 128; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 128; + readsize = 256; + + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x x o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; +; + +#------------------------------------------------------------ +# ATtiny88 +#------------------------------------------------------------ + +part + id = "t88"; + desc = "attiny88"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x73; +# avr910_devcode = 0x; + signature = 0x1e 0x93 0x11; + pagel = 0xd7; + bs2 = 0xc2; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + resetdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; + page_size = 4; + size = 64; + min_write_delay = 3600; + max_write_delay = 3600; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 64; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x x o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega328P +#------------------------------------------------------------ + +part + id = "m328p"; + desc = "ATMEGA328P"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x86; + # avr910_devcode = 0x; + signature = 0x1e 0x95 0x0F; + pagel = 0xd7; + bs2 = 0xc2; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + resetdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; + page_size = 4; + size = 1024; + min_write_delay = 3600; + max_write_delay = 3600; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 x x x a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 128; + readsize = 256; + + ; + + memory "lfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "hfuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + ; + + memory "efuse" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x x x x x x o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + ; + + memory "lock" + size = 1; + min_write_delay = 4500; + max_write_delay = 4500; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; +; + +#------------------------------------------------------------ +# ATtiny2313 +#------------------------------------------------------------ + +part + id = "t2313"; + desc = "ATtiny2313"; + has_debugwire = yes; + flash_instr = 0xB2, 0x0F, 0x1F; + eeprom_instr = 0xBB, 0xFE, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBA, 0x0F, 0xB2, 0x0F, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; + stk500_devcode = 0x23; +## Use the ATtiny26 devcode: + avr910_devcode = 0x5e; + signature = 0x1e 0x91 0x0a; + pagel = 0xD4; + bs2 = 0xD6; + reset = io; + chip_erase_delay = 9000; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0E, 0x1E, 0x2E, 0x3E, 0x2E, 0x3E, + 0x4E, 0x5E, 0x4E, 0x5E, 0x6E, 0x7E, 0x6E, 0x7E, + 0x26, 0x36, 0x66, 0x76, 0x2A, 0x3A, 0x6A, 0x7A, + 0x2E, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + size = 128; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 2048; + page_size = 32; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + +# The information in the data sheet of April/2004 is wrong, this works: + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + +# The information in the data sheet of April/2004 is wrong, this works: + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + +# The information in the data sheet of April/2004 is wrong, this works: + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 32; + readsize = 256; + ; +# ATtiny2313 has Signature Bytes: 0x1E 0x91 0x0A. + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; +# The Tiny2313 has calibration data for both 4 MHz and 8 MHz. +# The information in the data sheet of April/2004 is wrong, this works: + + memory "calibration" + size = 2; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATtiny4313 +#------------------------------------------------------------ + +part + id = "t4313"; + desc = "ATtiny4313"; + has_debugwire = yes; + flash_instr = 0xB2, 0x0F, 0x1F; + eeprom_instr = 0xBB, 0xFE, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBA, 0x0F, 0xB2, 0x0F, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; + stk500_devcode = 0x23; +## Use the ATtiny26 devcode: + avr910_devcode = 0x5e; + signature = 0x1e 0x92 0x0d; + pagel = 0xD4; + bs2 = 0xD6; + reset = io; + chip_erase_delay = 9000; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0E, 0x1E, 0x2E, 0x3E, 0x2E, 0x3E, + 0x4E, 0x5E, 0x4E, 0x5E, 0x6E, 0x7E, 0x6E, 0x7E, + 0x26, 0x36, 0x66, 0x76, 0x2A, 0x3A, 0x6A, 0x7A, + 0x2E, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + size = 256; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 4096; + page_size = 64; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 32; + readsize = 256; + ; +# ATtiny4313 has Signature Bytes: 0x1E 0x92 0x0D. + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 2; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90PWM2 +#------------------------------------------------------------ + +part + id = "pwm2"; + desc = "AT90PWM2"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x65; +## avr910_devcode = ?; + signature = 0x1e 0x93 0x81; + pagel = 0xD8; + bs2 = 0xE2; + reset = io; + chip_erase_delay = 9000; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + size = 512; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; +# AT90PWM2 has Signature Bytes: 0x1E 0x93 0x81. + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90PWM3 +#------------------------------------------------------------ + +# Completely identical to AT90PWM2 (including the signature!) + +part + id = "pwm3"; + desc = "AT90PWM3"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x65; +## avr910_devcode = ?; + signature = 0x1e 0x93 0x81; + pagel = 0xD8; + bs2 = 0xE2; + reset = io; + chip_erase_delay = 9000; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + size = 512; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; +# AT90PWM2 has Signature Bytes: 0x1E 0x93 0x81. + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90PWM2B +#------------------------------------------------------------ +# Same as AT90PWM2 but different signature. + +part + id = "pwm2b"; + desc = "AT90PWM2B"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x65; +## avr910_devcode = ?; + signature = 0x1e 0x93 0x83; + pagel = 0xD8; + bs2 = 0xE2; + reset = io; + chip_erase_delay = 9000; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + size = 512; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90PWM3B +#------------------------------------------------------------ + +# Completely identical to AT90PWM2B (including the signature!) + +part + id = "pwm3b"; + desc = "AT90PWM3B"; + has_debugwire = yes; + flash_instr = 0xB6, 0x01, 0x11; + eeprom_instr = 0xBD, 0xF2, 0xBD, 0xE1, 0xBB, 0xCF, 0xB4, 0x00, + 0xBE, 0x01, 0xB6, 0x01, 0xBC, 0x00, 0xBB, 0xBF, + 0x99, 0xF9, 0xBB, 0xAF; + stk500_devcode = 0x65; +## avr910_devcode = ?; + signature = 0x1e 0x93 0x83; + pagel = 0xD8; + bs2 = 0xE2; + reset = io; + chip_erase_delay = 9000; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + size = 512; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATtiny25 +#------------------------------------------------------------ + +part + id = "t25"; + desc = "ATtiny25"; + has_debugwire = yes; + flash_instr = 0xB4, 0x02, 0x12; + eeprom_instr = 0xBB, 0xFF, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBC, 0x02, 0xB4, 0x02, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; +## no STK500 devcode in XML file, use the ATtiny45 one + stk500_devcode = 0x14; +## avr910_devcode = ?; +## Try the AT90S2313 devcode: + avr910_devcode = 0x20; + signature = 0x1e 0x91 0x08; + reset = io; + chip_erase_delay = 4500; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x66, + 0x68, 0x78, 0x68, 0x68, 0x7A, 0x6A, 0x68, 0x78, + 0x78, 0x7D, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x00; + hventerstabdelay = 100; + hvspcmdexedelay = 0; + synchcycles = 6; + latchcycles = 1; + togglevtg = 1; + poweroffdelay = 25; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 128; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 2048; + page_size = 32; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 32; + readsize = 256; + ; +# ATtiny25 has Signature Bytes: 0x1E 0x91 0x08. + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 2; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATtiny45 +#------------------------------------------------------------ + +part + id = "t45"; + desc = "ATtiny45"; + has_debugwire = yes; + flash_instr = 0xB4, 0x02, 0x12; + eeprom_instr = 0xBB, 0xFF, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBC, 0x02, 0xB4, 0x02, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; + stk500_devcode = 0x14; +## avr910_devcode = ?; +## Try the AT90S2313 devcode: + avr910_devcode = 0x20; + signature = 0x1e 0x92 0x06; + reset = io; + chip_erase_delay = 4500; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x66, + 0x68, 0x78, 0x68, 0x68, 0x7A, 0x6A, 0x68, 0x78, + 0x78, 0x7D, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + hvspcmdexedelay = 0; + synchcycles = 6; + latchcycles = 1; + togglevtg = 1; + poweroffdelay = 25; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 256; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 4096; + page_size = 64; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 32; + readsize = 256; + ; +# ATtiny45 has Signature Bytes: 0x1E 0x92 0x08. (Data sheet 2586C-AVR-06/05 (doc2586.pdf) indicates otherwise!) + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 2; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATtiny85 +#------------------------------------------------------------ + +part + id = "t85"; + desc = "ATtiny85"; + has_debugwire = yes; + flash_instr = 0xB4, 0x02, 0x12; + eeprom_instr = 0xBB, 0xFF, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBC, 0x02, 0xB4, 0x02, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; +## no STK500 devcode in XML file, use the ATtiny45 one + stk500_devcode = 0x14; +## avr910_devcode = ?; +## Try the AT90S2313 devcode: + avr910_devcode = 0x20; + signature = 0x1e 0x93 0x0b; + reset = io; + chip_erase_delay = 4500; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x66, + 0x68, 0x78, 0x68, 0x68, 0x7A, 0x6A, 0x68, 0x78, + 0x78, 0x7D, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x00; + hventerstabdelay = 100; + hvspcmdexedelay = 0; + synchcycles = 6; + latchcycles = 1; + togglevtg = 1; + poweroffdelay = 25; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 512; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 32; + readsize = 256; + ; +# ATtiny85 has Signature Bytes: 0x1E 0x93 0x08. + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 2; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega640 +#------------------------------------------------------------ +# Almost same as ATmega1280, except for different memory sizes + +part + id = "m640"; + desc = "ATMEGA640"; + signature = 0x1e 0x96 0x08; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega1280 +#------------------------------------------------------------ + +part + id = "m1280"; + desc = "ATMEGA1280"; + signature = 0x1e 0x97 0x03; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 131072; + page_size = 256; + num_pages = 512; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega1281 +#------------------------------------------------------------ +# Identical to ATmega1280 + +part + id = "m1281"; + desc = "ATMEGA1281"; + signature = 0x1e 0x97 0x04; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 131072; + page_size = 256; + num_pages = 512; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega2560 +#------------------------------------------------------------ + +part + id = "m2560"; + desc = "ATMEGA2560"; + signature = 0x1e 0x98 0x01; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 262144; + page_size = 256; + num_pages = 1024; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + load_ext_addr = " 0 1 0 0 1 1 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 0 a16", + " 0 0 0 0 0 0 0 0"; + + mode = 0x41; + delay = 10; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega2561 +#------------------------------------------------------------ + +part + id = "m2561"; + desc = "ATMEGA2561"; + signature = 0x1e 0x98 0x02; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 262144; + page_size = 256; + num_pages = 1024; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + load_ext_addr = " 0 1 0 0 1 1 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 0 a16", + " 0 0 0 0 0 0 0 0"; + + mode = 0x41; + delay = 10; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega128RFA1 +#------------------------------------------------------------ +# Identical to ATmega2561 but half the ROM + +part + id = "m128rfa1"; + desc = "ATMEGA128RFA1"; + signature = 0x1e 0xa7 0x01; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 55000; + pagel = 0xD7; + bs2 = 0xE2; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 50000; + max_write_delay = 50000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 131072; + page_size = 256; + num_pages = 512; + min_write_delay = 50000; + max_write_delay = 50000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATtiny24 +#------------------------------------------------------------ + +part + id = "t24"; + desc = "ATtiny24"; + has_debugwire = yes; + flash_instr = 0xB4, 0x07, 0x17; + eeprom_instr = 0xBB, 0xFF, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBC, 0x07, 0xB4, 0x07, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; +## no STK500 devcode in XML file, use the ATtiny45 one + stk500_devcode = 0x14; +## avr910_devcode = ?; +## Try the AT90S2313 devcode: + avr910_devcode = 0x20; + signature = 0x1e 0x91 0x0b; + reset = io; + chip_erase_delay = 4500; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x66, + 0x68, 0x78, 0x68, 0x68, 0x7A, 0x6A, 0x68, 0x78, + 0x78, 0x7D, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x0F; + hventerstabdelay = 100; + hvspcmdexedelay = 0; + synchcycles = 6; + latchcycles = 1; + togglevtg = 1; + poweroffdelay = 25; + resetdelayms = 0; + resetdelayus = 70; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 128; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x x", + "x a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 2048; + page_size = 32; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x x a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 32; + readsize = 256; + ; +# ATtiny24 has Signature Bytes: 0x1E 0x91 0x0B. + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x x x x x x x i i"; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATtiny44 +#------------------------------------------------------------ + +part + id = "t44"; + desc = "ATtiny44"; + has_debugwire = yes; + flash_instr = 0xB4, 0x07, 0x17; + eeprom_instr = 0xBB, 0xFF, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBC, 0x07, 0xB4, 0x07, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; +## no STK500 devcode in XML file, use the ATtiny45 one + stk500_devcode = 0x14; +## avr910_devcode = ?; +## Try the AT90S2313 devcode: + avr910_devcode = 0x20; + signature = 0x1e 0x92 0x07; + reset = io; + chip_erase_delay = 4500; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x66, + 0x68, 0x78, 0x68, 0x68, 0x7A, 0x6A, 0x68, 0x78, + 0x78, 0x7D, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x0F; + hventerstabdelay = 100; + hvspcmdexedelay = 0; + synchcycles = 6; + latchcycles = 1; + togglevtg = 1; + poweroffdelay = 25; + resetdelayms = 0; + resetdelayus = 70; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 256; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x x", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 4096; + page_size = 64; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 32; + readsize = 256; + ; +# ATtiny44 has Signature Bytes: 0x1E 0x92 0x07. + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x x x x x x x i i"; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATtiny84 +#------------------------------------------------------------ + +part + id = "t84"; + desc = "ATtiny84"; + has_debugwire = yes; + flash_instr = 0xB4, 0x07, 0x17; + eeprom_instr = 0xBB, 0xFF, 0xBB, 0xEE, 0xBB, 0xCC, 0xB2, 0x0D, + 0xBC, 0x07, 0xB4, 0x07, 0xBA, 0x0D, 0xBB, 0xBC, + 0x99, 0xE1, 0xBB, 0xAC; +## no STK500 devcode in XML file, use the ATtiny45 one + stk500_devcode = 0x14; +## avr910_devcode = ?; +## Try the AT90S2313 devcode: + avr910_devcode = 0x20; + signature = 0x1e 0x93 0x0c; + reset = io; + chip_erase_delay = 4500; + + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + hvsp_controlstack = + 0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x66, + 0x68, 0x78, 0x68, 0x68, 0x7A, 0x6A, 0x68, 0x78, + 0x78, 0x7D, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10, + 0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x0F; + hventerstabdelay = 100; + hvspcmdexedelay = 0; + synchcycles = 6; + latchcycles = 1; + togglevtg = 1; + poweroffdelay = 25; + resetdelayms = 0; + resetdelayus = 70; + hvleavestabdelay = 100; + resetdelay = 25; + chiperasepolltimeout = 40; + chiperasetime = 0; + programfusepolltimeout = 25; + programlockpolltimeout = 25; + + memory "eeprom" + size = 512; + paged = no; + page_size = 4; + min_write_delay = 4000; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = "1 0 1 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o"; + + write = "1 1 0 0 0 0 0 0 0 0 0 x x x x a8", + "a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x x x x", + " x a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 4; + readsize = 256; + ; + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 x x x x x", + " x x x a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 32; + readsize = 256; + ; +# ATtiny84 has Signature Bytes: 0x1E 0x93 0x0C. + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + + memory "lock" + size = 1; + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x x x x x x x i i"; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x x x x i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega32u4 +#------------------------------------------------------------ + +part + id = "m32u4"; + desc = "ATmega32U4"; + signature = 0x1e 0x95 0x87; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 128; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90USB646 +#------------------------------------------------------------ + +part + id = "usb646"; + desc = "AT90USB646"; + signature = 0x1e 0x96 0x82; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 2048; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90USB647 +#------------------------------------------------------------ +# identical to AT90USB646 + +part + id = "usb647"; + desc = "AT90USB647"; + signature = 0x1e 0x96 0x82; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 2048; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x x a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90USB1286 +#------------------------------------------------------------ + +part + id = "usb1286"; + desc = "AT90USB1286"; + signature = 0x1e 0x97 0x82; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 131072; + page_size = 256; + num_pages = 512; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90USB1287 +#------------------------------------------------------------ +# identical to AT90USB1286 + +part + id = "usb1287"; + desc = "AT90USB1287"; + signature = 0x1e 0x97 0x82; + has_jtag = yes; +# stk500_devcode = 0xB2; +# avr910_devcode = 0x43; + chip_erase_delay = 9000; + pagel = 0xD7; + bs2 = 0xA0; + reset = dedicated; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "x x x x x x x x x x x x x x x x"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + rampz = 0x3b; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 4096; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " x x x x a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 x x x a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 131072; + page_size = 256; + num_pages = 512; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 x x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 256; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x x x x x i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 x x x x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 x x x x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + + +#------------------------------------------------------------ +# AT90USB162 +#------------------------------------------------------------ + +part + id = "usb162"; + desc = "AT90USB162"; + has_jtag = no; + has_debugwire = yes; + signature = 0x1e 0x94 0x82; + chip_erase_delay = 9000; + reset = io; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + pagel = 0xD7; + bs2 = 0xC6; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 512; + num_pages = 128; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 16384; + page_size = 128; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 128; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# AT90USB82 +#------------------------------------------------------------ +# Changes against AT90USB162 (beside IDs) +# memory "flash" +# size = 8192; +# num_pages = 64; + +part + id = "usb82"; + desc = "AT90USB82"; + has_jtag = no; + has_debugwire = yes; + signature = 0x1e 0x93 0x82; + chip_erase_delay = 9000; + reset = io; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + pagel = 0xD7; + bs2 = 0xC6; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 512; + num_pages = 128; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 8192; + page_size = 128; + num_pages = 64; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 128; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega32U2 +#------------------------------------------------------------ +# Changes against AT90USB162 (beside IDs) +# memory "flash" +# size = 32768; +# num_pages = 256; +# memory "eeprom" +# size = 1024; +# num_pages = 256; +part + id = "m32u2"; + desc = "ATmega32U2"; + has_jtag = no; + has_debugwire = yes; + signature = 0x1e 0x95 0x8a; + chip_erase_delay = 9000; + reset = io; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + pagel = 0xD7; + bs2 = 0xC6; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 1024; + num_pages = 256; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 128; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; +#------------------------------------------------------------ +# ATmega16U2 +#------------------------------------------------------------ +# Changes against ATmega32U2 (beside IDs) +# memory "flash" +# size = 16384; +# num_pages = 128; +# memory "eeprom" +# size = 512; +# num_pages = 128; +part + id = "m16u2"; + desc = "ATmega16U2"; + has_jtag = no; + has_debugwire = yes; + signature = 0x1e 0x94 0x89; + chip_erase_delay = 9000; + reset = io; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + pagel = 0xD7; + bs2 = 0xC6; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 512; + num_pages = 128; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 16384; + page_size = 128; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 128; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega8U2 +#------------------------------------------------------------ +# Changes against ATmega16U2 (beside IDs) +# memory "flash" +# size = 8192; +# page_size = 64; +# blocksize = 64; + +part + id = "m8u2"; + desc = "ATmega8U2"; + has_jtag = no; + has_debugwire = yes; + signature = 0x1e 0x93 0x89; + chip_erase_delay = 9000; + reset = io; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "x x x x x x x x x x x x x x x x"; + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 x x x x x", + "x x x x x x x x x x x x x x x x"; + pagel = 0xD7; + bs2 = 0xC6; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 512; + num_pages = 128; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0x00; + readback_p2 = 0x00; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 0 0 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 20; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 8192; + page_size = 64; + num_pages = 128; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0x00; + readback_p2 = 0x00; + read_lo = " 0 0 1 0 0 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " x x x x x x x x", + " x x a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + "a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 x x x x x x", + " x x x x x x x x"; + + mode = 0x41; + delay = 6; + blocksize = 64; + readsize = 256; + ; + + memory "lfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "x x x x x x x x i i i i i i i i"; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "x x x x x x x x o o o o o o o o"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x", + "x x x x x x x x 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "calibration" + size = 1; + read = "0 0 1 1 1 0 0 0 0 0 0 x x x x x", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 x x x x x", + "x x x x x x a1 a0 o o o o o o o o"; + ; + ; +#------------------------------------------------------------ +# ATmega325 +#------------------------------------------------------------ + +part + id = "m325"; + desc = "ATMEGA325"; + signature = 0x1e 0x95 0x05; + has_jtag = yes; +# stk500_devcode = 0x??; # No STK500v1 support? +# avr910_devcode = 0x??; # Try the ATmega16 one + avr910_devcode = 0x74; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 0 0 0 0 0", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 0 0 0 0 0", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 0 0 0 0 0", + "0 0 0 0 0 0 0 0 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "0 0 0 0 0 0 0 0 i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "0 0 0 0 0 0 0 0 i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "0 0 0 0 0 0 0 0 1 1 1 1 1 i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega645 +#------------------------------------------------------------ + +part + id = "m645"; + desc = "ATMEGA645"; + signature = 0x1E 0x96 0x05; + has_jtag = yes; +# stk500_devcode = 0x??; # No STK500v1 support? +# avr910_devcode = 0x??; # Try the ATmega16 one + avr910_devcode = 0x74; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 2048; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 8; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 0 0 0 0 0", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 0 0 0 0 0", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " 0 0 0 0 0 0 0 0"; + + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 0 0 0 0 0", + "0 0 0 0 0 0 0 0 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "0 0 0 0 0 0 0 0 i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "0 0 0 0 0 0 0 0 i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "0 0 0 0 0 0 0 0 1 1 1 1 1 i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega3250 +#------------------------------------------------------------ + +part + id = "m3250"; + desc = "ATMEGA3250"; + signature = 0x1E 0x95 0x06; + has_jtag = yes; +# stk500_devcode = 0x??; # No STK500v1 support? +# avr910_devcode = 0x??; # Try the ATmega16 one + avr910_devcode = 0x74; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 4; /* for parallel programming */ + size = 1024; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 0 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 0 0 0 0 a9 a8", + " a7 a6 a5 a4 a3 a2 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 32768; + page_size = 128; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 0 0 0 0 0", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 0 0 0 0 0", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " 0 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 0 0 0 0 0", + "0 0 0 0 0 0 0 0 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "0 0 0 0 0 0 0 0 i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "0 0 0 0 0 0 0 0 i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "0 0 0 0 0 0 0 0 1 1 1 1 1 i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATmega6450 +#------------------------------------------------------------ + +part + id = "m6450"; + desc = "ATMEGA6450"; + signature = 0x1E 0x96 0x06; + has_jtag = yes; +# stk500_devcode = 0x??; # No STK500v1 support? +# avr910_devcode = 0x??; # Try the ATmega16 one + avr910_devcode = 0x74; + pagel = 0xd7; + bs2 = 0xa0; + chip_erase_delay = 9000; + pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1", + "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"; + + chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"; + + timeout = 200; + stabdelay = 100; + cmdexedelay = 25; + synchloops = 32; + bytedelay = 0; + pollindex = 3; + pollvalue = 0x53; + predelay = 1; + postdelay = 1; + pollmethod = 1; + + pp_controlstack = + 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, + 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, + 0x66, 0x76, 0x67, 0x77, 0x6A, 0x7A, 0x6B, 0x7B, + 0xBE, 0xFD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00; + hventerstabdelay = 100; + progmodedelay = 0; + latchcycles = 5; + togglevtg = 1; + poweroffdelay = 15; + resetdelayms = 1; + resetdelayus = 0; + hvleavestabdelay = 15; + chiperasepulsewidth = 0; + chiperasepolltimeout = 10; + programfusepulsewidth = 0; + programfusepolltimeout = 5; + programlockpulsewidth = 0; + programlockpolltimeout = 5; + + idr = 0x31; + spmcr = 0x57; + allowfullpagebitstream = no; + + memory "eeprom" + paged = no; /* leave this "no" */ + page_size = 8; /* for parallel programming */ + size = 2048; + min_write_delay = 9000; + max_write_delay = 9000; + readback_p1 = 0xff; + readback_p2 = 0xff; + read = " 1 0 1 0 0 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + write = " 1 1 0 0 0 0 0 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_lo = " 1 1 0 0 0 0 0 1", + " 0 0 0 0 0 0 0 0", + " 0 0 0 0 0 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 1 1 0 0 0 0 1 0", + " 0 0 0 0 0 a10 a9 a8", + " a7 a6 a5 a4 a3 0 0 0", + " x x x x x x x x"; + + mode = 0x41; + delay = 10; + blocksize = 4; + readsize = 256; + ; + + memory "flash" + paged = yes; + size = 65536; + page_size = 256; + num_pages = 256; + min_write_delay = 4500; + max_write_delay = 4500; + readback_p1 = 0xff; + readback_p2 = 0xff; + read_lo = " 0 0 1 0 0 0 0 0", + " a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + read_hi = " 0 0 1 0 1 0 0 0", + " a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " o o o o o o o o"; + + loadpage_lo = " 0 1 0 0 0 0 0 0", + " 0 0 0 0 0 0 0 0", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + loadpage_hi = " 0 1 0 0 1 0 0 0", + " 0 0 0 0 0 0 0 0", + " a7 a6 a5 a4 a3 a2 a1 a0", + " i i i i i i i i"; + + writepage = " 0 1 0 0 1 1 0 0", + " a15 a14 a13 a12 a11 a10 a9 a8", + " a7 a6 a5 a4 a3 a2 a1 a0", + " 0 0 0 0 0 0 0 0"; + + mode = 0x41; + delay = 10; + blocksize = 128; + readsize = 256; + ; + + memory "lock" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0", + "x x x x x x x x x x o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 1 1 0 0 0 0 0", + "0 0 0 0 0 0 0 0 1 1 i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "lfuse" + size = 1; + read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0", + "0 0 0 0 0 0 0 0 i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "hfuse" + size = 1; + read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0", + "0 0 0 0 0 0 0 0 i i i i i i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "efuse" + size = 1; + + read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + + write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0", + "0 0 0 0 0 0 0 0 1 1 1 1 1 i i i"; + min_write_delay = 9000; + max_write_delay = 9000; + ; + + memory "signature" + size = 3; + read = "0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 a1 a0 o o o o o o o o"; + ; + + memory "calibration" + size = 1; + + read = "0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0", + "0 0 0 0 0 0 0 0 o o o o o o o o"; + ; + ; + +#------------------------------------------------------------ +# ATXMEGA64A1 +#------------------------------------------------------------ + +part + id = "x64a1"; + desc = "ATXMEGA64A1"; + signature = 0x1e 0x96 0x4e; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0800; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00010000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00001000; + offset = 0x0080f000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00001000; + offset = 0x00810000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00011000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA128A1 +#------------------------------------------------------------ + +part + id = "x128a1"; + desc = "ATXMEGA128A1"; + signature = 0x1e 0x97 0x4c; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0800; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00020000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00002000; + offset = 0x0081e000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00002000; + offset = 0x00820000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00022000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA128A1REVD +#------------------------------------------------------------ + +part + id = "x128a1d"; + desc = "ATXMEGA128A1REVD"; + signature = 0x1e 0x97 0x41; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0800; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00020000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00002000; + offset = 0x0081e000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00002000; + offset = 0x00820000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00022000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA192A1 +#------------------------------------------------------------ + +part + id = "x192a1"; + desc = "ATXMEGA192A1"; + signature = 0x1e 0x97 0x4e; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0800; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00030000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00002000; + offset = 0x0082e000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00002000; + offset = 0x00830000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00032000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA256A1 +#------------------------------------------------------------ + +part + id = "x256a1"; + desc = "ATXMEGA256A1"; + signature = 0x1e 0x98 0x46; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x1000; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00040000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00002000; + offset = 0x0083e000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00002000; + offset = 0x00840000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00042000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA64A3 +#------------------------------------------------------------ + +part + id = "x64a3"; + desc = "ATXMEGA64A3"; + signature = 0x1e 0x96 0x42; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0800; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00010000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00001000; + offset = 0x0080f000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00001000; + offset = 0x00810000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00011000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA128A3 +#------------------------------------------------------------ + +part + id = "x128a3"; + desc = "ATXMEGA128A3"; + signature = 0x1e 0x97 0x42; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0800; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00020000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00002000; + offset = 0x0081e000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00002000; + offset = 0x00820000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00022000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA192A3 +#------------------------------------------------------------ + +part + id = "x192a3"; + desc = "ATXMEGA192A3"; + signature = 0x1e 0x97 0x44; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0800; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00030000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00002000; + offset = 0x0082e000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00002000; + offset = 0x00830000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00032000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA256A3 +#------------------------------------------------------------ + +part + id = "x256a3"; + desc = "ATXMEGA256A3"; + signature = 0x1e 0x98 0x42; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x1000; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00040000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00002000; + offset = 0x0083e000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00002000; + offset = 0x00840000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00042000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA256A3B +#------------------------------------------------------------ + +part + id = "x256a3b"; + desc = "ATXMEGA256A3B"; + signature = 0x1e 0x98 0x43; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x1000; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00040000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00002000; + offset = 0x0083e000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00002000; + offset = 0x00840000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00042000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA16A4 +#------------------------------------------------------------ + +part + id = "x16a4"; + desc = "ATXMEGA16A4"; + signature = 0x1e 0x94 0x41; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0400; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00004000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00001000; + offset = 0x00803000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00001000; + offset = 0x00804000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00005000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA32A4 +#------------------------------------------------------------ + +part + id = "x32a4"; + desc = "ATXMEGA32A4"; + signature = 0x1e 0x95 0x41; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0400; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00008000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00001000; + offset = 0x00807000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00001000; + offset = 0x00808000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00009000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA64A4 +#------------------------------------------------------------ + +part + id = "x64a4"; + desc = "ATXMEGA64A4"; + signature = 0x1e 0x96 0x46; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0800; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00010000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00001000; + offset = 0x0080f000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00001000; + offset = 0x00810000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00011000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + +#------------------------------------------------------------ +# ATXMEGA128A4 +#------------------------------------------------------------ + +part + id = "x128a4"; + desc = "ATXMEGA128A4"; + signature = 0x1e 0x97 0x46; + has_jtag = yes; + has_pdi = yes; + nvm_base = 0x01c0; + + memory "eeprom" + size = 0x0800; + offset = 0x08c0000; + page_size = 0x20; + readsize = 0x100; + ; + + memory "application" + size = 0x00020000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "apptable" + size = 0x00002000; + offset = 0x0081e000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "boot" + size = 0x00002000; + offset = 0x00820000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "flash" + size = 0x00022000; + offset = 0x0800000; + page_size = 0x100; + readsize = 0x100; + ; + + memory "prodsig" + size = 0x200; + offset = 0x8e0200; + page_size = 0x100; + readsize = 0x100; + ; + + memory "usersig" + size = 0x200; + offset = 0x8e0400; + page_size = 0x100; + readsize = 0x100; + ; + + memory "signature" + size = 3; + offset = 0x1000090; + ; + + memory "fuse0" + size = 1; + offset = 0x8f0020; + ; + + memory "fuse1" + size = 1; + offset = 0x8f0021; + ; + + memory "fuse2" + size = 1; + offset = 0x8f0022; + ; + + memory "fuse4" + size = 1; + offset = 0x8f0024; + ; + + memory "fuse5" + size = 1; + offset = 0x8f0025; + ; + + memory "lock" + size = 1; + offset = 0x8f0027; + ; +; + + +#------------------------------------------------------------ +# AVR32UC3A0512 +#------------------------------------------------------------ + +part + id = "ucr2"; + desc = "32UC3A0512"; + signature = 0xED 0xC0 0x3F; + has_jtag = yes; + is_avr32 = yes; + + memory "flash" + paged = yes; + page_size = 512; # bytes + readsize = 512; # bytes + num_pages = 1024; # could be set dynamicly + size = 0x00080000; # could be set dynamicly + offset = 0x80000000; + ; +; + +#------------------------------------------------------------ +# ATtiny4 +#------------------------------------------------------------ + +part + id = "t4"; + desc = "ATtiny4"; + signature = 0x1e 0x8f 0x0a; + has_tpi = yes; + + memory "flash" + size = 512; + offset = 0x4000; + page_size = 16; + blocksize = 128; + ; + + memory "signature" + size = 3; + offset = 0x3fc0; + page_size = 16; + ; + + memory "fuse" + size = 1; + offset = 0x3f40; + page_size = 16; + blocksize = 4; + ; + + memory "calibration" + size = 1; + offset = 0x3f80; + page_size = 16; + ; + + memory "lockbits" + size = 1; + offset = 0x3f00; + page_size = 16; + ; +; + + +#------------------------------------------------------------ +# ATtiny5 +#------------------------------------------------------------ + +part + id = "t5"; + desc = "ATtiny5"; + signature = 0x1e 0x8f 0x09; + has_tpi = yes; + + memory "flash" + size = 512; + offset = 0x4000; + page_size = 16; + blocksize = 128; + ; + + memory "signature" + size = 3; + offset = 0x3fc0; + page_size = 16; + ; + + memory "fuse" + size = 1; + offset = 0x3f40; + page_size = 16; + blocksize = 4; + ; + + memory "calibration" + size = 1; + offset = 0x3f80; + page_size = 16; + ; + + memory "lockbits" + size = 1; + offset = 0x3f00; + page_size = 16; + ; +; + + +#------------------------------------------------------------ +# ATtiny9 +#------------------------------------------------------------ + +part + id = "t9"; + desc = "ATtiny9"; + signature = 0x1e 0x90 0x08; + has_tpi = yes; + + memory "flash" + size = 1024; + offset = 0x4000; + page_size = 16; + blocksize = 128; + ; + + memory "signature" + size = 3; + offset = 0x3fc0; + page_size = 16; + ; + + memory "fuse" + size = 1; + offset = 0x3f40; + page_size = 16; + blocksize = 4; + ; + + memory "calibration" + size = 1; + offset = 0x3f80; + page_size = 16; + ; + + memory "lockbits" + size = 1; + offset = 0x3f00; + page_size = 16; + ; +; + + +#------------------------------------------------------------ +# ATtiny10 +#------------------------------------------------------------ + +part + id = "t10"; + desc = "ATtiny10"; + signature = 0x1e 0x90 0x03; + has_tpi = yes; + + memory "flash" + size = 1024; + offset = 0x4000; + page_size = 16; + blocksize = 128; + ; + + memory "signature" + size = 3; + offset = 0x3fc0; + page_size = 16; + ; + + memory "fuse" + size = 1; + offset = 0x3f40; + page_size = 16; + blocksize = 4; + ; + + memory "calibration" + size = 1; + offset = 0x3f80; + page_size = 16; + ; + + memory "lockbits" + size = 1; + offset = 0x3f00; + page_size = 16; + ; +; + + diff --git a/avrtool/avrdude.exe b/avrtool/avrdude.exe new file mode 100644 index 0000000..2897253 Binary files /dev/null and b/avrtool/avrdude.exe differ diff --git a/avrtool/libusb0.dll b/avrtool/libusb0.dll new file mode 100644 index 0000000..9387bed Binary files /dev/null and b/avrtool/libusb0.dll differ diff --git a/boards.txt b/boards.txt new file mode 100644 index 0000000..de9f4ef --- /dev/null +++ b/boards.txt @@ -0,0 +1,567 @@ +# See: http://code.google.com/p/arduino/wiki/Platforms + +############################################################## + +uno.name=Arduino Uno +uno.upload.protocol=arduino +uno.upload.maximum_size=32256 +uno.upload.speed=115200 +uno.bootloader.low_fuses=0xff +uno.bootloader.high_fuses=0xde +uno.bootloader.extended_fuses=0x05 +uno.bootloader.path=optiboot +uno.bootloader.file=optiboot_atmega328.hex +uno.bootloader.unlock_bits=0x3F +uno.bootloader.lock_bits=0x0F +uno.build.mcu=atmega328p +uno.build.f_cpu=16000000L +uno.build.core=arduino +uno.build.variant=standard + +############################################################## + +atmega328.name=Arduino Duemilanove w/ ATmega328 + +atmega328.upload.protocol=arduino +atmega328.upload.maximum_size=30720 +atmega328.upload.speed=57600 + +atmega328.bootloader.low_fuses=0xFF +atmega328.bootloader.high_fuses=0xDA +atmega328.bootloader.extended_fuses=0x05 +atmega328.bootloader.path=atmega +atmega328.bootloader.file=ATmegaBOOT_168_atmega328.hex +atmega328.bootloader.unlock_bits=0x3F +atmega328.bootloader.lock_bits=0x0F + +atmega328.build.mcu=atmega328p +atmega328.build.f_cpu=16000000L +atmega328.build.core=arduino +atmega328.build.variant=standard + +############################################################## + +diecimila.name=Arduino Diecimila or Duemilanove w/ ATmega168 + +diecimila.upload.protocol=arduino +diecimila.upload.maximum_size=14336 +diecimila.upload.speed=19200 + +diecimila.bootloader.low_fuses=0xff +diecimila.bootloader.high_fuses=0xdd +diecimila.bootloader.extended_fuses=0x00 +diecimila.bootloader.path=atmega +diecimila.bootloader.file=ATmegaBOOT_168_diecimila.hex +diecimila.bootloader.unlock_bits=0x3F +diecimila.bootloader.lock_bits=0x0F + +diecimila.build.mcu=atmega168 +diecimila.build.f_cpu=16000000L +diecimila.build.core=arduino +diecimila.build.variant=standard + +############################################################## + +nano328.name=Arduino Nano w/ ATmega328 + +nano328.upload.protocol=arduino +nano328.upload.maximum_size=30720 +nano328.upload.speed=57600 + +nano328.bootloader.low_fuses=0xFF +nano328.bootloader.high_fuses=0xDA +nano328.bootloader.extended_fuses=0x05 +nano328.bootloader.path=atmega +nano328.bootloader.file=ATmegaBOOT_168_atmega328.hex +nano328.bootloader.unlock_bits=0x3F +nano328.bootloader.lock_bits=0x0F + +nano328.build.mcu=atmega328p +nano328.build.f_cpu=16000000L +nano328.build.core=arduino +nano328.build.variant=eightanaloginputs + +############################################################## + +nano.name=Arduino Nano w/ ATmega168 + +nano.upload.protocol=arduino +nano.upload.maximum_size=14336 +nano.upload.speed=19200 + +nano.bootloader.low_fuses=0xff +nano.bootloader.high_fuses=0xdd +nano.bootloader.extended_fuses=0x00 +nano.bootloader.path=atmega +nano.bootloader.file=ATmegaBOOT_168_diecimila.hex +nano.bootloader.unlock_bits=0x3F +nano.bootloader.lock_bits=0x0F + +nano.build.mcu=atmega168 +nano.build.f_cpu=16000000L +nano.build.core=arduino +nano.build.variant=eightanaloginputs + +############################################################## + +mega2560.name=Arduino Mega 2560 or Mega ADK + +mega2560.upload.protocol=wiring +mega2560.upload.maximum_size=258048 +mega2560.upload.speed=115200 + +mega2560.bootloader.low_fuses=0xFF +mega2560.bootloader.high_fuses=0xD8 +mega2560.bootloader.extended_fuses=0xFD +mega2560.bootloader.path=stk500v2 +mega2560.bootloader.file=stk500boot_v2_mega2560.hex +mega2560.bootloader.unlock_bits=0x3F +mega2560.bootloader.lock_bits=0x0F + +mega2560.build.mcu=atmega2560 +mega2560.build.f_cpu=16000000L +mega2560.build.core=arduino +mega2560.build.variant=mega + +############################################################## + +mega.name=Arduino Mega (ATmega1280) + +mega.upload.protocol=arduino +mega.upload.maximum_size=126976 +mega.upload.speed=57600 + +mega.bootloader.low_fuses=0xFF +mega.bootloader.high_fuses=0xDA +mega.bootloader.extended_fuses=0xF5 +mega.bootloader.path=atmega +mega.bootloader.file=ATmegaBOOT_168_atmega1280.hex +mega.bootloader.unlock_bits=0x3F +mega.bootloader.lock_bits=0x0F + +mega.build.mcu=atmega1280 +mega.build.f_cpu=16000000L +mega.build.core=arduino +mega.build.variant=mega + +############################################################## + +leonardo.name=Arduino Leonardo +leonardo.upload.protocol=avr109 +leonardo.upload.maximum_size=28672 +leonardo.upload.speed=57600 +leonardo.upload.disable_flushing=true +leonardo.bootloader.low_fuses=0xff +leonardo.bootloader.high_fuses=0xd8 +leonardo.bootloader.extended_fuses=0xcb +leonardo.bootloader.path=caterina +leonardo.bootloader.file=Caterina-Leonardo.hex +leonardo.bootloader.unlock_bits=0x3F +leonardo.bootloader.lock_bits=0x2F +leonardo.build.mcu=atmega32u4 +leonardo.build.f_cpu=16000000L +leonardo.build.vid=0x2341 +leonardo.build.pid=0x8036 +leonardo.build.core=arduino +leonardo.build.variant=leonardo + +############################################################## + +esplora.name=Arduino Esplora +esplora.upload.protocol=avr109 +esplora.upload.maximum_size=28672 +esplora.upload.speed=57600 +esplora.upload.disable_flushing=true +esplora.bootloader.low_fuses=0xff +esplora.bootloader.high_fuses=0xd8 +esplora.bootloader.extended_fuses=0xcb +esplora.bootloader.path=caterina +esplora.bootloader.file=Caterina-Esplora.hex +esplora.bootloader.unlock_bits=0x3F +esplora.bootloader.lock_bits=0x2F +esplora.build.mcu=atmega32u4 +esplora.build.f_cpu=16000000L +esplora.build.vid=0x2341 +esplora.build.pid=0x803C +esplora.build.core=arduino +esplora.build.variant=leonardo + +############################################################## + +micro.name=Arduino Micro +micro.upload.protocol=avr109 +micro.upload.maximum_size=28672 +micro.upload.speed=57600 +micro.upload.disable_flushing=true +micro.bootloader.low_fuses=0xff +micro.bootloader.high_fuses=0xd8 +micro.bootloader.extended_fuses=0xcb +micro.bootloader.path=caterina +micro.bootloader.file=Caterina-Micro.hex +micro.bootloader.unlock_bits=0x3F +micro.bootloader.lock_bits=0x2F +micro.build.mcu=atmega32u4 +micro.build.f_cpu=16000000L +micro.build.vid=0x2341 +micro.build.pid=0x8037 +micro.build.core=arduino +micro.build.variant=micro + +############################################################## + +mini328.name=Arduino Mini w/ ATmega328 + +mini328.upload.protocol=arduino +mini328.upload.maximum_size=28672 +mini328.upload.speed=115200 + +mini328.bootloader.low_fuses=0xff +mini328.bootloader.high_fuses=0xd8 +mini328.bootloader.extended_fuses=0x05 +mini328.bootloader.path=optiboot +mini328.bootloader.file=optiboot_atmega328-Mini.hex +mini328.bootloader.unlock_bits=0x3F +mini328.bootloader.lock_bits=0x0F + +mini328.build.mcu=atmega328p +mini328.build.f_cpu=16000000L +mini328.build.core=arduino +mini328.build.variant=eightanaloginputs + +############################################################## + +mini.name=Arduino Mini w/ ATmega168 + +mini.upload.protocol=arduino +mini.upload.maximum_size=14336 +mini.upload.speed=19200 + +mini.bootloader.low_fuses=0xff +mini.bootloader.high_fuses=0xdd +mini.bootloader.extended_fuses=0x00 +mini.bootloader.path=atmega +mini.bootloader.file=ATmegaBOOT_168_ng.hex +mini.bootloader.unlock_bits=0x3F +mini.bootloader.lock_bits=0x0F + +mini.build.mcu=atmega168 +mini.build.f_cpu=16000000L +mini.build.core=arduino +mini.build.variant=eightanaloginputs + +############################################################## + +ethernet.name=Arduino Ethernet + +ethernet.upload.protocol=arduino +ethernet.upload.maximum_size=32256 +ethernet.upload.speed=115200 + +ethernet.bootloader.low_fuses=0xff +ethernet.bootloader.high_fuses=0xde +ethernet.bootloader.extended_fuses=0x05 +ethernet.bootloader.path=optiboot +ethernet.bootloader.file=optiboot_atmega328.hex +ethernet.bootloader.unlock_bits=0x3F +ethernet.bootloader.lock_bits=0x0F + +ethernet.build.variant=standard +ethernet.build.mcu=atmega328p +ethernet.build.f_cpu=16000000L +ethernet.build.core=arduino + +############################################################## + +fio.name=Arduino Fio + +fio.upload.protocol=arduino +fio.upload.maximum_size=30720 +fio.upload.speed=57600 + +fio.bootloader.low_fuses=0xFF +fio.bootloader.high_fuses=0xDA +fio.bootloader.extended_fuses=0x05 +fio.bootloader.path=arduino:atmega +fio.bootloader.file=ATmegaBOOT_168_atmega328_pro_8MHz.hex +fio.bootloader.unlock_bits=0x3F +fio.bootloader.lock_bits=0x0F + +fio.build.mcu=atmega328p +fio.build.f_cpu=8000000L +fio.build.core=arduino +fio.build.variant=eightanaloginputs + +############################################################## + +bt328.name=Arduino BT w/ ATmega328 + +bt328.upload.protocol=arduino +bt328.upload.maximum_size=28672 +bt328.upload.speed=19200 +bt328.upload.disable_flushing=true + +bt328.bootloader.low_fuses=0xff +bt328.bootloader.high_fuses=0xd8 +bt328.bootloader.extended_fuses=0x05 +bt328.bootloader.path=bt +bt328.bootloader.file=ATmegaBOOT_168_atmega328_bt.hex +bt328.bootloader.unlock_bits=0x3F +bt328.bootloader.lock_bits=0x0F + +bt328.build.mcu=atmega328p +bt328.build.f_cpu=16000000L +bt328.build.core=arduino +bt328.build.variant=eightanaloginputs + +############################################################## + +bt.name=Arduino BT w/ ATmega168 + +bt.upload.protocol=arduino +bt.upload.maximum_size=14336 +bt.upload.speed=19200 +bt.upload.disable_flushing=true + +bt.bootloader.low_fuses=0xff +bt.bootloader.high_fuses=0xdd +bt.bootloader.extended_fuses=0x00 +bt.bootloader.path=bt +bt.bootloader.file=ATmegaBOOT_168.hex +bt.bootloader.unlock_bits=0x3F +bt.bootloader.lock_bits=0x0F + +bt.build.mcu=atmega168 +bt.build.f_cpu=16000000L +bt.build.core=arduino +bt.build.variant=eightanaloginputs + +############################################################## + +LilyPadUSB.name=LilyPad Arduino USB +LilyPadUSB.upload.protocol=avr109 +LilyPadUSB.upload.maximum_size=28672 +LilyPadUSB.upload.speed=57600 +LilyPadUSB.upload.disable_flushing=true +LilyPadUSB.bootloader.low_fuses=0xff +LilyPadUSB.bootloader.high_fuses=0xd8 +LilyPadUSB.bootloader.extended_fuses=0xce +LilyPadUSB.bootloader.path=caterina-LilyPadUSB +LilyPadUSB.bootloader.file=Caterina-LilyPadUSB.hex +LilyPadUSB.bootloader.unlock_bits=0x3F +LilyPadUSB.bootloader.lock_bits=0x2F +LilyPadUSB.build.mcu=atmega32u4 +LilyPadUSB.build.f_cpu=8000000L +LilyPadUSB.build.vid=0x1B4F +LilyPadUSB.build.pid=0x9208 +LilyPadUSB.build.core=arduino +LilyPadUSB.build.variant=leonardo + +############################################################## + +lilypad328.name=LilyPad Arduino w/ ATmega328 + +lilypad328.upload.protocol=arduino +lilypad328.upload.maximum_size=30720 +lilypad328.upload.speed=57600 + +lilypad328.bootloader.low_fuses=0xFF +lilypad328.bootloader.high_fuses=0xDA +lilypad328.bootloader.extended_fuses=0x05 +lilypad328.bootloader.path=atmega +lilypad328.bootloader.file=ATmegaBOOT_168_atmega328_pro_8MHz.hex +lilypad328.bootloader.unlock_bits=0x3F +lilypad328.bootloader.lock_bits=0x0F + +lilypad328.build.mcu=atmega328p +lilypad328.build.f_cpu=8000000L +lilypad328.build.core=arduino +lilypad328.build.variant=standard + +############################################################## + +lilypad.name=LilyPad Arduino w/ ATmega168 + +lilypad.upload.protocol=arduino +lilypad.upload.maximum_size=14336 +lilypad.upload.speed=19200 + +lilypad.bootloader.low_fuses=0xe2 +lilypad.bootloader.high_fuses=0xdd +lilypad.bootloader.extended_fuses=0x00 +lilypad.bootloader.path=lilypad +lilypad.bootloader.file=LilyPadBOOT_168.hex +lilypad.bootloader.unlock_bits=0x3F +lilypad.bootloader.lock_bits=0x0F + +lilypad.build.mcu=atmega168 +lilypad.build.f_cpu=8000000L +lilypad.build.core=arduino +lilypad.build.variant=standard + +############################################################## + +pro5v328.name=Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega328 + +pro5v328.upload.protocol=arduino +pro5v328.upload.maximum_size=30720 +pro5v328.upload.speed=57600 + +pro5v328.bootloader.low_fuses=0xFF +pro5v328.bootloader.high_fuses=0xDA +pro5v328.bootloader.extended_fuses=0x05 +pro5v328.bootloader.path=atmega +pro5v328.bootloader.file=ATmegaBOOT_168_atmega328.hex +pro5v328.bootloader.unlock_bits=0x3F +pro5v328.bootloader.lock_bits=0x0F + +pro5v328.build.mcu=atmega328p +pro5v328.build.f_cpu=16000000L +pro5v328.build.core=arduino +pro5v328.build.variant=standard + +############################################################## + +pro5v.name=Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega168 + +pro5v.upload.protocol=arduino +pro5v.upload.maximum_size=14336 +pro5v.upload.speed=19200 + +pro5v.bootloader.low_fuses=0xff +pro5v.bootloader.high_fuses=0xdd +pro5v.bootloader.extended_fuses=0x00 +pro5v.bootloader.path=atmega +pro5v.bootloader.file=ATmegaBOOT_168_diecimila.hex +pro5v.bootloader.unlock_bits=0x3F +pro5v.bootloader.lock_bits=0x0F + +pro5v.build.mcu=atmega168 +pro5v.build.f_cpu=16000000L +pro5v.build.core=arduino +pro5v.build.variant=standard + +############################################################## + +pro328.name=Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega328 + +pro328.upload.protocol=arduino +pro328.upload.maximum_size=30720 +pro328.upload.speed=57600 + +pro328.bootloader.low_fuses=0xFF +pro328.bootloader.high_fuses=0xDA +pro328.bootloader.extended_fuses=0x05 +pro328.bootloader.path=atmega +pro328.bootloader.file=ATmegaBOOT_168_atmega328_pro_8MHz.hex +pro328.bootloader.unlock_bits=0x3F +pro328.bootloader.lock_bits=0x0F + +pro328.build.mcu=atmega328p +pro328.build.f_cpu=8000000L +pro328.build.core=arduino +pro328.build.variant=standard + +############################################################## + +pro.name=Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega168 + +pro.upload.protocol=arduino +pro.upload.maximum_size=14336 +pro.upload.speed=19200 + +pro.bootloader.low_fuses=0xc6 +pro.bootloader.high_fuses=0xdd +pro.bootloader.extended_fuses=0x00 +pro.bootloader.path=atmega +pro.bootloader.file=ATmegaBOOT_168_pro_8MHz.hex +pro.bootloader.unlock_bits=0x3F +pro.bootloader.lock_bits=0x0F + +pro.build.mcu=atmega168 +pro.build.f_cpu=8000000L +pro.build.core=arduino +pro.build.variant=standard + +############################################################## + +atmega168.name=Arduino NG or older w/ ATmega168 + +atmega168.upload.protocol=arduino +atmega168.upload.maximum_size=14336 +atmega168.upload.speed=19200 + +atmega168.bootloader.low_fuses=0xff +atmega168.bootloader.high_fuses=0xdd +atmega168.bootloader.extended_fuses=0x00 +atmega168.bootloader.path=atmega +atmega168.bootloader.file=ATmegaBOOT_168_ng.hex +atmega168.bootloader.unlock_bits=0x3F +atmega168.bootloader.lock_bits=0x0F + +atmega168.build.mcu=atmega168 +atmega168.build.f_cpu=16000000L +atmega168.build.core=arduino +atmega168.build.variant=standard + +############################################################## + +atmega8.name=Arduino NG or older w/ ATmega8 + +atmega8.upload.protocol=arduino +atmega8.upload.maximum_size=7168 +atmega8.upload.speed=19200 + +atmega8.bootloader.low_fuses=0xdf +atmega8.bootloader.high_fuses=0xca +atmega8.bootloader.path=atmega8 +atmega8.bootloader.file=ATmegaBOOT-prod-firmware-2009-11-07.hex +atmega8.bootloader.unlock_bits=0x3F +atmega8.bootloader.lock_bits=0x0F + +atmega8.build.mcu=atmega8 +atmega8.build.f_cpu=16000000L +atmega8.build.core=arduino +atmega8.build.variant=standard + +############################################################## + +robotControl.name=Arduino Robot Control +robotControl.upload.protocol=avr109 +robotControl.upload.maximum_size=28672 +robotControl.upload.speed=57600 +robotControl.upload.disable_flushing=true +robotControl.bootloader.low_fuses=0xff +robotControl.bootloader.high_fuses=0xd8 +robotControl.bootloader.extended_fuses=0xcb +robotControl.bootloader.path=caterina-Arduino_Robot +robotControl.bootloader.file=Caterina-Robot-Control.hex +robotControl.bootloader.unlock_bits=0x3F +robotControl.bootloader.lock_bits=0x2F +robotControl.build.mcu=atmega32u4 +robotControl.build.f_cpu=16000000L +robotControl.build.vid=0x2341 +robotControl.build.pid=0x8038 +robotControl.build.core=robot +robotControl.build.variant=robot_control + +############################################################## + +robotMotor.name=Arduino Robot Motor +robotMotor.upload.protocol=avr109 +robotMotor.upload.maximum_size=28672 +robotMotor.upload.speed=57600 +robotMotor.upload.disable_flushing=true +robotMotor.bootloader.low_fuses=0xff +robotMotor.bootloader.high_fuses=0xd8 +robotMotor.bootloader.extended_fuses=0xcb +robotMotor.bootloader.path=caterina-Arduino_Robot +robotMotor.bootloader.file=Caterina-Robot-Motor.hex +robotMotor.bootloader.unlock_bits=0x3F +robotMotor.bootloader.lock_bits=0x2F +robotMotor.build.mcu=atmega32u4 +robotMotor.build.f_cpu=16000000L +robotMotor.build.vid=0x2341 +robotMotor.build.pid=0x8039 +robotMotor.build.core=robot +robotMotor.build.variant=robot_motor + diff --git a/buildexe.py b/buildexe.py new file mode 100644 index 0000000..449d90b --- /dev/null +++ b/buildexe.py @@ -0,0 +1,22 @@ +#-*- coding: utf-8 -*- + +from distutils.core import setup +import py2exe + +includes = ["sip", "PyQt4.QtGui", "PyQt4.QtCore"] + +dll_excludes = ["msvcm90.dll", "msvcp90.dll", "msvcr90.dll"] + +setup( version="0.1", + description = "Arduino Hex Uploader", + name = "arduloader.exe", + author = "Apache", + zipfile = None, + windows = [{"script":"main.py", "icon_resources":[(1, "./pic/main/logo.ico")]}], + options = { "py2exe": + { "compressed": 2, + "bundle_files": 1, + "includes": includes, + "dll_excludes":dll_excludes + } + }) diff --git a/config.ini b/config.ini new file mode 100644 index 0000000..f221d00 --- /dev/null +++ b/config.ini @@ -0,0 +1,5 @@ +[upload] +hex = D:/CodeProj/github/Arduloader/tests/UNO_Blink.hex +port = COM5 +board = Arduino Mini w/ ATmega328 + diff --git a/const.py b/const.py new file mode 100644 index 0000000..cc2e320 --- /dev/null +++ b/const.py @@ -0,0 +1,38 @@ +#-*- coding: utf-8 -*- +import platform + +version = "1.0Beta" +config = "config.ini" +width = 465 +height = 142 +windowtitle = "Arduloader" +aboutinfo = """ + __ ___ ___ _ _ ___ __ ___ ____ ___ + / /\ | |_) | | \ | | | | | / / \ / /\ | | \ | |_ | |_) +/_/--\ |_| \ |_|_/ \_\_/ |_|__ \_\_/ /_/--\ |_|_/ |_|__ |_| \ + +Arduloader is tool for uploading hex file to your Arduino board +Author uname.github.com +Email hqwemail@163.com +Version %s +""" % version +if platform.system() == "Windows": + avrdude = r'.\avrtool\avrdude.exe' + avrconf = r'.\avrtool\avrdude.conf' +else: + avrdude = "./avrtool/avrdude" + avrconf = './avrtool/avrdude.conf' + +arduloader_log = "arduloader.log" +finish_sig = "finish" +process_interval = 100 #ms + +minport = 2 +maxport = 40 + +boards_txt = "boards.txt" +boards_name_matcher = r".name\s*=" +boards_upload_protocol_matcher = r".upload.protocol\s*=" +boards_upload_maximum_size_matcher = r".upload.maximum_size\s*=" +boards_upload_speed_matcher = r".upload.speed\s*=" +boards_mcu_matcher = r".build.mcu\s*=" \ No newline at end of file diff --git a/icons.py b/icons.py new file mode 100644 index 0000000..2f4206c --- /dev/null +++ b/icons.py @@ -0,0 +1,13858 @@ +# -*- coding: utf-8 -*- + +# Resource object code +# +# Created: 鍛ㄤ簩 涓冩湀 14 19:27:18 2015 +# by: The Resource Compiler for PyQt (Qt v4.8.3) +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore + +qt_resource_data = b"\ +\x00\x00\x81\xaa\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x01\xc8\x00\x00\x00\xaf\x08\x02\x00\x00\x00\xf6\x45\xd9\xeb\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\ +\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\x00\x20\x00\x49\x44\x41\x54\x78\ +\x9c\xec\x7d\x79\x7c\x13\xd7\xb9\xf6\x99\x19\xcd\x68\x24\x59\xd6\ +\x62\xcb\xf2\x8a\x31\x06\x63\x76\x6c\xb3\x2f\x61\x0d\x01\x0a\x09\ +\x01\x12\xd2\x24\xb7\x6d\x12\x92\xe6\x26\xbd\x34\xb7\x4b\xda\xe6\ +\xf7\xdd\xdb\xa4\xbd\xf7\x26\x6d\x6f\xd2\xb4\x0d\xb9\xd9\x68\x1a\ +\xd2\x2c\x10\x1a\xc8\x42\x16\xd6\xb0\x85\x1d\x63\x30\xc6\x80\x6d\ +\xbc\xdb\xb2\x6c\xed\xd2\x8c\x66\xfd\xfe\x38\x66\x18\x4b\xa3\xb1\ +\x6c\xcb\xc6\x50\x3f\x7f\xf0\x93\x66\x3d\x58\xd2\x33\xef\x79\xcf\ +\xf3\x3e\x2f\x22\x8a\x22\x18\xc2\x3f\x07\x58\x41\x2c\x75\xb3\xe7\ +\xdd\x0c\x23\xdc\xb0\x0f\x3d\x8d\xc4\x26\x59\x88\x11\x49\x1a\x14\ +\x49\xfc\xc5\x9b\x29\x7e\x47\x23\x1d\xbd\x7d\x69\x86\x76\x44\x92\ +\x26\x81\x37\xa2\x28\xea\xd9\x67\x9f\x75\x38\x1c\x09\xb9\x5a\x5a\ +\x5a\xda\xf3\xcf\x3f\x8f\x61\xd8\xce\x9d\x3b\x3f\xfa\xe8\xa3\x38\ +\xcf\x5a\xbb\x76\xed\x8a\x15\x2b\x7a\x74\xa3\x30\x2f\xfe\xed\x6a\ +\x88\x8f\xfa\xf0\x69\x47\xc3\xb9\xb7\x5e\x90\x6f\x59\xb8\x70\x61\ +\x49\x49\x49\x7d\x7d\xfd\xc7\x1f\x7f\xcc\xb2\x6c\x8f\xee\x02\x00\ +\x78\xec\xb1\xc7\x66\xcd\x9a\xd5\xa3\x53\x9c\x4e\xe7\xcf\x7f\xfe\ +\x73\xe9\xed\x86\x0d\x1b\x8a\x8b\x8b\x63\x1d\xbc\x6b\xd7\xae\xf7\ +\xdf\x7f\x1f\xbe\xd6\xe9\x74\xff\xf7\x7f\xff\x07\x00\x38\x7f\xfe\ +\xfc\x8b\x2f\xbe\xa8\x78\xbc\xd5\x6a\x1d\x39\x72\x64\x41\x41\xc1\ +\x98\x31\x63\xb2\xb2\xb2\xba\x1d\xcc\x8e\x1d\x3b\x76\xec\xd8\x21\ +\x9d\xfb\xd2\x4b\x2f\xc5\xf9\xbf\xd8\xd5\x12\xae\x0a\x70\x00\x80\ +\x44\x7e\xdb\x86\x30\x98\x71\xd9\xc7\x7d\xeb\xa4\xa9\xe8\x5f\x55\ +\x77\xd0\x61\x08\x89\x21\x3a\x0c\x01\x00\xe0\x18\xca\xf2\x02\x27\ +\x02\x56\x10\x69\x5e\xec\xc5\xd5\xda\x68\x7e\x77\x0b\xa5\xd7\xa0\ +\xab\x72\x74\x26\x1c\xed\xe9\xe9\xea\xb0\x69\x95\x2f\xd8\x1e\x16\ +\x46\x24\x25\xf2\x46\x6f\xbf\xfd\x76\xa2\x58\x15\x00\xb0\x6e\xdd\ +\x3a\x0c\xc3\x00\x00\x5e\xaf\x57\xa7\xd3\x51\x14\x15\xcf\x59\xdb\ +\xb6\x6d\x6b\x6b\x6b\x7b\xf8\xe1\x87\xe3\xbf\x91\x16\x43\xf2\x0c\ +\x1a\xf8\xcb\x97\x03\xd5\xea\x22\xb6\xec\xdb\xb7\x6f\xdf\xbe\x7d\ +\xf1\x5f\x39\x02\x82\x20\xf4\xfa\xdc\x5e\x63\xc2\x84\x09\x73\xe6\ +\xcc\x39\x7c\xf8\x70\xf4\x2e\x97\xcb\x75\xe2\xc4\x89\x13\x27\x4e\ +\x00\x00\x92\x4d\xa6\xc2\xd1\xa3\x27\x4c\x98\x30\x79\xf2\x64\xa3\ +\xd1\x98\xc0\x01\x78\x59\x41\xfa\xdb\x0e\x11\xeb\xad\x0f\x2f\x2b\ +\x1c\x68\x0b\x37\x05\x23\x7f\x4e\x8a\x40\x11\x24\x55\x8b\xa6\xeb\ +\x34\x76\x12\x35\x13\xa8\x99\x40\x35\xb1\x43\x4b\x4e\x04\x1e\x46\ +\xf0\x30\x42\x47\x98\x77\x84\x05\x27\xc5\xc7\x19\x0b\x9b\x71\x24\ +\xe1\xac\x0a\x00\xc0\x51\xc4\xa4\x41\xbc\x5c\xe4\x18\xda\xc3\x89\ +\xfc\x9d\x1f\x3e\x7c\x18\xfe\x44\x13\x82\xc2\xc2\xc2\x92\x92\x12\ +\xf8\xfa\xfe\xfb\xef\xbf\xff\xfe\xfb\xa5\x5d\x0c\xc3\x48\xd1\x22\ +\x4d\xd3\x90\xad\x04\x41\x08\x87\xc3\x70\x23\xcf\xf3\x3d\xbe\x9d\ +\x49\x81\x58\x6f\x6a\x30\xb2\x80\xfa\xa1\x87\x1e\x4a\x32\x1a\x77\ +\x7d\xfd\xb5\x0a\xb3\xfb\xbc\x5e\x48\xb2\x28\x8a\x4e\x9f\x3e\x7d\ +\xed\xda\xb5\x29\x29\x29\x09\x19\x49\xa9\xeb\xfa\x48\x86\x88\xf5\ +\x16\x47\x85\x97\x3b\xea\xa4\xbb\xe5\x3b\x0d\x82\x0c\x4f\xd2\xe4\ +\x1b\x35\x39\x7a\x0c\x8f\x7b\x96\xae\x41\x40\xaa\x16\x4d\xd5\xa2\ +\x23\x8d\x1a\x00\x80\x08\x40\x47\x58\xa8\x0f\xf2\x8d\x14\xa7\xc2\ +\xe3\x28\x82\xcc\xb5\x93\xf1\xff\x17\x7a\x04\x1b\x89\x79\xa3\x88\ +\xc3\x49\xf7\x98\x80\x62\xc1\xe3\xf1\x48\x93\xd0\xbe\x83\x20\x88\ +\x47\x1e\x79\x44\x65\x2f\x41\x10\xf0\xb5\xc1\x60\x48\xc8\x1d\x73\ +\xf4\x58\x92\x06\x09\x44\x3d\x7b\x6e\x5e\xf0\xdc\xf5\x8f\x1b\xc3\ +\xb0\xfb\xd6\xad\xbb\x6d\xee\xdc\x83\x87\x0e\x55\x5d\xb9\x52\x57\ +\x57\xa7\x92\xc7\x10\x04\xe1\xe8\xd1\xa3\x65\x65\x65\xff\xf6\x6f\ +\xff\x36\x66\xcc\x98\x3e\x0e\x83\xe2\xc5\x4b\xfe\xeb\x23\x19\x22\ +\xd6\x5b\x16\xac\x20\x7e\xe3\x08\x57\xf9\xbb\x49\x90\xa5\x90\xd8\ +\x78\x13\x31\xca\xd8\x03\x3e\x8d\x05\x04\x74\xf2\x6c\x31\xc0\x29\ +\x5e\xbc\x1a\xe0\xaf\xf8\x98\x66\x2a\x92\xd4\x26\x5b\x70\x2b\x91\ +\xf8\x70\x15\x22\x55\x8b\x56\x05\x22\x37\x06\x79\x10\xe4\x44\x83\ +\x4a\xec\x1d\x37\x3e\xfc\xf0\xc3\x50\x28\xd4\xf7\xeb\x40\xac\x5b\ +\xb7\xce\x66\xb3\xc1\xd7\xc1\x60\xf0\xb3\xcf\x3f\xc7\x35\x1a\x0c\ +\xc3\x34\x1a\x0d\x41\x10\x08\x82\xe8\x74\x3a\x00\x80\x4e\xa7\x43\ +\x10\x04\xc7\x71\x1c\xc7\x51\x14\x25\x49\x12\x00\x90\x92\x92\xd2\ +\x0b\xb6\x45\x00\x18\x65\xd4\x94\xba\x7b\x9c\x36\x1d\x54\x80\x7f\ +\x96\x58\xc8\xcc\xcc\xbc\x6f\xdd\x3a\x00\x00\xcf\xf3\xcd\xcd\xcd\ +\x35\x35\x35\xd5\xd5\xd5\x95\x95\x95\x6d\x6d\x6d\xd1\x07\x87\x42\ +\xa1\x3f\xff\xf9\xcf\xbf\xf9\xcd\x6f\xa4\x0f\xa2\x77\x38\xeb\x66\ +\xe5\x89\xb1\x21\x62\xbd\x35\xe1\x65\x85\x2f\x9b\x28\x37\xa3\x36\ +\x05\x4e\xd7\x61\x25\x29\xda\x61\x7a\xac\x3f\x06\xa0\xc3\x90\xb1\ +\x26\xcd\x58\x93\xc6\xc5\x08\x17\xbd\x5c\xa5\xb7\x73\xc5\x2c\x19\ +\xc7\x4a\x52\xb4\xfd\x71\x47\x88\x54\x52\x99\xb2\x9d\x61\xc1\xa0\ +\xe9\xeb\xff\xb4\xba\xba\xfa\xd8\xb1\x63\x7d\xbc\x88\x84\xe2\xe2\ +\xe2\x85\x0b\x17\x4a\x6f\x43\xa1\xd0\x57\x5f\x7e\x19\xff\xe9\x3f\ +\xfd\xe9\x4f\x27\x4c\x98\xd0\x8b\xfb\x8e\x4e\x8e\x24\x56\x3c\xc9\ +\x34\x71\xfd\x2f\x63\x1d\xbf\x3a\x9b\xa4\x69\x5a\x14\xc5\xfa\xfa\ +\xfa\x0f\x3e\xf8\xa0\x17\x77\x4c\x38\x10\x24\xae\x67\x24\x86\x61\ +\x39\x39\x39\x39\x39\x39\xf3\xe6\xcd\x03\x00\xb8\x5c\xae\xca\xca\ +\xca\xca\xca\xca\xb3\x65\x65\x3e\xaf\x57\x3a\x8c\xa2\xa8\x7f\xfc\ +\xe3\x1f\x8f\x3f\xfe\x78\xaf\xc7\xc3\x0a\x62\xb9\xb7\xcb\x3c\x69\ +\x88\x58\x6f\x41\x34\x53\xfc\x97\x4d\x94\xca\xf4\x3f\x19\xc7\x66\ +\xda\x88\xc4\x2e\x94\xc7\x82\x95\x40\x67\xdb\x88\x29\x56\xbc\xcc\ +\xc3\x9e\x77\x33\x73\xd3\x88\x44\x04\x8e\x31\x61\x8f\xb1\x7e\xe5\ +\x0a\x0b\xc3\x0d\x7d\x25\x56\x69\xa5\xb8\xef\x48\x4f\x4f\x7f\xf4\ +\xd1\x47\xe5\x04\x61\xb3\xd9\x32\x33\x33\x9b\x9b\x9b\xe3\x39\xdd\ +\x60\x30\x8c\x1d\x3b\x16\xbe\xfe\xe8\xa3\x8f\xee\xb9\xe7\x9e\xf8\ +\x6f\x6d\x25\xd0\x34\x12\x6d\xa3\xaf\x3f\x74\x11\x0d\x4e\xda\x73\ +\x14\x0f\x9e\x9f\xa6\x1d\x6e\xd2\x48\x37\x8d\xf3\x16\xea\x11\x65\ +\x7f\x80\xa6\x69\xbf\xdf\x0f\x5f\xe3\x38\x6e\x36\x9b\xa3\x8f\xb1\ +\x5a\xad\xb3\x66\xcd\x9a\x35\x6b\x16\xcf\xf3\x67\xcf\x9e\x7d\x67\ +\xf3\x66\x89\x5e\xcf\x9c\x39\xc3\xf3\x3c\x5c\x42\xec\x05\x2a\x7c\ +\x1c\xdb\xf5\xe7\x36\x44\xac\xb7\x1a\xaa\xfc\xdc\xde\x56\x5a\x88\ +\xa1\xa2\x43\x11\xa4\xc8\x4a\x4c\xb1\x12\xfd\xa1\x76\x52\x81\x16\ +\x43\xa6\xa5\x10\x45\x16\xbc\xef\x09\x87\x6e\x6f\xa4\xb8\x7e\xd5\ +\x4a\xf3\x00\xe0\x7d\xb9\x72\x7d\x7d\xfd\xf9\xf3\xe7\xfb\x72\x05\ +\x09\x06\x83\x61\xc3\x86\x0d\x12\xfb\x78\x3c\x1e\x48\x04\x45\x45\ +\x45\x71\x12\xeb\xec\xd9\xb3\x21\x0b\xd4\xd7\xd7\x9f\x3e\x7d\xba\ +\x47\xc4\xea\x74\x3a\x41\xb3\xc3\xd5\xe8\x60\xa8\x10\x17\xea\x24\ +\x23\x8d\xde\x08\x00\x20\x74\x7a\x00\x00\x6e\x30\x02\x00\xf0\xa4\ +\x64\x00\x40\x92\x56\xef\x64\x74\x2c\xcb\x52\x14\x55\x5b\x5b\x1b\ +\xe7\x2d\xe2\x8c\x28\x13\x88\xad\x5b\xb7\x4a\x32\x06\x9d\x4e\xf7\ +\xea\xab\xaf\xaa\x8c\x01\xc3\x30\xb8\x60\xf8\x97\xbf\xfc\x05\x6e\ +\x61\x18\xc6\xe1\x70\x64\x66\x66\xf6\xe2\xd6\x82\x08\xca\xa2\x52\ +\x2b\x43\xc4\x7a\x4b\xa1\xc2\xcb\x1d\x70\xc4\x14\xeb\x58\x08\x74\ +\x71\x86\x2e\x35\x46\x4c\xa7\x08\x86\x61\x9c\x4e\xa7\xcb\xe5\x0a\ +\x04\x02\x34\x4d\xc3\xa5\x00\x83\xc1\x90\x94\x94\x64\x32\x99\xcc\ +\x66\xb3\x62\x68\x10\x0b\xfd\xcd\xaa\x10\x8a\xeb\x57\x7d\x17\x06\ +\x7c\xf3\xcd\x37\x7d\xbc\x02\x04\x41\x10\x4f\x3d\xf5\x14\xfc\x0d\ +\xf3\x3c\xbf\x65\xcb\x96\x3d\x7b\xf6\xbc\xf4\xd2\x4b\x66\xb3\xb9\ +\xb8\xb8\x78\xe7\xce\x9d\xdd\x5e\x01\xc3\xb0\x3b\xee\xb8\x03\xbe\ +\xde\xba\x75\x2b\x8e\xc7\xf5\xc0\xf0\xfb\xfd\x3b\xbf\xf8\xe2\xc4\ +\xf1\xe3\x2e\x97\x2b\xfe\xd1\x9e\x8b\xff\xd0\x28\xec\xdb\xbf\x5f\ +\x0a\x09\x75\x3a\x1d\x49\x92\xd9\xd9\xd9\xc3\x87\x0f\xef\x75\x60\ +\xa8\x82\xe4\xe4\x64\xe9\x35\x45\x51\xe7\xce\x9d\x9b\x34\x69\x92\ +\xfa\x29\x89\xd2\x84\x55\xfa\xb8\xe8\xc5\xc0\x21\x62\xbd\x75\x50\ +\xee\x61\x0f\xb5\x29\xc8\xe3\x21\xc6\x98\x88\xd9\x36\x22\x1e\x6a\ +\xeb\xe8\xe8\x28\x2f\x2f\xaf\xac\xac\xac\xa9\xa9\x69\x73\x3a\xd5\ +\x4b\x48\xf4\x3a\x1d\x4c\x63\x8d\x1a\x35\x6a\xf4\xe8\xd1\x3d\xe2\ +\xd9\x7e\x82\xe2\xfa\x55\x80\x13\x29\x5e\x84\x6a\xdc\x5e\x80\xe7\ +\xf9\xe3\xc7\x8f\xf7\x75\x64\x00\x60\x18\xf6\xe4\x93\x4f\x8e\x1a\ +\x35\x0a\x00\x40\xd3\xf4\x6b\xaf\xbd\x76\xf6\xec\x59\x00\xc0\xa9\ +\x53\xa7\x16\x2f\x5e\x3c\x62\xc4\x88\x64\x93\x49\x9e\xfe\x53\xc4\ +\xcc\x99\x33\xa1\x42\xa8\xb2\xb2\xb2\xbc\xbc\xbc\xa0\xa0\xa0\xdb\ +\xfb\x5e\xbc\x78\xf1\xd5\x57\x5f\x95\x26\xcb\x03\x83\x2f\xbf\xf8\ +\xc2\xe9\x74\x46\x6c\x34\x18\x0c\xcb\x96\x2d\x5b\xb6\x6c\x59\x02\ +\xe9\x95\xe7\xf9\xbc\xbc\x3c\xf9\x96\xd7\x5e\x7b\xed\xb1\xc7\x1e\ +\x2b\x2a\x2a\x8a\x75\x0a\x4d\xd3\xdb\xb7\x6f\x97\xde\xe2\x38\x9e\ +\x9a\x9a\xda\xbb\xbb\x97\x79\x14\x56\x02\x87\x88\xf5\x16\x41\x85\ +\x97\x53\x61\xd5\xb9\x69\xe4\x78\x73\x37\x71\x8d\xdf\xef\xff\xf6\ +\xdb\x6f\xbf\xfd\xf6\xdb\xba\xfa\xfa\xf8\xef\x1b\xa2\xa8\x4b\x97\ +\x2f\x5f\xba\x7c\x79\xcf\xde\xbd\x00\x80\xcc\x8c\x8c\x29\x53\xa6\ +\x4c\x99\x32\x65\xd8\xb0\x61\xf1\x5f\xa4\x47\x10\x44\xe0\x61\x05\ +\x2d\x8a\xc4\x5a\xe5\x57\x59\xbf\xea\xf5\x4a\xdd\x95\x2b\x57\x82\ +\xc1\x60\xef\xce\x95\x80\x69\x34\x3f\x7a\xf2\x49\x18\x49\x75\x74\ +\x74\xbc\xfc\xf2\xcb\x0d\x0d\x0d\x70\x17\x24\x56\x04\x41\x26\x4f\ +\x9a\x74\xf0\xe0\x41\x95\x8b\xa0\x28\xba\x72\xe5\x4a\xf8\x7a\xeb\ +\xd6\xad\x00\x00\x4d\x77\x11\x6b\x75\x75\xf5\x1f\xff\xf8\x47\x86\ +\x61\xfa\x38\xfe\x9e\x02\xaa\x17\x22\x10\x0c\x06\xb7\x6d\xdb\xd6\ +\xda\xda\xba\x7e\xfd\xfa\x44\xdd\x88\xa6\xe9\xf1\xe3\xc7\x5b\xad\ +\x56\x29\x18\xa7\x28\xea\x4f\x7f\xfa\x53\x41\x41\xc1\xf8\xf1\xe3\ +\x73\x73\x73\x6d\x36\x9b\x5e\xaf\xc7\x71\x9c\x65\xd9\x40\x20\x50\ +\x5d\x5d\xfd\xe5\x97\x5f\xb6\xb6\xb6\x4a\x57\x28\x29\x29\x91\x94\ +\x6d\x3d\x42\x6d\x90\x57\x5c\x22\x1e\x22\xd6\x5b\x01\xf5\xc1\x98\ +\x19\x00\x02\x45\x6e\xcf\x20\x87\x19\xd4\x3e\x68\x87\xc3\xb1\x73\ +\xe7\xce\x63\xc7\x8e\x31\x3d\x2f\x5e\x8c\x40\x73\x4b\xcb\xa7\x9f\ +\x7d\xf6\xe9\x67\x9f\x65\x66\x67\xcf\x9b\x33\x67\xce\x9c\x39\x89\ +\x12\x60\x42\x54\x78\xb9\x63\x1d\x0c\xcd\x8b\x00\x00\x12\x43\x52\ +\xb5\x48\x3a\x89\xd9\x48\x2c\x4d\x8b\x4a\x3c\x1b\xb3\xfe\x8a\xee\ +\x3d\xb1\x5e\xbe\x7c\xb9\x77\x27\x4a\xd0\xe9\x74\x1b\x36\x6c\x80\ +\x7a\xc9\xab\x57\xaf\xfe\xf1\xe5\x97\xe5\x91\xe9\xa5\x4b\x97\x7c\ +\x3e\x5f\x72\x72\x72\x49\x49\x89\x3a\xb1\xce\x9f\x3f\xdf\x6e\xb7\ +\x03\x00\xce\x9c\x39\x53\x53\x53\x03\x00\x20\xb5\x6a\x2a\x0b\x86\ +\x61\x5e\x7b\xed\xb5\x81\x67\x55\x75\x1c\x3e\x7c\x78\xd2\xa4\x49\ +\x53\xa7\x4e\x4d\xd4\x05\x31\x0c\xfb\xfe\xf7\xbf\xff\xc7\x3f\xfe\ +\x51\xbe\xf1\xf2\xe5\xcb\xf1\x7c\x70\x98\x46\x73\xf7\xdd\x77\xf7\ +\xe8\x76\x82\x08\x1a\x29\xbe\x21\xc8\x97\x7b\x95\x7f\x32\x43\xc4\ +\x7a\xd3\xa3\x3d\x2c\x7c\xdd\xac\x1c\xab\x12\x28\xb2\x22\x5b\x6f\ +\x8f\x11\xc1\x01\x00\x7c\x3e\xdf\x8e\x1d\x3b\xbe\x39\x70\x20\xe1\ +\x35\x88\xcd\x8d\x8d\x1f\x7c\xf8\xe1\x3f\x3e\xfe\x78\xfe\xbc\x79\ +\xcb\x97\x2f\x4f\x48\x8a\xa0\xca\xcf\x7d\xd3\x16\x96\xde\xd2\xbc\ +\xd8\x18\x12\x1b\x43\x02\x00\x2c\x00\xc0\x80\x01\x1b\x89\xa5\x93\ +\x98\x55\x8b\x1a\x30\x10\x8c\xaa\x09\xe8\x4b\x9a\x35\xce\x35\xa5\ +\x58\xb0\x5a\xad\x4f\x3d\xf5\x14\x8c\xe2\x4f\x9e\x3c\xf9\xe6\x9b\ +\x6f\x46\x30\x9d\x28\x8a\xa7\x4f\x9f\x5e\xb0\x60\xc1\x98\x31\x63\ +\xb4\x5a\xad\x54\x5b\x15\x01\x83\xc1\xb0\x66\xcd\x1a\x78\xfc\xb6\ +\x6d\xdb\xe0\x46\xad\x2a\xb1\xee\xdd\xbb\x37\x7a\x3e\xde\xdf\x50\ +\x1f\x12\xc4\xd6\xad\x5b\xa7\x4c\x99\x92\xc0\x65\xae\x49\x93\x26\ +\x3d\xf4\xd0\x43\x9b\x37\x6f\xee\x69\x41\xda\x0f\xbe\xff\x7d\xf8\ +\xac\xea\x16\x5e\x56\xa8\x0d\xf2\x4d\x21\xbe\x21\xc4\xab\x97\x73\ +\x0f\x11\xeb\xcd\x8d\x20\x27\x7e\xde\x18\xe2\x94\xd2\xa0\xea\xac\ +\x2a\x8a\xe2\xe1\xc3\x87\x3f\xfc\xf0\xc3\x60\xe2\xe4\xee\xd1\x60\ +\x18\x66\xd7\xee\xdd\x59\x59\x59\x50\x48\xd8\x47\x9c\x55\x4a\x66\ +\x49\x08\xf2\x20\x18\xe4\x6b\xa3\x09\xf5\x1a\xfa\x52\x7f\xe5\xeb\ +\x43\x76\x72\xe4\xc8\x91\x3f\xfa\xd1\x8f\xe0\xa3\xe5\xf3\xcf\x3f\ +\x97\x08\x31\x02\x27\x4f\x9d\x5a\xb0\x60\x01\x41\x10\xe3\xc6\x8d\ +\x3b\x73\xe6\x8c\xe2\x31\xab\x57\xaf\x86\x33\x80\x13\x27\x4e\x48\ +\x5c\xaf\xb2\x78\xc5\x0a\xe2\xee\xdd\xbb\x7b\x3d\xf2\x5e\xc3\x64\ +\x32\x75\x7b\x8c\xd3\xe9\x2c\x2d\x2d\x55\x71\x5a\x51\x41\x2c\x39\ +\xd7\xbc\x79\xf3\xb2\xb3\xb3\x37\x6f\xde\x5c\x57\x57\x17\xcf\x75\ +\x70\x1c\xff\xfe\xf7\xbf\x3f\x67\xce\x1c\x95\x63\x30\x5c\x5b\x1b\ +\xe4\xeb\x83\x5c\x43\x90\x8f\x56\x9b\xc4\xc2\x10\xb1\xde\xc4\x10\ +\x44\xf0\x55\x33\xa5\xe8\x84\xa2\x41\xd4\x58\xd5\xef\xf7\x6f\xda\ +\xb4\xe9\x6c\x59\x59\x3f\x0f\x10\x00\x00\x86\xe5\xe4\xdc\x76\xdb\ +\x6d\x09\xb9\x94\x8f\xed\x53\x21\xa6\x97\x13\x4f\x74\x30\xd9\x7a\ +\xcc\xa6\x45\x7b\xaa\x4f\xc0\xd0\x5e\x96\x8a\x2d\x5d\xb6\xec\x9e\ +\xb5\x6b\x31\x0c\xe3\x79\xfe\xed\xb7\xdf\x56\xb4\x08\x81\xb8\x54\ +\x59\x19\x0c\x06\x0d\x06\x43\x71\x71\xb1\x22\xb1\x8e\x1c\x39\x52\ +\x2a\x28\x80\x49\x00\x88\xe8\x54\x26\xc5\x8b\x0d\x41\xbe\x26\xc8\ +\x55\x54\xd7\xf6\x48\x03\x90\x10\x20\x08\x02\x17\x82\xba\xcd\x3f\ +\x1c\x3b\x76\x2c\x16\xb1\xaa\x47\x9d\x2a\x71\x6e\x7e\x7e\xfe\x73\ +\xcf\x3d\x57\x59\x59\x79\xe2\xc4\x89\x2b\x57\xae\x34\x37\x37\x2b\ +\x5e\x2a\xd9\x64\x9a\x36\x75\xea\x1d\x77\xdc\xa1\x58\x70\x45\x87\ +\xc3\x7a\x5b\x86\x79\xd4\x04\xd3\xb0\x91\x49\x79\x85\x5f\xc4\x98\ +\x11\xaa\x60\x88\x58\x6f\x62\x1c\x6a\xa3\xdb\x62\x44\x61\xb7\x67\ +\xea\x62\xb1\x6a\x6d\x6d\xed\x9f\xff\xfc\x67\x97\xdb\x1d\xcf\x2d\ +\x0c\x7a\xfd\x88\x11\x23\xb2\xb2\xb3\x6d\xa9\xa9\x66\xb3\x59\xaf\ +\xd7\x23\x08\xc2\xf3\x7c\x20\x10\xf0\x78\x3c\x0e\x87\xa3\xb1\xb1\ +\xb1\xb6\xae\x4e\xe5\x27\x74\xff\xfd\xf7\x27\x6a\xba\x97\x8c\x23\ +\x74\xcf\xfd\xb4\xe4\x38\xe5\x62\x4f\xb9\x58\x00\x80\x85\x40\x53\ +\x09\x24\x4d\x87\xd9\xb4\x68\x3c\x3c\x6b\xb7\xdb\x7b\x2a\x62\xb5\ +\x5a\xad\x8f\x3e\xfa\x28\x4c\xaa\x06\x83\xc1\x3f\xfd\xe9\x4f\xea\ +\xf9\x3e\x9e\xe7\xcf\x9c\x39\x33\x77\xee\xdc\xa2\xa2\x22\x04\x41\ +\x22\xc4\x18\x98\x46\xf3\xf0\xc3\x0f\x4b\x7f\x49\xb9\xba\x48\x8a\ +\x58\x5d\x8c\x50\x1b\xe0\x6b\x83\x5c\xeb\x35\xf1\x7f\x7b\x85\x72\ +\xe4\xdb\xaf\xb0\xdb\xed\x90\xeb\x3d\x1e\x8f\xfa\x91\xe7\xcf\x9f\ +\x17\x45\x51\xf1\xeb\x71\xf1\xe2\x45\x95\x0c\x6c\xb7\x4e\x86\x85\ +\x85\x85\x85\x85\x85\x00\x00\x9e\xe7\x1d\x0e\x87\xd7\xeb\xa5\x28\ +\x8a\x65\x59\x1c\xc7\x0d\x06\x83\xcd\x66\xb3\x5a\xad\xd1\x67\x85\ +\x79\xb1\x89\xe2\xcb\x3a\x68\x47\xc1\x6d\xe3\x8b\x7b\x66\xc9\x18\ +\x81\x21\x62\xbd\x59\x51\x13\xe0\x2a\x62\x24\xce\xe7\xd9\x75\xb1\ +\xaa\x8c\x4e\x9f\x3e\xfd\xfa\x1b\x6f\x74\x1b\x4a\xa4\xdb\xed\xd3\ +\xa6\x4d\x9b\x32\x65\x4a\x4e\x4e\x4e\xb7\xb4\xc8\xf3\x7c\x6d\x6d\ +\x6d\x59\x59\x59\x69\x69\x69\x43\x63\xa3\x7c\x57\x71\x51\x11\xfc\ +\x7e\x27\x04\x13\x4d\xf8\x1e\x5a\x39\xf9\xd8\x53\xb8\x19\xc1\xcd\ +\x80\x2b\x01\x1e\x00\x80\x00\x60\x26\xd0\x34\x12\xb5\x6b\x51\x1b\ +\x89\xa5\x68\x15\x0c\xbd\x26\x4c\x98\xb0\x67\xcf\x9e\x38\x2f\x8e\ +\x61\xd8\xd2\xa5\x4b\xef\xba\xeb\x2e\xb8\xd0\xec\x70\x38\x5e\x7a\ +\xe9\xa5\x78\x6c\x06\x4f\x9c\x38\x31\x77\xee\x5c\x83\xc1\x50\x50\ +\x50\x70\xe9\xd2\x25\xf9\xae\xb5\x6b\xd6\xc8\xe5\xeb\xf2\xbf\x6a\ +\x18\xc1\x8e\x38\x99\xea\x80\x82\x9a\x32\xe4\x68\x8a\x73\xcc\x09\ +\x04\xd4\xde\x37\x37\x37\xc7\xca\x14\x4b\xa0\x28\xaa\xb1\xb1\x31\ +\x27\x27\x07\x00\x10\xe1\xe0\xb7\x6f\xdf\x3e\x0c\xc3\xd6\xac\x59\ +\xa3\x28\x2d\x68\x6f\x6f\x97\xbf\x55\x51\x6e\x61\x18\x96\x99\x99\ +\xa9\xa2\xfc\x17\x01\x68\xa3\x85\xa6\x10\x5f\x1f\xe2\x5b\x3a\x67\ +\x7f\x08\x2c\x8e\xe8\x35\x0c\xd8\x10\xb1\xde\x9c\xa0\x78\xf1\xa0\ +\x43\x79\x7a\x32\xd6\x84\x8f\x35\x29\x7f\xac\x47\x8e\x1c\x79\x6b\ +\xd3\x26\x75\x5d\xea\xe4\x49\x93\x96\x2e\x5d\x3a\x7a\xf4\xe8\xf8\ +\xc3\x4c\x0c\xc3\xf2\xf3\xf3\xf3\xf3\xf3\x57\xaf\x5e\xdd\xd0\xd0\ +\x70\xe8\xd0\xa1\xc3\x47\x8e\x84\x42\x21\x5c\xa3\xf9\xee\x77\xbf\ +\x1b\xe7\x45\xe2\x41\x41\xb2\xa6\x2a\xc0\xa9\x64\x51\x7b\x07\xb1\ +\x93\x67\x05\xc8\x64\x08\x00\x29\x5a\x24\x4d\x8b\xa5\x91\x58\x1a\ +\x89\x5a\x09\x14\x45\xc0\xc4\x89\x13\x47\x8e\x1c\x59\x55\x55\xa5\ +\x7e\x29\x14\x45\x67\xcd\x9a\x75\xd7\x5d\x77\x49\x13\x4c\x8f\xc7\ +\xf3\xdc\x73\xcf\xc5\xe9\xdb\x52\x71\xf1\x22\x45\x51\x3a\x9d\xae\ +\xa8\xa8\x48\x4e\xac\x85\x85\x85\x4b\x97\x2e\x85\x57\x0b\x87\xc3\ +\x76\xbb\x7d\xf8\xf0\xe1\xd2\x1a\xd7\x65\x1a\xf7\xc5\xc8\x3e\x87\ +\x9c\x2d\xf1\xdc\x37\x81\xd0\xe9\x74\xb7\xdf\x7e\x3b\x00\xe0\xe8\ +\xd1\xa3\xf1\x1c\x5f\x5b\x5b\x0b\x89\x95\x24\xc9\x09\x13\x26\xc8\ +\xa7\x05\xbb\x77\xef\x3e\x7d\xfa\xf4\xda\xb5\x6b\x67\xce\x9c\x29\ +\xff\x36\x52\x14\x25\x17\x4e\x18\x0c\x06\x45\xf2\x55\x07\xcc\x96\ +\x34\x50\x7c\x5d\x90\xef\xe3\x34\x08\x02\x43\x80\x9d\xc4\x86\xe9\ +\xb1\x61\x06\x2c\x55\x8b\x0e\x11\xeb\x4d\x89\xc3\x6d\x61\xc5\xd4\ +\x6a\x1a\x89\xcd\x4d\x53\xfe\x92\xed\xdb\xbf\x7f\xf3\xe6\xcd\x2a\ +\xd7\x1c\x35\x72\xe4\x7d\xf7\xdd\x97\x9f\x9f\xdf\x97\x81\xe5\xe4\ +\xe4\xdc\x7f\xff\xfd\x6b\xd6\xac\x39\x70\xe0\x00\xcf\xf3\x7d\x74\ +\x0c\x8a\xc6\x02\xbb\xf6\x83\x3a\x2a\x21\xbf\x84\x58\x10\x01\x68\ +\x0f\x8b\xed\x61\xae\xc2\xc7\x01\x00\x30\x04\xa4\x68\xd1\x34\x2d\ +\xba\x6c\xfd\x86\x2f\xb7\xbe\x57\x7d\xf6\xa4\xa8\xa4\xa0\x48\x36\ +\x99\x66\xcd\x9a\x75\xfb\xe2\xc5\x11\xe6\x9e\x26\x93\xe9\xa1\x87\ +\x1e\x3a\x78\xf0\x60\x79\x79\x79\xb7\xdd\x3a\x78\x8e\x2b\x2d\x2d\ +\x9d\x35\x6b\x56\x51\x51\xd1\x87\x1f\x7e\x08\x37\x1a\x0c\x86\xc7\ +\x1e\x7b\x0c\x32\xcb\x5b\x6f\xbd\x95\x9d\x93\x73\xdf\xba\x75\x18\ +\x86\x15\x14\x14\x40\x1a\x82\x75\xa8\x8a\x60\xfd\xdd\x4c\xc6\x13\ +\x0b\x0c\xc3\x7e\xf0\x83\x1f\x98\xcd\x66\x8f\xc7\x13\x67\x80\xdf\ +\x24\x93\x5b\x3c\xf2\xc8\x23\xbf\xff\xfd\xef\xe5\x02\x0c\x97\xcb\ +\xf5\xc6\x1b\x6f\x6c\xdf\xbe\xbd\x64\xca\x94\x8c\xf4\x74\x14\x45\ +\x5b\x5b\x5b\x8f\x1e\x3d\x2a\x4f\x1c\x43\x5e\x8e\x07\x82\x08\x5a\ +\x69\xbe\x31\xc4\xd7\x06\xb9\xf6\x70\x62\xbe\x42\x26\x0d\x92\x63\ +\xc0\x86\x19\x34\x59\xba\x2e\x09\xa5\x21\x62\xbd\xf9\x20\x02\xa0\ +\xd7\xa0\x28\x82\x44\x18\x02\x10\x28\xb2\x38\x83\x54\xcc\x16\x9e\ +\x3c\x79\xf2\xdd\x77\xdf\x8d\x75\x41\x83\x5e\xff\x2f\xff\xf2\x2f\ +\xd3\xa7\x4f\x4f\x54\x32\x54\xab\xd5\x2e\x59\xb2\x24\x21\x97\x8a\ +\x80\x0e\x43\x16\xda\xb5\xbd\x58\x4c\xe8\x35\x78\x11\xb4\xd1\x42\ +\x1b\x2d\x00\x80\x59\x97\x7d\x2f\x65\xe9\x83\x61\xaf\x2b\x50\x5f\ +\x15\xea\x70\x68\xdd\xcd\x49\x1a\x24\x2f\x2f\x6f\xec\xd8\xb1\xa3\ +\x46\x8d\x8a\x98\x90\x06\x83\xc1\xda\xda\xda\xc2\xc2\xc2\xa9\x53\ +\xa7\x4e\x9d\x3a\xd5\xe3\xf1\x1c\x3d\x7a\xf4\xd0\xa1\x43\xea\xca\ +\xad\x13\x27\x4e\xcc\x9a\x35\xcb\x6e\xb7\x4b\x86\x2c\x8f\x3d\xf6\ +\x18\x4c\x08\x1e\x3e\x7c\xb8\xbc\xbc\x5c\x9a\x5f\x17\x16\x16\xaa\ +\xa7\x7d\xf9\x30\x25\x8a\x03\xe4\xe4\x8f\x61\xd8\xa4\x49\x93\x56\ +\xaf\x5e\x9d\x9d\x9d\xcd\xf3\xfc\x6b\xaf\xbd\x16\x67\x1f\x84\x16\ +\x67\x87\x08\x00\xfc\xda\x99\xcd\xe6\x5f\xff\xfa\xd7\xef\xbe\xfb\ +\x6e\xc4\x12\x9f\xd3\xe9\x54\xf1\xfd\x9a\x3b\x77\xae\xfa\x2d\x82\ +\x9c\x58\x17\xe4\x1b\x43\x7c\x5d\x88\x67\x13\xd1\x94\x08\x43\x40\ +\x86\x0e\xcd\x35\x68\x86\x1b\x30\x45\xbf\xf6\xda\x20\x3f\x44\xac\ +\x37\x1f\x10\x00\x66\xdb\x88\xf1\x66\xcd\x11\x27\x53\x17\xb8\x3e\ +\x07\x9c\x9b\x46\x2a\x7e\xcc\x97\x2f\x5f\x7e\xe3\x8d\x37\x62\x85\ +\x4b\xe3\xc7\x8d\x5b\xbf\x7e\xfd\x60\x28\x45\x8d\x13\xc3\x0d\xd8\ +\xd8\x64\x0d\x0c\x27\xa3\x31\xc5\x8a\xa7\xeb\xb0\x76\x5a\x68\x0b\ +\xf3\x6d\xb4\x90\x70\x47\x67\x11\x41\x09\x73\xaa\xd5\x9c\x0a\xd7\ +\x3e\x70\x14\x41\xb5\xa8\x9b\x44\xaf\x86\x44\x1b\x29\xc8\xff\xfe\ +\x5b\xb6\x6c\x39\x78\xf0\x60\xb2\xc9\x34\x77\xce\x9c\xf9\xf3\xe7\ +\xdb\x6c\x36\x58\xca\x59\x5d\x5d\x7d\xe4\xc8\x91\x63\xc7\x8e\x29\ +\xe6\x07\xce\x97\x97\xd3\x34\x4d\x92\x64\x49\x49\x49\x73\x73\xf3\ +\xaa\x55\xab\x60\xa5\x96\xc7\xe3\x79\xef\xbd\xf7\x00\x00\xb5\xb5\ +\xb5\xd0\x87\x49\x4a\xb3\x42\xcf\x94\x68\x08\xbd\x2a\xf7\xd0\xe9\ +\x74\x13\x26\x4c\xc8\xce\xce\x36\x18\x0c\x50\xda\xc5\x71\x1c\x00\ +\x00\x3a\x45\x84\xc3\x61\x3a\x1c\x16\xae\xad\xb3\xeb\xf5\x7a\x93\ +\xc9\x94\x96\x96\x96\x9f\x9f\x0f\xe7\xe3\x34\x4d\x6f\xdc\xb8\xb1\ +\xb2\xb2\x32\xce\xdb\x55\xb7\x38\xdf\xae\x09\xa5\x93\xe8\x30\x3d\ +\x96\xa9\xc7\xac\x5a\xed\xfa\xf5\xeb\x27\x4d\x9a\xb4\x79\xf3\xe6\ +\x78\x0a\x70\xc7\x8e\x1b\x37\x63\xc6\x8c\xe8\xed\x50\xc0\xdf\x14\ +\xe2\x63\x55\x46\xf5\x02\x16\x02\x1d\xa6\xc7\x72\x0c\x58\xb6\x0e\ +\x53\x59\xec\xf4\xb2\xc2\xee\xd6\xf0\x10\xb1\xde\xac\x30\xe1\xe8\ +\xf2\x4c\xb2\x3e\x84\x7f\xdb\x46\xbb\x19\x21\xcf\x88\x17\x24\x2b\ +\x7c\x9a\x2e\x97\xeb\x2f\x7f\xf9\x0b\xcb\x29\xd3\xd0\x9d\x2b\x57\ +\xde\x7d\xf7\xdd\x03\xef\x45\xd4\x47\xcc\xb6\x11\x4d\x21\x65\x51\ +\x61\xa9\x9b\x5d\x93\xa4\x29\xb6\xe2\xd0\xcb\x8a\xe2\x45\x07\x2d\ +\xb8\xc2\x42\x2b\xcd\x3b\x69\x3e\xd1\xe9\x59\xc0\x0a\x62\x33\xc5\ +\x4b\x66\xde\x98\x28\xa4\x69\x91\x74\x03\x61\xd5\x88\xa7\x2e\x5e\ +\x01\x00\xf8\xbc\xde\x9d\x3b\x77\x7e\xf1\xc5\x17\x63\xc6\x8e\x5d\ +\xb4\x70\xe1\xe4\xc9\x93\x61\x3e\xfa\x81\x07\x1e\x38\x73\xe6\xcc\ +\x91\x23\x47\xce\x9d\x3b\x27\xaf\xce\xe0\x39\xae\xac\xac\x6c\xfa\ +\xf4\xe9\xd3\xa7\x4f\xf7\x7a\xbd\x77\xdd\x75\x17\xdc\xbe\x79\xf3\ +\x66\x18\x03\xb2\x2c\x5b\x5b\x5b\x9b\x9f\x9f\x2f\x4f\xb3\x26\x04\ +\x98\x46\xb3\x72\xc5\x8a\xa5\x4b\x97\xf6\x22\x65\x09\x00\x10\x45\ +\xf1\xdc\xb9\x73\xef\xbf\xff\x7e\x8f\xba\x81\x09\x0c\x4d\xf3\x62\ +\xed\x35\x01\x32\x89\x21\xd9\x3a\x2c\x73\xd4\xe4\x5f\xfe\xb6\x70\ +\xef\xa7\xdb\x61\x42\x49\x79\xb4\x18\xb6\x68\xd1\xa2\xb5\x6b\xd7\ +\xca\x27\x0a\x5e\x56\x68\x08\xf2\xf5\x71\x08\xf8\xe3\x04\x8e\x22\ +\x59\x3a\x74\xb8\x41\x93\x6b\xc0\xe2\x31\x4a\x67\x05\xf1\x8b\xe6\ +\x30\x2b\x88\x91\xaa\x8e\x21\xdc\x74\x10\x44\x50\xe1\x65\xf3\x8d\ +\x9a\x68\x87\x11\x9e\xe7\xff\xfb\xbf\xff\xbb\xe6\xea\xd5\xe8\xb3\ +\x30\x0c\x7b\xec\xd1\x47\xa7\x4f\x9f\xae\x7e\x71\x9f\xcf\x77\xee\ +\xdc\xb9\x9a\x9a\x9a\xe6\xe6\x66\xb7\xdb\x4d\xd1\x34\x81\xe3\x1a\ +\x8d\xc6\x6c\x36\xa7\xa5\xa5\xe5\xe6\xe6\x16\x14\x14\x64\x67\x67\ +\x0f\x3c\x35\x3b\x68\xe1\xe3\x06\x4a\xf1\xbb\x9b\xaa\x45\xd6\xe6\ +\xe8\x15\x63\x8a\x20\x27\x3a\xc3\x42\x1b\xcd\xb7\xd2\x7c\x7b\x58\ +\xec\xd7\x5c\x2d\x00\x80\x0d\xf8\x68\x47\x43\xb0\xdd\xe1\xbb\x5a\ +\x19\x72\xb6\x30\x3e\x57\xb2\xc9\x34\x7f\xde\xbc\x79\xf3\xe6\x49\ +\xa9\xd8\xe8\x14\x41\x71\x71\xf1\x86\x0d\x1b\xe4\xd7\x39\x7a\xf4\ +\xe8\xeb\xaf\xbf\x2e\xbd\x7d\xe0\x81\x07\xe0\x02\xd1\x8b\x2f\xbe\ +\x78\xfe\xfc\xf9\x31\xf7\x3d\x61\xcc\x1f\x27\xed\xc5\x51\x24\x47\ +\x8f\x8e\x30\x68\x6c\x28\xf3\xef\x3f\x7a\x22\xce\xa1\xea\x74\xba\ +\x9f\xfc\xe4\x27\xd0\x1d\x86\x61\x98\xf3\xe7\xcf\x57\x56\x56\x3a\ +\x9d\x4e\x9f\xcf\x07\xb5\x4d\x38\x8e\x13\x04\x01\xbb\x18\x90\x24\ +\xa9\xd1\x68\x24\xfe\xe5\x38\x2e\x10\x08\x54\x55\x55\xf5\x42\x33\ +\xab\xb7\x65\x8c\x7f\xec\xff\x29\xee\x32\x60\xc0\xc8\x06\x9c\x27\ +\xf6\x37\x5e\xbe\x20\xc9\x51\x51\x14\xcd\xc9\xc9\x29\x2a\x2a\x9a\ +\x3d\x7b\x36\xcc\xe0\x73\x22\x68\x0c\xf5\x58\xc0\xaf\x8e\x54\x2d\ +\x92\xa3\xd7\xe4\x1a\xb0\x74\x52\x2d\x38\x8d\xc6\xee\x16\xba\x53\ +\x6a\x32\x44\xac\xb7\x30\x3e\xf8\xe0\x83\xaf\x77\xed\x8a\xde\x4e\ +\x10\xc4\x93\x4f\x3c\xa1\xe2\xab\xc6\xf3\xfc\xc9\x93\x27\xf7\xee\ +\xdd\x5b\x55\x5d\xdd\xed\x37\xc4\x6a\xb1\x4c\x9e\x3c\x79\xf6\xec\ +\xd9\x7d\x5c\xf8\xea\x29\x4e\x74\x30\xa7\x5c\xca\xb3\xdd\x22\x0b\ +\x3e\x33\xb5\x7b\x4f\x8d\x20\x27\x3a\x68\xde\x41\x0b\xce\x30\xef\ +\xa0\xc5\x84\x24\xe0\x54\x00\x79\xd6\x5b\x5f\x15\x72\x34\xe5\x5a\ +\x0c\xf3\x67\xcf\x9c\x38\x71\xa2\x14\x70\x5d\xbd\x7a\xf5\xd0\xa1\ +\x43\xc7\x8f\x1f\x67\x18\x66\xe3\xc6\x8d\x92\x27\x88\xdf\xef\x7f\ +\xe6\x99\x67\xe4\xf3\xe2\x69\xd3\xa6\x3d\xf1\xc4\x13\x00\x00\xd8\ +\x2e\x7b\xe2\xfa\x5f\x92\xf6\x9c\x24\x0d\x32\xdc\x80\x0d\x4f\xd2\ +\xc8\x27\xaa\x3f\xf8\xc1\x0f\xe2\x19\x18\x82\x20\x4f\x3f\xfd\xf4\ +\x98\x31\x63\x44\x51\x3c\x78\xf0\xe0\xd6\xad\x5b\xfb\xee\x38\x13\ +\x27\x92\xb2\xf2\xc6\xfe\xe0\x67\xdd\x1e\x96\xad\x47\x4b\x0c\x9c\ +\x11\x15\x0d\x06\x03\xfc\x8b\xb9\x18\xa1\x21\xc4\xd7\x05\xb9\x16\ +\x4a\x48\xc8\xf3\x91\xc4\x90\x1c\x1d\x9a\x6b\xd0\xe4\x18\xb0\xde\ +\xb9\xa0\x95\x79\xd8\x23\xce\x4e\x21\xe3\x50\x2a\xe0\x96\xc5\xa5\ +\x4b\x97\x76\x29\x95\x33\x62\x18\xf6\xe3\x0d\x1b\xc6\x8d\x1b\x17\ +\xbd\x0b\xe2\xf8\xf1\xe3\x1f\x7d\xf4\x51\x7b\x47\x47\x9c\x37\x72\ +\xb9\xdd\xfb\xf6\xef\xdf\xb7\x7f\x7f\x66\x76\xf6\x1d\x8b\x17\x27\ +\xa4\x7a\x35\x1e\x4c\xb1\x12\xb1\x96\x77\xcf\xba\xd9\x5c\x03\x96\ +\xa9\xeb\xc6\x72\xc5\xa0\x41\x46\x24\x69\xa4\xce\xd8\x5e\x56\x70\ +\xd2\x82\x33\x2c\x38\x68\xc1\x19\x16\x12\xce\xb3\x78\x52\x32\x9e\ +\x34\x4e\x8a\x2e\x0f\x78\xda\x77\xed\x3e\x9d\x6f\xd1\x4f\x1c\x96\ +\x91\x9b\x66\xcd\xcb\xcb\xcb\xcb\xcb\x7b\xe0\x81\x07\xca\xcb\xcb\ +\xe5\x67\x7d\xf4\xd1\x47\x11\xd9\xc6\xab\xd7\xa6\x20\x30\xcd\x3a\ +\xd6\x6e\x9e\x32\x4c\xd9\x66\x57\x6e\xf8\xa4\x82\xb9\x73\xe7\x8e\ +\x19\x33\x86\xe7\xf9\xb7\xde\x7a\x2b\x4e\x99\x54\xa2\xa0\x21\x63\ +\x4a\x1a\xe4\x68\x0c\x09\x8d\x21\x34\x5b\x8f\xe6\x0a\x82\x3b\xcc\ +\xd5\x87\xf8\x84\x64\xcf\x11\x00\x6c\x24\x3a\x4c\x8f\xe5\x1a\x34\ +\x69\xca\xeb\xbe\xf1\xa2\x99\xe2\x8f\xb5\x5f\x97\x87\x0f\x11\xeb\ +\xad\x09\x9e\xe7\xff\xfa\xd7\xbf\x46\x07\x9b\x08\x82\x3c\xf6\xe8\ +\xa3\xb1\x58\xd5\xe3\xf1\xbc\xf1\xe6\x9b\x15\x15\x15\xbd\xbb\x69\ +\x73\x63\x63\x59\x59\xd9\x80\x11\x2b\x8a\x80\xc5\xe9\xe4\x47\xf5\ +\x0a\xc2\x33\x11\x80\x3d\xad\xe1\xef\xe6\xea\x7a\x54\xba\x6a\xc2\ +\x51\x13\x8e\x8e\x34\x76\x5e\xc1\xcd\x08\xed\xb4\xd0\x4a\xf3\xed\ +\x61\xc1\x19\x4e\x4c\x58\x24\x07\x61\x4e\x25\xcc\xa9\x6d\x00\xec\ +\x09\x00\x10\x08\x69\x45\x2e\xc7\x48\xa6\x6a\xd1\xf4\x82\xf1\x88\ +\xe6\x3a\x4b\x46\xfb\xe3\xc0\x19\x7a\x72\x72\x32\x4c\xb3\x96\x98\ +\xb1\x58\xe6\xe5\x59\x59\x59\xf1\x10\x2b\xf4\x21\xdc\xb9\x73\xe7\ +\x00\xb3\x2a\x00\x40\x6f\xcf\x8a\xff\xe0\xc6\x90\xd0\x18\x4a\x80\ +\x4d\x97\x01\x03\xd9\x06\x4d\xae\x1e\xcb\xd1\x63\xda\xde\x5a\xf4\ +\xca\x11\xe4\xc4\xdd\x2d\xf4\x50\x33\xc1\x5b\x1f\x18\x86\xfd\xe8\ +\x47\x3f\x7a\xef\xbd\xf7\x2a\xbb\x16\xf0\xdc\xbd\x6a\x55\xac\xbc\ +\xea\xa5\x4b\x97\x5e\x79\xe5\x15\x7f\x20\xca\x23\xba\x27\x37\x5d\ +\xb7\x6e\x5d\xaf\x4f\xef\x05\xac\x04\x3a\x23\x95\x90\xe6\x5f\x72\ +\x04\x38\xf1\xa0\x93\x59\x64\xef\x65\xe3\x42\x04\x00\x2b\x81\x5a\ +\x09\x14\x2e\x09\x0a\x22\x70\x31\x42\x1b\x2d\xb4\x87\xf9\xb6\xb0\ +\xd0\xd1\x0f\x3c\x1b\x46\x34\x55\x01\x4e\xb2\xe8\x96\x8a\x6e\xef\ +\x58\xf7\x2f\x4e\xa7\x33\xa2\x10\xab\xaa\xaa\xaa\xb8\xb8\x18\xaa\ +\x59\x55\xac\xa4\xb2\xb2\xb3\xbb\xad\xc4\xcd\xc9\xc9\xb1\xd9\x6c\ +\x7e\xbf\xff\xf3\xcf\x3f\xef\xf3\x7f\xa2\xc7\xd0\xa7\xc4\x65\x2b\ +\xd5\x77\x44\x08\xf8\x13\x78\x65\x41\x04\x5f\xb7\xd0\x11\xeb\xa2\ +\x43\xc4\x7a\xcb\x22\x27\x27\xe7\x17\xbf\xf8\xc5\xf1\xe3\xc7\xb7\ +\x6e\xdd\x0a\x9d\x01\x8a\x8b\x8a\x24\x8f\xe4\x08\x1c\x3f\x7e\xfc\ +\x8d\x37\xdf\xec\xa9\xdf\x5a\x04\x16\x2f\x5a\x14\xa7\xfd\x5a\x02\ +\x31\xc9\x8c\xd7\x05\xb9\xc6\x90\x82\xa4\xe6\x92\x8f\xcb\x33\x60\ +\x09\xe9\x99\x88\x22\x9d\x9d\xbd\xe1\x4f\x46\xe2\xd9\x36\x9a\x6f\ +\x0b\xf3\x6e\x46\x4c\x38\xcf\xca\x8b\x6e\xcd\x6b\x37\x4c\xf6\xb4\ +\x07\xea\xab\xe8\xe6\x1a\x4f\x6b\x33\xe5\x68\x80\xc4\x0a\x00\x28\ +\x2c\x2c\x54\x71\xb7\x1a\x53\x58\xd8\x6d\xe7\xd7\x8c\x8c\x0c\x00\ +\x40\x79\x79\xf9\x0d\xf1\x6c\x9d\x32\x71\x9c\x9b\x40\x3d\x2a\x9d\ +\x2f\xfb\x86\x24\x0d\x02\xc9\x34\x47\x9f\x80\x06\xef\x8a\x38\xec\ +\x0c\xb7\xd2\x91\x5f\xbf\x5b\x84\x58\x5d\x8c\x70\xce\xcd\x36\x85\ +\xf8\xe1\x49\x9a\x99\xa9\x03\xdd\x29\x6f\xd0\x02\x41\x90\x19\x33\ +\x66\x4c\x9e\x3c\xf9\xd3\x4f\x3f\x3d\x76\xec\xd8\x23\x8f\x3c\xa2\ +\xb8\x7c\x7f\xfa\xf4\xe9\xd7\x5e\x7f\x3d\xce\x65\x4c\x1d\x49\xd2\ +\xe1\x70\xf4\xc1\x06\xbd\xfe\xce\x3b\xef\x4c\xc0\xa0\x7b\x8e\x45\ +\x76\x72\x4b\xbd\x72\x39\xd6\x37\x6d\x4c\x86\xae\x97\x6b\x11\x2a\ +\x90\x78\x16\x56\x0f\x73\x22\xe8\x08\x0b\x4e\x9a\x77\x84\x85\x36\ +\x5a\x48\x38\x4d\x88\x00\x40\xf1\x2c\x98\x38\x23\x13\x00\x51\xe0\ +\x9b\x7d\xee\x6f\x1c\xe1\x34\x12\x1b\x55\x3c\x43\x4b\xc6\x6c\x89\ +\x3a\x7e\xfc\x78\x9d\x4e\xa7\xae\xd5\x87\x7e\x2e\x7d\x34\x9c\xed\ +\x1d\x72\x72\x72\x96\x8e\x4a\x87\x02\xfe\xaa\x00\x9b\xa8\x65\x28\ +\x49\xc0\x9f\xa3\xc7\xac\x44\x22\x83\xd3\x68\x5c\xf6\x71\x11\x8d\ +\xaf\x21\x6e\x7a\x62\x75\xd0\x42\xa9\x9b\xb9\xea\xef\x5c\x1d\x3e\ +\xe7\xe6\x5b\x29\x6e\x71\x86\xb2\x54\xfe\x9f\x13\x24\x49\xde\x7b\ +\xef\xbd\x6b\xd6\xac\x51\xf4\xaa\xa8\xae\xae\x7e\xed\xb5\xd7\x54\ +\x58\x15\x1a\xb2\x8c\x1e\x3d\x3a\x2b\x2b\x4b\xaa\x23\x08\x06\x83\ +\xad\xad\xad\x55\x55\x55\x97\x2e\x5d\x2a\xbf\x70\x81\x61\x98\x55\ +\xab\x56\x25\xb6\x59\x40\xfc\x30\x68\x90\xdb\x6c\xc4\xae\x56\x05\ +\x45\x27\xcd\x8b\xfb\x1d\xe1\xe5\x99\xbd\x11\x66\xc6\x0f\x0d\x02\ +\xec\x24\x6a\x27\xd1\xf1\x00\x00\x00\x58\x41\x74\x86\x05\x67\x58\ +\x68\xa3\xf8\x76\x46\x4c\x94\x40\x5d\x02\x82\x62\x84\x39\xb5\xc2\ +\x07\x8b\x6e\xc9\xfd\xd5\x41\x58\x74\x9b\xaa\xc5\xb2\xf4\xa8\xfc\ +\x9b\x8f\x61\xd8\xdc\xb9\x73\x77\x29\x29\x43\x24\xa0\x28\x0a\x00\ +\x18\x30\x19\x80\x04\x4c\xab\x9b\xb4\x62\xdd\xd6\xfa\x50\xa2\xaa\ +\x4b\x3b\x05\xfc\x7a\x34\x53\xaf\xe9\xd7\x16\xeb\x12\xda\xc3\xc2\ +\xfe\x36\x65\x1d\xf1\x4d\x4c\xac\xf5\x41\xae\xd4\xc5\x48\xda\x6c\ +\x09\x6d\x34\xbf\xad\x2e\xb4\x20\x9d\x4c\xc8\x1c\xf0\x96\x81\x22\ +\xab\xfa\xfd\xfe\x3f\xfd\xf9\xcf\xb1\xca\x07\x46\xe4\xe5\xad\x59\ +\xb3\x66\xec\xd8\xb1\xd1\x71\xae\xc1\x60\x80\x42\xf7\x3b\xee\xb8\ +\x23\x1c\x0e\x9f\x3d\x7b\x76\xca\x94\x29\x89\x1f\x74\xdc\x18\x69\ +\xd4\x5c\x0d\x70\x70\xe2\x1c\x81\xda\x20\x5f\xe1\xe5\x62\x19\xd3\ +\xf4\x07\x70\x14\xc9\xd4\x61\x99\x3a\x0c\x98\x71\x70\x8d\x67\x5b\ +\x29\xa1\x3d\x2c\x38\xe9\x84\x69\x2d\x25\xc8\x8a\x6e\x39\x00\xc0\ +\xc8\x24\xcd\xc2\x74\xad\xc4\x2c\xcb\x97\x2f\x3f\x70\xe0\x80\x4a\ +\x1d\x01\x2c\xac\x1a\xe0\x3c\x80\xde\x96\x51\x70\xef\xe3\x6d\xe6\ +\x54\xd0\x37\x56\x85\x02\x7e\x58\x10\x35\xc0\xb1\x54\x98\x17\xbf\ +\x6e\x8e\xa9\x84\xbe\xf9\xa8\x47\x10\x41\x4d\x80\x3b\xe3\x66\x3a\ +\xa2\xac\x48\x09\x14\x81\x93\x30\x46\x10\xbf\x6e\xa6\x26\x5a\xb4\ +\x43\x69\x01\x75\xbc\xfd\xf6\xdb\x3e\x9f\x2f\x7a\x3b\x86\x61\xeb\ +\xee\xbd\xf7\xf6\xdb\x6f\x8f\x47\xf9\xaf\xd5\x6a\xbb\x2d\x34\xe8\ +\x11\x78\x9e\x3f\x75\xea\xd4\xe9\xd3\xa7\xeb\xeb\xeb\x83\xc1\xa0\ +\x4e\xa7\x4b\xb5\xd9\x26\x4e\x98\x30\x7b\xf6\xec\x08\x73\x39\x39\ +\x6e\x4b\xd3\xb6\xd0\x94\xa2\x0a\xe7\x48\x3b\x13\x11\xca\x0d\x24\ +\xae\xf3\x2c\x00\x00\x80\x30\x2f\x3a\xc2\x42\xff\x15\xdd\x56\x05\ +\x38\xac\x0d\x48\xab\x76\x66\xb3\xf9\xc1\x07\x1f\xdc\xb4\x69\x53\ +\xac\xe3\x21\xa5\xa2\xbd\x75\xf2\xee\x05\x92\xb2\xf2\x46\x7f\xf7\ +\x49\x4c\x1b\x33\x83\xd1\x2d\x7a\x2d\xe0\x4f\x20\xf6\x3a\xc2\xb1\ +\x9e\x91\xd9\xfa\x9b\xca\xdd\x8a\x13\x41\xa5\x97\x2d\x73\xb3\x3e\ +\x36\x92\x52\x0b\x4c\x44\x91\x05\xd7\x61\xc8\xee\x56\xba\x29\xd8\ +\x19\x7f\x9d\x73\x87\xdb\x68\x6e\x49\x86\x2e\x9e\x5a\xb4\x81\x04\ +\xcf\xf3\x3c\xcf\xf7\xae\x2b\x64\x02\xd1\xd8\xd8\x58\x76\x4e\xa1\ +\x6f\xbc\x31\x29\xe9\xa9\xa7\x9e\x1a\x60\xb5\x3f\x04\xc3\x30\x7b\ +\xf7\xee\xfd\xf2\xab\xaf\xe4\x74\xef\x0f\x04\xda\x9c\xce\x8a\x8a\ +\x8a\xed\xdb\xb7\xaf\x5a\xb5\x6a\xc9\x92\x25\x8a\xd1\xb7\x16\x43\ +\xe6\xdb\xb5\x9f\x37\x29\xf8\xb3\xb0\x82\xb8\xbb\x35\xbc\x3a\x5b\ +\x37\x18\x9e\xb2\x5a\x0c\x19\xa6\xc7\x86\xe9\xb1\xfe\x2b\xba\x8d\ +\x58\xb5\x9b\x3b\x77\x6e\x47\x47\xc7\x8e\x1d\x3b\x54\x4e\xe9\x5d\ +\x19\x6b\x2f\x90\x3a\x7e\x5a\xde\xca\x07\x11\xb4\xc7\x5d\x1d\x61\ +\xb5\x6b\xb6\x1e\x8b\xb3\xba\xb4\x5f\x71\xc6\xc5\xc6\xb2\xaf\x4c\ +\xd2\x20\x77\xa4\x93\x37\x47\xe5\x55\x98\x17\x2f\x78\xb9\x73\xee\ +\x48\xaf\x3c\x0d\x82\x8c\x35\x13\x93\x2d\xb8\xf4\x87\x16\x01\x38\ +\xd9\xc1\x9c\xee\xb8\x3e\xf1\xd1\x61\xc8\xc2\x0c\x5d\xaf\xdb\x73\ +\xf6\x1a\x3c\xcf\xb7\xb6\xb6\xba\x5c\x2e\x8f\xc7\xe3\x76\xbb\x3d\ +\x1e\x8f\xcb\xe5\x72\xbb\xdd\x6e\x8f\x07\xb6\xe7\x1c\x31\x62\xc4\ +\x03\x0f\x3c\x70\x43\xf8\x4b\x82\xc3\xe1\xf8\xfb\xdf\xff\x7e\x5e\ +\xa6\x48\xd7\xeb\x74\xbf\xfa\xd5\xaf\xe2\xb7\x62\x4b\x20\x9a\x9a\ +\x9a\x36\x6e\xdc\xd8\xdc\xd2\x8d\x85\x68\x71\x51\xd1\xe3\x8f\x3f\ +\x1e\xeb\xb1\x74\xc4\xc9\x28\xf6\x79\x07\x00\xcc\x48\x21\x8a\xad\ +\xdd\x74\x8a\xbe\xe1\x48\x54\xd1\x2d\x89\x21\xdf\xcd\xd5\xc9\x57\ +\xed\xca\xca\xca\xb6\x6d\xdb\x26\x35\xdc\x96\x30\x67\xce\x9c\xf5\ +\xeb\xd7\x7f\xb8\x65\x4b\xb7\xfa\x81\xbe\x23\x73\xd6\x92\xec\x05\ +\x77\xf5\xe8\x94\xb4\x04\x09\xf8\x13\x88\xfa\x10\xaf\xf8\xfc\x06\ +\x00\x60\x08\x58\x95\xad\xb3\x93\xe8\x60\x27\xd6\x20\x27\x9e\xf3\ +\xb0\x15\x1e\x26\x62\xa1\x55\x87\x21\x63\xcd\xc4\x24\x33\xae\xa8\ +\xef\xad\x0f\xf1\xfb\x5a\xba\x34\x83\x2a\x49\xd1\x4e\x4d\x21\x06\ +\xec\x83\xd9\xb9\x73\xe7\xe7\x9f\x7f\xde\xad\x73\x1a\x41\x10\xbf\ +\xfd\xed\x6f\x07\x5e\xa2\x14\x81\xb2\xb2\xb2\xf7\xdf\x7f\xdf\xd1\ +\xd6\x86\x20\xc8\xcf\x7e\xfa\x53\x95\xa2\xac\xfe\x43\x43\x43\xc3\ +\xf3\xcf\x3f\x1f\x8a\xcf\x6b\xae\xb8\xa8\xe8\xc9\x27\x9f\x54\x8c\ +\x5b\x05\x11\x6c\xa9\xa7\x14\xd7\x8b\x30\x04\xac\xc9\x51\xae\x50\ +\x1a\xb4\xf0\xb2\x42\x47\x67\x25\x58\x8f\x8b\x6e\x47\x24\x61\x4b\ +\x33\x22\xe3\x50\x87\xc3\xd1\xd4\xd4\x14\x0a\x85\x78\x9e\x47\x51\ +\x54\xaf\xd7\x67\x64\x64\x64\x66\x66\xfe\x6e\xf3\x47\x17\xf7\xed\ +\x4c\xe8\xd8\xbb\x00\x41\xb1\xfc\xef\xdc\x6f\x9d\xa8\xe0\x44\x15\ +\x0d\x12\x43\x72\x0d\x58\x8e\x0e\xcb\x35\x24\x46\xc0\x9f\x40\x78\ +\x59\xe1\x1f\x0d\x74\xac\x07\xde\xfc\x34\x2d\xcc\xe6\x0f\x5e\x62\ +\xf5\xb2\x42\xa9\x8b\xbd\xe4\x63\x23\x5c\x47\xf5\x1a\x74\xb2\x95\ +\x18\x9b\xac\x51\x57\xa5\x05\x39\x71\x4f\x0b\x25\x5f\xda\xca\x32\ +\x68\x6e\x4f\x27\x13\xae\xbc\x89\xc6\xbe\xfd\xfb\x37\xbf\xf3\x4e\ +\x9c\x07\x2f\x59\xb2\xe4\xfe\xfb\xef\xef\xd7\xf1\xc4\x03\x9e\xe7\ +\x77\xed\xda\xc5\xb2\xac\xba\x64\xca\xe7\xf3\x85\xc3\x61\x93\xc9\ +\x94\xd8\x3c\x06\xc3\x30\xff\xf1\x1f\xff\xe1\x68\x6b\x8b\xff\x94\ +\x3b\x57\xae\x5c\xbd\x7a\xb5\xe2\xae\xf6\xb0\xf0\x8f\x06\x45\x1f\ +\x70\x60\x21\xd0\x7b\x86\xe9\x6e\xf4\x3c\xb2\xf7\x80\x45\xb7\xb0\ +\xe2\x36\x9e\xa2\xdb\xc5\x76\xad\xa2\xe7\x59\x34\xe2\x24\x56\xab\ +\xd5\xfa\xab\x5f\xfd\x0a\x00\x00\xdd\x58\x14\x8f\x09\x87\xc3\x3c\ +\xcf\xb3\x2c\xcb\x71\x1c\xcb\xb2\x2c\xcb\x72\x00\x3d\xab\x49\xf7\ +\x89\x6a\xb3\x46\x04\x80\x0c\x5d\xbf\x08\xf8\x13\x08\x4e\x04\x1f\ +\x37\xc4\x94\x31\x8c\x4d\xd6\xcc\xbf\x96\xda\x1e\x8c\x39\xd6\x08\ +\x05\x95\x04\x0b\x81\x16\x5b\xb5\x23\x8d\x9a\x78\xa6\x04\x06\x0d\ +\xb2\x32\x5b\x7f\xb2\x23\x7c\xc6\xd5\xb9\xdc\xd9\x14\xe4\xb6\xd6\ +\x85\x6e\xcf\x20\xbb\x2d\x21\xef\x23\x76\x7d\xfd\x75\xf4\x46\x0c\ +\xc3\x4c\x26\x93\xd9\x6c\x4e\x4d\x4d\x35\x99\x4c\xc7\x4f\x9c\x80\ +\x09\x81\xc6\xa6\xc4\x74\x25\xa2\x69\x1a\xa6\x1a\xbc\x5e\xaf\x28\ +\x8a\x79\x79\x79\x2a\x7d\x7e\x14\x87\xb7\x6c\xd9\xb2\x58\x7b\x79\ +\x9e\xff\xf2\xcb\x2f\xf7\xed\xdb\x07\x0b\x0d\x70\x8d\x66\xc2\x84\ +\x09\xd0\xd5\x38\x01\x43\x07\x60\xf7\xee\xdd\x3d\x62\x55\x00\xc0\ +\xe7\x3b\x77\x16\x17\x17\x0f\x1f\x3e\x3c\x7a\x57\xaa\x16\x9d\x6a\ +\x25\x8e\x75\x28\x2c\x73\xbb\x19\xe1\x5b\x67\xf8\xb6\xb4\x5e\x96\ +\x63\xdd\x70\xc4\x2a\xba\xad\x0a\x28\xf7\x17\x39\xdc\xce\x64\xe9\ +\x13\x99\x91\xf4\xfa\x7c\xc1\x60\x50\xf1\xcf\x2e\x21\x42\x75\x17\ +\xe4\xc4\x4f\x9b\x68\x5f\x6c\xcd\x19\x02\xc0\x2c\x5b\xf7\xa1\xd2\ +\x60\xc0\x81\xb6\x70\x2c\x56\x4d\x23\x51\xf9\xf7\x6a\x70\x11\x6b\ +\x7d\x88\x3f\xeb\x66\xa4\xd5\x27\x09\x69\x24\x56\x92\xa2\x8d\xd5\ +\x20\x2f\x16\x50\x04\x4c\x4f\xd5\xda\x75\x9a\xbd\x2d\x14\xcc\x24\ +\x84\x38\xe1\x93\x86\xd0\xf4\x54\xb2\x5f\x73\x6d\x5e\xaf\x17\xbe\ +\x18\x35\x6a\xd4\x8a\x15\x2b\x2c\x16\x4b\x72\x72\xb2\xc9\x64\x92\ +\xaf\xb0\x37\x35\x37\x57\x78\xbd\x00\x00\x4f\x7c\xdd\x52\x01\x00\ +\x3c\xcf\xfb\xfd\xfe\x8e\x8e\x0e\x8f\xc7\x23\x65\x6c\x3d\x5e\xaf\ +\xab\xa3\x03\x36\xa1\x8c\x38\x3e\x51\xb1\x30\x45\x51\x7f\xf8\xc3\ +\x1f\xe4\xde\x83\x2c\xc7\x9d\x29\x2d\x3d\x7f\xfe\xfc\x13\x4f\x3c\ +\x51\x54\x54\xd4\xa3\xab\xf1\x3c\xef\x72\xb9\x68\x9a\x36\x9b\x72\ +\x58\xbc\x42\x00\x00\x20\x00\x49\x44\x41\x54\xcd\xd2\x12\xff\x81\ +\x03\x07\x7a\x3a\x2a\x41\x10\xb6\x7e\xf4\xd1\xd3\x3f\xff\xb9\xe2\ +\xde\x22\x2b\x2e\x6f\x56\x2a\x47\xb9\x97\x1b\x9e\xa4\x19\xf8\x9c\ +\x7b\xc2\x21\x2f\xba\x1d\x9e\xa4\x9c\xf5\xa3\x79\xf1\x40\x5b\x5c\ +\x32\x5e\x31\x1c\x57\x53\x06\x9e\xe3\x7e\xfb\xdb\xdf\x4e\x9b\x36\ +\x2d\x2f\x2f\x4f\xaf\x57\xf0\x4f\x81\x1b\x8d\x46\x23\x74\x20\x6c\ +\x0f\x0b\x3b\x9b\x28\x95\x15\x39\x0c\x01\x77\x64\x90\x3d\xfd\x69\ +\xdf\x10\x94\x7b\xd8\x4b\x31\xec\xd5\x49\x0c\x59\xd6\xb5\x79\xc7\ +\xa0\x20\x56\x11\x80\x6a\xbf\xb2\x82\x2a\x37\x09\x9f\x6c\xc1\xfb\ +\x12\x63\x0e\x37\x60\x6b\x73\xf5\x7b\x5a\xae\x77\x8a\x3e\xde\x4e\ +\xb7\xd2\xfc\x22\xbb\xb6\x9f\xd2\x37\x06\x83\x01\xd2\x1c\x49\x92\ +\xb1\xac\xf9\xcc\x26\x13\x7c\xe1\xee\x4a\xac\x30\xf0\xf4\x7a\xbd\ +\x6e\xb7\xdb\xed\x76\x4b\x34\xda\xde\xd1\xe1\xf7\xf9\x7a\x94\xb7\ +\xd9\xb5\x6b\x57\x7e\x7e\x7e\xdf\x85\x50\x6f\xbe\xf9\xa6\xa2\xa3\ +\x2b\xcb\x71\xaf\xbe\xfa\xea\x73\xcf\x3d\x17\x4f\x68\x0c\x5d\x90\ +\x0f\x1c\x38\x00\xab\x09\xe0\xc6\xd4\x94\x94\x29\x53\xa7\xe6\x64\ +\x67\xb7\x39\x9d\xbd\x18\x58\x45\x45\x45\x6d\x6d\xad\x62\xf4\x84\ +\x00\xb0\x28\x5d\xbb\xb5\x9e\x56\x9c\x2c\x7f\xe3\x08\xaf\x1b\xa6\ +\x1b\x6c\xc9\xbb\xbe\x60\x98\x1e\x1b\x6f\xd2\x28\x96\x00\xc5\x29\ +\xe3\x0d\xd0\xf1\x76\xbb\xe1\x79\xfe\xe8\xd1\xa3\xea\x76\x2d\x99\ +\x99\x99\xff\xf3\x3f\xff\x53\x1b\xe4\x77\xb7\x86\xd9\xd8\xe5\x11\ +\x06\x0c\x7c\x27\xeb\xe6\xc8\x7a\x3b\x68\xe1\x48\xbb\xb2\xd4\x17\ +\x01\x60\x71\xba\x36\x62\x5a\x70\x83\x89\x55\x10\x41\xa5\x8f\x2b\ +\x75\x31\xd1\x0a\xaa\x91\x46\xbc\xc8\x4a\xc4\xfa\xa3\x8b\xa2\x58\ +\x57\x57\x77\xe5\xca\x95\x96\x96\x96\x40\x20\x80\xa2\x28\x41\x10\ +\xb0\x7b\xe5\xa8\x51\xa3\x22\x32\x80\x26\x1c\xbd\x3b\x47\x7f\xd8\ +\x19\xbe\xe0\xe9\xfc\xd3\xd4\x05\xd8\x6d\x61\x61\x71\x06\x69\x27\ +\x13\xff\xa1\x9a\xcd\x66\xd8\x9e\x57\x51\x22\x0a\x61\xb1\x58\xe0\ +\x0b\x8a\xa2\x5e\x7b\xed\x35\x9f\xdf\xef\x71\xbb\xdd\x6e\x77\x9c\ +\x9d\x82\xe2\xc4\xf1\xe3\xc7\xfb\x48\xac\xb5\xb5\xb5\x67\x4a\x4b\ +\x63\xed\x65\x39\xee\xb3\xcf\x3e\xfb\xe1\x0f\x7f\xa8\x7e\x91\xfa\ +\xfa\xfa\xbf\xfd\xed\x6f\xd1\xec\xdc\xde\xd1\xf1\xd5\x57\x5f\xf5\ +\x65\x78\x07\x0f\x1e\x8c\x35\x2d\x35\xe1\xe8\xec\x54\xe2\x1b\xa5\ +\xc2\x98\x00\x27\x1e\x68\x63\x16\xd8\x89\xc1\x3f\xf7\x8c\x1f\x33\ +\x53\x89\x58\x4e\xcf\x47\xda\x99\x01\x96\x28\xd1\x34\x5d\xee\x61\ +\x0f\x39\x19\x95\x40\xc0\x42\xa0\x77\x66\x91\x37\x5c\x38\x15\x0f\ +\x28\x5e\xfc\xba\x25\xa6\x40\x63\x7a\x0a\x11\x3d\x01\xba\x61\xc4\ +\x0a\x15\x54\xe7\x3d\x4c\x88\xeb\xf2\x44\x43\x11\x64\x8c\x09\x9f\ +\x64\xc1\x63\xc9\xb9\x19\x86\xf9\xe6\x9b\x6f\xf6\xec\xd9\x13\x2b\ +\xcc\x21\x08\x62\xce\xec\xd9\xcb\x96\x2d\x93\xb7\x08\x45\x11\x70\ +\x5b\x9a\x36\x53\x87\x1d\x70\xd0\x30\x2d\xe0\x63\xf9\x1d\x0d\xa1\ +\xd9\x36\xed\x78\x73\x82\xd3\x02\xb0\xf5\x1b\x00\xc0\xed\x89\xd9\ +\x23\x53\xde\x63\xea\xd8\xb1\x63\xbd\xbb\x91\x56\xab\xb5\x58\x2c\ +\x66\xb3\xd9\x6a\xb5\x5a\xae\xc1\x6c\x36\x6f\xde\xbc\xb9\xae\xae\ +\x0e\x44\xb5\x5f\xef\x05\xce\x9c\x39\xa3\x7e\xc0\xd9\xb3\x67\xd5\ +\x0f\x38\x76\xec\xd8\xa6\x4d\x9b\x62\x15\x77\xf5\x11\xea\xd6\x4d\ +\x63\x4d\x9a\xda\xa0\x72\xbb\xec\xaa\x00\x57\x1d\xe0\x52\xb4\x48\ +\x96\x4e\x93\xa1\x43\xfb\xc3\x4f\x60\x80\x81\xa3\xc8\x82\x74\xed\ +\x8e\xc6\x98\x32\xde\x55\xd9\x03\xa4\x54\x05\x00\xb1\xce\xfe\xce\ +\x41\x25\xcb\x31\x09\xd9\x7a\x74\x59\x06\x39\xc8\x1f\x6c\x14\x2f\ +\xb6\x50\x7c\x0b\x25\xd4\x06\xb8\x58\x75\x1c\x23\x92\x30\xc5\xbc\ +\xe2\x0d\x20\xd6\x20\x27\x96\x7b\x98\x72\x0f\x1b\xa1\xa0\x22\x50\ +\x64\xbc\x19\x9f\x68\x21\x54\xbe\xe2\xd5\xd5\xd5\xaf\xbf\xfe\xba\ +\xfa\xcc\x91\x61\x98\x7d\xfb\xf7\x1f\x3a\x74\x68\xf5\xea\xd5\x4b\ +\x97\x2e\x95\x67\x36\x47\x1a\x35\x36\x52\xff\x75\x0b\x0d\x73\x0e\ +\x82\x28\x1e\x6a\xa3\x5b\x28\x7e\xbe\x5d\xdb\xbb\xcf\x98\xe7\xf9\ +\xca\xca\x4a\x47\x5b\x5b\x47\x7b\xbb\xd7\xeb\x75\xb9\xdd\x1e\xb7\ +\x5b\x5a\x87\xf1\xfb\x7c\xb0\xef\x5b\xf4\x89\xd0\xf9\xa2\x5b\x20\ +\x08\x62\x4c\x4e\x86\x49\x80\xdb\x6e\xbb\x2d\x2d\x2d\xcd\x6c\x36\ +\x4b\x1c\xaa\xd3\x29\xd7\xae\xd8\xed\x76\x48\xac\x9e\x6b\xd9\xde\ +\x5e\xa3\x5b\x37\x4f\x8a\xa6\x83\xc1\x60\x2c\x97\x80\x0b\x17\x2e\ +\xbc\x1e\xa3\x8f\x61\xba\xdd\xbe\x6c\xd9\xb2\x4f\x3e\xf9\xc4\x15\ +\x77\x96\x39\x1a\xce\xf6\x76\x95\xbb\x03\xd5\x76\xd9\xd7\xda\x5c\ +\xb3\x65\x1e\x00\x00\xb0\x10\x68\x96\x0e\xcd\xd4\x61\x19\xba\x1b\ +\xaf\x3f\xef\x1d\x32\x75\x58\x91\x05\x2f\x75\x2b\xc8\x78\x9b\x29\ +\xbe\xdc\xc3\x26\x3c\x86\x88\x06\xa6\xd1\x14\xac\x7d\x4c\xde\x2a\ +\x26\x1a\xa3\x93\x35\x0b\xd2\xb4\x83\x93\x54\xbd\xac\xe0\xa0\x84\ +\x66\x8a\x6f\xa1\x85\x6e\x4d\x1e\x2c\x04\x1a\xcb\x97\x72\xa0\x89\ +\xb5\xca\xcf\xed\x6d\xa5\x7b\xa7\xa0\x8a\xb0\xb6\x2b\x1c\x3d\x7a\ +\xea\xd4\xa9\xc3\x87\x0f\xb7\x58\x2c\x28\x8a\x06\x83\xc1\xc6\xc6\ +\xc6\xb2\xb2\xb2\x93\x27\x4f\xb2\x1c\xc7\x72\xdc\x96\xad\x5b\x5b\ +\x5a\x5a\x1e\x7a\xe8\x21\x39\xb7\x9a\x70\x74\x75\x8e\xfe\x70\x5b\ +\xf8\xa2\x97\xb9\x36\x24\xb6\x8d\x16\xee\xc8\x24\x7b\x9a\xeb\x71\ +\x38\x1c\x2f\xbd\xf4\x92\x4a\xeb\x34\x51\x14\xbd\x5e\xaf\x14\xc0\ +\xca\x91\x9a\x9a\x2a\xbd\xc6\x71\x3c\x25\x25\x25\x3a\xf0\x4c\x49\ +\x49\x31\x1a\x8d\x18\x86\xfd\xe2\x17\xbf\x70\x38\x1c\x4b\x96\x2c\ +\x89\x73\x15\xde\x74\x2d\x81\xeb\xf3\x7a\x63\x31\x7b\x9c\x88\xc5\ +\xdd\x12\x10\x04\x89\x25\xbb\x61\x18\xe6\xed\xb7\xdf\x8e\x95\x17\ +\x2e\x29\x29\x99\x37\x6f\x5e\x76\x76\xf6\x0b\x2f\xbc\xd0\x97\x78\ +\xd6\xe9\x74\xaa\x10\x6b\xfc\xed\xb2\xdd\x8c\xe0\x66\x04\x98\xa6\ +\x34\x69\x90\x74\x3d\x96\xa3\xc3\xec\xba\x1b\x56\x08\xdb\x3b\x4c\ +\x4f\x21\x62\xf5\x25\x3d\xd2\xce\x24\xbc\xa0\x5e\xaf\xd7\x7f\xe7\ +\x3b\xdf\x31\x99\x4c\xdf\x7c\xf3\x4d\x55\x55\x95\x46\x9f\x34\xf6\ +\xfe\x1f\x91\x76\xb5\xea\x92\xc1\x56\xa6\x21\x02\xd0\x11\x16\x5a\ +\x29\xbe\x99\x12\x5a\xe9\x1e\x34\x26\xc0\x10\x70\x47\x46\xcc\x80\ +\x6c\xa0\x89\xb5\xcc\xcd\xc8\x59\xd5\x42\xa0\x13\x2d\xda\xc2\xe4\ +\xee\x15\x54\x17\x2e\x5c\x90\xac\xed\xd2\x6c\xb6\x87\x1f\x7e\x58\ +\x6a\xff\x0b\x61\x36\x9b\xb3\xb2\xb2\xa6\x4f\x9f\x7e\xef\xbd\xf7\ +\xfe\xed\x6f\x7f\x3b\x5b\x56\x06\x00\x38\x78\xe8\x50\x6a\x6a\x6a\ +\x84\x36\x53\x83\x80\xf9\xf6\xce\xb4\x00\x27\x76\xa6\x05\xfe\x51\ +\x1f\x9a\x9b\x46\xc6\x6f\xd5\x21\x8a\xe2\x2b\xaf\xbc\xd2\x6d\x43\ +\x4a\xb7\xdb\xad\x48\xac\xf2\x88\x75\xcd\x9a\x35\x4b\x97\x2e\x55\ +\xb9\x88\xc5\x62\x71\x38\x1c\x6e\xb7\x3b\x4e\x62\x95\xe7\x19\x5c\ +\x2e\x97\x3c\x25\xd2\x53\xe4\xe7\xe7\xef\xde\xb3\x47\xe5\x80\xbc\ +\xe1\xc3\x63\x69\x5a\x8f\x1f\x3f\xae\xd2\xdf\xa5\xa3\xa3\x03\x5e\ +\xff\xfe\xfb\xef\x7f\x67\xf3\xe6\x6e\x47\x32\x67\xf6\xec\x51\xa3\ +\x46\x55\x56\x56\x1e\xed\x9a\x39\xf1\x76\x17\x95\x0f\x37\x60\x23\ +\x92\xb0\x1a\x25\x7f\x96\x58\xf0\x72\xa2\xd7\xc7\xc1\x25\xe0\x24\ +\x0d\x92\x4e\x62\xd9\x7a\x2c\x5d\x87\xf6\xb7\x07\x5d\xdf\x81\x22\ +\x60\xa1\x5d\xab\xd8\x66\x91\x17\xc1\xde\xd6\xf0\xdd\x39\x3a\xc5\ +\x9f\x5a\x52\xaf\x4a\x5a\x7f\xf8\xc3\x1f\xc2\xe5\xd9\x69\xd3\xa6\ +\xfd\xfa\xf7\x2f\xd9\xef\xf8\x2e\x61\x4e\x8d\x75\x30\x86\x80\x05\ +\x69\xf1\xea\x6a\xfb\x15\x82\x08\x5a\x69\xbe\x95\x12\x5a\x69\xbe\ +\x95\x16\x7a\x57\xde\x36\xd2\xa8\x51\xf9\x3e\x0c\xf4\x7f\xd2\x2f\ +\x5b\x23\x44\x11\x64\x86\x2d\x2e\xa5\x85\xcf\xe7\x93\xac\xed\x46\ +\xe4\xe5\xfd\xfc\xe7\x3f\x87\x91\x94\x28\x8a\xed\xed\xed\x70\xba\ +\x6a\xb5\x5a\x53\x53\x53\x11\x04\x31\x9b\xcd\x3f\xfe\xf1\x8f\x37\ +\x6d\xda\x74\xf8\xc8\x11\x00\xc0\x8e\x4f\x3e\x99\x3e\x7d\x7a\x74\ +\x75\x53\x41\xb2\x26\x95\xd4\xef\x6a\xee\xac\xd2\x11\x44\xf1\x80\ +\x83\x6a\xa1\x89\xdb\x6c\x71\xad\x69\x34\x36\x36\x46\x54\x07\x4a\ +\x19\x4f\x14\xc3\x2a\x2e\x5c\x80\x1b\x63\xfd\xec\xe5\x6c\xdb\xed\ +\x84\x1d\x12\xa5\x27\x76\xc6\x36\x02\x52\x07\x50\x78\x56\x5f\x88\ +\xb5\xb8\xb8\xd8\x6a\xb1\xa8\xcc\xd6\x17\x2d\x5a\x14\x6b\xd7\x91\ +\x23\x47\x54\xae\xdc\x71\x8d\x73\x17\x2c\x58\x70\xf5\xea\xd5\x83\ +\x87\x0e\xa9\x1c\x7c\xdb\xdc\xb9\x0f\x3f\xfc\x30\x00\x60\xde\xbc\ +\x79\x3c\xcf\x9f\x38\x79\x52\xda\x15\x8f\x39\x77\x91\x85\xa8\x09\ +\xf4\x72\x55\x30\xc0\x89\x55\x01\xae\x2a\xc0\x01\x00\x48\x0c\xc9\ +\xd4\xa1\x19\x3a\x2c\x4b\x87\xa5\x0c\xd2\xb9\x2c\xb0\x93\x68\x89\ +\x15\x57\x6c\xb3\xd8\x4a\x0b\xa5\x2e\x56\x31\x60\x44\x72\x46\x03\ +\xb0\xb7\xa7\xf7\x1a\x31\x62\x04\x7c\xd1\xce\x63\x99\xab\xd6\xab\ +\xf8\xaa\x90\x18\xb2\x34\x43\xdb\xdf\x12\x72\x15\xb0\x82\xd8\x42\ +\x77\x46\xa6\x0e\x3a\x01\xcd\xb1\xd5\x27\xb8\x03\x4a\xac\x82\x08\ +\xe4\x05\x31\x82\x28\x7e\xd9\x14\x1a\x6b\xc2\x67\xa7\x91\xea\x49\ +\xad\x6d\xdb\xb6\xc1\x96\x21\xc6\xa4\xa4\x0d\x1b\x36\xe8\x74\x3a\ +\x9e\xe7\xf7\xee\xdd\xbb\x7b\xf7\x6e\xa7\x6c\x7d\x46\xaf\xd3\x15\ +\x14\x14\x4c\x98\x30\x61\xda\xb4\x69\xdf\xfb\xde\xf7\xaa\xaa\xaa\ +\x5a\x1d\x0e\x41\x10\x76\xee\xdc\x09\x7f\x96\x11\xb0\x12\xe8\x9a\ +\x61\xfa\x6f\x1c\xe1\xaa\x6b\xc5\x08\x97\xbd\x8c\x93\xe2\x96\x65\ +\xe9\xba\x9d\x31\xd1\x32\x79\xca\x77\xbf\xfb\xdd\xdb\x6e\xbb\x4d\ +\x9a\x35\x37\x37\x37\x3f\xf3\xcc\x33\xf0\x75\x2c\xd2\xc4\x30\xcc\ +\x60\x30\x40\x13\x4c\x57\x77\x6d\xfb\xcc\x16\x0b\x88\x12\x66\xa9\ +\x1d\xdf\x35\x62\x8d\xf3\x2c\x45\x10\x04\xf1\xc8\x23\x8f\xbc\xf4\ +\xc7\x3f\x2a\xf2\x57\x71\x51\xd1\xac\x59\xb3\x14\x4f\x84\xb2\x0d\ +\x95\x2b\x43\x62\x0d\x06\x83\x24\x49\x3e\xf8\xe0\x83\x8d\x8d\x8d\ +\x8a\xa2\x2e\x00\x80\x2d\x35\x75\xe1\xc2\x85\xd2\xdb\x31\x63\xc6\ +\xc8\x89\x35\x9e\x44\x47\xa2\xd6\xa5\x68\x5e\xac\x09\xf0\x30\xf8\ +\xc5\x51\xc4\x4e\x22\xd9\x3a\x4d\xba\x0e\xbd\x81\x1e\x4b\x8a\x50\ +\x69\xb3\x78\xd2\xc5\x0c\x4f\x52\xb0\x7f\x2e\x18\x37\xbe\xce\x96\ +\x11\x72\x76\x63\xd4\x10\x81\x8a\x8a\x8a\xe9\xd3\xa7\x57\xf9\xb9\ +\xbd\x8e\xb0\x0a\xab\x26\x69\x90\x15\x59\xe4\xc0\xc7\xfb\xd2\xea\ +\x53\x13\xc5\x75\x84\x07\xb4\xc6\x74\x40\xff\xab\x8a\x65\x86\x15\ +\x5e\x76\x5b\x5d\xd0\xa1\xa4\xe5\x86\xf0\x78\x3c\x52\xec\x73\xef\ +\xbd\xf7\x9a\xcd\xe6\x70\x38\xfc\x87\x3f\xfc\xe1\xfd\x0f\x3e\x70\ +\x76\x5d\xf5\x0e\x51\xd4\xd9\xb2\xb2\x77\xff\xfe\xf7\xe7\x9f\x7f\ +\x9e\x20\x88\x15\x2b\x56\xc0\xed\xa7\x4e\x9d\x8a\x15\xd7\xe0\x28\ +\x72\x7b\x06\x39\x37\x8d\x44\xaf\xe5\x61\xdd\x8c\xb0\xad\x2e\x54\ +\xe5\xef\x26\xeb\x27\x27\x2f\x51\x14\xe5\xb9\x48\x29\xc5\x09\x00\ +\x70\xc7\xe6\xb5\xeb\x99\xd0\xd8\xaa\x2c\x08\xab\xc5\x02\x7a\x12\ +\xb1\x4a\x5a\x2e\xd0\x13\x3a\x8e\x85\x71\xe3\xc6\xfd\xfc\x67\x3f\ +\xb3\xa5\x76\x99\xe2\xa1\x28\x7a\xc7\x92\x25\x4f\x3e\xf9\x64\x2c\ +\x5f\xc1\x50\x28\x44\xa9\x4a\x23\xdd\x1e\x0f\x2c\x7c\x7c\xef\xbd\ +\xf7\x08\x82\x78\xf2\xc9\x27\x0d\x51\x82\xf3\xcc\x8c\x8c\x1f\x3e\ +\xf6\xd8\x0b\x2f\xbc\x20\xd7\x54\x5d\xb9\x72\x45\x7e\x4c\x52\x52\ +\x12\xb8\x11\x60\x05\xb1\x31\x24\x1c\xeb\x60\x76\x34\xd2\x6f\x56\ +\x07\x77\x34\xd2\x27\x3a\x98\xfa\x10\x9f\x68\x17\xc0\xde\x00\x45\ +\xc0\x42\x3b\xa9\xf8\x38\xe1\x45\xb0\xa7\x95\x8e\x56\xf7\x22\x08\ +\x3a\xf2\xae\xef\xf7\xd4\xca\xef\xad\xb7\xde\xda\x76\xbc\x7c\x57\ +\x6b\x58\x25\x00\x4c\x23\xd1\x7b\x86\xe9\x06\x8c\x55\xbd\xac\x70\ +\xd9\xc7\xed\x75\x84\xdf\xbb\x1a\x7a\xbb\x26\xf4\x55\x4b\xb8\xcc\ +\xc3\xb6\x0f\x2c\xab\x82\x01\x8e\x58\xe5\x89\xe1\x91\x46\x5c\x8a\ +\x13\xdd\x8c\xb0\xa3\x21\x34\x35\x45\x5b\x64\xc5\xa3\xbf\x0c\x47\ +\x8e\x1c\xe1\x05\x01\x00\x60\xb5\x58\x60\x7c\xf4\xee\xbb\xef\x4a\ +\x3d\xf2\x32\x33\x32\xa6\x4d\x9b\xa6\xd3\xe9\x1c\x0e\xc7\xc9\x93\ +\x27\x61\x60\x9b\x96\x96\x06\x00\x28\x2a\x2a\x42\x10\x44\x14\xc5\ +\x10\x45\x35\x35\x35\x0d\x1b\x36\x2c\xd6\xc0\xc6\x9b\xf1\x74\x1d\ +\xf6\x75\x33\x0d\xe5\xb4\x8c\x20\xee\x6e\xa1\x9a\x29\x62\x8e\x2d\ +\xe6\x7c\x4f\x65\x2e\x6f\x30\x18\x70\x1c\x67\x59\x16\xa8\x66\x00\ +\xad\x56\x2b\xec\x87\xd1\x2d\x63\x42\x0a\x8e\x3f\xf6\x94\x13\x6b\ +\xdf\x85\x01\x00\x80\xc2\xc2\xc2\x17\x5e\x78\xa1\xbc\xbc\xbc\xba\ +\xba\x9a\x61\x59\x5b\x6a\x6a\x49\x49\x89\xfc\xd1\xd2\x0b\x88\xa2\ +\xe8\x72\xb9\x52\x53\x53\x0f\x1d\x3a\x94\x9f\x9f\x3f\x7b\xf6\xec\ +\x27\x9e\x78\xe2\x7f\x5f\x7c\x51\x5a\xec\x1a\x5d\x50\xf0\xcb\x5f\ +\xfe\x12\x41\x10\xbf\xdf\xff\xd5\x57\x5f\xf9\xfd\xfe\x82\x82\x82\ +\xca\xca\xca\x6f\xbb\x4a\xd3\xe5\x79\x8f\x9e\x02\x43\x40\x42\x7a\ +\x81\xf0\x22\x68\xa6\xf8\x66\x8a\x07\x80\xc5\x10\x90\xa2\x45\xb3\ +\x74\x58\x86\x0e\xcb\xd2\xa1\x37\x4a\x51\xa4\x52\xd7\xdb\x1e\x16\ +\xcf\xba\x15\x12\x02\xa4\x3d\x67\xdc\xbf\xfc\xb8\xea\x93\x77\xe2\ +\x8c\x5b\x11\x14\xcd\x5d\x7a\x5f\x9b\x35\x4f\xe5\x98\x11\x49\xd8\ +\xe2\xf4\x6e\xe6\xa3\x7d\x84\x7c\xf5\xa9\x85\xe2\x12\xe2\xbb\xd8\ +\x77\x0c\x28\xb1\xca\x13\xac\xb3\x6c\xda\x89\x16\x62\x4f\x4b\x27\ +\x97\x09\xa2\x78\xbc\x9d\xbe\x1a\x60\xa3\xbb\xaa\x94\x95\x95\xc1\ +\x17\x53\xa7\x4e\xc5\x30\xac\xa9\xa9\xe9\xf0\xb5\x00\x36\xc2\xe5\ +\xa8\xba\xba\x1a\x12\x6b\x7a\x46\x06\x00\xc0\x60\x30\xa4\xa6\xa4\ +\xc0\xa8\xd6\xe9\x74\xaa\x10\x2b\x00\x20\x55\x8b\xae\x1d\xa6\xdb\ +\xdf\x16\x96\x3c\x0a\x2e\x78\x98\x8e\x30\xbf\x2a\x47\xaf\xf8\xad\ +\xc0\x30\xcc\x68\x34\xc2\x86\xef\xd1\x73\x79\xab\xd5\x0a\xd7\xb5\ +\x54\x02\x46\x89\x98\xba\x0d\x2a\xa1\x84\x20\xe2\x30\x87\xc3\xf1\ +\x8f\x7f\xfc\xa3\xb1\xb1\xd1\xd1\xd6\x46\x6a\xb5\x8f\x3c\xf2\x08\ +\xec\x2e\x07\x00\x20\x08\x42\xaf\xd7\x87\x42\x21\xc5\xb1\xf5\x0e\ +\x18\x86\x4d\x9a\x34\x29\x56\x21\x59\x34\xf4\x7a\xbd\x96\x20\xc2\ +\xaa\xbe\xf4\x70\x61\xcd\x6a\xb5\xbe\xf3\xce\x3b\x39\x39\x39\xe3\ +\xc6\x8d\x5b\xbb\x66\xcd\x47\xdb\xb6\xc1\xbd\x06\x83\x01\x41\x90\ +\xb2\xb2\xb2\x8d\x1b\x37\x32\x2c\x0b\x00\x88\xce\xc3\xea\x75\xba\ +\xbe\xf0\xfb\x9a\x1c\x1d\x8e\x82\x0a\x2f\xd7\x44\xf1\x6e\xa6\x67\ +\xde\x51\xb1\x20\xf9\xf9\x97\xba\x59\x04\x80\x1b\x28\x95\x9d\x6c\ +\xc1\x6b\x82\x5c\x9b\xd2\x5c\xf0\xa4\x8b\x51\xf4\x3a\x21\xed\x39\ +\xe3\xd6\xff\xca\x5d\x7e\xb2\xf9\xd8\x1e\x75\x7a\xc5\xb4\xba\x82\ +\xbb\x1f\x52\x97\x55\x4d\x32\xe3\xb3\x6c\xfd\x62\x29\x27\xad\x3e\ +\x35\x52\x5c\x4f\x4d\xbf\xe2\x81\xfc\xe9\x98\x41\xa2\x9b\x6a\x42\ +\x3d\xbd\xc2\x80\x12\x6b\x50\x16\x1e\xe8\x30\xc4\xa0\x41\xee\xcd\ +\xd5\x1d\x71\x32\x92\xf2\x09\x76\x55\x99\x69\xbb\xbe\x3a\x2f\x8a\ +\x62\xed\xb5\x54\xdd\xd8\xb1\x63\x01\x00\xc7\x8f\x1f\x87\x6f\x09\ +\x1c\x7f\xe8\xa1\x87\x24\x56\x15\x45\xb1\xa5\xb5\x15\xbe\xce\x48\ +\x4f\xef\xbc\xcb\xb5\x19\x7a\x3c\x15\x4d\x5a\x0c\x99\x99\x4a\x74\ +\xd0\x82\x54\x06\xd6\x4a\xf1\x6e\x46\x88\x35\x8b\x31\x9b\xcd\x90\ +\x58\xa3\x99\xd1\x64\x32\x41\x62\x55\x89\x46\xa5\x54\x40\x38\x1c\ +\xa6\x69\x5a\xc5\x69\x18\x72\x47\x44\xb9\xc1\x3b\x9b\x37\x4b\x4b\ +\x64\x41\x8e\xdb\xbe\x7d\xbb\x44\xac\xf0\x14\x48\xac\xf1\x27\x10\ +\x12\x0b\x04\x41\x72\x72\x72\xaa\xaa\xab\xe1\x5b\x1d\x49\xe6\xe6\ +\xe6\x46\xf4\xe2\x86\x69\xd6\x94\xd4\x54\x47\x5b\xdb\x5f\xfe\xf2\ +\x97\x67\x9f\x7d\x76\xf9\xf2\xe5\xd5\xd5\xd5\xb0\xd6\x0b\x8e\x9c\ +\x61\x18\xc8\xaa\x8a\x50\x7f\x58\xc6\x03\x13\x8e\xce\x4c\xed\x54\ +\x35\x04\x39\xf1\x92\x8f\xab\x0d\x72\x1d\x09\x22\xd9\x1b\x2b\x95\ +\x85\x0a\x81\x8f\xea\x15\x32\x70\xbc\x08\xf6\x39\xe8\xb5\x39\xfa\ +\xe8\x78\x1a\x41\x31\xeb\xc4\x19\x05\x53\x67\xce\x00\xed\xa7\x4e\ +\x9d\xba\x78\xf1\x62\x4d\x4d\x4d\x44\x26\x8d\x48\xb6\x16\xde\xfb\ +\x98\x8a\xac\x0a\x01\x60\xae\x8d\x48\xac\x6c\x96\x15\xc4\x26\x4a\ +\x68\xa1\x78\x07\x9d\x98\xd5\xa7\x08\xc8\x93\xe6\x69\x24\xd6\xc7\ +\xcf\x67\x40\x89\x35\x74\x2d\x15\xa0\xd7\xa0\xf0\x13\xc5\x51\x64\ +\xbe\x5d\x3b\x3c\x49\xf3\x4d\x6b\xa7\x7d\x2a\x23\x88\x07\x1c\x54\ +\x7d\x08\x5f\x90\xa6\xd5\x62\x88\xcb\xe5\x92\x4a\xcb\x61\x4d\x7a\ +\x7d\x7d\x3d\x7c\x3b\x7a\xf4\x68\x79\xa3\x8e\xf6\xf6\x76\xe9\xc8\ +\xf4\x6b\xc4\x2a\xf1\xa9\xba\x1e\x53\x04\xa0\x2e\xc8\x9f\xf3\x28\ +\xf8\xbf\xa8\xac\xfd\x9a\xcd\x66\x28\x0c\x88\x26\x2f\x29\x8c\x52\ +\xe1\x35\x79\x32\xc1\xeb\xf5\x76\x4b\xac\x11\xa2\x54\x4f\x54\x00\ +\x2b\x7f\x9b\x92\x92\x02\xf3\x0c\x7d\xcf\xb1\xf6\x1a\x13\x27\x4e\ +\x94\x88\xf5\x3b\xdf\xf9\xce\x8a\x15\x2b\xf6\xed\xdf\xbf\x59\xa6\ +\xac\x82\x85\x61\xa9\x29\x29\x00\x00\x67\x7b\xfb\x6b\xaf\xbd\xf6\ +\xd4\x53\x4f\x3d\xfa\xe8\xa3\xcf\x3d\xf7\x5c\xab\xc3\x11\x08\x04\ +\x40\xd7\x5c\x76\x34\x0a\x0a\x0a\x12\x38\x60\x83\x06\x29\xb6\xe2\ +\x70\x8e\xcc\x0a\x62\x85\x8f\xab\x0b\x72\x7d\x71\x9b\x8e\x40\xb4\ +\x54\x36\x83\x8c\x6c\xff\x97\x58\x58\x09\x74\x46\x2a\x71\x44\xa9\ +\x08\xaa\x3d\x2c\x9e\x72\x31\xd3\x52\x62\xda\x3f\x0e\x1b\x36\x0c\ +\x3e\xb7\xa0\x6f\x4e\x5b\x5b\x1b\x4d\xd3\x14\x45\x69\xb5\xda\x73\ +\xa6\x82\x30\x12\x93\x3a\x12\xe8\xab\x12\xe4\xc4\x16\x8a\x6f\xa6\ +\x3a\x6d\xbf\xfb\x7e\xc1\x08\x48\x32\x8f\x74\x12\xb3\x69\xd1\x04\ +\xa6\x6d\x06\x36\xc7\x7a\x2d\x15\x90\xd4\xf5\x71\x30\xdc\x80\xdd\ +\x93\x6b\x38\xd0\x16\xae\x0b\x74\xc6\x26\x57\xfd\xac\x83\xe2\x17\ +\xd8\xb5\x40\xd6\x3c\x12\x1a\xe7\x48\xed\x24\xe5\x6b\x44\x00\x80\ +\xcb\x97\x2f\x4b\xaf\x61\xab\xf4\x70\x38\x2c\xe9\x28\x63\x65\xe2\ +\x60\x65\xed\x45\xaf\x42\xbb\x97\xce\x9b\xc6\x7e\x72\x49\xa9\xcc\ +\x68\x35\x92\xb4\xcb\xef\xf7\xc7\x92\xe8\x47\xac\xdd\xab\xd8\x5d\ +\x63\x18\x96\x6c\x32\xf9\xbc\x5e\x8f\xc7\x23\xfd\x47\x24\xea\x84\ +\x60\x18\x86\xa2\x28\xe9\xf9\xa1\x32\xb6\x01\xc3\xec\xd9\xb3\x77\ +\x7c\xf2\x89\x20\x08\xe0\xda\xdf\x7f\xe1\x82\x05\x5a\x82\x78\x6b\ +\xd3\x26\x98\x48\x85\xc4\x2a\x3d\x60\xce\x97\x97\x7f\xf2\xc9\x27\ +\xab\x57\xaf\xde\xb0\x61\xc3\x73\xcf\x3d\x07\xb3\xc3\xea\x25\x6a\ +\x63\xc6\x8c\xe9\xa7\xc1\xe3\x28\x32\xc9\x8c\x4f\xba\xd6\x0d\xf0\ +\x8a\x9f\x87\x76\x59\x89\x22\x59\xb9\x54\xd6\x80\x81\x0c\x9d\x26\ +\x53\x87\x66\xf6\x43\xbb\xe6\x89\x66\xfc\x6a\x80\x8f\xee\xb9\x09\ +\x00\x38\xed\x62\x73\x0d\x9a\x6e\xed\x32\x30\x0c\xb3\xd9\x6c\x50\ +\xb4\x57\x1f\xe4\xbe\x6e\x65\x54\xc2\xf9\xbe\xfb\xaa\x78\x59\xa1\ +\x29\x24\xb4\xd0\x7c\x6b\x28\xf1\x8d\x17\x01\x00\x49\x1a\x24\x4b\ +\x8f\x65\x90\xfd\x28\x4c\xf6\xb2\xc2\x00\x47\xac\x9d\xc4\x6a\x88\ +\x7a\x44\x1b\x34\xc8\xf2\x4c\xb2\xdc\x83\x1d\x75\x86\xa1\x68\x3f\ +\xc4\x09\x3b\x9b\xa8\x3c\x84\x40\x35\xb8\xc0\xb1\xe0\x5a\x5b\x1e\ +\xad\xb6\xb3\x86\x2c\xa2\xaf\xa4\x94\x8a\xd5\xeb\xf5\xf0\xd7\x58\ +\x5f\x5f\x0f\x7f\xc0\x18\x86\x45\xf7\x1a\x71\xd0\x42\xb9\x97\xad\ +\x8a\x32\xd2\x06\xb2\xa6\x84\x7a\xd5\xc2\x05\x89\x11\x78\x8e\xf3\ +\xfb\xfd\xf2\xf0\x39\x1e\x89\xbe\xfc\x98\x6e\x55\xee\xe6\x28\x62\ +\x95\xaf\x50\x49\x37\xca\xca\xca\x8a\xb8\x78\xf4\xd8\x06\x0c\x29\ +\x29\x29\x33\xa6\x4f\x87\x6b\x4d\xf0\xa1\x48\x51\xd4\xec\xd9\xb3\ +\x51\x14\x7d\x6b\xd3\x26\x9e\xe7\x61\x34\x2d\x7f\xe6\x7d\xfa\xd9\ +\x67\x79\x79\x79\x45\x45\x45\xeb\xd7\xaf\xdf\xf8\xea\xab\x0c\xc3\ +\xa8\x2c\xfa\x43\x75\x5d\xff\xff\x3f\x00\x8e\x22\x63\x4d\x1a\x98\ +\x9e\x82\x4e\x6c\x55\x01\xae\x8d\x16\x82\x5c\x62\xd6\x9a\x83\x3c\ +\xa8\x0a\x70\x55\x01\x00\x00\x20\x31\x24\x9d\x44\xb3\xf4\x58\x3a\ +\x89\x25\xa4\x19\x09\x02\xc0\x02\x3b\xa1\x68\xf4\x25\x02\xb0\xcf\ +\x11\x5e\x37\x2c\xde\x56\x60\x15\x5e\xee\x40\x9b\x5a\xdc\xd8\x3b\ +\x5f\x15\xb8\xfa\xd4\x44\xf1\x0e\x4a\x68\xa4\x94\x8d\x65\xfb\x88\ +\x54\x2d\x92\x4e\x62\x03\x96\x84\x29\xf7\x70\x03\xac\x0a\xe8\x7c\ +\xa1\x8f\x91\xc5\x1f\x6f\xc6\x73\x0c\x98\xdc\xe2\xef\xaa\x68\x18\ +\xff\xfd\x9f\xd4\x7c\xb9\x25\xd0\x5c\x0b\x19\x6a\xc4\x88\x11\xe5\ +\x17\x2e\x00\x00\xca\xcb\xcb\x1d\x0e\x07\x0c\xf4\x2e\x5f\xbe\x7c\ +\xea\xf4\x69\x78\x4a\xea\xb5\x1f\xaa\xe4\x6c\x36\x76\xcc\x18\x29\ +\x66\x14\x44\x50\xe5\xe7\xce\x7b\x98\x36\xa5\x26\xaf\xa3\x92\xf1\ +\xf1\x66\xfc\x74\x07\x03\x15\x0b\x49\xaa\x9f\x41\x97\xc5\x77\x8f\ +\x47\x4e\x5e\xf2\x5d\x3e\x9f\xcf\x66\xb3\x31\x0c\x03\x9d\x00\x61\ +\x0b\x2c\x97\xcb\xd5\x7a\x2d\x23\x0c\xae\xb5\x20\x56\x81\x24\x0c\ +\x90\x7a\x64\x45\x17\x74\xc9\x89\x55\x65\x6c\x03\x89\x15\x2b\x56\ +\x1c\x3b\x7e\x5c\x10\x04\xc8\x8f\x2f\xbe\xf8\xe2\xa3\x8f\x3e\x3a\ +\x73\xe6\x4c\x92\x24\x5f\xd9\xb8\xd1\xe9\x74\x82\xae\xd5\xbd\x00\ +\x80\x37\xdf\x7c\xf3\xd7\xbf\xfe\xf5\xd4\xa9\x53\x97\x2e\x5d\xea\ +\xf5\x7a\x6d\x36\x1b\xae\xd1\x28\xd6\xbc\x4e\x9e\x3c\xb9\x2f\xd5\ +\xba\xbd\x03\x02\xc0\x48\xa3\x66\xa4\xb1\xf3\x87\x53\x1b\xe4\xab\ +\x03\x5c\x6b\x88\xf7\x25\x88\x64\x69\x5e\xac\x0d\xf2\xd0\x38\x26\ +\x51\x52\x59\x13\x8e\xce\x4c\xc1\x15\x5d\x51\xdc\x8c\x70\xb4\x9d\ +\x99\x6d\xeb\xbe\x1f\xc4\xd1\x76\x46\xd1\x85\x40\x42\x8f\x7c\x55\ +\x38\x11\xb4\xf5\xf3\xea\x93\x4d\x8b\x66\x5c\x5b\x7d\x1a\x48\x8b\ +\x48\x11\x80\x2a\x3f\x3b\xc0\xc4\x2a\xa5\x02\x62\x46\xe0\xd0\xe2\ +\x4f\xee\xfc\xaf\x4b\xcb\x1a\xf3\xe0\x8f\x9b\x0e\x7d\xd1\xd8\xd8\ +\x68\xb3\xd9\xe6\xcf\x9f\xff\xd5\xd7\x5f\x33\x0c\x13\xa2\xa8\xff\ +\xf8\xcf\xff\x1c\x3b\x66\x0c\x00\xe0\x7c\x79\x39\x9c\x72\x02\x00\ +\x9c\x4e\x67\x30\x18\x6c\x6e\x6e\x3e\x74\x6d\x11\x79\xf1\xe2\xc5\ +\x00\x00\x2f\x2b\x54\x7a\xd9\x8b\x5e\x36\x3a\x99\x6f\x21\xd0\xf1\ +\x66\x62\xf4\x35\xb3\x82\x40\xec\xc8\x5a\x8e\x88\xb0\x54\x1e\x14\ +\xcb\x77\x6d\xdc\xb8\x31\x1c\x0e\x07\x65\x39\x8d\x68\x74\x5b\xab\ +\x0a\x63\x5e\x79\xc6\x36\x22\x13\x12\xb1\x57\x4e\xbb\x11\x63\x1b\ +\x48\x64\x66\x66\xce\x9f\x37\x6f\xdf\xfe\xfd\x30\x47\xd1\xd0\xd0\ +\xf0\xbb\xdf\xfd\xee\x27\x3f\xf9\x49\x51\x51\xd1\x53\x3f\xfe\xf1\ +\x1b\x6f\xbc\x01\xa2\x9e\x10\x21\x8a\xfa\xd3\x2b\xaf\xfc\xfa\xff\ +\xfd\xbf\x7b\xd6\xae\x85\x93\x12\xa3\xd1\xa8\x98\xd0\x48\x6c\xcf\ +\xed\xde\x61\xb8\x01\x93\x92\x89\xcd\x14\x7f\xd9\xc7\xb5\xd0\x82\ +\x8f\x15\x12\x12\x75\xb1\x82\xd8\x18\x12\x1b\x43\x0c\x00\x00\x43\ +\x80\x9d\xc4\x32\x75\x68\xba\x0e\xcb\xd4\xf5\x78\x69\x65\xbc\x19\ +\xaf\x09\x72\x8d\x21\x05\x85\x40\x99\x87\xcd\x4b\x52\x7b\x3e\x09\ +\x22\xd8\xd3\x1a\xae\x0a\xa8\x3d\xfb\xe3\xf1\x55\x09\xf3\x62\x0b\ +\x2d\xb4\x50\x7c\x0b\xc5\x3b\xc3\x89\xf9\x13\xc9\x31\x48\x4a\x36\ +\x5a\x28\x3e\xc4\x0d\x60\x2a\x80\xe2\x45\x69\xd2\xad\x1e\x09\x42\ +\xe7\xff\xe1\x49\xb8\x24\xc6\x42\x31\x2c\x67\xfe\xca\x03\x5e\xd7\ +\x08\x56\xb0\x5a\xad\xff\xfa\xf8\xe3\xaf\xbe\xfa\x2a\xcb\x71\x0c\ +\xc3\x9c\xbd\x96\x01\xd0\x91\x64\x5a\x5a\x5a\x5d\x7d\x3d\x45\xd3\ +\x4f\x3d\xf5\x14\xc7\xf3\x30\x0f\x30\x79\xd2\x24\xcb\xc8\x71\x5f\ +\x34\xd3\x52\x02\x57\x8e\x3c\x23\x3e\xd1\x1c\x69\xa4\x1d\xba\xf6\ +\x15\x32\xc6\x7e\x00\x80\x28\xf2\x92\xef\x1a\x3e\x7c\xb8\x56\xab\ +\x0d\x87\xc3\xd1\xbb\xa2\x31\x63\xc6\x0c\xf5\x5e\x17\x40\x12\x06\ +\xc8\xf8\x25\x3a\x62\x95\xef\x8d\x88\x58\xd5\x2f\xde\xaf\xb8\xe7\ +\x9e\x7b\x2a\x2a\x2a\x92\x92\x92\x78\x9e\x0f\x33\x4c\x98\x61\x7e\ +\xf7\xbb\xdf\x3d\xfd\xf4\xd3\x13\x26\x4c\x78\xe2\x89\x27\xc2\xe1\ +\x70\x44\xc4\x0a\x00\x68\x6e\x6c\xdc\xb4\x69\xd3\x13\x4f\x3c\x01\ +\xe9\xd8\x6c\x36\x47\x13\x6b\x72\x72\xf2\xf8\xf1\xe3\x07\xe8\xff\ +\x10\x1f\x32\x75\x98\xf4\x45\x72\x31\xc2\x45\x2f\x57\x1f\xe2\x13\ +\x45\xb2\x7d\x97\xca\x2e\xb2\x93\xef\xd7\x51\x8a\xb1\xe1\x9e\xd6\ +\x70\x72\x8c\x18\x22\xcc\x8b\x3b\x9b\x69\xc5\x5e\x0c\x12\x54\x7c\ +\x55\xa4\xd5\xa7\x26\xaa\x7b\xb3\xa8\x5e\x00\xa6\xa7\xed\x3a\x74\ +\xf0\x14\x19\x37\x86\x78\x30\x90\x8b\x57\x41\x59\x1e\x3a\x49\xa1\ +\x0e\x20\x12\x76\x12\xbd\x37\x57\x77\xd0\xc9\x5c\xbe\x26\xc6\xd2\ +\x9a\xac\x5b\x6b\x43\xf3\xec\x64\x51\x51\xd1\x7f\xfd\xd7\x7f\xed\ +\xdc\xb9\xb3\xb2\xb2\xd2\xd9\xde\x9e\x64\x30\x4c\x98\x30\xe1\xae\ +\xbb\xee\x02\x00\xfc\xe6\x37\xbf\x09\x86\x42\x70\xe6\xa8\xd1\x19\ +\x86\x2f\xba\xdb\x56\x3c\x73\x67\x53\xa4\xd6\x0a\x36\x79\x1d\x67\ +\xc2\x15\x13\x2e\x52\xc4\xaa\x2e\x3c\x54\x49\x92\x92\x24\x79\xef\ +\xbd\xf7\xbe\xfb\xee\xbb\xb1\xce\x85\x7e\x80\xe9\x76\xfb\x94\x29\ +\x53\x54\xca\xed\x25\x44\xd7\x08\x44\x13\xab\x9c\x40\xe5\x63\xbb\ +\x81\xc2\x00\x00\x80\x4e\xa7\xdb\xb0\x61\x83\x54\xbf\x0b\x00\xf0\ +\x07\x02\xcf\x3f\xff\xfc\x4f\x7f\xfa\x53\x69\xe9\x29\x39\x39\x39\ +\xa2\xfc\xec\xc4\xc9\x93\x23\x77\xed\x5a\xb2\x64\x09\x88\xea\xa1\ +\x04\x31\x7f\xde\xbc\x81\xcf\x03\xc4\x0f\x2b\x81\xce\xb6\x11\xb3\ +\x01\x00\x00\x78\x59\xe1\x92\x8f\xab\x0f\xdd\x60\xa9\xac\x41\x83\ +\xa8\x38\x7f\x03\xa0\xc0\x7a\x5e\x56\xf8\xbc\x91\x56\x59\x41\x52\ +\xf4\x55\x71\x31\x42\x2b\x25\xb4\xd0\x7c\x53\xa8\x07\x66\x51\xf1\ +\x63\x60\x04\x15\xbd\x46\x7b\x58\x00\x03\x49\xac\x72\x43\xeb\x38\ +\xf3\xc7\x38\x8a\x2c\xb2\x6b\xf3\x0c\xd8\xfe\xd6\x4e\x77\x6a\x4e\ +\x14\xf7\xb6\x52\x75\x41\xbc\xc8\x6a\x7b\xe0\xfb\x0f\x45\xa7\x4e\ +\x9e\x7d\xf6\xd9\x3d\x7b\xf6\xd4\x05\x38\x62\xcc\x54\xbd\x2d\x43\ +\x44\xd0\x88\xe5\xfe\x74\x1d\x36\xc1\x4c\x8c\x48\x8a\xb9\x2c\x25\ +\x8f\xac\x93\x55\x1f\x00\x46\xa3\x11\xd3\x68\x78\x8e\x03\x4a\x61\ +\xe9\xa2\x45\x8b\x32\x33\x33\xf7\xef\xdf\x1f\x08\x06\xcd\x26\x93\ +\xa2\x1f\x60\x3c\x7f\x04\x08\x48\xa3\xb1\x26\xfb\x10\x4e\x99\x4d\ +\x2d\xbc\x3e\x94\x1f\xf6\xd1\x2e\xa0\xef\x80\x3a\x39\xb9\x94\x38\ +\x44\x51\x2f\xbe\xf8\xe2\x8f\x7f\xfc\xe3\xd1\xa3\x47\x03\x00\x52\ +\x53\x52\xa2\xeb\x7a\x3f\xdc\xb2\x25\x37\x37\x77\xf4\xe8\xd1\xd1\ +\x52\x39\x14\x45\xe7\xcf\x9f\xdf\xbf\x83\x4e\x1c\x4c\x38\x3a\x2d\ +\x85\x98\x96\x02\xc0\x40\x49\x65\xd3\x49\x4c\xb1\x87\xa0\x8a\xf3\ +\x77\x34\x03\x36\x53\xfc\x57\x2d\x61\x95\xa5\x24\xc9\x57\x45\x10\ +\x81\x33\x2c\xb4\xd2\x7c\x0b\xc5\x37\x53\x09\x13\x4e\x48\x80\x0f\ +\x0f\xb8\xfa\x94\xa5\x1f\xec\x96\xe4\xee\x01\x26\x56\x79\x8a\xc6\ +\xa0\x3a\xc5\x8e\xc0\x88\x24\x8d\x7d\xb8\x61\xaf\x83\x96\x44\xa6\ +\x55\x7e\x16\x2e\x2e\x69\x10\xc4\x88\x23\x7a\x1c\x35\x68\xd0\x24\ +\x0c\x18\x34\x28\x4a\x58\xc8\x39\x77\x99\x28\x1e\x00\x20\xff\x78\ +\x35\x48\xe7\xc2\x54\xb7\x42\x10\x79\x64\xad\xa2\xb5\x82\xb0\x5a\ +\x2c\x90\xce\x14\xa3\xc2\x31\x63\xc6\x24\x4a\x0f\x14\x6d\x70\x25\ +\x2f\x9c\x85\x90\xef\x45\x10\xc4\x64\x32\x41\x4a\xbd\xb1\x11\xab\ +\x84\xa4\xa4\xa4\xc2\xd1\xa3\xa5\x1a\x81\x10\x45\xbd\xf8\xd2\x4b\ +\xff\xfe\xd4\x53\x63\x64\x4b\x8b\x72\x08\x82\xf0\xca\x2b\xaf\x14\ +\x15\x15\x95\x46\xf5\x86\x99\x36\x75\xaa\xa2\x19\xe3\xe0\xc7\x40\ +\x4a\x65\x25\x5d\x91\x3c\xb2\x9b\x97\xa6\x6d\xad\x57\x76\xfe\x96\ +\x83\xe6\xc1\x67\x4d\x6a\x47\x91\x18\x32\xcd\x8a\x37\x86\xf8\x53\ +\x2e\xa6\x9f\x56\x9f\xec\x24\x66\x27\xd1\x2c\x3d\x96\x41\xde\xb0\ +\xca\xe0\x5e\x00\x46\x72\x03\x49\xac\x9d\x11\x2b\x81\x22\x3d\x4d\ +\xbd\x1b\x34\xc8\xbc\x34\xed\x27\x8d\x62\xb0\x6b\xf8\xc9\x89\xa2\ +\x9b\x11\xd5\x73\x37\xc9\x38\x36\xde\x82\x17\x1a\x35\x71\xae\x0c\ +\xf6\x28\xb2\xb6\x5c\x23\xd6\x04\xe6\x31\x59\x41\x0c\xf1\xa2\x1e\ +\x43\xe4\x5f\x26\x48\xac\x11\xb1\xa7\x54\x38\x0b\x11\xb1\xd7\x6c\ +\x36\xc3\x2d\x37\x36\xc7\x2a\xc1\x60\x30\xfc\xe2\x17\xbf\xd8\xb7\ +\x6f\xdf\xc7\x1f\x7f\x1c\x0c\x85\x00\x00\x0c\xc3\xfc\xef\xff\xfe\ +\x6f\x66\x66\x66\x43\x63\xa3\xe2\x29\xfe\x40\x40\xd1\x4e\x70\xf9\ +\xf2\xe5\xfd\x3b\xd6\x01\x41\x7f\x4b\x65\x03\x9c\x78\x49\x49\x2a\ +\x3b\x27\x95\xd8\xe3\x50\x48\x08\x44\x9c\xab\x7e\x00\xcd\x8b\xea\ +\xcd\x57\x7a\x01\x1c\x45\x60\xb8\x3d\x08\x0d\xc3\xe2\x84\xf4\x80\ +\x19\xc8\x54\x40\xe7\x2d\x7b\xaa\x23\x0b\x72\xe2\xa9\x8e\x70\x85\ +\x57\x4d\xea\xa1\x88\xdc\x24\x7c\xbc\x49\x33\xcc\xd0\xb3\xff\x63\ +\x8f\x22\x6b\x29\x95\xd9\xeb\xe9\x36\x9c\x1b\xfa\x58\x21\xc4\x8b\ +\x01\x4e\x08\xb1\x42\x58\x00\x00\x00\x2d\x0a\x56\x64\xeb\xa5\xf8\ +\x1a\xa6\x1d\x18\x86\x91\x77\x22\x81\x06\xd8\xd7\x2f\x15\x0c\x32\ +\x0c\x23\xd9\x4e\xa7\xa6\xa6\xd6\xd4\xd4\x80\x41\x43\xac\x00\x00\ +\x04\x41\x16\x2d\x5a\x34\x63\xc6\x8c\x2f\xbe\xf8\x62\xf7\xee\xdd\ +\x0c\xcb\xf2\x82\x10\x8b\x55\x63\x61\xc2\xf8\xf1\x7d\xaf\x64\x1d\ +\x6c\x18\x60\xa9\x6c\x22\x2e\x99\x18\x48\x8c\x9f\x3e\x68\x56\x9f\ +\xfa\x02\x29\x70\x1f\x38\x62\xf5\x5d\x8b\x04\xf5\x71\xe7\x9b\xc3\ +\xbc\x78\xca\xc5\x96\x7b\x98\x08\x0d\xff\x48\x23\x9e\xa1\xc3\x82\ +\x9c\x10\xe0\x41\x90\x13\x7c\x14\x1b\xe0\x45\x11\x89\xbc\x6c\x0a\ +\x81\xf4\x94\x55\x01\x00\xfe\x6b\x41\x71\x3c\x91\xb5\xf5\x9a\x66\ +\x36\x82\xd4\x20\x04\x57\x83\xe8\xaa\x17\xfd\x4e\xc1\xdd\x24\xfa\ +\xdb\x44\xbf\x53\x08\xba\x50\xeb\x30\x72\xd5\x73\x00\xef\xcc\x1b\ +\x7e\xd5\x4c\xc1\x6c\x77\x04\xc2\x02\xb8\xe4\xe3\x52\x65\x02\x43\ +\x98\x76\xf0\x7a\xbd\x12\xb1\x46\x97\x7b\xba\xdd\x6e\xa9\x82\x4b\ +\xda\xab\x52\xfd\x75\x43\x60\x30\x18\xee\xb9\xe7\x9e\xa5\x4b\x97\ +\xee\xdf\xbf\xff\x9b\x6f\xbe\xe9\x69\x6d\xd8\xaa\x55\xab\xfa\x69\ +\x60\x83\x04\x03\x20\x95\x4d\xc4\x65\x7a\x0f\x0b\x81\x66\x90\x68\ +\xe6\x4d\xd8\xf9\xa6\x5b\x48\x4f\x86\x01\x8c\x58\xaf\xd5\xb3\x26\ +\xc7\x91\x60\x0d\xf3\x62\x99\x87\x3d\xef\x66\x22\x1a\x0e\xe6\x26\ +\xe1\xd3\x52\xa2\x7b\x62\xeb\xe0\x29\x41\x5e\x94\xb4\xfd\x00\x80\ +\x33\x2e\xc6\xc7\x8a\x8b\xd2\x7b\x56\xbf\x22\xd5\xfe\xc5\x13\x59\ +\x5b\xba\x0a\x03\xe4\x15\x56\xe1\x2f\x7f\x47\x1d\xda\xa4\x70\x4e\ +\xdd\x19\x34\x25\x97\x58\xf8\x24\x7c\xa7\xc8\xaa\x10\xfe\xae\xfd\ +\x6b\x61\xda\xc1\xed\x76\xc3\xb5\x20\xa0\x54\xa7\x2b\x27\x56\xb9\ +\xe2\xaa\x8f\x0d\x5a\xfa\x03\x46\xa3\xf1\xce\x3b\xef\x5c\xb9\x72\ +\x65\x79\x79\xf9\xd1\xa3\x47\xcf\x9e\x3d\x1b\x8a\xc3\x28\xa7\xb8\ +\xa8\x48\x2a\x91\xf8\x27\x41\xbf\x4a\x65\x07\x06\x37\xd6\xe5\x6b\ +\x20\x21\xa5\xef\x6e\x80\xdc\x4a\xbd\x3b\x03\x27\x82\x73\x6e\xb6\ +\xd4\x15\x8e\xa0\xd4\x4c\x1d\x36\xc3\x46\xaa\xd4\x35\x6b\x31\x44\ +\x8b\x21\xb7\x67\x90\x69\x3a\xec\xdb\xb6\x4e\x8b\xe5\x2a\x3f\x1b\ +\xe0\x84\xa5\x99\xba\xf8\x3f\x4b\x29\xb2\x4e\x26\xba\x0f\xf1\x54\ +\x4a\x57\x95\x59\x15\x00\x00\x80\xd0\x71\xdd\x5a\x9f\xc4\x90\x58\ +\x11\x44\x90\xed\x42\xac\xd1\x52\xd6\xe8\xaa\x56\xf9\xac\x3f\xc2\ +\xee\x7a\xb0\x11\x2b\x04\x82\x20\x13\x26\x4c\x98\x30\x61\x02\xcf\ +\xf3\x15\x15\x15\xe7\xcf\x9f\x2f\x2f\x2f\x6f\x6e\x51\x36\xac\x43\ +\x10\x64\xcd\x9a\x35\x03\x3c\xc2\x41\x85\x7e\x95\xca\x26\x16\xf2\ +\x8a\x86\x9b\x6b\xf5\xa9\x8f\x48\xc6\x31\x1f\xcb\x0f\x10\xb1\x72\ +\x22\x90\x88\xd2\x88\x2b\x13\x96\x20\x82\x0a\x2f\x7b\xda\xc5\x84\ +\xba\x46\x6a\x69\x24\x36\x35\x85\x88\x7f\x52\x3f\xc9\x8c\x1b\x35\ +\xc8\xde\x96\xce\x46\x81\xad\x14\xff\x71\x3d\xb5\x22\x3b\xd2\xe6\ +\x35\x16\xa4\xc8\x3a\x56\xdd\xad\x1c\x72\x71\x7b\xc4\xe2\xbb\x46\ +\x6f\xe6\x42\xca\xc9\x4d\xc1\x55\x2f\xbd\x4e\xd2\xc4\x24\xd6\x88\ +\x05\x04\x98\x76\x90\x27\x73\xa3\x89\xb5\x43\xe6\xbe\x9a\xd8\x3e\ +\x02\xfd\x0d\x0c\xc3\x20\xc3\x02\x00\xfc\x7e\x7f\x55\x55\xd5\x95\ +\x2b\x57\x2e\x5f\xbe\x5c\x57\x57\x27\xd5\xb3\x2e\x5a\xb8\x50\xaa\ +\xd9\x1d\x42\xbf\x4a\x65\x7b\x07\x69\xf5\x29\x4b\x9f\x60\xb3\xa8\ +\x9b\x08\x16\x2d\x3a\x70\xc4\x1a\x94\x71\x65\x52\xd4\x3d\x61\xfd\ +\xfe\xc9\x0e\x26\x42\x73\x6a\x21\xd0\x69\xa9\xda\x11\xd1\x27\x74\ +\x87\x11\x49\x9a\xe4\x61\xfa\x9d\x4d\x14\xe4\x68\x1f\xcb\x6f\xab\ +\x0b\x2d\xcb\xd2\xc5\xd3\xcb\x2c\x78\xdd\xdb\xb0\xfb\xef\x85\xdc\ +\x7b\x29\x82\xbc\x10\xd2\x08\x62\x10\xab\xe8\xbf\x2e\x38\x35\xe0\ +\x68\xac\x6c\x00\xcd\x8b\x82\x78\x3d\x6b\x63\x36\x99\x40\xec\x2a\ +\x00\x08\xe8\xc1\x1a\xbd\xf7\x86\x4b\x59\x7b\x04\xa3\xd1\x58\x54\ +\x54\x54\x54\x54\x04\x00\xe0\x79\xbe\xb9\xb9\xb9\xb1\xb1\x91\x20\ +\x88\xc9\x93\x27\xdf\xe8\xa1\x0d\x52\x44\x4b\x65\xeb\x43\xbc\x33\ +\x2c\x0c\x00\xc9\x92\x18\x92\xad\xc3\x6e\x99\xd5\xa7\xbe\x23\x9d\ +\xc4\xea\x02\x03\xe5\x15\xd0\x55\x1c\xda\x25\x72\xac\xf2\x73\xa7\ +\x3a\xc2\x11\x92\xa9\x64\x1c\x9b\x9a\x42\x8c\x4a\xee\xbd\x11\x4d\ +\xaa\x16\x5d\x3b\x4c\xbf\xb3\x99\xea\xa0\x3b\xbb\xad\x7c\xd6\x48\ +\x75\xdb\xe0\x9a\x15\x44\x29\xb2\x56\x31\x34\x90\x20\x57\x53\x46\ +\x10\x2b\x9a\x92\x0b\x5c\x0d\x51\x67\x00\x00\x80\xe8\xbd\x6e\xbf\ +\xa2\x1e\x17\x53\xbc\x28\xa5\x7a\x2d\x51\x9d\xaf\x72\x72\x72\xe4\ +\x15\x4d\x04\x41\x4c\x99\x32\x45\xda\x3b\x78\xaa\x5a\xfb\x02\xe8\ +\x4c\x76\xa3\xbc\x0e\x6e\x46\xf4\xb7\x54\x16\x00\x60\xc0\x40\xb6\ +\x41\x93\x73\x2b\xae\x3e\xf5\x1d\xe9\x3a\x14\x0c\x58\x8e\x35\xc0\ +\x5e\xff\x50\x25\xa6\xa8\x0f\x72\xc7\x3a\x98\x8e\xae\x2e\x53\x7a\ +\x0d\x3a\x35\x45\x5b\x98\xac\x6a\xd8\x17\x1f\x0c\x1a\xe4\xee\x6c\ +\xdd\xee\xd6\x4e\x9b\x57\xd8\xe0\xda\xcf\x12\xd3\x53\xb5\xb1\x4e\ +\x09\xc9\xbe\x7c\xf1\x04\xca\x92\x53\x2a\x88\x22\x2f\x24\x29\x66\ +\x83\x75\x8e\x67\x45\xca\x8b\xe8\x4c\xa0\x3b\xfa\x56\x27\x56\x82\ +\x20\xfe\xf3\x3f\xff\xf3\xf8\xf1\xe3\x24\x49\xda\x6c\xb6\xfc\xfc\ +\x7c\x79\x04\x4d\x10\x84\x44\xbb\x83\x3f\x15\x30\x84\xfe\x40\x02\ +\xa5\xb2\xb0\xdc\x20\xcf\x80\xdd\xda\xab\x4f\x7d\x47\x86\x0e\xd3\ +\x6b\xd0\x81\x22\xd6\x6b\x11\x2b\x8a\x20\x3a\x0c\x69\xa6\xf8\x93\ +\xed\xe1\x08\xf3\x5d\x1d\x86\x14\xa5\x68\xc7\x99\xf0\x04\xfa\x25\ +\xe2\x28\xb2\x2c\x93\x3c\xd4\x86\x5c\xf0\x74\x8a\x99\xa1\x54\x60\ +\x41\x8c\x06\x67\x5e\x36\x66\x64\x1d\x0b\xe6\x6b\xc4\x1a\x31\xdd\ +\x46\x92\xd4\x9a\xdc\x89\xde\x56\x48\xac\x2a\x55\xb3\x24\x86\x98\ +\x64\x7b\x21\xb1\xb6\x77\xed\x61\x65\xb7\xdb\xef\xbc\xf3\xce\x58\ +\x57\xb0\x5a\xad\x9d\x1d\xb6\xfb\x96\x0a\xb8\x72\xe5\xca\x81\x03\ +\x07\x6a\x6a\x6a\x68\x9a\x36\x18\x0c\xb6\xae\xb0\xdb\xed\x83\x47\ +\xcb\x35\x84\x58\xe8\x85\x54\x36\x49\x83\x64\x90\xe8\xa8\x64\xfc\ +\x06\x76\x45\xbc\xe9\x80\x00\x50\x90\x8c\x0f\x18\xb1\x76\xce\xf4\ +\x35\x08\xf8\xb4\x89\x8a\xe8\x80\x42\xa0\xc8\x04\x0b\x51\x64\xc1\ +\xfb\xe3\xc3\x43\x00\xb8\x2d\x4d\x6b\x25\xd0\x43\x32\xa9\x80\x8f\ +\x15\x96\x67\x29\x48\x05\x68\x59\xca\xc2\x18\x1f\xc1\x4b\xf6\x7d\ +\x11\xe4\x85\xa6\xe4\xaa\x9d\x46\x74\xb6\x7a\xce\x35\x60\xe9\x24\ +\xda\x4a\x0b\x1a\x04\xe8\x71\xcc\xa0\x01\x52\x79\x6e\x5e\x92\x46\ +\xfe\x07\x81\x69\x07\xbf\xcf\x17\xbf\x28\x55\xa5\x79\x4c\x9c\xe0\ +\x79\xfe\x9d\x77\xde\x39\x78\xf0\xa0\xb4\xc5\xe5\x72\xc1\x6b\xca\ +\x61\xb5\x5a\x53\x53\x53\xd3\xd2\xd2\xe0\xbf\x90\x70\xfb\xd8\xc6\ +\x75\x08\xfd\x87\x08\xa9\xec\xd6\xfa\x50\x74\xe3\x93\xe1\x06\x6c\ +\x79\x66\xcc\x76\x41\x43\x50\xc1\x44\xf3\x40\x11\xab\x34\xc5\x66\ +\x04\x51\xce\xaa\x28\x82\x4c\xb4\x10\xc5\x16\xbc\xbf\x9d\x68\xc7\ +\x9b\xf1\x64\x1c\xd9\xdd\xd2\x69\xe6\xd2\x46\xf3\x1f\xd7\x53\xcb\ +\xb2\xc8\x88\xde\x0c\xf2\xc8\x3a\xce\x21\x49\x32\xa6\x08\x83\x2b\ +\x2c\x6f\x9a\x06\xc3\x39\xbe\x4b\xc1\x98\x46\x6f\x46\x93\xed\xf8\ +\x8c\x07\x50\x6b\x67\xd2\x10\x47\x91\xbb\x72\xf4\xf2\x45\xaa\x58\ +\x90\xfa\xc2\xfa\xfd\xfe\x38\x39\x4b\x4a\xb3\xba\x7b\x4b\xac\xaf\ +\xbf\xfe\xfa\x89\x13\x27\xba\x3d\xcc\xe5\x72\xb9\x5c\x2e\x79\x77\ +\x1c\x00\x00\x8e\xe3\x36\x9b\x2d\x82\x6d\xd3\xd2\xd2\x22\xca\x28\ +\x86\x70\xc3\x41\xa0\x28\x00\x83\xa3\x6d\xf4\x2d\x01\x83\x26\x76\ +\x47\xb0\xc4\x22\x42\x92\x09\x91\xae\xc3\xe6\xa6\x91\x7d\x69\x8f\ +\xd3\x23\x0c\x33\x68\xee\xca\xe9\x22\x15\xd8\x5e\x1f\xba\x3d\x83\ +\x94\x0b\xb9\xe2\xb1\xe2\x8e\xc0\xf5\x26\x28\x3c\xef\xf3\xf9\xa4\ +\x2c\x27\x6a\x1b\xa1\x7f\xf2\x63\xbe\xbe\x14\xd1\x9b\x91\x64\x3b\ +\x6a\xce\x42\x0c\x16\x80\x29\xdb\x56\xc6\x19\xa9\xc3\xbe\xb0\x1d\ +\x1d\x1d\x71\x12\xab\xbc\x79\x8c\x7c\x6c\x71\xe2\xe4\xc9\x93\x12\ +\xab\x2e\x5f\xbe\x7c\xc9\x92\x25\x66\xb3\xd9\xe7\xf3\x39\x9d\x4e\ +\x87\xc3\xd1\xde\xde\xde\xd6\xd6\xe6\x74\x3a\x61\xd9\x82\x18\x35\ +\xa1\x64\x59\xb6\xb9\xb9\x59\xde\x98\x0b\x22\xd9\x64\x4a\xeb\x9a\ +\x4c\x48\x4b\x4b\xb3\x58\x2c\x08\x32\x34\xd9\x1c\xc2\x2d\x82\x81\ +\xce\xb1\xca\xd1\x4a\xf1\x1f\xd5\x05\x51\x04\x49\xd2\xa0\x49\x1a\ +\xa0\xd7\xa0\x49\x38\xaa\xd7\x20\x06\x0c\x31\xe2\x68\x92\x06\xd1\ +\x61\x48\x62\x73\x03\xd1\x52\x81\x9d\x4d\xd4\x3c\xbb\x4e\x92\x0a\ +\x48\xe3\x8c\x5f\xe2\x15\xb1\xf8\x2e\x27\x2f\x34\x7d\x34\x9a\x3e\ +\x3a\x21\x23\x87\x80\x53\xfb\xf8\xe7\xf5\xf2\x2e\x03\x11\x63\x8b\ +\x07\xbb\x77\xef\x86\x2f\xd6\xae\x5d\xbb\x62\xc5\x0a\xf8\x3a\x39\ +\x39\x39\x39\x39\x39\xa2\xfc\x89\xe7\xf9\xf6\xf6\xf6\xd6\xd6\xd6\ +\xf6\xf6\x76\x67\x7b\x7b\x9b\xc3\xe1\x74\x3a\xdb\xdb\xdb\x15\xbb\ +\x8e\xfb\xbc\x5e\x9f\xd7\x5b\x55\x55\x25\xdf\x88\x69\x34\xa9\x29\ +\x29\x30\xb0\x95\xc2\xdb\xac\xac\xac\xa1\xec\xed\x10\x6e\x46\x0c\ +\x10\xb1\x26\x69\x90\x50\x8c\xce\x0e\x82\x28\xfa\x58\xde\xc7\x02\ +\xc5\xc9\x88\x0e\x43\x8c\x38\xaa\xd3\xa0\x06\x0c\x18\x71\x2c\x49\ +\x83\x90\x1a\xc4\x84\x23\x11\xe6\x4f\xf1\x23\x42\x2a\x00\x00\x38\ +\xe0\xa0\xbc\xac\x76\x46\x2a\x81\x00\x40\x49\x86\x06\x3d\x8f\x58\ +\x01\x00\x6e\xb7\x3b\x21\xfe\x20\xc1\x60\x90\x24\xc9\x68\x4e\x81\ +\x24\x1e\xff\x12\x7f\x84\x1a\xac\x47\x63\x63\x18\xa6\xba\xba\x1a\ +\x00\xa0\xd3\xe9\x96\x2d\x5b\xa6\x7e\x30\x86\x61\x76\xbb\x3d\xba\ +\xd1\xac\xdf\xef\x6f\x6b\x6b\x6b\x6f\x6f\x97\xbf\x89\x2b\x63\x00\ +\x00\x20\x00\x49\x44\x41\x54\x22\xdc\xb6\xb6\x36\x8f\xc7\x23\xf5\ +\xd1\x91\xc0\x73\x9c\xc3\xe1\x88\x68\xe2\x4d\x10\x44\x49\x49\xc9\ +\xea\xd5\xab\x07\x67\xd9\xd8\x10\x86\x10\x0b\x03\x44\xac\x8b\x33\ +\xc8\x32\x37\xeb\x61\x85\x10\x2b\x04\x39\x91\x89\x5b\xb7\x4c\xf1\ +\x22\xc5\xf3\xd7\x38\xb7\x4b\xbe\x92\x40\x11\x83\xa6\x8b\x19\x6b\ +\xd2\xb5\x38\x57\xbd\xcc\x1f\x4a\x05\xbe\x75\xa2\xe7\xdc\x9d\xe6\ +\x69\x67\x5d\x61\x2f\x2b\x2c\x4e\x27\xa5\x88\x55\xdd\xe2\x5a\x8e\ +\x88\x92\xfc\x38\xcf\x82\xbd\x05\x61\x63\x41\xa9\xc9\x20\xcc\x54\ +\x7a\xbd\x5e\x9e\xe7\x71\x1c\x9f\x3b\x77\xee\x7d\xf7\xdd\x27\xcf\ +\x48\x42\xa2\x8c\x20\x56\x86\x61\xb6\x6e\xdd\x7a\xee\xdc\x39\xad\ +\x56\xbb\x70\xe1\xc2\x05\x0b\x16\xf4\x71\x6c\x10\x6d\x6d\x6d\xd0\ +\x27\x7b\xd8\xb0\x61\xbd\x0e\x1b\x8d\x46\xa3\xd1\x68\x8c\x0e\x6f\ +\x61\x9f\x7a\x98\x49\x80\xb4\xeb\x74\x3a\xe5\xd5\x0d\x10\x0c\xc3\ +\x40\x1b\x81\xc7\x1f\x7f\x7c\xd2\xa4\x49\xbd\x1b\xc3\x10\x86\x30\ +\xf0\x18\x20\x62\x35\xe1\xe8\x6d\x69\xd7\xd5\xa3\x9c\x08\x82\x9c\ +\x10\xe4\xc4\x00\x2b\x06\x38\x31\xc0\x09\x21\x5e\x0c\xb2\x42\x80\ +\x13\x23\xea\x59\x55\xc0\x08\x22\x13\xc3\x8c\x15\x45\x10\x18\xe4\ +\x26\xe3\xa8\x5e\x83\x26\xe1\x88\x01\x43\xf4\x1a\xc4\xa0\x41\x8c\ +\x1a\x14\x45\x00\x02\xc0\x6c\x1b\x61\xc2\x11\x49\x2a\x70\xd5\xcf\ +\x7e\xc2\x0a\xd2\xdd\xc9\xb8\x23\x56\xf5\xca\x51\x51\x14\xaf\x5c\ +\xb9\xd2\xd4\xd4\x24\xd1\x28\x24\x50\xf5\xde\x82\x00\x00\x96\x65\ +\xf7\xed\xdb\x17\x08\x04\x9e\x78\xe2\x09\x69\x23\x9c\xda\x47\xdc\ +\xe5\xaf\x7f\xfd\xeb\xb1\x63\xc7\xe0\xeb\x77\xde\x79\x07\xc7\xf1\ +\x39\x73\xe6\xc0\xb7\x7d\x69\xd0\x22\xf5\x23\x48\x78\xb4\x28\xf5\ +\xa9\x1f\x37\x6e\x9c\x7c\x7b\x30\x18\xec\xe8\xe8\x80\xb1\xad\xd3\ +\xe9\x6c\x6e\x6e\xbe\x72\xe5\x0a\xcf\xf3\x14\x45\x6d\xdc\xb8\xf1\ +\xd9\x67\x9f\x95\xdc\x67\x86\x30\x84\x41\x8e\x01\xed\xd2\x7a\xfd\ +\xae\x08\x30\xe1\xa8\x09\x87\xbe\x54\x5d\x20\x02\x10\xe2\xc4\x00\ +\x27\x06\x39\x21\xc4\x89\x41\x4e\xf0\xb1\x62\x88\x13\x02\x1c\x08\ +\x70\x82\x10\x9f\x71\x9a\x20\x8a\x41\x96\x0f\xb2\x20\xba\xc7\x35\ +\x00\x40\x87\x21\x7a\x1c\x4d\xd2\xa0\x06\x0c\x64\xea\x30\x49\x4e\ +\x2b\x3f\xd8\x10\xb7\x4a\x41\xee\xe4\x1f\x91\xfd\x74\xb9\x5c\x2f\ +\xbf\xfc\x72\x7d\x7d\x7d\x8c\x53\xbb\xc7\x89\x13\x27\xee\xbb\xef\ +\x3e\x69\x46\xdf\xd9\xa0\x45\x26\x3f\x60\x18\xe6\xf8\xf1\xe3\xf2\ +\x53\x0e\x1f\x3e\x2c\x11\x6b\x72\x72\xb2\xd4\x3c\xa6\xa7\x8a\x2b\ +\x89\x58\xd3\xd2\xd2\xe2\x39\xfe\xf0\xe1\xc3\x1f\x7c\xf0\x81\x56\ +\xab\x95\xcb\x00\xe0\xbf\x71\xe6\x76\x0d\x06\x83\xc1\x60\x90\xe7\ +\x2b\x3a\x3a\x3a\x36\x6e\xdc\x58\x53\x53\xc3\x30\xcc\xfb\xef\xbf\ +\xff\xb3\x9f\xfd\xac\x47\xff\x85\x21\x0c\xe1\x46\xe1\xc6\x10\xab\ +\x0a\x10\x00\x0c\x1a\x38\x97\x57\x88\x19\xa1\x37\x60\x80\xed\xe4\ +\x59\x8a\x13\x82\x3c\x80\xfe\xd0\xd1\x4d\xad\x63\x01\xa6\x17\x3a\ +\x54\xf5\x25\xc6\x9e\x14\xea\x49\x4e\xfe\x11\x51\xe1\x5b\x9b\x36\ +\xc5\xcf\xaa\xc9\x26\x93\xc5\x6c\xb6\x58\x2c\x56\xab\x35\x14\x0a\ +\x49\x41\x68\x53\x53\x93\x44\xac\x30\x3a\x76\x75\xad\x11\x88\x40\ +\x44\xfa\xd2\x62\x36\xb7\xb7\xb7\x47\x8f\xad\x5b\xf4\x34\x62\x3d\ +\x74\xe8\x50\x30\x18\x0c\x06\x83\xd1\x39\x07\x82\x20\x20\xd5\x4a\ +\x6c\x9b\x9a\x9a\x6a\xb3\xd9\xba\xd5\x5d\xa5\xa4\xa4\xfc\xfb\xbf\ +\xff\xfb\xd3\x4f\x3f\x4d\x51\xd4\x85\x0b\x17\x3c\x1e\xcf\x90\x36\ +\x76\x08\x37\x05\x06\x1d\xb1\xaa\x03\x7a\x03\x46\x88\x4f\x21\x04\ +\x11\xf8\x39\x21\xc8\x89\x21\x0e\x92\xaf\x18\xe2\x04\x1f\x2b\x04\ +\x79\x40\xc5\x1d\xea\x4a\x50\x6f\xd0\x1d\x01\xb3\xd9\x0c\x89\x55\ +\x6e\x2e\xe5\xf7\xfb\x2b\x2e\x5c\x90\x1f\x86\xe3\xb8\xd5\x6a\x35\ +\x9b\xcd\x26\x93\xc9\x9a\x92\x62\xb5\x58\x4c\x26\x53\x6a\x6a\xaa\ +\xd9\x6c\x36\x9b\xcd\xf2\x3c\x66\x7d\x7d\xbd\x44\xac\xd1\xae\x2b\ +\x72\xc1\x2c\x41\x10\x45\x45\x45\x67\xce\x9c\x91\xb6\xcc\x9c\x39\ +\x33\x62\x6c\x90\x58\xfb\x3b\x62\x5d\xb2\x64\x49\x47\x47\x47\x47\ +\x47\x47\xb4\xee\x8a\x61\x98\x68\xdd\x15\x8e\xe3\xff\xfa\xaf\xff\ +\x5a\x5c\x5c\xac\x7e\x59\xa3\xd1\x58\x52\x52\x72\xf8\xf0\x61\x51\ +\x14\xaf\x5e\xbd\x0a\x9d\x59\x86\x30\x84\x41\x8e\x9b\x8c\x58\x55\ +\x80\x4a\xe9\x05\x25\x04\x39\x91\xe2\xc5\x00\x27\x06\x58\x41\x6a\ +\x3d\x10\x6b\x25\xcd\x80\x63\xf1\x58\x5b\x49\x90\xd2\xac\x72\xf2\ +\xa2\x69\x5a\x7a\xbd\x72\xe5\xca\xa5\x4b\x97\x2a\xb6\x71\x56\x44\ +\xac\xdc\x68\x72\x72\x32\x86\x61\x14\x45\xd1\x34\x4d\x92\x9d\x55\ +\x31\x8f\x3e\xfa\xe8\x7b\xef\xbd\x57\x5a\x5a\xaa\xd5\x6a\x17\x2d\ +\x5a\x24\x5f\xbc\x02\x32\x61\x40\x2f\x16\xaf\xe0\x8b\x38\x23\xd6\ +\x92\x92\x92\x92\x92\x92\xf8\x75\x57\x2c\xcb\x9e\x3d\x7b\xb6\x5b\ +\x62\x05\x32\x0b\xb1\x68\x2d\xc1\x10\x86\x30\x38\x71\xeb\x10\xab\ +\x3a\x60\x7a\x21\x55\x0b\x00\x88\x5c\xe0\x86\xcd\xfb\xbc\xac\x48\ +\x73\x62\x80\x13\x59\x41\x28\x34\xc5\xad\x09\x00\x00\xc8\xc8\x2b\ +\x14\x0a\x49\x0d\x5a\xe4\x89\x45\x41\x10\xe2\x67\x55\xd0\xb5\x79\ +\x75\x44\xa4\x09\x7b\xaf\xba\x5c\x2e\x69\x25\x47\xa7\xd3\xad\x5f\ +\xbf\x3e\xe6\xd8\x54\x9b\xc7\xa8\x00\x46\xac\x04\x41\xc8\xff\x23\ +\x41\x4e\x3c\xed\x62\x00\x00\x26\x02\x35\x6a\x90\x64\x1c\x35\xe1\ +\x5d\x74\x6f\xf1\xeb\xae\x44\x51\xbc\xfd\xf6\xdb\xe3\x19\x89\xf4\ +\x48\xd0\xeb\xf5\x71\x0e\x7e\x08\x43\xb8\xb1\xf8\x67\x21\x56\x15\ +\xe0\x28\x62\x42\x91\x58\xa1\x6e\x3c\x88\x08\x30\x21\xad\x68\xb5\ +\x5a\x9d\x4e\x07\x23\xb5\x9e\x46\x8b\xf2\xe6\xd5\xd1\x9d\x59\xa1\ +\x24\x2b\xce\x25\x72\xb3\xac\x46\x40\xde\xb8\x45\x1d\x1e\x8f\x07\ +\x2e\xc7\x45\x1c\x7f\xb2\x83\xb9\x10\xd5\xd5\x91\x44\x81\x99\xc0\ +\x8c\x38\x6a\xc4\x11\x13\x8e\x9a\x09\xc4\xa0\x41\x92\xbb\xca\x8c\ +\x15\x75\x57\x71\x42\x8a\x9d\xe5\xb6\xe2\x43\x18\xc2\x60\xc6\x10\ +\xb1\x26\x00\x11\x8a\x2b\x79\xd7\x29\x48\xac\xbd\x70\xed\x93\x9a\ +\x57\x47\x9c\xab\x28\x65\x8d\x73\x6c\x1e\x8f\x27\x4e\x62\x8d\xb5\ +\x72\xd5\xa1\xe4\xc9\x4d\x0b\xa0\x95\xe6\x5b\xbb\x0a\x30\x50\x04\ +\x49\xd6\x20\x46\x02\x31\x69\x10\x23\x8e\x99\x09\x85\xf0\x36\x4e\ +\xc0\xc1\x60\x18\x26\xaf\x77\x18\xc2\x10\x06\x33\x86\x88\x35\x01\ +\x90\xff\xe0\xe5\x33\x77\xab\xd5\x0a\x57\x6c\x7a\x61\x2e\x25\x35\ +\xaf\x8e\xf0\x4f\x89\xee\x7c\x05\xc1\xf3\x7c\x4b\x4b\x0b\x8e\xe3\ +\x11\xd4\xd9\xbb\x06\x2d\x12\xb1\x46\x04\x89\x7e\x36\x5e\xab\x0e\ +\x41\x14\x3d\xac\xe8\x61\x41\x03\x00\x00\x5c\xaf\xba\x23\x30\xd4\ +\x84\x83\x64\x1c\x35\xe1\xa8\x09\x47\x93\x70\xc4\x84\x77\x8a\x8b\ +\x15\x41\xd3\xb4\xdf\xef\x07\x00\x58\xad\xd6\xa1\xf2\xd6\x21\xdc\ +\x2c\x18\x22\xd6\x04\x40\x9e\x0a\x90\x0b\x03\xa4\xed\xbd\xb0\x43\ +\x95\xce\xf5\x79\xbd\x72\x9f\x40\x48\x94\x1d\x5d\x15\x57\x4d\x4d\ +\x4d\x7f\xfe\xf3\x9f\xa1\x32\x61\xec\xb8\x71\x1b\xfe\xed\xdf\xa4\ +\xa5\xad\xde\x11\xab\x34\xfb\x96\x4b\x02\x38\x11\x04\xfb\x6c\x81\ +\xc4\xf0\x82\x93\x07\x4e\x3a\x32\xf2\x35\xe2\x68\x32\x8e\x9a\x71\ +\xa4\x20\x59\x23\xef\xa0\x03\x25\x0d\x00\x00\x5b\x7c\xe2\x84\x21\ +\x0c\x61\x30\x60\xa8\xad\x42\x02\x20\x27\x56\xc5\x3e\xa9\x0c\xc3\ +\x28\xda\x91\xa8\x20\x56\x63\x95\xe8\x3e\x02\x00\x80\x4d\x9b\x36\ +\x49\x55\xf6\x15\x17\x2e\xec\xf8\xe4\x13\x69\x97\x4a\xf3\x18\x15\ +\x5c\xa7\x33\x59\x2a\xc0\xa7\x64\x51\x96\x28\xf8\x59\xa1\x29\xc4\ +\x5d\xf0\xb2\x9f\x36\x52\x72\xc7\x1e\x89\xe2\xd3\xe3\x4b\x62\x0c\ +\x61\x08\x83\x01\x37\x4d\xc4\x2a\x8a\x62\x5b\x5b\x5b\x4d\x4d\xcd\ +\xd5\xab\x57\x3d\x1e\x4f\x7b\x7b\xbb\xdf\xef\x97\x24\x93\x3a\x9d\ +\xce\x98\x9c\x9c\x9a\x92\x62\xb7\xdb\xb3\xb3\xb3\xf3\xf2\xf2\x7a\ +\xea\xe4\xd4\x17\xc8\x1b\xb4\xc8\x45\xa6\x96\xae\xa4\xa6\xd3\x45\ +\xd5\x99\xc5\x46\x04\xb1\xa6\x5c\x5b\xdc\x87\x24\x1e\xa1\xeb\x82\ +\x49\x03\x09\x17\x2b\x2a\xe4\x63\x83\x2e\xae\xa0\x27\x19\x09\x45\ +\xad\x95\x47\xa9\x7a\x38\xe1\xe0\xc5\x2e\x4f\xfb\xfe\xab\xac\x1d\ +\xc2\x10\xfa\x0f\x37\x01\xb1\x5e\xb9\x72\xe5\xf8\xf1\xe3\x67\xce\ +\x9c\xe9\xd1\x12\x90\xdd\x6e\x2f\x28\x28\x18\x37\x6e\xdc\xd8\xb1\ +\x63\x8d\x46\x63\xff\x0d\x0f\xc2\x62\x36\x43\x62\x95\x62\x3d\xb8\ +\x51\x7a\xed\x76\xbb\x7b\x54\xea\x2e\x27\xd6\xf6\xf6\x76\x69\x3d\ +\x3d\x3a\x62\xc5\x71\x5c\x92\x1f\x40\x44\x3c\x54\xa0\x8b\x6b\xc4\ +\xd8\xd4\x21\x1d\x29\xcf\xd8\xfa\x95\xbc\x1f\x13\x8e\x24\x4d\x17\ +\xaf\xc8\x58\xd9\xde\x21\x24\x10\x4a\x05\x37\x43\xe8\x13\x06\x2f\ +\xb1\xf2\x3c\x7f\xec\xd8\xb1\xaf\xbf\xfe\x3a\xa2\x11\x08\x41\x10\ +\xe9\xe9\xe9\xb0\xf4\x53\xa3\xd1\x00\x00\x04\x41\xf0\xf9\x7c\xed\ +\xed\xed\xed\x1d\x1d\x7e\x9f\x0f\x1e\x06\x3d\xe8\x0e\x1d\x3a\x04\ +\x00\xc8\xc9\xc9\x19\x3b\x6e\xdc\x98\xc2\xc2\x31\x63\xc6\xf4\x93\ +\x7d\xbd\xc5\x62\xa9\xab\xab\x03\xb1\xdb\x53\xf7\x34\xcd\xaa\x9e\ +\x5e\xf0\x78\x3c\xa2\x28\x42\x67\x68\x0c\xc3\xee\xbc\xf3\xce\x2d\ +\x5b\xb6\xc0\x03\xe0\xdb\x88\x4b\xf5\xa8\x41\x0b\x74\x9f\x02\x00\ +\x24\x9b\x4c\xf2\xf5\x22\xef\x80\x44\xac\x11\xbe\x62\x52\x8a\x63\ +\x28\x62\x1d\xc2\x4d\x84\x41\x4a\xac\x17\x2e\x5c\x78\xef\xbd\xf7\ +\x5a\x5a\x5a\xe0\x5b\x8d\x46\x53\x58\x58\x58\x5c\x5c\x5c\x50\x50\ +\x90\x9e\x9e\xae\xb2\x3a\x4c\xd3\x74\x43\x43\x43\x55\x55\xd5\xa5\ +\x4b\x97\x2e\x5f\xbe\x0c\xe3\xb8\x86\x86\x86\x86\x86\x86\xaf\xbf\ +\xfa\x0a\xc5\xb0\x51\x23\x47\x8e\x1d\x3b\x76\xdc\xb8\x71\xc3\x87\ +\x0f\x4f\xe0\x2a\xb3\x94\xca\xf4\x7a\xbd\x12\xe5\xf5\x6e\xe1\x08\ +\xa2\xcb\xb9\x5d\x3b\xb3\xc2\xde\xab\x5e\xaf\x57\x22\xdf\x65\xcb\ +\x96\xa5\xa7\xa7\x97\x96\x96\x6a\x34\x9a\xf9\xf3\xe7\x47\xf8\xae\ +\x4a\x97\x92\x8f\x4d\x05\x12\x97\x45\xa4\x35\x3d\xfd\x99\x63\x95\ +\x90\x4c\x74\xf9\x50\xa4\x65\xba\x21\x62\x1d\xc2\x4d\x84\x41\x47\ +\xac\xe1\x70\xf8\xbd\xf7\xde\x83\x91\x26\x00\xc0\x62\xb1\xdc\x7e\ +\xfb\xed\xb7\xdd\x76\x5b\x9c\x95\x4b\x24\x49\x8e\x1a\x35\x6a\xd4\ +\xa8\x51\xcb\x96\x2d\xe3\x79\xbe\xb6\xb6\xf6\xc2\x85\x0b\x15\x15\ +\x15\x57\xaa\xaa\x04\x9e\x17\x78\xfe\xd2\xa5\x4b\x97\x2e\x5d\xda\ +\xbe\x7d\xbb\x4e\xa7\x2b\x2c\x2c\x1c\x37\x6e\xdc\xfc\xf9\xf3\xfb\ +\xce\xb0\xf2\x06\x2d\x12\xe5\x99\x4c\xa6\x58\x05\x54\xdd\x42\xde\ +\xbc\x3a\xc2\x75\xc5\x64\x32\x05\x83\x41\xb7\xdb\x2d\x8f\x6a\x8b\ +\x8a\x8a\x62\xd5\xd1\x5f\x6f\xd0\xc2\xf3\x7e\xbf\xbf\xdb\xec\x73\ +\x2c\x97\x80\xd0\x80\x10\xab\x45\x66\x7f\x23\x8a\xa2\xa3\xad\x0d\ +\x00\xa0\xd7\xeb\x7b\x54\xba\x36\x84\x21\xdc\x58\x0c\x2e\x62\x75\ +\x38\x1c\x7f\xfa\xd3\x9f\x60\xa0\x4a\x92\xe4\xaa\x55\xab\x16\x2f\ +\x5e\xdc\x6b\xd6\xc3\x30\x2c\x3f\x3f\x3f\x3f\x3f\xff\xce\x3b\xef\ +\x0c\x87\xc3\x95\x95\x95\x17\x2b\x2b\x2b\x2e\x5c\x80\xf3\x62\x8a\ +\xa2\x4a\x4b\x4b\x4b\x4b\x4b\x83\xc1\xe0\x1d\x77\xdc\xa1\xd5\x5e\ +\xb7\x8b\x65\x18\x06\xc3\xb0\x1e\xdd\x37\x22\x38\x85\x94\xa7\x52\ +\x40\x15\x0f\xa4\xe6\xd5\x11\xa4\x0c\xe5\xb1\x6e\xb7\x3b\x2f\x2f\ +\xaf\xa7\x63\x8b\xa7\x41\x4b\xac\xb4\xa6\x87\x1d\xa0\x1c\xab\xf4\ +\xda\xeb\xf5\x42\xcf\xc3\xa1\x70\x75\x08\x37\x17\x06\x11\xb1\x56\ +\x57\x57\xbf\xfc\xf2\xcb\x81\x40\x00\x00\x30\x66\xec\xd8\x47\x1e\ +\x7e\x58\x5a\x0a\xef\x3b\xb4\x5a\xed\xa4\x49\x93\xa0\x0b\xbd\xdf\ +\xef\xaf\xa8\xa8\x38\x7a\xf4\x68\x59\x59\x19\x00\x60\xfb\xf6\xed\ +\xdb\xb7\x6f\x27\x08\x02\x32\x29\xcb\xb2\x1c\xc7\x11\x04\x51\x50\ +\x50\x00\x93\x06\x39\x39\x39\xdd\x4e\x9f\x63\xa5\x44\x63\x15\x50\ +\xc5\x83\x58\xb9\xd1\x68\x57\xd6\xf8\xc7\x16\x4f\x83\x16\xc5\x88\ +\x35\xc8\x89\x71\xfb\x32\xf6\x09\x26\xd9\x4a\x8a\x24\x4e\x88\xb3\ +\x60\x6c\x08\x43\x18\x24\x18\x2c\xc4\xda\xdc\xdc\xfc\xd2\x4b\x2f\ +\xc1\xe6\x1c\x2b\x57\xae\xbc\xfb\xee\xbb\xe5\x5c\xe6\x74\x3a\x6b\ +\x6b\x6b\x5b\x5a\x5a\x3c\x1e\x0f\x34\x76\x4a\x4f\x4f\xcf\xcd\xcd\ +\xcd\xcd\xcd\x95\x94\xf0\xf1\xc3\x68\x34\x4e\x9f\x3e\xdd\xe9\x74\ +\x42\x62\x85\x60\x18\x46\x7e\x0c\xc3\x30\xe5\xe5\xe5\xe5\xe5\xe5\ +\x00\x80\xa4\xa4\xa4\xf1\xe3\xc7\x3f\xf8\xe0\x83\x2a\xb3\x51\xf9\ +\x33\x40\x9e\x12\x8d\x55\x40\x15\x0f\xa4\x48\xb3\xa3\x6b\xb4\x0b\ +\xfb\x08\x74\x44\x2d\xf1\x37\x34\x34\x94\x96\x96\xe2\x38\x3e\x73\ +\xe6\x4c\x39\x99\xca\xa5\xac\xf1\x04\xce\x8a\x0a\x27\xef\x80\xe4\ +\x01\x40\xd7\xc5\x2b\x89\x58\xad\x89\x7b\xc4\x0e\x61\x08\x03\x80\ +\x41\x41\xac\x3c\xcf\xbf\xfc\xf2\xcb\x90\x55\xbf\xf7\xbd\xef\x41\ +\xe3\xbb\x60\x30\x58\x59\x59\x59\x56\x56\x56\x5e\x5e\x1e\x2b\xdc\ +\x43\x10\x24\x3d\x3d\x7d\xf8\xf0\xe1\x63\xc6\x8c\x29\x2c\x2c\xec\ +\xd1\x84\xb1\xe2\xe2\x45\x00\x40\x46\x46\xc6\xba\x75\xeb\x5a\x5a\ +\x5a\x42\xa1\x10\x34\xfa\xd3\xeb\xf5\x24\x49\xb6\xb5\xb5\x55\x56\ +\x56\xc2\xa4\x44\x20\x10\x38\x76\xec\x58\x41\x41\x41\x84\x23\x9f\ +\x1c\xf2\x7e\xa8\x6e\x19\x79\x49\xdb\xfd\x3e\x9f\xbc\x80\x2a\x1e\ +\xc8\x9b\x57\x07\x83\x41\x89\xd6\xe1\x76\x6f\xd7\x88\xf5\xe4\xc9\ +\x93\xaf\xbe\xfa\x2a\x14\xf6\x7e\xfa\xe9\xa7\xcf\x3c\xf3\x4c\x4e\ +\x4e\x0e\xdc\xd5\xd3\x06\x2d\x8a\xc4\x1a\x18\x90\x3c\x80\x06\x45\ +\x74\xb2\xde\x0d\xd7\x55\x5f\x43\x65\x57\xb7\x22\x3c\x1e\xcf\xf9\ +\xf3\xe7\xe7\xce\x9d\xdb\x97\x8b\x1c\x38\x70\x60\xc2\x84\x09\x83\ +\xcd\x47\x62\x50\x10\xab\xdf\xef\x87\x3f\xe6\x05\x0b\x16\x4c\x9b\ +\x36\x6d\xff\xfe\xfd\x27\x4f\x9d\xaa\xbc\x78\x31\xda\x32\xd9\x62\ +\xb1\x90\x24\x19\x08\x06\xa1\xac\x4a\x14\xc5\x96\x96\x96\x96\x96\ +\x96\xa3\x47\x8f\x02\x00\xb2\xb3\xb3\x1f\x7e\xf8\xe1\x78\x32\x8f\ +\x0c\xc3\x5c\xb9\x7c\x19\x00\x30\x7e\xfc\x78\x29\x45\x10\x0d\x97\ +\xcb\xf5\xf1\xc7\x1f\x1f\x39\x72\x04\x00\xa0\x3e\x83\x36\x18\x0c\ +\x04\x41\xc0\xb0\x57\x4e\x5e\x12\xa9\x89\xa2\xe8\xf5\x7a\x7b\xf4\ +\xf1\x9b\xba\x1a\x53\x45\x10\x6b\x44\x7e\xe0\xdd\xbf\xff\x5d\xfa\ +\x73\x51\x14\xb5\x7d\xfb\xf6\x0d\x1b\x36\xc0\xb7\x46\xa3\xb1\x47\ +\x0d\x5a\x60\x9c\x48\x10\x44\x97\xfc\xc6\xc0\x48\x02\xba\x36\x6e\ +\x50\xac\xac\x1d\xc2\x2d\x83\x70\x38\xfc\xf6\xdb\x6f\x67\x66\x66\ +\xf6\xce\xf6\x0c\x00\x50\x5d\x5d\xfd\xb7\xbf\xfd\xed\x85\x17\x5e\ +\x48\xec\xc0\xfa\x8e\x41\x41\xac\x66\xb3\xd9\x66\xb3\x39\x9d\xce\ +\xe3\xc7\x8f\x1f\x38\x70\x40\xee\x67\xac\xd3\xe9\x0a\x0a\x0a\x0a\ +\x0b\x0b\x47\x8f\x1e\x9d\x99\x99\x29\x2d\x31\x79\x3c\x9e\xba\xba\ +\xba\xba\xba\xba\x9a\x9a\x9a\x9a\xab\x57\x21\xcf\x36\x36\x36\x7e\ +\xf9\xe5\x97\xf2\xee\x7b\xb1\x70\xe5\xca\x15\x8e\xe3\x00\x00\x11\ +\xfd\xec\x22\x60\xb5\x5a\x61\x60\x68\xb1\x58\x46\x8c\x18\xa1\x7e\ +\x4d\xab\xd5\xda\xda\xda\x0a\x00\x70\xc9\x88\xb5\x4b\x8a\xc0\xed\ +\xee\x11\xb1\xca\x0f\xee\xe8\xe8\xc8\xce\xce\x86\xaf\xe1\xea\x93\ +\x7c\x52\x4f\xd3\xb4\xaf\x6b\x00\x2b\x45\x9d\x9d\x97\xb2\x58\xe0\ +\x96\x6e\x53\x01\x3e\x9f\x2f\x1c\x0e\x83\xa8\x95\xab\x81\x11\xb1\ +\x46\x18\xe1\xf6\xb4\x8b\xc1\x10\x6e\x2e\xd8\xed\xf6\x39\x73\xe6\ +\x6c\xd9\xb2\xe5\x99\x67\x9e\xe9\xdd\x15\xb6\x6c\xd9\x32\x7b\xf6\ +\xec\x41\x98\x82\x1f\x14\xc4\x0a\x00\x18\x3f\x7e\xfc\xfe\xfd\xfb\ +\xa5\x06\xc8\x16\x8b\x65\xf2\xe4\xc9\x53\xa7\x4e\x2d\x28\x28\x50\ +\x9c\x3e\xc3\x76\x26\x52\xa4\xd9\xdc\xdc\xbc\x63\xc7\x8e\x93\x27\ +\x4f\x9e\x3f\x7f\x3e\x1e\xa9\xe6\xf9\xf2\x72\x00\x00\x8a\xa2\x85\ +\x85\x85\x2a\x87\x05\x83\xc1\x8a\x8a\x0a\x00\x40\x71\x71\x71\x3c\ +\xeb\x57\x90\x58\x3d\x4a\x11\x2b\x00\xc0\xe5\x72\xf5\xe8\xc9\xac\ +\x6e\x17\x20\x8f\x8b\x49\x92\xcc\xcc\xcc\x94\xf7\x3e\xc9\xcd\xcd\ +\x8d\xb8\x54\x9c\xc4\x1a\x8b\xcb\x06\xa6\xec\xca\xd4\x35\x62\x85\ +\x5a\x2b\x14\x45\x07\xdb\x44\x6f\x08\x89\xc2\xea\xd5\xab\x9f\x7e\ +\xfa\xe9\x33\x67\xce\xc4\xd3\x4b\x22\x02\xa5\xa5\xa5\x57\xaf\x5e\ +\x7d\xfc\xf1\xc7\xfb\x63\x60\x7d\xc4\x60\x21\xd6\xd9\xb3\x67\x1f\ +\x3a\x74\xc8\x68\x34\x16\x17\x17\x4f\x9b\x36\x6d\xd4\xa8\x51\xdd\ +\x12\x99\x1c\x99\x99\x99\x25\x25\x25\x27\x4f\x9e\xa4\x69\x5a\xae\ +\x9c\x8f\x05\x58\x4d\x6f\x48\x4a\xfa\xf2\xcb\x2f\x8d\x46\x63\x76\ +\x76\xf6\xc8\x91\x23\xa3\x19\xbc\xb4\xb4\x14\x86\xcf\xd3\xa6\x4d\ +\xeb\x76\x0c\x12\x0f\xca\x29\x2f\x16\x39\xc6\x83\x58\xb9\x51\x28\ +\x8f\xa5\x28\x4a\xde\x11\xe0\x91\x47\x1e\x79\xe9\xa5\x97\xa0\x3c\ +\x2b\x33\x33\x73\xed\xda\xb5\x8a\x97\xea\x76\x0c\xb1\x6a\xf3\xfd\ +\x03\x92\x0a\x90\x47\xac\x0c\xc3\xc0\x30\x7c\xc8\x30\xf0\x16\x86\ +\xd9\x6c\x5e\xba\x74\xe9\xd6\xad\x5b\x27\x4d\x9a\x04\x3f\xe5\x60\ +\x30\x78\xe9\xd2\xa5\xe6\xe6\xe6\xb6\xb6\x36\x9a\xa6\xe1\x97\x9c\ +\x24\xc9\xb4\xb4\xb4\xcc\xcc\xcc\xd1\xa3\x47\xc3\x9c\x18\xcf\xf3\ +\x1f\x7d\xf4\xd1\x92\x25\x4b\x06\xe7\x43\x77\xb0\x10\x6b\x7e\x7e\ +\xfe\xc6\x8d\x1b\x71\x1c\xef\x11\x9f\xca\x21\xc9\x33\x7d\x3e\x9f\ +\x3a\xb1\xfa\xfd\x7e\x28\x63\xf2\xfb\x7c\x9f\x5c\x33\x82\xb2\x58\ +\x2c\x2b\x57\xae\x9c\x3f\x7f\xbe\x7c\x00\xa7\x4e\x9d\x02\x00\x18\ +\x93\x93\x47\x8d\x1a\xd5\xed\x00\xa4\x0f\x98\xa2\xa8\x70\x38\x0c\ +\xb3\x16\x7d\x29\xbe\x92\x37\xaf\xf6\x5d\x2b\xd5\x05\x32\x79\xac\ +\xdc\x54\x3b\x3f\x3f\xff\xf7\xbf\xff\x7d\x65\x65\x25\x41\x10\x63\ +\xc7\x8e\x8d\x60\x22\x69\x55\x5d\xde\x3c\x46\x11\x8a\xf6\x2b\x82\ +\x08\x02\x03\x63\x14\x20\x8b\x58\x87\x5c\x02\xfe\x49\xb0\x7c\xf9\ +\xf2\xfd\xfb\xf7\xef\xdc\xb9\x53\xa7\xd3\x1d\x3d\x7a\xf4\xea\xd5\ +\xab\xd1\x8b\x2b\x12\x10\x04\xc9\xcb\xcb\x9b\x35\x6b\x16\xcb\xb2\ +\x5e\xaf\x77\xc5\x8a\x15\x03\x39\xd4\x68\x54\x57\x57\x97\x95\x95\ +\x55\x55\x57\x37\x36\x36\x06\x03\x01\x9e\xe7\x0d\x06\x43\x46\x46\ +\xc6\x60\x21\x56\x00\x40\x1f\xab\xf8\x25\x42\x94\xf2\x09\xb1\x70\ +\xe1\xc2\x05\xe9\x93\x43\x31\x4c\xe0\x79\x00\x80\xdb\xed\xde\xbc\ +\x79\xf3\xe9\xd3\xa7\x9f\x7c\xf2\x49\x68\x43\x05\x5b\x2e\x03\x00\ +\xa6\x94\x94\xc4\x43\xf7\x8a\x5e\xfd\x04\x41\xe8\xf5\x7a\x38\xa4\ +\x78\xa4\x4e\x0c\xc3\xb8\xdd\x6e\xb7\xdb\xed\xf1\x78\xdc\x6e\x37\ +\x81\xe3\x94\xd2\xa2\x13\x94\xc7\x46\xb4\x5a\x31\x18\x0c\x25\x25\ +\x25\xca\x63\x53\x6a\x1e\xa3\x08\x45\xfb\x95\x81\x59\xb9\x02\x5d\ +\xb5\x56\xd2\x48\x86\x12\xac\xb7\x3c\x72\x86\x0d\xfb\xf8\xe3\x8f\ +\xe3\x39\x52\x14\xc5\x9a\x9a\x1a\x28\x61\x54\xcf\xe3\xf5\x2b\x44\ +\x51\xbc\x78\xe4\x9b\x2d\x47\xf6\x47\xf4\x1e\x06\x00\x04\x83\xc1\ +\xaa\xaa\xaa\x41\x44\xac\x03\x83\x60\x30\xb8\x75\xeb\x56\x00\x00\ +\x49\x92\xbf\xfb\xdd\xef\x92\x93\x93\x83\xc1\xe0\xd9\xb3\x67\x3f\ +\xf9\xe4\x13\xa7\xd3\x79\xe1\xc2\x85\x3f\xfc\xe1\x0f\xbf\xfc\xe5\ +\x2f\x09\x82\x38\x7b\xf6\x2c\x5c\xe0\x9a\x3a\x75\x6a\x3c\x57\x96\ +\x13\xab\xcb\xe5\x92\x88\xc9\x6c\x36\x43\x62\xfd\xff\xed\x9d\x79\ +\x58\x13\xf7\xbe\xff\xbf\x93\x09\x59\xc9\x42\x42\xd8\x89\x22\xb2\ +\x2a\xee\x20\x82\x4b\xeb\x52\xb7\x47\x6b\x5d\xba\x68\xd5\x6e\xd6\ +\x1e\xbd\x3d\xc7\xb6\xa7\xa7\xf5\x9c\xdb\xfe\xba\xf9\xf4\x69\x6d\ +\x4f\x6b\xab\xf7\xb1\xe7\x6a\xbd\xc7\xda\xdb\x5b\x4f\xeb\x52\x8b\ +\x4b\x55\x50\xb4\x8a\x58\x71\x41\x21\x88\x80\x84\x45\x42\x48\x08\ +\x09\x21\x0b\x99\xcc\xef\x8f\xef\xe9\x74\x9c\x4c\x86\xc9\x8a\x52\ +\x5e\x7f\xf8\x84\x61\x32\x33\x91\x99\x4f\x3e\xdf\xcf\xf2\xfe\x40\ +\xe3\x88\xe3\xb8\xc5\x62\x81\x76\x13\x1a\x47\xf8\xda\x60\x30\x74\ +\x75\x75\xc1\xb5\xbc\x27\xf1\xf1\xf1\xe4\x1f\x61\x79\x2c\xfb\xd8\ +\x02\xed\x54\x2e\x5a\x68\x07\x4c\x99\xc3\x52\x6b\x05\x00\x90\x93\ +\x3c\x56\x42\xb2\x20\xd4\x1e\x2b\x86\x61\x2d\x2d\x2d\xcd\xcd\xcd\ +\xdd\xdd\xdd\xbd\xbd\xbd\x52\xa9\x34\x35\x35\xd5\x27\x29\xb2\x41\ +\xfc\xe6\xd2\xa5\x4b\xff\xdc\xbd\xdb\xcc\xba\xdb\x85\x8c\x46\xa3\ +\x79\xed\xf5\xd7\x57\xaf\x5a\xe5\xcd\x9f\x08\x11\xbd\xdd\xe6\xda\ +\xef\xfe\xd1\xdd\xd2\xc0\xb0\xcf\x00\x34\xac\x0c\xde\x25\x8e\xe3\ +\xdb\xb7\x6f\x87\x4b\xf2\xc5\x8b\x17\xc3\xe8\x81\x58\x2c\x2e\x2c\ +\x2c\xcc\xcd\xcd\xdd\xb1\x63\xc7\xc5\x8b\x17\x1b\x1a\x1a\xfe\xfc\ +\xea\xab\xd3\x1f\x7c\xf0\xd6\xad\x5b\x00\x80\xc8\xc8\xc8\xf4\xf4\ +\x74\x36\xe7\xf5\x16\x12\x55\x2a\x95\xf0\x6b\xad\xae\xae\xee\xe5\ +\x97\x5f\xee\xea\xea\x82\xea\x01\xec\x11\x0a\x85\x33\x66\xcc\x20\ +\x6f\x81\x57\x4e\x99\x23\xc0\x00\xd9\x36\x31\x9b\x63\xda\x50\x40\ +\x78\xba\x03\x28\x82\x81\xb4\xbe\x73\x10\xc1\x5d\xbd\xb5\x15\xd7\ +\xf6\x5e\xbe\x7c\xfd\xfa\x75\xcf\x55\x4e\x5a\x5a\xda\x1f\xfe\xf0\ +\x87\x7b\x33\x7e\x37\x30\xc0\x30\x6c\xef\xde\xbd\xc7\x8e\x1d\x0b\ +\xe4\x20\xe6\xae\xae\xcf\x3f\xff\x7c\xf6\xec\xd9\x8f\x3e\xfa\x68\ +\x78\x02\xf1\x4e\x53\x47\xd5\x57\x5b\x9c\xe6\x3e\x56\x9f\x03\xc7\ +\xb0\xc2\x22\x21\x00\x00\x83\x9e\x74\x71\x71\x31\x6c\xa6\xca\xcd\ +\xcd\xa5\xcc\x5e\xe6\xf1\x78\x6b\xd7\xae\xb5\xd9\x6c\xd7\xaf\x5f\ +\x27\xc7\x5e\xc7\x8e\x1d\xcb\xf2\x0f\x46\xa9\xac\x22\x5e\x67\x64\ +\x64\x54\x56\x56\x02\x00\x7a\x7b\x7b\x7d\x55\x0c\xe0\x70\x38\xe9\ +\xe9\xe9\x2b\x56\xac\xa0\x3c\xe1\xb4\x73\x04\x18\x20\xeb\x03\x30\ +\x98\x63\x0c\xc3\xe0\x95\x4b\x65\x32\x72\x64\x26\x3c\xdd\x01\x14\ +\xc1\xc0\xd0\x15\xb1\xe2\xae\x5e\xdd\xa5\x33\xad\xe7\x8e\x5d\xec\ +\xe9\xf6\xb6\x4f\x6d\x6d\xed\x27\x9f\x7c\x92\x9f\x9f\x6f\xe9\xee\ +\xee\xb1\x5a\xbb\xbb\xbb\xdd\x6e\x37\xcc\xa5\xc0\xf9\xb5\x10\xa1\ +\x50\xc8\xe7\xf3\x23\x22\x22\x60\x5f\x89\x54\x2a\x95\xc9\x64\xd1\ +\xd1\xd1\x31\x31\x31\x83\x39\x37\x06\x30\x0c\xfb\xfc\xf3\xcf\xaf\ +\x5c\xb9\x12\x94\xa3\x1d\x3b\x76\x4c\xa7\xd3\xbd\xf8\xe2\x8b\xa1\ +\xfe\x0f\xef\xed\x36\xdf\xdc\xbb\xbd\x4f\xab\x0a\x06\x92\x61\x25\ +\x94\x9e\xbd\x19\x56\x9d\x4e\x07\x83\x00\x4a\xa5\x72\xf5\xea\xd5\ +\x9e\x3b\xa0\x28\xba\x61\xc3\x86\xf2\xf2\xf2\x93\x27\x4f\xd6\xd5\ +\xd5\xc1\x8d\x2c\xe3\x00\x00\x00\x89\x44\x82\x20\x08\x8c\xde\x92\ +\x8d\xd7\xcc\x99\x33\x2f\x5c\xb8\x40\x51\x95\x25\x13\x11\x11\xa1\ +\x50\x28\xe4\x72\xb9\x4c\x26\x53\x28\x95\x8a\xa8\x28\xf8\x70\xc2\ +\x92\x32\xda\x7b\x05\x1a\xd6\x2e\xd6\x0b\x28\x6f\xe3\x0e\x29\x74\ +\x74\x74\xc0\xeb\xa7\x74\x3a\x85\xc7\x63\xa5\x08\x06\x86\xc8\xb0\ +\xda\x75\x4d\xb7\x0e\xfe\xb3\x47\x7f\xa7\xcf\x3d\xa1\xda\xa4\xdf\ +\x27\x42\xb9\xdc\xa4\xc4\xc4\x21\x43\x86\x64\x66\x66\x66\x67\x67\ +\xf7\x59\xa9\x72\xaf\x11\xba\xc2\x65\x1c\xc7\xb7\x6d\xdb\x46\xb1\ +\xaa\xc4\xb3\xc3\x12\xca\xfe\x57\xae\x5c\xd9\xb6\x6d\xdb\x8b\x2f\ +\xbe\xe8\x77\xf6\x9b\x05\x78\xc3\x8f\x7b\xd8\xdc\x39\x60\x40\x1a\ +\xd6\x88\x88\x08\xcf\xdf\xe2\x38\xbe\x6b\xd7\x2e\xa7\xd3\x89\x20\ +\xc8\xda\xb5\x6b\xbd\x75\xfd\xa3\x28\x3a\x69\xd2\xa4\x49\x93\x26\ +\x69\xb5\xda\x53\xa7\x4e\x09\x85\xc2\x91\x23\x47\xb2\xbc\x00\x14\ +\x45\x25\x52\x29\x8c\x16\x91\x8d\x97\x40\x20\xf8\xeb\x5f\xff\x7a\ +\xfc\xf8\x71\x4d\x4d\x0d\xca\xe1\xa8\x54\xaa\x7f\xdb\x50\x85\x22\ +\x2a\x2a\x2a\x2a\x2a\xca\x0f\x41\x3c\x68\x58\xd9\x4f\x04\xf0\x36\ +\x3c\x86\x02\x6d\x1c\x00\x00\xd0\x15\x16\x8f\x55\xc2\xbd\xeb\x91\ +\x80\x9f\x4e\x28\x14\xb2\xfc\xff\x31\x99\x4c\xed\xed\xed\x3a\x9d\ +\xce\x60\x30\x98\xcd\xe6\xee\xee\x6e\xb3\xd9\x6c\xb5\x5a\x61\xd8\ +\xba\xcb\x6a\x03\x00\x60\x0e\x3b\x00\x61\x8a\x17\x63\x2e\x17\xec\ +\x61\x29\x2d\x2d\x05\x00\xa4\xa5\xa5\xe5\xe7\xe7\x17\x16\x16\xfa\ +\xa1\x6e\x31\xc0\x38\x74\xe8\x50\x45\x45\x05\xf1\x63\x4c\x4c\xcc\ +\x86\x0d\x1b\x62\x63\x63\xf7\xed\xdb\x57\x54\x54\xc4\xe6\x08\x73\ +\xe6\xce\x5d\xb6\x74\xa9\x4e\xa7\xfb\xf4\xd3\x4f\x89\x9b\xb6\xa2\ +\xa2\xe2\xe0\xc1\x83\x8b\x16\x2d\x0a\xc9\x45\x03\xd0\x76\xa1\xc4\ +\x54\x77\x83\xe5\xce\x03\xc7\xb0\xc2\x4e\x7f\x00\x00\xed\x20\x96\ +\xf2\xf2\xf2\x9a\x9a\x1a\x00\xc0\x8c\x19\x33\xd8\xd4\x4e\xa9\xd5\ +\xea\x55\xab\x56\xf9\x7a\x0d\xd1\x4a\xa5\xa7\x61\x05\x00\x08\x85\ +\xc2\x85\x14\x59\xff\xc0\xa0\xed\x6a\xa5\xc5\x6e\xb7\xc3\x14\x19\ +\xf7\x57\xcf\x97\x5c\xb9\x45\xc1\x9b\x93\x68\x76\x06\x3c\x9d\x95\ +\x05\xe4\xcc\x95\xc9\x64\x82\xfd\xc1\xcc\x99\x2b\x8b\xc5\x52\x5e\ +\x5e\x7e\xe3\xc6\x8d\x5b\x75\x75\xfe\x25\x40\xc2\x46\x6d\x6d\x6d\ +\x6d\x6d\xed\xbe\x7d\xfb\x66\xcf\x9e\x3d\x67\xce\x9c\x10\x4d\xb2\ +\xb8\xf7\xd1\x6a\xb5\x07\x0e\x1c\x20\x6f\x99\x3d\x7b\x36\x4c\x15\ +\x2e\x5d\xba\x94\xdc\x25\xe4\x0d\xa1\x50\xf8\xd8\xa3\x8f\x22\x08\ +\x92\x90\x90\x30\x7f\xfe\xfc\x5d\xbb\x76\x11\xbf\x3a\x78\xf0\xe0\ +\x98\x31\x63\x86\x0e\x1d\x1a\xf4\xcb\xc6\x1c\xb6\x96\x33\x87\xd9\ +\xef\x3f\x70\x0c\x2b\x0c\x0e\x8a\x44\x22\xcf\xb5\x33\xac\x25\x06\ +\x00\x48\xa4\xd2\x25\x4b\x96\x84\xee\x1a\x88\xe5\x5e\x07\xeb\xb4\ +\x52\x20\x27\x82\x13\x01\xdc\x6e\xb7\xc5\x62\x81\x45\x05\xb0\xd2\ +\xa0\xab\xab\xcb\xd8\xd9\x69\x34\x18\xba\xba\xba\x3c\xa7\xc3\x32\ +\xe8\xb1\xea\x7f\x75\x81\xc9\xe6\xcc\x86\xe1\x61\xa9\x61\xbd\x4b\ +\x30\xb0\xcf\x19\x82\x38\x8e\x7f\xf7\xdd\x77\x47\x8f\x1e\xf5\x35\ +\x13\xd8\xbf\x58\xad\xd6\x7d\xfb\xf6\x9d\x39\x73\xe6\x85\x17\x5e\ +\xf0\xbb\x41\xfe\xbe\xe6\xeb\xaf\xbf\x26\xf7\xac\x03\x00\xe0\x40\ +\x36\x00\x80\xdd\x6e\x27\xc7\xaf\xbd\xe1\xec\xed\xed\xe9\xe9\x81\ +\xeb\x18\xca\xf2\x0b\xc7\xf1\x6f\xbe\xf9\x66\xe3\xc6\x8d\xc1\xbb\ +\xde\x7f\x73\xe7\xdc\x4f\x98\xc3\x87\x41\xcb\x03\xc7\xb0\x42\xf7\ +\x8d\x2c\x5c\x42\x50\x5a\x5a\x0a\x83\x9e\xcb\x96\x2e\x0d\xe9\x42\ +\x8c\x30\xac\xdd\x16\x8b\xaf\x5a\x56\xcc\x40\xc7\x13\x9a\x4e\x58\ +\x9b\x05\x67\x13\xfc\x69\xc3\x86\x6e\x8b\x85\x72\xa7\x32\xc3\xa0\ +\xd1\xd5\xfe\x6b\x85\x13\xd9\x63\x0d\x5b\xad\x15\x59\xe2\xfa\xb7\ +\xce\x5a\x2f\x25\x01\xc7\x8f\x1f\x67\xb9\x6c\xbc\x07\xd1\xeb\xf5\ +\x9b\x36\x6d\x5a\xb1\x62\x05\xa5\xd8\x63\xc0\x73\xe3\xc6\x0d\xb8\ +\x70\x24\x73\xf8\xf0\x61\x81\x40\x10\x1f\x1f\x5f\x54\x54\xc4\xc6\ +\xb0\x62\x2e\xd7\x96\x2d\x5b\xe6\xcf\x9f\x7f\xe7\xce\x9d\x1f\x7f\ +\xfc\x91\xf2\xdb\x9a\x9a\x9a\xca\xca\xca\x9c\x9c\x9c\xa0\x5d\x34\ +\x00\xb8\x1b\xeb\xb8\xfe\x8b\x4f\x6f\x19\x38\x86\x15\x7a\xac\xdd\ +\x56\x6b\x49\x49\xc9\xc8\x91\x23\x09\x4f\x07\xc7\xf1\x23\x47\x8e\ +\x00\x00\x62\x62\x62\x0a\x0a\x0a\x42\x7a\x0d\x44\x8e\x08\x7a\x91\ +\x3e\xe5\x2b\xe0\xdc\x14\x4f\xc7\xd3\xd4\xd9\xd9\xd9\xd9\xe9\xe9\ +\x78\x42\x7c\x5a\xff\x8a\x44\xa2\xe5\xcb\x97\x67\x65\x65\x79\xdb\ +\x81\xb6\x26\x3f\x3c\xf2\x2b\x5c\x04\x88\xb9\x34\xdd\x01\x2a\xba\ +\x50\x80\xc9\x64\xfa\xee\xbb\xef\xc2\x70\x55\xa1\xc3\xed\x76\x7f\ +\xf5\xd5\x57\x16\x8b\x25\x74\x31\xc1\x7b\x90\xd3\xa7\x4f\x7b\x6e\ +\x74\x3a\x9d\xff\xf7\x7f\xff\xe7\xd3\x71\x6e\xde\xbc\x79\xf3\xe6\ +\x4d\x6f\xbf\x2d\x29\x29\x09\xae\x61\xed\x6e\xd0\xb0\xa9\x04\x20\ +\x33\x70\x0c\x2b\x5c\x14\x58\xcc\xe6\xdd\xbb\x77\x03\x00\x94\x4a\ +\x25\xd4\xff\x77\xbb\xdd\xd0\xfd\x99\x37\x6f\x5e\xa8\xab\x31\xc8\ +\x96\xd4\x60\x30\x78\x1a\x56\x87\xc3\x61\x32\x99\x60\xd0\x13\x3a\ +\x9e\x26\x93\xc9\x64\x32\x75\x18\x0c\xbe\x3a\x9e\x0c\xf0\xf9\xfc\ +\xa8\xa8\x28\xb9\x5c\x4e\xe4\xc7\xe0\x50\xdb\xc4\xc4\x44\xe6\xd0\ +\x1e\xfc\x8f\x42\xb9\x5c\xb2\xe3\x1f\x9e\xb6\x2b\x99\x2f\xb5\x56\ +\xc5\xc5\xc5\x14\x61\xf2\x50\x83\x20\xc8\xd8\xb1\x63\xed\x0e\x47\ +\xd5\x0d\xb6\xe9\x0b\x36\x1c\x38\x70\x40\x24\x12\x3d\xf4\xd0\x43\ +\x41\x3c\xe6\x3d\x8b\xcd\x66\xbb\x74\xe9\x52\x18\x4e\x74\xf5\xea\ +\x55\x9b\xcd\xc6\x50\x76\xe9\x2b\x5d\xda\x5b\xbe\xbe\x65\x80\x18\ +\x56\xab\xd5\x4a\x49\x91\x1b\x0c\x86\x33\x67\xce\x10\x43\x09\x79\ +\x3c\xde\xc4\x89\x13\x43\x7d\x19\xe4\xe6\xab\x8a\x8a\x8a\x46\xad\ +\xd6\xd0\xd1\xc1\xc6\xf1\xf4\x15\x04\x41\x24\x52\x69\xb4\x52\x09\ +\x4b\xb2\x60\xb5\x16\x61\x43\xfd\xbb\xa5\xac\x56\x2b\xbc\xbc\xd8\ +\x98\x18\x72\xcd\x4a\x78\x74\xad\x7c\xaa\xb5\x82\xf2\xbb\xe1\x64\ +\xca\x94\x29\xcf\x3c\xf3\x0c\x00\x60\xcf\x9e\x3d\x27\x4e\x9c\x08\ +\xe2\x91\xbf\xf9\xe6\x9b\xc4\xc4\x44\x66\xf9\xca\x81\x41\x7d\x7d\ +\x7d\x78\x02\xe2\x18\x86\xdd\xba\x75\x2b\x88\x4e\xab\xb9\xb1\xd6\ +\xd7\xb7\x0c\x10\xc3\xaa\xd1\x68\x98\x8b\xe0\x46\x8c\x18\x11\x86\ +\x32\x17\x72\xe3\x69\xe0\x11\x40\x5a\xc7\x53\x2e\x97\x2b\x95\x4a\ +\x89\x44\x12\x74\xef\xbb\x7f\x4b\x02\x28\x82\x81\xf0\x6b\x12\x41\ +\x10\xcf\xaa\x80\xd6\xd6\x56\x8a\xda\x6c\x18\x20\x9a\x26\xb3\xb2\ +\xb2\x82\x6b\x58\x71\x1c\xdf\xb9\x73\xe7\xa6\x4d\x9b\x82\xe8\x61\ +\xdd\x9b\x10\xb5\xe1\xe1\x39\x57\x10\x0d\xab\xbd\xd3\xe7\xfb\x6d\ +\x80\x18\xd6\x1b\x7d\x2d\xd0\xd8\x94\x58\x05\x8e\x42\xa1\xc8\x1e\ +\x31\x82\xfd\x6a\x31\x14\x8e\xa7\xdf\xd0\xaa\x04\x80\x70\x25\xaf\ +\x22\x49\xa1\x00\x0c\xc3\x60\x8b\x5a\x54\x54\x94\xe7\xf7\x07\x14\ +\xe0\xa0\x20\x16\x8b\x51\x2e\x37\x74\x15\x57\x84\xbe\x2d\x94\x8f\ +\x08\x2e\x70\x50\xc5\x8a\x15\x2b\x82\x7e\xe4\x7b\x0a\x5f\x65\x33\ +\x03\x81\xa1\xa6\xd0\x57\xac\x56\xab\xcb\x7b\x87\x9e\x37\x7e\x2f\ +\x86\x95\x21\x63\x03\x00\xb0\x58\x2c\xdf\x7c\xf3\x4d\x5d\x5d\x5d\ +\x6f\x6f\x6f\x44\x44\x84\x67\x20\x12\x76\x2e\x16\x16\x16\xe6\xe7\ +\xe7\x33\x9f\xe8\x0f\x2f\xbc\xb0\x75\xeb\x56\x72\xea\x93\xc7\xe3\ +\x11\x16\x93\xf0\x3d\x43\xe7\x78\xfa\x8d\x8e\xae\x24\x20\x6c\x82\ +\x81\x32\x3a\xf9\x15\xda\x38\x40\x73\x4b\x0b\x65\x4b\x5e\x5e\xde\ +\xda\xb5\x6b\x39\x1c\xce\xb7\x7b\xf7\x1e\x3d\x72\x24\xe8\xd7\x26\ +\x95\xc9\x88\x70\x39\x45\x0d\x27\x58\x14\x17\x17\xcf\x99\x33\x27\ +\x88\x63\x89\xef\x41\xe0\x00\xe6\xfb\xee\x5c\x7d\xd6\xd5\xd2\x32\ +\x10\x0c\xab\xc1\x60\x20\xbc\x2d\x5a\x44\x22\x11\x45\x51\x9f\xc2\ +\xb6\x6d\xdb\x34\x1a\x4d\x9f\x27\xaa\xac\xac\x44\x51\x94\xb9\xc9\ +\x55\x22\x91\x6c\xdc\xb8\xb1\xb5\xb5\xd5\x6c\x36\x4b\xa5\xd2\xf0\ +\x3b\x9e\x7e\xf3\x5b\x22\x9e\x54\x3a\x6a\x71\xf5\x83\x60\x20\xf3\ +\x44\x96\x96\xe6\x66\xca\x96\xe9\xd3\xa7\xc3\xef\xa7\x87\x66\xcd\ +\xea\xd3\xb0\x4a\x65\xb2\x51\x5e\x16\x89\xdd\xdd\xdd\x06\x83\xa1\ +\xb9\xb9\x99\x12\x56\x1a\x46\x9a\xa2\xa6\x56\xab\xdf\x7b\xef\x3d\ +\xbd\x5e\xdf\xdd\xdd\x0d\x43\xd2\x76\xbb\xfd\xda\xb5\x6b\x50\xb2\ +\x07\xa2\x52\xa9\x32\x32\x32\x68\x4f\xd1\xd5\xd5\x65\x30\x18\xee\ +\xdc\xb9\x43\x39\x05\x86\x61\x45\x45\x45\x7e\xf4\xa4\xdc\x47\xac\ +\x5b\xb7\x8e\xcd\xd8\xa4\x81\xc1\x40\x30\xac\x70\x7a\x0a\x03\x23\ +\x46\x8c\x60\xe8\x20\x76\x3a\x9d\x6c\xac\x2a\xa4\xe4\xd4\x29\x36\ +\xea\x01\x09\x09\x09\xf7\x9d\xee\x1c\x6d\x3f\x6b\xa7\x33\x4c\x45\ +\xac\x52\xd6\x12\xd7\x70\xfe\x0d\x99\x6b\xd7\xae\x41\x69\x4e\x28\ +\x76\xc3\xcc\x84\xf1\xe3\x99\xed\x97\xd5\x6a\x3d\x79\xf2\xe4\xc1\ +\x1f\x7e\xc0\x7e\x5d\xf5\x53\xc6\x9d\x25\x25\x25\x11\xf3\xc7\x20\ +\x0b\x17\x2e\x3c\x79\xf2\xe4\x57\x5f\x7d\x05\x7f\x9c\x36\x6d\x1a\ +\xb3\x00\xb3\xc9\x64\x3a\x7c\xf8\xf0\xf1\xe3\xc7\xc9\xe6\xf5\xfc\ +\xf9\xf3\x8f\x3e\xfa\xe8\xfd\xde\xf0\x8a\xe3\xf8\x95\x2b\x57\x2a\ +\x2b\x2b\x5d\x2e\x57\x6a\x6a\xea\xe4\xc9\x93\xfb\x7d\x4d\xe6\x74\ +\x3a\xcf\x9f\x3f\x5f\x5b\x5b\xcb\xe3\xf1\x46\x8c\x18\xc1\x66\xcc\ +\x12\x19\xff\x6a\x75\x06\x82\x61\xed\x33\x0e\xc0\x9c\x72\x8d\x88\ +\x88\x90\x48\x24\x44\xfb\x07\x33\xb7\x6a\x6b\x83\x5b\xf9\x7f\xef\ +\x40\xeb\xb1\x76\x87\xa5\xd6\x4a\xc8\xe5\x90\x75\x02\x18\x3c\x56\ +\x22\xfc\x4a\xe6\xf0\xe1\xc3\x1a\x8d\x46\x20\x14\xb2\x89\x6e\x93\ +\x45\x20\x9b\x9b\x9b\xab\xaa\xaa\x70\x1c\x8f\x8e\x8e\x4e\x49\x49\ +\x81\x65\xc8\x62\xb1\x78\xe1\xc2\x85\x69\x69\x69\x1f\x7d\xfc\x31\ +\xb4\xad\xe4\xb9\xbf\x50\x31\x9e\xcb\xe5\x66\x65\x65\x91\x03\xf7\ +\x33\x66\xcc\x38\x75\xea\x14\x14\x6d\x19\x3e\x7c\x38\x79\xff\x9b\ +\x37\x6f\x46\x44\x44\xa8\x54\xaa\x61\xc3\x86\xc1\x7e\x6b\xb9\x5c\ +\xbe\x7c\xf9\xf2\xb4\xb4\xb4\x6d\xdb\xb6\x11\x7b\x42\x61\xf5\x30\ +\x4b\x8b\x06\x17\x0c\xc3\xb6\x6d\xdb\x46\xe8\x00\x94\x96\x96\x9e\ +\x38\x71\xe2\xd5\x57\x5f\x85\xcd\x7e\xff\xfa\xd7\xbf\x8a\x8b\x8b\ +\xc3\x73\x25\xd3\xa7\x4f\x5f\xb6\x6c\x19\x00\xc0\x62\xb1\x7c\xf8\ +\xe1\x87\x84\x98\x4e\x71\x71\xf1\xb8\x71\xe3\xd6\xaf\x5f\xcf\xfe\ +\x11\xf6\x6f\xc5\x49\x35\xac\x66\xb3\xf9\xda\xb5\x6b\xf5\xf5\xf5\ +\x7a\xbd\xde\x60\x30\xd8\xed\x76\x87\xc3\x81\xe3\x38\x11\xb3\xe7\ +\x72\xb9\x08\x82\xf0\xf9\x7c\x81\x40\xa0\x54\x2a\xe1\xed\x32\x6a\ +\xd4\x28\x86\x46\xc9\x90\x82\xe3\x78\x55\x75\x35\xf3\x3e\xd9\xd9\ +\xd9\x0c\xbf\x45\x10\xe4\xc9\x27\x9f\xfc\xc7\x7f\xff\x37\xc6\x22\ +\x2f\xe1\x74\x3a\x6b\x6b\x6b\xfb\x51\xba\x3c\x44\x10\x06\x4b\x2a\ +\x93\x11\xa3\x70\x41\xb8\xe4\x57\xe4\x5e\x86\xb3\x7a\xf6\xb3\x9a\ +\x4c\x26\xda\x92\x1d\xda\x8c\x16\x2d\x44\x23\xa9\xc9\x64\x7a\xfb\ +\xed\xb7\xc9\xad\x3e\x53\xa7\x4e\x85\x35\x55\x00\x80\xac\xac\xac\ +\xe9\x0f\x3e\x78\xfc\xf8\x71\x40\xf2\x58\xc9\x6e\x29\x00\x20\x3f\ +\x3f\x7f\xed\xda\xb5\x84\xfb\xa3\x52\xa9\x9a\x9a\x9a\x38\x1c\x0e\ +\xb1\x7f\x53\x53\xd3\x7b\xef\xbd\x47\xb8\xa5\x08\x82\x3c\xf2\xc8\ +\x23\x84\x68\x44\x6e\x6e\x6e\x5e\x5e\x5e\x79\x79\x39\xf9\x53\xdc\ +\xd7\x86\xf5\xe8\xd1\xa3\x64\x75\x15\x00\x40\x53\x53\xd3\xff\xfc\ +\xcf\xff\xc0\x49\xec\xbd\xbd\xbd\xc1\x2a\x37\xec\x13\xe2\xcf\xfa\ +\xd5\x57\x5f\x51\x24\xca\x2a\x2a\x2a\x8a\x8a\x8a\xd8\x4b\x77\x48\ +\x24\x12\x84\xc3\xc1\x7d\xf4\x5b\xb9\x00\x80\x9a\x9a\x9a\x92\x92\ +\x92\xba\xba\x3a\xa3\xd1\xd8\x67\xa1\x19\x2c\xcc\x86\x8a\x41\x50\ +\xbf\x19\x7e\x0b\xa1\x28\xaa\x50\x28\x52\x53\x53\x1f\x7c\xf0\x41\ +\x6f\x01\xa6\x50\xd0\xdc\xdc\x6c\x61\xcc\x00\x42\xeb\xcf\x7c\x90\ +\x89\x13\x27\x66\x64\x64\x34\x36\x36\x92\x3f\x7e\x6f\x6f\x2f\xfc\ +\xf3\xec\xdb\xb7\x8f\xec\x25\x69\x34\x9a\x81\x67\x58\x8d\x46\x23\ +\x5c\xf2\xc4\x50\x75\xad\xc2\xe1\xb1\x52\x74\xad\x18\x0c\x2b\x7b\ +\x6d\x6f\x5a\xa4\x32\x19\x71\xcc\x5f\x7e\xf9\x85\xd2\x40\x59\x5a\ +\x5a\x5a\x58\x58\x48\xdc\xbd\xc3\x87\x0f\x3f\x7e\xfc\xb8\x4a\xa5\ +\x22\xe4\xb5\x7e\xfa\xe9\x27\xf2\xfe\x65\x65\x65\xb3\x66\xcd\x22\ +\x2c\xb5\xdd\xe1\x00\x00\x0c\x1d\x3a\x94\x48\x7e\x96\x95\x95\x91\ +\x17\xfb\x38\x8e\xef\xdf\xbf\x7f\xd2\xa4\x49\xc4\x35\xa4\xa4\xa4\ +\x90\x0d\x6b\x80\x9f\xae\xdf\xf9\xf9\xe7\x9f\x3d\x37\x5e\xbe\x7c\ +\xd9\x6a\xb5\xfa\x21\xe1\x16\x38\x76\xbb\x9d\xb6\x25\xe1\xdc\xb9\ +\x73\xec\x0d\x2b\x82\x20\x11\x91\x72\x9f\x3b\xaf\x9e\x7d\xee\x39\ +\x36\x9e\x5a\x9f\x60\x18\xa6\xd7\xeb\xf5\x7a\x7d\x59\x59\x19\xca\ +\xe5\x0e\x4f\x4d\x5d\xb8\x70\x61\x18\xca\x9e\xfb\x0c\xb0\x32\xbb\ +\xab\x04\xb0\xe0\x89\xf6\x57\xf5\xf5\xf5\xe4\x25\x0c\xfb\x80\xec\ +\x7d\x84\x37\xc1\xc0\xee\xb0\x24\xaf\xc8\xf2\x2b\xc4\xc5\xf0\xf9\ +\x7c\xcf\x65\x10\x7b\xa5\x44\x5a\x86\x93\x74\x4f\xe0\xa4\x48\x0a\ +\x4d\x4d\x4d\x84\x61\xb5\xf6\xf4\x00\x52\x1c\xc0\x64\x32\x11\xe5\ +\x0a\x04\xe4\x6f\xe2\xe6\xe6\x66\x70\x77\x40\xd6\xf3\xa9\xc6\x71\ +\xbc\xb5\xb5\x95\xf8\x4f\xa6\x78\x70\xe1\x2c\x48\x0a\x05\xb4\xe3\ +\x32\x71\x1c\xef\xec\xec\xec\x17\xc3\x6a\xb1\x58\x68\x3d\x45\xf6\ +\x42\xc6\x10\x91\x2a\xde\x67\xc3\x4a\xb1\xaa\x3c\x1e\x4f\x26\x93\ +\xa9\x62\x62\xe2\x62\x63\x13\x13\x13\xa3\xa3\xa3\x15\x0a\x85\x48\ +\x24\x82\x8a\xcb\x18\x86\x99\x4c\xa6\x9e\x9e\x1e\xa3\xd1\xd8\xd1\ +\xd1\xd1\xd2\xd2\xd2\xa6\xd3\xe9\xdb\xdb\xbb\xba\xba\xc8\x2d\x86\ +\x98\xcb\x55\x53\x53\xb3\x79\xf3\x66\xb1\x58\x3c\x7b\xf6\xec\xa0\ +\x0a\xe6\x51\xa9\xee\x2b\x0e\x10\xb8\x71\xcf\xc8\xc8\x20\x1b\xd6\ +\xda\x5b\xb7\x98\x07\x9d\xde\x8f\xd0\x06\x58\x41\xb8\x92\x57\x64\ +\xc1\x40\xb3\xd9\x0c\x87\x41\xd0\x96\x04\xf8\x3a\x82\x81\x02\x11\ +\x15\xc5\x30\x8c\x36\x7a\x40\xee\x9d\xd3\x54\x57\x03\x92\x61\xa5\ +\xdd\x9f\xb8\x48\xab\xd5\x0a\xab\x68\x89\x00\xab\xc9\x64\xf2\xcc\ +\xb3\x01\x00\x22\x23\x23\x89\xd7\x9e\x8a\x24\x03\x92\x60\xf5\x6a\ +\xf7\x17\xa2\xd8\x44\xf6\x4a\xac\x10\x2e\x00\x80\xcf\xe7\x0f\x1d\ +\x3a\x34\x2f\x2f\x2f\x3f\x3f\x9f\xf9\x8b\x05\x45\x51\xa5\x52\xa9\ +\x54\x2a\x93\x93\x93\x29\xbf\xb2\x5a\xad\x65\x65\x65\x70\x66\x14\ +\x31\x25\x05\x8a\xa4\x1d\x39\x72\x64\xf9\xf2\xe5\x53\xa6\x4c\xf1\ +\xe9\xca\xd8\x80\x61\x18\xb3\x61\x45\x10\x84\xa5\xc7\xca\x00\xe5\ +\x08\x98\xcb\x55\x5b\x5b\x3b\xc0\x7a\x10\x69\x4b\x47\x1d\x18\xee\ +\x72\x87\xbb\x3b\x80\x59\x30\x30\x40\x9f\x8e\xb0\x7a\x2d\x2d\x2d\ +\x9e\x6a\x03\x12\x89\x84\x68\xd7\x81\x23\x26\x01\xc9\xb0\x7a\x36\ +\x0e\x89\xc5\x62\x62\x95\x43\x04\xf2\x08\xdb\xdd\xd8\xd8\xe8\x79\ +\x01\xc9\xc9\xc9\x84\x4b\x6b\x30\x18\x28\x4a\x22\x9c\x81\x98\x14\ +\x1d\x00\x88\x94\x3e\x4f\x5d\xe3\xbe\xf1\xc6\x1b\x41\xd1\x85\x14\ +\x8b\xc5\x33\x66\xcc\x80\x32\x68\x75\x75\x75\xdf\xef\xdb\x57\xa3\ +\xd1\x40\x3f\xdc\x66\xb3\xed\xdc\xb9\xb3\xa4\xa4\xe4\x2f\x7f\xf9\ +\x4b\x70\xab\x49\x6e\xdd\xba\xc5\x2c\xc6\x91\x94\x94\x44\xab\x7b\ +\xed\x13\x12\x89\x24\x21\x21\x81\x3c\xe7\x56\xa3\xd1\xdc\x23\x86\ +\x55\xaf\xd7\x9f\x2c\x2e\x76\x3a\x1c\x85\x85\x85\x81\xfc\x1d\x69\ +\x3d\x56\x53\xb8\x04\x03\x65\x74\xb5\x56\xb4\x86\x35\x90\x8e\x1a\ +\x14\x45\x89\x72\x66\xcf\x90\x02\x82\x20\x4f\x3f\xfd\x34\xb1\x10\ +\x39\x79\xf2\x24\x9c\x37\x41\xa8\x26\x37\xdc\xbe\x4d\x79\x4b\x62\ +\x62\x22\xf1\x1a\x1a\x56\xa9\x4c\x46\x14\xf9\x7b\xf6\xdd\xf2\x78\ +\xbc\xa7\x9e\x7a\x8a\x48\x76\x1d\x39\x72\x84\x52\xcd\x1a\x3d\xa0\ +\x1b\x04\xee\x5f\x24\xc3\x7c\x76\xce\x38\xa1\x50\xdb\x4d\x4d\x4d\ +\xfd\xcb\xab\xaf\xfe\xe3\x1f\xff\x98\x35\x6b\x16\xca\xfd\x77\xe1\ +\x41\x7d\x7d\xfd\x4b\x2f\xbd\x14\xe0\x52\x8e\x42\x9f\x71\x80\xec\ +\x20\x99\x3f\x4a\xb6\xea\x1e\xfc\x01\x41\x25\x00\x00\x20\x00\x49\ +\x44\x41\x54\x09\xb3\x9a\x4c\xa6\x77\xde\x79\xe7\xe8\x91\x23\xc5\ +\xc5\xc5\x9b\x36\x6d\x62\x10\x52\xeb\x13\xc2\x63\xbd\xab\x3b\x20\ +\x2c\x99\x2b\xf4\x6e\xc1\x40\x6f\xd1\x5e\x48\xb7\x97\xf1\xe0\x6c\ +\x18\x32\x64\x08\x61\x37\xb3\xb2\xb2\xf2\xf2\xf2\x88\x9a\x9b\xb8\ +\xb8\xb8\x0d\x1b\x36\x8c\x1b\x37\x0e\xfe\xd8\xda\xda\x0a\xa5\x26\ +\xe3\xe3\xe3\x09\x57\xa0\xd9\xa3\x31\x81\x5c\xcd\x7a\xe7\xce\x1d\ +\x00\x40\x26\x29\x6d\x3b\x61\xc2\x84\x9c\x9c\x1c\xc2\x8c\x0e\x1b\ +\x36\xec\xb5\xd7\x5e\x23\x1e\xb7\xba\xba\xba\x92\x92\x12\xca\x01\ +\x43\x3d\xe8\x7b\x10\xff\x88\x88\x94\x8a\x54\xbe\x75\xdc\x85\xb0\ +\x8e\x15\x45\xd1\x15\x2b\x56\x2c\x59\xb2\xe4\xd3\x4f\x3f\x85\x96\ +\xc8\x66\xb3\x6d\xdc\xb8\xf1\x83\x0f\x3e\x08\xd6\x60\xb5\x3e\x2b\ +\x58\x73\x58\x4f\xac\x62\x26\x2b\x2b\x8b\x1c\x66\xad\xaf\xaf\xbf\ +\x17\xc2\xac\x65\x65\x65\x44\xf9\xad\xdb\xed\x2e\x2d\x2d\x65\x39\ +\xa9\xdb\x13\xe8\xc1\xa1\x5c\x2e\x39\xc8\x18\x1e\x95\x00\x09\x97\ +\x46\x7e\x05\x78\x31\xac\xcc\x15\x20\xcc\x90\xcb\x4b\x85\x42\xe1\ +\xba\x75\xeb\xec\x76\x7b\x47\x47\x07\x9f\xcf\x27\x9f\x4b\xaf\xd7\ +\x7f\xfa\xe9\xa7\x30\xad\x44\x78\xb8\x46\xa3\xd1\x53\x88\x80\xdc\ +\x03\x72\xfb\xf6\x6d\x70\x77\xe6\x4a\x2e\x97\xbf\xf2\xca\x2b\x56\ +\xab\xd5\x68\x34\x4a\x24\x12\xf2\x3d\xdf\xd4\xd4\xf4\xe9\xa7\x9f\ +\x7a\xe6\x55\x98\xfb\x03\x43\x07\x1f\x0d\xdd\x00\xbe\xfb\x98\x5e\ +\x37\xde\x62\x73\xb7\xf4\x60\x00\x00\x79\x5a\x0e\xcb\x31\x82\x90\ +\x90\x37\x08\x08\x04\x82\xd7\x5f\x7f\xfd\xe4\xc9\x93\x7b\xf6\xec\ +\xc1\x71\xdc\xe1\x70\x6c\xda\xb4\x69\xf3\xe6\xcd\x81\x1f\xd9\x66\ +\xb3\x31\x57\x2f\x72\xb9\xdc\x60\x69\xaf\x64\x67\x67\x93\xa7\x42\ +\x62\x18\x56\x53\x53\x13\x5c\x31\x5d\x3f\xa0\x7c\xaf\x70\x38\x1c\ +\x6f\x7b\x32\x43\x4c\xdc\x53\x45\x47\x93\x9b\x52\xcc\xe1\xa9\xb5\ +\xe2\xd1\x2b\xb1\xd2\x1a\x56\x62\xb2\x99\x1f\x78\x2e\xce\x04\x02\ +\x01\xd9\xeb\xc4\x71\xfc\xfc\xf9\xf3\x5f\x7f\xfd\xb5\xf5\x57\xbf\ +\x98\x70\x69\xe1\x40\x40\x0a\x44\xc1\xaf\xd9\x6c\x86\x86\xd5\xf3\ +\x7e\x13\x8b\xc5\xe4\xbc\x05\x86\x61\x25\x25\x25\x7b\xf7\xee\xf5\ +\x0c\x61\x21\x08\xe2\xf7\xf7\xe2\x20\xc1\xc2\x8d\x83\x36\x3b\xd6\ +\xdc\x83\x35\xf7\x60\x3a\xfb\x6f\x19\x86\x98\xb1\x85\xad\xe7\x7e\ +\x62\x7a\xe7\xdd\x84\xa9\xf3\x6a\xc6\x8c\x19\x62\xb1\x78\xfb\xf6\ +\xed\x00\x00\xbd\x5e\x7f\xe2\xc4\x89\x99\x33\x67\x06\x78\x4c\x8d\ +\x46\xc3\x9c\x6d\x4c\x4d\x4d\x0d\x96\x53\x29\x16\x8b\x93\x92\x92\ +\xc8\x95\xc6\x1a\x8d\x86\x30\xac\x7a\xbd\xfe\xfc\xf9\xf3\x94\x8b\ +\x11\x08\x04\x14\x4b\xc7\xe7\xf3\x29\xfd\x1e\x5c\x2e\x97\x72\x85\ +\x28\x8a\x92\xeb\xf3\x21\x22\x91\x88\x78\xad\x54\x2a\xe1\x83\x8a\ +\x61\x18\x65\xed\xef\xf7\x63\x49\x94\x4f\x52\x6c\x59\x78\x62\xac\ +\xf2\x08\x9a\x5a\x2b\x00\x40\x2c\xdd\x50\x96\x40\x0c\x2b\xb9\xbc\ +\xba\xa5\xa5\x45\xa7\xd3\x41\x47\x32\x22\x22\xc2\x60\x30\x54\x57\ +\x57\x9f\x3b\x77\x8e\x1c\x49\x07\x00\xfc\xfc\xf3\xcf\x4e\xa7\x93\ +\xc3\xe1\x5c\xb8\x70\xc1\xf3\x80\x45\x45\x45\x22\x91\xc8\xe5\x72\ +\x1d\x3c\x78\xd0\xed\x76\xf3\x78\x3c\xf2\x18\xbb\x86\x86\x86\xce\ +\xce\x4e\x99\x4c\x26\x97\xcb\x11\x04\xd1\xe9\x74\xf0\x14\xde\x2a\ +\xc6\x52\x53\x53\xef\x17\x59\x89\x01\x06\x0e\x80\xc1\xe1\x6e\xb1\ +\x61\x8d\x56\xd7\x1d\x9b\x1b\xa3\xbb\xeb\x79\xf2\x68\x91\x2a\x9e\ +\xbd\xd3\x1a\xbe\x96\xd6\xfc\xfc\xfc\xf2\xf2\x72\xd8\x98\x71\xf8\ +\xf0\xe1\xc0\x0d\x2b\xed\xbd\x4e\x26\xf0\x7a\x00\x32\x59\x59\x59\ +\x64\xc3\x4a\x0e\xef\xee\xdc\xb9\x33\x6c\x51\x57\xa1\x50\xf8\xfe\ +\xfb\xef\xcb\xe5\xf2\xba\xba\x3a\xa2\xfa\x82\xb8\x42\xff\x8e\x49\ +\x1b\x60\x05\xe1\xf2\x58\xc9\x45\xac\x18\x86\xc1\x5a\x48\x85\x42\ +\x41\xdb\x74\xe8\xb7\x61\x4d\x48\x48\x20\x16\xe3\x95\x95\x95\x7f\ +\xff\xfb\xdf\xd9\x4c\xb1\xc7\x71\x9c\x5c\xc0\x4f\xa1\xad\xad\xed\ +\xf3\xcf\x3f\x27\x7e\x1c\x9e\x96\x46\x5c\xf3\xd9\xb3\x67\x77\xec\ +\xd8\xe1\xd3\x15\xf6\x29\x9c\x36\x48\x70\xe9\xea\x75\xb7\xf4\xb8\ +\x9b\x7b\xb0\x66\x1b\x66\xa7\xb5\xa6\x77\x13\x3d\xba\x40\x7b\xe2\ +\x7b\x96\x07\x0f\xab\x56\xc0\xb3\xcf\x3e\x0b\x0d\x2b\x6d\x21\xb1\ +\x4f\xd8\x6c\x36\x4a\xf3\x9c\x27\xc1\x4d\xdc\x67\x66\x66\x92\x1b\ +\x6f\x6e\xdf\xbe\x4d\x8c\x7f\x18\x9a\x92\x12\x36\xc3\x6a\xb3\xd9\ +\xac\x56\xab\x5c\x2e\xa7\x9c\x31\x26\x26\xc6\x6f\xd1\x39\xda\x51\ +\x57\x6e\x3c\x4c\xc9\x2b\xc9\xdd\xa3\xae\xa0\xbd\xa3\x4d\xe3\x60\ +\x18\xc6\x66\xd8\x1c\x2d\xe4\x00\xeb\xc9\x93\x27\xd9\x58\x55\x5f\ +\x49\x27\xc5\x01\x60\x2f\x2c\x7b\x50\x2e\x97\x79\xc2\x85\xd5\x6a\ +\x3d\x73\xe6\x4c\x63\x63\x23\xe5\xdb\x34\x28\x74\xda\x9c\x44\xc1\ +\x32\x57\x28\x16\xc5\x25\x2b\x47\x4c\x00\xc2\x28\xe6\x77\xdd\xbf\ +\x60\x6e\xf7\xee\x86\x1e\x5f\xf5\x30\x55\x63\x26\x35\x9f\x3e\xe4\ +\xee\x65\x35\x13\x28\xac\x86\x15\xaa\x11\x63\x2e\x57\xe0\xb7\xb5\ +\x67\x3f\x22\x05\xa1\x50\x18\xdc\xf1\xe2\x59\x59\x59\xe4\x30\xab\ +\xdb\xed\xbe\x79\xf3\xe6\xe8\xd1\xa3\x01\x00\x8f\x3f\xf6\xd8\xbc\ +\xb9\x73\x29\x77\xbc\x67\x5b\xb4\xdd\x6e\xa7\x84\x0b\x88\xae\x59\ +\x02\x0c\xc3\x3c\x9f\x1c\xb2\x22\x64\x7c\x7c\x3c\xac\xf2\xa1\xb4\ +\x9c\x05\xd2\x65\x4b\x2b\x7a\x12\x36\xc1\x40\x39\xc9\x63\x65\x9e\ +\xc8\x12\x48\x1c\x80\x98\xf3\xe8\x74\x3a\xfb\xec\xd6\xf3\x0f\xe2\ +\x8b\xcd\x68\x34\xd2\x16\xb1\x32\x50\x58\x50\xc0\x50\x17\xd8\xd4\ +\xd4\xb4\xf9\xa3\x8f\x42\x27\xe3\x4d\xe5\x7a\x79\xcb\x99\xc3\xd8\ +\xca\x3f\x81\xa4\x81\xd6\xba\x0d\xc1\x00\xc7\x0f\x95\x61\x94\x2f\ +\x4c\x18\x95\xdb\x7c\x89\xa6\x6d\xd7\x93\xb0\x1a\x56\x0c\xc3\xdc\ +\x41\x1a\x7a\x43\xdb\x95\x4c\x66\x68\x4a\x4a\x70\x35\xa8\x84\x42\ +\xa1\x5a\xad\x26\x3f\x30\xd5\x1a\x0d\x34\xac\x00\x80\x30\x6b\xd0\ +\x38\x9d\xce\xda\x5b\x77\x0d\x38\x0b\xc4\x3d\x6f\xa3\x0b\x05\x84\ +\x47\x7e\x05\xdc\x2d\x18\xe8\x6d\x8a\x01\x84\xa5\xe4\xb0\x50\x28\ +\x14\x0a\x85\x36\x9b\x8d\xfc\xdd\xa6\xd5\x6a\xe1\x8b\xc3\x87\x0f\ +\x87\x68\x10\x61\x63\x63\xe3\x94\x29\x53\x70\x1c\x3f\x70\xe0\x80\ +\x4f\x6f\x44\x10\x64\xce\x9c\x39\xde\x7e\x8b\x61\xd8\xd6\xad\x5b\ +\xc3\x67\x55\xe1\x49\x1d\xb6\xaa\xff\xdd\x6a\x1d\xfb\x41\xbf\xb4\ +\xa2\x06\x0e\x8e\xe3\xad\x36\xec\x9a\x29\xc8\x53\x85\xa2\xf3\x1f\ +\x6a\xbd\x52\xc6\xc6\x88\x85\xd5\xb0\x7e\xff\xfd\xf7\x41\x59\x82\ +\x79\xb6\xac\x78\x12\x8a\x5a\xeb\xac\xec\xec\xbb\x0c\x6b\x68\x1c\ +\x1f\x36\xd4\xd6\xd6\x52\x7a\x91\xfd\x0e\xb0\x02\x00\x3a\xe8\x6a\ +\xf2\xcd\x61\x99\x7a\x4d\x15\x0c\xa4\x0b\x4a\x10\x30\xac\x82\x11\ +\x04\x29\x2c\x2c\xcc\xcd\xcd\x1d\x32\x64\x08\x11\x4b\xd5\x6a\xb5\ +\xa7\x4e\x9d\x3a\x75\xea\x94\xdb\xed\xae\xa8\xa8\x78\xe3\x8d\x37\ +\x00\xa9\x45\x2a\xe8\x9c\x38\x71\xa2\xb6\xb6\xd6\x6e\xb7\x7b\x4a\ +\x0a\x30\x33\x65\xca\x14\x06\xf5\x5e\x8d\x46\xe3\xeb\x01\x83\x82\ +\xab\xa7\xfb\xf2\xe5\xcb\x93\x27\x4f\x0e\xff\xa9\x03\xe7\x86\x15\ +\xe9\x6a\xb6\x3b\x4d\xc1\x09\x9b\x44\xf1\x38\x89\x42\x4e\x92\x08\ +\x4d\x1c\xa6\x2e\x9a\x3f\xff\x87\x1f\x7e\xe8\xf3\x2d\xe1\x33\xac\ +\x4d\x4d\x4d\x47\x8f\x1e\x0d\xca\xa1\x28\xa2\x41\xb4\x84\x42\x67\ +\x3a\x2b\x33\x93\x2c\x50\xaf\xd5\x6a\xfb\x4b\xb6\x87\xb2\x98\x4d\ +\x48\x48\xf0\xdb\x65\xc6\x30\x0c\x56\x05\x48\x24\x12\x72\x5f\x5c\ +\x0f\x8b\x70\x7e\xe0\xc8\xee\xd6\xb5\x6a\xf7\x92\x46\x83\x78\x2b\ +\x02\x41\xb9\xdc\x97\x5f\x7a\xc9\xd3\x67\x57\xab\xd5\xab\x56\xad\ +\x7a\xe0\x81\x07\xb6\x6d\xdb\xa6\xd3\xe9\x42\x67\x52\x09\x7c\x8d\ +\x00\x00\x00\xf8\x7c\xfe\xe2\xc5\x8b\x19\x76\xa0\x15\x1c\x08\x0f\ +\x01\x4a\xde\xdc\xd7\x44\x72\x91\x44\x11\x9a\x2c\x44\x13\x45\x28\ +\xb9\x81\xe5\xe1\x87\x1f\xfe\xe5\x97\x5f\x28\xd5\x23\x9e\x84\xc9\ +\xb0\x6a\xb5\xda\x77\xdf\x7d\x37\x58\x5a\x0c\x7d\xc6\x01\x80\x97\ +\x62\x9d\x00\xc9\xc8\xc8\xe0\x70\x38\xc4\xa7\xc0\x71\xbc\xa6\xa6\ +\x86\x68\xd7\x01\x00\xe8\xf5\x7a\xcf\xd0\xaa\x67\x0d\x8d\x67\x25\ +\x16\xed\xa0\x2d\x06\x28\x2d\x67\x81\xc4\x01\x08\xad\x48\x8a\x2d\ +\xcb\x90\x72\xeb\x2d\xbd\x86\x10\x8b\xb0\x48\x59\x2b\xb1\x82\xbb\ +\xa5\xa4\xc8\xac\x5a\xb9\x92\xe1\x7f\x40\xad\x56\xbf\xf9\xe6\x9b\ +\x9f\x7d\xf6\xd9\xbd\xa9\x78\xb2\x6c\xd9\x32\xe6\x7e\x99\xf0\x8c\ +\x8c\xfe\x5d\x81\x39\xe8\x65\x61\x23\x38\x48\xa2\x90\xa3\x16\xa1\ +\x09\x22\x54\xc1\xa3\xaf\x0a\x47\x51\x74\xcd\x9a\x35\x7d\x5a\xb3\ +\x70\x18\xd6\x1f\x7e\xf8\x61\xff\xfe\xfd\xc1\xca\xc3\x6a\xb5\x5a\ +\xd8\x3e\xc8\x4c\x28\x3c\x56\x81\x40\x30\x74\xe8\x50\x72\x57\x82\ +\x46\xa3\x21\x0c\x6b\x65\x65\xe5\xc7\x1f\x7f\x1c\xc4\xd3\x91\x2d\ +\x72\x04\x8f\xf7\xe8\xb2\x65\x70\x5d\x66\xb3\xd9\x1a\x1a\x1a\xc8\ +\x7b\x06\x14\x07\xf0\xb2\xfa\x96\x45\x70\x1e\x1f\x2a\x76\xe3\xc0\ +\xe2\x72\x77\x3a\xf1\xee\x5e\x77\x57\x2f\xde\xd5\xeb\xee\x76\xb9\ +\x3b\x9d\x41\x13\x67\xa1\x08\x06\xc2\x8b\xe1\xf1\x78\xb4\xb6\x86\ +\x36\x14\x90\x9c\x9c\x3c\x75\xea\x54\xe6\xb3\x88\xc5\xe2\x97\x5e\ +\x7a\xe9\xc3\x0f\x3f\x64\xaf\x87\x1d\x1e\x12\x12\x12\xa0\xbc\xc6\ +\x20\xfd\x05\x8a\x80\x78\x21\x27\x49\xc8\x4d\x14\xa1\x31\x02\x0e\ +\x9b\x16\xb4\x94\x94\x94\x85\x0b\x17\x32\x47\xd2\x43\x6b\x58\xaf\ +\x5e\xbd\xba\xf3\xcb\x2f\x89\xb8\x3b\x74\xd3\x02\xf4\x5b\xcf\x9d\ +\x3f\xdf\xe7\x3e\x1c\x14\x0d\x51\xdb\x75\x56\x56\x16\xf9\xe1\x24\ +\x7b\x8e\xbe\x8a\x3c\xf6\x09\xd9\xf9\xb5\xd9\x6c\x65\x65\x65\xd0\ +\xb0\xde\xbc\x79\x93\xfc\x2d\x85\x20\x48\x20\x86\x95\xb9\xd3\x89\ +\x83\x00\x59\x04\x47\x16\x01\x00\xb8\x2b\x13\xe8\xc0\x70\x53\x2f\ +\x6e\xe9\x75\x9b\x7b\x71\x73\xaf\xdb\xd4\x8b\x9b\x7b\xdd\x7e\x94\ +\x67\x91\xbb\x03\xac\x56\x2b\xfc\xc8\x3e\xfd\xed\x1e\x7a\xe8\x21\ +\x36\x23\x8c\x04\x02\xc1\x86\x0d\x1b\xde\x7a\xeb\xad\xe0\xaa\x55\ +\x04\x0a\x8a\xba\x70\x10\x31\xd8\x50\x1a\x76\x62\x04\x9c\x44\x21\ +\x9a\x28\x42\x93\x84\x28\x2b\x6b\x7a\x37\x0b\x16\x2c\xd0\x68\x34\ +\x0c\x45\x96\xdc\x50\x4c\x70\xc2\x30\xec\xa7\x9f\x7e\x3a\x72\xf4\ +\x28\x39\x95\x29\x16\x8b\x5f\x7f\xfd\xf5\x77\xde\x79\x27\x10\xc3\ +\x8a\xe3\x78\x79\x5f\x7d\x01\x00\x80\xd8\x98\x98\x10\x8d\xa5\xca\ +\xcc\xcc\x2c\x2a\x2a\x22\x7e\x6c\x6e\x6e\xb6\x58\x2c\xb0\x50\xa6\ +\xb0\xb0\x90\xcf\xe7\x53\x4a\x74\xd9\x94\x58\xe1\x38\xee\x19\x40\ +\xa0\x64\xc0\xb9\x5c\xee\xec\xd9\xb3\xe1\x6b\x4a\x27\xab\x5a\xad\ +\x0e\xa4\x63\xc7\x9b\xc7\xca\x0c\x1f\x45\x62\x51\x24\x56\x70\x97\ +\xbf\x09\xdd\xdb\xae\x5e\xbc\xbb\x17\xef\xea\x75\x77\xf5\xba\xcd\ +\xbd\x6e\x8b\xd3\x6d\xf7\xfe\x07\x27\x0b\x06\x32\xd7\x5a\x01\x3a\ +\x8f\x15\x41\x10\x72\x28\x86\x19\xa9\x54\xba\x7e\xfd\xfa\x4d\x9b\ +\x36\xdd\x3b\xf2\xa0\x26\xbb\x6b\x47\x5d\x4f\xac\x80\x93\x24\x42\ +\x93\x44\x68\x9c\xc0\x9f\x87\x7c\xde\xbc\x79\xa9\xa9\xa9\x70\x60\ +\x12\xbc\xed\x61\xac\x09\x0e\x55\x12\x08\x04\xbd\xbd\xbd\x5d\x5d\ +\x5d\x3a\x9d\xae\xb6\xb6\xb6\xba\xba\x3a\x74\xf3\x51\xb8\x5c\x7a\ +\x47\xcd\xb3\x99\xb0\x7f\xe1\xf1\x78\x4b\x93\x03\x6a\x72\x43\x51\ +\x74\xfd\xfa\xf5\xef\xbe\xfb\xae\xb7\xf9\xd0\xdc\x35\x6b\xd6\x24\ +\x26\x26\x8e\x1f\x3f\x7e\xfa\xf4\xe9\x01\xd6\x0c\x99\xcd\xe6\xe2\ +\xe2\xe2\x4b\x97\x2e\xb5\xb4\xb4\x90\xef\x5d\x04\x41\x1e\x7c\xf0\ +\xc1\x15\x2b\x56\x04\x6e\xec\x34\x1a\x0d\x9b\xe6\x02\xca\x10\xcd\ +\x20\x92\x91\x91\x01\x05\xbf\xe1\x8f\x38\x8e\x6b\x34\x1a\x38\xb7\ +\x15\x41\x10\x36\x03\x5c\x03\x87\x12\x60\x1d\x19\x98\xd0\x8c\xb7\ +\xb6\x2b\x3f\x20\xb9\xb7\x77\xd1\xeb\xc6\xbb\xa0\x63\xeb\xc4\xbb\ +\x5d\x6e\x53\xaf\xdb\xe2\xc4\x2d\x2e\x77\xac\x80\x13\x27\xf8\xed\ +\x96\x60\xf6\x9d\x01\x5d\xb4\x51\xad\x56\xfb\x94\x3c\x4c\x4d\x4d\ +\x9d\x3b\x77\x2e\xf9\xab\xb1\x7f\x71\x39\x1c\x38\x00\x6d\x76\x77\ +\x9b\xdd\xfd\x8b\xb1\x17\x2e\x4b\x87\x88\xb9\x89\x42\x54\xc9\x67\ +\x6b\x63\x47\x8f\x1e\xcd\x72\x18\xd2\xdc\xb9\x73\x31\x0c\x3b\x77\ +\xee\xdc\xfe\xfd\xfb\x43\xe1\xb9\x27\x26\x26\x7a\x3a\x71\x42\xa1\ +\xb0\xbf\x54\xbb\x22\x64\x4a\xae\x28\xd2\xd5\xd3\x4d\xd9\x4e\x9e\ +\x0e\xe9\x37\x12\x89\xe4\x95\x57\x5e\x79\xef\xbd\xf7\x68\xe7\x90\ +\x72\xdd\x6e\x77\x53\x53\x53\x53\x53\xd3\x81\x03\x07\x78\x3c\x5e\ +\x74\x74\x74\x52\x52\xd2\x90\x21\x43\xd4\x6a\xf5\xb0\x61\xc3\x18\ +\xee\x5a\xab\xd5\x5a\x5f\x5f\xaf\xd5\x6a\x1b\x1b\x1b\x9b\x9b\x9b\ +\x3b\x3a\x3a\x3c\xcb\x03\x39\x1c\xce\xa8\x51\xa3\x9e\x7a\xea\xa9\ +\x60\xc9\x59\x9d\x67\x11\x07\x00\xa1\x09\xb0\x42\x78\x3c\xde\xb0\ +\x61\xc3\x6a\x6b\x6b\x89\x2d\xd5\xd5\xd5\xe1\xb1\xa7\x10\x8b\xc5\ +\x42\xc9\x6e\x07\x38\x80\x8b\x59\x4d\x2a\x28\x44\x70\x90\x68\x3e\ +\x12\xcd\xef\x43\x23\xc6\x0f\x13\xef\x87\xe8\xe5\xe2\xc5\x8b\xcb\ +\xcb\xcb\x3d\xc5\x52\xfb\x05\xb7\xeb\xae\x47\x06\xc3\x41\x73\x8f\ +\xbb\xb9\xc7\x09\x00\x10\xa0\x48\x92\x10\x4d\x12\xa1\xb6\xbe\xca\ +\x33\xce\x9c\x39\x63\x32\x99\xa2\xa3\xa3\xa5\x52\x69\x9f\xff\x75\ +\x28\x8a\x4e\x99\x32\x65\xdc\xb8\x71\xdb\xb7\x6f\x67\x33\x2d\xdc\ +\x27\x16\x2c\x58\x50\x53\x53\x43\xc9\xa6\xcc\x9d\x3b\x37\xfc\x53\ +\x8d\xa5\x08\x36\x55\xc5\x4b\x10\xa1\xc3\x16\xcc\xff\xf6\xdb\x6f\ +\x29\xbf\x65\x1e\x4e\xce\x9e\xd8\xd8\xd8\xd7\x5e\x7b\xed\x83\x0f\ +\x3e\xf0\xb4\xad\x77\xb9\xee\x4e\xa7\xb3\xb5\xb5\xb5\xb5\xb5\x95\ +\xdc\x1f\xcd\xe1\x70\x10\x0e\x87\xf3\x6b\x18\xcb\x8d\xe3\xb8\xdb\ +\xdd\xe7\x62\x4a\x2a\x93\x4d\xcc\xcb\x5b\xb2\x64\x49\x10\x95\xad\ +\x31\x0c\xa3\x9d\x53\xe4\x49\x5c\x5c\x5c\xb0\x4e\xea\x49\x66\x66\ +\x26\xd9\xb0\x86\x59\x9b\x95\x52\x68\x85\xa2\x68\x80\xa3\x1b\xa1\ +\x39\x83\xb3\x20\xfd\x3b\x02\x86\x61\x3a\x9d\xce\xed\x76\xc7\xc7\ +\xc7\x07\xf2\x08\x11\x26\x9e\x7d\x45\x87\x4f\xe1\x0b\x08\xfc\x1f\ +\xbb\x47\x0c\x2b\xee\x3d\xe3\x6f\xc7\xf0\x5b\xdd\xae\x5b\xdd\xae\ +\x36\x43\x1f\xed\x0c\x67\xcf\x9e\x3d\x7b\xf6\x2c\x00\x60\xdc\xb8\ +\x71\x70\x1e\x2a\x00\xe0\x9b\x6f\xbe\x29\x29\x29\x81\x5a\xdd\x51\ +\x51\x51\x6a\xb5\x7a\xfc\xf8\xf1\x05\x05\x05\xf0\x0f\x24\x16\x8b\ +\x37\x6c\xd8\xb0\x69\xd3\xa6\xe0\x66\xf3\x46\x8c\x18\xb1\x66\xcd\ +\x9a\x3d\x7b\xf6\xc0\x40\x16\x8a\xa2\x73\xe6\xcc\x59\xb0\x60\x41\ +\x10\x4f\xc1\x12\xb5\x18\x1d\x29\x8f\x00\x00\xcc\x99\x33\xc7\x66\ +\xb3\x15\x15\x15\xc1\xe5\x8e\x50\x28\x5c\xb9\x72\x65\x10\x75\xe9\ +\x92\x92\x92\xde\x7c\xf3\xcd\x4f\x3e\xf9\x84\x52\x80\xc5\xfd\xf8\ +\xe3\x8f\x8f\x9f\x38\x71\xed\xea\x55\x5d\x7b\x3b\xed\x54\x41\xb7\ +\xdb\x0d\xdc\x6e\x36\x15\x1f\x28\x97\x1b\x1b\x13\x33\x6a\xf4\xe8\ +\x59\x33\x67\xd2\xf6\xad\x5b\xad\xd6\x40\x6a\x47\xae\x5e\xbd\xca\ +\x32\x3c\x14\x3a\x8f\x15\x00\x90\x9d\x9d\x7d\xe8\xd0\x21\xe2\xc7\ +\xd6\xd6\x56\xb3\xd9\x1c\xb6\xce\x2b\x4a\xcd\x50\x80\x0a\x5e\x50\ +\x79\x00\x00\x10\x7d\xb7\x60\x20\x4b\x30\x0c\x2b\x2a\x2a\x3a\x76\ +\xec\x18\x3c\x88\x50\x28\x9c\x3d\x7b\xf6\x82\x05\x0b\xfc\x33\xaf\ +\xcc\x6d\x57\xb4\xf8\x27\x8f\x40\x56\x0b\x0b\x1d\x09\xc9\xc9\xad\ +\x7d\x55\xce\x7a\xab\xfb\x09\x1c\xab\xd5\x0a\x57\x90\x38\x8e\x1b\ +\x8d\x46\xa3\xd1\x78\xe5\xca\x95\x1f\x7f\xfc\xf1\xc5\x17\x5f\x84\ +\x81\x32\x14\x45\x57\xae\x5c\xf9\xf6\xdb\x6f\x07\xf7\xbc\x05\x05\ +\x05\x13\x26\x4c\xa8\xab\xab\x73\x3a\x9d\xc3\x86\x0d\x83\xe9\x07\ +\xa8\xc5\xa7\xb5\xf6\x43\xdd\x18\x82\x20\x8b\x17\x2f\x9e\x3d\x7b\ +\x76\x7d\x7d\x3d\x97\xcb\x0d\xa2\xe2\x1d\x81\x4a\xa5\x7a\xeb\xad\ +\xb7\x0e\x1d\x3a\x74\xea\xd4\x29\xc2\x75\xe5\x2a\x95\xca\xc7\x1f\ +\x7b\xec\xf1\xc7\x1e\x03\x00\x18\x8d\xc6\xcb\x97\x2f\xd7\xd4\xd4\ +\xb4\xb5\xb5\x75\x77\x77\xdb\x6c\x36\x18\xff\xa6\xf8\xf6\x08\x82\ +\xc0\x48\xb9\x50\x28\x8c\x8c\x8c\x8c\x8b\x8b\xcb\xc8\xc8\x18\x3b\ +\x76\x2c\xb3\xcb\x83\x61\xd8\xf6\xed\xdb\x03\xc9\x1b\x94\x95\x95\ +\xb1\xd9\x8d\xc3\xe1\x84\xd4\x63\x4d\x4d\x4d\x85\x8a\x07\xc4\x96\ +\xea\xea\x6a\x42\x41\x43\xa7\xd3\x6d\xd9\xb2\xc5\x62\xb1\x44\x44\ +\xdc\x15\x6b\xe4\x70\x38\xb4\x05\xad\x7d\x0a\x09\x8a\x44\xa2\x87\ +\x1f\x7e\x98\x58\xe2\x5d\xbf\x7e\x9d\xfc\xdb\x00\x15\xbc\x68\x55\ +\x02\xd8\xb3\x6b\xd7\x2e\xe8\x2b\x41\x6c\x36\xdb\x81\x03\x07\x5a\ +\x5b\x5b\xd7\xad\x5b\xe7\xc7\xd1\xfc\x08\x4a\xf8\x67\x22\xd9\x8f\ +\x96\x22\x97\x2d\xb3\x01\x41\x90\x94\x94\x94\xdc\xdc\xdc\x09\x13\ +\x26\x08\x04\x82\x17\x5f\x7c\xb1\xcf\xb7\xe0\xae\x5e\x84\xeb\x11\ +\x96\x0e\x0d\x3a\x9d\xee\xc3\xcd\x9b\xdf\x7b\xf7\x5d\xe8\x07\xa4\ +\xa4\xa4\x24\x27\x27\x07\xbd\x6f\x82\xc7\xe3\x65\x65\x65\x41\x2d\ +\xbe\x5a\x63\x6f\xb3\xed\xdf\x5a\x7c\x66\xbc\xdf\x26\x7a\x89\xc5\ +\xe2\x90\xaa\x27\xf3\x78\xbc\x25\x4b\x96\x2c\x5e\xbc\xf8\xce\x9d\ +\x3b\x36\x9b\x4d\xa9\x54\xde\x15\x0a\x50\x28\x14\xc4\xdc\xaa\xe0\ +\x62\xb3\xd9\xfe\xeb\xbf\xfe\xab\xb2\xb2\x92\xac\x63\xe2\x13\x4e\ +\xa7\x93\x65\x48\x28\x36\x36\x36\xa4\xda\xfe\x3c\x1e\x2f\x6d\xf8\ +\x70\x72\x04\xa0\xa6\xa6\x86\x30\xac\x57\xaf\x5e\xed\xb3\x2b\xc3\ +\x8f\x33\xae\x5a\xb5\x0a\x00\x60\x34\x1a\x29\x59\xc8\x40\x0a\xad\ +\x40\x5f\x05\xf9\xcc\x54\x56\x56\x92\xad\x2a\x41\x79\x79\x79\x7e\ +\x7e\x3e\xfb\x64\x3d\x04\xc3\x30\x98\x4e\x91\xca\x64\xec\xff\x7c\ +\xfe\xb5\xbd\xb1\x9f\xf7\xfe\xc6\x1b\x6f\x68\xb5\xda\xba\xba\xba\ +\xf6\xf6\xf6\x8e\x8e\x0e\xe8\x98\x3b\x1c\x0e\x3e\x9f\x1f\xc1\xe3\ +\x89\x84\x42\xa9\x54\x2a\x97\xcb\x15\x4a\x65\xb4\x52\x19\x1b\x1b\ +\x9b\x9c\x9c\x4c\xa4\x13\x58\x46\x1b\xdc\x98\x0b\x0d\x97\x61\x05\ +\x00\x98\xbb\xba\x0e\x1f\x39\x02\x1d\x29\x00\x40\x4e\x4e\x4e\x70\ +\x0d\xab\xaf\x5a\x7c\x21\xa2\x5f\xc6\x32\x22\x08\x42\xac\x95\xc3\ +\xd1\x20\x50\x5d\x5d\xfd\xe5\x97\x5f\x1a\x8d\xc6\xa7\x9f\x7e\x7a\ +\xcf\x9e\x3d\xfe\x29\xbf\x55\x56\x56\xb2\x14\x37\x52\xab\xd5\x7e\ +\x1c\xdf\x27\x32\x33\x33\xc9\x86\x95\x1c\xf7\x9c\x34\x69\x12\x54\ +\x38\x26\xef\xef\x76\xbb\x3d\x83\x18\x36\x9b\xcd\xb3\x12\xcb\x75\ +\xf7\x33\x8f\x61\x18\x97\xcb\x25\xa4\x5e\x28\x01\x56\x1e\x8f\x47\ +\x56\xc3\xf3\x83\x40\x0c\x2b\x43\x22\xb1\xac\xac\xcc\x57\xc3\x6a\ +\x34\x1a\xe1\xff\x46\x8c\x2f\x57\xe2\xdf\xd0\x84\xee\x6e\x6a\x9a\ +\xd8\x1b\x91\x91\x91\xd3\xa6\x4d\x9b\x36\x6d\x9a\x1f\x67\x61\x49\ +\x62\x04\xd6\xcd\x45\xfc\x10\x5b\xf2\x9b\x2b\x97\x2f\x13\x86\x35\ +\x28\x41\x33\x1b\x86\x37\x59\xb1\x26\x1b\xd6\xd2\x83\x31\x7c\x10\ +\x3f\x66\x9d\xfa\x4d\x62\x28\x83\x81\x6c\x08\xad\x61\x6d\x6a\x6a\ +\xda\xbf\x7f\x7f\x45\x45\x85\x4a\xa5\x7a\xfd\xf5\xd7\xd3\xd2\xd2\ +\xf6\xec\xd9\xe3\xdf\xa1\xfa\x94\xb5\x26\xf0\x1c\xcd\x1d\x74\x28\ +\x89\xf8\xb6\xb6\x36\x93\xc9\x04\x5d\x15\x89\x44\xb2\x76\xed\xda\ +\x10\x9d\x97\x92\x28\x23\x2b\x2b\xfb\x47\x9f\xa5\xa3\x0c\x30\xd4\ +\xeb\xf8\x31\xa4\x3a\x90\x2b\xf1\x95\x2e\xd6\x83\xb3\x02\x11\x2a\ +\x64\xf9\xde\x7c\x09\x96\x90\x20\x32\x3a\xdd\xad\x3d\x98\xb6\x07\ +\x6b\xb1\xb9\x7b\x43\x3c\x72\x9c\xec\x4a\x93\x47\x9c\xf9\x04\x31\ +\x0f\x4a\xdb\x83\x75\xb2\xd3\xeb\x89\xca\x1e\xcf\x3b\x5d\xe4\x34\ +\x87\xbc\x41\x43\xa1\x50\xe4\xe5\xe5\x85\xfa\x2c\xcc\x70\x43\x31\ +\x14\xcf\xe9\x74\x5e\xba\x74\xa9\xb8\xb8\xb8\xb6\xb6\x56\x28\x14\ +\x2e\x5a\xb4\x68\xde\xbc\x79\x81\x9c\xc5\xe1\x70\xc0\x21\xef\x6c\ +\x08\x83\xc7\x9a\x96\x96\xc6\xe3\xf1\xc8\xe5\x65\x55\x55\x55\x05\ +\x05\x05\xa1\x3e\x2f\xc5\x63\x1d\x11\xf0\x88\x84\x40\x3c\x56\x86\ +\x7c\x5d\x64\x64\xa4\xaf\x47\x0b\xa7\x61\x35\xb1\xd6\x59\x0f\xa4\ +\x0f\x9b\xe5\x7b\xe1\x52\x46\xc1\xe3\x28\x78\x9c\x91\xf2\x08\x1c\ +\x80\x76\xbb\xbb\xa5\x07\x23\x42\x93\x41\x87\xfc\x24\xfa\x24\x9b\ +\xed\x6d\x1e\x14\x4b\x10\x6e\x44\xe6\xa3\xcf\x6b\xf6\xfe\x23\xa4\ +\xb6\x55\xa1\x50\x6c\xd8\xb0\xa1\xdf\x5b\x12\xb8\xff\xf1\x1f\xff\ +\x31\x72\xe4\xc8\xb1\x63\xc7\x66\x67\x67\xfb\x2d\x41\x0f\x31\x18\ +\x0c\x55\x55\x55\x97\x2f\x5f\xbe\x7e\xfd\xba\xd3\xe9\x54\x28\x14\ +\xcb\x96\x2d\x7b\xe0\x81\x07\x02\xd7\x7f\xba\x76\xed\x1a\xfb\x00\ +\x02\x79\x52\x66\x88\x40\x51\x74\x78\x5a\x5a\x15\xa9\x03\x4a\xa3\ +\xd1\x84\xda\xb0\xea\x74\x3a\x8a\x93\x18\xf8\xec\x99\x3e\x6b\xf2\ +\x19\x18\x3f\x7e\xbc\xb7\xb1\x25\xe3\xc7\x8f\xf7\xf5\x68\x84\x89\ +\x67\x28\x09\xa0\xe4\x03\x81\x8f\x76\x81\x20\xf0\x01\x16\x6c\x60\ +\x79\xc7\x52\xe2\x12\x08\x00\xb1\x02\x4e\xac\x80\x33\x0e\x44\xb8\ +\x71\xd0\x6c\xc3\x8e\x8a\x51\x6d\x50\x2f\x8c\xfc\xd5\xd5\xa7\xec\ +\x06\xcc\x41\x69\xad\xc1\x31\xf4\x82\xd8\xe4\xd1\x7f\x78\xb3\xb3\ +\xea\x52\x8f\x41\xc7\x71\x58\x05\xb8\x0b\xb3\x59\x1b\xaa\xaf\x7b\ +\xee\x29\x91\x48\x26\x4d\x9a\x44\xde\x72\xfe\xfc\x79\xda\x52\xfc\ +\x31\x63\xc6\xc0\x4f\xc4\x41\xd1\xc4\x84\x84\xdc\xdc\xdc\x20\x96\ +\x78\xfa\x0d\x37\x3f\x3f\xff\xfa\xf5\xeb\x70\xcc\x89\x54\x26\x1b\ +\xa2\x56\xa7\xa4\xa4\xc4\xc5\xc5\x29\x95\xca\xe8\xe8\x68\xb9\x5c\ +\x4e\xbb\xd8\xc4\x30\xcc\x64\x32\x75\x74\x74\x18\x0c\x86\xb6\xb6\ +\xb6\x86\x86\x86\x46\xad\x16\x36\xb0\x2a\x14\x8a\xfc\xfc\xfc\x82\ +\x82\x82\x8c\x8c\x0c\x3f\x2a\x78\x68\xb9\x7c\xf9\x32\xcb\x3d\x55\ +\x2a\x55\x78\x74\xfc\x32\x33\x32\xc8\x86\xb5\xba\xba\x5a\xab\xd5\ +\x72\xb9\x5c\xca\xc3\xef\x6d\x38\xa0\x1f\xff\x33\x14\x77\x15\x0a\ +\x6f\xfb\x7a\x10\x0a\x66\xb3\x19\x5e\x8f\x1f\x4d\xb1\x79\x79\x79\ +\xa7\x4b\x4b\xab\x3c\x26\x90\xa7\xa7\xa7\xfb\x31\xbe\x89\x4d\x67\ +\xad\x4c\x26\xa3\x6c\x61\x29\x7d\x4d\xc6\x64\x32\xb1\xef\xe9\x0c\ +\x64\x0e\x0a\x4b\xc3\xca\x50\x80\xc8\x41\x80\x5a\x84\x0e\x15\x73\ +\xcf\xf9\x7d\x11\x74\x90\xbf\xf6\x2e\x5d\xba\xc4\xb0\x67\x8d\xb9\ +\x77\x57\x7d\x4f\x10\x73\x50\x91\x5c\x24\x51\x2a\x4c\x9e\x35\x8d\ +\xd0\xe2\xab\xa8\xa8\xf8\x8c\xce\xb0\xca\xe5\xf2\xe5\xcb\x97\x93\ +\xb7\x54\x57\x57\xd3\x1a\xd6\xa9\x53\xa7\xfa\x1a\xd0\x0f\x03\xdc\ +\x67\x9e\x79\x06\x00\xd0\xda\xda\x5a\x5d\x5d\xdd\xd0\xd0\xd0\xd4\ +\xd4\x54\x74\xf8\x30\x39\x6d\xca\xe7\xf3\xb9\x5c\x2e\x6c\x43\x86\ +\x83\x43\x5c\x2e\x17\xf9\x86\x43\xb9\xdc\xa4\xc4\xc4\x51\x39\x39\ +\x29\x29\x29\x59\x59\x59\x41\xaf\x21\xc5\x30\xec\xea\xd5\xab\x2c\ +\x77\x0e\xee\x38\x16\x06\x28\xe9\x78\xbd\x5e\xff\xe6\x9b\x6f\xfa\ +\x7d\xb4\x88\x88\x08\x4a\x9f\x35\x87\xc3\xa1\x58\x64\x8a\x39\xc8\ +\xca\xca\x0a\x56\x43\x0b\xac\xa8\xf3\xd5\xd6\x23\x08\xb2\xe1\x4f\ +\x7f\xda\xb3\x67\xcf\xd9\xb3\x67\x61\xde\x09\xaa\x4d\x3f\xf9\xe4\ +\x93\x7e\x5c\x18\xd1\x76\xc5\x60\x58\x3d\xdd\xea\x3b\x77\xee\x10\ +\x99\x3d\x96\xb0\x91\x46\x23\x08\xa4\xec\x3a\x14\x63\xb5\x02\x27\ +\x2e\x2e\x6e\xd6\xac\x59\xf0\x75\x6d\x6d\x2d\x73\x83\x40\x97\xbd\ +\x57\x12\xb0\x55\x15\xa0\x48\x82\x90\x93\x24\x64\xd2\xe2\x1b\x78\ +\xfc\xfb\x61\x4e\x48\x48\x20\x0c\x22\x2c\x7c\xe9\xec\xec\xec\xec\ +\xec\x34\x1a\x8d\x0e\x87\x03\xea\x86\xb8\x5c\x2e\xe8\x91\x45\x44\ +\x44\xf0\xf9\x7c\x85\x42\x11\x15\x15\x15\x15\x15\xe5\x6d\xa0\x66\ +\xb0\xb8\x79\xf3\x26\x7b\xc7\x24\x0c\x71\x00\xe2\x44\x7c\x3e\x3f\ +\x58\x93\xdd\x3c\x95\x59\x00\x00\xc4\x74\x7b\x5a\x02\xec\x64\x85\ +\xc4\xc7\xc7\xd7\xd7\xd7\xdb\x6c\x36\x8d\x46\xe3\x47\xe5\x16\x8f\ +\xc7\x7b\xe6\x99\x67\x96\x2e\x5d\x0a\x65\x0c\xc9\xea\xfd\xbe\x02\ +\x43\x01\x28\x97\xeb\xe9\x96\x12\x08\x85\xc2\x98\x98\x18\x72\xc1\ +\x59\x73\x73\xb3\xaf\x27\x0a\x9b\x6e\xb4\x8b\x5d\x51\x17\xc3\xe7\ +\x0d\x3a\xd9\x23\x46\x3c\xbf\x66\x0d\x5c\x9d\x38\x1c\x8e\x5d\xbb\ +\x76\x85\xe8\x44\x7e\x68\xf1\x0d\x30\x68\xaa\x02\x50\x14\x55\xa9\ +\x54\xa1\xe8\x1c\xaf\xad\xad\xf5\xa3\xd6\x8a\x7d\x1c\x00\x00\x90\ +\x46\x9a\x94\x19\x52\x50\x14\x4d\x4f\x4f\x0f\x7a\xb7\x35\x7b\x82\ +\x32\xdc\x3b\x37\x37\x17\xfa\x2c\x5f\x7e\xf9\xe5\xc6\x8d\x1b\xfd\ +\xeb\x6a\x95\x4a\xa5\xbe\xba\x8d\x14\xac\x56\x2b\xfc\xee\x8c\x8d\ +\x89\x61\x76\x9c\xc7\x8d\x1f\x4f\x1e\xe2\xe0\x47\x28\xc0\xa7\x66\ +\xd6\x40\xc2\x4a\x6c\x9a\x17\x84\x42\x61\x88\x8a\x58\x32\x33\x33\ +\xbb\xbb\xbb\x61\x65\x82\x54\x2a\x4d\x48\x48\xc8\xc9\xc9\x21\xa4\ +\x15\x9c\x4e\xe7\xd6\xad\x5b\x83\x5b\x70\x8d\x00\xa0\x0a\x4c\x8b\ +\xef\x5e\xc3\x66\xb3\xb5\xb6\xb6\x1a\x8d\x46\xbb\xdd\x6e\xb7\xdb\ +\x85\x42\xa1\x44\x22\x49\x48\x48\x60\x63\x1b\xc3\x37\x9a\xa5\xa5\ +\xa5\xe5\xb3\xcf\x3e\xf3\xe3\x8d\xec\xe3\x00\x3c\x1e\x2f\x6c\xa1\ +\x00\x00\xc0\xc4\x89\x13\xfb\xcb\xb0\x2a\x14\x0a\x38\xab\x35\x40\ +\x1e\x7c\xf0\xc1\xe3\xc7\x8f\x1b\x8d\x46\xbd\x5e\xff\xb7\xbf\xfd\ +\x6d\xd2\xa4\x49\x29\x29\x29\xd1\xd1\xd1\x31\x31\x31\xde\xc2\xeb\ +\xa1\x80\x30\x76\x7d\xa6\x4f\x67\x4c\x9f\x5e\x52\x5c\x4c\x2c\x14\ +\xe2\xe3\xe3\x7d\x3d\x17\xfb\x88\x07\x82\x20\x81\xb8\x17\xc9\xc9\ +\xc9\x52\x99\x8c\x79\x08\xe0\xd2\xa5\x4b\x43\xd4\xcc\x32\x79\xf2\ +\x64\x6f\xe3\xaa\xf4\x7a\xfd\xd6\xad\x5b\xfd\x98\x22\x43\xcb\x6f\ +\xf3\xa0\x84\x28\x1f\xbd\xff\xad\x29\x00\x3a\x9d\xee\xfc\xf9\xf3\ +\x15\x15\x15\x4d\x4d\x4d\xb4\xf1\x1c\x89\x44\x92\x93\x93\x33\x71\ +\xe2\xc4\x51\xa3\x46\x79\xbb\x9d\xc2\x64\x58\xaf\x5e\xbd\xfa\xc5\ +\x17\x5f\xc0\x0e\x4e\x9f\xe2\x56\x06\x83\xc1\x9b\xe2\xa1\x27\x29\ +\xc1\x9e\xcc\xca\x4c\x61\x61\x61\x47\x47\x47\x71\x49\x49\x98\x27\ +\x68\xa2\x5c\xee\x13\x4f\x3c\x11\x94\xc4\x20\x94\x7f\x7e\xff\xfd\ +\xf7\xe1\x4c\xd3\xe2\xe2\xe2\xdf\xce\x82\xa2\x4a\xa5\x32\x5a\xa5\ +\x8a\x8b\x8d\x55\xa9\x54\xd1\xd1\xd1\xb1\xb1\xb1\x4a\xa5\x32\x14\ +\xb9\x41\xc2\xb0\xf6\x29\xbf\xa2\x52\xa9\x5e\x7e\xf9\xe5\x6f\xbf\ +\xfd\xd6\x64\x32\x65\x66\x66\xce\x9b\x37\xcf\xd7\x73\x8d\x1c\x39\ +\x92\xa5\x6c\x60\x7a\x7a\x7a\x20\xf9\x65\x1e\x8f\xf7\xa7\x3f\xfe\ +\x71\xdb\xb6\x6d\xb4\x05\xbf\x52\x99\x8c\x18\x09\x11\x36\x74\x3a\ +\xdd\xe9\xd3\xa7\x4f\x9c\x38\x11\xe0\x9c\x5a\x6f\xf3\xa0\xee\x77\ +\xb4\x5a\xed\xbe\x7d\xfb\xfa\xac\xec\xb4\x58\x2c\xe7\xce\x9d\x3b\ +\x77\xee\x5c\x6c\x6c\xec\x82\x05\x0b\x0a\x0b\x0b\x3d\x1f\xc6\x90\ +\x1b\x56\x93\xc9\xf4\xdd\x77\xdf\x9d\x3d\x7b\x36\x39\x39\xf9\x8f\ +\x7f\xfc\xe3\x5f\xff\xfa\x57\x9f\x0c\x2b\x45\x7b\x94\x99\xa0\x84\ +\x1d\xd9\x83\x20\xc8\xa2\x45\x8b\x16\x2d\x5a\x44\xd9\x8e\xe3\xb8\ +\xe7\x12\xd5\xe1\x70\x50\x3e\x38\x6d\x9f\x95\x67\xd0\x96\x72\x28\ +\x14\x45\x03\x09\x65\x7a\xa2\x56\xab\xdf\x79\xe7\x9d\xdd\xbb\x77\ +\x53\xbc\x6f\x0c\xc3\xda\xdb\xdb\xdb\xdb\xdb\x29\x79\x7f\xb1\x58\ +\x0c\x8d\x2c\xf1\x6f\x4c\x4c\x4c\x80\x71\xf6\x96\x96\x16\xf8\x82\ +\x4d\x11\x6b\x46\x46\x46\x20\x79\xc2\xac\xac\xac\xbc\xbc\x3c\x6f\ +\x85\x62\x64\x16\x2e\x5c\xe8\xf7\x59\x20\xa9\xa9\xa9\x9b\x37\x6f\ +\xbe\x72\xe5\xca\x8d\x1b\x37\xda\x74\x3a\x37\x86\x89\x44\xa2\xa4\ +\xa4\xa4\xb4\xb4\xb4\xec\xec\xec\x50\x67\x26\xba\xbb\xbb\x31\x0c\ +\xeb\xee\xee\xb6\x58\x2c\xad\xad\xad\x0d\x0d\x0d\x81\x4c\x7b\x1d\ +\xd8\x39\x28\xa7\xd3\xb9\x77\xef\xde\x93\x27\x4f\xfa\x94\x72\xd4\ +\xe9\x74\x3b\x76\xec\x28\x2e\x2e\x7e\xfa\xe9\xa7\x29\x21\x9d\x10\ +\x1a\x56\xbd\x5e\x7f\xb2\xb8\xb8\xa4\xb8\xd8\xe5\x72\xcd\x99\x3b\ +\x77\xf1\x23\x8f\xf8\xb1\xea\xe9\x73\xcc\x35\x99\x90\xea\x2c\xb0\ +\x07\x41\x10\x4f\xb7\xee\x5e\x9e\xcf\xae\x52\xa9\x5e\x79\xe5\x15\ +\xbd\x5e\x7f\xf3\xe6\xcd\xb6\xb6\x36\xbd\x5e\xdf\xde\xde\xae\xd7\ +\xeb\x69\xab\x5b\xac\x56\xab\xd5\x6a\xa5\x2c\x24\x39\x1c\x8e\x42\ +\xa1\x80\x46\x36\x26\x26\x46\xa5\x52\xc1\x17\x6c\x3e\xb5\xc3\xe1\ +\x28\x2d\x2d\x85\xaf\xfd\xd0\x57\xf5\x83\xb5\x6b\xd7\xf2\x78\x3c\ +\x5a\xa1\x03\x08\x82\x20\x8f\x3f\xfe\x78\x20\x23\x1a\x09\x50\x14\ +\x1d\x3f\x7e\xbc\x1f\x85\xbd\x01\xb2\x6f\xdf\xbe\xa0\x08\x5a\x26\ +\x89\x06\x7e\x0e\xca\x68\x34\x7e\xf2\xc9\x27\x7e\x6b\x26\xd4\xd7\ +\xd7\xbf\xf5\xf6\xdb\x4f\x3c\xfe\xf8\xcc\x99\x33\x89\x8d\xdc\xb2\ +\xb2\xb2\x9c\x9c\x9c\x20\x3e\xf6\x56\xab\xb5\xb2\xb2\xf2\xe7\x9f\ +\x7f\xbe\x7e\xfd\x3a\x82\x20\x05\x05\x05\x0b\x16\x2c\xf0\x7b\x66\ +\x2a\xfb\x48\x50\x64\x64\x64\xd8\x4a\x02\x68\x81\x3a\xb6\x1d\x1d\ +\x1d\x32\x99\x6c\xc2\x84\x09\x01\xaa\x94\x37\x37\x37\x9f\x3f\x7f\ +\x5e\xaf\xd7\x4b\xa5\xd2\x09\x13\x26\x84\xc1\x19\xf7\xcc\x58\xda\ +\xed\x76\xbd\x5e\x0f\xed\x2c\x34\xb5\x06\x83\x81\x56\x5e\xd2\xed\ +\x76\x77\x74\x74\x74\x74\x74\x50\x1e\x66\xa1\x50\x08\xc3\x08\x31\ +\xb1\xb1\xaa\x5f\xcd\x6e\x74\x74\x34\xe1\xac\x99\x4c\xa6\x1d\x3b\ +\x76\xc0\xc5\x72\x72\x72\x72\x78\xfe\x82\x28\x8a\x3e\xf7\xdc\x73\ +\x53\xa7\x4e\x3d\x7a\xf4\xe8\xd5\xab\x57\xc9\x2b\x09\x04\x41\x46\ +\x8e\x1c\xb9\x68\xd1\xa2\xf0\x98\xf8\x7b\x9c\x09\xd1\x82\x85\x89\ +\x01\x8d\x30\xe9\x13\x6f\x6e\xbb\xa7\x0a\x84\x67\x7b\x48\x50\xd0\ +\xeb\xf5\xef\xbf\xff\x7e\x80\xf3\x14\x30\x97\x6b\xcf\x9e\x3d\x5a\ +\xad\x76\xf5\xea\xd5\xf0\x13\x71\xb7\x6f\xdf\xce\xe1\x70\xd2\xd3\ +\xd3\xb3\xb3\xb3\x53\x53\x53\x87\x0e\x1d\xea\x87\x91\xb5\x5a\xad\ +\xb7\x6f\xdf\xae\xab\xab\xab\xaa\xaa\xba\x79\xf3\xa6\xdb\xed\x56\ +\x28\x14\xf3\xe6\xcd\x7b\xe0\x81\x07\x02\xac\x2e\x60\x9f\xb8\xcc\ +\xc9\xc9\x09\x56\x3f\x82\x1f\x14\x15\x15\x7d\xf7\xdd\x77\xc4\x3a\ +\xa2\xa8\xa8\x68\xd6\xac\x59\xcb\x97\x2f\xf7\xef\x92\x28\x73\x6d\ +\x4f\x9c\x38\x51\x50\x50\xf0\xec\xb3\xcf\x86\x59\x89\x5d\x20\x10\ +\x24\x27\x27\x53\xd6\x38\x38\x8e\x77\x76\x76\x42\x83\xdb\xd1\xd1\ +\xd1\xfe\xab\xd1\xa5\x0d\x34\xdb\x6c\x36\xad\x56\xab\xd5\xde\xd5\ +\x3a\x04\xa5\x97\x95\x4a\x25\x86\x61\x8d\x5a\x2d\x34\xd3\x08\x82\ +\xac\x5c\xb9\x32\x9c\x7f\xc1\xf4\xf4\xf4\xf4\xf4\x74\xa7\xd3\xd9\ +\xd0\xd0\x60\x34\x1a\x5d\x2e\x97\x42\xa1\xf0\xef\xfe\x1f\xa8\xf8\ +\xa7\x71\xe3\x13\xde\xec\x83\xa7\x2b\x16\x1b\x1b\x4b\x5b\x75\x1b\ +\x88\x85\xb1\xdb\xed\x9f\x7c\xf2\x89\x37\xab\x2a\x95\xc9\x32\x33\ +\x32\x52\x52\x52\x14\x0a\x05\x97\xcb\xed\xe9\xe9\x69\x69\x6d\xbd\ +\x59\x53\xe3\xad\xf8\xb7\xb4\xb4\xd4\x6e\xb7\xaf\x5d\xbb\x16\x45\ +\x51\xee\xc6\x8d\x1b\xaf\x5d\xbb\x76\xfd\xfa\x75\xe2\x49\x8e\x8e\ +\x8e\x8e\x8f\x8f\x8f\x8a\x8a\x8a\x8e\x8e\x56\x28\x14\x22\x91\x08\ +\xd6\xae\x8a\x44\xa2\x9e\x9e\x1e\x58\x71\xd9\xd3\xd3\x63\x34\x1a\ +\x3b\x3a\x3a\x3a\x3b\x3b\xef\xdc\xb9\x03\xdb\x66\x10\x04\x51\xab\ +\xd5\x73\xe7\xce\x1d\x35\x6a\x54\x7a\x7a\x7a\x50\x1e\x12\xf6\x01\ +\x59\x4a\x03\x5c\x38\xb9\x70\xe1\xc2\xbf\xfe\xf5\x2f\xca\xc6\xe3\ +\xc7\x8f\x47\x47\x47\x13\x13\x00\xd9\x73\xe9\xd2\xa5\x7d\xfb\xf6\ +\x51\x36\x9e\x3b\x77\x2e\x26\x26\xc6\x33\x9e\x1b\x7e\x10\x04\x51\ +\x28\x14\x0a\x85\x82\x32\xb9\xc0\xe9\x74\x12\xa6\x96\x70\x72\x69\ +\x07\xf6\x10\xd2\xcb\xc4\x16\x94\xcb\x5d\xf3\xdc\x73\xe9\xe9\xe9\ +\xe1\xf8\x00\x77\xc3\xe3\xf1\x02\x1c\xc1\x30\x48\x20\x24\x24\x24\ +\xa4\xa7\xa7\x7b\x46\xfc\x3c\x15\xc5\xa6\x4d\x9b\xe6\x29\xa8\x36\ +\x6c\xd8\xb0\x40\x06\xdc\xed\xde\xbd\x9b\xd6\x75\xcb\xc8\xc8\x58\ +\xb8\x70\x61\x76\x76\x36\xad\x11\xd3\xeb\xf5\x47\x8e\x1c\x39\x7d\ +\xfa\xb4\xa7\x75\x2a\x2f\x2f\xe7\x70\x38\x6b\xd6\xac\xe1\x66\x64\ +\x64\x64\x64\x64\x2c\x5b\xb6\xcc\x6a\xb5\x42\xe7\xa2\xa9\xa9\xa9\ +\xad\xad\xad\xa5\xa5\xa5\xab\xab\x8b\xc1\xae\xa1\x28\x2a\x93\xc9\ +\x14\x0a\x45\x66\x66\x66\x72\x72\xb2\x5a\xad\xf6\x75\xb2\x1b\x1b\ +\x66\xcc\x98\x71\xfa\xf4\xe9\x3e\xab\x5f\xa3\xa2\xa2\x82\x52\xd7\ +\xe9\x1f\x3f\xfe\xf8\x23\xed\xf6\x03\x07\x0e\xa8\xd5\x6a\xca\xdf\ +\x86\x18\xa5\x49\x40\x69\x84\xf5\x36\xaf\xfc\xd8\xb1\x63\x7e\x8b\ +\xf3\x87\x01\x1e\x8f\x97\x98\x98\xe8\x59\x04\x66\x36\x9b\xf5\x7a\ +\xbd\x4e\xa7\x23\x6c\xae\x5e\xaf\xef\xec\xec\x84\xdf\xe2\x3c\x1e\ +\x6f\xdc\xb8\x71\x8f\x3c\xf2\x88\xdf\xc1\xa2\x41\xee\x77\x5e\x78\ +\xe1\x85\x8f\x3e\xfa\x88\x30\x70\x08\x82\x2c\x5d\xba\xd4\x33\xc0\ +\x9d\x99\x99\xf9\xc4\x13\x4f\x7c\xfb\xed\xb7\x84\xd8\x66\x42\x42\ +\xc2\xfa\xf5\xeb\xfd\x76\xe0\xaa\xab\xab\xcf\x9d\xa3\x76\x0b\xf3\ +\x78\xbc\x95\x2b\x57\x4e\x99\x32\x85\xe1\x8d\x2a\x95\x6a\xd5\xaa\ +\x55\x33\x67\xce\xdc\xb1\x63\x87\xa7\xf7\x5a\x56\x56\x26\x8f\x8a\ +\xfa\x2d\x79\x25\x16\x8b\xb3\xb2\xb2\xc8\xed\x37\x38\x8e\x5b\x2c\ +\x16\x87\xc3\x61\xb7\xdb\x61\xa6\x1b\x36\xb9\x0b\x04\x02\x3e\x9f\ +\x2f\x91\x48\x7c\xfd\x48\x18\x86\xb9\x7d\xec\xf3\x5b\xb1\x62\xc5\ +\xe3\x8f\x3f\x5e\x5f\x5f\x7f\xe3\xc6\x8d\xaa\xaa\xaa\xba\xba\x3a\ +\x5a\x45\xf7\x07\x1e\x78\xa0\xbf\x2c\x8e\xd3\xe9\xf4\x16\xf6\xb6\ +\xd9\x6c\x1f\x7c\xf0\x41\xb0\x4e\x04\xcb\x95\xc3\x20\x8a\x18\x5c\ +\xa4\x52\xa9\x54\x2a\xa5\x84\x2c\xa1\xd6\x04\x82\x20\x32\x99\xec\ +\x9e\xfd\xaa\x18\x24\x3c\x28\x14\x8a\x77\xdf\x7d\xf7\xe2\xc5\x8b\ +\x5a\xad\x56\x2c\x16\x8f\x1d\x3b\xd6\x5b\x5b\xfc\xec\xd9\xb3\xc7\ +\x8c\x19\xf3\xcb\x2f\xbf\x58\xad\x56\xb5\x5a\x9d\x9b\x9b\x1b\xc8\ +\xcd\xe3\xb9\xca\x14\x0a\x85\x7f\xfe\xf3\x9f\x59\x86\xd7\x13\x12\ +\x12\xfe\xf6\xb7\xbf\x7d\xfd\xf5\xd7\xe4\x22\x45\xc8\xd1\x23\x47\ +\x98\xaa\x02\x10\x04\x09\xee\x28\xa7\x43\x87\x0e\xb1\x17\x6f\x27\ +\x40\x51\x34\x2d\x2d\x2d\x2d\x2d\x6d\xd1\xa2\x45\x0e\x87\x43\xa3\ +\xd1\xdc\xb8\x71\xa3\xba\xba\x9a\x68\x67\x94\x48\xa5\xa1\x98\x7a\ +\x70\x0f\xd2\x8f\x41\xe4\xe0\x02\x8b\x64\xfb\xfb\x2a\x06\x08\x0a\ +\x85\x62\xcc\x98\x31\x29\x29\x29\xe4\x45\xf1\xdc\xb9\x73\xb3\xb3\ +\xb3\xdb\xda\xda\xae\xdf\xb8\x11\xe6\x3a\x6b\x3f\x40\x51\x34\x3f\ +\x3f\x9f\x8d\x76\x4f\x6c\x6c\xec\xfc\xf9\xf3\x03\x3f\x63\x5d\x5d\ +\x9d\xa7\xb3\xf9\xd4\x53\x4f\xf9\x94\xb4\x44\x51\x74\xd5\xaa\x55\ +\x72\xb9\xdc\x33\x76\x17\xbe\xce\xab\x23\x47\x8e\x78\x5b\xe4\xb2\ +\x87\xcf\xe7\x8f\x1e\x3d\x1a\x36\x50\x9a\x4c\xa6\xea\xea\xea\x46\ +\xad\xb6\x60\xd2\xa4\x7e\x4c\x38\xf0\x78\x3c\xb5\x5a\x4d\xc9\xcf\ +\x40\x84\x42\x21\x25\x7f\xc5\xa6\x52\xb5\xb4\xb4\x94\x36\x9a\x2e\ +\x16\x8b\xfd\x68\x34\x1a\x64\xc0\xf3\xe4\x93\x4f\x7a\xca\x3b\x11\ +\x8f\xc9\xd9\xb3\x67\x77\xec\xd8\xd1\x1f\xd7\x75\x4f\xe3\x19\xae\ +\x85\xcd\x54\x7e\x1c\x6a\xe1\xc2\x85\x76\xbb\xfd\xf0\xe1\xc3\xe4\ +\x8d\xe1\x30\xac\x56\xab\xf5\x9f\xff\xfc\x67\x79\x79\x79\x5e\x5e\ +\xde\xe5\xcb\x97\xfd\x1b\xcd\xe2\x89\x5c\x2e\x9f\x34\x69\x52\x3f\ +\xe6\xac\x08\x16\x2d\x5a\x44\xdb\xad\xbb\x64\xc9\x12\xe6\x60\x0d\ +\x2d\x69\x69\x69\x9b\x37\x6f\xf6\xdc\x7e\x2f\x07\x58\x07\xe9\x47\ +\x1c\x0e\x07\x83\x5e\x4f\xb0\x74\x82\x06\x18\x50\x28\x95\x4c\x20\ +\x99\xe1\x65\xcb\x96\x99\x4c\x26\x72\xc4\x36\xb4\x86\x15\xc3\xb0\ +\xd2\xd2\xd2\x7d\xfb\xf6\x59\xad\xd6\xc5\x8b\x17\x2f\x58\xb0\xe0\ +\xf9\xe7\x9f\x0f\xe9\x19\xfb\x85\x71\xe3\xc6\x51\xc2\xea\x00\x80\ +\x39\x73\xe7\xfa\x17\xa0\x18\x31\x62\xc4\xb3\xcf\x3e\xbb\x7b\xf7\ +\x6e\xe2\x1b\x08\x41\x90\xd9\x73\xe6\xf8\x51\x60\x30\xc8\xef\x81\ +\x2f\xbe\xf8\xa2\xbf\x2f\xe1\x3e\xc3\x64\x32\x51\x16\x85\x09\x09\ +\x09\x81\x54\x2e\x23\x08\xb2\x7a\xf5\xea\xdb\xb7\x6f\x13\x29\xb8\ +\x50\x19\x56\x93\xc9\x74\xea\xd4\x29\xd8\x47\x3f\x7c\xf8\xf0\x55\ +\xab\x56\x85\x61\x62\x4a\x3f\x02\xc3\xea\x17\x2e\x5c\x30\x99\x4c\ +\x52\xa9\x74\xfc\xf8\xf1\x81\x64\x99\xa6\x4c\x99\x92\x93\x93\x73\ +\xf1\xe2\x45\xd8\x20\x30\x6e\xdc\xb8\xa0\xab\xdc\x0e\x32\xc8\xef\ +\x16\xcf\xe8\x6a\xe0\x0d\x38\x7c\x3e\x7f\xdd\xba\x75\xff\xef\xad\ +\xb7\x60\x1a\x89\xfb\xf1\xc7\x1f\x8f\x19\x33\x66\xcc\x98\x31\x41\ +\x49\x26\x18\x0c\x86\x2b\x57\xae\x5c\xb9\x72\xa5\xaa\xaa\x0a\xc3\ +\xb0\xcc\xcc\xcc\xb5\xcf\x3f\x1f\x94\xd6\xc0\x7b\x9f\xd8\xd8\xd8\ +\xc0\xbb\xcb\x09\xe4\x72\x39\x21\x48\x3c\xc8\xef\x19\x36\xf2\x83\ +\x21\x22\x0c\x0d\x02\xfd\x82\xe7\x6c\x1e\x4f\x77\xb5\xa1\xa1\xe1\ +\xcb\x2f\xbf\xf4\x76\x84\xf8\xf8\xf8\x75\xeb\xd6\x51\x36\x26\x25\ +\x25\x3d\xbc\x70\x21\x4c\x64\x71\x5b\x5a\x5a\x2a\x2b\x2b\xbf\xfa\ +\xea\xab\xb8\xb8\xb8\x94\x94\x94\x61\xc3\x86\x0d\x19\x32\x24\x2e\ +\x2e\x8e\x65\x3d\x80\xd9\x6c\x6e\x6b\x6b\x6b\x6c\x6c\xac\xaf\xaf\ +\x6f\x68\x68\x80\x2a\xc2\x0a\x85\x62\xce\x9c\x39\x85\x85\x85\x14\ +\x3f\xcb\x6a\xb5\xc2\xe5\xed\x80\xc9\x6e\x0f\x32\x48\xa8\x09\x9b\ +\xc4\xb0\x27\x03\xb5\x75\xc2\x33\x39\xec\xe9\x56\x3a\x1c\x0e\x3f\ +\xd4\x03\xe6\xcf\x9f\x7f\xf6\xec\xd9\xf6\xf6\x76\xee\xdf\xff\xfe\ +\xf7\xe6\xe6\xe6\xaa\xaa\xaa\xaa\xaa\xaa\x1b\x55\x55\x44\xb2\x0c\ +\xe5\x72\x55\xd1\xd1\x0a\xa5\x52\xc0\xe7\xf3\x78\x3c\x1e\x8f\x27\ +\x10\x08\xec\x76\xbb\xd3\xe9\x74\x3a\x9d\x76\x87\xc3\x68\x30\xe8\ +\x3b\x3a\x88\xf2\x29\xa9\x4c\x36\x2c\x25\x65\xfa\xf4\xe9\xd9\xd9\ +\xd9\xde\x7a\x21\x76\xee\xdc\x09\x5f\xf8\x3d\x74\x77\x90\x41\x7e\ +\x6f\xc4\xc6\xc6\x4e\x9f\x3e\xdd\xb3\x58\x32\xd4\x8c\x19\x33\x66\ +\xa0\x1a\x56\x4f\x82\x95\x16\x46\x51\x74\xf8\xf0\xe1\xed\xed\xed\ +\x5c\x00\x40\x52\x52\x52\x52\x52\xd2\x43\x0f\x3d\x04\x00\xb0\x58\ +\x2c\xcd\xcd\xcd\x77\xda\xda\x3a\x8d\xc6\xce\xce\x4e\x93\xc9\x64\ +\x36\x9b\xe1\x74\x16\x38\x28\x1b\xce\x65\x11\x08\x04\xc3\x87\x0f\ +\xcf\xcd\xcd\x8d\x52\x28\xe2\xe3\xe2\x92\x92\x92\x24\x12\x09\xf3\ +\x29\xcb\xca\xca\x88\x4c\x9c\x1f\x32\x9a\x83\x0c\xf2\xbb\x65\xc5\ +\x8a\x15\x02\x81\xe0\xd8\x4f\x3f\xf9\x51\x06\xee\x07\x1c\x0e\x67\ +\xf2\xe4\xc9\x4f\x3e\xf9\x64\x18\xce\xd5\x2f\x78\xaa\x6e\xb6\xb5\ +\xb5\x51\x56\x06\x91\x91\x91\x0c\x33\x0a\xbd\xcd\x12\xd6\x6a\xb5\ +\xd0\x37\x45\xc2\x33\xf2\xec\xe4\xc9\x93\x7b\xf6\xec\x21\xb4\x08\ +\x3e\xfa\xe8\xa3\x30\x9c\x74\x90\x41\x06\x12\x0e\x87\xa3\xb9\xb9\ +\x39\x58\xd5\x50\xe3\xef\x07\x00\x00\x01\x1a\x49\x44\x41\x54\x8a\ +\xde\x88\x88\x88\x88\x8b\x8b\x1b\xd8\x4a\x34\x97\x2f\x5f\xde\xb2\ +\x65\x0b\x79\xcb\xe4\xc9\x93\x9f\x7b\xee\xb9\x00\x0f\x8b\x61\xd8\ +\xa6\x4d\x9b\x60\x66\x2c\xe4\x75\xac\x76\xbb\xfd\xb3\xcf\x3f\x27\ +\xc4\x92\xf9\x7c\xfe\x7f\xfe\xe7\x7f\x86\xfa\xa4\x83\x0c\x32\xf0\ +\xe0\xf3\xf9\x83\x62\x86\x41\xc1\x53\xd2\x13\xaa\x47\x06\x18\x10\ +\x38\x78\xf0\x20\x51\x6f\x10\xc2\xac\x1f\x86\x61\x5f\x7f\xfd\xf5\ +\xfa\xf5\xeb\x09\xab\x2a\x14\x0a\xdf\x7b\xef\xbd\x20\xaa\xdf\x0f\ +\x32\xc8\x20\x83\xf8\x8a\x5c\x2e\xa7\x54\x43\x5a\x2c\x96\x8b\x17\ +\x2f\x06\x72\xcc\x8a\x8a\x8a\x43\x87\x0e\x11\x3f\x72\xeb\xea\xea\ +\x82\xfe\x35\x58\x57\x57\xb7\x7f\xff\xfe\xaa\xaa\x2a\x72\xc1\xfc\ +\x90\x21\x43\x36\x6e\xdc\x18\xc8\x10\xa1\x41\x06\x19\x64\x90\xa0\ +\x90\x9b\x9b\x4b\x49\xfa\x7f\xff\xfd\xf7\xe3\xc6\x8d\xf3\x6f\xb6\ +\x63\x5d\x5d\xdd\x17\x5f\x7c\x41\x0e\xab\x22\xab\x57\xaf\x16\x0a\ +\x85\x43\x86\x0c\x99\x38\x71\x62\x5e\x5e\x9e\xdf\xb1\x15\xab\xd5\ +\x5a\x5e\x5e\x7e\xe1\xc2\x85\xc6\xc6\x46\x9b\xcd\x46\xfe\x15\x6c\ +\x99\xf7\xa3\xb9\x73\x90\x41\x06\x19\x24\x14\x98\x4c\xa6\x57\x5e\ +\x79\x85\x22\x8b\x5a\x50\x50\xe0\x47\x6b\xa8\x46\xa3\xd9\xb2\x65\ +\x0b\xc5\xe8\xfd\x7f\xc4\xa4\xf6\x10\x44\xb8\xde\xff\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x32\xdb\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x32\xa2\x49\x44\x41\x54\x78\x5e\xed\x7d\x07\x98\x1c\xc5\ +\x99\x76\x75\x98\xb4\xb3\x39\x07\xad\xc2\x2a\x82\x84\x00\x89\x8c\ +\x10\x20\x24\x10\x06\x6c\x93\x0d\x08\xe3\x1f\x2c\x8c\x03\x0e\xe7\ +\x88\x8d\x03\xb6\xb1\x39\xf0\x39\xfd\x67\x1b\xdf\xef\x88\x1f\x1b\ +\x6c\xe0\x0e\xb0\x31\x18\x94\x03\x28\x23\xad\x62\xd8\xbc\xda\x9c\ +\x77\x62\xe8\x9e\xf9\xdf\xaa\xab\x55\xf5\xd3\x3d\x33\xbd\xd9\x2b\ +\x4c\xd9\xef\x53\xdd\x3d\xb3\xbb\xa2\xdf\xb7\xbe\xfa\x42\x55\xb7\ +\x44\xce\xbc\x26\xa5\xb9\x26\x19\xaf\xa5\xff\x5c\x9c\xdb\x20\x61\ +\x3d\x17\x7d\x9a\xe3\x84\xcd\xef\x9a\x12\x90\xce\x34\xd2\xed\x09\ +\xb7\xef\xc7\x20\x80\x84\x8d\x08\x80\x61\x0b\x22\xf1\x9e\x00\xc6\ +\x4e\xbc\xe8\x01\x9b\x73\xde\x8f\x59\x00\x56\x11\x08\x90\x94\xc7\ +\xfc\x7c\xaa\x09\x41\x9a\xca\xc4\x8f\x82\x6c\xc9\xee\x73\x1b\x21\ +\x25\x21\xc6\x9e\x70\x1b\x08\xe2\x6d\x2c\xc8\x7b\x02\x48\x4a\xbc\ +\x3d\xd9\x79\x79\x79\xf2\xcc\x99\x33\x1d\x65\x65\x65\x8e\x92\x92\ +\x12\x67\x76\x76\x76\x46\x71\x71\x71\x76\x61\x61\x61\x49\x6e\x6e\ +\x6e\xa5\xdb\xed\xae\x74\x3a\x9c\x95\xf1\x44\xbc\x1c\x04\x14\x3b\ +\x9d\xce\x3c\x49\x92\x32\xc3\xe1\xb0\x43\x96\x65\x0d\xf0\xeb\xba\ +\xde\x1f\x8b\xc5\x3a\x70\xbd\x03\xfd\xa9\x60\x30\xd8\xd2\xdf\xdf\ +\xdf\xd2\x86\x76\xfc\xc4\xf1\x7e\xdf\xa0\x2f\xec\xf3\xf9\xa2\x1d\ +\x1d\x1d\x5a\x7b\x7b\xbb\x16\x0a\x85\x28\x61\xf1\xe4\xa4\x5b\xaf\ +\xdb\x88\xe0\x9f\x26\x04\xe9\x0c\x21\x5e\x36\x93\x7e\xf1\xc5\x17\ +\x3b\x96\x2e\xbd\xc0\x53\x5e\x5e\x91\xe3\xf1\xb8\x0a\x40\xea\x8c\ +\xac\xac\xac\x45\xb2\xac\x5c\x12\x0a\x05\x17\x0c\x0c\x0c\xe4\x83\ +\x40\x77\x7f\x5f\x1f\xf1\x07\x02\x04\xa4\x92\xfe\x81\x7e\x12\xc0\ +\x31\x28\x60\xd2\x89\x45\x63\x44\x75\xa8\x5c\x59\x12\x81\x30\x48\ +\x5e\x5e\x2e\x81\x60\x88\xc7\xe3\x21\xf9\x79\xf9\x24\x27\x37\x97\ +\x64\x78\x33\x3a\x3c\xee\x8c\xc3\xf1\xb8\x7e\xa8\xaf\xaf\xef\x50\ +\x6f\x6f\x6f\x23\xc4\xd0\x09\x6d\x04\x0e\x1c\x38\x10\x6c\x68\x68\ +\x88\x9a\xc8\xb7\xf4\x36\xf8\xa7\x09\x41\x9a\xb2\xc4\x5b\x21\x2f\ +\x5d\xba\xd4\x71\xfd\xf5\xd7\x67\x57\x4e\xab\x2c\xd1\xe3\xfa\x0c\ +\x8c\xda\x73\x14\x45\xbd\xa2\x7f\xa0\xef\x1c\x90\x91\xd7\xd1\xde\ +\xae\x76\x77\xf7\x10\x10\x4f\x30\xba\x09\x3e\x67\xe4\x26\x12\x09\ +\x4b\x6f\x6e\x18\xf9\x49\x7b\x58\x07\xe2\x70\x38\x48\x4e\x4e\x0e\ +\xc9\xcd\xcd\x21\x25\xa5\xa5\x89\x69\x15\xd3\x06\xb3\xb2\x32\x0f\ +\x6a\x9a\xb6\x47\x8b\xe9\x07\x20\xb8\xc6\xba\x86\x86\xce\x1d\x6f\ +\xbf\xed\xab\xab\xab\x8b\x70\xd2\x85\x00\x86\x2d\x8a\xc9\x9f\x1a\ +\xa4\xa9\x42\x7e\xaa\x11\x8f\x51\xad\xac\x5e\xbd\xda\xb3\x72\xe5\ +\xca\xca\x8c\x8c\x8c\xb3\x82\xa1\xe0\xb9\x41\x7f\xf0\x8a\xae\xae\ +\xce\x45\xc7\x4f\x9e\xc8\x6c\xa8\x6f\x90\x30\xaa\x29\xa9\x49\x81\ +\x66\x3c\xb6\x15\x00\x3f\x36\x0a\x21\x29\x5c\x2e\x17\xa9\x9c\x36\ +\x8d\xcc\x9d\x37\x2f\x58\x50\x50\x70\x0c\x22\xd9\x0d\xa6\xf6\x0d\ +\xf4\xf7\x9f\xd8\xf9\xf6\x8e\xb6\xad\xdb\xb7\xf9\x60\x75\x74\x4a\ +\xb6\x15\xf6\x42\x98\x2c\x11\x48\x53\x81\x78\x71\x2c\x88\xf7\x7a\ +\xbd\xca\xc7\x1f\xfa\x78\xf6\xa2\x73\x16\x2d\xf4\xfb\x7c\x4b\xfb\ +\x07\x07\x2e\x0b\x05\x43\x17\x9f\x3a\x75\xaa\xe8\xc4\x89\x13\x32\ +\xcc\xf0\x69\x62\xe3\xf1\xf8\x70\x04\x60\x25\xdf\xde\x0a\xa4\x05\ +\xac\x03\xeb\x33\x33\x33\xc9\xac\xaa\x2a\x52\x51\x51\xd1\x9d\xe9\ +\xcd\x38\xa0\xca\xea\x6e\x7c\xb0\xff\xf0\xe1\x43\xc7\x5e\x78\xf1\ +\xc5\x6e\x4e\xb4\x51\x0c\xba\xd1\x3a\x98\x84\x10\x9f\xcc\x69\x41\ +\x9a\x02\xe4\x1b\x21\xc3\xa1\x53\x3e\xfe\xf1\x8f\xe7\xce\x9b\x37\ +\x6f\x29\x9c\xad\x65\x9d\x1d\x1d\xcb\xfb\x07\x06\xce\x69\x6c\x6a\ +\xcc\xe8\x68\xef\x20\x91\x48\x44\x90\x2e\xfa\x34\xb0\x1f\xfd\xf6\ +\x56\x40\x90\x6d\x15\x80\xe8\x15\x45\x21\x45\x45\x85\xa4\xac\xac\ +\x3c\x94\x9b\x93\x73\x32\x3b\x27\x67\x37\xa6\x8e\x6d\xd5\xd5\x87\ +\x0e\x3c\xff\xfc\x9f\xbb\x84\x08\xd2\x09\x42\xf4\xf6\x91\xc3\xd8\ +\x21\x4d\x15\x73\x0f\x33\xaa\x7c\xf8\xc3\x1f\xce\xbe\xf0\xc2\x8b\ +\x2e\x3a\xd5\xd2\xbc\xb2\xbe\xae\xfe\x8a\xb6\xf6\xb6\x05\xa7\x9a\ +\x4f\xb9\x07\x07\x07\x19\xd1\x80\x85\x7c\xc0\x62\x09\xd0\xe8\x71\ +\xb2\xd1\x3f\xa2\x29\x80\x5f\xb3\x92\x2e\x8e\x2d\xfd\xd0\x71\x46\ +\x86\x87\x94\x96\x96\xc5\x8a\x8b\x8b\x6a\x0b\x0b\x8b\xf6\xe4\xe5\ +\xe7\x6f\xd8\xb9\x63\xc7\x3b\xaf\xbe\xfa\x6a\x0f\x25\x9c\x23\x6e\ +\x3a\x16\x98\xa4\x69\x41\xfa\xe7\x91\x2f\x4c\xfe\xaa\x55\xab\x3c\ +\xf7\xdc\x73\xcf\x22\x84\x5e\xef\xaf\xae\xae\xbe\xa6\xa9\xb9\x69\ +\x1e\x9c\xba\x0c\xbf\xcf\x2f\x71\x92\x8d\x64\xa7\x14\x03\x9a\xd9\ +\x22\x8c\xd9\x09\x44\x2f\x60\x4f\x3c\xeb\x8d\xe7\x6e\xb7\x8b\x20\ +\x1c\x8d\x14\x14\x14\xd6\xce\x9e\x3d\x7b\x07\x7c\x87\xd7\x5f\x7c\ +\xf1\xc5\x83\x47\x8e\x1c\x09\x08\xf2\x2d\x22\xd0\x8d\xd6\x60\x22\ +\x45\x20\x4d\x3e\xf9\x82\xf8\x69\xd3\xa6\xa9\x0f\x3f\xfc\x70\x05\ +\x62\xf7\x1b\x8f\x1f\x3f\xfe\xc1\x43\x87\x0e\x9d\xd3\xd2\xd2\x92\ +\x8d\x10\x4b\xa6\x1e\xbc\x91\x68\x9c\x0b\xf2\x93\x0b\x60\x3c\x7d\ +\x80\x51\x09\xc0\x38\x15\xa0\x37\x09\xc1\x1d\x2f\x2a\x2a\x0a\xcc\ +\x98\x31\xe3\xc4\xac\x99\x33\xd7\xd5\xd4\xd4\xbc\xf6\x97\xe7\x9f\ +\x6f\x8e\x46\x11\x8b\x12\xa2\xa5\xb3\x0a\x36\xbe\x41\x62\xea\x09\ +\xc0\x3e\xac\x93\x57\x5f\xb7\xda\xf3\xc1\x9b\x3f\x78\x21\x9c\xb9\ +\xb5\x7b\xf7\xee\xbd\xa2\xb1\xb1\xb1\x00\xa6\x5e\x85\xe7\x6c\x21\ +\x5a\x90\xcf\x8e\x2d\xa4\xf3\xe3\x91\x12\x3f\x4a\x21\xd8\x8b\x00\ +\xa0\x22\xb0\x08\x42\x55\x15\x08\xc1\xa3\x23\x61\x35\x30\x7f\xfe\ +\xbc\xbd\x2e\x97\xfb\xcf\x7f\xfb\xdb\xdf\x76\x1e\x3b\x76\xcc\xc7\ +\x09\xd7\xac\x16\x41\x08\xc1\x26\x6c\x9c\x52\x02\x90\xd2\x99\xfc\ +\x8f\x7e\xf4\x93\x05\x4b\x96\x9c\x7d\x07\xbc\xe4\x87\xf6\xec\xd9\ +\x37\x73\x60\xa0\xdf\x19\x89\x44\x2d\x24\x03\xc9\xce\x53\x12\x6f\ +\x9c\x02\x0c\x6d\xd4\x02\xe0\x48\x6b\x09\xd0\x04\xf1\x29\x44\xc0\ +\x31\x24\x04\x96\x57\x70\xba\x9c\xd1\xd9\x55\xb3\x9b\xcf\x3e\xfb\ +\xec\x97\x37\xac\xdf\xf0\x97\x9d\xbb\x76\x76\x09\x01\x88\xde\x22\ +\x02\x60\x3c\x45\x20\x4d\x3c\xf9\x82\xf8\xec\xec\x1c\xf5\xd3\x9f\ +\x7e\x78\x3a\xd2\xb6\x8f\xbe\xf6\xda\x6b\x37\x1f\x3c\x78\xd0\xad\ +\x69\x9a\x64\x21\x9a\x1f\x03\xe9\xe6\x7f\x06\x09\x50\x70\x6e\xa4\ +\x2c\x8e\x6b\xb1\x51\xde\x19\x89\xc3\x41\xfb\x14\xa2\x60\xbf\x9b\ +\x8a\x80\x8f\x70\x1b\x4b\x90\x52\x08\xe8\x13\xa5\x25\xc5\xd1\xcb\ +\x2e\x5f\xb6\xb1\xad\xad\xf5\x3f\x5f\x78\xe1\xc5\x1a\xa4\x98\x23\ +\x94\x78\x93\x35\xd0\x6c\x7c\x83\x51\xfb\x05\xd2\x64\x91\x7f\xe5\ +\x95\xab\x32\x56\x5f\xbb\xe2\x62\xdc\x8b\xc7\xff\xfb\xa5\x97\x97\ +\x20\xa7\x2e\x48\x15\xa4\x1b\x89\x4f\x69\xf2\x65\xc0\x01\x64\x82\ +\x88\xb9\xc0\x6c\x00\xe7\xa7\x89\x8e\x03\x35\x40\x10\x88\x00\x03\ +\xf8\x2c\x8c\x9e\x82\x4f\xb8\x42\x14\x9c\x6c\x27\x90\x0d\xe4\x83\ +\x98\x02\xf4\x15\x80\x07\x88\x9b\xc4\x11\x03\x9a\x41\x5e\x27\xfa\ +\x00\x84\x36\x88\xe3\x00\xa0\x09\xcb\x90\xd2\x02\xa8\xaa\x2a\xae\ +\x1b\x04\xe3\x74\x3a\xc8\x15\xcb\x96\x1d\xf5\x66\x66\xfd\xfc\x85\ +\x17\x5e\xd8\x02\x3f\xc8\xcf\x49\x17\x48\x3a\x25\x8c\x5d\x04\xd2\ +\x44\x93\x8f\x62\x8c\xb2\x66\xcd\x9a\xfc\xe2\xa2\x92\x1b\x9a\x4f\ +\x35\x7d\x61\xfb\xf6\xed\x73\xe0\xed\xf3\x51\x6f\x19\xed\x96\xde\ +\x48\x3e\x41\xef\x06\x01\xd3\xd1\x9f\x0d\x12\x16\xe1\x78\x09\x8e\ +\xcb\xd0\xcb\xa6\x21\xd0\x8f\xcf\x75\xf4\x83\xf8\xbc\x03\x7d\x27\ +\xd0\x0c\x74\x03\x7d\xb8\x66\x24\xb6\x10\x44\x14\x51\x31\xa1\xaf\ +\xa2\xe7\xf8\x3c\x0b\xbd\xc2\x85\x22\x31\x08\x71\x0d\x02\x3d\x20\ +\xaf\x1d\xfd\x49\x60\x37\x50\x0b\xf4\x03\x71\x5c\x27\x80\x75\x2a\ +\x10\xc7\x1c\x16\xe7\x71\xe1\xc2\x85\x2d\x55\xb3\xaa\x7e\xbf\x71\ +\xd3\xc6\xbf\xc2\x3a\x76\x0b\xbd\x9a\xa6\x86\x71\x14\x81\x34\x91\ +\xe4\x57\x54\x4c\x53\xef\xbb\xef\xbe\x4a\x59\x92\xee\x84\x87\xbf\ +\xf6\xf0\x91\xc3\x15\xf0\x7a\x25\x13\xf1\xe6\x63\x13\xc4\x9c\xee\ +\x45\xbf\x14\xfd\xfb\x81\xc5\x40\x1e\xce\x55\x43\x16\xc5\xa8\x44\ +\x55\x90\x26\x88\x03\x31\x7e\x7e\x57\xe3\x86\xef\x3a\x01\x0f\xb7\ +\x00\xca\x90\x2f\x01\x68\xc6\xde\x30\x35\xb8\x0d\xa2\xf0\x03\x75\ +\x20\x6f\x07\xb0\x11\xc2\xa9\x45\x1f\x25\x68\x62\x5a\x30\x0b\xc0\ +\x2a\x04\xf1\xbd\x04\xa2\x84\xde\x39\x73\xe6\xbc\x88\xfb\xf5\xdc\ +\xae\x5d\xbb\x5a\x20\xfc\x68\x12\x4b\xa0\xd9\x88\x60\xd8\x02\x50\ +\x26\x8a\xfc\xf9\xf3\xe7\x3b\xee\xbe\xeb\xde\xb9\xb1\x58\xf4\x81\ +\x3d\x7b\x76\xdf\x8f\x92\x6a\x19\x25\x5f\x90\x2d\x00\x3f\x20\xe9\ +\xc8\x37\x26\x73\x1c\xe8\xcf\x05\x81\xf7\xa0\xbf\x84\x8f\xd0\x84\ +\x20\xd3\x52\x8b\x8d\x71\x68\xa7\x05\x22\xcc\x7c\x9e\x09\x99\x80\ +\x0b\x48\x70\xb2\xa3\x40\x0f\x70\x82\x4f\x25\xbb\x25\x89\xe1\x00\ +\x50\x0f\x50\x8b\xd2\xc7\x85\xe3\x05\x4a\x80\x39\x20\xbf\x00\x9f\ +\xf5\x03\x3d\xdc\x07\x31\x45\x23\xc6\xf3\x54\x0e\xaa\x84\x2a\x66\ +\x86\xdf\xef\x9f\x5b\x35\x6b\x96\x17\xc9\xb1\x16\x34\x1f\x44\x90\ +\x22\xac\x1e\xfb\xe0\x56\x26\x82\xfc\xc5\x8b\x17\x3b\xef\xbc\xf3\ +\xce\xf9\x83\xbe\xc1\xb5\xef\xbc\xb3\xef\x2e\x84\x78\x45\x9c\x7c\ +\x33\xe9\x66\x58\x9c\xbc\xa1\x96\xcf\x47\xfe\x0a\x4e\x16\xbb\xc1\ +\xf6\xce\x1c\x6f\x5c\x18\x62\xf8\x08\x98\x72\xb1\x12\x3f\xef\x03\ +\x91\x75\x40\x07\x70\x1c\xe7\x7b\xd1\xef\x43\xbf\x07\x38\x84\xe3\ +\xa3\x9c\x6c\x2f\x90\xcd\x45\x54\xc9\xff\x9d\x5d\x54\x24\x20\x55\ +\xb7\x92\x6c\x16\x42\x52\x31\xc0\x11\x74\x05\x83\x81\x59\xc8\x24\ +\x66\x96\x97\x97\xb5\x22\x29\x36\x88\xfb\x35\x21\x4e\xbe\x32\xde\ +\xe4\xc3\x7c\x39\x6e\xbb\xf5\xb6\x79\x7d\x7d\xbd\x6b\x0f\x54\x1f\ +\xb8\xbd\xb9\xb9\xb9\x08\xf9\x7b\xc9\x38\xba\x41\xbe\x79\xe4\xa7\ +\x24\x3e\xc1\xcd\xfc\x39\x20\xe0\x56\xf4\xa5\x38\xd7\xc8\xc4\x36\ +\x19\xc8\x00\xca\xb8\x4f\x30\x9f\x3b\x9a\x5e\xe0\x00\x08\xea\x41\ +\xdf\x06\x34\xd0\x90\x8e\x7e\x8e\x7e\x68\x5a\x28\xe3\x62\xa8\xe7\ +\x56\x24\x61\x22\xdf\x40\x74\xaa\x8c\x24\xbb\x0f\xb8\x67\x10\x41\ +\xb0\x32\x3f\x3f\xdf\x8b\x04\x52\x2b\x8a\x60\x03\x09\xb4\xf1\x16\ +\x81\x32\x9e\xe4\x23\xc1\xa1\x62\xe4\x57\xf9\x03\xfe\xfb\x91\xd2\ +\xbd\xa3\xb9\xb9\xa9\x18\xe4\x5b\x9c\x3b\x10\x6f\x36\xf7\x69\xcd\ +\xa4\x1b\xb8\x1a\x64\x2c\xc7\x35\x27\x1b\xad\x13\xdf\x54\x20\x83\ +\x93\x59\x0c\xcc\x02\xa2\x20\xe7\x2d\x20\xc2\x89\xa5\xbd\x13\xe7\ +\xe7\xa2\x2f\xe2\x56\xc9\x45\x8f\x71\x6d\x00\xfd\x11\x3e\x15\x18\ +\x42\x48\x9b\x29\x40\x88\x00\xd7\x98\x08\x60\x0d\x2a\x0a\x0a\xf2\ +\xdd\x10\x42\x33\x9d\x0e\x46\xb9\xda\x58\x9a\x10\x01\x98\xcb\xb7\ +\x77\xdd\x75\x57\x19\x32\x79\x1f\xde\xbf\x7f\xff\x1a\x28\xb6\xc4\ +\x34\xf2\x59\xcf\x61\xce\xf0\xa5\xcb\xd8\xb1\xb9\xf5\x26\x3e\x12\ +\x45\x3e\x74\x02\x61\xaa\xd5\x0e\x00\xd5\x20\xe5\xbf\xd1\xd7\xf3\ +\x70\x53\xc5\x79\x1e\xb0\x10\xc7\x4b\x81\x1c\xc3\x34\xe2\x06\x34\ +\x59\x26\xd5\xdc\x57\x48\x42\xf6\xb0\x33\x95\x98\x3a\xdd\x40\x45\ +\x71\x71\x89\x82\xb5\x11\x8d\xa8\x90\x06\x6d\x08\x4f\x00\xd2\x70\ +\x45\xa0\x8c\xc3\xe8\x97\x29\x3e\xf0\x81\x0f\xe4\x42\xa5\xb7\x1f\ +\x3a\x74\x70\x6d\x43\x43\x63\x05\x25\x9f\xe7\xf0\x05\xac\x8e\x9e\ +\xed\x4d\x90\x81\x05\x10\xc0\x07\xa9\x10\x00\xcd\x98\x5c\x98\x24\ +\x31\xb4\x80\xe8\x7f\x00\x87\x40\x52\x2e\xce\xe7\x51\xe2\x81\xe5\ +\x38\x5e\x0d\x54\x88\x7f\x0b\x83\xc2\x45\x50\x0f\x9c\xb4\xcd\x32\ +\x5a\x05\x22\xbe\x27\x44\xa0\xc5\xa2\xe5\x48\xa0\x69\xaa\xaa\x36\ +\x76\x75\x75\x85\x6d\x2c\xc0\xb0\xc3\x41\x65\x1c\x4c\xbf\xb2\x68\ +\xd1\x22\xf7\xc2\x45\x0b\x57\x1e\x3d\x76\xf4\x8b\x35\x27\x6b\x66\ +\x81\x7c\x19\x64\x9a\xe7\x7c\x73\x6e\xdf\x86\x7c\x21\x80\x8b\x41\ +\xc0\x15\xf8\xdc\x98\x98\xd1\xf8\x67\xea\x24\x88\x40\xe5\xd1\xc3\ +\x05\xf4\xdf\x01\x5c\x4b\xa7\x24\xe0\x3c\xee\x93\xc8\x49\x12\x46\ +\x19\x7c\xca\x78\x07\x08\xd9\x88\x00\xa4\xdb\x89\x42\x8a\x46\x22\ +\x1e\xdc\xb7\x32\x88\xa0\x1f\x51\xc2\x29\x14\xcc\x62\xf6\x64\xdb\ +\x5b\x01\x65\xac\xf3\x3e\xf2\xda\x0a\xd6\xe9\x2d\xc2\x3a\xbc\x6f\ +\xef\x7f\x67\xff\x22\xa8\x55\xe6\x44\x9b\xc8\xb7\x64\xf5\x86\x75\ +\x03\xdc\x20\xff\x06\x76\xb3\xc5\xa8\xef\xa5\x61\x19\x4c\x6c\x27\ +\x0f\xe3\x3c\x36\x52\x97\x6c\xec\xa3\x1d\x3c\xc0\x34\xa0\x8a\x7b\ +\xfa\x79\x9c\x60\x05\xd0\x53\x0c\x3f\x99\xff\xdb\x9b\xd0\x37\xf2\ +\x6b\x16\x11\x70\xf2\x71\x6c\xbe\x6e\x39\x8f\x43\x04\x70\x0a\x69\ +\xf4\x5b\x5c\x5a\x56\x56\x87\x85\x32\x9d\xb8\xb7\x29\x37\x9d\xd8\ +\xdc\x8e\x31\x09\x40\x36\x9a\xfe\xab\xae\xba\xaa\x18\xab\x78\xbe\ +\xb7\x61\xe3\x86\xab\xb4\x98\x26\xdb\x65\xf8\x38\xf9\xc3\x2e\xd0\ +\xcc\x00\xd9\x77\x50\x02\x44\x0a\x97\x25\x5d\x7e\x83\x7e\x1b\x10\ +\x85\x10\xca\xb8\x69\x56\x00\x99\xf7\x2a\x87\xd3\x70\x2c\x1b\xbe\ +\x93\x18\xa5\x3f\x20\x42\x47\xfb\x30\x34\x1b\xe8\xe5\xbe\x40\x24\ +\x4d\xe1\x49\x88\xc0\x9e\x03\x8c\xfe\xc2\x02\x34\x58\x80\x77\x02\ +\x68\x76\xce\xa0\xdd\xe7\xca\x58\xe6\xfd\x73\xcf\x3d\x37\x6b\xc9\ +\x92\xa5\x9f\x5a\xb7\x6e\xdd\x47\x60\xf6\x95\xf1\x23\x5f\xe0\x42\ +\x90\x7d\x35\x08\xf6\xf2\xf3\x10\xb0\x89\x7a\xe3\xb8\xd6\x8e\xfe\ +\x24\xcf\xf0\x39\xd0\xc7\xd0\x0f\x8d\x4a\x1f\x4f\xfd\xd6\xe0\xda\ +\x31\xa0\x97\x9b\x64\xae\x60\x60\xe2\x6b\xe8\x4e\x20\x0c\x62\x0f\ +\xf3\x14\x34\x19\x9d\x08\xcc\xd7\x25\xf8\x00\x95\x17\x5c\x70\xa1\ +\xb3\xa7\xa7\xe7\x00\xa2\x04\x31\x15\xd8\xf6\x56\x2b\xa0\x8c\xd6\ +\xf4\x97\x96\x96\xba\xde\x77\xfd\xfb\xae\x7e\x67\xdf\xbe\x47\xda\ +\x3b\xda\x73\x39\xc1\xe3\x4a\xbe\x0c\x2c\xc7\x08\xba\x04\xbd\x83\ +\x5f\x0b\xf3\xcc\xdc\x11\x9e\xb1\x0b\xf3\x78\xbc\x1a\x38\x0e\x1c\ +\xc5\xf9\x3e\xf4\xdb\xb8\xe3\xf6\x26\xce\x37\x02\x7b\x79\x42\xe7\ +\x30\xfa\x06\x20\xc0\x33\x78\xca\x04\xe7\x13\xb2\x41\x6c\x27\x15\ +\x21\x8e\xb5\xb1\x89\xc0\xe8\x20\x4a\x58\x47\x51\x76\xde\x79\xe7\ +\xb7\xd5\xd7\xd7\x37\xe2\xba\x98\x89\x86\xbf\x8e\x50\x1a\x8d\x00\ +\x64\x0a\x78\xa2\xca\x6d\xb7\xdd\x36\x1b\x8b\x34\xbf\x7a\xf0\xd0\ +\xc1\xc5\x20\x59\xe6\x24\x9b\x3d\xfe\x51\x90\x2f\x90\x03\xac\x02\ +\x16\x9a\x8a\x31\x47\xb9\x00\xc2\x86\xf2\x6c\x1f\xd0\x90\x48\x30\ +\x82\x0f\xe2\xf8\x18\xd0\x82\x73\x7a\x3d\xc0\x93\x32\x0d\xc0\x11\ +\x0a\x10\x32\x08\x61\x2d\xe5\x71\x7e\x62\x02\x43\x49\x17\x30\xc0\ +\x05\xea\x23\x68\xe3\x64\x09\x30\xff\x7b\x64\x59\xca\x2f\x2a\x2a\ +\x3e\x84\xca\xea\x40\xaa\x8d\x26\x76\x53\x81\x32\x0a\xd3\x8f\x79\ +\x7f\x45\x4e\x66\x66\xc6\x03\xbb\xf7\xec\xb9\x19\x26\xc8\x63\x32\ +\xfd\xa9\xd6\xeb\x8d\x18\x98\xff\x59\xfa\xb7\xcc\x90\x56\x75\x00\ +\x11\x5c\xaf\x47\xdf\x0b\xe8\x49\xbd\x1f\x11\x21\xb8\xb8\xc3\x96\ +\x3d\x54\xf5\x03\x4a\x79\xec\xbe\x10\x70\x4d\xb0\x00\x14\x40\xe7\ +\x53\x55\x8b\x99\x91\x51\x39\x86\xe2\x1a\xf5\x07\x66\xcc\x98\xa9\ +\x6b\x5a\xec\x18\x56\x53\x85\x87\xbf\x15\x4d\xf0\xab\x8e\x64\x9d\ +\x04\x5f\xbd\xeb\x98\x53\x55\x75\xe1\xee\xbd\xbb\x6f\x84\x43\x92\ +\x69\xaa\xdc\xd9\xa6\x75\x47\xd2\x8a\x25\x89\x95\x66\x8d\x31\xb6\ +\xca\x89\x7b\x3f\x3e\x43\xac\xc9\xcc\x7a\xc0\x50\xec\xc9\x02\x72\ +\xf8\xc8\xa6\x89\x9a\x5c\x4e\x7e\x01\xbf\x9e\xcd\xfb\x99\xbc\xa0\ +\x14\x27\x13\xdb\xe2\x3c\x72\xb8\x04\x38\x0e\x74\xda\xe4\x00\x8c\ +\x22\x40\x4b\x3b\x80\xf0\x99\x52\x5f\x5f\xb7\x6c\xd6\xac\x59\x07\ +\x90\x78\xdb\x60\xbf\x09\xc5\x5a\x22\x51\x46\x38\xfa\x95\xeb\xae\ +\x7b\x5f\x19\x96\x6b\x3f\xd4\xd8\xd8\xb0\x8c\xa6\x2a\x41\x6a\x5a\ +\xf2\x81\x51\x91\x2f\x83\xbc\x8b\xd0\xd3\xf8\xdf\x6d\x18\xe9\x09\ +\x11\x96\xb1\x0c\xa1\x0a\x04\x01\x09\x38\x1f\xb8\x1a\x58\x49\x7d\ +\x07\x60\x19\x70\x39\x70\x21\x2f\x1f\xcf\xe1\x29\xdd\x0a\xc0\x4d\ +\x26\xa3\x09\x61\x4a\xdc\x21\x6d\x05\x12\xc3\x5f\x92\x66\x17\x22\ +\x4a\xc8\xbc\x7a\xc0\x81\x03\xeb\x2d\x8e\x75\x77\x77\xf9\x47\xb8\ +\x31\x95\xd8\x09\xc0\x08\x19\xcb\x9b\xdd\x48\x44\x5c\x7b\xe2\xe4\ +\x89\x7b\x30\xfa\x4b\x40\xb4\x64\xb3\x56\x6f\x54\xe4\x03\xac\xca\ +\x76\x29\x25\x15\x02\x50\x98\x7c\xad\x73\x6b\x19\x30\x9b\xaf\xe0\ +\x99\x01\xdc\xc4\x05\x33\x9f\x93\x5c\x08\x64\x71\xc1\xa8\x80\x22\ +\x32\x76\x1c\x93\xd3\x64\x40\x01\x79\x8d\xc0\x49\xe1\x0c\x8e\x48\ +\x04\x40\x2a\x2b\x20\x43\x04\x5e\xec\x88\xee\xee\xec\xea\xac\x31\ +\x6d\x32\x21\x76\xeb\x04\x94\x91\x8c\xfe\x15\x57\xaf\x98\x75\xaa\ +\xe5\xd4\xfd\xdd\x5d\x5d\x17\x41\x79\x8e\xe1\x98\x7e\xde\x8f\x18\ +\xb9\xd4\x02\x00\x67\xf1\x6a\x60\x3c\xc9\xc8\x72\x00\xb9\x7c\x54\ +\x9f\x0d\x4c\x07\x32\x04\xc9\x69\x96\xd4\x4e\x7e\x73\x01\x41\x9e\ +\x1a\xee\x1b\xc5\xea\xe4\x34\x8d\x0e\x42\x17\x7c\x2f\x15\x8b\x49\ +\x4e\x76\x76\x76\xf6\x8d\x60\x53\x49\xc2\x4e\x00\xb2\x61\xcb\x96\ +\x1b\x7b\xdf\x56\xb7\xb6\xb4\xdc\x81\x24\x44\x11\x1f\xfd\xb6\x7b\ +\xf2\x46\xd7\x44\x95\x6d\x11\x57\x69\x3c\x8d\x2b\xeb\x02\x3c\x96\ +\xcd\x75\x53\xa5\x09\xb1\xaa\x40\x2d\xcb\x0e\x72\x41\x8f\xce\x12\ +\x24\x9b\x16\x14\x34\x77\x86\x27\xa3\xab\xab\xbb\xeb\xa4\xb0\x02\ +\x80\xcd\x2a\x62\x65\xb8\xa3\xff\xda\x6b\xaf\x9d\x8e\xda\xfe\x9a\ +\xae\xee\xee\x4b\x11\x82\xa8\x9c\xfc\x74\xf3\xfe\x98\xa0\x03\x65\ +\x34\x54\x83\x88\x32\x6c\x4a\xc0\x71\x86\xa9\xdd\x24\x2e\xe4\x56\ +\x3e\x0d\x84\x46\x24\x00\xfb\x63\x5d\xd7\x5c\x04\x7d\x65\xe5\xf4\ +\x1a\x58\x81\x7e\x71\x5b\xd2\x0b\x41\x1d\x8e\x0f\x80\xdd\xaf\xce\ +\xb8\xae\x2f\x81\xd3\x77\x01\x72\xfd\x2e\x13\xf9\xa9\x47\x3f\x9f\ +\xfb\x5c\x06\x2f\x3c\x01\xe4\xf3\x9a\xb9\x79\x42\x92\x87\xe2\x7c\ +\x90\x5e\x0b\xec\x02\x0e\x41\x04\xcb\x21\x2e\x99\x8b\x40\x22\x67\ +\x66\x4b\x00\x19\x7c\xaa\x9a\x06\xa2\x06\x4c\x2b\x86\xec\x22\x03\ +\x7e\xbf\xd9\xfa\x41\xe3\xb1\xc8\xaf\x48\x6a\x2c\x1a\x9d\xad\x6b\ +\xb1\x85\xf8\x3e\x4d\x0e\x19\x17\x90\x2a\x1c\x71\xc3\x6d\x96\xf8\ +\x14\x60\x1f\xf7\xaf\x58\x71\x4d\x29\x92\x0d\x77\x62\x4f\xfe\xd5\ +\x91\x68\x54\x4d\xb7\xf7\x4e\xe2\xe6\xae\x12\x04\x5f\x09\x5c\x8f\ +\xe3\xd5\xe8\x57\xa3\xbf\x16\x9f\x5f\x45\xcf\x01\xda\x5f\x02\x5c\ +\x66\xc0\x95\xc0\x59\x3c\xc6\x6f\x00\x7a\x79\xcc\x5f\xc9\x57\xed\ +\x0a\x5f\xe0\xcc\x84\xc2\xd1\x40\x1d\x42\x96\xc0\xb2\x6d\xe9\x9e\ +\x59\x60\x49\x1e\xc1\x32\xbb\x30\x15\x84\xb1\xd5\xee\x04\xd2\xc4\ +\xbe\x34\x0f\xa7\x20\xc3\xb6\x00\x4e\xa7\x53\x45\x91\x67\x41\x30\ +\x14\xba\x28\x10\x0c\xba\x4d\x9b\x30\x2d\x9b\x34\x8a\x79\xe8\x75\ +\x05\xb0\x00\xe7\xf9\xe8\x9d\xe8\xcd\x2a\x8b\x53\x01\x99\x14\xe7\ +\x00\xd1\x35\xb8\xde\x01\x0c\x15\x7e\xde\x86\xc2\x1d\x50\xfa\x1d\ +\x92\xc4\xbc\x7b\x0f\x15\x9e\x98\xe4\xce\x90\x26\x2c\x5d\x1e\x30\ +\x93\xe7\x29\x82\x64\x64\x4d\x0c\x34\x61\x01\x8c\x3d\xae\x3b\x21\ +\x82\x05\x38\xc6\xad\x92\xda\x08\xb1\x58\x01\xdd\x60\x01\xe4\xa4\ +\x16\xc0\x04\x79\xe1\xc2\xc5\xd9\x7e\xbf\xef\xfa\x9e\x9e\xee\xf7\ +\x87\xc3\x61\xb7\x65\x07\xae\x20\x9f\xfd\x87\xdd\xc1\x17\x6f\x9c\ +\xcd\x12\x2d\x9c\x6c\x40\x37\x20\x96\x64\x17\x24\x23\x95\x0a\x80\ +\x57\xf9\xba\xf9\xb5\x18\x4f\xe9\x36\xf1\xa2\x0f\x5b\xaf\x87\xde\ +\x83\x5e\x31\x09\x68\xaa\x37\x89\xa3\x83\xa6\xb2\x81\xfe\x91\xfe\ +\xbc\x24\xd9\xfa\x04\x34\x3a\xc3\x80\x6d\x53\x1d\xea\x49\x4c\xd9\ +\x61\x4a\x7a\x3a\x5f\x40\x49\x67\xfe\xd1\xd4\xf9\xf3\xe6\x55\x0d\ +\xfa\x7c\x1f\x82\x77\x79\x2e\xbd\x6e\x8e\xf5\x69\x63\xe4\x03\xf7\ +\xd1\xda\x3d\xae\xe5\x5b\x1e\x8e\x03\x58\x55\x66\x55\x1e\x88\x6d\ +\x41\xbf\x47\x08\x80\x35\x0d\xe8\x00\x6a\xf8\x8a\xdc\x36\x80\x70\ +\x8b\x21\x9b\x62\xfc\xa9\x2e\x00\x95\x6f\x5a\xa9\x46\xdf\x35\x22\ +\x2b\x66\x25\x1c\x1c\x24\xbb\xe6\xc4\x43\xad\xf4\x8c\x0c\xef\xc9\ +\xc1\xc1\x81\x1e\xbb\x67\x14\x29\xe9\x42\xbf\x9c\xec\x1c\x27\xe6\ +\x94\xa5\x58\xe4\x79\x37\x4a\xcf\x85\xa9\x9c\xbd\x5c\xe0\x43\x20\ +\xe3\x66\xf4\x6e\x51\xb7\x1f\xd5\x1c\x79\x0a\xa4\xee\x02\x84\x00\ +\x84\xa7\x1f\x00\xba\xa8\x83\xc8\x8b\x3d\xc7\x81\x56\x59\x66\x25\ +\xd7\xa1\x75\x7a\x2e\x21\x86\x29\x29\x08\x95\xef\x2a\xa2\x22\x6f\ +\x17\x02\x18\xb5\x08\x92\xb5\x78\x3c\x21\xe9\x9a\x56\x83\xe9\xa0\ +\x09\x83\x54\xb3\x8a\x40\x08\x40\x4d\xe7\x04\x62\xff\xbe\x17\x66\ +\xe4\xec\xfe\xfe\xbe\x72\x41\xbc\xd5\xf4\x63\xcd\x1e\x73\xea\xdc\ +\x38\x0e\x8d\xb1\x70\x92\x2d\x76\xde\xa4\x0c\xf9\x7c\x10\x01\x04\ +\xc0\x84\xb0\x1b\x28\x07\x66\xf0\x25\xdc\x73\xf9\x79\x21\x0f\x1f\ +\x55\x20\x3e\xc5\x7c\x06\x2f\x9d\x1e\xc5\xda\x85\x91\x36\xdb\xda\ +\x4a\x38\x1c\x2a\x40\x66\x70\x4e\x56\x56\xf6\xee\xde\xde\x9e\x90\ +\xc1\xff\x94\x0d\x90\x28\xd4\x14\x53\x28\xdb\xfb\x0a\x9d\x14\xc5\ +\x13\xf1\xf3\x31\xaf\x64\x80\xdb\xa4\xa3\x1f\xa4\xb3\x94\xed\x0c\ +\xf4\x91\x71\x28\x9c\x94\xf1\x62\xcf\x09\xc0\x67\xf3\xdd\x08\xb7\ +\x08\xbd\xf4\xfb\xdc\xe7\x28\x87\x10\xca\x0d\xfb\xfc\xa6\xf1\x94\ +\x30\xac\x14\x0f\x25\x81\x49\x4d\x16\x59\x97\xa3\x39\x38\xa4\xd1\ +\x91\x6e\x5e\x1b\x90\x4c\x08\xd4\x72\xe3\x16\xc8\xc5\xbc\x12\xae\ +\xa4\x10\x81\xac\xa6\xda\x50\xe3\x70\xb8\x94\xc1\x80\xbf\x54\xd3\ +\xa2\x0b\xa8\x49\x49\xb5\x8c\x59\x06\x72\xf9\xee\xdc\x30\x19\x5b\ +\x8b\x01\x39\x20\x8a\x86\x8e\xdd\x20\x70\x3d\x25\x19\xe7\x76\x4d\ +\x07\x42\x1c\xbd\xbc\x42\xb8\x87\x57\x13\x8b\x79\x8a\x78\x21\x8e\ +\x67\xf2\x7f\x6b\x16\xb7\x56\x09\x31\x5d\x4d\xe6\x83\x92\x58\xf1\ +\xca\x37\xc6\xd1\x6f\xe0\x23\xa9\x08\xe0\xb0\x97\x43\xe5\xc5\x18\ +\xc8\x35\x60\x2d\xca\xa8\xb2\x42\x52\x52\x79\xff\x78\xd4\x6a\x86\ +\xcb\xe9\xbc\xc2\xe7\xf7\xdd\x42\x93\x3f\x24\xc5\x5e\x37\x99\xc7\ +\xee\x4b\xc6\x69\x54\x49\x7c\xc4\x56\x00\x84\x2f\xfc\x0c\x8e\xd0\ +\x8a\x68\x86\x45\x20\xa7\x78\xfe\xfd\x08\x5f\x0d\x74\x8c\x3b\x61\ +\x54\x6c\xd9\x2c\x9a\x98\xac\x26\xd6\x22\xd6\x83\xb0\x1d\xbc\x34\ +\x9c\xcb\xd7\x29\xc4\x81\xe8\x28\x7c\x01\x2e\x00\x4b\x19\x59\xd7\ +\x75\x87\xd7\x9b\x59\x0b\x3b\x5e\x0b\xfe\x22\x96\xd2\x08\x87\x9c\ +\x32\xfe\x77\x39\x33\x15\x55\x59\x00\x25\x79\xcd\x23\xdf\x78\x1e\ +\x03\xaa\x71\x4c\x9d\x37\x19\x18\x5b\x13\x22\x9a\x07\xac\x41\x44\ +\xb1\x86\x6f\x0b\x73\x00\xa3\x49\x27\x47\x81\x41\x9e\x58\xa2\x99\ +\xc5\xd7\x80\xdf\xe1\xf7\xfe\x0c\xfd\x2f\xb8\x28\x74\x20\x3e\x49\ +\x4e\xa3\x06\xf8\xb8\xb5\x8a\xf3\xc1\xf3\x20\xfa\x87\x80\x9b\xa8\ +\x95\x02\x46\xd6\xac\x4f\x45\xe1\x2b\xb3\xdc\xe0\xb0\xca\xe5\x72\ +\xe7\x08\xd3\x6f\x99\x06\x24\x39\xd9\x83\x9c\x68\x73\xbb\x5d\xd9\ +\x2e\x97\x73\x3e\x3c\x49\xc5\x4c\x3c\x20\x6e\x32\x8e\x0f\x01\x6f\ +\x00\x41\x5e\xfb\x1e\x0f\x11\x10\xee\x0f\xd0\xc8\xe2\x93\xc0\x5d\ +\x34\x11\x34\x6a\x91\x89\x1d\xc3\x41\x6e\x15\xde\x01\x5e\x82\x08\ +\x7e\x0a\x1c\xc2\xb1\x3c\x49\x53\x40\x82\x0b\x20\x40\xfd\x27\x49\ +\x62\xa9\xe1\x2b\x71\x7c\x0b\xf0\x20\x05\xce\x3f\x80\xeb\x15\xc0\ +\x08\x1c\xc0\x64\xb5\x18\x49\xd3\x62\xd3\xe2\x71\x3d\x0f\xc7\xaa\ +\x91\x74\x63\x2f\x27\x5b\x29\xea\x50\x1c\x72\x2c\x12\x2b\x44\xe8\ +\x57\x05\x25\xa5\x2d\xf4\x24\x78\xca\xf6\x75\x5c\x3f\xc8\x73\xff\ +\x50\xd5\xb8\x59\x02\x2f\xb0\x14\xb8\x17\x2a\xff\x3c\xed\x99\x30\ +\xc6\xd2\x44\x82\xc9\xc7\x85\xf0\x57\x10\xd1\x03\xc8\x93\x30\x05\ +\x44\x81\xa1\x69\x6d\x36\x70\x81\x61\x7b\x7a\x39\x70\x15\xc8\x7b\ +\x18\xf8\x2a\x8e\x6f\x81\x08\xf2\xc8\xf0\x9b\x39\x47\x13\x8e\x44\ +\x0a\x91\x14\xca\x92\x88\x64\x1c\xf5\x8a\x51\x04\x4a\xb2\x04\x90\ +\x27\xc3\xe3\xc4\x3e\xb4\xa5\xa1\x60\xe8\x16\x2c\xfc\xc8\xb0\x51\ +\x21\x57\x35\xc0\x2b\x78\xc5\x42\xed\xe3\xe6\x39\xbb\xb9\x47\x7f\ +\x1e\x77\xea\x02\x7c\x03\xa6\x36\x3e\x7b\x00\x99\x75\x99\x4e\x6f\ +\xdc\xc4\x66\x01\xd9\x54\xf9\x1a\xfa\x76\xf4\xab\x39\xe1\x4e\x43\ +\x98\xaa\xf0\xa2\x51\x25\x70\x2e\x50\xca\x1d\x62\xb1\xea\x73\xf8\ +\x5b\xcd\xb0\x9b\x48\x55\x15\x75\x3f\xc4\xd0\x88\x68\x2e\x26\xfc\ +\x00\x11\x19\xcb\x82\x7c\xd1\xa3\xae\xec\xca\xf4\x66\x4e\x1b\xf4\ +\x0d\x64\xa5\xf3\x3e\x8d\x2d\xc2\x3d\xef\x17\x70\xfd\x88\x48\x36\ +\x8f\x4b\x4b\x70\xe8\x7c\xa4\x2c\x07\xbe\x06\xb2\x3e\x07\xd2\x56\ +\x00\xd3\x00\xef\x28\xff\x5e\x1c\xe8\x06\x09\xf5\xe8\xfd\x13\x66\ +\x05\x44\x4a\xbc\x9f\x27\xac\xae\xe5\x85\xb2\xac\x24\xab\x9d\x74\ +\x8e\x6c\xe0\x46\xe0\x1b\xc0\x83\xb2\xcc\x1e\x8b\x93\x21\xc8\xb2\ +\x72\x61\xe5\xc9\xc3\xdf\x97\xe0\x49\x17\x05\x48\xe6\xea\x1f\x1e\ +\x6b\x9a\x95\x9f\x5f\x70\x53\x53\x53\xd3\x25\x23\x59\xd1\x1b\xe5\ +\x29\xdc\x10\x08\x29\x00\x0a\xb9\xa2\x13\xe3\x1c\x4b\xcb\xfc\xc6\ +\xcd\x01\xe8\x4d\x59\xc0\x3d\x69\x88\x90\x21\x36\xc2\xbf\xe9\x02\ +\xce\xe3\xc5\x26\xd7\x44\x87\x85\x20\xb1\x14\x58\x02\xd2\xa6\x01\ +\x76\x96\x52\x02\x0a\x78\x6d\x65\x36\x8f\x16\xe8\x3d\x0e\x0f\xf3\ +\xbe\x16\xe4\x17\x74\x84\x23\xe1\x83\x48\xe8\x05\x92\x3d\x87\x30\ +\xa9\x0f\x20\xcb\x92\x47\x8f\x6b\xd3\x86\x47\xbe\xd5\x1f\xd8\x02\ +\x45\xbe\x8a\xbe\x49\xec\xc4\x19\xd7\x16\x17\x9b\x43\xd9\x4d\xbc\ +\x1c\xb8\x87\x10\x66\x11\x6e\x07\xe8\x34\x51\x61\x71\x48\xed\x93\ +\x4a\xf2\x04\x46\x02\x09\x8e\x62\x10\x79\x01\xee\x6b\x15\x7a\xd9\ +\x76\x9f\xb7\x08\x6b\x1d\xc0\x22\xea\x24\x72\xdf\x20\x67\xb8\x91\ +\x50\x3c\x9e\x0f\xbb\xe6\x31\x0e\x70\xe3\xa0\x97\x93\x3d\x7b\x26\ +\x12\x8a\xe0\x01\xcd\xbe\x22\x98\x90\x51\x91\xd3\x03\x6c\x04\x29\ +\xcf\xa2\xa7\xdb\xb2\xf4\x09\x31\xad\x62\x22\x93\x79\x02\xe9\x7c\ +\xe0\x5e\xe0\xab\x10\xc1\x27\x80\x6b\x80\x79\x7c\xd1\xa8\x33\x0d\ +\xb9\x21\x60\x0f\x9b\xba\xb8\xb0\x26\x61\x65\x90\x34\x0a\xd1\x2b\ +\x40\x05\x38\x41\xb5\x95\xad\x97\x74\x10\xfb\x16\x8b\x45\xb3\x21\ +\x02\xb7\x89\x78\x11\x06\x26\xf3\x55\x74\x4d\x77\x87\x42\xc1\x9c\ +\xb1\x10\xd3\x05\xac\x07\x19\x2f\xa2\xc7\x96\x2d\x5b\x9f\x60\xec\ +\x11\x83\x88\x1a\x66\x81\xcc\x55\xc0\xa7\x08\x61\x58\xc3\x17\xa7\ +\xcc\x05\xf2\x2d\x37\x4e\xe4\x32\xfe\x08\x54\xe3\x73\x4d\x10\x34\ +\x71\xd6\x60\x94\x3f\x17\xe5\x56\x64\x35\x5b\x24\x63\x2f\xa4\x50\ +\x38\x9c\x19\xd7\x75\x97\x25\x04\xe4\x48\xca\x89\x16\xd7\xd5\x50\ +\x20\x90\x39\x56\x93\x37\x00\x6c\x05\xfe\x87\x27\x5c\x08\xa0\x4c\ +\xc2\x8d\xd5\x01\x89\xdf\xa8\x4b\x81\xdb\x80\xb5\x38\x7f\x00\xb8\ +\x1d\x58\xc1\x57\x1c\x4f\x07\x32\x81\x2c\x7e\x63\xab\x81\x0d\x40\ +\xaf\xb0\x58\x53\x0c\x22\x52\x98\xc1\xf7\x45\xd8\x09\x00\x91\x80\ +\x1b\x16\x00\x9a\x67\xf3\xb1\x05\x72\xb2\x35\x15\x71\x3d\xe1\x8c\ +\x62\xc3\xc1\x78\x8c\xcc\x1e\x10\xb0\x09\x73\xde\x33\x38\xde\xc9\ +\x53\x96\x62\x04\x4e\xce\x28\xf3\x70\xab\xb0\x8c\x8b\xe1\x23\xd4\ +\xab\x06\xee\x07\xd6\xf0\xc4\xcb\x2a\xe0\x32\x60\x26\x5f\xc1\x94\ +\x98\xc2\x02\x90\xf8\xa6\xd3\xac\x61\x08\x80\x6d\xde\x41\x5a\x18\ +\xd2\x49\x2a\x00\x35\xe9\x3a\xf3\x44\x5c\x8d\x84\x42\xae\xf1\x32\ +\xcf\x7d\xc0\x0e\x5e\xb5\x8b\xf2\xe5\x62\x8a\x30\xdd\x93\x26\x04\ +\x27\x47\x36\xf7\x6d\xce\x02\x22\xbc\x38\xa3\xf1\x6b\x99\x22\x34\ +\x9b\xd2\x02\x50\x80\x1c\x40\xb6\x5b\x31\x8d\xd1\x9f\x50\x88\xca\ +\x2c\x80\x51\x04\xbc\x25\x5d\x0f\xa0\xc7\xd9\x6e\x93\x71\x1d\xa8\ +\x21\xe0\x30\x44\xf0\x34\x5f\xd1\xb3\x12\xe7\x45\x7c\x65\x6c\x7c\ +\x92\xd7\xe5\xc9\x26\x41\x64\xf2\x70\x4c\x7c\x6f\x6a\xb7\xc4\xc8\ +\x9c\x49\x05\xb0\x94\xfd\xd3\x59\x80\xa1\xa9\x5a\x9e\x88\x42\x48\ +\x0d\x48\x7f\x86\x3f\x39\xe3\x56\xf4\x25\x38\x27\x93\x3c\xe2\x12\ +\x36\xd7\xa6\x32\x64\xd3\xb3\x90\x87\xd1\x64\x51\xb9\xb7\xae\xc8\ +\x93\x53\x69\x6c\xa2\x1c\x61\x1d\xe8\x00\x9e\x83\x5f\xf0\x04\xfa\ +\x6d\xb2\xcc\x9f\xec\xf1\x5e\x1b\x69\x61\xab\xc7\x6e\x6f\x81\xfd\ +\xcb\xb6\x25\x39\xcd\x97\xe2\x13\x39\x02\xfd\xc0\x36\x48\xf3\x47\ +\x10\xc2\xf3\xd4\x22\x0c\xdb\xa4\xbd\xd7\x14\xc0\x0f\xf2\xbb\x80\ +\xf8\x08\x0c\xde\x08\x2c\x00\x7b\x72\x75\x6c\xa2\x09\xd0\x79\x9d\ +\xfe\xf7\xd4\x37\x40\x7f\x40\x3c\x52\xed\x3d\x21\xa4\x99\x02\x22\ +\x7c\x75\x74\xef\xf0\xa6\x2e\x0d\x91\x97\xe5\x6b\x69\x05\xa0\xaa\ +\xaa\xee\xf5\x7a\xb5\xc9\x9a\x8f\x7b\x80\xd7\x80\x9f\x03\x2f\x41\ +\x04\x75\xe8\xa3\x29\x57\xf6\xbe\x37\xfa\xfb\xf9\x43\x2b\x03\xc3\ +\x5b\x39\xa4\xa7\xcb\x3d\xa9\x29\x1e\xce\xa0\x4b\xb2\x12\x62\x2b\ +\x96\x26\xb0\x0d\xbd\x3f\x07\xaf\x84\xa5\xa2\x23\x47\x43\x21\xd2\ +\x10\x89\x90\x03\xba\xce\x1e\xc6\xb8\x84\xbf\x13\x40\x88\xe5\xbd\ +\xa6\xf2\xb0\xba\x76\x98\x0f\xcd\x76\x3a\x1c\x31\x22\xc9\xfa\x88\ +\x2c\x80\x2c\xc9\x1a\x2c\x40\x70\x02\xb9\x07\xf1\x2a\xc1\xb2\x73\ +\x72\xdd\xea\xeb\xc8\x43\x0f\x3d\x44\x3e\xf7\xb9\xcf\x11\xbc\x38\ +\x92\xcc\xbd\xe8\x22\x52\x9d\x9b\x4b\x7e\x2f\xcb\xe4\x4f\x10\xc8\ +\x7e\xc0\x67\x28\x2a\x49\xff\xe2\xe4\x87\x78\xb6\xb2\x73\xb8\xf7\ +\xd9\xe9\x0c\x63\x40\x43\x2b\x09\x5b\x01\x24\x86\x7a\x49\x91\x63\ +\x58\x15\xec\x9f\x38\xf2\x1d\x64\xf1\xe2\x73\xc9\x67\x3f\xfb\x19\ +\xf2\xf8\x77\x1f\x27\x5f\xfb\xda\xd7\xc8\x17\xbe\xf0\x05\xf2\xad\ +\x6f\x7d\x0b\xe7\xdf\x25\x77\xde\xbb\x86\xf8\x2b\x2a\xc8\x9f\x41\ +\xfc\x7f\x02\x7f\xe4\x69\x5a\x1f\xf0\xaf\x2a\x04\x19\x88\xf1\xa7\ +\x95\xaf\xc3\xe8\xf7\x0f\x5f\x00\x21\x99\xf9\x73\x52\xd2\x52\x84\ +\x9a\x42\x15\x31\xa7\x43\xed\x27\x13\xd4\xf0\xa0\x29\x72\xf7\xdd\ +\x77\x93\x07\x1e\x78\x80\xbd\x96\x7d\xa8\x61\x25\x32\x43\x55\x55\ +\x15\x29\xc8\xcb\x23\xbf\xfd\xed\x6f\x49\xf5\xa9\x16\x52\xcb\x0b\ +\x4a\x17\xa3\x3f\x8b\xa7\x75\xb3\x45\x4c\x0c\xbc\xfb\xc9\x0f\x71\ +\x27\xf9\x45\x90\xdf\x32\x82\x10\xcd\xe9\x70\xfa\xb5\xa8\x16\x03\ +\xe7\xd6\xa7\x84\x00\xc9\xa7\x00\x59\x0a\x3b\x5d\xae\x4e\xcc\xd1\ +\x13\x32\xef\x57\x60\x74\x5f\x76\xd9\x65\x82\x7c\x13\xf0\xa8\x13\ +\xf2\xd1\x8f\xae\x25\x1f\xf9\xc8\xff\xa1\xaf\x5d\x65\x21\xcf\x1e\ +\xe0\x4f\x84\xb0\x68\xe1\x39\x88\x61\x2f\x30\x20\x04\xfb\x2e\x74\ +\x18\xc5\x5e\xc2\x30\xf0\x0e\x7d\x5c\x3d\x38\xdc\x3f\xc2\x0d\x38\ +\xf0\xad\x06\x09\x91\xc2\xa9\x9e\x1f\x28\x27\x8b\x19\xf5\x84\x1e\ +\xc6\x5a\xf2\x16\x55\x55\xb4\x09\x10\x00\x23\x3e\x2f\x2f\xad\x7f\ +\xc9\xfc\x83\x07\x1f\x7c\x90\xdc\x74\xd3\x4d\xc4\xe5\x76\xb3\x9b\ +\xd0\xc6\x6f\xc0\x0b\x38\xfe\xbf\xc0\x33\xd4\x47\x40\xef\xe3\x72\ +\x96\xdf\x35\x62\x10\xa9\x5e\x9d\x87\x7c\x2f\xf1\x35\x0b\xbe\x11\ +\x5a\x3c\x5d\xd3\x91\x2f\x8a\x73\x01\x70\xd8\x58\x80\x04\x56\x03\ +\x47\x7c\x83\x83\x6d\x1e\x4f\x46\x68\x5c\xd9\x17\xef\xc4\x21\xc1\ +\xa0\xfd\xaf\x2e\x2f\x2f\x27\x9f\xf9\xcc\x67\xc8\xf2\x2b\x97\x9f\ +\x7e\x4b\xa7\xc6\x5f\xfb\x76\x14\xa0\x23\xe2\x3f\x20\x82\xa7\x81\ +\x75\x40\x83\x28\x05\x73\x9c\x99\xc4\xcb\x22\x3c\x66\x8f\xbb\xfd\ +\x35\xfa\xb7\x47\x41\x3e\x10\x0b\x04\x82\x1d\x91\x68\x24\x64\x21\ +\x9f\x37\x39\xd9\xc5\x58\x4c\xc3\x8e\x2c\xa9\x15\x91\xc0\x84\x38\ +\x82\xbd\x7d\xbd\x04\x2f\x42\x1a\x96\xb5\x58\xb0\x60\x01\x8b\x12\ +\xe6\xce\x9d\xcb\x9c\xc7\x9c\x9c\x2c\x4c\x11\xd3\x49\xf9\xb4\x0a\ +\xa2\x79\x3c\x6c\xd7\xcf\xcb\x10\xc2\x0f\xd1\xff\x3b\xbe\xff\x2a\ +\x70\x04\x68\x05\x74\xe3\x4e\x88\x33\x64\xae\x57\xb8\xc8\x4f\x80\ +\xf8\x67\x81\x5f\x51\xf3\x4f\x07\x8d\x20\x68\x24\xe6\x3f\x80\x15\ +\x41\xbd\x9a\xa6\x99\x2c\x80\xd8\x22\x2e\xa7\x28\x21\x6a\x8a\xaa\ +\x74\xe1\xd9\x40\xed\x13\x61\x01\x3a\xda\xdb\x09\xde\x26\x46\xf7\ +\xaf\x0d\x2b\x62\x58\x79\xcd\x35\x88\x18\x3e\x4b\xee\xb8\xe3\x36\ +\xf2\x6f\xff\xf6\x79\xf2\xeb\x5f\xff\x9a\xfc\xe2\x17\x4f\x13\xbc\ +\xa2\x86\x14\x16\x17\xb1\xc7\xc8\x74\x73\x3f\xe1\x49\xe0\x51\x10\ +\xf0\x4b\x6e\x15\x8e\x03\xfd\xdc\x32\xa8\x53\x54\x0c\x92\x61\x17\ +\x73\x03\x35\xf7\xb2\xcc\xea\x24\x7f\x00\xf1\x8d\x63\x78\x49\x56\ +\x96\x37\x73\x00\x4e\xe0\x20\x78\xd6\x92\x3f\x44\xcd\x2a\x80\x04\ +\x05\x58\xd2\x63\xa1\xe8\x40\xd0\x1f\x6c\x50\x14\x65\xdc\x6b\x02\ +\x7e\x7f\x80\x6c\xd8\xb0\x91\xec\x83\x08\x86\xb3\xf0\x14\xdb\x9c\ +\xc9\xda\xb5\x6b\xc9\xcf\x7f\xfe\x0b\xf2\x95\xaf\x3c\x42\xae\xb9\ +\x66\x25\xb9\xf1\xc6\x1b\xc9\x23\x8f\x7c\x85\xdc\x7e\xfb\x1d\x04\ +\xaf\xaa\x61\xd6\x22\xce\x1d\xa6\x26\xba\x05\x0c\xbf\xf7\x29\x1c\ +\x3f\x06\xd0\x69\xe2\x7f\x80\x63\x3c\x89\x92\x72\xa7\xa4\xc0\x64\ +\xce\xf3\xac\x0d\x02\x5b\x24\x89\x4d\x69\xff\x8f\xef\xb6\x8a\x8d\ +\x31\xc2\x71\xba\x5d\x5d\x18\xc8\x3e\x92\x48\xfd\xf6\x71\xf3\x92\ +\x70\x06\xdc\x4c\x47\x5e\x5e\x7e\x85\xd3\xe9\x7a\x00\xcf\x06\xf8\ +\x14\xf6\x9b\xbb\x71\x5d\xbc\x31\x7b\xe4\xa3\xde\x42\x34\xac\x0b\ +\xb9\xeb\xee\xbb\xc8\x97\xbe\xf8\x45\x32\x7b\xf6\x1c\x32\xda\x88\ +\xe3\xc8\x91\x23\xe4\x07\x3f\xf8\x01\x79\xe9\xa5\x97\x08\xde\x5a\ +\x92\x62\x8d\xbc\x78\x70\xd5\x42\xbe\xef\x70\xb6\x61\xdb\x78\x96\ +\xe9\xa9\x99\xb2\x4d\xe6\x71\x24\xa4\x48\xd6\x73\x40\xbc\x75\x6c\ +\x80\x3f\x42\x76\x2b\xfa\x6d\xdc\xd1\x1d\xa7\xa6\xe5\xe5\xe6\xbf\ +\x1a\x8d\x45\x5f\x0a\x04\xfc\xcd\x7c\x6c\x44\x58\x2f\x8e\xa3\xc9\ +\x5e\xef\xae\x50\x38\x1d\xae\x3c\xec\x0e\xba\x31\xa6\xc5\xbe\x89\ +\x47\x8d\x94\x82\x78\x16\x92\x95\x94\x96\xd0\xf4\x22\xfb\x3a\xe7\ +\x8c\x1f\xa7\xbe\x59\x01\x8c\xf8\xd6\xd6\x56\x82\x27\x5a\x0b\x82\ +\x80\xb2\xd2\x52\xf2\xf0\xa7\x3f\x4d\x3e\xf6\xb1\x8f\xb1\x51\x3c\ +\xda\x56\x7d\xb0\x9a\xfc\xe8\x87\x3f\x3a\x2d\x02\xbb\xe6\x81\x10\ +\x4a\xd0\x4f\xe3\xbb\x81\xa6\xf3\x95\x40\x45\x80\x87\xaf\x30\xce\ +\x31\x2d\x1c\x31\x57\x2a\x13\x26\x32\xa5\x94\x22\xb1\xbe\xcd\x34\ +\xc8\x2d\x51\x03\x7f\x19\x25\x45\xb3\x28\xed\x8e\x0b\x5c\x2e\x57\ +\xbf\x22\xab\x7f\xc4\x9e\x80\x8d\xf1\xb8\xde\xc7\x48\x17\x88\x70\ +\x44\xd5\x54\x02\x4f\xc4\xe3\x11\x97\xea\x6c\x87\x09\x69\xa6\x02\ +\xa0\xf9\xfa\x15\x2b\x56\x20\x2c\xbb\x11\x8e\x58\x2e\xb7\x06\x94\ +\x78\x99\xf6\x56\x11\x70\x8b\x41\xf9\xee\xee\xe9\x26\x6f\xbc\xf1\ +\x06\x79\xed\xef\xaf\x11\x3c\x6e\xee\xb4\x08\xf0\xd0\x49\xf2\xf2\ +\xcb\x2f\xd3\x97\x26\x93\x55\xab\x56\x11\x0f\x9c\xba\xd1\xb4\xc5\ +\xe7\x2c\x66\x99\x44\x2c\x65\x23\x2f\xbf\xf4\x32\xc1\xeb\x57\x49\ +\xba\x16\x02\xc1\x0d\x94\x00\xbe\xb5\x1a\xe4\x33\xc2\xf3\x79\xf1\ +\xa3\x94\x0b\xc4\x03\x64\x01\xd9\xdc\x52\xe4\x1a\x96\xa1\xbb\x00\ +\x37\xe0\x48\x51\x6f\x8d\x03\x7e\x7e\xb7\x63\xbc\x72\xd7\x09\xf4\ +\xf0\x87\x45\x9e\xe2\x09\x9d\x76\x66\xea\xc7\xbf\xc1\x7a\xf7\x2a\ +\x92\xdc\x03\xeb\x1d\x36\x6d\x0b\xb7\x4e\x01\xa6\x7c\x8a\x42\xa1\ +\x48\x8a\xab\xa4\xb8\x6c\x81\x4e\xb4\x4f\x74\x76\x76\xdc\x99\x9b\ +\x9b\xe3\x58\xbb\xf6\x41\x36\x5a\x91\xad\x33\xbc\x08\x59\x41\x2f\ +\xa7\x7d\xa0\xb1\x1e\xd7\xc9\xc9\x13\x27\xc8\x6f\x7e\xf3\x5b\xf2\ +\xbb\xdf\xfd\x8e\xe0\x95\x27\x64\xa8\xe1\x51\x26\x64\xf5\xea\xd5\ +\xec\xf7\x5e\x78\xe1\x85\x74\x6a\x18\xf5\x74\x80\x37\x6e\x93\xef\ +\x7f\xff\x7b\x10\xd5\x2b\x08\x33\x83\xa3\x9e\x97\xdd\x20\xc8\x65\ +\x78\xd7\xb0\x83\xf7\xc5\x86\x97\x43\x16\x00\x5e\x40\x4d\x23\x80\ +\x5e\xa0\x1b\x88\xf0\x7e\x00\xf0\x71\x61\x44\x41\xfc\x04\x36\x3d\ +\x3b\x2b\x97\x66\x8d\x9f\xc7\xe0\x3d\x09\xa7\x2e\x20\xcc\x3f\x7a\ +\x81\x98\x45\x00\xbc\x57\x40\xa7\x23\xd3\x93\x55\xea\xf2\xba\x6f\ +\xc7\x1e\x81\x4f\x23\x9c\x28\xbe\xf5\x96\x5b\xc8\x97\xbe\xf4\x65\ +\x52\x35\x7b\x36\x23\xdd\x28\x00\xee\x1b\xa4\x25\x0f\xef\x10\x26\ +\x3f\xfc\xe1\x0f\xc9\x9f\xfe\xf4\x47\xd2\xdd\xdd\x43\x78\x63\x89\ +\xa1\x65\xcb\x96\xc1\xcb\xbf\x03\x0e\xde\x0a\x82\x77\xe6\x32\x71\ +\x8d\xa6\xed\xd8\xb1\x83\x7c\xeb\x9b\xdf\x24\x5b\xb7\x6d\x13\x22\ +\x18\x27\x28\x6c\xc8\x48\x8c\xf4\x0c\xdb\x97\x4f\x89\x07\x55\xf0\ +\xb7\x7e\x4d\x5e\xc9\x58\x56\x06\x5d\x2e\xcf\x2b\xba\xae\xbd\x1e\ +\x89\x86\xdb\x8d\xc4\x1b\xe7\x7f\x0a\x39\xd5\xb4\x05\xd5\xc4\x23\ +\x5a\x78\x10\x1b\x45\xeb\x31\x2a\x9b\x9c\x2e\x67\x02\x19\x39\x6e\ +\xd6\x13\x06\xc4\xd3\x6c\x50\xb4\xa6\x78\x1f\x7e\xf8\x61\x72\xdf\ +\x87\xef\x23\x78\xcd\xec\x90\x58\x98\xc9\x5e\xbf\x7e\x3d\x79\xf2\ +\xc9\x27\xc9\xb3\xcf\x3e\x0b\x71\x74\x8f\xfa\x79\xc3\x4b\x97\x2e\ +\x25\x9f\xff\xc2\xe7\xc9\x8d\x98\xaa\xa6\x4f\x9f\x4e\x4b\xcd\xe9\ +\x1c\x57\xf6\x99\xd3\xe9\x64\xd3\x8f\xd7\x9b\x01\x0b\xe4\x45\xef\ +\x65\x3f\x87\x6b\x34\x0c\x15\x4f\xdf\x90\x65\x96\x95\x54\x71\x3d\ +\x82\x3e\x80\x9f\x1b\xc4\x35\x24\xa6\x92\xc2\x4f\x03\x2a\x41\xfe\ +\xa4\x01\x7b\x41\x7b\x1d\x4e\x47\x4b\x4c\x8b\xfa\x4d\xe6\xdf\xf2\ +\xca\x79\x21\xe2\x24\x2f\x1c\xa2\x5b\x8a\xe1\x04\x36\x21\x0c\x3b\ +\x76\xf9\xe5\xcb\x22\xd7\x20\x1e\xc7\xc6\x51\x02\xa7\x82\xc4\xf5\ +\xd1\xbd\x18\x62\x36\xac\xc7\x27\x3e\xf9\x49\xf2\x71\x24\x77\xce\ +\x39\x67\x11\x71\x43\x54\xfc\x99\x36\xf0\xe8\x0f\x93\x8d\x1b\x37\ +\x0a\x3f\x61\x94\x95\xc6\x2b\xaf\xbc\x92\x7c\xf5\x91\xaf\xc2\x5a\ +\x7d\x09\x61\xe2\xed\xe4\x8a\xe5\x57\x90\x45\x8b\x16\x92\x39\xf8\ +\xdb\xb3\xab\x66\x91\x79\x73\xe6\x30\xbf\xe3\x82\x0b\x2e\x20\xcb\ +\x97\x2f\x27\x78\xef\x21\xb9\xe5\x96\x9b\xc9\x87\x3e\x74\x27\x2d\ +\x52\x31\xe0\x1d\xc8\xb8\x76\x0b\xa1\xff\xcd\xf3\x90\x84\x42\x56\ +\x92\x4d\x51\x37\xdf\xf2\x41\x82\xf7\x25\x91\x5b\x6f\xbd\x95\xa5\ +\xa9\xaf\xbe\xfa\x2a\xf6\x7b\xe6\xcf\x9f\x87\x1a\x47\xf9\xe9\x82\ +\xd6\xac\x59\x33\xc9\x45\x28\x6d\x5f\x70\xd1\x05\xac\xf8\x35\x89\ +\x2d\x46\x24\x9a\x3e\x88\xb7\x80\x8b\xa8\x99\x70\xd1\x33\xc4\x93\ +\xa6\x82\x87\xa0\xa3\xc1\x73\xef\xc4\x0e\xd3\x23\xd7\x5c\x7d\x4d\ +\x17\x5e\x11\x07\xc2\x5c\x8c\x78\xa8\x9a\xf6\x1c\x46\x11\xd8\x67\ +\xf7\xf0\xd2\x09\xf2\x51\xc4\xf5\x5f\xff\xfa\x37\xd8\x4d\x46\xf5\ +\x8f\x4d\x03\xa5\x25\xa5\x2c\xf3\x87\x47\xd3\xd3\xef\x8d\xc5\x01\ +\x82\xb8\xce\x21\x6b\xd6\xac\xc1\xdf\xf8\x3a\x79\xf2\xdf\x9f\x24\ +\x4f\x7c\xff\x09\xf2\xed\x6f\x3f\x46\xbe\x89\x92\xf3\x77\xbe\xfb\ +\x1d\xf2\xc4\x13\x4f\xb0\xf0\xf1\xa9\xa7\x9e\xc2\x31\xfd\xec\xdb\ +\xf4\xdf\x83\xd2\xf4\xa3\xe4\xd1\x47\xbf\x46\xbe\xf1\x8d\x6f\x90\ +\xc7\x1e\x7b\x8c\x7c\xef\xf1\xc7\xe9\x67\xb8\xfe\x55\x56\xaa\xfe\ +\xce\x63\xdf\xa6\x65\x6b\xf6\xd9\xe3\xf8\xec\xa9\xa7\xf0\x3b\x9e\ +\x7c\x8a\x7c\xf7\xbb\x8f\xe3\xe7\xbe\x4e\xbe\xfc\xe5\x2f\x23\x3f\ +\xf1\x08\xfb\x1c\x9f\xb1\xbf\x7f\xfe\xf9\xe7\x4f\xe2\xe8\x77\xfb\ +\x1c\x0e\x67\x03\xd2\xed\xdd\x26\x01\xe8\xc9\x2c\x80\x6a\x8d\x6c\ +\x84\x08\xd0\xf4\x48\x24\xea\x0b\xf8\x83\x47\x43\xc1\xf0\xc9\x50\ +\x30\x54\x0e\x8e\x15\x46\x36\x25\x9e\x39\x7e\x71\x98\x51\x6a\x09\ +\x24\x20\x61\x24\x3a\xad\xd9\x2d\x45\x08\x78\xc3\x0d\x37\x90\x73\ +\xcf\x5d\x4c\xf6\xee\xd9\x4b\xf0\x16\x12\xea\x00\xb2\x48\x03\x0f\ +\x3b\x1e\x83\x00\xc4\xdf\x80\xa8\x28\x98\xe0\xd8\x1b\xcb\x75\x9d\ +\x24\xb8\x08\x85\x13\x2b\x53\xa4\x7d\xea\xc6\x82\xb3\xce\x62\x3f\ +\x8f\xd0\x8a\x4d\x17\xc6\x66\x7c\x43\x2a\x7f\x4b\x2a\x13\xaf\xaa\ +\xaa\xec\xbb\x78\x97\x0f\xc1\x1e\xfd\xc9\xe2\x5f\x77\xa8\xce\x36\ +\x97\xd3\xd5\x88\x69\x35\x20\x08\xe7\xbd\x15\x09\x29\xdd\x3b\x02\ +\x00\x40\x72\xe5\xe5\xe4\xcf\x58\xbd\xfa\xba\xfb\x6e\xbf\xf3\xb6\ +\x35\x98\x63\x0b\x5c\x2e\x37\x73\xfc\x54\x45\x25\x32\x6e\xa2\xaa\ +\x2a\x38\x57\xb9\x33\x98\x34\x22\x48\x7b\x83\xb1\x09\x05\x88\xb2\ +\x90\x12\x37\x99\xdd\xbc\x33\xbe\xf1\xe9\x70\xd7\xae\x5d\xac\xa0\ +\xb5\x73\xe7\xce\x09\x67\x1f\xc4\x07\x32\x33\xb3\x36\xf8\x03\x81\ +\x57\x22\x91\x10\x4d\xfe\x84\x52\x39\x7f\x40\x8c\x42\x35\x8f\x7e\ +\xeb\x54\x90\xd0\xc2\xa1\x60\xcf\xf1\xe3\x27\xf6\x9f\x3c\x59\x7b\ +\x79\x55\xd5\xec\x5c\xcc\x71\x0a\xe5\x57\x97\x74\x3a\x9c\x40\xa2\ +\xc4\xac\x00\x7a\x4a\xa9\x29\x22\xb0\x1f\xa9\x20\x9d\xe1\xdd\xd3\ +\x84\x00\x4e\x9e\x3c\x49\xa3\x9f\x49\xd1\x1b\x56\xff\x74\xc1\x79\ +\x3d\xd9\x87\xf4\x6d\xb2\x87\x41\x98\x61\x79\x56\xb0\xb5\xe7\x00\ +\xcf\x01\x5f\x50\xcb\xca\xcc\xa4\xaf\x30\x9f\x53\x58\x54\x88\x50\ +\x59\x16\xc9\x1f\xde\xcb\xa6\x57\x9a\xf0\xfe\x5f\x16\xf4\x61\xdd\ +\x7f\xf9\xcb\x5f\xc8\x9b\x6f\xbe\x41\x26\x3a\x10\x80\xf3\x1b\x42\ +\x14\xb3\x0f\xe4\x6f\xd3\xf5\x58\xcf\x50\x9c\x6f\x81\x10\x46\xdc\ +\xc6\x09\x14\xd0\x88\x16\x0b\xc6\x82\xdd\x47\x8e\x1d\xdd\x8d\xdc\ +\x7b\x43\x7f\x5f\x9f\x2e\x5e\x14\x89\x5e\xd7\x59\x8f\x84\x0f\xae\ +\x99\x22\x82\x33\x67\xb4\xb2\x39\x1c\x0b\x61\x44\xdd\x62\x8c\xe8\ +\xef\x1f\x20\x4d\x8d\x4d\xec\x9e\x4c\x70\x8b\x3b\x1c\x74\xf4\x67\ +\x1e\xd5\x63\x5a\x1f\x77\xfe\x74\x2b\xac\x16\xc0\x94\x07\x48\x29\ +\x04\x1d\xaa\x0a\x34\x36\x35\x1d\xde\xbe\x7d\xfb\xee\xda\xba\xda\ +\x01\xec\x3b\xe7\xc4\x83\xf4\x04\x13\x03\x87\x6e\x7e\x95\xcc\x19\ +\x41\x3e\x9c\x26\x56\x9d\xdc\xbc\x65\x33\x39\x81\xac\x25\x16\xc5\ +\x9c\x16\x30\x84\xc1\x42\xd3\xd6\xd6\x16\x76\x3c\xdc\x86\xb7\x76\ +\x4c\x8a\xf9\x87\x33\x1b\x82\xf7\x7f\xbc\xab\xa3\xf3\x84\x9e\xd0\ +\xad\xcf\x02\x02\x52\xa5\x83\x53\x5a\x00\xf3\x9b\xd3\x41\x74\x34\ +\x88\xd5\x25\x87\x0e\x1d\x7e\x6b\xfb\xf6\xb7\xea\xf0\x62\x22\x0d\ +\xd7\xb8\x07\xac\x73\x31\x70\xe2\x45\x58\x78\x26\x88\x80\x91\xff\ +\x0a\x6a\x12\x34\xf4\x7b\x14\x61\x20\x4d\x27\xff\xf5\xaf\xaf\xb0\ +\xf9\x1b\x5e\x3c\x73\xe4\x7e\xfa\xd3\x9f\xb2\xb0\x11\x6f\x4d\x1b\ +\x36\x31\xcd\xcd\x4d\xa4\xf9\x54\xd3\x84\x8f\x7e\x8f\xdb\xd3\xe1\ +\x72\xba\xab\x35\x2d\xd6\x6d\x33\xfa\xf5\xd4\x16\xc0\x7e\x2a\x80\ +\x11\x88\xfa\x3a\x3b\xbb\x8e\xed\xdd\xbb\x77\x7b\xf5\xc1\x83\xbd\ +\x81\x60\x20\x41\x89\xa7\xd0\x00\xd3\x54\x70\x26\x4c\x07\x4c\xb0\ +\x78\x1a\x1a\x79\xe6\x99\x67\x68\xc1\x8a\x91\xfd\xfc\xf3\x2f\x90\ +\xef\x7f\xef\xfb\x4c\x08\xff\xf1\x1f\x3f\x60\x31\xfd\xd3\x4f\x3f\ +\x4d\x9e\x7d\xee\x39\x52\x53\x5b\x33\x1c\x52\x98\x65\xac\xab\xab\ +\x47\xdd\xa3\x7b\x62\x1d\x3f\xd5\x11\xc8\xce\xce\x39\xd8\xd3\xdb\ +\x43\x47\xbf\x5f\xbc\x90\x85\x41\xa3\x48\x95\x03\x48\xf5\xde\x40\ +\x29\x55\x9f\x20\x8c\x50\x5d\x8b\xe9\x71\x98\x9c\x19\xd3\xa6\x55\ +\x94\xe7\xe5\xe7\xa9\xb2\x24\xb3\x2f\x11\xe6\x00\xd2\x4e\x12\x98\ +\xd2\x8e\xa1\x30\xff\xb5\xb5\xb5\x48\xff\x7a\x49\x09\xb2\x78\x12\ +\xaf\x5b\x1c\xc6\x5a\x83\x03\x07\x0e\xb0\x29\x01\x75\x05\x9a\xdd\ +\x43\x96\xf0\x1e\x96\xc3\xb0\x6b\x21\x14\xe1\xfe\xfe\xda\xab\x64\ +\xd3\xa6\x4d\x13\x2a\x80\x82\xfc\xc2\x1a\x30\xb9\xc1\xef\xf7\xa1\ +\xb8\x19\x0f\x1a\x1c\xbd\x98\xe9\x58\x33\x8b\xc0\x46\x00\xe2\xdc\ +\x08\xcc\xf1\xf1\x58\x54\x8f\x41\x0b\x8a\x37\xcb\x3b\x0f\xf9\xf6\ +\x1c\x88\x41\x22\x42\x00\xc9\x08\x9f\xb2\x22\x80\x20\x69\xee\x9f\ +\x25\x7b\x2e\xbd\xf4\x52\x72\xf9\xe5\x97\x91\x79\xf3\xe6\x11\xd4\ +\x3e\x40\x7a\x88\xcd\xf9\xa8\x58\xb2\xcc\x22\xf6\x31\xd0\xd4\x30\ +\x4b\x37\xdb\x35\x1a\x89\xbd\xf0\xc2\xf3\x10\x50\xf5\x84\xb1\x8f\ +\x98\xbf\xd7\xeb\xf1\x6e\x40\xb9\x1d\xbb\xe9\xb4\xa1\xc5\x4e\x5a\ +\x1a\xcf\x5f\xb3\x11\x80\x7d\x48\xc8\x9f\x3d\xa7\xc1\xfc\x87\x49\ +\x42\xca\xc9\xcf\xcf\x9b\x33\xbd\x72\xba\x53\x92\x25\xcb\xd7\x87\ +\x78\x86\x85\x98\xca\x22\x60\x84\x16\x22\x5f\x3f\xad\xa2\x82\x15\ +\xac\xce\x82\x18\x50\xa7\x60\x42\x58\xb4\x68\x11\xb9\xea\xca\xab\ +\xc8\xed\x77\xdc\x4e\xae\xbd\x76\x15\x81\xb9\x1d\xe6\xfc\xdf\x4c\ +\xfe\xf0\xcc\x1f\xd8\xf4\x32\x11\x0d\x77\x32\x52\x5e\x5e\xb1\x07\ +\x8e\xe6\x66\x54\xfc\xda\xa8\xd1\x49\x4a\x3c\x87\xc5\x0f\xb0\x7f\ +\x6d\x1c\x60\x75\x06\x25\xbe\x66\x34\x14\xf2\x05\x9a\xaa\xab\x0f\ +\xae\xc3\xfa\xfe\x79\x65\x65\xe5\x17\xcf\x9f\x3f\x1f\x2c\xeb\x9c\ +\x5c\x62\x5a\x2d\xa4\x13\x05\xff\x8b\xf3\x24\x91\xe9\x85\x47\x53\ +\x04\xa2\x32\x08\x80\xe8\xf3\x20\x80\xf9\x88\xe5\x23\x2c\x65\x8c\ +\xca\xe0\xb0\x93\x55\x58\x8a\xcd\xfc\x89\xe3\x98\x3a\x92\x35\xfc\ +\x7e\x36\x8d\x94\x97\x97\x41\x7c\x4e\xe2\x0f\xf8\x59\xd4\xc1\xc2\ +\xcf\x04\x61\x99\xd1\x70\x04\xe3\x2b\x2e\xa2\x10\x38\x60\xec\xb3\ +\x04\x10\x0c\x85\x50\x37\x29\x3b\xe5\xf7\x05\xde\x62\xe5\x5e\x92\ +\x08\x25\x9b\xf7\x53\x13\x2f\xa0\xa6\x21\x5e\x32\xf5\x80\x28\x2c\ +\x44\xb4\xc8\x40\x57\x77\xcf\xe1\x5d\xbb\xf6\xfc\xb5\x12\xbb\x38\ +\x90\x73\xaf\xb4\xce\x8d\x06\x21\xa8\x64\x6a\x8b\xc0\x1a\x5a\xd1\ +\xda\x04\xc3\x48\x1a\x56\xe0\x90\x57\x5e\x79\x99\xad\x5c\xc6\xe8\ +\x4c\xb9\xdf\xe1\xde\x7b\xef\x45\xd5\x72\x39\x2b\x3b\x83\x7c\x26\ +\x1a\x4d\x07\xd1\x9a\xce\xfc\x07\x9f\x6f\x10\x42\x60\xb5\x05\x82\ +\x4c\x2c\x09\x53\x21\x42\xa0\xbd\xbd\xbd\x64\xe7\xae\xdd\xdd\x4d\ +\x8d\xcd\x9b\x07\x07\xfa\x4f\xc2\xf4\x0f\x08\xd2\xc5\xa8\xb7\xc9\ +\x04\x9a\xf7\x06\xda\x5b\x01\x93\x08\x74\xb8\x83\x5a\x24\x12\xe8\ +\xec\x68\x6b\xdb\xb1\x65\xcb\xd6\x99\x05\x85\x05\x77\x5e\xbd\x62\ +\x05\xa6\x84\x7c\xc3\x57\xd9\xf8\x37\x08\xc1\x46\x04\x67\x36\x18\ +\x59\x5b\xb6\x6c\x21\x3f\xfd\xc9\x8f\xc9\xd1\xa3\x47\xe9\x79\xaa\ +\xf5\x7a\x04\x16\x93\x5c\x7c\xf1\x25\xcc\x1a\xb0\xbc\x09\x8f\x9e\ +\x34\x8d\x42\x23\x1a\xad\x8f\x68\x31\x43\x91\x29\xce\xfa\x7f\xbc\ +\xfe\x0f\xdf\xde\xbd\xfb\x77\x06\xfc\xfe\x03\x51\x2d\xd2\x6d\x75\ +\xf4\x04\x52\x93\x2f\xa0\xd8\x4d\x35\x36\x3e\x41\x22\x1a\x23\xa1\ +\x70\x08\xf5\xc2\x50\x38\x0b\x8e\xd3\x0c\xa8\xdb\x81\x96\xc4\xdb\ +\xb6\x2c\x1e\x7d\x37\xa5\x8d\x99\x90\xeb\x6a\x6a\xc8\x8f\x7e\xfc\ +\x23\x82\x01\x41\xa7\x8e\x64\x0e\x27\xb3\x2c\x95\x95\x95\xcc\x99\ +\xc4\x66\x17\x51\xf8\x92\xc4\xef\x61\x20\x09\x71\x5f\xf8\x87\x7b\ +\xf6\xec\x09\xbd\xf1\xe6\x1b\xfb\x0f\xec\x3f\xb0\x71\x60\xb0\xaf\ +\x16\x97\x02\x49\x9c\xbe\x68\x0a\x21\x08\xf2\x0d\x4d\x19\xdd\xaa\ +\x66\xe3\xb1\x0e\x71\xea\xa1\x10\x64\xa0\xc8\x4a\x41\xa6\x37\xa3\ +\xbc\xa8\xa8\x50\x85\x09\x15\xc4\xdb\xbd\xff\xee\xcc\x17\x01\x5b\ +\x8d\xfc\x67\xe4\x09\x9e\x7b\xee\xcf\x30\xd3\x7d\x66\xe2\xd9\xa8\ +\x2f\x29\x29\x26\xab\x56\xae\x64\x7b\x1c\xae\x58\xbe\x9c\x4d\x2f\ +\xfc\xf5\x2e\x0c\x9a\x46\x7b\x8d\x9b\x7e\x8d\x8f\x7e\x9d\xf9\x04\ +\x07\x0f\x56\x47\x5f\x7f\xfd\x8d\xe3\x48\xc2\x6d\xe8\xee\xee\x3c\ +\x06\xab\xd1\xcf\x09\xb7\x40\x88\xc2\x9a\x01\x34\x01\x02\xb0\x6f\ +\x92\x8d\x20\x58\x9e\x38\x1a\xd5\x42\x91\x50\x38\x0a\xd3\x5e\x84\ +\xa2\x44\x21\x16\x75\xa8\xb2\xac\xf0\x82\xa2\xf8\xb6\xb0\x02\x42\ +\xdd\xdc\xd3\x38\x53\x45\xc0\xea\x07\xdb\xb6\x6d\x25\xbf\xfc\xaf\ +\xff\x62\x8e\x9f\xb1\x96\x80\x7b\x81\x8d\xae\x95\x6c\xad\xe3\xfd\ +\xf7\x3f\x00\xdc\x8f\x95\x45\x17\xd1\x10\xce\x42\xbe\x26\x4c\x3e\ +\xc0\xae\xb3\xdf\x5d\x57\x5b\xa3\xbd\xf9\xc6\xba\x7a\xac\x96\xda\ +\xd4\xd2\xd2\xca\x32\x7e\xa6\x90\x2f\x9a\xcc\xfb\x4f\x41\x3e\x31\ +\xf6\x23\x11\x80\x94\x4e\x14\x88\x0c\x22\x58\xd6\xe5\x0f\x85\x22\ +\x1a\x2e\x14\x7b\x32\x3c\x79\x70\x0c\x15\x98\x38\xbe\xce\xdc\xe4\ +\x57\x72\x51\x48\x36\x56\x61\x8a\x83\x91\x7d\xec\xd8\x31\xf2\xcb\ +\x5f\xfe\x92\x6c\xde\xbc\x59\x6c\x77\x03\xca\xca\x4a\xc9\xfb\xde\ +\x77\x03\xdd\xdb\x08\xa7\xef\xc3\x2c\xcf\xc0\x56\x54\x4b\x32\xab\ +\x9f\xc0\x74\x1a\x46\x7a\x8c\x39\x80\x98\xf7\x05\xf9\x98\x46\xea\ +\xeb\xeb\xb5\x75\xeb\xd6\x37\xbf\xf9\xe6\xba\xcd\x8d\x4d\x0d\x7b\ +\x35\x2d\xda\xc9\x43\x3e\x2d\xe5\xe8\x17\x88\x0b\xd8\x4c\x01\x63\ +\x9a\x0a\x44\x35\x2d\x84\x8c\x59\x00\xab\x88\xe2\xe0\xaf\x10\x22\ +\xc8\xc5\xe6\x12\x2a\x02\x6b\x3a\x18\xc7\xe2\x37\xd9\x4c\x13\x53\ +\x78\xde\xc7\x02\x56\x5a\xf2\x05\x9e\x67\x69\xdf\xa1\x70\x72\xee\ +\xbc\xb9\x74\xa9\x3b\xc8\xff\x18\xd6\x06\x5e\x4c\xd7\x05\xb2\xf9\ +\x5f\x54\x51\x75\xa3\x99\x67\x7d\x0c\xd0\x79\x24\x40\x7d\x88\xba\ +\xfa\x3a\x0d\x5b\xe8\x5a\xd6\xaf\xdb\xb0\xad\xae\xae\x6e\x77\x34\ +\x16\x69\xc5\xdf\xa4\xe4\x47\x6d\xc8\xb7\x35\xfd\xb6\x53\x80\xbd\ +\x25\xb0\x22\x81\x06\x25\x87\xb1\x13\xc8\x07\x9f\x00\xa5\x00\xbd\ +\x00\x59\xc2\x1c\x64\xd2\x14\x34\x2e\x3d\x21\x42\x2e\x0a\x6e\x14\ +\xce\x3c\x4b\xe0\xf7\xfb\xc9\xdf\xff\xfe\x77\xf2\xab\x5f\xfd\x8a\ +\xd4\xd4\xd4\x30\x41\x20\x2b\xca\xd6\x00\x7e\x06\x8f\xbf\xb9\x07\ +\x69\x63\x3c\x0c\xc3\x40\x7c\x02\x30\x9a\x7c\x31\xfa\xc5\x31\x23\ +\x9f\xa6\xa6\xb5\x0d\x1b\x37\xb6\x6c\xdc\xb0\x69\x7b\x6d\x6d\xcd\ +\x4e\xac\xf0\x69\x01\xf9\x01\x61\xfa\xed\xc8\xb7\x3a\x7e\xe6\x7e\ +\x14\x02\xb0\x17\x05\xd5\x00\x9c\x96\x10\x6e\xce\x60\x30\x10\x42\ +\x68\xab\xe5\xba\x5c\x4e\x6a\x09\x54\x87\xaa\x0a\x11\xb0\xa4\x86\ +\xe1\xd8\x5c\x8d\x4e\x4c\x69\x8b\xc0\x62\xf7\xf5\x1b\xd6\x63\x97\ +\xf2\x2f\xc8\xbe\xbd\xfb\x18\x79\xb0\x76\x64\x25\x9c\xbc\x4f\x7d\ +\xea\x53\xe4\xfa\xd5\xd7\xb3\xf5\x88\x48\xe6\x18\x46\xbd\x66\x20\ +\x9e\x2e\x83\x13\xa4\xeb\x1a\x8f\xf9\xc3\x61\x5a\x7b\xd0\xd6\xaf\ +\xdf\xd0\xbc\x69\xd3\xe6\xed\x28\x3e\xed\x0a\x87\x83\xcd\x98\x32\ +\x7c\xb6\x23\x5f\x40\xb7\x33\xfd\x23\x16\x80\xcd\xe8\x37\x4d\x07\ +\xf1\x18\x5a\x70\xd0\xe7\x1b\xc0\xfa\xb4\x28\x8e\xb3\x40\x5e\x2e\ +\x72\xee\x0e\xb7\xc7\xc3\x6e\x0a\x17\x02\x13\x81\x38\xa6\xe0\xc7\ +\x00\x27\x7c\xca\x09\x01\x02\x67\x55\xc3\x9f\xfc\xf8\x27\x64\xfb\ +\xb6\xed\x6c\xc4\x22\x23\xca\x96\x97\x7f\xe2\x13\x9f\x64\x9b\x5c\ +\xbc\x5e\x8b\x87\x2f\x1c\xbd\x98\xc6\x01\x11\x88\xc5\xa4\x4c\x54\ +\x88\xf1\xa2\x9b\x36\x6e\x6a\x00\xf9\x5b\xeb\xeb\xeb\x76\x61\xe4\ +\x9f\x82\x78\x7c\x96\x50\x0f\x30\x93\x6f\x63\xf6\x29\x88\xbd\x0f\ +\x60\x0f\x69\x38\x96\x01\x22\xd0\xa0\xf2\xa0\xdf\xe7\xef\x1b\x1c\ +\x18\xf4\xfb\x7c\xfe\x0c\xdc\xa8\x7c\x8c\x0a\xa7\x97\x66\xd7\x8c\ +\xf1\x2e\xed\xe3\x82\x7c\xd1\x53\x50\xc2\xa7\x8e\x45\x00\x19\xac\ +\x3a\xf8\xb3\x9f\xfd\x8c\xbc\xfe\xfa\xeb\xac\x4a\x58\x54\x54\x44\ +\x97\xb7\xb3\x47\xda\x2c\x59\xb2\x84\xa0\x3e\x4f\x9d\x3c\x13\xf9\ +\x46\xc2\x0d\xc4\x73\xf2\x7b\x7a\x7a\xc9\x5b\x6f\x6d\x0f\x6f\xde\ +\xbc\xf5\xc4\xf6\x6d\x6f\x6d\x41\x0d\x61\x1f\xd2\xbc\xa7\x20\x22\ +\xbf\x69\xe4\x47\x6d\x96\x79\x09\xd8\x90\x6f\x15\xc0\xd8\xfd\x01\ +\xc9\x3c\x1d\xa0\x05\xd0\xfa\xb0\x8c\x6c\x00\xff\x97\x1d\x0e\xb5\ +\xc4\xe3\x71\xbb\xb3\x73\x72\x04\xf1\xec\xbb\x71\x9c\x9b\xc9\x17\ +\xc7\xac\x59\x84\x30\xf9\x62\x00\x69\x74\xfb\x19\xbc\xfe\xa7\x59\ +\xbc\x8f\x0d\x21\x2c\xb4\x83\x97\x8f\x22\xd2\xd9\xac\xb0\x24\x96\ +\x89\x1b\x1c\xbd\x18\x8d\xef\x39\xf1\x1c\x4c\x20\xf8\x6e\xcb\xa9\ +\x53\x88\x20\xb6\xf8\xb7\x6c\xd9\x56\xbd\x67\xf7\x9e\x2d\x6d\x1d\ +\xad\xfb\x63\xb1\x48\x1b\x9f\xf3\x63\xc9\xc8\xb7\x49\xfb\x9a\x88\ +\x17\x18\x67\x01\x70\xa4\xa1\x07\xe4\xe9\x50\x7c\x20\x14\x8a\xf6\ +\xc3\x12\xf4\x74\x76\x75\xc5\xb0\x58\xb2\x18\x8e\x11\x42\xe1\x2c\ +\xa2\xe2\x86\x25\x84\x10\xb8\x28\x38\x0c\x42\x88\x0b\x8b\x61\xcc\ +\x98\x4d\x96\x18\x8c\x7f\x8b\x91\x9c\x9f\x97\x87\x1d\x41\x17\xe2\ +\xe1\x96\xf7\xb1\x50\x0f\xce\x1e\xf5\xfe\x19\xe9\x46\xe2\x8d\xf1\ +\x7d\x4c\x84\x7b\x8c\xfc\xd0\xff\xce\xf7\x64\xe3\x86\x8d\x3d\x9b\ +\x37\x6d\xda\x75\xf8\xf0\xe1\xad\xd8\x31\x7d\x38\xc6\x42\x3d\x12\ +\x4c\x93\xe8\x89\xda\x38\x7d\x36\xa3\xdf\x24\x80\xf1\x14\x41\x0a\ +\x51\xc4\x71\x43\x42\x9a\x06\x11\xf4\x0f\x76\xb7\xb6\x77\xf8\x31\ +\x27\x78\xf1\x51\x2e\x4d\x19\xd2\x7a\x3c\xdf\x92\xce\x49\x26\xe8\ +\x4d\x4b\xcb\x4c\xe7\x7c\xa1\xa5\x41\x3c\xe3\x2a\x08\xcb\xcb\x98\ +\x8d\x0f\xb9\xc8\x42\x12\xe7\xac\xb3\xcf\x66\xfb\x10\xe7\xcc\x99\ +\xc3\x0a\x3a\xf8\x9c\x11\x0b\xaf\xd7\xe2\xec\x19\xa7\x00\x36\x25\ +\x00\x74\x87\xf4\xdb\x6f\xbf\x15\x43\x6e\xa7\x69\xc3\x86\x4d\x9b\ +\x1a\xea\xea\x77\x0c\x06\x06\x8e\x69\x3a\x4b\xf2\x84\x05\xd9\xa3\ +\x74\xfa\xec\xc9\x17\x02\x18\x17\x11\xd8\x23\x81\x94\x71\x34\x1c\ +\x0d\xf7\x45\x83\xe1\xce\xd6\xb6\x36\x18\x83\xee\x18\x76\x1e\xe7\ +\xa1\xf4\x89\x6a\x6b\x86\xe4\xe0\xbb\x6e\xf8\xb6\x33\xd6\x0f\x11\ +\xac\xd3\x73\x2e\x02\xfe\x39\x3e\x13\x8b\x4f\x8d\xe0\xdf\x49\xba\ +\x6f\x31\xb9\x46\xac\x44\x03\xfc\x18\xd7\xf8\xdf\xe6\x4e\x1d\x3b\ +\x86\x6e\xb9\xb9\x4f\x0c\x15\x6a\x44\xf1\x26\x06\x9c\x3e\x8e\x31\ +\xe8\xdc\x02\x0c\x0c\x0e\x92\x43\x87\x0e\xc5\xb7\x6c\xde\xd2\x0f\ +\x93\xbf\x7f\xd7\xce\xdd\x1b\xda\x3b\xda\xf7\x04\xc3\x81\x06\x08\ +\x6c\x30\x45\x98\xa7\x25\x39\xd6\xc7\x48\xbe\x10\xc0\x64\x8a\x00\ +\xa0\x0f\xae\xf4\x45\xa2\x5a\x4f\x77\x4f\x4f\x07\x16\x97\x0e\xc0\ +\x47\x50\xb1\x2c\xcb\x8b\x91\xea\xa0\xab\x8b\x58\xa5\x90\x59\x04\ +\xc3\xa8\xe7\xa4\x08\x62\x71\xac\x73\x41\x70\x12\x8c\x7b\x15\x87\ +\x7a\x42\xd8\xb1\x08\xc7\x04\xc1\x56\xe8\x80\x91\x7c\x9e\xb0\x61\ +\xb1\xbb\xa6\x1b\x53\xb4\xe6\xd1\x2e\x88\x67\x44\x8b\x6b\x9c\x78\ +\x56\xc3\x6f\x69\x69\x89\x6f\xdd\xba\x35\xb0\x6d\xeb\xb6\xfa\xb7\ +\xde\xda\xb1\x1d\x4b\xec\xb7\xfb\xfc\x83\x47\xb1\x2b\x8a\xd6\xf4\ +\x83\xa9\x1c\x3c\x9b\x39\xdf\x96\x7c\x5b\x01\x4c\xa2\x08\x12\xc2\ +\x99\xd6\x43\x5a\x4c\xef\x0f\xf8\x7c\x9d\x2d\xad\x6d\x1d\x10\x40\ +\x18\x62\x70\xe1\x81\x06\xd8\x81\xed\xc2\xcc\xa0\xb2\xa2\x01\x44\ +\x21\x08\x4a\x08\x22\x75\x61\x01\x00\x9d\x1d\x1b\x49\x06\x49\x4c\ +\x34\x82\x44\xf4\xa7\xc9\xb5\x92\x0f\x01\x71\xa7\x8c\x11\x6c\x2a\ +\xd0\xc4\x87\xbc\x75\x40\xc4\xed\x1a\xce\x11\xcb\xf3\x63\x23\xe9\ +\x82\xf8\x00\xa2\x84\xee\xae\xae\x04\xb6\x86\x85\xdf\x78\xe3\xcd\ +\xf6\xdd\xbb\xf7\xec\xaf\x3e\x70\x70\x5b\x7b\x7b\xeb\x7e\x44\x45\ +\x8d\x7a\x3c\xd6\x2b\x36\x71\xa4\xce\xed\xf3\x5e\x1f\x47\xf2\x85\ +\x00\x26\x58\x04\x09\x4b\x2f\xfc\xc3\x28\xe6\x3c\x7f\x2c\x1a\xeb\ +\xee\xed\xe9\x6d\xeb\x68\x87\x39\x18\x1c\x88\xf5\xf5\xf6\xa9\xe1\ +\x50\xc8\x09\x62\x1d\x34\x0a\xe4\xe9\xd5\xd3\x53\x41\xc2\x44\xa4\ +\xb0\x00\x02\x62\xbf\x42\x62\xa8\xd6\xce\xfb\x38\xcf\xc6\x59\x81\ +\xeb\xc6\x8d\x2e\x00\x27\x1d\xe0\x29\x5a\x9e\xae\x15\x02\x60\xbd\ +\x29\xa4\x03\xb1\xcc\xd4\x77\x76\x74\x24\x8e\x1e\x39\x12\xde\xb6\ +\xfd\xad\x2e\x8c\xfa\x23\xd5\x07\xaa\xdf\x6e\x40\x6c\x8f\x15\x40\ +\x27\xa2\xb1\x68\x1b\xe4\x2a\x42\xbc\xe4\xd0\x92\x90\x1f\xb7\x23\ +\x7f\x24\x50\xc7\xd3\x51\x4e\x12\x09\xc4\x53\xbe\xd9\x4c\xec\x40\ +\x8e\x47\x63\xe1\x28\x46\x82\x0f\x37\x85\x5a\x02\xd4\x3f\x1a\x17\ +\x60\x55\xee\x62\x3c\x10\x72\x0e\xd6\xbd\x15\x4d\x9f\x5e\xe9\x2d\ +\x2d\x2b\x93\x91\x52\x66\x25\x54\x55\x55\x99\x20\x74\x5d\x26\x6c\ +\x3b\x9a\x8c\x5e\x96\x58\x91\x45\xe2\xe7\x68\xa7\x9f\x61\x24\x0d\ +\x39\x82\xec\xff\xb4\x4f\xe3\xf8\x25\x58\x4f\x3b\xe1\x7c\x26\x84\ +\x83\xca\x45\x85\xf3\xa1\x63\x01\xd4\xc4\xd9\x0a\x63\x3c\x52\x27\ +\x8e\x1d\x41\xe1\xc6\xc6\xa6\xde\xda\xda\xba\xc6\xba\xda\xfa\xe3\ +\xad\x6d\xad\x27\xe1\x17\xb4\x6a\x7a\xb4\x0f\xdf\xe5\xe6\x9e\x93\ +\x6a\x86\xfd\xca\x1e\xdd\xc6\xdb\x1f\x1f\xd3\x3d\xd6\x1c\x81\x09\ +\xb2\x01\x8a\x01\xaa\xe8\x25\x97\xa2\x38\x32\xe1\x5c\x15\x39\x1d\ +\xce\x4a\x3c\x97\x60\xee\xec\x39\xb3\x17\x16\x17\x17\xcd\x2a\x2b\ +\xc3\x13\x8b\xca\xca\x72\xca\x2b\x2a\x54\x54\xd4\x24\x94\x9b\x89\ +\xdb\xe5\x62\x64\xf3\xed\xde\x62\x6f\x22\xbb\x46\x00\xb3\x00\x70\ +\x6e\x63\xab\xc4\x82\x0c\x34\x4e\x38\x3a\x40\x38\xa0\x09\xe1\x8b\ +\xb0\xd8\x1e\xa4\xb3\xa2\x50\x7b\x5b\xbb\x86\x79\xde\x0f\xf1\xf6\ +\xe0\x49\xa8\xcd\x4d\x4d\xcd\x35\x98\xde\xea\x50\x2d\x6f\x83\x85\ +\xe8\xa1\xd3\x1e\xf8\x89\x1a\x48\xd5\x52\x40\x4f\x45\xbe\x5d\xa8\ +\x37\x2a\xb2\x26\x55\x04\xa2\x57\x78\xaf\x9a\xc4\x00\xc8\x4e\x9a\ +\x27\x50\x15\xb5\xc0\xe5\x74\x56\x64\xe5\xe4\xce\x2c\x2b\x29\x99\ +\x9b\x9b\x97\x3b\xab\xb4\xac\xb4\xa4\xaa\x6a\x56\xc1\x8c\xe9\xd3\ +\xbd\xd8\xa4\xaa\xd0\x90\x2c\xc3\xeb\x65\x0b\x2e\x1c\xdc\x32\x70\ +\x51\x08\x18\x05\x60\x22\xdf\x5e\x00\xfc\x9c\x13\xaf\xf1\x1a\x3d\ +\xcd\x00\xfa\x7c\x3e\xd2\xd7\xdb\x1b\xaf\x6f\x68\x0c\xc2\x6c\x0d\ +\x80\xfc\x8e\xfe\xde\xfe\x53\xed\xed\x1d\x8d\xbd\x7d\x3d\xa7\xa2\ +\xd1\x58\x07\xa6\xb8\x5e\x10\x1f\x04\x37\x31\x23\xa1\x69\x44\xa0\ +\x8f\x6c\xd4\x0b\xf2\x47\x4d\xd4\x24\x89\x80\x98\x04\x60\x6b\x11\ +\x00\x2a\x84\x0c\x45\x76\xe4\x82\xdc\x22\x6c\xdc\xc0\x46\x94\xfc\ +\x19\x58\x8a\x3e\x1d\xcf\x2c\x2c\xc7\x0a\x9b\x22\x08\x22\xbf\xac\ +\xb4\xcc\x8b\x6b\x2a\xca\xcf\x92\xd3\xe9\x62\x15\x39\xc4\x95\xec\ +\x79\x86\x2a\x00\x31\x11\x85\x0b\xc3\xa6\x89\x30\x50\x67\xb5\x79\ +\x02\x12\x49\x2c\x1a\x21\xb1\x60\x88\xf8\x41\x3c\x16\x6b\x02\x01\ +\x1d\xf3\x7b\xa0\xb5\xb5\xad\x1f\xce\x5c\x2f\x7c\xd8\xf6\xfe\xde\ +\xbe\xd6\xde\xbe\xbe\x96\x60\xd0\xdf\x8e\xd1\xde\x07\x9f\x63\x10\ +\xbf\x67\x68\xc4\xc7\x8d\xc4\xdb\xf4\x66\xc4\x87\x9b\xdf\x9f\x42\ +\x02\xb0\x0a\x2c\xa5\x25\x10\x50\x78\x2f\x44\x20\xe0\xc4\xfc\xee\ +\x92\x65\xc5\x2b\x2b\x6a\xae\xaa\x3a\x0a\xbc\x1e\x4f\x09\x32\x89\ +\xa5\xa8\x35\x57\x60\x77\x52\x31\xa6\x84\x02\x58\x84\xdc\xe2\xa2\ +\xa2\x1c\x9c\xc3\x28\x78\xc1\xbd\x2a\xd3\x58\x1d\x3f\x37\xf4\xe0\ +\x89\xd3\x62\xc0\x75\x40\x25\xd1\x98\xc6\x08\x17\x5e\x3d\x25\x3d\ +\x7a\xda\xa1\xd3\xd0\x63\x91\x43\x14\x29\xcc\x60\xf7\x40\xbf\xbf\ +\xad\xad\x7d\x00\x29\x60\xb4\xfe\x2e\xdf\xc0\x40\xe7\x20\xa2\x98\ +\x60\x28\xd8\x85\x50\xae\x0f\xa2\xf1\xa1\x04\x1e\x84\x88\xc4\x1c\ +\x2e\xc8\x67\x48\x6e\x05\xec\x89\xb7\x2b\xed\x4e\x35\x01\xd8\x8b\ +\x40\x40\x4e\x2d\x04\x01\xa3\x55\x00\xa1\x0e\x08\xc2\x03\x73\x9f\ +\x8d\x70\x31\x0f\xd3\x44\x1e\x62\x47\x54\x1b\x33\x0b\xb1\x26\xb1\ +\xc8\x93\xe1\xcd\x43\xbd\x21\x2b\x0b\x1e\x23\x36\x72\xe0\x14\xb6\ +\x23\xd3\xeb\xce\xf4\x7a\x5d\x68\x8e\x78\x5c\xa3\x55\x49\x19\xbc\ +\x4b\x81\x80\x3f\xe1\x76\xb9\xe3\x71\x90\x06\xe2\x63\x58\xcb\x10\ +\xc1\x8a\xdb\xb0\xdf\x1f\x00\x7c\x21\x14\xb1\x42\xc8\x53\xf8\xb0\ +\x11\xa6\x37\x12\x8e\xf4\xa3\xac\xd5\x17\x0e\x06\xfb\x51\xe2\xec\ +\xd7\xe3\xda\x20\x48\x0f\xe0\x67\xc3\xd4\x97\xb5\x9a\x6c\xeb\xb9\ +\x8d\x89\xb7\x21\x9e\x43\xb4\xc4\xf8\x91\x33\xf9\x22\x20\x56\x6b\ +\x60\x2f\x06\x93\xef\xa0\xd2\xe4\x11\x05\xb4\xe4\x56\x91\x55\x86\ +\x20\xb2\xa9\x23\xa9\xe0\xd8\xe9\x50\x3d\x4e\xa7\xdb\xab\x38\x14\ +\x0f\x3d\x87\x4f\xe1\x81\x70\xdc\x98\xcd\x5d\x10\x8f\x8a\x91\x2a\ +\xc3\x54\x27\x14\x49\xd1\x71\x2d\x0a\x87\x2f\x8c\x51\x1f\xa2\x2b\ +\x9b\xf4\x98\x16\x8a\x01\x88\x4c\xc2\x98\x0a\x82\x10\x8d\x9f\x7e\ +\x86\x70\x30\xc0\x5e\xda\x41\x12\x1a\x7e\xde\x14\x96\x89\x63\x7b\ +\x11\xd8\x3f\xbf\xc7\xd0\x13\x1b\xf2\xa7\xba\x00\xec\xad\x81\x8d\ +\x18\x14\xfb\x5e\x1c\x43\x10\xf4\x98\x8a\x02\x96\x42\x71\x48\xb2\ +\xe4\x96\x65\x2a\x14\xd9\x29\x11\x2e\x18\x09\xdf\x4f\xe0\xfb\x12\ +\x2f\x23\x80\x61\x30\xa0\xc1\xd3\x8b\x51\x6b\x00\x93\x10\x4b\xe0\ +\x98\x50\x48\x44\x07\xd9\x9c\x0c\x2b\x49\xa9\x21\x88\x4e\x4e\xb8\ +\xfd\x88\xb7\x21\xfe\x0c\x13\x80\xbd\x35\x10\x22\xb0\xb7\x0c\xd6\ +\x63\x2b\x24\x73\x6f\x02\x31\xf6\x36\xc9\x2b\x13\x86\x29\x00\x71\ +\x6c\x4f\xfa\xd8\x47\xfd\xd4\x17\x80\xbd\x35\x60\x4d\x1e\xae\x20\ +\x46\x4b\xbe\x80\x55\x98\xe6\x9b\x6e\x2b\x00\xde\xdb\x20\x31\x0c\ +\xe2\x89\xdd\xa8\x7f\xd7\x08\x40\x10\x6f\x1f\x36\xda\x88\x41\xb2\ +\x23\xde\x7a\x6c\xb5\x3e\x36\x29\x6c\xf3\x71\xdc\x46\x08\x96\x63\ +\x73\x9f\x1a\x56\x01\x4e\x0a\x01\x53\x5d\x08\x36\xd3\x44\xd2\x6b\ +\x36\xa6\x7f\x44\x16\xc0\x3a\x3a\xed\xc5\x60\x63\xde\xf9\x88\xb7\ +\x27\xfe\x5d\x2d\x00\x7b\x21\x88\xde\x1e\xf6\xc4\xdb\x9a\x7f\xfb\ +\x69\x80\xd8\x88\xc0\x1e\x93\x4f\xbc\xbd\x00\xce\x2c\x21\x08\x22\ +\x53\x59\x0a\xbb\x51\x3f\x52\x01\xd8\x59\x83\xd4\x23\xdb\x4a\xb4\ +\x0d\xf1\x93\x8a\xff\x0f\x67\x30\x8f\xef\x08\x93\x63\x6b\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x02\xa9\xc6\ +\x00\ +\x00\x01\x00\x09\x00\x30\x30\x00\x00\x01\x00\x20\x00\xa8\x25\x00\ +\x00\x96\x00\x00\x00\x16\x16\x00\x00\x01\x00\x20\x00\x10\x08\x00\ +\x00\x3e\x26\x00\x00\x10\x10\x00\x00\x01\x00\x20\x00\x68\x04\x00\ +\x00\x4e\x2e\x00\x00\x60\x60\x00\x00\x01\x00\x20\x00\xa8\x94\x00\ +\x00\xb6\x32\x00\x00\x38\x38\x00\x00\x01\x00\x20\x00\xe8\x32\x00\ +\x00\x5e\xc7\x00\x00\x20\x20\x00\x00\x01\x00\x20\x00\xa8\x10\x00\ +\x00\x46\xfa\x00\x00\x80\x80\x00\x00\x01\x00\x20\x00\x28\x08\x01\ +\x00\xee\x0a\x01\x00\x40\x40\x00\x00\x01\x00\x20\x00\x28\x42\x00\ +\x00\x16\x13\x02\x00\x48\x48\x00\x00\x01\x00\x20\x00\x88\x54\x00\ +\x00\x3e\x55\x02\x00\x28\x00\x00\x00\x30\x00\x00\x00\x60\x00\x00\ +\x00\x01\x00\x20\x00\x00\x00\x00\x00\x00\x24\x00\x00\x13\x0b\x00\ +\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x0a\x00\x00\x00\x0c\x00\x00\x00\ +\x10\x00\x00\x00\x12\x00\x00\x00\x14\x00\x00\x00\x16\x00\x00\x00\ +\x18\x00\x00\x00\x18\x00\x00\x00\x16\x00\x00\x00\x15\x00\x00\x00\ +\x14\x00\x00\x00\x12\x00\x00\x00\x10\x00\x00\x00\x0c\x00\x00\x00\ +\x09\x00\x00\x00\x06\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x00\x00\x00\x0f\x00\x00\x00\x14\x00\x00\x00\x1a\x00\x00\x00\ +\x1f\x01\x00\x01\x25\x04\x03\x03\x2a\x05\x04\x04\x2e\x05\x04\x04\ +\x2f\x02\x01\x01\x2d\x00\x00\x00\x2a\x00\x00\x00\x26\x00\x00\x00\ +\x23\x00\x00\x00\x1f\x00\x00\x00\x1b\x00\x00\x00\x18\x00\x00\x00\ +\x13\x00\x00\x00\x0e\x00\x00\x00\x09\x00\x00\x00\x06\x00\x00\x00\ +\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x03\x00\x00\x00\x07\x00\x00\x00\x0b\x00\x00\x00\x12\x00\x00\x00\ +\x1c\x0b\x09\x0a\x2a\x1d\x1b\x1c\x3b\x2f\x2d\x2e\x4e\x3e\x3c\x3d\ +\x5f\x49\x47\x48\x6d\x50\x4d\x4e\x79\x51\x50\x51\x80\x50\x4f\x4f\ +\x7f\x4c\x4a\x4a\x78\x42\x40\x41\x6e\x34\x33\x34\x62\x24\x22\x23\ +\x53\x12\x11\x11\x43\x03\x03\x03\x35\x00\x00\x00\x2b\x00\x00\x00\ +\x23\x00\x00\x00\x1c\x00\x00\x00\x16\x00\x00\x00\x10\x00\x00\x00\ +\x0b\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x05\x00\x00\x00\ +\x0a\x00\x00\x00\x12\x09\x08\x08\x20\x21\x20\x20\x3a\x3e\x3d\x3e\ +\x5b\x5b\x59\x5a\x7e\x73\x72\x73\x9d\x86\x84\x85\xb6\x93\x91\x92\ +\xc8\x9c\x9a\x9b\xd3\xa1\xa0\xa1\xdc\xa3\xa2\xa3\xe0\xa2\xa2\xa2\ +\xdf\x9f\x9e\x9e\xda\x98\x97\x97\xd1\x8c\x8b\x8c\xc6\x7c\x7b\x7c\ +\xb3\x68\x67\x66\x9b\x4c\x4a\x4a\x7f\x2c\x2b\x2b\x60\x11\x10\x11\ +\x46\x02\x01\x01\x32\x00\x00\x00\x26\x00\x00\x00\x1e\x00\x00\x00\ +\x17\x00\x00\x00\x0f\x00\x00\x00\x09\x00\x00\x00\x04\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x02\x00\x00\x00\x07\x00\x00\x00\x0f\x0c\x0b\x0b\ +\x1e\x2c\x2a\x2b\x3b\x51\x4f\x50\x69\x73\x71\x72\x9b\x8f\x8d\x8e\ +\xc3\xa8\xa7\xa7\xde\xba\xb9\xba\xed\xc6\xc5\xc5\xf6\xce\xcc\xcd\ +\xfa\xd3\xd2\xd3\xfd\xd6\xd5\xd6\xfe\xd8\xd8\xd8\xfe\xd8\xd8\xd8\ +\xfe\xd5\xd5\xd5\xfd\xd2\xd1\xd1\xfc\xcb\xca\xcb\xf9\xc2\xc1\xc2\ +\xf4\xb5\xb4\xb3\xea\xa0\x9e\x9e\xd9\x82\x81\x82\xbe\x60\x5e\x5f\ +\x98\x39\x37\x37\x6c\x14\x13\x13\x48\x02\x02\x02\x33\x00\x00\x00\ +\x27\x00\x00\x00\x1c\x00\x00\x00\x13\x00\x00\x00\x0b\x00\x00\x00\ +\x05\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x03\x00\x00\x00\x08\x05\x04\x05\x12\x22\x20\x21\x2d\x4c\x4a\x4b\ +\x5e\x77\x75\x76\x9b\x9c\x9a\x9b\xcd\xb7\xb6\xb6\xea\xca\xc9\xc9\ +\xf8\xd7\xd6\xd7\xfd\xdf\xde\xdf\xfe\xe5\xe4\xe5\xfe\xe8\xe8\xe8\ +\xff\xeb\xea\xeb\xff\xec\xec\xec\xff\xed\xed\xed\xff\xed\xed\xed\ +\xff\xec\xeb\xec\xff\xea\xe9\xea\xff\xe7\xe7\xe7\xff\xe3\xe3\xe3\ +\xfe\xde\xdd\xdd\xfe\xd4\xd3\xd4\xfb\xc5\xc4\xc4\xf6\xae\xad\xae\ +\xe6\x8c\x8b\x8c\xc6\x5e\x5d\x5d\x96\x2e\x2d\x2d\x63\x0b\x0a\x0a\ +\x40\x00\x00\x00\x2c\x00\x00\x00\x20\x00\x00\x00\x16\x00\x00\x00\ +\x0d\x00\x00\x00\x06\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\ +\x08\x0c\x0b\x0c\x17\x3c\x3a\x3b\x3e\x6d\x6a\x6c\x80\x97\x96\x96\ +\xc2\xb8\xb7\xb8\xe9\xd0\xcf\xd0\xf9\xde\xdd\xdd\xfd\xe6\xe5\xe6\ +\xfe\xec\xeb\xec\xfe\xef\xef\xef\xfe\xf2\xf2\xf3\xfe\xf5\xf4\xf5\ +\xff\xf6\xf5\xf6\xff\xf7\xf7\xf7\xff\xf8\xf8\xf8\xff\xf8\xf8\xf8\ +\xff\xf7\xf6\xf7\xff\xf5\xf5\xf5\xff\xf4\xf4\xf4\xff\xec\xec\xec\ +\xff\xdb\xdb\xdb\xfe\xdb\xdb\xdb\xfe\xe1\xe1\xe1\xfe\xdb\xdb\xdb\ +\xfd\xca\xc9\xc9\xf6\xac\xab\xab\xe3\x81\x80\x80\xb9\x4c\x4a\x4a\ +\x7e\x19\x17\x18\x4d\x00\x00\x00\x32\x00\x00\x00\x24\x00\x00\x00\ +\x18\x00\x00\x00\x0e\x00\x00\x00\x06\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x08\x15\x14\x14\ +\x1a\x4d\x4b\x4c\x4c\x82\x80\x81\x99\xad\xac\xad\xd9\xcc\xcb\xcb\ +\xf6\xdd\xdc\xdd\xfd\xe7\xe7\xe7\xfe\xee\xee\xee\xfe\xf3\xf3\xf3\ +\xfe\xf7\xf6\xf7\xff\xf8\xf9\xf9\xfe\xf9\xfa\xfa\xff\xfa\xfa\xfa\ +\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfc\xfb\xfb\xff\xfb\xfb\xfb\xff\xfb\xfb\xfb\xff\xe6\xe6\xe6\ +\xff\xa5\xa5\xa5\xff\x99\x99\x99\xfe\xcc\xcc\xcd\xff\xe8\xe8\xe8\ +\xfe\xe6\xe6\xe6\xfd\xd9\xd8\xd8\xfb\xc1\xc0\xc0\xf2\x99\x98\x98\ +\xcf\x61\x60\x61\x93\x24\x23\x23\x58\x01\x01\x01\x35\x00\x00\x00\ +\x24\x00\x00\x00\x18\x00\x00\x00\x0e\x00\x00\x00\x06\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x06\x1a\x19\x19\x1a\x59\x58\x58\ +\x53\x8f\x8e\x8e\xa7\xb9\xb8\xb9\xe5\xd6\xd6\xd6\xfb\xe6\xe5\xe5\ +\xfe\xee\xed\xed\xfe\xf4\xf3\xf3\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\ +\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfc\xfc\xfc\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xec\xec\xec\ +\xff\xa2\xa1\xa1\xff\x5a\x5a\x5a\xff\x7b\x7b\x7b\xff\xc6\xc6\xc6\ +\xfe\xeb\xeb\xeb\xfe\xec\xec\xec\xfe\xe2\xe1\xe1\xfe\xce\xcd\xcd\ +\xf8\xa8\xa7\xa7\xdb\x6e\x6d\x6d\x9e\x2a\x29\x29\x5c\x02\x01\x01\ +\x36\x00\x00\x00\x24\x00\x00\x00\x17\x00\x00\x00\x0c\x00\x00\x00\ +\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x05\x17\x15\x16\x15\x5b\x59\x5a\x4f\x96\x94\x94\ +\xaa\xc1\xc0\xc0\xea\xdc\xdb\xdc\xfc\xea\xe9\xe9\xfe\xf2\xf1\xf1\ +\xfe\xf7\xf7\xf7\xff\xfa\xfa\xfa\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfb\xfb\xfb\ +\xff\xdc\xdc\xdc\xff\x81\x81\x81\xff\x3f\x3f\x3f\xff\x66\x66\x66\ +\xff\xaf\xb0\xb0\xff\xdb\xdb\xdc\xff\xea\xe9\xea\xfe\xe6\xe6\xe6\ +\xfe\xd5\xd4\xd4\xfa\xb0\xaf\xaf\xdf\x73\x72\x73\xa0\x2a\x29\x2a\ +\x59\x01\x01\x01\x34\x00\x00\x00\x22\x00\x00\x00\x15\x00\x00\x00\ +\x0a\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x03\x10\x0f\x0f\x0f\x55\x52\x54\x41\x94\x92\x93\xa0\xc3\xc2\xc2\ +\xe8\xdf\xde\xde\xfd\xed\xec\xec\xfe\xf3\xf3\xf3\xfe\xf8\xf8\xf8\ +\xfe\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfa\xfa\xfa\xff\xca\xca\xca\xff\x5f\x5f\x60\xff\x22\x22\x23\ +\xff\x3d\x3e\x3e\xff\x80\x80\x80\xff\xc9\xc9\xc9\xfe\xea\xea\xea\ +\xfe\xe5\xe4\xe4\xfe\xd3\xd2\xd2\xfa\xab\xaa\xab\xdd\x67\x66\x67\ +\x96\x1b\x1b\x1b\x51\x00\x00\x00\x2f\x00\x00\x00\x1f\x00\x00\x00\ +\x11\x00\x00\x00\x07\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x08\x07\x07\ +\x09\x46\x44\x44\x2d\x8c\x8a\x8b\x8b\xc0\xbe\xbf\xe0\xde\xde\xde\ +\xfc\xed\xec\xec\xff\xf4\xf4\xf4\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xfc\xfc\xfc\ +\xff\xfa\xfa\xfa\xff\xf3\xf3\xf3\xff\xf1\xf1\xf1\xff\xf8\xf8\xf8\ +\xff\xfd\xfd\xfe\xff\xf2\xf2\xf3\xff\xac\xac\xad\xff\x3e\x3e\x3e\ +\xff\x0a\x0a\x0a\xff\x25\x25\x25\xff\x79\x79\x79\xff\xae\xaf\xaf\ +\xfe\xad\xad\xad\xfe\xa2\xa1\xa1\xfe\x8d\x8d\x8c\xf8\x5f\x5e\x5e\ +\xd3\x24\x23\x23\x85\x03\x02\x02\x44\x00\x00\x00\x2a\x00\x00\x00\ +\x19\x00\x00\x00\x0d\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x31\x2f\x30\ +\x1a\x7c\x7b\x7b\x6a\xb8\xb7\xb7\xcf\xdd\xdc\xdc\xf9\xec\xeb\xec\ +\xff\xf4\xf4\xf4\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfb\xfb\xfb\xff\xeb\xeb\xeb\ +\xff\xca\xca\xca\xff\xa8\xa9\xa9\xff\xa2\xa2\xa2\xff\xd0\xd0\xd0\ +\xff\xf8\xf8\xf8\xff\xfe\xfe\xfe\xff\xe4\xe4\xe4\xff\x80\x80\x80\ +\xff\x18\x18\x18\xff\x05\x05\x05\xff\x21\x21\x21\xff\x35\x36\x36\ +\xff\x33\x33\x33\xff\x2d\x2d\x2d\xff\x27\x27\x27\xfe\x1b\x1b\x1b\ +\xf4\x0d\x0d\x0d\xc1\x07\x06\x06\x6b\x01\x01\x01\x38\x00\x00\x00\ +\x22\x00\x00\x00\x13\x00\x00\x00\x08\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x0a\x09\x09\x0a\x65\x64\x65\ +\x41\xa9\xa8\xa8\xad\xd6\xd5\xd5\xf1\xea\xea\xea\xfe\xf3\xf3\xf3\ +\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xf9\xf9\xf9\xff\xcf\xcf\xcf\ +\xff\x89\x89\x89\xff\x6e\x6e\x6e\xff\x72\x73\x73\xff\xaf\xaf\xaf\ +\xff\xf0\xf0\xf0\xff\xff\xff\xff\xff\xf6\xf6\xf6\xff\xa7\xa7\xa7\ +\xff\x2c\x2c\x2c\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfd\x01\x01\x01\xe8\x06\x05\x05\xa0\x04\x04\x04\x51\x00\x00\x00\ +\x2d\x00\x00\x00\x1b\x00\x00\x00\x0d\x00\x00\x00\x05\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x44\x42\x42\x1d\x94\x93\x94\ +\x7b\xc9\xc8\xc9\xdd\xe6\xe6\xe6\xfc\xf1\xf1\xf1\xfe\xf7\xf7\xf7\ +\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfb\xfb\xfb\xff\xe2\xe1\xe2\ +\xff\xb9\xb9\xb9\xff\xbc\xbc\xbc\xff\xc6\xc6\xc7\xff\xd9\xd9\xd9\ +\xff\xf6\xf7\xf7\xff\xff\xff\xff\xff\xfc\xfc\xfc\xff\xc0\xc0\xc0\ +\xff\x41\x41\x41\xff\x03\x03\x03\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfe\x00\x00\x00\xf9\x02\x02\x02\xcf\x05\x05\x05\x78\x01\x01\x01\ +\x3a\x00\x00\x00\x23\x00\x00\x00\x13\x00\x00\x00\x09\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x08\x74\x71\x72\x42\xb7\xb5\xb6\ +\xb3\xde\xde\xde\xf5\xee\xee\xee\xfe\xf6\xf6\xf6\xfe\xfa\xfa\xfa\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xf6\xf6\xf6\xff\xe8\xe8\xe8\ +\xff\xe9\xe9\xe9\xff\xf8\xf8\xf8\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfc\xfc\xfc\ +\xff\xf8\xf8\xf8\xff\xf5\xf5\xf5\xff\xf6\xf6\xf6\xff\xf6\xf5\xf6\ +\xff\xf3\xf3\xf3\xff\xf5\xf5\xf5\xff\xf5\xf5\xf5\xff\xf5\xf6\xf5\ +\xff\xf8\xf8\xf8\xff\xf7\xf7\xf7\xff\xf4\xf4\xf4\xff\xcd\xcd\xce\ +\xff\x58\x59\x59\xff\x08\x09\x09\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfe\x00\x00\x00\xfd\x00\x00\x00\xec\x04\x04\x04\xa5\x04\x04\x04\ +\x50\x00\x00\x00\x2a\x00\x00\x00\x19\x00\x00\x00\x0e\x00\x00\x00\ +\x00\x00\x00\x00\x00\x12\x11\x12\x15\x6e\x6d\x6d\x70\xba\xba\xba\ +\xdb\xe7\xe6\xe6\xfd\xf4\xf4\xf4\xff\xf9\xf9\xf9\xff\xfc\xfc\xfc\ +\xff\xfc\xfc\xfc\xff\xec\xec\xec\xff\xba\xbb\xbb\xff\x87\x87\x87\ +\xff\xa1\xa2\xa2\xff\xe6\xe6\xe6\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xf5\xf5\xf5\xff\xd7\xd7\xd7\ +\xff\xb4\xb5\xb5\xff\xa4\xa5\xa5\xff\xa8\xa8\xa8\xff\xb3\xb3\xb3\ +\xff\xba\xba\xba\xff\xb7\xb7\xb7\xff\xac\xac\xac\xff\xaf\xb0\xb0\ +\xff\xb5\xb5\xb5\xff\xab\xab\xac\xff\xa0\xa0\xa2\xff\x90\x90\x92\ +\xff\x4a\x4a\x4a\xff\x0a\x0a\x0a\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfe\x00\x00\x00\xfe\x00\x00\x00\xf9\x02\x02\x02\xcc\x04\x04\x04\ +\x6f\x01\x01\x01\x34\x00\x00\x00\x1f\x00\x00\x00\x12\x15\x10\x12\ +\x00\x00\x00\x00\x02\x08\x07\x08\x2b\x3f\x3f\x3f\x9c\x99\x99\x99\ +\xf0\xdd\xdd\xdd\xff\xee\xee\xee\xff\xf1\xf1\xf1\xff\xf2\xf2\xf2\ +\xff\xe6\xe6\xe6\xff\xa9\xa9\xa9\xff\x52\x52\x52\xff\x40\x41\x41\ +\xff\x90\x91\x91\xff\xe6\xe6\xe6\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xf5\xf5\xf5\xff\xc5\xc5\xc5\xff\x6f\x70\x70\ +\xff\x38\x38\x37\xff\x28\x29\x29\xff\x2b\x2b\x2c\xff\x34\x34\x37\ +\xff\x3a\x3a\x42\xff\x37\x37\x45\xff\x2f\x2f\x42\xff\x31\x32\x4b\ +\xff\x35\x36\x55\xff\x2e\x2e\x51\xff\x26\x26\x49\xff\x24\x24\x44\ +\xff\x15\x15\x2c\xff\x03\x03\x12\xff\x00\x00\x07\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x00\x00\x00\xe5\x03\x02\x02\ +\x91\x02\x02\x02\x41\x00\x00\x00\x23\x00\x00\x00\x16\x1d\x1b\x1d\ +\x00\x0f\x0c\x0d\x06\x06\x06\x06\x47\x1b\x1b\x1b\xbf\x5a\x5a\x5a\ +\xfa\x90\x90\x90\xff\x9c\x9c\x9c\xff\x9d\x9d\x9d\xff\x9d\x9d\x9d\ +\xff\x84\x84\x84\xff\x43\x43\x43\xff\x2a\x2a\x2a\xff\x7a\x7b\x7a\ +\xff\xd5\xd5\xd5\xff\xf9\xf9\xf9\xff\xfd\xfd\xfd\xff\xfc\xfc\xfc\ +\xff\xf5\xf5\xf5\xff\xc7\xc7\xc6\xff\x66\x67\x66\xff\x18\x18\x19\ +\xff\x02\x02\x08\xff\x00\x00\x12\xff\x01\x01\x23\xff\x01\x01\x37\ +\xff\x02\x02\x4a\xff\x02\x02\x5d\xff\x01\x01\x6c\xff\x01\x01\x79\ +\xff\x01\x01\x84\xff\x01\x01\x88\xff\x00\x00\x88\xff\x00\x00\x83\ +\xff\x00\x00\x75\xff\x00\x00\x61\xff\x00\x00\x45\xff\x00\x00\x25\ +\xff\x00\x00\x0b\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xf2\x02\x02\x02\ +\xaf\x04\x03\x03\x52\x00\x00\x00\x28\x00\x00\x00\x1a\x0f\x10\x0f\ +\x00\x12\x10\x12\x0d\x09\x08\x09\x64\x07\x07\x07\xd7\x13\x13\x13\ +\xfe\x20\x20\x20\xff\x22\x22\x22\xff\x23\x23\x23\xff\x22\x22\x22\ +\xff\x19\x19\x19\xff\x15\x15\x15\xff\x59\x59\x59\xff\xc9\xc9\xc9\ +\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\xff\xe6\xe6\xe6\xff\xce\xce\xcd\ +\xff\xb6\xb6\xb6\xff\x68\x68\x6d\xff\x1a\x1a\x2b\xff\x01\x01\x28\ +\xff\x00\x00\x44\xff\x00\x00\x66\xff\x00\x00\x85\xff\x00\x00\x9b\ +\xff\x00\x00\xaa\xff\x00\x00\xb4\xff\x00\x00\xbb\xff\x00\x00\xbf\ +\xff\x00\x00\xc2\xff\x00\x00\xc3\xff\x00\x00\xc3\xff\x00\x00\xc2\ +\xff\x00\x00\xbe\xff\x00\x00\xb7\xff\x00\x00\xa6\xff\x00\x00\x82\ +\xff\x00\x00\x4e\xff\x00\x00\x1f\xff\x00\x00\x06\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfa\x02\x01\x01\ +\xc6\x04\x03\x03\x65\x01\x01\x01\x2d\x00\x00\x00\x1d\x12\x10\x15\ +\x00\x12\x12\x13\x17\x09\x09\x09\x7e\x02\x02\x02\xe7\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x1e\x1e\x1e\xff\x90\x90\x90\xff\xef\xef\xef\ +\xff\xfe\xfe\xfd\xff\xe5\xe5\xe4\xff\x97\x97\x97\xff\x55\x55\x5d\ +\xff\x3d\x3d\x59\xff\x17\x17\x53\xff\x01\x01\x64\xff\x00\x00\x88\ +\xff\x00\x00\xa6\xff\x00\x00\xb9\xff\x00\x00\xc3\xff\x00\x00\xc7\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc7\xff\x00\x00\xc1\ +\xff\x00\x00\xa8\xff\x00\x00\x77\xff\x00\x00\x38\xff\x00\x00\x0c\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x01\x01\x01\ +\xd8\x04\x03\x04\x78\x01\x01\x01\x33\x00\x00\x00\x20\x21\x1c\x1f\ +\x00\x12\x12\x12\x22\x08\x08\x08\x94\x01\x01\x01\xf0\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x1e\x1e\x1e\xff\x8b\x8b\x8b\xff\xe3\xe3\xe3\ +\xff\xe2\xe2\xe1\xff\x9e\x9e\xa4\xff\x3a\x3a\x57\xff\x08\x08\x4b\ +\xff\x02\x02\x74\xff\x00\x00\x9c\xff\x00\x00\xb6\xff\x00\x00\xc4\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc7\xff\x00\x00\xc7\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xbb\xff\x00\x00\x8d\xff\x00\x00\x41\ +\xff\x00\x00\x0b\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x01\x01\x01\ +\xe3\x05\x04\x04\x88\x03\x02\x02\x39\x00\x00\x00\x22\x28\x23\x24\ +\x00\x0e\x0d\x0e\x29\x06\x06\x06\xa2\x01\x01\x01\xf5\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x0b\x0b\x0b\xff\x42\x42\x42\xff\x7f\x7f\x83\ +\xff\x77\x77\x8b\xff\x39\x39\x78\xff\x09\x09\x7e\xff\x00\x00\x9f\ +\xff\x00\x00\xba\xff\x00\x00\xc6\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xbf\xff\x00\x00\x87\ +\xff\x00\x00\x2d\xff\x00\x00\x02\xff\x00\x00\x00\xff\x00\x00\x00\ +\xea\x03\x02\x02\x93\x02\x02\x02\x3e\x00\x00\x00\x23\x15\x0f\x0f\ +\x01\x06\x06\x06\x2d\x02\x02\x02\xaa\x00\x00\x00\xf8\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x09\x09\x10\xff\x16\x16\x3e\ +\xff\x13\x13\x76\xff\x05\x05\x9f\xff\x00\x00\xba\xff\x00\x00\xc6\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xaf\ +\xff\x00\x00\x55\xff\x00\x00\x0a\xff\x00\x00\x00\xff\x00\x00\x00\ +\xed\x00\x00\x00\x99\x00\x00\x00\x3f\x00\x00\x00\x23\x0a\x07\x07\ +\x01\x01\x00\x01\x2e\x00\x00\x00\xac\x00\x00\x00\xf9\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x0f\xff\x00\x00\x3d\xff\x00\x00\x80\ +\xff\x00\x00\xb1\xff\x00\x00\xc4\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc6\ +\xff\x00\x00\xc6\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xbd\ +\xff\x00\x00\x71\xff\x00\x00\x14\xff\x00\x00\x00\xff\x00\x00\x00\ +\xee\x00\x00\x00\x9a\x00\x00\x00\x3f\x00\x00\x00\x22\x0d\x0b\x0e\ +\x01\x03\x02\x03\x2d\x01\x00\x01\xa9\x00\x00\x00\xf8\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\ +\xff\x00\x00\x16\xff\x00\x00\x50\xff\x00\x00\x95\xff\x00\x00\xbc\ +\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc2\xff\x00\x00\xb6\xff\x00\x00\xa7\xff\x00\x00\x9c\ +\xff\x00\x00\xa8\xff\x00\x00\xc0\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc1\ +\xff\x00\x00\x7b\xff\x00\x00\x18\xff\x00\x00\x00\xff\x00\x00\x00\ +\xed\x00\x00\x00\x98\x00\x00\x00\x3e\x00\x00\x00\x21\x2d\x2d\x31\ +\x00\x0c\x0b\x0c\x28\x05\x04\x05\xa3\x00\x00\x00\xf6\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x1a\ +\xff\x00\x00\x5b\xff\x00\x00\xa1\xff\x00\x00\xc2\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc6\xff\x00\x00\xbc\xff\x00\x00\xa7\ +\xff\x00\x00\x87\xff\x00\x00\x64\xff\x00\x00\x48\xff\x00\x00\x46\ +\xff\x00\x00\x7e\xff\x00\x00\xba\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xb9\ +\xff\x00\x00\x6a\xff\x00\x00\x11\xff\x00\x00\x00\xff\x00\x00\x00\ +\xeb\x02\x02\x02\x92\x02\x01\x02\x3a\x00\x00\x00\x1f\xff\xff\xff\ +\x00\x15\x15\x15\x21\x09\x09\x09\x96\x01\x01\x01\xf2\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x1a\xff\x00\x00\x5f\ +\xff\x00\x00\xa6\xff\x00\x00\xc4\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc5\ +\xff\x00\x00\xb7\xff\x00\x00\x9a\xff\x00\x00\x73\xff\x00\x00\x48\ +\xff\x00\x00\x27\xff\x00\x00\x11\xff\x00\x00\x08\xff\x00\x00\x2c\ +\xff\x00\x00\x8b\xff\x00\x00\xc2\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc6\xff\x00\x00\xbc\xff\x00\x00\xb7\xff\x00\x00\xc3\ +\xff\x00\x00\xc8\xff\x00\x00\xc6\xff\x00\x00\xb7\xff\x00\x00\x88\ +\xff\x00\x00\x39\xff\x00\x00\x06\xff\x00\x00\x00\xfe\x01\x01\x01\ +\xe4\x05\x05\x05\x87\x04\x04\x04\x34\x00\x00\x00\x1c\x00\x00\x00\ +\x00\x1b\x1a\x1b\x16\x0c\x0c\x0c\x81\x03\x03\x03\xe9\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x13\xff\x00\x00\x59\xff\x00\x00\xa5\ +\xff\x00\x00\xc5\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc6\xff\x00\x00\xba\xff\x00\x00\x9b\ +\xff\x00\x00\x68\xff\x00\x00\x39\xff\x00\x00\x1a\xff\x00\x00\x07\ +\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x08\xff\x00\x00\x47\ +\xff\x00\x00\xa7\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc6\xff\x00\x00\xa5\xff\x00\x00\x87\xff\x00\x00\xaa\ +\xff\x00\x00\xb9\xff\x00\x00\x9d\xff\x00\x00\x6a\xff\x00\x00\x31\ +\xff\x00\x00\x0b\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x02\x02\x02\ +\xd9\x06\x06\x06\x75\x03\x03\x03\x2c\x00\x00\x00\x18\x0d\x0d\x0d\ +\x00\x1d\x1d\x1d\x0c\x0e\x0e\x0e\x66\x05\x05\x05\xdb\x00\x00\x00\ +\xfe\x00\x00\x05\xff\x00\x00\x3d\xff\x00\x00\x99\xff\x00\x00\xc4\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc4\xff\x00\x00\xab\xff\x00\x00\x75\xff\x00\x00\x3d\ +\xff\x00\x00\x15\xff\x00\x00\x04\xff\x00\x00\x01\xff\x00\x00\x03\ +\xff\x00\x00\x0c\xff\x00\x00\x1c\xff\x00\x00\x3d\xff\x00\x00\x82\ +\xff\x00\x00\xbb\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xa3\xff\x00\x00\x60\xff\x00\x00\x68\ +\xff\x00\x00\x6b\xff\x00\x00\x3f\xff\x00\x00\x17\xff\x00\x00\x04\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfa\x04\x04\x04\ +\xc8\x07\x06\x06\x61\x02\x01\x01\x25\x00\x00\x00\x15\x18\x17\x18\ +\x00\x23\x21\x22\x04\x10\x10\x11\x48\x07\x07\x08\xc3\x02\x02\x02\ +\xfb\x00\x00\x0a\xff\x00\x00\x58\xff\x00\x00\xb4\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xaf\xff\x00\x00\x64\xff\x00\x00\x1f\xff\x00\x00\x05\ +\xff\x00\x00\x05\xff\x00\x00\x0f\xff\x00\x00\x21\xff\x00\x00\x3b\ +\xff\x00\x00\x5b\xff\x00\x00\x7d\xff\x00\x00\x9d\xff\x00\x00\xba\ +\xff\x00\x00\xc6\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xab\xff\x00\x00\x51\xff\x00\x00\x1e\ +\xff\x00\x00\x14\xff\x00\x00\x06\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x03\x03\x03\xf4\x07\x07\x07\ +\xaf\x07\x07\x07\x4b\x01\x00\x00\x1d\x00\x00\x00\x11\x1f\x1e\x1f\ +\x00\x56\x56\x57\x00\x16\x16\x16\x2a\x0d\x0d\x0d\xa0\x06\x06\x05\ +\xf2\x02\x01\x08\xff\x00\x00\x41\xff\x00\x00\x9b\xff\x00\x00\xc3\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc8\ +\xff\x00\x00\x96\xff\x00\x00\x32\xff\x00\x00\x08\xff\x00\x00\x1b\ +\xff\x00\x00\x3b\xff\x00\x00\x5e\xff\x00\x00\x80\xff\x00\x00\x9e\ +\xff\x00\x00\xb3\xff\x00\x00\xc0\xff\x00\x00\xc5\xff\x00\x00\xc7\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xac\xff\x00\x00\x4c\xff\x00\x00\x08\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xfe\x06\x06\x06\xe7\x0a\x09\x09\ +\x8f\x06\x06\x06\x36\x00\x00\x00\x17\x00\x00\x00\x0d\x31\x2d\x2f\ +\x00\x16\x16\x15\x00\x23\x22\x22\x12\x16\x15\x15\x73\x0b\x0b\x0b\ +\xdf\x04\x04\x05\xfe\x01\x01\x16\xff\x00\x00\x50\xff\x00\x00\x8b\ +\xff\x00\x00\xa9\xff\x00\x00\xb3\xff\x00\x00\xb9\xff\x00\x00\xb8\ +\xff\x00\x00\x84\xff\x00\x00\x30\xff\x00\x00\x36\xff\x00\x00\x72\ +\xff\x00\x00\x9c\xff\x00\x00\xb4\xff\x00\x00\xc1\xff\x00\x00\xc6\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xa1\xff\x00\x00\x3e\xff\x00\x00\x04\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xff\x05\x05\x05\xfa\x0a\x0a\x0a\xce\x0d\x0c\x0c\ +\x69\x04\x04\x04\x25\x00\x00\x00\x11\x00\x00\x00\x08\x00\x00\x00\ +\x00\x2e\x2d\x2d\x00\x38\x37\x37\x04\x20\x1f\x20\x42\x12\x12\x12\ +\xb9\x09\x09\x08\xf7\x03\x03\x05\xff\x00\x00\x0f\xff\x00\x00\x2c\ +\xff\x00\x00\x47\xff\x00\x00\x57\xff\x00\x00\x61\xff\x00\x00\x62\ +\xff\x00\x00\x4b\xff\x00\x00\x3f\xff\x00\x00\x80\xff\x00\x00\xba\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc2\xff\x00\x00\x87\xff\x00\x00\x27\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xfe\x05\x05\x05\xfe\x09\x09\x09\xef\x0f\x0f\x0f\xa6\x0d\x0d\x0d\ +\x44\x00\x00\x00\x1a\x00\x00\x00\x0d\x00\x00\x00\x05\x00\x00\x00\ +\x00\x35\x34\x36\x00\x00\x00\x00\x00\x29\x29\x2b\x1a\x1b\x1b\x1b\ +\x81\x0f\x0f\x0f\xe3\x07\x07\x07\xfd\x02\x02\x02\xfe\x00\x00\x02\ +\xff\x00\x00\x06\xff\x00\x00\x0b\xff\x00\x00\x0e\xff\x00\x00\x0e\ +\xff\x00\x00\x11\xff\x00\x00\x44\xff\x00\x00\xa3\xff\x00\x00\xc8\ +\xff\x00\x00\xbe\xff\x00\x00\xac\xff\x00\x00\xae\xff\x00\x00\xbb\ +\xff\x00\x00\xc1\xff\x00\x00\xc4\xff\x00\x00\xc6\xff\x00\x00\xc7\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xb6\xff\x00\x00\x62\xff\x00\x00\x11\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x04\x04\x04\ +\xfe\x09\x09\x09\xfa\x0e\x0e\x0e\xd3\x12\x12\x12\x72\x09\x08\x08\ +\x29\x00\x00\x00\x12\x00\x00\x00\x08\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x33\x33\x33\x00\x35\x35\x36\x05\x27\x27\x27\ +\x43\x19\x19\x19\xb6\x0e\x0e\x0e\xf5\x06\x06\x06\xfe\x02\x02\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x03\xff\x00\x00\x3b\xff\x00\x00\x9f\xff\x00\x00\xbc\ +\xff\x00\x00\x8a\xff\x00\x00\x52\xff\x00\x00\x55\xff\x00\x00\x70\ +\xff\x00\x00\x82\xff\x00\x00\x94\xff\x00\x00\xb0\xff\x00\x00\xc5\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc7\ +\xff\x00\x00\x9c\xff\x00\x00\x3c\xff\x00\x00\x05\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x03\x03\x03\xff\x08\x08\x08\ +\xfd\x0e\x0e\x0e\xed\x15\x15\x15\xa1\x11\x11\x11\x42\x01\x01\x01\ +\x19\x00\x00\x00\x0c\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x33\x31\x31\x00\x2c\x29\x28\x00\x36\x36\x36\ +\x15\x27\x27\x27\x6e\x18\x17\x18\xd7\x0d\x0c\x0d\xfb\x05\x05\x05\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x01\xff\x00\x00\x29\xff\x00\x00\x8d\xff\x00\x00\xa5\ +\xff\x00\x00\x50\xff\x00\x00\x23\xff\x00\x00\x34\xff\x00\x00\x41\ +\xff\x00\x00\x47\xff\x00\x00\x5f\xff\x00\x00\x96\xff\x00\x00\xc1\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xbe\ +\xff\x00\x00\x78\xff\x00\x00\x1d\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xff\x08\x08\x08\xff\x0f\x0f\x0f\ +\xf7\x16\x16\x16\xc4\x19\x19\x19\x61\x0a\x0a\x0a\x24\x00\x00\x00\ +\x10\x00\x00\x00\x07\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x20\x1b\x1b\x00\x45\x45\x45\x00\x41\x41\x41\ +\x03\x35\x34\x35\x2a\x25\x25\x25\x93\x17\x17\x17\xe7\x0c\x0c\x0c\ +\xfd\x06\x06\x06\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x18\xff\x00\x00\x74\xff\x00\x00\xa0\ +\xff\x00\x00\x6a\xff\x00\x00\x69\xff\x00\x00\x8d\xff\x00\x00\x92\ +\xff\x00\x00\x8c\xff\x00\x00\x98\xff\x00\x00\xb2\xff\x00\x00\xc5\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc3\xff\x00\x00\xbf\ +\xff\x00\x00\xc1\xff\x00\x00\xc6\xff\x00\x00\xc8\xff\x00\x00\xac\ +\xff\x00\x00\x4f\xff\x00\x00\x0a\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xff\x07\x07\x07\xff\x0f\x0f\x0f\xfb\x17\x17\x17\ +\xd8\x1c\x1c\x1c\x80\x13\x13\x13\x30\x01\x01\x01\x14\x00\x00\x00\ +\x0a\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5b\x59\x5b\ +\x00\x45\x45\x45\x07\x36\x36\x36\x40\x27\x27\x27\xa9\x18\x18\x18\ +\xef\x0d\x0d\x0d\xfe\x06\x06\x06\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x0b\xff\x00\x00\x57\xff\x00\x00\xa9\ +\xff\x00\x00\xb0\xff\x00\x00\xb6\xff\x00\x00\xc4\xff\x00\x00\xc7\ +\xff\x00\x00\xc5\xff\x00\x00\xc6\xff\x00\x00\xc7\xff\x00\x00\xc7\ +\xff\x00\x00\xc7\xff\x00\x00\xc6\xff\x00\x00\xb0\xff\x00\x00\x89\ +\xff\x00\x00\x88\xff\x00\x00\xaf\xff\x00\x00\xc1\xff\x00\x00\x8a\ +\xff\x00\x00\x29\xff\x00\x00\x01\xff\x00\x00\x00\xff\x03\x03\x03\ +\xff\x08\x08\x08\xff\x0f\x0f\x10\xfd\x19\x19\x19\xe2\x20\x20\x20\ +\x95\x1c\x1c\x1c\x3e\x06\x06\x06\x17\x00\x00\x00\x0b\x00\x00\x00\ +\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x52\x53\ +\x00\x8f\x8e\x8f\x00\x4d\x4d\x4d\x0e\x3b\x3b\x3b\x4f\x2a\x2a\x2a\ +\xb3\x1a\x1a\x1a\xf0\x0f\x0f\x0f\xfe\x07\x07\x07\xfe\x02\x02\x02\ +\xfe\x00\x00\x00\xff\x00\x00\x03\xff\x00\x00\x37\xff\x00\x00\x9a\ +\xff\x00\x00\xc7\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc7\xff\x00\x00\xbf\xff\x00\x00\x98\xff\x00\x00\x51\ +\xff\x00\x00\x49\xff\x00\x00\x94\xff\x00\x00\xa9\xff\x00\x00\x5b\ +\xff\x00\x00\x0f\xff\x01\x01\x00\xff\x05\x05\x05\xff\x0a\x0a\x0a\ +\xff\x12\x12\x12\xfc\x1b\x1b\x1c\xe5\x23\x23\x24\xa0\x23\x23\x23\ +\x49\x0d\x0d\x0d\x1a\x00\x00\x00\x0d\x00\x00\x00\x05\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\ +\x00\x5a\x5a\x5b\x00\x94\x94\x92\x00\x54\x54\x55\x11\x40\x40\x40\ +\x53\x2e\x2d\x2d\xb1\x1e\x1e\x1e\xec\x12\x12\x12\xfc\x0a\x0a\x0a\ +\xfe\x05\x05\x05\xfe\x02\x02\x01\xff\x00\x00\x19\xff\x00\x00\x67\ +\xff\x00\x00\xab\xff\x00\x00\xc0\xff\x00\x00\xc3\xff\x00\x00\xc1\ +\xff\x00\x00\xbc\xff\x00\x00\xb5\xff\x00\x00\xb0\xff\x00\x00\xb3\ +\xff\x00\x00\xba\xff\x00\x00\xb1\xff\x00\x00\x90\xff\x00\x00\x69\ +\xff\x00\x00\x6c\xff\x00\x00\x8a\xff\x00\x00\x6b\xff\x00\x00\x25\ +\xfe\x03\x03\x05\xff\x07\x07\x06\xfe\x0d\x0d\x0d\xfe\x15\x15\x15\ +\xfb\x1f\x1f\x1f\xe2\x28\x28\x29\x9e\x27\x27\x28\x4c\x12\x12\x12\ +\x1b\x00\x00\x00\x0c\x00\x00\x00\x06\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x67\x67\x67\x00\x96\x96\x98\x00\x57\x57\x58\ +\x10\x45\x45\x45\x4b\x35\x35\x35\xa3\x25\x25\x25\xe3\x18\x18\x18\ +\xfa\x0f\x0f\x0f\xfe\x09\x09\x09\xff\x04\x04\x09\xff\x01\x01\x26\ +\xff\x00\x00\x57\xff\x00\x00\x7c\xff\x00\x00\x85\xff\x00\x00\x7c\ +\xff\x00\x00\x6c\xff\x00\x00\x5a\xff\x00\x00\x51\xff\x00\x00\x57\ +\xff\x00\x00\x6c\xff\x00\x00\x7a\xff\x00\x00\x77\xff\x00\x00\x6f\ +\xff\x00\x00\x65\xff\x01\x01\x4b\xff\x03\x03\x23\xff\x05\x05\x0b\ +\xfe\x0b\x0b\x0b\xfe\x12\x12\x11\xfd\x19\x1a\x1a\xf7\x24\x25\x25\ +\xd7\x2f\x2f\x2f\x92\x2e\x2e\x2e\x45\x15\x15\x15\x1a\x00\x00\x00\ +\x0c\x00\x00\x00\x05\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x69\x68\x68\x00\x7e\x7b\x7c\ +\x00\x5e\x5e\x5e\x0b\x51\x51\x51\x38\x3f\x3f\x3f\x87\x2e\x2e\x2e\ +\xce\x21\x21\x21\xf0\x16\x16\x16\xfc\x0f\x0f\x0f\xff\x0a\x0a\x0d\ +\xff\x06\x06\x13\xff\x03\x03\x1e\xff\x01\x01\x21\xff\x00\x00\x1b\ +\xff\x00\x00\x12\xff\x00\x00\x0b\xff\x00\x00\x09\xff\x00\x00\x0a\ +\xff\x00\x00\x13\xff\x00\x00\x1d\xff\x01\x01\x22\xff\x02\x02\x20\ +\xff\x04\x04\x1a\xff\x08\x08\x11\xff\x0b\x0b\x0d\xff\x11\x11\x11\ +\xfe\x19\x19\x19\xfa\x23\x23\x23\xea\x2d\x2d\x2d\xc0\x35\x35\x35\ +\x78\x31\x31\x31\x37\x14\x14\x14\x15\x00\x00\x00\x0a\x00\x00\x00\ +\x04\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x70\x70\ +\x00\xff\xff\xff\x00\x61\x61\x61\x06\x5a\x5a\x5a\x23\x4d\x4d\x4d\ +\x60\x3c\x3c\x3c\xa5\x2d\x2e\x2d\xd7\x22\x22\x22\xf2\x1a\x1a\x1a\ +\xfc\x14\x14\x13\xfe\x0e\x0e\x0f\xff\x0b\x0b\x0c\xff\x08\x08\x08\ +\xff\x07\x07\x07\xff\x06\x06\x06\xfe\x05\x05\x05\xfe\x06\x06\x05\ +\xfe\x06\x06\x06\xfe\x07\x07\x08\xff\x09\x09\x0a\xff\x0c\x0c\x0c\ +\xff\x10\x10\x10\xff\x15\x15\x15\xfe\x1c\x1c\x1c\xfa\x24\x24\x24\ +\xed\x2d\x2e\x2e\xcd\x38\x38\x38\x97\x3d\x3d\x3d\x56\x30\x30\x30\ +\x25\x10\x10\x10\x10\x00\x00\x00\x08\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x2f\x2d\x2d\x00\x6a\x6a\x6a\x01\x6d\x6c\x6d\ +\x0e\x5c\x5c\x5c\x33\x4c\x4d\x4c\x69\x41\x41\x41\xa1\x37\x37\x37\ +\xcc\x2c\x2c\x2c\xe7\x23\x23\x23\xf5\x1d\x1d\x1d\xfc\x19\x19\x19\ +\xfe\x16\x16\x16\xff\x14\x14\x14\xff\x14\x14\x14\xff\x14\x14\x14\ +\xff\x15\x15\x15\xff\x17\x17\x17\xff\x1b\x1b\x1b\xfe\x1f\x1f\x1f\ +\xfa\x25\x25\x25\xf2\x2d\x2d\x2d\xe1\x37\x37\x37\xc3\x3d\x3e\x3e\ +\x97\x42\x43\x43\x61\x41\x41\x41\x30\x29\x2a\x2a\x14\x05\x05\x05\ +\x0a\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x79\x78\x00\x70\x81\x70\ +\x00\x7d\x7c\x7d\x02\x70\x6f\x70\x10\x65\x65\x65\x2d\x5a\x5a\x5a\ +\x55\x4d\x4e\x4d\x7e\x42\x43\x42\xa2\x3d\x3d\x3d\xbe\x38\x38\x38\ +\xd2\x35\x35\x35\xde\x34\x34\x34\xe6\x34\x34\x34\xeb\x33\x33\x33\ +\xea\x33\x33\x33\xe4\x34\x34\x34\xdb\x38\x38\x38\xce\x3c\x3d\x3c\ +\xb8\x41\x42\x42\x9b\x4a\x4a\x4a\x77\x50\x50\x50\x50\x4b\x4b\x4b\ +\x2c\x38\x37\x37\x14\x0e\x0e\x0e\x08\x00\x00\x00\x04\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x9f\x9f\x9f\x00\xa3\xa3\xa3\x01\x82\x82\x82\ +\x09\x6e\x6f\x6f\x16\x64\x64\x64\x2a\x5f\x5f\x5f\x40\x5b\x5b\x5b\ +\x54\x5a\x5a\x5a\x66\x5c\x5c\x5c\x74\x5d\x5e\x5d\x7c\x5c\x5c\x5c\ +\x7a\x58\x58\x58\x71\x55\x55\x55\x63\x55\x55\x55\x52\x55\x56\x55\ +\x3e\x53\x54\x54\x2a\x50\x50\x50\x19\x3d\x3d\x3c\x0c\x14\x14\x14\ +\x06\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb9\xb9\xb5\ +\x00\xff\xff\xff\x00\x8c\x8c\x8b\x01\x68\x68\x68\x05\x6b\x6b\x6b\ +\x09\x6b\x6b\x6b\x0e\x6e\x6f\x6e\x14\x70\x71\x70\x17\x6b\x6b\x6b\ +\x16\x61\x61\x61\x14\x55\x55\x55\x10\x46\x46\x46\x0c\x32\x32\x32\ +\x08\x16\x16\x16\x05\x01\x01\x01\x03\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xfe\x00\ +\x00\x0f\xff\x00\x00\xff\xf8\x00\x00\x07\xff\x00\x00\xff\xf0\x00\ +\x00\x01\xff\x00\x00\xff\xc0\x00\x00\x00\x7f\x00\x00\xff\x80\x00\ +\x00\x00\x3f\x00\x00\xff\x00\x00\x00\x00\x1f\x00\x00\xfe\x00\x00\ +\x00\x00\x0f\x00\x00\xfc\x00\x00\x00\x00\x07\x00\x00\xf8\x00\x00\ +\x00\x00\x07\x00\x00\xf8\x00\x00\x00\x00\x03\x00\x00\xf0\x00\x00\ +\x00\x00\x01\x00\x00\xe0\x00\x00\x00\x00\x01\x00\x00\xe0\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x01\x00\x00\xf0\x00\x00\ +\x00\x00\x01\x00\x00\xf0\x00\x00\x00\x00\x03\x00\x00\xf8\x00\x00\ +\x00\x00\x07\x00\x00\xfc\x00\x00\x00\x00\x07\x00\x00\xfe\x00\x00\ +\x00\x00\x0f\x00\x00\xff\x00\x00\x00\x00\x1f\x00\x00\xff\x80\x00\ +\x00\x00\x3f\x00\x00\xff\xc0\x00\x00\x00\x7f\x00\x00\xff\xe0\x00\ +\x00\x01\xff\x00\x00\xff\xf8\x00\x00\x07\xff\x00\x00\xff\xfe\x00\ +\x00\x1f\xff\x00\x00\xff\xff\xc0\x00\x7f\xff\x00\x00\x28\x00\x00\ +\x00\x16\x00\x00\x00\x2c\x00\x00\x00\x01\x00\x20\x00\x00\x00\x00\ +\x00\x90\x07\x00\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x02\x00\x00\x00\x0a\x10\x0f\x10\x18\x26\x25\x25\x29\x2e\x2d\x2d\ +\x34\x2a\x29\x2a\x36\x1d\x1c\x1d\x2e\x08\x08\x08\x21\x00\x00\x00\ +\x16\x00\x00\x00\x0b\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x08\x3a\x39\x39\x25\x67\x65\x66\x56\x86\x84\x85\ +\x83\x98\x96\x97\xa3\x9f\x9e\x9e\xb2\x9d\x9c\x9c\xb2\x92\x91\x91\ +\xa3\x7b\x7a\x7a\x85\x53\x52\x52\x5d\x1f\x1e\x1f\x32\x00\x00\x00\ +\x17\x00\x00\x00\x09\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x06\x06\ +\x00\x00\x00\x00\x01\x3a\x38\x39\x16\x75\x73\x74\x55\xa1\x9f\xa0\ +\xa6\xc0\xbf\xbf\xdc\xd5\xd4\xd4\xf3\xe0\xdf\xe0\xfb\xe4\xe4\xe4\ +\xfd\xe4\xe4\xe4\xfd\xdd\xdd\xdd\xfa\xca\xca\xca\xf1\xb6\xb5\xb5\ +\xdb\x91\x90\x90\xa6\x53\x52\x52\x5f\x12\x11\x11\x29\x00\x00\x00\ +\x0e\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x49\x48\x48\x1a\x91\x90\x91\ +\x75\xc0\xbf\xbf\xd3\xde\xde\xde\xf8\xef\xef\xef\xfe\xf6\xf6\xf6\ +\xfe\xf9\xf9\xf9\xfe\xfa\xfa\xfa\xff\xfb\xfa\xfa\xff\xf5\xf4\xf5\ +\xfe\xc0\xc0\xc0\xfe\xb4\xb4\xb5\xfe\xd2\xd2\xd2\xf6\xb4\xb3\xb3\ +\xd0\x71\x70\x70\x7b\x19\x18\x18\x2e\x00\x00\x00\x0f\x00\x00\x00\ +\x02\x00\x00\x00\x00\x1a\x18\x19\x00\xff\xff\xff\x00\x55\x52\x54\ +\x15\x9d\x9b\x9c\x77\xce\xcd\xce\xe1\xec\xeb\xec\xfd\xf7\xf7\xf7\ +\xfe\xfb\xfb\xfb\xfe\xfc\xfc\xfc\xfe\xfd\xfd\xfd\xfe\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfc\xfc\xfc\xfe\xce\xce\xce\xfe\x77\x77\x77\ +\xfe\x91\x91\x91\xfe\xcc\xcc\xcc\xfc\xb8\xb7\xb7\xdc\x66\x65\x66\ +\x7d\x0e\x0e\x0e\x2b\x00\x00\x00\x0b\x00\x00\x00\x01\x56\x55\x55\ +\x00\x1d\x1b\x1b\x06\x99\x98\x98\x59\xce\xcd\xce\xd7\xef\xee\xee\ +\xfe\xfa\xf9\xfa\xfe\xfc\xfc\xfc\xfe\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfb\xfb\xfb\xff\xdf\xdf\xdf\xff\xcd\xcd\xcd\ +\xff\xea\xe9\xea\xff\xa4\xa4\xa4\xff\x35\x35\x35\xfe\x59\x5a\x5a\ +\xfe\x68\x68\x68\xfd\x3c\x3c\x3c\xd3\x0d\x0d\x0d\x65\x00\x00\x00\ +\x1b\x00\x00\x00\x06\xff\xff\xff\x00\x86\x84\x85\x25\xc6\xc5\xc5\ +\xb0\xeb\xeb\xeb\xfb\xf9\xf9\xf9\xff\xf9\xf9\xf9\xff\xf9\xf9\xf9\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xf7\xf7\xf7\ +\xff\xcc\xcc\xcc\xff\xb9\xb9\xb9\xff\xea\xea\xe9\xff\xd6\xd6\xd5\ +\xff\x3d\x3d\x3c\xfe\x03\x03\x03\xfe\x05\x05\x05\xff\x03\x03\x03\ +\xf8\x02\x02\x02\xad\x02\x02\x02\x3a\x00\x00\x00\x0f\x00\x00\x00\ +\x05\x81\x81\x81\x5e\xd2\xd2\xd2\xe6\xf3\xf3\xf3\xff\xe3\xe3\xe3\ +\xfe\xb1\xb1\xb1\xff\xd5\xd6\xd6\xff\xfe\xfe\xfe\xff\xf3\xf3\xf3\ +\xff\xc0\xc0\xbf\xff\xa0\xa1\xa0\xff\xa2\xa2\xa5\xff\xa0\xa0\xa8\ +\xff\xa2\xa3\xae\xff\x90\x90\x9d\xff\x34\x34\x3d\xff\x00\x00\x02\ +\xff\x00\x00\x00\xfe\x00\x00\x00\xfe\x00\x00\x00\xe1\x01\x01\x01\ +\x68\x00\x00\x00\x1c\x00\x00\x00\x13\x32\x32\x32\x93\x72\x72\x72\ +\xf9\x8a\x8a\x8a\xff\x6e\x6e\x6e\xff\x79\x7a\x79\xff\xd9\xda\xd9\ +\xff\xe7\xe7\xe6\xff\xa2\xa2\xa7\xff\x35\x35\x4c\xff\x14\x14\x48\ +\xff\x17\x17\x69\xff\x17\x17\x7f\xff\x16\x16\x8c\xff\x12\x12\x8b\ +\xff\x07\x07\x72\xff\x00\x00\x46\xff\x00\x00\x18\xfe\x00\x00\x01\ +\xff\x00\x00\x00\xf6\x01\x00\x00\x93\x01\x01\x01\x2c\x09\x09\x09\ +\x27\x04\x04\x04\xb6\x08\x08\x08\xff\x08\x08\x08\xff\x1a\x1a\x1a\ +\xff\x98\x98\x97\xff\xc1\xc1\xc8\xff\x63\x63\x8a\xff\x23\x23\x7c\ +\xff\x01\x01\x8b\xff\x00\x00\xa9\xff\x00\x00\xba\xff\x00\x00\xc0\ +\xff\x00\x00\xc4\xff\x00\x00\xc4\xff\x00\x00\xc2\xff\x00\x00\xb5\ +\xff\x00\x00\x83\xff\x00\x00\x30\xff\x00\x00\x03\xfd\x00\x00\x00\ +\xb2\x02\x01\x01\x3c\x05\x05\x05\x35\x01\x01\x01\xc7\x00\x00\x00\ +\xff\x00\x00\x00\xff\x09\x09\x0a\xff\x42\x42\x5a\xff\x3e\x3e\x95\ +\xff\x08\x08\xa0\xff\x00\x00\xba\xff\x00\x00\xc7\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc4\xff\x00\x00\x84\ +\xff\x00\x00\x19\xff\x00\x00\x00\xc1\x00\x00\x00\x47\x01\x01\x01\ +\x37\x00\x00\x00\xca\x00\x00\x00\xff\x00\x00\x02\xff\x00\x00\x2b\ +\xff\x00\x00\x7f\xff\x00\x00\xb8\xff\x00\x00\xc8\xff\x00\x00\xc7\ +\xff\x00\x00\xbd\xff\x00\x00\xa8\xff\x00\x00\xaa\xff\x00\x00\xc3\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xca\xff\x00\x00\xa7\xff\x00\x00\x2d\xff\x00\x00\x00\ +\xc3\x00\x00\x00\x47\x08\x08\x08\x2f\x02\x02\x01\xc1\x00\x00\x02\ +\xff\x00\x00\x2e\xff\x00\x00\x8d\xff\x00\x00\xc1\xff\x00\x00\xc7\ +\xff\x00\x00\xb8\xff\x00\x00\x90\xff\x00\x00\x5a\xff\x00\x00\x38\ +\xff\x00\x00\x73\xff\x00\x00\xc0\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc0\xff\x00\x00\xba\xff\x00\x00\xba\xff\x00\x00\x7f\ +\xff\x00\x00\x1b\xfe\x00\x00\x00\xba\x02\x02\x02\x3e\x0f\x0e\x0f\ +\x1c\x04\x04\x02\xa7\x00\x00\x16\xfd\x00\x00\x80\xff\x00\x00\xc5\ +\xff\x00\x00\xc7\xff\x00\x00\xa1\xff\x00\x00\x54\xff\x00\x00\x26\ +\xff\x00\x00\x21\xff\x00\x00\x41\xff\x00\x00\x97\xff\x00\x00\xc6\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xb1\xff\x00\x00\x74\ +\xff\x00\x00\x52\xff\x00\x00\x1d\xff\x00\x00\x02\xfa\x02\x02\x02\ +\xa1\x03\x03\x03\x2c\x15\x15\x15\x0a\x0a\x0a\x07\x7a\x03\x03\x1a\ +\xf3\x00\x00\x79\xff\x00\x00\xb6\xfe\x00\x00\xb5\xff\x00\x00\x64\ +\xff\x00\x00\x3b\xff\x00\x00\x67\xff\x00\x00\x92\xff\x00\x00\xb0\ +\xff\x00\x00\xc4\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xca\ +\xff\x00\x00\xac\xff\x00\x00\x39\xff\x00\x00\x03\xfe\x00\x00\x00\ +\xff\x02\x02\x02\xee\x06\x06\x06\x78\x03\x03\x03\x19\x60\x5b\x5d\ +\x00\x16\x15\x14\x3e\x0a\x0a\x0d\xd1\x01\x01\x1d\xff\x00\x00\x40\ +\xfe\x00\x00\x49\xff\x00\x00\x4d\xff\x00\x00\x96\xff\x00\x00\xae\ +\xff\x00\x00\xb7\xff\x00\x00\xc1\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\x95\xff\x00\x00\x1f\ +\xff\x00\x00\x00\xfe\x02\x02\x02\xfd\x09\x09\x09\xc9\x0b\x0a\x0a\ +\x43\x00\x00\x00\x0a\x21\x21\x21\x00\x26\x26\x26\x0f\x16\x16\x16\ +\x85\x09\x09\x08\xf1\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x33\ +\xfe\x00\x00\x8e\xff\x00\x00\x6b\xff\x00\x00\x72\xff\x00\x00\x9a\ +\xff\x00\x00\xc2\xff\x00\x00\xc7\xff\x00\x00\xc7\xff\x00\x00\xc2\ +\xff\x00\x00\x67\xff\x00\x00\x09\xff\x01\x01\x01\xff\x0a\x0a\x0a\ +\xeb\x10\x10\x10\x80\x0a\x0a\x0a\x18\x00\x00\x00\x02\x34\x34\x34\ +\x00\x00\x00\x00\x00\x27\x27\x27\x2d\x19\x19\x19\xad\x0a\x0a\x09\ +\xf8\x01\x01\x00\xff\x00\x00\x1c\xfe\x00\x00\x7e\xff\x00\x00\x98\ +\xff\x00\x00\xa4\xff\x00\x00\xb2\xff\x00\x00\xc5\xff\x00\x00\xb3\ +\xff\x00\x00\xa2\xff\x00\x00\xa2\xfe\x00\x00\x35\xfe\x02\x02\x02\ +\xff\x0b\x0b\x0b\xf5\x15\x15\x15\xa4\x15\x15\x15\x31\x00\x00\x00\ +\x05\x00\x00\x00\x00\x00\x00\x00\x00\x40\x40\x40\x00\x48\x49\x49\ +\x03\x31\x30\x30\x3a\x1f\x1e\x1e\xb2\x0f\x0f\x0e\xf4\x04\x04\x0c\ +\xfe\x00\x00\x59\xff\x00\x00\xa4\xff\x00\x00\xaa\xff\x00\x00\x9f\ +\xfe\x00\x00\xa0\xfe\x00\x00\x8a\xff\x00\x00\x6a\xff\x00\x00\x57\ +\xfe\x05\x05\x14\xfe\x10\x10\x0f\xf1\x1b\x1c\x1c\xaa\x1e\x1e\x1f\ +\x3a\x0b\x0b\x0b\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x4e\x4e\x4e\x00\x53\x54\x54\x03\x39\x39\x39\ +\x33\x29\x29\x29\x95\x1a\x1a\x1a\xdf\x0e\x0e\x1f\xfa\x07\x07\x36\ +\xfe\x03\x03\x34\xff\x02\x02\x27\xff\x02\x02\x2b\xff\x03\x03\x34\ +\xff\x08\x08\x2d\xfe\x0f\x0f\x1f\xf8\x1b\x1b\x1b\xda\x25\x25\x25\ +\x8f\x27\x28\x28\x34\x12\x12\x12\x07\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x64\x64\x64\x00\x7a\x7a\x7a\x01\x4e\x4e\x4e\x17\x3c\x3c\x3b\ +\x53\x2f\x2f\x2e\x98\x25\x25\x23\xc5\x1e\x1e\x1d\xdd\x1d\x1d\x1b\ +\xe6\x1c\x1c\x1b\xe6\x1e\x1e\x1e\xdc\x25\x25\x24\xc2\x2e\x2e\x2c\ +\x94\x34\x34\x34\x50\x34\x34\x34\x18\x14\x15\x15\x03\x5b\x5d\x5d\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x3f\x3f\x3f\x00\x7b\x7b\x7b\x03\x5a\x5a\x5a\x16\x4b\x4c\x4b\ +\x35\x46\x46\x46\x55\x48\x48\x48\x67\x46\x46\x46\x67\x43\x43\x42\ +\x54\x44\x45\x44\x35\x49\x49\x49\x17\x43\x43\x43\x04\xee\xef\xef\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xfc\x00\x7c\x00\xf8\x00\x1c\x00\xe0\x00\x0c\ +\x00\xc0\x00\x04\x00\xc0\x00\x00\x00\x80\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x80\x00\x00\x00\x80\x00\x00\x00\xc0\x00\x04\x00\xc0\x00\x0c\ +\x00\xe0\x00\x1c\x00\xf0\x00\x3c\x00\xfc\x00\xfc\x00\x28\x00\x00\ +\x00\x10\x00\x00\x00\x20\x00\x00\x00\x01\x00\x20\x00\x00\x00\x00\ +\x00\x00\x04\x00\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x0a\x0a\x0a\x06\x45\x43\x44\x20\x62\x60\x61\ +\x41\x6c\x6b\x6b\x57\x67\x66\x66\x59\x54\x53\x53\x46\x2d\x2d\x2d\ +\x2a\x01\x01\x01\x10\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x36\x34\x36\x00\x00\x00\x00\ +\x00\x5c\x5a\x5b\x19\x8b\x8a\x8a\x58\xac\xab\xab\x9f\xc1\xc0\xc0\ +\xc8\xc9\xc9\xc9\xd8\xc8\xc7\xc7\xd8\xb8\xb8\xb8\xc7\x9e\x9d\x9d\ +\xa1\x72\x71\x71\x61\x2d\x2d\x2d\x26\x00\x00\x00\x08\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x74\x75\ +\x22\xad\xac\xad\x8a\xd1\xd0\xd0\xdc\xe8\xe7\xe7\xfa\xf2\xf2\xf2\ +\xfe\xf6\xf6\xf6\xff\xf7\xf7\xf7\xff\xd9\xd9\xd9\xfe\xb2\xb2\xb2\ +\xf9\xba\xb9\xb9\xdb\x96\x95\x95\x8f\x43\x42\x43\x32\x00\x00\x00\ +\x09\x00\x00\x00\x00\xff\xff\xff\x00\x7f\x7d\x7e\x19\xb9\xb7\xb8\ +\x8c\xe1\xe0\xe0\xee\xf5\xf5\xf5\xfe\xfb\xfb\xfb\xfe\xfd\xfd\xfd\ +\xfe\xfc\xfc\xfc\xfe\xf1\xf1\xf1\xfe\xdf\xdf\xdf\xfe\x95\x95\x95\ +\xfe\x83\x84\x84\xfe\x99\x99\x99\xec\x59\x58\x59\x91\x0a\x0a\x0a\ +\x29\x00\x00\x00\x05\x5b\x59\x5a\x05\xb7\xb6\xb6\x5c\xe1\xe0\xe0\ +\xe0\xf6\xf5\xf6\xff\xf8\xf8\xf8\xfe\xfd\xfd\xfd\xfe\xfe\xfe\xfd\ +\xff\xf6\xf6\xf5\xff\xcf\xcf\xce\xff\xd7\xd7\xd5\xff\xb8\xb8\xb7\ +\xfe\x35\x35\x34\xfe\x24\x25\x24\xff\x16\x16\x16\xde\x04\x04\x04\ +\x67\x00\x00\x00\x14\x4c\x4c\x4c\x20\xa8\xa8\xa8\xa8\xd7\xd7\xd7\ +\xfc\xc3\xc3\xc3\xff\xcc\xcc\xcc\xff\xf5\xf5\xf4\xff\xcc\xcc\xcc\ +\xff\x96\x96\x9c\xff\x88\x89\x9b\xff\x8b\x8c\xa7\xff\x79\x79\x98\ +\xfe\x1f\x1f\x34\xfe\x00\x00\x03\xfe\x00\x00\x00\xfa\x00\x00\x00\ +\xaa\x00\x00\x00\x32\x11\x11\x11\x44\x35\x35\x35\xd2\x4b\x4b\x4b\ +\xff\x60\x60\x5f\xff\xb4\xb4\xb5\xff\xa5\xa5\xb9\xff\x47\x47\x81\ +\xff\x10\x10\x72\xff\x0d\x0d\x90\xff\x0d\x0d\xa2\xff\x0a\x0a\xa3\ +\xff\x03\x03\x8b\xff\x00\x00\x57\xfe\x00\x00\x17\xff\x00\x00\x00\ +\xd0\x00\x00\x00\x53\x02\x02\x02\x5e\x00\x00\x00\xe3\x00\x00\x00\ +\xff\x26\x26\x30\xff\x59\x59\x91\xff\x23\x23\xa0\xff\x03\x03\xaf\ +\xff\x00\x00\xbf\xff\x00\x00\xc5\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc7\xff\x00\x00\xb9\xff\x00\x00\x66\xff\x00\x00\x0d\ +\xe0\x00\x00\x00\x69\x01\x01\x01\x62\x00\x00\x00\xe5\x00\x00\x0f\ +\xff\x01\x01\x5c\xff\x03\x03\xaa\xff\x00\x00\xc1\xff\x00\x00\xaf\ +\xff\x00\x00\x92\xff\x00\x00\xa5\xff\x00\x00\xc5\xff\x00\x00\xc7\ +\xff\x00\x00\xc5\xff\x00\x00\xc7\xff\x00\x00\x8a\xff\x00\x00\x19\ +\xe2\x00\x00\x00\x6a\x05\x05\x03\x4f\x01\x01\x09\xdb\x00\x00\x55\ +\xff\x00\x00\xb3\xff\x00\x00\xb8\xff\x00\x00\x7f\xff\x00\x00\x4a\ +\xff\x00\x00\x42\xff\x00\x00\x92\xff\x00\x00\xc6\xff\x00\x00\xc7\ +\xff\x00\x00\xab\xff\x00\x00\x85\xff\x00\x00\x44\xff\x00\x00\x09\ +\xd7\x01\x01\x00\x58\x0b\x0b\x06\x2c\x04\x04\x13\xbb\x00\x00\x65\ +\xff\x00\x00\xaa\xfe\x00\x00\x82\xff\x00\x00\x52\xff\x00\x00\x6e\ +\xff\x00\x00\x96\xff\x00\x00\xbd\xff\x00\x00\xc8\xff\x00\x00\xc7\ +\xff\x00\x00\x84\xff\x00\x00\x20\xfe\x00\x00\x03\xfe\x03\x03\x02\ +\xb7\x04\x04\x04\x35\x1b\x1a\x17\x0b\x0e\x0e\x11\x79\x04\x04\x1a\ +\xf0\x00\x00\x2d\xff\x00\x00\x40\xfe\x00\x00\x84\xfe\x00\x00\x97\ +\xff\x00\x00\xae\xff\x00\x00\xc5\xff\x00\x00\xc8\xff\x00\x00\xc0\ +\xff\x00\x00\x5f\xff\x00\x00\x07\xff\x05\x05\x04\xec\x0a\x0a\x0a\ +\x78\x07\x07\x07\x12\x00\x00\x00\x00\x1d\x1d\x1d\x2c\x11\x11\x10\ +\xb2\x05\x05\x03\xfb\x00\x00\x1a\xfe\x00\x00\x77\xfe\x00\x00\x8d\ +\xff\x00\x00\xa5\xfe\x00\x00\xbf\xfe\x00\x00\xb4\xfe\x00\x00\x9e\ +\xfe\x00\x00\x31\xff\x05\x05\x05\xf9\x0e\x0e\x0e\xad\x11\x11\x11\ +\x2f\x00\x00\x00\x02\x3a\x3a\x3a\x00\x40\x40\x40\x03\x26\x26\x26\ +\x3e\x17\x17\x16\xb7\x0a\x0a\x12\xf3\x02\x02\x54\xff\x00\x00\x8e\ +\xff\x00\x00\x8c\xff\x00\x00\x88\xff\x00\x00\x6f\xff\x03\x03\x4e\ +\xfe\x0b\x0b\x18\xf1\x15\x15\x14\xb2\x1a\x1b\x1b\x3e\x12\x11\x12\ +\x05\x19\x19\x19\x00\x00\x00\x00\x00\x31\x31\x31\x00\x50\x50\x50\ +\x03\x31\x31\x31\x32\x24\x24\x24\x88\x18\x18\x27\xcc\x10\x10\x2e\ +\xe8\x0d\x0d\x26\xf2\x0d\x0d\x27\xf2\x11\x11\x2a\xe7\x18\x18\x24\ +\xc9\x21\x21\x21\x85\x26\x27\x26\x32\x1f\x20\x20\x05\x2e\x30\x2f\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6f\x6f\x6f\ +\x00\x7c\x7c\x7c\x01\x4b\x4b\x4a\x12\x3b\x3b\x38\x3f\x33\x33\x2f\ +\x6e\x32\x32\x2f\x8b\x31\x31\x2e\x8b\x31\x31\x2e\x6d\x36\x36\x33\ +\x3e\x3b\x3b\x3b\x12\x40\x40\x41\x01\x3f\x3f\x3f\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf0\x07\x00\x00\xe0\x03\x00\x00\xc0\x01\x00\ +\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x80\x01\x00\x00\xc0\x03\x00\ +\x00\xe0\x07\x00\x00\x28\x00\x00\x00\x60\x00\x00\x00\xc0\x00\x00\ +\x00\x01\x00\x20\x00\x00\x00\x00\x00\x00\x90\x00\x00\x13\x0b\x00\ +\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\ +\x07\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\x0b\x00\x00\x00\ +\x0c\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x00\x10\x00\x00\x00\ +\x11\x00\x00\x00\x12\x00\x00\x00\x13\x00\x00\x00\x13\x00\x00\x00\ +\x13\x00\x00\x00\x14\x00\x00\x00\x14\x00\x00\x00\x14\x00\x00\x00\ +\x14\x00\x00\x00\x13\x00\x00\x00\x13\x00\x00\x00\x12\x00\x00\x00\ +\x11\x00\x00\x00\x10\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\ +\x0d\x00\x00\x00\x0b\x00\x00\x00\x0a\x00\x00\x00\x09\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\ +\x0c\x00\x00\x00\x0d\x00\x00\x00\x0f\x00\x00\x00\x11\x00\x00\x00\ +\x12\x00\x00\x00\x14\x00\x00\x00\x16\x00\x00\x00\x17\x00\x00\x00\ +\x18\x00\x00\x00\x19\x00\x00\x00\x1a\x00\x00\x00\x1b\x00\x00\x00\ +\x1b\x00\x00\x00\x1c\x00\x00\x00\x1c\x00\x00\x00\x1c\x00\x00\x00\ +\x1b\x00\x00\x00\x1b\x00\x00\x00\x1a\x00\x00\x00\x19\x00\x00\x00\ +\x18\x00\x00\x00\x17\x00\x00\x00\x16\x00\x00\x00\x15\x00\x00\x00\ +\x13\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\ +\x0c\x00\x00\x00\x0b\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\ +\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\ +\x09\x00\x00\x00\x0b\x00\x00\x00\x0d\x00\x00\x00\x0f\x00\x00\x00\ +\x11\x00\x00\x00\x14\x00\x00\x00\x16\x00\x00\x00\x18\x00\x00\x00\ +\x1a\x00\x00\x00\x1c\x00\x00\x00\x1e\x00\x00\x00\x1f\x00\x00\x00\ +\x21\x00\x00\x00\x22\x00\x00\x00\x23\x00\x00\x00\x24\x00\x00\x00\ +\x25\x00\x00\x00\x25\x00\x00\x00\x25\x00\x00\x00\x25\x00\x00\x00\ +\x25\x00\x00\x00\x24\x00\x00\x00\x23\x00\x00\x00\x22\x00\x00\x00\ +\x21\x00\x00\x00\x20\x00\x00\x00\x1e\x00\x00\x00\x1d\x00\x00\x00\ +\x1a\x00\x00\x00\x19\x00\x00\x00\x17\x00\x00\x00\x14\x00\x00\x00\ +\x12\x00\x00\x00\x10\x00\x00\x00\x0e\x00\x00\x00\x0c\x00\x00\x00\ +\x0a\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\x0c\x00\x00\x00\ +\x0e\x00\x00\x00\x11\x00\x00\x00\x14\x00\x00\x00\x16\x00\x00\x00\ +\x19\x00\x00\x00\x1c\x00\x00\x00\x1e\x00\x00\x00\x21\x00\x00\x00\ +\x23\x00\x00\x00\x25\x00\x00\x00\x27\x00\x00\x00\x29\x00\x00\x00\ +\x2a\x00\x00\x00\x2b\x00\x00\x00\x2c\x00\x00\x00\x2d\x00\x00\x00\ +\x2e\x00\x00\x00\x2f\x00\x00\x00\x2f\x00\x00\x00\x2f\x00\x00\x00\ +\x2f\x00\x00\x00\x2e\x00\x00\x00\x2e\x00\x00\x00\x2c\x00\x00\x00\ +\x2b\x00\x00\x00\x2a\x00\x00\x00\x28\x00\x00\x00\x26\x00\x00\x00\ +\x24\x00\x00\x00\x22\x00\x00\x00\x1f\x00\x00\x00\x1c\x00\x00\x00\ +\x1a\x00\x00\x00\x17\x00\x00\x00\x14\x00\x00\x00\x12\x00\x00\x00\ +\x10\x00\x00\x00\x0d\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\ +\x0a\x00\x00\x00\x0c\x00\x00\x00\x0f\x00\x00\x00\x12\x00\x00\x00\ +\x15\x00\x00\x00\x18\x00\x00\x00\x1b\x00\x00\x00\x1e\x00\x00\x00\ +\x22\x00\x00\x00\x25\x00\x00\x00\x28\x00\x00\x00\x2b\x00\x00\x00\ +\x2f\x00\x00\x00\x33\x02\x00\x00\x38\x03\x02\x02\x3e\x04\x03\x03\ +\x42\x05\x03\x04\x46\x06\x04\x04\x4a\x06\x04\x04\x4c\x06\x04\x04\ +\x4c\x05\x03\x04\x4b\x04\x02\x03\x48\x03\x02\x02\x45\x02\x00\x00\ +\x41\x01\x00\x00\x3d\x00\x00\x00\x3a\x00\x00\x00\x38\x00\x00\x00\ +\x36\x00\x00\x00\x34\x00\x00\x00\x32\x00\x00\x00\x30\x00\x00\x00\ +\x2e\x00\x00\x00\x2b\x00\x00\x00\x28\x00\x00\x00\x26\x00\x00\x00\ +\x23\x00\x00\x00\x20\x00\x00\x00\x1c\x00\x00\x00\x19\x00\x00\x00\ +\x16\x00\x00\x00\x13\x00\x00\x00\x10\x00\x00\x00\x0d\x00\x00\x00\ +\x0b\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x00\x0c\x00\x00\x00\ +\x0f\x00\x00\x00\x12\x00\x00\x00\x15\x00\x00\x00\x19\x00\x00\x00\ +\x1d\x00\x00\x00\x20\x00\x00\x00\x24\x00\x00\x00\x2a\x00\x00\x00\ +\x30\x00\x00\x00\x38\x04\x03\x04\x44\x0a\x08\x09\x53\x10\x0d\x0e\ +\x60\x17\x13\x15\x6c\x20\x1c\x1e\x79\x26\x23\x23\x85\x2c\x28\x29\ +\x91\x2e\x2a\x2c\x9a\x2f\x2b\x2c\xa2\x2f\x2b\x2c\xa5\x2c\x29\x2a\ +\xa4\x2e\x2a\x2b\x9f\x2c\x29\x29\x96\x27\x24\x24\x8c\x20\x1d\x1e\ +\x81\x19\x15\x17\x76\x11\x0d\x0e\x6c\x0a\x08\x08\x60\x05\x04\x04\ +\x54\x01\x00\x00\x49\x00\x00\x00\x41\x00\x00\x00\x3c\x00\x00\x00\ +\x38\x00\x00\x00\x35\x00\x00\x00\x32\x00\x00\x00\x2f\x00\x00\x00\ +\x2c\x00\x00\x00\x29\x00\x00\x00\x25\x00\x00\x00\x21\x00\x00\x00\ +\x1e\x00\x00\x00\x1a\x00\x00\x00\x16\x00\x00\x00\x13\x00\x00\x00\ +\x10\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x08\x00\x00\x00\x0b\x00\x00\x00\x0e\x00\x00\x00\x12\x00\x00\x00\ +\x15\x00\x00\x00\x19\x00\x00\x00\x1d\x00\x00\x00\x22\x00\x00\x00\ +\x28\x01\x00\x00\x32\x06\x03\x04\x3f\x0d\x0a\x0b\x53\x18\x14\x16\ +\x6b\x25\x23\x24\x82\x37\x34\x35\x9a\x49\x46\x48\xb3\x57\x54\x55\ +\xc5\x62\x5f\x61\xd2\x6e\x6b\x6d\xdc\x78\x76\x77\xe5\x84\x82\x82\ +\xec\x89\x87\x88\xf2\x8c\x8b\x8c\xf6\x8f\x8e\x8e\xf8\x89\x88\x88\ +\xf7\x8b\x89\x8a\xf4\x86\x85\x85\xee\x7c\x79\x7a\xe7\x70\x6d\x6f\ +\xdf\x65\x63\x64\xd7\x5a\x57\x59\xcd\x4b\x49\x4b\xbc\x3c\x39\x3b\ +\xa8\x28\x26\x26\x92\x19\x16\x17\x7c\x0e\x0c\x0c\x67\x06\x04\x04\ +\x55\x01\x00\x00\x48\x00\x00\x00\x40\x00\x00\x00\x3a\x00\x00\x00\ +\x36\x00\x00\x00\x32\x00\x00\x00\x2f\x00\x00\x00\x2b\x00\x00\x00\ +\x27\x00\x00\x00\x23\x00\x00\x00\x1e\x00\x00\x00\x1a\x00\x00\x00\ +\x16\x00\x00\x00\x13\x00\x00\x00\x0f\x00\x00\x00\x0c\x00\x00\x00\ +\x09\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x00\ +\x0c\x00\x00\x00\x10\x00\x00\x00\x14\x00\x00\x00\x18\x00\x00\x00\ +\x1d\x00\x00\x00\x22\x01\x01\x01\x2b\x06\x03\x05\x3b\x0f\x0c\x0d\ +\x52\x20\x1c\x1d\x71\x32\x2f\x30\x91\x48\x45\x46\xb0\x61\x5f\x60\ +\xcd\x79\x77\x78\xe1\x8b\x8a\x8a\xee\x9c\x9b\x9b\xf8\xab\xaa\xaa\ +\xfd\xb3\xb3\xb3\xfe\xb9\xb9\xb9\xff\xbe\xbd\xbe\xff\xc3\xc2\xc2\ +\xff\xc5\xc4\xc4\xff\xc7\xc6\xc7\xff\xca\xc9\xca\xff\xc9\xc8\xc8\ +\xff\xc7\xc6\xc6\xff\xc4\xc3\xc3\xff\xc0\xbf\xbf\xff\xbb\xba\xbb\ +\xff\xb6\xb6\xb6\xff\xaf\xaf\xaf\xfe\xa2\xa1\xa4\xf9\x92\x90\x92\ +\xf2\x7e\x7c\x7c\xe7\x6a\x67\x68\xd7\x50\x4d\x4e\xc0\x36\x34\x34\ +\xa4\x21\x1e\x1f\x87\x11\x0e\x0f\x6b\x05\x04\x04\x55\x02\x01\x01\ +\x47\x00\x00\x00\x3e\x00\x00\x00\x38\x00\x00\x00\x34\x00\x00\x00\ +\x30\x00\x00\x00\x2c\x00\x00\x00\x27\x00\x00\x00\x23\x00\x00\x00\ +\x1e\x00\x00\x00\x1a\x00\x00\x00\x16\x00\x00\x00\x11\x00\x00\x00\ +\x0e\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\ +\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x0b\x00\x00\x00\x0e\x00\x00\x00\ +\x12\x00\x00\x00\x16\x00\x00\x00\x1b\x00\x00\x00\x21\x01\x00\x00\ +\x2b\x06\x03\x04\x3f\x16\x12\x13\x5f\x2c\x28\x29\x87\x42\x3f\x40\ +\xaf\x60\x5e\x5e\xd1\x83\x81\x82\xe9\x9e\x9d\x9e\xf6\xb2\xb1\xb2\ +\xfd\xc2\xc1\xc1\xff\xcb\xca\xcb\xff\xcf\xce\xcf\xff\xd4\xd3\xd3\ +\xff\xd7\xd6\xd6\xff\xd9\xd8\xd9\xff\xdb\xda\xdb\xff\xdc\xdb\xdc\ +\xff\xdd\xdc\xdc\xff\xdc\xdc\xdc\xff\xdc\xdc\xdc\xff\xdc\xdc\xdc\ +\xff\xdc\xdc\xdc\xff\xdd\xdc\xdc\xff\xdb\xda\xdb\xff\xda\xd9\xda\ +\xff\xd8\xd7\xd8\xff\xd5\xd4\xd4\xff\xd1\xd1\xd2\xff\xcd\xcc\xcd\ +\xff\xc6\xc5\xc5\xff\xba\xb9\xb9\xfe\xa8\xa7\xa7\xf9\x8e\x8d\x8e\ +\xf0\x6b\x69\x69\xdd\x4b\x48\x49\xc2\x32\x2e\x30\x9f\x19\x16\x17\ +\x7c\x09\x06\x07\x5e\x01\x00\x00\x49\x00\x00\x00\x3f\x00\x00\x00\ +\x39\x00\x00\x00\x35\x00\x00\x00\x30\x00\x00\x00\x2c\x00\x00\x00\ +\x27\x00\x00\x00\x21\x00\x00\x00\x1c\x00\x00\x00\x18\x00\x00\x00\ +\x13\x00\x00\x00\x0f\x00\x00\x00\x0c\x00\x00\x00\x09\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x09\x00\x00\x00\x0c\x00\x00\x00\x10\x00\x00\x00\x14\x00\x00\x00\ +\x19\x00\x00\x00\x1e\x02\x00\x00\x29\x08\x04\x05\x40\x1b\x18\x18\ +\x64\x37\x34\x35\x93\x5a\x57\x58\xc2\x78\x76\x77\xe3\x93\x92\x93\ +\xf6\xb0\xaf\xaf\xfd\xc6\xc5\xc5\xff\xd3\xd2\xd2\xff\xd7\xd6\xd6\ +\xff\xda\xd9\xd9\xff\xdc\xdb\xdc\xff\xde\xdd\xdd\xff\xdf\xde\xde\ +\xff\xe0\xdf\xdf\xff\xe1\xe1\xe1\xff\xe2\xe1\xe2\xff\xe3\xe2\xe3\ +\xff\xe4\xe3\xe3\xff\xe4\xe4\xe4\xff\xe4\xe4\xe4\xff\xe4\xe4\xe4\ +\xff\xe4\xe4\xe4\xff\xe3\xe3\xe3\xff\xe2\xe1\xe2\xff\xe2\xe1\xe1\ +\xff\xe1\xe0\xe0\xff\xdf\xdf\xdf\xff\xde\xdd\xdd\xff\xdc\xdc\xdc\ +\xff\xdb\xda\xda\xff\xd8\xd7\xd7\xff\xd6\xd4\xd4\xff\xcd\xcc\xcc\ +\xff\xbb\xba\xba\xfe\xa2\xa1\xa1\xfa\x84\x82\x83\xec\x61\x60\x61\ +\xd3\x3f\x3c\x3d\xae\x1d\x1a\x1a\x83\x09\x07\x07\x60\x01\x00\x00\ +\x4a\x00\x00\x00\x3f\x00\x00\x00\x39\x00\x00\x00\x34\x00\x00\x00\ +\x2f\x00\x00\x00\x2a\x00\x00\x00\x25\x00\x00\x00\x1f\x00\x00\x00\ +\x1a\x00\x00\x00\x15\x00\x00\x00\x11\x00\x00\x00\x0d\x00\x00\x00\ +\x09\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x09\x00\x00\x00\ +\x0d\x00\x00\x00\x11\x00\x00\x00\x15\x00\x00\x00\x1b\x01\x00\x00\ +\x24\x07\x05\x06\x39\x17\x13\x14\x5e\x37\x34\x35\x93\x60\x5e\x5f\ +\xc5\x88\x87\x87\xe9\xa6\xa5\xa6\xf9\xbf\xbe\xbe\xfe\xce\xcd\xcd\ +\xff\xd6\xd5\xd6\xff\xda\xd9\xd9\xff\xdd\xdc\xdc\xff\xdf\xde\xdf\ +\xff\xe1\xe0\xe0\xff\xe3\xe2\xe3\xff\xe5\xe4\xe5\xff\xe6\xe6\xe6\ +\xff\xe7\xe7\xe7\xff\xe9\xe8\xe9\xff\xea\xe9\xea\xff\xea\xea\xea\ +\xff\xeb\xeb\xeb\xff\xec\xec\xec\xff\xec\xec\xec\xff\xec\xec\xec\ +\xff\xec\xeb\xeb\xff\xeb\xeb\xeb\xff\xea\xe9\xea\xff\xea\xe9\xe9\ +\xff\xe8\xe8\xe8\xff\xe7\xe6\xe6\xff\xe6\xe5\xe5\xff\xe4\xe3\xe4\ +\xff\xe1\xe1\xe1\xff\xe0\xdf\xdf\xff\xde\xdd\xdd\xff\xdb\xda\xda\ +\xff\xd8\xd7\xd8\xff\xd3\xd2\xd2\xff\xc6\xc5\xc6\xfe\xb1\xb0\xb0\ +\xfc\x95\x93\x94\xf2\x6d\x6b\x6c\xd7\x40\x3d\x3e\xaf\x1b\x17\x19\ +\x81\x06\x04\x05\x5c\x01\x00\x00\x47\x00\x00\x00\x3e\x00\x00\x00\ +\x38\x00\x00\x00\x32\x00\x00\x00\x2d\x00\x00\x00\x28\x00\x00\x00\ +\x21\x00\x00\x00\x1c\x00\x00\x00\x17\x00\x00\x00\x12\x00\x00\x00\ +\x0e\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\ +\x03\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x00\x0d\x00\x00\x00\ +\x11\x00\x00\x00\x16\x00\x00\x00\x1c\x02\x00\x00\x2b\x0f\x0b\x0d\ +\x4e\x2e\x2b\x2c\x84\x54\x52\x53\xbf\x83\x82\x83\xe9\xaf\xae\xaf\ +\xfa\xc7\xc6\xc6\xfe\xd3\xd2\xd3\xff\xd9\xd8\xd9\xff\xdc\xdb\xdc\ +\xff\xdf\xde\xdf\xff\xe1\xe1\xe1\xff\xe4\xe4\xe4\xff\xe7\xe6\xe7\ +\xff\xe9\xe8\xe8\xff\xeb\xea\xeb\xff\xed\xec\xed\xff\xee\xed\xed\ +\xff\xef\xef\xef\xff\xf1\xf0\xf0\xff\xf1\xf1\xf1\xff\xf2\xf1\xf2\ +\xff\xf3\xf3\xf3\xff\xf3\xf3\xf3\xff\xf3\xf3\xf3\xff\xf3\xf3\xf3\ +\xff\xf3\xf3\xf3\xff\xf3\xf2\xf2\xff\xf2\xf1\xf1\xff\xf1\xf0\xf1\ +\xff\xf0\xf0\xf0\xff\xef\xee\xee\xff\xed\xed\xed\xff\xeb\xeb\xeb\ +\xff\xe9\xe9\xe9\xff\xe7\xe6\xe7\xff\xe5\xe4\xe5\xff\xe2\xe1\xe2\ +\xff\xdf\xdf\xdf\xff\xdd\xdc\xdc\xff\xda\xd9\xda\xff\xd6\xd5\xd5\ +\xff\xce\xcd\xcd\xff\xbb\xba\xbb\xfd\x96\x94\x95\xf2\x60\x5e\x5e\ +\xd5\x33\x31\x31\xa5\x13\x10\x10\x74\x02\x01\x01\x53\x00\x00\x00\ +\x42\x00\x00\x00\x3b\x00\x00\x00\x36\x00\x00\x00\x30\x00\x00\x00\ +\x29\x00\x00\x00\x24\x00\x00\x00\x1e\x00\x00\x00\x18\x00\x00\x00\ +\x13\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\x07\x00\x00\x00\ +\x05\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\ +\x07\x00\x00\x00\x0a\x00\x00\x00\x0e\x00\x00\x00\x12\x00\x00\x00\ +\x17\x00\x00\x00\x20\x07\x04\x05\x38\x1f\x1b\x1c\x69\x4b\x49\x4a\ +\xad\x7b\x79\x7a\xe2\xa8\xa7\xa7\xfa\xc8\xc7\xc7\xff\xd5\xd4\xd4\ +\xff\xda\xd9\xd9\xff\xdd\xdd\xdd\xff\xe1\xe0\xe0\xff\xe3\xe2\xe3\ +\xff\xe7\xe6\xe6\xff\xea\xe9\xe9\xff\xec\xec\xec\xff\xef\xee\xef\ +\xff\xf1\xf0\xf0\xff\xf3\xf2\xf2\xff\xf4\xf4\xf4\xff\xf6\xf5\xf5\ +\xff\xf7\xf6\xf6\xff\xf8\xf8\xf8\xff\xf9\xf8\xf9\xff\xf9\xf9\xf9\ +\xff\xfa\xf9\xf9\xff\xfa\xfa\xfa\xff\xfa\xfa\xfa\xff\xfa\xfa\xfa\ +\xff\xfa\xfa\xfa\xff\xfa\xf9\xf9\xff\xf9\xf8\xf9\xff\xf8\xf8\xf8\ +\xff\xf7\xf7\xf7\xff\xf6\xf5\xf6\xff\xf5\xf4\xf5\xff\xf3\xf3\xf3\ +\xff\xf1\xf1\xf1\xff\xf0\xef\xef\xff\xed\xed\xed\xff\xeb\xea\xea\ +\xff\xe8\xe8\xe8\xff\xe4\xe4\xe4\xff\xe1\xe0\xe1\xff\xdf\xde\xde\ +\xff\xdb\xdb\xdb\xff\xd7\xd6\xd7\xff\xcf\xce\xce\xff\xb9\xb8\xb8\ +\xfc\x89\x88\x88\xee\x55\x53\x54\xc8\x26\x22\x23\x91\x08\x06\x06\ +\x61\x00\x00\x00\x48\x00\x00\x00\x3e\x00\x00\x00\x38\x00\x00\x00\ +\x32\x00\x00\x00\x2b\x00\x00\x00\x25\x00\x00\x00\x1f\x00\x00\x00\ +\x19\x00\x00\x00\x14\x00\x00\x00\x0f\x00\x00\x00\x0b\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x00\ +\x0a\x00\x00\x00\x0e\x00\x00\x00\x12\x00\x00\x00\x18\x02\x01\x02\ +\x25\x0f\x0c\x0e\x48\x34\x30\x32\x88\x69\x66\x68\xcc\x9b\x9b\x9b\ +\xf5\xc1\xc0\xc0\xfe\xd4\xd3\xd3\xff\xda\xd9\xda\xff\xde\xdd\xdd\ +\xff\xe1\xe0\xe1\xff\xe5\xe5\xe5\xff\xe9\xe8\xe8\xff\xec\xeb\xeb\ +\xff\xef\xee\xef\xff\xf2\xf1\xf1\xff\xf4\xf4\xf4\xff\xf6\xf6\xf6\ +\xff\xf8\xf8\xf8\xff\xf9\xf9\xf9\xff\xfa\xfa\xfa\xff\xfc\xfb\xfb\ +\xff\xfc\xfc\xfc\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfc\xfc\xfc\xff\xfc\xfb\xfb\xff\xfb\xfa\xfb\xff\xfa\xfa\xfa\ +\xff\xf8\xf8\xf8\xff\xf2\xf2\xf2\xff\xed\xed\xed\xff\xf0\xef\xef\ +\xff\xf0\xf0\xf0\xff\xec\xec\xed\xff\xe9\xe9\xe9\xff\xe6\xe6\xe6\ +\xff\xe3\xe2\xe2\xff\xde\xde\xde\xff\xdb\xda\xda\xff\xd7\xd6\xd6\ +\xff\xcb\xca\xca\xfe\xab\xaa\xaa\xfa\x77\x75\x76\xe2\x3e\x3b\x3b\ +\xad\x13\x0f\x10\x73\x03\x02\x02\x50\x00\x00\x00\x40\x00\x00\x00\ +\x3a\x00\x00\x00\x33\x00\x00\x00\x2d\x00\x00\x00\x26\x00\x00\x00\ +\x20\x00\x00\x00\x1a\x00\x00\x00\x14\x00\x00\x00\x0f\x00\x00\x00\ +\x0b\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x0a\x00\x00\x00\ +\x0d\x00\x00\x00\x12\x00\x00\x00\x19\x04\x02\x03\x2a\x18\x13\x15\ +\x55\x46\x43\x44\xa1\x81\x80\x80\xe5\xb6\xb5\xb5\xfd\xd1\xd0\xd0\ +\xff\xda\xd9\xd9\xff\xdd\xdc\xdc\xff\xe1\xe0\xe1\xff\xe5\xe4\xe5\ +\xff\xe9\xe9\xe9\xff\xed\xed\xed\xff\xf0\xf0\xf0\xff\xf3\xf3\xf3\ +\xff\xf6\xf6\xf6\xff\xf8\xf8\xf8\xff\xfa\xfa\xfa\xff\xfb\xfb\xfb\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\ +\xff\xf5\xf5\xf5\xff\xbc\xbc\xbd\xff\x93\x93\x93\xff\xbe\xbe\xbe\ +\xff\xea\xea\xea\xff\xf4\xf4\xf4\xff\xf1\xf1\xf1\xff\xee\xee\xee\ +\xff\xea\xea\xea\xff\xe6\xe6\xe6\xff\xe2\xe2\xe2\xff\xde\xdd\xdd\ +\xff\xda\xda\xda\xff\xd6\xd5\xd5\xff\xc2\xc1\xc1\xfe\x93\x92\x92\ +\xf2\x53\x50\x52\xc4\x1f\x1c\x1e\x85\x04\x02\x03\x57\x00\x00\x00\ +\x44\x00\x00\x00\x3b\x00\x00\x00\x35\x00\x00\x00\x2e\x00\x00\x00\ +\x27\x00\x00\x00\x20\x00\x00\x00\x1a\x00\x00\x00\x14\x00\x00\x00\ +\x0f\x00\x00\x00\x0b\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\ +\x03\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x09\x00\x00\x00\x0d\x00\x00\x00\ +\x12\x00\x00\x00\x1a\x08\x06\x07\x30\x26\x23\x24\x66\x53\x50\x51\ +\xb3\x96\x94\x95\xf0\xc6\xc5\xc5\xfe\xd8\xd7\xd8\xff\xdc\xdb\xdc\ +\xff\xdf\xdf\xdf\xff\xe4\xe3\xe4\xff\xe9\xe8\xe8\xff\xed\xed\xed\ +\xff\xf1\xf0\xf0\xff\xf4\xf4\xf4\xff\xf7\xf6\xf7\xff\xf9\xf9\xf9\ +\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xed\xed\xed\xff\x78\x78\x78\xff\x14\x15\x15\xff\x34\x35\x35\ +\xff\x92\x92\x92\xff\xdf\xdf\xdf\xff\xf6\xf6\xf6\xff\xf5\xf5\xf5\ +\xff\xf2\xf1\xf1\xff\xee\xee\xee\xff\xea\xea\xea\xff\xe5\xe4\xe5\ +\xff\xe1\xe0\xe0\xff\xdd\xdc\xdc\xff\xda\xd9\xd9\xff\xcf\xce\xce\ +\xff\xa6\xa4\xa5\xf8\x67\x64\x65\xd4\x2b\x28\x29\x93\x08\x06\x07\ +\x5f\x00\x00\x00\x46\x00\x00\x00\x3c\x00\x00\x00\x36\x00\x00\x00\ +\x2f\x00\x00\x00\x28\x00\x00\x00\x20\x00\x00\x00\x1a\x00\x00\x00\ +\x14\x00\x00\x00\x0f\x00\x00\x00\x0b\x00\x00\x00\x07\x00\x00\x00\ +\x05\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x08\x00\x00\x00\x0c\x00\x00\x00\x11\x00\x00\x00\ +\x1a\x0b\x09\x09\x34\x32\x2f\x2f\x72\x68\x66\x66\xc0\x9e\x9c\x9d\ +\xf3\xcb\xca\xca\xff\xda\xd9\xd9\xff\xde\xdd\xdd\xff\xe2\xe2\xe2\ +\xff\xe7\xe6\xe7\xff\xeb\xeb\xeb\xff\xf0\xf0\xf0\xff\xf4\xf3\xf3\ +\xff\xf7\xf6\xf6\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfa\xfa\xfa\xff\xbb\xbb\xbb\xff\x3f\x3f\x3f\xff\x05\x05\x05\ +\xff\x21\x22\x22\xff\x7d\x7e\x7e\xff\xda\xda\xdb\xff\xf8\xf7\xf7\ +\xff\xf8\xf8\xf8\xff\xf4\xf4\xf4\xff\xf1\xf1\xf1\xff\xed\xec\xec\ +\xff\xe8\xe8\xe8\xff\xe4\xe3\xe3\xff\xdf\xde\xdf\xff\xdb\xda\xda\ +\xff\xd3\xd2\xd3\xff\xb3\xb2\xb3\xfb\x77\x76\x76\xdc\x36\x34\x35\ +\x9e\x0a\x09\x09\x64\x00\x00\x00\x47\x00\x00\x00\x3d\x00\x00\x00\ +\x36\x00\x00\x00\x2f\x00\x00\x00\x27\x00\x00\x00\x20\x00\x00\x00\ +\x19\x00\x00\x00\x13\x00\x00\x00\x0e\x00\x00\x00\x0a\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x08\x00\x00\x00\x0c\x00\x00\x00\x10\x00\x00\x00\x19\x0c\x0a\x0b\ +\x35\x35\x32\x32\x76\x72\x70\x70\xca\xad\xac\xac\xf6\xd0\xcf\xd0\ +\xff\xdc\xdb\xdb\xff\xe0\xdf\xdf\xff\xe5\xe4\xe4\xff\xe9\xe9\xe9\ +\xff\xee\xee\xee\xff\xf2\xf2\xf2\xff\xf6\xf6\xf6\xff\xf9\xf8\xf9\ +\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xf4\xf4\xf4\xff\xa8\xa8\xa8\xff\x31\x32\x31\ +\xff\x03\x03\x03\xff\x19\x1a\x1a\xff\x73\x73\x73\xff\xd2\xd1\xd1\ +\xff\xf9\xf9\xf9\xff\xfa\xfa\xfa\xff\xf7\xf7\xf7\xff\xf4\xf3\xf3\ +\xff\xf0\xef\xef\xff\xeb\xea\xeb\xff\xe6\xe5\xe5\xff\xe1\xe1\xe1\ +\xff\xdd\xdc\xdc\xff\xd7\xd6\xd7\xff\xbe\xbd\xbe\xfc\x83\x82\x83\ +\xe2\x3b\x39\x3a\xa4\x0b\x09\x09\x65\x00\x00\x00\x48\x00\x00\x00\ +\x3d\x00\x00\x00\x36\x00\x00\x00\x2e\x00\x00\x00\x27\x00\x00\x00\ +\x1f\x00\x00\x00\x18\x00\x00\x00\x12\x00\x00\x00\x0d\x00\x00\x00\ +\x09\x00\x00\x00\x06\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x00\ +\x0b\x00\x00\x00\x0f\x00\x00\x00\x17\x0c\x0a\x0a\x32\x3a\x36\x37\ +\x77\x76\x75\x75\xcc\xb3\xb2\xb2\xf9\xd4\xd3\xd4\xff\xdd\xdc\xdc\ +\xff\xe1\xe1\xe1\xff\xe7\xe6\xe6\xff\xec\xeb\xec\xff\xf0\xf0\xf0\ +\xff\xf5\xf4\xf5\xff\xf8\xf8\xf8\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf1\xf1\xf1\xff\x98\x98\x98\ +\xff\x25\x25\x25\xff\x00\x00\x00\xff\x10\x10\x10\xff\x5a\x5b\x5a\ +\xff\xc4\xc4\xc4\xff\xf6\xf6\xf6\xff\xfb\xfb\xfb\xff\xf9\xf9\xf9\ +\xff\xf6\xf5\xf5\xff\xf2\xf1\xf1\xff\xed\xed\xed\xff\xe8\xe8\xe8\ +\xff\xe3\xe2\xe2\xff\xde\xdd\xde\xff\xd9\xd9\xd9\xff\xc4\xc3\xc4\ +\xfd\x89\x88\x89\xe6\x3e\x3c\x3d\xa5\x0c\x0a\x0b\x66\x00\x00\x00\ +\x47\x00\x00\x00\x3c\x00\x00\x00\x35\x00\x00\x00\x2d\x00\x00\x00\ +\x25\x00\x00\x00\x1e\x00\x00\x00\x17\x00\x00\x00\x11\x00\x00\x00\ +\x0c\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00\x09\x00\x00\x00\ +\x0e\x00\x00\x00\x15\x08\x06\x07\x2b\x36\x33\x34\x70\x77\x75\x76\ +\xc9\xb4\xb3\xb3\xf8\xd6\xd5\xd5\xff\xde\xdd\xde\xff\xe3\xe2\xe2\ +\xff\xe8\xe8\xe8\xff\xee\xed\xed\xff\xf2\xf1\xf2\xff\xf6\xf5\xf6\ +\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe4\xe4\xe4\ +\xff\x75\x75\x75\xff\x11\x11\x11\xff\x00\x00\x00\xff\x09\x09\x09\ +\xff\x44\x45\x45\xff\xa2\xa2\xa2\xff\xdd\xdd\xdd\xff\xf5\xf5\xf5\ +\xff\xfa\xfa\xfa\xff\xf7\xf7\xf7\xff\xf3\xf3\xf3\xff\xee\xee\xee\ +\xff\xea\xe9\xe9\xff\xe5\xe4\xe4\xff\xdf\xdf\xdf\xff\xda\xd9\xda\ +\xff\xc6\xc5\xc5\xfd\x8b\x89\x8a\xe4\x3d\x3b\x3c\xa1\x09\x07\x08\ +\x61\x00\x00\x00\x45\x00\x00\x00\x3b\x00\x00\x00\x34\x00\x00\x00\ +\x2c\x00\x00\x00\x24\x00\x00\x00\x1c\x00\x00\x00\x16\x00\x00\x00\ +\x10\x00\x00\x00\x0b\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x08\x00\x00\x00\x0c\x00\x00\x00\ +\x12\x05\x03\x03\x24\x2b\x28\x29\x61\x71\x6f\x70\xc3\xb4\xb3\xb3\ +\xf7\xd7\xd6\xd6\xff\xdf\xdf\xdf\xff\xe4\xe3\xe4\xff\xe9\xe9\xe9\ +\xff\xef\xee\xee\xff\xf3\xf3\xf3\xff\xf7\xf7\xf7\xff\xfa\xf9\xfa\ +\xff\xfc\xfb\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfd\xfd\ +\xff\xca\xcb\xcb\xff\x4b\x4c\x4c\xff\x04\x04\x04\xff\x00\x00\x00\ +\xff\x03\x04\x04\xff\x22\x22\x22\xff\x59\x59\x59\xff\x9e\x9f\x9f\ +\xff\xdb\xdc\xdc\xff\xf6\xf5\xf5\xff\xf8\xf8\xf8\xff\xf4\xf4\xf4\ +\xff\xf0\xf0\xf0\xff\xeb\xea\xea\xff\xe5\xe5\xe5\xff\xe0\xe0\xe0\ +\xff\xdc\xdb\xdb\xff\xc7\xc6\xc6\xfd\x87\x86\x87\xe0\x35\x33\x34\ +\x98\x05\x03\x03\x5a\x00\x00\x00\x43\x00\x00\x00\x3a\x00\x00\x00\ +\x32\x00\x00\x00\x2a\x00\x00\x00\x22\x00\x00\x00\x1a\x00\x00\x00\ +\x13\x00\x00\x00\x0e\x00\x00\x00\x0a\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x00\x00\x00\x07\x00\x00\x00\x0b\x00\x00\x00\x10\x01\x00\x00\ +\x1c\x20\x1d\x1e\x50\x63\x61\x62\xb5\xb0\xaf\xaf\xf7\xd8\xd7\xd7\ +\xff\xe0\xe0\xe0\xff\xe5\xe4\xe4\xff\xea\xe9\xe9\xff\xef\xef\xef\ +\xff\xf4\xf4\xf4\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\ +\xff\xfe\xfd\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xf7\xf7\xf7\xff\xa6\xa6\xa8\xff\x24\x24\x25\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x04\x04\x04\xff\x19\x1a\x1a\ +\xff\x55\x55\x56\xff\xb4\xb4\xb4\xff\xf2\xf2\xf2\xff\xf9\xf9\xf9\ +\xff\xf5\xf5\xf5\xff\xf1\xf0\xf0\xff\xec\xeb\xeb\xff\xe6\xe6\xe6\ +\xff\xe1\xe1\xe1\xff\xdd\xdc\xdc\xff\xc5\xc5\xc5\xfc\x7f\x7d\x7d\ +\xda\x2b\x29\x29\x8b\x04\x03\x03\x53\x00\x00\x00\x40\x00\x00\x00\ +\x38\x00\x00\x00\x30\x00\x00\x00\x28\x00\x00\x00\x1f\x00\x00\x00\ +\x18\x00\x00\x00\x12\x00\x00\x00\x0c\x00\x00\x00\x08\x00\x00\x00\ +\x05\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x06\x00\x00\x00\x09\x00\x00\x00\x0e\x00\x00\x00\x16\x15\x11\x13\ +\x3e\x57\x54\x56\xa1\xa4\xa2\xa3\xf1\xd7\xd6\xd6\xff\xe1\xe0\xe0\ +\xff\xe5\xe5\xe5\xff\xeb\xea\xeb\xff\xf0\xef\xef\xff\xf4\xf4\xf4\ +\xff\xf8\xf8\xf8\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xe9\xe9\xea\xff\x74\x75\x75\xff\x10\x10\x11\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x09\x09\x09\xff\x6a\x6a\x6a\xff\xe4\xe4\xe4\xff\xfa\xfa\xfa\ +\xff\xf7\xf7\xf7\xff\xf3\xf3\xf3\xff\xef\xee\xee\xff\xe9\xe9\xe9\ +\xff\xe3\xe3\xe3\xff\xde\xde\xde\xff\xda\xd9\xd9\xff\xbe\xbd\xbd\ +\xfa\x6a\x69\x69\xcd\x1d\x1b\x1c\x7b\x00\x00\x00\x4b\x00\x00\x00\ +\x3e\x00\x00\x00\x36\x00\x00\x00\x2d\x00\x00\x00\x25\x00\x00\x00\ +\x1d\x00\x00\x00\x16\x00\x00\x00\x0f\x00\x00\x00\x0a\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\ +\x07\x00\x00\x00\x0c\x00\x00\x00\x12\x06\x03\x03\x2b\x42\x3f\x40\ +\x84\x99\x97\x98\xe7\xd4\xd3\xd3\xff\xe2\xe1\xe1\xff\xe5\xe5\xe5\ +\xff\xea\xea\xea\xff\xf0\xef\xef\xff\xf4\xf4\xf4\xff\xf8\xf8\xf8\ +\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xd5\xd5\xd6\xff\x5c\x5c\x5d\ +\xff\x0a\x0a\x0a\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x05\x05\x05\xff\x4f\x4f\x4f\xff\xb2\xb2\xb2\xff\xc6\xc7\xc7\ +\xff\xbb\xbb\xbb\xff\xb4\xb4\xb4\xff\xaf\xaf\xaf\xff\xa4\xa4\xa4\ +\xff\x9b\x9b\x9b\xff\x96\x95\x95\xff\x8d\x8d\x8d\xff\x89\x89\x8a\ +\xff\x61\x60\x61\xf7\x28\x26\x26\xba\x0b\x08\x09\x67\x00\x00\x00\ +\x45\x00\x00\x00\x3c\x00\x00\x00\x33\x00\x00\x00\x2a\x00\x00\x00\ +\x22\x00\x00\x00\x1a\x00\x00\x00\x13\x00\x00\x00\x0d\x00\x00\x00\ +\x09\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00\ +\x09\x00\x00\x00\x0f\x04\x02\x03\x1f\x2f\x2b\x2c\x60\x82\x81\x81\ +\xd2\xcd\xcd\xcd\xfe\xe2\xe1\xe1\xff\xe6\xe5\xe5\xff\xea\xea\xea\ +\xff\xef\xef\xef\xff\xf4\xf4\xf4\xff\xf8\xf8\xf8\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xf7\xf7\xf7\ +\xff\xe3\xe4\xe4\xff\xd6\xd6\xd6\xff\xe2\xe2\xe2\xff\xf8\xf8\xf8\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfd\xfd\xff\xc7\xc7\xc7\ +\xff\x3a\x3a\x3a\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x11\x11\x11\xff\x2d\x2e\x2e\xff\x34\x35\x35\ +\xff\x2a\x2a\x2a\xff\x24\x25\x24\xff\x23\x23\x23\xff\x1c\x1d\x1c\ +\xff\x18\x18\x18\xff\x17\x17\x17\xff\x12\x13\x13\xff\x11\x12\x12\ +\xff\x0d\x0e\x0e\xff\x0d\x0c\x0c\xee\x18\x15\x16\x9f\x07\x05\x05\ +\x57\x00\x00\x00\x41\x00\x00\x00\x39\x00\x00\x00\x30\x00\x00\x00\ +\x27\x00\x00\x00\x1f\x00\x00\x00\x17\x00\x00\x00\x10\x00\x00\x00\ +\x0b\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x00\ +\x0c\x00\x00\x00\x15\x20\x1c\x1e\x42\x6a\x68\x69\xab\xbd\xbc\xbc\ +\xf7\xe0\xe0\xe0\xff\xe5\xe4\xe5\xff\xea\xe9\xe9\xff\xef\xef\xef\ +\xff\xf4\xf3\xf3\xff\xf8\xf7\xf8\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xf3\xf3\xf3\xff\xe3\xe3\xe2\xff\xd3\xd3\xd3\xff\xa7\xa7\xa7\ +\xff\x69\x6a\x6a\xff\x4e\x4d\x4e\xff\x66\x65\x66\xff\xb3\xb3\xb3\ +\xff\xf7\xf8\xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xef\xef\xef\ +\xff\x6c\x6d\x6d\xff\x03\x03\x03\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x0f\x0e\x0e\xd9\x13\x10\x11\ +\x7f\x02\x01\x01\x4c\x00\x00\x00\x3e\x00\x00\x00\x35\x00\x00\x00\ +\x2c\x00\x00\x00\x23\x00\x00\x00\x1b\x00\x00\x00\x14\x00\x00\x00\ +\x0e\x00\x00\x00\x09\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00\x09\x00\x00\x00\ +\x0f\x09\x07\x07\x28\x4d\x49\x4b\x80\xa2\xa2\xa2\xe4\xdb\xdb\xdb\ +\xff\xe5\xe4\xe5\xff\xe9\xe8\xe9\xff\xee\xee\xee\xff\xf3\xf3\xf3\ +\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf7\xf7\xf7\ +\xff\xb0\xb0\xb0\xff\x62\x62\x62\xff\x4b\x4b\x4b\xff\x28\x28\x29\ +\xff\x13\x13\x13\xff\x0f\x0f\x0f\xff\x09\x09\x09\xff\x3f\x40\x40\ +\xff\xd5\xd6\xd6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\xf8\xf8\ +\xff\x8c\x8c\x8c\xff\x07\x08\x08\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x03\x03\x03\xf8\x13\x11\x12\ +\xb8\x0d\x0c\x0c\x65\x00\x00\x00\x44\x00\x00\x00\x3a\x00\x00\x00\ +\x31\x00\x00\x00\x28\x00\x00\x00\x1f\x00\x00\x00\x17\x00\x00\x00\ +\x11\x00\x00\x00\x0b\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x00\x0c\x00\x00\x00\ +\x17\x29\x27\x27\x52\x81\x80\x81\xc3\xcc\xcc\xcc\xfb\xe4\xe3\xe4\ +\xff\xe8\xe7\xe8\xff\xed\xec\xed\xff\xf2\xf2\xf2\xff\xf7\xf6\xf6\ +\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf7\xf7\xf7\ +\xff\x99\x99\x99\xff\x22\x22\x22\xff\x0e\x0f\x0f\xff\x31\x31\x31\ +\xff\x6d\x6d\x6d\xff\x7c\x7c\x7c\xff\x44\x44\x44\xff\x35\x36\x35\ +\xff\xc8\xc8\xc8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xa9\xa9\xa9\xff\x12\x13\x13\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x08\x07\x08\ +\xe6\x13\x11\x12\x92\x05\x04\x04\x51\x00\x00\x00\x3e\x00\x00\x00\ +\x36\x00\x00\x00\x2d\x00\x00\x00\x23\x00\x00\x00\x1b\x00\x00\x00\ +\x14\x00\x00\x00\x0d\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x06\x00\x00\x00\x09\x00\x00\x00\x0f\x0e\x0b\x0b\ +\x2c\x5c\x5b\x5b\x8f\xb5\xb4\xb5\xec\xe0\xdf\xe0\xff\xe7\xe7\xe7\ +\xff\xec\xeb\xeb\xff\xf1\xf0\xf0\xff\xf5\xf5\xf5\xff\xf9\xf9\xf9\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfd\xfd\ +\xff\xde\xde\xdf\xff\x95\x96\x95\xff\x7f\x80\x7f\xff\xb3\xb3\xb3\ +\xff\xe5\xe5\xe5\xff\xee\xee\xee\xff\xc8\xc8\xc8\xff\xaf\xb0\xb0\ +\xff\xec\xec\xec\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xc8\xc8\xc8\xff\x2a\x2b\x2b\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xfa\x0d\x0c\x0c\xc5\x0d\x0b\x0c\x6d\x00\x00\x00\x45\x00\x00\x00\ +\x3a\x00\x00\x00\x31\x00\x00\x00\x28\x00\x00\x00\x1f\x00\x00\x00\ +\x17\x00\x00\x00\x10\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x07\x00\x00\x00\x0b\x01\x00\x00\x17\x35\x32\x34\ +\x55\x95\x93\x94\xcb\xd7\xd6\xd6\xfc\xe7\xe6\xe6\xff\xea\xea\xea\ +\xff\xef\xee\xef\xff\xf4\xf3\xf3\xff\xf8\xf8\xf8\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfd\xfd\xfd\xff\xf3\xf3\xf3\xff\xee\xef\xee\xff\xfa\xfa\xfa\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xfb\xfb\xfb\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xe0\xe0\xe0\xff\x47\x47\x48\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfe\x06\x05\x05\xe9\x13\x12\x12\x98\x05\x04\x05\x51\x00\x00\x00\ +\x3e\x00\x00\x00\x35\x00\x00\x00\x2c\x00\x00\x00\x22\x00\x00\x00\ +\x1a\x00\x00\x00\x12\x00\x00\x00\x0c\x00\x00\x00\x08\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x08\x00\x00\x00\x0d\x14\x0f\x12\x2a\x67\x64\x66\ +\x8f\xc0\xbe\xbf\xef\xe5\xe4\xe4\xff\xe9\xe9\xe9\xff\xee\xed\xed\ +\xff\xf2\xf2\xf2\xff\xf7\xf6\xf7\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xf1\xf1\xf1\xff\x68\x69\x69\xff\x02\x03\x03\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xfa\x0d\x0d\x0d\xc7\x0d\x0c\x0d\x6a\x00\x00\x00\ +\x45\x00\x00\x00\x39\x00\x00\x00\x30\x00\x00\x00\x27\x00\x00\x00\ +\x1d\x00\x00\x00\x15\x00\x00\x00\x0f\x00\x00\x00\x0a\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x06\x00\x00\x00\x09\x00\x00\x00\x13\x3b\x37\x39\x4f\x95\x94\x94\ +\xc5\xd9\xd8\xd8\xfd\xe9\xe8\xe8\xff\xec\xec\xec\xff\xf1\xf0\xf0\ +\xff\xf6\xf5\xf5\xff\xfa\xf9\xf9\xff\xfc\xfc\xfc\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfd\xfd\ +\xff\xfa\xfa\xfa\xff\xf9\xf9\xf9\xff\xfd\xfd\xfd\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfa\xfa\xfa\xff\x96\x96\x96\xff\x13\x13\x13\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x08\x07\x07\xea\x13\x12\x12\x93\x03\x02\x02\ +\x50\x00\x00\x00\x3d\x00\x00\x00\x34\x00\x00\x00\x2a\x00\x00\x00\ +\x21\x00\x00\x00\x18\x00\x00\x00\x11\x00\x00\x00\x0b\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\ +\x07\x00\x00\x00\x0b\x0d\x0a\x0a\x21\x65\x61\x63\x7f\xba\xb8\xb9\ +\xe9\xe6\xe5\xe5\xff\xec\xeb\xeb\xff\xef\xef\xef\xff\xf3\xf3\xf3\ +\xff\xf8\xf8\xf8\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xf5\xf5\xf5\xff\xd1\xd1\xd2\ +\xff\xa2\xa3\xa3\xff\x9e\x9f\x9f\xff\xd8\xd9\xd9\xff\xfc\xfc\xfc\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xf8\xf8\xf9\xff\xf4\xf4\xf4\ +\xff\xf3\xf3\xf3\xff\xf5\xf5\xf5\xff\xf9\xf9\xf9\xff\xfc\xfc\xfc\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfa\xfa\xfa\xff\xf2\xf2\xf2\xff\xf6\xf6\xf6\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfb\xfb\xfb\ +\xff\xf7\xf7\xf7\xff\xf1\xf1\xf1\xff\xee\xee\xee\xff\xf1\xf1\xf1\ +\xff\xf8\xf8\xf8\xff\xb7\xb8\xb7\xff\x26\x26\x26\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x01\x02\xf9\x0e\x0c\x0d\xbc\x0d\x0b\x0c\ +\x64\x00\x00\x00\x41\x00\x00\x00\x37\x00\x00\x00\x2e\x00\x00\x00\ +\x24\x00\x00\x00\x1b\x00\x00\x00\x13\x00\x00\x00\x0d\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\ +\x08\x00\x00\x00\x0f\x1b\x19\x19\x3c\x5f\x5d\x5e\xb2\xb8\xb7\xb7\ +\xfa\xe7\xe7\xe7\xff\xee\xed\xee\xff\xf2\xf1\xf1\xff\xf6\xf5\xf5\ +\xff\xfa\xf9\xf9\xff\xfc\xfc\xfc\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfe\xfe\xfe\xff\xe3\xe3\xe3\xff\x9b\x9b\x9b\xff\x47\x47\x47\ +\xff\x19\x19\x19\xff\x1a\x1b\x1b\xff\x82\x83\x83\xff\xee\xee\xee\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\xf9\xf9\ +\xff\xe0\xe0\xe0\xff\xbc\xbc\xbc\xff\x9f\x9f\x9f\xff\x8b\x8c\x8c\ +\xff\x87\x88\x88\xff\x90\x90\x91\xff\x9e\x9e\x9e\xff\xad\xad\xad\ +\xff\xbb\xbb\xbb\xff\xc1\xc2\xc2\xff\xc4\xc4\xc4\xff\xc3\xc3\xc3\ +\xff\xbe\xbe\xbe\xff\xa7\xa7\xa8\xff\x83\x84\x84\xff\x96\x97\x97\ +\xff\xbc\xbd\xbd\xff\xc0\xc0\xc0\xff\xbb\xbb\xbb\xff\xac\xac\xac\ +\xff\x97\x97\x97\xff\x81\x81\x81\xff\x76\x76\x76\xff\x7e\x7f\x7f\ +\xff\x9c\x9c\x9c\xff\x80\x81\x80\xff\x1c\x1c\x1c\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x07\x07\x07\xde\x0d\x0c\x0c\ +\x81\x02\x02\x02\x48\x00\x00\x00\x3a\x00\x00\x00\x31\x00\x00\x00\ +\x27\x00\x00\x00\x1e\x00\x00\x00\x16\x00\x00\x00\x0f\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x09\x09\x08\x08\x15\x1c\x1a\x1b\x61\x24\x24\x23\xd8\x70\x70\x70\ +\xff\xd9\xd8\xd8\xff\xf1\xf0\xf0\xff\xf4\xf4\xf4\xff\xf8\xf8\xf8\ +\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xde\xde\xde\xff\x7a\x7a\x7a\xff\x21\x21\x21\xff\x03\x03\x03\ +\xff\x01\x01\x01\xff\x15\x15\x15\xff\x80\x81\x81\xff\xed\xed\xed\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf5\xf5\xf5\xff\xb5\xb6\xb6\ +\xff\x64\x64\x64\xff\x31\x31\x31\xff\x1a\x1b\x1b\xff\x11\x12\x12\ +\xff\x10\x10\x11\xff\x13\x13\x14\xff\x19\x19\x19\xff\x22\x22\x22\ +\xff\x2d\x2e\x2e\xff\x34\x36\x36\xff\x37\x38\x38\xff\x36\x36\x36\ +\xff\x32\x32\x32\xff\x22\x22\x22\xff\x0f\x0f\x10\xff\x19\x19\x19\ +\xff\x30\x31\x30\xff\x33\x33\x33\xff\x2e\x2e\x2d\xff\x21\x21\x21\ +\xff\x16\x16\x16\xff\x0e\x0e\x0e\xff\x0a\x0a\x0a\xff\x0d\x0d\x0d\ +\xff\x18\x19\x18\xff\x16\x17\x16\xff\x04\x04\x04\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\xf2\x0d\x0b\x0c\ +\xa5\x06\x06\x06\x55\x00\x00\x00\x3d\x00\x00\x00\x34\x00\x00\x00\ +\x2a\x00\x00\x00\x20\x00\x00\x00\x18\x00\x00\x00\x11\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x10\x0c\x0f\x22\x13\x12\x12\x8b\x09\x09\x09\xf1\x4d\x4d\x4e\ +\xff\xd1\xd1\xd1\xff\xf4\xf4\xf4\xff\xf7\xf7\xf7\xff\xfb\xfa\xfa\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xe2\xe2\xe2\ +\xff\x73\x73\x73\xff\x15\x16\x16\xff\x00\x00\x00\xff\x02\x02\x02\ +\xff\x28\x28\x28\xff\x7c\x7c\x7c\xff\xd5\xd5\xd5\xff\xfb\xfb\xfb\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfb\xfb\xfb\xff\xb4\xb5\xb5\xff\x3c\x3c\x3c\ +\xff\x08\x08\x08\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x04\ +\xff\x01\x00\x06\xff\x01\x01\x0d\xff\x00\x00\x12\xff\x00\x00\x11\ +\xff\x00\x00\x11\xff\x00\x00\x12\xff\x00\x00\x12\xff\x00\x00\x12\ +\xff\x00\x00\x0d\xff\x00\x00\x05\xff\x00\x00\x03\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x00\x01\xfc\x08\x06\x07\ +\xc6\x09\x07\x08\x67\x00\x00\x00\x41\x00\x00\x00\x37\x00\x00\x00\ +\x2d\x00\x00\x00\x23\x00\x00\x00\x1a\x00\x00\x00\x13\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x07\x01\x00\x01\ +\x0d\x1a\x16\x18\x39\x0f\x0e\x0e\xb7\x07\x07\x07\xfd\x5b\x5b\x5c\ +\xff\xce\xcf\xcf\xff\xe6\xe6\xe6\xff\xe9\xe9\xe9\xff\xec\xec\xec\ +\xff\xee\xee\xee\xff\xef\xef\xef\xff\xf0\xf0\xf0\xff\xf0\xf0\xf0\ +\xff\xf0\xf0\xf0\xff\xef\xef\xef\xff\xd2\xd3\xd3\xff\x74\x75\x75\ +\xff\x14\x14\x14\xff\x00\x00\x00\xff\x00\x00\x00\xff\x27\x27\x27\ +\xff\x95\x95\x95\xff\xe8\xe8\xe8\xff\xfd\xfd\xfd\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfb\xfb\xfb\xff\xc1\xc1\xc1\xff\x43\x43\x43\xff\x04\x04\x04\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x02\xff\x00\x00\x08\xff\x00\x00\x10\xff\x00\x00\x1f\ +\xff\x00\x00\x2b\xff\x00\x00\x39\xff\x00\x00\x46\xff\x00\x00\x5b\ +\xff\x00\x00\x5e\xff\x00\x00\x69\xff\x00\x00\x79\xff\x00\x00\x7e\ +\xff\x00\x00\x7e\xff\x00\x00\x7e\xff\x00\x00\x7e\xff\x00\x00\x7e\ +\xff\x00\x00\x70\xff\x00\x00\x5d\xff\x00\x00\x4e\xff\x00\x00\x37\ +\xff\x01\x01\x24\xff\x00\x00\x11\xff\x00\x00\x06\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x06\x05\x06\ +\xe1\x0f\x0d\x0e\x83\x02\x01\x02\x47\x00\x00\x00\x39\x00\x00\x00\ +\x2f\x00\x00\x00\x26\x00\x00\x00\x1c\x00\x00\x00\x15\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x07\x03\x02\x03\ +\x11\x15\x13\x14\x54\x0c\x0c\x0c\xd9\x03\x03\x03\xff\x2e\x2e\x2e\ +\xff\x68\x68\x68\xff\x73\x73\x73\xff\x74\x75\x75\xff\x75\x76\x76\ +\xff\x76\x77\x77\xff\x77\x77\x77\xff\x77\x78\x78\xff\x77\x78\x78\ +\xff\x77\x78\x78\xff\x74\x75\x74\xff\x50\x50\x50\xff\x15\x15\x15\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x0e\x0e\x0e\xff\x75\x75\x75\ +\xff\xe5\xe5\xe5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xfb\xfa\ +\xff\xc1\xc1\xc1\xff\x4b\x4b\x4b\xff\x07\x07\x07\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x0a\xff\x00\x00\x1b\xff\x01\x01\x31\ +\xff\x01\x01\x49\xff\x01\x01\x5f\xff\x00\x00\x74\xff\x00\x00\x8d\ +\xff\x00\x00\x9b\xff\x00\x00\xa4\xff\x00\x00\xb1\xff\x00\x00\xbc\ +\xff\x00\x00\xbd\xff\x00\x00\xbf\xff\x00\x00\xc4\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc2\xff\x00\x00\xbc\xff\x00\x00\xb5\xff\x00\x00\xa5\ +\xff\x00\x00\x93\xff\x00\x00\x79\xff\x00\x00\x55\xff\x00\x00\x27\ +\xff\x00\x00\x08\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x04\x04\x04\ +\xf2\x0c\x0a\x0b\x9d\x03\x02\x03\x4e\x00\x00\x00\x3c\x00\x00\x00\ +\x32\x00\x00\x00\x28\x00\x00\x00\x1e\x00\x00\x00\x17\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\x08\x0d\x0b\x0c\ +\x18\x15\x13\x14\x75\x07\x07\x07\xef\x00\x00\x00\xff\x04\x04\x04\ +\xff\x0a\x0a\x0a\xff\x0c\x0c\x0c\xff\x0c\x0c\x0c\xff\x0c\x0c\x0c\ +\xff\x0c\x0c\x0c\xff\x0c\x0c\x0c\xff\x0c\x0c\x0c\xff\x0c\x0c\x0c\ +\xff\x0c\x0c\x0c\xff\x0b\x0b\x0b\xff\x05\x05\x05\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x05\x05\x05\xff\x4c\x4d\x4c\xff\xcd\xce\xce\ +\xff\xfd\xfd\xfd\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xc4\xc4\xc4\ +\xff\x4c\x4c\x4c\xff\x08\x08\x08\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x07\xff\x00\x00\x1f\ +\xff\x00\x00\x46\xff\x00\x00\x6c\xff\x01\x01\x8d\xff\x00\x00\xa7\ +\xff\x00\x00\xb6\xff\x00\x00\xbd\xff\x00\x00\xc3\xff\x00\x00\xc8\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xc6\xff\x00\x00\xb8\xff\x00\x00\x98\ +\xff\x00\x00\x60\xff\x00\x00\x23\xff\x00\x00\x03\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfc\x0b\x0a\x0a\xb9\x0a\x09\x09\x5b\x00\x00\x00\x3e\x00\x00\x00\ +\x34\x00\x00\x00\x2a\x00\x00\x00\x20\x00\x00\x00\x18\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x09\x15\x12\x14\ +\x24\x1a\x18\x19\x9a\x03\x03\x03\xf9\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x29\x2a\x2a\xff\xaf\xb0\xaf\xff\xfb\xfb\xfb\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf0\xf0\xf0\xff\xd2\xd2\xd2\ +\xff\xdf\xe0\xe0\xff\xf0\xf0\xf0\xff\xc5\xc5\xc5\xff\x51\x51\x51\ +\xff\x09\x09\x08\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0b\ +\xff\x00\x00\x26\xff\x00\x00\x4a\xff\x00\x00\x73\xff\x00\x00\x9f\ +\xff\x00\x00\xba\xff\x00\x00\xc6\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xc2\xff\x00\x00\x99\xff\x01\x01\x4e\xff\x00\x00\x19\ +\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x0e\x0d\x0e\xd4\x0f\x0e\x0f\x6c\x00\x00\x00\x41\x00\x00\x00\ +\x36\x00\x00\x00\x2b\x00\x00\x00\x22\x00\x00\x00\x1a\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00\x0a\x17\x15\x16\ +\x32\x1a\x1a\x1a\xba\x02\x02\x02\xfe\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x04\x04\x04\xff\x5b\x5c\x5c\xff\xe5\xe5\xe5\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xf3\xf4\xf4\xff\x97\x97\x97\xff\x3a\x3a\x3a\ +\xff\x4d\x4f\x4f\xff\x69\x6a\x6a\xff\x3f\x3f\x3f\xff\x0a\x0b\x0c\ +\xff\x00\x00\x06\xff\x00\x00\x19\xff\x00\x00\x47\xff\x01\x01\x6f\ +\xff\x00\x00\x9d\xff\x00\x00\xbb\xff\x00\x00\xc8\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xb8\xff\x01\x01\x84\ +\xff\x00\x00\x3d\xff\x00\x00\x0e\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x07\x06\x07\xe6\x0a\x08\x09\x7c\x00\x00\x00\x43\x00\x00\x00\ +\x37\x00\x00\x00\x2d\x00\x00\x00\x23\x00\x00\x00\x1b\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00\x0c\x18\x16\x17\ +\x46\x10\x0f\x10\xd1\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x0b\x0b\x0b\xff\x7f\x7f\x7f\xff\xf4\xf4\xf4\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfd\xfd\xfd\xff\xb9\xb9\xb9\xff\x31\x32\x31\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x03\x03\x05\xff\x01\x01\x0d\xff\x00\x00\x2d\ +\xff\x00\x00\x5c\xff\x00\x00\x8b\xff\x00\x00\xb8\xff\x00\x00\xc6\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xc8\ +\xff\x00\x00\xab\xff\x00\x00\x63\xff\x00\x00\x1c\xff\x00\x00\x02\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xf3\x0b\x08\x09\x8e\x03\x02\x02\x48\x00\x00\x00\ +\x39\x00\x00\x00\x2f\x00\x00\x00\x25\x00\x00\x00\x1c\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x06\x04\x04\x04\x0e\x24\x23\x24\ +\x5c\x0a\x0a\x0a\xe2\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x0d\x0d\x0d\xff\x89\x89\x89\xff\xf7\xf7\xf7\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xfc\xfc\ +\xff\xd0\xd0\xd0\xff\x4b\x4b\x4b\xff\x04\x04\x04\xff\x00\x00\x03\ +\xff\x00\x00\x11\xff\x00\x00\x32\xff\x00\x00\x68\xff\x00\x00\xa3\ +\xff\x00\x00\xc1\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcd\xff\x00\x00\xbe\xff\x00\x00\x76\xff\x00\x00\x24\ +\xff\x00\x00\x03\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xfa\x14\x12\x13\xa5\x07\x06\x07\x4f\x00\x00\x00\ +\x3a\x00\x00\x00\x30\x00\x00\x00\x26\x00\x00\x00\x1d\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x06\x06\x04\x06\x11\x26\x24\x25\ +\x72\x09\x09\x09\xee\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x06\x06\x06\xff\x67\x67\x67\xff\xe7\xe7\xe7\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xfc\xfc\xff\xd0\xd0\xd0\ +\xff\x61\x61\x61\xff\x0c\x0c\x0d\xff\x00\x00\x13\xff\x00\x00\x3f\ +\xff\x00\x00\x6f\xff\x00\x00\xa1\xff\x00\x00\xc0\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xb9\xff\x01\x01\x76\ +\xff\x00\x00\x21\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xfc\x15\x14\x14\xb7\x09\x07\x08\x55\x00\x00\x00\ +\x3a\x00\x00\x00\x31\x00\x00\x00\x26\x00\x00\x00\x1d\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x08\x06\x07\x13\x20\x1e\x1e\ +\x82\x08\x08\x08\xf5\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x27\x27\x27\xff\x8b\x8c\x8c\xff\xd8\xd8\xd8\ +\xff\xf0\xf0\xf0\xff\xe8\xe8\xe8\xff\xb8\xb8\xb7\xff\x5b\x5b\x5b\ +\xff\x10\x10\x1a\xff\x00\x00\x31\xff\x00\x00\x6d\xff\x00\x00\xa6\ +\xff\x00\x00\xc2\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xbd\ +\xff\x00\x00\x6c\xff\x00\x00\x11\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xfe\x10\x0f\x0f\xc4\x08\x07\x07\x5a\x00\x00\x00\ +\x3b\x00\x00\x00\x31\x00\x00\x00\x27\x00\x00\x00\x1e\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x0a\x06\x08\x15\x18\x17\x17\ +\x8e\x06\x06\x06\xfa\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xff\x19\x19\x19\xff\x4a\x4a\x4a\ +\xff\x6c\x6c\x6b\xff\x5e\x5e\x5d\xff\x2f\x2f\x33\xff\x0a\x0a\x31\ +\xff\x01\x01\x67\xff\x00\x00\xa4\xff\x00\x00\xc2\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xce\ +\xff\x00\x00\xb5\xff\x00\x00\x42\xff\x00\x00\x02\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x09\x09\x09\xce\x06\x05\x05\x5d\x00\x00\x00\ +\x3b\x00\x00\x00\x32\x00\x00\x00\x27\x00\x00\x00\x1e\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x0b\x08\x09\x16\x0f\x0f\x0f\ +\x97\x04\x04\x04\xfd\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x03\x03\x03\ +\xff\x08\x08\x0a\xff\x06\x06\x1c\xff\x01\x01\x4c\xff\x00\x00\x8e\ +\xff\x00\x00\xbd\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\x73\xff\x00\x00\x0c\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x03\x03\x03\xd6\x05\x03\x03\x60\x00\x00\x00\ +\x3b\x00\x00\x00\x32\x00\x00\x00\x27\x00\x00\x00\x1e\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x0b\x08\x08\x17\x07\x06\x06\ +\x9c\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x04\ +\xff\x00\x00\x2d\xff\x00\x00\x7a\xff\x00\x00\xb2\xff\x00\x00\xc7\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xcd\xff\x00\x00\x99\xff\x00\x00\x23\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x00\x00\xda\x04\x03\x03\x61\x00\x00\x00\ +\x3b\x00\x00\x00\x32\x00\x00\x00\x27\x00\x00\x00\x1e\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x0b\x09\x09\x16\x02\x02\x02\ +\xa0\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0e\xff\x00\x00\x48\ +\xff\x00\x00\x9c\xff\x00\x00\xc7\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xcd\xff\x00\x00\xb7\xff\x00\x00\x41\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x00\x00\xdd\x04\x02\x02\x62\x00\x00\x00\ +\x3b\x00\x00\x00\x32\x00\x00\x00\x27\x00\x00\x00\x1e\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x06\x0b\x09\x09\x16\x02\x02\x02\ +\xa0\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x02\xff\x00\x00\x21\xff\x01\x01\x6e\xff\x00\x00\xb3\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xcc\xff\x01\x01\xbe\xff\x01\x01\x57\xff\x00\x00\x06\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x00\x00\xdd\x04\x02\x02\x62\x00\x00\x00\ +\x3b\x00\x00\x00\x31\x00\x00\x00\x27\x00\x00\x00\x1e\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x06\x0c\x08\x08\x15\x03\x02\x02\ +\x9e\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x04\ +\xff\x00\x00\x31\xff\x00\x00\x85\xff\x00\x00\xc3\xff\x00\x00\xcd\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xcc\xff\x00\x00\xc6\xff\x01\x01\x63\xff\x00\x00\x08\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x00\x00\xdc\x04\x03\x03\x61\x00\x00\x00\ +\x3a\x00\x00\x00\x30\x00\x00\x00\x26\x00\x00\x00\x1d\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x05\x0b\x08\x09\x14\x08\x07\x08\ +\x99\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0b\xff\x00\x00\x3e\ +\xff\x00\x00\x9e\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc7\xff\x00\x00\xc1\xff\x00\x00\xb7\xff\x00\x00\xa8\ +\xff\x00\x00\x9c\xff\x00\x00\x99\xff\x00\x00\xb1\xff\x00\x00\xc8\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xcc\xff\x00\x00\xc8\xff\x01\x01\x60\xff\x00\x00\x06\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xd8\x04\x03\x03\x5e\x00\x00\x00\ +\x39\x00\x00\x00\x30\x00\x00\x00\x25\x00\x00\x00\x1c\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x05\x0a\x07\x08\x12\x10\x0f\x11\ +\x91\x04\x04\x04\xfc\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x12\xff\x01\x01\x50\xff\x01\x01\xa3\ +\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc1\xff\x00\x00\xaa\ +\xff\x00\x00\x8b\xff\x01\x01\x6f\xff\x01\x01\x53\xff\x00\x00\x3a\ +\xff\x00\x00\x2c\xff\x00\x00\x2d\xff\x00\x00\x79\xff\x00\x00\xc2\ +\xff\x00\x00\xcb\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xcc\xff\x00\x00\xc2\xff\x01\x01\x51\xff\x00\x00\x03\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x05\x04\x05\xd1\x05\x03\x04\x5b\x00\x00\x00\ +\x38\x00\x00\x00\x2e\x00\x00\x00\x24\x00\x00\x00\x1c\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x05\x08\x06\x08\x11\x19\x19\x1a\ +\x86\x06\x06\x07\xf8\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x10\xff\x01\x01\x56\xff\x01\x01\xa9\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xc9\ +\xff\x00\x00\xb6\xff\x00\x00\x94\xff\x00\x00\x6b\xff\x00\x00\x41\ +\xff\x00\x00\x21\xff\x00\x00\x0f\xff\x00\x00\x06\xff\x00\x00\x01\ +\xff\x00\x00\x04\xff\x00\x00\x30\xff\x00\x00\x95\xff\x00\x00\xc7\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xce\xff\x01\x01\xaf\xff\x00\x00\x38\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x0c\x0c\x0b\xc9\x07\x05\x06\x56\x00\x00\x00\ +\x37\x00\x00\x00\x2d\x00\x00\x00\x23\x00\x00\x00\x1b\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x05\x06\x05\x07\x0d\x27\x26\x26\ +\x77\x0a\x09\x09\xf2\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x14\ +\xff\x00\x00\x59\xff\x00\x00\xad\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xc2\xff\x00\x00\xa5\xff\x00\x00\x7f\ +\xff\x00\x00\x49\xff\x00\x00\x21\xff\x00\x00\x0d\xff\x00\x00\x02\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x23\xff\x00\x00\x89\xff\x00\x00\xc7\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\xc4\xff\x00\x00\x71\xff\x00\x00\x11\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xfd\x14\x14\x14\xbc\x09\x07\x08\x51\x00\x00\x00\ +\x35\x00\x00\x00\x2b\x00\x00\x00\x21\x00\x00\x00\x19\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x05\x04\x04\x03\x0a\x32\x31\x32\ +\x62\x0c\x0c\x0c\xea\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x13\xff\x00\x00\x58\ +\xff\x00\x00\xae\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xbb\ +\xff\x00\x00\x9d\xff\x00\x00\x6a\xff\x00\x00\x33\xff\x00\x00\x13\ +\xff\x00\x00\x04\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\ +\xff\x01\x01\x3e\xff\x01\x01\xaf\xff\x00\x00\xcd\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xba\xff\x00\x00\xb3\xff\x00\x00\xc5\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xb5\ +\xff\x00\x00\x76\xff\x00\x00\x23\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xfb\x18\x18\x18\xab\x09\x08\x09\x4a\x00\x00\x00\ +\x33\x00\x00\x00\x29\x00\x00\x00\x1f\x00\x00\x00\x18\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x08\x2e\x2c\x2d\ +\x49\x0f\x0f\x0f\xdb\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x0d\xff\x00\x00\x55\xff\x00\x00\xaa\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xbd\xff\x00\x00\x91\xff\x00\x00\x55\ +\xff\x00\x00\x2b\xff\x00\x00\x0d\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\ +\xff\x01\x01\x44\xff\x01\x01\xb2\xff\x00\x00\xcc\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x01\x01\x91\xff\x01\x01\x5f\xff\x00\x00\x9f\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcd\xff\x00\x00\xc1\xff\x01\x01\x93\xff\x01\x01\x4f\ +\xff\x00\x00\x16\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xf8\x15\x14\x15\x95\x07\x06\x07\x42\x00\x00\x00\ +\x32\x00\x00\x00\x27\x00\x00\x00\x1e\x00\x00\x00\x16\x00\x00\x00\ +\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x06\x21\x20\x21\ +\x32\x18\x17\x18\xc5\x03\x03\x03\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x07\xff\x00\x00\x48\xff\x01\x01\xad\xff\x00\x00\xcc\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xc3\ +\xff\x00\x00\xa1\xff\x00\x00\x54\xff\x00\x00\x19\xff\x00\x00\x04\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0a\ +\xff\x01\x01\x65\xff\x00\x00\xc2\xff\x00\x00\xcb\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\x98\xff\x00\x00\x2f\xff\x00\x00\x50\xff\x00\x00\xb7\ +\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xc6\ +\xff\x00\x00\xa8\xff\x00\x00\x5d\xff\x00\x00\x1a\xff\x00\x00\x04\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x04\x04\x04\xed\x0a\x09\x0a\x7a\x02\x01\x02\x3b\x00\x00\x00\ +\x2f\x00\x00\x00\x25\x00\x00\x00\x1c\x00\x00\x00\x14\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x05\x1f\x1e\x1f\ +\x20\x21\x21\x21\xa7\x06\x06\x06\xfd\x02\x02\x02\xff\x02\x02\x02\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x01\ +\xff\x00\x00\x2d\xff\x00\x00\x99\xff\x00\x00\xce\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xc3\xff\x00\x00\x9f\xff\x01\x01\x67\ +\xff\x00\x00\x2a\xff\x00\x00\x06\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x05\xff\x00\x00\x33\ +\xff\x01\x01\x9c\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcd\ +\xff\x00\x00\xb2\xff\x00\x00\x45\xff\x00\x00\x1e\xff\x00\x00\x8a\ +\xff\x00\x00\xc9\xff\x00\x00\xc1\xff\x00\x00\xa0\xff\x00\x00\x6e\ +\xff\x00\x00\x31\xff\x00\x00\x07\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\xff\x02\x02\x02\ +\xff\x0e\x0e\x0e\xdc\x0e\x0d\x0e\x68\x00\x00\x00\x37\x00\x00\x00\ +\x2d\x00\x00\x00\x23\x00\x00\x00\x1a\x00\x00\x00\x12\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x05\x1c\x1c\x1c\ +\x14\x22\x22\x22\x81\x09\x09\x09\xf6\x03\x03\x03\xff\x03\x03\x03\ +\xff\x02\x02\x02\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x0e\ +\xff\x01\x01\x71\xff\x01\x01\xc6\xff\x00\x00\xcb\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xb5\xff\x00\x00\x74\xff\x00\x00\x2f\xff\x00\x00\x0a\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x05\ +\xff\x00\x00\x0f\xff\x00\x00\x26\xff\x00\x00\x4c\xff\x00\x00\x96\ +\xff\x00\x00\xc5\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\xbb\xff\x00\x00\x57\xff\x00\x00\x0d\xff\x00\x00\x4f\ +\xff\x00\x00\x86\xff\x00\x00\x66\xff\x00\x00\x30\xff\x00\x00\x0b\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x03\x03\x03\xff\x03\x03\x03\xff\x04\x04\x04\ +\xfe\x13\x12\x12\xc4\x12\x11\x11\x56\x00\x00\x00\x34\x00\x00\x00\ +\x2a\x00\x00\x00\x20\x00\x00\x00\x18\x00\x00\x00\x10\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x04\x11\x0f\x10\ +\x0b\x1f\x1d\x1e\x58\x0f\x0f\x0f\xe6\x05\x05\x05\xff\x04\x04\x04\ +\xff\x03\x03\x03\xff\x02\x02\x02\xff\x01\x01\x00\xff\x01\x01\x22\ +\xff\x01\x01\xa3\xff\x00\x00\xd1\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xab\ +\xff\x01\x01\x56\xff\x00\x00\x13\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\ +\xff\x00\x00\x09\xff\x00\x00\x15\xff\x00\x00\x2c\xff\x00\x00\x4e\ +\xff\x01\x01\x6f\xff\x01\x01\x97\xff\x00\x00\xbb\xff\x00\x00\xcd\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xcc\ +\xff\x00\x00\xc2\xff\x01\x01\x66\xff\x00\x00\x0e\xff\x00\x00\x11\ +\xff\x00\x00\x16\xff\x00\x00\x06\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x03\x03\x03\xff\x04\x04\x04\xff\x04\x04\x04\xff\x07\x06\x07\ +\xf8\x10\x0f\x10\xa3\x0a\x0a\x0a\x45\x00\x00\x00\x30\x00\x00\x00\ +\x27\x00\x00\x00\x1d\x00\x00\x00\x15\x00\x00\x00\x0f\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x01\x00\x01\ +\x07\x23\x21\x22\x37\x16\x16\x16\xc7\x06\x06\x06\xff\x05\x05\x05\ +\xff\x04\x04\x04\xff\x03\x03\x03\xff\x02\x02\x01\xff\x01\x01\x26\ +\xff\x01\x01\xa8\xff\x00\x00\xcf\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcd\xff\x00\x00\xb6\xff\x00\x00\x56\ +\xff\x00\x00\x0b\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x02\xff\x00\x00\x0a\xff\x00\x00\x1c\xff\x00\x00\x35\ +\xff\x00\x00\x59\xff\x01\x01\x7b\xff\x00\x00\x9f\xff\x00\x00\xbb\ +\xff\x00\x00\xc6\xff\x00\x00\xcc\xff\x00\x00\xcd\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xcb\ +\xff\x00\x00\xc9\xff\x00\x00\x75\xff\x00\x00\x11\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x03\x03\x03\ +\xff\x04\x04\x04\xff\x05\x05\x05\xff\x06\x06\x06\xff\x0c\x0c\x0c\ +\xeb\x13\x12\x13\x84\x02\x01\x02\x3b\x00\x00\x00\x2d\x00\x00\x00\ +\x24\x00\x00\x00\x1a\x00\x00\x00\x13\x00\x00\x00\x0d\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x05\x2a\x29\x2a\x1e\x1a\x1a\x1b\x9b\x09\x0a\x0a\xfa\x06\x06\x06\ +\xff\x05\x05\x05\xff\x04\x04\x04\xff\x03\x03\x02\xff\x01\x01\x13\ +\xff\x01\x01\x7f\xff\x00\x00\xcd\xff\x00\x00\xcb\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xce\xff\x00\x00\x91\xff\x00\x00\x20\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x07\xff\x00\x00\x19\ +\xff\x01\x01\x37\xff\x01\x01\x5a\xff\x00\x00\x83\xff\x00\x00\xa4\ +\xff\x00\x00\xbc\xff\x00\x00\xc9\xff\x00\x00\xcd\xff\x00\x00\xcd\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xcb\ +\xff\x00\x00\xc9\xff\x00\x00\x77\xff\x00\x00\x12\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\xff\x04\x04\x04\ +\xff\x05\x05\x05\xff\x06\x06\x06\xff\x07\x07\x07\xff\x0d\x0d\x0d\ +\xd2\x14\x14\x14\x64\x01\x01\x01\x34\x00\x00\x00\x29\x00\x00\x00\ +\x20\x00\x00\x00\x18\x00\x00\x00\x10\x00\x00\x00\x0b\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x1b\x1a\x1b\x0e\x26\x25\x26\x6a\x12\x12\x12\xe8\x08\x08\x08\ +\xff\x07\x07\x07\xff\x05\x05\x05\xff\x04\x04\x03\xff\x02\x02\x04\ +\xff\x01\x01\x3a\xff\x01\x01\xa7\xff\x00\x00\xce\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\x80\xff\x00\x00\x16\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\ +\xff\x00\x00\x0e\xff\x01\x01\x30\xff\x00\x00\x5b\xff\x01\x01\x82\ +\xff\x01\x01\xa6\xff\x00\x00\xbd\xff\x00\x00\xc9\xff\x00\x00\xcc\ +\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xcc\ +\xff\x00\x00\xc5\xff\x00\x00\x6a\xff\x00\x00\x0d\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x03\x03\x03\xff\x05\x05\x05\ +\xff\x06\x06\x06\xff\x08\x08\x08\xff\x0b\x0a\x0a\xf9\x13\x12\x12\ +\xae\x0b\x0b\x0b\x4a\x00\x00\x00\x2f\x00\x00\x00\x26\x00\x00\x00\ +\x1d\x00\x00\x00\x15\x00\x00\x00\x0e\x00\x00\x00\x09\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\ +\x03\x0d\x0d\x0d\x07\x33\x31\x32\x3d\x1b\x1a\x1a\xc4\x0b\x0b\x0b\ +\xff\x08\x08\x08\xff\x07\x07\x07\xff\x05\x05\x05\xff\x03\x03\x03\ +\xff\x01\x01\x0b\xff\x01\x01\x47\xff\x00\x00\xa1\xff\x00\x00\xc7\ +\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\x7f\xff\x00\x00\x16\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x10\xff\x01\x01\x3b\ +\xff\x01\x01\x6f\xff\x01\x01\xa1\xff\x00\x00\xc0\xff\x00\x00\xc9\ +\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\xbe\xff\x01\x01\x5c\xff\x00\x00\x09\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x03\x03\x03\xff\x04\x04\x04\xff\x06\x06\x06\ +\xff\x08\x08\x08\xff\x09\x09\x09\xff\x0d\x0d\x0d\xea\x17\x16\x16\ +\x85\x08\x07\x07\x3a\x00\x00\x00\x2b\x00\x00\x00\x22\x00\x00\x00\ +\x1a\x00\x00\x00\x12\x00\x00\x00\x0c\x00\x00\x00\x08\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x04\x34\x32\x33\x1b\x2b\x2a\x2b\x91\x12\x12\x12\ +\xf6\x09\x09\x09\xff\x08\x08\x08\xff\x06\x06\x06\xff\x04\x04\x04\ +\xff\x03\x03\x03\xff\x01\x01\x09\xff\x01\x01\x38\xff\x00\x00\x7f\ +\xff\x00\x00\xb1\xff\x00\x00\xc7\xff\x00\x00\xcc\xff\x00\x00\xce\ +\xff\x00\x00\xce\xff\x00\x00\xcf\xff\x00\x00\xcf\xff\x00\x00\xcf\ +\xff\x00\x00\xd0\xff\x00\x00\xd2\xff\x00\x00\x8c\xff\x00\x00\x1d\ +\xff\x00\x00\x00\xff\x00\x00\x16\xff\x01\x01\x63\xff\x01\x01\xaa\ +\xff\x00\x00\xc6\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcd\ +\xff\x00\x00\xb1\xff\x00\x00\x45\xff\x00\x00\x04\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x04\x04\x04\xff\x06\x06\x06\xff\x08\x08\x08\ +\xff\x09\x09\x09\xff\x0b\x0b\x0b\xfe\x17\x16\x17\xcb\x16\x16\x16\ +\x5d\x00\x00\x00\x31\x00\x00\x00\x27\x00\x00\x00\x1e\x00\x00\x00\ +\x16\x00\x00\x00\x0f\x00\x00\x00\x0a\x00\x00\x00\x06\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x04\x27\x26\x26\x0a\x39\x38\x39\x54\x1d\x1d\x1e\ +\xd9\x0c\x0c\x0c\xff\x0a\x0a\x0a\xff\x08\x08\x08\xff\x06\x06\x06\ +\xff\x04\x04\x04\xff\x02\x02\x02\xff\x01\x01\x03\xff\x00\x00\x14\ +\xff\x00\x00\x3b\xff\x01\x01\x5e\xff\x01\x01\x74\xff\x00\x00\x87\ +\xff\x00\x00\x90\xff\x00\x00\xa3\xff\x01\x01\xa9\xff\x01\x01\xa8\ +\xff\x01\x01\xa8\xff\x01\x01\xac\xff\x01\x01\x87\xff\x00\x00\x25\ +\xff\x00\x00\x0a\xff\x01\x01\x64\xff\x01\x01\xbc\xff\x00\x00\xce\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\x96\xff\x00\x00\x29\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x03\x03\x03\xff\x05\x05\x05\xff\x07\x07\x07\xff\x09\x09\x09\ +\xff\x0b\x0b\x0b\xff\x10\x10\x10\xf3\x1e\x1e\x1e\x9a\x12\x12\x12\ +\x41\x00\x00\x00\x2c\x00\x00\x00\x23\x00\x00\x00\x1b\x00\x00\x00\ +\x13\x00\x00\x00\x0d\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x05\x42\x42\x43\x26\x2b\x2b\x2b\ +\xa2\x11\x11\x11\xf9\x0c\x0c\x0c\xff\x0a\x0a\x0a\xff\x07\x07\x07\ +\xff\x05\x05\x05\xff\x03\x03\x03\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x09\xff\x00\x00\x13\ +\xff\x00\x00\x17\xff\x00\x00\x23\xff\x01\x01\x29\xff\x01\x01\x28\ +\xff\x01\x01\x28\xff\x01\x01\x29\xff\x00\x00\x23\xff\x00\x00\x0c\ +\xff\x01\x01\x33\xff\x00\x00\xad\xff\x00\x00\xcf\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xcb\xff\x00\x00\xc3\ +\xff\x00\x00\x6b\xff\x00\x00\x10\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x04\x04\x04\xff\x07\x07\x07\xff\x09\x09\x09\xff\x0b\x0b\x0b\ +\xff\x0d\x0d\x0d\xfe\x17\x17\x18\xd7\x22\x21\x22\x68\x00\x00\x00\ +\x32\x00\x00\x00\x28\x00\x00\x00\x1f\x00\x00\x00\x17\x00\x00\x00\ +\x10\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x04\x24\x24\x24\x0c\x39\x39\x39\ +\x60\x1c\x1c\x1c\xe0\x0e\x0e\x0e\xfe\x0c\x0c\x0c\xff\x0a\x0a\x0a\ +\xff\x07\x07\x07\xff\x05\x05\x05\xff\x02\x02\x02\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x06\ +\xff\x01\x01\x5a\xff\x00\x00\xc3\xff\x00\x00\xcc\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xcc\xff\x00\x00\xb1\ +\xff\x00\x00\x41\xff\x00\x00\x03\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\xff\x04\x04\x04\ +\xff\x06\x06\x06\xff\x09\x09\x09\xff\x0b\x0b\x0b\xff\x0d\x0d\x0d\ +\xff\x12\x12\x12\xf5\x20\x20\x20\xa5\x12\x12\x12\x42\x00\x00\x00\ +\x2c\x00\x00\x00\x23\x00\x00\x00\x1a\x00\x00\x00\x13\x00\x00\x00\ +\x0d\x00\x00\x00\x09\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x05\x42\x42\x42\ +\x27\x2c\x2c\x2c\xa7\x14\x14\x14\xf8\x0e\x0e\x0e\xff\x0c\x0c\x0c\ +\xff\x09\x09\x09\xff\x06\x06\x06\xff\x04\x04\x04\xff\x02\x02\x02\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x09\ +\xff\x01\x01\x60\xff\x00\x00\xc3\xff\x00\x00\xcc\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xc2\ +\xff\x00\x00\xad\xff\x00\x00\xba\xff\x00\x00\xcc\xff\x00\x00\xcd\ +\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\x8a\ +\xff\x00\x00\x1d\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x03\x03\x03\xff\x06\x06\x06\ +\xff\x08\x08\x08\xff\x0b\x0b\x0b\xff\x0d\x0d\x0d\xff\x0f\x0f\x0f\ +\xfe\x17\x17\x17\xd7\x22\x21\x22\x6a\x04\x04\x04\x30\x00\x00\x00\ +\x26\x00\x00\x00\x1e\x00\x00\x00\x16\x00\x00\x00\x10\x00\x00\x00\ +\x0b\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x04\x27\x26\x26\ +\x0b\x42\x41\x41\x5c\x22\x22\x21\xdb\x11\x11\x11\xff\x0e\x0e\x0e\ +\xff\x0c\x0c\x0c\xff\x09\x09\x09\xff\x06\x06\x06\xff\x03\x03\x03\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x03\ +\xff\x01\x01\x4f\xff\x00\x00\xbf\xff\x00\x00\xcc\xff\x00\x00\xc9\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xae\xff\x00\x00\x74\ +\xff\x01\x01\x42\xff\x00\x00\x60\xff\x00\x00\x96\xff\x00\x00\xae\ +\xff\x00\x00\xb9\xff\x00\x00\xc3\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xcb\xff\x00\x00\xbe\xff\x01\x01\x5d\ +\xff\x00\x00\x07\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x03\x03\x03\xff\x05\x05\x05\xff\x08\x08\x08\ +\xff\x0b\x0b\x0b\xff\x0e\x0e\x0e\xff\x10\x10\x10\xff\x15\x15\x15\ +\xf3\x23\x22\x22\x9f\x13\x13\x13\x3f\x00\x00\x00\x29\x00\x00\x00\ +\x21\x00\x00\x00\x19\x00\x00\x00\x12\x00\x00\x00\x0c\x00\x00\x00\ +\x08\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x05\x51\x4f\x50\x20\x39\x39\x39\x98\x1a\x1a\x1a\xf5\x11\x11\x11\ +\xff\x0e\x0e\x0e\xff\x0b\x0b\x0b\xff\x08\x08\x08\xff\x05\x05\x05\ +\xff\x03\x03\x03\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x39\xff\x00\x00\xb4\xff\x00\x00\xcd\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xa5\xff\x00\x00\x53\xff\x00\x00\x17\ +\xff\x00\x00\x04\xff\x00\x00\x0e\xff\x00\x00\x29\xff\x00\x00\x3f\ +\xff\x00\x00\x52\xff\x00\x00\x66\xff\x00\x00\x77\xff\x00\x00\x88\ +\xff\x00\x00\x97\xff\x00\x00\xae\xff\x00\x00\xc6\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xa1\xff\x00\x00\x32\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x05\x05\x05\xff\x07\x07\x07\xff\x0a\x0a\x0a\ +\xff\x0d\x0d\x0d\xff\x10\x10\x10\xff\x13\x13\x13\xfe\x21\x21\x21\ +\xce\x28\x28\x28\x5e\x01\x01\x01\x2d\x00\x00\x00\x24\x00\x00\x00\ +\x1c\x00\x00\x00\x15\x00\x00\x00\x0f\x00\x00\x00\x0a\x00\x00\x00\ +\x06\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x18\x17\x17\x08\x56\x56\x56\x45\x30\x30\x30\xcb\x15\x15\x15\ +\xfe\x11\x11\x11\xff\x0e\x0e\x0e\xff\x0b\x0b\x0b\xff\x08\x08\x08\ +\xff\x04\x04\x04\xff\x02\x02\x02\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x22\xff\x00\x00\x9e\xff\x00\x00\xcd\xff\x00\x00\xcd\ +\xff\x00\x00\xbc\xff\x00\x00\x5c\xff\x00\x00\x0d\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x04\xff\x00\x00\x0a\xff\x00\x00\x11\xff\x00\x00\x1a\ +\xff\x00\x00\x22\xff\x01\x01\x4a\xff\x00\x00\xa7\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xcb\xff\x00\x00\xc5\xff\x01\x01\x6e\xff\x00\x00\x0e\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x04\x04\x04\xff\x06\x06\x06\xff\x0a\x0a\x0a\xff\x0d\x0d\x0d\ +\xff\x10\x10\x10\xff\x13\x13\x13\xff\x1b\x1b\x1b\xef\x33\x32\x32\ +\x86\x10\x10\x10\x35\x00\x00\x00\x26\x00\x00\x00\x1f\x00\x00\x00\ +\x17\x00\x00\x00\x11\x00\x00\x00\x0c\x00\x00\x00\x08\x00\x00\x00\ +\x05\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x04\x43\x43\x43\x12\x50\x50\x50\x72\x25\x25\x25\ +\xed\x13\x13\x13\xff\x12\x12\x12\xff\x0e\x0e\x0e\xff\x0b\x0b\x0b\ +\xff\x07\x07\x07\xff\x04\x04\x04\xff\x02\x02\x02\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x0d\xff\x01\x01\x7e\xff\x00\x00\xcb\xff\x00\x00\xcf\ +\xff\x00\x00\xac\xff\x00\x00\x38\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x0b\xff\x00\x00\x1e\xff\x01\x01\x2d\xff\x01\x01\x2c\ +\xff\x00\x00\x1d\xff\x00\x00\x0f\xff\x00\x00\x0f\xff\x00\x00\x1f\ +\xff\x00\x00\x2f\xff\x01\x01\x55\xff\x00\x00\xaa\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xce\xff\x00\x00\xb5\xff\x00\x00\x43\xff\x00\x00\x02\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\xff\x04\x04\x04\ +\xff\x06\x06\x06\xff\x0a\x0a\x0a\xff\x0e\x0e\x0e\xff\x11\x11\x11\ +\xff\x13\x13\x13\xff\x17\x17\x17\xfa\x2c\x2c\x2c\xb2\x20\x1f\x1f\ +\x44\x00\x00\x00\x29\x00\x00\x00\x21\x00\x00\x00\x1a\x00\x00\x00\ +\x13\x00\x00\x00\x0d\x00\x00\x00\x09\x00\x00\x00\x05\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x06\x59\x58\x58\x21\x43\x42\x43\ +\xa6\x1c\x1c\x1c\xfb\x14\x14\x14\xff\x12\x12\x12\xff\x0e\x0e\x0e\ +\xff\x0b\x0b\x0b\xff\x07\x07\x07\xff\x04\x04\x04\xff\x02\x02\x02\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x04\xff\x00\x00\x61\xff\x00\x00\xc4\xff\x00\x00\xcf\ +\xff\x00\x00\xad\xff\x00\x00\x3a\xff\x00\x00\x02\xff\x00\x00\x1d\ +\xff\x00\x00\x63\xff\x00\x00\x92\xff\x00\x00\xa9\xff\x00\x00\xa8\ +\xff\x00\x00\x93\xff\x00\x00\x7d\xff\x00\x00\x7c\xff\x00\x00\x94\ +\xff\x00\x00\xa9\xff\x00\x00\xb9\xff\x00\x00\xc7\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xce\xff\x01\x01\x8b\xff\x00\x00\x1b\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xff\x04\x04\x04\xff\x06\x06\x06\ +\xff\x09\x09\x09\xff\x0d\x0d\x0d\xff\x11\x11\x11\xff\x14\x14\x14\ +\xff\x16\x16\x16\xff\x26\x26\x26\xd7\x31\x31\x31\x61\x02\x02\x02\ +\x2b\x00\x00\x00\x23\x00\x00\x00\x1c\x00\x00\x00\x15\x00\x00\x00\ +\x0f\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x06\x5a\x5a\x5a\ +\x3b\x3a\x3b\x3a\xc5\x1a\x1b\x1a\xfd\x14\x14\x14\xff\x12\x12\x12\ +\xff\x0f\x0f\x0f\xff\x0b\x0b\x0b\xff\x07\x07\x07\xff\x04\x04\x04\ +\xff\x02\x02\x02\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x3b\xff\x00\x00\xb5\xff\x00\x00\xd0\ +\xff\x00\x00\xbf\xff\x01\x01\x69\xff\x01\x01\x3f\xff\x01\x01\x85\ +\xff\x00\x00\xc1\xff\x00\x00\xce\xff\x00\x00\xce\xff\x00\x00\xce\ +\xff\x00\x00\xce\xff\x00\x00\xcd\xff\x00\x00\xcd\xff\x00\x00\xcd\ +\xff\x00\x00\xce\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcd\ +\xff\x00\x00\xcd\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xcb\ +\xff\x00\x00\xc3\xff\x01\x01\x5a\xff\x00\x00\x05\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xff\x04\x04\x04\xff\x06\x06\x06\xff\x0a\x0a\x0a\ +\xff\x0e\x0e\x0e\xff\x11\x11\x11\xff\x14\x14\x14\xff\x17\x17\x16\ +\xff\x24\x24\x24\xe5\x32\x32\x32\x7c\x08\x08\x08\x30\x00\x00\x00\ +\x24\x00\x00\x00\x1d\x00\x00\x00\x16\x00\x00\x00\x10\x00\x00\x00\ +\x0b\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x04\x2e\x2e\x2e\ +\x0c\x5b\x5b\x5b\x59\x36\x36\x36\xd7\x1b\x1b\x1b\xfe\x16\x16\x16\ +\xff\x13\x13\x13\xff\x0f\x0f\x0f\xff\x0b\x0b\x0b\xff\x07\x07\x07\ +\xff\x05\x05\x05\xff\x02\x02\x02\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x1c\xff\x00\x00\x95\xff\x00\x00\xcf\ +\xff\x00\x00\xcb\xff\x00\x00\xb5\xff\x00\x00\xaf\xff\x00\x00\xc7\ +\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc8\xff\x00\x00\xbb\xff\x00\x00\xb1\ +\xff\x00\x00\xb6\xff\x00\x00\xc2\xff\x00\x00\xc9\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcd\ +\xff\x00\x00\xa1\xff\x00\x00\x28\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x04\x04\x04\xff\x07\x07\x07\xff\x0a\x0a\x0a\xff\x0e\x0e\x0e\ +\xff\x11\x11\x11\xff\x15\x15\x15\xff\x17\x17\x18\xfe\x23\x23\x23\ +\xef\x39\x39\x39\x97\x22\x22\x22\x3c\x00\x00\x00\x25\x00\x00\x00\ +\x1e\x00\x00\x00\x17\x00\x00\x00\x12\x00\x00\x00\x0c\x00\x00\x00\ +\x08\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x05\x53\x53\x53\x15\x5b\x5b\x5b\x73\x33\x34\x34\xe3\x1b\x1b\x1b\ +\xfe\x17\x17\x17\xff\x13\x13\x13\xff\x0f\x0f\x0f\xff\x0c\x0c\x0c\ +\xff\x08\x08\x08\xff\x05\x05\x05\xff\x03\x03\x03\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x0d\xff\x00\x00\x75\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xc4\xff\x01\x01\x8e\xff\x00\x00\x49\ +\xff\x00\x00\x42\xff\x01\x01\x5a\xff\x01\x01\x79\xff\x00\x00\xae\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xc6\ +\xff\x00\x00\x6c\xff\x00\x00\x08\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\xff\x04\x04\x04\ +\xff\x07\x07\x07\xff\x0a\x0a\x0a\xff\x0e\x0e\x0e\xff\x12\x12\x12\ +\xff\x16\x16\x16\xff\x18\x18\x18\xff\x22\x22\x22\xf4\x3a\x3a\x3a\ +\xad\x34\x34\x34\x49\x03\x03\x03\x27\x00\x00\x00\x1f\x00\x00\x00\ +\x18\x00\x00\x00\x12\x00\x00\x00\x0d\x00\x00\x00\x09\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x01\x01\x01\x05\x68\x68\x68\x1f\x59\x59\x59\x86\x33\x33\x33\ +\xe7\x1d\x1d\x1d\xfe\x17\x17\x17\xff\x14\x14\x14\xff\x11\x11\x11\ +\xff\x0d\x0d\x0d\xff\x09\x09\x09\xff\x06\x06\x06\xff\x03\x03\x03\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x03\xff\x00\x00\x4c\xff\x00\x00\xbb\ +\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xb3\xff\x00\x00\x60\ +\xff\x00\x00\x0c\xff\x00\x00\x05\xff\x00\x00\x14\xff\x01\x01\x64\ +\xff\x00\x00\xc0\xff\x00\x00\xcc\xff\x00\x00\xce\xff\x00\x00\xad\ +\xff\x00\x00\x38\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x03\x03\x03\xff\x05\x05\x05\xff\x08\x08\x08\ +\xff\x0b\x0b\x0b\xff\x0f\x0f\x0f\xff\x13\x13\x13\xff\x17\x17\x17\ +\xff\x19\x19\x19\xff\x22\x22\x22\xf7\x37\x37\x37\xb7\x37\x36\x36\ +\x53\x05\x04\x04\x27\x00\x00\x00\x1f\x00\x00\x00\x19\x00\x00\x00\ +\x13\x00\x00\x00\x0e\x00\x00\x00\x0a\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x04\x12\x12\x12\x07\x6e\x6e\x6e\x29\x5b\x5b\x5c\ +\x90\x35\x36\x36\xe9\x1e\x1e\x1e\xff\x19\x19\x19\xff\x15\x15\x15\ +\xff\x12\x12\x12\xff\x0d\x0d\x0d\xff\x0a\x0a\x0a\xff\x07\x07\x07\ +\xff\x04\x04\x04\xff\x02\x02\x02\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x2a\xff\x00\x00\x9e\ +\xff\x00\x00\xce\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc6\xff\x00\x00\xc2\xff\x00\x00\xb5\xff\x00\x00\x79\ +\xff\x00\x00\x0e\xff\x00\x00\x00\xff\x00\x00\x0c\xff\x00\x00\x62\ +\xff\x00\x00\xc1\xff\x00\x00\xce\xff\x00\x00\xc5\xff\x01\x01\x78\ +\xff\x00\x00\x14\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x04\x04\x04\xff\x06\x06\x06\xff\x09\x09\x09\xff\x0c\x0c\x0c\ +\xff\x10\x10\x10\xff\x14\x14\x14\xff\x18\x18\x18\xff\x1b\x1b\x1b\ +\xff\x24\x24\x24\xf8\x38\x39\x39\xbc\x3a\x3a\x3a\x5b\x09\x09\x09\ +\x29\x00\x00\x00\x1f\x00\x00\x00\x19\x00\x00\x00\x13\x00\x00\x00\ +\x0e\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x23\x22\x22\x08\x73\x73\x74\ +\x2d\x5f\x5f\x5f\x91\x37\x37\x37\xeb\x1f\x1f\x1f\xfe\x1a\x1a\x1a\ +\xff\x16\x16\x16\xff\x12\x12\x12\xff\x0f\x0f\x0f\xff\x0b\x0b\x0b\ +\xff\x08\x08\x08\xff\x05\x05\x05\xff\x03\x03\x03\xff\x02\x02\x02\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x0e\xff\x01\x01\x6a\ +\xff\x00\x00\xc4\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xbe\ +\xff\x00\x00\x9a\xff\x00\x00\x7d\xff\x01\x01\x53\xff\x01\x01\x2d\ +\xff\x00\x00\x18\xff\x00\x00\x28\xff\x00\x00\x54\xff\x00\x00\xa0\ +\xff\x00\x00\xcc\xff\x00\x00\xc7\xff\x00\x00\x8a\xff\x01\x01\x2c\ +\xff\x01\x01\x03\xff\x01\x01\x01\xff\x03\x03\x03\xff\x05\x05\x05\ +\xff\x07\x07\x07\xff\x0a\x0a\x0a\xff\x0e\x0e\x0e\xff\x11\x11\x11\ +\xff\x15\x15\x15\xff\x19\x19\x19\xff\x1c\x1c\x1c\xff\x27\x27\x27\ +\xf8\x3e\x3e\x3e\xbe\x41\x42\x42\x5b\x10\x10\x10\x2a\x00\x00\x00\ +\x1f\x00\x00\x00\x19\x00\x00\x00\x13\x00\x00\x00\x0f\x00\x00\x00\ +\x0a\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x24\x24\x24\ +\x07\x76\x74\x74\x28\x62\x62\x62\x8a\x3a\x3a\x3a\xe5\x21\x21\x21\ +\xfe\x1b\x1b\x1b\xff\x18\x18\x18\xff\x15\x15\x15\xff\x11\x11\x11\ +\xff\x0d\x0d\x0d\xff\x0a\x0a\x0a\xff\x07\x07\x07\xff\x05\x05\x05\ +\xff\x03\x03\x03\xff\x01\x01\x01\xff\x01\x01\x03\xff\x01\x01\x2b\ +\xff\x00\x00\x8d\xff\x00\x00\xc5\xff\x00\x00\xce\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xcd\xff\x00\x00\xcf\xff\x00\x00\xcd\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xce\xff\x00\x00\xcd\xff\x00\x00\xc3\ +\xff\x00\x00\xaa\xff\x00\x00\x94\xff\x00\x00\x7d\xff\x00\x00\x77\ +\xff\x00\x00\x87\xff\x00\x00\x9e\xff\x00\x00\xba\xff\x00\x00\xca\ +\xff\x00\x00\xbb\xff\x00\x00\x80\xff\x01\x01\x2d\xff\x01\x01\x06\ +\xff\x02\x02\x02\xff\x04\x04\x04\xff\x06\x06\x06\xff\x09\x09\x09\ +\xff\x0c\x0c\x0c\xff\x10\x10\x10\xff\x14\x14\x14\xff\x17\x17\x17\ +\xff\x1a\x1a\x1a\xff\x1d\x1d\x1d\xff\x2b\x2b\x2b\xf6\x44\x44\x44\ +\xb6\x43\x43\x44\x56\x0c\x0d\x0d\x26\x00\x00\x00\x1e\x00\x00\x00\ +\x18\x00\x00\x00\x13\x00\x00\x00\x0e\x00\x00\x00\x0a\x00\x00\x00\ +\x07\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x13\x13\x13\x07\x72\x72\x72\x22\x68\x66\x67\x78\x45\x45\x45\ +\xdc\x25\x25\x25\xfe\x1d\x1d\x1d\xff\x1a\x1a\x1a\xff\x17\x17\x17\ +\xff\x13\x13\x13\xff\x0f\x0f\x0f\xff\x0c\x0c\x0c\xff\x09\x09\x09\ +\xff\x06\x06\x06\xff\x04\x04\x04\xff\x02\x02\x02\xff\x01\x01\x07\ +\xff\x01\x01\x30\xff\x01\x01\x71\xff\x01\x01\xa1\xff\x00\x00\xc2\ +\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xc9\ +\xff\x00\x00\xc5\xff\x00\x00\xbc\xff\x00\x00\xad\xff\x00\x00\x95\ +\xff\x00\x00\x7f\xff\x00\x00\x75\xff\x00\x00\x74\xff\x00\x00\x78\ +\xff\x01\x01\x89\xff\x01\x01\xa5\xff\x00\x00\xbe\xff\x00\x00\xc9\ +\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xc3\xff\x00\x00\xb4\xff\x01\x01\x91\ +\xff\x01\x01\x58\xff\x01\x01\x21\xff\x02\x02\x06\xff\x03\x03\x03\ +\xff\x06\x06\x06\xff\x08\x08\x08\xff\x0b\x0b\x0b\xff\x0e\x0e\x0e\ +\xff\x12\x12\x12\xff\x16\x16\x16\xff\x19\x19\x19\xff\x1c\x1c\x1c\ +\xff\x1e\x1e\x1e\xff\x31\x31\x31\xf1\x4f\x4e\x4f\xa8\x45\x45\x45\ +\x4d\x08\x08\x08\x24\x00\x00\x00\x1c\x00\x00\x00\x17\x00\x00\x00\ +\x12\x00\x00\x00\x0e\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\ +\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x04\x03\x03\x03\x06\x66\x64\x64\x16\x77\x76\x77\ +\x5e\x5a\x5a\x5b\xd1\x2e\x2e\x2e\xfc\x1e\x1e\x1e\xff\x1c\x1c\x1c\ +\xff\x19\x19\x19\xff\x16\x16\x16\xff\x12\x12\x12\xff\x0f\x0f\x0f\ +\xff\x0c\x0c\x0c\xff\x09\x09\x09\xff\x06\x06\x06\xff\x04\x04\x04\ +\xff\x03\x03\x06\xff\x02\x02\x13\xff\x02\x02\x2c\xff\x01\x01\x5b\ +\xff\x01\x01\x76\xff\x00\x00\x77\xff\x00\x00\x77\xff\x01\x01\x67\ +\xff\x01\x01\x52\xff\x00\x00\x45\xff\x00\x00\x32\xff\x00\x00\x22\ +\xff\x00\x00\x15\xff\x00\x00\x0e\xff\x00\x00\x0d\xff\x00\x00\x10\ +\xff\x00\x00\x1b\xff\x00\x00\x30\xff\x01\x01\x4d\xff\x00\x00\x67\ +\xff\x00\x00\x77\xff\x00\x00\x78\xff\x00\x00\x78\xff\x00\x00\x79\ +\xff\x01\x01\x6f\xff\x01\x01\x53\xff\x01\x01\x3d\xff\x02\x02\x23\ +\xff\x03\x03\x0c\xff\x04\x04\x04\xff\x05\x05\x05\xff\x08\x08\x08\ +\xff\x0b\x0b\x0b\xff\x0e\x0e\x0e\xff\x11\x11\x11\xff\x15\x15\x15\ +\xff\x18\x18\x18\xff\x1c\x1c\x1c\xff\x1d\x1d\x1d\xff\x23\x23\x23\ +\xff\x3a\x3b\x3b\xe8\x59\x59\x59\x95\x42\x42\x42\x3e\x04\x04\x04\ +\x21\x00\x00\x00\x1b\x00\x00\x00\x16\x00\x00\x00\x11\x00\x00\x00\ +\x0d\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x05\x3c\x3b\x3c\ +\x0b\x8a\x8a\x8a\x40\x6b\x6b\x6b\xae\x3c\x3c\x3c\xf1\x25\x25\x25\ +\xff\x1f\x1f\x1f\xff\x1c\x1c\x1c\xff\x19\x19\x19\xff\x16\x16\x16\ +\xff\x12\x12\x12\xff\x0f\x0f\x0f\xff\x0c\x0c\x0c\xff\x0a\x0a\x0a\ +\xff\x08\x08\x08\xff\x06\x06\x05\xff\x04\x04\x04\xff\x03\x03\x08\ +\xff\x01\x01\x0c\xff\x01\x01\x0d\xff\x00\x00\x0c\xff\x00\x00\x07\ +\xff\x00\x00\x02\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\xff\x00\x00\x07\ +\xff\x00\x00\x0b\xff\x00\x00\x0b\xff\x00\x00\x0c\xff\x01\x01\x0c\ +\xff\x01\x01\x0b\xff\x02\x02\x05\xff\x04\x04\x04\xff\x05\x05\x05\ +\xff\x07\x07\x07\xff\x09\x09\x09\xff\x0c\x0c\x0c\xff\x0e\x0e\x0e\ +\xff\x11\x11\x11\xff\x15\x15\x15\xff\x18\x18\x18\xff\x1b\x1b\x1b\ +\xff\x1e\x1e\x1e\xff\x21\x21\x21\xff\x2c\x2c\x2c\xf9\x48\x49\x49\ +\xd0\x60\x60\x60\x73\x2f\x30\x30\x2e\x00\x00\x00\x1d\x00\x00\x00\ +\x19\x00\x00\x00\x14\x00\x00\x00\x10\x00\x00\x00\x0c\x00\x00\x00\ +\x09\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x18\x15\x15\x08\x80\x80\x80\x29\x75\x76\x76\x80\x51\x51\x51\ +\xd6\x33\x33\x33\xf8\x24\x24\x24\xfe\x1f\x1f\x1f\xff\x1c\x1c\x1c\ +\xff\x19\x19\x19\xff\x16\x16\x16\xff\x13\x13\x13\xff\x11\x11\x11\ +\xff\x0e\x0e\x0e\xff\x0b\x0b\x0b\xff\x0a\x0a\x0a\xff\x08\x08\x08\ +\xff\x06\x06\x06\xff\x05\x05\x05\xff\x03\x03\x03\xff\x02\x02\x02\ +\xff\x02\x02\x02\xff\x02\x02\x01\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x02\x02\x02\xff\x03\x03\x03\xff\x04\x04\x04\ +\xff\x06\x06\x05\xff\x07\x07\x07\xff\x09\x09\x09\xff\x0b\x0b\x0b\ +\xff\x0d\x0d\x0d\xff\x10\x10\x10\xff\x12\x12\x12\xff\x15\x15\x15\ +\xff\x18\x18\x18\xff\x1b\x1b\x1b\xff\x1e\x1e\x1e\xff\x21\x21\x21\ +\xff\x2a\x2a\x2a\xfc\x3d\x3e\x3e\xe8\x55\x55\x55\xa9\x5c\x5c\x5c\ +\x54\x15\x14\x15\x24\x00\x00\x00\x1b\x00\x00\x00\x17\x00\x00\x00\ +\x12\x00\x00\x00\x0f\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x74\x73\x73\x15\x88\x88\x88\ +\x52\x6e\x6e\x6e\xa8\x4b\x4b\x4b\xe5\x2f\x2f\x2f\xfc\x23\x23\x23\ +\xff\x1f\x1f\x1f\xff\x1c\x1c\x1c\xff\x1a\x1a\x1a\xff\x18\x18\x18\ +\xff\x15\x15\x15\xff\x12\x12\x12\xff\x10\x10\x10\xff\x0f\x0f\x0f\ +\xff\x0d\x0d\x0d\xff\x0b\x0b\x0b\xff\x09\x09\x09\xff\x08\x08\x08\ +\xff\x07\x07\x07\xff\x06\x06\x06\xff\x05\x05\x05\xff\x05\x05\x05\ +\xff\x04\x04\x04\xff\x04\x04\x04\xff\x04\x04\x04\xff\x04\x04\x04\ +\xff\x04\x04\x04\xff\x05\x05\x05\xff\x05\x05\x05\xff\x06\x06\x06\ +\xff\x07\x07\x07\xff\x08\x08\x08\xff\x09\x09\x09\xff\x0a\x0a\x0a\ +\xff\x0c\x0c\x0c\xff\x0e\x0e\x0e\xff\x10\x10\x10\xff\x12\x12\x12\ +\xff\x14\x14\x14\xff\x17\x17\x17\xff\x19\x19\x19\xff\x1c\x1c\x1c\ +\xff\x1e\x1e\x1e\xff\x21\x21\x21\xff\x27\x27\x27\xfd\x38\x38\x38\ +\xf1\x53\x53\x54\xc5\x66\x67\x67\x7b\x4c\x4c\x4d\x38\x06\x06\x05\ +\x1d\x00\x00\x00\x18\x00\x00\x00\x14\x00\x00\x00\x11\x00\x00\x00\ +\x0d\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x34\x34\x34\ +\x09\x8b\x8b\x8b\x26\x88\x87\x88\x6a\x65\x65\x65\xb8\x47\x48\x47\ +\xe9\x31\x32\x31\xfc\x25\x25\x25\xff\x1f\x1f\x1f\xff\x1e\x1e\x1e\ +\xff\x1c\x1c\x1c\xff\x1a\x1a\x1a\xff\x18\x18\x18\xff\x15\x15\x15\ +\xff\x14\x14\x14\xff\x12\x12\x12\xff\x10\x10\x10\xff\x0f\x0f\x0f\ +\xff\x0e\x0e\x0e\xff\x0d\x0d\x0d\xff\x0c\x0c\x0c\xff\x0c\x0c\x0c\ +\xff\x0b\x0b\x0b\xff\x0a\x0a\x0a\xff\x0a\x0a\x0a\xff\x0a\x0a\x0a\ +\xff\x0b\x0b\x0b\xff\x0b\x0b\x0b\xff\x0c\x0c\x0c\xff\x0d\x0d\x0d\ +\xff\x0e\x0e\x0e\xff\x0f\x0f\x0f\xff\x10\x10\x10\xff\x11\x11\x11\ +\xff\x13\x13\x13\xff\x15\x15\x15\xff\x17\x17\x17\xff\x19\x19\x19\ +\xff\x1b\x1b\x1b\xff\x1d\x1d\x1d\xff\x1f\x1f\x1f\xff\x22\x22\x22\ +\xff\x2a\x2b\x2b\xfe\x39\x3a\x3a\xf4\x4d\x4e\x4e\xd0\x65\x64\x64\ +\x90\x66\x66\x66\x49\x26\x26\x27\x23\x00\x00\x00\x18\x00\x00\x00\ +\x15\x00\x00\x00\x11\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x01\x01\x01\x06\x59\x59\x59\x0f\x8f\x8f\x8e\x33\x7e\x7e\x7e\ +\x72\x66\x66\x66\xb7\x4d\x4d\x4d\xe7\x3b\x3b\x3b\xfc\x29\x29\x29\ +\xff\x22\x22\x22\xff\x20\x20\x20\xff\x1e\x1e\x1e\xff\x1c\x1c\x1c\ +\xff\x1a\x1a\x1a\xff\x19\x19\x19\xff\x17\x17\x17\xff\x16\x16\x16\ +\xff\x15\x15\x15\xff\x14\x14\x14\xff\x13\x13\x13\xff\x13\x13\x13\ +\xff\x12\x12\x12\xff\x12\x12\x12\xff\x12\x12\x12\xff\x11\x11\x11\ +\xff\x12\x12\x12\xff\x12\x12\x12\xff\x13\x13\x13\xff\x14\x14\x14\ +\xff\x15\x15\x15\xff\x15\x15\x15\xff\x17\x17\x17\xff\x18\x18\x18\ +\xff\x1a\x1a\x1a\xff\x1b\x1b\x1b\xff\x1d\x1d\x1d\xff\x1f\x1f\x1f\ +\xff\x21\x21\x21\xff\x25\x25\x25\xff\x32\x32\x32\xfe\x41\x42\x42\ +\xf1\x54\x54\x54\xcf\x67\x67\x67\x92\x69\x69\x68\x54\x42\x42\x42\ +\x29\x02\x02\x02\x19\x00\x00\x00\x15\x00\x00\x00\x12\x00\x00\x00\ +\x0f\x00\x00\x00\x0c\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\ +\x05\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x03\x00\x00\x00\x05\x06\x06\x06\x06\x66\x66\x66\ +\x11\x87\x86\x87\x2f\x86\x86\x86\x69\x75\x76\x75\xa6\x65\x66\x65\ +\xdb\x4d\x4d\x4d\xf6\x33\x33\x33\xfe\x28\x29\x28\xff\x22\x22\x22\ +\xff\x20\x20\x20\xff\x1f\x1f\x1f\xff\x1e\x1e\x1e\xff\x1d\x1d\x1d\ +\xff\x1c\x1c\x1c\xff\x1b\x1b\x1b\xff\x1a\x1a\x1a\xff\x1a\x1a\x1a\ +\xff\x19\x19\x19\xff\x19\x19\x19\xff\x19\x19\x19\xff\x19\x19\x19\ +\xff\x19\x19\x19\xff\x19\x19\x19\xff\x1a\x1a\x1a\xff\x1b\x1b\x1b\ +\xff\x1b\x1b\x1b\xff\x1d\x1d\x1d\xff\x1e\x1e\x1e\xff\x1f\x1f\x1f\ +\xff\x20\x20\x20\xff\x21\x21\x21\xff\x26\x26\x26\xff\x2e\x2e\x2e\ +\xfe\x40\x40\x3f\xfb\x58\x58\x57\xe9\x66\x67\x67\xbd\x70\x6f\x70\ +\x87\x6a\x6a\x6b\x4f\x45\x45\x45\x28\x0f\x0e\x0e\x18\x00\x00\x00\ +\x14\x00\x00\x00\x12\x00\x00\x00\x0f\x00\x00\x00\x0d\x00\x00\x00\ +\x0a\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x05\x05\x05\x04\x06\x4b\x4b\x4b\x0d\x85\x85\x85\x23\x96\x97\x96\ +\x4b\x8d\x8d\x8d\x7f\x7b\x7b\x7c\xb7\x5e\x5e\x5e\xdb\x47\x47\x47\ +\xf3\x3d\x3d\x3d\xfe\x33\x33\x33\xff\x29\x29\x29\xff\x23\x23\x23\ +\xff\x21\x21\x21\xff\x21\x21\x21\xff\x20\x20\x20\xff\x20\x20\x20\ +\xff\x20\x1f\x20\xff\x1f\x1f\x1f\xff\x1f\x1f\x1f\xff\x1f\x1f\x1f\ +\xff\x1f\x1f\x1f\xff\x20\x20\x20\xff\x20\x20\x20\xff\x20\x20\x20\ +\xff\x21\x21\x21\xff\x22\x22\x22\xff\x26\x26\x26\xff\x2e\x2e\x2e\ +\xff\x38\x39\x38\xff\x41\x41\x41\xf8\x50\x50\x51\xe6\x6d\x6d\x6d\ +\xc8\x7b\x7b\x7b\x98\x7e\x7e\x7d\x64\x6c\x6c\x6c\x3a\x38\x37\x39\ +\x21\x08\x08\x08\x16\x00\x00\x00\x12\x00\x00\x00\x11\x00\x00\x00\ +\x0e\x00\x00\x00\x0c\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x07\x1e\x1e\x1e\ +\x0a\x69\x69\x69\x14\x86\x86\x86\x27\x8d\x8d\x8d\x47\x90\x8f\x8f\ +\x77\x7e\x7f\x7e\x9e\x70\x70\x70\xbe\x69\x69\x69\xe1\x5d\x5d\x5d\ +\xf6\x52\x52\x52\xfe\x47\x47\x47\xff\x41\x41\x41\xff\x39\x39\x39\ +\xff\x32\x32\x32\xff\x31\x31\x31\xff\x2f\x30\x2f\xff\x30\x31\x30\ +\xff\x31\x31\x31\xff\x34\x34\x34\xff\x3d\x3e\x3e\xff\x43\x44\x44\ +\xff\x4d\x4d\x4d\xff\x58\x58\x58\xfc\x60\x60\x60\xe8\x67\x67\x67\ +\xcb\x71\x71\x71\xad\x80\x81\x81\x8a\x7e\x7f\x7f\x5f\x6d\x6d\x6e\ +\x3a\x51\x51\x51\x25\x1e\x1e\x1e\x19\x00\x00\x00\x13\x00\x00\x00\ +\x11\x00\x00\x00\x0f\x00\x00\x00\x0d\x00\x00\x00\x0b\x00\x00\x00\ +\x09\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x05\x00\x00\x00\x06\x00\x00\x00\x07\x16\x15\x15\x09\x40\x3f\x3f\ +\x0e\x69\x69\x69\x19\x8a\x8a\x8a\x2c\x96\x96\x96\x47\x8f\x8f\x8f\ +\x5d\x8a\x8a\x8a\x73\x8b\x8b\x8b\x8c\x90\x8f\x90\xa5\x8f\x8f\x8f\ +\xbc\x8e\x8e\x8e\xcf\x93\x94\x93\xdc\x90\x90\x90\xe3\x90\x90\x90\ +\xdf\x8e\x8e\x8e\xd4\x8a\x8a\x8a\xc3\x8b\x8c\x8c\xae\x87\x88\x88\ +\x96\x85\x85\x85\x7f\x85\x85\x85\x69\x84\x84\x83\x52\x7e\x7e\x7e\ +\x3b\x5b\x5b\x5b\x26\x2e\x2e\x2e\x1a\x13\x13\x13\x14\x01\x01\x01\ +\x11\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\x0d\x00\x00\x00\ +\x0b\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\ +\x05\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\ +\x06\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\x08\x02\x02\x02\ +\x0a\x24\x24\x23\x0d\x4d\x4d\x4d\x12\x62\x62\x62\x17\x6d\x6d\x6d\ +\x1c\x75\x75\x75\x1f\x7b\x7b\x7b\x22\x77\x77\x77\x24\x74\x74\x74\ +\x24\x6f\x6f\x6f\x22\x65\x65\x65\x1f\x58\x58\x58\x1c\x45\x45\x45\ +\x18\x27\x27\x27\x14\x05\x05\x05\x10\x00\x00\x00\x0e\x00\x00\x00\ +\x0e\x00\x00\x00\x0d\x00\x00\x00\x0d\x00\x00\x00\x0c\x00\x00\x00\ +\x0b\x00\x00\x00\x0a\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\ +\x06\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\x08\x00\x00\x00\ +\x09\x00\x00\x00\x0a\x00\x00\x00\x0a\x00\x00\x00\x0a\x00\x00\x00\ +\x0b\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00\ +\x0b\x00\x00\x00\x0b\x00\x00\x00\x0a\x00\x00\x00\x0a\x00\x00\x00\ +\x0a\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\ +\x06\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\ +\x07\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\ +\x07\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00\ +\x06\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\ +\xf0\x00\x00\x00\x00\x00\x7f\xff\xff\xff\xff\xff\xe0\x00\x00\x00\ +\x00\x00\x1f\xff\xff\xff\xff\xff\x80\x00\x00\x00\x00\x00\x0f\xff\ +\xff\xff\xff\xfe\x00\x00\x00\x00\x00\x00\x03\xff\xff\xff\xff\xfc\ +\x00\x00\x00\x00\x00\x00\x01\xff\xff\xff\xff\xf0\x00\x00\x00\x00\ +\x00\x00\x00\x7f\xff\xff\xff\xe0\x00\x00\x00\x00\x00\x00\x00\x1f\ +\xff\xff\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x0f\xff\xff\xff\x80\ +\x00\x00\x00\x00\x00\x00\x00\x07\xff\xff\xff\x00\x00\x00\x00\x00\ +\x00\x00\x00\x03\xff\xff\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x01\ +\xff\xff\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xf8\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xff\xf0\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x3f\xff\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x1f\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\xff\x80\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x0f\xff\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x07\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x07\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xfe\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\xfc\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\xfe\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x03\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x03\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xff\x80\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x07\xff\xc0\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x0f\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x1f\xff\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\xff\xf0\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xff\xf8\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\xff\xff\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\xff\xff\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x01\xff\xff\xff\x00\ +\x00\x00\x00\x00\x00\x00\x00\x07\xff\xff\xff\x80\x00\x00\x00\x00\ +\x00\x00\x00\x0f\xff\xff\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x1f\ +\xff\xff\xff\xe0\x00\x00\x00\x00\x00\x00\x00\x3f\xff\xff\xff\xf8\ +\x00\x00\x00\x00\x00\x00\x00\x7f\xff\xff\xff\xfc\x00\x00\x00\x00\ +\x00\x00\x00\xff\xff\xff\xff\xfe\x00\x00\x00\x00\x00\x00\x03\xff\ +\xff\xff\xff\xff\x80\x00\x00\x00\x00\x00\x0f\xff\xff\xff\xff\xff\ +\xe0\x00\x00\x00\x00\x00\x3f\xff\xff\xff\xff\xff\xf8\x00\x00\x00\ +\x00\x00\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x03\xff\xff\ +\xff\xff\xff\xff\xff\xc0\x00\x00\x00\x0f\xff\xff\xff\x28\x00\x00\ +\x00\x38\x00\x00\x00\x70\x00\x00\x00\x01\x00\x20\x00\x00\x00\x00\ +\x00\x00\x31\x00\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x09\x00\x00\x00\ +\x0b\x00\x00\x00\x0e\x00\x00\x00\x11\x00\x00\x00\x12\x00\x00\x00\ +\x14\x00\x00\x00\x16\x00\x00\x00\x17\x00\x00\x00\x17\x00\x00\x00\ +\x16\x00\x00\x00\x15\x00\x00\x00\x14\x00\x00\x00\x13\x00\x00\x00\ +\x11\x00\x00\x00\x0f\x00\x00\x00\x0c\x00\x00\x00\x0a\x00\x00\x00\ +\x07\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x00\x00\x00\x0d\x00\x00\x00\x11\x00\x00\x00\ +\x15\x00\x00\x00\x18\x00\x00\x00\x1b\x00\x00\x00\x1e\x00\x00\x00\ +\x21\x00\x00\x00\x23\x00\x00\x00\x24\x00\x00\x00\x24\x00\x00\x00\ +\x23\x00\x00\x00\x21\x00\x00\x00\x20\x00\x00\x00\x1e\x00\x00\x00\ +\x1c\x00\x00\x00\x19\x00\x00\x00\x16\x00\x00\x00\x12\x00\x00\x00\ +\x0e\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x00\x0b\x00\x00\x00\ +\x0f\x00\x00\x00\x14\x00\x00\x00\x1b\x00\x00\x00\x22\x03\x02\x02\ +\x2c\x0c\x0b\x0b\x36\x15\x13\x14\x40\x1c\x1a\x1b\x4a\x21\x1e\x20\ +\x52\x22\x20\x20\x56\x21\x1f\x20\x57\x1e\x1c\x1c\x52\x17\x16\x16\ +\x4c\x0f\x0e\x0e\x45\x07\x06\x06\x3d\x01\x00\x00\x35\x00\x00\x00\ +\x2e\x00\x00\x00\x28\x00\x00\x00\x24\x00\x00\x00\x1f\x00\x00\x00\ +\x1a\x00\x00\x00\x15\x00\x00\x00\x10\x00\x00\x00\x0c\x00\x00\x00\ +\x08\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x00\x00\x00\x0f\x00\x00\x00\x16\x00\x00\x00\ +\x21\x0d\x0b\x0c\x32\x21\x1e\x20\x49\x36\x34\x35\x61\x4b\x49\x4a\ +\x79\x5c\x59\x5a\x8f\x67\x65\x66\x9f\x70\x6e\x6f\xac\x76\x74\x75\ +\xb6\x77\x76\x77\xbc\x76\x75\x75\xbb\x73\x72\x72\xb4\x6b\x69\x6a\ +\xaa\x60\x5e\x5f\x9e\x51\x50\x51\x8e\x3e\x3c\x3d\x79\x29\x28\x28\ +\x63\x13\x12\x12\x4f\x04\x04\x04\x3e\x00\x00\x00\x32\x00\x00\x00\ +\x2a\x00\x00\x00\x23\x00\x00\x00\x1c\x00\x00\x00\x16\x00\x00\x00\ +\x11\x00\x00\x00\x0b\x00\x00\x00\x07\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x08\x00\x00\x00\ +\x0d\x00\x00\x00\x16\x07\x06\x06\x24\x1d\x1b\x1c\x3d\x39\x37\x38\ +\x62\x57\x55\x56\x89\x74\x72\x73\xab\x8b\x8a\x8b\xc6\x9c\x9b\x9c\ +\xda\xa8\xa7\xa8\xe6\xb2\xb0\xb1\xee\xb8\xb7\xb8\xf3\xbc\xbb\xbc\ +\xf6\xbe\xbd\xbd\xf8\xbd\xbd\xbd\xf7\xbb\xba\xba\xf5\xb6\xb5\xb5\ +\xf1\xae\xad\xae\xec\xa3\xa2\xa3\xe4\x94\x93\x94\xd5\x81\x80\x7f\ +\xc1\x66\x64\x64\xa7\x45\x44\x44\x86\x26\x25\x26\x65\x0d\x0c\x0c\ +\x49\x01\x01\x01\x36\x00\x00\x00\x2c\x00\x00\x00\x24\x00\x00\x00\ +\x1d\x00\x00\x00\x16\x00\x00\x00\x0f\x00\x00\x00\x09\x00\x00\x00\ +\x05\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x02\x00\x00\x00\x05\x00\x00\x00\x0a\x00\x00\x00\x12\x07\x06\x06\ +\x20\x22\x20\x21\x3c\x47\x45\x46\x69\x6b\x69\x6a\x9b\x89\x87\x88\ +\xc6\xa3\xa1\xa2\xe2\xb9\xb8\xb8\xf1\xc8\xc7\xc8\xf9\xd1\xd0\xd1\ +\xfc\xd7\xd6\xd6\xfe\xdb\xda\xdb\xff\xde\xdd\xde\xff\xe0\xdf\xdf\ +\xff\xe1\xe1\xe1\xff\xe1\xe1\xe1\xff\xdf\xdf\xdf\xff\xdd\xdc\xdd\ +\xff\xda\xd9\xd9\xfe\xd5\xd4\xd5\xfd\xce\xcd\xcd\xfb\xc4\xc2\xc2\ +\xf7\xb2\xb0\xb0\xed\x98\x97\x98\xdc\x7a\x78\x79\xbf\x56\x53\x54\ +\x96\x2e\x2c\x2c\x6b\x0d\x0c\x0c\x49\x01\x01\x01\x36\x00\x00\x00\ +\x2b\x00\x00\x00\x22\x00\x00\x00\x19\x00\x00\x00\x11\x00\x00\x00\ +\x0a\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x02\x02\x02\x15\x19\x17\x17\x2e\x40\x3e\x3f\ +\x5d\x6b\x69\x6a\x98\x92\x91\x92\xcb\xb1\xaf\xb0\xe9\xc5\xc4\xc4\ +\xf8\xd3\xd2\xd3\xfd\xdd\xdc\xdc\xfe\xe2\xe1\xe2\xfe\xe6\xe5\xe6\ +\xff\xe9\xe9\xe9\xff\xeb\xeb\xeb\xff\xed\xec\xed\xff\xee\xee\xee\ +\xff\xee\xee\xee\xff\xee\xee\xee\xff\xee\xed\xee\xff\xec\xec\xec\ +\xff\xeb\xea\xea\xff\xe8\xe8\xe8\xff\xe5\xe5\xe5\xff\xe1\xe1\xe1\ +\xfe\xda\xd9\xda\xfd\xcf\xce\xcf\xfc\xbe\xbd\xbe\xf5\xa5\xa4\xa5\ +\xe3\x7f\x7d\x7e\xc1\x4f\x4e\x4e\x91\x23\x21\x21\x61\x06\x05\x05\ +\x41\x00\x00\x00\x30\x00\x00\x00\x25\x00\x00\x00\x1c\x00\x00\x00\ +\x14\x00\x00\x00\x0c\x00\x00\x00\x06\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x07\x06\x07\x19\x2f\x2d\x2f\x3f\x60\x5d\x5f\x7e\x8b\x8a\x8a\ +\xbe\xaf\xae\xaf\xe7\xc9\xc8\xc9\xf8\xd9\xd8\xd8\xfd\xe1\xe1\xe1\ +\xfe\xe7\xe6\xe7\xff\xec\xeb\xec\xfe\xef\xef\xef\xfe\xf2\xf2\xf2\ +\xff\xf4\xf4\xf4\xff\xf6\xf5\xf6\xff\xf7\xf6\xf7\xff\xf8\xf7\xf8\ +\xff\xf8\xf8\xf8\xff\xf8\xf8\xf8\xff\xf7\xf7\xf7\xff\xf6\xf6\xf6\ +\xff\xf5\xf5\xf5\xff\xf4\xf4\xf4\xff\xec\xec\xec\xff\xe2\xe1\xe2\ +\xff\xe3\xe2\xe3\xfe\xe4\xe4\xe4\xff\xdf\xdf\xdf\xfe\xd4\xd4\xd4\ +\xfc\xc1\xc0\xc0\xf5\x9f\x9e\x9e\xdf\x73\x71\x71\xb3\x3e\x3c\x3c\ +\x7a\x11\x0f\x10\x4d\x00\x00\x00\x35\x00\x00\x00\x29\x00\x00\x00\ +\x1f\x00\x00\x00\x15\x00\x00\x00\x0d\x00\x00\x00\x06\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x05\x00\x00\x00\x0c\x0e\x0d\x0e\ +\x1e\x41\x3e\x3f\x4e\x76\x74\x75\x98\xa4\xa2\xa3\xd6\xc4\xc3\xc3\ +\xf5\xd7\xd7\xd7\xfd\xe2\xe1\xe2\xfe\xe9\xe9\xe9\xfe\xef\xee\xef\ +\xfe\xf3\xf2\xf3\xff\xf6\xf6\xf6\xff\xf8\xf8\xf8\xff\xf9\xfa\xfa\ +\xff\xfa\xfa\xfa\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfc\xfc\xfc\xff\xfc\xfb\xfb\ +\xff\xfb\xfb\xfb\xff\xfb\xfb\xfb\xff\xe0\xe0\xe0\xff\xa7\xa7\xa7\ +\xff\xaa\xaa\xaa\xff\xd7\xd7\xd8\xff\xeb\xeb\xeb\xff\xe7\xe7\xe7\ +\xfe\xdf\xdf\xdf\xfd\xd1\xd0\xd0\xfb\xb7\xb6\xb6\xef\x8c\x8b\x8b\ +\xca\x53\x51\x52\x8f\x1b\x1a\x1a\x58\x00\x00\x00\x3a\x00\x00\x00\ +\x2b\x00\x00\x00\x1f\x00\x00\x00\x15\x00\x00\x00\x0d\x00\x00\x00\ +\x07\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x04\x00\x00\x00\x0b\x18\x17\x17\x21\x50\x4e\x4e\ +\x59\x85\x83\x83\xa8\xb1\xb0\xb0\xe3\xd0\xd0\xd0\xfa\xe0\xdf\xe0\ +\xfe\xe8\xe7\xe8\xff\xef\xee\xee\xff\xf4\xf3\xf4\xff\xf7\xf7\xf7\ +\xff\xfa\xfa\xfa\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfc\xfc\xfc\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xdf\xdf\xdf\xff\x85\x84\x84\ +\xff\x54\x54\x54\xff\x8c\x8c\x8c\xff\xd4\xd4\xd4\xff\xef\xef\xef\ +\xfe\xed\xed\xed\xfe\xe6\xe5\xe5\xfe\xdb\xda\xda\xfe\xc5\xc4\xc4\ +\xf6\x9c\x9b\x9c\xd8\x62\x61\x61\x9d\x23\x22\x22\x5f\x01\x01\x01\ +\x3b\x00\x00\x00\x2b\x00\x00\x00\x1f\x00\x00\x00\x15\x00\x00\x00\ +\x0c\x00\x00\x00\x05\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x03\x00\x00\x00\x09\x17\x15\x15\x1e\x56\x54\x54\x5b\x8e\x8d\x8d\ +\xb0\xba\xb9\xba\xea\xd6\xd5\xd6\xfc\xe5\xe4\xe4\xfe\xed\xec\xec\ +\xff\xf3\xf2\xf3\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\xff\xfb\xfb\xfb\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xf5\xf5\xf5\xff\xbe\xbe\xbe\ +\xff\x5d\x5d\x5d\xff\x3c\x3d\x3d\xff\x7e\x7d\x7d\xff\xca\xca\xca\ +\xff\xed\xed\xed\xff\xf0\xf0\xf0\xff\xea\xe9\xea\xff\xe0\xe0\xe0\ +\xfe\xcd\xcc\xcc\xf9\xa6\xa5\xa5\xde\x6a\x69\x69\xa2\x25\x24\x24\ +\x60\x01\x00\x01\x3a\x00\x00\x00\x2b\x00\x00\x00\x1e\x00\x00\x00\ +\x13\x00\x00\x00\x0a\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\ +\x07\x11\x0f\x10\x18\x53\x51\x52\x53\x91\x8f\x8f\xad\xbf\xbe\xbe\ +\xec\xdb\xda\xda\xfd\xe8\xe7\xe7\xfe\xef\xee\xee\xfe\xf5\xf4\xf5\ +\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xf1\xf1\xf1\ +\xff\xaa\xaa\xaa\xff\x41\x42\x42\xff\x28\x28\x28\xff\x62\x63\x63\ +\xff\xa6\xa7\xa7\xff\xd5\xd4\xd5\xff\xeb\xeb\xeb\xff\xec\xec\xec\ +\xfe\xe4\xe3\xe3\xfe\xd2\xd1\xd1\xfa\xab\xaa\xaa\xdf\x6b\x6a\x6b\ +\x9f\x23\x22\x22\x5a\x00\x00\x00\x37\x00\x00\x00\x28\x00\x00\x00\ +\x1c\x00\x00\x00\x10\x00\x00\x00\x08\x00\x00\x00\x03\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x05\x09\x08\x08\ +\x11\x4a\x47\x49\x43\x8c\x8a\x8b\xa1\xbe\xbd\xbe\xe8\xdb\xdb\xdb\ +\xfd\xe9\xe8\xe8\xff\xf1\xf0\xf0\xff\xf6\xf6\xf6\xff\xfa\xfa\xfa\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xe5\xe5\xe5\xff\x87\x87\x89\xff\x25\x25\x26\xff\x11\x11\x12\ +\xff\x34\x34\x34\xff\x77\x77\x77\xff\xc8\xc8\xc8\xff\xed\xed\xed\ +\xff\xea\xea\xea\xfe\xe0\xdf\xdf\xfe\xce\xcd\xcd\xf9\xa2\xa2\xa2\ +\xda\x5b\x5a\x5a\x93\x14\x13\x13\x51\x00\x00\x00\x33\x00\x00\x00\ +\x25\x00\x00\x00\x18\x00\x00\x00\x0d\x00\x00\x00\x06\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x03\x04\x03\x03\x0b\x3a\x38\x38\ +\x2f\x83\x80\x81\x8a\xba\xb8\xb9\xdf\xdb\xda\xda\xfc\xe9\xe9\xe9\ +\xff\xf1\xf1\xf1\xff\xf6\xf6\xf6\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xf9\xf9\xf9\ +\xff\xf3\xf3\xf3\xff\xf6\xf6\xf6\xff\xfc\xfc\xfc\xff\xfe\xfe\xff\ +\xff\xfa\xfa\xfb\xff\xcf\xcf\xd0\xff\x67\x67\x67\xff\x13\x13\x13\ +\xff\x03\x03\x03\xff\x27\x27\x27\xff\x7d\x7d\x7d\xff\xb0\xb1\xb1\ +\xff\xae\xae\xae\xff\xa4\xa4\xa3\xff\x9a\x9a\x99\xfe\x84\x83\x83\ +\xf7\x53\x53\x53\xcf\x1d\x1c\x1c\x81\x02\x01\x01\x45\x00\x00\x00\ +\x2e\x00\x00\x00\x20\x00\x00\x00\x13\x00\x00\x00\x0a\x00\x00\x00\ +\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x06\x25\x23\x24\x1d\x71\x6f\x70\ +\x6a\xb1\xb0\xb0\xce\xd9\xd8\xd8\xf9\xe9\xe8\xe9\xff\xf1\xf0\xf1\ +\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfc\xfc\xfc\xff\xf3\xf3\xf3\xff\xdd\xdd\xdd\xff\xc0\xc0\xc0\ +\xff\xa4\xa4\xa4\xff\xb3\xb3\xb3\xff\xe4\xe4\xe4\xff\xfc\xfc\xfc\ +\xff\xff\xff\xff\xff\xf5\xf5\xf5\xff\xb1\xb1\xb1\xff\x3b\x3b\x3b\ +\xff\x03\x03\x03\xff\x07\x07\x07\xff\x25\x25\x25\xff\x37\x38\x38\ +\xff\x35\x35\x35\xff\x2f\x2f\x2f\xff\x2a\x2a\x2a\xff\x25\x25\x25\ +\xfe\x19\x18\x19\xf2\x0d\x0c\x0c\xbc\x08\x07\x07\x69\x01\x01\x01\ +\x3b\x00\x00\x00\x28\x00\x00\x00\x1a\x00\x00\x00\x0f\x00\x00\x00\ +\x06\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x03\x08\x07\x07\x0d\x58\x57\x58\x44\xa0\x9f\x9f\ +\xad\xd1\xd0\xd0\xf1\xe7\xe6\xe6\xfe\xf0\xf0\xf0\xff\xf6\xf6\xf6\ +\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfa\xfa\xfa\xff\xd8\xd8\xd8\xff\x8f\x8f\x8f\xff\x67\x67\x67\ +\xff\x59\x5a\x5a\xff\x6a\x6a\x6a\xff\xbf\xbf\xbf\xff\xf7\xf7\xf7\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xd5\xd5\xd5\xff\x5b\x5b\x5b\ +\xff\x09\x09\x09\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfd\x02\x02\x02\xe5\x08\x07\x07\x9c\x05\x05\x05\ +\x51\x00\x00\x00\x32\x00\x00\x00\x22\x00\x00\x00\x14\x00\x00\x00\ +\x0a\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x05\x35\x34\x34\x21\x88\x87\x88\x7e\xc3\xc2\xc3\ +\xdd\xe3\xe2\xe3\xfc\xee\xee\xee\xfe\xf5\xf5\xf5\xff\xf9\xf9\xf9\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfb\xfb\xfb\xff\xdc\xdc\xdc\xff\x99\x99\x99\xff\x8d\x8e\x8d\ +\xff\xa2\xa3\xa3\xff\xa3\xa4\xa4\xff\xcf\xd0\xd0\xff\xf8\xf8\xf8\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe4\xe4\xe5\xff\x75\x75\x75\ +\xff\x11\x11\x11\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfe\x00\x00\x00\xf8\x04\x03\x03\xcc\x07\x06\x06\ +\x77\x01\x01\x01\x3e\x00\x00\x00\x29\x00\x00\x00\x1b\x00\x00\x00\ +\x0f\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x02\x06\x04\x05\x0c\x6b\x69\x69\x48\xb0\xaf\xb0\xb7\xda\xda\xda\ +\xf5\xeb\xeb\xeb\xfe\xf3\xf3\xf3\xfe\xf8\xf8\xf8\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xf8\xf7\xf8\xff\xe8\xe8\xe8\xff\xea\xea\xea\ +\xff\xf4\xf4\xf5\xff\xf3\xf3\xf3\xff\xf6\xf7\xf7\xff\xfd\xfd\xfd\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf1\xf1\xf1\xff\x92\x93\x93\ +\xff\x1f\x20\x20\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfe\x00\x00\x00\xfd\x01\x01\x01\xea\x06\x06\x06\ +\xa4\x05\x05\x05\x53\x00\x00\x00\x31\x00\x00\x00\x21\x00\x00\x00\ +\x13\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x03\x31\x2e\x2f\x1c\x8f\x8c\x8d\x7b\xca\xc9\xc9\xde\xe7\xe7\xe7\ +\xfd\xf1\xf1\xf1\xff\xf7\xf6\xf7\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfc\xfc\xfc\xff\xef\xef\xef\xff\xd5\xd5\xd5\ +\xff\xd2\xd2\xd2\xff\xed\xed\xed\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfc\xfc\xfc\xff\xf7\xf7\xf7\xff\xef\xef\xef\xff\xec\xec\xec\ +\xff\xee\xee\xee\xff\xf2\xf2\xf2\xff\xf6\xf6\xf6\xff\xf6\xf6\xf6\ +\xff\xf2\xf2\xf2\xff\xef\xef\xef\xff\xf2\xf3\xf2\xff\xf4\xf4\xf3\ +\xff\xf0\xf0\xf0\xff\xeb\xeb\xeb\xff\xe5\xe5\xe6\xff\xa2\xa3\xa3\ +\xff\x2f\x30\x30\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfe\x00\x00\x00\xfe\x00\x00\x00\xf8\x03\x03\x03\ +\xcc\x07\x06\x06\x74\x01\x01\x01\x3a\x00\x00\x00\x27\x00\x00\x00\ +\x18\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x07\x2c\x2b\x2c\x39\x7f\x7e\x7e\xab\xc9\xc9\xc9\xf3\xec\xec\xec\ +\xff\xf5\xf5\xf5\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfb\xfb\xfb\xff\xe2\xe2\xe2\xff\xa3\xa4\xa4\xff\x66\x66\x66\ +\xff\x76\x77\x77\xff\xcc\xcc\xcc\xff\xfb\xfb\xfb\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xf9\xf9\xf9\ +\xff\xdf\xdf\xdf\xff\xb3\xb3\xb3\xff\x93\x94\x94\xff\x89\x8a\x8a\ +\xff\x90\x90\x90\xff\x9c\x9d\x9c\xff\xa5\xa5\xa5\xff\xa6\xa6\xa6\ +\xff\x9a\x9a\x9a\xff\x90\x91\x91\xff\x9c\x9c\x9c\xff\xa1\xa1\xa1\ +\xff\x95\x95\x96\xff\x86\x86\x87\xff\x84\x84\x86\xff\x6a\x6b\x6b\ +\xff\x25\x25\x25\xff\x02\x02\x02\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x01\x01\x01\ +\xe7\x05\x04\x04\x99\x03\x03\x03\x49\x00\x00\x00\x2c\x00\x00\x00\ +\x1d\x00\x00\x00\x11\x00\x00\x00\x00\x00\x00\x00\x01\x07\x05\x06\ +\x0f\x12\x11\x12\x5d\x4e\x4e\x4e\xce\xaf\xaf\xaf\xfb\xe7\xe7\xe7\ +\xff\xf1\xf1\xf1\xff\xf4\xf4\xf4\xff\xf5\xf5\xf5\xff\xf5\xf5\xf5\ +\xff\xde\xde\xde\xff\x92\x92\x92\xff\x3c\x3c\x3c\xff\x2c\x2c\x2c\ +\xff\x74\x75\x75\xff\xd4\xd4\xd4\xff\xfb\xfb\xfb\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfa\xfa\xfa\xff\xd9\xd9\xd9\ +\xff\x85\x86\x86\xff\x3b\x3b\x3b\xff\x1f\x1f\x1e\xff\x19\x1a\x1a\ +\xff\x1d\x1d\x1d\xff\x24\x24\x26\xff\x2a\x2a\x2f\xff\x2b\x2b\x34\ +\xff\x24\x24\x32\xff\x1e\x1e\x31\xff\x24\x25\x3e\xff\x27\x27\x46\ +\xff\x20\x20\x42\xff\x18\x18\x3a\xff\x18\x18\x38\xff\x16\x16\x30\ +\xff\x08\x08\x1a\xff\x00\x00\x0b\xff\x00\x00\x05\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xf5\x03\x02\x02\xba\x04\x04\x04\x5f\x00\x00\x00\x31\x00\x00\x00\ +\x20\x00\x00\x00\x15\x00\x00\x00\x00\x01\x00\x00\x02\x0e\x0c\x0d\ +\x1c\x08\x08\x08\x82\x29\x29\x2a\xe6\x77\x77\x77\xfe\xa4\xa4\xa4\ +\xff\xab\xab\xab\xff\xac\xac\xac\xff\xad\xae\xae\xff\xa8\xa8\xa8\ +\xff\x7d\x7d\x7d\xff\x32\x32\x32\xff\x1d\x1d\x1d\xff\x6b\x6c\x6b\ +\xff\xcb\xcb\xcb\xff\xf6\xf6\xf6\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfa\xfa\xfa\xff\xdb\xdb\xdb\xff\x85\x85\x85\ +\xff\x28\x28\x28\xff\x03\x03\x04\xff\x00\x00\x03\xff\x00\x00\x0b\ +\xff\x00\x00\x18\xff\x00\x00\x28\xff\x01\x01\x38\xff\x01\x01\x4b\ +\xff\x00\x00\x5b\xff\x00\x00\x69\xff\x00\x00\x75\xff\x00\x00\x7f\ +\xff\x00\x00\x84\xff\x00\x00\x85\xff\x00\x00\x83\xff\x00\x00\x78\ +\xff\x00\x00\x68\xff\x00\x00\x53\xff\x00\x00\x38\xff\x00\x00\x1c\ +\xff\x00\x00\x08\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfb\x02\x01\x01\xd4\x05\x04\x05\x78\x02\x01\x02\x39\x00\x00\x00\ +\x24\x00\x00\x00\x19\x00\x00\x00\x00\x0e\x0b\x0d\x03\x0f\x0e\x0f\ +\x2e\x07\x07\x07\xa3\x0b\x0b\x0b\xf3\x20\x20\x20\xff\x2c\x2c\x2c\ +\xff\x2e\x2e\x2e\xff\x2e\x2e\x2e\xff\x2e\x2f\x2f\xff\x2b\x2b\x2b\ +\xff\x19\x19\x19\xff\x0f\x0f\x0f\xff\x4e\x4e\x4e\xff\xbe\xbe\xbe\ +\xff\xf7\xf7\xf7\xff\xfe\xfe\xfe\xff\xfb\xfb\xfb\xff\xee\xee\xee\ +\xff\xe6\xe6\xe6\xff\xd4\xd5\xd4\xff\x88\x88\x87\xff\x2c\x2c\x2e\ +\xff\x04\x04\x10\xff\x00\x00\x1c\xff\x00\x00\x35\xff\x00\x00\x55\ +\xff\x00\x00\x74\xff\x00\x00\x8c\xff\x00\x00\x9e\xff\x00\x00\xab\ +\xff\x00\x00\xb5\xff\x00\x00\xbb\xff\x00\x00\xbf\xff\x00\x00\xc2\ +\xff\x00\x00\xc3\xff\x00\x00\xc3\xff\x00\x00\xc3\xff\x00\x00\xc0\ +\xff\x00\x00\xbb\xff\x00\x00\xb0\xff\x00\x00\x9c\xff\x00\x00\x74\ +\xff\x00\x00\x41\xff\x00\x00\x18\xff\x00\x00\x04\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfe\x01\x01\x01\xe5\x05\x04\x04\x90\x03\x03\x03\x42\x00\x00\x00\ +\x27\x00\x00\x00\x1b\x00\x00\x00\x00\x12\x11\x13\x06\x10\x0f\x10\ +\x43\x06\x06\x06\xbc\x00\x00\x00\xfa\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x21\x21\x21\xff\x8f\x8f\x8f\xff\xec\xec\xec\ +\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xe2\xe2\xe2\xff\xa1\xa1\xa0\ +\xff\x7b\x7c\x7c\xff\x67\x67\x6e\xff\x2a\x2b\x42\xff\x04\x04\x36\ +\xff\x00\x00\x55\xff\x00\x00\x7a\xff\x00\x00\x9a\xff\x00\x00\xb2\ +\xff\x00\x00\xbf\xff\x00\x00\xc5\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xbd\ +\xff\x00\x00\x9f\xff\x00\x00\x6b\xff\x00\x00\x33\xff\x00\x00\x0c\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x00\x00\xf0\x04\x03\x04\xa7\x04\x03\x04\x4e\x00\x00\x00\ +\x2a\x00\x00\x00\x1e\x00\x00\x00\x01\x15\x14\x15\x0b\x0f\x0f\x0f\ +\x58\x05\x05\x05\xcf\x00\x00\x00\xfd\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x2f\x2f\x2f\xff\xab\xab\xab\xff\xf7\xf7\xf7\ +\xff\xfe\xfe\xfe\xff\xeb\xeb\xea\xff\x9f\x9f\x9f\xff\x39\x39\x41\ +\xff\x11\x11\x2c\xff\x0c\x0c\x4c\xff\x03\x03\x6f\xff\x00\x00\x93\ +\xff\x00\x00\xb1\xff\x00\x00\xc1\xff\x00\x00\xc7\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc7\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc7\xff\x00\x00\xb8\xff\x00\x00\x8c\xff\x00\x00\x47\ +\xff\x00\x00\x10\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xf6\x04\x03\x04\xb9\x05\x05\x05\x5a\x00\x00\x00\ +\x2d\x00\x00\x00\x20\x00\x00\x00\x00\x17\x15\x16\x0f\x0e\x0e\x0e\ +\x69\x04\x04\x04\xdc\x00\x00\x00\xfe\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x21\x21\x21\xff\x86\x86\x86\xff\xd7\xd7\xd7\ +\xff\xdb\xdb\xda\xff\xa2\xa2\xa7\xff\x44\x44\x5f\xff\x09\x09\x4c\ +\xff\x00\x00\x71\xff\x00\x00\x9c\xff\x00\x00\xba\xff\x00\x00\xc6\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc1\xff\x00\x00\x97\ +\xff\x00\x00\x47\xff\x00\x00\x0c\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfa\x04\x04\x04\xc6\x07\x06\x06\x65\x01\x01\x01\ +\x30\x00\x00\x00\x21\x00\x00\x00\x00\x11\x10\x10\x12\x0a\x0a\x0a\ +\x75\x03\x03\x03\xe4\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x08\x08\x08\xff\x31\x31\x31\xff\x63\x63\x66\ +\xff\x65\x65\x76\xff\x36\x36\x6f\xff\x0b\x0b\x7c\xff\x00\x00\x9f\ +\xff\x00\x00\xbb\xff\x00\x00\xc6\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc1\ +\xff\x00\x00\x88\xff\x00\x00\x2b\xff\x00\x00\x02\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfc\x02\x01\x01\xce\x04\x03\x03\x6c\x01\x00\x00\ +\x31\x00\x00\x00\x22\x00\x00\x00\x00\x09\x07\x07\x14\x04\x04\x04\ +\x7b\x01\x01\x01\xe9\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x04\x04\x09\xff\x0c\x0c\x2e\ +\xff\x0c\x0c\x67\xff\x04\x04\x99\xff\x00\x00\xb8\xff\x00\x00\xc6\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xac\xff\x00\x00\x4f\xff\x00\x00\x08\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfd\x00\x00\x00\xd3\x00\x00\x00\x6f\x00\x00\x00\ +\x31\x00\x00\x00\x22\x0a\x06\x06\x00\x03\x02\x02\x14\x00\x00\x00\ +\x7d\x00\x00\x00\xea\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x0c\xff\x00\x00\x36\xff\x00\x00\x78\ +\xff\x00\x00\xad\xff\x00\x00\xc3\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xbb\xff\x00\x00\x6a\xff\x00\x00\x11\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfd\x00\x00\x00\xd4\x00\x00\x00\x70\x00\x00\x00\ +\x31\x00\x00\x00\x22\x09\x03\x03\x00\x04\x03\x04\x14\x01\x01\x01\ +\x7b\x00\x00\x00\xe9\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\ +\xff\x00\x00\x13\xff\x00\x00\x4a\xff\x00\x00\x8f\xff\x00\x00\xba\ +\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc7\xff\x00\x00\xc2\ +\xff\x00\x00\xbb\xff\x00\x00\xb2\xff\x00\x00\xb3\xff\x00\x00\xc0\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc0\xff\x00\x00\x77\xff\x00\x00\x17\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfd\x00\x00\x00\xd3\x00\x00\x00\x6f\x00\x00\x00\ +\x30\x00\x00\x00\x20\x5c\x9b\xa7\x00\x0b\x0a\x0c\x11\x06\x05\x06\ +\x76\x01\x01\x01\xe6\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x18\ +\xff\x00\x00\x56\xff\x00\x00\x9d\xff\x00\x00\xc1\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc5\xff\x00\x00\xb9\xff\x00\x00\xa2\xff\x00\x00\x86\ +\xff\x00\x00\x6c\xff\x00\x00\x5c\xff\x00\x00\x75\xff\x00\x00\xae\ +\xff\x00\x00\xc7\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xbe\xff\x00\x00\x71\xff\x00\x00\x13\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfd\x01\x00\x01\xd0\x02\x01\x02\x6b\x00\x00\x00\ +\x2e\x00\x00\x00\x1f\x6e\x6a\x76\x00\x18\x17\x18\x0e\x0e\x0d\x0e\ +\x6d\x04\x04\x04\xe0\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x1b\xff\x00\x00\x5e\ +\xff\x00\x00\xa4\xff\x00\x00\xc4\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc1\xff\x00\x00\xaf\ +\xff\x00\x00\x8f\xff\x00\x00\x68\xff\x00\x00\x43\xff\x00\x00\x26\ +\xff\x00\x00\x15\xff\x00\x00\x1f\xff\x00\x00\x67\xff\x00\x00\xb3\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc7\xff\x00\x00\xc6\xff\x00\x00\xc6\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc6\ +\xff\x00\x00\xa6\xff\x00\x00\x4e\xff\x00\x00\x09\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfb\x03\x03\x03\xc9\x06\x06\x06\x64\x01\x01\x01\ +\x2b\x00\x00\x00\x1d\x52\x4f\x53\x00\x23\x22\x23\x0a\x12\x12\x12\ +\x5d\x06\x06\x06\xd5\x00\x00\x00\xfe\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x01\xff\x00\x00\x19\xff\x00\x00\x5e\xff\x00\x00\xa6\ +\xff\x00\x00\xc5\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc1\xff\x00\x00\xa8\xff\x00\x00\x81\xff\x00\x00\x56\ +\xff\x00\x00\x2e\xff\x00\x00\x14\xff\x00\x00\x06\xff\x00\x00\x01\ +\xff\x00\x00\x01\xff\x00\x00\x26\xff\x00\x00\x8a\xff\x00\x00\xc3\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc4\xff\x00\x00\xae\xff\x00\x00\xa9\xff\x00\x00\xc0\ +\xff\x00\x00\xc9\xff\x00\x00\xc7\xff\x00\x00\xbc\xff\x00\x00\x9a\ +\xff\x00\x00\x5c\xff\x00\x00\x1c\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xf8\x05\x05\x05\xbd\x08\x08\x08\x59\x01\x01\x01\ +\x27\x00\x00\x00\x1a\x20\x1f\x20\x00\x2a\x28\x2a\x05\x15\x14\x15\ +\x48\x08\x08\x08\xc4\x01\x01\x01\xfc\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x11\xff\x00\x00\x55\xff\x00\x00\xa4\xff\x00\x00\xc5\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc3\xff\x00\x00\xae\ +\xff\x00\x00\x83\xff\x00\x00\x4c\xff\x00\x00\x22\xff\x00\x00\x0d\ +\xff\x00\x00\x02\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x08\xff\x00\x00\x43\xff\x00\x00\xa3\xff\x00\x00\xc7\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc3\xff\x00\x00\x94\xff\x00\x00\x73\xff\x00\x00\xa3\ +\xff\x00\x00\xbc\xff\x00\x00\xa4\xff\x00\x00\x75\xff\x00\x00\x3c\ +\xff\x00\x00\x14\xff\x00\x00\x02\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xf3\x05\x05\x05\xaa\x06\x06\x06\x4a\x00\x00\x00\ +\x23\x00\x00\x00\x17\x20\x1f\x20\x00\x37\x36\x37\x01\x17\x17\x17\ +\x33\x0b\x0b\x0b\xac\x02\x02\x02\xf7\x00\x00\x00\xff\x00\x00\x04\ +\xff\x00\x00\x36\xff\x00\x00\x94\xff\x00\x00\xc3\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xbb\xff\x00\x00\x92\xff\x00\x00\x57\ +\xff\x00\x00\x27\xff\x00\x00\x0a\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x01\xff\x00\x00\x05\xff\x00\x00\x0e\xff\x00\x00\x1f\ +\xff\x00\x00\x41\xff\x00\x00\x83\xff\x00\x00\xbb\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc7\xff\x00\x00\x97\xff\x00\x00\x51\xff\x00\x00\x62\ +\xff\x00\x00\x6f\xff\x00\x00\x47\xff\x00\x00\x1d\xff\x00\x00\x06\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfe\x03\x03\x03\xe9\x08\x07\x07\x95\x06\x05\x05\x3d\x00\x00\x00\ +\x1f\x00\x00\x00\x14\x1e\x1d\x1d\x00\x00\x00\x00\x00\x19\x18\x19\ +\x1d\x0d\x0d\x0e\x8c\x05\x05\x05\xec\x01\x01\x01\xff\x00\x00\x08\ +\xff\x00\x00\x52\xff\x00\x00\xb1\xff\x00\x00\xca\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xbf\xff\x00\x00\x89\xff\x00\x00\x3b\xff\x00\x00\x0e\ +\xff\x00\x00\x01\xff\x00\x00\x01\xff\x00\x00\x06\xff\x00\x00\x12\ +\xff\x00\x00\x25\xff\x00\x00\x40\xff\x00\x00\x60\xff\x00\x00\x80\ +\xff\x00\x00\xa0\xff\x00\x00\xbc\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xa2\xff\x00\x00\x46\xff\x00\x00\x1b\ +\xff\x00\x00\x16\xff\x00\x00\x08\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\ +\xfd\x06\x06\x06\xda\x09\x09\x09\x79\x05\x04\x04\x30\x00\x00\x00\ +\x1a\x00\x00\x00\x11\x12\x10\x11\x00\x20\x21\x20\x00\x1e\x1e\x1e\ +\x0d\x12\x12\x12\x67\x09\x09\x09\xd8\x04\x04\x03\xfd\x02\x01\x07\ +\xff\x00\x00\x41\xff\x00\x00\xa0\xff\x00\x00\xc7\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xaf\xff\x00\x00\x55\xff\x00\x00\x0c\xff\x00\x00\x02\ +\xff\x00\x00\x0e\xff\x00\x00\x25\xff\x00\x00\x43\xff\x00\x00\x65\ +\xff\x00\x00\x86\xff\x00\x00\xa1\xff\x00\x00\xb5\xff\x00\x00\xc1\ +\xff\x00\x00\xc6\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xa5\xff\x00\x00\x43\xff\x00\x00\x06\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\xff\x05\x05\x05\ +\xf8\x09\x08\x08\xc1\x0a\x0a\x0a\x5d\x02\x02\x02\x26\x00\x00\x00\ +\x16\x00\x00\x00\x0d\x00\x00\x00\x00\x24\x23\x24\x00\x2f\x2c\x2e\ +\x03\x1c\x1b\x1b\x3f\x10\x10\x10\xb8\x07\x08\x07\xf8\x03\x03\x04\ +\xff\x01\x01\x1a\xff\x00\x00\x5f\xff\x00\x00\xa1\xff\x00\x00\xbe\ +\xff\x00\x00\xc6\xff\x00\x00\xc8\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xa8\xff\x00\x00\x45\xff\x00\x00\x0d\xff\x00\x00\x29\ +\xff\x00\x00\x5a\xff\x00\x00\x84\xff\x00\x00\xa3\xff\x00\x00\xb6\ +\xff\x00\x00\xc2\xff\x00\x00\xc7\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\x9d\xff\x00\x00\x3a\xff\x00\x00\x03\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x04\x04\x04\xfe\x08\x08\x08\ +\xed\x0d\x0c\x0c\x9f\x0a\x09\x09\x42\x00\x00\x00\x1e\x00\x00\x00\ +\x11\x00\x00\x00\x09\x00\x00\x00\x00\x24\x22\x23\x00\x06\x00\x00\ +\x00\x29\x28\x28\x1e\x19\x19\x19\x89\x0c\x0d\x0d\xe8\x06\x06\x05\ +\xfe\x02\x02\x05\xff\x00\x00\x1a\xff\x00\x00\x48\xff\x00\x00\x72\ +\xff\x00\x00\x89\xff\x00\x00\x95\xff\x00\x00\x9d\xff\x00\x00\xa0\ +\xff\x00\x00\x87\xff\x00\x00\x41\xff\x00\x00\x37\xff\x00\x00\x7e\ +\xff\x00\x00\xb0\xff\x00\x00\xc2\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc3\xff\x00\x00\x88\xff\x00\x00\x28\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x04\x04\x04\xff\x07\x07\x07\xfb\x0d\x0d\x0d\ +\xd6\x10\x10\x10\x76\x07\x06\x06\x2d\x00\x00\x00\x18\x00\x00\x00\ +\x0d\x00\x00\x00\x06\x00\x00\x00\x00\x03\x03\x01\x00\x43\x42\x44\ +\x00\x35\x34\x35\x09\x22\x22\x23\x53\x13\x14\x14\xc7\x0a\x0a\x0a\ +\xf9\x05\x05\x05\xff\x01\x01\x02\xff\x00\x00\x09\xff\x00\x00\x18\ +\xff\x00\x00\x25\xff\x00\x00\x30\xff\x00\x00\x37\xff\x00\x00\x39\ +\xff\x00\x00\x32\xff\x00\x00\x2c\xff\x00\x00\x69\xff\x00\x00\xb6\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc8\xff\x00\x00\xc7\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xb7\xff\x00\x00\x66\xff\x00\x00\x14\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x03\x03\x03\xfe\x07\x07\x07\xfe\x0b\x0b\x0b\xf1\x11\x11\x12\ +\xaf\x11\x10\x10\x4d\x01\x00\x00\x21\x00\x00\x00\x13\x00\x00\x00\ +\x09\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x2b\x2a\x2b\ +\x00\x29\x28\x29\x01\x2c\x2c\x2d\x24\x1d\x1d\x1d\x91\x10\x10\x10\ +\xea\x09\x09\x09\xfd\x04\x04\x04\xfe\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x02\xff\x00\x00\x03\xff\x00\x00\x03\ +\xff\x00\x00\x03\xff\x00\x00\x1e\xff\x00\x00\x7b\xff\x00\x00\xc2\ +\xff\x00\x00\xc8\xff\x00\x00\xba\xff\x00\x00\xa3\xff\x00\x00\xa1\ +\xff\x00\x00\xb4\xff\x00\x00\xbe\xff\x00\x00\xc2\xff\x00\x00\xc5\ +\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xa1\xff\x00\x00\x41\xff\x00\x00\x06\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\ +\xff\x06\x06\x06\xfe\x0a\x0a\x0a\xfb\x10\x10\x10\xd8\x14\x14\x15\ +\x7a\x0b\x0a\x0b\x2f\x00\x00\x00\x18\x00\x00\x00\x0d\x00\x00\x00\ +\x05\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x0e\x0f\x10\ +\x00\x47\x46\x45\x00\x36\x36\x36\x09\x2a\x2a\x2a\x50\x1b\x1b\x1b\ +\xc1\x0f\x0f\x0f\xf8\x08\x08\x08\xfe\x04\x04\x04\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x16\xff\x00\x00\x70\xff\x00\x00\xbe\ +\xff\x00\x00\xba\xff\x00\x00\x81\xff\x00\x00\x46\xff\x00\x00\x42\ +\xff\x00\x00\x5f\xff\x00\x00\x74\xff\x00\x00\x83\xff\x00\x00\x96\ +\xff\x00\x00\xb2\xff\x00\x00\xc6\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc0\ +\xff\x00\x00\x7e\xff\x00\x00\x21\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x05\x05\x05\ +\xff\x0a\x0a\x0a\xfe\x10\x10\x10\xef\x17\x17\x17\xa8\x14\x14\x14\ +\x49\x02\x02\x02\x1e\x00\x00\x00\x12\x00\x00\x00\x09\x00\x00\x00\ +\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x31\x2f\x2f\x00\x2d\x2b\x2b\x01\x3a\x3a\x3a\x1c\x29\x29\x29\ +\x7d\x19\x18\x19\xdf\x0e\x0d\x0e\xfd\x07\x07\x07\xff\x03\x03\x03\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x0c\xff\x00\x00\x5a\xff\x00\x00\xb3\ +\xff\x00\x00\x9f\xff\x00\x00\x40\xff\x00\x00\x14\xff\x00\x00\x22\ +\xff\x00\x00\x31\xff\x00\x00\x35\xff\x00\x00\x3e\xff\x00\x00\x5b\ +\xff\x00\x00\x97\xff\x00\x00\xc2\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xae\ +\xff\x00\x00\x55\xff\x00\x00\x0c\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x04\x04\x04\xff\x0a\x0a\x0a\ +\xff\x10\x10\x10\xf8\x18\x18\x18\xca\x1c\x1c\x1c\x69\x0c\x0c\x0c\ +\x29\x00\x00\x00\x15\x00\x00\x00\x0c\x00\x00\x00\x05\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x27\x26\x26\x00\x56\x57\x57\x00\x43\x43\x43\x05\x38\x37\x38\ +\x35\x26\x25\x26\xa2\x17\x17\x17\xed\x0d\x0d\x0d\xfe\x08\x08\x08\ +\xff\x03\x03\x03\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x05\xff\x00\x00\x41\xff\x00\x00\xa1\ +\xff\x00\x00\x9a\xff\x00\x00\x4b\xff\x00\x00\x4d\xff\x00\x00\x78\ +\xff\x00\x00\x84\xff\x00\x00\x7b\xff\x00\x00\x7a\xff\x00\x00\x8e\ +\xff\x00\x00\xaf\xff\x00\x00\xc5\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc6\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc6\xff\x00\x00\x91\ +\xff\x00\x00\x30\xff\x00\x00\x03\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x04\x04\x04\xff\x0a\x0a\x0a\xff\x10\x10\x10\ +\xfc\x18\x18\x17\xde\x1e\x1e\x1e\x89\x15\x15\x15\x36\x01\x01\x01\ +\x19\x00\x00\x00\x0f\x00\x00\x00\x07\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4f\x4e\x4f\x00\x46\x45\x46\ +\x0b\x37\x37\x37\x4f\x26\x26\x26\xb9\x18\x18\x18\xf4\x0e\x0e\x0e\ +\xff\x08\x08\x08\xff\x03\x03\x03\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x29\xff\x00\x00\x8b\ +\xff\x00\x00\xb2\xff\x00\x00\x97\xff\x00\x00\xa5\xff\x00\x00\xbf\ +\xff\x00\x00\xc5\xff\x00\x00\xc2\xff\x00\x00\xc1\xff\x00\x00\xc5\ +\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc4\xff\x00\x00\xb1\xff\x00\x00\xa2\xff\x00\x00\xab\ +\xff\x00\x00\xbd\xff\x00\x00\xc8\xff\x00\x00\xb9\xff\x00\x00\x68\ +\xff\x00\x00\x14\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x05\x05\x05\xff\x0a\x0a\x0a\xff\x10\x10\x10\xfd\x19\x19\x19\ +\xe8\x21\x21\x21\xa0\x1e\x1e\x1e\x47\x07\x07\x07\x1c\x00\x00\x00\ +\x10\x00\x00\x00\x09\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\x62\x61\x00\x4f\x51\x4f\ +\x00\x4b\x4b\x4b\x15\x3a\x3a\x3a\x63\x28\x28\x28\xc6\x19\x19\x19\ +\xf7\x0f\x0f\x0f\xff\x09\x09\x09\xff\x04\x04\x04\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x16\xff\x00\x00\x6e\ +\xff\x00\x00\xbc\xff\x00\x00\xc7\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc7\ +\xff\x00\x00\xbf\xff\x00\x00\x8e\xff\x00\x00\x52\xff\x00\x00\x58\ +\xff\x00\x00\x9a\xff\x00\x00\xc3\xff\x00\x00\x9e\xff\x00\x00\x3d\ +\xff\x00\x00\x05\xff\x00\x00\x00\xff\x02\x02\x02\xff\x06\x06\x06\ +\xff\x0b\x0b\x0b\xff\x12\x12\x12\xfe\x1a\x1a\x1b\xed\x24\x24\x24\ +\xae\x25\x25\x25\x55\x0f\x0f\x0f\x21\x00\x00\x00\x12\x00\x00\x00\ +\x0a\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4d\x4c\x4d\x00\x5e\x5d\x5e\ +\x00\x5e\x5c\x5e\x02\x50\x50\x50\x1d\x3e\x3e\x3f\x6e\x2b\x2b\x2b\ +\xca\x1b\x1b\x1b\xf6\x11\x11\x11\xfe\x0a\x0a\x0a\xfe\x05\x05\x05\ +\xff\x02\x02\x02\xff\x00\x00\x00\xff\x00\x00\x08\xff\x00\x00\x4a\ +\xff\x00\x00\xa7\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc3\ +\xff\x00\x00\xae\xff\x00\x00\x7a\xff\x00\x00\x39\xff\x00\x00\x40\ +\xff\x00\x00\x8f\xff\x00\x00\xad\xff\x00\x00\x6b\xff\x00\x00\x1a\ +\xff\x01\x01\x01\xff\x03\x03\x03\xff\x08\x08\x08\xff\x0d\x0d\x0d\ +\xff\x14\x14\x14\xfd\x1d\x1d\x1e\xed\x26\x26\x27\xb3\x29\x29\x29\ +\x5e\x16\x16\x16\x24\x00\x00\x00\x12\x00\x00\x00\x0b\x00\x00\x00\ +\x05\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x56\x58\x56\ +\x00\x65\x63\x67\x00\x6a\x6a\x6b\x02\x56\x56\x57\x1f\x42\x42\x42\ +\x6c\x2f\x2e\x2e\xc3\x1f\x1f\x1f\xf2\x14\x14\x14\xfd\x0d\x0d\x0d\ +\xfe\x08\x08\x08\xff\x04\x04\x04\xff\x01\x01\x02\xff\x00\x00\x21\ +\xff\x00\x00\x6e\xff\x00\x00\xab\xff\x00\x00\xbf\xff\x00\x00\xc3\ +\xff\x00\x00\xc2\xff\x00\x00\xbd\xff\x00\x00\xb6\xff\x00\x00\xad\ +\xff\x00\x00\xa8\xff\x00\x00\xac\xff\x00\x00\xb6\xff\x00\x00\xb7\ +\xff\x00\x00\xa3\xff\x00\x00\x85\xff\x00\x00\x73\xff\x00\x00\x7f\ +\xff\x00\x00\x90\xff\x00\x00\x6d\xff\x00\x00\x2a\xff\x02\x02\x07\ +\xff\x06\x06\x05\xff\x0a\x0a\x0a\xfe\x10\x10\x10\xfe\x17\x17\x17\ +\xfc\x21\x21\x21\xe9\x2c\x2c\x2c\xae\x2e\x2e\x2f\x5c\x1a\x1a\x1b\ +\x25\x01\x01\x01\x12\x00\x00\x00\x0a\x00\x00\x00\x05\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xb9\xb3\xb4\x00\x50\x51\x51\x00\x6b\x6a\x6a\x02\x58\x58\x58\ +\x1b\x48\x48\x48\x5f\x37\x37\x37\xb5\x26\x26\x26\xeb\x19\x19\x19\ +\xfc\x12\x12\x12\xfe\x0c\x0c\x0c\xff\x07\x07\x07\xff\x03\x03\x0a\ +\xff\x01\x01\x26\xff\x00\x00\x53\xff\x00\x00\x77\xff\x00\x00\x83\ +\xff\x00\x00\x7d\xff\x00\x00\x70\xff\x00\x00\x5e\xff\x00\x00\x4c\ +\xff\x00\x00\x45\xff\x00\x00\x4b\xff\x00\x00\x60\xff\x00\x00\x76\ +\xff\x00\x00\x7b\xff\x00\x00\x78\xff\x00\x00\x73\xff\x00\x00\x66\ +\xff\x01\x01\x48\xff\x03\x03\x21\xff\x04\x04\x0a\xff\x09\x09\x09\ +\xfe\x0e\x0e\x0e\xff\x14\x14\x14\xfe\x1b\x1b\x1b\xf9\x26\x27\x27\ +\xdf\x32\x32\x32\xa0\x34\x34\x34\x52\x1d\x1d\x1d\x21\x01\x01\x01\ +\x11\x00\x00\x00\x0a\x00\x00\x00\x05\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x6a\x66\x66\x00\x60\x60\x61\x00\x66\x63\x64\ +\x01\x62\x62\x62\x11\x55\x55\x55\x48\x41\x41\x41\x9a\x2e\x2e\x2e\ +\xda\x21\x21\x21\xf5\x18\x18\x18\xfd\x11\x11\x11\xff\x0c\x0c\x0c\ +\xff\x08\x08\x0b\xff\x05\x05\x10\xff\x03\x03\x1b\xff\x01\x01\x1f\ +\xff\x00\x00\x1b\xff\x00\x00\x13\xff\x00\x00\x0c\xff\x00\x00\x07\ +\xff\x00\x00\x06\xff\x00\x00\x07\xff\x00\x00\x0d\xff\x00\x00\x18\ +\xff\x00\x00\x1f\xff\x01\x01\x21\xff\x02\x02\x1d\xff\x04\x04\x16\ +\xff\x07\x07\x0e\xff\x0a\x0a\x0b\xff\x0e\x0e\x0e\xff\x13\x13\x13\ +\xfe\x1b\x1b\x1b\xfc\x24\x24\x24\xef\x2e\x2e\x2e\xca\x39\x39\x39\ +\x86\x37\x37\x37\x41\x1a\x1a\x1a\x1b\x00\x00\x00\x0e\x00\x00\x00\ +\x09\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x67\x6d\x00\x4b\x4b\x4a\ +\x00\x4b\x4b\x4b\x00\x63\x63\x63\x0a\x5d\x5e\x5e\x2f\x4f\x4f\x4f\ +\x73\x3d\x3d\x3d\xb7\x2d\x2d\x2d\xe3\x21\x22\x21\xf7\x19\x19\x19\ +\xfe\x14\x14\x14\xff\x10\x10\x0f\xff\x0c\x0c\x0c\xff\x0a\x0a\x0a\ +\xff\x07\x07\x07\xff\x06\x06\x05\xff\x05\x05\x04\xff\x04\x04\x04\ +\xff\x03\x03\x03\xff\x04\x04\x03\xff\x04\x04\x04\xff\x05\x05\x05\ +\xff\x06\x06\x07\xff\x08\x08\x08\xff\x0b\x0b\x0a\xff\x0e\x0e\x0d\ +\xff\x11\x11\x10\xff\x15\x15\x15\xff\x1c\x1c\x1c\xfc\x24\x24\x24\ +\xf3\x2e\x2e\x2e\xd8\x3a\x3a\x3a\xa6\x41\x41\x41\x64\x36\x36\x36\ +\x2d\x13\x13\x13\x14\x00\x00\x00\x0c\x00\x00\x00\x07\x00\x00\x00\ +\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x0a\x0a\x0a\x00\x5e\x5e\x5e\x03\x6d\x6d\x6d\ +\x17\x60\x5f\x60\x44\x4d\x4e\x4d\x81\x3e\x3f\x3e\xb9\x33\x33\x33\ +\xdf\x29\x29\x29\xf3\x20\x20\x20\xfc\x19\x19\x19\xfe\x15\x15\x15\ +\xff\x12\x12\x12\xff\x10\x10\x10\xff\x0f\x0f\x0f\xff\x0e\x0e\x0e\ +\xff\x0e\x0e\x0e\xfe\x0e\x0e\x0e\xfe\x0e\x0e\x0e\xfe\x10\x10\x10\ +\xff\x11\x11\x11\xff\x14\x14\x14\xff\x17\x17\x17\xfe\x1b\x1b\x1b\ +\xfe\x22\x22\x22\xf9\x2b\x2b\x2b\xee\x34\x34\x34\xd6\x3c\x3d\x3d\ +\xac\x45\x45\x45\x73\x46\x46\x46\x3d\x2e\x2f\x2f\x1b\x08\x08\x08\ +\x0e\x00\x00\x00\x09\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9e\x9f\x9e\x00\x3c\x3d\x3c\ +\x00\x69\x69\x69\x07\x6c\x6b\x6c\x1b\x62\x62\x62\x43\x58\x58\x58\ +\x74\x4c\x4c\x4c\xa4\x3e\x3f\x3e\xc8\x33\x34\x33\xe1\x2d\x2d\x2d\ +\xf0\x28\x28\x28\xf8\x24\x24\x24\xfc\x21\x21\x21\xfe\x1f\x1f\x1f\ +\xfe\x1e\x1e\x1e\xff\x1e\x1e\x1e\xfe\x1f\x1f\x1f\xfe\x21\x21\x21\ +\xfd\x25\x25\x25\xfb\x2a\x2a\x2a\xf6\x2f\x2f\x2f\xec\x35\x35\x36\ +\xda\x40\x40\x40\xbe\x4a\x4a\x4a\x98\x4f\x4f\x4f\x6a\x4d\x4d\x4d\ +\x3e\x3c\x3c\x3c\x1e\x12\x12\x12\x0e\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x70\x6f\x70\x00\x46\x45\x46\x00\x72\x71\x72\x06\x79\x79\x79\ +\x14\x70\x70\x70\x2e\x62\x63\x62\x4e\x58\x58\x58\x70\x52\x52\x52\ +\x8f\x4d\x4d\x4d\xaa\x48\x48\x48\xbc\x46\x46\x46\xca\x46\x47\x46\ +\xd5\x47\x47\x47\xda\x46\x46\x46\xd9\x44\x45\x45\xd1\x45\x45\x45\ +\xc6\x47\x47\x47\xb8\x4b\x4b\x4b\xa3\x4e\x4f\x4e\x88\x53\x53\x54\ +\x69\x59\x59\x59\x49\x58\x58\x57\x2c\x43\x43\x43\x17\x18\x18\x18\ +\x0c\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\ +\x00\x70\x72\x73\x02\x73\x73\x74\x07\x71\x71\x70\x11\x6f\x6f\x6f\ +\x1f\x6c\x6c\x6c\x2e\x6a\x6a\x6a\x3c\x6c\x6c\x6c\x4a\x6f\x70\x6f\ +\x55\x70\x71\x70\x5b\x6e\x6e\x6e\x5a\x69\x6a\x6a\x52\x65\x65\x65\ +\x47\x61\x61\x61\x3a\x5f\x5f\x5f\x2d\x57\x58\x57\x1f\x48\x48\x48\ +\x14\x30\x30\x30\x0c\x0d\x0d\x0e\x07\x00\x00\x00\x05\x00\x00\x00\ +\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x18\x18\ +\x02\x3e\x3e\x3e\x03\x46\x46\x46\x05\x51\x51\x51\x08\x59\x5a\x59\ +\x0b\x5e\x5e\x5e\x0c\x55\x55\x55\x0c\x49\x49\x49\x0b\x39\x39\x39\ +\x0a\x28\x28\x28\x08\x15\x15\x15\x07\x04\x04\x04\x05\x00\x00\x00\ +\x04\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xc0\x00\x00\x3f\xff\x00\xff\xff\x00\ +\x00\x00\x1f\xff\x00\xff\xfc\x00\x00\x00\x07\xff\x00\xff\xf8\x00\ +\x00\x00\x01\xff\x00\xff\xe0\x00\x00\x00\x00\xff\x00\xff\xc0\x00\ +\x00\x00\x00\x7f\x00\xff\x80\x00\x00\x00\x00\x3f\x00\xff\x00\x00\ +\x00\x00\x00\x1f\x00\xfe\x00\x00\x00\x00\x00\x0f\x00\xfc\x00\x00\ +\x00\x00\x00\x07\x00\xfc\x00\x00\x00\x00\x00\x07\x00\xf8\x00\x00\ +\x00\x00\x00\x03\x00\xf0\x00\x00\x00\x00\x00\x01\x00\xf0\x00\x00\ +\x00\x00\x00\x01\x00\xe0\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x00\ +\x00\x00\x00\x01\x00\xf0\x00\x00\x00\x00\x00\x03\x00\xf8\x00\x00\ +\x00\x00\x00\x03\x00\xfc\x00\x00\x00\x00\x00\x07\x00\xfe\x00\x00\ +\x00\x00\x00\x07\x00\xfe\x00\x00\x00\x00\x00\x0f\x00\xff\x00\x00\ +\x00\x00\x00\x1f\x00\xff\x80\x00\x00\x00\x00\x3f\x00\xff\xc0\x00\ +\x00\x00\x00\x7f\x00\xff\xf0\x00\x00\x00\x00\xff\x00\xff\xf8\x00\ +\x00\x00\x03\xff\x00\xff\xfe\x00\x00\x00\x0f\xff\x00\xff\xff\x80\ +\x00\x00\x1f\xff\x00\xff\xff\xe0\x00\x00\x7f\xff\x00\xff\xff\xfc\ +\x00\x01\xff\xff\x00\x28\x00\x00\x00\x20\x00\x00\x00\x40\x00\x00\ +\x00\x01\x00\x20\x00\x00\x00\x00\x00\x00\x10\x00\x00\x13\x0b\x00\ +\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x08\x00\x00\x00\ +\x0d\x00\x00\x00\x13\x00\x00\x00\x18\x00\x00\x00\x1d\x00\x00\x00\ +\x1f\x00\x00\x00\x1d\x00\x00\x00\x19\x00\x00\x00\x16\x00\x00\x00\ +\x12\x00\x00\x00\x0d\x00\x00\x00\x07\x00\x00\x00\x03\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x02\x00\x00\x00\x07\x00\x00\x00\x12\x10\x0e\x0f\x22\x2c\x2a\x2b\ +\x38\x40\x3f\x3f\x4d\x4d\x4b\x4c\x5e\x51\x50\x51\x69\x4f\x4e\x4e\ +\x69\x47\x45\x46\x60\x35\x34\x35\x52\x1f\x1e\x1e\x40\x07\x07\x06\ +\x2e\x00\x00\x00\x21\x00\x00\x00\x16\x00\x00\x00\x0e\x00\x00\x00\ +\x07\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x06\x09\x08\x08\ +\x13\x2f\x2e\x2e\x30\x58\x56\x57\x60\x79\x78\x78\x8f\x94\x92\x93\ +\xb5\xa4\xa2\xa3\xcd\xae\xac\xad\xdb\xb2\xb1\xb2\xe2\xb1\xb1\xb1\ +\xe1\xab\xaa\xaa\xd9\x9e\x9d\x9e\xcb\x8b\x8a\x8a\xb3\x6b\x6a\x6a\ +\x90\x43\x41\x42\x66\x18\x17\x17\x3e\x01\x01\x01\x26\x00\x00\x00\ +\x18\x00\x00\x00\x0d\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x08\x25\x23\x24\x22\x5e\x5c\x5d\ +\x5d\x8c\x8a\x8b\xa2\xae\xac\xad\xd6\xc6\xc4\xc5\xf0\xd6\xd5\xd6\ +\xfa\xdf\xde\xdf\xfd\xe4\xe3\xe4\xfe\xe6\xe6\xe6\xff\xe6\xe6\xe6\ +\xff\xe3\xe2\xe3\xfe\xdd\xdd\xdd\xfd\xd3\xd2\xd2\xf8\xc1\xc0\xc0\ +\xed\xa4\xa3\xa4\xd3\x78\x77\x78\xa0\x3f\x3e\x3e\x64\x0c\x0b\x0b\ +\x36\x00\x00\x00\x1f\x00\x00\x00\x11\x00\x00\x00\x06\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x03\x03\x03\x0a\x49\x47\x48\x35\x83\x81\x83\x86\xb0\xaf\xaf\ +\xd3\xcf\xce\xcf\xf4\xe2\xe2\xe2\xfd\xec\xec\xec\xfe\xf2\xf2\xf2\ +\xfe\xf5\xf5\xf5\xfe\xf7\xf7\xf7\xff\xf8\xf8\xf8\xff\xf8\xf8\xf8\ +\xff\xf7\xf6\xf7\xff\xf1\xf1\xf1\xff\xd3\xd3\xd3\xfe\xcb\xcb\xcb\ +\xfe\xdb\xdb\xdb\xfd\xc9\xc9\xc9\xf1\xa1\xa0\xa0\xcd\x64\x63\x63\ +\x87\x20\x1f\x1f\x47\x00\x00\x00\x24\x00\x00\x00\x13\x00\x00\x00\ +\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x0a\x0a\ +\x0a\x57\x56\x56\x3b\x96\x95\x96\x9e\xc3\xc3\xc3\xe6\xe0\xe0\xe0\ +\xfc\xee\xed\xed\xfe\xf5\xf5\xf5\xfe\xf9\xf9\xf9\xfe\xfa\xfb\xfb\ +\xfe\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfc\xfc\ +\xff\xfd\xfc\xfc\xff\xf7\xf7\xf7\xff\xb8\xb8\xb8\xfe\x7e\x7e\x7f\ +\xfe\xb9\xb9\xb9\xfe\xe5\xe5\xe5\xfe\xdc\xdb\xdb\xfb\xb7\xb6\xb6\ +\xe0\x79\x78\x78\x9a\x26\x25\x25\x4b\x00\x00\x00\x25\x00\x00\x00\ +\x12\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x5d\x5a\x5c\ +\x36\x9f\x9e\x9e\xa1\xce\xcd\xcd\xee\xe8\xe7\xe8\xfe\xf4\xf4\xf4\ +\xfe\xf9\xf9\xf9\xfe\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xe4\xe4\xe4\xff\x81\x81\x82\ +\xff\x55\x55\x56\xfe\x99\x99\x99\xfe\xd5\xd5\xd6\xfe\xe2\xe2\xe2\ +\xfd\xc2\xc1\xc1\xe8\x7e\x7d\x7e\x9c\x25\x25\x25\x49\x00\x00\x00\ +\x21\x00\x00\x00\x0f\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\ +\x00\x08\x06\x06\x00\x00\x00\x00\x02\x4b\x49\x4a\x21\x9c\x9a\x9b\ +\x8d\xce\xcd\xce\xe9\xeb\xea\xea\xfe\xf5\xf5\xf5\xfe\xfa\xfa\xfa\ +\xfe\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xfa\xfa\xfa\ +\xff\xf3\xf3\xf3\xff\xf2\xf2\xf2\xff\xfa\xfa\xfa\xff\xcd\xcd\xce\ +\xff\x54\x54\x55\xff\x27\x28\x28\xff\x76\x76\x76\xfe\xb5\xb6\xb6\ +\xfe\xac\xab\xab\xfd\x81\x80\x80\xe2\x38\x38\x38\x8c\x02\x01\x01\ +\x3a\x00\x00\x00\x1b\x00\x00\x00\x09\x00\x00\x00\x01\x00\x00\x00\ +\x00\xff\xff\xff\x00\x32\x30\x31\x0e\x8d\x8c\x8c\x65\xc9\xc8\xc9\ +\xdb\xe9\xe9\xe9\xfe\xf6\xf6\xf6\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfa\xfa\xfa\xff\xd5\xd5\xd5\ +\xff\xa2\xa2\xa2\xff\xa7\xa7\xa7\xff\xe7\xe7\xe7\xff\xf7\xf7\xf7\ +\xff\x9f\x9f\x9f\xff\x1b\x1b\x1b\xff\x14\x14\x14\xfe\x2b\x2c\x2c\ +\xfe\x28\x28\x28\xff\x1e\x1e\x1e\xfc\x0e\x0e\x0e\xd2\x05\x04\x04\ +\x6c\x00\x00\x00\x2b\x00\x00\x00\x11\x00\x00\x00\x05\x41\x3f\x40\ +\x00\x00\x00\x00\x01\x77\x75\x76\x32\xba\xb9\xba\xb1\xe4\xe3\xe3\ +\xf9\xf4\xf4\xf4\xfe\xfa\xfa\xfa\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\xfb\xfb\xff\xd0\xd0\xd0\ +\xff\xa8\xa8\xa8\xff\xb7\xb8\xb8\xff\xe9\xe9\xe9\xff\xff\xff\xff\ +\xff\xc6\xc6\xc6\xff\x32\x32\x32\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x00\x00\x00\xf4\x02\x02\x02\ +\xa9\x03\x03\x03\x47\x00\x00\x00\x1c\x00\x00\x00\x0b\x65\x63\x63\ +\x00\x1b\x19\x1a\x0b\x97\x96\x96\x6e\xd5\xd5\xd5\xe4\xf1\xf1\xf1\ +\xfe\xfa\xfa\xfa\xfe\xfb\xfb\xfb\xff\xe7\xe7\xe7\xff\xcd\xcd\xcd\ +\xff\xe7\xe7\xe7\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\ +\xff\xf3\xf3\xf3\xff\xe0\xe1\xe1\xff\xdc\xdc\xdc\xff\xdd\xdd\xdd\ +\xff\xdc\xdc\xdc\xff\xdb\xdb\xdb\xff\xdf\xe0\xdf\xff\xde\xde\xdd\ +\xff\xbb\xbb\xbb\xff\x41\x41\x41\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x00\x00\x00\xfd\x01\x01\x01\ +\xdb\x03\x03\x03\x72\x00\x00\x00\x28\x00\x00\x00\x12\x99\x99\x9a\ +\x00\x10\x10\x10\x20\x70\x70\x70\xa6\xc9\xc9\xc9\xf8\xec\xec\xec\ +\xff\xf0\xf0\xf0\xff\xd8\xd8\xd8\xff\x85\x85\x85\xff\x70\x71\x71\ +\xff\xcf\xcf\xcf\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xe9\xe9\xe9\ +\xff\x9e\x9e\x9d\xff\x5a\x5b\x5a\xff\x50\x51\x52\xff\x5c\x5c\x61\ +\xff\x5e\x5e\x6b\xff\x57\x57\x6b\xff\x59\x5a\x75\xff\x52\x52\x71\ +\xff\x45\x45\x63\xff\x1d\x1d\x31\xff\x01\x01\x0b\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x00\x00\x00\xff\x00\x00\x00\ +\xf3\x01\x01\x01\x9f\x01\x01\x01\x39\x00\x00\x00\x19\x0e\x0a\x0c\ +\x01\x07\x06\x07\x3f\x29\x29\x29\xce\x62\x62\x62\xfe\x7a\x7a\x7a\ +\xff\x79\x79\x79\xff\x59\x59\x59\xff\x40\x40\x40\xff\xa0\xa1\xa0\ +\xff\xef\xef\xef\xff\xf4\xf4\xf4\xff\xe2\xe2\xe1\xff\x92\x92\x93\ +\xff\x28\x28\x33\xff\x02\x02\x21\xff\x01\x01\x3c\xff\x02\x02\x5a\ +\xff\x03\x03\x72\xff\x02\x02\x83\xff\x02\x02\x90\xff\x01\x01\x95\ +\xff\x00\x00\x91\xff\x00\x00\x82\xff\x00\x00\x66\xff\x00\x00\x38\ +\xff\x00\x00\x10\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfc\x01\x00\x00\xc2\x03\x02\x02\x4e\x00\x00\x00\x1f\x15\x15\x16\ +\x06\x08\x08\x08\x5d\x04\x04\x04\xe4\x08\x08\x08\xff\x0a\x0a\x0a\ +\xff\x09\x09\x09\xff\x0c\x0c\x0c\xff\x64\x64\x64\xff\xe5\xe5\xe5\ +\xff\xeb\xeb\xea\xff\x9e\x9e\xa1\xff\x64\x64\x78\xff\x26\x26\x5f\ +\xff\x02\x02\x66\xff\x00\x00\x8d\xff\x00\x00\xaa\xff\x00\x00\xba\ +\xff\x00\x00\xc0\xff\x00\x00\xc4\xff\x00\x00\xc6\xff\x00\x00\xc6\ +\xff\x00\x00\xc6\xff\x00\x00\xc4\xff\x00\x00\xbd\xff\x00\x00\xa3\ +\xff\x00\x00\x6a\xff\x00\x00\x25\xff\x00\x00\x03\xff\x00\x00\x00\ +\xfe\x00\x00\x00\xd9\x03\x02\x02\x64\x00\x00\x00\x24\x12\x12\x12\ +\x0b\x07\x07\x07\x76\x01\x01\x01\xf0\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x06\x06\x06\xff\x5b\x5b\x5b\xff\xbe\xbe\xbf\ +\xff\x91\x91\xa4\xff\x28\x28\x6a\xff\x04\x04\x7e\xff\x00\x00\xa7\ +\xff\x00\x00\xbe\xff\x00\x00\xc7\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xbd\xff\x00\x00\x83\xff\x00\x00\x28\xff\x00\x00\x00\ +\xff\x00\x00\x00\xe7\x03\x02\x02\x76\x01\x00\x00\x2a\x09\x08\x09\ +\x0f\x03\x03\x03\x83\x00\x00\x00\xf5\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x15\x15\x1c\xff\x34\x34\x62\ +\xff\x1d\x1d\x8f\xff\x02\x02\xab\xff\x00\x00\xc0\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xbb\xff\x00\x00\x62\xff\x00\x00\x09\ +\xff\x00\x00\x00\xec\x00\x00\x00\x7f\x00\x00\x00\x2c\x02\x01\x02\ +\x10\x00\x00\x00\x86\x00\x00\x00\xf6\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x0f\xff\x00\x00\x48\xff\x00\x00\x95\ +\xff\x00\x00\xbe\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc6\xff\x00\x00\xbf\xff\x00\x00\xba\ +\xff\x00\x00\xc2\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc6\xff\x00\x00\x84\xff\x00\x00\x14\ +\xff\x00\x00\x00\xed\x00\x00\x00\x81\x00\x00\x00\x2b\x0a\x09\x0a\ +\x0e\x03\x03\x03\x80\x00\x00\x00\xf4\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x12\xff\x00\x00\x5a\xff\x00\x00\xa7\xff\x00\x00\xc5\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc2\ +\xff\x00\x00\xaf\xff\x00\x00\x8c\xff\x00\x00\x68\xff\x00\x00\x6f\ +\xff\x00\x00\xad\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc4\xff\x00\x00\x7f\xff\x00\x00\x12\ +\xff\x00\x00\x00\xeb\x01\x01\x01\x7c\x00\x00\x00\x28\x19\x18\x19\ +\x09\x09\x09\x09\x70\x01\x01\x01\xee\x00\x00\x00\xff\x00\x00\x12\ +\xff\x00\x00\x5e\xff\x00\x00\xaf\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc0\xff\x00\x00\xa4\xff\x00\x00\x73\ +\xff\x00\x00\x42\xff\x00\x00\x1c\xff\x00\x00\x0e\xff\x00\x00\x50\ +\xff\x00\x00\xb3\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc0\xff\x00\x00\xae\xff\x00\x00\xbc\ +\xff\x00\x00\xbb\xff\x00\x00\x91\xff\x00\x00\x3f\xff\x00\x00\x05\ +\xff\x00\x00\x00\xe3\x04\x04\x04\x6e\x01\x01\x01\x22\x25\x24\x25\ +\x04\x0c\x0c\x0c\x55\x03\x03\x02\xe0\x00\x00\x04\xff\x00\x00\x4a\ +\xff\x00\x00\xaa\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc7\ +\xff\x00\x00\xb3\xff\x00\x00\x79\xff\x00\x00\x39\xff\x00\x00\x12\ +\xff\x00\x00\x07\xff\x00\x00\x0f\xff\x00\x00\x2e\xff\x00\x00\x84\ +\xff\x00\x00\xc2\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xbb\xff\x00\x00\x80\xff\x00\x00\x78\ +\xff\x00\x00\x63\xff\x00\x00\x29\xff\x00\x00\x07\xff\x00\x00\x00\ +\xfe\x02\x02\x02\xd4\x05\x05\x05\x58\x01\x00\x00\x1b\x00\x00\x00\ +\x00\x0f\x0f\x10\x34\x06\x06\x06\xc5\x01\x01\x0b\xfd\x00\x00\x68\ +\xff\x00\x00\xbf\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xbe\ +\xff\x00\x00\x6e\xff\x00\x00\x1b\xff\x00\x00\x14\xff\x00\x00\x2d\ +\xff\x00\x00\x50\xff\x00\x00\x78\xff\x00\x00\x9d\xff\x00\x00\xbd\ +\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xbf\xff\x00\x00\x6a\xff\x00\x00\x1b\ +\xff\x00\x00\x0a\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xfa\x05\x05\x05\xb7\x06\x06\x06\x3e\x00\x00\x00\x13\x14\x13\x13\ +\x00\x1a\x19\x19\x17\x0e\x0e\x0d\x98\x05\x05\x08\xf6\x00\x00\x36\ +\xff\x00\x00\x87\xff\x00\x00\xae\xff\x00\x00\xb8\xff\x00\x00\xa7\ +\xff\x00\x00\x4c\xff\x00\x00\x39\xff\x00\x00\x74\xff\x00\x00\x9e\ +\xff\x00\x00\xb6\xff\x00\x00\xc3\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xbc\xff\x00\x00\x5d\xff\x00\x00\x06\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x01\x01\x01\xff\x05\x05\x05\ +\xef\x0a\x09\x09\x8d\x05\x05\x05\x26\x00\x00\x00\x0c\x21\x20\x21\ +\x00\x33\x32\x33\x04\x18\x18\x18\x59\x0c\x0c\x0b\xdb\x03\x03\x09\ +\xff\x00\x00\x1e\xfe\x00\x00\x3b\xff\x00\x00\x4a\xff\x00\x00\x46\ +\xff\x00\x00\x43\xff\x00\x00\x91\xff\x00\x00\xc0\xff\x00\x00\xc0\ +\xff\x00\x00\xc4\xff\x00\x00\xc7\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xa9\xff\x00\x00\x3d\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x04\x04\x04\xfd\x0b\x0b\x0b\ +\xce\x0d\x0d\x0d\x58\x01\x01\x01\x15\x00\x00\x00\x06\x2d\x2d\x2f\ +\x00\x09\x08\x05\x00\x24\x24\x24\x22\x16\x16\x16\xa0\x0a\x0a\x0a\ +\xf6\x02\x02\x01\xff\x00\x00\x01\xff\x00\x00\x03\xff\x00\x00\x03\ +\xff\x00\x00\x32\xff\x00\x00\xa3\xff\x00\x00\xa0\xff\x00\x00\x6f\ +\xff\x00\x00\x7d\xff\x00\x00\x94\xff\x00\x00\xae\xff\x00\x00\xc5\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc6\xff\x00\x00\x86\xff\x00\x00\x1c\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x03\x03\x03\xfe\x0b\x0b\x0b\xf0\x11\x11\x11\ +\x93\x0c\x0b\x0b\x2c\x00\x00\x00\x0a\x00\x00\x00\x02\x00\x00\x00\ +\x00\x34\x34\x34\x00\x3a\x3a\x3a\x04\x26\x26\x26\x4b\x16\x16\x16\ +\xcc\x09\x09\x09\xfc\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x20\xff\x00\x00\x89\xff\x00\x00\x72\xff\x00\x00\x45\ +\xff\x00\x00\x5b\xff\x00\x00\x68\xff\x00\x00\x95\xff\x00\x00\xc2\ +\xff\x00\x00\xc7\xff\x00\x00\xc6\xff\x00\x00\xc6\xff\x00\x00\xc8\ +\xff\x00\x00\xb9\xff\x00\x00\x56\xff\x00\x00\x07\xff\x00\x00\x00\ +\xff\x02\x02\x02\xff\x0b\x0b\x0b\xf9\x14\x14\x14\xbe\x15\x15\x15\ +\x4a\x03\x03\x03\x13\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\ +\x00\x4f\x4f\x4f\x00\x14\x13\x14\x00\x38\x38\x38\x10\x27\x27\x27\ +\x72\x17\x17\x17\xdf\x09\x09\x09\xfe\x02\x02\x02\xff\x00\x00\x00\ +\xfe\x00\x00\x0f\xff\x00\x00\x70\xff\x00\x00\x9f\xff\x00\x00\xa4\ +\xff\x00\x00\xb4\xff\x00\x00\xb4\xff\x00\x00\xbd\xff\x00\x00\xc6\ +\xff\x00\x00\xc5\xff\x00\x00\xab\xff\x00\x00\x97\xff\x00\x00\xb7\ +\xff\x00\x00\x9b\xff\x00\x00\x2a\xff\x00\x00\x00\xff\x03\x03\x03\ +\xff\x0b\x0b\x0c\xfd\x16\x16\x17\xd3\x1b\x1b\x1b\x69\x0d\x0d\x0d\ +\x1b\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x49\x49\x49\x00\x00\x00\x00\x00\x3f\x3f\x3f\ +\x1b\x2d\x2c\x2c\x7f\x1b\x1a\x1a\xe2\x0c\x0c\x0c\xfc\x03\x03\x03\ +\xfe\x00\x00\x04\xfe\x00\x00\x4a\xff\x00\x00\xad\xff\x00\x00\xc7\ +\xff\x00\x00\xc7\xff\x00\x00\xc5\xff\x00\x00\xc2\xff\x00\x00\xc2\ +\xff\x00\x00\xbc\xff\x00\x00\x86\xff\x00\x00\x5f\xff\x00\x00\x8f\ +\xff\x00\x00\x60\xfe\x01\x01\x0d\xfe\x06\x06\x05\xff\x0f\x0f\x0f\ +\xfb\x1a\x1a\x1b\xd7\x21\x21\x22\x75\x18\x18\x18\x22\x00\x00\x00\ +\x08\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5d\x5d\x5e\x00\x72\x73\x74\ +\x01\x46\x46\x46\x1e\x32\x32\x32\x7c\x22\x22\x22\xd6\x12\x12\x12\ +\xfa\x08\x08\x08\xfe\x02\x02\x1b\xff\x00\x00\x5e\xff\x00\x00\x8b\ +\xff\x00\x00\x8c\xff\x00\x00\x7b\xff\x00\x00\x6d\xff\x00\x00\x74\ +\xff\x00\x00\x82\xff\x00\x00\x73\xff\x00\x00\x62\xff\x01\x01\x50\ +\xff\x03\x03\x1f\xfe\x0a\x0a\x0b\xfe\x14\x15\x14\xf7\x20\x21\x21\ +\xcc\x29\x29\x29\x72\x1e\x1e\x1f\x23\x02\x02\x02\x09\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5b\x5c\x5c\ +\x00\xbd\xc0\xc0\x00\x52\x52\x52\x15\x3f\x3f\x3f\x5c\x2d\x2d\x2d\ +\xb7\x1e\x1e\x1e\xea\x12\x12\x13\xfc\x0b\x0b\x16\xff\x05\x05\x1f\ +\xff\x03\x03\x1d\xff\x02\x02\x12\xfe\x01\x01\x0c\xfe\x01\x01\x0f\ +\xfe\x02\x02\x1a\xfe\x03\x03\x20\xff\x07\x07\x1d\xff\x0c\x0c\x15\ +\xfe\x14\x14\x15\xfa\x20\x20\x20\xe4\x2b\x2b\x2b\xac\x30\x31\x31\ +\x56\x24\x24\x24\x1b\x00\x00\x00\x06\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x85\x85\x85\x00\xd4\xd4\xd4\x00\x62\x62\x62\x09\x4e\x4e\x4e\ +\x34\x3e\x3e\x3e\x79\x31\x31\x31\xbb\x26\x26\x26\xe1\x1c\x1c\x1c\ +\xf5\x16\x16\x15\xfc\x12\x12\x12\xfe\x11\x11\x11\xfe\x11\x11\x11\ +\xfe\x13\x13\x13\xfe\x17\x17\x17\xfb\x1e\x1e\x1d\xf2\x27\x27\x27\ +\xdd\x30\x30\x30\xb3\x37\x38\x38\x72\x39\x39\x39\x33\x20\x21\x21\ +\x0f\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x8c\x8c\x00\x99\x99\x99\ +\x00\x6a\x6a\x6a\x0d\x5a\x5a\x5a\x2e\x4c\x4c\x4c\x5a\x40\x41\x40\ +\x85\x3b\x3b\x3b\xa5\x38\x38\x38\xb9\x39\x39\x39\xc4\x38\x38\x38\ +\xc3\x37\x37\x37\xb7\x3a\x3a\x39\xa1\x3e\x3f\x3e\x81\x46\x46\x46\ +\x57\x48\x48\x48\x2e\x3a\x3a\x3a\x10\x10\x10\x10\x03\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xb3\xb3\xb3\x00\xbe\xbe\xbe\x00\x81\x82\x82\x05\x69\x69\x69\ +\x12\x61\x61\x61\x21\x61\x61\x61\x30\x63\x64\x63\x3a\x60\x60\x60\ +\x39\x59\x59\x59\x30\x54\x54\x54\x22\x4e\x4f\x4f\x14\x43\x43\x43\ +\x08\x19\x19\x18\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x80\x00\ +\xff\xff\x00\x00\x3f\xfc\x00\x00\x1f\xf8\x00\x00\x0f\xf0\x00\x00\ +\x07\xf0\x00\x00\x03\xe0\x00\x00\x01\xc0\x00\x00\x00\xc0\x00\x00\ +\x00\x80\x00\x00\x00\x80\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x80\x00\x00\x00\x80\x00\x00\x00\xc0\x00\x00\x00\xc0\x00\x00\ +\x01\xe0\x00\x00\x03\xf0\x00\x00\x03\xf0\x00\x00\x07\xfc\x00\x00\ +\x0f\xfe\x00\x00\x3f\xff\x80\x00\x7f\xff\xe0\x03\xff\x28\x00\x00\ +\x00\x80\x00\x00\x00\x00\x01\x00\x00\x01\x00\x20\x00\x00\x00\x00\ +\x00\x00\x00\x01\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\ +\x05\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\ +\x08\x00\x00\x00\x0a\x00\x00\x00\x0a\x00\x00\x00\x0b\x00\x00\x00\ +\x0c\x00\x00\x00\x0d\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x00\ +\x0f\x00\x00\x00\x10\x00\x00\x00\x11\x00\x00\x00\x11\x00\x00\x00\ +\x12\x00\x00\x00\x12\x00\x00\x00\x12\x00\x00\x00\x13\x00\x00\x00\ +\x13\x00\x00\x00\x13\x00\x00\x00\x13\x00\x00\x00\x13\x00\x00\x00\ +\x12\x00\x00\x00\x12\x00\x00\x00\x12\x00\x00\x00\x11\x00\x00\x00\ +\x11\x00\x00\x00\x10\x00\x00\x00\x0f\x00\x00\x00\x0f\x00\x00\x00\ +\x0e\x00\x00\x00\x0d\x00\x00\x00\x0c\x00\x00\x00\x0b\x00\x00\x00\ +\x0a\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\ +\x08\x00\x00\x00\x09\x00\x00\x00\x0a\x00\x00\x00\x0b\x00\x00\x00\ +\x0c\x00\x00\x00\x0d\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x00\ +\x11\x00\x00\x00\x12\x00\x00\x00\x13\x00\x00\x00\x14\x00\x00\x00\ +\x15\x00\x00\x00\x15\x00\x00\x00\x16\x00\x00\x00\x17\x00\x00\x00\ +\x18\x00\x00\x00\x18\x00\x00\x00\x18\x00\x00\x00\x19\x00\x00\x00\ +\x19\x00\x00\x00\x19\x00\x00\x00\x19\x00\x00\x00\x19\x00\x00\x00\ +\x18\x00\x00\x00\x18\x00\x00\x00\x18\x00\x00\x00\x17\x00\x00\x00\ +\x16\x00\x00\x00\x15\x00\x00\x00\x15\x00\x00\x00\x14\x00\x00\x00\ +\x13\x00\x00\x00\x12\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\ +\x0e\x00\x00\x00\x0d\x00\x00\x00\x0c\x00\x00\x00\x0b\x00\x00\x00\ +\x0a\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\ +\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x06\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\ +\x0b\x00\x00\x00\x0d\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x00\ +\x11\x00\x00\x00\x12\x00\x00\x00\x14\x00\x00\x00\x15\x00\x00\x00\ +\x16\x00\x00\x00\x17\x00\x00\x00\x19\x00\x00\x00\x1a\x00\x00\x00\ +\x1b\x00\x00\x00\x1c\x00\x00\x00\x1d\x00\x00\x00\x1d\x00\x00\x00\ +\x1e\x00\x00\x00\x1f\x00\x00\x00\x1f\x00\x00\x00\x1f\x00\x00\x00\ +\x20\x00\x00\x00\x20\x00\x00\x00\x20\x00\x00\x00\x1f\x00\x00\x00\ +\x1f\x00\x00\x00\x1f\x00\x00\x00\x1e\x00\x00\x00\x1d\x00\x00\x00\ +\x1d\x00\x00\x00\x1c\x00\x00\x00\x1b\x00\x00\x00\x1a\x00\x00\x00\ +\x19\x00\x00\x00\x18\x00\x00\x00\x16\x00\x00\x00\x15\x00\x00\x00\ +\x14\x00\x00\x00\x12\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\ +\x0e\x00\x00\x00\x0d\x00\x00\x00\x0b\x00\x00\x00\x0a\x00\x00\x00\ +\x09\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\ +\x09\x00\x00\x00\x0b\x00\x00\x00\x0c\x00\x00\x00\x0e\x00\x00\x00\ +\x0f\x00\x00\x00\x11\x00\x00\x00\x12\x00\x00\x00\x14\x00\x00\x00\ +\x16\x00\x00\x00\x18\x00\x00\x00\x19\x00\x00\x00\x1b\x00\x00\x00\ +\x1c\x00\x00\x00\x1e\x00\x00\x00\x1f\x00\x00\x00\x20\x00\x00\x00\ +\x22\x00\x00\x00\x23\x00\x00\x00\x24\x00\x00\x00\x24\x00\x00\x00\ +\x25\x00\x00\x00\x26\x00\x00\x00\x26\x00\x00\x00\x27\x00\x00\x00\ +\x27\x00\x00\x00\x27\x00\x00\x00\x27\x00\x00\x00\x27\x00\x00\x00\ +\x26\x00\x00\x00\x26\x00\x00\x00\x25\x00\x00\x00\x24\x00\x00\x00\ +\x24\x00\x00\x00\x23\x00\x00\x00\x22\x00\x00\x00\x20\x00\x00\x00\ +\x1f\x00\x00\x00\x1e\x00\x00\x00\x1c\x00\x00\x00\x1b\x00\x00\x00\ +\x19\x00\x00\x00\x18\x00\x00\x00\x16\x00\x00\x00\x14\x00\x00\x00\ +\x13\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\ +\x0c\x00\x00\x00\x0b\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x07\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\x0b\x00\x00\x00\ +\x0d\x00\x00\x00\x0e\x00\x00\x00\x10\x00\x00\x00\x12\x00\x00\x00\ +\x14\x00\x00\x00\x16\x00\x00\x00\x18\x00\x00\x00\x1a\x00\x00\x00\ +\x1c\x00\x00\x00\x1e\x00\x00\x00\x20\x00\x00\x00\x22\x00\x00\x00\ +\x23\x00\x00\x00\x25\x00\x00\x00\x26\x00\x00\x00\x28\x00\x00\x00\ +\x29\x00\x00\x00\x2a\x00\x00\x00\x2b\x00\x00\x00\x2c\x00\x00\x00\ +\x2d\x00\x00\x00\x2e\x00\x00\x00\x2e\x00\x00\x00\x2e\x00\x00\x00\ +\x2f\x00\x00\x00\x2f\x00\x00\x00\x2f\x00\x00\x00\x2e\x00\x00\x00\ +\x2e\x00\x00\x00\x2e\x00\x00\x00\x2d\x00\x00\x00\x2c\x00\x00\x00\ +\x2b\x00\x00\x00\x2a\x00\x00\x00\x29\x00\x00\x00\x28\x00\x00\x00\ +\x26\x00\x00\x00\x25\x00\x00\x00\x23\x00\x00\x00\x22\x00\x00\x00\ +\x20\x00\x00\x00\x1e\x00\x00\x00\x1c\x00\x00\x00\x1a\x00\x00\x00\ +\x18\x00\x00\x00\x16\x00\x00\x00\x14\x00\x00\x00\x12\x00\x00\x00\ +\x11\x00\x00\x00\x0f\x00\x00\x00\x0d\x00\x00\x00\x0b\x00\x00\x00\ +\x0a\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\ +\x0a\x00\x00\x00\x0b\x00\x00\x00\x0d\x00\x00\x00\x0f\x00\x00\x00\ +\x11\x00\x00\x00\x13\x00\x00\x00\x15\x00\x00\x00\x18\x00\x00\x00\ +\x1a\x00\x00\x00\x1c\x00\x00\x00\x1f\x00\x00\x00\x21\x00\x00\x00\ +\x23\x00\x00\x00\x25\x00\x00\x00\x27\x00\x00\x00\x29\x00\x00\x00\ +\x2b\x00\x00\x00\x2c\x00\x00\x00\x2e\x00\x00\x00\x2f\x00\x00\x00\ +\x31\x00\x00\x00\x32\x00\x00\x00\x33\x00\x00\x00\x34\x00\x00\x00\ +\x35\x00\x00\x00\x35\x00\x00\x00\x36\x00\x00\x00\x36\x00\x00\x00\ +\x37\x00\x00\x00\x37\x00\x00\x00\x37\x00\x00\x00\x36\x00\x00\x00\ +\x36\x00\x00\x00\x35\x00\x00\x00\x35\x00\x00\x00\x34\x00\x00\x00\ +\x33\x00\x00\x00\x32\x00\x00\x00\x31\x00\x00\x00\x30\x00\x00\x00\ +\x2e\x00\x00\x00\x2d\x00\x00\x00\x2b\x00\x00\x00\x29\x00\x00\x00\ +\x27\x00\x00\x00\x25\x00\x00\x00\x23\x00\x00\x00\x21\x00\x00\x00\ +\x1f\x00\x00\x00\x1c\x00\x00\x00\x1a\x00\x00\x00\x18\x00\x00\x00\ +\x16\x00\x00\x00\x14\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\ +\x0d\x00\x00\x00\x0b\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x09\x00\x00\x00\x0b\x00\x00\x00\ +\x0d\x00\x00\x00\x0f\x00\x00\x00\x11\x00\x00\x00\x14\x00\x00\x00\ +\x16\x00\x00\x00\x19\x00\x00\x00\x1b\x00\x00\x00\x1e\x00\x00\x00\ +\x20\x00\x00\x00\x23\x00\x00\x00\x25\x00\x00\x00\x28\x00\x00\x00\ +\x2b\x00\x00\x00\x2d\x00\x00\x00\x30\x01\x01\x01\x33\x01\x01\x01\ +\x38\x02\x01\x01\x3d\x05\x02\x03\x42\x06\x04\x04\x4a\x07\x06\x06\ +\x4f\x09\x07\x07\x55\x0a\x07\x08\x5a\x0b\x08\x09\x5f\x0b\x09\x09\ +\x62\x0b\x08\x09\x64\x0b\x09\x09\x63\x0b\x08\x09\x62\x09\x06\x08\ +\x5e\x09\x06\x06\x5a\x07\x05\x06\x55\x06\x04\x04\x50\x05\x02\x02\ +\x4b\x03\x01\x01\x46\x01\x00\x01\x41\x01\x01\x01\x3e\x00\x00\x00\ +\x3c\x00\x00\x00\x3b\x00\x00\x00\x39\x00\x00\x00\x37\x00\x00\x00\ +\x35\x00\x00\x00\x34\x00\x00\x00\x32\x00\x00\x00\x30\x00\x00\x00\ +\x2e\x00\x00\x00\x2c\x00\x00\x00\x2a\x00\x00\x00\x28\x00\x00\x00\ +\x26\x00\x00\x00\x23\x00\x00\x00\x20\x00\x00\x00\x1e\x00\x00\x00\ +\x1b\x00\x00\x00\x19\x00\x00\x00\x16\x00\x00\x00\x14\x00\x00\x00\ +\x12\x00\x00\x00\x0f\x00\x00\x00\x0d\x00\x00\x00\x0b\x00\x00\x00\ +\x09\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\ +\x09\x00\x00\x00\x0b\x00\x00\x00\x0d\x00\x00\x00\x0f\x00\x00\x00\ +\x11\x00\x00\x00\x14\x00\x00\x00\x16\x00\x00\x00\x19\x00\x00\x00\ +\x1c\x00\x00\x00\x1f\x00\x00\x00\x22\x00\x00\x00\x24\x00\x00\x00\ +\x28\x00\x00\x00\x2c\x01\x01\x01\x31\x02\x02\x02\x36\x03\x02\x02\ +\x3e\x06\x05\x06\x49\x0a\x08\x09\x57\x0f\x0b\x0c\x63\x12\x0e\x0f\ +\x6e\x16\x13\x15\x77\x1e\x19\x1b\x82\x21\x1e\x1e\x8b\x24\x21\x21\ +\x96\x28\x24\x25\x9f\x2a\x25\x27\xa7\x29\x25\x26\xae\x2b\x27\x28\ +\xb2\x2a\x26\x27\xb4\x27\x24\x24\xb3\x2a\x25\x27\xb0\x29\x25\x26\ +\xaa\x27\x24\x24\xa2\x24\x21\x21\x99\x20\x1d\x1d\x90\x1c\x18\x1a\ +\x87\x18\x13\x15\x7e\x12\x0e\x0f\x76\x0d\x0a\x0a\x6c\x09\x08\x08\ +\x60\x06\x05\x05\x57\x02\x02\x02\x4c\x02\x01\x01\x45\x01\x01\x01\ +\x41\x00\x00\x00\x3d\x00\x00\x00\x3b\x00\x00\x00\x38\x00\x00\x00\ +\x36\x00\x00\x00\x34\x00\x00\x00\x31\x00\x00\x00\x2f\x00\x00\x00\ +\x2d\x00\x00\x00\x2a\x00\x00\x00\x27\x00\x00\x00\x24\x00\x00\x00\ +\x22\x00\x00\x00\x1f\x00\x00\x00\x1c\x00\x00\x00\x19\x00\x00\x00\ +\x16\x00\x00\x00\x14\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\ +\x0d\x00\x00\x00\x0b\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x05\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\ +\x0c\x00\x00\x00\x0e\x00\x00\x00\x11\x00\x00\x00\x13\x00\x00\x00\ +\x16\x00\x00\x00\x19\x00\x00\x00\x1c\x00\x00\x00\x1f\x00\x00\x00\ +\x22\x00\x00\x00\x26\x00\x00\x00\x2c\x03\x02\x02\x31\x05\x03\x04\ +\x3a\x07\x05\x06\x48\x0b\x08\x09\x59\x11\x0e\x10\x6a\x19\x16\x17\ +\x7a\x25\x21\x22\x8e\x2f\x2c\x2e\xa3\x3a\x36\x37\xb4\x42\x3f\x40\ +\xc1\x4e\x4b\x4d\xcd\x5d\x59\x5b\xd6\x67\x64\x65\xe0\x72\x70\x70\ +\xe8\x7d\x7b\x7c\xef\x84\x82\x83\xf4\x80\x80\x81\xf9\x89\x89\x89\ +\xfb\x89\x87\x87\xfc\x7d\x7c\x7c\xfb\x85\x83\x84\xf9\x84\x82\x82\ +\xf4\x7e\x7c\x7c\xef\x73\x70\x71\xe8\x67\x64\x66\xe0\x5c\x58\x5a\ +\xd8\x4f\x4c\x4e\xcf\x43\x3f\x41\xc6\x38\x34\x36\xb9\x2d\x2a\x2b\ +\xa7\x26\x22\x24\x97\x19\x16\x16\x86\x0f\x0c\x0e\x76\x0a\x07\x08\ +\x66\x06\x05\x05\x58\x03\x02\x03\x4d\x02\x01\x01\x45\x00\x00\x00\ +\x3f\x00\x00\x00\x3c\x00\x00\x00\x39\x00\x00\x00\x37\x00\x00\x00\ +\x34\x00\x00\x00\x31\x00\x00\x00\x2e\x00\x00\x00\x2c\x00\x00\x00\ +\x29\x00\x00\x00\x26\x00\x00\x00\x23\x00\x00\x00\x1f\x00\x00\x00\ +\x1c\x00\x00\x00\x19\x00\x00\x00\x16\x00\x00\x00\x14\x00\x00\x00\ +\x11\x00\x00\x00\x0e\x00\x00\x00\x0c\x00\x00\x00\x0a\x00\x00\x00\ +\x08\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x07\x00\x00\x00\x09\x00\x00\x00\x0b\x00\x00\x00\x0d\x00\x00\x00\ +\x10\x00\x00\x00\x12\x00\x00\x00\x15\x00\x00\x00\x19\x00\x00\x00\ +\x1c\x00\x00\x00\x1f\x00\x00\x00\x22\x00\x00\x00\x28\x02\x01\x02\ +\x2f\x05\x03\x04\x3a\x09\x06\x06\x4a\x0e\x0a\x0a\x5d\x17\x13\x15\ +\x74\x24\x20\x21\x8c\x32\x2e\x30\xa7\x43\x40\x41\xbd\x54\x51\x52\ +\xd0\x68\x66\x66\xe0\x7d\x7b\x7c\xef\x8e\x8d\x8d\xf9\x99\x98\x98\ +\xfd\x9d\x9d\x9d\xff\xa2\xa2\xa2\xff\xa5\xa4\xa4\xff\xac\xab\xab\ +\xff\xb0\xaf\xaf\xff\xb3\xb2\xb2\xff\xb5\xb4\xb5\xff\xba\xb9\xba\ +\xff\xbe\xbe\xbf\xff\xba\xb9\xb9\xff\xb8\xb7\xb7\xff\xb4\xb3\xb4\ +\xff\xb1\xb0\xb0\xff\xac\xab\xab\xff\xa6\xa5\xa5\xff\xa2\xa1\xa2\ +\xff\x9f\x9e\x9f\xff\x9b\x9a\x9b\xff\x91\x90\x92\xf9\x7c\x7a\x7f\ +\xef\x6c\x6b\x6b\xe3\x54\x52\x52\xd4\x43\x40\x40\xc3\x33\x2f\x2f\ +\xae\x24\x20\x22\x98\x17\x13\x14\x82\x0d\x0a\x0a\x6d\x07\x05\x05\ +\x5c\x04\x02\x03\x4f\x01\x01\x01\x45\x00\x00\x00\x40\x00\x00\x00\ +\x3c\x00\x00\x00\x38\x00\x00\x00\x36\x00\x00\x00\x33\x00\x00\x00\ +\x30\x00\x00\x00\x2d\x00\x00\x00\x29\x00\x00\x00\x26\x00\x00\x00\ +\x23\x00\x00\x00\x1f\x00\x00\x00\x1c\x00\x00\x00\x19\x00\x00\x00\ +\x16\x00\x00\x00\x13\x00\x00\x00\x10\x00\x00\x00\x0d\x00\x00\x00\ +\x0b\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\ +\x0a\x00\x00\x00\x0c\x00\x00\x00\x0e\x00\x00\x00\x11\x00\x00\x00\ +\x14\x00\x00\x00\x17\x00\x00\x00\x1b\x00\x00\x00\x1e\x00\x00\x00\ +\x22\x00\x00\x00\x28\x03\x03\x03\x32\x08\x05\x06\x42\x0c\x09\x0b\ +\x57\x17\x13\x15\x71\x29\x25\x26\x90\x3a\x37\x38\xae\x4e\x4b\x4c\ +\xc8\x64\x62\x63\xdd\x7c\x7b\x7b\xef\x95\x93\x94\xfa\xa6\xa5\xa6\ +\xfe\xaf\xaf\xaf\xff\xb6\xb5\xb5\xff\xbe\xbd\xbd\xff\xc7\xc6\xc6\ +\xff\xcc\xcb\xcc\xff\xd1\xd0\xd0\xff\xd4\xd3\xd3\xff\xd6\xd5\xd6\ +\xff\xd8\xd7\xd7\xff\xd8\xd7\xd7\xff\xd8\xd7\xd7\xff\xd8\xd7\xd7\ +\xff\xd8\xd7\xd7\xff\xd8\xd7\xd7\xff\xd8\xd7\xd7\xff\xd8\xd7\xd7\ +\xff\xd8\xd7\xd7\xff\xd7\xd6\xd6\xff\xd5\xd4\xd4\xff\xd2\xd1\xd2\ +\xff\xcd\xcd\xcd\xff\xc8\xc7\xc7\xff\xc1\xc1\xc2\xff\xb8\xb7\xbd\ +\xff\xb2\xb1\xb1\xff\xa4\xa4\xa4\xff\x99\x97\x97\xfc\x82\x80\x81\ +\xf1\x69\x66\x67\xe1\x4f\x4e\x4f\xcf\x38\x35\x35\xb7\x27\x23\x25\ +\x9d\x16\x12\x13\x82\x0a\x08\x09\x6a\x06\x04\x05\x59\x03\x02\x02\ +\x4b\x01\x00\x00\x42\x00\x00\x00\x3c\x00\x00\x00\x3a\x00\x00\x00\ +\x37\x00\x00\x00\x34\x00\x00\x00\x30\x00\x00\x00\x2d\x00\x00\x00\ +\x29\x00\x00\x00\x26\x00\x00\x00\x22\x00\x00\x00\x1f\x00\x00\x00\ +\x1b\x00\x00\x00\x18\x00\x00\x00\x15\x00\x00\x00\x12\x00\x00\x00\ +\x0f\x00\x00\x00\x0c\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\ +\x0d\x00\x00\x00\x0f\x00\x00\x00\x13\x00\x00\x00\x16\x00\x00\x00\ +\x19\x00\x00\x00\x1d\x00\x00\x00\x21\x02\x00\x00\x27\x05\x03\x03\ +\x33\x09\x06\x07\x46\x0f\x0c\x0e\x61\x1f\x1b\x1b\x81\x36\x32\x34\ +\xa6\x46\x43\x44\xc7\x5e\x5c\x5c\xde\x7f\x7e\x7e\xf1\x9d\x9c\x9d\ +\xfc\xb1\xb1\xb1\xff\xbe\xbd\xbe\xff\xc9\xc8\xc8\xff\xd0\xcf\xcf\ +\xff\xd4\xd3\xd4\xff\xd6\xd5\xd6\xff\xd8\xd7\xd7\xff\xd9\xd8\xd8\ +\xff\xda\xd9\xd9\xff\xdb\xda\xda\xff\xdb\xda\xdb\xff\xdc\xdb\xdc\ +\xff\xdd\xdc\xdc\xff\xdd\xdd\xdd\xff\xdd\xdd\xdd\xff\xdd\xdd\xdd\ +\xff\xdd\xdd\xdd\xff\xdd\xdd\xdd\xff\xdd\xdd\xdd\xff\xdd\xdd\xdd\ +\xff\xdd\xdc\xdd\xff\xdc\xdb\xdc\xff\xdb\xda\xdb\xff\xdb\xda\xda\ +\xff\xda\xd9\xda\xff\xd9\xd8\xd8\xff\xd8\xd7\xd7\xff\xd7\xd6\xd6\ +\xff\xd5\xd4\xd5\xff\xd2\xd1\xd1\xff\xcc\xcb\xcb\xff\xc2\xc1\xc1\ +\xff\xb5\xb4\xb4\xff\xa3\xa2\xa3\xfd\x84\x82\x82\xf3\x63\x61\x61\ +\xe4\x48\x46\x46\xcd\x38\x34\x36\xb1\x21\x1c\x1e\x92\x0e\x0b\x0c\ +\x76\x09\x05\x06\x5f\x04\x02\x02\x4d\x01\x00\x00\x43\x00\x00\x00\ +\x3e\x00\x00\x00\x3a\x00\x00\x00\x37\x00\x00\x00\x34\x00\x00\x00\ +\x30\x00\x00\x00\x2d\x00\x00\x00\x29\x00\x00\x00\x25\x00\x00\x00\ +\x21\x00\x00\x00\x1d\x00\x00\x00\x1a\x00\x00\x00\x16\x00\x00\x00\ +\x13\x00\x00\x00\x10\x00\x00\x00\x0d\x00\x00\x00\x0b\x00\x00\x00\ +\x08\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\ +\x07\x00\x00\x00\x09\x00\x00\x00\x0b\x00\x00\x00\x0e\x00\x00\x00\ +\x11\x00\x00\x00\x14\x00\x00\x00\x18\x00\x00\x00\x1b\x00\x00\x00\ +\x1f\x01\x00\x00\x26\x06\x03\x03\x32\x0b\x08\x08\x47\x11\x0d\x0e\ +\x64\x24\x1f\x21\x89\x47\x43\x44\xb4\x5c\x59\x5a\xd5\x73\x72\x73\ +\xeb\x8c\x8b\x8c\xfa\xa7\xa6\xa6\xfe\xbd\xbc\xbc\xff\xce\xcd\xcd\ +\xff\xd5\xd4\xd5\xff\xd7\xd6\xd6\xff\xd8\xd7\xd7\xff\xda\xd9\xd9\ +\xff\xdb\xda\xdb\xff\xdc\xdb\xdc\xff\xde\xdd\xdd\xff\xde\xde\xde\ +\xff\xdf\xdf\xdf\xff\xe1\xe0\xe0\xff\xe1\xe0\xe1\xff\xe2\xe1\xe2\ +\xff\xe3\xe2\xe2\xff\xe3\xe2\xe3\xff\xe3\xe3\xe3\xff\xe3\xe3\xe3\ +\xff\xe3\xe3\xe3\xff\xe3\xe3\xe3\xff\xe3\xe3\xe3\xff\xe3\xe3\xe3\ +\xff\xe3\xe2\xe3\xff\xe2\xe1\xe2\xff\xe1\xe0\xe1\xff\xe1\xe0\xe0\ +\xff\xe0\xdf\xe0\xff\xde\xde\xde\xff\xde\xdd\xdd\xff\xdc\xdc\xdc\ +\xff\xdb\xda\xdb\xff\xda\xd9\xd9\xff\xd8\xd7\xd8\xff\xd7\xd6\xd6\ +\xff\xd6\xd5\xd5\xff\xd1\xd0\xd0\xff\xc2\xc1\xc1\xff\xae\xad\xad\ +\xff\x96\x94\x95\xfb\x7b\x79\x7a\xef\x5c\x5a\x5b\xdc\x43\x41\x42\ +\xbf\x26\x23\x24\x9b\x0d\x09\x09\x79\x08\x06\x06\x60\x04\x02\x02\ +\x4d\x01\x00\x00\x44\x00\x00\x00\x3e\x00\x00\x00\x3a\x00\x00\x00\ +\x37\x00\x00\x00\x33\x00\x00\x00\x2f\x00\x00\x00\x2b\x00\x00\x00\ +\x27\x00\x00\x00\x23\x00\x00\x00\x1f\x00\x00\x00\x1c\x00\x00\x00\ +\x18\x00\x00\x00\x14\x00\x00\x00\x11\x00\x00\x00\x0e\x00\x00\x00\ +\x0b\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\ +\x0a\x00\x00\x00\x0c\x00\x00\x00\x0f\x00\x00\x00\x12\x00\x00\x00\ +\x15\x00\x00\x00\x19\x00\x00\x00\x1d\x00\x00\x00\x23\x03\x03\x03\ +\x2e\x0a\x07\x08\x43\x11\x0c\x0e\x63\x23\x1f\x20\x8b\x4a\x48\x49\ +\xb9\x68\x67\x68\xdd\x83\x81\x82\xf2\xa0\x9f\xa0\xfd\xb9\xb8\xb8\ +\xff\xc7\xc6\xc6\xff\xd3\xd2\xd2\xff\xd7\xd6\xd6\xff\xd9\xd8\xd8\ +\xff\xdb\xda\xda\xff\xdc\xdb\xdc\xff\xde\xdd\xdd\xff\xdf\xdf\xdf\ +\xff\xe1\xe0\xe1\xff\xe2\xe1\xe2\xff\xe4\xe3\xe3\xff\xe4\xe3\xe3\ +\xff\xe5\xe5\xe5\xff\xe7\xe6\xe6\xff\xe7\xe6\xe7\xff\xe8\xe7\xe8\ +\xff\xe8\xe8\xe8\xff\xe9\xe8\xe9\xff\xe9\xe9\xe9\xff\xe9\xe9\xe9\ +\xff\xe9\xe9\xe9\xff\xe9\xe9\xe9\xff\xe9\xe9\xe9\xff\xe9\xe9\xe9\ +\xff\xe8\xe8\xe8\xff\xe8\xe7\xe8\xff\xe7\xe6\xe7\xff\xe7\xe6\xe6\ +\xff\xe6\xe5\xe5\xff\xe4\xe4\xe4\xff\xe4\xe3\xe3\xff\xe2\xe1\xe2\ +\xff\xe1\xe0\xe1\xff\xdf\xdf\xdf\xff\xde\xdd\xdd\xff\xdd\xdb\xdc\ +\xff\xdb\xda\xda\xff\xd9\xd8\xd8\xff\xd7\xd6\xd6\xff\xd5\xd4\xd4\ +\xff\xcc\xcb\xcb\xff\xbd\xbc\xbc\xff\xa6\xa6\xa6\xfd\x88\x87\x88\ +\xf5\x6a\x68\x69\xe3\x48\x45\x46\xc4\x27\x22\x24\x9d\x0d\x09\x0a\ +\x78\x08\x05\x06\x5e\x02\x02\x02\x4d\x00\x00\x00\x43\x00\x00\x00\ +\x3d\x00\x00\x00\x3a\x00\x00\x00\x36\x00\x00\x00\x32\x00\x00\x00\ +\x2e\x00\x00\x00\x2a\x00\x00\x00\x26\x00\x00\x00\x21\x00\x00\x00\ +\x1d\x00\x00\x00\x19\x00\x00\x00\x15\x00\x00\x00\x12\x00\x00\x00\ +\x0f\x00\x00\x00\x0c\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x00\ +\x0c\x00\x00\x00\x0f\x00\x00\x00\x12\x00\x00\x00\x16\x00\x00\x00\ +\x1a\x00\x00\x00\x1f\x01\x01\x01\x29\x08\x05\x06\x3b\x10\x0c\x0e\ +\x5a\x20\x1b\x1d\x84\x42\x40\x41\xb7\x69\x67\x68\xde\x8f\x8e\x8f\ +\xf4\xad\xad\xad\xfe\xc2\xc1\xc1\xff\xcd\xcc\xcd\xff\xd6\xd5\xd6\ +\xff\xd8\xd7\xd8\xff\xda\xd9\xd9\xff\xdc\xdb\xdc\xff\xde\xdd\xdd\ +\xff\xe0\xe0\xe0\xff\xe2\xe1\xe2\xff\xe4\xe3\xe3\xff\xe5\xe4\xe4\ +\xff\xe7\xe6\xe6\xff\xe8\xe7\xe8\xff\xea\xe9\xe9\xff\xea\xe9\xe9\ +\xff\xeb\xeb\xeb\xff\xed\xec\xec\xff\xed\xec\xed\xff\xed\xed\xed\ +\xff\xee\xed\xee\xff\xef\xee\xee\xff\xef\xef\xef\xff\xef\xef\xef\ +\xff\xef\xef\xef\xff\xef\xef\xef\xff\xef\xef\xef\xff\xef\xee\xee\ +\xff\xee\xee\xee\xff\xee\xed\xed\xff\xed\xec\xed\xff\xed\xec\xec\ +\xff\xeb\xeb\xeb\xff\xea\xea\xea\xff\xea\xe9\xe9\xff\xe8\xe8\xe8\ +\xff\xe7\xe6\xe7\xff\xe5\xe4\xe4\xff\xe4\xe3\xe3\xff\xe2\xe1\xe2\ +\xff\xe1\xe0\xe0\xff\xde\xdd\xde\xff\xdc\xdb\xdc\xff\xda\xd9\xda\ +\xff\xd8\xd7\xd8\xff\xd6\xd5\xd6\xff\xd0\xcf\xd0\xff\xc5\xc4\xc4\ +\xff\xb5\xb4\xb5\xfe\x96\x95\x96\xf6\x6e\x6c\x6c\xe5\x41\x3e\x3f\ +\xc3\x20\x1c\x1e\x99\x0b\x08\x0a\x73\x06\x04\x04\x59\x01\x00\x00\ +\x48\x00\x00\x00\x41\x00\x00\x00\x3c\x00\x00\x00\x38\x00\x00\x00\ +\x34\x00\x00\x00\x30\x00\x00\x00\x2c\x00\x00\x00\x27\x00\x00\x00\ +\x23\x00\x00\x00\x1f\x00\x00\x00\x1b\x00\x00\x00\x16\x00\x00\x00\ +\x13\x00\x00\x00\x0f\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\x0d\x00\x00\x00\ +\x10\x00\x00\x00\x13\x00\x00\x00\x17\x00\x00\x00\x1b\x01\x00\x00\ +\x21\x06\x02\x03\x30\x0c\x08\x0b\x4c\x19\x15\x16\x75\x3c\x39\x3a\ +\xab\x5c\x5a\x5b\xdb\x83\x82\x83\xf4\xb2\xb2\xb2\xfd\xc8\xc7\xc7\ +\xff\xd1\xd0\xd0\xff\xd7\xd6\xd7\xff\xd9\xd8\xd9\xff\xdb\xda\xdb\ +\xff\xdd\xdd\xdd\xff\xe0\xdf\xe0\xff\xe2\xe1\xe2\xff\xe4\xe3\xe3\ +\xff\xe6\xe6\xe6\xff\xe8\xe7\xe8\xff\xe9\xe9\xe9\xff\xeb\xeb\xeb\ +\xff\xed\xec\xed\xff\xee\xed\xee\xff\xf0\xef\xef\xff\xf0\xef\xef\ +\xff\xf1\xf0\xf1\xff\xf2\xf2\xf2\xff\xf2\xf2\xf2\xff\xf3\xf3\xf3\ +\xff\xf4\xf3\xf3\xff\xf5\xf4\xf4\xff\xf5\xf5\xf5\xff\xf5\xf5\xf5\ +\xff\xf5\xf5\xf5\xff\xf5\xf5\xf5\xff\xf5\xf5\xf5\xff\xf5\xf4\xf4\ +\xff\xf4\xf3\xf3\xff\xf3\xf3\xf3\xff\xf2\xf2\xf2\xff\xf2\xf2\xf2\ +\xff\xf1\xf1\xf1\xff\xf0\xef\xef\xff\xf0\xef\xef\xff\xee\xed\xee\ +\xff\xed\xec\xed\xff\xeb\xeb\xeb\xff\xea\xe9\xe9\xff\xe8\xe7\xe8\ +\xff\xe7\xe6\xe6\xff\xe4\xe3\xe3\xff\xe2\xe1\xe2\xff\xe0\xe0\xe0\ +\xff\xde\xdd\xdd\xff\xdb\xda\xdb\xff\xd9\xd8\xd9\xff\xd7\xd6\xd7\ +\xff\xd4\xd3\xd3\xff\xcb\xca\xca\xff\xba\xb9\xba\xfe\x8c\x8b\x8b\ +\xf6\x5b\x59\x59\xe1\x3a\x37\x37\xba\x1a\x16\x17\x8c\x09\x07\x08\ +\x69\x04\x01\x02\x52\x00\x00\x00\x44\x00\x00\x00\x3f\x00\x00\x00\ +\x3b\x00\x00\x00\x37\x00\x00\x00\x32\x00\x00\x00\x2d\x00\x00\x00\ +\x29\x00\x00\x00\x24\x00\x00\x00\x20\x00\x00\x00\x1c\x00\x00\x00\ +\x17\x00\x00\x00\x14\x00\x00\x00\x10\x00\x00\x00\x0d\x00\x00\x00\ +\x0a\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x08\x00\x00\x00\x0a\x00\x00\x00\x0d\x00\x00\x00\x10\x00\x00\x00\ +\x14\x00\x00\x00\x18\x00\x00\x00\x1c\x01\x00\x00\x24\x09\x05\x05\ +\x3a\x12\x0e\x0e\x5f\x2c\x29\x2a\x95\x58\x56\x57\xcd\x7e\x7c\x7d\ +\xf1\xa9\xa8\xa8\xfd\xc8\xc7\xc7\xff\xd3\xd2\xd2\xff\xd7\xd6\xd7\ +\xff\xd9\xd8\xd9\xff\xdc\xdb\xdc\xff\xdf\xde\xdf\xff\xe1\xe0\xe1\ +\xff\xe3\xe2\xe3\xff\xe6\xe5\xe5\xff\xe9\xe8\xe8\xff\xea\xea\xea\ +\xff\xec\xeb\xec\xff\xee\xed\xee\xff\xf0\xef\xef\xff\xf1\xf0\xf0\ +\xff\xf2\xf2\xf2\xff\xf3\xf3\xf3\xff\xf5\xf4\xf4\xff\xf6\xf5\xf5\ +\xff\xf7\xf6\xf6\xff\xf8\xf8\xf8\xff\xf8\xf8\xf8\xff\xf9\xf8\xf9\ +\xff\xf9\xf8\xf9\xff\xfa\xf9\xf9\xff\xfa\xf9\xf9\xff\xfa\xf9\xf9\ +\xff\xfa\xf9\xf9\xff\xfa\xf9\xf9\xff\xfa\xf9\xf9\xff\xfa\xf9\xf9\ +\xff\xf9\xf8\xf9\xff\xf9\xf8\xf9\xff\xf8\xf8\xf8\xff\xf8\xf8\xf8\ +\xff\xf7\xf7\xf7\xff\xf6\xf5\xf5\xff\xf5\xf5\xf5\xff\xf4\xf3\xf4\ +\xff\xf2\xf2\xf2\xff\xf1\xf0\xf0\xff\xf0\xef\xef\xff\xee\xed\xee\ +\xff\xec\xec\xec\xff\xea\xea\xea\xff\xe9\xe8\xe8\xff\xe6\xe6\xe6\ +\xff\xe3\xe2\xe3\xff\xe1\xe0\xe1\xff\xdf\xde\xde\xff\xdd\xdc\xdc\ +\xff\xda\xd9\xd9\xff\xd7\xd6\xd7\xff\xd4\xd3\xd3\xff\xcc\xcb\xcb\ +\xff\xb5\xb4\xb4\xfd\x81\x80\x80\xf3\x55\x53\x54\xd7\x2c\x28\x29\ +\xa7\x0e\x0a\x0b\x7a\x06\x04\x04\x5b\x01\x00\x00\x48\x00\x00\x00\ +\x41\x00\x00\x00\x3c\x00\x00\x00\x38\x00\x00\x00\x34\x00\x00\x00\ +\x2f\x00\x00\x00\x2a\x00\x00\x00\x26\x00\x00\x00\x21\x00\x00\x00\ +\x1c\x00\x00\x00\x18\x00\x00\x00\x14\x00\x00\x00\x10\x00\x00\x00\ +\x0d\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\ +\x0a\x00\x00\x00\x0d\x00\x00\x00\x10\x00\x00\x00\x14\x00\x00\x00\ +\x18\x00\x00\x00\x1e\x00\x00\x00\x29\x0c\x08\x0c\x47\x1a\x16\x18\ +\x77\x41\x3e\x3f\xb3\x72\x71\x72\xea\x9a\x9a\x9a\xfd\xc2\xc1\xc1\ +\xff\xd3\xd2\xd2\xff\xd7\xd6\xd7\xff\xda\xd9\xd9\xff\xdc\xdb\xdb\ +\xff\xdf\xde\xde\xff\xe2\xe2\xe2\xff\xe5\xe4\xe5\xff\xe7\xe6\xe6\ +\xff\xe9\xe9\xe9\xff\xec\xeb\xec\xff\xef\xee\xee\xff\xf0\xef\xef\ +\xff\xf2\xf2\xf2\xff\xf3\xf3\xf3\xff\xf5\xf5\xf5\xff\xf7\xf7\xf7\ +\xff\xf8\xf8\xf8\xff\xf9\xf9\xf9\xff\xfa\xf9\xfa\xff\xfb\xfa\xfa\ +\xff\xfb\xfb\xfb\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfe\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfc\xfc\xfc\xff\xfb\xfb\xfb\ +\xff\xfb\xfb\xfb\xff\xfb\xfa\xfa\xff\xfa\xf9\xfa\xff\xf9\xf9\xf9\ +\xff\xf9\xf9\xf9\xff\xf7\xf7\xf7\xff\xf5\xf5\xf5\xff\xf3\xf3\xf3\ +\xff\xf2\xf2\xf2\xff\xf0\xef\xef\xff\xef\xee\xee\xff\xec\xec\xec\ +\xff\xe9\xe9\xe9\xff\xe7\xe7\xe7\xff\xe5\xe4\xe5\xff\xe2\xe2\xe2\ +\xff\xe0\xdf\xdf\xff\xdc\xdb\xdc\xff\xd9\xd8\xd9\xff\xd7\xd6\xd7\ +\xff\xd4\xd3\xd3\xff\xc7\xc6\xc6\xff\xa2\xa1\xa1\xfd\x73\x71\x72\ +\xee\x44\x41\x42\xc4\x1b\x17\x18\x8f\x09\x06\x06\x66\x01\x00\x00\ +\x4e\x00\x00\x00\x43\x00\x00\x00\x3e\x00\x00\x00\x3a\x00\x00\x00\ +\x35\x00\x00\x00\x30\x00\x00\x00\x2b\x00\x00\x00\x27\x00\x00\x00\ +\x22\x00\x00\x00\x1d\x00\x00\x00\x19\x00\x00\x00\x14\x00\x00\x00\ +\x11\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\ +\x0d\x00\x00\x00\x11\x00\x00\x00\x14\x00\x00\x00\x18\x01\x00\x00\ +\x1f\x06\x05\x06\x31\x11\x0d\x10\x56\x29\x25\x25\x92\x5a\x57\x58\ +\xd3\x91\x90\x91\xf9\xb7\xb6\xb7\xff\xd3\xd2\xd2\xff\xd7\xd6\xd6\ +\xff\xd9\xd8\xd9\xff\xdc\xdb\xdc\xff\xe0\xdf\xdf\xff\xe2\xe2\xe2\ +\xff\xe5\xe4\xe5\xff\xe8\xe8\xe8\xff\xeb\xeb\xeb\xff\xed\xed\xed\ +\xff\xf0\xef\xf0\xff\xf2\xf2\xf2\xff\xf4\xf4\xf4\xff\xf6\xf5\xf5\ +\xff\xf8\xf8\xf8\xff\xf9\xf9\xf9\xff\xfa\xf9\xfa\xff\xfb\xfb\xfb\ +\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xfc\xfc\xfc\ +\xff\xfb\xfb\xfb\xff\xfb\xfb\xfb\xff\xf7\xf6\xf7\xff\xec\xec\xec\ +\xff\xe7\xe7\xe7\xff\xf0\xf0\xf0\xff\xf3\xf3\xf3\xff\xf2\xf2\xf2\ +\xff\xf0\xef\xf0\xff\xed\xed\xed\xff\xeb\xeb\xeb\xff\xe9\xe8\xe8\ +\xff\xe6\xe5\xe5\xff\xe2\xe2\xe2\xff\xe0\xdf\xdf\xff\xdd\xdc\xdc\ +\xff\xd9\xd8\xd9\xff\xd7\xd6\xd7\xff\xd5\xd4\xd4\xff\xc1\xc0\xc0\ +\xff\x8e\x8e\x8e\xfa\x5d\x5b\x5b\xde\x27\x23\x24\xa5\x0f\x0b\x0e\ +\x77\x04\x04\x04\x55\x00\x00\x00\x45\x00\x00\x00\x3f\x00\x00\x00\ +\x3b\x00\x00\x00\x36\x00\x00\x00\x31\x00\x00\x00\x2c\x00\x00\x00\ +\x27\x00\x00\x00\x22\x00\x00\x00\x1d\x00\x00\x00\x19\x00\x00\x00\ +\x15\x00\x00\x00\x11\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x06\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x00\x0d\x00\x00\x00\ +\x10\x00\x00\x00\x14\x00\x00\x00\x19\x01\x01\x01\x21\x0a\x06\x07\ +\x39\x18\x13\x15\x63\x39\x35\x36\xa4\x6f\x6e\x6e\xe7\xa5\xa4\xa4\ +\xff\xcb\xca\xca\xff\xd7\xd6\xd6\xff\xd9\xd8\xd8\xff\xdb\xda\xdb\ +\xff\xdf\xde\xde\xff\xe2\xe1\xe2\xff\xe5\xe4\xe5\xff\xe8\xe7\xe8\ +\xff\xeb\xeb\xeb\xff\xee\xee\xee\xff\xf1\xf0\xf0\xff\xf3\xf2\xf2\ +\xff\xf5\xf5\xf5\xff\xf7\xf7\xf7\xff\xf9\xf9\xf9\xff\xfa\xfa\xfa\ +\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfc\xfc\xfc\xff\xda\xda\xda\xff\x8d\x8e\x8f\ +\xff\x7d\x7d\x7d\xff\xb1\xb1\xb1\xff\xe3\xe3\xe3\xff\xf4\xf4\xf4\ +\xff\xf5\xf5\xf5\xff\xf3\xf2\xf2\xff\xf1\xf0\xf0\xff\xee\xee\xee\ +\xff\xeb\xeb\xeb\xff\xe9\xe8\xe8\xff\xe5\xe5\xe5\xff\xe2\xe2\xe2\ +\xff\xdf\xde\xde\xff\xdb\xdb\xdb\xff\xd9\xd8\xd9\xff\xd7\xd6\xd6\ +\xff\xcf\xce\xce\xff\xac\xab\xab\xff\x72\x70\x71\xec\x39\x37\x39\ +\xb9\x17\x14\x16\x83\x06\x03\x04\x5d\x00\x00\x00\x4a\x00\x00\x00\ +\x41\x00\x00\x00\x3c\x00\x00\x00\x37\x00\x00\x00\x32\x00\x00\x00\ +\x2d\x00\x00\x00\x28\x00\x00\x00\x23\x00\x00\x00\x1d\x00\x00\x00\ +\x19\x00\x00\x00\x15\x00\x00\x00\x11\x00\x00\x00\x0d\x00\x00\x00\ +\x0a\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\ +\x07\x00\x00\x00\x0a\x00\x00\x00\x0d\x00\x00\x00\x10\x00\x00\x00\ +\x14\x00\x00\x00\x19\x03\x02\x02\x24\x0c\x0a\x0b\x3f\x20\x1d\x1f\ +\x72\x43\x3f\x40\xb4\x84\x82\x83\xf0\xb5\xb5\xb5\xff\xd6\xd5\xd5\ +\xff\xd8\xd7\xd8\xff\xda\xd9\xda\xff\xde\xdd\xdd\xff\xe0\xe0\xe0\ +\xff\xe4\xe3\xe4\xff\xe8\xe7\xe7\xff\xeb\xeb\xeb\xff\xee\xee\xee\ +\xff\xf1\xf0\xf0\xff\xf3\xf3\xf3\xff\xf5\xf5\xf5\xff\xf8\xf7\xf8\ +\xff\xfa\xfa\xfa\xff\xfb\xfa\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfa\xfa\xfa\xff\xaf\xaf\xaf\xff\x1f\x20\x20\ +\xff\x04\x04\x04\xff\x28\x29\x29\xff\x80\x81\x81\xff\xd0\xd0\xd0\ +\xff\xf3\xf3\xf3\xff\xf7\xf7\xf7\xff\xf6\xf6\xf6\xff\xf3\xf3\xf3\ +\xff\xf1\xf0\xf0\xff\xee\xee\xee\xff\xeb\xeb\xeb\xff\xe8\xe7\xe8\ +\xff\xe4\xe3\xe4\xff\xe1\xe0\xe0\xff\xde\xdd\xdd\xff\xdb\xda\xda\ +\xff\xd8\xd7\xd8\xff\xd6\xd5\xd5\xff\xba\xb9\xba\xff\x81\x7f\x80\ +\xf3\x4b\x48\x49\xc7\x1e\x1a\x1c\x8e\x07\x06\x06\x63\x01\x01\x01\ +\x4d\x00\x00\x00\x42\x00\x00\x00\x3d\x00\x00\x00\x38\x00\x00\x00\ +\x33\x00\x00\x00\x2d\x00\x00\x00\x28\x00\x00\x00\x23\x00\x00\x00\ +\x1d\x00\x00\x00\x19\x00\x00\x00\x14\x00\x00\x00\x10\x00\x00\x00\ +\x0d\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\ +\x09\x00\x00\x00\x0c\x00\x00\x00\x0f\x00\x00\x00\x14\x00\x00\x00\ +\x19\x03\x03\x03\x27\x0f\x0c\x0d\x46\x2c\x29\x2a\x7d\x56\x53\x54\ +\xc3\x85\x83\x84\xf3\xbd\xbc\xbc\xff\xd7\xd6\xd6\xff\xd9\xd8\xd9\ +\xff\xdc\xdb\xdc\xff\xdf\xdf\xdf\xff\xe3\xe2\xe3\xff\xe6\xe5\xe6\ +\xff\xea\xe9\xe9\xff\xed\xed\xed\xff\xf1\xf0\xf0\xff\xf3\xf3\xf3\ +\xff\xf5\xf5\xf5\xff\xf8\xf7\xf7\xff\xfa\xfa\xfa\xff\xfb\xfa\xfb\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xd5\xd5\xd5\xff\x60\x60\x60\ +\xff\x0c\x0c\x0c\xff\x00\x00\x00\xff\x15\x15\x15\xff\x64\x65\x65\ +\xff\xc3\xc4\xc4\xff\xf2\xf2\xf2\xff\xfa\xf9\xfa\xff\xf8\xf8\xf8\ +\xff\xf6\xf6\xf6\xff\xf3\xf3\xf3\xff\xf1\xf0\xf0\xff\xee\xed\xed\ +\xff\xea\xe9\xea\xff\xe7\xe6\xe6\xff\xe3\xe3\xe3\xff\xe0\xdf\xdf\ +\xff\xdc\xdb\xdc\xff\xd9\xd8\xd9\xff\xd7\xd6\xd6\xff\xc5\xc3\xc4\ +\xff\x8e\x8d\x8e\xf7\x59\x57\x57\xd2\x25\x21\x23\x98\x09\x06\x07\ +\x69\x01\x01\x01\x4e\x00\x00\x00\x43\x00\x00\x00\x3d\x00\x00\x00\ +\x38\x00\x00\x00\x33\x00\x00\x00\x2d\x00\x00\x00\x28\x00\x00\x00\ +\x22\x00\x00\x00\x1d\x00\x00\x00\x18\x00\x00\x00\x14\x00\x00\x00\ +\x10\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\ +\x05\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x09\x00\x00\x00\ +\x0b\x00\x00\x00\x0f\x00\x00\x00\x13\x00\x00\x00\x18\x04\x03\x03\ +\x27\x11\x0e\x0e\x4a\x33\x30\x30\x88\x66\x64\x64\xcd\x99\x98\x98\ +\xf6\xc3\xc2\xc3\xff\xd8\xd7\xd7\xff\xda\xd9\xda\xff\xde\xdd\xdd\ +\xff\xe1\xe1\xe1\xff\xe5\xe4\xe4\xff\xe9\xe8\xe8\xff\xec\xec\xec\ +\xff\xef\xef\xef\xff\xf3\xf2\xf2\xff\xf5\xf5\xf5\xff\xf7\xf7\xf7\ +\xff\xfa\xfa\xfa\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xfa\xfa\xff\xc1\xc1\xc1\ +\xff\x49\x49\x49\xff\x09\x09\x09\xff\x00\x00\x00\xff\x10\x11\x11\ +\xff\x57\x58\x58\xff\xbd\xbd\xbd\xff\xf1\xf1\xf1\xff\xfb\xfa\xfa\ +\xff\xfa\xfa\xfa\xff\xf7\xf7\xf7\xff\xf5\xf5\xf5\xff\xf3\xf2\xf2\ +\xff\xf0\xef\xef\xff\xec\xec\xec\xff\xe9\xe8\xe9\xff\xe5\xe4\xe5\ +\xff\xe1\xe0\xe1\xff\xde\xdd\xdd\xff\xdb\xda\xda\xff\xd8\xd7\xd8\ +\xff\xcd\xcc\xcd\xff\x9f\x9f\x9f\xf9\x65\x64\x65\xda\x29\x27\x28\ +\x9f\x0a\x08\x09\x6b\x02\x02\x02\x50\x00\x00\x00\x43\x00\x00\x00\ +\x3e\x00\x00\x00\x38\x00\x00\x00\x33\x00\x00\x00\x2d\x00\x00\x00\ +\x27\x00\x00\x00\x22\x00\x00\x00\x1d\x00\x00\x00\x18\x00\x00\x00\ +\x13\x00\x00\x00\x0f\x00\x00\x00\x0c\x00\x00\x00\x09\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\x0b\x00\x00\x00\ +\x0e\x00\x00\x00\x12\x00\x00\x00\x17\x04\x03\x03\x27\x13\x10\x11\ +\x4b\x38\x34\x35\x8c\x6b\x69\x6a\xd2\xa3\xa2\xa3\xf8\xcb\xca\xcb\ +\xff\xd8\xd7\xd8\xff\xdc\xdb\xdb\xff\xdf\xdf\xdf\xff\xe3\xe2\xe3\ +\xff\xe7\xe6\xe6\xff\xea\xea\xea\xff\xee\xed\xee\xff\xf1\xf1\xf1\ +\xff\xf4\xf4\xf4\xff\xf7\xf7\xf7\xff\xf9\xf9\xf9\xff\xfb\xfa\xfb\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf4\xf4\xf4\ +\xff\xb0\xb1\xb0\xff\x40\x41\x40\xff\x06\x06\x06\xff\x00\x00\x00\ +\xff\x0d\x0d\x0d\xff\x4e\x4e\x4e\xff\xae\xae\xae\xff\xee\xee\xee\ +\xff\xfc\xfc\xfc\xff\xfb\xfa\xfb\xff\xf9\xf9\xf9\xff\xf7\xf7\xf7\ +\xff\xf4\xf4\xf4\xff\xf2\xf1\xf1\xff\xee\xee\xee\xff\xea\xea\xea\ +\xff\xe7\xe6\xe6\xff\xe3\xe3\xe3\xff\xe0\xdf\xdf\xff\xdc\xdb\xdc\ +\xff\xd9\xd8\xd9\xff\xd1\xd0\xd1\xff\xac\xab\xac\xfb\x6c\x6a\x6b\ +\xde\x2f\x2c\x2d\xa4\x0c\x0a\x0a\x6e\x02\x02\x02\x50\x00\x00\x00\ +\x43\x00\x00\x00\x3d\x00\x00\x00\x38\x00\x00\x00\x33\x00\x00\x00\ +\x2d\x00\x00\x00\x27\x00\x00\x00\x21\x00\x00\x00\x1c\x00\x00\x00\ +\x17\x00\x00\x00\x12\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x00\x0d\x00\x00\x00\ +\x11\x00\x00\x00\x17\x03\x03\x03\x25\x13\x10\x11\x49\x3a\x36\x37\ +\x8c\x6f\x6e\x6e\xd5\xa7\xa6\xa6\xf9\xcf\xce\xce\xff\xd9\xd8\xd9\ +\xff\xdd\xdc\xdc\xff\xe0\xe0\xe0\xff\xe4\xe4\xe4\xff\xe8\xe8\xe8\ +\xff\xec\xec\xec\xff\xef\xef\xef\xff\xf3\xf2\xf3\xff\xf6\xf6\xf6\ +\xff\xf8\xf8\xf8\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xf2\xf2\xf2\xff\xa3\xa3\xa3\xff\x31\x31\x31\xff\x03\x03\x03\ +\xff\x00\x00\x00\xff\x08\x08\x08\xff\x36\x36\x36\xff\x9d\x9e\x9d\ +\xff\xec\xec\xec\xff\xfd\xfd\xfd\xff\xfc\xfc\xfc\xff\xfa\xfa\xfa\ +\xff\xf9\xf8\xf8\xff\xf6\xf6\xf6\xff\xf3\xf3\xf3\xff\xf0\xef\xef\ +\xff\xec\xec\xec\xff\xe8\xe8\xe8\xff\xe4\xe4\xe4\xff\xe1\xe0\xe0\ +\xff\xdd\xdc\xdc\xff\xda\xd9\xd9\xff\xd3\xd2\xd3\xff\xb0\xaf\xb0\ +\xfb\x70\x6f\x6f\xe0\x31\x2e\x2f\xa5\x0c\x0a\x0b\x6d\x02\x01\x02\ +\x50\x00\x00\x00\x43\x00\x00\x00\x3d\x00\x00\x00\x38\x00\x00\x00\ +\x32\x00\x00\x00\x2c\x00\x00\x00\x26\x00\x00\x00\x20\x00\x00\x00\ +\x1b\x00\x00\x00\x16\x00\x00\x00\x12\x00\x00\x00\x0e\x00\x00\x00\ +\x0a\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x07\x00\x00\x00\x09\x00\x00\x00\x0d\x00\x00\x00\x10\x00\x00\x00\ +\x16\x03\x02\x02\x20\x11\x0e\x0f\x44\x39\x35\x36\x88\x71\x6f\x70\ +\xd4\xaa\xa9\xa9\xf9\xd0\xcf\xcf\xff\xdb\xda\xda\xff\xde\xdd\xde\ +\xff\xe1\xe0\xe1\xff\xe5\xe5\xe5\xff\xea\xe9\xe9\xff\xed\xec\xed\ +\xff\xf1\xf0\xf1\xff\xf4\xf4\xf4\xff\xf7\xf7\xf7\xff\xf9\xf9\xf9\ +\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfe\xfe\xfe\xff\xe9\xe9\xe9\xff\x88\x88\x88\xff\x1d\x1d\x1d\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\xff\x26\x27\x26\ +\xff\x86\x87\x86\xff\xd8\xd9\xd9\xff\xf6\xf6\xf6\xff\xfc\xfc\xfc\ +\xff\xfb\xfb\xfb\xff\xf9\xf9\xf9\xff\xf7\xf7\xf7\xff\xf4\xf4\xf4\ +\xff\xf1\xf1\xf1\xff\xed\xed\xed\xff\xea\xe9\xe9\xff\xe6\xe5\xe5\ +\xff\xe2\xe1\xe1\xff\xde\xde\xde\xff\xdb\xda\xdb\xff\xd4\xd3\xd4\ +\xff\xb2\xb2\xb2\xfb\x72\x71\x71\xe0\x2f\x2c\x2d\xa3\x0a\x07\x08\ +\x6a\x01\x01\x01\x4d\x00\x00\x00\x43\x00\x00\x00\x3c\x00\x00\x00\ +\x37\x00\x00\x00\x31\x00\x00\x00\x2b\x00\x00\x00\x25\x00\x00\x00\ +\x1f\x00\x00\x00\x1a\x00\x00\x00\x15\x00\x00\x00\x11\x00\x00\x00\ +\x0d\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x08\x00\x00\x00\x0b\x00\x00\x00\x0f\x00\x00\x00\x14\x02\x02\x02\ +\x1d\x0e\x0c\x0d\x3c\x33\x2f\x30\x7f\x6d\x6b\x6c\xd1\xa9\xa8\xa8\ +\xf9\xd1\xd0\xd0\xff\xdc\xdb\xdb\xff\xdf\xde\xde\xff\xe2\xe1\xe2\ +\xff\xe7\xe6\xe6\xff\xea\xea\xea\xff\xef\xee\xee\xff\xf2\xf1\xf2\ +\xff\xf5\xf5\xf5\xff\xf8\xf7\xf8\xff\xfa\xf9\xfa\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xd3\xd3\xd3\xff\x5d\x5e\x5e\ +\xff\x0c\x0d\x0d\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x18\x19\x19\xff\x5c\x5c\x5c\xff\xa7\xa7\xa7\xff\xdc\xdc\xdc\ +\xff\xf4\xf4\xf4\xff\xfc\xfc\xfc\xff\xfa\xf9\xfa\xff\xf8\xf8\xf8\ +\xff\xf6\xf5\xf5\xff\xf2\xf2\xf2\xff\xee\xee\xee\xff\xea\xea\xea\ +\xff\xe7\xe6\xe7\xff\xe2\xe2\xe2\xff\xdf\xde\xde\xff\xdc\xdb\xdb\ +\xff\xd5\xd4\xd5\xff\xb5\xb4\xb4\xfb\x71\x6f\x70\xde\x2a\x27\x28\ +\x9c\x07\x06\x06\x65\x01\x01\x01\x4c\x00\x00\x00\x41\x00\x00\x00\ +\x3c\x00\x00\x00\x36\x00\x00\x00\x30\x00\x00\x00\x2a\x00\x00\x00\ +\x24\x00\x00\x00\x1e\x00\x00\x00\x19\x00\x00\x00\x14\x00\x00\x00\ +\x0f\x00\x00\x00\x0c\x00\x00\x00\x09\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\ +\x0a\x00\x00\x00\x0e\x00\x00\x00\x12\x01\x00\x00\x19\x0c\x08\x08\ +\x34\x2b\x27\x29\x73\x67\x65\x66\xca\xa7\xa7\xa7\xf8\xd3\xd2\xd2\ +\xff\xdc\xdb\xdb\xff\xdf\xdf\xdf\xff\xe3\xe2\xe3\xff\xe7\xe6\xe7\ +\xff\xeb\xeb\xeb\xff\xf0\xef\xef\xff\xf3\xf3\xf3\xff\xf6\xf6\xf6\ +\xff\xf9\xf9\xf9\xff\xfb\xfa\xfa\xff\xfc\xfb\xfc\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\xf9\xf9\xff\xb6\xb7\xb7\ +\xff\x3a\x3b\x3b\xff\x04\x04\x04\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x0a\x0b\x0b\xff\x22\x22\x22\xff\x56\x57\x57\ +\xff\x9b\x9b\x9b\xff\xd8\xd9\xd9\xff\xf5\xf5\xf5\xff\xfb\xfa\xfa\ +\xff\xf9\xf9\xf9\xff\xf6\xf6\xf6\xff\xf3\xf3\xf3\xff\xf0\xef\xef\ +\xff\xeb\xeb\xeb\xff\xe7\xe7\xe7\xff\xe3\xe3\xe3\xff\xe0\xdf\xdf\ +\xff\xdd\xdc\xdc\xff\xd7\xd6\xd6\xff\xb3\xb3\xb4\xfb\x6b\x69\x6a\ +\xd9\x24\x22\x23\x94\x07\x04\x04\x60\x00\x00\x00\x48\x00\x00\x00\ +\x40\x00\x00\x00\x3b\x00\x00\x00\x35\x00\x00\x00\x2e\x00\x00\x00\ +\x28\x00\x00\x00\x22\x00\x00\x00\x1c\x00\x00\x00\x17\x00\x00\x00\ +\x12\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\x09\x00\x00\x00\ +\x0d\x00\x00\x00\x11\x00\x00\x00\x16\x08\x07\x07\x2a\x20\x1d\x1d\ +\x62\x5b\x58\x59\xbe\xa0\x9f\xa0\xf8\xd3\xd3\xd3\xff\xdd\xdc\xdc\ +\xff\xe0\xe0\xe0\xff\xe4\xe3\xe3\xff\xe8\xe7\xe7\xff\xec\xeb\xeb\ +\xff\xf0\xef\xef\xff\xf3\xf3\xf3\xff\xf6\xf6\xf6\xff\xf9\xf9\xf9\ +\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xee\xee\xee\ +\xff\x8b\x8b\x8d\xff\x1a\x1a\x1b\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x07\x07\x07\ +\xff\x1a\x1b\x1b\xff\x52\x53\x54\xff\xa7\xa7\xa8\xff\xe8\xe8\xe8\ +\xff\xfa\xfa\xfa\xff\xf9\xf9\xf9\xff\xf6\xf6\xf6\xff\xf3\xf3\xf3\ +\xff\xf0\xef\xef\xff\xec\xec\xec\xff\xe8\xe7\xe7\xff\xe4\xe4\xe4\ +\xff\xe0\xe0\xe0\xff\xdd\xdc\xdc\xff\xd8\xd7\xd7\xff\xab\xab\xab\ +\xf9\x60\x5e\x5e\xd0\x1e\x1c\x1c\x88\x04\x04\x04\x59\x00\x00\x00\ +\x45\x00\x00\x00\x3f\x00\x00\x00\x39\x00\x00\x00\x33\x00\x00\x00\ +\x2d\x00\x00\x00\x27\x00\x00\x00\x20\x00\x00\x00\x1b\x00\x00\x00\ +\x15\x00\x00\x00\x11\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\x0b\x00\x00\x00\ +\x0f\x00\x00\x00\x14\x07\x00\x01\x21\x16\x13\x15\x51\x48\x45\x46\ +\xad\x90\x8f\x8f\xf5\xd1\xd0\xd0\xff\xde\xdd\xdd\xff\xe1\xe0\xe0\ +\xff\xe4\xe4\xe4\xff\xe8\xe8\xe8\xff\xec\xec\xec\xff\xf0\xef\xef\ +\xff\xf4\xf3\xf3\xff\xf7\xf7\xf7\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xd9\xd9\xdb\xff\x57\x59\x59\xff\x09\x0a\x0a\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x03\x03\x03\xff\x32\x32\x32\xff\xae\xae\xae\ +\xff\xf5\xf5\xf5\xff\xfb\xfb\xfb\xff\xf9\xf9\xf9\xff\xf7\xf7\xf7\ +\xff\xf4\xf4\xf4\xff\xf0\xf0\xf0\xff\xec\xec\xec\xff\xe8\xe8\xe8\ +\xff\xe4\xe4\xe4\xff\xe1\xe1\xe1\xff\xde\xdd\xdd\xff\xda\xd9\xd9\ +\xff\xa2\xa1\xa1\xf6\x51\x50\x50\xc4\x17\x14\x15\x7b\x01\x01\x01\ +\x51\x00\x00\x00\x43\x00\x00\x00\x3e\x00\x00\x00\x38\x00\x00\x00\ +\x31\x00\x00\x00\x2b\x00\x00\x00\x24\x00\x00\x00\x1f\x00\x00\x00\ +\x19\x00\x00\x00\x14\x00\x00\x00\x0f\x00\x00\x00\x0b\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x00\x0d\x00\x00\x00\ +\x12\x01\x00\x00\x1b\x0f\x0b\x0e\x41\x3b\x38\x3a\x99\x8b\x8a\x8b\ +\xf0\xcd\xcc\xcc\xff\xdf\xde\xde\xff\xe1\xe1\xe1\xff\xe4\xe4\xe4\ +\xff\xe8\xe8\xe8\xff\xed\xec\xed\xff\xf0\xf0\xf0\xff\xf4\xf4\xf4\ +\xff\xf7\xf7\xf7\xff\xfa\xf9\xfa\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfc\xfc\xfc\xff\xb8\xb9\xb9\xff\x36\x37\x38\xff\x05\x05\x05\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x27\x27\x27\xff\xa4\xa4\xa4\ +\xff\xf3\xf3\xf3\xff\xf9\xf9\xf9\xff\xf7\xf7\xf7\xff\xf5\xf4\xf5\ +\xff\xf2\xf2\xf2\xff\xef\xee\xee\xff\xeb\xea\xea\xff\xe6\xe5\xe6\ +\xff\xe1\xe1\xe1\xff\xdd\xdd\xdd\xff\xd9\xd9\xd9\xff\xd7\xd6\xd6\ +\xff\xd3\xd2\xd2\xff\x8c\x8a\x8b\xf2\x3b\x38\x39\xb4\x0d\x0a\x0c\ +\x6e\x00\x00\x00\x4b\x00\x00\x00\x42\x00\x00\x00\x3c\x00\x00\x00\ +\x35\x00\x00\x00\x2f\x00\x00\x00\x29\x00\x00\x00\x22\x00\x00\x00\ +\x1c\x00\x00\x00\x17\x00\x00\x00\x12\x00\x00\x00\x0e\x00\x00\x00\ +\x0a\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x0c\x00\x00\x00\x10\x01\x00\x01\ +\x16\x0c\x07\x07\x31\x28\x24\x25\x79\x78\x76\x78\xe2\xc7\xc6\xc6\ +\xff\xdf\xde\xde\xff\xe2\xe1\xe1\xff\xe5\xe4\xe4\xff\xe8\xe8\xe8\ +\xff\xec\xec\xec\xff\xf0\xf0\xf0\xff\xf4\xf3\xf3\xff\xf7\xf7\xf7\ +\xff\xfa\xf9\xfa\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xf6\xf7\xf7\xff\xa6\xa6\xa6\xff\x2e\x2e\x2e\ +\xff\x03\x03\x03\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x20\x20\x20\xff\x7d\x7d\x7d\ +\xff\xbb\xbc\xbc\xff\xc5\xc6\xc6\xff\xba\xbb\xbb\xff\xb0\xb0\xb0\ +\xff\xac\xad\xac\xff\xa9\xa9\xa9\xff\xa1\xa0\xa0\xff\x93\x93\x93\ +\xff\x8f\x8e\x8e\xff\x8c\x8b\x8b\xff\x82\x82\x83\xff\x7b\x7b\x7b\ +\xff\x7d\x7d\x7e\xff\x6b\x6b\x6c\xff\x36\x35\x35\xeb\x19\x16\x17\ +\x9d\x07\x04\x06\x5f\x00\x00\x00\x47\x00\x00\x00\x40\x00\x00\x00\ +\x3a\x00\x00\x00\x33\x00\x00\x00\x2d\x00\x00\x00\x26\x00\x00\x00\ +\x20\x00\x00\x00\x1a\x00\x00\x00\x15\x00\x00\x00\x10\x00\x00\x00\ +\x0c\x00\x00\x00\x09\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x07\x00\x00\x00\x0a\x00\x00\x00\x0e\x00\x00\x00\x13\x08\x04\x08\ +\x25\x1f\x1b\x1c\x5c\x5c\x5a\x5b\xc6\xb8\xb7\xb7\xfd\xdf\xde\xde\ +\xff\xe2\xe1\xe1\xff\xe5\xe4\xe4\xff\xe8\xe8\xe8\xff\xec\xec\xec\ +\xff\xf0\xef\xef\xff\xf4\xf3\xf3\xff\xf7\xf7\xf7\xff\xfa\xf9\xfa\ +\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xfc\xfc\ +\xff\xf3\xf3\xf3\xff\xec\xec\xec\xff\xef\xef\xef\xff\xf8\xf8\xf8\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf5\xf4\xf4\xff\x91\x91\x91\ +\xff\x16\x16\x16\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x06\x06\x06\xff\x1e\x1e\x1e\ +\xff\x37\x38\x38\xff\x3d\x3d\x3d\xff\x31\x32\x31\xff\x26\x27\x26\ +\xff\x24\x25\x24\xff\x24\x24\x24\xff\x1f\x1f\x1f\xff\x17\x18\x17\ +\xff\x16\x16\x16\xff\x16\x16\x16\xff\x12\x12\x12\xff\x0d\x0f\x0f\ +\xff\x0d\x0e\x0f\xff\x0d\x0d\x0e\xff\x04\x04\x04\xff\x1d\x1b\x1c\ +\xdc\x17\x13\x14\x84\x04\x03\x03\x56\x00\x00\x00\x44\x00\x00\x00\ +\x3e\x00\x00\x00\x38\x00\x00\x00\x31\x00\x00\x00\x2a\x00\x00\x00\ +\x24\x00\x00\x00\x1d\x00\x00\x00\x18\x00\x00\x00\x13\x00\x00\x00\ +\x0e\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x09\x00\x00\x00\x0c\x00\x00\x00\x10\x04\x02\x02\x1c\x13\x11\x11\ +\x43\x4c\x49\x4a\xa0\x9e\x9e\x9e\xf3\xdd\xdc\xdd\xff\xe1\xe1\xe1\ +\xff\xe5\xe4\xe4\xff\xe8\xe7\xe7\xff\xec\xeb\xeb\xff\xf0\xef\xef\ +\xff\xf3\xf3\xf3\xff\xf6\xf6\xf6\xff\xfa\xf9\xfa\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfd\xfd\xfd\xff\xf9\xf9\xf9\xff\xee\xee\xee\xff\xcc\xcd\xcd\ +\xff\x9e\x9e\x9e\xff\x85\x85\x85\xff\x8f\x8e\x8f\xff\xb9\xb9\xb9\ +\xff\xec\xed\xed\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd7\xd7\xd7\ +\xff\x3c\x3c\x3d\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x00\x01\ +\xf8\x22\x20\x20\xbe\x0c\x09\x0a\x6e\x01\x00\x00\x4d\x00\x00\x00\ +\x41\x00\x00\x00\x3b\x00\x00\x00\x35\x00\x00\x00\x2e\x00\x00\x00\ +\x27\x00\x00\x00\x21\x00\x00\x00\x1b\x00\x00\x00\x15\x00\x00\x00\ +\x11\x00\x00\x00\x0d\x00\x00\x00\x09\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\ +\x0a\x00\x00\x00\x0e\x00\x00\x00\x15\x0d\x08\x0a\x30\x39\x34\x37\ +\x7a\x84\x83\x83\xdf\xcf\xcf\xcf\xfe\xe1\xe1\xe1\xff\xe4\xe3\xe4\ +\xff\xe8\xe7\xe7\xff\xeb\xeb\xeb\xff\xef\xef\xef\xff\xf3\xf3\xf3\ +\xff\xf6\xf6\xf6\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf6\xf6\xf6\xff\xd9\xd9\xd8\ +\xff\xc5\xc5\xc4\xff\xb7\xb8\xb8\xff\x91\x91\x92\xff\x52\x53\x53\ +\xff\x24\x24\x24\xff\x14\x14\x14\xff\x19\x19\x19\xff\x39\x39\x39\ +\xff\x95\x96\x96\xff\xf5\xf5\xf5\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe9\xe9\xe9\ +\xff\x5c\x5e\x5d\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x0d\x0c\x0c\xec\x1c\x19\x1b\x9d\x06\x04\x04\x5f\x00\x00\x00\ +\x47\x00\x00\x00\x3f\x00\x00\x00\x39\x00\x00\x00\x32\x00\x00\x00\ +\x2b\x00\x00\x00\x24\x00\x00\x00\x1e\x00\x00\x00\x18\x00\x00\x00\ +\x13\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\ +\x05\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\ +\x0c\x00\x00\x00\x11\x07\x05\x05\x21\x21\x1d\x1e\x56\x66\x63\x64\ +\xbe\xb9\xb9\xb9\xf8\xdf\xdf\xdf\xff\xe4\xe3\xe4\xff\xe7\xe6\xe7\ +\xff\xeb\xea\xea\xff\xee\xee\xee\xff\xf2\xf2\xf2\xff\xf6\xf6\xf6\ +\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xd8\xd8\xd8\xff\x6a\x6a\x6a\ +\xff\x40\x40\x3f\xff\x36\x36\x36\xff\x1f\x1f\x20\xff\x07\x07\x08\ +\xff\x09\x09\x09\xff\x0d\x0d\x0d\xff\x03\x03\x03\xff\x00\x00\x00\ +\xff\x2c\x2d\x2d\xff\xcf\xcf\xcf\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf5\xf4\xf4\ +\xff\x7a\x7b\x7a\xff\x00\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfd\x16\x14\x15\xd3\x18\x16\x16\x7f\x03\x02\x02\ +\x52\x00\x00\x00\x43\x00\x00\x00\x3c\x00\x00\x00\x36\x00\x00\x00\ +\x2f\x00\x00\x00\x28\x00\x00\x00\x22\x00\x00\x00\x1b\x00\x00\x00\ +\x15\x00\x00\x00\x11\x00\x00\x00\x0d\x00\x00\x00\x09\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x00\ +\x0e\x03\x00\x03\x16\x10\x0c\x0d\x38\x41\x40\x40\x90\x9b\x9a\x9a\ +\xe9\xd7\xd7\xd7\xfe\xe3\xe2\xe3\xff\xe6\xe5\xe6\xff\xea\xe9\xe9\ +\xff\xee\xed\xee\xff\xf2\xf1\xf1\xff\xf5\xf5\xf5\xff\xf9\xf8\xf8\ +\xff\xfb\xfa\xfa\xff\xfc\xfc\xfc\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xd1\xd1\xd1\xff\x42\x42\x43\ +\xff\x01\x02\x01\xff\x00\x00\x00\xff\x09\x09\x09\xff\x2d\x2d\x2e\ +\xff\x5f\x60\x60\xff\x6f\x70\x70\xff\x46\x46\x46\xff\x12\x12\x12\ +\xff\x18\x19\x18\xff\xbc\xbd\xbd\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xfc\xfc\ +\xff\x95\x95\x95\xff\x07\x08\x08\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfe\x05\x04\x05\xf2\x1b\x19\x1a\xb0\x08\x06\x06\ +\x65\x01\x01\x01\x49\x00\x00\x00\x3f\x00\x00\x00\x39\x00\x00\x00\ +\x33\x00\x00\x00\x2b\x00\x00\x00\x24\x00\x00\x00\x1e\x00\x00\x00\ +\x18\x00\x00\x00\x13\x00\x00\x00\x0e\x00\x00\x00\x0a\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\x0b\x00\x00\x00\ +\x11\x09\x05\x06\x23\x25\x22\x23\x60\x74\x73\x73\xcb\xc8\xc7\xc8\ +\xfb\xe2\xe1\xe2\xff\xe6\xe5\xe5\xff\xe9\xe8\xe8\xff\xed\xec\xed\ +\xff\xf1\xf0\xf0\xff\xf4\xf4\xf4\xff\xf8\xf7\xf8\xff\xfa\xfa\xfa\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xef\xef\xef\xff\xa0\xa0\xa1\ +\xff\x47\x48\x47\xff\x36\x36\x36\xff\x5d\x5e\x5e\xff\xa6\xa7\xa7\ +\xff\xd9\xd9\xd9\xff\xe3\xe3\xe3\xff\xc5\xc5\xc5\xff\x7a\x7a\x7a\ +\xff\x70\x71\x71\xff\xe0\xe0\xe1\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xb6\xb7\xb7\xff\x1b\x1d\x1d\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x0c\x0b\x0c\xdd\x1b\x18\x19\ +\x8b\x04\x02\x04\x55\x00\x00\x00\x44\x00\x00\x00\x3c\x00\x00\x00\ +\x36\x00\x00\x00\x2f\x00\x00\x00\x28\x00\x00\x00\x21\x00\x00\x00\ +\x1b\x00\x00\x00\x15\x00\x00\x00\x10\x00\x00\x00\x0c\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x00\x0d\x03\x03\x03\ +\x17\x13\x10\x10\x3a\x50\x4e\x4f\x9a\xae\xae\xae\xed\xde\xdd\xde\ +\xff\xe5\xe4\xe5\xff\xe8\xe7\xe7\xff\xec\xec\xec\xff\xf0\xef\xef\ +\xff\xf3\xf3\xf3\xff\xf6\xf6\xf6\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xef\xef\xef\ +\xff\xc9\xca\xc9\xff\xba\xbb\xba\xff\xd7\xd7\xd7\xff\xf4\xf4\xf4\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xfb\xfb\xfb\xff\xe8\xe8\xe8\ +\xff\xe4\xe5\xe5\xff\xfb\xfb\xfb\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xd4\xd4\xd4\xff\x39\x39\x3a\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x03\x03\x03\xf4\x13\x12\x12\ +\xb9\x09\x06\x08\x69\x01\x01\x01\x4a\x00\x00\x00\x3f\x00\x00\x00\ +\x39\x00\x00\x00\x32\x00\x00\x00\x2b\x00\x00\x00\x24\x00\x00\x00\ +\x1d\x00\x00\x00\x18\x00\x00\x00\x12\x00\x00\x00\x0e\x00\x00\x00\ +\x0a\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x08\x00\x00\x00\x0b\x00\x00\x00\x10\x08\x06\x06\ +\x22\x31\x2e\x2f\x65\x8b\x89\x8a\xcf\xd1\xd0\xd1\xfc\xe5\xe4\xe4\ +\xff\xe8\xe7\xe7\xff\xeb\xea\xea\xff\xee\xed\xee\xff\xf2\xf1\xf1\ +\xff\xf5\xf5\xf5\xff\xf9\xf8\xf8\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfb\xfb\xfb\xff\xf9\xf9\xf9\xff\xfd\xfd\xfd\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xe7\xe7\xe7\xff\x58\x58\x59\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x0b\x0a\x0a\ +\xe0\x1f\x1d\x1d\x8f\x04\x02\x04\x55\x00\x00\x00\x43\x00\x00\x00\ +\x3c\x00\x00\x00\x35\x00\x00\x00\x2e\x00\x00\x00\x27\x00\x00\x00\ +\x20\x00\x00\x00\x1a\x00\x00\x00\x14\x00\x00\x00\x0f\x00\x00\x00\ +\x0b\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x06\x00\x00\x00\x09\x00\x00\x00\x0c\x04\x00\x04\x15\x12\x0b\x10\ +\x36\x5a\x56\x59\x9a\xb5\xb3\xb4\xef\xe2\xe1\xe1\xff\xe7\xe6\xe6\ +\xff\xea\xe9\xe9\xff\xed\xed\xed\xff\xf1\xf0\xf0\xff\xf4\xf4\xf4\ +\xff\xf8\xf7\xf8\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xf6\xf7\xf7\xff\x76\x77\x77\xff\x01\x02\x02\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x05\x05\x05\ +\xf5\x13\x13\x13\xb8\x08\x07\x07\x66\x01\x01\x01\x49\x00\x00\x00\ +\x3f\x00\x00\x00\x38\x00\x00\x00\x31\x00\x00\x00\x2a\x00\x00\x00\ +\x23\x00\x00\x00\x1c\x00\x00\x00\x16\x00\x00\x00\x11\x00\x00\x00\ +\x0d\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x07\x00\x00\x00\x0a\x00\x00\x00\x0e\x09\x06\x09\x1e\x34\x30\x32\ +\x60\x8b\x89\x89\xcb\xd1\xd0\xd0\xfc\xe7\xe6\xe6\xff\xe9\xe9\xe9\ +\xff\xec\xec\xec\xff\xf0\xef\xef\xff\xf3\xf3\xf3\xff\xf7\xf7\xf7\ +\xff\xfa\xf9\xf9\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfd\xfd\xfd\xff\xa3\xa3\xa3\xff\x18\x18\x18\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfe\x0d\x0c\x0c\xdf\x1e\x1c\x1d\x8d\x04\x02\x02\x53\x00\x00\x00\ +\x43\x00\x00\x00\x3b\x00\x00\x00\x34\x00\x00\x00\x2d\x00\x00\x00\ +\x26\x00\x00\x00\x1f\x00\x00\x00\x19\x00\x00\x00\x13\x00\x00\x00\ +\x0e\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x08\x00\x00\x00\x0b\x01\x00\x00\x12\x13\x0f\x11\x31\x5a\x57\x59\ +\x90\xae\xae\xae\xec\xe1\xe1\xe1\xff\xe9\xe8\xe8\xff\xeb\xeb\xeb\ +\xff\xef\xee\xef\xff\xf2\xf1\xf1\xff\xf5\xf5\xf5\xff\xf9\xf8\xf8\ +\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xf8\xf8\xf8\xff\xf2\xf3\xf3\ +\xff\xf4\xf4\xf4\xff\xfb\xfb\xfb\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfe\xfe\xfe\xff\xc8\xc8\xc8\xff\x37\x37\x37\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x07\x06\x07\xf4\x14\x12\x13\xb2\x09\x07\x07\x64\x00\x00\x00\ +\x47\x00\x00\x00\x3e\x00\x00\x00\x37\x00\x00\x00\x30\x00\x00\x00\ +\x28\x00\x00\x00\x21\x00\x00\x00\x1b\x00\x00\x00\x15\x00\x00\x00\ +\x10\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x09\x00\x00\x00\x0d\x07\x04\x04\x19\x2f\x2a\x2c\x50\x83\x7f\x81\ +\xbd\xcd\xcb\xcc\xfc\xe9\xe8\xe8\xff\xeb\xeb\xeb\xff\xee\xed\xee\ +\xff\xf1\xf0\xf0\xff\xf3\xf3\xf3\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xf6\xf6\xf6\xff\xd9\xda\xda\xff\xa6\xa6\xa7\xff\x80\x81\x81\ +\xff\x8c\x8d\x8d\xff\xce\xcf\xcf\xff\xf9\xf9\xf9\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xfc\xfc\xff\xf8\xf8\xf8\ +\xff\xf5\xf5\xf6\xff\xf5\xf5\xf5\xff\xf6\xf6\xf6\xff\xf8\xf8\xf8\ +\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xf6\xf6\xf6\xff\xf2\xf2\xf2\ +\xff\xf9\xf9\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xfb\xfb\xfb\xff\xf7\xf7\xf7\ +\xff\xf3\xf3\xf3\xff\xf0\xf0\xf0\xff\xf1\xf1\xf1\xff\xf5\xf5\xf5\ +\xff\xfb\xfb\xfb\xff\xdf\xdf\xdf\xff\x54\x54\x54\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfc\x0e\x0c\x0d\xd4\x19\x16\x17\x81\x03\x01\x01\ +\x4e\x00\x00\x00\x40\x00\x00\x00\x3a\x00\x00\x00\x32\x00\x00\x00\ +\x2b\x00\x00\x00\x24\x00\x00\x00\x1d\x00\x00\x00\x17\x00\x00\x00\ +\x11\x00\x00\x00\x0d\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x00\ +\x0a\x01\x01\x01\x10\x0d\x0b\x0b\x26\x39\x36\x37\x79\x8b\x89\x8a\ +\xe2\xd6\xd5\xd5\xff\xe9\xe9\xe9\xff\xec\xec\xec\xff\xf0\xef\xef\ +\xff\xf2\xf2\xf2\xff\xf5\xf5\xf5\xff\xf9\xf8\xf8\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xe6\xe6\xe6\ +\xff\xab\xab\xab\xff\x5a\x5a\x5a\xff\x22\x22\x22\xff\x0f\x0f\x0f\ +\xff\x18\x18\x19\xff\x71\x72\x72\xff\xe2\xe2\xe2\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfd\xfd\ +\xff\xf0\xf0\xf0\xff\xdc\xdc\xdc\xff\xc9\xc9\xc9\xff\xb3\xb3\xb4\ +\xff\xa4\xa5\xa6\xff\xa1\xa2\xa2\xff\xa7\xa8\xa9\xff\xb3\xb3\xb3\ +\xff\xc0\xc0\xc0\xff\xcb\xcb\xcb\xff\xd7\xd7\xd7\xff\xdc\xdd\xdd\ +\xff\xdf\xe0\xe0\xff\xe1\xe1\xe1\xff\xe0\xe1\xe1\xff\xdf\xdf\xdf\ +\xff\xdc\xdc\xdc\xff\xcd\xcd\xce\xff\xa8\xa8\xa9\xff\x94\x95\x95\ +\xff\xbb\xbb\xbc\xff\xdb\xdc\xdd\xff\xde\xde\xde\xff\xdd\xdd\xdd\ +\xff\xd9\xd9\xd9\xff\xcf\xcf\xcf\xff\xbf\xbe\xbf\xff\xab\xab\xab\ +\xff\x97\x97\x97\xff\x8d\x8d\x8d\xff\x8f\x8f\x8f\xff\xa1\xa2\xa2\ +\xff\xc2\xc2\xc2\xff\xb2\xb4\xb2\xff\x44\x44\x44\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x08\x08\x08\xed\x12\x10\x10\xa0\x06\x05\x05\ +\x59\x00\x00\x00\x43\x00\x00\x00\x3c\x00\x00\x00\x35\x00\x00\x00\ +\x2d\x00\x00\x00\x26\x00\x00\x00\x1f\x00\x00\x00\x19\x00\x00\x00\ +\x13\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x08\x00\x00\x00\ +\x0b\x04\x04\x04\x13\x1b\x19\x19\x3c\x26\x24\x24\xa3\x48\x48\x47\ +\xf7\xa3\xa3\xa3\xff\xe2\xe1\xe1\xff\xee\xee\xee\xff\xf1\xf0\xf1\ +\xff\xf4\xf4\xf4\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xdd\xdd\xdd\xff\x81\x81\x82\ +\xff\x2d\x2e\x2e\xff\x08\x08\x08\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x01\x01\xff\x49\x4a\x4a\xff\xd1\xd1\xd1\xff\xfd\xfd\xfd\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf8\xf9\xf9\xff\xd0\xd0\xd0\ +\xff\x94\x94\x94\xff\x5f\x5f\x5f\xff\x3f\x40\x3f\xff\x2b\x2c\x2c\ +\xff\x23\x23\x24\xff\x21\x22\x23\xff\x24\x24\x26\xff\x2b\x2b\x2b\ +\xff\x34\x34\x34\xff\x40\x40\x40\xff\x4f\x4f\x4f\xff\x5a\x5b\x5b\ +\xff\x61\x63\x63\xff\x65\x66\x66\xff\x65\x65\x65\xff\x61\x61\x61\ +\xff\x5b\x5b\x5b\xff\x48\x48\x48\xff\x26\x26\x27\xff\x1a\x1a\x1a\ +\xff\x37\x37\x37\xff\x59\x5b\x5a\xff\x5e\x5e\x5e\xff\x5c\x5c\x5c\ +\xff\x54\x54\x54\xff\x43\x44\x44\xff\x34\x34\x34\xff\x26\x27\x27\ +\xff\x1a\x1b\x1b\xff\x16\x16\x16\xff\x16\x16\x16\xff\x20\x21\x21\ +\xff\x36\x37\x37\xff\x35\x37\x35\xff\x13\x13\x13\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfa\x0c\x0b\x0b\xc0\x0f\x0e\x0e\ +\x6d\x01\x01\x01\x49\x00\x00\x00\x3e\x00\x00\x00\x37\x00\x00\x00\ +\x30\x00\x00\x00\x29\x00\x00\x00\x21\x00\x00\x00\x1b\x00\x00\x00\ +\x15\x00\x00\x00\x0f\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\ +\x0c\x06\x05\x06\x18\x20\x1d\x1e\x5a\x18\x17\x17\xcb\x0c\x0d\x0c\ +\xfe\x60\x60\x60\xff\xd0\xcf\xd0\xff\xf1\xf0\xf0\xff\xf3\xf3\xf3\ +\xff\xf6\xf6\xf6\xff\xf8\xf8\xf8\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xdb\xdb\xdb\xff\x72\x72\x73\xff\x19\x19\x19\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x08\x08\x08\ +\xff\x2b\x2b\x2b\xff\x8a\x8b\x8b\xff\xe8\xe8\xe8\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfa\xfa\xfa\xff\xb9\xba\xba\xff\x56\x57\x56\ +\xff\x1e\x1e\x1e\xff\x0a\x0a\x0a\xff\x02\x02\x02\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xff\x06\x06\x06\xff\x09\x09\x09\ +\xff\x0a\x0b\x0b\xff\x0b\x0c\x0c\xff\x0b\x0b\x0b\xff\x0a\x0a\x0a\ +\xff\x09\x09\x09\xff\x05\x05\x05\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x02\x02\x02\xff\x09\x09\x09\xff\x0a\x0a\x0a\xff\x09\x09\x09\ +\xff\x07\x07\x07\xff\x03\x03\x03\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x0c\x0a\x0b\xdf\x11\x0f\x0f\ +\x88\x02\x02\x02\x4f\x00\x00\x00\x40\x00\x00\x00\x39\x00\x00\x00\ +\x32\x00\x00\x00\x2a\x00\x00\x00\x23\x00\x00\x00\x1c\x00\x00\x00\ +\x16\x00\x00\x00\x11\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x09\x01\x00\x01\ +\x0e\x0e\x09\x0d\x26\x16\x14\x14\x7b\x0c\x0b\x0b\xe9\x06\x06\x06\ +\xff\x58\x58\x59\xff\xcf\xce\xcf\xff\xf2\xf1\xf1\xff\xf4\xf4\xf4\ +\xff\xf7\xf7\xf7\xff\xfa\xf9\xf9\xff\xfc\xfc\xfc\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xe0\xe0\xe0\xff\x6e\x6e\x6e\xff\x13\x14\x14\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x0f\x0f\x0f\xff\x4b\x4b\x4b\ +\xff\xa1\xa1\xa1\xff\xe3\xe4\xe4\xff\xfc\xfc\xfc\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xc7\xc7\xc7\xff\x46\x46\x47\xff\x0a\x0a\x0a\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x03\xff\x01\x01\x02\xff\x01\x01\x06\xff\x01\x01\x10\ +\xff\x01\x01\x12\xff\x01\x01\x11\xff\x01\x01\x11\xff\x01\x01\x11\ +\xff\x01\x01\x11\xff\x01\x01\x11\xff\x01\x01\x11\xff\x01\x01\x11\ +\xff\x01\x01\x0d\xff\x01\x01\x02\xff\x01\x01\x02\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x03\x02\x03\xf1\x0c\x09\x0a\ +\xa3\x08\x06\x07\x5b\x00\x00\x00\x43\x00\x00\x00\x3b\x00\x00\x00\ +\x34\x00\x00\x00\x2d\x00\x00\x00\x25\x00\x00\x00\x1e\x00\x00\x00\ +\x18\x00\x00\x00\x12\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x00\x0a\x03\x01\x03\ +\x11\x1c\x17\x1a\x39\x18\x17\x17\xa3\x01\x01\x01\xfa\x10\x11\x11\ +\xff\x76\x76\x76\xff\xdd\xdd\xdd\xff\xf3\xf3\xf3\xff\xf5\xf5\xf5\ +\xff\xf8\xf8\xf8\xff\xfb\xfa\xfa\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xfd\xfc\xff\xd6\xd7\xd7\ +\xff\x75\x75\x75\xff\x15\x15\x15\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x0e\x0e\x0e\xff\x56\x56\x56\xff\xbd\xbd\xbd\ +\xff\xf2\xf2\xf2\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xd2\xd2\xd2\xff\x58\x59\x59\xff\x0a\x0a\x0a\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x01\x01\x09\xff\x01\x01\x10\ +\xff\x01\x01\x16\xff\x01\x01\x24\xff\x01\x01\x29\xff\x01\x01\x37\ +\xff\x01\x01\x4d\xff\x01\x01\x48\xff\x01\x01\x4f\xff\x01\x01\x62\ +\xff\x01\x01\x6d\xff\x01\x01\x71\xff\x01\x01\x70\xff\x01\x01\x70\ +\xff\x01\x01\x70\xff\x01\x01\x70\xff\x01\x01\x71\xff\x01\x01\x6f\ +\xff\x01\x01\x5d\xff\x01\x01\x49\xff\x01\x01\x42\xff\x01\x01\x2e\ +\xff\x01\x01\x1f\xff\x01\x01\x12\xff\x01\x01\x06\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfc\x10\x0d\x0e\ +\xc2\x10\x0e\x0f\x6d\x01\x00\x01\x48\x00\x00\x00\x3d\x00\x00\x00\ +\x36\x00\x00\x00\x2e\x00\x00\x00\x27\x00\x00\x00\x20\x00\x00\x00\ +\x19\x00\x00\x00\x14\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\x0b\x05\x03\x05\ +\x15\x1a\x16\x1a\x50\x17\x16\x16\xca\x00\x00\x00\xff\x0c\x0c\x0c\ +\xff\x58\x58\x58\xff\xa4\xa5\xa5\xff\xb4\xb4\xb4\xff\xb5\xb5\xb5\ +\xff\xb6\xb7\xb7\xff\xb8\xb8\xb8\xff\xb9\xba\xba\xff\xba\xba\xba\ +\xff\xba\xbb\xbb\xff\xba\xbb\xbb\xff\xba\xbb\xbb\xff\xba\xbb\xbb\ +\xff\xbb\xbc\xbc\xff\xbb\xbb\xbb\xff\xa7\xa8\xa7\xff\x61\x62\x61\ +\xff\x18\x18\x18\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x04\x04\x04\xff\x37\x37\x37\xff\xb1\xb1\xb1\xff\xf6\xf6\xf6\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd4\xd4\xd4\ +\xff\x5e\x5f\x5e\xff\x0f\x0f\x0f\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x0d\xff\x01\x01\x1c\ +\xff\x01\x01\x2e\xff\x01\x01\x3e\xff\x01\x01\x56\xff\x01\x01\x6d\ +\xff\x01\x01\x76\xff\x01\x01\x83\xff\x01\x01\x91\xff\x00\x00\xa1\ +\xff\x00\x00\xb1\xff\x00\x00\xae\xff\x00\x00\xb0\xff\x00\x00\xb7\ +\xff\x00\x00\xbf\xff\x00\x00\xc4\xff\x00\x00\xc3\xff\x00\x00\xc3\ +\xff\x00\x00\xc3\xff\x00\x00\xc3\xff\x00\x00\xc4\xff\x00\x00\xc2\ +\xff\x00\x00\xb6\xff\x00\x00\xae\xff\x01\x01\xa9\xff\x01\x01\x97\ +\xff\x01\x01\x81\xff\x01\x01\x6e\xff\x02\x02\x54\xff\x01\x01\x38\ +\xff\x01\x01\x1d\xff\x00\x00\x05\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x0e\x0d\x0d\ +\xdd\x10\x0e\x10\x81\x02\x01\x02\x4b\x00\x00\x00\x3f\x00\x00\x00\ +\x38\x00\x00\x00\x30\x00\x00\x00\x29\x00\x00\x00\x22\x00\x00\x00\ +\x1b\x00\x00\x00\x15\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x08\x00\x00\x00\x0b\x07\x05\x06\ +\x1c\x14\x12\x13\x68\x0f\x0e\x0e\xe7\x00\x00\x00\xff\x02\x02\x02\ +\xff\x16\x16\x16\xff\x2d\x2e\x2d\xff\x32\x33\x33\xff\x33\x33\x33\ +\xff\x33\x34\x34\xff\x33\x34\x34\xff\x34\x34\x34\xff\x34\x35\x35\ +\xff\x34\x35\x35\xff\x34\x35\x35\xff\x34\x35\x35\xff\x34\x35\x35\ +\xff\x34\x35\x35\xff\x34\x35\x34\xff\x29\x29\x29\xff\x0f\x0f\x0f\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x18\x18\x19\xff\x86\x86\x86\xff\xed\xed\xed\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd1\xd2\xd1\xff\x60\x60\x60\ +\xff\x10\x10\x10\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x09\xff\x01\x01\x20\ +\xff\x02\x02\x3c\xff\x01\x01\x5a\xff\x01\x01\x78\xff\x01\x01\x84\ +\xff\x01\x01\x99\xff\x01\x01\xa2\xff\x00\x00\xb1\xff\x00\x00\xc0\ +\xff\x00\x00\xc2\xff\x00\x00\xc2\xff\x00\x00\xc8\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x00\x00\xcd\ +\xff\x00\x00\xcd\xff\x00\x00\xcd\xff\x00\x00\xcd\xff\x00\x00\xcc\ +\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xc9\ +\xff\x00\x00\xc4\xff\x00\x00\xbf\xff\x00\x00\xb5\xff\x00\x00\xa4\ +\xff\x01\x01\x84\xff\x01\x01\x52\xff\x01\x01\x20\xff\x00\x00\x03\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x07\x07\x07\ +\xef\x0b\x09\x0a\x94\x03\x02\x02\x53\x00\x00\x00\x42\x00\x00\x00\ +\x3a\x00\x00\x00\x32\x00\x00\x00\x2a\x00\x00\x00\x23\x00\x00\x00\ +\x1c\x00\x00\x00\x16\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x08\x01\x01\x01\x0d\x13\x12\x12\ +\x28\x1a\x18\x18\x8b\x09\x08\x08\xf7\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x03\x03\x03\xff\x03\x03\x03\xff\x03\x03\x03\ +\xff\x03\x03\x03\xff\x03\x03\x03\xff\x03\x03\x03\xff\x03\x03\x03\ +\xff\x03\x03\x03\xff\x03\x03\x03\xff\x03\x03\x03\xff\x03\x03\x03\ +\xff\x03\x03\x03\xff\x03\x03\x03\xff\x02\x02\x02\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x0c\x0c\x0c\ +\xff\x65\x66\x65\xff\xda\xdb\xdb\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xd5\xd5\xd5\xff\x61\x61\x61\xff\x11\x11\x11\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x05\ +\xff\x01\x01\x22\xff\x01\x01\x4d\xff\x01\x01\x73\xff\x01\x01\x96\ +\xff\x01\x01\xaa\xff\x00\x00\xba\xff\x00\x00\xc7\xff\x00\x00\xc7\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xcd\xff\x00\x00\xcc\ +\xff\x00\x00\xc5\xff\x00\x00\xb6\xff\x01\x01\x92\xff\x01\x01\x55\ +\xff\x01\x01\x19\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfb\x12\x10\x11\xb0\x0c\x0b\x0b\x60\x00\x00\x00\x43\x00\x00\x00\ +\x3b\x00\x00\x00\x34\x00\x00\x00\x2c\x00\x00\x00\x24\x00\x00\x00\ +\x1d\x00\x00\x00\x17\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x09\x02\x01\x02\x0f\x18\x13\x17\ +\x38\x1b\x19\x1b\xae\x03\x03\x03\xfd\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x04\x04\x04\xff\x42\x42\x42\ +\xff\xc5\xc6\xc5\xff\xfd\xfd\xfd\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xfc\xfc\ +\xff\xf0\xf1\xf1\xff\xf9\xf9\xf9\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xda\xdb\xdb\xff\x6c\x6c\x6c\xff\x13\x13\x13\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\ +\xff\x01\x01\x0f\xff\x01\x01\x27\xff\x01\x01\x4a\xff\x01\x01\x78\ +\xff\x00\x00\xa6\xff\x00\x00\xbc\xff\x00\x00\xc6\xff\x00\x00\xcc\ +\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcd\xff\x00\x00\xcb\xff\x00\x00\xc0\ +\xff\x01\x01\x8c\xff\x02\x02\x3b\xff\x01\x01\x13\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x17\x17\x17\xcb\x12\x10\x11\x6f\x01\x00\x01\x46\x00\x00\x00\ +\x3c\x00\x00\x00\x35\x00\x00\x00\x2d\x00\x00\x00\x26\x00\x00\x00\ +\x1f\x00\x00\x00\x18\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x07\x00\x00\x00\x0a\x03\x02\x02\x12\x1e\x1c\x1c\ +\x47\x25\x25\x25\xce\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x0f\x10\x10\xff\x83\x84\x84\ +\xff\xf7\xf7\xf7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf1\xf2\xf2\xff\x97\x97\x97\ +\xff\x59\x5b\x5b\xff\x80\x81\x81\xff\xbb\xbc\xbc\xff\xb3\xb3\xb3\ +\xff\x62\x62\x62\xff\x16\x17\x17\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x02\xff\x00\x00\x08\xff\x01\x01\x1e\xff\x02\x02\x4b\ +\xff\x01\x01\x84\xff\x01\x01\xa6\xff\x00\x00\xbd\xff\x00\x00\xc9\ +\xff\x00\x00\xce\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xce\ +\xff\x00\x00\xca\xff\x01\x01\xae\xff\x02\x02\x78\xff\x01\x01\x2c\ +\xff\x00\x00\x05\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x10\x0f\x11\xe0\x0f\x0c\x0e\x7c\x01\x01\x01\x48\x00\x00\x00\ +\x3e\x00\x00\x00\x36\x00\x00\x00\x2e\x00\x00\x00\x27\x00\x00\x00\ +\x20\x00\x00\x00\x19\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x07\x00\x00\x00\x0a\x05\x04\x04\x16\x1b\x18\x19\ +\x5c\x19\x19\x19\xe6\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x27\x28\x27\xff\xb5\xb5\xb5\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfa\xfa\xfa\xff\xae\xaf\xae\xff\x27\x27\x27\ +\xff\x05\x05\x05\xff\x0d\x0f\x0f\xff\x1e\x1f\x1f\xff\x1b\x1c\x1c\ +\xff\x09\x09\x09\xff\x01\x01\x03\xff\x00\x00\x08\xff\x01\x01\x14\ +\xff\x01\x01\x36\xff\x01\x01\x7e\xff\x01\x01\xa2\xff\x01\x01\xb2\ +\xff\x00\x00\xc8\xff\x00\x00\xcd\xff\x00\x00\xcd\xff\x00\x00\xcc\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcc\xff\x00\x00\xce\xff\x00\x00\xc8\xff\x01\x01\xa4\ +\xff\x01\x01\x62\xff\x01\x01\x20\xff\x00\x00\x04\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x04\x04\x04\xef\x09\x07\x08\x8a\x02\x01\x01\x4c\x00\x00\x00\ +\x3f\x00\x00\x00\x37\x00\x00\x00\x30\x00\x00\x00\x28\x00\x00\x00\ +\x20\x00\x00\x00\x1a\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x0a\x09\x09\x09\x1d\x1a\x19\x1a\ +\x76\x0e\x0e\x0e\xf2\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x39\x39\x39\xff\xce\xce\xce\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfe\xfe\xfe\xff\xd2\xd2\xd2\xff\x46\x47\x46\xff\x02\x02\x02\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\ +\xff\x00\x00\x0d\xff\x01\x01\x28\xff\x01\x01\x57\xff\x01\x01\x86\ +\xff\x00\x00\xad\xff\x00\x00\xc9\xff\x00\x00\xcc\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xca\ +\xff\x00\x00\xbb\xff\x01\x01\x84\xff\x01\x01\x35\xff\x00\x00\x09\ +\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfa\x0f\x0c\x0d\x9c\x06\x05\x05\x54\x00\x00\x00\ +\x40\x00\x00\x00\x38\x00\x00\x00\x31\x00\x00\x00\x29\x00\x00\x00\ +\x22\x00\x00\x00\x1b\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x0b\x14\x14\x14\x24\x28\x27\x27\ +\x8f\x04\x05\x05\xfb\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xff\x42\x42\x42\xff\xd7\xd8\xd8\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xe4\xe4\xe4\xff\x63\x63\x63\xff\x08\x08\x08\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x04\xff\x01\x01\x11\xff\x01\x01\x2b\ +\xff\x01\x01\x5f\xff\x00\x00\x9b\xff\x00\x00\xbf\xff\x00\x00\xca\ +\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xce\xff\x00\x00\xcb\xff\x01\x01\x98\xff\x01\x01\x42\ +\xff\x00\x00\x0e\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x19\x17\x18\xb3\x0d\x0b\x0c\x5d\x00\x00\x00\ +\x41\x00\x00\x00\x39\x00\x00\x00\x31\x00\x00\x00\x2a\x00\x00\x00\ +\x22\x00\x00\x00\x1b\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x08\x00\x00\x00\x0b\x17\x15\x17\x2c\x2e\x2d\x2d\ +\xaa\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x33\x33\x33\xff\xc7\xc7\xc7\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe3\xe3\xe3\ +\xff\x7e\x7e\x7e\xff\x16\x16\x16\xff\x00\x00\x01\xff\x00\x00\x08\ +\xff\x01\x01\x19\xff\x01\x01\x34\xff\x01\x01\x65\xff\x01\x01\x98\ +\xff\x00\x00\xbd\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xce\xff\x00\x00\xc4\xff\x01\x01\x92\ +\xff\x01\x01\x42\xff\x00\x00\x0e\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x1c\x1b\x1b\xc6\x0f\x0c\x0d\x65\x00\x00\x00\ +\x42\x00\x00\x00\x3a\x00\x00\x00\x32\x00\x00\x00\x2a\x00\x00\x00\ +\x23\x00\x00\x00\x1c\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x08\x00\x00\x00\x0b\x16\x13\x15\x34\x27\x26\x27\ +\xc0\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x18\x18\x18\xff\x8d\x8d\x8d\ +\xff\xf0\xf0\xf0\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe0\xe0\xe0\xff\x7e\x7f\x7f\ +\xff\x1d\x1e\x1e\xff\x02\x02\x02\xff\x01\x01\x0d\xff\x01\x01\x3c\ +\xff\x01\x01\x73\xff\x01\x01\x9c\xff\x00\x00\xbd\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xc3\ +\xff\x02\x02\x94\xff\x01\x01\x3e\xff\x00\x00\x08\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x18\x17\x17\xd4\x0e\x0c\x0d\x6d\x00\x00\x00\ +\x43\x00\x00\x00\x3a\x00\x00\x00\x33\x00\x00\x00\x2b\x00\x00\x00\ +\x23\x00\x00\x00\x1c\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x08\x00\x00\x00\x0b\x16\x13\x13\x39\x23\x21\x21\ +\xd0\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x05\x05\x05\xff\x33\x33\x33\ +\xff\x8c\x8d\x8d\xff\xd2\xd2\xd2\xff\xf3\xf3\xf3\xff\xf9\xf9\xf9\ +\xff\xe9\xe9\xe9\xff\xbe\xbe\xbe\xff\x6d\x6e\x6c\xff\x1e\x1e\x1e\ +\xff\x03\x03\x0a\xff\x02\x02\x30\xff\x01\x01\x63\xff\x00\x00\x9d\ +\xff\x00\x00\xbf\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x01\x01\xc9\xff\x01\x01\x91\xff\x00\x00\x23\xff\x00\x00\x02\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x12\x12\x11\xe0\x0d\x0b\x0b\x72\x01\x00\x00\ +\x44\x00\x00\x00\x3b\x00\x00\x00\x33\x00\x00\x00\x2b\x00\x00\x00\ +\x24\x00\x00\x00\x1d\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x0c\x14\x10\x12\x3e\x1c\x1c\x1c\ +\xdc\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x04\x05\x05\ +\xff\x1d\x1d\x1d\xff\x4d\x4e\x4d\xff\x78\x78\x78\xff\x85\x85\x85\ +\xff\x69\x69\x69\xff\x3a\x3a\x39\xff\x11\x11\x15\xff\x03\x03\x2a\ +\xff\x02\x02\x61\xff\x01\x01\x9c\xff\x01\x01\xbe\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xce\xff\x00\x00\xcb\xff\x01\x01\x67\xff\x00\x00\x0e\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x0c\x0c\x0c\xe9\x0a\x08\x09\x77\x00\x00\x00\ +\x44\x00\x00\x00\x3b\x00\x00\x00\x34\x00\x00\x00\x2c\x00\x00\x00\ +\x24\x00\x00\x00\x1d\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x0c\x12\x0f\x10\x42\x11\x11\x11\ +\xe6\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x06\x06\x06\xff\x10\x10\x10\xff\x14\x14\x14\ +\xff\x0b\x0b\x0b\xff\x04\x04\x14\xff\x01\x01\x43\xff\x01\x01\x89\ +\xff\x01\x01\xbb\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xd4\xff\x01\x01\xa9\xff\x00\x00\x24\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x06\x06\x07\xf1\x09\x07\x07\x7b\x01\x00\x00\ +\x44\x00\x00\x00\x3b\x00\x00\x00\x34\x00\x00\x00\x2c\x00\x00\x00\ +\x24\x00\x00\x00\x1d\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x0c\x11\x0e\x0e\x45\x0e\x0e\x0e\ +\xef\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0a\ +\xff\x01\x01\x34\xff\x01\x01\x72\xff\x00\x00\xa8\xff\x00\x00\xc5\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xd0\xff\x01\x01\xba\xff\x01\x01\x47\ +\xff\x00\x00\x04\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xf6\x07\x05\x05\x7e\x01\x00\x00\ +\x44\x00\x00\x00\x3b\x00\x00\x00\x34\x00\x00\x00\x2c\x00\x00\x00\ +\x24\x00\x00\x00\x1d\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x0c\x0d\x0a\x0a\x48\x03\x03\x03\ +\xf3\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x13\xff\x00\x00\x53\ +\xff\x01\x01\x9e\xff\x00\x00\xc2\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x02\x02\x73\ +\xff\x00\x00\x0f\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xf9\x07\x05\x05\x7f\x01\x00\x00\ +\x45\x00\x00\x00\x3b\x00\x00\x00\x34\x00\x00\x00\x2c\x00\x00\x00\ +\x24\x00\x00\x00\x1d\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x0c\x0c\x0a\x0a\x48\x00\x00\x00\ +\xf8\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x03\xff\x00\x00\x21\xff\x01\x01\x72\xff\x00\x00\xbb\ +\xff\x00\x00\xcd\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xd1\xff\x01\x01\x9f\ +\xff\x00\x00\x21\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x06\x04\x04\x80\x01\x00\x00\ +\x45\x00\x00\x00\x3b\x00\x00\x00\x34\x00\x00\x00\x2c\x00\x00\x00\ +\x24\x00\x00\x00\x1d\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x08\x00\x00\x00\x0b\x0c\x0a\x0a\x48\x00\x00\x00\ +\xfa\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x0c\ +\xff\x01\x01\x3f\xff\x02\x02\x92\xff\x01\x01\xc7\xff\x00\x00\xcd\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xce\xff\x02\x02\xab\ +\xff\x01\x01\x36\xff\x00\x00\x03\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x06\x04\x04\x80\x01\x00\x00\ +\x45\x00\x00\x00\x3b\x00\x00\x00\x33\x00\x00\x00\x2b\x00\x00\x00\ +\x24\x00\x00\x00\x1d\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x08\x00\x00\x00\x0b\x0d\x0a\x0a\x48\x00\x00\x00\ +\xf9\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x03\xff\x00\x00\x18\xff\x02\x02\x64\ +\xff\x01\x01\xb7\xff\x00\x00\xce\xff\x00\x00\xcc\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xd0\xff\x02\x02\xb0\ +\xff\x02\x02\x49\xff\x00\x00\x06\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x06\x04\x04\x7f\x01\x00\x00\ +\x45\x00\x00\x00\x3a\x00\x00\x00\x33\x00\x00\x00\x2b\x00\x00\x00\ +\x23\x00\x00\x00\x1c\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x08\x00\x00\x00\x0b\x0d\x09\x09\x45\x00\x00\x00\ +\xf7\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x04\xff\x01\x01\x27\xff\x01\x01\x76\xff\x01\x01\xba\ +\xff\x00\x00\xcf\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xd1\xff\x01\x01\xc0\ +\xff\x02\x02\x4c\xff\x00\x00\x06\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfc\x06\x05\x05\x7f\x01\x00\x00\ +\x43\x00\x00\x00\x3a\x00\x00\x00\x32\x00\x00\x00\x2a\x00\x00\x00\ +\x23\x00\x00\x00\x1c\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x0b\x0e\x0b\x0c\x43\x05\x05\x05\ +\xf2\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x09\ +\xff\x01\x01\x2f\xff\x01\x01\x8f\xff\x00\x00\xcc\xff\x00\x00\xcd\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc5\xff\x00\x00\xbe\xff\x01\x01\xb4\xff\x00\x00\xb0\ +\xff\x00\x00\xb0\xff\x00\x00\xbc\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xd2\xff\x01\x01\xbf\ +\xff\x02\x02\x49\xff\x00\x00\x05\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xf9\x06\x05\x05\x7b\x01\x00\x00\ +\x43\x00\x00\x00\x39\x00\x00\x00\x32\x00\x00\x00\x2a\x00\x00\x00\ +\x22\x00\x00\x00\x1b\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x0a\x10\x0c\x0e\x3f\x0e\x0e\x0f\ +\xeb\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x02\xff\x00\x00\x11\xff\x01\x01\x41\ +\xff\x02\x02\x95\xff\x01\x01\xce\xff\x00\x00\xcf\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xcb\ +\xff\x00\x00\xc5\xff\x00\x00\xbb\xff\x01\x01\xa7\xff\x01\x01\x9c\ +\xff\x01\x01\x80\xff\x01\x01\x68\xff\x01\x01\x5c\xff\x01\x01\x48\ +\xff\x01\x01\x4a\xff\x01\x01\x7a\xff\x00\x00\xbc\xff\x00\x00\xcc\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xd1\xff\x01\x01\xbc\ +\xff\x02\x02\x3a\xff\x00\x00\x03\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xf4\x06\x04\x06\x77\x00\x00\x00\ +\x42\x00\x00\x00\x38\x00\x00\x00\x31\x00\x00\x00\x29\x00\x00\x00\ +\x22\x00\x00\x00\x1b\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x07\x00\x00\x00\x0a\x11\x0f\x10\x39\x13\x13\x15\ +\xe2\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x02\xff\x01\x01\x15\xff\x02\x02\x51\xff\x01\x01\x9f\ +\xff\x01\x01\xcc\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xc3\xff\x01\x01\xaa\ +\xff\x01\x01\x89\xff\x01\x01\x67\xff\x01\x01\x47\xff\x01\x01\x36\ +\xff\x01\x01\x1e\xff\x01\x01\x0c\xff\x00\x00\x0d\xff\x00\x00\x03\ +\xff\x00\x00\x10\xff\x01\x01\x5a\xff\x01\x01\xb6\xff\x00\x00\xcd\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xd0\xff\x02\x02\xae\ +\xff\x01\x01\x2d\xff\x00\x00\x02\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x09\x09\x09\xed\x09\x07\x07\x72\x01\x00\x00\ +\x41\x00\x00\x00\x37\x00\x00\x00\x30\x00\x00\x00\x28\x00\x00\x00\ +\x21\x00\x00\x00\x1a\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x07\x00\x00\x00\x0a\x14\x11\x14\x35\x1e\x1e\x1e\ +\xd6\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\ +\xff\x00\x00\x11\xff\x01\x01\x52\xff\x02\x02\xa2\xff\x00\x00\xca\ +\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcd\xff\x00\x00\xca\ +\xff\x01\x01\xb5\xff\x01\x01\x92\xff\x01\x01\x6f\xff\x01\x01\x45\ +\xff\x01\x01\x26\xff\x01\x01\x12\xff\x00\x00\x05\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x09\ +\xff\x00\x00\x3e\xff\x01\x01\x9c\xff\x00\x00\xc8\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xcd\xff\x02\x02\x8f\ +\xff\x00\x00\x1a\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x10\x10\x0f\xe5\x0b\x09\x0a\x6d\x00\x00\x00\ +\x40\x00\x00\x00\x36\x00\x00\x00\x2f\x00\x00\x00\x27\x00\x00\x00\ +\x20\x00\x00\x00\x19\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x09\x17\x15\x17\x2d\x28\x27\x27\ +\xc7\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\xff\x00\x00\x16\ +\xff\x01\x01\x54\xff\x01\x01\xa5\xff\x01\x01\xc9\xff\x00\x00\xcc\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xc0\xff\x01\x01\xac\xff\x01\x01\x85\ +\xff\x01\x01\x49\xff\x01\x01\x26\xff\x00\x00\x13\xff\x00\x00\x06\ +\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x05\xff\x01\x01\x37\ +\xff\x01\x01\x99\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xd2\xff\x01\x01\xb7\xff\x01\x01\x47\ +\xff\x00\x00\x05\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x18\x18\x18\xd9\x0e\x0c\x0c\x66\x00\x00\x00\ +\x3e\x00\x00\x00\x35\x00\x00\x00\x2d\x00\x00\x00\x26\x00\x00\x00\ +\x1f\x00\x00\x00\x18\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x08\x1e\x1e\x1e\x25\x35\x35\x35\ +\xb2\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x02\xff\x00\x00\x15\xff\x01\x01\x57\ +\xff\x01\x01\xad\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcc\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x01\x01\xbc\ +\xff\x01\x01\x9b\xff\x01\x01\x63\xff\x00\x00\x32\xff\x00\x00\x1b\ +\xff\x00\x00\x06\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0e\xff\x02\x02\x6b\ +\xff\x01\x01\xc3\xff\x00\x00\xce\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\xc8\xff\x01\x01\xb7\xff\x01\x01\x67\xff\x00\x00\x11\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x1e\x1d\x1d\xcb\x10\x0e\x0f\x5e\x00\x00\x00\ +\x3c\x00\x00\x00\x34\x00\x00\x00\x2c\x00\x00\x00\x24\x00\x00\x00\ +\x1d\x00\x00\x00\x17\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x06\x00\x00\x00\x08\x1d\x1c\x1c\x1c\x39\x37\x38\ +\x96\x03\x03\x03\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x01\xff\x00\x00\x14\xff\x01\x01\x53\xff\x01\x01\xa2\ +\xff\x00\x00\xcb\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xce\ +\xff\x00\x00\xca\xff\x01\x01\xb1\xff\x01\x01\x8f\xff\x01\x01\x61\ +\xff\x00\x00\x2a\xff\x00\x00\x0e\xff\x00\x00\x02\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x10\xff\x02\x02\x72\ +\xff\x01\x01\xc1\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x01\x01\xb3\xff\x02\x02\x94\xff\x01\x01\xa8\ +\xff\x00\x00\xc8\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xce\xff\x00\x00\xc7\ +\xff\x01\x01\x9c\xff\x01\x01\x51\xff\x00\x00\x15\xff\x00\x00\x02\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x20\x1f\x20\xb9\x0e\x0e\x0e\x55\x00\x00\x00\ +\x3b\x00\x00\x00\x32\x00\x00\x00\x2a\x00\x00\x00\x23\x00\x00\x00\ +\x1c\x00\x00\x00\x16\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x07\x16\x15\x16\x16\x30\x2e\x30\ +\x77\x0a\x0b\x0b\xf9\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\ +\xff\x00\x00\x0f\xff\x01\x01\x50\xff\x01\x01\xa4\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcd\xff\x00\x00\xcb\xff\x00\x00\xb6\ +\xff\x01\x01\x7f\xff\x01\x01\x45\xff\x01\x01\x1d\xff\x00\x00\x0b\ +\xff\x00\x00\x02\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x13\xff\x02\x02\x75\ +\xff\x01\x01\xc3\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\xcc\xff\x01\x01\x9c\xff\x02\x02\x45\xff\x02\x02\x58\ +\xff\x01\x01\xb0\xff\x00\x00\xcd\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x01\x01\xaa\xff\x02\x02\x6d\ +\xff\x01\x01\x2c\xff\x00\x00\x0a\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x1b\x1a\x1b\xa1\x0c\x0b\x0c\x4b\x00\x00\x00\ +\x38\x00\x00\x00\x31\x00\x00\x00\x29\x00\x00\x00\x22\x00\x00\x00\ +\x1b\x00\x00\x00\x15\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x07\x0c\x0c\x0c\x0f\x24\x23\x24\ +\x5b\x19\x18\x19\xec\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x08\ +\xff\x00\x00\x43\xff\x02\x02\xa4\xff\x01\x01\xce\xff\x00\x00\xcd\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xce\xff\x00\x00\xc6\xff\x00\x00\x8d\xff\x01\x01\x3b\ +\xff\x00\x00\x0e\xff\x00\x00\x03\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x02\xff\x01\x01\x27\xff\x02\x02\x96\ +\xff\x00\x00\xcf\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xce\xff\x01\x01\xac\xff\x01\x01\x41\xff\x01\x01\x12\ +\xff\x01\x01\x67\xff\x00\x00\xc0\xff\x00\x00\xcd\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcd\xff\x00\x00\xce\ +\xff\x00\x00\xbf\xff\x00\x00\x80\xff\x01\x01\x2c\xff\x00\x00\x07\ +\xff\x00\x00\x02\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x02\x02\x02\xf6\x0b\x0a\x0b\x84\x04\x03\x04\x42\x00\x00\x00\ +\x36\x00\x00\x00\x2f\x00\x00\x00\x27\x00\x00\x00\x20\x00\x00\x00\ +\x19\x00\x00\x00\x14\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x06\x04\x06\x0b\x22\x20\x22\ +\x41\x21\x21\x21\xda\x02\x02\x02\xff\x02\x02\x02\xff\x02\x02\x02\ +\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x03\xff\x00\x00\x2b\ +\xff\x01\x01\x98\xff\x01\x01\xd3\xff\x00\x00\xcc\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcd\xff\x00\x00\xcb\xff\x00\x00\xbb\ +\xff\x01\x01\x9a\xff\x01\x01\x5f\xff\x00\x00\x19\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x07\xff\x02\x02\x51\xff\x01\x01\xb8\ +\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcf\xff\x00\x00\xc2\xff\x01\x01\x69\xff\x00\x00\x13\ +\xff\x01\x01\x2d\xff\x01\x01\x99\xff\x00\x00\xce\xff\x00\x00\xcd\ +\xff\x00\x00\xcd\xff\x00\x00\xc6\xff\x00\x00\xbc\xff\x01\x01\x95\ +\xff\x01\x01\x52\xff\x00\x00\x11\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x02\x02\x02\xff\x02\x02\x02\xff\x02\x02\x02\ +\xff\x11\x11\x10\xe6\x0d\x0c\x0d\x73\x01\x00\x01\x3f\x00\x00\x00\ +\x34\x00\x00\x00\x2d\x00\x00\x00\x26\x00\x00\x00\x1e\x00\x00\x00\ +\x18\x00\x00\x00\x12\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x01\x01\x01\x09\x27\x27\x27\ +\x2d\x2c\x2c\x2c\xb8\x05\x05\x05\xff\x04\x04\x04\xff\x03\x03\x03\ +\xff\x03\x03\x03\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x00\x00\x01\xff\x00\x00\x15\xff\x01\x01\x73\ +\xff\x01\x01\xc5\xff\x00\x00\xd0\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x00\x00\xc2\xff\x00\x00\x98\xff\x02\x02\x5e\ +\xff\x01\x01\x27\xff\x01\x01\x02\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x05\ +\xff\x00\x00\x0d\xff\x00\x00\x38\xff\x01\x01\x9e\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcd\xff\x00\x00\xc8\xff\x01\x01\x7f\xff\x00\x00\x1d\ +\xff\x01\x01\x0a\xff\x01\x01\x65\xff\x00\x00\xc2\xff\x00\x00\xc6\ +\xff\x00\x00\xb3\xff\x01\x01\x86\xff\x01\x01\x4f\xff\x01\x01\x1b\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x03\x03\x03\xff\x03\x03\x03\xff\x03\x03\x03\xff\x04\x04\x04\ +\xff\x18\x18\x18\xd2\x11\x11\x11\x66\x00\x00\x00\x3c\x00\x00\x00\ +\x32\x00\x00\x00\x2b\x00\x00\x00\x23\x00\x00\x00\x1d\x00\x00\x00\ +\x16\x00\x00\x00\x11\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x08\x20\x1f\x1f\ +\x1f\x26\x25\x25\x91\x09\x09\x09\xfc\x04\x04\x04\xff\x04\x04\x04\ +\xff\x04\x04\x04\xff\x03\x03\x03\xff\x02\x02\x02\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x04\xff\x01\x01\x41\xff\x02\x02\xb9\ +\xff\x01\x01\xcf\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xcc\ +\xff\x00\x00\xb2\xff\x01\x01\x71\xff\x01\x01\x2d\xff\x01\x01\x05\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\ +\xff\x00\x00\x05\xff\x00\x00\x0a\xff\x00\x00\x1d\xff\x00\x00\x36\ +\xff\x01\x01\x5d\xff\x01\x01\xa6\xff\x01\x01\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcc\xff\x00\x00\xc9\xff\x01\x01\x8c\xff\x01\x01\x28\ +\xff\x00\x00\x02\xff\x01\x01\x3b\xff\x01\x01\x83\xff\x01\x01\x74\ +\xff\x01\x01\x4d\xff\x01\x01\x20\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x03\x03\x03\ +\xff\x04\x04\x04\xff\x04\x04\x04\xff\x04\x04\x04\xff\x04\x04\x04\ +\xfe\x1d\x1c\x1c\xb6\x14\x13\x13\x55\x00\x00\x00\x38\x00\x00\x00\ +\x30\x00\x00\x00\x29\x00\x00\x00\x22\x00\x00\x00\x1b\x00\x00\x00\ +\x15\x00\x00\x00\x0f\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x07\x1a\x18\x19\ +\x13\x23\x21\x22\x69\x11\x11\x11\xf1\x05\x05\x05\xff\x05\x05\x05\ +\xff\x04\x04\x04\xff\x04\x04\x04\xff\x03\x03\x03\xff\x02\x02\x02\ +\xff\x01\x01\x01\xff\x01\x01\x09\xff\x02\x02\x6f\xff\x01\x01\xd5\ +\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xcd\xff\x00\x00\xa6\ +\xff\x02\x02\x56\xff\x01\x01\x15\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x03\xff\x00\x00\x06\xff\x00\x00\x0e\xff\x00\x00\x22\ +\xff\x01\x01\x3b\xff\x01\x01\x53\xff\x02\x02\x7d\xff\x01\x01\xa1\ +\xff\x01\x01\xc6\xff\x00\x00\xd1\xff\x00\x00\xcd\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcc\xff\x00\x00\xcd\xff\x01\x01\x99\xff\x01\x01\x31\ +\xff\x00\x00\x04\xff\x00\x00\x12\xff\x01\x01\x1d\xff\x01\x01\x0c\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x03\x03\x03\xff\x04\x04\x04\ +\xff\x04\x04\x04\xff\x04\x04\x04\xff\x05\x05\x05\xff\x07\x07\x07\ +\xf6\x17\x15\x16\x94\x0c\x0c\x0c\x46\x00\x00\x00\x35\x00\x00\x00\ +\x2e\x00\x00\x00\x26\x00\x00\x00\x1f\x00\x00\x00\x19\x00\x00\x00\ +\x13\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x08\x05\x06\ +\x0c\x20\x1e\x1e\x46\x1a\x1a\x1a\xd6\x06\x06\x06\xff\x06\x06\x06\ +\xff\x05\x05\x05\xff\x04\x04\x04\xff\x04\x04\x04\xff\x03\x03\x03\ +\xff\x02\x02\x02\xff\x01\x01\x0d\xff\x02\x02\x84\xff\x00\x00\xd7\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcd\xff\x00\x00\xa7\xff\x01\x01\x4a\ +\xff\x01\x01\x07\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x04\xff\x00\x00\x09\xff\x00\x00\x16\ +\xff\x01\x01\x2c\xff\x01\x01\x42\xff\x01\x01\x60\xff\x01\x01\x8b\ +\xff\x01\x01\xab\xff\x01\x01\xbb\xff\x01\x01\xc8\xff\x00\x00\xd0\ +\xff\x00\x00\xcf\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xd1\xff\x01\x01\xa7\xff\x01\x01\x39\ +\xff\x00\x00\x04\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x03\x03\x03\xff\x04\x04\x04\xff\x04\x04\x04\ +\xff\x05\x05\x05\xff\x06\x06\x06\xff\x06\x06\x06\xff\x10\x10\x10\ +\xe4\x10\x0e\x10\x78\x01\x00\x01\x3e\x00\x00\x00\x33\x00\x00\x00\ +\x2b\x00\x00\x00\x24\x00\x00\x00\x1d\x00\x00\x00\x17\x00\x00\x00\ +\x12\x00\x00\x00\x0d\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x06\x01\x00\x01\ +\x09\x2c\x29\x2c\x2e\x23\x23\x23\xae\x07\x08\x08\xfe\x07\x07\x07\ +\xff\x06\x06\x06\xff\x05\x05\x05\xff\x04\x04\x04\xff\x04\x04\x04\ +\xff\x02\x02\x02\xff\x01\x01\x0b\xff\x02\x02\x74\xff\x01\x01\xd2\ +\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xd0\xff\x01\x01\xbe\xff\x01\x01\x5e\xff\x00\x00\x0d\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x03\xff\x00\x00\x09\ +\xff\x00\x00\x16\xff\x01\x01\x30\xff\x01\x01\x4a\xff\x01\x01\x6f\ +\xff\x01\x01\x91\xff\x01\x01\xad\xff\x01\x01\xc1\xff\x00\x00\xd1\ +\xff\x00\x00\xd3\xff\x00\x00\xd0\xff\x00\x00\xcd\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xd1\xff\x00\x00\xb1\xff\x01\x01\x46\ +\xff\x00\x00\x07\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x04\x04\x04\xff\x04\x04\x04\xff\x05\x05\x05\ +\xff\x06\x06\x06\xff\x07\x07\x07\xff\x07\x07\x07\xff\x18\x18\x18\ +\xca\x17\x16\x16\x62\x00\x00\x00\x39\x00\x00\x00\x30\x00\x00\x00\ +\x29\x00\x00\x00\x22\x00\x00\x00\x1b\x00\x00\x00\x15\x00\x00\x00\ +\x10\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x07\x2c\x2b\x2c\x19\x25\x24\x25\x7d\x0c\x0d\x0d\xf4\x08\x08\x08\ +\xff\x07\x07\x07\xff\x06\x06\x06\xff\x05\x05\x05\xff\x04\x04\x04\ +\xff\x03\x03\x03\xff\x02\x02\x04\xff\x02\x02\x3b\xff\x02\x02\xb3\ +\xff\x00\x00\xd3\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xd2\xff\x01\x01\xa5\xff\x01\x01\x33\xff\x00\x00\x04\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\ +\xff\x00\x00\x07\xff\x01\x01\x15\xff\x01\x01\x2f\xff\x02\x02\x4e\ +\xff\x02\x02\x70\xff\x01\x01\x95\xff\x01\x01\xaf\xff\x00\x00\xc3\ +\xff\x00\x00\xcd\xff\x00\x00\xd0\xff\x00\x00\xce\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xd0\xff\x00\x00\xac\xff\x01\x01\x41\ +\xff\x00\x00\x06\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x03\x03\x03\xff\x04\x04\x04\xff\x05\x05\x05\xff\x06\x06\x06\ +\xff\x07\x07\x07\xff\x08\x08\x08\xff\x07\x07\x07\xf9\x15\x15\x15\ +\xa5\x13\x12\x12\x4c\x00\x00\x00\x35\x00\x00\x00\x2d\x00\x00\x00\ +\x26\x00\x00\x00\x1f\x00\x00\x00\x19\x00\x00\x00\x13\x00\x00\x00\ +\x0e\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x06\x10\x0f\x10\x0e\x2a\x29\x2a\x53\x1d\x1d\x1d\xda\x09\x09\x09\ +\xff\x08\x08\x08\xff\x07\x07\x07\xff\x06\x06\x06\xff\x05\x05\x05\ +\xff\x04\x04\x04\xff\x03\x03\x03\xff\x01\x01\x13\xff\x02\x02\x73\ +\xff\x01\x01\xcb\xff\x00\x00\xd0\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcf\xff\x01\x01\x97\xff\x01\x01\x2b\xff\x00\x00\x03\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x02\xff\x01\x01\x0d\xff\x01\x01\x2a\ +\xff\x01\x01\x4a\xff\x02\x02\x6d\xff\x02\x02\x94\xff\x01\x01\xb0\ +\xff\x01\x01\xc2\xff\x00\x00\xcd\xff\x00\x00\xce\xff\x00\x00\xcd\ +\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xd0\xff\x01\x01\xa1\xff\x01\x01\x34\ +\xff\x00\x00\x03\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x04\x04\x04\xff\x05\x05\x05\xff\x06\x06\x06\xff\x07\x07\x07\ +\xff\x08\x08\x08\xff\x09\x09\x09\xff\x10\x0f\x0f\xe6\x13\x12\x13\ +\x81\x05\x05\x05\x3e\x00\x00\x00\x32\x00\x00\x00\x2a\x00\x00\x00\ +\x23\x00\x00\x00\x1d\x00\x00\x00\x17\x00\x00\x00\x11\x00\x00\x00\ +\x0d\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x02\x02\x02\x0a\x3f\x3e\x3f\x32\x29\x28\x28\xad\x0b\x0b\x0b\ +\xfd\x0a\x0a\x0a\xff\x08\x08\x08\xff\x07\x07\x07\xff\x06\x06\x06\ +\xff\x04\x04\x04\xff\x04\x04\x04\xff\x02\x02\x04\xff\x01\x01\x24\ +\xff\x02\x02\x82\xff\x00\x00\xc6\xff\x00\x00\xcf\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x01\x01\xce\xff\x01\x01\x97\xff\x00\x00\x2c\xff\x00\x00\x03\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x04\ +\xff\x01\x01\x16\xff\x02\x02\x2f\xff\x02\x02\x5f\xff\x01\x01\x97\ +\xff\x01\x01\xb8\xff\x00\x00\xc4\xff\x00\x00\xcb\xff\x00\x00\xce\ +\xff\x00\x00\xcd\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcc\xff\x00\x00\xce\xff\x01\x01\x99\xff\x01\x01\x30\ +\xff\x00\x00\x03\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x02\x02\x02\xff\x04\x04\x04\ +\xff\x04\x04\x04\xff\x06\x06\x06\xff\x07\x07\x07\xff\x08\x08\x08\ +\xff\x0a\x0a\x0a\xff\x0a\x0a\x0a\xff\x19\x19\x19\xcb\x1e\x1d\x1d\ +\x64\x00\x00\x00\x38\x00\x00\x00\x2f\x00\x00\x00\x27\x00\x00\x00\ +\x21\x00\x00\x00\x1a\x00\x00\x00\x15\x00\x00\x00\x0f\x00\x00\x00\ +\x0b\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x07\x31\x2e\x2e\x17\x2e\x2c\x2d\x79\x18\x17\x18\ +\xf0\x0a\x0a\x0a\xff\x0a\x0a\x0a\xff\x08\x08\x08\xff\x07\x07\x07\ +\xff\x06\x06\x06\xff\x04\x04\x04\xff\x03\x03\x03\xff\x02\x02\x04\ +\xff\x01\x01\x23\xff\x02\x02\x74\xff\x01\x01\xb4\xff\x00\x00\xcc\ +\xff\x00\x00\xcf\xff\x00\x00\xce\xff\x00\x00\xcd\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x01\x01\xce\xff\x01\x01\x96\xff\x00\x00\x2a\xff\x00\x00\x03\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x09\xff\x01\x01\x36\ +\xff\x02\x02\x70\xff\x01\x01\xa1\xff\x01\x01\xc1\xff\x00\x00\xcf\ +\xff\x00\x00\xcf\xff\x00\x00\xcd\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcd\xff\x00\x00\xc9\xff\x01\x01\x85\xff\x01\x01\x23\ +\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x02\x02\x02\xff\x03\x03\x03\xff\x04\x04\x04\ +\xff\x06\x06\x06\xff\x07\x07\x07\xff\x08\x08\x08\xff\x0a\x0a\x0a\ +\xff\x0a\x0a\x0a\xff\x0d\x0d\x0d\xf4\x14\x13\x14\x9e\x0e\x0e\x0e\ +\x47\x00\x00\x00\x33\x00\x00\x00\x2b\x00\x00\x00\x24\x00\x00\x00\ +\x1e\x00\x00\x00\x18\x00\x00\x00\x12\x00\x00\x00\x0e\x00\x00\x00\ +\x0a\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x00\x00\x00\x06\x06\x06\x06\x0b\x45\x43\x44\x4a\x2a\x29\x29\ +\xcb\x0d\x0d\x0d\xff\x0a\x0a\x0a\xff\x0a\x0a\x0a\xff\x08\x08\x08\ +\xff\x07\x07\x07\xff\x05\x05\x05\xff\x04\x04\x04\xff\x03\x03\x03\ +\xff\x01\x01\x03\xff\x01\x01\x19\xff\x01\x01\x54\xff\x01\x01\x91\ +\xff\x00\x00\xb9\xff\x00\x00\xcb\xff\x00\x00\xd1\xff\x00\x00\xd1\ +\xff\x00\x00\xd1\xff\x00\x00\xd1\xff\x00\x00\xd2\xff\x00\x00\xd0\ +\xff\x00\x00\xcf\xff\x00\x00\xd0\xff\x00\x00\xd0\xff\x00\x00\xd1\ +\xff\x01\x01\xd6\xff\x01\x01\xa6\xff\x00\x00\x37\xff\x00\x00\x05\ +\xff\x00\x00\x00\xff\x00\x00\x0b\xff\x02\x02\x49\xff\x02\x02\x9f\ +\xff\x01\x01\xc6\xff\x00\x00\xcf\xff\x00\x00\xce\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xce\xff\x00\x00\xc4\xff\x01\x01\x70\xff\x00\x00\x16\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x02\x02\x02\xff\x04\x04\x04\xff\x05\x05\x05\ +\xff\x07\x07\x07\xff\x08\x08\x08\xff\x0a\x0a\x0a\xff\x0a\x0a\x0a\ +\xff\x0b\x0b\x0b\xff\x1a\x1a\x1a\xdf\x24\x24\x24\x7a\x01\x00\x00\ +\x3a\x00\x00\x00\x30\x00\x00\x00\x29\x00\x00\x00\x22\x00\x00\x00\ +\x1b\x00\x00\x00\x15\x00\x00\x00\x10\x00\x00\x00\x0c\x00\x00\x00\ +\x09\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x07\x49\x48\x48\x22\x33\x32\x33\ +\x95\x17\x17\x18\xf7\x0c\x0c\x0c\xff\x0b\x0b\x0b\xff\x0a\x0a\x0a\ +\xff\x08\x08\x08\xff\x07\x07\x07\xff\x05\x05\x05\xff\x04\x04\x04\ +\xff\x02\x02\x02\xff\x01\x01\x02\xff\x01\x01\x06\xff\x01\x01\x20\ +\xff\x01\x01\x4f\xff\x01\x01\x72\xff\x02\x02\x86\xff\x01\x01\x99\ +\xff\x00\x00\xa8\xff\x00\x00\xa9\xff\x00\x00\xbb\xff\x01\x01\xc6\ +\xff\x01\x01\xc4\xff\x01\x01\xc4\xff\x01\x01\xc4\xff\x01\x01\xc4\ +\xff\x01\x01\xca\xff\x02\x02\xb6\xff\x01\x01\x4e\xff\x00\x00\x09\ +\xff\x00\x00\x01\xff\x02\x02\x44\xff\x02\x02\xa8\xff\x01\x01\xcf\ +\xff\x00\x00\xd0\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xce\xff\x00\x00\xb3\xff\x01\x01\x50\xff\x00\x00\x0a\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x03\x03\x03\xff\x05\x05\x05\xff\x07\x07\x07\ +\xff\x08\x08\x08\xff\x0a\x0a\x0a\xff\x0a\x0a\x0a\xff\x0c\x0c\x0c\ +\xff\x0e\x0e\x0e\xf9\x1e\x1e\x1e\xb7\x26\x26\x26\x53\x00\x00\x00\ +\x34\x00\x00\x00\x2c\x00\x00\x00\x25\x00\x00\x00\x1f\x00\x00\x00\ +\x18\x00\x00\x00\x13\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x0c\x0c\x0c\x0e\x4b\x4b\x4c\ +\x5b\x27\x27\x27\xd7\x0e\x0e\x0e\xff\x0c\x0c\x0c\xff\x0b\x0b\x0b\ +\xff\x09\x09\x09\xff\x07\x07\x07\xff\x06\x06\x06\xff\x04\x04\x04\ +\xff\x03\x03\x03\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x03\xff\x01\x01\x0a\xff\x01\x01\x1d\ +\xff\x01\x01\x2c\xff\x01\x01\x2b\xff\x01\x01\x3d\xff\x02\x02\x52\ +\xff\x02\x02\x52\xff\x02\x02\x51\xff\x02\x02\x51\xff\x02\x02\x51\ +\xff\x02\x02\x53\xff\x02\x02\x51\xff\x01\x01\x28\xff\x00\x00\x05\ +\xff\x01\x01\x1e\xff\x02\x02\x95\xff\x00\x00\xd3\xff\x00\x00\xcc\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x01\x01\x93\xff\x01\x01\x2e\xff\x00\x00\x03\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x04\x04\x04\xff\x06\x06\x06\xff\x07\x07\x07\ +\xff\x09\x09\x09\xff\x0a\x0a\x0a\xff\x0c\x0c\x0c\xff\x0d\x0d\x0d\ +\xff\x18\x18\x19\xe6\x28\x28\x29\x85\x01\x01\x01\x3b\x00\x00\x00\ +\x30\x00\x00\x00\x29\x00\x00\x00\x22\x00\x00\x00\x1c\x00\x00\x00\ +\x16\x00\x00\x00\x11\x00\x00\x00\x0d\x00\x00\x00\x09\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x08\x4e\x4e\x4e\ +\x29\x2e\x2e\x2e\xa3\x14\x14\x14\xf8\x0e\x0e\x0e\xff\x0c\x0c\x0c\ +\xff\x0b\x0b\x0b\xff\x09\x09\x09\xff\x07\x07\x07\xff\x05\x05\x05\ +\xff\x04\x04\x04\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x05\ +\xff\x02\x02\x54\xff\x00\x00\xc1\xff\x00\x00\xd1\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcd\ +\xff\x00\x00\xc1\xff\x01\x01\x69\xff\x00\x00\x12\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x04\x04\x04\xff\x05\x05\x05\xff\x07\x07\x07\xff\x09\x09\x09\ +\xff\x0a\x0a\x0a\xff\x0c\x0c\x0c\xff\x0e\x0e\x0e\xff\x0f\x10\x10\ +\xfb\x1e\x1e\x1e\xc3\x2d\x2c\x2c\x5a\x00\x00\x00\x34\x00\x00\x00\ +\x2c\x00\x00\x00\x25\x00\x00\x00\x1f\x00\x00\x00\x19\x00\x00\x00\ +\x13\x00\x00\x00\x0f\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\ +\x05\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x11\x11\x11\ +\x0f\x49\x49\x49\x65\x23\x23\x24\xdc\x10\x10\x10\xfe\x0e\x0e\x0e\ +\xff\x0c\x0c\x0c\xff\x0b\x0b\x0b\xff\x09\x09\x09\xff\x07\x07\x07\ +\xff\x05\x05\x05\xff\x03\x03\x03\xff\x02\x02\x02\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x11\ +\xff\x01\x01\x72\xff\x00\x00\xc8\xff\x00\x00\xce\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xce\xff\x00\x00\xce\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcf\ +\xff\x00\x00\xaf\xff\x01\x01\x46\xff\x00\x00\x05\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\xff\x03\x03\x03\ +\xff\x05\x05\x05\xff\x07\x07\x07\xff\x09\x09\x09\xff\x0a\x0a\x0a\ +\xff\x0c\x0c\x0c\xff\x0e\x0e\x0e\xff\x0f\x0f\x0f\xff\x18\x18\x18\ +\xea\x2c\x2b\x2c\x8c\x01\x01\x01\x3a\x00\x00\x00\x2f\x00\x00\x00\ +\x28\x00\x00\x00\x22\x00\x00\x00\x1b\x00\x00\x00\x16\x00\x00\x00\ +\x11\x00\x00\x00\x0d\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x08\x4c\x4b\x4c\x2c\x33\x33\x33\xa7\x17\x17\x17\xf6\x10\x10\x10\ +\xff\x0e\x0e\x0e\xff\x0c\x0c\x0c\xff\x0a\x0a\x0a\xff\x08\x08\x08\ +\xff\x06\x06\x06\xff\x04\x04\x04\xff\x03\x03\x03\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x16\ +\xff\x02\x02\x75\xff\x00\x00\xc6\xff\x00\x00\xce\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcd\xff\x00\x00\xcd\xff\x00\x00\xc4\xff\x00\x00\xbd\ +\xff\x00\x00\xca\xff\x00\x00\xce\xff\x00\x00\xcd\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xca\ +\xff\x01\x01\x88\xff\x01\x01\x23\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x03\x03\x03\xff\x04\x04\x04\ +\xff\x06\x06\x06\xff\x08\x08\x08\xff\x0a\x0a\x0a\xff\x0c\x0c\x0c\ +\xff\x0e\x0e\x0e\xff\x0f\x0f\x0f\xff\x11\x11\x11\xfa\x1c\x1c\x1c\ +\xc5\x2d\x2d\x2d\x59\x00\x00\x00\x32\x00\x00\x00\x2b\x00\x00\x00\ +\x24\x00\x00\x00\x1e\x00\x00\x00\x18\x00\x00\x00\x13\x00\x00\x00\ +\x0e\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\ +\x04\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x06\x14\x14\x14\x0f\x53\x52\x52\x5f\x25\x25\x24\xda\x13\x13\x13\ +\xfe\x10\x10\x10\xff\x0e\x0e\x0e\xff\x0c\x0c\x0c\xff\x0a\x0a\x0a\ +\xff\x08\x08\x08\xff\x06\x06\x06\xff\x04\x04\x04\xff\x02\x02\x02\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x0c\ +\xff\x02\x02\x69\xff\x00\x00\xc6\xff\x00\x00\xce\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcd\ +\xff\x00\x00\xc6\xff\x01\x01\xae\xff\x01\x01\x79\xff\x01\x01\x63\ +\xff\x01\x01\x9c\xff\x00\x00\xbf\xff\x00\x00\xcb\xff\x00\x00\xcd\ +\xff\x00\x00\xce\xff\x00\x00\xcf\xff\x00\x00\xcf\xff\x00\x00\xce\ +\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xce\xff\x01\x01\xbb\ +\xff\x02\x02\x5a\xff\x01\x01\x09\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x02\x02\x02\xff\x04\x04\x04\xff\x06\x06\x06\ +\xff\x08\x08\x08\xff\x0a\x0a\x0a\xff\x0c\x0c\x0c\xff\x0e\x0e\x0e\ +\xff\x10\x10\x10\xff\x11\x11\x11\xfe\x17\x17\x17\xe8\x2e\x2d\x2e\ +\x88\x01\x01\x01\x38\x00\x00\x00\x2d\x00\x00\x00\x27\x00\x00\x00\ +\x20\x00\x00\x00\x1b\x00\x00\x00\x15\x00\x00\x00\x10\x00\x00\x00\ +\x0c\x00\x00\x00\x09\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x05\x00\x00\x00\x08\x53\x50\x50\x23\x43\x42\x42\x9f\x1a\x1a\x1a\ +\xf4\x11\x11\x11\xff\x10\x10\x10\xff\x0e\x0e\x0e\xff\x0c\x0c\x0c\ +\xff\x0a\x0a\x0a\xff\x07\x07\x07\xff\x05\x05\x05\xff\x04\x04\x04\ +\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x02\ +\xff\x01\x01\x55\xff\x00\x00\xc1\xff\x00\x00\xd0\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xce\xff\x00\x00\xc2\ +\xff\x01\x01\x8d\xff\x01\x01\x50\xff\x01\x01\x1e\xff\x01\x01\x10\ +\xff\x01\x01\x3c\xff\x01\x01\x68\xff\x00\x00\x89\xff\x00\x00\x99\ +\xff\x00\x00\xa8\xff\x00\x00\xb6\xff\x00\x00\xbe\xff\x00\x00\xc5\ +\xff\x00\x00\xc6\xff\x00\x00\xca\xff\x00\x00\xce\xff\x00\x00\xcd\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xce\xff\x00\x00\xa2\ +\xff\x01\x01\x38\xff\x01\x01\x02\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x04\x04\x04\xff\x05\x05\x05\xff\x07\x07\x07\ +\xff\x0a\x0a\x0a\xff\x0c\x0c\x0c\xff\x0e\x0e\x0e\xff\x10\x10\x10\ +\xff\x12\x12\x12\xff\x14\x14\x14\xf9\x27\x27\x27\xbc\x2a\x28\x29\ +\x50\x00\x00\x00\x31\x00\x00\x00\x29\x00\x00\x00\x23\x00\x00\x00\ +\x1d\x00\x00\x00\x17\x00\x00\x00\x12\x00\x00\x00\x0e\x00\x00\x00\ +\x0a\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x13\x13\x13\x0c\x66\x64\x66\x4c\x31\x31\x31\ +\xd1\x16\x16\x16\xfc\x12\x12\x12\xff\x10\x10\x10\xff\x0e\x0e\x0e\ +\xff\x0c\x0c\x0c\xff\x09\x09\x09\xff\x07\x07\x07\xff\x05\x05\x05\ +\xff\x03\x03\x03\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x3d\xff\x01\x01\xb4\xff\x00\x00\xd0\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xce\xff\x01\x01\xbf\xff\x01\x01\x7f\ +\xff\x00\x00\x33\xff\x00\x00\x0c\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x06\xff\x00\x00\x13\xff\x00\x00\x22\xff\x00\x00\x2e\ +\xff\x01\x01\x3f\xff\x01\x01\x4f\xff\x01\x01\x5d\xff\x01\x01\x70\ +\xff\x01\x01\x7f\xff\x01\x01\x8d\xff\x01\x01\x9c\xff\x00\x00\xbc\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcd\xff\x01\x01\xc6\xff\x01\x01\x75\ +\xff\x00\x00\x16\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x03\x03\x03\xff\x05\x05\x05\xff\x07\x07\x07\xff\x09\x09\x09\ +\xff\x0b\x0b\x0b\xff\x0e\x0e\x0e\xff\x10\x10\x10\xff\x12\x12\x12\ +\xff\x13\x13\x13\xfe\x20\x20\x20\xe1\x3d\x3d\x3d\x76\x00\x00\x00\ +\x34\x00\x00\x00\x2b\x00\x00\x00\x25\x00\x00\x00\x1f\x00\x00\x00\ +\x19\x00\x00\x00\x14\x00\x00\x00\x0f\x00\x00\x00\x0c\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x07\x44\x42\x42\x17\x5d\x5e\x5e\ +\x85\x22\x22\x22\xf0\x14\x14\x14\xff\x12\x12\x12\xff\x10\x10\x10\ +\xff\x0e\x0e\x0e\xff\x0b\x0b\x0b\xff\x09\x09\x09\xff\x07\x07\x07\ +\xff\x04\x04\x04\xff\x03\x03\x03\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x27\xff\x01\x01\xa0\xff\x00\x00\xcf\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xcd\xff\x01\x01\x94\xff\x00\x00\x31\ +\xff\x00\x00\x06\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\ +\xff\x00\x00\x05\xff\x00\x00\x09\xff\x00\x00\x0e\xff\x00\x00\x15\ +\xff\x01\x01\x1f\xff\x01\x01\x25\xff\x01\x01\x32\xff\x01\x01\x6d\ +\xff\x01\x01\xbd\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcf\xff\x01\x01\xa9\xff\x01\x01\x3d\ +\xff\x00\x00\x03\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x03\x03\x03\ +\xff\x04\x04\x04\xff\x06\x06\x06\xff\x09\x09\x09\xff\x0b\x0b\x0b\ +\xff\x0e\x0e\x0e\xff\x10\x10\x10\xff\x12\x12\x12\xff\x14\x14\x14\ +\xff\x16\x16\x16\xfb\x42\x41\x41\xa5\x1c\x1c\x1c\x42\x00\x00\x00\ +\x2d\x00\x00\x00\x27\x00\x00\x00\x21\x00\x00\x00\x1b\x00\x00\x00\ +\x16\x00\x00\x00\x11\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x06\x04\x04\x04\x09\x62\x62\x62\ +\x2e\x50\x4f\x50\xb9\x18\x18\x18\xfc\x14\x14\x14\xff\x12\x12\x12\ +\xff\x11\x11\x11\xff\x0e\x0e\x0e\xff\x0b\x0b\x0b\xff\x08\x08\x08\ +\xff\x06\x06\x06\xff\x04\x04\x04\xff\x03\x03\x03\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x10\xff\x01\x01\x7e\xff\x01\x01\xcc\xff\x00\x00\xce\ +\xff\x00\x00\xce\xff\x00\x00\xc5\xff\x01\x01\x69\xff\x00\x00\x10\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x01\xff\x01\x01\x02\xff\x01\x01\x02\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x02\xff\x00\x00\x02\xff\x01\x01\x0f\xff\x02\x02\x43\ +\xff\x01\x01\xb7\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcc\xff\x00\x00\xcf\xff\x01\x01\x89\xff\x01\x01\x1b\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x03\x03\x03\xff\x04\x04\x04\ +\xff\x06\x06\x06\xff\x08\x08\x08\xff\x0b\x0b\x0b\xff\x0e\x0e\x0e\ +\xff\x11\x11\x11\xff\x12\x12\x12\xff\x14\x14\x14\xff\x15\x15\x15\ +\xff\x30\x30\x30\xcf\x2f\x2e\x2e\x55\x00\x00\x00\x30\x00\x00\x00\ +\x29\x00\x00\x00\x23\x00\x00\x00\x1d\x00\x00\x00\x18\x00\x00\x00\ +\x13\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x18\x18\x18\ +\x0d\x6d\x6c\x6d\x51\x3a\x39\x3a\xe4\x16\x16\x16\xff\x14\x14\x14\ +\xff\x13\x13\x13\xff\x11\x11\x11\xff\x0e\x0e\x0e\xff\x0b\x0b\x0b\ +\xff\x09\x09\x09\xff\x06\x06\x06\xff\x04\x04\x04\xff\x03\x03\x03\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x02\xff\x02\x02\x62\xff\x01\x01\xc4\xff\x00\x00\xce\ +\xff\x00\x00\xce\xff\x00\x00\xc1\xff\x01\x01\x5f\xff\x00\x00\x0c\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x0a\xff\x01\x01\x23\ +\xff\x02\x02\x42\xff\x01\x01\x59\xff\x01\x01\x5d\xff\x01\x01\x51\ +\xff\x01\x01\x36\xff\x01\x01\x23\xff\x01\x01\x17\xff\x01\x01\x27\ +\xff\x01\x01\x45\xff\x01\x01\x57\xff\x01\x01\x70\xff\x00\x00\x93\ +\xff\x00\x00\xc6\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xd0\xff\x00\x00\xc4\xff\x01\x01\x61\xff\x00\x00\x09\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x03\x03\x03\xff\x04\x04\x04\xff\x06\x06\x06\ +\xff\x08\x08\x08\xff\x0b\x0b\x0b\xff\x0e\x0e\x0e\xff\x11\x11\x11\ +\xff\x12\x12\x12\xff\x14\x14\x14\xff\x16\x16\x16\xff\x1e\x1e\x1e\ +\xed\x49\x48\x48\x7b\x03\x03\x03\x34\x00\x00\x00\x2a\x00\x00\x00\ +\x24\x00\x00\x00\x1f\x00\x00\x00\x19\x00\x00\x00\x14\x00\x00\x00\ +\x10\x00\x00\x00\x0c\x00\x00\x00\x09\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x07\x2f\x2f\x2f\x14\x6b\x6a\x6a\x85\x22\x22\x22\xfb\x17\x17\x17\ +\xff\x15\x15\x15\xff\x13\x13\x13\xff\x11\x11\x11\xff\x0e\x0e\x0e\ +\xff\x0b\x0b\x0b\xff\x09\x09\x09\xff\x06\x06\x06\xff\x04\x04\x04\ +\xff\x03\x03\x03\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x46\xff\x00\x00\xb6\xff\x00\x00\xcf\ +\xff\x00\x00\xce\xff\x00\x00\xc4\xff\x01\x01\x67\xff\x00\x00\x0e\ +\xff\x01\x01\x00\xff\x01\x01\x11\xff\x01\x01\x55\xff\x00\x00\x98\ +\xff\x01\x01\xaf\xff\x00\x00\xc2\xff\x00\x00\xc5\xff\x00\x00\xbd\ +\xff\x00\x00\xaa\xff\x01\x01\x9a\xff\x01\x01\x8e\xff\x00\x00\x9e\ +\xff\x01\x01\xb1\xff\x00\x00\xc0\xff\x00\x00\xc9\xff\x00\x00\xcc\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xd2\xff\x02\x02\x9c\xff\x01\x01\x2a\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x03\x03\x03\xff\x04\x04\x04\xff\x06\x06\x06\xff\x08\x08\x08\ +\xff\x0b\x0b\x0b\xff\x0e\x0e\x0e\xff\x11\x11\x11\xff\x13\x13\x13\ +\xff\x15\x15\x15\xff\x17\x17\x17\xff\x16\x16\x16\xfe\x4b\x4a\x4a\ +\xa9\x12\x12\x12\x3c\x00\x00\x00\x2c\x00\x00\x00\x26\x00\x00\x00\ +\x20\x00\x00\x00\x1b\x00\x00\x00\x15\x00\x00\x00\x11\x00\x00\x00\ +\x0d\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x06\x00\x00\x00\x08\x42\x42\x42\x1e\x62\x62\x62\xb1\x1a\x1b\x1a\ +\xfd\x17\x17\x17\xff\x15\x15\x15\xff\x13\x13\x13\xff\x11\x11\x11\ +\xff\x0e\x0e\x0e\xff\x0b\x0b\x0b\xff\x09\x09\x09\xff\x06\x06\x06\ +\xff\x04\x04\x04\xff\x03\x03\x03\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x23\xff\x01\x01\xa4\xff\x00\x00\xd3\ +\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x01\x01\x8b\xff\x01\x01\x29\ +\xff\x01\x01\x23\xff\x02\x02\x6c\xff\x00\x00\xb6\xff\x00\x00\xd1\ +\xff\x00\x00\xd0\xff\x00\x00\xcf\xff\x00\x00\xcf\xff\x00\x00\xd0\ +\xff\x00\x00\xd1\xff\x00\x00\xd3\xff\x00\x00\xd3\xff\x00\x00\xd2\ +\xff\x00\x00\xd0\xff\x00\x00\xcf\xff\x00\x00\xce\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcd\ +\xff\x00\x00\xcd\xff\x02\x02\x76\xff\x01\x01\x0e\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\xff\x03\x03\x03\ +\xff\x04\x04\x04\xff\x06\x06\x06\xff\x08\x08\x08\xff\x0b\x0b\x0b\ +\xff\x0e\x0e\x0e\xff\x11\x11\x11\xff\x13\x13\x13\xff\x15\x15\x15\ +\xff\x17\x17\x17\xff\x19\x19\x19\xfd\x3f\x3f\x3f\xc3\x17\x17\x17\ +\x48\x00\x00\x00\x2d\x00\x00\x00\x27\x00\x00\x00\x21\x00\x00\x00\ +\x1c\x00\x00\x00\x16\x00\x00\x00\x12\x00\x00\x00\x0e\x00\x00\x00\ +\x0b\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x05\x05\x05\x09\x61\x61\x61\x38\x56\x56\x56\ +\xc9\x1d\x1d\x1d\xfd\x18\x18\x18\xff\x16\x16\x16\xff\x14\x14\x14\ +\xff\x12\x12\x12\xff\x0e\x0e\x0e\xff\x0b\x0b\x0b\xff\x09\x09\x09\ +\xff\x06\x06\x06\xff\x04\x04\x04\xff\x03\x03\x03\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x09\xff\x01\x01\x79\xff\x00\x00\xcb\ +\xff\x00\x00\xcf\xff\x00\x00\xce\xff\x01\x01\xba\xff\x02\x02\x8b\ +\xff\x01\x01\x95\xff\x00\x00\xc2\xff\x00\x00\xcf\xff\x00\x00\xcc\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xce\ +\xff\x00\x00\xd1\xff\x00\x00\xd1\xff\x00\x00\xd0\xff\x00\x00\xd0\ +\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xce\ +\xff\x01\x01\xb2\xff\x01\x01\x44\xff\x00\x00\x03\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x03\x03\x03\xff\x04\x04\x04\ +\xff\x06\x06\x06\xff\x09\x09\x09\xff\x0b\x0b\x0b\xff\x0e\x0e\x0e\ +\xff\x11\x11\x11\xff\x14\x14\x14\xff\x16\x16\x16\xff\x17\x17\x17\ +\xff\x1a\x1a\x1a\xfd\x34\x34\x34\xd4\x40\x40\x3f\x64\x09\x09\x09\ +\x30\x00\x00\x00\x28\x00\x00\x00\x22\x00\x00\x00\x1c\x00\x00\x00\ +\x18\x00\x00\x00\x13\x00\x00\x00\x0f\x00\x00\x00\x0b\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x07\x2c\x2c\x2c\x0f\x6b\x6c\x6b\ +\x57\x45\x46\x45\xd9\x1f\x1f\x1f\xfd\x18\x18\x18\xff\x17\x17\x17\ +\xff\x14\x14\x14\xff\x12\x12\x12\xff\x0e\x0e\x0e\xff\x0b\x0b\x0b\ +\xff\x09\x09\x09\xff\x07\x07\x07\xff\x04\x04\x04\xff\x03\x03\x03\ +\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x03\xff\x01\x01\x53\xff\x00\x00\xbe\ +\xff\x00\x00\xd0\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xc7\ +\xff\x00\x00\xcb\xff\x00\x00\xce\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xbd\xff\x01\x01\x99\ +\xff\x01\x01\x91\xff\x01\x01\x97\xff\x01\x01\xae\xff\x01\x01\xbd\ +\xff\x01\x01\xc5\xff\x00\x00\xce\xff\x00\x00\xcc\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcd\xff\x00\x00\xce\ +\xff\x01\x01\x87\xff\x01\x01\x13\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x03\x03\x03\xff\x04\x04\x04\xff\x06\x06\x06\ +\xff\x09\x09\x09\xff\x0b\x0b\x0b\xff\x0e\x0e\x0e\xff\x11\x11\x11\ +\xff\x14\x14\x14\xff\x16\x16\x16\xff\x18\x18\x18\xff\x1b\x1b\x1c\ +\xfd\x31\x31\x32\xe1\x4e\x4e\x4e\x80\x1b\x1b\x1b\x38\x00\x00\x00\ +\x28\x00\x00\x00\x23\x00\x00\x00\x1d\x00\x00\x00\x18\x00\x00\x00\ +\x14\x00\x00\x00\x0f\x00\x00\x00\x0c\x00\x00\x00\x09\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x07\x54\x54\x54\ +\x17\x71\x71\x71\x71\x41\x42\x42\xe0\x1f\x1f\x1f\xfe\x19\x19\x19\ +\xff\x18\x18\x18\xff\x15\x15\x15\xff\x12\x12\x12\xff\x0f\x0f\x0f\ +\xff\x0c\x0c\x0c\xff\x0a\x0a\x0a\xff\x07\x07\x07\xff\x05\x05\x05\ +\xff\x03\x03\x03\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x02\xff\x01\x01\x35\xff\x01\x01\xaf\ +\xff\x00\x00\xd1\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcc\ +\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x01\x01\xa9\xff\x02\x02\x5a\ +\xff\x00\x00\x21\xff\x00\x00\x24\xff\x01\x01\x39\xff\x02\x02\x4a\ +\xff\x01\x01\x6d\xff\x01\x01\xa7\xff\x01\x01\xc7\xff\x00\x00\xcc\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcf\xff\x01\x01\xbb\ +\xff\x01\x01\x4d\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x03\x03\x03\xff\x05\x05\x05\xff\x07\x07\x07\xff\x09\x09\x09\ +\xff\x0c\x0c\x0c\xff\x0e\x0e\x0e\xff\x11\x11\x11\xff\x15\x15\x15\ +\xff\x17\x17\x17\xff\x19\x19\x19\xff\x1c\x1c\x1c\xfe\x2c\x2c\x2d\ +\xe9\x4e\x4e\x4e\x93\x2b\x2b\x2b\x3f\x00\x00\x00\x29\x00\x00\x00\ +\x23\x00\x00\x00\x1e\x00\x00\x00\x19\x00\x00\x00\x14\x00\x00\x00\ +\x10\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\ +\x05\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x0b\x0b\x0b\ +\x08\x6b\x6b\x6b\x22\x6b\x6b\x6b\x85\x3c\x3c\x3c\xe6\x21\x21\x21\ +\xfe\x1a\x1a\x1a\xff\x18\x18\x18\xff\x15\x15\x15\xff\x13\x13\x13\ +\xff\x10\x10\x10\xff\x0d\x0d\x0d\xff\x0a\x0a\x0a\xff\x08\x08\x08\ +\xff\x05\x05\x05\xff\x04\x04\x04\xff\x02\x02\x02\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x18\xff\x01\x01\x8a\ +\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xbf\xff\x01\x01\x99\ +\xff\x01\x01\x41\xff\x00\x00\x07\xff\x00\x00\x02\xff\x01\x01\x05\ +\xff\x01\x01\x15\xff\x01\x01\x52\xff\x01\x01\xb1\xff\x00\x00\xd0\ +\xff\x00\x00\xca\xff\x00\x00\xcc\xff\x00\x00\xcf\xff\x02\x02\x97\ +\xff\x01\x01\x22\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x02\x02\x02\xff\x04\x04\x04\ +\xff\x05\x05\x05\xff\x07\x07\x07\xff\x0a\x0a\x0a\xff\x0c\x0c\x0c\ +\xff\x0f\x0f\x0f\xff\x12\x12\x12\xff\x15\x15\x15\xff\x18\x18\x18\ +\xff\x1a\x1a\x1a\xff\x1c\x1c\x1c\xff\x2b\x2c\x2c\xee\x48\x47\x47\ +\xa0\x31\x30\x30\x46\x00\x00\x00\x2a\x00\x00\x00\x23\x00\x00\x00\ +\x1e\x00\x00\x00\x19\x00\x00\x00\x15\x00\x00\x00\x11\x00\x00\x00\ +\x0d\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x06\x19\x19\x19\x0a\x75\x75\x75\x2c\x6d\x6d\x6d\x90\x3f\x3f\x3f\ +\xe9\x21\x22\x22\xff\x1b\x1b\x1b\xff\x19\x19\x19\xff\x16\x16\x16\ +\xff\x14\x14\x14\xff\x11\x11\x11\xff\x0d\x0d\x0d\xff\x0b\x0b\x0b\ +\xff\x08\x08\x08\xff\x06\x06\x06\xff\x04\x04\x04\xff\x03\x03\x03\ +\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0a\xff\x01\x01\x62\ +\xff\x00\x00\xc3\xff\x00\x00\xcf\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\xce\xff\x00\x00\xcf\xff\x00\x00\xd2\xff\x00\x00\xcf\ +\xff\x01\x01\x8e\xff\x01\x01\x0f\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x04\xff\x01\x01\x39\xff\x01\x01\xaa\xff\x00\x00\xd1\ +\xff\x00\x00\xca\xff\x00\x00\xd0\xff\x01\x01\xc3\xff\x01\x01\x67\ +\xff\x00\x00\x0a\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x03\x03\x03\xff\x04\x04\x04\xff\x06\x06\x06\ +\xff\x08\x08\x08\xff\x0b\x0b\x0b\xff\x0d\x0d\x0d\xff\x10\x10\x10\ +\xff\x13\x13\x13\xff\x16\x16\x16\xff\x19\x19\x19\xff\x1b\x1b\x1b\ +\xff\x1d\x1d\x1d\xff\x2b\x2b\x2b\xf0\x47\x48\x48\xa8\x37\x37\x37\ +\x4c\x00\x00\x00\x2a\x00\x00\x00\x23\x00\x00\x00\x1e\x00\x00\x00\ +\x19\x00\x00\x00\x15\x00\x00\x00\x11\x00\x00\x00\x0d\x00\x00\x00\ +\x0a\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x24\x24\x24\x0b\x7d\x7c\x7d\x31\x6d\x6d\x6e\ +\x96\x40\x40\x40\xea\x23\x23\x23\xff\x1c\x1c\x1c\xff\x1a\x1a\x1a\ +\xff\x17\x17\x17\xff\x15\x15\x15\xff\x11\x11\x11\xff\x0e\x0e\x0e\ +\xff\x0b\x0b\x0b\xff\x09\x09\x09\xff\x07\x07\x07\xff\x05\x05\x05\ +\xff\x03\x03\x03\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x04\xff\x01\x01\x39\ +\xff\x01\x01\xa9\xff\x00\x00\xd0\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc6\ +\xff\x01\x01\xbd\xff\x01\x01\xb9\xff\x01\x01\xa9\xff\x01\x01\x8a\ +\xff\x01\x01\x59\xff\x00\x00\x05\xff\x00\x00\x00\xff\x00\x00\x02\ +\xff\x01\x01\x16\xff\x01\x01\x63\xff\x01\x01\xbd\xff\x00\x00\xcf\ +\xff\x00\x00\xcd\xff\x00\x00\xc9\xff\x01\x01\x8d\xff\x01\x01\x29\ +\xff\x01\x01\x02\xff\x01\x01\x01\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x03\x03\x03\xff\x05\x05\x05\xff\x07\x07\x07\xff\x09\x09\x09\ +\xff\x0b\x0b\x0b\xff\x0e\x0e\x0e\xff\x11\x11\x11\xff\x14\x14\x14\ +\xff\x17\x17\x17\xff\x1a\x1a\x1a\xff\x1b\x1b\x1b\xff\x1f\x1f\x1f\ +\xff\x2e\x2e\x2e\xf1\x4b\x4b\x4b\xab\x3f\x3f\x3f\x50\x03\x03\x03\ +\x2a\x00\x00\x00\x23\x00\x00\x00\x1e\x00\x00\x00\x19\x00\x00\x00\ +\x15\x00\x00\x00\x11\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x2e\x2e\x2e\x0c\x81\x81\x81\ +\x32\x71\x70\x70\x95\x41\x41\x41\xea\x23\x23\x23\xfe\x1d\x1d\x1d\ +\xff\x1b\x1b\x1b\xff\x18\x18\x18\xff\x15\x15\x15\xff\x12\x12\x12\ +\xff\x10\x10\x10\xff\x0d\x0d\x0d\xff\x0a\x0a\x0a\xff\x08\x08\x08\ +\xff\x06\x06\x06\xff\x04\x04\x04\xff\x03\x03\x03\xff\x02\x02\x02\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x15\ +\xff\x01\x01\x74\xff\x01\x01\xc7\xff\x00\x00\xcf\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xc7\xff\x01\x01\xae\ +\xff\x01\x01\x82\xff\x01\x01\x71\xff\x01\x01\x4b\xff\x02\x02\x25\ +\xff\x01\x01\x13\xff\x01\x01\x10\xff\x01\x01\x22\xff\x01\x01\x37\ +\xff\x01\x01\x6a\xff\x01\x01\xa6\xff\x00\x00\xc9\xff\x00\x00\xd1\ +\xff\x00\x00\xca\xff\x01\x01\x93\xff\x02\x02\x3a\xff\x01\x01\x07\ +\xff\x01\x01\x01\xff\x02\x02\x02\xff\x03\x03\x03\xff\x04\x04\x04\ +\xff\x06\x06\x06\xff\x08\x08\x08\xff\x0a\x0a\x0a\xff\x0d\x0d\x0d\ +\xff\x0f\x0f\x0f\xff\x12\x12\x12\xff\x15\x15\x15\xff\x18\x18\x18\ +\xff\x1b\x1b\x1b\xff\x1c\x1c\x1c\xff\x20\x20\x20\xff\x31\x32\x32\ +\xf2\x51\x51\x51\xaa\x44\x45\x45\x4f\x09\x09\x09\x2a\x00\x00\x00\ +\x23\x00\x00\x00\x1e\x00\x00\x00\x19\x00\x00\x00\x15\x00\x00\x00\ +\x11\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x27\x27\x27\ +\x0b\x7e\x7a\x7b\x2f\x76\x75\x75\x8e\x44\x44\x44\xe8\x23\x23\x23\ +\xfe\x1e\x1e\x1e\xff\x1c\x1c\x1c\xff\x19\x19\x19\xff\x17\x17\x17\ +\xff\x14\x14\x14\xff\x11\x11\x11\xff\x0e\x0e\x0e\xff\x0c\x0c\x0c\ +\xff\x0a\x0a\x0a\xff\x07\x07\x07\xff\x06\x06\x06\xff\x04\x04\x04\ +\xff\x02\x02\x02\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x06\ +\xff\x02\x02\x38\xff\x01\x01\x97\xff\x00\x00\xca\xff\x00\x00\xd0\ +\xff\x00\x00\xcd\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcd\ +\xff\x00\x00\xce\xff\x00\x00\xd0\xff\x00\x00\xd2\xff\x00\x00\xd2\ +\xff\x00\x00\xd2\xff\x00\x00\xd2\xff\x00\x00\xd0\xff\x00\x00\xcf\ +\xff\x00\x00\xcd\xff\x00\x00\xcb\xff\x00\x00\xc8\xff\x00\x00\xb8\ +\xff\x00\x00\x9b\xff\x00\x00\x8e\xff\x01\x01\x74\xff\x01\x01\x66\ +\xff\x01\x01\x66\xff\x01\x01\x76\xff\x00\x00\x8c\xff\x00\x00\x9e\ +\xff\x00\x00\xbe\xff\x00\x00\xcd\xff\x00\x00\xd0\xff\x00\x00\xc2\ +\xff\x01\x01\x8a\xff\x02\x02\x39\xff\x01\x01\x0b\xff\x02\x02\x02\ +\xff\x02\x02\x02\xff\x04\x04\x04\xff\x05\x05\x05\xff\x07\x07\x07\ +\xff\x09\x09\x09\xff\x0c\x0c\x0c\xff\x0e\x0e\x0e\xff\x11\x11\x11\ +\xff\x14\x14\x14\xff\x17\x17\x17\xff\x19\x19\x19\xff\x1b\x1b\x1b\ +\xff\x1e\x1e\x1e\xff\x20\x20\x20\xff\x36\x36\x36\xf1\x58\x58\x59\ +\xa4\x40\x40\x40\x4a\x05\x05\x05\x28\x00\x00\x00\x22\x00\x00\x00\ +\x1d\x00\x00\x00\x19\x00\x00\x00\x15\x00\x00\x00\x11\x00\x00\x00\ +\x0e\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x06\x1c\x1b\x1b\x0a\x7b\x7a\x7a\x27\x7c\x7b\x7c\x7e\x50\x4f\x50\ +\xe3\x25\x25\x25\xfe\x1f\x1f\x1f\xff\x1d\x1d\x1d\xff\x1b\x1b\x1b\ +\xff\x18\x18\x18\xff\x15\x15\x15\xff\x13\x13\x13\xff\x10\x10\x10\ +\xff\x0d\x0d\x0d\xff\x0b\x0b\x0b\xff\x09\x09\x09\xff\x07\x07\x07\ +\xff\x05\x05\x05\xff\x03\x03\x03\xff\x02\x02\x02\xff\x02\x02\x02\ +\xff\x01\x01\x0d\xff\x01\x01\x40\xff\x01\x01\x8e\xff\x01\x01\xbc\ +\xff\x00\x00\xcd\xff\x00\x00\xd1\xff\x00\x00\xce\xff\x00\x00\xcd\ +\xff\x00\x00\xcd\xff\x00\x00\xcd\xff\x00\x00\xce\xff\x00\x00\xd2\ +\xff\x00\x00\xd3\xff\x00\x00\xd3\xff\x00\x00\xd3\xff\x00\x00\xd1\ +\xff\x01\x01\xc3\xff\x01\x01\xb7\xff\x01\x01\xb2\xff\x01\x01\xb0\ +\xff\x01\x01\xb0\xff\x01\x01\xb1\xff\x01\x01\xb7\xff\x01\x01\xc0\ +\xff\x01\x01\xce\xff\x00\x00\xd1\xff\x00\x00\xd1\xff\x00\x00\xcf\ +\xff\x00\x00\xcb\xff\x00\x00\xc9\xff\x00\x00\xc5\xff\x00\x00\xc3\ +\xff\x00\x00\xc4\xff\x00\x00\xc9\xff\x00\x00\xd1\xff\x00\x00\xd2\ +\xff\x00\x00\xd3\xff\x00\x00\xc7\xff\x01\x01\xa5\xff\x02\x02\x6d\ +\xff\x01\x01\x2c\xff\x02\x02\x09\xff\x02\x02\x03\xff\x03\x03\x03\ +\xff\x05\x05\x05\xff\x06\x06\x06\xff\x09\x09\x09\xff\x0b\x0b\x0b\ +\xff\x0d\x0d\x0d\xff\x10\x10\x10\xff\x12\x12\x12\xff\x15\x15\x15\ +\xff\x18\x18\x18\xff\x1b\x1b\x1b\xff\x1d\x1d\x1d\xff\x1e\x1e\x1e\ +\xff\x21\x21\x21\xfe\x40\x40\x40\xec\x64\x64\x64\x99\x38\x38\x38\ +\x41\x02\x02\x02\x26\x00\x00\x00\x20\x00\x00\x00\x1c\x00\x00\x00\ +\x18\x00\x00\x00\x14\x00\x00\x00\x11\x00\x00\x00\x0d\x00\x00\x00\ +\x0a\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x10\x10\x10\x09\x6c\x6c\x6c\x1b\x83\x81\x82\ +\x66\x65\x65\x65\xda\x2a\x2a\x2a\xfe\x20\x20\x20\xff\x1e\x1e\x1e\ +\xff\x1c\x1c\x1c\xff\x1a\x1a\x1a\xff\x17\x17\x17\xff\x14\x14\x14\ +\xff\x12\x12\x12\xff\x0f\x0f\x0f\xff\x0d\x0d\x0d\xff\x0a\x0a\x0a\ +\xff\x08\x08\x08\xff\x06\x06\x06\xff\x05\x05\x05\xff\x03\x03\x03\ +\xff\x02\x02\x03\xff\x02\x02\x0b\xff\x01\x01\x29\xff\x02\x02\x53\ +\xff\x02\x02\x7f\xff\x01\x01\xb1\xff\x01\x01\xca\xff\x01\x01\xcc\ +\xff\x01\x01\xcc\xff\x01\x01\xcc\xff\x01\x01\xcb\xff\x02\x02\xbb\ +\xff\x02\x02\xb8\xff\x01\x01\xaa\xff\x01\x01\x93\xff\x01\x01\x7d\ +\xff\x01\x01\x60\xff\x01\x01\x4c\xff\x00\x00\x3b\xff\x00\x00\x39\ +\xff\x00\x00\x39\xff\x00\x00\x39\xff\x01\x01\x4d\xff\x01\x01\x62\ +\xff\x02\x02\x87\xff\x02\x02\xa9\xff\x01\x01\xbd\xff\x01\x01\xca\ +\xff\x01\x01\xcd\xff\x01\x01\xcc\xff\x01\x01\xcd\xff\x01\x01\xce\ +\xff\x01\x01\xce\xff\x01\x01\xcc\xff\x01\x01\xbe\xff\x02\x02\xab\ +\xff\x02\x02\x93\xff\x02\x02\x6e\xff\x02\x02\x39\xff\x02\x02\x16\ +\xff\x02\x02\x06\xff\x03\x03\x04\xff\x04\x04\x04\xff\x06\x06\x06\ +\xff\x08\x08\x08\xff\x0a\x0a\x0a\xff\x0d\x0d\x0d\xff\x0f\x0f\x0f\ +\xff\x11\x11\x11\xff\x14\x14\x14\xff\x17\x17\x17\xff\x1a\x1a\x1a\ +\xff\x1c\x1c\x1c\xff\x1e\x1e\x1e\xff\x20\x20\x20\xff\x21\x21\x21\ +\xff\x4c\x4c\x4c\xe4\x6e\x6d\x6e\x85\x2d\x2d\x2d\x38\x00\x00\x00\ +\x24\x00\x00\x00\x1f\x00\x00\x00\x1b\x00\x00\x00\x17\x00\x00\x00\ +\x14\x00\x00\x00\x10\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x07\x45\x3f\x3f\ +\x11\x87\x85\x87\x48\x87\x88\x8a\xcd\x38\x38\x38\xff\x21\x21\x21\ +\xff\x1f\x1f\x1f\xff\x1e\x1e\x1e\xff\x1c\x1c\x1c\xff\x1a\x1a\x1a\ +\xff\x17\x17\x17\xff\x14\x14\x14\xff\x11\x11\x11\xff\x0f\x0f\x0f\ +\xff\x0d\x0d\x0d\xff\x0a\x0a\x0a\xff\x08\x08\x08\xff\x07\x07\x07\ +\xff\x05\x05\x05\xff\x04\x04\x04\xff\x03\x03\x06\xff\x02\x02\x0b\ +\xff\x02\x02\x17\xff\x02\x02\x3c\xff\x02\x02\x5f\xff\x01\x01\x64\ +\xff\x01\x01\x63\xff\x01\x01\x63\xff\x01\x01\x61\xff\x01\x01\x3d\ +\xff\x01\x01\x33\xff\x01\x01\x2c\xff\x00\x00\x1d\xff\x00\x00\x15\ +\xff\x00\x00\x0d\xff\x00\x00\x08\xff\x00\x00\x04\xff\x00\x00\x03\ +\xff\x00\x00\x03\xff\x00\x00\x03\xff\x00\x00\x08\xff\x00\x00\x0e\ +\xff\x00\x00\x1c\xff\x01\x01\x2e\xff\x01\x01\x41\xff\x01\x01\x5c\ +\xff\x01\x01\x65\xff\x01\x01\x63\xff\x01\x01\x63\xff\x01\x01\x63\ +\xff\x01\x01\x64\xff\x01\x01\x5f\xff\x02\x02\x42\xff\x02\x02\x2c\ +\xff\x01\x01\x21\xff\x02\x02\x13\xff\x03\x03\x08\xff\x04\x04\x04\ +\xff\x05\x05\x05\xff\x06\x06\x06\xff\x08\x08\x08\xff\x0a\x0a\x0a\ +\xff\x0d\x0d\x0d\xff\x0f\x0f\x0f\xff\x11\x11\x11\xff\x13\x13\x13\ +\xff\x17\x17\x17\xff\x19\x19\x19\xff\x1c\x1c\x1c\xff\x1e\x1e\x1e\ +\xff\x1f\x1f\x1f\xff\x21\x21\x21\xff\x26\x27\x27\xff\x62\x63\x64\ +\xd6\x6f\x6f\x6f\x6c\x1b\x1b\x1b\x2e\x00\x00\x00\x22\x00\x00\x00\ +\x1e\x00\x00\x00\x1a\x00\x00\x00\x16\x00\x00\x00\x12\x00\x00\x00\ +\x0f\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x07\x0f\x0e\x0e\x0b\x7c\x7c\x7c\x29\x9c\x9c\x9c\xa5\x53\x53\x53\ +\xf6\x26\x26\x26\xfe\x22\x22\x22\xff\x20\x20\x20\xff\x1e\x1e\x1e\ +\xff\x1b\x1b\x1b\xff\x19\x19\x19\xff\x17\x17\x17\xff\x14\x14\x14\ +\xff\x11\x11\x11\xff\x0f\x0f\x0f\xff\x0d\x0d\x0d\xff\x0b\x0b\x0b\ +\xff\x0a\x0a\x0a\xff\x08\x08\x08\xff\x06\x06\x06\xff\x05\x05\x05\ +\xff\x04\x04\x04\xff\x03\x03\x05\xff\x01\x01\x08\xff\x01\x01\x09\ +\xff\x01\x01\x09\xff\x01\x01\x09\xff\x00\x00\x07\xff\x00\x00\x02\ +\xff\x00\x00\x01\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x02\xff\x00\x00\x07\ +\xff\x00\x00\x08\xff\x00\x00\x08\xff\x00\x00\x08\xff\x01\x01\x09\ +\xff\x01\x01\x09\xff\x01\x01\x09\xff\x01\x01\x04\xff\x02\x02\x03\ +\xff\x04\x04\x04\xff\x05\x05\x05\xff\x06\x06\x06\xff\x08\x08\x08\ +\xff\x09\x09\x09\xff\x0b\x0b\x0b\xff\x0d\x0d\x0d\xff\x0f\x0f\x0f\ +\xff\x11\x11\x11\xff\x14\x14\x14\xff\x17\x17\x17\xff\x19\x19\x19\ +\xff\x1b\x1b\x1b\xff\x1d\x1d\x1d\xff\x20\x20\x20\xff\x21\x21\x21\ +\xff\x24\x24\x24\xfe\x3a\x3b\x3c\xf8\x76\x76\x76\xb7\x5c\x5d\x5d\ +\x4b\x09\x09\x09\x27\x00\x00\x00\x20\x00\x00\x00\x1c\x00\x00\x00\ +\x18\x00\x00\x00\x15\x00\x00\x00\x12\x00\x00\x00\x0e\x00\x00\x00\ +\x0c\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x08\x6b\x64\x64\x1b\x95\x96\x96\ +\x71\x69\x6b\x6b\xd9\x37\x37\x37\xf9\x27\x28\x28\xff\x21\x21\x21\ +\xff\x20\x20\x20\xff\x1e\x1e\x1e\xff\x1b\x1b\x1b\xff\x19\x19\x19\ +\xff\x17\x17\x17\xff\x15\x15\x15\xff\x12\x12\x12\xff\x10\x10\x10\ +\xff\x0e\x0e\x0e\xff\x0c\x0c\x0c\xff\x0a\x0a\x0a\xff\x09\x09\x09\ +\xff\x08\x08\x08\xff\x06\x06\x06\xff\x05\x05\x05\xff\x04\x04\x04\ +\xff\x04\x04\x04\xff\x02\x02\x02\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x03\x03\x03\xff\x04\x04\x04\xff\x05\x05\x05\xff\x06\x06\x06\ +\xff\x08\x08\x08\xff\x08\x08\x08\xff\x0a\x0a\x0a\xff\x0c\x0c\x0c\ +\xff\x0e\x0e\x0e\xff\x10\x10\x10\xff\x12\x12\x12\xff\x14\x14\x14\ +\xff\x17\x17\x17\xff\x19\x19\x19\xff\x1b\x1b\x1b\xff\x1d\x1d\x1d\ +\xff\x20\x20\x20\xff\x21\x21\x21\xff\x26\x26\x26\xff\x2c\x2d\x2c\ +\xf9\x4f\x4f\x4f\xdc\x79\x79\x79\x8d\x37\x36\x37\x37\x00\x00\x00\ +\x22\x00\x00\x00\x1e\x00\x00\x00\x1b\x00\x00\x00\x17\x00\x00\x00\ +\x14\x00\x00\x00\x10\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\ +\x09\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\x08\x48\x47\x48\ +\x11\x98\x98\x98\x46\x86\x86\x86\xab\x53\x53\x53\xe8\x34\x34\x34\ +\xfb\x26\x26\x26\xff\x21\x21\x21\xff\x20\x20\x20\xff\x1e\x1e\x1e\ +\xff\x1c\x1c\x1c\xff\x1a\x1a\x1a\xff\x17\x17\x17\xff\x16\x16\x16\ +\xff\x14\x14\x14\xff\x11\x11\x11\xff\x0f\x0f\x0f\xff\x0e\x0e\x0e\ +\xff\x0c\x0c\x0c\xff\x0b\x0b\x0b\xff\x0a\x0a\x0a\xff\x08\x08\x08\ +\xff\x07\x07\x07\xff\x06\x06\x06\xff\x05\x05\x05\xff\x05\x05\x05\ +\xff\x04\x04\x04\xff\x03\x03\x03\xff\x03\x03\x03\xff\x02\x02\x02\ +\xff\x02\x02\x02\xff\x02\x02\x02\xff\x02\x02\x02\xff\x02\x02\x02\ +\xff\x02\x02\x02\xff\x02\x02\x02\xff\x02\x02\x02\xff\x02\x02\x02\ +\xff\x02\x02\x02\xff\x02\x02\x02\xff\x03\x03\x03\xff\x03\x03\x03\ +\xff\x04\x04\x04\xff\x05\x05\x05\xff\x05\x05\x05\xff\x06\x06\x06\ +\xff\x07\x07\x07\xff\x08\x08\x08\xff\x09\x09\x09\xff\x0b\x0b\x0b\ +\xff\x0c\x0c\x0c\xff\x0e\x0e\x0e\xff\x0f\x0f\x0f\xff\x11\x11\x11\ +\xff\x13\x13\x13\xff\x15\x15\x15\xff\x17\x17\x17\xff\x1a\x1a\x1a\ +\xff\x1c\x1c\x1c\xff\x1d\x1d\x1d\xff\x20\x20\x20\xff\x21\x21\x21\ +\xff\x24\x25\x25\xff\x2d\x2d\x2d\xfc\x46\x46\x46\xed\x6c\x6d\x6d\ +\xba\x74\x74\x74\x63\x28\x28\x28\x2c\x00\x00\x00\x1f\x00\x00\x00\ +\x1c\x00\x00\x00\x18\x00\x00\x00\x15\x00\x00\x00\x12\x00\x00\x00\ +\x0f\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x07\x1c\x1c\x1c\x0b\x89\x89\x89\x26\xa0\xa0\xa0\x72\x79\x79\x79\ +\xc2\x4d\x4d\x4d\xef\x32\x32\x32\xfd\x25\x25\x25\xff\x22\x22\x22\ +\xff\x20\x20\x20\xff\x1e\x1e\x1e\xff\x1d\x1d\x1d\xff\x1a\x1a\x1a\ +\xff\x19\x19\x19\xff\x17\x17\x17\xff\x15\x15\x15\xff\x13\x13\x13\ +\xff\x12\x12\x12\xff\x10\x10\x10\xff\x0f\x0f\x0f\xff\x0d\x0d\x0d\ +\xff\x0c\x0c\x0c\xff\x0b\x0b\x0b\xff\x0a\x0a\x0a\xff\x09\x09\x09\ +\xff\x08\x08\x08\xff\x08\x08\x08\xff\x07\x07\x07\xff\x06\x06\x06\ +\xff\x06\x06\x06\xff\x05\x05\x05\xff\x05\x05\x05\xff\x05\x05\x05\ +\xff\x05\x05\x05\xff\x05\x05\x05\xff\x05\x05\x05\xff\x05\x05\x05\ +\xff\x06\x06\x06\xff\x06\x06\x06\xff\x07\x07\x07\xff\x08\x08\x08\ +\xff\x08\x08\x08\xff\x09\x09\x09\xff\x0a\x0a\x0a\xff\x0b\x0b\x0b\ +\xff\x0c\x0c\x0c\xff\x0d\x0d\x0d\xff\x0f\x0f\x0f\xff\x10\x10\x10\ +\xff\x12\x12\x12\xff\x13\x13\x13\xff\x15\x15\x15\xff\x17\x17\x17\ +\xff\x19\x19\x19\xff\x1a\x1a\x1a\xff\x1d\x1d\x1d\xff\x1e\x1e\x1e\ +\xff\x20\x20\x20\xff\x22\x22\x22\xff\x23\x23\x23\xff\x2b\x2b\x2b\ +\xfd\x40\x40\x40\xf2\x5f\x5f\x5f\xcc\x7f\x7f\x80\x88\x5b\x5b\x5c\ +\x3f\x06\x06\x06\x22\x00\x00\x00\x1d\x00\x00\x00\x19\x00\x00\x00\ +\x16\x00\x00\x00\x13\x00\x00\x00\x11\x00\x00\x00\x0e\x00\x00\x00\ +\x0b\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x05\x00\x00\x00\x07\x00\x00\x00\x08\x45\x45\x45\x11\xa0\xa0\xa0\ +\x3d\x96\x96\x96\x8b\x68\x68\x68\xce\x4a\x4b\x4a\xf4\x31\x32\x31\ +\xfe\x25\x25\x25\xff\x23\x23\x23\xff\x21\x21\x21\xff\x1f\x1f\x1f\ +\xff\x1d\x1d\x1d\xff\x1c\x1c\x1c\xff\x1a\x1a\x1a\xff\x18\x18\x18\ +\xff\x17\x17\x17\xff\x15\x15\x15\xff\x14\x14\x14\xff\x12\x12\x12\ +\xff\x12\x12\x12\xff\x10\x10\x10\xff\x0f\x0f\x0f\xff\x0e\x0e\x0e\ +\xff\x0d\x0d\x0d\xff\x0d\x0d\x0d\xff\x0c\x0c\x0c\xff\x0c\x0c\x0c\ +\xff\x0b\x0b\x0b\xff\x0b\x0b\x0b\xff\x0a\x0a\x0a\xff\x0a\x0a\x0a\ +\xff\x0a\x0a\x0a\xff\x0a\x0a\x0a\xff\x0a\x0a\x0a\xff\x0b\x0b\x0b\ +\xff\x0b\x0b\x0b\xff\x0c\x0c\x0c\xff\x0c\x0c\x0c\xff\x0d\x0d\x0d\ +\xff\x0d\x0d\x0d\xff\x0e\x0e\x0e\xff\x0f\x0f\x0f\xff\x10\x10\x10\ +\xff\x11\x11\x11\xff\x12\x12\x12\xff\x14\x14\x14\xff\x15\x15\x15\ +\xff\x17\x17\x17\xff\x18\x18\x18\xff\x1a\x1a\x1a\xff\x1c\x1c\x1c\ +\xff\x1d\x1d\x1d\xff\x1f\x1f\x1f\xff\x21\x21\x21\xff\x23\x23\x23\ +\xff\x24\x24\x24\xff\x2b\x2c\x2c\xff\x3f\x40\x40\xf8\x53\x53\x53\ +\xd5\x76\x76\x76\x9d\x7d\x7d\x7d\x55\x2a\x2a\x2a\x28\x00\x00\x00\ +\x1d\x00\x00\x00\x1a\x00\x00\x00\x17\x00\x00\x00\x14\x00\x00\x00\ +\x11\x00\x00\x00\x0f\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\ +\x08\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x07\x13\x13\x13\ +\x0a\x71\x71\x71\x18\xa7\xa6\xa6\x4e\x8a\x8b\x8a\x92\x69\x69\x69\ +\xcf\x50\x51\x50\xf7\x34\x34\x34\xff\x26\x26\x26\xff\x24\x24\x24\ +\xff\x22\x22\x22\xff\x21\x21\x21\xff\x1f\x1f\x1f\xff\x1e\x1e\x1e\ +\xff\x1c\x1c\x1c\xff\x1a\x1a\x1a\xff\x19\x19\x19\xff\x18\x18\x18\ +\xff\x16\x16\x16\xff\x15\x15\x15\xff\x15\x15\x15\xff\x13\x13\x13\ +\xff\x13\x13\x13\xff\x12\x12\x12\xff\x11\x11\x11\xff\x11\x11\x11\ +\xff\x10\x10\x10\xff\x10\x10\x10\xff\x0f\x0f\x0f\xff\x0f\x0f\x0f\ +\xff\x0f\x0f\x0f\xff\x0f\x0f\x0f\xff\x0f\x0f\x0f\xff\x10\x10\x10\ +\xff\x10\x10\x10\xff\x10\x10\x10\xff\x11\x11\x11\xff\x12\x12\x12\ +\xff\x13\x13\x13\xff\x13\x13\x13\xff\x14\x14\x14\xff\x15\x15\x15\ +\xff\x16\x16\x16\xff\x18\x18\x18\xff\x19\x19\x19\xff\x1a\x1a\x1a\ +\xff\x1c\x1c\x1c\xff\x1d\x1d\x1d\xff\x1f\x1f\x1f\xff\x20\x20\x20\ +\xff\x22\x22\x22\xff\x24\x24\x24\xff\x25\x25\x25\xff\x2e\x2f\x2f\ +\xff\x47\x47\x47\xfa\x5c\x5d\x5d\xd7\x71\x71\x71\xa3\x83\x83\x82\ +\x61\x4b\x4b\x4b\x30\x00\x00\x00\x1d\x00\x00\x00\x1a\x00\x00\x00\ +\x17\x00\x00\x00\x15\x00\x00\x00\x12\x00\x00\x00\x0f\x00\x00\x00\ +\x0d\x00\x00\x00\x0b\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\ +\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\ +\x06\x00\x00\x00\x08\x11\x11\x11\x0b\x7a\x7a\x7a\x1b\xa0\xa0\xa0\ +\x4e\x88\x88\x88\x8a\x71\x71\x72\xc8\x62\x62\x62\xf5\x43\x44\x43\ +\xff\x2c\x2c\x2c\xff\x25\x25\x25\xff\x24\x24\x24\xff\x22\x22\x22\ +\xff\x21\x21\x21\xff\x1f\x1f\x1f\xff\x1e\x1e\x1e\xff\x1d\x1d\x1d\ +\xff\x1c\x1c\x1c\xff\x1b\x1b\x1b\xff\x1a\x1a\x1a\xff\x19\x19\x19\ +\xff\x18\x18\x18\xff\x17\x17\x17\xff\x16\x16\x16\xff\x16\x16\x16\ +\xff\x16\x16\x16\xff\x15\x15\x15\xff\x15\x15\x15\xff\x15\x15\x15\ +\xff\x15\x15\x15\xff\x15\x15\x15\xff\x15\x15\x15\xff\x15\x15\x15\ +\xff\x16\x16\x16\xff\x16\x16\x16\xff\x16\x16\x16\xff\x17\x17\x17\ +\xff\x18\x18\x18\xff\x18\x18\x18\xff\x19\x19\x19\xff\x1b\x1b\x1b\ +\xff\x1c\x1c\x1c\xff\x1d\x1d\x1d\xff\x1e\x1e\x1e\xff\x1f\x1f\x1f\ +\xff\x21\x21\x21\xff\x22\x22\x22\xff\x24\x24\x24\xff\x25\x25\x25\ +\xff\x28\x28\x28\xff\x3c\x3d\x3d\xff\x56\x56\x56\xf6\x65\x65\x66\ +\xd1\x74\x74\x74\x9c\x83\x83\x83\x60\x57\x55\x55\x31\x00\x00\x00\ +\x1c\x00\x00\x00\x19\x00\x00\x00\x17\x00\x00\x00\x15\x00\x00\x00\ +\x12\x00\x00\x00\x10\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\ +\x0a\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x08\x0b\x0b\x0b\ +\x0b\x74\x73\x74\x19\xa0\xa0\xa0\x44\x93\x93\x94\x77\x84\x85\x84\ +\xb1\x7b\x7b\x7b\xe8\x5f\x5f\x5f\xfd\x39\x39\x39\xff\x27\x27\x27\ +\xff\x26\x26\x26\xff\x25\x25\x25\xff\x23\x23\x23\xff\x22\x22\x22\ +\xff\x21\x21\x21\xff\x20\x20\x20\xff\x1f\x1f\x1f\xff\x1e\x1e\x1e\ +\xff\x1d\x1d\x1d\xff\x1d\x1d\x1d\xff\x1c\x1c\x1c\xff\x1b\x1b\x1b\ +\xff\x1b\x1b\x1b\xff\x1a\x1a\x1a\xff\x1a\x1a\x1a\xff\x1a\x1a\x1a\ +\xff\x1a\x1a\x1a\xff\x1a\x1a\x1a\xff\x1a\x1a\x1a\xff\x1a\x1a\x1a\ +\xff\x1b\x1b\x1b\xff\x1b\x1b\x1b\xff\x1c\x1c\x1c\xff\x1c\x1c\x1c\ +\xff\x1d\x1d\x1d\xff\x1e\x1e\x1e\xff\x1f\x1f\x1f\xff\x20\x20\x20\ +\xff\x21\x21\x21\xff\x22\x22\x22\xff\x23\x23\x23\xff\x24\x24\x24\ +\xff\x26\x26\x26\xff\x27\x27\x27\xff\x33\x33\x33\xff\x55\x55\x54\ +\xff\x70\x70\x6f\xeb\x7a\x7b\x7b\xbc\x7e\x7d\x7f\x87\x7f\x7e\x7f\ +\x57\x53\x53\x54\x2f\x00\x00\x00\x1b\x00\x00\x00\x19\x00\x00\x00\ +\x16\x00\x00\x00\x14\x00\x00\x00\x12\x00\x00\x00\x0f\x00\x00\x00\ +\x0e\x00\x00\x00\x0c\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x07\x00\x00\x00\x08\x0d\x0d\x0d\x0b\x55\x55\x55\x14\x99\x99\x99\ +\x31\xa3\xa3\xa3\x5a\x99\x9a\x99\x89\x8f\x8e\x8f\xc6\x79\x79\x7a\ +\xf2\x53\x54\x53\xfe\x33\x33\x33\xff\x28\x28\x28\xff\x27\x27\x27\ +\xff\x26\x26\x26\xff\x25\x25\x25\xff\x24\x24\x24\xff\x23\x23\x23\ +\xff\x22\x22\x22\xff\x22\x22\x22\xff\x21\x21\x21\xff\x20\x20\x20\ +\xff\x20\x20\x20\xff\x20\x20\x20\xff\x1f\x1f\x1f\xff\x1f\x1f\x1f\ +\xff\x1f\x1f\x1f\xff\x1f\x1f\x1f\xff\x1f\x1f\x1f\xff\x20\x20\x20\ +\xff\x20\x20\x20\xff\x20\x20\x20\xff\x21\x21\x21\xff\x22\x22\x22\ +\xff\x22\x22\x22\xff\x23\x23\x23\xff\x24\x24\x24\xff\x25\x25\x25\ +\xff\x26\x26\x26\xff\x27\x27\x27\xff\x28\x28\x28\xff\x2f\x2f\x2f\ +\xff\x4b\x4b\x4c\xff\x71\x71\x71\xf5\x84\x84\x84\xcd\x89\x89\x89\ +\x98\x89\x89\x88\x66\x79\x79\x79\x40\x41\x40\x42\x27\x05\x05\x05\ +\x1a\x00\x00\x00\x17\x00\x00\x00\x15\x00\x00\x00\x13\x00\x00\x00\ +\x11\x00\x00\x00\x0f\x00\x00\x00\x0d\x00\x00\x00\x0b\x00\x00\x00\ +\x0a\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\ +\x05\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x05\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\ +\x0a\x33\x33\x33\x0f\x7c\x7c\x7c\x1d\x99\x98\x99\x34\x96\x96\x96\ +\x53\x93\x93\x93\x80\x97\x96\x96\xbd\x86\x87\x86\xea\x6d\x6e\x6d\ +\xfb\x55\x56\x56\xff\x42\x42\x42\xff\x32\x32\x32\xff\x2a\x2a\x2a\ +\xff\x27\x27\x27\xff\x27\x27\x27\xff\x26\x26\x26\xff\x26\x26\x26\ +\xff\x25\x25\x25\xff\x25\x25\x25\xff\x24\x24\x24\xff\x24\x24\x24\ +\xff\x24\x24\x24\xff\x24\x24\x24\xff\x24\x24\x24\xff\x25\x25\x25\ +\xff\x25\x25\x25\xff\x26\x26\x26\xff\x26\x26\x26\xff\x27\x27\x27\ +\xff\x27\x27\x27\xff\x29\x29\x29\xff\x2e\x2e\x2e\xff\x3d\x3d\x3d\ +\xff\x4c\x4d\x4d\xff\x64\x65\x64\xfe\x80\x80\x80\xf0\x8c\x8d\x8d\ +\xc3\x88\x89\x89\x8f\x85\x84\x85\x60\x7b\x7b\x7c\x41\x5b\x5b\x5a\ +\x2b\x22\x22\x22\x1e\x00\x00\x00\x17\x00\x00\x00\x15\x00\x00\x00\ +\x13\x00\x00\x00\x12\x00\x00\x00\x10\x00\x00\x00\x0e\x00\x00\x00\ +\x0d\x00\x00\x00\x0b\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x07\x00\x00\x00\x08\x00\x00\x00\x09\x00\x00\x00\x0a\x37\x37\x37\ +\x0f\x6b\x6a\x6a\x18\x86\x84\x84\x27\x8d\x8d\x8d\x3a\x93\x93\x93\ +\x59\xa0\xa0\xa0\x85\xa3\xa2\xa2\xbd\x99\x99\x99\xe5\x8a\x8a\x8a\ +\xf7\x7a\x7a\x7a\xff\x69\x69\x6a\xff\x5e\x5e\x5e\xff\x59\x59\x59\ +\xff\x49\x4a\x49\xff\x3e\x3f\x3e\xff\x3e\x3e\x3e\xff\x3e\x3f\x3e\ +\xff\x39\x39\x39\xff\x3d\x3e\x3d\xff\x3d\x3e\x3d\xff\x3e\x3e\x3e\ +\xff\x44\x44\x44\xff\x54\x55\x55\xff\x5c\x5d\x5d\xff\x65\x66\x66\ +\xff\x77\x77\x78\xff\x87\x87\x87\xff\x91\x92\x91\xe8\x9b\x9a\x9a\ +\xbd\x98\x98\x98\x91\x87\x87\x87\x65\x75\x75\x75\x46\x68\x68\x68\ +\x30\x4f\x4f\x4f\x25\x20\x20\x20\x1b\x00\x00\x00\x15\x00\x00\x00\ +\x14\x00\x00\x00\x13\x00\x00\x00\x11\x00\x00\x00\x10\x00\x00\x00\ +\x0e\x00\x00\x00\x0d\x00\x00\x00\x0b\x00\x00\x00\x0a\x00\x00\x00\ +\x09\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\ +\x05\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\ +\x04\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\ +\x08\x00\x00\x00\x09\x00\x00\x00\x0a\x11\x11\x11\x0c\x31\x31\x31\ +\x11\x4a\x4a\x4a\x16\x61\x61\x61\x1c\x6f\x6f\x6f\x26\x85\x85\x85\ +\x34\x99\x99\x99\x4b\xa9\xa9\xa9\x68\xb1\xb1\xb1\x85\xb7\xb6\xb7\ +\xa2\xb5\xb5\xb5\xbc\xb5\xb5\xb5\xd2\xbb\xbb\xbb\xe3\xbc\xbc\xbc\ +\xef\xb4\xb4\xb4\xf4\xb6\xb6\xb6\xf0\xb8\xb8\xb8\xe4\xb5\xb5\xb5\ +\xd4\xb0\xb0\xb0\xbd\xb1\xb1\xb1\xa6\xac\xac\xac\x8a\xa2\xa2\xa2\ +\x6f\x92\x92\x92\x54\x79\x79\x79\x3b\x52\x53\x52\x2b\x45\x45\x45\ +\x23\x38\x38\x38\x1d\x21\x21\x21\x19\x09\x09\x09\x15\x00\x00\x00\ +\x14\x00\x00\x00\x12\x00\x00\x00\x11\x00\x00\x00\x10\x00\x00\x00\ +\x0f\x00\x00\x00\x0e\x00\x00\x00\x0d\x00\x00\x00\x0b\x00\x00\x00\ +\x0a\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\ +\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\ +\x06\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\ +\x09\x00\x00\x00\x0a\x00\x00\x00\x0b\x00\x00\x00\x0c\x00\x00\x00\ +\x0d\x00\x00\x00\x0d\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x00\ +\x10\x00\x00\x00\x11\x00\x00\x00\x11\x00\x00\x00\x12\x00\x00\x00\ +\x12\x00\x00\x00\x13\x00\x00\x00\x13\x00\x00\x00\x14\x00\x00\x00\ +\x14\x00\x00\x00\x14\x00\x00\x00\x14\x00\x00\x00\x14\x00\x00\x00\ +\x13\x00\x00\x00\x13\x00\x00\x00\x12\x00\x00\x00\x12\x00\x00\x00\ +\x11\x00\x00\x00\x11\x00\x00\x00\x10\x00\x00\x00\x0f\x00\x00\x00\ +\x0e\x00\x00\x00\x0e\x00\x00\x00\x0d\x00\x00\x00\x0c\x00\x00\x00\ +\x0b\x00\x00\x00\x0a\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\ +\x06\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\ +\x09\x00\x00\x00\x0a\x00\x00\x00\x0a\x00\x00\x00\x0b\x00\x00\x00\ +\x0b\x00\x00\x00\x0c\x00\x00\x00\x0d\x00\x00\x00\x0d\x00\x00\x00\ +\x0d\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00\ +\x0e\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00\ +\x0e\x00\x00\x00\x0e\x00\x00\x00\x0d\x00\x00\x00\x0d\x00\x00\x00\ +\x0d\x00\x00\x00\x0c\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00\ +\x0a\x00\x00\x00\x0a\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\ +\x05\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00\ +\x06\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\ +\x08\x00\x00\x00\x08\x00\x00\x00\x09\x00\x00\x00\x09\x00\x00\x00\ +\x09\x00\x00\x00\x0a\x00\x00\x00\x0a\x00\x00\x00\x0a\x00\x00\x00\ +\x0a\x00\x00\x00\x0a\x00\x00\x00\x0a\x00\x00\x00\x0a\x00\x00\x00\ +\x0a\x00\x00\x00\x0a\x00\x00\x00\x09\x00\x00\x00\x09\x00\x00\x00\ +\x09\x00\x00\x00\x08\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\ +\x07\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00\ +\x05\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x03\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\ +\x05\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00\ +\x06\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\ +\x07\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\ +\x07\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00\ +\x06\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00\ +\x04\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x03\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\xff\xf8\x00\x00\x00\x00\x00\x00\ +\x00\x3f\xff\xff\xff\xff\xff\xff\xff\xe0\x00\x00\x00\x00\x00\x00\ +\x00\x0f\xff\xff\xff\xff\xff\xff\xff\x80\x00\x00\x00\x00\x00\x00\ +\x00\x03\xff\xff\xff\xff\xff\xff\xfe\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\xff\xff\xff\xff\xff\xff\xfc\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x7f\xff\xff\xff\xff\xff\xf0\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x1f\xff\xff\xff\xff\xff\xe0\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x0f\xff\xff\xff\xff\xff\x80\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x03\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x01\xff\xff\xff\xff\xfe\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\xff\xff\xff\xff\xfc\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x7f\xff\xff\xff\xf8\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x3f\xff\xff\xff\xf0\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x1f\xff\xff\xff\xe0\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x0f\xff\xff\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x03\xff\xff\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x03\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x01\xff\xff\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\xff\xff\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x7f\xff\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x3f\xff\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x1f\xff\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x1f\xff\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x0f\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x07\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x07\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x03\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x03\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x07\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x07\xff\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x0f\xff\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x1f\xff\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x1f\xff\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x3f\xff\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x7f\xff\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x01\xff\xff\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x03\xff\xff\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x03\xff\xff\xff\xe0\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x07\xff\xff\xff\xf0\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x0f\xff\xff\xff\xf8\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x3f\xff\xff\xff\xfc\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x7f\xff\xff\xff\xfe\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x01\xff\xff\xff\xff\xff\x80\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x03\xff\xff\xff\xff\xff\xe0\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x0f\xff\xff\xff\xff\xff\xf0\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x1f\xff\xff\xff\xff\xff\xfc\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x7f\xff\xff\xff\xff\xff\xfe\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\xff\xff\xff\xff\xff\xff\xff\x80\x00\x00\x00\x00\x00\x00\ +\x00\x03\xff\xff\xff\xff\xff\xff\xff\xe0\x00\x00\x00\x00\x00\x00\ +\x00\x0f\xff\xff\xff\xff\xff\xff\xff\xf8\x00\x00\x00\x00\x00\x00\ +\x00\x3f\xff\xff\xff\xff\xff\xff\xff\xfe\x00\x00\x00\x00\x00\x00\ +\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\x80\x00\x00\x00\x00\x00\ +\x03\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf0\x00\x00\x00\x00\x00\ +\x1f\xff\xff\xff\xff\x28\x00\x00\x00\x40\x00\x00\x00\x80\x00\x00\ +\x00\x01\x00\x20\x00\x00\x00\x00\x00\x00\x40\x00\x00\x13\x0b\x00\ +\x00\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\ +\x08\x00\x00\x00\x0a\x00\x00\x00\x0d\x00\x00\x00\x0f\x00\x00\x00\ +\x11\x00\x00\x00\x12\x00\x00\x00\x14\x00\x00\x00\x16\x00\x00\x00\ +\x16\x00\x00\x00\x17\x00\x00\x00\x16\x00\x00\x00\x15\x00\x00\x00\ +\x14\x00\x00\x00\x13\x00\x00\x00\x12\x00\x00\x00\x10\x00\x00\x00\ +\x0e\x00\x00\x00\x0c\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\ +\x05\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x04\x00\x00\x00\x06\x00\x00\x00\x09\x00\x00\x00\x0c\x00\x00\x00\ +\x0f\x00\x00\x00\x13\x00\x00\x00\x16\x00\x00\x00\x18\x00\x00\x00\ +\x1a\x00\x00\x00\x1c\x00\x00\x00\x1e\x00\x00\x00\x1f\x00\x00\x00\ +\x20\x00\x00\x00\x21\x00\x00\x00\x20\x00\x00\x00\x1f\x00\x00\x00\ +\x1e\x00\x00\x00\x1d\x00\x00\x00\x1c\x00\x00\x00\x1a\x00\x00\x00\ +\x17\x00\x00\x00\x14\x00\x00\x00\x11\x00\x00\x00\x0e\x00\x00\x00\ +\x0b\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\ +\x0a\x00\x00\x00\x0e\x00\x00\x00\x12\x00\x00\x00\x16\x00\x00\x00\ +\x1a\x00\x00\x00\x1f\x00\x00\x00\x24\x00\x00\x00\x28\x00\x00\x00\ +\x2e\x00\x00\x00\x33\x01\x00\x00\x38\x02\x00\x00\x3a\x02\x00\x01\ +\x3b\x01\x00\x00\x39\x00\x00\x00\x37\x00\x00\x00\x33\x00\x00\x00\ +\x30\x00\x00\x00\x2d\x00\x00\x00\x2a\x00\x00\x00\x27\x00\x00\x00\ +\x24\x00\x00\x00\x21\x00\x00\x00\x1d\x00\x00\x00\x18\x00\x00\x00\ +\x14\x00\x00\x00\x10\x00\x00\x00\x0d\x00\x00\x00\x09\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x00\x0e\x00\x00\x00\ +\x13\x00\x00\x00\x19\x00\x00\x00\x20\x01\x00\x00\x2a\x08\x06\x07\ +\x37\x14\x13\x14\x46\x23\x20\x21\x57\x2e\x2c\x2d\x66\x39\x36\x37\ +\x74\x41\x3e\x3f\x80\x46\x43\x45\x8a\x47\x44\x45\x8f\x45\x43\x44\ +\x8e\x43\x41\x41\x88\x3c\x39\x3a\x7f\x31\x2e\x2f\x74\x25\x23\x24\ +\x68\x19\x17\x18\x5a\x0c\x0a\x0b\x4c\x02\x02\x02\x3f\x00\x00\x00\ +\x36\x00\x00\x00\x30\x00\x00\x00\x2b\x00\x00\x00\x26\x00\x00\x00\ +\x21\x00\x00\x00\x1b\x00\x00\x00\x16\x00\x00\x00\x11\x00\x00\x00\ +\x0d\x00\x00\x00\x09\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\ +\x09\x00\x00\x00\x0e\x00\x00\x00\x13\x00\x00\x00\x1a\x01\x01\x01\ +\x25\x0d\x0b\x0c\x37\x21\x1e\x1f\x51\x38\x35\x37\x6f\x4f\x4d\x4e\ +\x8d\x65\x63\x64\xa7\x76\x74\x75\xbd\x83\x81\x82\xcc\x8c\x8b\x8c\ +\xd6\x94\x92\x93\xde\x99\x97\x98\xe4\x9a\x99\x9a\xe7\x99\x98\x98\ +\xe6\x97\x96\x96\xe2\x90\x8f\x8f\xdc\x87\x86\x87\xd3\x7c\x7b\x7c\ +\xc9\x6c\x6a\x6c\xb8\x58\x56\x57\xa2\x41\x40\x40\x89\x28\x26\x26\ +\x6e\x12\x11\x11\x56\x04\x04\x04\x43\x00\x00\x00\x36\x00\x00\x00\ +\x2e\x00\x00\x00\x28\x00\x00\x00\x22\x00\x00\x00\x1c\x00\x00\x00\ +\x16\x00\x00\x00\x11\x00\x00\x00\x0c\x00\x00\x00\x07\x00\x00\x00\ +\x04\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x07\x00\x00\x00\x0b\x00\x00\x00\ +\x10\x00\x00\x00\x18\x05\x04\x04\x26\x18\x16\x17\x3f\x34\x31\x32\ +\x64\x50\x4d\x4e\x8f\x6e\x6c\x6d\xb5\x8c\x8a\x8b\xd1\xa1\xa0\xa1\ +\xe4\xb1\xb0\xb1\xf0\xbb\xba\xbb\xf6\xc4\xc2\xc3\xfa\xc9\xc8\xc9\ +\xfc\xcd\xcc\xcd\xfd\xd0\xcf\xcf\xfe\xd1\xd0\xd0\xfe\xd0\xd0\xd0\ +\xfe\xcf\xce\xce\xfd\xcc\xcb\xcb\xfc\xc7\xc6\xc6\xfb\xc1\xc0\xc1\ +\xf9\xb7\xb6\xb7\xf4\xaa\xa9\xa9\xec\x98\x97\x97\xdf\x7e\x7d\x7c\ +\xcb\x5e\x5c\x5c\xad\x3d\x3c\x3d\x8a\x1f\x1e\x1e\x66\x09\x08\x08\ +\x4a\x00\x00\x00\x39\x00\x00\x00\x30\x00\x00\x00\x28\x00\x00\x00\ +\x22\x00\x00\x00\x1b\x00\x00\x00\x14\x00\x00\x00\x0e\x00\x00\x00\ +\x09\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x04\x00\x00\x00\x08\x00\x00\x00\x0d\x00\x00\x00\x14\x02\x01\x01\ +\x21\x19\x16\x17\x3c\x3c\x3a\x3b\x68\x62\x60\x61\x9b\x83\x80\x81\ +\xc7\x9e\x9c\x9d\xe4\xb5\xb4\xb4\xf4\xc7\xc6\xc6\xfa\xd2\xd1\xd2\ +\xfd\xd8\xd7\xd8\xfe\xdd\xdc\xdc\xff\xdf\xdf\xdf\xff\xe2\xe1\xe1\ +\xff\xe3\xe3\xe3\xff\xe4\xe4\xe4\xff\xe5\xe5\xe5\xff\xe5\xe5\xe5\ +\xff\xe4\xe4\xe4\xff\xe3\xe2\xe3\xff\xe1\xe0\xe0\xff\xdf\xde\xde\ +\xff\xdb\xda\xdb\xfe\xd6\xd5\xd5\xfe\xcf\xce\xce\xfc\xc2\xc0\xc0\ +\xf8\xac\xab\xac\xef\x91\x90\x91\xdd\x71\x6e\x6f\xbd\x4a\x47\x48\ +\x93\x22\x20\x21\x68\x07\x06\x06\x49\x00\x00\x00\x38\x00\x00\x00\ +\x2e\x00\x00\x00\x26\x00\x00\x00\x1e\x00\x00\x00\x17\x00\x00\x00\ +\x10\x00\x00\x00\x0a\x00\x00\x00\x06\x00\x00\x00\x03\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x05\x00\x00\x00\ +\x08\x00\x00\x00\x0e\x00\x00\x00\x17\x0f\x0d\x0d\x2e\x34\x32\x33\ +\x5b\x5e\x5d\x5d\x95\x88\x87\x87\xc9\xaa\xa9\xaa\xe9\xc1\xc0\xc0\ +\xf7\xd0\xcf\xcf\xfd\xd9\xd8\xd9\xfe\xe0\xdf\xdf\xfe\xe4\xe3\xe4\ +\xff\xe7\xe6\xe7\xff\xea\xe9\xe9\xff\xec\xeb\xeb\xff\xed\xed\xed\ +\xff\xee\xee\xee\xff\xef\xef\xef\xff\xef\xef\xef\xff\xef\xef\xef\ +\xff\xef\xef\xef\xff\xee\xed\xee\xff\xed\xec\xec\xff\xeb\xea\xeb\ +\xff\xe9\xe8\xe8\xff\xe6\xe6\xe6\xff\xe3\xe3\xe3\xff\xde\xdd\xde\ +\xfe\xd6\xd5\xd6\xfe\xca\xc9\xca\xfc\xb8\xb7\xb8\xf4\x9b\x9a\x9b\ +\xe1\x70\x6f\x6f\xbd\x41\x40\x40\x8c\x18\x16\x16\x5e\x02\x01\x01\ +\x41\x00\x00\x00\x33\x00\x00\x00\x2a\x00\x00\x00\x21\x00\x00\x00\ +\x1a\x00\x00\x00\x12\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x00\ +\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x09\x00\x00\x00\ +\x0e\x02\x02\x02\x1b\x22\x20\x22\x3f\x53\x50\x52\x7b\x80\x7e\x7f\ +\xbb\xa6\xa5\xa6\xe5\xc3\xc2\xc3\xf8\xd5\xd4\xd4\xfd\xdd\xdd\xdd\ +\xfe\xe3\xe3\xe3\xff\xe8\xe7\xe8\xff\xec\xeb\xec\xff\xef\xef\xef\ +\xff\xf2\xf1\xf2\xff\xf4\xf3\xf4\xff\xf6\xf5\xf5\xff\xf7\xf6\xf7\ +\xff\xf8\xf7\xf8\xff\xf9\xf8\xf8\xff\xf9\xf9\xf9\xff\xf9\xf9\xf9\ +\xff\xf8\xf8\xf8\xff\xf7\xf7\xf7\xff\xf6\xf6\xf6\xff\xf5\xf5\xf5\ +\xff\xf3\xf3\xf3\xff\xee\xee\xee\xff\xe9\xe8\xe9\xff\xe8\xe8\xe8\ +\xff\xe6\xe6\xe6\xff\xe1\xe1\xe1\xff\xda\xda\xda\xfe\xcf\xce\xce\ +\xfc\xb8\xb7\xb7\xf3\x93\x92\x92\xdb\x64\x62\x62\xad\x30\x2e\x2e\ +\x76\x09\x07\x08\x4c\x00\x00\x00\x38\x00\x00\x00\x2d\x00\x00\x00\ +\x24\x00\x00\x00\x1b\x00\x00\x00\x13\x00\x00\x00\x0c\x00\x00\x00\ +\x06\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x04\x00\x00\x00\x09\x00\x00\x00\x0f\x06\x05\x06\ +\x21\x34\x31\x32\x4f\x6a\x68\x69\x96\x9a\x98\x99\xd4\xbd\xbc\xbc\ +\xf4\xd2\xd2\xd2\xfd\xde\xdd\xde\xff\xe5\xe4\xe5\xff\xea\xea\xea\ +\xff\xef\xee\xef\xff\xf3\xf2\xf3\xff\xf6\xf5\xf5\xff\xf8\xf8\xf8\ +\xff\xf9\xfa\xfa\xff\xfa\xfa\xfa\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\ +\xff\xfd\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfc\xfc\xfc\xff\xfc\xfb\xfb\xff\xfb\xfb\xfb\ +\xff\xfa\xfa\xfa\xff\xdd\xdd\xdd\xff\xaf\xaf\xaf\xff\xbd\xbd\xbd\ +\xff\xe1\xe1\xe2\xff\xec\xec\xed\xff\xe8\xe8\xe8\xff\xe2\xe2\xe2\ +\xfe\xda\xda\xda\xfe\xca\xc9\xc9\xfb\xad\xab\xac\xec\x7e\x7d\x7d\ +\xc5\x44\x43\x43\x8b\x12\x10\x11\x57\x00\x00\x00\x3c\x00\x00\x00\ +\x30\x00\x00\x00\x26\x00\x00\x00\x1b\x00\x00\x00\x13\x00\x00\x00\ +\x0c\x00\x00\x00\x07\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x08\x00\x00\x00\x0f\x14\x12\x12\x25\x44\x42\x42\ +\x5c\x7a\x77\x78\xa8\xa9\xa8\xa8\xe2\xcb\xca\xca\xfa\xdb\xdb\xdc\ +\xff\xe4\xe3\xe4\xff\xea\xe9\xea\xff\xf0\xef\xef\xff\xf4\xf3\xf4\ +\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\ +\xff\xfc\xfc\xfc\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfc\xfc\xfc\xff\xd0\xd0\xd0\xff\x6e\x6e\x6e\xff\x59\x59\x59\ +\xff\x9e\x9f\x9f\xff\xdf\xdf\xdf\xff\xf1\xf1\xf1\xff\xed\xed\xed\ +\xfe\xe7\xe7\xe7\xfe\xe1\xe0\xe0\xff\xd6\xd5\xd5\xfe\xbd\xbc\xbc\ +\xf5\x90\x8f\x90\xd4\x55\x53\x54\x9a\x1a\x1a\x1a\x5f\x00\x00\x00\ +\x3f\x00\x00\x00\x30\x00\x00\x00\x26\x00\x00\x00\x1b\x00\x00\x00\ +\x13\x00\x00\x00\x0c\x00\x00\x00\x06\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\ +\x07\x00\x00\x00\x0e\x17\x15\x15\x26\x4f\x4d\x4d\x63\x86\x84\x85\ +\xb3\xb3\xb2\xb3\xea\xd2\xd1\xd1\xfc\xe1\xe0\xe0\xff\xe8\xe7\xe8\ +\xff\xee\xed\xee\xff\xf4\xf3\xf3\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\ +\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xea\xea\xea\xff\x99\x99\x99\xff\x3f\x3f\x3f\ +\xff\x41\x42\x42\xff\x93\x93\x93\xff\xdb\xda\xda\xff\xf3\xf3\xf3\ +\xff\xf2\xf1\xf1\xff\xeb\xea\xeb\xff\xe5\xe4\xe4\xff\xdb\xdb\xdb\ +\xfe\xc6\xc5\xc5\xf9\x9d\x9c\x9c\xdd\x5f\x5e\x5e\xa2\x20\x1f\x1f\ +\x63\x01\x00\x00\x3f\x00\x00\x00\x30\x00\x00\x00\x26\x00\x00\x00\ +\x1b\x00\x00\x00\x12\x00\x00\x00\x0a\x00\x00\x00\x05\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\ +\x0b\x11\x10\x10\x21\x50\x4d\x4d\x60\x8b\x8a\x8a\xb6\xba\xb9\xb9\ +\xed\xd6\xd5\xd6\xfd\xe3\xe2\xe2\xfe\xeb\xea\xea\xff\xf1\xf0\xf1\ +\xff\xf6\xf6\xf6\xff\xfa\xfa\xfa\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfe\xfe\xfe\xff\xfc\xfc\xfc\xff\xe0\xe0\xe0\xff\x84\x84\x84\ +\xff\x2b\x2b\x2b\xff\x33\x33\x32\xff\x82\x82\x82\xff\xca\xcb\xcb\ +\xff\xec\xec\xec\xff\xf3\xf2\xf3\xff\xef\xee\xee\xff\xe7\xe7\xe7\ +\xff\xdf\xde\xde\xfe\xcc\xcb\xcb\xfa\xa3\xa2\xa2\xe0\x63\x61\x62\ +\xa3\x1e\x1d\x1e\x61\x00\x00\x00\x3d\x00\x00\x00\x2f\x00\x00\x00\ +\x24\x00\x00\x00\x19\x00\x00\x00\x10\x00\x00\x00\x09\x00\x00\x00\ +\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x09\x09\x07\x08\ +\x1a\x49\x47\x48\x55\x8b\x89\x8a\xb0\xbc\xbb\xbb\xed\xd9\xd8\xd8\ +\xfe\xe6\xe5\xe5\xff\xed\xec\xec\xff\xf2\xf2\xf2\xff\xf7\xf7\xf7\ +\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xfc\xfc\xff\xd0\xd0\xd0\ +\xff\x63\x64\x64\xff\x15\x16\x16\xff\x21\x21\x21\xff\x5b\x5b\x5b\ +\xff\x99\x99\x99\xff\xcd\xcd\xcd\xff\xec\xec\xec\xff\xf1\xf1\xf1\ +\xff\xea\xea\xea\xff\xe2\xe1\xe1\xfe\xd0\xcf\xcf\xfa\xa6\xa4\xa5\ +\xde\x62\x61\x62\x9d\x1a\x19\x19\x5a\x00\x00\x00\x3a\x00\x00\x00\ +\x2d\x00\x00\x00\x21\x00\x00\x00\x16\x00\x00\x00\x0d\x00\x00\x00\ +\x07\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x03\x00\x00\x00\x07\x00\x00\x00\x12\x3e\x3b\x3c\ +\x43\x84\x81\x83\xa1\xba\xb9\xb9\xe9\xd9\xd9\xd9\xfd\xe6\xe6\xe6\ +\xff\xee\xed\xed\xff\xf4\xf3\xf3\xff\xf8\xf8\xf8\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf5\xf5\xf6\ +\xff\xb0\xb0\xb2\xff\x41\x41\x42\xff\x07\x07\x08\xff\x0b\x0b\x0b\ +\xff\x2a\x2a\x2a\xff\x70\x70\x70\xff\xca\xca\xca\xff\xf1\xf1\xf1\ +\xff\xee\xee\xee\xff\xe6\xe5\xe5\xff\xdd\xdc\xdc\xfe\xc9\xc9\xc9\ +\xf9\x99\x99\x99\xd7\x4f\x4e\x4e\x90\x0d\x0c\x0c\x50\x00\x00\x00\ +\x35\x00\x00\x00\x29\x00\x00\x00\x1e\x00\x00\x00\x13\x00\x00\x00\ +\x0b\x00\x00\x00\x05\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x05\x00\x00\x00\x0d\x2c\x2a\x2a\x2f\x79\x76\x77\ +\x8a\xb4\xb2\xb3\xdf\xd8\xd7\xd7\xfc\xe7\xe6\xe7\xff\xee\xee\xee\ +\xff\xf4\xf4\xf4\xff\xf8\xf8\xf8\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xf9\xf9\xf9\xff\xf6\xf6\xf6\ +\xff\xfb\xfb\xfb\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xfe\xfe\xff\ +\xff\xe8\xe8\xe9\xff\x92\x92\x92\xff\x2c\x2c\x2c\xff\x02\x02\x02\ +\xff\x02\x02\x02\xff\x2a\x2a\x2a\xff\x83\x83\x83\xff\xb3\xb3\xb3\ +\xff\xaf\xaf\xaf\xff\xa6\xa6\xa5\xff\x9d\x9d\x9d\xff\x93\x93\x93\ +\xfe\x7c\x7b\x7b\xf6\x49\x49\x49\xcc\x17\x15\x16\x7d\x01\x00\x00\ +\x45\x00\x00\x00\x32\x00\x00\x00\x25\x00\x00\x00\x19\x00\x00\x00\ +\x0f\x00\x00\x00\x08\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x03\x00\x00\x00\x08\x18\x16\x17\x1e\x65\x63\x64\x6a\xaa\xa9\xa9\ +\xcd\xd5\xd4\xd4\xfa\xe7\xe6\xe6\xff\xee\xed\xee\xff\xf4\xf4\xf4\ +\xff\xf9\xf9\xf9\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xf8\xf8\xf8\ +\xff\xeb\xeb\xeb\xff\xd8\xd8\xd8\xff\xb7\xb7\xb8\xff\xa9\xa9\xa9\ +\xff\xca\xca\xca\xff\xf2\xf2\xf2\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xfd\xfd\xfd\xff\xd8\xd8\xd8\xff\x69\x69\x69\xff\x10\x10\x10\ +\xff\x00\x00\x00\xff\x0a\x0a\x0a\xff\x28\x29\x29\xff\x39\x3a\x3a\ +\xff\x36\x36\x36\xff\x30\x31\x30\xff\x2b\x2c\x2b\xff\x28\x27\x27\ +\xff\x23\x22\x22\xfe\x17\x16\x17\xf1\x0d\x0c\x0c\xb7\x09\x08\x07\ +\x66\x01\x01\x01\x3d\x00\x00\x00\x2d\x00\x00\x00\x20\x00\x00\x00\ +\x15\x00\x00\x00\x0c\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x05\x06\x05\x06\x0f\x4b\x49\x4a\x45\x97\x96\x96\xad\xcc\xcc\xcc\ +\xf1\xe5\xe4\xe4\xff\xed\xed\xed\xff\xf3\xf3\xf3\xff\xf8\xf8\xf8\ +\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfc\xfc\xfc\xff\xe3\xe3\xe3\ +\xff\xa0\xa0\xa0\xff\x71\x71\x71\xff\x58\x58\x58\xff\x4a\x4a\x4a\ +\xff\x75\x76\x76\xff\xd6\xd6\xd6\xff\xfc\xfc\xfc\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xf3\xf3\xf3\xff\x93\x93\x93\xff\x1f\x20\x20\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x04\x03\x04\xe3\x0a\x09\x09\ +\x98\x06\x05\x06\x51\x00\x00\x00\x35\x00\x00\x00\x28\x00\x00\x00\ +\x1b\x00\x00\x00\x10\x00\x00\x00\x08\x00\x00\x00\x04\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\ +\x08\x29\x28\x28\x24\x7c\x7b\x7c\x80\xbd\xbc\xbd\xde\xe0\xdf\xe0\ +\xfc\xec\xeb\xeb\xff\xf2\xf2\xf2\xff\xf7\xf7\xf7\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfc\xfc\xfc\xff\xdc\xdc\xdc\ +\xff\x85\x85\x85\xff\x5e\x5e\x5e\xff\x7a\x7b\x7b\xff\x7d\x7e\x7e\ +\xff\x83\x84\x84\xff\xd3\xd3\xd3\xff\xfb\xfb\xfb\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfa\xfa\xfa\xff\xac\xac\xac\xff\x30\x30\x30\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xf7\x06\x05\x05\ +\xc9\x09\x08\x08\x74\x01\x01\x01\x40\x00\x00\x00\x2f\x00\x00\x00\ +\x21\x00\x00\x00\x15\x00\x00\x00\x0c\x00\x00\x00\x06\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x04\x09\x06\x07\ +\x0f\x5c\x5a\x5b\x4c\xa8\xa7\xa8\xba\xd6\xd6\xd7\xf5\xe9\xe8\xe9\ +\xfe\xf0\xf0\xf0\xff\xf6\xf6\xf6\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xf4\xf3\xf4\ +\xff\xd2\xd2\xd2\xff\xc7\xc8\xc7\xff\xe1\xe1\xe2\xff\xe7\xe7\xe7\ +\xff\xde\xdf\xdf\xff\xf1\xf1\xf1\xff\xfd\xfd\xfd\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xc4\xc4\xc5\xff\x46\x46\x46\ +\xff\x03\x03\x03\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x02\x02\x02\ +\xe9\x08\x07\x07\xa3\x06\x05\x06\x53\x00\x00\x00\x35\x00\x00\x00\ +\x27\x00\x00\x00\x1a\x00\x00\x00\x0f\x00\x00\x00\x09\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x32\x2f\x31\ +\x21\x8b\x89\x89\x82\xc8\xc7\xc7\xe1\xe5\xe5\xe5\xfd\xee\xee\xee\ +\xff\xf5\xf4\xf4\xff\xf9\xf9\xf9\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfa\xfa\xfa\ +\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xff\xff\xda\xda\xda\xff\x62\x63\x63\ +\xff\x0b\x0b\x0b\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x00\x00\x00\ +\xf8\x05\x05\x05\xcc\x09\x08\x09\x74\x01\x01\x01\x3f\x00\x00\x00\ +\x2d\x00\x00\x00\x1f\x00\x00\x00\x13\x00\x00\x00\x0c\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x0b\x51\x4e\x4f\ +\x42\xa6\xa4\xa4\xb5\xd9\xd9\xd9\xf5\xec\xec\xec\xfe\xf2\xf2\xf2\ +\xff\xf8\xf7\xf8\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfb\xfb\xfb\xff\xe5\xe5\xe5\xff\xbf\xbf\xbf\ +\xff\xb3\xb3\xb3\xff\xd8\xd8\xd8\xff\xfa\xfa\xfa\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\xff\xf7\xf7\xf7\xff\xec\xec\xec\ +\xff\xe2\xe2\xe2\xff\xe0\xe0\xe0\xff\xe4\xe4\xe4\xff\xea\xea\xea\ +\xff\xee\xee\xee\xff\xef\xef\xef\xff\xed\xed\xed\xff\xe4\xe4\xe4\ +\xff\xe3\xe4\xe3\xff\xec\xec\xeb\xff\xed\xed\xec\xff\xe7\xe7\xe7\ +\xff\xde\xde\xde\xff\xdc\xdc\xdd\xff\xcf\xcf\xd0\xff\x71\x72\x72\ +\xff\x13\x14\x14\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfd\x02\x02\x02\xe8\x08\x07\x07\x9d\x05\x04\x04\x4e\x00\x00\x00\ +\x32\x00\x00\x00\x25\x00\x00\x00\x17\x00\x00\x00\x0e\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x04\x09\x08\x08\x16\x3c\x3c\x3c\ +\x6e\x90\x90\x90\xd9\xd7\xd7\xd7\xfd\xf0\xf0\xf0\xff\xf6\xf6\xf6\ +\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xf9\xf9\xf9\xff\xd5\xd5\xd5\xff\x8b\x8c\x8c\xff\x48\x48\x48\ +\xff\x4c\x4d\x4d\xff\xa8\xa8\xa8\xff\xf4\xf4\xf4\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfc\xfc\xfc\xff\xe9\xe9\xe9\xff\xb9\xba\xba\xff\x8d\x8d\x8d\ +\xff\x74\x75\x75\xff\x70\x71\x71\xff\x79\x79\x79\xff\x86\x86\x86\ +\xff\x90\x91\x90\xff\x93\x93\x93\xff\x8e\x8e\x8d\xff\x7b\x7b\x7b\ +\xff\x79\x79\x79\xff\x8a\x8b\x8a\xff\x8d\x8d\x8d\xff\x7f\x7f\x80\ +\xff\x6e\x6e\x6f\xff\x69\x69\x69\xff\x6d\x6d\x6e\xff\x44\x45\x43\ +\xff\x0e\x0e\x0d\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xfe\x00\x00\x00\xf7\x05\x04\x04\xc1\x06\x06\x06\x66\x00\x00\x00\ +\x38\x00\x00\x00\x29\x00\x00\x00\x1b\x00\x00\x00\x11\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x05\x0f\x0d\x0e\x2a\x18\x17\x18\ +\x98\x60\x60\x60\xed\xc6\xc6\xc6\xfe\xee\xee\xee\xff\xf4\xf4\xf4\ +\xff\xf7\xf7\xf7\xff\xf8\xf8\xf8\xff\xf9\xf9\xf9\xff\xf6\xf6\xf6\ +\xff\xd2\xd2\xd2\xff\x7a\x7a\x7a\xff\x28\x28\x28\xff\x1c\x1c\x1c\ +\xff\x5d\x5e\x5e\xff\xbf\xbf\xbf\xff\xf7\xf7\xf7\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfd\xfd\ +\xff\xe9\xe9\xe9\xff\xa0\xa0\xa0\xff\x46\x46\x46\xff\x1c\x1b\x1b\ +\xff\x0f\x0f\x0f\xff\x0e\x0e\x0e\xff\x11\x11\x11\xff\x16\x17\x17\ +\xff\x1c\x1c\x1e\xff\x1e\x1e\x24\xff\x1b\x1b\x25\xff\x13\x13\x20\ +\xff\x11\x12\x25\xff\x1a\x1a\x32\xff\x1a\x1a\x38\xff\x14\x14\x34\ +\xff\x0d\x0d\x2d\xff\x0c\x0c\x2b\xff\x0f\x0f\x2a\xff\x0a\x0a\x1e\ +\xff\x02\x02\x0f\xff\x00\x00\x07\xff\x00\x00\x03\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfc\x02\x01\x02\xdc\x06\x05\x05\x84\x02\x02\x02\ +\x41\x00\x00\x00\x2c\x00\x00\x00\x1e\x00\x00\x00\x15\x00\x00\x00\ +\x00\x00\x00\x00\x02\x0a\x08\x0a\x09\x0e\x0d\x0e\x45\x0a\x0a\x0a\ +\xbd\x3f\x3f\x40\xf8\x95\x95\x95\xff\xb5\xb5\xb5\xff\xb9\xb9\xb9\ +\xff\xbb\xbb\xbb\xff\xbc\xbc\xbc\xff\xbc\xbc\xbc\xff\xae\xae\xae\ +\xff\x6f\x6f\x6f\xff\x21\x21\x21\xff\x12\x12\x12\xff\x5d\x5e\x5d\ +\xff\xc1\xc1\xc1\xff\xf3\xf3\xf3\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xfd\xfd\xfd\xff\xea\xea\xea\ +\xff\xa4\xa4\xa4\xff\x3e\x3e\x3e\xff\x06\x06\x06\xff\x00\x00\x00\ +\xff\x00\x00\x01\xff\x00\x00\x06\xff\x00\x00\x0e\xff\x00\x00\x1b\ +\xff\x00\x00\x28\xff\x00\x00\x39\xff\x00\x00\x4a\xff\x00\x00\x59\ +\xff\x00\x00\x67\xff\x00\x00\x71\xff\x00\x00\x7b\xff\x00\x00\x81\ +\xff\x00\x00\x82\xff\x00\x00\x82\xff\x00\x00\x7a\xff\x00\x00\x6c\ +\xff\x00\x00\x5b\xff\x00\x00\x45\xff\x00\x00\x2c\xff\x00\x00\x14\ +\xff\x00\x00\x05\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfe\x01\x00\x00\xed\x05\x04\x05\xa2\x05\x03\x05\ +\x4e\x00\x00\x00\x30\x00\x00\x00\x22\x00\x00\x00\x18\x00\x00\x00\ +\x01\x00\x00\x00\x02\x11\x0e\x10\x0f\x0d\x0c\x0d\x63\x06\x06\x06\ +\xd7\x14\x14\x14\xfd\x2f\x2f\x2f\xff\x39\x39\x39\xff\x3a\x3a\x3a\ +\xff\x3a\x3a\x3a\xff\x3a\x3b\x3b\xff\x3a\x3b\x3b\xff\x30\x31\x31\ +\xff\x15\x15\x15\xff\x08\x08\x08\xff\x42\x42\x42\xff\xb1\xb2\xb1\ +\xff\xf5\xf5\xf5\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfc\xfc\xfc\ +\xff\xf7\xf7\xf7\xff\xf6\xf6\xf6\xff\xe9\xe9\xe9\xff\xa7\xa7\xa6\ +\xff\x42\x42\x41\xff\x09\x09\x0a\xff\x00\x00\x07\xff\x00\x00\x12\ +\xff\x00\x00\x27\xff\x00\x00\x44\xff\x00\x00\x62\xff\x00\x00\x7c\ +\xff\x00\x00\x90\xff\x00\x00\xa0\xff\x00\x00\xad\xff\x00\x00\xb5\ +\xff\x00\x00\xbc\xff\x00\x00\xbf\xff\x00\x00\xc2\xff\x00\x00\xc4\ +\xff\x00\x00\xc4\xff\x00\x00\xc4\xff\x00\x00\xc2\xff\x00\x00\xbe\ +\xff\x00\x00\xb6\xff\x00\x00\xa9\xff\x00\x00\x90\xff\x00\x00\x66\ +\xff\x00\x00\x34\xff\x00\x00\x11\xff\x00\x00\x02\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xf6\x04\x04\x04\xbc\x06\x06\x06\ +\x5e\x00\x00\x00\x34\x00\x00\x00\x25\x00\x00\x00\x1a\x00\x00\x00\ +\x01\x00\x00\x00\x02\x15\x13\x15\x1a\x0e\x0d\x0e\x81\x03\x03\x03\ +\xe7\x00\x00\x00\xfe\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x1f\x1f\x1f\xff\x89\x89\x89\xff\xe8\xe8\xe8\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xfc\xfc\xff\xe3\xe3\xe3\ +\xff\xb6\xb6\xb6\xff\xaa\xab\xaa\xff\x94\x95\x95\xff\x43\x43\x48\ +\xff\x09\x09\x19\xff\x00\x00\x26\xff\x00\x00\x46\xff\x00\x00\x6a\ +\xff\x00\x00\x8d\xff\x00\x00\xaa\xff\x00\x00\xba\xff\x00\x00\xc3\ +\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc6\xff\x00\x00\xb9\ +\xff\x00\x00\x95\xff\x00\x00\x5e\xff\x00\x00\x29\xff\x00\x00\x0a\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfb\x04\x03\x03\xd0\x07\x06\x07\ +\x71\x00\x00\x00\x38\x00\x00\x00\x27\x00\x00\x00\x1c\x00\x00\x00\ +\x01\x00\x00\x00\x04\x15\x14\x15\x27\x0c\x0c\x0c\x9b\x02\x02\x02\ +\xf1\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xff\x39\x39\x39\xff\xb5\xb5\xb5\xff\xf9\xf9\xf9\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xea\xea\xea\xff\x9b\x9b\x9b\ +\xff\x3e\x3e\x3f\xff\x27\x27\x2e\xff\x21\x21\x3a\xff\x09\x09\x42\ +\xff\x00\x00\x60\xff\x00\x00\x8a\xff\x00\x00\xaa\xff\x00\x00\xbe\ +\xff\x00\x00\xc6\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc6\xff\x00\x00\xb4\xff\x00\x00\x86\xff\x00\x00\x46\ +\xff\x00\x00\x13\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x02\x01\x02\xdf\x06\x05\x06\ +\x83\x02\x02\x02\x3e\x00\x00\x00\x2a\x00\x00\x00\x1e\x00\x00\x00\ +\x02\x08\x06\x08\x04\x17\x16\x16\x35\x0a\x0a\x0a\xb0\x01\x01\x01\ +\xf7\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xff\x3b\x3b\x3b\xff\xb6\xb6\xb6\xff\xf9\xf9\xf9\ +\xff\xfe\xfe\xfd\xff\xee\xee\xed\xff\xad\xad\xad\xff\x44\x44\x4b\ +\xff\x06\x06\x21\xff\x00\x00\x3d\xff\x00\x00\x6d\xff\x00\x00\x9b\ +\xff\x00\x00\xb8\xff\x00\x00\xc6\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc2\xff\x00\x00\x9c\ +\xff\x00\x00\x52\xff\x00\x00\x14\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x02\x02\x02\xe9\x08\x07\x08\ +\x94\x05\x05\x05\x44\x00\x00\x00\x2b\x00\x00\x00\x20\x00\x00\x00\ +\x01\x0c\x0a\x0b\x05\x15\x14\x14\x40\x09\x09\x09\xbf\x01\x01\x01\ +\xfa\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x1e\x1e\x1e\xff\x79\x79\x79\xff\xc6\xc6\xc6\ +\xff\xd0\xd0\xd0\xff\xa0\xa0\xa4\xff\x4a\x4a\x61\xff\x0c\x0c\x4c\ +\xff\x00\x00\x72\xff\x00\x00\xa0\xff\x00\x00\xbb\xff\x00\x00\xc8\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc4\ +\xff\x00\x00\x9e\xff\x00\x00\x4b\xff\x00\x00\x0c\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\xef\x08\x07\x07\ +\xa1\x05\x05\x05\x4a\x00\x00\x00\x2c\x00\x00\x00\x21\x00\x00\x00\ +\x01\x0b\x08\x09\x06\x0e\x0e\x0e\x48\x06\x06\x06\xc8\x00\x00\x00\ +\xfc\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x04\x04\x04\xff\x20\x20\x1f\xff\x48\x48\x4a\ +\xff\x50\x50\x5e\xff\x2e\x2e\x60\xff\x0a\x0a\x76\xff\x00\x00\x9e\ +\xff\x00\x00\xbc\xff\x00\x00\xc7\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xc3\xff\x00\x00\x88\xff\x00\x00\x28\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xf3\x03\x03\x03\ +\xa9\x03\x02\x02\x4d\x00\x00\x00\x2c\x00\x00\x00\x21\x00\x00\x00\ +\x01\x08\x05\x06\x06\x07\x06\x06\x4c\x02\x02\x02\xce\x00\x00\x00\ +\xfe\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x04\xff\x05\x05\x21\ +\xff\x06\x06\x59\xff\x02\x02\x92\xff\x00\x00\xb7\xff\x00\x00\xc6\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xa9\xff\x00\x00\x48\xff\x00\x00\x06\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xf4\x00\x00\x00\ +\xae\x00\x00\x00\x4e\x00\x00\x00\x2c\x00\x00\x00\x21\x00\x00\x00\ +\x01\x07\x04\x04\x06\x02\x01\x01\x4e\x00\x00\x00\xcf\x00\x00\x00\ +\xfe\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x09\xff\x00\x00\x2f\xff\x00\x00\x71\ +\xff\x00\x00\xab\xff\x00\x00\xc3\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xca\xff\x00\x00\xb9\xff\x00\x00\x64\xff\x00\x00\x0d\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xf5\x00\x00\x00\ +\xaf\x00\x00\x00\x4e\x00\x00\x00\x2c\x00\x00\x00\x21\x00\x00\x00\ +\x01\x07\x05\x05\x06\x02\x02\x02\x4d\x00\x00\x00\xcf\x00\x00\x00\ +\xfe\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x0f\xff\x00\x00\x43\xff\x00\x00\x8a\xff\x00\x00\xb9\ +\xff\x00\x00\xc7\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc6\xff\x00\x00\xc1\ +\xff\x00\x00\xc0\xff\x00\x00\xc4\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xca\xff\x00\x00\xbf\xff\x00\x00\x73\xff\x00\x00\x14\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xf5\x00\x00\x00\ +\xaf\x00\x00\x00\x4e\x00\x00\x00\x2b\x00\x00\x00\x20\x00\x00\x00\ +\x01\x0a\x06\x08\x05\x06\x06\x07\x49\x02\x02\x02\xcc\x00\x00\x00\ +\xfd\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x15\ +\xff\x00\x00\x51\xff\x00\x00\x9a\xff\x00\x00\xc1\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc4\ +\xff\x00\x00\xb7\xff\x00\x00\xa5\xff\x00\x00\x90\xff\x00\x00\x7d\ +\xff\x00\x00\x7f\xff\x00\x00\xa7\xff\x00\x00\xc5\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xca\xff\x00\x00\xbf\xff\x00\x00\x73\xff\x00\x00\x13\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xf4\x01\x00\x01\ +\xac\x01\x00\x01\x4c\x00\x00\x00\x2a\x00\x00\x00\x1f\x00\x00\x00\ +\x00\x0d\x0b\x0c\x04\x10\x0f\x11\x43\x07\x07\x07\xc5\x00\x00\x00\ +\xfc\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x1a\xff\x00\x00\x5b\ +\xff\x00\x00\xa2\xff\x00\x00\xc4\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc7\xff\x00\x00\xbf\xff\x00\x00\xaa\xff\x00\x00\x89\ +\xff\x00\x00\x64\xff\x00\x00\x42\xff\x00\x00\x2b\xff\x00\x00\x21\ +\xff\x00\x00\x47\xff\x00\x00\x99\xff\x00\x00\xc5\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xb5\xff\x00\x00\x5d\xff\x00\x00\x0b\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xf2\x05\x04\x05\ +\xa5\x04\x03\x03\x47\x00\x00\x00\x28\x00\x00\x00\x1d\x00\x00\x00\ +\x01\x10\x10\x0f\x03\x1b\x1a\x1b\x39\x0b\x0b\x0b\xb9\x01\x01\x01\ +\xfa\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x01\xff\x00\x00\x1a\xff\x00\x00\x5f\xff\x00\x00\xa6\ +\xff\x00\x00\xc5\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc6\xff\x00\x00\xb9\ +\xff\x00\x00\x9d\xff\x00\x00\x73\xff\x00\x00\x49\xff\x00\x00\x27\ +\xff\x00\x00\x12\xff\x00\x00\x06\xff\x00\x00\x02\xff\x00\x00\x14\ +\xff\x00\x00\x68\xff\x00\x00\xb6\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc6\xff\x00\x00\xc0\xff\x00\x00\xc2\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xba\xff\x00\x00\x85\xff\x00\x00\x2f\xff\x00\x00\x03\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\xed\x09\x09\x09\ +\x9a\x07\x06\x07\x42\x00\x00\x00\x25\x00\x00\x00\x1b\x00\x00\x00\ +\x00\x0a\x09\x09\x01\x1f\x1e\x1f\x2b\x0d\x0d\x0d\xa7\x02\x02\x02\ +\xf6\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x17\xff\x00\x00\x5d\xff\x00\x00\xa6\xff\x00\x00\xc5\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc7\xff\x00\x00\xb9\xff\x00\x00\x94\xff\x00\x00\x64\ +\xff\x00\x00\x3a\xff\x00\x00\x19\xff\x00\x00\x09\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x21\ +\xff\x00\x00\x87\xff\x00\x00\xc4\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xbf\xff\x00\x00\x9a\xff\x00\x00\x98\xff\x00\x00\xbd\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc1\xff\x00\x00\xa5\ +\xff\x00\x00\x6f\xff\x00\x00\x32\xff\x00\x00\x09\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x03\x03\x03\xe5\x09\x09\x09\ +\x89\x06\x06\x06\x3a\x00\x00\x00\x23\x00\x00\x00\x18\x00\x00\x00\ +\x00\x00\x00\x00\x00\x1f\x1d\x1f\x1d\x11\x10\x11\x8f\x05\x05\x05\ +\xee\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0d\ +\xff\x00\x00\x51\xff\x00\x00\xa3\xff\x00\x00\xc5\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xbc\ +\xff\x00\x00\x9c\xff\x00\x00\x68\xff\x00\x00\x31\xff\x00\x00\x11\ +\xff\x00\x00\x05\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x08\xff\x00\x00\x3e\ +\xff\x00\x00\xa0\xff\x00\x00\xc7\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc0\xff\x00\x00\x82\xff\x00\x00\x61\xff\x00\x00\x9c\ +\xff\x00\x00\xbf\xff\x00\x00\xab\xff\x00\x00\x7f\xff\x00\x00\x46\ +\xff\x00\x00\x19\xff\x00\x00\x05\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xfd\x04\x04\x04\xd8\x08\x08\x08\ +\x75\x02\x02\x02\x32\x00\x00\x00\x21\x00\x00\x00\x16\x00\x00\x00\ +\x00\x00\x00\x00\x00\x21\x21\x21\x11\x13\x13\x13\x72\x07\x07\x07\ +\xe2\x01\x01\x01\xfe\x00\x00\x00\xff\x00\x00\x02\xff\x00\x00\x2f\ +\xff\x00\x00\x8f\xff\x00\x00\xc3\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc5\xff\x00\x00\xab\xff\x00\x00\x74\ +\xff\x00\x00\x3b\xff\x00\x00\x16\xff\x00\x00\x04\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x05\ +\xff\x00\x00\x0f\xff\x00\x00\x21\xff\x00\x00\x44\xff\x00\x00\x85\ +\xff\x00\x00\xbc\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xc6\xff\x00\x00\x8b\xff\x00\x00\x44\xff\x00\x00\x5c\ +\xff\x00\x00\x72\xff\x00\x00\x4d\xff\x00\x00\x22\xff\x00\x00\x09\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xf9\x08\x07\x07\xc7\x0b\x0a\x0a\ +\x61\x00\x00\x01\x2c\x00\x00\x00\x1d\x00\x00\x00\x13\x06\x06\x06\ +\x00\xd0\xc8\xd1\x00\x1f\x1d\x1e\x07\x16\x15\x16\x51\x0a\x0a\x0a\ +\xcc\x04\x04\x04\xfc\x01\x01\x00\xff\x00\x00\x06\xff\x00\x00\x4c\ +\xff\x00\x00\xae\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc7\xff\x00\x00\xa8\xff\x00\x00\x5e\xff\x00\x00\x1f\ +\xff\x00\x00\x06\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\ +\xff\x00\x00\x07\xff\x00\x00\x14\xff\x00\x00\x29\xff\x00\x00\x44\ +\xff\x00\x00\x64\xff\x00\x00\x84\xff\x00\x00\xa4\xff\x00\x00\xbe\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\x99\xff\x00\x00\x3b\xff\x00\x00\x18\ +\xff\x00\x00\x17\xff\x00\x00\x0a\xff\x00\x00\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x05\x05\x05\xf3\x09\x09\x09\xad\x0a\x09\x09\ +\x4b\x00\x00\x00\x26\x00\x00\x00\x19\x00\x00\x00\x10\x03\x03\x03\ +\x00\x00\x00\x00\x00\x11\x0f\x10\x02\x1a\x1a\x1a\x32\x0e\x0e\x0e\ +\xad\x06\x06\x06\xf5\x03\x03\x02\xff\x02\x01\x05\xff\x00\x00\x40\ +\xff\x00\x00\xa3\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xca\ +\xff\x00\x00\xc0\xff\x00\x00\x7b\xff\x00\x00\x20\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x04\xff\x00\x00\x13\xff\x00\x00\x2b\ +\xff\x00\x00\x4a\xff\x00\x00\x6c\xff\x00\x00\x8b\xff\x00\x00\xa5\ +\xff\x00\x00\xb8\xff\x00\x00\xc2\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\x9e\xff\x00\x00\x3a\xff\x00\x00\x04\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\ +\xff\x04\x04\x04\xfe\x07\x07\x07\xe6\x0c\x0c\x0c\x8e\x07\x07\x07\ +\x3a\x00\x00\x00\x21\x00\x00\x00\x15\x00\x00\x00\x0d\x01\x01\x01\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x23\x22\x23\x18\x16\x16\x16\ +\x83\x0b\x0b\x0b\xe7\x05\x06\x05\xfe\x03\x03\x03\xff\x01\x01\x1c\ +\xff\x00\x00\x6a\xff\x00\x00\xaf\xff\x00\x00\xc8\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xcc\ +\xff\x00\x00\xbb\xff\x00\x00\x66\xff\x00\x00\x0e\xff\x00\x00\x04\ +\xff\x00\x00\x1b\xff\x00\x00\x41\xff\x00\x00\x6a\xff\x00\x00\x8d\ +\xff\x00\x00\xa7\xff\x00\x00\xba\xff\x00\x00\xc4\xff\x00\x00\xc8\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\x97\xff\x00\x00\x34\xff\x00\x00\x02\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x04\x04\x04\ +\xff\x06\x06\x06\xfb\x0b\x0a\x0a\xd0\x0e\x0d\x0d\x6b\x03\x03\x03\ +\x2d\x00\x00\x00\x1d\x00\x00\x00\x11\x00\x00\x00\x09\x00\x00\x00\ +\x00\x05\x05\x05\x00\x00\x00\x00\x00\x29\x27\x28\x09\x22\x21\x21\ +\x54\x12\x12\x12\xcb\x08\x09\x09\xfb\x05\x05\x04\xff\x02\x02\x06\ +\xff\x00\x00\x24\xff\x00\x00\x60\xff\x00\x00\x95\xff\x00\x00\xb0\ +\xff\x00\x00\xba\xff\x00\x00\xbf\xff\x00\x00\xc3\xff\x00\x00\xc6\ +\xff\x00\x00\xb6\xff\x00\x00\x66\xff\x00\x00\x17\xff\x00\x00\x2e\ +\xff\x00\x00\x71\xff\x00\x00\xa0\xff\x00\x00\xb9\xff\x00\x00\xc4\ +\xff\x00\x00\xc8\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc4\xff\x00\x00\x87\xff\x00\x00\x27\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x03\x03\x03\xff\x06\x06\x06\ +\xfe\x0a\x0a\x0a\xf2\x10\x10\x10\xad\x0e\x0d\x0d\x4b\x00\x00\x00\ +\x24\x00\x00\x00\x17\x00\x00\x00\x0d\x00\x00\x00\x07\x00\x00\x00\ +\x00\x01\x01\x01\x00\x00\x00\x00\x00\x11\x10\x0f\x02\x2e\x2d\x2e\ +\x29\x1b\x1b\x1c\x9d\x0d\x0e\x0e\xef\x07\x07\x07\xfe\x04\x04\x03\ +\xff\x01\x01\x04\xff\x00\x00\x15\xff\x00\x00\x33\xff\x00\x00\x4e\ +\xff\x00\x00\x5f\xff\x00\x00\x6c\xff\x00\x00\x75\xff\x00\x00\x78\ +\xff\x00\x00\x71\xff\x00\x00\x46\xff\x00\x00\x30\xff\x00\x00\x77\ +\xff\x00\x00\xb9\xff\x00\x00\xc8\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xba\xff\x00\x00\x69\xff\x00\x00\x15\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x03\x03\x03\xff\x06\x06\x06\xff\x09\x09\x09\ +\xfc\x0e\x0e\x0f\xde\x14\x14\x14\x80\x09\x08\x08\x34\x00\x00\x00\ +\x1e\x00\x00\x00\x13\x00\x00\x00\x0a\x00\x00\x00\x04\x00\x00\x00\ +\x00\x00\x00\x00\x00\x07\x07\x07\x00\x00\x00\x00\x00\x32\x31\x32\ +\x0e\x25\x25\x26\x63\x14\x15\x15\xd4\x0b\x0b\x0b\xfb\x07\x07\x07\ +\xff\x03\x03\x03\xff\x00\x00\x00\xff\x00\x00\x03\xff\x00\x00\x08\ +\xff\x00\x00\x0e\xff\x00\x00\x14\xff\x00\x00\x17\xff\x00\x00\x19\ +\xff\x00\x00\x18\xff\x00\x00\x15\xff\x00\x00\x46\xff\x00\x00\xa5\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc7\ +\xff\x00\x00\xc6\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xa4\xff\x00\x00\x46\xff\x00\x00\x07\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xff\x05\x05\x05\xff\x08\x08\x08\xfe\x0c\x0c\x0c\ +\xf4\x13\x13\x14\xb7\x14\x14\x14\x54\x02\x01\x01\x26\x00\x00\x00\ +\x18\x00\x00\x00\x0e\x00\x00\x00\x07\x00\x00\x00\x03\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x01\x01\x00\x00\x00\x00\x00\x20\x20\x21\ +\x03\x30\x30\x30\x2e\x1f\x1f\x1f\xa1\x11\x11\x11\xf0\x0a\x0a\x0a\ +\xfe\x06\x06\x06\xff\x02\x02\x02\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x07\xff\x00\x00\x4a\xff\x00\x00\xac\ +\xff\x00\x00\xcb\xff\x00\x00\xc7\xff\x00\x00\xb8\xff\x00\x00\x99\ +\xff\x00\x00\x92\xff\x00\x00\xab\xff\x00\x00\xba\xff\x00\x00\xc0\ +\xff\x00\x00\xc4\xff\x00\x00\xc7\xff\x00\x00\xc8\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc4\ +\xff\x00\x00\x84\xff\x00\x00\x25\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x04\x04\x04\xff\x08\x08\x08\xff\x0c\x0c\x0c\xfc\x12\x12\x12\ +\xdd\x17\x17\x17\x82\x0d\x0c\x0d\x34\x00\x00\x00\x1d\x00\x00\x00\ +\x13\x00\x00\x00\x0a\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x05\x05\ +\x00\x38\x37\x37\x0d\x2e\x2e\x2e\x5d\x1c\x1c\x1c\xcc\x10\x10\x10\ +\xfa\x0a\x0a\x0a\xff\x06\x06\x06\xff\x02\x02\x02\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x04\xff\x00\x00\x3d\xff\x00\x00\xa2\ +\xff\x00\x00\xca\xff\x00\x00\xb5\xff\x00\x00\x79\xff\x00\x00\x3b\ +\xff\x00\x00\x31\xff\x00\x00\x4e\xff\x00\x00\x65\xff\x00\x00\x76\ +\xff\x00\x00\x85\xff\x00\x00\x97\xff\x00\x00\xb5\xff\x00\x00\xc7\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xb3\ +\xff\x00\x00\x5b\xff\x00\x00\x0f\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x03\x03\x03\ +\xff\x08\x08\x08\xff\x0c\x0c\x0c\xff\x11\x11\x11\xf1\x19\x19\x19\ +\xaf\x17\x17\x17\x4e\x03\x03\x03\x22\x00\x00\x00\x16\x00\x00\x00\ +\x0e\x00\x00\x00\x07\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x2c\x2b\x2b\x02\x3e\x3f\x3e\x23\x2b\x2b\x2b\x8b\x19\x18\x19\ +\xe7\x0f\x0e\x0f\xfe\x09\x09\x09\xff\x05\x05\x05\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x2a\xff\x00\x00\x8f\ +\xff\x00\x00\xc5\xff\x00\x00\x93\xff\x00\x00\x34\xff\x00\x00\x09\ +\xff\x00\x00\x13\xff\x00\x00\x22\xff\x00\x00\x27\xff\x00\x00\x2b\ +\xff\x00\x00\x39\xff\x00\x00\x58\xff\x00\x00\x99\xff\x00\x00\xc4\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc7\xff\x00\x00\x95\ +\xff\x00\x00\x34\xff\x00\x00\x03\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\xff\x07\x07\x07\ +\xff\x0c\x0c\x0c\xff\x11\x11\x11\xfa\x19\x19\x19\xd0\x1f\x1f\x1f\ +\x70\x0e\x0e\x0e\x2d\x00\x00\x00\x1a\x00\x00\x00\x10\x00\x00\x00\ +\x09\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x45\x45\x45\x07\x3c\x3b\x3c\x40\x27\x26\x27\ +\xb1\x17\x17\x17\xf3\x0e\x0e\x0e\xff\x09\x09\x09\xff\x05\x05\x05\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x19\xff\x00\x00\x76\ +\xff\x00\x00\xbc\xff\x00\x00\x89\xff\x00\x00\x30\xff\x00\x00\x33\ +\xff\x00\x00\x61\xff\x00\x00\x75\xff\x00\x00\x6e\xff\x00\x00\x62\ +\xff\x00\x00\x6a\xff\x00\x00\x84\xff\x00\x00\xac\xff\x00\x00\xc6\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xca\xff\x00\x00\xbe\xff\x00\x00\x6f\ +\xff\x00\x00\x18\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xff\x07\x07\x07\xff\x0b\x0b\x0b\ +\xff\x11\x11\x11\xfd\x18\x18\x18\xe3\x20\x20\x20\x91\x18\x18\x18\ +\x3b\x01\x01\x01\x1d\x00\x00\x00\x13\x00\x00\x00\x0b\x00\x00\x00\ +\x05\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x49\x48\x49\x0f\x38\x38\x38\ +\x5f\x25\x25\x25\xc8\x17\x17\x17\xf8\x0f\x0f\x0f\xff\x0a\x0a\x0a\ +\xff\x05\x05\x05\xff\x02\x02\x02\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0c\xff\x00\x00\x59\ +\xff\x00\x00\xb2\xff\x00\x00\xa7\xff\x00\x00\x77\xff\x00\x00\x8f\ +\xff\x00\x00\xb7\xff\x00\x00\xc2\xff\x00\x00\xbf\xff\x00\x00\xba\ +\xff\x00\x00\xbd\xff\x00\x00\xc3\xff\x00\x00\xc7\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc4\ +\xff\x00\x00\xbb\xff\x00\x00\xbb\xff\x00\x00\xc1\xff\x00\x00\xc6\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xa5\xff\x00\x00\x45\ +\xff\x00\x00\x07\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x03\x03\x03\xff\x07\x07\x07\xff\x0c\x0c\x0c\xff\x11\x11\x11\ +\xfe\x19\x19\x19\xed\x22\x22\x21\xaa\x20\x20\x20\x4f\x07\x07\x07\ +\x20\x00\x00\x00\x15\x00\x00\x00\x0d\x00\x00\x00\x07\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xff\x00\x37\x37\x37\x01\x4b\x4c\x4b\ +\x1c\x3a\x3a\x3a\x76\x26\x26\x26\xd5\x18\x18\x18\xfb\x10\x10\x10\ +\xff\x0a\x0a\x0a\xff\x06\x06\x06\xff\x02\x02\x02\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x04\xff\x00\x00\x3c\ +\xff\x00\x00\xa0\xff\x00\x00\xc5\xff\x00\x00\xbd\xff\x00\x00\xc4\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xb8\ +\xff\x00\x00\x89\xff\x00\x00\x70\xff\x00\x00\x82\xff\x00\x00\xac\ +\xff\x00\x00\xc7\xff\x00\x00\xc4\xff\x00\x00\x7f\xff\x00\x00\x22\ +\xff\x00\x00\x01\xff\x00\x00\x00\xff\x01\x01\x01\xff\x03\x03\x03\ +\xff\x08\x08\x08\xff\x0c\x0c\x0c\xff\x12\x12\x12\xfe\x1a\x1a\x1a\ +\xf2\x24\x24\x24\xba\x28\x28\x28\x60\x11\x11\x11\x26\x00\x00\x00\ +\x16\x00\x00\x00\x0e\x00\x00\x00\x08\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x0d\x0d\x0d\x00\xff\xff\xff\x00\x4c\x4c\x4c\ +\x04\x51\x50\x51\x29\x3c\x3c\x3c\x86\x28\x28\x28\xdb\x19\x19\x19\ +\xfb\x11\x11\x11\xff\x0b\x0b\x0b\xff\x06\x06\x06\xff\x02\x02\x02\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x24\ +\xff\x00\x00\x84\xff\x00\x00\xc6\xff\x00\x00\xcb\xff\x00\x00\xc9\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc8\ +\xff\x00\x00\xc8\xff\x00\x00\xc7\xff\x00\x00\xc4\xff\x00\x00\xb0\ +\xff\x00\x00\x69\xff\x00\x00\x24\xff\x00\x00\x31\xff\x00\x00\x86\ +\xff\x00\x00\xc2\xff\x00\x00\xae\xff\x00\x00\x52\xff\x00\x00\x0c\ +\xff\x00\x00\x00\xff\x02\x02\x02\xff\x05\x05\x05\xff\x09\x09\x09\ +\xff\x0e\x0e\x0e\xff\x14\x14\x14\xfe\x1b\x1b\x1c\xf4\x26\x26\x26\ +\xc3\x2b\x2b\x2b\x6d\x1b\x1a\x1a\x2c\x00\x00\x00\x17\x00\x00\x00\ +\x10\x00\x00\x00\x09\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x53\x53\x53\x06\x55\x55\x56\x30\x40\x40\x41\x8b\x2b\x2b\x2b\ +\xdb\x1b\x1b\x1b\xfa\x13\x13\x13\xfe\x0d\x0d\x0d\xff\x08\x08\x08\ +\xff\x04\x04\x04\xff\x02\x02\x02\xff\x00\x00\x00\xff\x00\x00\x0f\ +\xff\x00\x00\x5a\xff\x00\x00\xb0\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc7\xff\x00\x00\xb5\xff\x00\x00\x97\ +\xff\x00\x00\x63\xff\x00\x00\x36\xff\x00\x00\x4d\xff\x00\x00\x95\ +\xff\x00\x00\xb0\xff\x00\x00\x75\xff\x00\x00\x24\xff\x01\x01\x03\ +\xff\x03\x03\x02\xff\x06\x06\x06\xff\x0a\x0a\x0a\xff\x10\x10\x10\ +\xff\x16\x16\x16\xfe\x1f\x1f\x1f\xf3\x29\x29\x2a\xc3\x2e\x2e\x2f\ +\x71\x1f\x1f\x1f\x2f\x01\x01\x01\x17\x00\x00\x00\x0f\x00\x00\x00\ +\x0a\x00\x00\x00\x05\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x64\x63\x64\x06\x59\x59\x59\x2f\x43\x43\x43\ +\x83\x2f\x2e\x2e\xd3\x1f\x1f\x1f\xf8\x15\x15\x15\xfe\x10\x10\x10\ +\xff\x0b\x0b\x0b\xff\x07\x07\x07\xff\x03\x03\x03\xff\x01\x01\x04\ +\xff\x00\x00\x28\xff\x00\x00\x73\xff\x00\x00\xaa\xff\x00\x00\xbe\ +\xff\x00\x00\xc3\xff\x00\x00\xc3\xff\x00\x00\xbf\xff\x00\x00\xb9\ +\xff\x00\x00\xaf\xff\x00\x00\xa4\xff\x00\x00\xa0\xff\x00\x00\xa4\ +\xff\x00\x00\xb0\xff\x00\x00\xba\xff\x00\x00\xaf\xff\x00\x00\x98\ +\xff\x00\x00\x85\xff\x00\x00\x85\xff\x00\x00\x93\xff\x00\x00\x96\ +\xff\x00\x00\x6d\xff\x00\x00\x2c\xff\x02\x02\x08\xff\x05\x05\x04\ +\xff\x09\x09\x09\xff\x0d\x0d\x0d\xff\x12\x12\x12\xff\x18\x18\x18\ +\xfd\x22\x22\x22\xef\x2e\x2e\x2e\xbc\x35\x35\x35\x6b\x23\x23\x24\ +\x2e\x03\x03\x03\x17\x00\x00\x00\x0f\x00\x00\x00\x09\x00\x00\x00\ +\x05\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x71\x71\x71\x00\x5d\x5c\x5c\x06\x5c\x5b\x5b\ +\x26\x4b\x4b\x4b\x73\x38\x38\x38\xc5\x26\x26\x26\xf2\x1a\x1a\x1a\ +\xfe\x14\x14\x14\xff\x0f\x0f\x0f\xff\x0a\x0a\x0a\xff\x06\x06\x06\ +\xff\x03\x03\x0a\xff\x01\x01\x25\xff\x00\x00\x4f\xff\x00\x00\x73\ +\xff\x00\x00\x81\xff\x00\x00\x7e\xff\x00\x00\x72\xff\x00\x00\x63\ +\xff\x00\x00\x4f\xff\x00\x00\x3f\xff\x00\x00\x3a\xff\x00\x00\x40\ +\xff\x00\x00\x53\xff\x00\x00\x6d\xff\x00\x00\x7c\xff\x00\x00\x7d\ +\xff\x00\x00\x7c\xff\x00\x00\x76\xff\x00\x00\x64\xff\x01\x01\x44\ +\xff\x03\x03\x1e\xff\x04\x04\x09\xff\x07\x07\x07\xff\x0c\x0c\x0c\ +\xff\x11\x11\x11\xff\x16\x16\x16\xfe\x1c\x1c\x1c\xfb\x27\x28\x28\ +\xe6\x35\x35\x35\xad\x3b\x3b\x3b\x5e\x24\x25\x24\x28\x03\x03\x03\ +\x15\x00\x00\x00\x0e\x00\x00\x00\x09\x00\x00\x00\x05\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x31\x29\x28\x00\x5f\x5d\x5e\ +\x02\x69\x69\x69\x19\x59\x59\x59\x59\x42\x42\x42\xac\x2e\x2e\x2e\ +\xe5\x21\x21\x21\xf9\x19\x19\x19\xfe\x13\x13\x13\xff\x0e\x0e\x0e\ +\xff\x0a\x0a\x0a\xff\x07\x07\x09\xff\x05\x05\x0d\xff\x03\x03\x18\ +\xff\x01\x01\x1d\xff\x00\x00\x1a\xff\x00\x00\x13\xff\x00\x00\x0c\ +\xff\x00\x00\x07\xff\x00\x00\x04\xff\x00\x00\x03\xff\x00\x00\x04\ +\xff\x00\x00\x08\xff\x00\x00\x12\xff\x00\x00\x1a\xff\x00\x00\x1e\ +\xff\x01\x01\x1e\xff\x02\x02\x19\xff\x04\x04\x11\xff\x06\x06\x0b\ +\xff\x09\x09\x09\xff\x0c\x0c\x0c\xff\x10\x10\x10\xff\x16\x16\x16\ +\xfe\x1c\x1c\x1c\xfd\x24\x24\x24\xf3\x2f\x2f\x2f\xd4\x3c\x3c\x3c\ +\x93\x3e\x3e\x3e\x4a\x20\x20\x20\x20\x01\x01\x01\x12\x00\x00\x00\ +\x0d\x00\x00\x00\x08\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x07\x08\x00\xff\xff\xff\ +\x00\x3a\x39\x39\x01\x69\x69\x69\x0e\x62\x63\x63\x3c\x51\x51\x51\ +\x86\x3d\x3d\x3d\xc8\x2d\x2c\x2d\xed\x20\x21\x20\xfb\x19\x1a\x19\ +\xfe\x14\x14\x14\xff\x11\x11\x11\xff\x0e\x0e\x0d\xff\x0b\x0b\x0a\ +\xff\x09\x09\x08\xff\x06\x06\x06\xff\x05\x05\x04\xff\x04\x04\x02\ +\xff\x03\x03\x02\xff\x02\x02\x02\xff\x02\x02\x02\xff\x02\x02\x02\ +\xff\x03\x03\x02\xff\x03\x03\x03\xff\x04\x04\x04\xff\x05\x05\x05\ +\xff\x07\x07\x06\xff\x0a\x0a\x09\xff\x0d\x0d\x0b\xff\x0f\x0f\x0e\ +\xff\x12\x12\x12\xff\x17\x17\x16\xff\x1c\x1c\x1c\xfd\x23\x23\x23\ +\xf7\x2f\x2f\x2f\xe2\x3c\x3c\x3c\xb4\x45\x45\x45\x71\x3c\x3c\x3c\ +\x35\x15\x15\x15\x18\x00\x00\x00\x10\x00\x00\x00\x0b\x00\x00\x00\ +\x06\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x59\x59\x59\x06\x71\x71\x71\ +\x20\x64\x63\x64\x56\x4f\x4f\x4f\x98\x3c\x3d\x3c\xce\x2f\x2f\x2f\ +\xec\x25\x25\x25\xf9\x1e\x1e\x1e\xfe\x18\x19\x18\xff\x14\x14\x14\ +\xff\x12\x12\x12\xff\x10\x10\x10\xff\x0e\x0e\x0e\xff\x0d\x0d\x0d\ +\xff\x0c\x0c\x0c\xff\x0b\x0b\x0b\xff\x0b\x0b\x0b\xff\x0b\x0b\x0b\ +\xff\x0b\x0b\x0b\xff\x0c\x0c\x0c\xff\x0e\x0e\x0e\xff\x0f\x0f\x0f\ +\xff\x11\x11\x11\xff\x13\x13\x13\xff\x16\x16\x16\xff\x1a\x1a\x1a\ +\xfe\x20\x20\x20\xfd\x28\x28\x28\xf6\x31\x32\x32\xe3\x3c\x3d\x3d\ +\xbe\x48\x49\x49\x84\x4c\x4c\x4c\x49\x33\x34\x34\x22\x0a\x0a\x0a\ +\x12\x00\x00\x00\x0c\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2b\x2b\x2b\ +\x02\x68\x68\x68\x0c\x70\x70\x70\x27\x63\x62\x63\x59\x55\x55\x55\ +\x91\x48\x48\x48\xc1\x3b\x3b\x3b\xe1\x2e\x2e\x2e\xf2\x24\x25\x24\ +\xfb\x20\x20\x20\xfe\x1c\x1c\x1c\xfe\x19\x19\x19\xff\x18\x18\x18\ +\xff\x17\x17\x17\xff\x16\x16\x16\xff\x16\x16\x16\xff\x15\x15\x15\ +\xfe\x16\x16\x16\xfe\x17\x17\x17\xff\x18\x18\x18\xff\x1a\x1a\x1a\ +\xff\x1e\x1e\x1e\xfe\x21\x21\x22\xfd\x27\x27\x28\xf8\x32\x32\x31\ +\xed\x3d\x3d\x3d\xd7\x47\x47\x47\xb3\x4f\x4f\x4f\x82\x52\x52\x52\ +\x4e\x41\x41\x41\x26\x17\x17\x17\x13\x00\x00\x00\x0c\x00\x00\x00\ +\x09\x00\x00\x00\x06\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x1d\x1d\x1d\x03\x69\x68\x69\x0c\x78\x77\x78\ +\x22\x72\x73\x72\x47\x65\x65\x65\x74\x54\x55\x54\x9d\x48\x48\x48\ +\xc0\x40\x40\x40\xd8\x3a\x3a\x3a\xea\x34\x34\x34\xf3\x2f\x2f\x2f\ +\xf7\x2c\x2c\x2c\xfa\x2a\x2a\x2a\xfc\x29\x29\x29\xfd\x29\x29\x29\ +\xfd\x29\x29\x29\xfb\x2c\x2c\x2c\xf9\x30\x30\x30\xf6\x35\x35\x35\ +\xf0\x3b\x3b\x3b\xe3\x41\x41\x41\xd1\x49\x49\x4a\xb5\x55\x55\x55\ +\x91\x5e\x5e\x5d\x68\x5c\x5c\x5c\x40\x48\x48\x48\x22\x1c\x1c\x1d\ +\x12\x01\x01\x01\x0c\x00\x00\x00\x09\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x12\x12\x12\ +\x02\x5e\x5f\x5f\x07\x79\x7a\x7b\x13\x76\x76\x76\x27\x6f\x6f\x6e\ +\x41\x69\x69\x69\x5d\x64\x64\x64\x7a\x5e\x5e\x5e\x90\x5b\x5b\x5b\ +\xa2\x5c\x5c\x5c\xb2\x5c\x5d\x5c\xbf\x5d\x5d\x5d\xc5\x5c\x5c\x5c\ +\xc4\x59\x5a\x5a\xbb\x58\x59\x59\xac\x59\x59\x59\x9d\x5c\x5c\x5c\ +\x8a\x5e\x5e\x5e\x71\x5f\x60\x5f\x56\x5f\x5f\x60\x3c\x5a\x5a\x5a\ +\x26\x41\x41\x42\x15\x13\x12\x12\x0d\x00\x00\x00\x09\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x09\x08\x09\x02\x44\x44\x45\ +\x05\x65\x65\x65\x0b\x71\x71\x71\x14\x71\x71\x71\x1c\x76\x76\x76\ +\x26\x7b\x7b\x7b\x30\x7e\x7f\x7e\x38\x80\x80\x80\x3c\x7c\x7c\x7c\ +\x3c\x77\x78\x78\x36\x70\x71\x71\x2e\x66\x66\x66\x25\x5d\x5d\x5d\ +\x1d\x50\x50\x50\x15\x34\x34\x34\x0e\x11\x11\x10\x0a\x00\x00\x00\ +\x08\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x04\x09\x09\x09\x05\x14\x13\x14\x06\x17\x17\x17\x06\x13\x13\x13\ +\x07\x0c\x0c\x0c\x07\x03\x03\x03\x07\x00\x00\x00\x06\x00\x00\x00\ +\x06\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xf0\ +\x00\x00\x00\xff\xff\xff\xff\xc0\x00\x00\x00\x7f\xff\xff\xff\x00\ +\x00\x00\x00\x1f\xff\xff\xfe\x00\x00\x00\x00\x0f\xff\xff\xfc\x00\ +\x00\x00\x00\x03\xff\xff\xf0\x00\x00\x00\x00\x01\xff\xff\xe0\x00\ +\x00\x00\x00\x00\xff\xff\xc0\x00\x00\x00\x00\x00\x7f\xff\x80\x00\ +\x00\x00\x00\x00\x3f\xff\x80\x00\x00\x00\x00\x00\x1f\xfe\x00\x00\ +\x00\x00\x00\x00\x0f\xfe\x00\x00\x00\x00\x00\x00\x07\xfc\x00\x00\ +\x00\x00\x00\x00\x07\xf8\x00\x00\x00\x00\x00\x00\x03\xf8\x00\x00\ +\x00\x00\x00\x00\x01\xf0\x00\x00\x00\x00\x00\x00\x01\xf0\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\ +\x00\x00\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x00\ +\x00\x00\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\x01\xf8\x00\x00\ +\x00\x00\x00\x00\x03\xfc\x00\x00\x00\x00\x00\x00\x03\xfe\x00\x00\ +\x00\x00\x00\x00\x07\xfe\x00\x00\x00\x00\x00\x00\x07\xff\x00\x00\ +\x00\x00\x00\x00\x0f\xff\x80\x00\x00\x00\x00\x00\x1f\xff\xc0\x00\ +\x00\x00\x00\x00\x3f\xff\xe0\x00\x00\x00\x00\x00\x7f\xff\xf0\x00\ +\x00\x00\x00\x00\xff\xff\xf8\x00\x00\x00\x00\x01\xff\xff\xfc\x00\ +\x00\x00\x00\x07\xff\xff\xff\x00\x00\x00\x00\x0f\xff\xff\xff\x80\ +\x00\x00\x00\x3f\xff\xff\xff\xe0\x00\x00\x00\x7f\xff\xff\xff\xfc\ +\x00\x00\x03\xff\xff\xff\xff\xff\x00\x00\x07\xff\xff\x28\x00\x00\ +\x00\x48\x00\x00\x00\x90\x00\x00\x00\x01\x00\x20\x00\x00\x00\x00\ +\x00\x00\x51\x00\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\ +\x06\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\x0c\x00\x00\x00\ +\x0d\x00\x00\x00\x10\x00\x00\x00\x11\x00\x00\x00\x12\x00\x00\x00\ +\x14\x00\x00\x00\x15\x00\x00\x00\x15\x00\x00\x00\x16\x00\x00\x00\ +\x16\x00\x00\x00\x15\x00\x00\x00\x14\x00\x00\x00\x13\x00\x00\x00\ +\x12\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\ +\x0b\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\ +\x04\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\x09\x00\x00\x00\ +\x0c\x00\x00\x00\x0e\x00\x00\x00\x11\x00\x00\x00\x14\x00\x00\x00\ +\x16\x00\x00\x00\x18\x00\x00\x00\x1a\x00\x00\x00\x1c\x00\x00\x00\ +\x1d\x00\x00\x00\x1f\x00\x00\x00\x1f\x00\x00\x00\x20\x00\x00\x00\ +\x20\x00\x00\x00\x1f\x00\x00\x00\x1e\x00\x00\x00\x1d\x00\x00\x00\ +\x1c\x00\x00\x00\x1a\x00\x00\x00\x18\x00\x00\x00\x16\x00\x00\x00\ +\x13\x00\x00\x00\x11\x00\x00\x00\x0e\x00\x00\x00\x0c\x00\x00\x00\ +\x09\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\ +\x08\x00\x00\x00\x0a\x00\x00\x00\x0d\x00\x00\x00\x11\x00\x00\x00\ +\x14\x00\x00\x00\x18\x00\x00\x00\x1b\x00\x00\x00\x1e\x00\x00\x00\ +\x21\x00\x00\x00\x23\x00\x00\x00\x26\x00\x00\x00\x28\x00\x00\x00\ +\x2a\x00\x00\x00\x2b\x00\x00\x00\x2c\x00\x00\x00\x2d\x00\x00\x00\ +\x2d\x00\x00\x00\x2c\x00\x00\x00\x2b\x00\x00\x00\x2a\x00\x00\x00\ +\x28\x00\x00\x00\x27\x00\x00\x00\x24\x00\x00\x00\x21\x00\x00\x00\ +\x1e\x00\x00\x00\x1b\x00\x00\x00\x18\x00\x00\x00\x14\x00\x00\x00\ +\x11\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x05\x00\x00\x00\x08\x00\x00\x00\x0b\x00\x00\x00\ +\x0e\x00\x00\x00\x12\x00\x00\x00\x16\x00\x00\x00\x1a\x00\x00\x00\ +\x1f\x00\x00\x00\x24\x00\x00\x00\x2a\x00\x00\x00\x31\x00\x00\x00\ +\x39\x05\x03\x04\x42\x0b\x08\x09\x4b\x0e\x0c\x0d\x53\x10\x0d\x0e\ +\x5a\x11\x0e\x0e\x5e\x10\x0d\x0e\x5e\x0f\x0c\x0d\x5a\x0c\x0a\x0a\ +\x54\x07\x05\x05\x4d\x02\x01\x01\x46\x00\x00\x00\x40\x00\x00\x00\ +\x3a\x00\x00\x00\x35\x00\x00\x00\x31\x00\x00\x00\x2e\x00\x00\x00\ +\x2b\x00\x00\x00\x27\x00\x00\x00\x24\x00\x00\x00\x1f\x00\x00\x00\ +\x1a\x00\x00\x00\x16\x00\x00\x00\x12\x00\x00\x00\x0e\x00\x00\x00\ +\x0b\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x00\x00\x00\x0e\x00\x00\x00\x12\x00\x00\x00\ +\x17\x00\x00\x00\x1c\x00\x00\x00\x23\x01\x00\x00\x2c\x06\x04\x05\ +\x3c\x11\x0f\x10\x50\x20\x1e\x1f\x65\x32\x2f\x31\x7f\x41\x3e\x3f\ +\x94\x4d\x4a\x4c\xa4\x58\x56\x57\xb3\x62\x5f\x60\xbf\x66\x63\x65\ +\xc9\x67\x65\x66\xce\x64\x62\x63\xcc\x64\x62\x62\xc5\x5d\x5a\x5b\ +\xbb\x51\x4e\x4f\xae\x45\x42\x43\xa1\x37\x34\x36\x90\x26\x24\x25\ +\x7b\x15\x13\x13\x65\x09\x07\x08\x53\x02\x01\x01\x44\x00\x00\x00\ +\x3b\x00\x00\x00\x35\x00\x00\x00\x30\x00\x00\x00\x2b\x00\x00\x00\ +\x26\x00\x00\x00\x21\x00\x00\x00\x1c\x00\x00\x00\x17\x00\x00\x00\ +\x12\x00\x00\x00\x0e\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\ +\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x08\x00\x00\x00\ +\x0c\x00\x00\x00\x10\x00\x00\x00\x16\x00\x00\x00\x1c\x00\x00\x00\ +\x25\x04\x02\x03\x36\x15\x12\x12\x52\x2c\x29\x2a\x75\x46\x43\x44\ +\x99\x61\x5f\x60\xbb\x79\x77\x78\xd3\x8c\x8b\x8b\xe6\x9c\x9b\x9b\ +\xf1\xa6\xa5\xa6\xf6\xae\xad\xae\xfa\xb6\xb4\xb5\xfc\xb9\xb8\xb8\ +\xfe\xbc\xbb\xbc\xfe\xba\xba\xba\xfe\xb8\xb7\xb7\xfd\xb2\xb1\xb1\ +\xfb\xaa\xa9\xaa\xf8\xa2\xa1\xa2\xf5\x95\x94\x96\xed\x82\x80\x82\ +\xdf\x6c\x6a\x6a\xcb\x52\x50\x50\xb1\x35\x33\x33\x91\x1b\x19\x19\ +\x71\x08\x07\x07\x56\x00\x00\x00\x43\x00\x00\x00\x39\x00\x00\x00\ +\x32\x00\x00\x00\x2d\x00\x00\x00\x27\x00\x00\x00\x21\x00\x00\x00\ +\x1b\x00\x00\x00\x16\x00\x00\x00\x11\x00\x00\x00\x0c\x00\x00\x00\ +\x08\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x06\x00\x00\x00\x0a\x00\x00\x00\x0e\x00\x00\x00\ +\x13\x00\x00\x00\x19\x00\x00\x00\x24\x09\x07\x08\x3b\x24\x21\x22\ +\x62\x42\x3f\x40\x92\x60\x5d\x5e\xbf\x83\x82\x82\xdf\xa3\xa1\xa2\ +\xf2\xb8\xb7\xb8\xfb\xc7\xc6\xc6\xfe\xce\xcd\xce\xff\xd4\xd3\xd3\ +\xff\xd8\xd7\xd7\xff\xdb\xda\xdb\xff\xdc\xdb\xdc\xff\xdd\xdc\xdd\ +\xff\xdd\xdd\xdd\xff\xdd\xdd\xdd\xff\xdd\xdc\xdc\xff\xdc\xdb\xdb\ +\xff\xda\xd9\xd9\xff\xd7\xd6\xd6\xff\xd2\xd1\xd2\xff\xcb\xca\xcb\ +\xfe\xc1\xc0\xc0\xfd\xb0\xaf\xaf\xf8\x95\x94\x94\xec\x71\x6f\x6f\ +\xd5\x4f\x4d\x4e\xb2\x2d\x2b\x2c\x88\x11\x0e\x0f\x62\x01\x00\x00\ +\x47\x00\x00\x00\x3a\x00\x00\x00\x33\x00\x00\x00\x2d\x00\x00\x00\ +\x27\x00\x00\x00\x20\x00\x00\x00\x19\x00\x00\x00\x13\x00\x00\x00\ +\x0e\x00\x00\x00\x0a\x00\x00\x00\x06\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\ +\x07\x00\x00\x00\x0b\x00\x00\x00\x10\x00\x00\x00\x16\x00\x00\x00\ +\x20\x0a\x07\x08\x37\x26\x23\x24\x62\x50\x4d\x4e\x9b\x77\x75\x76\ +\xcd\x99\x97\x98\xed\xb4\xb3\xb3\xfb\xc9\xc8\xc8\xfe\xd6\xd5\xd5\ +\xff\xdb\xda\xda\xff\xde\xdd\xde\xff\xe1\xe0\xe0\xff\xe2\xe2\xe2\ +\xff\xe4\xe3\xe4\xff\xe5\xe5\xe5\xff\xe6\xe6\xe6\xff\xe7\xe7\xe7\ +\xff\xe8\xe8\xe8\xff\xe8\xe7\xe7\xff\xe7\xe7\xe7\xff\xe6\xe5\xe6\ +\xff\xe5\xe4\xe4\xff\xe3\xe3\xe3\xff\xe2\xe1\xe1\xff\xdf\xdf\xdf\ +\xff\xdd\xdc\xdc\xff\xda\xd8\xd8\xff\xd2\xd1\xd1\xfe\xc2\xc1\xc1\ +\xfd\xa9\xa8\xa9\xf6\x88\x86\x87\xe3\x61\x5e\x5f\xbe\x34\x31\x32\ +\x8e\x0f\x0d\x0e\x61\x01\x00\x00\x46\x00\x00\x00\x39\x00\x00\x00\ +\x32\x00\x00\x00\x2b\x00\x00\x00\x24\x00\x00\x00\x1c\x00\x00\x00\ +\x16\x00\x00\x00\x10\x00\x00\x00\x0a\x00\x00\x00\x07\x00\x00\x00\ +\x04\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x00\ +\x0b\x00\x00\x00\x11\x00\x00\x00\x17\x00\x00\x00\x28\x1b\x18\x19\ +\x52\x45\x43\x44\x91\x75\x74\x74\xcd\xa4\xa3\xa4\xf0\xc1\xc0\xc0\ +\xfc\xd2\xd1\xd1\xff\xda\xd9\xda\xff\xdf\xde\xde\xff\xe2\xe2\xe2\ +\xff\xe5\xe4\xe5\xff\xe8\xe7\xe8\xff\xeb\xea\xeb\xff\xec\xec\xec\ +\xff\xee\xee\xee\xff\xef\xef\xef\xff\xf0\xf0\xf0\xff\xf1\xf1\xf1\ +\xff\xf1\xf1\xf1\xff\xf1\xf1\xf1\xff\xf1\xf1\xf1\xff\xf0\xef\xf0\ +\xff\xef\xee\xef\xff\xee\xed\xed\xff\xec\xeb\xeb\xff\xe9\xe9\xe9\ +\xff\xe6\xe6\xe6\xff\xe4\xe3\xe4\xff\xe0\xdf\xe0\xff\xdd\xdc\xdc\ +\xff\xd7\xd6\xd7\xff\xcc\xcb\xcb\xfe\xb6\xb5\xb6\xf9\x8f\x8d\x8e\ +\xe5\x57\x55\x55\xbb\x27\x25\x25\x83\x06\x05\x05\x56\x00\x00\x00\ +\x3f\x00\x00\x00\x36\x00\x00\x00\x2f\x00\x00\x00\x26\x00\x00\x00\ +\x1f\x00\x00\x00\x18\x00\x00\x00\x11\x00\x00\x00\x0b\x00\x00\x00\ +\x07\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x04\x00\x00\x00\x08\x00\x00\x00\x0c\x00\x00\x00\ +\x12\x00\x00\x00\x1b\x0d\x0a\x0c\x38\x37\x33\x35\x74\x6c\x6a\x6b\ +\xbf\x9d\x9c\x9c\xed\xc2\xc1\xc2\xfd\xd5\xd4\xd5\xff\xdd\xdc\xdc\ +\xff\xe1\xe1\xe1\xff\xe5\xe4\xe5\xff\xe9\xe8\xe9\xff\xed\xec\xec\ +\xff\xf0\xef\xf0\xff\xf3\xf2\xf2\xff\xf4\xf4\xf4\xff\xf7\xf6\xf6\ +\xff\xf8\xf7\xf7\xff\xf9\xf8\xf9\xff\xfa\xf9\xf9\xff\xfa\xfa\xfa\ +\xff\xfa\xfa\xfa\xff\xfa\xfa\xfa\xff\xfa\xfa\xfa\xff\xf9\xf9\xf9\ +\xff\xf8\xf8\xf8\xff\xf7\xf6\xf7\xff\xf6\xf5\xf6\xff\xf3\xf3\xf3\ +\xff\xf1\xf1\xf1\xff\xef\xef\xef\xff\xec\xeb\xeb\xff\xe7\xe7\xe7\ +\xff\xe3\xe2\xe3\xff\xdf\xdf\xdf\xff\xda\xd9\xda\xff\xcf\xce\xce\ +\xfe\xb3\xb2\xb2\xf8\x82\x81\x81\xde\x4a\x47\x48\xa9\x16\x14\x14\ +\x6b\x01\x00\x00\x48\x00\x00\x00\x3a\x00\x00\x00\x31\x00\x00\x00\ +\x29\x00\x00\x00\x21\x00\x00\x00\x19\x00\x00\x00\x12\x00\x00\x00\ +\x0c\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x07\x00\x00\x00\x0c\x00\x00\x00\x12\x00\x00\x00\ +\x1f\x1b\x17\x19\x47\x51\x4f\x50\x95\x8c\x8a\x8b\xdb\xba\xb9\xb9\ +\xfa\xd3\xd2\xd2\xfe\xdc\xdb\xdc\xff\xe2\xe1\xe1\xff\xe7\xe6\xe7\ +\xff\xeb\xeb\xeb\xff\xf0\xef\xef\xff\xf3\xf3\xf3\xff\xf6\xf6\xf6\ +\xff\xf8\xf8\xf8\xff\xfa\xfa\xfa\xff\xfb\xfb\xfb\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xfd\xfd\xfd\xff\xfd\xfc\xfc\xff\xfc\xfc\xfc\xff\xfb\xfb\xfb\ +\xff\xe6\xe6\xe6\xff\xc6\xc6\xc6\xff\xda\xda\xda\xff\xee\xee\xef\ +\xff\xed\xed\xee\xff\xe9\xe9\xe9\xff\xe4\xe4\xe4\xff\xdf\xde\xde\ +\xff\xd9\xd8\xd8\xfe\xc9\xc8\xc8\xfd\xa4\xa3\xa3\xf1\x68\x66\x66\ +\xc5\x2a\x27\x29\x82\x05\x04\x04\x51\x00\x00\x00\x3d\x00\x00\x00\ +\x33\x00\x00\x00\x2b\x00\x00\x00\x22\x00\x00\x00\x19\x00\x00\x00\ +\x12\x00\x00\x00\x0c\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x07\x00\x00\x00\x0b\x00\x00\x00\x12\x04\x03\x03\x23\x27\x24\x25\ +\x55\x62\x5f\x60\xab\xa2\xa0\xa1\xec\xcb\xca\xcb\xfe\xdb\xda\xdb\ +\xff\xe0\xe0\xe0\xff\xe6\xe5\xe6\xff\xec\xeb\xeb\xff\xf1\xf0\xf0\ +\xff\xf5\xf4\xf5\xff\xf8\xf8\xf8\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\ +\xff\xbe\xbe\xbe\xff\x4b\x4b\x4b\xff\x61\x62\x62\xff\xbf\xbf\xbf\ +\xff\xf0\xf0\xf0\xff\xf3\xf3\xf3\xff\xee\xee\xee\xff\xe9\xe9\xe9\ +\xff\xe3\xe2\xe2\xff\xde\xdd\xdd\xff\xd6\xd5\xd5\xff\xb9\xb8\xb8\ +\xfa\x7e\x7c\x7d\xd8\x39\x37\x38\x94\x08\x07\x07\x58\x00\x00\x00\ +\x3f\x00\x00\x00\x35\x00\x00\x00\x2c\x00\x00\x00\x22\x00\x00\x00\ +\x19\x00\x00\x00\x12\x00\x00\x00\x0c\x00\x00\x00\x07\x00\x00\x00\ +\x04\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x00\x00\x00\x11\x05\x04\x04\x25\x37\x34\x34\x62\x74\x72\x72\ +\xba\xae\xac\xad\xf3\xd3\xd2\xd2\xff\xdf\xde\xde\xff\xe4\xe4\xe4\ +\xff\xea\xe9\xea\xff\xf0\xf0\xf0\xff\xf5\xf4\xf4\xff\xf8\xf8\xf8\ +\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xde\xde\xde\xff\x69\x69\x69\xff\x15\x15\x15\xff\x44\x45\x45\ +\xff\xb1\xb1\xb1\xff\xf1\xf0\xf0\xff\xf7\xf7\xf7\xff\xf2\xf2\xf2\ +\xff\xed\xec\xec\xff\xe7\xe6\xe6\xff\xe1\xe0\xe1\xff\xda\xda\xda\ +\xff\xc5\xc4\xc5\xfc\x91\x8f\x90\xe3\x47\x45\x46\xa0\x0d\x0c\x0c\ +\x5e\x00\x00\x00\x40\x00\x00\x00\x35\x00\x00\x00\x2c\x00\x00\x00\ +\x22\x00\x00\x00\x19\x00\x00\x00\x11\x00\x00\x00\x0b\x00\x00\x00\ +\x06\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\x0a\x00\x00\x00\ +\x10\x07\x05\x05\x23\x3b\x38\x39\x64\x7e\x7c\x7c\xc1\xb8\xb7\xb7\ +\xf6\xd7\xd6\xd7\xff\xe1\xe0\xe0\xff\xe7\xe6\xe6\xff\xed\xed\xed\ +\xff\xf3\xf3\xf3\xff\xf7\xf7\xf7\xff\xfa\xfa\xfa\xff\xfc\xfc\xfc\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfc\xfc\xfc\xff\xd1\xd1\xd1\xff\x56\x57\x56\xff\x0f\x0f\x0f\ +\xff\x38\x38\x38\xff\xa2\xa2\xa2\xff\xeb\xeb\xeb\xff\xf9\xf9\xf9\ +\xff\xf6\xf5\xf5\xff\xf0\xef\xf0\xff\xea\xe9\xe9\xff\xe3\xe3\xe3\ +\xff\xdd\xdc\xdc\xff\xcd\xcc\xcd\xfd\x9b\x9a\x9a\xe7\x4f\x4d\x4e\ +\xa5\x0f\x0d\x0e\x5f\x00\x00\x00\x40\x00\x00\x00\x35\x00\x00\x00\ +\x2b\x00\x00\x00\x20\x00\x00\x00\x17\x00\x00\x00\x0f\x00\x00\x00\ +\x09\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x08\x00\x00\x00\x0e\x03\x02\x02\ +\x1e\x37\x34\x35\x5c\x80\x7e\x7e\xc0\xbc\xbb\xbb\xf7\xda\xd9\xd9\ +\xff\xe3\xe2\xe2\xff\xe9\xe9\xe9\xff\xf0\xef\xef\xff\xf5\xf4\xf5\ +\xff\xf9\xf9\xf9\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfc\xfc\xfc\xff\xbc\xbc\xbc\xff\x3a\x3a\x3a\ +\xff\x03\x03\x03\xff\x28\x29\x28\xff\x86\x87\x87\xff\xd3\xd3\xd3\ +\xff\xf2\xf2\xf2\xff\xf8\xf7\xf7\xff\xf3\xf2\xf2\xff\xec\xec\xec\ +\xff\xe6\xe5\xe5\xff\xdf\xdf\xdf\xff\xd0\xcf\xd0\xfe\x9f\x9d\x9e\ +\xe7\x4e\x4c\x4d\xa2\x0a\x09\x09\x5a\x00\x00\x00\x3e\x00\x00\x00\ +\x33\x00\x00\x00\x29\x00\x00\x00\x1f\x00\x00\x00\x16\x00\x00\x00\ +\x0e\x00\x00\x00\x08\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x06\x00\x00\x00\x0b\x00\x00\x00\x17\x2e\x2c\x2c\ +\x4f\x7b\x79\x7a\xb8\xbd\xbc\xbd\xf7\xdb\xdb\xdb\xff\xe4\xe3\xe4\ +\xff\xeb\xea\xea\xff\xf1\xf1\xf1\xff\xf6\xf6\xf6\xff\xfa\xf9\xfa\ +\xff\xfc\xfc\xfc\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf4\xf4\xf4\xff\x96\x97\x97\ +\xff\x1c\x1c\x1c\xff\x00\x00\x00\xff\x13\x13\x13\xff\x45\x45\x45\ +\xff\x8c\x8d\x8d\xff\xd1\xd1\xd1\xff\xf3\xf3\xf3\xff\xf4\xf4\xf4\ +\xff\xee\xee\xee\xff\xe7\xe7\xe7\xff\xe0\xe0\xe0\xff\xd2\xd1\xd1\ +\xfe\x9e\x9d\x9e\xe6\x47\x45\x45\x98\x07\x06\x06\x54\x00\x00\x00\ +\x3c\x00\x00\x00\x31\x00\x00\x00\x27\x00\x00\x00\x1c\x00\x00\x00\ +\x13\x00\x00\x00\x0c\x00\x00\x00\x07\x00\x00\x00\x03\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\ +\x05\x00\x00\x00\x0a\x00\x00\x00\x11\x22\x1e\x20\x3c\x6f\x6c\x6e\ +\xa5\xb8\xb6\xb7\xf3\xdc\xdc\xdc\xff\xe5\xe4\xe5\xff\xec\xeb\xeb\ +\xff\xf2\xf2\xf2\xff\xf7\xf7\xf7\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe1\xe1\xe2\ +\xff\x66\x66\x67\xff\x08\x08\x09\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x12\x12\x12\xff\x5f\x5f\x5f\xff\xd6\xd6\xd6\xff\xf9\xf9\xf9\ +\xff\xf4\xf4\xf4\xff\xee\xed\xed\xff\xe6\xe6\xe6\xff\xe0\xe0\xe0\ +\xff\xd0\xd0\xd0\xfd\x94\x93\x93\xdc\x39\x38\x38\x89\x02\x02\x02\ +\x4b\x00\x00\x00\x39\x00\x00\x00\x2e\x00\x00\x00\x23\x00\x00\x00\ +\x19\x00\x00\x00\x10\x00\x00\x00\x09\x00\x00\x00\x05\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x07\x00\x00\x00\x0e\x0a\x07\x07\x27\x5e\x5b\x5c\x8a\xaf\xad\xae\ +\xea\xdb\xda\xda\xff\xe5\xe5\xe5\xff\xec\xeb\xeb\xff\xf2\xf2\xf2\ +\xff\xf7\xf7\xf7\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xfc\xfd\ +\xff\xc7\xc7\xc8\xff\x46\x46\x46\xff\x04\x04\x04\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x29\x29\x29\xff\x9d\x9d\x9d\xff\xc6\xc7\xc7\ +\xff\xbc\xbc\xbc\xff\xb5\xb5\xb5\xff\xaa\xaa\xaa\xff\xa1\xa1\xa1\ +\xff\x9a\x99\x99\xff\x83\x83\x83\xfb\x44\x43\x43\xce\x10\x0e\x0f\ +\x73\x00\x00\x00\x42\x00\x00\x00\x36\x00\x00\x00\x2a\x00\x00\x00\ +\x1f\x00\x00\x00\x15\x00\x00\x00\x0d\x00\x00\x00\x07\x00\x00\x00\ +\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\ +\x0a\x05\x03\x04\x1a\x46\x43\x44\x63\x9f\x9e\x9e\xd9\xd8\xd7\xd8\ +\xfe\xe6\xe5\xe5\xff\xeb\xeb\xeb\xff\xf2\xf2\xf2\xff\xf7\xf7\xf7\ +\xff\xfb\xfb\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfc\xfc\xfc\xff\xf6\xf6\xf6\ +\xff\xdf\xdf\xdf\xff\xbe\xbe\xbf\xff\xc3\xc3\xc3\xff\xeb\xeb\xeb\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfb\xfb\xfb\xff\xab\xab\xab\xff\x21\x21\x21\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x09\x09\x09\xff\x25\x25\x25\xff\x2f\x30\x30\ +\xff\x27\x27\x27\xff\x23\x24\x23\xff\x1e\x1e\x1e\xff\x1a\x1a\x1a\ +\xff\x17\x17\x17\xff\x14\x15\x15\xff\x0e\x0d\x0e\xf7\x10\x0f\x0f\ +\xb5\x0a\x08\x08\x5c\x00\x00\x00\x3e\x00\x00\x00\x32\x00\x00\x00\ +\x26\x00\x00\x00\x1b\x00\x00\x00\x12\x00\x00\x00\x0a\x00\x00\x00\ +\x05\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x07\x00\x00\x00\ +\x0f\x2e\x2b\x2d\x3f\x85\x84\x84\xb2\xcd\xcd\xcd\xf9\xe4\xe4\xe4\ +\xff\xeb\xea\xea\xff\xf1\xf1\xf1\xff\xf7\xf6\xf7\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xf1\xf1\xf1\xff\xb9\xb9\xb9\xff\x90\x90\x8f\ +\xff\x5f\x5f\x5f\xff\x35\x35\x35\xff\x37\x37\x37\xff\x8f\x90\x90\ +\xff\xf2\xf3\xf3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xd8\xd7\xd7\xff\x40\x41\x41\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x06\x06\x06\ +\xe9\x10\x0e\x0e\x90\x04\x04\x04\x4c\x00\x00\x00\x38\x00\x00\x00\ +\x2c\x00\x00\x00\x21\x00\x00\x00\x16\x00\x00\x00\x0e\x00\x00\x00\ +\x07\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\x0a\x09\x08\x08\ +\x20\x63\x61\x62\x80\xb7\xb6\xb7\xe8\xe2\xe1\xe2\xff\xea\xe9\xe9\ +\xff\xf0\xf0\xf0\xff\xf6\xf6\xf6\xff\xfa\xfa\xfa\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xe4\xe4\xe4\xff\x6d\x6d\x6d\xff\x25\x26\x26\ +\xff\x3d\x3d\x3d\xff\x61\x61\x61\xff\x44\x44\x44\xff\x61\x62\x62\ +\xff\xe6\xe6\xe6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xe9\xe9\xe9\xff\x5a\x5a\x5a\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x00\x01\ +\xfc\x0a\x09\x0a\xca\x0c\x0b\x0b\x6c\x00\x00\x00\x40\x00\x00\x00\ +\x33\x00\x00\x00\x27\x00\x00\x00\x1b\x00\x00\x00\x12\x00\x00\x00\ +\x0a\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x03\x00\x00\x00\x07\x00\x00\x00\x0f\x3d\x3b\x3c\ +\x4a\x9b\x9a\x9b\xc4\xd8\xd7\xd8\xfc\xe8\xe8\xe8\xff\xee\xed\xee\ +\xff\xf4\xf4\xf4\xff\xf9\xf9\xf9\xff\xfc\xfc\xfc\xff\xfe\xfe\xfe\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xf7\xf6\xf7\xff\xc1\xc1\xc1\xff\x97\x98\x97\ +\xff\xc1\xc1\xc1\xff\xe7\xe7\xe7\xff\xd1\xd2\xd2\xff\xc7\xc7\xc7\ +\xff\xf6\xf6\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xf5\xf5\xf5\xff\x7d\x7d\x7e\xff\x08\x08\x08\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x03\x03\x03\xf0\x0c\x0b\x0b\xa0\x06\x05\x05\x50\x00\x00\x00\ +\x38\x00\x00\x00\x2d\x00\x00\x00\x21\x00\x00\x00\x16\x00\x00\x00\ +\x0d\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x02\x00\x00\x00\x04\x00\x00\x00\x09\x10\x0c\x0e\x1f\x76\x73\x75\ +\x87\xc6\xc5\xc5\xed\xe6\xe6\xe6\xff\xec\xec\xec\xff\xf3\xf2\xf2\ +\xff\xf8\xf8\xf8\xff\xfb\xfb\xfb\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfb\xfb\xfb\xff\xf7\xf8\xf7\ +\xff\xfc\xfc\xfc\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfd\xfd\xfd\ +\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfc\xfc\xfc\xff\xa0\xa0\xa0\xff\x14\x14\x14\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xfc\x08\x08\x08\xd0\x0c\x0b\x0c\x6f\x00\x00\x00\ +\x3f\x00\x00\x00\x32\x00\x00\x00\x26\x00\x00\x00\x1a\x00\x00\x00\ +\x10\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x02\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x40\x42\x42\xa3\xa2\xa2\ +\xc3\xde\xdd\xdd\xfd\xeb\xeb\xeb\xff\xf1\xf0\xf0\xff\xf7\xf6\xf6\ +\xff\xfb\xfa\xfb\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\xff\xfb\xfb\xfb\ +\xff\xf6\xf6\xf6\xff\xfa\xfa\xfa\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xc4\xc4\xc4\xff\x2d\x2e\x2e\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x04\x03\x03\xf0\x0d\x0c\x0d\x9d\x04\x04\x04\ +\x4d\x00\x00\x00\x37\x00\x00\x00\x2b\x00\x00\x00\x1e\x00\x00\x00\ +\x14\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x00\x00\x00\x07\x0a\x08\x08\x18\x68\x65\x66\x76\xc1\xc0\xc0\ +\xea\xe9\xe8\xe8\xff\xef\xee\xee\xff\xf4\xf4\xf4\xff\xf9\xf9\xf9\ +\xff\xfc\xfc\xfc\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfc\xfc\xfc\xff\xe4\xe4\xe4\xff\xa9\xa9\xa9\ +\xff\x83\x84\x84\xff\xb6\xb7\xb7\xff\xf7\xf7\xf7\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfd\xfd\ +\xff\xf4\xf4\xf4\xff\xe6\xe6\xe6\xff\xdb\xdc\xdc\xff\xdc\xdc\xdc\ +\xff\xe3\xe3\xe3\xff\xeb\xeb\xeb\xff\xf0\xf0\xf0\xff\xf2\xf2\xf2\ +\xff\xf1\xf1\xf1\xff\xec\xec\xec\xff\xdc\xdc\xdc\xff\xe3\xe3\xe3\ +\xff\xf0\xf0\xf0\xff\xef\xef\xef\xff\xe8\xe8\xe8\xff\xdc\xdc\xdc\ +\xff\xd3\xd3\xd3\xff\xda\xda\xdb\xff\xc6\xc6\xc6\xff\x42\x42\x42\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xfc\x09\x07\x08\xca\x0a\x09\x09\ +\x65\x00\x00\x00\x3c\x00\x00\x00\x2f\x00\x00\x00\x23\x00\x00\x00\ +\x17\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x04\x00\x00\x00\x09\x15\x14\x14\x30\x42\x41\x41\xab\xa1\xa1\xa1\ +\xfa\xe7\xe7\xe7\xff\xf2\xf2\xf2\xff\xf7\xf7\xf7\xff\xfb\xfb\xfb\ +\xff\xfd\xfd\xfd\xff\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfc\xfc\xfc\xff\xce\xce\xce\xff\x6d\x6d\x6d\xff\x21\x21\x21\ +\xff\x11\x11\x11\xff\x6d\x6e\x6e\xff\xeb\xeb\xeb\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\xf9\xf9\xff\xcc\xcd\xcd\ +\xff\x8c\x8c\x8c\xff\x61\x61\x61\xff\x4d\x4e\x4e\xff\x4e\x4e\x4f\ +\xff\x59\x59\x5a\xff\x69\x69\x69\xff\x77\x78\x78\xff\x7c\x7d\x7d\ +\xff\x7b\x7b\x7b\xff\x6e\x6e\x6e\xff\x50\x50\x51\xff\x5d\x5e\x5e\ +\xff\x77\x78\x77\xff\x75\x75\x74\xff\x63\x63\x63\xff\x4e\x4e\x4e\ +\xff\x41\x41\x41\xff\x4a\x4b\x4a\xff\x52\x53\x52\xff\x1e\x1e\x1d\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x03\x03\x03\xe8\x0a\x09\x09\ +\x87\x02\x02\x02\x44\x00\x00\x00\x33\x00\x00\x00\x26\x00\x00\x00\ +\x1a\x00\x00\x00\x11\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\ +\x05\x06\x04\x05\x0c\x12\x11\x11\x51\x13\x13\x13\xd4\x71\x71\x71\ +\xff\xe4\xe4\xe4\xff\xf7\xf7\xf7\xff\xfb\xfb\xfb\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfd\xfd\ +\xff\xce\xce\xce\xff\x59\x59\x59\xff\x0c\x0c\x0c\xff\x09\x09\x09\ +\xff\x46\x46\x46\xff\xaf\xb0\xb0\xff\xf6\xf6\xf6\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xfc\xfc\xfc\xff\xc5\xc5\xc5\xff\x4e\x4e\x4e\ +\xff\x12\x12\x12\xff\x04\x04\x04\xff\x01\x01\x01\xff\x01\x01\x01\ +\xff\x02\x02\x02\xff\x05\x06\x05\xff\x09\x09\x08\xff\x0a\x0b\x0a\ +\xff\x0a\x0a\x0b\xff\x07\x07\x09\xff\x02\x02\x06\xff\x04\x04\x0d\ +\xff\x0a\x0a\x16\xff\x08\x08\x1b\xff\x04\x04\x19\xff\x01\x01\x16\ +\xff\x00\x00\x14\xff\x01\x01\x14\xff\x03\x03\x0f\xff\x01\x01\x07\ +\xff\x00\x00\x02\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x00\x01\xf8\x08\x06\x07\ +\xad\x05\x04\x05\x52\x00\x00\x00\x37\x00\x00\x00\x2a\x00\x00\x00\ +\x1d\x00\x00\x00\x14\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x05\x10\x0d\x0f\x16\x10\x0e\x0f\x7d\x0b\x0b\x0b\xef\x62\x62\x63\ +\xff\xc0\xc0\xc0\xff\xcd\xcd\xcd\xff\xd0\xd0\xd0\xff\xd2\xd2\xd2\ +\xff\xd3\xd3\xd3\xff\xd3\xd3\xd3\xff\xd3\xd3\xd3\xff\xb7\xb7\xb7\ +\xff\x55\x55\x55\xff\x09\x09\x09\xff\x02\x02\x02\xff\x4c\x4c\x4c\ +\xff\xc4\xc4\xc4\xff\xf8\xf8\xf8\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xfc\xfc\xfc\xff\xcb\xcb\xcb\xff\x52\x52\x52\xff\x06\x06\x06\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x03\xff\x00\x00\x0a\xff\x00\x00\x16\xff\x00\x00\x24\ +\xff\x00\x00\x38\xff\x00\x00\x49\xff\x00\x00\x5a\xff\x00\x00\x6b\ +\xff\x00\x00\x73\xff\x00\x00\x80\xff\x00\x00\x88\xff\x00\x00\x88\ +\xff\x00\x00\x89\xff\x00\x00\x86\xff\x00\x00\x75\xff\x00\x00\x64\ +\xff\x00\x00\x4c\xff\x00\x00\x33\xff\x00\x00\x1a\xff\x00\x00\x06\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x06\x05\x06\ +\xce\x09\x07\x09\x67\x00\x00\x00\x3b\x00\x00\x00\x2d\x00\x00\x00\ +\x21\x00\x00\x00\x17\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x06\x12\x10\x11\x25\x0c\x0c\x0c\xa4\x04\x04\x04\xfb\x1f\x1f\x1f\ +\xff\x3c\x3c\x3c\xff\x40\x40\x40\xff\x40\x41\x41\xff\x41\x41\x41\ +\xff\x41\x41\x41\xff\x41\x42\x42\xff\x40\x41\x40\xff\x2d\x2d\x2d\ +\xff\x09\x09\x09\xff\x00\x00\x00\xff\x29\x2a\x29\xff\xad\xad\xad\ +\xff\xf8\xf8\xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfd\xfd\ +\xff\xcc\xcc\xcc\xff\x57\x57\x57\xff\x0a\x0a\x0a\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x03\xff\x00\x00\x13\xff\x00\x00\x2e\ +\xff\x00\x00\x4f\xff\x00\x00\x6f\xff\x00\x00\x86\xff\x00\x00\x99\ +\xff\x00\x00\xab\xff\x00\x00\xb4\xff\x00\x00\xbc\xff\x00\x00\xc3\ +\xff\x00\x00\xc4\xff\x00\x00\xc6\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xc5\xff\x00\x00\xc0\ +\xff\x00\x00\xb6\xff\x00\x00\xa7\xff\x00\x00\x8a\xff\x00\x00\x57\ +\xff\x00\x00\x22\xff\x00\x00\x04\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x03\x03\x03\ +\xe5\x09\x08\x09\x7f\x01\x01\x01\x40\x00\x00\x00\x30\x00\x00\x00\ +\x23\x00\x00\x00\x19\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\ +\x07\x19\x16\x18\x3b\x0b\x0b\x0b\xc5\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x11\x11\x11\xff\x82\x83\x82\xff\xef\xf0\xf0\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xf0\xf0\xf0\xff\xd6\xd7\xd7\xff\xe3\xe4\xe4\xff\xcc\xcc\xcc\ +\xff\x5a\x5a\x59\xff\x0b\x0b\x0a\xff\x00\x00\x02\xff\x00\x00\x13\ +\xff\x00\x00\x32\xff\x00\x00\x58\xff\x00\x00\x86\xff\x00\x00\xa7\ +\xff\x00\x00\xba\xff\x00\x00\xc5\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xc8\xff\x00\x00\xbc\ +\xff\x00\x00\x94\xff\x00\x00\x4e\xff\x00\x00\x16\xff\x00\x00\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x03\x02\x02\ +\xf4\x0c\x0b\x0c\x9b\x04\x04\x04\x47\x00\x00\x00\x33\x00\x00\x00\ +\x26\x00\x00\x00\x1b\x00\x00\x00\x01\x00\x00\x00\x04\x03\x02\x03\ +\x0a\x18\x17\x18\x55\x0a\x0a\x0a\xdd\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x33\x33\x33\xff\xc7\xc7\xc7\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf3\xf3\xf3\ +\xff\x97\x97\x97\xff\x3e\x3e\x3e\xff\x4e\x4f\x4e\xff\x3e\x3e\x3f\ +\xff\x0b\x0b\x18\xff\x00\x00\x26\xff\x00\x00\x55\xff\x00\x00\x84\ +\xff\x00\x00\xab\xff\x00\x00\xc1\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xb8\xff\x00\x00\x82\xff\x00\x00\x3a\ +\xff\x00\x00\x0a\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xfb\x07\x06\x07\xb3\x04\x03\x04\x50\x00\x00\x00\x34\x00\x00\x00\ +\x28\x00\x00\x00\x1d\x00\x00\x00\x02\x00\x00\x00\x04\x0f\x0e\x0f\ +\x0e\x16\x15\x15\x6f\x06\x06\x06\xec\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x48\x48\x48\xff\xdb\xdb\xdb\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xfa\xfa\xff\xb4\xb4\xb4\ +\xff\x31\x31\x30\xff\x00\x00\x02\xff\x00\x00\x11\xff\x00\x00\x35\ +\xff\x00\x00\x6e\xff\x00\x00\x9c\xff\x00\x00\xbd\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc7\xff\x00\x00\xa6\ +\xff\x00\x00\x56\xff\x00\x00\x11\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x06\x05\x06\xc8\x0a\x08\x09\x5c\x00\x00\x00\x37\x00\x00\x00\ +\x2a\x00\x00\x00\x1e\x00\x00\x00\x02\x00\x00\x00\x04\x17\x15\x16\ +\x13\x18\x17\x17\x87\x04\x04\x04\xf5\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x39\x39\x39\xff\xc9\xc9\xc9\xff\xfe\xfe\xfe\ +\xff\xff\xff\xff\xff\xf9\xf9\xf9\xff\xc0\xc0\xbf\xff\x47\x47\x48\ +\xff\x04\x04\x15\xff\x00\x00\x3c\xff\x00\x00\x72\xff\x00\x00\xa5\ +\xff\x00\x00\xc4\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xae\xff\x00\x00\x59\xff\x00\x00\x0f\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x09\x09\x09\xd7\x0e\x0d\x0d\x69\x00\x00\x00\x38\x00\x00\x00\ +\x2b\x00\x00\x00\x1f\x00\x00\x00\x02\x00\x00\x00\x04\x15\x12\x13\ +\x17\x14\x13\x13\x99\x03\x03\x03\xfa\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x10\x10\x10\xff\x64\x64\x64\xff\xba\xba\xba\ +\xff\xcc\xcc\xcb\xff\xa0\xa0\x9f\xff\x43\x43\x50\xff\x08\x08\x3d\ +\xff\x00\x00\x72\xff\x00\x00\xab\xff\x00\x00\xc4\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xae\xff\x00\x00\x4a\xff\x00\x00\x05\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x06\x06\x06\xe1\x0b\x0a\x0a\x73\x00\x00\x00\x39\x00\x00\x00\ +\x2b\x00\x00\x00\x20\x00\x00\x00\x02\x00\x00\x00\x04\x10\x0d\x0e\ +\x19\x0d\x0d\x0d\xa4\x02\x02\x02\xfd\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x0b\x0b\x0a\xff\x29\x29\x29\ +\xff\x36\x36\x3b\xff\x1d\x1d\x40\xff\x04\x04\x69\xff\x00\x00\xa4\ +\xff\x00\x00\xc3\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\x8d\xff\x00\x00\x1a\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xe8\x05\x05\x05\x79\x00\x00\x00\x39\x00\x00\x00\ +\x2c\x00\x00\x00\x20\x00\x00\x00\x02\x00\x00\x00\x04\x0a\x08\x08\ +\x1b\x05\x05\x05\xaa\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0d\ +\xff\x00\x00\x47\xff\x00\x00\x8f\xff\x00\x00\xbc\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xcc\xff\x00\x00\xaf\xff\x00\x00\x39\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xec\x02\x01\x01\x7d\x00\x00\x00\x39\x00\x00\x00\ +\x2c\x00\x00\x00\x20\x00\x00\x00\x02\x00\x00\x00\x04\x07\x05\x05\ +\x1b\x01\x01\x01\xae\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x02\xff\x00\x00\x20\xff\x00\x00\x6a\ +\xff\x00\x00\xb1\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xcb\xff\x00\x00\xc1\xff\x00\x00\x5d\ +\xff\x00\x00\x04\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xed\x02\x01\x01\x7e\x00\x00\x00\x39\x00\x00\x00\ +\x2c\x00\x00\x00\x20\x00\x00\x00\x02\x00\x00\x00\x04\x07\x05\x05\ +\x1b\x01\x01\x01\xad\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x06\xff\x00\x00\x36\xff\x00\x00\x8a\xff\x00\x00\xc0\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc7\xff\x00\x00\x70\ +\xff\x00\x00\x0a\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xed\x02\x01\x01\x7e\x00\x00\x00\x38\x00\x00\x00\ +\x2b\x00\x00\x00\x1f\x00\x00\x00\x02\x00\x00\x00\x03\x0a\x07\x08\ +\x19\x04\x04\x04\xa9\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0a\ +\xff\x00\x00\x46\xff\x00\x00\xa0\xff\x00\x00\xc7\xff\x00\x00\xcb\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc8\xff\x00\x00\xc1\ +\xff\x00\x00\xb6\xff\x00\x00\xa7\xff\x00\x00\x9e\xff\x00\x00\xae\ +\xff\x00\x00\xc7\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\x74\ +\xff\x00\x00\x0a\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xeb\x02\x01\x02\x7b\x00\x00\x00\x37\x00\x00\x00\ +\x2a\x00\x00\x00\x1e\x00\x00\x00\x01\x00\x00\x00\x03\x0f\x0d\x0f\ +\x17\x0b\x0b\x0c\xa1\x02\x02\x02\xfd\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x11\xff\x00\x00\x55\ +\xff\x00\x00\xab\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xc3\xff\x00\x00\xaf\xff\x00\x00\x8c\xff\x00\x00\x68\ +\xff\x00\x00\x4a\xff\x00\x00\x31\xff\x00\x00\x2e\xff\x00\x00\x73\ +\xff\x00\x00\xc1\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc6\xff\x00\x00\x64\ +\xff\x00\x00\x05\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xe7\x05\x04\x05\x75\x00\x00\x00\x36\x00\x00\x00\ +\x28\x00\x00\x00\x1d\x00\x00\x00\x01\x00\x00\x00\x03\x17\x16\x17\ +\x13\x15\x14\x15\x94\x03\x03\x03\xfa\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x12\xff\x00\x00\x5a\xff\x00\x00\xae\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xc8\xff\x00\x00\xba\xff\x00\x00\x9c\ +\xff\x00\x00\x6d\xff\x00\x00\x41\xff\x00\x00\x1e\xff\x00\x00\x0b\ +\xff\x00\x00\x03\xff\x00\x00\x03\xff\x00\x00\x37\xff\x00\x00\x9c\ +\xff\x00\x00\xc8\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xcc\xff\x00\x00\xac\xff\x00\x00\x3c\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x07\x07\x07\xe0\x0c\x0b\x0b\x6d\x00\x00\x00\x33\x00\x00\x00\ +\x26\x00\x00\x00\x1c\x00\x00\x00\x01\x00\x00\x00\x03\x21\x20\x21\ +\x0e\x1e\x1d\x1d\x81\x05\x05\x05\xf5\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x10\xff\x00\x00\x5b\xff\x00\x00\xb0\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xcb\xff\x00\x00\xc7\ +\xff\x00\x00\xb4\xff\x00\x00\x8d\xff\x00\x00\x55\xff\x00\x00\x27\ +\xff\x00\x00\x0c\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x0c\xff\x00\x00\x6f\xff\x00\x00\xc5\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc5\xff\x00\x00\xb6\xff\x00\x00\xc0\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xcb\ +\xff\x00\x00\xc8\xff\x00\x00\xaa\xff\x00\x00\x5b\xff\x00\x00\x0e\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x0a\x0a\x0a\xd4\x10\x0f\x10\x61\x00\x00\x00\x31\x00\x00\x00\ +\x24\x00\x00\x00\x19\x00\x00\x00\x01\x00\x00\x00\x02\x1b\x1a\x1b\ +\x08\x1d\x1c\x1d\x66\x08\x08\x08\xeb\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0d\ +\xff\x00\x00\x58\xff\x00\x00\xb0\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xb3\xff\x00\x00\x7e\ +\xff\x00\x00\x42\xff\x00\x00\x1b\xff\x00\x00\x05\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x13\xff\x00\x00\x80\xff\x00\x00\xc8\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xbd\xff\x00\x00\x76\xff\x00\x00\x82\xff\x00\x00\xc4\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xb7\ +\xff\x00\x00\x80\xff\x00\x00\x3b\xff\x00\x00\x0c\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x08\x08\x08\xc2\x0c\x0b\x0c\x52\x00\x00\x00\x2e\x00\x00\x00\ +\x22\x00\x00\x00\x17\x00\x00\x00\x00\x00\x00\x00\x02\x07\x06\x07\ +\x05\x1f\x1e\x1f\x49\x0e\x0e\x0e\xda\x01\x01\x01\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x04\xff\x00\x00\x45\ +\xff\x00\x00\xac\xff\x00\x00\xcb\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xb7\xff\x00\x00\x8c\xff\x00\x00\x49\xff\x00\x00\x12\ +\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x02\xff\x00\x00\x34\xff\x00\x00\xa3\xff\x00\x00\xcb\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xc4\xff\x00\x00\x6e\xff\x00\x00\x3c\xff\x00\x00\xa3\ +\xff\x00\x00\xc8\xff\x00\x00\xb8\xff\x00\x00\x91\xff\x00\x00\x4f\ +\xff\x00\x00\x14\xff\x00\x00\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\xff\x03\x03\x03\ +\xfa\x09\x09\x09\xaa\x05\x04\x05\x44\x00\x00\x00\x2b\x00\x00\x00\ +\x1f\x00\x00\x00\x15\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x23\x23\x23\x30\x11\x11\x11\xbf\x04\x04\x04\xff\x02\x02\x02\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x20\xff\x00\x00\x90\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc5\xff\x00\x00\x9a\ +\xff\x00\x00\x53\xff\x00\x00\x1b\xff\x00\x00\x03\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x01\xff\x00\x00\x09\xff\x00\x00\x1a\ +\xff\x00\x00\x3e\xff\x00\x00\x8b\xff\x00\x00\xc3\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\x86\xff\x00\x00\x24\xff\x00\x00\x60\ +\xff\x00\x00\x82\xff\x00\x00\x51\xff\x00\x00\x1e\xff\x00\x00\x04\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x02\x02\x02\xff\x06\x06\x06\ +\xf2\x11\x10\x10\x90\x05\x05\x05\x3a\x00\x00\x00\x28\x00\x00\x00\ +\x1c\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x1e\x1c\x1d\x19\x14\x13\x14\x99\x07\x07\x07\xfa\x03\x03\x03\ +\xff\x02\x02\x02\xff\x01\x01\x01\xff\x00\x00\x40\xff\x00\x00\xb9\ +\xff\x00\x00\xcc\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xc5\xff\x00\x00\x88\xff\x00\x00\x2f\ +\xff\x00\x00\x05\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x04\xff\x00\x00\x0f\ +\xff\x00\x00\x23\xff\x00\x00\x41\xff\x00\x00\x68\xff\x00\x00\x8d\ +\xff\x00\x00\xb2\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xcb\xff\x00\x00\x96\xff\x00\x00\x24\xff\x00\x00\x10\ +\xff\x00\x00\x11\xff\x00\x00\x03\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x03\x03\x03\xff\x04\x04\x04\xff\x09\x08\x09\ +\xe1\x0e\x0d\x0e\x70\x02\x02\x02\x31\x00\x00\x00\x24\x00\x00\x00\ +\x18\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x02\x1d\x1c\x1d\x0b\x1a\x1a\x1a\x6d\x0a\x0b\x0b\xec\x05\x05\x05\ +\xff\x04\x03\x03\xff\x02\x02\x01\xff\x01\x01\x38\xff\x00\x00\xb1\ +\xff\x00\x00\xcc\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xcc\xff\x00\x00\xa7\xff\x00\x00\x34\xff\x00\x00\x02\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x02\ +\xff\x00\x00\x0f\xff\x00\x00\x27\xff\x00\x00\x4a\xff\x00\x00\x72\ +\xff\x00\x00\x96\xff\x00\x00\xb2\xff\x00\x00\xc4\xff\x00\x00\xca\ +\xff\x00\x00\xcb\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xcc\xff\x00\x00\x9f\xff\x00\x00\x28\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x03\x03\x03\xff\x04\x04\x04\xff\x06\x06\x06\xfe\x0d\x0d\x0d\ +\xc6\x0d\x0d\x0d\x55\x00\x00\x00\x2c\x00\x00\x00\x20\x00\x00\x00\ +\x15\x00\x00\x00\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x0d\x0c\x0c\x04\x22\x21\x22\x41\x12\x12\x12\xce\x07\x07\x07\ +\xff\x05\x05\x05\xff\x03\x03\x02\xff\x01\x01\x15\xff\x00\x00\x78\ +\xff\x00\x00\xc5\xff\x00\x00\xcb\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xcb\xff\x00\x00\x8e\xff\x00\x00\x18\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x06\xff\x00\x00\x1e\xff\x00\x00\x46\ +\xff\x00\x00\x72\xff\x00\x00\x99\xff\x00\x00\xb5\xff\x00\x00\xc5\ +\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xcc\xff\x00\x00\x99\xff\x00\x00\x24\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\ +\xff\x04\x04\x04\xff\x06\x06\x06\xff\x09\x09\x09\xf7\x10\x0f\x0f\ +\x9f\x08\x08\x08\x3f\x00\x00\x00\x27\x00\x00\x00\x1c\x00\x00\x00\ +\x11\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x2e\x2c\x2d\x1e\x1d\x1c\x1c\x9e\x0c\x0c\x0c\ +\xfa\x07\x07\x07\xff\x05\x05\x05\xff\x02\x02\x04\xff\x01\x01\x24\ +\xff\x00\x00\x7a\xff\x00\x00\xb9\xff\x00\x00\xca\xff\x00\x00\xcd\ +\xff\x00\x00\xcc\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xcc\ +\xff\x00\x00\xcd\xff\x00\x00\x8d\xff\x00\x00\x18\xff\x00\x00\x01\ +\xff\x00\x00\x1d\xff\x00\x00\x5a\xff\x00\x00\x91\xff\x00\x00\xb7\ +\xff\x00\x00\xc6\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\x89\xff\x00\x00\x1a\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\xff\x04\x04\x04\ +\xff\x06\x06\x06\xff\x08\x08\x08\xff\x0d\x0d\x0d\xe4\x13\x12\x12\ +\x73\x03\x03\x03\x31\x00\x00\x00\x22\x00\x00\x00\x17\x00\x00\x00\ +\x0e\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x02\x29\x28\x28\x0a\x2c\x2b\x2c\x62\x14\x14\x15\ +\xe5\x09\x09\x09\xff\x07\x07\x07\xff\x04\x04\x04\xff\x02\x02\x04\ +\xff\x00\x00\x19\xff\x00\x00\x51\xff\x00\x00\x84\xff\x00\x00\x9d\ +\xff\x00\x00\xaa\xff\x00\x00\xb4\xff\x00\x00\xbb\xff\x00\x00\xbb\ +\xff\x00\x00\xbd\xff\x00\x00\x8f\xff\x00\x00\x1f\xff\x00\x00\x20\ +\xff\x00\x00\x7e\xff\x00\x00\xbd\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xc4\xff\x00\x00\x6d\xff\x00\x00\x0d\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x03\x03\x03\xff\x06\x06\x06\ +\xff\x08\x08\x08\xff\x0b\x0b\x0b\xfc\x15\x15\x15\xbd\x12\x12\x12\ +\x4d\x00\x00\x00\x29\x00\x00\x00\x1d\x00\x00\x00\x13\x00\x00\x00\ +\x0b\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x06\x06\x06\x04\x38\x38\x39\x2c\x1f\x1f\x20\ +\xb6\x0d\x0e\x0e\xfc\x09\x09\x09\xff\x06\x06\x06\xff\x03\x03\x03\ +\xff\x01\x01\x00\xff\x00\x00\x04\xff\x00\x00\x11\xff\x00\x00\x20\ +\xff\x00\x00\x2e\xff\x00\x00\x3a\xff\x00\x00\x45\xff\x00\x00\x46\ +\xff\x00\x00\x46\xff\x00\x00\x3a\xff\x00\x00\x19\xff\x00\x00\x64\ +\xff\x00\x00\xc2\xff\x00\x00\xcb\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xcb\ +\xff\x00\x00\xb1\xff\x00\x00\x43\xff\x00\x00\x03\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xff\x05\x05\x05\xff\x08\x08\x08\ +\xff\x0a\x0a\x0a\xff\x10\x10\x11\xec\x1b\x1a\x1b\x87\x09\x08\x08\ +\x34\x00\x00\x00\x23\x00\x00\x00\x19\x00\x00\x00\x0f\x00\x00\x00\ +\x08\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x32\x32\x33\x0d\x2c\x2c\x2c\ +\x70\x16\x16\x16\xe9\x0c\x0c\x0c\xff\x09\x09\x09\xff\x06\x06\x06\ +\xff\x02\x02\x02\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x19\xff\x00\x00\x8e\ +\xff\x00\x00\xcc\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\x8f\xff\x00\x00\x1e\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x01\x01\x01\xff\x04\x04\x04\xff\x07\x07\x07\xff\x0a\x0a\x0a\ +\xff\x0e\x0e\x0e\xfd\x17\x17\x17\xc4\x18\x18\x18\x54\x00\x00\x00\ +\x28\x00\x00\x00\x1d\x00\x00\x00\x13\x00\x00\x00\x0c\x00\x00\x00\ +\x06\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x06\x06\x06\x03\x39\x39\x39\ +\x30\x23\x23\x23\xb5\x11\x11\x11\xfc\x0c\x0c\x0c\xff\x09\x09\x09\ +\xff\x05\x05\x05\xff\x02\x02\x02\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x18\xff\x00\x00\x8c\ +\xff\x00\x00\xcb\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xbe\ +\xff\x00\x00\x93\xff\x00\x00\x82\xff\x00\x00\xa8\xff\x00\x00\xbe\ +\xff\x00\x00\xc5\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc1\ +\xff\x00\x00\x60\xff\x00\x00\x08\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x01\x01\x01\ +\xff\x03\x03\x03\xff\x07\x07\x07\xff\x0a\x0a\x0a\xff\x0e\x0e\x0e\ +\xff\x13\x13\x13\xeb\x1c\x1b\x1b\x87\x0c\x0b\x0c\x33\x00\x00\x00\ +\x21\x00\x00\x00\x17\x00\x00\x00\x0f\x00\x00\x00\x08\x00\x00\x00\ +\x04\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x3d\x3c\x3c\ +\x0c\x37\x37\x37\x67\x1d\x1d\x1d\xe3\x10\x10\x10\xff\x0c\x0c\x0c\ +\xff\x08\x08\x08\xff\x04\x04\x04\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0d\xff\x00\x00\x79\ +\xff\x00\x00\xc9\xff\x00\x00\xcb\xff\x00\x00\xb9\xff\x00\x00\x72\ +\xff\x00\x00\x27\xff\x00\x00\x18\xff\x00\x00\x39\xff\x00\x00\x58\ +\xff\x00\x00\x6e\xff\x00\x00\x81\xff\x00\x00\x91\xff\x00\x00\xa4\ +\xff\x00\x00\xbf\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xa7\ +\xff\x00\x00\x32\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x03\x03\x03\ +\xff\x06\x06\x06\xff\x0a\x0a\x0a\xff\x0e\x0e\x0e\xff\x12\x12\x12\ +\xfc\x1e\x1e\x1e\xbc\x1b\x1b\x1b\x4d\x00\x00\x00\x25\x00\x00\x00\ +\x1b\x00\x00\x00\x12\x00\x00\x00\x0b\x00\x00\x00\x05\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x03\x4c\x4c\x4c\x22\x33\x33\x33\x9e\x18\x18\x18\xf9\x0f\x0f\x0f\ +\xff\x0c\x0c\x0c\xff\x07\x07\x07\xff\x03\x03\x03\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x04\xff\x00\x00\x5a\ +\xff\x00\x00\xc2\xff\x00\x00\xcb\xff\x00\x00\x88\xff\x00\x00\x1d\ +\xff\x00\x00\x00\xff\x00\x00\x02\xff\x00\x00\x08\xff\x00\x00\x0b\ +\xff\x00\x00\x0d\xff\x00\x00\x13\xff\x00\x00\x21\xff\x00\x00\x3e\ +\xff\x00\x00\x96\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc7\xff\x00\x00\x78\ +\xff\x00\x00\x0f\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\xff\x05\x05\x05\ +\xff\x0a\x0a\x0a\xff\x0e\x0e\x0e\xff\x12\x12\x12\xff\x1b\x1b\x1b\ +\xe2\x28\x27\x27\x70\x09\x09\x09\x2c\x00\x00\x00\x1f\x00\x00\x00\ +\x15\x00\x00\x00\x0d\x00\x00\x00\x08\x00\x00\x00\x04\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x02\x28\x28\x28\x07\x4a\x4a\x4a\x42\x2a\x29\x2a\xcd\x15\x15\x15\ +\xfe\x10\x10\x10\xff\x0b\x0b\x0b\xff\x07\x07\x07\xff\x03\x03\x03\ +\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x3c\ +\xff\x00\x00\xb3\xff\x00\x00\xc9\xff\x00\x00\x72\xff\x00\x00\x0d\ +\xff\x00\x00\x16\xff\x00\x00\x47\xff\x00\x00\x66\xff\x00\x00\x65\ +\xff\x00\x00\x4e\xff\x00\x00\x46\xff\x00\x00\x5b\xff\x00\x00\x79\ +\xff\x00\x00\xad\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xca\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xcc\xff\x00\x00\xb7\xff\x00\x00\x48\ +\xff\x00\x00\x02\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x02\x02\x02\xff\x05\x05\x05\xff\x09\x09\x09\ +\xff\x0e\x0e\x0e\xff\x12\x12\x12\xff\x19\x19\x19\xf4\x27\x27\x27\ +\x9b\x16\x16\x16\x37\x00\x00\x00\x21\x00\x00\x00\x18\x00\x00\x00\ +\x10\x00\x00\x00\x09\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x02\x45\x44\x44\x0c\x42\x42\x42\x6b\x24\x25\x24\ +\xe4\x14\x15\x14\xff\x10\x10\x10\xff\x0c\x0c\x0c\xff\x07\x07\x07\ +\xff\x03\x03\x03\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x21\ +\xff\x00\x00\x9b\xff\x00\x00\xcc\xff\x00\x00\x8e\xff\x00\x00\x44\ +\xff\x00\x00\x79\xff\x00\x00\xb6\xff\x00\x00\xc5\xff\x00\x00\xc5\ +\xff\x00\x00\xbd\xff\x00\x00\xba\xff\x00\x00\xc1\xff\x00\x00\xc8\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xcb\ +\xff\x00\x00\xcc\xff\x00\x00\xcb\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xcb\xff\x00\x00\x93\xff\x00\x00\x1d\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x02\x02\x02\xff\x05\x05\x05\xff\x09\x09\x09\xff\x0e\x0e\x0e\ +\xff\x12\x12\x12\xff\x19\x19\x18\xfa\x25\x25\x25\xba\x22\x22\x22\ +\x4c\x00\x00\x00\x23\x00\x00\x00\x1a\x00\x00\x00\x12\x00\x00\x00\ +\x0b\x00\x00\x00\x06\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x52\x52\x52\x1a\x41\x41\x41\ +\x88\x24\x25\x24\xed\x16\x16\x16\xff\x11\x11\x11\xff\x0c\x0c\x0c\ +\xff\x07\x07\x07\xff\x04\x04\x04\xff\x01\x01\x01\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x0c\ +\xff\x00\x00\x76\xff\x00\x00\xca\xff\x00\x00\xbf\xff\x00\x00\xb1\ +\xff\x00\x00\xc4\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc8\xff\x00\x00\xb3\xff\x00\x00\x99\ +\xff\x00\x00\xa1\xff\x00\x00\xb4\xff\x00\x00\xc5\xff\x00\x00\xc9\ +\xff\x00\x00\xcb\xff\x00\x00\xc0\xff\x00\x00\x5c\xff\x00\x00\x06\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x02\x02\x02\ +\xff\x06\x06\x06\xff\x0a\x0a\x0a\xff\x0f\x0f\x0f\xff\x13\x13\x13\ +\xff\x19\x19\x19\xfc\x28\x28\x28\xcd\x2f\x2f\x2f\x61\x08\x08\x08\ +\x27\x00\x00\x00\x1b\x00\x00\x00\x13\x00\x00\x00\x0c\x00\x00\x00\ +\x07\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x10\x10\x10\x04\x5a\x5a\x5a\ +\x2a\x42\x42\x42\x9e\x24\x24\x24\xf2\x17\x17\x17\xff\x12\x12\x12\ +\xff\x0d\x0d\x0d\xff\x08\x08\x08\xff\x04\x04\x04\xff\x01\x01\x01\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x03\ +\xff\x00\x00\x51\xff\x00\x00\xbe\xff\x00\x00\xcb\xff\x00\x00\xcb\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xca\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xa5\xff\x00\x00\x4d\ +\xff\x00\x00\x2a\xff\x00\x00\x44\xff\x00\x00\x93\xff\x00\x00\xc7\ +\xff\x00\x00\xcc\xff\x00\x00\xa1\xff\x00\x00\x2a\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x01\x01\x01\xff\x03\x03\x03\xff\x06\x06\x06\ +\xff\x0a\x0a\x0a\xff\x0f\x0f\x0f\xff\x14\x14\x14\xff\x1a\x1a\x1a\ +\xfd\x27\x27\x27\xd9\x34\x34\x34\x73\x16\x16\x16\x2d\x00\x00\x00\ +\x1c\x00\x00\x00\x14\x00\x00\x00\x0d\x00\x00\x00\x08\x00\x00\x00\ +\x04\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x33\x33\x33\ +\x07\x60\x60\x60\x36\x44\x44\x45\xab\x26\x27\x27\xf4\x18\x18\x18\ +\xff\x13\x13\x13\xff\x0e\x0e\x0e\xff\x09\x09\x09\xff\x05\x05\x05\ +\xff\x02\x02\x02\xff\x01\x01\x01\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x2c\xff\x00\x00\xa5\xff\x00\x00\xcc\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xc7\xff\x00\x00\xc0\xff\x00\x00\xad\xff\x00\x00\x56\ +\xff\x00\x00\x04\xff\x00\x00\x10\xff\x00\x00\x76\xff\x00\x00\xc8\ +\xff\x00\x00\xc3\xff\x00\x00\x6b\xff\x00\x00\x0d\xff\x00\x00\x00\ +\xff\x02\x02\x02\xff\x04\x04\x04\xff\x07\x07\x07\xff\x0c\x0c\x0c\ +\xff\x11\x11\x11\xff\x16\x16\x16\xff\x1c\x1c\x1c\xfe\x29\x29\x29\ +\xdd\x35\x35\x35\x7f\x1b\x1a\x1a\x30\x00\x00\x00\x1c\x00\x00\x00\ +\x15\x00\x00\x00\x0e\x00\x00\x00\x09\x00\x00\x00\x04\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x44\x44\x45\x07\x66\x66\x67\x3a\x48\x48\x48\xa9\x29\x29\x29\ +\xf3\x1a\x1a\x1a\xff\x14\x14\x14\xff\x10\x10\x10\xff\x0b\x0b\x0b\ +\xff\x07\x07\x07\xff\x04\x04\x04\xff\x02\x02\x02\xff\x00\x00\x00\ +\xff\x00\x00\x0e\xff\x00\x00\x6f\xff\x00\x00\xc2\xff\x00\x00\xcc\ +\xff\x00\x00\xca\xff\x00\x00\xc9\xff\x00\x00\xc9\xff\x00\x00\xc9\ +\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\xcc\xff\x00\x00\xcc\ +\xff\x00\x00\xcd\xff\x00\x00\xcd\xff\x00\x00\xcc\xff\x00\x00\xcb\ +\xff\x00\x00\xb9\xff\x00\x00\x94\xff\x00\x00\x6b\xff\x00\x00\x42\ +\xff\x00\x00\x3a\xff\x00\x00\x64\xff\x00\x00\xac\xff\x00\x00\xc0\ +\xff\x00\x00\x81\xff\x00\x00\x23\xff\x01\x01\x02\xff\x03\x03\x03\ +\xff\x06\x06\x06\xff\x09\x09\x09\xff\x0e\x0e\x0e\xff\x12\x12\x12\ +\xff\x17\x17\x17\xff\x1e\x1e\x1e\xfe\x2e\x2e\x2e\xdc\x3b\x3b\x3c\ +\x7e\x21\x22\x22\x31\x00\x00\x00\x1c\x00\x00\x00\x14\x00\x00\x00\ +\x0e\x00\x00\x00\x09\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x02\x43\x42\x42\x08\x66\x66\x66\x36\x4b\x4b\x4b\ +\x9d\x2e\x2e\x2e\xee\x1d\x1d\x1d\xff\x17\x17\x17\xff\x13\x13\x13\ +\xff\x0e\x0e\x0e\xff\x0a\x0a\x0a\xff\x06\x06\x06\xff\x03\x03\x03\ +\xff\x01\x01\x02\xff\x00\x00\x28\xff\x00\x00\x7c\xff\x00\x00\xb2\ +\xff\x00\x00\xc7\xff\x00\x00\xcb\xff\x00\x00\xcb\xff\x00\x00\xca\ +\xff\x00\x00\xc6\xff\x00\x00\xbe\xff\x00\x00\xae\xff\x00\x00\xa2\ +\xff\x00\x00\x9f\xff\x00\x00\xa3\xff\x00\x00\xb2\xff\x00\x00\xc3\ +\xff\x00\x00\xc3\xff\x00\x00\xb5\xff\x00\x00\xa5\xff\x00\x00\xa2\ +\xff\x00\x00\xac\xff\x00\x00\xb5\xff\x00\x00\xa6\xff\x00\x00\x6d\ +\xff\x01\x01\x24\xff\x02\x02\x04\xff\x04\x04\x04\xff\x08\x08\x08\ +\xff\x0c\x0c\x0c\xff\x10\x10\x10\xff\x15\x15\x15\xff\x19\x19\x19\ +\xff\x21\x21\x21\xfb\x34\x34\x34\xd4\x41\x41\x41\x75\x22\x22\x23\ +\x2e\x00\x00\x00\x1a\x00\x00\x00\x14\x00\x00\x00\x0e\x00\x00\x00\ +\x09\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x36\x36\x36\x06\x69\x68\x68\ +\x27\x59\x59\x59\x89\x3a\x3a\x3b\xe5\x22\x22\x22\xfe\x1a\x1a\x1a\ +\xff\x16\x16\x16\xff\x11\x11\x11\xff\x0d\x0d\x0d\xff\x09\x09\x09\ +\xff\x05\x05\x05\xff\x03\x03\x06\xff\x02\x02\x1b\xff\x01\x01\x42\ +\xff\x00\x00\x72\xff\x00\x00\x84\xff\x00\x00\x84\xff\x00\x00\x76\ +\xff\x00\x00\x64\xff\x00\x00\x50\xff\x00\x00\x39\xff\x00\x00\x29\ +\xff\x00\x00\x25\xff\x00\x00\x2a\xff\x00\x00\x3f\xff\x00\x00\x5f\ +\xff\x00\x00\x7b\xff\x00\x00\x86\xff\x00\x00\x86\xff\x00\x00\x86\ +\xff\x00\x00\x76\xff\x00\x00\x5a\xff\x02\x02\x36\xff\x03\x03\x13\ +\xff\x04\x04\x05\xff\x07\x07\x07\xff\x0b\x0b\x0b\xff\x0f\x0f\x0f\ +\xff\x14\x14\x14\xff\x18\x18\x18\xff\x1c\x1c\x1c\xff\x27\x27\x27\ +\xf8\x3c\x3d\x3d\xc5\x49\x48\x49\x65\x1f\x1f\x1f\x28\x00\x00\x00\ +\x19\x00\x00\x00\x12\x00\x00\x00\x0d\x00\x00\x00\x09\x00\x00\x00\ +\x05\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\ +\x03\x72\x71\x72\x17\x6b\x6b\x6b\x67\x47\x47\x47\xc9\x2c\x2c\x2c\ +\xf8\x1f\x1f\x1f\xff\x1a\x1a\x1a\xff\x16\x16\x16\xff\x11\x11\x11\ +\xff\x0d\x0d\x0d\xff\x0a\x0a\x0a\xff\x07\x07\x07\xff\x05\x05\x06\ +\xff\x03\x03\x0d\xff\x02\x02\x11\xff\x00\x00\x10\xff\x00\x00\x0a\ +\xff\x00\x00\x05\xff\x00\x00\x02\xff\x00\x00\x00\xff\x00\x00\x00\ +\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x05\ +\xff\x00\x00\x0c\xff\x00\x00\x10\xff\x00\x00\x10\xff\x01\x01\x11\ +\xff\x02\x02\x0c\xff\x04\x04\x07\xff\x06\x06\x06\xff\x09\x09\x08\ +\xff\x0c\x0c\x0c\xff\x0f\x0f\x0f\xff\x14\x14\x14\xff\x18\x18\x18\ +\xff\x1c\x1c\x1c\xff\x23\x23\x23\xfd\x31\x31\x31\xe9\x47\x47\x47\ +\xa4\x49\x4a\x4a\x4b\x13\x14\x14\x1f\x00\x00\x00\x16\x00\x00\x00\ +\x11\x00\x00\x00\x0c\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\ +\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x03\x5e\x5e\x5e\x0e\x72\x73\x73\x42\x5a\x5a\x5a\ +\x9e\x40\x40\x40\xe1\x2a\x2a\x2a\xfb\x1e\x1e\x1e\xff\x1a\x1a\x1a\ +\xff\x16\x16\x16\xff\x13\x13\x13\xff\x0f\x0f\x0f\xff\x0d\x0d\x0d\ +\xff\x0b\x0b\x0a\xff\x08\x08\x08\xff\x06\x06\x06\xff\x04\x04\x04\ +\xff\x04\x04\x03\xff\x03\x03\x02\xff\x02\x02\x02\xff\x01\x01\x01\ +\xff\x01\x01\x01\xff\x01\x01\x01\xff\x02\x02\x02\xff\x02\x02\x02\ +\xff\x03\x03\x03\xff\x04\x04\x04\xff\x05\x05\x05\xff\x07\x07\x06\ +\xff\x09\x09\x09\xff\x0c\x0c\x0b\xff\x0e\x0e\x0e\xff\x11\x11\x11\ +\xff\x15\x15\x15\xff\x18\x18\x18\xff\x1c\x1c\x1c\xff\x21\x21\x21\ +\xfe\x2f\x2f\x2f\xf3\x42\x43\x43\xc9\x50\x50\x50\x7c\x40\x3f\x3f\ +\x34\x06\x06\x06\x1a\x00\x00\x00\x14\x00\x00\x00\x0f\x00\x00\x00\ +\x0a\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x03\x3a\x39\x39\x06\x7e\x7e\x7e\ +\x21\x72\x72\x72\x63\x57\x56\x57\xb4\x3c\x3d\x3c\xe9\x2a\x2b\x2a\ +\xfc\x20\x20\x20\xff\x1c\x1c\x1c\xff\x19\x19\x19\xff\x16\x16\x16\ +\xff\x13\x13\x13\xff\x11\x11\x11\xff\x0f\x0f\x0f\xff\x0d\x0d\x0d\ +\xff\x0c\x0c\x0c\xff\x0a\x0a\x0a\xff\x0a\x0a\x0a\xff\x09\x09\x09\ +\xff\x08\x08\x08\xff\x09\x09\x09\xff\x09\x09\x09\xff\x0a\x0a\x0a\ +\xff\x0b\x0b\x0b\xff\x0d\x0d\x0d\xff\x0e\x0e\x0e\xff\x10\x10\x10\ +\xff\x12\x12\x12\xff\x15\x15\x15\xff\x17\x17\x17\xff\x1a\x1a\x1a\ +\xff\x1d\x1d\x1d\xff\x24\x24\x24\xfe\x2f\x30\x30\xf6\x3f\x40\x40\ +\xd7\x53\x53\x53\x95\x57\x57\x57\x4d\x2d\x2d\x2e\x22\x00\x00\x00\ +\x14\x00\x00\x00\x10\x00\x00\x00\x0c\x00\x00\x00\x08\x00\x00\x00\ +\x05\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x60\x60\x60\x0b\x80\x80\x80\x2b\x6e\x6f\x6e\x6b\x58\x58\x58\ +\xb1\x46\x46\x46\xe2\x35\x35\x35\xf9\x27\x27\x27\xff\x1f\x20\x1f\ +\xff\x1b\x1b\x1b\xff\x1a\x1a\x1a\xff\x18\x18\x18\xff\x17\x17\x17\ +\xff\x15\x15\x15\xff\x14\x14\x14\xff\x13\x13\x13\xff\x13\x13\x13\ +\xff\x13\x13\x13\xff\x12\x12\x12\xff\x13\x13\x13\xff\x14\x14\x14\ +\xff\x15\x15\x15\xff\x16\x16\x16\xff\x17\x17\x17\xff\x19\x19\x19\ +\xff\x1a\x1a\x1a\xff\x1d\x1d\x1d\xff\x22\x22\x22\xff\x2c\x2c\x2c\ +\xfd\x3a\x3a\x3a\xf2\x48\x48\x49\xd1\x57\x57\x57\x98\x5d\x5d\x5d\ +\x56\x41\x41\x41\x27\x0a\x0a\x0a\x15\x00\x00\x00\x10\x00\x00\x00\ +\x0d\x00\x00\x00\x09\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\ +\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x03\x05\x05\x05\x04\x60\x60\x60\x0d\x7e\x7d\x7e\ +\x2a\x79\x79\x79\x5d\x6d\x6e\x6d\x99\x59\x59\x59\xca\x43\x44\x43\ +\xe9\x33\x33\x33\xfa\x2b\x2b\x2b\xfe\x24\x24\x24\xff\x1f\x1f\x1f\ +\xff\x1e\x1e\x1e\xff\x1d\x1d\x1d\xff\x1c\x1c\x1c\xff\x1c\x1b\x1c\ +\xff\x1b\x1b\x1b\xff\x1b\x1b\x1b\xff\x1c\x1c\x1c\xff\x1c\x1c\x1c\ +\xff\x1d\x1d\x1d\xff\x1e\x1e\x1e\xff\x21\x21\x21\xff\x27\x27\x27\ +\xff\x2e\x2e\x2e\xfd\x38\x38\x39\xf4\x4b\x4b\x4b\xde\x5c\x5c\x5b\ +\xb8\x66\x67\x66\x83\x63\x62\x63\x4e\x47\x47\x48\x27\x12\x12\x12\ +\x15\x00\x00\x00\x10\x00\x00\x00\x0d\x00\x00\x00\x0a\x00\x00\x00\ +\x07\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\ +\x03\x4b\x4b\x4b\x09\x81\x82\x81\x1b\x86\x86\x87\x3a\x78\x78\x78\ +\x63\x6d\x6d\x6c\x93\x60\x60\x60\xb8\x57\x57\x57\xd8\x4d\x4d\x4d\ +\xee\x43\x43\x43\xf6\x3d\x3d\x3d\xf9\x38\x38\x38\xfc\x34\x34\x34\ +\xfe\x34\x34\x34\xff\x34\x34\x34\xff\x34\x34\x34\xfe\x39\x3a\x3a\ +\xfb\x3f\x3f\x3f\xf8\x47\x47\x47\xf4\x4f\x4f\x4f\xe5\x56\x56\x56\ +\xca\x60\x61\x60\xab\x68\x68\x69\x82\x6f\x6f\x6f\x56\x66\x66\x66\ +\x34\x3e\x3e\x3d\x1c\x09\x08\x09\x11\x00\x00\x00\x0e\x00\x00\x00\ +\x0c\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\ +\x02\x00\x00\x00\x03\x00\x00\x00\x03\x08\x09\x08\x05\x45\x44\x44\ +\x09\x6e\x6e\x6e\x14\x7d\x7d\x7d\x25\x87\x87\x87\x3e\x80\x80\x80\ +\x56\x7d\x7d\x7d\x6c\x81\x80\x81\x83\x81\x81\x81\x99\x83\x84\x83\ +\xa9\x84\x84\x84\xb1\x82\x82\x82\xae\x7f\x7f\x7f\xa2\x7c\x7d\x7d\ +\x90\x79\x79\x79\x7a\x77\x77\x77\x65\x77\x77\x77\x4f\x70\x70\x70\ +\x37\x58\x58\x58\x23\x39\x39\x39\x17\x0e\x0e\x0e\x0f\x00\x00\x00\ +\x0c\x00\x00\x00\x0b\x00\x00\x00\x09\x00\x00\x00\x07\x00\x00\x00\ +\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\ +\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x06\x06\x06\x05\ +\x07\x29\x29\x29\x0b\x48\x48\x48\x0e\x57\x57\x57\x12\x5f\x5f\x5f\ +\x15\x61\x61\x61\x16\x5b\x5b\x5b\x17\x52\x52\x52\x15\x44\x44\x44\ +\x13\x2d\x2d\x2d\x10\x0e\x0e\x0e\x0d\x00\x00\x00\x0b\x00\x00\x00\ +\x0b\x00\x00\x00\x0a\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\ +\x07\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\ +\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x01\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\ +\x04\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\ +\x06\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\ +\x07\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\ +\x06\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\ +\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xff\xff\xfc\x00\x00\x00\x03\xff\xff\x00\x00\ +\x00\xff\xff\xf0\x00\x00\x00\x00\xff\xff\x00\x00\x00\xff\xff\xc0\ +\x00\x00\x00\x00\x7f\xff\x00\x00\x00\xff\xff\x80\x00\x00\x00\x00\ +\x1f\xff\x00\x00\x00\xff\xfe\x00\x00\x00\x00\x00\x07\xff\x00\x00\ +\x00\xff\xfc\x00\x00\x00\x00\x00\x03\xff\x00\x00\x00\xff\xf8\x00\ +\x00\x00\x00\x00\x01\xff\x00\x00\x00\xff\xf0\x00\x00\x00\x00\x00\ +\x00\xff\x00\x00\x00\xff\xe0\x00\x00\x00\x00\x00\x00\x7f\x00\x00\ +\x00\xff\xc0\x00\x00\x00\x00\x00\x00\x3f\x00\x00\x00\xff\x80\x00\ +\x00\x00\x00\x00\x00\x1f\x00\x00\x00\xff\x00\x00\x00\x00\x00\x00\ +\x00\x0f\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\ +\x00\xfc\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\xfc\x00\x00\ +\x00\x00\x00\x00\x00\x03\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\ +\x00\x01\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\ +\x00\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x00\x00\ +\x00\x00\x00\x00\x00\x01\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x00\ +\x00\x03\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\ +\x00\xfe\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\xff\x00\x00\ +\x00\x00\x00\x00\x00\x0f\x00\x00\x00\xff\x80\x00\x00\x00\x00\x00\ +\x00\x1f\x00\x00\x00\xff\x80\x00\x00\x00\x00\x00\x00\x3f\x00\x00\ +\x00\xff\xe0\x00\x00\x00\x00\x00\x00\x3f\x00\x00\x00\xff\xf0\x00\ +\x00\x00\x00\x00\x00\x7f\x00\x00\x00\xff\xf8\x00\x00\x00\x00\x00\ +\x01\xff\x00\x00\x00\xff\xfc\x00\x00\x00\x00\x00\x03\xff\x00\x00\ +\x00\xff\xfe\x00\x00\x00\x00\x00\x07\xff\x00\x00\x00\xff\xff\x00\ +\x00\x00\x00\x00\x0f\xff\x00\x00\x00\xff\xff\xc0\x00\x00\x00\x00\ +\x3f\xff\x00\x00\x00\xff\xff\xe0\x00\x00\x00\x00\x7f\xff\x00\x00\ +\x00\xff\xff\xf8\x00\x00\x00\x01\xff\xff\x00\x00\x00\xff\xff\xff\ +\x00\x00\x00\x0f\xff\xff\x00\x00\x00\xff\xff\xff\xc0\x00\x00\x1f\ +\xff\xff\x00\x00\x00\ +" + +qt_resource_name = b"\ +\x00\x04\ +\x00\x07\x37\xfe\ +\x00\x6d\ +\x00\x61\x00\x69\x00\x6e\ +\x00\x05\ +\x00\x6f\xa6\x53\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x0e\ +\x0b\xbd\x27\x87\ +\x00\x61\ +\x00\x72\x00\x64\x00\x75\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x05\xe2\x59\x27\ +\x00\x6c\ +\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x05\xe2\x41\xff\ +\x00\x6c\ +\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x69\x00\x63\x00\x6f\ +" + +qt_resource_struct = b"\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ +\x00\x00\x00\x0e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\ +\x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\xb4\x8d\ +\x00\x00\x00\x40\x00\x00\x00\x00\x00\x01\x00\x00\x81\xae\ +\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +" + +def qInitResources(): + QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + +def qCleanupResources(): + QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + +qInitResources() diff --git a/icons/main/arduloader.png b/icons/main/arduloader.png new file mode 100644 index 0000000..2b3730e Binary files /dev/null and b/icons/main/arduloader.png differ diff --git a/icons/main/logo.ico b/icons/main/logo.ico new file mode 100644 index 0000000..b523bbc Binary files /dev/null and b/icons/main/logo.ico differ diff --git a/icons/main/logo.png b/icons/main/logo.png new file mode 100644 index 0000000..ad38530 Binary files /dev/null and b/icons/main/logo.png differ diff --git a/main.py b/main.py new file mode 100644 index 0000000..18ca8ad --- /dev/null +++ b/main.py @@ -0,0 +1,17 @@ +#-*- coding: utf-8 -*- +#Author: Uname +#Date: 2014/2/11 +#Version: 0.2 +#Copyright: uname.github.io + +import sys +sys.dont_write_bytecode = True +from ArduloaderWindow import ArduloaderWindow +from PyQt4.QtGui import QApplication + +if __name__ == "__main__": + app = QApplication(sys.argv) + app.setStyle("cleanlooks") + window = ArduloaderWindow() + window.show() + sys.exit(app.exec_()) diff --git a/serial/__init__.py b/serial/__init__.py new file mode 100644 index 0000000..33ae52e --- /dev/null +++ b/serial/__init__.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python + +# portable serial port access with python +# this is a wrapper module for different platform implementations +# +# (C) 2001-2010 Chris Liechti +# this is distributed under a free software license, see license.txt + +VERSION = '2.7' + +import sys + +if sys.platform == 'cli': + from serial.serialcli import * +else: + import os + # chose an implementation, depending on os + if os.name == 'nt': #sys.platform == 'win32': + from serial.serialwin32 import * + elif os.name == 'posix': + from serial.serialposix import * + elif os.name == 'java': + from serial.serialjava import * + else: + raise ImportError("Sorry: no implementation for your platform ('%s') available" % (os.name,)) + + +protocol_handler_packages = [ + 'serial.urlhandler', + ] + +def serial_for_url(url, *args, **kwargs): + """\ + Get an instance of the Serial class, depending on port/url. The port is not + opened when the keyword parameter 'do_not_open' is true, by default it + is. All other parameters are directly passed to the __init__ method when + the port is instantiated. + + The list of package names that is searched for protocol handlers is kept in + ``protocol_handler_packages``. + + e.g. we want to support a URL ``foobar://``. A module + ``my_handlers.protocol_foobar`` is provided by the user. Then + ``protocol_handler_packages.append("my_handlers")`` would extend the search + path so that ``serial_for_url("foobar://"))`` would work. + """ + # check remove extra parameter to not confuse the Serial class + do_open = 'do_not_open' not in kwargs or not kwargs['do_not_open'] + if 'do_not_open' in kwargs: del kwargs['do_not_open'] + # the default is to use the native version + klass = Serial # 'native' implementation + # check port type and get class + try: + url_nocase = url.lower() + except AttributeError: + # it's not a string, use default + pass + else: + if '://' in url_nocase: + protocol = url_nocase.split('://', 1)[0] + for package_name in protocol_handler_packages: + module_name = '%s.protocol_%s' % (package_name, protocol,) + try: + handler_module = __import__(module_name) + except ImportError: + pass + else: + klass = sys.modules[module_name].Serial + break + else: + raise ValueError('invalid URL, protocol %r not known' % (protocol,)) + else: + klass = Serial # 'native' implementation + # instantiate and open when desired + instance = klass(None, *args, **kwargs) + instance.port = url + if do_open: + instance.open() + return instance diff --git a/serial/rfc2217.py b/serial/rfc2217.py new file mode 100644 index 0000000..2012ea7 --- /dev/null +++ b/serial/rfc2217.py @@ -0,0 +1,1323 @@ +#! python +# +# Python Serial Port Extension for Win32, Linux, BSD, Jython +# see __init__.py +# +# This module implements a RFC2217 compatible client. RF2217 descibes a +# protocol to access serial ports over TCP/IP and allows setting the baud rate, +# modem control lines etc. +# +# (C) 2001-2013 Chris Liechti +# this is distributed under a free software license, see license.txt + +# TODO: +# - setting control line -> answer is not checked (had problems with one of the +# severs). consider implementing a compatibility mode flag to make check +# conditional +# - write timeout not implemented at all + +############################################################################## +# observations and issues with servers +#============================================================================= +# sredird V2.2.1 +# - http://www.ibiblio.org/pub/Linux/system/serial/ sredird-2.2.2.tar.gz +# - does not acknowledge SET_CONTROL (RTS/DTR) correctly, always responding +# [105 1] instead of the actual value. +# - SET_BAUDRATE answer contains 4 extra null bytes -> probably for larger +# numbers than 2**32? +# - To get the signature [COM_PORT_OPTION 0] has to be sent. +# - run a server: while true; do nc -l -p 7000 -c "sredird debug /dev/ttyUSB0 /var/lock/sredir"; done +#============================================================================= +# telnetcpcd (untested) +# - http://ftp.wayne.edu/kermit/sredird/telnetcpcd-1.09.tar.gz +# - To get the signature [COM_PORT_OPTION] w/o data has to be sent. +#============================================================================= +# ser2net +# - does not negotiate BINARY or COM_PORT_OPTION for his side but at least +# acknowledges that the client activates these options +# - The configuration may be that the server prints a banner. As this client +# implementation does a flushInput on connect, this banner is hidden from +# the user application. +# - NOTIFY_MODEMSTATE: the poll interval of the server seems to be one +# second. +# - To get the signature [COM_PORT_OPTION 0] has to be sent. +# - run a server: run ser2net daemon, in /etc/ser2net.conf: +# 2000:telnet:0:/dev/ttyS0:9600 remctl banner +############################################################################## + +# How to identify ports? pySerial might want to support other protocols in the +# future, so lets use an URL scheme. +# for RFC2217 compliant servers we will use this: +# rfc2217://:[/option[/option...]] +# +# options: +# - "debug" print diagnostic messages +# - "ign_set_control": do not look at the answers to SET_CONTROL +# - "poll_modem": issue NOTIFY_MODEMSTATE requests when CTS/DTR/RI/CD is read. +# Without this option it expects that the server sends notifications +# automatically on change (which most servers do and is according to the +# RFC). +# the order of the options is not relevant + +from serial.serialutil import * +import time +import struct +import socket +import threading +import Queue +import logging + +# port string is expected to be something like this: +# rfc2217://host:port +# host may be an IP or including domain, whatever. +# port is 0...65535 + +# map log level names to constants. used in fromURL() +LOGGER_LEVELS = { + 'debug': logging.DEBUG, + 'info': logging.INFO, + 'warning': logging.WARNING, + 'error': logging.ERROR, + } + + +# telnet protocol characters +IAC = to_bytes([255]) # Interpret As Command +DONT = to_bytes([254]) +DO = to_bytes([253]) +WONT = to_bytes([252]) +WILL = to_bytes([251]) +IAC_DOUBLED = to_bytes([IAC, IAC]) + +SE = to_bytes([240]) # Subnegotiation End +NOP = to_bytes([241]) # No Operation +DM = to_bytes([242]) # Data Mark +BRK = to_bytes([243]) # Break +IP = to_bytes([244]) # Interrupt process +AO = to_bytes([245]) # Abort output +AYT = to_bytes([246]) # Are You There +EC = to_bytes([247]) # Erase Character +EL = to_bytes([248]) # Erase Line +GA = to_bytes([249]) # Go Ahead +SB = to_bytes([250]) # Subnegotiation Begin + +# selected telnet options +BINARY = to_bytes([0]) # 8-bit data path +ECHO = to_bytes([1]) # echo +SGA = to_bytes([3]) # suppress go ahead + +# RFC2217 +COM_PORT_OPTION = to_bytes([44]) + +# Client to Access Server +SET_BAUDRATE = to_bytes([1]) +SET_DATASIZE = to_bytes([2]) +SET_PARITY = to_bytes([3]) +SET_STOPSIZE = to_bytes([4]) +SET_CONTROL = to_bytes([5]) +NOTIFY_LINESTATE = to_bytes([6]) +NOTIFY_MODEMSTATE = to_bytes([7]) +FLOWCONTROL_SUSPEND = to_bytes([8]) +FLOWCONTROL_RESUME = to_bytes([9]) +SET_LINESTATE_MASK = to_bytes([10]) +SET_MODEMSTATE_MASK = to_bytes([11]) +PURGE_DATA = to_bytes([12]) + +SERVER_SET_BAUDRATE = to_bytes([101]) +SERVER_SET_DATASIZE = to_bytes([102]) +SERVER_SET_PARITY = to_bytes([103]) +SERVER_SET_STOPSIZE = to_bytes([104]) +SERVER_SET_CONTROL = to_bytes([105]) +SERVER_NOTIFY_LINESTATE = to_bytes([106]) +SERVER_NOTIFY_MODEMSTATE = to_bytes([107]) +SERVER_FLOWCONTROL_SUSPEND = to_bytes([108]) +SERVER_FLOWCONTROL_RESUME = to_bytes([109]) +SERVER_SET_LINESTATE_MASK = to_bytes([110]) +SERVER_SET_MODEMSTATE_MASK = to_bytes([111]) +SERVER_PURGE_DATA = to_bytes([112]) + +RFC2217_ANSWER_MAP = { + SET_BAUDRATE: SERVER_SET_BAUDRATE, + SET_DATASIZE: SERVER_SET_DATASIZE, + SET_PARITY: SERVER_SET_PARITY, + SET_STOPSIZE: SERVER_SET_STOPSIZE, + SET_CONTROL: SERVER_SET_CONTROL, + NOTIFY_LINESTATE: SERVER_NOTIFY_LINESTATE, + NOTIFY_MODEMSTATE: SERVER_NOTIFY_MODEMSTATE, + FLOWCONTROL_SUSPEND: SERVER_FLOWCONTROL_SUSPEND, + FLOWCONTROL_RESUME: SERVER_FLOWCONTROL_RESUME, + SET_LINESTATE_MASK: SERVER_SET_LINESTATE_MASK, + SET_MODEMSTATE_MASK: SERVER_SET_MODEMSTATE_MASK, + PURGE_DATA: SERVER_PURGE_DATA, +} + +SET_CONTROL_REQ_FLOW_SETTING = to_bytes([0]) # Request Com Port Flow Control Setting (outbound/both) +SET_CONTROL_USE_NO_FLOW_CONTROL = to_bytes([1]) # Use No Flow Control (outbound/both) +SET_CONTROL_USE_SW_FLOW_CONTROL = to_bytes([2]) # Use XON/XOFF Flow Control (outbound/both) +SET_CONTROL_USE_HW_FLOW_CONTROL = to_bytes([3]) # Use HARDWARE Flow Control (outbound/both) +SET_CONTROL_REQ_BREAK_STATE = to_bytes([4]) # Request BREAK State +SET_CONTROL_BREAK_ON = to_bytes([5]) # Set BREAK State ON +SET_CONTROL_BREAK_OFF = to_bytes([6]) # Set BREAK State OFF +SET_CONTROL_REQ_DTR = to_bytes([7]) # Request DTR Signal State +SET_CONTROL_DTR_ON = to_bytes([8]) # Set DTR Signal State ON +SET_CONTROL_DTR_OFF = to_bytes([9]) # Set DTR Signal State OFF +SET_CONTROL_REQ_RTS = to_bytes([10]) # Request RTS Signal State +SET_CONTROL_RTS_ON = to_bytes([11]) # Set RTS Signal State ON +SET_CONTROL_RTS_OFF = to_bytes([12]) # Set RTS Signal State OFF +SET_CONTROL_REQ_FLOW_SETTING_IN = to_bytes([13]) # Request Com Port Flow Control Setting (inbound) +SET_CONTROL_USE_NO_FLOW_CONTROL_IN = to_bytes([14]) # Use No Flow Control (inbound) +SET_CONTROL_USE_SW_FLOW_CONTOL_IN = to_bytes([15]) # Use XON/XOFF Flow Control (inbound) +SET_CONTROL_USE_HW_FLOW_CONTOL_IN = to_bytes([16]) # Use HARDWARE Flow Control (inbound) +SET_CONTROL_USE_DCD_FLOW_CONTROL = to_bytes([17]) # Use DCD Flow Control (outbound/both) +SET_CONTROL_USE_DTR_FLOW_CONTROL = to_bytes([18]) # Use DTR Flow Control (inbound) +SET_CONTROL_USE_DSR_FLOW_CONTROL = to_bytes([19]) # Use DSR Flow Control (outbound/both) + +LINESTATE_MASK_TIMEOUT = 128 # Time-out Error +LINESTATE_MASK_SHIFTREG_EMPTY = 64 # Transfer Shift Register Empty +LINESTATE_MASK_TRANSREG_EMPTY = 32 # Transfer Holding Register Empty +LINESTATE_MASK_BREAK_DETECT = 16 # Break-detect Error +LINESTATE_MASK_FRAMING_ERROR = 8 # Framing Error +LINESTATE_MASK_PARTIY_ERROR = 4 # Parity Error +LINESTATE_MASK_OVERRUN_ERROR = 2 # Overrun Error +LINESTATE_MASK_DATA_READY = 1 # Data Ready + +MODEMSTATE_MASK_CD = 128 # Receive Line Signal Detect (also known as Carrier Detect) +MODEMSTATE_MASK_RI = 64 # Ring Indicator +MODEMSTATE_MASK_DSR = 32 # Data-Set-Ready Signal State +MODEMSTATE_MASK_CTS = 16 # Clear-To-Send Signal State +MODEMSTATE_MASK_CD_CHANGE = 8 # Delta Receive Line Signal Detect +MODEMSTATE_MASK_RI_CHANGE = 4 # Trailing-edge Ring Detector +MODEMSTATE_MASK_DSR_CHANGE = 2 # Delta Data-Set-Ready +MODEMSTATE_MASK_CTS_CHANGE = 1 # Delta Clear-To-Send + +PURGE_RECEIVE_BUFFER = to_bytes([1]) # Purge access server receive data buffer +PURGE_TRANSMIT_BUFFER = to_bytes([2]) # Purge access server transmit data buffer +PURGE_BOTH_BUFFERS = to_bytes([3]) # Purge both the access server receive data buffer and the access server transmit data buffer + + +RFC2217_PARITY_MAP = { + PARITY_NONE: 1, + PARITY_ODD: 2, + PARITY_EVEN: 3, + PARITY_MARK: 4, + PARITY_SPACE: 5, +} +RFC2217_REVERSE_PARITY_MAP = dict((v,k) for k,v in RFC2217_PARITY_MAP.items()) + +RFC2217_STOPBIT_MAP = { + STOPBITS_ONE: 1, + STOPBITS_ONE_POINT_FIVE: 3, + STOPBITS_TWO: 2, +} +RFC2217_REVERSE_STOPBIT_MAP = dict((v,k) for k,v in RFC2217_STOPBIT_MAP.items()) + +# Telnet filter states +M_NORMAL = 0 +M_IAC_SEEN = 1 +M_NEGOTIATE = 2 + +# TelnetOption and TelnetSubnegotiation states +REQUESTED = 'REQUESTED' +ACTIVE = 'ACTIVE' +INACTIVE = 'INACTIVE' +REALLY_INACTIVE = 'REALLY_INACTIVE' + +class TelnetOption(object): + """Manage a single telnet option, keeps track of DO/DONT WILL/WONT.""" + + def __init__(self, connection, name, option, send_yes, send_no, ack_yes, ack_no, initial_state, activation_callback=None): + """\ + Initialize option. + :param connection: connection used to transmit answers + :param name: a readable name for debug outputs + :param send_yes: what to send when option is to be enabled. + :param send_no: what to send when option is to be disabled. + :param ack_yes: what to expect when remote agrees on option. + :param ack_no: what to expect when remote disagrees on option. + :param initial_state: options initialized with REQUESTED are tried to + be enabled on startup. use INACTIVE for all others. + """ + self.connection = connection + self.name = name + self.option = option + self.send_yes = send_yes + self.send_no = send_no + self.ack_yes = ack_yes + self.ack_no = ack_no + self.state = initial_state + self.active = False + self.activation_callback = activation_callback + + def __repr__(self): + """String for debug outputs""" + return "%s:%s(%s)" % (self.name, self.active, self.state) + + def process_incoming(self, command): + """A DO/DONT/WILL/WONT was received for this option, update state and + answer when needed.""" + if command == self.ack_yes: + if self.state is REQUESTED: + self.state = ACTIVE + self.active = True + if self.activation_callback is not None: + self.activation_callback() + elif self.state is ACTIVE: + pass + elif self.state is INACTIVE: + self.state = ACTIVE + self.connection.telnetSendOption(self.send_yes, self.option) + self.active = True + if self.activation_callback is not None: + self.activation_callback() + elif self.state is REALLY_INACTIVE: + self.connection.telnetSendOption(self.send_no, self.option) + else: + raise ValueError('option in illegal state %r' % self) + elif command == self.ack_no: + if self.state is REQUESTED: + self.state = INACTIVE + self.active = False + elif self.state is ACTIVE: + self.state = INACTIVE + self.connection.telnetSendOption(self.send_no, self.option) + self.active = False + elif self.state is INACTIVE: + pass + elif self.state is REALLY_INACTIVE: + pass + else: + raise ValueError('option in illegal state %r' % self) + + +class TelnetSubnegotiation(object): + """\ + A object to handle subnegotiation of options. In this case actually + sub-sub options for RFC 2217. It is used to track com port options. + """ + + def __init__(self, connection, name, option, ack_option=None): + if ack_option is None: ack_option = option + self.connection = connection + self.name = name + self.option = option + self.value = None + self.ack_option = ack_option + self.state = INACTIVE + + def __repr__(self): + """String for debug outputs.""" + return "%s:%s" % (self.name, self.state) + + def set(self, value): + """\ + request a change of the value. a request is sent to the server. if + the client needs to know if the change is performed he has to check the + state of this object. + """ + self.value = value + self.state = REQUESTED + self.connection.rfc2217SendSubnegotiation(self.option, self.value) + if self.connection.logger: + self.connection.logger.debug("SB Requesting %s -> %r" % (self.name, self.value)) + + def isReady(self): + """\ + check if answer from server has been received. when server rejects + the change, raise a ValueError. + """ + if self.state == REALLY_INACTIVE: + raise ValueError("remote rejected value for option %r" % (self.name)) + return self.state == ACTIVE + # add property to have a similar interface as TelnetOption + active = property(isReady) + + def wait(self, timeout=3): + """\ + wait until the subnegotiation has been acknowledged or timeout. It + can also throw a value error when the answer from the server does not + match the value sent. + """ + timeout_time = time.time() + timeout + while time.time() < timeout_time: + time.sleep(0.05) # prevent 100% CPU load + if self.isReady(): + break + else: + raise SerialException("timeout while waiting for option %r" % (self.name)) + + def checkAnswer(self, suboption): + """\ + check an incoming subnegotiation block. the parameter already has + cut off the header like sub option number and com port option value. + """ + if self.value == suboption[:len(self.value)]: + self.state = ACTIVE + else: + # error propagation done in isReady + self.state = REALLY_INACTIVE + if self.connection.logger: + self.connection.logger.debug("SB Answer %s -> %r -> %s" % (self.name, suboption, self.state)) + + +class RFC2217Serial(SerialBase): + """Serial port implementation for RFC 2217 remote serial ports.""" + + BAUDRATES = (50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, + 9600, 19200, 38400, 57600, 115200) + + def open(self): + """\ + Open port with current settings. This may throw a SerialException + if the port cannot be opened. + """ + self.logger = None + self._ignore_set_control_answer = False + self._poll_modem_state = False + self._network_timeout = 3 + if self._port is None: + raise SerialException("Port must be configured before it can be used.") + if self._isOpen: + raise SerialException("Port is already open.") + try: + self._socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + self._socket.connect(self.fromURL(self.portstr)) + self._socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) + except Exception, msg: + self._socket = None + raise SerialException("Could not open port %s: %s" % (self.portstr, msg)) + + self._socket.settimeout(5) # XXX good value? + + # use a thread save queue as buffer. it also simplifies implementing + # the read timeout + self._read_buffer = Queue.Queue() + # to ensure that user writes does not interfere with internal + # telnet/rfc2217 options establish a lock + self._write_lock = threading.Lock() + # name the following separately so that, below, a check can be easily done + mandadory_options = [ + TelnetOption(self, 'we-BINARY', BINARY, WILL, WONT, DO, DONT, INACTIVE), + TelnetOption(self, 'we-RFC2217', COM_PORT_OPTION, WILL, WONT, DO, DONT, REQUESTED), + ] + # all supported telnet options + self._telnet_options = [ + TelnetOption(self, 'ECHO', ECHO, DO, DONT, WILL, WONT, REQUESTED), + TelnetOption(self, 'we-SGA', SGA, WILL, WONT, DO, DONT, REQUESTED), + TelnetOption(self, 'they-SGA', SGA, DO, DONT, WILL, WONT, REQUESTED), + TelnetOption(self, 'they-BINARY', BINARY, DO, DONT, WILL, WONT, INACTIVE), + TelnetOption(self, 'they-RFC2217', COM_PORT_OPTION, DO, DONT, WILL, WONT, REQUESTED), + ] + mandadory_options + # RFC 2217 specific states + # COM port settings + self._rfc2217_port_settings = { + 'baudrate': TelnetSubnegotiation(self, 'baudrate', SET_BAUDRATE, SERVER_SET_BAUDRATE), + 'datasize': TelnetSubnegotiation(self, 'datasize', SET_DATASIZE, SERVER_SET_DATASIZE), + 'parity': TelnetSubnegotiation(self, 'parity', SET_PARITY, SERVER_SET_PARITY), + 'stopsize': TelnetSubnegotiation(self, 'stopsize', SET_STOPSIZE, SERVER_SET_STOPSIZE), + } + # There are more subnegotiation objects, combine all in one dictionary + # for easy access + self._rfc2217_options = { + 'purge': TelnetSubnegotiation(self, 'purge', PURGE_DATA, SERVER_PURGE_DATA), + 'control': TelnetSubnegotiation(self, 'control', SET_CONTROL, SERVER_SET_CONTROL), + } + self._rfc2217_options.update(self._rfc2217_port_settings) + # cache for line and modem states that the server sends to us + self._linestate = 0 + self._modemstate = None + self._modemstate_expires = 0 + # RFC 2217 flow control between server and client + self._remote_suspend_flow = False + + self._thread = threading.Thread(target=self._telnetReadLoop) + self._thread.setDaemon(True) + self._thread.setName('pySerial RFC 2217 reader thread for %s' % (self._port,)) + self._thread.start() + + # negotiate Telnet/RFC 2217 -> send initial requests + for option in self._telnet_options: + if option.state is REQUESTED: + self.telnetSendOption(option.send_yes, option.option) + # now wait until important options are negotiated + timeout_time = time.time() + self._network_timeout + while time.time() < timeout_time: + time.sleep(0.05) # prevent 100% CPU load + if sum(o.active for o in mandadory_options) == len(mandadory_options): + break + else: + raise SerialException("Remote does not seem to support RFC2217 or BINARY mode %r" % mandadory_options) + if self.logger: + self.logger.info("Negotiated options: %s" % self._telnet_options) + + # fine, go on, set RFC 2271 specific things + self._reconfigurePort() + # all things set up get, now a clean start + self._isOpen = True + if not self._rtscts: + self.setRTS(True) + self.setDTR(True) + self.flushInput() + self.flushOutput() + + def _reconfigurePort(self): + """Set communication parameters on opened port.""" + if self._socket is None: + raise SerialException("Can only operate on open ports") + + # if self._timeout != 0 and self._interCharTimeout is not None: + # XXX + + if self._writeTimeout is not None: + raise NotImplementedError('writeTimeout is currently not supported') + # XXX + + # Setup the connection + # to get good performance, all parameter changes are sent first... + if not isinstance(self._baudrate, (int, long)) or not 0 < self._baudrate < 2**32: + raise ValueError("invalid baudrate: %r" % (self._baudrate)) + self._rfc2217_port_settings['baudrate'].set(struct.pack('!I', self._baudrate)) + self._rfc2217_port_settings['datasize'].set(struct.pack('!B', self._bytesize)) + self._rfc2217_port_settings['parity'].set(struct.pack('!B', RFC2217_PARITY_MAP[self._parity])) + self._rfc2217_port_settings['stopsize'].set(struct.pack('!B', RFC2217_STOPBIT_MAP[self._stopbits])) + + # and now wait until parameters are active + items = self._rfc2217_port_settings.values() + if self.logger: + self.logger.debug("Negotiating settings: %s" % (items,)) + timeout_time = time.time() + self._network_timeout + while time.time() < timeout_time: + time.sleep(0.05) # prevent 100% CPU load + if sum(o.active for o in items) == len(items): + break + else: + raise SerialException("Remote does not accept parameter change (RFC2217): %r" % items) + if self.logger: + self.logger.info("Negotiated settings: %s" % (items,)) + + if self._rtscts and self._xonxoff: + raise ValueError('xonxoff and rtscts together are not supported') + elif self._rtscts: + self.rfc2217SetControl(SET_CONTROL_USE_HW_FLOW_CONTROL) + elif self._xonxoff: + self.rfc2217SetControl(SET_CONTROL_USE_SW_FLOW_CONTROL) + else: + self.rfc2217SetControl(SET_CONTROL_USE_NO_FLOW_CONTROL) + + def close(self): + """Close port""" + if self._isOpen: + if self._socket: + try: + self._socket.shutdown(socket.SHUT_RDWR) + self._socket.close() + except: + # ignore errors. + pass + self._socket = None + if self._thread: + self._thread.join() + self._isOpen = False + # in case of quick reconnects, give the server some time + time.sleep(0.3) + + def makeDeviceName(self, port): + raise SerialException("there is no sensible way to turn numbers into URLs") + + def fromURL(self, url): + """extract host and port from an URL string""" + if url.lower().startswith("rfc2217://"): url = url[10:] + try: + # is there a "path" (our options)? + if '/' in url: + # cut away options + url, options = url.split('/', 1) + # process options now, directly altering self + for option in options.split('/'): + if '=' in option: + option, value = option.split('=', 1) + else: + value = None + if option == 'logging': + logging.basicConfig() # XXX is that good to call it here? + self.logger = logging.getLogger('pySerial.rfc2217') + self.logger.setLevel(LOGGER_LEVELS[value]) + self.logger.debug('enabled logging') + elif option == 'ign_set_control': + self._ignore_set_control_answer = True + elif option == 'poll_modem': + self._poll_modem_state = True + elif option == 'timeout': + self._network_timeout = float(value) + else: + raise ValueError('unknown option: %r' % (option,)) + # get host and port + host, port = url.split(':', 1) # may raise ValueError because of unpacking + port = int(port) # and this if it's not a number + if not 0 <= port < 65536: raise ValueError("port not in range 0...65535") + except ValueError, e: + raise SerialException('expected a string in the form "[rfc2217://]:[/option[/option...]]": %s' % e) + return (host, port) + + # - - - - - - - - - - - - - - - - - - - - - - - - + + def inWaiting(self): + """Return the number of characters currently in the input buffer.""" + if not self._isOpen: raise portNotOpenError + return self._read_buffer.qsize() + + def read(self, size=1): + """\ + Read size bytes from the serial port. If a timeout is set it may + return less characters as requested. With no timeout it will block + until the requested number of bytes is read. + """ + if not self._isOpen: raise portNotOpenError + data = bytearray() + try: + while len(data) < size: + if self._thread is None: + raise SerialException('connection failed (reader thread died)') + data.append(self._read_buffer.get(True, self._timeout)) + except Queue.Empty: # -> timeout + pass + return bytes(data) + + def write(self, data): + """\ + Output the given string over the serial port. Can block if the + connection is blocked. May raise SerialException if the connection is + closed. + """ + if not self._isOpen: raise portNotOpenError + self._write_lock.acquire() + try: + try: + self._socket.sendall(to_bytes(data).replace(IAC, IAC_DOUBLED)) + except socket.error, e: + raise SerialException("connection failed (socket error): %s" % e) # XXX what exception if socket connection fails + finally: + self._write_lock.release() + return len(data) + + def flushInput(self): + """Clear input buffer, discarding all that is in the buffer.""" + if not self._isOpen: raise portNotOpenError + self.rfc2217SendPurge(PURGE_RECEIVE_BUFFER) + # empty read buffer + while self._read_buffer.qsize(): + self._read_buffer.get(False) + + def flushOutput(self): + """\ + Clear output buffer, aborting the current output and + discarding all that is in the buffer. + """ + if not self._isOpen: raise portNotOpenError + self.rfc2217SendPurge(PURGE_TRANSMIT_BUFFER) + + def sendBreak(self, duration=0.25): + """Send break condition. Timed, returns to idle state after given + duration.""" + if not self._isOpen: raise portNotOpenError + self.setBreak(True) + time.sleep(duration) + self.setBreak(False) + + def setBreak(self, level=True): + """\ + Set break: Controls TXD. When active, to transmitting is + possible. + """ + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('set BREAK to %s' % ('inactive', 'active')[bool(level)]) + if level: + self.rfc2217SetControl(SET_CONTROL_BREAK_ON) + else: + self.rfc2217SetControl(SET_CONTROL_BREAK_OFF) + + def setRTS(self, level=True): + """Set terminal status line: Request To Send.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('set RTS to %s' % ('inactive', 'active')[bool(level)]) + if level: + self.rfc2217SetControl(SET_CONTROL_RTS_ON) + else: + self.rfc2217SetControl(SET_CONTROL_RTS_OFF) + + def setDTR(self, level=True): + """Set terminal status line: Data Terminal Ready.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('set DTR to %s' % ('inactive', 'active')[bool(level)]) + if level: + self.rfc2217SetControl(SET_CONTROL_DTR_ON) + else: + self.rfc2217SetControl(SET_CONTROL_DTR_OFF) + + def getCTS(self): + """Read terminal status line: Clear To Send.""" + if not self._isOpen: raise portNotOpenError + return bool(self.getModemState() & MODEMSTATE_MASK_CTS) + + def getDSR(self): + """Read terminal status line: Data Set Ready.""" + if not self._isOpen: raise portNotOpenError + return bool(self.getModemState() & MODEMSTATE_MASK_DSR) + + def getRI(self): + """Read terminal status line: Ring Indicator.""" + if not self._isOpen: raise portNotOpenError + return bool(self.getModemState() & MODEMSTATE_MASK_RI) + + def getCD(self): + """Read terminal status line: Carrier Detect.""" + if not self._isOpen: raise portNotOpenError + return bool(self.getModemState() & MODEMSTATE_MASK_CD) + + # - - - platform specific - - - + # None so far + + # - - - RFC2217 specific - - - + + def _telnetReadLoop(self): + """read loop for the socket.""" + mode = M_NORMAL + suboption = None + try: + while self._socket is not None: + try: + data = self._socket.recv(1024) + except socket.timeout: + # just need to get out of recv form time to time to check if + # still alive + continue + except socket.error, e: + # connection fails -> terminate loop + if self.logger: + self.logger.debug("socket error in reader thread: %s" % (e,)) + break + if not data: break # lost connection + for byte in data: + if mode == M_NORMAL: + # interpret as command or as data + if byte == IAC: + mode = M_IAC_SEEN + else: + # store data in read buffer or sub option buffer + # depending on state + if suboption is not None: + suboption.append(byte) + else: + self._read_buffer.put(byte) + elif mode == M_IAC_SEEN: + if byte == IAC: + # interpret as command doubled -> insert character + # itself + if suboption is not None: + suboption.append(IAC) + else: + self._read_buffer.put(IAC) + mode = M_NORMAL + elif byte == SB: + # sub option start + suboption = bytearray() + mode = M_NORMAL + elif byte == SE: + # sub option end -> process it now + self._telnetProcessSubnegotiation(bytes(suboption)) + suboption = None + mode = M_NORMAL + elif byte in (DO, DONT, WILL, WONT): + # negotiation + telnet_command = byte + mode = M_NEGOTIATE + else: + # other telnet commands + self._telnetProcessCommand(byte) + mode = M_NORMAL + elif mode == M_NEGOTIATE: # DO, DONT, WILL, WONT was received, option now following + self._telnetNegotiateOption(telnet_command, byte) + mode = M_NORMAL + finally: + self._thread = None + if self.logger: + self.logger.debug("read thread terminated") + + # - incoming telnet commands and options + + def _telnetProcessCommand(self, command): + """Process commands other than DO, DONT, WILL, WONT.""" + # Currently none. RFC2217 only uses negotiation and subnegotiation. + if self.logger: + self.logger.warning("ignoring Telnet command: %r" % (command,)) + + def _telnetNegotiateOption(self, command, option): + """Process incoming DO, DONT, WILL, WONT.""" + # check our registered telnet options and forward command to them + # they know themselves if they have to answer or not + known = False + for item in self._telnet_options: + # can have more than one match! as some options are duplicated for + # 'us' and 'them' + if item.option == option: + item.process_incoming(command) + known = True + if not known: + # handle unknown options + # only answer to positive requests and deny them + if command == WILL or command == DO: + self.telnetSendOption((command == WILL and DONT or WONT), option) + if self.logger: + self.logger.warning("rejected Telnet option: %r" % (option,)) + + + def _telnetProcessSubnegotiation(self, suboption): + """Process subnegotiation, the data between IAC SB and IAC SE.""" + if suboption[0:1] == COM_PORT_OPTION: + if suboption[1:2] == SERVER_NOTIFY_LINESTATE and len(suboption) >= 3: + self._linestate = ord(suboption[2:3]) # ensure it is a number + if self.logger: + self.logger.info("NOTIFY_LINESTATE: %s" % self._linestate) + elif suboption[1:2] == SERVER_NOTIFY_MODEMSTATE and len(suboption) >= 3: + self._modemstate = ord(suboption[2:3]) # ensure it is a number + if self.logger: + self.logger.info("NOTIFY_MODEMSTATE: %s" % self._modemstate) + # update time when we think that a poll would make sense + self._modemstate_expires = time.time() + 0.3 + elif suboption[1:2] == FLOWCONTROL_SUSPEND: + self._remote_suspend_flow = True + elif suboption[1:2] == FLOWCONTROL_RESUME: + self._remote_suspend_flow = False + else: + for item in self._rfc2217_options.values(): + if item.ack_option == suboption[1:2]: + #~ print "processing COM_PORT_OPTION: %r" % list(suboption[1:]) + item.checkAnswer(bytes(suboption[2:])) + break + else: + if self.logger: + self.logger.warning("ignoring COM_PORT_OPTION: %r" % (suboption,)) + else: + if self.logger: + self.logger.warning("ignoring subnegotiation: %r" % (suboption,)) + + # - outgoing telnet commands and options + + def _internal_raw_write(self, data): + """internal socket write with no data escaping. used to send telnet stuff.""" + self._write_lock.acquire() + try: + self._socket.sendall(data) + finally: + self._write_lock.release() + + def telnetSendOption(self, action, option): + """Send DO, DONT, WILL, WONT.""" + self._internal_raw_write(to_bytes([IAC, action, option])) + + def rfc2217SendSubnegotiation(self, option, value=''): + """Subnegotiation of RFC2217 parameters.""" + value = value.replace(IAC, IAC_DOUBLED) + self._internal_raw_write(to_bytes([IAC, SB, COM_PORT_OPTION, option] + list(value) + [IAC, SE])) + + def rfc2217SendPurge(self, value): + item = self._rfc2217_options['purge'] + item.set(value) # transmit desired purge type + item.wait(self._network_timeout) # wait for acknowledge from the server + + def rfc2217SetControl(self, value): + item = self._rfc2217_options['control'] + item.set(value) # transmit desired control type + if self._ignore_set_control_answer: + # answers are ignored when option is set. compatibility mode for + # servers that answer, but not the expected one... (or no answer + # at all) i.e. sredird + time.sleep(0.1) # this helps getting the unit tests passed + else: + item.wait(self._network_timeout) # wait for acknowledge from the server + + def rfc2217FlowServerReady(self): + """\ + check if server is ready to receive data. block for some time when + not. + """ + #~ if self._remote_suspend_flow: + #~ wait--- + + def getModemState(self): + """\ + get last modem state (cached value. if value is "old", request a new + one. this cache helps that we don't issue to many requests when e.g. all + status lines, one after the other is queried by te user (getCTS, getDSR + etc.) + """ + # active modem state polling enabled? is the value fresh enough? + if self._poll_modem_state and self._modemstate_expires < time.time(): + if self.logger: + self.logger.debug('polling modem state') + # when it is older, request an update + self.rfc2217SendSubnegotiation(NOTIFY_MODEMSTATE) + timeout_time = time.time() + self._network_timeout + while time.time() < timeout_time: + time.sleep(0.05) # prevent 100% CPU load + # when expiration time is updated, it means that there is a new + # value + if self._modemstate_expires > time.time(): + if self.logger: + self.logger.warning('poll for modem state failed') + break + # even when there is a timeout, do not generate an error just + # return the last known value. this way we can support buggy + # servers that do not respond to polls, but send automatic + # updates. + if self._modemstate is not None: + if self.logger: + self.logger.debug('using cached modem state') + return self._modemstate + else: + # never received a notification from the server + raise SerialException("remote sends no NOTIFY_MODEMSTATE") + + +# assemble Serial class with the platform specific implementation and the base +# for file-like behavior. for Python 2.6 and newer, that provide the new I/O +# library, derive from io.RawIOBase +try: + import io +except ImportError: + # classic version with our own file-like emulation + class Serial(RFC2217Serial, FileLike): + pass +else: + # io library present + class Serial(RFC2217Serial, io.RawIOBase): + pass + + +############################################################################# +# The following is code that helps implementing an RFC 2217 server. + +class PortManager(object): + """\ + This class manages the state of Telnet and RFC 2217. It needs a serial + instance and a connection to work with. Connection is expected to implement + a (thread safe) write function, that writes the string to the network. + """ + + def __init__(self, serial_port, connection, logger=None): + self.serial = serial_port + self.connection = connection + self.logger = logger + self._client_is_rfc2217 = False + + # filter state machine + self.mode = M_NORMAL + self.suboption = None + self.telnet_command = None + + # states for modem/line control events + self.modemstate_mask = 255 + self.last_modemstate = None + self.linstate_mask = 0 + + # all supported telnet options + self._telnet_options = [ + TelnetOption(self, 'ECHO', ECHO, WILL, WONT, DO, DONT, REQUESTED), + TelnetOption(self, 'we-SGA', SGA, WILL, WONT, DO, DONT, REQUESTED), + TelnetOption(self, 'they-SGA', SGA, DO, DONT, WILL, WONT, INACTIVE), + TelnetOption(self, 'we-BINARY', BINARY, WILL, WONT, DO, DONT, INACTIVE), + TelnetOption(self, 'they-BINARY', BINARY, DO, DONT, WILL, WONT, REQUESTED), + TelnetOption(self, 'we-RFC2217', COM_PORT_OPTION, WILL, WONT, DO, DONT, REQUESTED, self._client_ok), + TelnetOption(self, 'they-RFC2217', COM_PORT_OPTION, DO, DONT, WILL, WONT, INACTIVE, self._client_ok), + ] + + # negotiate Telnet/RFC2217 -> send initial requests + if self.logger: + self.logger.debug("requesting initial Telnet/RFC 2217 options") + for option in self._telnet_options: + if option.state is REQUESTED: + self.telnetSendOption(option.send_yes, option.option) + # issue 1st modem state notification + + def _client_ok(self): + """\ + callback of telnet option. it gets called when option is activated. + this one here is used to detect when the client agrees on RFC 2217. a + flag is set so that other functions like check_modem_lines know if the + client is ok. + """ + # The callback is used for we and they so if one party agrees, we're + # already happy. it seems not all servers do the negotiation correctly + # and i guess there are incorrect clients too.. so be happy if client + # answers one or the other positively. + self._client_is_rfc2217 = True + if self.logger: + self.logger.info("client accepts RFC 2217") + # this is to ensure that the client gets a notification, even if there + # was no change + self.check_modem_lines(force_notification=True) + + # - outgoing telnet commands and options + + def telnetSendOption(self, action, option): + """Send DO, DONT, WILL, WONT.""" + self.connection.write(to_bytes([IAC, action, option])) + + def rfc2217SendSubnegotiation(self, option, value=''): + """Subnegotiation of RFC 2217 parameters.""" + value = value.replace(IAC, IAC_DOUBLED) + self.connection.write(to_bytes([IAC, SB, COM_PORT_OPTION, option] + list(value) + [IAC, SE])) + + # - check modem lines, needs to be called periodically from user to + # establish polling + + def check_modem_lines(self, force_notification=False): + modemstate = ( + (self.serial.getCTS() and MODEMSTATE_MASK_CTS) | + (self.serial.getDSR() and MODEMSTATE_MASK_DSR) | + (self.serial.getRI() and MODEMSTATE_MASK_RI) | + (self.serial.getCD() and MODEMSTATE_MASK_CD) + ) + # check what has changed + deltas = modemstate ^ (self.last_modemstate or 0) # when last is None -> 0 + if deltas & MODEMSTATE_MASK_CTS: + modemstate |= MODEMSTATE_MASK_CTS_CHANGE + if deltas & MODEMSTATE_MASK_DSR: + modemstate |= MODEMSTATE_MASK_DSR_CHANGE + if deltas & MODEMSTATE_MASK_RI: + modemstate |= MODEMSTATE_MASK_RI_CHANGE + if deltas & MODEMSTATE_MASK_CD: + modemstate |= MODEMSTATE_MASK_CD_CHANGE + # if new state is different and the mask allows this change, send + # notification. suppress notifications when client is not rfc2217 + if modemstate != self.last_modemstate or force_notification: + if (self._client_is_rfc2217 and (modemstate & self.modemstate_mask)) or force_notification: + self.rfc2217SendSubnegotiation( + SERVER_NOTIFY_MODEMSTATE, + to_bytes([modemstate & self.modemstate_mask]) + ) + if self.logger: + self.logger.info("NOTIFY_MODEMSTATE: %s" % (modemstate,)) + # save last state, but forget about deltas. + # otherwise it would also notify about changing deltas which is + # probably not very useful + self.last_modemstate = modemstate & 0xf0 + + # - outgoing data escaping + + def escape(self, data): + """\ + this generator function is for the user. all outgoing data has to be + properly escaped, so that no IAC character in the data stream messes up + the Telnet state machine in the server. + + socket.sendall(escape(data)) + """ + for byte in data: + if byte == IAC: + yield IAC + yield IAC + else: + yield byte + + # - incoming data filter + + def filter(self, data): + """\ + handle a bunch of incoming bytes. this is a generator. it will yield + all characters not of interest for Telnet/RFC 2217. + + The idea is that the reader thread pushes data from the socket through + this filter: + + for byte in filter(socket.recv(1024)): + # do things like CR/LF conversion/whatever + # and write data to the serial port + serial.write(byte) + + (socket error handling code left as exercise for the reader) + """ + for byte in data: + if self.mode == M_NORMAL: + # interpret as command or as data + if byte == IAC: + self.mode = M_IAC_SEEN + else: + # store data in sub option buffer or pass it to our + # consumer depending on state + if self.suboption is not None: + self.suboption.append(byte) + else: + yield byte + elif self.mode == M_IAC_SEEN: + if byte == IAC: + # interpret as command doubled -> insert character + # itself + if self.suboption is not None: + self.suboption.append(byte) + else: + yield byte + self.mode = M_NORMAL + elif byte == SB: + # sub option start + self.suboption = bytearray() + self.mode = M_NORMAL + elif byte == SE: + # sub option end -> process it now + self._telnetProcessSubnegotiation(bytes(self.suboption)) + self.suboption = None + self.mode = M_NORMAL + elif byte in (DO, DONT, WILL, WONT): + # negotiation + self.telnet_command = byte + self.mode = M_NEGOTIATE + else: + # other telnet commands + self._telnetProcessCommand(byte) + self.mode = M_NORMAL + elif self.mode == M_NEGOTIATE: # DO, DONT, WILL, WONT was received, option now following + self._telnetNegotiateOption(self.telnet_command, byte) + self.mode = M_NORMAL + + # - incoming telnet commands and options + + def _telnetProcessCommand(self, command): + """Process commands other than DO, DONT, WILL, WONT.""" + # Currently none. RFC2217 only uses negotiation and subnegotiation. + if self.logger: + self.logger.warning("ignoring Telnet command: %r" % (command,)) + + def _telnetNegotiateOption(self, command, option): + """Process incoming DO, DONT, WILL, WONT.""" + # check our registered telnet options and forward command to them + # they know themselves if they have to answer or not + known = False + for item in self._telnet_options: + # can have more than one match! as some options are duplicated for + # 'us' and 'them' + if item.option == option: + item.process_incoming(command) + known = True + if not known: + # handle unknown options + # only answer to positive requests and deny them + if command == WILL or command == DO: + self.telnetSendOption((command == WILL and DONT or WONT), option) + if self.logger: + self.logger.warning("rejected Telnet option: %r" % (option,)) + + + def _telnetProcessSubnegotiation(self, suboption): + """Process subnegotiation, the data between IAC SB and IAC SE.""" + if suboption[0:1] == COM_PORT_OPTION: + if self.logger: + self.logger.debug('received COM_PORT_OPTION: %r' % (suboption,)) + if suboption[1:2] == SET_BAUDRATE: + backup = self.serial.baudrate + try: + (baudrate,) = struct.unpack("!I", suboption[2:6]) + if baudrate != 0: + self.serial.baudrate = baudrate + except ValueError, e: + if self.logger: + self.logger.error("failed to set baud rate: %s" % (e,)) + self.serial.baudrate = backup + else: + if self.logger: + self.logger.info("%s baud rate: %s" % (baudrate and 'set' or 'get', self.serial.baudrate)) + self.rfc2217SendSubnegotiation(SERVER_SET_BAUDRATE, struct.pack("!I", self.serial.baudrate)) + elif suboption[1:2] == SET_DATASIZE: + backup = self.serial.bytesize + try: + (datasize,) = struct.unpack("!B", suboption[2:3]) + if datasize != 0: + self.serial.bytesize = datasize + except ValueError, e: + if self.logger: + self.logger.error("failed to set data size: %s" % (e,)) + self.serial.bytesize = backup + else: + if self.logger: + self.logger.info("%s data size: %s" % (datasize and 'set' or 'get', self.serial.bytesize)) + self.rfc2217SendSubnegotiation(SERVER_SET_DATASIZE, struct.pack("!B", self.serial.bytesize)) + elif suboption[1:2] == SET_PARITY: + backup = self.serial.parity + try: + parity = struct.unpack("!B", suboption[2:3])[0] + if parity != 0: + self.serial.parity = RFC2217_REVERSE_PARITY_MAP[parity] + except ValueError, e: + if self.logger: + self.logger.error("failed to set parity: %s" % (e,)) + self.serial.parity = backup + else: + if self.logger: + self.logger.info("%s parity: %s" % (parity and 'set' or 'get', self.serial.parity)) + self.rfc2217SendSubnegotiation( + SERVER_SET_PARITY, + struct.pack("!B", RFC2217_PARITY_MAP[self.serial.parity]) + ) + elif suboption[1:2] == SET_STOPSIZE: + backup = self.serial.stopbits + try: + stopbits = struct.unpack("!B", suboption[2:3])[0] + if stopbits != 0: + self.serial.stopbits = RFC2217_REVERSE_STOPBIT_MAP[stopbits] + except ValueError, e: + if self.logger: + self.logger.error("failed to set stop bits: %s" % (e,)) + self.serial.stopbits = backup + else: + if self.logger: + self.logger.info("%s stop bits: %s" % (stopbits and 'set' or 'get', self.serial.stopbits)) + self.rfc2217SendSubnegotiation( + SERVER_SET_STOPSIZE, + struct.pack("!B", RFC2217_STOPBIT_MAP[self.serial.stopbits]) + ) + elif suboption[1:2] == SET_CONTROL: + if suboption[2:3] == SET_CONTROL_REQ_FLOW_SETTING: + if self.serial.xonxoff: + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_USE_SW_FLOW_CONTROL) + elif self.serial.rtscts: + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_USE_HW_FLOW_CONTROL) + else: + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_USE_NO_FLOW_CONTROL) + elif suboption[2:3] == SET_CONTROL_USE_NO_FLOW_CONTROL: + self.serial.xonxoff = False + self.serial.rtscts = False + if self.logger: + self.logger.info("changed flow control to None") + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_USE_NO_FLOW_CONTROL) + elif suboption[2:3] == SET_CONTROL_USE_SW_FLOW_CONTROL: + self.serial.xonxoff = True + if self.logger: + self.logger.info("changed flow control to XON/XOFF") + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_USE_SW_FLOW_CONTROL) + elif suboption[2:3] == SET_CONTROL_USE_HW_FLOW_CONTROL: + self.serial.rtscts = True + if self.logger: + self.logger.info("changed flow control to RTS/CTS") + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_USE_HW_FLOW_CONTROL) + elif suboption[2:3] == SET_CONTROL_REQ_BREAK_STATE: + if self.logger: + self.logger.warning("requested break state - not implemented") + pass # XXX needs cached value + elif suboption[2:3] == SET_CONTROL_BREAK_ON: + self.serial.setBreak(True) + if self.logger: + self.logger.info("changed BREAK to active") + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_BREAK_ON) + elif suboption[2:3] == SET_CONTROL_BREAK_OFF: + self.serial.setBreak(False) + if self.logger: + self.logger.info("changed BREAK to inactive") + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_BREAK_OFF) + elif suboption[2:3] == SET_CONTROL_REQ_DTR: + if self.logger: + self.logger.warning("requested DTR state - not implemented") + pass # XXX needs cached value + elif suboption[2:3] == SET_CONTROL_DTR_ON: + self.serial.setDTR(True) + if self.logger: + self.logger.info("changed DTR to active") + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_DTR_ON) + elif suboption[2:3] == SET_CONTROL_DTR_OFF: + self.serial.setDTR(False) + if self.logger: + self.logger.info("changed DTR to inactive") + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_DTR_OFF) + elif suboption[2:3] == SET_CONTROL_REQ_RTS: + if self.logger: + self.logger.warning("requested RTS state - not implemented") + pass # XXX needs cached value + #~ self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_RTS_ON) + elif suboption[2:3] == SET_CONTROL_RTS_ON: + self.serial.setRTS(True) + if self.logger: + self.logger.info("changed RTS to active") + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_RTS_ON) + elif suboption[2:3] == SET_CONTROL_RTS_OFF: + self.serial.setRTS(False) + if self.logger: + self.logger.info("changed RTS to inactive") + self.rfc2217SendSubnegotiation(SERVER_SET_CONTROL, SET_CONTROL_RTS_OFF) + #~ elif suboption[2:3] == SET_CONTROL_REQ_FLOW_SETTING_IN: + #~ elif suboption[2:3] == SET_CONTROL_USE_NO_FLOW_CONTROL_IN: + #~ elif suboption[2:3] == SET_CONTROL_USE_SW_FLOW_CONTOL_IN: + #~ elif suboption[2:3] == SET_CONTROL_USE_HW_FLOW_CONTOL_IN: + #~ elif suboption[2:3] == SET_CONTROL_USE_DCD_FLOW_CONTROL: + #~ elif suboption[2:3] == SET_CONTROL_USE_DTR_FLOW_CONTROL: + #~ elif suboption[2:3] == SET_CONTROL_USE_DSR_FLOW_CONTROL: + elif suboption[1:2] == NOTIFY_LINESTATE: + # client polls for current state + self.rfc2217SendSubnegotiation( + SERVER_NOTIFY_LINESTATE, + to_bytes([0]) # sorry, nothing like that implemented + ) + elif suboption[1:2] == NOTIFY_MODEMSTATE: + if self.logger: + self.logger.info("request for modem state") + # client polls for current state + self.check_modem_lines(force_notification=True) + elif suboption[1:2] == FLOWCONTROL_SUSPEND: + if self.logger: + self.logger.info("suspend") + self._remote_suspend_flow = True + elif suboption[1:2] == FLOWCONTROL_RESUME: + if self.logger: + self.logger.info("resume") + self._remote_suspend_flow = False + elif suboption[1:2] == SET_LINESTATE_MASK: + self.linstate_mask = ord(suboption[2:3]) # ensure it is a number + if self.logger: + self.logger.info("line state mask: 0x%02x" % (self.linstate_mask,)) + elif suboption[1:2] == SET_MODEMSTATE_MASK: + self.modemstate_mask = ord(suboption[2:3]) # ensure it is a number + if self.logger: + self.logger.info("modem state mask: 0x%02x" % (self.modemstate_mask,)) + elif suboption[1:2] == PURGE_DATA: + if suboption[2:3] == PURGE_RECEIVE_BUFFER: + self.serial.flushInput() + if self.logger: + self.logger.info("purge in") + self.rfc2217SendSubnegotiation(SERVER_PURGE_DATA, PURGE_RECEIVE_BUFFER) + elif suboption[2:3] == PURGE_TRANSMIT_BUFFER: + self.serial.flushOutput() + if self.logger: + self.logger.info("purge out") + self.rfc2217SendSubnegotiation(SERVER_PURGE_DATA, PURGE_TRANSMIT_BUFFER) + elif suboption[2:3] == PURGE_BOTH_BUFFERS: + self.serial.flushInput() + self.serial.flushOutput() + if self.logger: + self.logger.info("purge both") + self.rfc2217SendSubnegotiation(SERVER_PURGE_DATA, PURGE_BOTH_BUFFERS) + else: + if self.logger: + self.logger.error("undefined PURGE_DATA: %r" % list(suboption[2:])) + else: + if self.logger: + self.logger.error("undefined COM_PORT_OPTION: %r" % list(suboption[1:])) + else: + if self.logger: + self.logger.warning("unknown subnegotiation: %r" % (suboption,)) + + +# simple client test +if __name__ == '__main__': + import sys + s = Serial('rfc2217://localhost:7000', 115200) + sys.stdout.write('%s\n' % s) + + #~ s.baudrate = 1898 + + sys.stdout.write("write...\n") + s.write("hello\n") + s.flush() + sys.stdout.write("read: %s\n" % s.read(5)) + + #~ s.baudrate = 19200 + #~ s.databits = 7 + s.close() diff --git a/serial/serialcli.py b/serial/serialcli.py new file mode 100644 index 0000000..19169a3 --- /dev/null +++ b/serial/serialcli.py @@ -0,0 +1,273 @@ +#! python +# Python Serial Port Extension for Win32, Linux, BSD, Jython and .NET/Mono +# serial driver for .NET/Mono (IronPython), .NET >= 2 +# see __init__.py +# +# (C) 2008 Chris Liechti +# this is distributed under a free software license, see license.txt + +import clr +import System +import System.IO.Ports +from serial.serialutil import * + + +def device(portnum): + """Turn a port number into a device name""" + return System.IO.Ports.SerialPort.GetPortNames()[portnum] + + +# must invoke function with byte array, make a helper to convert strings +# to byte arrays +sab = System.Array[System.Byte] +def as_byte_array(string): + return sab([ord(x) for x in string]) # XXX will require adaption when run with a 3.x compatible IronPython + +class IronSerial(SerialBase): + """Serial port implementation for .NET/Mono.""" + + BAUDRATES = (50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, + 9600, 19200, 38400, 57600, 115200) + + def open(self): + """Open port with current settings. This may throw a SerialException + if the port cannot be opened.""" + if self._port is None: + raise SerialException("Port must be configured before it can be used.") + if self._isOpen: + raise SerialException("Port is already open.") + try: + self._port_handle = System.IO.Ports.SerialPort(self.portstr) + except Exception, msg: + self._port_handle = None + raise SerialException("could not open port %s: %s" % (self.portstr, msg)) + + self._reconfigurePort() + self._port_handle.Open() + self._isOpen = True + if not self._rtscts: + self.setRTS(True) + self.setDTR(True) + self.flushInput() + self.flushOutput() + + def _reconfigurePort(self): + """Set communication parameters on opened port.""" + if not self._port_handle: + raise SerialException("Can only operate on a valid port handle") + + #~ self._port_handle.ReceivedBytesThreshold = 1 + + if self._timeout is None: + self._port_handle.ReadTimeout = System.IO.Ports.SerialPort.InfiniteTimeout + else: + self._port_handle.ReadTimeout = int(self._timeout*1000) + + # if self._timeout != 0 and self._interCharTimeout is not None: + # timeouts = (int(self._interCharTimeout * 1000),) + timeouts[1:] + + if self._writeTimeout is None: + self._port_handle.WriteTimeout = System.IO.Ports.SerialPort.InfiniteTimeout + else: + self._port_handle.WriteTimeout = int(self._writeTimeout*1000) + + + # Setup the connection info. + try: + self._port_handle.BaudRate = self._baudrate + except IOError, e: + # catch errors from illegal baudrate settings + raise ValueError(str(e)) + + if self._bytesize == FIVEBITS: + self._port_handle.DataBits = 5 + elif self._bytesize == SIXBITS: + self._port_handle.DataBits = 6 + elif self._bytesize == SEVENBITS: + self._port_handle.DataBits = 7 + elif self._bytesize == EIGHTBITS: + self._port_handle.DataBits = 8 + else: + raise ValueError("Unsupported number of data bits: %r" % self._bytesize) + + if self._parity == PARITY_NONE: + self._port_handle.Parity = getattr(System.IO.Ports.Parity, 'None') # reserved keyword in Py3k + elif self._parity == PARITY_EVEN: + self._port_handle.Parity = System.IO.Ports.Parity.Even + elif self._parity == PARITY_ODD: + self._port_handle.Parity = System.IO.Ports.Parity.Odd + elif self._parity == PARITY_MARK: + self._port_handle.Parity = System.IO.Ports.Parity.Mark + elif self._parity == PARITY_SPACE: + self._port_handle.Parity = System.IO.Ports.Parity.Space + else: + raise ValueError("Unsupported parity mode: %r" % self._parity) + + if self._stopbits == STOPBITS_ONE: + self._port_handle.StopBits = System.IO.Ports.StopBits.One + elif self._stopbits == STOPBITS_ONE_POINT_FIVE: + self._port_handle.StopBits = System.IO.Ports.StopBits.OnePointFive + elif self._stopbits == STOPBITS_TWO: + self._port_handle.StopBits = System.IO.Ports.StopBits.Two + else: + raise ValueError("Unsupported number of stop bits: %r" % self._stopbits) + + if self._rtscts and self._xonxoff: + self._port_handle.Handshake = System.IO.Ports.Handshake.RequestToSendXOnXOff + elif self._rtscts: + self._port_handle.Handshake = System.IO.Ports.Handshake.RequestToSend + elif self._xonxoff: + self._port_handle.Handshake = System.IO.Ports.Handshake.XOnXOff + else: + self._port_handle.Handshake = getattr(System.IO.Ports.Handshake, 'None') # reserved keyword in Py3k + + #~ def __del__(self): + #~ self.close() + + def close(self): + """Close port""" + if self._isOpen: + if self._port_handle: + try: + self._port_handle.Close() + except System.IO.Ports.InvalidOperationException: + # ignore errors. can happen for unplugged USB serial devices + pass + self._port_handle = None + self._isOpen = False + + def makeDeviceName(self, port): + try: + return device(port) + except TypeError, e: + raise SerialException(str(e)) + + # - - - - - - - - - - - - - - - - - - - - - - - - + + def inWaiting(self): + """Return the number of characters currently in the input buffer.""" + if not self._port_handle: raise portNotOpenError + return self._port_handle.BytesToRead + + def read(self, size=1): + """Read size bytes from the serial port. If a timeout is set it may + return less characters as requested. With no timeout it will block + until the requested number of bytes is read.""" + if not self._port_handle: raise portNotOpenError + # must use single byte reads as this is the only way to read + # without applying encodings + data = bytearray() + while size: + try: + data.append(self._port_handle.ReadByte()) + except System.TimeoutException, e: + break + else: + size -= 1 + return bytes(data) + + def write(self, data): + """Output the given string over the serial port.""" + if not self._port_handle: raise portNotOpenError + if not isinstance(data, (bytes, bytearray)): + raise TypeError('expected %s or bytearray, got %s' % (bytes, type(data))) + try: + # must call overloaded method with byte array argument + # as this is the only one not applying encodings + self._port_handle.Write(as_byte_array(data), 0, len(data)) + except System.TimeoutException, e: + raise writeTimeoutError + return len(data) + + def flushInput(self): + """Clear input buffer, discarding all that is in the buffer.""" + if not self._port_handle: raise portNotOpenError + self._port_handle.DiscardInBuffer() + + def flushOutput(self): + """Clear output buffer, aborting the current output and + discarding all that is in the buffer.""" + if not self._port_handle: raise portNotOpenError + self._port_handle.DiscardOutBuffer() + + def sendBreak(self, duration=0.25): + """Send break condition. Timed, returns to idle state after given duration.""" + if not self._port_handle: raise portNotOpenError + import time + self._port_handle.BreakState = True + time.sleep(duration) + self._port_handle.BreakState = False + + def setBreak(self, level=True): + """Set break: Controls TXD. When active, to transmitting is possible.""" + if not self._port_handle: raise portNotOpenError + self._port_handle.BreakState = bool(level) + + def setRTS(self, level=True): + """Set terminal status line: Request To Send""" + if not self._port_handle: raise portNotOpenError + self._port_handle.RtsEnable = bool(level) + + def setDTR(self, level=True): + """Set terminal status line: Data Terminal Ready""" + if not self._port_handle: raise portNotOpenError + self._port_handle.DtrEnable = bool(level) + + def getCTS(self): + """Read terminal status line: Clear To Send""" + if not self._port_handle: raise portNotOpenError + return self._port_handle.CtsHolding + + def getDSR(self): + """Read terminal status line: Data Set Ready""" + if not self._port_handle: raise portNotOpenError + return self._port_handle.DsrHolding + + def getRI(self): + """Read terminal status line: Ring Indicator""" + if not self._port_handle: raise portNotOpenError + #~ return self._port_handle.XXX + return False #XXX an error would be better + + def getCD(self): + """Read terminal status line: Carrier Detect""" + if not self._port_handle: raise portNotOpenError + return self._port_handle.CDHolding + + # - - platform specific - - - - + # none + + +# assemble Serial class with the platform specific implementation and the base +# for file-like behavior. for Python 2.6 and newer, that provide the new I/O +# library, derive from io.RawIOBase +try: + import io +except ImportError: + # classic version with our own file-like emulation + class Serial(IronSerial, FileLike): + pass +else: + # io library present + class Serial(IronSerial, io.RawIOBase): + pass + + +# Nur Testfunktion!! +if __name__ == '__main__': + import sys + + s = Serial(0) + sys.stdio.write('%s\n' % s) + + s = Serial() + sys.stdio.write('%s\n' % s) + + + s.baudrate = 19200 + s.databits = 7 + s.close() + s.port = 0 + s.open() + sys.stdio.write('%s\n' % s) + diff --git a/serial/serialjava.py b/serial/serialjava.py new file mode 100644 index 0000000..46a78f8 --- /dev/null +++ b/serial/serialjava.py @@ -0,0 +1,262 @@ +#!jython +# +# Python Serial Port Extension for Win32, Linux, BSD, Jython +# module for serial IO for Jython and JavaComm +# see __init__.py +# +# (C) 2002-2008 Chris Liechti +# this is distributed under a free software license, see license.txt + +from serial.serialutil import * + +def my_import(name): + mod = __import__(name) + components = name.split('.') + for comp in components[1:]: + mod = getattr(mod, comp) + return mod + + +def detect_java_comm(names): + """try given list of modules and return that imports""" + for name in names: + try: + mod = my_import(name) + mod.SerialPort + return mod + except (ImportError, AttributeError): + pass + raise ImportError("No Java Communications API implementation found") + + +# Java Communications API implementations +# http://mho.republika.pl/java/comm/ + +comm = detect_java_comm([ + 'javax.comm', # Sun/IBM + 'gnu.io', # RXTX +]) + + +def device(portnumber): + """Turn a port number into a device name""" + enum = comm.CommPortIdentifier.getPortIdentifiers() + ports = [] + while enum.hasMoreElements(): + el = enum.nextElement() + if el.getPortType() == comm.CommPortIdentifier.PORT_SERIAL: + ports.append(el) + return ports[portnumber].getName() + + +class JavaSerial(SerialBase): + """Serial port class, implemented with Java Communications API and + thus usable with jython and the appropriate java extension.""" + + def open(self): + """Open port with current settings. This may throw a SerialException + if the port cannot be opened.""" + if self._port is None: + raise SerialException("Port must be configured before it can be used.") + if self._isOpen: + raise SerialException("Port is already open.") + if type(self._port) == type(''): # strings are taken directly + portId = comm.CommPortIdentifier.getPortIdentifier(self._port) + else: + portId = comm.CommPortIdentifier.getPortIdentifier(device(self._port)) # numbers are transformed to a comport id obj + try: + self.sPort = portId.open("python serial module", 10) + except Exception, msg: + self.sPort = None + raise SerialException("Could not open port: %s" % msg) + self._reconfigurePort() + self._instream = self.sPort.getInputStream() + self._outstream = self.sPort.getOutputStream() + self._isOpen = True + + def _reconfigurePort(self): + """Set communication parameters on opened port.""" + if not self.sPort: + raise SerialException("Can only operate on a valid port handle") + + self.sPort.enableReceiveTimeout(30) + if self._bytesize == FIVEBITS: + jdatabits = comm.SerialPort.DATABITS_5 + elif self._bytesize == SIXBITS: + jdatabits = comm.SerialPort.DATABITS_6 + elif self._bytesize == SEVENBITS: + jdatabits = comm.SerialPort.DATABITS_7 + elif self._bytesize == EIGHTBITS: + jdatabits = comm.SerialPort.DATABITS_8 + else: + raise ValueError("unsupported bytesize: %r" % self._bytesize) + + if self._stopbits == STOPBITS_ONE: + jstopbits = comm.SerialPort.STOPBITS_1 + elif stopbits == STOPBITS_ONE_POINT_FIVE: + self._jstopbits = comm.SerialPort.STOPBITS_1_5 + elif self._stopbits == STOPBITS_TWO: + jstopbits = comm.SerialPort.STOPBITS_2 + else: + raise ValueError("unsupported number of stopbits: %r" % self._stopbits) + + if self._parity == PARITY_NONE: + jparity = comm.SerialPort.PARITY_NONE + elif self._parity == PARITY_EVEN: + jparity = comm.SerialPort.PARITY_EVEN + elif self._parity == PARITY_ODD: + jparity = comm.SerialPort.PARITY_ODD + elif self._parity == PARITY_MARK: + jparity = comm.SerialPort.PARITY_MARK + elif self._parity == PARITY_SPACE: + jparity = comm.SerialPort.PARITY_SPACE + else: + raise ValueError("unsupported parity type: %r" % self._parity) + + jflowin = jflowout = 0 + if self._rtscts: + jflowin |= comm.SerialPort.FLOWCONTROL_RTSCTS_IN + jflowout |= comm.SerialPort.FLOWCONTROL_RTSCTS_OUT + if self._xonxoff: + jflowin |= comm.SerialPort.FLOWCONTROL_XONXOFF_IN + jflowout |= comm.SerialPort.FLOWCONTROL_XONXOFF_OUT + + self.sPort.setSerialPortParams(self._baudrate, jdatabits, jstopbits, jparity) + self.sPort.setFlowControlMode(jflowin | jflowout) + + if self._timeout >= 0: + self.sPort.enableReceiveTimeout(self._timeout*1000) + else: + self.sPort.disableReceiveTimeout() + + def close(self): + """Close port""" + if self._isOpen: + if self.sPort: + self._instream.close() + self._outstream.close() + self.sPort.close() + self.sPort = None + self._isOpen = False + + def makeDeviceName(self, port): + return device(port) + + # - - - - - - - - - - - - - - - - - - - - - - - - + + def inWaiting(self): + """Return the number of characters currently in the input buffer.""" + if not self.sPort: raise portNotOpenError + return self._instream.available() + + def read(self, size=1): + """Read size bytes from the serial port. If a timeout is set it may + return less characters as requested. With no timeout it will block + until the requested number of bytes is read.""" + if not self.sPort: raise portNotOpenError + read = bytearray() + if size > 0: + while len(read) < size: + x = self._instream.read() + if x == -1: + if self.timeout >= 0: + break + else: + read.append(x) + return bytes(read) + + def write(self, data): + """Output the given string over the serial port.""" + if not self.sPort: raise portNotOpenError + if not isinstance(data, (bytes, bytearray)): + raise TypeError('expected %s or bytearray, got %s' % (bytes, type(data))) + self._outstream.write(data) + return len(data) + + def flushInput(self): + """Clear input buffer, discarding all that is in the buffer.""" + if not self.sPort: raise portNotOpenError + self._instream.skip(self._instream.available()) + + def flushOutput(self): + """Clear output buffer, aborting the current output and + discarding all that is in the buffer.""" + if not self.sPort: raise portNotOpenError + self._outstream.flush() + + def sendBreak(self, duration=0.25): + """Send break condition. Timed, returns to idle state after given duration.""" + if not self.sPort: raise portNotOpenError + self.sPort.sendBreak(duration*1000.0) + + def setBreak(self, level=1): + """Set break: Controls TXD. When active, to transmitting is possible.""" + if self.fd is None: raise portNotOpenError + raise SerialException("The setBreak function is not implemented in java.") + + def setRTS(self, level=1): + """Set terminal status line: Request To Send""" + if not self.sPort: raise portNotOpenError + self.sPort.setRTS(level) + + def setDTR(self, level=1): + """Set terminal status line: Data Terminal Ready""" + if not self.sPort: raise portNotOpenError + self.sPort.setDTR(level) + + def getCTS(self): + """Read terminal status line: Clear To Send""" + if not self.sPort: raise portNotOpenError + self.sPort.isCTS() + + def getDSR(self): + """Read terminal status line: Data Set Ready""" + if not self.sPort: raise portNotOpenError + self.sPort.isDSR() + + def getRI(self): + """Read terminal status line: Ring Indicator""" + if not self.sPort: raise portNotOpenError + self.sPort.isRI() + + def getCD(self): + """Read terminal status line: Carrier Detect""" + if not self.sPort: raise portNotOpenError + self.sPort.isCD() + + +# assemble Serial class with the platform specific implementation and the base +# for file-like behavior. for Python 2.6 and newer, that provide the new I/O +# library, derive from io.RawIOBase +try: + import io +except ImportError: + # classic version with our own file-like emulation + class Serial(JavaSerial, FileLike): + pass +else: + # io library present + class Serial(JavaSerial, io.RawIOBase): + pass + + +if __name__ == '__main__': + s = Serial(0, + baudrate=19200, # baudrate + bytesize=EIGHTBITS, # number of databits + parity=PARITY_EVEN, # enable parity checking + stopbits=STOPBITS_ONE, # number of stopbits + timeout=3, # set a timeout value, None for waiting forever + xonxoff=0, # enable software flow control + rtscts=0, # enable RTS/CTS flow control + ) + s.setRTS(1) + s.setDTR(1) + s.flushInput() + s.flushOutput() + s.write('hello') + sys.stdio.write('%r\n' % s.read(5)) + sys.stdio.write('%s\n' % s.inWaiting()) + del s + + diff --git a/serial/serialposix.py b/serial/serialposix.py new file mode 100644 index 0000000..b9b4b28 --- /dev/null +++ b/serial/serialposix.py @@ -0,0 +1,703 @@ +#!/usr/bin/env python +# +# Python Serial Port Extension for Win32, Linux, BSD, Jython +# module for serial IO for POSIX compatible systems, like Linux +# see __init__.py +# +# (C) 2001-2010 Chris Liechti +# this is distributed under a free software license, see license.txt +# +# parts based on code from Grant B. Edwards : +# ftp://ftp.visi.com/users/grante/python/PosixSerial.py +# +# references: http://www.easysw.com/~mike/serial/serial.html + +import sys, os, fcntl, termios, struct, select, errno, time +from serial.serialutil import * + +# Do check the Python version as some constants have moved. +if (sys.hexversion < 0x020100f0): + import TERMIOS +else: + TERMIOS = termios + +if (sys.hexversion < 0x020200f0): + import FCNTL +else: + FCNTL = fcntl + +# try to detect the OS so that a device can be selected... +# this code block should supply a device() and set_special_baudrate() function +# for the platform +plat = sys.platform.lower() + +if plat[:5] == 'linux': # Linux (confirmed) + + def device(port): + return '/dev/ttyS%d' % port + + TCGETS2 = 0x802C542A + TCSETS2 = 0x402C542B + BOTHER = 0o010000 + + def set_special_baudrate(port, baudrate): + # right size is 44 on x86_64, allow for some growth + import array + buf = array.array('i', [0] * 64) + + try: + # get serial_struct + FCNTL.ioctl(port.fd, TCGETS2, buf) + # set custom speed + buf[2] &= ~TERMIOS.CBAUD + buf[2] |= BOTHER + buf[9] = buf[10] = baudrate + + # set serial_struct + res = FCNTL.ioctl(port.fd, TCSETS2, buf) + except IOError, e: + raise ValueError('Failed to set custom baud rate (%s): %s' % (baudrate, e)) + + baudrate_constants = { + 0: 0000000, # hang up + 50: 0000001, + 75: 0000002, + 110: 0000003, + 134: 0000004, + 150: 0000005, + 200: 0000006, + 300: 0000007, + 600: 0000010, + 1200: 0000011, + 1800: 0000012, + 2400: 0000013, + 4800: 0000014, + 9600: 0000015, + 19200: 0000016, + 38400: 0000017, + 57600: 0010001, + 115200: 0010002, + 230400: 0010003, + 460800: 0010004, + 500000: 0010005, + 576000: 0010006, + 921600: 0010007, + 1000000: 0010010, + 1152000: 0010011, + 1500000: 0010012, + 2000000: 0010013, + 2500000: 0010014, + 3000000: 0010015, + 3500000: 0010016, + 4000000: 0010017 + } + +elif plat == 'cygwin': # cygwin/win32 (confirmed) + + def device(port): + return '/dev/com%d' % (port + 1) + + def set_special_baudrate(port, baudrate): + raise ValueError("sorry don't know how to handle non standard baud rate on this platform") + + baudrate_constants = { + 128000: 0x01003, + 256000: 0x01005, + 500000: 0x01007, + 576000: 0x01008, + 921600: 0x01009, + 1000000: 0x0100a, + 1152000: 0x0100b, + 1500000: 0x0100c, + 2000000: 0x0100d, + 2500000: 0x0100e, + 3000000: 0x0100f + } + +elif plat[:7] == 'openbsd': # OpenBSD + + def device(port): + return '/dev/cua%02d' % port + + def set_special_baudrate(port, baudrate): + raise ValueError("sorry don't know how to handle non standard baud rate on this platform") + + baudrate_constants = {} + +elif plat[:3] == 'bsd' or \ + plat[:7] == 'freebsd': + + def device(port): + return '/dev/cuad%d' % port + + def set_special_baudrate(port, baudrate): + raise ValueError("sorry don't know how to handle non standard baud rate on this platform") + + baudrate_constants = {} + +elif plat[:6] == 'darwin': # OS X + + version = os.uname()[2].split('.') + # Tiger or above can support arbitrary serial speeds + if int(version[0]) >= 8: + def set_special_baudrate(port, baudrate): + # use IOKit-specific call to set up high speeds + import array, fcntl + buf = array.array('i', [baudrate]) + IOSSIOSPEED = 0x80045402 #_IOW('T', 2, speed_t) + fcntl.ioctl(port.fd, IOSSIOSPEED, buf, 1) + else: # version < 8 + def set_special_baudrate(port, baudrate): + raise ValueError("baud rate not supported") + + def device(port): + return '/dev/cuad%d' % port + + baudrate_constants = {} + + +elif plat[:6] == 'netbsd': # NetBSD 1.6 testing by Erk + + def device(port): + return '/dev/dty%02d' % port + + def set_special_baudrate(port, baudrate): + raise ValueError("sorry don't know how to handle non standard baud rate on this platform") + + baudrate_constants = {} + +elif plat[:4] == 'irix': # IRIX (partially tested) + + def device(port): + return '/dev/ttyf%d' % (port+1) #XXX different device names depending on flow control + + def set_special_baudrate(port, baudrate): + raise ValueError("sorry don't know how to handle non standard baud rate on this platform") + + baudrate_constants = {} + +elif plat[:2] == 'hp': # HP-UX (not tested) + + def device(port): + return '/dev/tty%dp0' % (port+1) + + def set_special_baudrate(port, baudrate): + raise ValueError("sorry don't know how to handle non standard baud rate on this platform") + + baudrate_constants = {} + +elif plat[:5] == 'sunos': # Solaris/SunOS (confirmed) + + def device(port): + return '/dev/tty%c' % (ord('a')+port) + + def set_special_baudrate(port, baudrate): + raise ValueError("sorry don't know how to handle non standard baud rate on this platform") + + baudrate_constants = {} + +elif plat[:3] == 'aix': # AIX + + def device(port): + return '/dev/tty%d' % (port) + + def set_special_baudrate(port, baudrate): + raise ValueError("sorry don't know how to handle non standard baud rate on this platform") + + baudrate_constants = {} + +else: + # platform detection has failed... + sys.stderr.write("""\ +don't know how to number ttys on this system. +! Use an explicit path (eg /dev/ttyS1) or send this information to +! the author of this module: + +sys.platform = %r +os.name = %r +serialposix.py version = %s + +also add the device name of the serial port and where the +counting starts for the first serial port. +e.g. 'first serial port: /dev/ttyS0' +and with a bit luck you can get this module running... +""" % (sys.platform, os.name, VERSION)) + # no exception, just continue with a brave attempt to build a device name + # even if the device name is not correct for the platform it has chances + # to work using a string with the real device name as port parameter. + def device(portum): + return '/dev/ttyS%d' % portnum + def set_special_baudrate(port, baudrate): + raise SerialException("sorry don't know how to handle non standard baud rate on this platform") + baudrate_constants = {} + #~ raise Exception, "this module does not run on this platform, sorry." + +# whats up with "aix", "beos", .... +# they should work, just need to know the device names. + + +# load some constants for later use. +# try to use values from TERMIOS, use defaults from linux otherwise +TIOCMGET = hasattr(TERMIOS, 'TIOCMGET') and TERMIOS.TIOCMGET or 0x5415 +TIOCMBIS = hasattr(TERMIOS, 'TIOCMBIS') and TERMIOS.TIOCMBIS or 0x5416 +TIOCMBIC = hasattr(TERMIOS, 'TIOCMBIC') and TERMIOS.TIOCMBIC or 0x5417 +TIOCMSET = hasattr(TERMIOS, 'TIOCMSET') and TERMIOS.TIOCMSET or 0x5418 + +#TIOCM_LE = hasattr(TERMIOS, 'TIOCM_LE') and TERMIOS.TIOCM_LE or 0x001 +TIOCM_DTR = hasattr(TERMIOS, 'TIOCM_DTR') and TERMIOS.TIOCM_DTR or 0x002 +TIOCM_RTS = hasattr(TERMIOS, 'TIOCM_RTS') and TERMIOS.TIOCM_RTS or 0x004 +#TIOCM_ST = hasattr(TERMIOS, 'TIOCM_ST') and TERMIOS.TIOCM_ST or 0x008 +#TIOCM_SR = hasattr(TERMIOS, 'TIOCM_SR') and TERMIOS.TIOCM_SR or 0x010 + +TIOCM_CTS = hasattr(TERMIOS, 'TIOCM_CTS') and TERMIOS.TIOCM_CTS or 0x020 +TIOCM_CAR = hasattr(TERMIOS, 'TIOCM_CAR') and TERMIOS.TIOCM_CAR or 0x040 +TIOCM_RNG = hasattr(TERMIOS, 'TIOCM_RNG') and TERMIOS.TIOCM_RNG or 0x080 +TIOCM_DSR = hasattr(TERMIOS, 'TIOCM_DSR') and TERMIOS.TIOCM_DSR or 0x100 +TIOCM_CD = hasattr(TERMIOS, 'TIOCM_CD') and TERMIOS.TIOCM_CD or TIOCM_CAR +TIOCM_RI = hasattr(TERMIOS, 'TIOCM_RI') and TERMIOS.TIOCM_RI or TIOCM_RNG +#TIOCM_OUT1 = hasattr(TERMIOS, 'TIOCM_OUT1') and TERMIOS.TIOCM_OUT1 or 0x2000 +#TIOCM_OUT2 = hasattr(TERMIOS, 'TIOCM_OUT2') and TERMIOS.TIOCM_OUT2 or 0x4000 +if hasattr(TERMIOS, 'TIOCINQ'): + TIOCINQ = TERMIOS.TIOCINQ +else: + TIOCINQ = hasattr(TERMIOS, 'FIONREAD') and TERMIOS.FIONREAD or 0x541B +TIOCOUTQ = hasattr(TERMIOS, 'TIOCOUTQ') and TERMIOS.TIOCOUTQ or 0x5411 + +TIOCM_zero_str = struct.pack('I', 0) +TIOCM_RTS_str = struct.pack('I', TIOCM_RTS) +TIOCM_DTR_str = struct.pack('I', TIOCM_DTR) + +TIOCSBRK = hasattr(TERMIOS, 'TIOCSBRK') and TERMIOS.TIOCSBRK or 0x5427 +TIOCCBRK = hasattr(TERMIOS, 'TIOCCBRK') and TERMIOS.TIOCCBRK or 0x5428 + + +class PosixSerial(SerialBase): + """Serial port class POSIX implementation. Serial port configuration is + done with termios and fcntl. Runs on Linux and many other Un*x like + systems.""" + + def open(self): + """Open port with current settings. This may throw a SerialException + if the port cannot be opened.""" + if self._port is None: + raise SerialException("Port must be configured before it can be used.") + if self._isOpen: + raise SerialException("Port is already open.") + self.fd = None + # open + try: + self.fd = os.open(self.portstr, os.O_RDWR|os.O_NOCTTY|os.O_NONBLOCK) + except IOError, msg: + self.fd = None + raise SerialException(msg.errno, "could not open port %s: %s" % (self._port, msg)) + #~ fcntl.fcntl(self.fd, FCNTL.F_SETFL, 0) # set blocking + + try: + self._reconfigurePort() + except: + try: + os.close(self.fd) + except: + # ignore any exception when closing the port + # also to keep original exception that happened when setting up + pass + self.fd = None + raise + else: + self._isOpen = True + self.flushInput() + + + def _reconfigurePort(self): + """Set communication parameters on opened port.""" + if self.fd is None: + raise SerialException("Can only operate on a valid file descriptor") + custom_baud = None + + vmin = vtime = 0 # timeout is done via select + if self._interCharTimeout is not None: + vmin = 1 + vtime = int(self._interCharTimeout * 10) + try: + orig_attr = termios.tcgetattr(self.fd) + iflag, oflag, cflag, lflag, ispeed, ospeed, cc = orig_attr + except termios.error, msg: # if a port is nonexistent but has a /dev file, it'll fail here + raise SerialException("Could not configure port: %s" % msg) + # set up raw mode / no echo / binary + cflag |= (TERMIOS.CLOCAL|TERMIOS.CREAD) + lflag &= ~(TERMIOS.ICANON|TERMIOS.ECHO|TERMIOS.ECHOE|TERMIOS.ECHOK|TERMIOS.ECHONL| + TERMIOS.ISIG|TERMIOS.IEXTEN) #|TERMIOS.ECHOPRT + for flag in ('ECHOCTL', 'ECHOKE'): # netbsd workaround for Erk + if hasattr(TERMIOS, flag): + lflag &= ~getattr(TERMIOS, flag) + + oflag &= ~(TERMIOS.OPOST) + iflag &= ~(TERMIOS.INLCR|TERMIOS.IGNCR|TERMIOS.ICRNL|TERMIOS.IGNBRK) + if hasattr(TERMIOS, 'IUCLC'): + iflag &= ~TERMIOS.IUCLC + if hasattr(TERMIOS, 'PARMRK'): + iflag &= ~TERMIOS.PARMRK + + # setup baud rate + try: + ispeed = ospeed = getattr(TERMIOS, 'B%s' % (self._baudrate)) + except AttributeError: + try: + ispeed = ospeed = baudrate_constants[self._baudrate] + except KeyError: + #~ raise ValueError('Invalid baud rate: %r' % self._baudrate) + # may need custom baud rate, it isn't in our list. + ispeed = ospeed = getattr(TERMIOS, 'B38400') + try: + custom_baud = int(self._baudrate) # store for later + except ValueError: + raise ValueError('Invalid baud rate: %r' % self._baudrate) + else: + if custom_baud < 0: + raise ValueError('Invalid baud rate: %r' % self._baudrate) + + # setup char len + cflag &= ~TERMIOS.CSIZE + if self._bytesize == 8: + cflag |= TERMIOS.CS8 + elif self._bytesize == 7: + cflag |= TERMIOS.CS7 + elif self._bytesize == 6: + cflag |= TERMIOS.CS6 + elif self._bytesize == 5: + cflag |= TERMIOS.CS5 + else: + raise ValueError('Invalid char len: %r' % self._bytesize) + # setup stopbits + if self._stopbits == STOPBITS_ONE: + cflag &= ~(TERMIOS.CSTOPB) + elif self._stopbits == STOPBITS_ONE_POINT_FIVE: + cflag |= (TERMIOS.CSTOPB) # XXX same as TWO.. there is no POSIX support for 1.5 + elif self._stopbits == STOPBITS_TWO: + cflag |= (TERMIOS.CSTOPB) + else: + raise ValueError('Invalid stop bit specification: %r' % self._stopbits) + # setup parity + iflag &= ~(TERMIOS.INPCK|TERMIOS.ISTRIP) + if self._parity == PARITY_NONE: + cflag &= ~(TERMIOS.PARENB|TERMIOS.PARODD) + elif self._parity == PARITY_EVEN: + cflag &= ~(TERMIOS.PARODD) + cflag |= (TERMIOS.PARENB) + elif self._parity == PARITY_ODD: + cflag |= (TERMIOS.PARENB|TERMIOS.PARODD) + else: + raise ValueError('Invalid parity: %r' % self._parity) + # setup flow control + # xonxoff + if hasattr(TERMIOS, 'IXANY'): + if self._xonxoff: + iflag |= (TERMIOS.IXON|TERMIOS.IXOFF) #|TERMIOS.IXANY) + else: + iflag &= ~(TERMIOS.IXON|TERMIOS.IXOFF|TERMIOS.IXANY) + else: + if self._xonxoff: + iflag |= (TERMIOS.IXON|TERMIOS.IXOFF) + else: + iflag &= ~(TERMIOS.IXON|TERMIOS.IXOFF) + # rtscts + if hasattr(TERMIOS, 'CRTSCTS'): + if self._rtscts: + cflag |= (TERMIOS.CRTSCTS) + else: + cflag &= ~(TERMIOS.CRTSCTS) + elif hasattr(TERMIOS, 'CNEW_RTSCTS'): # try it with alternate constant name + if self._rtscts: + cflag |= (TERMIOS.CNEW_RTSCTS) + else: + cflag &= ~(TERMIOS.CNEW_RTSCTS) + # XXX should there be a warning if setting up rtscts (and xonxoff etc) fails?? + + # buffer + # vmin "minimal number of characters to be read. = for non blocking" + if vmin < 0 or vmin > 255: + raise ValueError('Invalid vmin: %r ' % vmin) + cc[TERMIOS.VMIN] = vmin + # vtime + if vtime < 0 or vtime > 255: + raise ValueError('Invalid vtime: %r' % vtime) + cc[TERMIOS.VTIME] = vtime + # activate settings + if [iflag, oflag, cflag, lflag, ispeed, ospeed, cc] != orig_attr: + termios.tcsetattr(self.fd, TERMIOS.TCSANOW, [iflag, oflag, cflag, lflag, ispeed, ospeed, cc]) + + # apply custom baud rate, if any + if custom_baud is not None: + set_special_baudrate(self, custom_baud) + + def close(self): + """Close port""" + if self._isOpen: + if self.fd is not None: + os.close(self.fd) + self.fd = None + self._isOpen = False + + def makeDeviceName(self, port): + return device(port) + + # - - - - - - - - - - - - - - - - - - - - - - - - + + def inWaiting(self): + """Return the number of characters currently in the input buffer.""" + #~ s = fcntl.ioctl(self.fd, TERMIOS.FIONREAD, TIOCM_zero_str) + s = fcntl.ioctl(self.fd, TIOCINQ, TIOCM_zero_str) + return struct.unpack('I',s)[0] + + # select based implementation, proved to work on many systems + def read(self, size=1): + """Read size bytes from the serial port. If a timeout is set it may + return less characters as requested. With no timeout it will block + until the requested number of bytes is read.""" + if not self._isOpen: raise portNotOpenError + read = bytearray() + while len(read) < size: + try: + ready,_,_ = select.select([self.fd],[],[], self._timeout) + # If select was used with a timeout, and the timeout occurs, it + # returns with empty lists -> thus abort read operation. + # For timeout == 0 (non-blocking operation) also abort when there + # is nothing to read. + if not ready: + break # timeout + buf = os.read(self.fd, size-len(read)) + # read should always return some data as select reported it was + # ready to read when we get to this point. + if not buf: + # Disconnected devices, at least on Linux, show the + # behavior that they are always ready to read immediately + # but reading returns nothing. + raise SerialException('device reports readiness to read but returned no data (device disconnected or multiple access on port?)') + read.extend(buf) + except select.error, e: + # ignore EAGAIN errors. all other errors are shown + # see also http://www.python.org/dev/peps/pep-3151/#select + if e[0] != errno.EAGAIN: + raise SerialException('read failed: %s' % (e,)) + except OSError, e: + # ignore EAGAIN errors. all other errors are shown + if e.errno != errno.EAGAIN: + raise SerialException('read failed: %s' % (e,)) + return bytes(read) + + def write(self, data): + """Output the given string over the serial port.""" + if not self._isOpen: raise portNotOpenError + d = to_bytes(data) + tx_len = len(d) + if self._writeTimeout is not None and self._writeTimeout > 0: + timeout = time.time() + self._writeTimeout + else: + timeout = None + while tx_len > 0: + try: + n = os.write(self.fd, d) + if timeout: + # when timeout is set, use select to wait for being ready + # with the time left as timeout + timeleft = timeout - time.time() + if timeleft < 0: + raise writeTimeoutError + _, ready, _ = select.select([], [self.fd], [], timeleft) + if not ready: + raise writeTimeoutError + else: + # wait for write operation + _, ready, _ = select.select([], [self.fd], [], None) + if not ready: + raise SerialException('write failed (select)') + d = d[n:] + tx_len -= n + except OSError, v: + if v.errno != errno.EAGAIN: + raise SerialException('write failed: %s' % (v,)) + return len(data) + + def flush(self): + """Flush of file like objects. In this case, wait until all data + is written.""" + self.drainOutput() + + def flushInput(self): + """Clear input buffer, discarding all that is in the buffer.""" + if not self._isOpen: raise portNotOpenError + termios.tcflush(self.fd, TERMIOS.TCIFLUSH) + + def flushOutput(self): + """Clear output buffer, aborting the current output and + discarding all that is in the buffer.""" + if not self._isOpen: raise portNotOpenError + termios.tcflush(self.fd, TERMIOS.TCOFLUSH) + + def sendBreak(self, duration=0.25): + """Send break condition. Timed, returns to idle state after given duration.""" + if not self._isOpen: raise portNotOpenError + termios.tcsendbreak(self.fd, int(duration/0.25)) + + def setBreak(self, level=1): + """Set break: Controls TXD. When active, no transmitting is possible.""" + if self.fd is None: raise portNotOpenError + if level: + fcntl.ioctl(self.fd, TIOCSBRK) + else: + fcntl.ioctl(self.fd, TIOCCBRK) + + def setRTS(self, level=1): + """Set terminal status line: Request To Send""" + if not self._isOpen: raise portNotOpenError + if level: + fcntl.ioctl(self.fd, TIOCMBIS, TIOCM_RTS_str) + else: + fcntl.ioctl(self.fd, TIOCMBIC, TIOCM_RTS_str) + + def setDTR(self, level=1): + """Set terminal status line: Data Terminal Ready""" + if not self._isOpen: raise portNotOpenError + if level: + fcntl.ioctl(self.fd, TIOCMBIS, TIOCM_DTR_str) + else: + fcntl.ioctl(self.fd, TIOCMBIC, TIOCM_DTR_str) + + def getCTS(self): + """Read terminal status line: Clear To Send""" + if not self._isOpen: raise portNotOpenError + s = fcntl.ioctl(self.fd, TIOCMGET, TIOCM_zero_str) + return struct.unpack('I',s)[0] & TIOCM_CTS != 0 + + def getDSR(self): + """Read terminal status line: Data Set Ready""" + if not self._isOpen: raise portNotOpenError + s = fcntl.ioctl(self.fd, TIOCMGET, TIOCM_zero_str) + return struct.unpack('I',s)[0] & TIOCM_DSR != 0 + + def getRI(self): + """Read terminal status line: Ring Indicator""" + if not self._isOpen: raise portNotOpenError + s = fcntl.ioctl(self.fd, TIOCMGET, TIOCM_zero_str) + return struct.unpack('I',s)[0] & TIOCM_RI != 0 + + def getCD(self): + """Read terminal status line: Carrier Detect""" + if not self._isOpen: raise portNotOpenError + s = fcntl.ioctl(self.fd, TIOCMGET, TIOCM_zero_str) + return struct.unpack('I',s)[0] & TIOCM_CD != 0 + + # - - platform specific - - - - + + def outWaiting(self): + """Return the number of characters currently in the output buffer.""" + #~ s = fcntl.ioctl(self.fd, TERMIOS.FIONREAD, TIOCM_zero_str) + s = fcntl.ioctl(self.fd, TIOCOUTQ, TIOCM_zero_str) + return struct.unpack('I',s)[0] + + def drainOutput(self): + """internal - not portable!""" + if not self._isOpen: raise portNotOpenError + termios.tcdrain(self.fd) + + def nonblocking(self): + """internal - not portable!""" + if not self._isOpen: raise portNotOpenError + fcntl.fcntl(self.fd, FCNTL.F_SETFL, os.O_NONBLOCK) + + def fileno(self): + """\ + For easier use of the serial port instance with select. + WARNING: this function is not portable to different platforms! + """ + if not self._isOpen: raise portNotOpenError + return self.fd + + def setXON(self, level=True): + """\ + Manually control flow - when software flow control is enabled. + This will send XON (true) and XOFF (false) to the other device. + WARNING: this function is not portable to different platforms! + """ + if not self.hComPort: raise portNotOpenError + if enable: + termios.tcflow(self.fd, TERMIOS.TCION) + else: + termios.tcflow(self.fd, TERMIOS.TCIOFF) + + def flowControlOut(self, enable): + """\ + Manually control flow of outgoing data - when hardware or software flow + control is enabled. + WARNING: this function is not portable to different platforms! + """ + if not self._isOpen: raise portNotOpenError + if enable: + termios.tcflow(self.fd, TERMIOS.TCOON) + else: + termios.tcflow(self.fd, TERMIOS.TCOOFF) + + +# assemble Serial class with the platform specifc implementation and the base +# for file-like behavior. for Python 2.6 and newer, that provide the new I/O +# library, derrive from io.RawIOBase +try: + import io +except ImportError: + # classic version with our own file-like emulation + class Serial(PosixSerial, FileLike): + pass +else: + # io library present + class Serial(PosixSerial, io.RawIOBase): + pass + +class PosixPollSerial(Serial): + """poll based read implementation. not all systems support poll properly. + however this one has better handling of errors, such as a device + disconnecting while it's in use (e.g. USB-serial unplugged)""" + + def read(self, size=1): + """Read size bytes from the serial port. If a timeout is set it may + return less characters as requested. With no timeout it will block + until the requested number of bytes is read.""" + if self.fd is None: raise portNotOpenError + read = bytearray() + poll = select.poll() + poll.register(self.fd, select.POLLIN|select.POLLERR|select.POLLHUP|select.POLLNVAL) + if size > 0: + while len(read) < size: + # print "\tread(): size",size, "have", len(read) #debug + # wait until device becomes ready to read (or something fails) + for fd, event in poll.poll(self._timeout*1000): + if event & (select.POLLERR|select.POLLHUP|select.POLLNVAL): + raise SerialException('device reports error (poll)') + # we don't care if it is select.POLLIN or timeout, that's + # handled below + buf = os.read(self.fd, size - len(read)) + read.extend(buf) + if ((self._timeout is not None and self._timeout >= 0) or + (self._interCharTimeout is not None and self._interCharTimeout > 0)) and not buf: + break # early abort on timeout + return bytes(read) + + +if __name__ == '__main__': + s = Serial(0, + baudrate=19200, # baud rate + bytesize=EIGHTBITS, # number of data bits + parity=PARITY_EVEN, # enable parity checking + stopbits=STOPBITS_ONE, # number of stop bits + timeout=3, # set a timeout value, None for waiting forever + xonxoff=0, # enable software flow control + rtscts=0, # enable RTS/CTS flow control + ) + s.setRTS(1) + s.setDTR(1) + s.flushInput() + s.flushOutput() + s.write('hello') + sys.stdout.write('%r\n' % s.read(5)) + sys.stdout.write('%s\n' % s.inWaiting()) + del s + diff --git a/serial/serialutil.py b/serial/serialutil.py new file mode 100644 index 0000000..f28ece4 --- /dev/null +++ b/serial/serialutil.py @@ -0,0 +1,551 @@ +#! python +# Python Serial Port Extension for Win32, Linux, BSD, Jython +# see __init__.py +# +# (C) 2001-2010 Chris Liechti +# this is distributed under a free software license, see license.txt + +# compatibility for older Python < 2.6 +try: + bytes + bytearray +except (NameError, AttributeError): + # Python older than 2.6 do not have these types. Like for Python 2.6 they + # should behave like str. For Python older than 3.0 we want to work with + # strings anyway, only later versions have a true bytes type. + bytes = str + # bytearray is a mutable type that is easily turned into an instance of + # bytes + class bytearray(list): + # for bytes(bytearray()) usage + def __str__(self): return ''.join(self) + def __repr__(self): return 'bytearray(%r)' % ''.join(self) + # append automatically converts integers to characters + def append(self, item): + if isinstance(item, str): + list.append(self, item) + else: + list.append(self, chr(item)) + # += + def __iadd__(self, other): + for byte in other: + self.append(byte) + return self + + def __getslice__(self, i, j): + return bytearray(list.__getslice__(self, i, j)) + + def __getitem__(self, item): + if isinstance(item, slice): + return bytearray(list.__getitem__(self, item)) + else: + return ord(list.__getitem__(self, item)) + + def __eq__(self, other): + if isinstance(other, basestring): + other = bytearray(other) + return list.__eq__(self, other) + +# ``memoryview`` was introduced in Python 2.7 and ``bytes(some_memoryview)`` +# isn't returning the contents (very unfortunate). Therefore we need special +# cases and test for it. Ensure that there is a ``memoryview`` object for older +# Python versions. This is easier than making every test dependent on its +# existence. +try: + memoryview +except (NameError, AttributeError): + # implementation does not matter as we do not realy use it. + # it just must not inherit from something else we might care for. + class memoryview: + pass + + +# all Python versions prior 3.x convert ``str([17])`` to '[17]' instead of '\x11' +# so a simple ``bytes(sequence)`` doesn't work for all versions +def to_bytes(seq): + """convert a sequence to a bytes type""" + if isinstance(seq, bytes): + return seq + elif isinstance(seq, bytearray): + return bytes(seq) + elif isinstance(seq, memoryview): + return seq.tobytes() + else: + b = bytearray() + for item in seq: + b.append(item) # this one handles int and str for our emulation and ints for Python 3.x + return bytes(b) + +# create control bytes +XON = to_bytes([17]) +XOFF = to_bytes([19]) + +CR = to_bytes([13]) +LF = to_bytes([10]) + + +PARITY_NONE, PARITY_EVEN, PARITY_ODD, PARITY_MARK, PARITY_SPACE = 'N', 'E', 'O', 'M', 'S' +STOPBITS_ONE, STOPBITS_ONE_POINT_FIVE, STOPBITS_TWO = (1, 1.5, 2) +FIVEBITS, SIXBITS, SEVENBITS, EIGHTBITS = (5, 6, 7, 8) + +PARITY_NAMES = { + PARITY_NONE: 'None', + PARITY_EVEN: 'Even', + PARITY_ODD: 'Odd', + PARITY_MARK: 'Mark', + PARITY_SPACE: 'Space', +} + + +class SerialException(IOError): + """Base class for serial port related exceptions.""" + + +class SerialTimeoutException(SerialException): + """Write timeouts give an exception""" + + +writeTimeoutError = SerialTimeoutException('Write timeout') +portNotOpenError = SerialException('Attempting to use a port that is not open') + + +class FileLike(object): + """An abstract file like class. + + This class implements readline and readlines based on read and + writelines based on write. + This class is used to provide the above functions for to Serial + port objects. + + Note that when the serial port was opened with _NO_ timeout that + readline blocks until it sees a newline (or the specified size is + reached) and that readlines would never return and therefore + refuses to work (it raises an exception in this case)! + """ + + def __init__(self): + self.closed = True + + def close(self): + self.closed = True + + # so that ports are closed when objects are discarded + def __del__(self): + """Destructor. Calls close().""" + # The try/except block is in case this is called at program + # exit time, when it's possible that globals have already been + # deleted, and then the close() call might fail. Since + # there's nothing we can do about such failures and they annoy + # the end users, we suppress the traceback. + try: + self.close() + except: + pass + + def writelines(self, sequence): + for line in sequence: + self.write(line) + + def flush(self): + """flush of file like objects""" + pass + + # iterator for e.g. "for line in Serial(0): ..." usage + def next(self): + line = self.readline() + if not line: raise StopIteration + return line + + def __iter__(self): + return self + + def readline(self, size=None, eol=LF): + """read a line which is terminated with end-of-line (eol) character + ('\n' by default) or until timeout.""" + leneol = len(eol) + line = bytearray() + while True: + c = self.read(1) + if c: + line += c + if line[-leneol:] == eol: + break + if size is not None and len(line) >= size: + break + else: + break + return bytes(line) + + def readlines(self, sizehint=None, eol=LF): + """read a list of lines, until timeout. + sizehint is ignored.""" + if self.timeout is None: + raise ValueError("Serial port MUST have enabled timeout for this function!") + leneol = len(eol) + lines = [] + while True: + line = self.readline(eol=eol) + if line: + lines.append(line) + if line[-leneol:] != eol: # was the line received with a timeout? + break + else: + break + return lines + + def xreadlines(self, sizehint=None): + """Read lines, implemented as generator. It will raise StopIteration on + timeout (empty read). sizehint is ignored.""" + while True: + line = self.readline() + if not line: break + yield line + + # other functions of file-likes - not used by pySerial + + #~ readinto(b) + + def seek(self, pos, whence=0): + raise IOError("file is not seekable") + + def tell(self): + raise IOError("file is not seekable") + + def truncate(self, n=None): + raise IOError("file is not seekable") + + def isatty(self): + return False + + +class SerialBase(object): + """Serial port base class. Provides __init__ function and properties to + get/set port settings.""" + + # default values, may be overridden in subclasses that do not support all values + BAUDRATES = (50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, + 9600, 19200, 38400, 57600, 115200, 230400, 460800, 500000, + 576000, 921600, 1000000, 1152000, 1500000, 2000000, 2500000, + 3000000, 3500000, 4000000) + BYTESIZES = (FIVEBITS, SIXBITS, SEVENBITS, EIGHTBITS) + PARITIES = (PARITY_NONE, PARITY_EVEN, PARITY_ODD, PARITY_MARK, PARITY_SPACE) + STOPBITS = (STOPBITS_ONE, STOPBITS_ONE_POINT_FIVE, STOPBITS_TWO) + + def __init__(self, + port = None, # number of device, numbering starts at + # zero. if everything fails, the user + # can specify a device string, note + # that this isn't portable anymore + # port will be opened if one is specified + baudrate=9600, # baud rate + bytesize=EIGHTBITS, # number of data bits + parity=PARITY_NONE, # enable parity checking + stopbits=STOPBITS_ONE, # number of stop bits + timeout=None, # set a timeout value, None to wait forever + xonxoff=False, # enable software flow control + rtscts=False, # enable RTS/CTS flow control + writeTimeout=None, # set a timeout for writes + dsrdtr=False, # None: use rtscts setting, dsrdtr override if True or False + interCharTimeout=None # Inter-character timeout, None to disable + ): + """Initialize comm port object. If a port is given, then the port will be + opened immediately. Otherwise a Serial port object in closed state + is returned.""" + + self._isOpen = False + self._port = None # correct value is assigned below through properties + self._baudrate = None # correct value is assigned below through properties + self._bytesize = None # correct value is assigned below through properties + self._parity = None # correct value is assigned below through properties + self._stopbits = None # correct value is assigned below through properties + self._timeout = None # correct value is assigned below through properties + self._writeTimeout = None # correct value is assigned below through properties + self._xonxoff = None # correct value is assigned below through properties + self._rtscts = None # correct value is assigned below through properties + self._dsrdtr = None # correct value is assigned below through properties + self._interCharTimeout = None # correct value is assigned below through properties + + # assign values using get/set methods using the properties feature + self.port = port + self.baudrate = baudrate + self.bytesize = bytesize + self.parity = parity + self.stopbits = stopbits + self.timeout = timeout + self.writeTimeout = writeTimeout + self.xonxoff = xonxoff + self.rtscts = rtscts + self.dsrdtr = dsrdtr + self.interCharTimeout = interCharTimeout + + if port is not None: + self.open() + + def isOpen(self): + """Check if the port is opened.""" + return self._isOpen + + # - - - - - - - - - - - - - - - - - - - - - - - - + + # TODO: these are not really needed as the is the BAUDRATES etc. attribute... + # maybe i remove them before the final release... + + def getSupportedBaudrates(self): + return [(str(b), b) for b in self.BAUDRATES] + + def getSupportedByteSizes(self): + return [(str(b), b) for b in self.BYTESIZES] + + def getSupportedStopbits(self): + return [(str(b), b) for b in self.STOPBITS] + + def getSupportedParities(self): + return [(PARITY_NAMES[b], b) for b in self.PARITIES] + + # - - - - - - - - - - - - - - - - - - - - - - - - + + def setPort(self, port): + """Change the port. The attribute portstr is set to a string that + contains the name of the port.""" + + was_open = self._isOpen + if was_open: self.close() + if port is not None: + if isinstance(port, basestring): + self.portstr = port + else: + self.portstr = self.makeDeviceName(port) + else: + self.portstr = None + self._port = port + self.name = self.portstr + if was_open: self.open() + + def getPort(self): + """Get the current port setting. The value that was passed on init or using + setPort() is passed back. See also the attribute portstr which contains + the name of the port as a string.""" + return self._port + + port = property(getPort, setPort, doc="Port setting") + + + def setBaudrate(self, baudrate): + """Change baud rate. It raises a ValueError if the port is open and the + baud rate is not possible. If the port is closed, then the value is + accepted and the exception is raised when the port is opened.""" + try: + b = int(baudrate) + except TypeError: + raise ValueError("Not a valid baudrate: %r" % (baudrate,)) + else: + if b <= 0: + raise ValueError("Not a valid baudrate: %r" % (baudrate,)) + self._baudrate = b + if self._isOpen: self._reconfigurePort() + + def getBaudrate(self): + """Get the current baud rate setting.""" + return self._baudrate + + baudrate = property(getBaudrate, setBaudrate, doc="Baud rate setting") + + + def setByteSize(self, bytesize): + """Change byte size.""" + if bytesize not in self.BYTESIZES: raise ValueError("Not a valid byte size: %r" % (bytesize,)) + self._bytesize = bytesize + if self._isOpen: self._reconfigurePort() + + def getByteSize(self): + """Get the current byte size setting.""" + return self._bytesize + + bytesize = property(getByteSize, setByteSize, doc="Byte size setting") + + + def setParity(self, parity): + """Change parity setting.""" + if parity not in self.PARITIES: raise ValueError("Not a valid parity: %r" % (parity,)) + self._parity = parity + if self._isOpen: self._reconfigurePort() + + def getParity(self): + """Get the current parity setting.""" + return self._parity + + parity = property(getParity, setParity, doc="Parity setting") + + + def setStopbits(self, stopbits): + """Change stop bits size.""" + if stopbits not in self.STOPBITS: raise ValueError("Not a valid stop bit size: %r" % (stopbits,)) + self._stopbits = stopbits + if self._isOpen: self._reconfigurePort() + + def getStopbits(self): + """Get the current stop bits setting.""" + return self._stopbits + + stopbits = property(getStopbits, setStopbits, doc="Stop bits setting") + + + def setTimeout(self, timeout): + """Change timeout setting.""" + if timeout is not None: + try: + timeout + 1 # test if it's a number, will throw a TypeError if not... + except TypeError: + raise ValueError("Not a valid timeout: %r" % (timeout,)) + if timeout < 0: raise ValueError("Not a valid timeout: %r" % (timeout,)) + self._timeout = timeout + if self._isOpen: self._reconfigurePort() + + def getTimeout(self): + """Get the current timeout setting.""" + return self._timeout + + timeout = property(getTimeout, setTimeout, doc="Timeout setting for read()") + + + def setWriteTimeout(self, timeout): + """Change timeout setting.""" + if timeout is not None: + if timeout < 0: raise ValueError("Not a valid timeout: %r" % (timeout,)) + try: + timeout + 1 #test if it's a number, will throw a TypeError if not... + except TypeError: + raise ValueError("Not a valid timeout: %r" % timeout) + + self._writeTimeout = timeout + if self._isOpen: self._reconfigurePort() + + def getWriteTimeout(self): + """Get the current timeout setting.""" + return self._writeTimeout + + writeTimeout = property(getWriteTimeout, setWriteTimeout, doc="Timeout setting for write()") + + + def setXonXoff(self, xonxoff): + """Change XON/XOFF setting.""" + self._xonxoff = xonxoff + if self._isOpen: self._reconfigurePort() + + def getXonXoff(self): + """Get the current XON/XOFF setting.""" + return self._xonxoff + + xonxoff = property(getXonXoff, setXonXoff, doc="XON/XOFF setting") + + def setRtsCts(self, rtscts): + """Change RTS/CTS flow control setting.""" + self._rtscts = rtscts + if self._isOpen: self._reconfigurePort() + + def getRtsCts(self): + """Get the current RTS/CTS flow control setting.""" + return self._rtscts + + rtscts = property(getRtsCts, setRtsCts, doc="RTS/CTS flow control setting") + + def setDsrDtr(self, dsrdtr=None): + """Change DsrDtr flow control setting.""" + if dsrdtr is None: + # if not set, keep backwards compatibility and follow rtscts setting + self._dsrdtr = self._rtscts + else: + # if defined independently, follow its value + self._dsrdtr = dsrdtr + if self._isOpen: self._reconfigurePort() + + def getDsrDtr(self): + """Get the current DSR/DTR flow control setting.""" + return self._dsrdtr + + dsrdtr = property(getDsrDtr, setDsrDtr, "DSR/DTR flow control setting") + + def setInterCharTimeout(self, interCharTimeout): + """Change inter-character timeout setting.""" + if interCharTimeout is not None: + if interCharTimeout < 0: raise ValueError("Not a valid timeout: %r" % interCharTimeout) + try: + interCharTimeout + 1 # test if it's a number, will throw a TypeError if not... + except TypeError: + raise ValueError("Not a valid timeout: %r" % interCharTimeout) + + self._interCharTimeout = interCharTimeout + if self._isOpen: self._reconfigurePort() + + def getInterCharTimeout(self): + """Get the current inter-character timeout setting.""" + return self._interCharTimeout + + interCharTimeout = property(getInterCharTimeout, setInterCharTimeout, doc="Inter-character timeout setting for read()") + + # - - - - - - - - - - - - - - - - - - - - - - - - + + _SETTINGS = ('baudrate', 'bytesize', 'parity', 'stopbits', 'xonxoff', + 'dsrdtr', 'rtscts', 'timeout', 'writeTimeout', 'interCharTimeout') + + def getSettingsDict(self): + """Get current port settings as a dictionary. For use with + applySettingsDict""" + return dict([(key, getattr(self, '_'+key)) for key in self._SETTINGS]) + + def applySettingsDict(self, d): + """apply stored settings from a dictionary returned from + getSettingsDict. it's allowed to delete keys from the dictionary. these + values will simply left unchanged.""" + for key in self._SETTINGS: + if d[key] != getattr(self, '_'+key): # check against internal "_" value + setattr(self, key, d[key]) # set non "_" value to use properties write function + + # - - - - - - - - - - - - - - - - - - - - - - - - + + def __repr__(self): + """String representation of the current port settings and its state.""" + return "%s(port=%r, baudrate=%r, bytesize=%r, parity=%r, stopbits=%r, timeout=%r, xonxoff=%r, rtscts=%r, dsrdtr=%r)" % ( + self.__class__.__name__, + id(self), + self._isOpen, + self.portstr, + self.baudrate, + self.bytesize, + self.parity, + self.stopbits, + self.timeout, + self.xonxoff, + self.rtscts, + self.dsrdtr, + ) + + + # - - - - - - - - - - - - - - - - - - - - - - - - + # compatibility with io library + + def readable(self): return True + def writable(self): return True + def seekable(self): return False + def readinto(self, b): + data = self.read(len(b)) + n = len(data) + try: + b[:n] = data + except TypeError, err: + import array + if not isinstance(b, array.array): + raise err + b[:n] = array.array('b', data) + return n + + +if __name__ == '__main__': + import sys + s = SerialBase() + sys.stdout.write('port name: %s\n' % s.portstr) + sys.stdout.write('baud rates: %s\n' % s.getSupportedBaudrates()) + sys.stdout.write('byte sizes: %s\n' % s.getSupportedByteSizes()) + sys.stdout.write('parities: %s\n' % s.getSupportedParities()) + sys.stdout.write('stop bits: %s\n' % s.getSupportedStopbits()) + sys.stdout.write('%s\n' % s) diff --git a/serial/serialwin32.py b/serial/serialwin32.py new file mode 100644 index 0000000..dfdd953 --- /dev/null +++ b/serial/serialwin32.py @@ -0,0 +1,461 @@ +#! python +# Python Serial Port Extension for Win32, Linux, BSD, Jython +# serial driver for win32 +# see __init__.py +# +# (C) 2001-2011 Chris Liechti +# this is distributed under a free software license, see license.txt +# +# Initial patch to use ctypes by Giovanni Bajo + +import ctypes +from serial import win32 + +from serial.serialutil import * + + +def device(portnum): + """Turn a port number into a device name""" + return 'COM%d' % (portnum+1) # numbers are transformed to a string + + +class Win32Serial(SerialBase): + """Serial port implementation for Win32 based on ctypes.""" + + BAUDRATES = (50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, + 9600, 19200, 38400, 57600, 115200) + + def __init__(self, *args, **kwargs): + self.hComPort = None + self._overlappedRead = None + self._overlappedWrite = None + self._rtsToggle = False + + self._rtsState = win32.RTS_CONTROL_ENABLE + self._dtrState = win32.DTR_CONTROL_ENABLE + + + SerialBase.__init__(self, *args, **kwargs) + + def open(self): + """Open port with current settings. This may throw a SerialException + if the port cannot be opened.""" + if self._port is None: + raise SerialException("Port must be configured before it can be used.") + if self._isOpen: + raise SerialException("Port is already open.") + # the "\\.\COMx" format is required for devices other than COM1-COM8 + # not all versions of windows seem to support this properly + # so that the first few ports are used with the DOS device name + port = self.portstr + try: + if port.upper().startswith('COM') and int(port[3:]) > 8: + port = '\\\\.\\' + port + except ValueError: + # for like COMnotanumber + pass + self.hComPort = win32.CreateFile(port, + win32.GENERIC_READ | win32.GENERIC_WRITE, + 0, # exclusive access + None, # no security + win32.OPEN_EXISTING, + win32.FILE_ATTRIBUTE_NORMAL | win32.FILE_FLAG_OVERLAPPED, + 0) + if self.hComPort == win32.INVALID_HANDLE_VALUE: + self.hComPort = None # 'cause __del__ is called anyway + raise SerialException("could not open port %r: %r" % (self.portstr, ctypes.WinError())) + + try: + self._overlappedRead = win32.OVERLAPPED() + self._overlappedRead.hEvent = win32.CreateEvent(None, 1, 0, None) + self._overlappedWrite = win32.OVERLAPPED() + #~ self._overlappedWrite.hEvent = win32.CreateEvent(None, 1, 0, None) + self._overlappedWrite.hEvent = win32.CreateEvent(None, 0, 0, None) + + # Setup a 4k buffer + win32.SetupComm(self.hComPort, 4096, 4096) + + # Save original timeout values: + self._orgTimeouts = win32.COMMTIMEOUTS() + win32.GetCommTimeouts(self.hComPort, ctypes.byref(self._orgTimeouts)) + + self._reconfigurePort() + + # Clear buffers: + # Remove anything that was there + win32.PurgeComm(self.hComPort, + win32.PURGE_TXCLEAR | win32.PURGE_TXABORT | + win32.PURGE_RXCLEAR | win32.PURGE_RXABORT) + except: + try: + self._close() + except: + # ignore any exception when closing the port + # also to keep original exception that happened when setting up + pass + self.hComPort = None + raise + else: + self._isOpen = True + + + def _reconfigurePort(self): + """Set communication parameters on opened port.""" + if not self.hComPort: + raise SerialException("Can only operate on a valid port handle") + + # Set Windows timeout values + # timeouts is a tuple with the following items: + # (ReadIntervalTimeout,ReadTotalTimeoutMultiplier, + # ReadTotalTimeoutConstant,WriteTotalTimeoutMultiplier, + # WriteTotalTimeoutConstant) + if self._timeout is None: + timeouts = (0, 0, 0, 0, 0) + elif self._timeout == 0: + timeouts = (win32.MAXDWORD, 0, 0, 0, 0) + else: + timeouts = (0, 0, int(self._timeout*1000), 0, 0) + if self._timeout != 0 and self._interCharTimeout is not None: + timeouts = (int(self._interCharTimeout * 1000),) + timeouts[1:] + + if self._writeTimeout is None: + pass + elif self._writeTimeout == 0: + timeouts = timeouts[:-2] + (0, win32.MAXDWORD) + else: + timeouts = timeouts[:-2] + (0, int(self._writeTimeout*1000)) + win32.SetCommTimeouts(self.hComPort, ctypes.byref(win32.COMMTIMEOUTS(*timeouts))) + + win32.SetCommMask(self.hComPort, win32.EV_ERR) + + # Setup the connection info. + # Get state and modify it: + comDCB = win32.DCB() + win32.GetCommState(self.hComPort, ctypes.byref(comDCB)) + comDCB.BaudRate = self._baudrate + + if self._bytesize == FIVEBITS: + comDCB.ByteSize = 5 + elif self._bytesize == SIXBITS: + comDCB.ByteSize = 6 + elif self._bytesize == SEVENBITS: + comDCB.ByteSize = 7 + elif self._bytesize == EIGHTBITS: + comDCB.ByteSize = 8 + else: + raise ValueError("Unsupported number of data bits: %r" % self._bytesize) + + if self._parity == PARITY_NONE: + comDCB.Parity = win32.NOPARITY + comDCB.fParity = 0 # Disable Parity Check + elif self._parity == PARITY_EVEN: + comDCB.Parity = win32.EVENPARITY + comDCB.fParity = 1 # Enable Parity Check + elif self._parity == PARITY_ODD: + comDCB.Parity = win32.ODDPARITY + comDCB.fParity = 1 # Enable Parity Check + elif self._parity == PARITY_MARK: + comDCB.Parity = win32.MARKPARITY + comDCB.fParity = 1 # Enable Parity Check + elif self._parity == PARITY_SPACE: + comDCB.Parity = win32.SPACEPARITY + comDCB.fParity = 1 # Enable Parity Check + else: + raise ValueError("Unsupported parity mode: %r" % self._parity) + + if self._stopbits == STOPBITS_ONE: + comDCB.StopBits = win32.ONESTOPBIT + elif self._stopbits == STOPBITS_ONE_POINT_FIVE: + comDCB.StopBits = win32.ONE5STOPBITS + elif self._stopbits == STOPBITS_TWO: + comDCB.StopBits = win32.TWOSTOPBITS + else: + raise ValueError("Unsupported number of stop bits: %r" % self._stopbits) + + comDCB.fBinary = 1 # Enable Binary Transmission + # Char. w/ Parity-Err are replaced with 0xff (if fErrorChar is set to TRUE) + if self._rtscts: + comDCB.fRtsControl = win32.RTS_CONTROL_HANDSHAKE + elif self._rtsToggle: + comDCB.fRtsControl = win32.RTS_CONTROL_TOGGLE + else: + comDCB.fRtsControl = self._rtsState + if self._dsrdtr: + comDCB.fDtrControl = win32.DTR_CONTROL_HANDSHAKE + else: + comDCB.fDtrControl = self._dtrState + + if self._rtsToggle: + comDCB.fOutxCtsFlow = 0 + else: + comDCB.fOutxCtsFlow = self._rtscts + comDCB.fOutxDsrFlow = self._dsrdtr + comDCB.fOutX = self._xonxoff + comDCB.fInX = self._xonxoff + comDCB.fNull = 0 + comDCB.fErrorChar = 0 + comDCB.fAbortOnError = 0 + comDCB.XonChar = XON + comDCB.XoffChar = XOFF + + if not win32.SetCommState(self.hComPort, ctypes.byref(comDCB)): + raise ValueError("Cannot configure port, some setting was wrong. Original message: %r" % ctypes.WinError()) + + #~ def __del__(self): + #~ self.close() + + + def _close(self): + """internal close port helper""" + if self.hComPort: + # Restore original timeout values: + win32.SetCommTimeouts(self.hComPort, self._orgTimeouts) + # Close COM-Port: + win32.CloseHandle(self.hComPort) + if self._overlappedRead is not None: + win32.CloseHandle(self._overlappedRead.hEvent) + self._overlappedRead = None + if self._overlappedWrite is not None: + win32.CloseHandle(self._overlappedWrite.hEvent) + self._overlappedWrite = None + self.hComPort = None + + def close(self): + """Close port""" + if self._isOpen: + self._close() + self._isOpen = False + + def makeDeviceName(self, port): + return device(port) + + # - - - - - - - - - - - - - - - - - - - - - - - - + + def inWaiting(self): + """Return the number of characters currently in the input buffer.""" + flags = win32.DWORD() + comstat = win32.COMSTAT() + if not win32.ClearCommError(self.hComPort, ctypes.byref(flags), ctypes.byref(comstat)): + raise SerialException('call to ClearCommError failed') + return comstat.cbInQue + + def read(self, size=1): + """Read size bytes from the serial port. If a timeout is set it may + return less characters as requested. With no timeout it will block + until the requested number of bytes is read.""" + if not self.hComPort: raise portNotOpenError + if size > 0: + win32.ResetEvent(self._overlappedRead.hEvent) + flags = win32.DWORD() + comstat = win32.COMSTAT() + if not win32.ClearCommError(self.hComPort, ctypes.byref(flags), ctypes.byref(comstat)): + raise SerialException('call to ClearCommError failed') + if self.timeout == 0: + n = min(comstat.cbInQue, size) + if n > 0: + buf = ctypes.create_string_buffer(n) + rc = win32.DWORD() + err = win32.ReadFile(self.hComPort, buf, n, ctypes.byref(rc), ctypes.byref(self._overlappedRead)) + if not err and win32.GetLastError() != win32.ERROR_IO_PENDING: + raise SerialException("ReadFile failed (%r)" % ctypes.WinError()) + err = win32.WaitForSingleObject(self._overlappedRead.hEvent, win32.INFINITE) + read = buf.raw[:rc.value] + else: + read = bytes() + else: + buf = ctypes.create_string_buffer(size) + rc = win32.DWORD() + err = win32.ReadFile(self.hComPort, buf, size, ctypes.byref(rc), ctypes.byref(self._overlappedRead)) + if not err and win32.GetLastError() != win32.ERROR_IO_PENDING: + raise SerialException("ReadFile failed (%r)" % ctypes.WinError()) + err = win32.GetOverlappedResult(self.hComPort, ctypes.byref(self._overlappedRead), ctypes.byref(rc), True) + read = buf.raw[:rc.value] + else: + read = bytes() + return bytes(read) + + def write(self, data): + """Output the given string over the serial port.""" + if not self.hComPort: raise portNotOpenError + #~ if not isinstance(data, (bytes, bytearray)): + #~ raise TypeError('expected %s or bytearray, got %s' % (bytes, type(data))) + # convert data (needed in case of memoryview instance: Py 3.1 io lib), ctypes doesn't like memoryview + data = to_bytes(data) + if data: + #~ win32event.ResetEvent(self._overlappedWrite.hEvent) + n = win32.DWORD() + err = win32.WriteFile(self.hComPort, data, len(data), ctypes.byref(n), self._overlappedWrite) + if not err and win32.GetLastError() != win32.ERROR_IO_PENDING: + raise SerialException("WriteFile failed (%r)" % ctypes.WinError()) + if self._writeTimeout != 0: # if blocking (None) or w/ write timeout (>0) + # Wait for the write to complete. + #~ win32.WaitForSingleObject(self._overlappedWrite.hEvent, win32.INFINITE) + err = win32.GetOverlappedResult(self.hComPort, self._overlappedWrite, ctypes.byref(n), True) + if n.value != len(data): + raise writeTimeoutError + return n.value + else: + return 0 + + def flush(self): + """Flush of file like objects. In this case, wait until all data + is written.""" + while self.outWaiting(): + time.sleep(0.05) + # XXX could also use WaitCommEvent with mask EV_TXEMPTY, but it would + # require overlapped IO and its also only possible to set a single mask + # on the port--- + + def flushInput(self): + """Clear input buffer, discarding all that is in the buffer.""" + if not self.hComPort: raise portNotOpenError + win32.PurgeComm(self.hComPort, win32.PURGE_RXCLEAR | win32.PURGE_RXABORT) + + def flushOutput(self): + """Clear output buffer, aborting the current output and + discarding all that is in the buffer.""" + if not self.hComPort: raise portNotOpenError + win32.PurgeComm(self.hComPort, win32.PURGE_TXCLEAR | win32.PURGE_TXABORT) + + def sendBreak(self, duration=0.25): + """Send break condition. Timed, returns to idle state after given duration.""" + if not self.hComPort: raise portNotOpenError + import time + win32.SetCommBreak(self.hComPort) + time.sleep(duration) + win32.ClearCommBreak(self.hComPort) + + def setBreak(self, level=1): + """Set break: Controls TXD. When active, to transmitting is possible.""" + if not self.hComPort: raise portNotOpenError + if level: + win32.SetCommBreak(self.hComPort) + else: + win32.ClearCommBreak(self.hComPort) + + def setRTS(self, level=1): + """Set terminal status line: Request To Send""" + # remember level for reconfigure + if level: + self._rtsState = win32.RTS_CONTROL_ENABLE + else: + self._rtsState = win32.RTS_CONTROL_DISABLE + # also apply now if port is open + if self.hComPort: + if level: + win32.EscapeCommFunction(self.hComPort, win32.SETRTS) + else: + win32.EscapeCommFunction(self.hComPort, win32.CLRRTS) + + def setDTR(self, level=1): + """Set terminal status line: Data Terminal Ready""" + # remember level for reconfigure + if level: + self._dtrState = win32.DTR_CONTROL_ENABLE + else: + self._dtrState = win32.DTR_CONTROL_DISABLE + # also apply now if port is open + if self.hComPort: + if level: + win32.EscapeCommFunction(self.hComPort, win32.SETDTR) + else: + win32.EscapeCommFunction(self.hComPort, win32.CLRDTR) + + def _GetCommModemStatus(self): + stat = win32.DWORD() + win32.GetCommModemStatus(self.hComPort, ctypes.byref(stat)) + return stat.value + + def getCTS(self): + """Read terminal status line: Clear To Send""" + if not self.hComPort: raise portNotOpenError + return win32.MS_CTS_ON & self._GetCommModemStatus() != 0 + + def getDSR(self): + """Read terminal status line: Data Set Ready""" + if not self.hComPort: raise portNotOpenError + return win32.MS_DSR_ON & self._GetCommModemStatus() != 0 + + def getRI(self): + """Read terminal status line: Ring Indicator""" + if not self.hComPort: raise portNotOpenError + return win32.MS_RING_ON & self._GetCommModemStatus() != 0 + + def getCD(self): + """Read terminal status line: Carrier Detect""" + if not self.hComPort: raise portNotOpenError + return win32.MS_RLSD_ON & self._GetCommModemStatus() != 0 + + # - - platform specific - - - - + + def setBufferSize(self, rx_size=4096, tx_size=None): + """\ + Recommend a buffer size to the driver (device driver can ignore this + vlaue). Must be called before the port is opended. + """ + if tx_size is None: tx_size = rx_size + win32.SetupComm(self.hComPort, rx_size, tx_size) + + def setXON(self, level=True): + """\ + Manually control flow - when software flow control is enabled. + This will send XON (true) and XOFF (false) to the other device. + WARNING: this function is not portable to different platforms! + """ + if not self.hComPort: raise portNotOpenError + if level: + win32.EscapeCommFunction(self.hComPort, win32.SETXON) + else: + win32.EscapeCommFunction(self.hComPort, win32.SETXOFF) + + def outWaiting(self): + """return how many characters the in the outgoing buffer""" + flags = win32.DWORD() + comstat = win32.COMSTAT() + if not win32.ClearCommError(self.hComPort, ctypes.byref(flags), ctypes.byref(comstat)): + raise SerialException('call to ClearCommError failed') + return comstat.cbOutQue + + # functions useful for RS-485 adapters + def setRtsToggle(self, rtsToggle): + """Change RTS toggle control setting.""" + self._rtsToggle = rtsToggle + if self._isOpen: self._reconfigurePort() + + def getRtsToggle(self): + """Get the current RTS toggle control setting.""" + return self._rtsToggle + + rtsToggle = property(getRtsToggle, setRtsToggle, doc="RTS toggle control setting") + + +# assemble Serial class with the platform specific implementation and the base +# for file-like behavior. for Python 2.6 and newer, that provide the new I/O +# library, derive from io.RawIOBase +try: + import io +except ImportError: + # classic version with our own file-like emulation + class Serial(Win32Serial, FileLike): + pass +else: + # io library present + class Serial(Win32Serial, io.RawIOBase): + pass + + +# Nur Testfunktion!! +if __name__ == '__main__': + s = Serial(0) + sys.stdout.write("%s\n" % s) + + s = Serial() + sys.stdout.write("%s\n" % s) + + s.baudrate = 19200 + s.databits = 7 + s.close() + s.port = 0 + s.open() + sys.stdout.write("%s\n" % s) + diff --git a/serial/sermsdos.py b/serial/sermsdos.py new file mode 100644 index 0000000..09a0017 --- /dev/null +++ b/serial/sermsdos.py @@ -0,0 +1,200 @@ +# sermsdos.py +# +# History: +# +# 3rd September 2002 Dave Haynes +# 1. First defined +# +# Although this code should run under the latest versions of +# Python, on DOS-based platforms such as Windows 95 and 98, +# it has been specifically written to be compatible with +# PyDOS, available at: +# http://www.python.org/ftp/python/wpy/dos.html +# +# PyDOS is a stripped-down version of Python 1.5.2 for +# DOS machines. Therefore, in making changes to this file, +# please respect Python 1.5.2 syntax. In addition, please +# limit the width of this file to 60 characters. +# +# Note also that the modules in PyDOS contain fewer members +# than other versions, so we are restricted to using the +# following: +# +# In module os: +# ------------- +# environ, chdir, getcwd, getpid, umask, fdopen, close, +# dup, dup2, fstat, lseek, open, read, write, O_RDONLY, +# O_WRONLY, O_RDWR, O_APPEND, O_CREAT, O_EXCL, O_TRUNC, +# access, F_OK, R_OK, W_OK, X_OK, chmod, listdir, mkdir, +# remove, rename, renames, rmdir, stat, unlink, utime, +# execl, execle, execlp, execlpe, execvp, execvpe, _exit, +# system. +# +# In module os.path: +# ------------------ +# curdir, pardir, sep, altsep, pathsep, defpath, linesep. +# + +import os +import sys +import string +import serial.serialutil + +BAUD_RATES = { + 110: "11", + 150: "15", + 300: "30", + 600: "60", + 1200: "12", + 2400: "24", + 4800: "48", + 9600: "96", + 19200: "19"} + +(PARITY_NONE, PARITY_EVEN, PARITY_ODD, PARITY_MARK, +PARITY_SPACE) = (0, 1, 2, 3, 4) +(STOPBITS_ONE, STOPBITS_ONEANDAHALF, +STOPBITS_TWO) = (1, 1.5, 2) +FIVEBITS, SIXBITS, SEVENBITS, EIGHTBITS = (5, 6, 7, 8) +(RETURN_ERROR, RETURN_BUSY, RETURN_RETRY, RETURN_READY, +RETURN_NONE) = ('E', 'B', 'P', 'R', 'N') +portNotOpenError = ValueError('port not open') + +def device(portnum): + return 'COM%d' % (portnum+1) + +class Serial(serialutil.FileLike): + """ + port: number of device; numbering starts at + zero. if everything fails, the user can + specify a device string, note that this + isn't portable any more + baudrate: baud rate + bytesize: number of databits + parity: enable parity checking + stopbits: number of stopbits + timeout: set a timeout (None for waiting forever) + xonxoff: enable software flow control + rtscts: enable RTS/CTS flow control + retry: DOS retry mode + """ + def __init__(self, + port, + baudrate = 9600, + bytesize = EIGHTBITS, + parity = PARITY_NONE, + stopbits = STOPBITS_ONE, + timeout = None, + xonxoff = 0, + rtscts = 0, + retry = RETURN_RETRY + ): + + if type(port) == type(''): + # strings are taken directly + self.portstr = port + else: + # numbers are transformed to a string + self.portstr = device(port+1) + + self.baud = BAUD_RATES[baudrate] + self.bytesize = str(bytesize) + + if parity == PARITY_NONE: + self.parity = 'N' + elif parity == PARITY_EVEN: + self.parity = 'E' + elif parity == PARITY_ODD: + self.parity = 'O' + elif parity == PARITY_MARK: + self.parity = 'M' + elif parity == PARITY_SPACE: + self.parity = 'S' + + self.stop = str(stopbits) + self.retry = retry + self.filename = "sermsdos.tmp" + + self._config(self.portstr, self.baud, self.parity, + self.bytesize, self.stop, self.retry, self.filename) + + def __del__(self): + self.close() + + def close(self): + pass + + def _config(self, port, baud, parity, data, stop, retry, + filename): + comString = string.join(("MODE ", port, ":" + , " BAUD= ", baud, " PARITY= ", parity + , " DATA= ", data, " STOP= ", stop, " RETRY= ", + retry, " > ", filename ), '') + os.system(comString) + + def setBaudrate(self, baudrate): + self._config(self.portstr, BAUD_RATES[baudrate], + self.parity, self.bytesize, self.stop, self.retry, + self.filename) + + def inWaiting(self): + """returns the number of bytes waiting to be read""" + raise NotImplementedError + + def read(self, num = 1): + """Read num bytes from serial port""" + handle = os.open(self.portstr, + os.O_RDONLY | os.O_BINARY) + rv = os.read(handle, num) + os.close(handle) + return rv + + def write(self, s): + """Write string to serial port""" + handle = os.open(self.portstr, + os.O_WRONLY | os.O_BINARY) + rv = os.write(handle, s) + os.close(handle) + return rv + + def flushInput(self): + raise NotImplementedError + + def flushOutput(self): + raise NotImplementedError + + def sendBreak(self): + raise NotImplementedError + + def setRTS(self,level=1): + """Set terminal status line""" + raise NotImplementedError + + def setDTR(self,level=1): + """Set terminal status line""" + raise NotImplementedError + + def getCTS(self): + """Eead terminal status line""" + raise NotImplementedError + + def getDSR(self): + """Eead terminal status line""" + raise NotImplementedError + + def getRI(self): + """Eead terminal status line""" + raise NotImplementedError + + def getCD(self): + """Eead terminal status line""" + raise NotImplementedError + + def __repr__(self): + return string.join(( ": ", self.portstr + , self.baud, self.parity, self.bytesize, self.stop, + self.retry , self.filename), ' ') + +if __name__ == '__main__': + s = Serial(0) + sys.stdio.write('%s %s\n' % (__name__, s)) diff --git a/serial/tools/__init__.py b/serial/tools/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/serial/tools/list_ports.py b/serial/tools/list_ports.py new file mode 100644 index 0000000..d373a55 --- /dev/null +++ b/serial/tools/list_ports.py @@ -0,0 +1,103 @@ +#!/usr/bin/env python + +# portable serial port access with python +# this is a wrapper module for different platform implementations of the +# port enumeration feature +# +# (C) 2011-2013 Chris Liechti +# this is distributed under a free software license, see license.txt + +"""\ +This module will provide a function called comports that returns an +iterable (generator or list) that will enumerate available com ports. Note that +on some systems non-existent ports may be listed. + +Additionally a grep function is supplied that can be used to search for ports +based on their descriptions or hardware ID. +""" + +import sys, os, re + +# chose an implementation, depending on os +#~ if sys.platform == 'cli': +#~ else: +import os +# chose an implementation, depending on os +if os.name == 'nt': #sys.platform == 'win32': + from serial.tools.list_ports_windows import * +elif os.name == 'posix': + from serial.tools.list_ports_posix import * +#~ elif os.name == 'java': +else: + raise ImportError("Sorry: no implementation for your platform ('%s') available" % (os.name,)) + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +def grep(regexp): + """\ + Search for ports using a regular expression. Port name, description and + hardware ID are searched. The function returns an iterable that returns the + same tuples as comport() would do. + """ + r = re.compile(regexp, re.I) + for port, desc, hwid in comports(): + if r.search(port) or r.search(desc) or r.search(hwid): + yield port, desc, hwid + + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +def main(): + import optparse + + parser = optparse.OptionParser( + usage = "%prog [options] []", + description = "Miniterm - A simple terminal program for the serial port." + ) + + parser.add_option("--debug", + help="print debug messages and tracebacks (development mode)", + dest="debug", + default=False, + action='store_true') + + parser.add_option("-v", "--verbose", + help="show more messages (can be given multiple times)", + dest="verbose", + default=1, + action='count') + + parser.add_option("-q", "--quiet", + help="suppress all messages", + dest="verbose", + action='store_const', + const=0) + + (options, args) = parser.parse_args() + + + hits = 0 + # get iteraror w/ or w/o filter + if args: + if len(args) > 1: + parser.error('more than one regexp not supported') + print "Filtered list with regexp: %r" % (args[0],) + iterator = sorted(grep(args[0])) + else: + iterator = sorted(comports()) + # list them + for port, desc, hwid in iterator: + print("%-20s" % (port,)) + if options.verbose > 1: + print(" desc: %s" % (desc,)) + print(" hwid: %s" % (hwid,)) + hits += 1 + if options.verbose: + if hits: + print("%d ports found" % (hits,)) + else: + print("no ports found") + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +# test +if __name__ == '__main__': + main() diff --git a/serial/tools/list_ports_linux.py b/serial/tools/list_ports_linux.py new file mode 100644 index 0000000..eb315d4 --- /dev/null +++ b/serial/tools/list_ports_linux.py @@ -0,0 +1,143 @@ +#!/usr/bin/env python + +# portable serial port access with python +# +# This is a module that gathers a list of serial ports including details on +# GNU/Linux systems +# +# (C) 2011-2013 Chris Liechti +# this is distributed under a free software license, see license.txt + +import glob +import sys +import os +import re + +try: + import subprocess +except ImportError: + def popen(argv): + try: + si, so = os.popen4(' '.join(argv)) + return so.read().strip() + except: + raise IOError('lsusb failed') +else: + def popen(argv): + try: + return subprocess.check_output(argv, stderr=subprocess.STDOUT).strip() + except: + raise IOError('lsusb failed') + + +# The comports function is expected to return an iterable that yields tuples of +# 3 strings: port name, human readable description and a hardware ID. +# +# as currently no method is known to get the second two strings easily, they +# are currently just identical to the port name. + +# try to detect the OS so that a device can be selected... +plat = sys.platform.lower() + +def read_line(filename): + """help function to read a single line from a file. returns none""" + try: + f = open(filename) + line = f.readline().strip() + f.close() + return line + except IOError: + return None + +def re_group(regexp, text): + """search for regexp in text, return 1st group on match""" + if sys.version < '3': + m = re.search(regexp, text) + else: + # text is bytes-like + m = re.search(regexp, text.decode('ascii', 'replace')) + if m: return m.group(1) + + +# try to extract descriptions from sysfs. this was done by experimenting, +# no guarantee that it works for all devices or in the future... + +def usb_sysfs_hw_string(sysfs_path): + """given a path to a usb device in sysfs, return a string describing it""" + bus, dev = os.path.basename(os.path.realpath(sysfs_path)).split('-') + snr = read_line(sysfs_path+'/serial') + if snr: + snr_txt = ' SNR=%s' % (snr,) + else: + snr_txt = '' + return 'USB VID:PID=%s:%s%s' % ( + read_line(sysfs_path+'/idVendor'), + read_line(sysfs_path+'/idProduct'), + snr_txt + ) + +def usb_lsusb_string(sysfs_path): + base = os.path.basename(os.path.realpath(sysfs_path)) + bus = base.split('-')[0] + try: + dev = int(read_line(os.path.join(sysfs_path, 'devnum'))) + desc = popen(['lsusb', '-v', '-s', '%s:%s' % (bus, dev)]) + # descriptions from device + iManufacturer = re_group('iManufacturer\s+\w+ (.+)', desc) + iProduct = re_group('iProduct\s+\w+ (.+)', desc) + iSerial = re_group('iSerial\s+\w+ (.+)', desc) or '' + # descriptions from kernel + idVendor = re_group('idVendor\s+0x\w+ (.+)', desc) + idProduct = re_group('idProduct\s+0x\w+ (.+)', desc) + # create descriptions. prefer text from device, fall back to the others + return '%s %s %s' % (iManufacturer or idVendor, iProduct or idProduct, iSerial) + except IOError: + return base + +def describe(device): + """\ + Get a human readable description. + For USB-Serial devices try to run lsusb to get a human readable description. + For USB-CDC devices read the description from sysfs. + """ + base = os.path.basename(device) + # USB-Serial devices + sys_dev_path = '/sys/class/tty/%s/device/driver/%s' % (base, base) + if os.path.exists(sys_dev_path): + sys_usb = os.path.dirname(os.path.dirname(os.path.realpath(sys_dev_path))) + return usb_lsusb_string(sys_usb) + # USB-CDC devices + sys_dev_path = '/sys/class/tty/%s/device/interface' % (base,) + if os.path.exists(sys_dev_path): + return read_line(sys_dev_path) + return base + +def hwinfo(device): + """Try to get a HW identification using sysfs""" + base = os.path.basename(device) + if os.path.exists('/sys/class/tty/%s/device' % (base,)): + # PCI based devices + sys_id_path = '/sys/class/tty/%s/device/id' % (base,) + if os.path.exists(sys_id_path): + return read_line(sys_id_path) + # USB-Serial devices + sys_dev_path = '/sys/class/tty/%s/device/driver/%s' % (base, base) + if os.path.exists(sys_dev_path): + sys_usb = os.path.dirname(os.path.dirname(os.path.realpath(sys_dev_path))) + return usb_sysfs_hw_string(sys_usb) + # USB-CDC devices + if base.startswith('ttyACM'): + sys_dev_path = '/sys/class/tty/%s/device' % (base,) + if os.path.exists(sys_dev_path): + return usb_sysfs_hw_string(sys_dev_path + '/..') + return 'n/a' # XXX directly remove these from the list? + +def comports(): + devices = glob.glob('/dev/ttyS*') + glob.glob('/dev/ttyUSB*') + glob.glob('/dev/ttyACM*') + return [(d, describe(d), hwinfo(d)) for d in devices] + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +# test +if __name__ == '__main__': + for port, desc, hwid in sorted(comports()): + print "%s: %s [%s]" % (port, desc, hwid) diff --git a/serial/tools/list_ports_osx.py b/serial/tools/list_ports_osx.py new file mode 100644 index 0000000..c9ed615 --- /dev/null +++ b/serial/tools/list_ports_osx.py @@ -0,0 +1,208 @@ +#!/usr/bin/env python + +# portable serial port access with python +# +# This is a module that gathers a list of serial ports including details on OSX +# +# code originally from https://github.com/makerbot/pyserial/tree/master/serial/tools +# with contributions from cibomahto, dgs3, FarMcKon, tedbrandston +# and modifications by cliechti +# +# this is distributed under a free software license, see license.txt + + + +# List all of the callout devices in OS/X by querying IOKit. + +# See the following for a reference of how to do this: +# http://developer.apple.com/library/mac/#documentation/DeviceDrivers/Conceptual/WorkingWSerial/WWSerial_SerialDevs/SerialDevices.html#//apple_ref/doc/uid/TP30000384-CIHGEAFD + +# More help from darwin_hid.py + +# Also see the 'IORegistryExplorer' for an idea of what we are actually searching + +import ctypes +from ctypes import util +import re + +iokit = ctypes.cdll.LoadLibrary(ctypes.util.find_library('IOKit')) +cf = ctypes.cdll.LoadLibrary(ctypes.util.find_library('CoreFoundation')) + +kIOMasterPortDefault = ctypes.c_void_p.in_dll(iokit, "kIOMasterPortDefault") +kCFAllocatorDefault = ctypes.c_void_p.in_dll(cf, "kCFAllocatorDefault") + +kCFStringEncodingMacRoman = 0 + +iokit.IOServiceMatching.restype = ctypes.c_void_p + +iokit.IOServiceGetMatchingServices.argtypes = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p] +iokit.IOServiceGetMatchingServices.restype = ctypes.c_void_p + +iokit.IORegistryEntryGetParentEntry.argtypes = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p] + +iokit.IORegistryEntryCreateCFProperty.argtypes = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p, ctypes.c_uint32] +iokit.IORegistryEntryCreateCFProperty.restype = ctypes.c_void_p + +iokit.IORegistryEntryGetPath.argtypes = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p] +iokit.IORegistryEntryGetPath.restype = ctypes.c_void_p + +iokit.IORegistryEntryGetName.argtypes = [ctypes.c_void_p, ctypes.c_void_p] +iokit.IORegistryEntryGetName.restype = ctypes.c_void_p + +iokit.IOObjectGetClass.argtypes = [ctypes.c_void_p, ctypes.c_void_p] +iokit.IOObjectGetClass.restype = ctypes.c_void_p + +iokit.IOObjectRelease.argtypes = [ctypes.c_void_p] + + +cf.CFStringCreateWithCString.argtypes = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_int32] +cf.CFStringCreateWithCString.restype = ctypes.c_void_p + +cf.CFStringGetCStringPtr.argtypes = [ctypes.c_void_p, ctypes.c_uint32] +cf.CFStringGetCStringPtr.restype = ctypes.c_char_p + +cf.CFNumberGetValue.argtypes = [ctypes.c_void_p, ctypes.c_uint32, ctypes.c_void_p] +cf.CFNumberGetValue.restype = ctypes.c_void_p + +def get_string_property(device_t, property): + """ Search the given device for the specified string property + + @param device_t Device to search + @param property String to search for. + @return Python string containing the value, or None if not found. + """ + key = cf.CFStringCreateWithCString( + kCFAllocatorDefault, + property.encode("mac_roman"), + kCFStringEncodingMacRoman + ) + + CFContainer = iokit.IORegistryEntryCreateCFProperty( + device_t, + key, + kCFAllocatorDefault, + 0 + ); + + output = None + + if CFContainer: + output = cf.CFStringGetCStringPtr(CFContainer, 0) + + return output + +def get_int_property(device_t, property): + """ Search the given device for the specified string property + + @param device_t Device to search + @param property String to search for. + @return Python string containing the value, or None if not found. + """ + key = cf.CFStringCreateWithCString( + kCFAllocatorDefault, + property.encode("mac_roman"), + kCFStringEncodingMacRoman + ) + + CFContainer = iokit.IORegistryEntryCreateCFProperty( + device_t, + key, + kCFAllocatorDefault, + 0 + ); + + number = ctypes.c_uint16() + + if CFContainer: + output = cf.CFNumberGetValue(CFContainer, 2, ctypes.byref(number)) + + return number.value + +def IORegistryEntryGetName(device): + pathname = ctypes.create_string_buffer(100) # TODO: Is this ok? + iokit.IOObjectGetClass( + device, + ctypes.byref(pathname) + ) + + return pathname.value + +def GetParentDeviceByType(device, parent_type): + """ Find the first parent of a device that implements the parent_type + @param IOService Service to inspect + @return Pointer to the parent type, or None if it was not found. + """ + # First, try to walk up the IOService tree to find a parent of this device that is a IOUSBDevice. + while IORegistryEntryGetName(device) != parent_type: + parent = ctypes.c_void_p() + response = iokit.IORegistryEntryGetParentEntry( + device, + "IOService".encode("mac_roman"), + ctypes.byref(parent) + ) + + # If we weren't able to find a parent for the device, we're done. + if response != 0: + return None + + device = parent + + return device + +def GetIOServicesByType(service_type): + """ + """ + serial_port_iterator = ctypes.c_void_p() + + response = iokit.IOServiceGetMatchingServices( + kIOMasterPortDefault, + iokit.IOServiceMatching(service_type), + ctypes.byref(serial_port_iterator) + ) + + services = [] + while iokit.IOIteratorIsValid(serial_port_iterator): + service = iokit.IOIteratorNext(serial_port_iterator) + if not service: + break + services.append(service) + + iokit.IOObjectRelease(serial_port_iterator) + + return services + +def comports(): + # Scan for all iokit serial ports + services = GetIOServicesByType('IOSerialBSDClient') + + ports = [] + for service in services: + info = [] + + # First, add the callout device file. + info.append(get_string_property(service, "IOCalloutDevice")) + + # If the serial port is implemented by a + usb_device = GetParentDeviceByType(service, "IOUSBDevice") + if usb_device != None: + info.append(get_string_property(usb_device, "USB Product Name")) + + info.append( + "USB VID:PID=%x:%x SNR=%s"%( + get_int_property(usb_device, "idVendor"), + get_int_property(usb_device, "idProduct"), + get_string_property(usb_device, "USB Serial Number")) + ) + else: + info.append('n/a') + info.append('n/a') + + ports.append(info) + + return ports + +# test +if __name__ == '__main__': + for port, desc, hwid in sorted(comports()): + print "%s: %s [%s]" % (port, desc, hwid) + diff --git a/serial/tools/list_ports_posix.py b/serial/tools/list_ports_posix.py new file mode 100644 index 0000000..09f115f --- /dev/null +++ b/serial/tools/list_ports_posix.py @@ -0,0 +1,101 @@ +#!/usr/bin/env python + +# portable serial port access with python + +# This is a module that gathers a list of serial ports on POSIXy systems. +# For some specific implementations, see also list_ports_linux, list_ports_osx +# +# this is a wrapper module for different platform implementations of the +# port enumeration feature +# +# (C) 2011-2013 Chris Liechti +# this is distributed under a free software license, see license.txt + +"""\ +The ``comports`` function is expected to return an iterable that yields tuples +of 3 strings: port name, human readable description and a hardware ID. + +As currently no method is known to get the second two strings easily, they are +currently just identical to the port name. +""" + +import glob +import sys +import os + +# try to detect the OS so that a device can be selected... +plat = sys.platform.lower() + +if plat[:5] == 'linux': # Linux (confirmed) + from serial.tools.list_ports_linux import comports + +elif plat == 'cygwin': # cygwin/win32 + def comports(): + devices = glob.glob('/dev/com*') + return [(d, d, d) for d in devices] + +elif plat[:7] == 'openbsd': # OpenBSD + def comports(): + devices = glob.glob('/dev/cua*') + return [(d, d, d) for d in devices] + +elif plat[:3] == 'bsd' or \ + plat[:7] == 'freebsd': + + def comports(): + devices = glob.glob('/dev/cuad*') + return [(d, d, d) for d in devices] + +elif plat[:6] == 'darwin': # OS X (confirmed) + from serial.tools.list_ports_osx import comports + +elif plat[:6] == 'netbsd': # NetBSD + def comports(): + """scan for available ports. return a list of device names.""" + devices = glob.glob('/dev/dty*') + return [(d, d, d) for d in devices] + +elif plat[:4] == 'irix': # IRIX + def comports(): + """scan for available ports. return a list of device names.""" + devices = glob.glob('/dev/ttyf*') + return [(d, d, d) for d in devices] + +elif plat[:2] == 'hp': # HP-UX (not tested) + def comports(): + """scan for available ports. return a list of device names.""" + devices = glob.glob('/dev/tty*p0') + return [(d, d, d) for d in devices] + +elif plat[:5] == 'sunos': # Solaris/SunOS + def comports(): + """scan for available ports. return a list of device names.""" + devices = glob.glob('/dev/tty*c') + return [(d, d, d) for d in devices] + +elif plat[:3] == 'aix': # AIX + def comports(): + """scan for available ports. return a list of device names.""" + devices = glob.glob('/dev/tty*') + return [(d, d, d) for d in devices] + +else: + # platform detection has failed... + sys.stderr.write("""\ +don't know how to enumerate ttys on this system. +! I you know how the serial ports are named send this information to +! the author of this module: + +sys.platform = %r +os.name = %r +pySerial version = %s + +also add the naming scheme of the serial ports and with a bit luck you can get +this module running... +""" % (sys.platform, os.name, serial.VERSION)) + raise ImportError("Sorry: no implementation for your platform ('%s') available" % (os.name,)) + +# test +if __name__ == '__main__': + for port, desc, hwid in sorted(comports()): + print "%s: %s [%s]" % (port, desc, hwid) diff --git a/serial/tools/list_ports_windows.py b/serial/tools/list_ports_windows.py new file mode 100644 index 0000000..ca597ca --- /dev/null +++ b/serial/tools/list_ports_windows.py @@ -0,0 +1,240 @@ +import ctypes +import re + +def ValidHandle(value, func, arguments): + if value == 0: + raise ctypes.WinError() + return value + +import serial +from serial.win32 import ULONG_PTR, is_64bit +from ctypes.wintypes import HANDLE +from ctypes.wintypes import BOOL +from ctypes.wintypes import HWND +from ctypes.wintypes import DWORD +from ctypes.wintypes import WORD +from ctypes.wintypes import LONG +from ctypes.wintypes import ULONG +from ctypes.wintypes import LPCSTR +from ctypes.wintypes import HKEY +from ctypes.wintypes import BYTE + +NULL = 0 +HDEVINFO = ctypes.c_void_p +PCTSTR = ctypes.c_char_p +PTSTR = ctypes.c_void_p +CHAR = ctypes.c_char +LPDWORD = PDWORD = ctypes.POINTER(DWORD) +#~ LPBYTE = PBYTE = ctypes.POINTER(BYTE) +LPBYTE = PBYTE = ctypes.c_void_p # XXX avoids error about types + +ACCESS_MASK = DWORD +REGSAM = ACCESS_MASK + + +def byte_buffer(length): + """Get a buffer for a string""" + return (BYTE*length)() + +def string(buffer): + s = [] + for c in buffer: + if c == 0: break + s.append(chr(c & 0xff)) # "& 0xff": hack to convert signed to unsigned + return ''.join(s) + + +class GUID(ctypes.Structure): + _fields_ = [ + ('Data1', DWORD), + ('Data2', WORD), + ('Data3', WORD), + ('Data4', BYTE*8), + ] + def __str__(self): + return "{%08x-%04x-%04x-%s-%s}" % ( + self.Data1, + self.Data2, + self.Data3, + ''.join(["%02x" % d for d in self.Data4[:2]]), + ''.join(["%02x" % d for d in self.Data4[2:]]), + ) + +class SP_DEVINFO_DATA(ctypes.Structure): + _fields_ = [ + ('cbSize', DWORD), + ('ClassGuid', GUID), + ('DevInst', DWORD), + ('Reserved', ULONG_PTR), + ] + def __str__(self): + return "ClassGuid:%s DevInst:%s" % (self.ClassGuid, self.DevInst) +PSP_DEVINFO_DATA = ctypes.POINTER(SP_DEVINFO_DATA) + +PSP_DEVICE_INTERFACE_DETAIL_DATA = ctypes.c_void_p + +setupapi = ctypes.windll.LoadLibrary("setupapi") +SetupDiDestroyDeviceInfoList = setupapi.SetupDiDestroyDeviceInfoList +SetupDiDestroyDeviceInfoList.argtypes = [HDEVINFO] +SetupDiDestroyDeviceInfoList.restype = BOOL + +SetupDiClassGuidsFromName = setupapi.SetupDiClassGuidsFromNameA +SetupDiClassGuidsFromName.argtypes = [PCTSTR, ctypes.POINTER(GUID), DWORD, PDWORD] +SetupDiClassGuidsFromName.restype = BOOL + +SetupDiEnumDeviceInfo = setupapi.SetupDiEnumDeviceInfo +SetupDiEnumDeviceInfo.argtypes = [HDEVINFO, DWORD, PSP_DEVINFO_DATA] +SetupDiEnumDeviceInfo.restype = BOOL + +SetupDiGetClassDevs = setupapi.SetupDiGetClassDevsA +SetupDiGetClassDevs.argtypes = [ctypes.POINTER(GUID), PCTSTR, HWND, DWORD] +SetupDiGetClassDevs.restype = HDEVINFO +SetupDiGetClassDevs.errcheck = ValidHandle + +SetupDiGetDeviceRegistryProperty = setupapi.SetupDiGetDeviceRegistryPropertyA +SetupDiGetDeviceRegistryProperty.argtypes = [HDEVINFO, PSP_DEVINFO_DATA, DWORD, PDWORD, PBYTE, DWORD, PDWORD] +SetupDiGetDeviceRegistryProperty.restype = BOOL + +SetupDiGetDeviceInstanceId = setupapi.SetupDiGetDeviceInstanceIdA +SetupDiGetDeviceInstanceId.argtypes = [HDEVINFO, PSP_DEVINFO_DATA, PTSTR, DWORD, PDWORD] +SetupDiGetDeviceInstanceId.restype = BOOL + +SetupDiOpenDevRegKey = setupapi.SetupDiOpenDevRegKey +SetupDiOpenDevRegKey.argtypes = [HDEVINFO, PSP_DEVINFO_DATA, DWORD, DWORD, DWORD, REGSAM] +SetupDiOpenDevRegKey.restype = HKEY + +advapi32 = ctypes.windll.LoadLibrary("Advapi32") +RegCloseKey = advapi32.RegCloseKey +RegCloseKey.argtypes = [HKEY] +RegCloseKey.restype = LONG + +RegQueryValueEx = advapi32.RegQueryValueExA +RegQueryValueEx.argtypes = [HKEY, LPCSTR, LPDWORD, LPDWORD, LPBYTE, LPDWORD] +RegQueryValueEx.restype = LONG + + +DIGCF_PRESENT = 2 +DIGCF_DEVICEINTERFACE = 16 +INVALID_HANDLE_VALUE = 0 +ERROR_INSUFFICIENT_BUFFER = 122 +SPDRP_HARDWAREID = 1 +SPDRP_FRIENDLYNAME = 12 +DICS_FLAG_GLOBAL = 1 +DIREG_DEV = 0x00000001 +KEY_READ = 0x20019 + +# workaround for compatibility between Python 2.x and 3.x +Ports = serial.to_bytes([80, 111, 114, 116, 115]) # "Ports" +PortName = serial.to_bytes([80, 111, 114, 116, 78, 97, 109, 101]) # "PortName" + +def comports(): + GUIDs = (GUID*8)() # so far only seen one used, so hope 8 are enough... + guids_size = DWORD() + if not SetupDiClassGuidsFromName( + Ports, + GUIDs, + ctypes.sizeof(GUIDs), + ctypes.byref(guids_size)): + raise ctypes.WinError() + + # repeat for all possible GUIDs + for index in range(guids_size.value): + g_hdi = SetupDiGetClassDevs( + ctypes.byref(GUIDs[index]), + None, + NULL, + DIGCF_PRESENT) # was DIGCF_PRESENT|DIGCF_DEVICEINTERFACE which misses CDC ports + + devinfo = SP_DEVINFO_DATA() + devinfo.cbSize = ctypes.sizeof(devinfo) + index = 0 + while SetupDiEnumDeviceInfo(g_hdi, index, ctypes.byref(devinfo)): + index += 1 + + # get the real com port name + hkey = SetupDiOpenDevRegKey( + g_hdi, + ctypes.byref(devinfo), + DICS_FLAG_GLOBAL, + 0, + DIREG_DEV, # DIREG_DRV for SW info + KEY_READ) + port_name_buffer = byte_buffer(250) + port_name_length = ULONG(ctypes.sizeof(port_name_buffer)) + RegQueryValueEx( + hkey, + PortName, + None, + None, + ctypes.byref(port_name_buffer), + ctypes.byref(port_name_length)) + RegCloseKey(hkey) + + # unfortunately does this method also include parallel ports. + # we could check for names starting with COM or just exclude LPT + # and hope that other "unknown" names are serial ports... + if string(port_name_buffer).startswith('LPT'): + continue + + # hardware ID + szHardwareID = byte_buffer(250) + # try to get ID that includes serial number + if not SetupDiGetDeviceInstanceId( + g_hdi, + ctypes.byref(devinfo), + ctypes.byref(szHardwareID), + ctypes.sizeof(szHardwareID) - 1, + None): + # fall back to more generic hardware ID if that would fail + if not SetupDiGetDeviceRegistryProperty( + g_hdi, + ctypes.byref(devinfo), + SPDRP_HARDWAREID, + None, + ctypes.byref(szHardwareID), + ctypes.sizeof(szHardwareID) - 1, + None): + # Ignore ERROR_INSUFFICIENT_BUFFER + if ctypes.GetLastError() != ERROR_INSUFFICIENT_BUFFER: + raise ctypes.WinError() + # stringify + szHardwareID_str = string(szHardwareID) + + # in case of USB, make a more readable string, similar to that form + # that we also generate on other platforms + if szHardwareID_str.startswith('USB'): + m = re.search(r'VID_([0-9a-f]{4})&PID_([0-9a-f]{4})(\\(\w+))?', szHardwareID_str, re.I) + if m: + if m.group(4): + szHardwareID_str = 'USB VID:PID=%s:%s SNR=%s' % (m.group(1), m.group(2), m.group(4)) + else: + szHardwareID_str = 'USB VID:PID=%s:%s' % (m.group(1), m.group(2)) + + # friendly name + szFriendlyName = byte_buffer(250) + if not SetupDiGetDeviceRegistryProperty( + g_hdi, + ctypes.byref(devinfo), + SPDRP_FRIENDLYNAME, + #~ SPDRP_DEVICEDESC, + None, + ctypes.byref(szFriendlyName), + ctypes.sizeof(szFriendlyName) - 1, + None): + # Ignore ERROR_INSUFFICIENT_BUFFER + #~ if ctypes.GetLastError() != ERROR_INSUFFICIENT_BUFFER: + #~ raise IOError("failed to get details for %s (%s)" % (devinfo, szHardwareID.value)) + # ignore errors and still include the port in the list, friendly name will be same as port name + yield string(port_name_buffer), 'n/a', szHardwareID_str + else: + yield string(port_name_buffer), string(szFriendlyName), szHardwareID_str + + SetupDiDestroyDeviceInfoList(g_hdi) + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +# test +if __name__ == '__main__': + import serial + + for port, desc, hwid in sorted(comports()): + print "%s: %s [%s]" % (port, desc, hwid) diff --git a/serial/tools/miniterm.py b/serial/tools/miniterm.py new file mode 100644 index 0000000..274c7fb --- /dev/null +++ b/serial/tools/miniterm.py @@ -0,0 +1,694 @@ +#!/usr/bin/env python + +# Very simple serial terminal +# (C)2002-2011 Chris Liechti + +# Input characters are sent directly (only LF -> CR/LF/CRLF translation is +# done), received characters are displayed as is (or escaped trough pythons +# repr, useful for debug purposes) + + +import sys, os, serial, threading +try: + from serial.tools.list_ports import comports +except ImportError: + comports = None + +EXITCHARCTER = serial.to_bytes([0x1d]) # GS/CTRL+] +MENUCHARACTER = serial.to_bytes([0x14]) # Menu: CTRL+T + +DEFAULT_PORT = None +DEFAULT_BAUDRATE = 9600 +DEFAULT_RTS = None +DEFAULT_DTR = None + + +def key_description(character): + """generate a readable description for a key""" + ascii_code = ord(character) + if ascii_code < 32: + return 'Ctrl+%c' % (ord('@') + ascii_code) + else: + return repr(character) + + +# help text, starts with blank line! it's a function so that the current values +# for the shortcut keys is used and not the value at program start +def get_help_text(): + return """ +--- pySerial (%(version)s) - miniterm - help +--- +--- %(exit)-8s Exit program +--- %(menu)-8s Menu escape key, followed by: +--- Menu keys: +--- %(itself)-7s Send the menu character itself to remote +--- %(exchar)-7s Send the exit character itself to remote +--- %(info)-7s Show info +--- %(upload)-7s Upload file (prompt will be shown) +--- Toggles: +--- %(rts)-7s RTS %(echo)-7s local echo +--- %(dtr)-7s DTR %(break)-7s BREAK +--- %(lfm)-7s line feed %(repr)-7s Cycle repr mode +--- +--- Port settings (%(menu)s followed by the following): +--- p change port +--- 7 8 set data bits +--- n e o s m change parity (None, Even, Odd, Space, Mark) +--- 1 2 3 set stop bits (1, 2, 1.5) +--- b change baud rate +--- x X disable/enable software flow control +--- r R disable/enable hardware flow control +""" % { + 'version': getattr(serial, 'VERSION', 'unknown version'), + 'exit': key_description(EXITCHARCTER), + 'menu': key_description(MENUCHARACTER), + 'rts': key_description('\x12'), + 'repr': key_description('\x01'), + 'dtr': key_description('\x04'), + 'lfm': key_description('\x0c'), + 'break': key_description('\x02'), + 'echo': key_description('\x05'), + 'info': key_description('\x09'), + 'upload': key_description('\x15'), + 'itself': key_description(MENUCHARACTER), + 'exchar': key_description(EXITCHARCTER), +} + +if sys.version_info >= (3, 0): + def character(b): + return b.decode('latin1') +else: + def character(b): + return b + +LF = serial.to_bytes([10]) +CR = serial.to_bytes([13]) +CRLF = serial.to_bytes([13, 10]) + +X00 = serial.to_bytes([0]) +X0E = serial.to_bytes([0x0e]) + +# first choose a platform dependant way to read single characters from the console +global console + +if os.name == 'nt': + import msvcrt + class Console(object): + def __init__(self): + pass + + def setup(self): + pass # Do nothing for 'nt' + + def cleanup(self): + pass # Do nothing for 'nt' + + def getkey(self): + while True: + z = msvcrt.getch() + if z == X00 or z == X0E: # functions keys, ignore + msvcrt.getch() + else: + if z == CR: + return LF + return z + + console = Console() + +elif os.name == 'posix': + import termios, sys, os + class Console(object): + def __init__(self): + self.fd = sys.stdin.fileno() + self.old = None + + def setup(self): + self.old = termios.tcgetattr(self.fd) + new = termios.tcgetattr(self.fd) + new[3] = new[3] & ~termios.ICANON & ~termios.ECHO & ~termios.ISIG + new[6][termios.VMIN] = 1 + new[6][termios.VTIME] = 0 + termios.tcsetattr(self.fd, termios.TCSANOW, new) + + def getkey(self): + c = os.read(self.fd, 1) + return c + + def cleanup(self): + if self.old is not None: + termios.tcsetattr(self.fd, termios.TCSAFLUSH, self.old) + + console = Console() + + def cleanup_console(): + console.cleanup() + + sys.exitfunc = cleanup_console # terminal modes have to be restored on exit... + +else: + raise NotImplementedError("Sorry no implementation for your platform (%s) available." % sys.platform) + + +def dump_port_list(): + if comports: + sys.stderr.write('\n--- Available ports:\n') + for port, desc, hwid in sorted(comports()): + #~ sys.stderr.write('--- %-20s %s [%s]\n' % (port, desc, hwid)) + sys.stderr.write('--- %-20s %s\n' % (port, desc)) + + +CONVERT_CRLF = 2 +CONVERT_CR = 1 +CONVERT_LF = 0 +NEWLINE_CONVERISON_MAP = (LF, CR, CRLF) +LF_MODES = ('LF', 'CR', 'CR/LF') + +REPR_MODES = ('raw', 'some control', 'all control', 'hex') + +class Miniterm(object): + def __init__(self, port, baudrate, parity, rtscts, xonxoff, echo=False, convert_outgoing=CONVERT_CRLF, repr_mode=0): + try: + self.serial = serial.serial_for_url(port, baudrate, parity=parity, rtscts=rtscts, xonxoff=xonxoff, timeout=1) + except AttributeError: + # happens when the installed pyserial is older than 2.5. use the + # Serial class directly then. + self.serial = serial.Serial(port, baudrate, parity=parity, rtscts=rtscts, xonxoff=xonxoff, timeout=1) + self.echo = echo + self.repr_mode = repr_mode + self.convert_outgoing = convert_outgoing + self.newline = NEWLINE_CONVERISON_MAP[self.convert_outgoing] + self.dtr_state = True + self.rts_state = True + self.break_state = False + + def _start_reader(self): + """Start reader thread""" + self._reader_alive = True + # start serial->console thread + self.receiver_thread = threading.Thread(target=self.reader) + self.receiver_thread.setDaemon(True) + self.receiver_thread.start() + + def _stop_reader(self): + """Stop reader thread only, wait for clean exit of thread""" + self._reader_alive = False + self.receiver_thread.join() + + + def start(self): + self.alive = True + self._start_reader() + # enter console->serial loop + self.transmitter_thread = threading.Thread(target=self.writer) + self.transmitter_thread.setDaemon(True) + self.transmitter_thread.start() + + def stop(self): + self.alive = False + + def join(self, transmit_only=False): + self.transmitter_thread.join() + if not transmit_only: + self.receiver_thread.join() + + def dump_port_settings(self): + sys.stderr.write("\n--- Settings: %s %s,%s,%s,%s\n" % ( + self.serial.portstr, + self.serial.baudrate, + self.serial.bytesize, + self.serial.parity, + self.serial.stopbits)) + sys.stderr.write('--- RTS: %-8s DTR: %-8s BREAK: %-8s\n' % ( + (self.rts_state and 'active' or 'inactive'), + (self.dtr_state and 'active' or 'inactive'), + (self.break_state and 'active' or 'inactive'))) + try: + sys.stderr.write('--- CTS: %-8s DSR: %-8s RI: %-8s CD: %-8s\n' % ( + (self.serial.getCTS() and 'active' or 'inactive'), + (self.serial.getDSR() and 'active' or 'inactive'), + (self.serial.getRI() and 'active' or 'inactive'), + (self.serial.getCD() and 'active' or 'inactive'))) + except serial.SerialException: + # on RFC 2217 ports it can happen to no modem state notification was + # yet received. ignore this error. + pass + sys.stderr.write('--- software flow control: %s\n' % (self.serial.xonxoff and 'active' or 'inactive')) + sys.stderr.write('--- hardware flow control: %s\n' % (self.serial.rtscts and 'active' or 'inactive')) + sys.stderr.write('--- data escaping: %s linefeed: %s\n' % ( + REPR_MODES[self.repr_mode], + LF_MODES[self.convert_outgoing])) + + def reader(self): + """loop and copy serial->console""" + try: + while self.alive and self._reader_alive: + data = character(self.serial.read(1)) + + if self.repr_mode == 0: + # direct output, just have to care about newline setting + if data == '\r' and self.convert_outgoing == CONVERT_CR: + sys.stdout.write('\n') + else: + sys.stdout.write(data) + elif self.repr_mode == 1: + # escape non-printable, let pass newlines + if self.convert_outgoing == CONVERT_CRLF and data in '\r\n': + if data == '\n': + sys.stdout.write('\n') + elif data == '\r': + pass + elif data == '\n' and self.convert_outgoing == CONVERT_LF: + sys.stdout.write('\n') + elif data == '\r' and self.convert_outgoing == CONVERT_CR: + sys.stdout.write('\n') + else: + sys.stdout.write(repr(data)[1:-1]) + elif self.repr_mode == 2: + # escape all non-printable, including newline + sys.stdout.write(repr(data)[1:-1]) + elif self.repr_mode == 3: + # escape everything (hexdump) + for c in data: + sys.stdout.write("%s " % c.encode('hex')) + sys.stdout.flush() + except serial.SerialException, e: + self.alive = False + # would be nice if the console reader could be interruptted at this + # point... + raise + + + def writer(self): + """\ + Loop and copy console->serial until EXITCHARCTER character is + found. When MENUCHARACTER is found, interpret the next key + locally. + """ + menu_active = False + try: + while self.alive: + try: + b = console.getkey() + except KeyboardInterrupt: + b = serial.to_bytes([3]) + c = character(b) + if menu_active: + if c == MENUCHARACTER or c == EXITCHARCTER: # Menu character again/exit char -> send itself + self.serial.write(b) # send character + if self.echo: + sys.stdout.write(c) + elif c == '\x15': # CTRL+U -> upload file + sys.stderr.write('\n--- File to upload: ') + sys.stderr.flush() + console.cleanup() + filename = sys.stdin.readline().rstrip('\r\n') + if filename: + try: + file = open(filename, 'r') + sys.stderr.write('--- Sending file %s ---\n' % filename) + while True: + line = file.readline().rstrip('\r\n') + if not line: + break + self.serial.write(line) + self.serial.write('\r\n') + # Wait for output buffer to drain. + self.serial.flush() + sys.stderr.write('.') # Progress indicator. + sys.stderr.write('\n--- File %s sent ---\n' % filename) + except IOError, e: + sys.stderr.write('--- ERROR opening file %s: %s ---\n' % (filename, e)) + console.setup() + elif c in '\x08hH?': # CTRL+H, h, H, ? -> Show help + sys.stderr.write(get_help_text()) + elif c == '\x12': # CTRL+R -> Toggle RTS + self.rts_state = not self.rts_state + self.serial.setRTS(self.rts_state) + sys.stderr.write('--- RTS %s ---\n' % (self.rts_state and 'active' or 'inactive')) + elif c == '\x04': # CTRL+D -> Toggle DTR + self.dtr_state = not self.dtr_state + self.serial.setDTR(self.dtr_state) + sys.stderr.write('--- DTR %s ---\n' % (self.dtr_state and 'active' or 'inactive')) + elif c == '\x02': # CTRL+B -> toggle BREAK condition + self.break_state = not self.break_state + self.serial.setBreak(self.break_state) + sys.stderr.write('--- BREAK %s ---\n' % (self.break_state and 'active' or 'inactive')) + elif c == '\x05': # CTRL+E -> toggle local echo + self.echo = not self.echo + sys.stderr.write('--- local echo %s ---\n' % (self.echo and 'active' or 'inactive')) + elif c == '\x09': # CTRL+I -> info + self.dump_port_settings() + elif c == '\x01': # CTRL+A -> cycle escape mode + self.repr_mode += 1 + if self.repr_mode > 3: + self.repr_mode = 0 + sys.stderr.write('--- escape data: %s ---\n' % ( + REPR_MODES[self.repr_mode], + )) + elif c == '\x0c': # CTRL+L -> cycle linefeed mode + self.convert_outgoing += 1 + if self.convert_outgoing > 2: + self.convert_outgoing = 0 + self.newline = NEWLINE_CONVERISON_MAP[self.convert_outgoing] + sys.stderr.write('--- line feed %s ---\n' % ( + LF_MODES[self.convert_outgoing], + )) + elif c in 'pP': # P -> change port + dump_port_list() + sys.stderr.write('--- Enter port name: ') + sys.stderr.flush() + console.cleanup() + try: + port = sys.stdin.readline().strip() + except KeyboardInterrupt: + port = None + console.setup() + if port and port != self.serial.port: + # reader thread needs to be shut down + self._stop_reader() + # save settings + settings = self.serial.getSettingsDict() + try: + try: + new_serial = serial.serial_for_url(port, do_not_open=True) + except AttributeError: + # happens when the installed pyserial is older than 2.5. use the + # Serial class directly then. + new_serial = serial.Serial() + new_serial.port = port + # restore settings and open + new_serial.applySettingsDict(settings) + new_serial.open() + new_serial.setRTS(self.rts_state) + new_serial.setDTR(self.dtr_state) + new_serial.setBreak(self.break_state) + except Exception, e: + sys.stderr.write('--- ERROR opening new port: %s ---\n' % (e,)) + new_serial.close() + else: + self.serial.close() + self.serial = new_serial + sys.stderr.write('--- Port changed to: %s ---\n' % (self.serial.port,)) + # and restart the reader thread + self._start_reader() + elif c in 'bB': # B -> change baudrate + sys.stderr.write('\n--- Baudrate: ') + sys.stderr.flush() + console.cleanup() + backup = self.serial.baudrate + try: + self.serial.baudrate = int(sys.stdin.readline().strip()) + except ValueError, e: + sys.stderr.write('--- ERROR setting baudrate: %s ---\n' % (e,)) + self.serial.baudrate = backup + else: + self.dump_port_settings() + console.setup() + elif c == '8': # 8 -> change to 8 bits + self.serial.bytesize = serial.EIGHTBITS + self.dump_port_settings() + elif c == '7': # 7 -> change to 8 bits + self.serial.bytesize = serial.SEVENBITS + self.dump_port_settings() + elif c in 'eE': # E -> change to even parity + self.serial.parity = serial.PARITY_EVEN + self.dump_port_settings() + elif c in 'oO': # O -> change to odd parity + self.serial.parity = serial.PARITY_ODD + self.dump_port_settings() + elif c in 'mM': # M -> change to mark parity + self.serial.parity = serial.PARITY_MARK + self.dump_port_settings() + elif c in 'sS': # S -> change to space parity + self.serial.parity = serial.PARITY_SPACE + self.dump_port_settings() + elif c in 'nN': # N -> change to no parity + self.serial.parity = serial.PARITY_NONE + self.dump_port_settings() + elif c == '1': # 1 -> change to 1 stop bits + self.serial.stopbits = serial.STOPBITS_ONE + self.dump_port_settings() + elif c == '2': # 2 -> change to 2 stop bits + self.serial.stopbits = serial.STOPBITS_TWO + self.dump_port_settings() + elif c == '3': # 3 -> change to 1.5 stop bits + self.serial.stopbits = serial.STOPBITS_ONE_POINT_FIVE + self.dump_port_settings() + elif c in 'xX': # X -> change software flow control + self.serial.xonxoff = (c == 'X') + self.dump_port_settings() + elif c in 'rR': # R -> change hardware flow control + self.serial.rtscts = (c == 'R') + self.dump_port_settings() + else: + sys.stderr.write('--- unknown menu character %s --\n' % key_description(c)) + menu_active = False + elif c == MENUCHARACTER: # next char will be for menu + menu_active = True + elif c == EXITCHARCTER: + self.stop() + break # exit app + elif c == '\n': + self.serial.write(self.newline) # send newline character(s) + if self.echo: + sys.stdout.write(c) # local echo is a real newline in any case + sys.stdout.flush() + else: + self.serial.write(b) # send byte + if self.echo: + sys.stdout.write(c) + sys.stdout.flush() + except: + self.alive = False + raise + +def main(): + import optparse + + parser = optparse.OptionParser( + usage = "%prog [options] [port [baudrate]]", + description = "Miniterm - A simple terminal program for the serial port." + ) + + group = optparse.OptionGroup(parser, "Port settings") + + group.add_option("-p", "--port", + dest = "port", + help = "port, a number or a device name. (deprecated option, use parameter instead)", + default = DEFAULT_PORT + ) + + group.add_option("-b", "--baud", + dest = "baudrate", + action = "store", + type = 'int', + help = "set baud rate, default %default", + default = DEFAULT_BAUDRATE + ) + + group.add_option("--parity", + dest = "parity", + action = "store", + help = "set parity, one of [N, E, O, S, M], default=N", + default = 'N' + ) + + group.add_option("--rtscts", + dest = "rtscts", + action = "store_true", + help = "enable RTS/CTS flow control (default off)", + default = False + ) + + group.add_option("--xonxoff", + dest = "xonxoff", + action = "store_true", + help = "enable software flow control (default off)", + default = False + ) + + group.add_option("--rts", + dest = "rts_state", + action = "store", + type = 'int', + help = "set initial RTS line state (possible values: 0, 1)", + default = DEFAULT_RTS + ) + + group.add_option("--dtr", + dest = "dtr_state", + action = "store", + type = 'int', + help = "set initial DTR line state (possible values: 0, 1)", + default = DEFAULT_DTR + ) + + parser.add_option_group(group) + + group = optparse.OptionGroup(parser, "Data handling") + + group.add_option("-e", "--echo", + dest = "echo", + action = "store_true", + help = "enable local echo (default off)", + default = False + ) + + group.add_option("--cr", + dest = "cr", + action = "store_true", + help = "do not send CR+LF, send CR only", + default = False + ) + + group.add_option("--lf", + dest = "lf", + action = "store_true", + help = "do not send CR+LF, send LF only", + default = False + ) + + group.add_option("-D", "--debug", + dest = "repr_mode", + action = "count", + help = """debug received data (escape non-printable chars) +--debug can be given multiple times: +0: just print what is received +1: escape non-printable characters, do newlines as unusual +2: escape non-printable characters, newlines too +3: hex dump everything""", + default = 0 + ) + + parser.add_option_group(group) + + + group = optparse.OptionGroup(parser, "Hotkeys") + + group.add_option("--exit-char", + dest = "exit_char", + action = "store", + type = 'int', + help = "ASCII code of special character that is used to exit the application", + default = 0x1d + ) + + group.add_option("--menu-char", + dest = "menu_char", + action = "store", + type = 'int', + help = "ASCII code of special character that is used to control miniterm (menu)", + default = 0x14 + ) + + parser.add_option_group(group) + + group = optparse.OptionGroup(parser, "Diagnostics") + + group.add_option("-q", "--quiet", + dest = "quiet", + action = "store_true", + help = "suppress non-error messages", + default = False + ) + + parser.add_option_group(group) + + + (options, args) = parser.parse_args() + + options.parity = options.parity.upper() + if options.parity not in 'NEOSM': + parser.error("invalid parity") + + if options.cr and options.lf: + parser.error("only one of --cr or --lf can be specified") + + if options.menu_char == options.exit_char: + parser.error('--exit-char can not be the same as --menu-char') + + global EXITCHARCTER, MENUCHARACTER + EXITCHARCTER = chr(options.exit_char) + MENUCHARACTER = chr(options.menu_char) + + port = options.port + baudrate = options.baudrate + if args: + if options.port is not None: + parser.error("no arguments are allowed, options only when --port is given") + port = args.pop(0) + if args: + try: + baudrate = int(args[0]) + except ValueError: + parser.error("baud rate must be a number, not %r" % args[0]) + args.pop(0) + if args: + parser.error("too many arguments") + else: + # noport given on command line -> ask user now + if port is None: + dump_port_list() + port = raw_input('Enter port name:') + + convert_outgoing = CONVERT_CRLF + if options.cr: + convert_outgoing = CONVERT_CR + elif options.lf: + convert_outgoing = CONVERT_LF + + try: + miniterm = Miniterm( + port, + baudrate, + options.parity, + rtscts=options.rtscts, + xonxoff=options.xonxoff, + echo=options.echo, + convert_outgoing=convert_outgoing, + repr_mode=options.repr_mode, + ) + except serial.SerialException, e: + sys.stderr.write("could not open port %r: %s\n" % (port, e)) + sys.exit(1) + + if not options.quiet: + sys.stderr.write('--- Miniterm on %s: %d,%s,%s,%s ---\n' % ( + miniterm.serial.portstr, + miniterm.serial.baudrate, + miniterm.serial.bytesize, + miniterm.serial.parity, + miniterm.serial.stopbits, + )) + sys.stderr.write('--- Quit: %s | Menu: %s | Help: %s followed by %s ---\n' % ( + key_description(EXITCHARCTER), + key_description(MENUCHARACTER), + key_description(MENUCHARACTER), + key_description('\x08'), + )) + + if options.dtr_state is not None: + if not options.quiet: + sys.stderr.write('--- forcing DTR %s\n' % (options.dtr_state and 'active' or 'inactive')) + miniterm.serial.setDTR(options.dtr_state) + miniterm.dtr_state = options.dtr_state + if options.rts_state is not None: + if not options.quiet: + sys.stderr.write('--- forcing RTS %s\n' % (options.rts_state and 'active' or 'inactive')) + miniterm.serial.setRTS(options.rts_state) + miniterm.rts_state = options.rts_state + + console.setup() + miniterm.start() + try: + miniterm.join(True) + except KeyboardInterrupt: + pass + if not options.quiet: + sys.stderr.write("\n--- exit ---\n") + miniterm.join() + #~ console.cleanup() + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +if __name__ == '__main__': + main() diff --git a/serial/urlhandler/__init__.py b/serial/urlhandler/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/serial/urlhandler/protocol_hwgrep.py b/serial/urlhandler/protocol_hwgrep.py new file mode 100644 index 0000000..62cda43 --- /dev/null +++ b/serial/urlhandler/protocol_hwgrep.py @@ -0,0 +1,45 @@ +#! python +# +# Python Serial Port Extension for Win32, Linux, BSD, Jython +# see __init__.py +# +# This module implements a special URL handler that uses the port listing to +# find ports by searching the string descriptions. +# +# (C) 2011 Chris Liechti +# this is distributed under a free software license, see license.txt +# +# URL format: hwgrep://regexp + +import serial +import serial.tools.list_ports + +class Serial(serial.Serial): + """Just inherit the native Serial port implementation and patch the open function.""" + + def setPort(self, value): + """translate port name before storing it""" + if isinstance(value, basestring) and value.startswith('hwgrep://'): + serial.Serial.setPort(self, self.fromURL(value)) + else: + serial.Serial.setPort(self, value) + + def fromURL(self, url): + """extract host and port from an URL string""" + if url.lower().startswith("hwgrep://"): url = url[9:] + # use a for loop to get the 1st element from the generator + for port, desc, hwid in serial.tools.list_ports.grep(url): + return port + else: + raise serial.SerialException('no ports found matching regexp %r' % (url,)) + + # override property + port = property(serial.Serial.getPort, setPort, doc="Port setting") + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +if __name__ == '__main__': + #~ s = Serial('hwgrep://ttyS0') + s = Serial(None) + s.port = 'hwgrep://ttyS0' + print s + diff --git a/serial/urlhandler/protocol_loop.py b/serial/urlhandler/protocol_loop.py new file mode 100644 index 0000000..7da94ad --- /dev/null +++ b/serial/urlhandler/protocol_loop.py @@ -0,0 +1,265 @@ +#! python +# +# Python Serial Port Extension for Win32, Linux, BSD, Jython +# see __init__.py +# +# This module implements a loop back connection receiving itself what it sent. +# +# The purpose of this module is.. well... You can run the unit tests with it. +# and it was so easy to implement ;-) +# +# (C) 2001-2011 Chris Liechti +# this is distributed under a free software license, see license.txt +# +# URL format: loop://[option[/option...]] +# options: +# - "debug" print diagnostic messages + +from serial.serialutil import * +import threading +import time +import logging + +# map log level names to constants. used in fromURL() +LOGGER_LEVELS = { + 'debug': logging.DEBUG, + 'info': logging.INFO, + 'warning': logging.WARNING, + 'error': logging.ERROR, + } + + +class LoopbackSerial(SerialBase): + """Serial port implementation that simulates a loop back connection in plain software.""" + + BAUDRATES = (50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, + 9600, 19200, 38400, 57600, 115200) + + def open(self): + """Open port with current settings. This may throw a SerialException + if the port cannot be opened.""" + if self._isOpen: + raise SerialException("Port is already open.") + self.logger = None + self.buffer_lock = threading.Lock() + self.loop_buffer = bytearray() + self.cts = False + self.dsr = False + + if self._port is None: + raise SerialException("Port must be configured before it can be used.") + # not that there is anything to open, but the function applies the + # options found in the URL + self.fromURL(self.port) + + # not that there anything to configure... + self._reconfigurePort() + # all things set up get, now a clean start + self._isOpen = True + if not self._rtscts: + self.setRTS(True) + self.setDTR(True) + self.flushInput() + self.flushOutput() + + def _reconfigurePort(self): + """Set communication parameters on opened port. for the loop:// + protocol all settings are ignored!""" + # not that's it of any real use, but it helps in the unit tests + if not isinstance(self._baudrate, (int, long)) or not 0 < self._baudrate < 2**32: + raise ValueError("invalid baudrate: %r" % (self._baudrate)) + if self.logger: + self.logger.info('_reconfigurePort()') + + def close(self): + """Close port""" + if self._isOpen: + self._isOpen = False + # in case of quick reconnects, give the server some time + time.sleep(0.3) + + def makeDeviceName(self, port): + raise SerialException("there is no sensible way to turn numbers into URLs") + + def fromURL(self, url): + """extract host and port from an URL string""" + if url.lower().startswith("loop://"): url = url[7:] + try: + # process options now, directly altering self + for option in url.split('/'): + if '=' in option: + option, value = option.split('=', 1) + else: + value = None + if not option: + pass + elif option == 'logging': + logging.basicConfig() # XXX is that good to call it here? + self.logger = logging.getLogger('pySerial.loop') + self.logger.setLevel(LOGGER_LEVELS[value]) + self.logger.debug('enabled logging') + else: + raise ValueError('unknown option: %r' % (option,)) + except ValueError, e: + raise SerialException('expected a string in the form "[loop://][option[/option...]]": %s' % e) + + # - - - - - - - - - - - - - - - - - - - - - - - - + + def inWaiting(self): + """Return the number of characters currently in the input buffer.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + # attention the logged value can differ from return value in + # threaded environments... + self.logger.debug('inWaiting() -> %d' % (len(self.loop_buffer),)) + return len(self.loop_buffer) + + def read(self, size=1): + """Read size bytes from the serial port. If a timeout is set it may + return less characters as requested. With no timeout it will block + until the requested number of bytes is read.""" + if not self._isOpen: raise portNotOpenError + if self._timeout is not None: + timeout = time.time() + self._timeout + else: + timeout = None + data = bytearray() + while size > 0: + self.buffer_lock.acquire() + try: + block = to_bytes(self.loop_buffer[:size]) + del self.loop_buffer[:size] + finally: + self.buffer_lock.release() + data += block + size -= len(block) + # check for timeout now, after data has been read. + # useful for timeout = 0 (non blocking) read + if timeout and time.time() > timeout: + break + return bytes(data) + + def write(self, data): + """Output the given string over the serial port. Can block if the + connection is blocked. May raise SerialException if the connection is + closed.""" + if not self._isOpen: raise portNotOpenError + # ensure we're working with bytes + data = to_bytes(data) + # calculate aprox time that would be used to send the data + time_used_to_send = 10.0*len(data) / self._baudrate + # when a write timeout is configured check if we would be successful + # (not sending anything, not even the part that would have time) + if self._writeTimeout is not None and time_used_to_send > self._writeTimeout: + time.sleep(self._writeTimeout) # must wait so that unit test succeeds + raise writeTimeoutError + self.buffer_lock.acquire() + try: + self.loop_buffer += data + finally: + self.buffer_lock.release() + return len(data) + + def flushInput(self): + """Clear input buffer, discarding all that is in the buffer.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('flushInput()') + self.buffer_lock.acquire() + try: + del self.loop_buffer[:] + finally: + self.buffer_lock.release() + + def flushOutput(self): + """Clear output buffer, aborting the current output and + discarding all that is in the buffer.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('flushOutput()') + + def sendBreak(self, duration=0.25): + """Send break condition. Timed, returns to idle state after given + duration.""" + if not self._isOpen: raise portNotOpenError + + def setBreak(self, level=True): + """Set break: Controls TXD. When active, to transmitting is + possible.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('setBreak(%r)' % (level,)) + + def setRTS(self, level=True): + """Set terminal status line: Request To Send""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('setRTS(%r) -> state of CTS' % (level,)) + self.cts = level + + def setDTR(self, level=True): + """Set terminal status line: Data Terminal Ready""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('setDTR(%r) -> state of DSR' % (level,)) + self.dsr = level + + def getCTS(self): + """Read terminal status line: Clear To Send""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('getCTS() -> state of RTS (%r)' % (self.cts,)) + return self.cts + + def getDSR(self): + """Read terminal status line: Data Set Ready""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('getDSR() -> state of DTR (%r)' % (self.dsr,)) + return self.dsr + + def getRI(self): + """Read terminal status line: Ring Indicator""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('returning dummy for getRI()') + return False + + def getCD(self): + """Read terminal status line: Carrier Detect""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('returning dummy for getCD()') + return True + + # - - - platform specific - - - + # None so far + + +# assemble Serial class with the platform specific implementation and the base +# for file-like behavior. for Python 2.6 and newer, that provide the new I/O +# library, derive from io.RawIOBase +try: + import io +except ImportError: + # classic version with our own file-like emulation + class Serial(LoopbackSerial, FileLike): + pass +else: + # io library present + class Serial(LoopbackSerial, io.RawIOBase): + pass + + +# simple client test +if __name__ == '__main__': + import sys + s = Serial('loop://') + sys.stdout.write('%s\n' % s) + + sys.stdout.write("write...\n") + s.write("hello\n") + s.flush() + sys.stdout.write("read: %s\n" % s.read(5)) + + s.close() diff --git a/serial/urlhandler/protocol_rfc2217.py b/serial/urlhandler/protocol_rfc2217.py new file mode 100644 index 0000000..981ba45 --- /dev/null +++ b/serial/urlhandler/protocol_rfc2217.py @@ -0,0 +1,11 @@ +#! python +# +# Python Serial Port Extension for Win32, Linux, BSD, Jython +# see ../__init__.py +# +# This is a thin wrapper to load the rfc2271 implementation. +# +# (C) 2011 Chris Liechti +# this is distributed under a free software license, see license.txt + +from serial.rfc2217 import Serial diff --git a/serial/urlhandler/protocol_socket.py b/serial/urlhandler/protocol_socket.py new file mode 100644 index 0000000..c90a8e4 --- /dev/null +++ b/serial/urlhandler/protocol_socket.py @@ -0,0 +1,274 @@ +#! python +# +# Python Serial Port Extension for Win32, Linux, BSD, Jython +# see __init__.py +# +# This module implements a simple socket based client. +# It does not support changing any port parameters and will silently ignore any +# requests to do so. +# +# The purpose of this module is that applications using pySerial can connect to +# TCP/IP to serial port converters that do not support RFC 2217. +# +# (C) 2001-2011 Chris Liechti +# this is distributed under a free software license, see license.txt +# +# URL format: socket://:[/option[/option...]] +# options: +# - "debug" print diagnostic messages + +from serial.serialutil import * +import time +import socket +import logging + +# map log level names to constants. used in fromURL() +LOGGER_LEVELS = { + 'debug': logging.DEBUG, + 'info': logging.INFO, + 'warning': logging.WARNING, + 'error': logging.ERROR, + } + +POLL_TIMEOUT = 2 + +class SocketSerial(SerialBase): + """Serial port implementation for plain sockets.""" + + BAUDRATES = (50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, + 9600, 19200, 38400, 57600, 115200) + + def open(self): + """Open port with current settings. This may throw a SerialException + if the port cannot be opened.""" + self.logger = None + if self._port is None: + raise SerialException("Port must be configured before it can be used.") + if self._isOpen: + raise SerialException("Port is already open.") + try: + # XXX in future replace with create_connection (py >=2.6) + self._socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + self._socket.connect(self.fromURL(self.portstr)) + except Exception, msg: + self._socket = None + raise SerialException("Could not open port %s: %s" % (self.portstr, msg)) + + self._socket.settimeout(POLL_TIMEOUT) # used for write timeout support :/ + + # not that there anything to configure... + self._reconfigurePort() + # all things set up get, now a clean start + self._isOpen = True + if not self._rtscts: + self.setRTS(True) + self.setDTR(True) + self.flushInput() + self.flushOutput() + + def _reconfigurePort(self): + """Set communication parameters on opened port. for the socket:// + protocol all settings are ignored!""" + if self._socket is None: + raise SerialException("Can only operate on open ports") + if self.logger: + self.logger.info('ignored port configuration change') + + def close(self): + """Close port""" + if self._isOpen: + if self._socket: + try: + self._socket.shutdown(socket.SHUT_RDWR) + self._socket.close() + except: + # ignore errors. + pass + self._socket = None + self._isOpen = False + # in case of quick reconnects, give the server some time + time.sleep(0.3) + + def makeDeviceName(self, port): + raise SerialException("there is no sensible way to turn numbers into URLs") + + def fromURL(self, url): + """extract host and port from an URL string""" + if url.lower().startswith("socket://"): url = url[9:] + try: + # is there a "path" (our options)? + if '/' in url: + # cut away options + url, options = url.split('/', 1) + # process options now, directly altering self + for option in options.split('/'): + if '=' in option: + option, value = option.split('=', 1) + else: + value = None + if option == 'logging': + logging.basicConfig() # XXX is that good to call it here? + self.logger = logging.getLogger('pySerial.socket') + self.logger.setLevel(LOGGER_LEVELS[value]) + self.logger.debug('enabled logging') + else: + raise ValueError('unknown option: %r' % (option,)) + # get host and port + host, port = url.split(':', 1) # may raise ValueError because of unpacking + port = int(port) # and this if it's not a number + if not 0 <= port < 65536: raise ValueError("port not in range 0...65535") + except ValueError, e: + raise SerialException('expected a string in the form "[rfc2217://]:[/option[/option...]]": %s' % e) + return (host, port) + + # - - - - - - - - - - - - - - - - - - - - - - - - + + def inWaiting(self): + """Return the number of characters currently in the input buffer.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + # set this one to debug as the function could be called often... + self.logger.debug('WARNING: inWaiting returns dummy value') + return 0 # hmmm, see comment in read() + + def read(self, size=1): + """Read size bytes from the serial port. If a timeout is set it may + return less characters as requested. With no timeout it will block + until the requested number of bytes is read.""" + if not self._isOpen: raise portNotOpenError + data = bytearray() + if self._timeout is not None: + timeout = time.time() + self._timeout + else: + timeout = None + while len(data) < size and (timeout is None or time.time() < timeout): + try: + # an implementation with internal buffer would be better + # performing... + t = time.time() + block = self._socket.recv(size - len(data)) + duration = time.time() - t + if block: + data.extend(block) + else: + # no data -> EOF (connection probably closed) + break + except socket.timeout: + # just need to get out of recv from time to time to check if + # still alive + continue + except socket.error, e: + # connection fails -> terminate loop + raise SerialException('connection failed (%s)' % e) + return bytes(data) + + def write(self, data): + """Output the given string over the serial port. Can block if the + connection is blocked. May raise SerialException if the connection is + closed.""" + if not self._isOpen: raise portNotOpenError + try: + self._socket.sendall(to_bytes(data)) + except socket.error, e: + # XXX what exception if socket connection fails + raise SerialException("socket connection failed: %s" % e) + return len(data) + + def flushInput(self): + """Clear input buffer, discarding all that is in the buffer.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('ignored flushInput') + + def flushOutput(self): + """Clear output buffer, aborting the current output and + discarding all that is in the buffer.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('ignored flushOutput') + + def sendBreak(self, duration=0.25): + """Send break condition. Timed, returns to idle state after given + duration.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('ignored sendBreak(%r)' % (duration,)) + + def setBreak(self, level=True): + """Set break: Controls TXD. When active, to transmitting is + possible.""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('ignored setBreak(%r)' % (level,)) + + def setRTS(self, level=True): + """Set terminal status line: Request To Send""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('ignored setRTS(%r)' % (level,)) + + def setDTR(self, level=True): + """Set terminal status line: Data Terminal Ready""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('ignored setDTR(%r)' % (level,)) + + def getCTS(self): + """Read terminal status line: Clear To Send""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('returning dummy for getCTS()') + return True + + def getDSR(self): + """Read terminal status line: Data Set Ready""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('returning dummy for getDSR()') + return True + + def getRI(self): + """Read terminal status line: Ring Indicator""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('returning dummy for getRI()') + return False + + def getCD(self): + """Read terminal status line: Carrier Detect""" + if not self._isOpen: raise portNotOpenError + if self.logger: + self.logger.info('returning dummy for getCD()') + return True + + # - - - platform specific - - - + # None so far + + +# assemble Serial class with the platform specific implementation and the base +# for file-like behavior. for Python 2.6 and newer, that provide the new I/O +# library, derive from io.RawIOBase +try: + import io +except ImportError: + # classic version with our own file-like emulation + class Serial(SocketSerial, FileLike): + pass +else: + # io library present + class Serial(SocketSerial, io.RawIOBase): + pass + + +# simple client test +if __name__ == '__main__': + import sys + s = Serial('socket://localhost:7000') + sys.stdout.write('%s\n' % s) + + sys.stdout.write("write...\n") + s.write("hello\n") + s.flush() + sys.stdout.write("read: %s\n" % s.read(5)) + + s.close() diff --git a/serial/win32.py b/serial/win32.py new file mode 100644 index 0000000..61b3d7a --- /dev/null +++ b/serial/win32.py @@ -0,0 +1,320 @@ +from ctypes import * +from ctypes.wintypes import HANDLE +from ctypes.wintypes import BOOL +from ctypes.wintypes import LPCWSTR +_stdcall_libraries = {} +_stdcall_libraries['kernel32'] = WinDLL('kernel32') +from ctypes.wintypes import DWORD +from ctypes.wintypes import WORD +from ctypes.wintypes import BYTE + +INVALID_HANDLE_VALUE = HANDLE(-1).value + +# some details of the windows API differ between 32 and 64 bit systems.. +def is_64bit(): + """Returns true when running on a 64 bit system""" + return sizeof(c_ulong) != sizeof(c_void_p) + +# ULONG_PTR is a an ordinary number, not a pointer and contrary to the name it +# is either 32 or 64 bits, depending on the type of windows... +# so test if this a 32 bit windows... +if is_64bit(): + # assume 64 bits + ULONG_PTR = c_int64 +else: + # 32 bits + ULONG_PTR = c_ulong + + +class _SECURITY_ATTRIBUTES(Structure): + pass +LPSECURITY_ATTRIBUTES = POINTER(_SECURITY_ATTRIBUTES) + + +try: + CreateEventW = _stdcall_libraries['kernel32'].CreateEventW +except AttributeError: + # Fallback to non wide char version for old OS... + from ctypes.wintypes import LPCSTR + CreateEventA = _stdcall_libraries['kernel32'].CreateEventA + CreateEventA.restype = HANDLE + CreateEventA.argtypes = [LPSECURITY_ATTRIBUTES, BOOL, BOOL, LPCSTR] + CreateEvent=CreateEventA + + CreateFileA = _stdcall_libraries['kernel32'].CreateFileA + CreateFileA.restype = HANDLE + CreateFileA.argtypes = [LPCSTR, DWORD, DWORD, LPSECURITY_ATTRIBUTES, DWORD, DWORD, HANDLE] + CreateFile = CreateFileA +else: + CreateEventW.restype = HANDLE + CreateEventW.argtypes = [LPSECURITY_ATTRIBUTES, BOOL, BOOL, LPCWSTR] + CreateEvent = CreateEventW # alias + + CreateFileW = _stdcall_libraries['kernel32'].CreateFileW + CreateFileW.restype = HANDLE + CreateFileW.argtypes = [LPCWSTR, DWORD, DWORD, LPSECURITY_ATTRIBUTES, DWORD, DWORD, HANDLE] + CreateFile = CreateFileW # alias + +class _OVERLAPPED(Structure): + pass +OVERLAPPED = _OVERLAPPED + +class _COMSTAT(Structure): + pass +COMSTAT = _COMSTAT + +class _DCB(Structure): + pass +DCB = _DCB + +class _COMMTIMEOUTS(Structure): + pass +COMMTIMEOUTS = _COMMTIMEOUTS + +GetLastError = _stdcall_libraries['kernel32'].GetLastError +GetLastError.restype = DWORD +GetLastError.argtypes = [] + +LPOVERLAPPED = POINTER(_OVERLAPPED) +LPDWORD = POINTER(DWORD) + +GetOverlappedResult = _stdcall_libraries['kernel32'].GetOverlappedResult +GetOverlappedResult.restype = BOOL +GetOverlappedResult.argtypes = [HANDLE, LPOVERLAPPED, LPDWORD, BOOL] + +ResetEvent = _stdcall_libraries['kernel32'].ResetEvent +ResetEvent.restype = BOOL +ResetEvent.argtypes = [HANDLE] + +LPCVOID = c_void_p + +WriteFile = _stdcall_libraries['kernel32'].WriteFile +WriteFile.restype = BOOL +WriteFile.argtypes = [HANDLE, LPCVOID, DWORD, LPDWORD, LPOVERLAPPED] + +LPVOID = c_void_p + +ReadFile = _stdcall_libraries['kernel32'].ReadFile +ReadFile.restype = BOOL +ReadFile.argtypes = [HANDLE, LPVOID, DWORD, LPDWORD, LPOVERLAPPED] + +CloseHandle = _stdcall_libraries['kernel32'].CloseHandle +CloseHandle.restype = BOOL +CloseHandle.argtypes = [HANDLE] + +ClearCommBreak = _stdcall_libraries['kernel32'].ClearCommBreak +ClearCommBreak.restype = BOOL +ClearCommBreak.argtypes = [HANDLE] + +LPCOMSTAT = POINTER(_COMSTAT) + +ClearCommError = _stdcall_libraries['kernel32'].ClearCommError +ClearCommError.restype = BOOL +ClearCommError.argtypes = [HANDLE, LPDWORD, LPCOMSTAT] + +SetupComm = _stdcall_libraries['kernel32'].SetupComm +SetupComm.restype = BOOL +SetupComm.argtypes = [HANDLE, DWORD, DWORD] + +EscapeCommFunction = _stdcall_libraries['kernel32'].EscapeCommFunction +EscapeCommFunction.restype = BOOL +EscapeCommFunction.argtypes = [HANDLE, DWORD] + +GetCommModemStatus = _stdcall_libraries['kernel32'].GetCommModemStatus +GetCommModemStatus.restype = BOOL +GetCommModemStatus.argtypes = [HANDLE, LPDWORD] + +LPDCB = POINTER(_DCB) + +GetCommState = _stdcall_libraries['kernel32'].GetCommState +GetCommState.restype = BOOL +GetCommState.argtypes = [HANDLE, LPDCB] + +LPCOMMTIMEOUTS = POINTER(_COMMTIMEOUTS) + +GetCommTimeouts = _stdcall_libraries['kernel32'].GetCommTimeouts +GetCommTimeouts.restype = BOOL +GetCommTimeouts.argtypes = [HANDLE, LPCOMMTIMEOUTS] + +PurgeComm = _stdcall_libraries['kernel32'].PurgeComm +PurgeComm.restype = BOOL +PurgeComm.argtypes = [HANDLE, DWORD] + +SetCommBreak = _stdcall_libraries['kernel32'].SetCommBreak +SetCommBreak.restype = BOOL +SetCommBreak.argtypes = [HANDLE] + +SetCommMask = _stdcall_libraries['kernel32'].SetCommMask +SetCommMask.restype = BOOL +SetCommMask.argtypes = [HANDLE, DWORD] + +SetCommState = _stdcall_libraries['kernel32'].SetCommState +SetCommState.restype = BOOL +SetCommState.argtypes = [HANDLE, LPDCB] + +SetCommTimeouts = _stdcall_libraries['kernel32'].SetCommTimeouts +SetCommTimeouts.restype = BOOL +SetCommTimeouts.argtypes = [HANDLE, LPCOMMTIMEOUTS] + +WaitForSingleObject = _stdcall_libraries['kernel32'].WaitForSingleObject +WaitForSingleObject.restype = DWORD +WaitForSingleObject.argtypes = [HANDLE, DWORD] + +ONESTOPBIT = 0 # Variable c_int +TWOSTOPBITS = 2 # Variable c_int +ONE5STOPBITS = 1 + +NOPARITY = 0 # Variable c_int +ODDPARITY = 1 # Variable c_int +EVENPARITY = 2 # Variable c_int +MARKPARITY = 3 +SPACEPARITY = 4 + +RTS_CONTROL_HANDSHAKE = 2 # Variable c_int +RTS_CONTROL_DISABLE = 0 # Variable c_int +RTS_CONTROL_ENABLE = 1 # Variable c_int +RTS_CONTROL_TOGGLE = 3 # Variable c_int +SETRTS = 3 +CLRRTS = 4 + +DTR_CONTROL_HANDSHAKE = 2 # Variable c_int +DTR_CONTROL_DISABLE = 0 # Variable c_int +DTR_CONTROL_ENABLE = 1 # Variable c_int +SETDTR = 5 +CLRDTR = 6 + +MS_DSR_ON = 32 # Variable c_ulong +EV_RING = 256 # Variable c_int +EV_PERR = 512 # Variable c_int +EV_ERR = 128 # Variable c_int +SETXOFF = 1 # Variable c_int +EV_RXCHAR = 1 # Variable c_int +GENERIC_WRITE = 1073741824 # Variable c_long +PURGE_TXCLEAR = 4 # Variable c_int +FILE_FLAG_OVERLAPPED = 1073741824 # Variable c_int +EV_DSR = 16 # Variable c_int +MAXDWORD = 4294967295L # Variable c_uint +EV_RLSD = 32 # Variable c_int +ERROR_IO_PENDING = 997 # Variable c_long +MS_CTS_ON = 16 # Variable c_ulong +EV_EVENT1 = 2048 # Variable c_int +EV_RX80FULL = 1024 # Variable c_int +PURGE_RXABORT = 2 # Variable c_int +FILE_ATTRIBUTE_NORMAL = 128 # Variable c_int +PURGE_TXABORT = 1 # Variable c_int +SETXON = 2 # Variable c_int +OPEN_EXISTING = 3 # Variable c_int +MS_RING_ON = 64 # Variable c_ulong +EV_TXEMPTY = 4 # Variable c_int +EV_RXFLAG = 2 # Variable c_int +MS_RLSD_ON = 128 # Variable c_ulong +GENERIC_READ = 2147483648L # Variable c_ulong +EV_EVENT2 = 4096 # Variable c_int +EV_CTS = 8 # Variable c_int +EV_BREAK = 64 # Variable c_int +PURGE_RXCLEAR = 8 # Variable c_int +INFINITE = 0xFFFFFFFFL + + +class N11_OVERLAPPED4DOLLAR_48E(Union): + pass +class N11_OVERLAPPED4DOLLAR_484DOLLAR_49E(Structure): + pass +N11_OVERLAPPED4DOLLAR_484DOLLAR_49E._fields_ = [ + ('Offset', DWORD), + ('OffsetHigh', DWORD), +] + +PVOID = c_void_p + +N11_OVERLAPPED4DOLLAR_48E._anonymous_ = ['_0'] +N11_OVERLAPPED4DOLLAR_48E._fields_ = [ + ('_0', N11_OVERLAPPED4DOLLAR_484DOLLAR_49E), + ('Pointer', PVOID), +] +_OVERLAPPED._anonymous_ = ['_0'] +_OVERLAPPED._fields_ = [ + ('Internal', ULONG_PTR), + ('InternalHigh', ULONG_PTR), + ('_0', N11_OVERLAPPED4DOLLAR_48E), + ('hEvent', HANDLE), +] +_SECURITY_ATTRIBUTES._fields_ = [ + ('nLength', DWORD), + ('lpSecurityDescriptor', LPVOID), + ('bInheritHandle', BOOL), +] +_COMSTAT._fields_ = [ + ('fCtsHold', DWORD, 1), + ('fDsrHold', DWORD, 1), + ('fRlsdHold', DWORD, 1), + ('fXoffHold', DWORD, 1), + ('fXoffSent', DWORD, 1), + ('fEof', DWORD, 1), + ('fTxim', DWORD, 1), + ('fReserved', DWORD, 25), + ('cbInQue', DWORD), + ('cbOutQue', DWORD), +] +_DCB._fields_ = [ + ('DCBlength', DWORD), + ('BaudRate', DWORD), + ('fBinary', DWORD, 1), + ('fParity', DWORD, 1), + ('fOutxCtsFlow', DWORD, 1), + ('fOutxDsrFlow', DWORD, 1), + ('fDtrControl', DWORD, 2), + ('fDsrSensitivity', DWORD, 1), + ('fTXContinueOnXoff', DWORD, 1), + ('fOutX', DWORD, 1), + ('fInX', DWORD, 1), + ('fErrorChar', DWORD, 1), + ('fNull', DWORD, 1), + ('fRtsControl', DWORD, 2), + ('fAbortOnError', DWORD, 1), + ('fDummy2', DWORD, 17), + ('wReserved', WORD), + ('XonLim', WORD), + ('XoffLim', WORD), + ('ByteSize', BYTE), + ('Parity', BYTE), + ('StopBits', BYTE), + ('XonChar', c_char), + ('XoffChar', c_char), + ('ErrorChar', c_char), + ('EofChar', c_char), + ('EvtChar', c_char), + ('wReserved1', WORD), +] +_COMMTIMEOUTS._fields_ = [ + ('ReadIntervalTimeout', DWORD), + ('ReadTotalTimeoutMultiplier', DWORD), + ('ReadTotalTimeoutConstant', DWORD), + ('WriteTotalTimeoutMultiplier', DWORD), + ('WriteTotalTimeoutConstant', DWORD), +] +__all__ = ['GetLastError', 'MS_CTS_ON', 'FILE_ATTRIBUTE_NORMAL', + 'DTR_CONTROL_ENABLE', '_COMSTAT', 'MS_RLSD_ON', + 'GetOverlappedResult', 'SETXON', 'PURGE_TXABORT', + 'PurgeComm', 'N11_OVERLAPPED4DOLLAR_48E', 'EV_RING', + 'ONESTOPBIT', 'SETXOFF', 'PURGE_RXABORT', 'GetCommState', + 'RTS_CONTROL_ENABLE', '_DCB', 'CreateEvent', + '_COMMTIMEOUTS', '_SECURITY_ATTRIBUTES', 'EV_DSR', + 'EV_PERR', 'EV_RXFLAG', 'OPEN_EXISTING', 'DCB', + 'FILE_FLAG_OVERLAPPED', 'EV_CTS', 'SetupComm', + 'LPOVERLAPPED', 'EV_TXEMPTY', 'ClearCommBreak', + 'LPSECURITY_ATTRIBUTES', 'SetCommBreak', 'SetCommTimeouts', + 'COMMTIMEOUTS', 'ODDPARITY', 'EV_RLSD', + 'GetCommModemStatus', 'EV_EVENT2', 'PURGE_TXCLEAR', + 'EV_BREAK', 'EVENPARITY', 'LPCVOID', 'COMSTAT', 'ReadFile', + 'PVOID', '_OVERLAPPED', 'WriteFile', 'GetCommTimeouts', + 'ResetEvent', 'EV_RXCHAR', 'LPCOMSTAT', 'ClearCommError', + 'ERROR_IO_PENDING', 'EscapeCommFunction', 'GENERIC_READ', + 'RTS_CONTROL_HANDSHAKE', 'OVERLAPPED', + 'DTR_CONTROL_HANDSHAKE', 'PURGE_RXCLEAR', 'GENERIC_WRITE', + 'LPDCB', 'CreateEventW', 'SetCommMask', 'EV_EVENT1', + 'SetCommState', 'LPVOID', 'CreateFileW', 'LPDWORD', + 'EV_RX80FULL', 'TWOSTOPBITS', 'LPCOMMTIMEOUTS', 'MAXDWORD', + 'MS_DSR_ON', 'MS_RING_ON', + 'N11_OVERLAPPED4DOLLAR_484DOLLAR_49E', 'EV_ERR', + 'ULONG_PTR', 'CreateFile', 'NOPARITY', 'CloseHandle'] diff --git a/snapshot.png b/snapshot.png new file mode 100644 index 0000000..a7f4ce5 Binary files /dev/null and b/snapshot.png differ diff --git a/tests/UNO_Blink.hex b/tests/UNO_Blink.hex new file mode 100644 index 0000000..edeb4a8 --- /dev/null +++ b/tests/UNO_Blink.hex @@ -0,0 +1,66 @@ +:100000000C945C000C946E000C946E000C946E00CA +:100010000C946E000C946E000C946E000C946E00A8 +:100020000C946E000C946E000C946E000C946E0098 +:100030000C946E000C946E000C946E000C946E0088 +:100040000C9488000C946E000C946E000C946E005E +:100050000C946E000C946E000C946E000C946E0068 +:100060000C946E000C946E00000000080002010069 +:100070000003040700000000000000000102040863 +:100080001020408001020408102001020408102002 +:10009000040404040404040402020202020203032E +:1000A0000303030300000000250028002B000000CC +:1000B0000000240027002A0011241FBECFEFD8E043 +:1000C000DEBFCDBF21E0A0E0B1E001C01D92A930AC +:1000D000B207E1F70E94F1010C9401020C940000B8 +:1000E00061E08DE00C94810161E08DE00E94BA0135 +:1000F00068EE73E080E090E00E94F50060E08DE043 +:100100000E94BA0168EE73E080E090E00C94F50084 +:100110001F920F920FB60F9211242F933F938F933C +:100120009F93AF93BF938091010190910201A091A1 +:100130000301B09104013091000123E0230F2D371A +:1001400020F40196A11DB11D05C026E8230F0296DB +:10015000A11DB11D20930001809301019093020124 +:10016000A0930301B09304018091050190910601D1 +:10017000A0910701B09108010196A11DB11D8093C6 +:10018000050190930601A0930701B0930801BF9168 +:10019000AF919F918F913F912F910F900FBE0F9034 +:1001A0001F9018953FB7F894809105019091060132 +:1001B000A0910701B091080126B5A89B05C02F3F6B +:1001C00019F00196A11DB11D3FBF6627782F892F19 +:1001D0009A2F620F711D811D911D42E0660F771FDE +:1001E000881F991F4A95D1F70895CF92DF92EF9219 +:1001F000FF92CF93DF936B017C010E94D200EB0151 +:10020000C114D104E104F10489F00E9400020E94AB +:10021000D2006C1B7D0B683E734090F381E0C81ADE +:10022000D108E108F108C851DC4FEACFDF91CF9146 +:10023000FF90EF90DF90CF900895789484B582601E +:1002400084BD84B5816084BD85B5826085BD85B57A +:10025000816085BDEEE6F0E0808181608083E1E829 +:10026000F0E0108280818260808380818160808361 +:10027000E0E8F0E0808181608083E1EBF0E0808164 +:1002800084608083E0EBF0E0808181608083EAE736 +:10029000F0E08081846080838081826080838081BF +:1002A000816080838081806880831092C10008957E +:1002B000833081F028F4813099F08230A1F00895E4 +:1002C0008730A9F08830B9F08430D1F48091800073 +:1002D0008F7D03C0809180008F7780938000089588 +:1002E00084B58F7702C084B58F7D84BD08958091D9 +:1002F000B0008F7703C08091B0008F7D8093B000F5 +:100300000895CF93DF9390E0FC01E458FF4F2491D0 +:10031000FC01E057FF4F8491882349F190E0880F5A +:10032000991FFC01E255FF4FA591B4918C559F4F49 +:10033000FC01C591D4919FB7611108C0F8948C91CC +:10034000209582238C93888182230AC0623051F4E5 +:10035000F8948C91322F309583238C938881822B53 +:10036000888304C0F8948C91822B8C939FBFDF917B +:10037000CF9108950F931F93CF93DF931F92CDB723 +:10038000DEB7282F30E0F901E859FF4F8491F901D9 +:10039000E458FF4F1491F901E057FF4F04910023F7 +:1003A000C9F0882321F069830E9458016981E02FF8 +:1003B000F0E0EE0FFF1FEC55FF4FA591B4919FB7F2 +:1003C000F8948C91611103C01095812301C0812B99 +:1003D0008C939FBF0F90DF91CF911F910F91089544 +:1003E00008950E941D010E94F0010E947000C0E06B +:1003F000D0E00E9474002097E1F30E940000F9CF42 +:060400000895F894FFCFFF +:00000001FF diff --git a/tool/genqrc.bat b/tool/genqrc.bat new file mode 100644 index 0000000..6463f00 --- /dev/null +++ b/tool/genqrc.bat @@ -0,0 +1,2 @@ +genqrc.py ../icons ../icons.py +del tmp.qrc \ No newline at end of file diff --git a/tool/genqrc.py b/tool/genqrc.py new file mode 100644 index 0000000..425530f --- /dev/null +++ b/tool/genqrc.py @@ -0,0 +1,56 @@ +#-*- coding: utf-8 -*- +#1.濡備綍鍦ㄥ熀浜嶱yQt4鐨凱ython浠g爜涓娇鐢ㄥ浘鏍囪祫婧愭枃浠(qrc鏂囦欢) +#绛: QtGui.QIcon(":/app/icons/app/logo.ico") +#鍏朵腑:/app鏍囪瘑鍥炬爣鍦╭rc鏂囦欢涓殑鍒嗘敮, 鍚庨潰鐨刬cons/app/logo.ico鏍囪瘑鍥炬爣鍦╭rc鏂囦欢涓殑璺緞 +#2.濡備綍鍦ㄤ娇鐢╬y2exe杞崲鍚庣殑exe鏂囦欢涓娇鐢ㄨ繖浜涘浘鏍 +#绛: 浣跨敤pyrcc4鍛戒护(瀹夎PyQt4鍚庝細鏈夋宸ュ叿)閫氳繃鍛戒护pyrcc4 -py3 sample.qrc > sample.py +#灏唓rc鏂囦欢涓殑鍥炬爣缂栬瘧涓轰簩杩涘埗鏁版嵁瀛樻斁鍒皃y鏂囦欢涓, 鐒跺悗鍦ㄤ綘闇瑕佷娇鐢ㄥ浘鏍囩殑python鏂囦欢涓 +#浣跨敤from sample.py import *鍔犺浇鍥炬爣璧勬簮鍗冲彲 + +__author__ = "apache" +__version__ = "0.1" + +import sys +from os import path, listdir, system +from glob import glob + +get_subdir_list = lambda _dir: [d for d in listdir(_dir) if path.isdir("%s/%s" % (_dir, d))] + +def get_qresource_xml_bydir(topdir, _dir, filter="*.*"): + items = ['\t' % _dir] + for f in glob("%s/%s/%s" % (topdir, _dir, filter)): + items.append('\t\t%s' % f.replace("\\", "/")) + items.append("\t") + + return '\n'.join(items) + +def get_qrc_xml(topdir): + subdirs = get_subdir_list(topdir) + qresources = [""] + for _dir in subdirs: + qresources.append(get_qresource_xml_bydir(topdir, _dir)) + qresources.append("") + + return '\n'.join(qresources) + +def main(topdir, qrcfile): + rcc_xml = get_qrc_xml(topdir) + open("tmp.qrc", 'w').write(rcc_xml) + return system("pyrcc4 -py3 tmp.qrc > %s" % qrcfile) + +if __name__ == "__main__": + argc = len(sys.argv) + if 1 < argc < 3: + print (u"鐢熸垚浜岃繘鍒剁殑鍥炬爣璧勬簮鏂囦欢\n" + "usage: genqrc.py icon-dir qrc-pyfile\n" + "sample: genqrc.py icons icons.py") + sys.exit(1) + elif argc == 1: + topdir, qrcfile = "icons", "icons.py" + else: + topdir, qrcfile = sys.argv[1], sys.argv[2] + + if main(topdir, qrcfile) == 0: + print "ok:)" + else: + print "failed:(" \ No newline at end of file diff --git a/tool/ui2py.bat b/tool/ui2py.bat new file mode 100644 index 0000000..770acee --- /dev/null +++ b/tool/ui2py.bat @@ -0,0 +1 @@ +pyuic4 ../ui/mainwindow.ui > ..\\Ui_MainWindow.py diff --git a/ui/mainwindow.ui b/ui/mainwindow.ui new file mode 100644 index 0000000..744c809 --- /dev/null +++ b/ui/mainwindow.ui @@ -0,0 +1,108 @@ + + + MainWindow + + + + 0 + 0 + 447 + 556 + + + + Arduloader + + + + + + + + + + + + + + + + + 311 + 0 + + + + true + + + + + + + Browser + + + + + + + + + false + + + + + + + + + + QFrame::NoFrame + + + + + + + Qt::Horizontal + + + + 260 + 20 + + + + + + + + Upload + + + + + + + Exit + + + + + + + true + + + false + + + + + + + + +