/** * @file maxic_mt5728.h * @date Mon May 13 16:51:39 2019 * @brief Maxictech Proprietary and Confidential * Copyright (c) 2017 Maxic Technology Corporation * All Rights Reserved */ #ifndef __MAXIC_MT5728_H__ #define __MAXIC_MT5728_H__ #if 0 typedef unsigned int unsig32; typedef unsigned short u16; typedef unsigned char u8; typedef signed int s32; typedef signed short s16; typedef signed char s8; #else #define unsig32 unsigned int #define u16 unsigned short #define u8 unsigned char #define unsig32 unsigned int #define s16 unsigned short #define s8 unsigned char #endif //typedef volatile unsigned int vunsig32; //typedef volatile unsigned short vu16; //typedef volatile unsigned char vu8; //typedef volatile signed int vs32; //typedef volatile signed short vs16; //typedef volatile signed char vs8; /*********************************************************** * */ #define MT5728_CHIP_AUTO_AFC9V // #define MT5728_AFC9V_IN_IRQ // #define REDUCE_CURRENT_ACCORD_VOUT #define MT5728_EPP_AP_CTRL_VOUT #define MT5728_USE_WAKELOCK #define MT5728_HSCLK 80000UL #define MT5728_F2P(f) (MT5728_HSCLK/(f)-2) #define MT5728_P2F(p) (MT5728_HSCLK/((p)+2)) #define MAX_PKT_SIZE 22 /// ASK PPe2 #define MAX_MSG_SIZE 20 #define MAX_BC_SIZE 10 /// FSK PP8f #define FSK_WAITTING 0 #define FSK_SUCCESS 1 #define FSK_FAILED 2 #define LBIT(n) (1<<(n)) #define _LBIT(n) (~LBIT(n)) #define MT5728ID 0X5728 #define SRAM_PAGE_SIZE 128 // #define FALSE 0 // #define TRUE 1 #define MT5728_M0_RESET LBIT(7) #define MT5728_M0_HOLD LBIT(5) #define MAX_POWER(w) ((w)<<1) // ------------------------- REGISTER ------------------------- #define REG_CHIPID 0x0000 #define REG_FW_VER 0x0003 #define REG_CMD 0x0006 #define REG_KEY 0x0008 #define REG_INTFLAG (0x0010 + 0x04) #define REG_INTCLR (0x0014 + 0x04) #define REG_IOUT 0x0028 #define REG_VOUT 0x002A #define REG_TX_IOUT 0x008E #define REG_TX_VOUT 0x0090 #define REG_VRECT 0x002C #define REG_VOUTSET 0x002E #define REG_VFC 0x0032 #define REG_PPP 0x0050 #define REG_BC 0x0066 #define REG_FOD 0x0078 #define REG_FOD_EPP 0x0088 #define REG_POT_POWER 0x00a4 #define REG_MAX_POWER 0x00a6 #define REG_RXD_PERI 0x004E #define RED_TXD_PERI 0x045a #define MT5728_PMU_WDGEN_REG 0x5808 #define MT5728_PMU_FLAG_REG 0x5800 #define MT5728_SYS_KEY_REG 0x5244 #define MT5728_CODE_REMAP_REG 0x5208 #define MT5728_SRAM_REMAP_REG 0x5218 #define MT5728_M0_CTRL_REG 0x5200 #define MT5728_KEY 0x57 #define MT5728_WDG_DISABLE 0x95 #define MT5728_WDG_ENABLE 0x59 #define MT5728_WDT_INTFALG 0x03 #define MTP_BLOCK_SIZE 1024 #define SDRAM_PAGE_SIZE 128 #define MTP_32BIT_WRITE 1 // voltage must set >8V #define MTP_8BIT_WRITE 4 #define PGM_STATUS_ADDR 0x0000 #define PGM_ADDR_ADDR 0x0002 #define PGM_LENGTH_ADDR 0x0004 #define PGM_CHECKSUM_ADDR 0x0006 #define PGM_DATA_ADDR 0x0008 #define PGM_STATUS_READY 0x00 #define PGM_STATUS_WRITE 0x01 #define PGM_STATUS_PROGOK 0x02 #define PGM_STATUS_ERRCS 0x04 #define PGM_STATUS_READ 0x08 #define PGM_STATUS_WMTP 0x10 #define PGM_STATUS_WNVR 0x10 #define PGM_STATUS_ERRPGM 0x20 #define PGM_STATUS_DONE 0x80 #define MTP_WRITE_FLAG_ADDR 0x3D00 enum ech_wls_chrg_state { ECH_WLS_CHRG_WAIT = 0, ECH_WLS_CHRG_RUNNING, ECH_WLS_CHRG_HOLD, ECH_WLS_CHRG_CMPLT, }; /***************************************************************************** * Log ****************************************************************************/ #define ECH_LOG_NONE 0 #define ECH_LOG_ERR 1 #define ECH_LOG_DEBG 2 #define ECH_LOG_FULL 3 int Enable_ECH_LOG = ECH_LOG_FULL; #define ech_wls_log(num, fmt, args...) \ do { \ if (Enable_ECH_LOG >= (int)num) \ pr_err(fmt, ##args); \ } while (0) struct ech_wls_chrg_info { int input_current_max; int charger_current; int work_en; int wls_online; int temp_state; int batt_temp; int batt_volt; int batt_soc; int batt_status; int power_max; int temp_ic; int temp_ntc; int temp_pmic; int vout; int vchg; int ichg; int vrect; int irect; int call_status; }; struct ech_wls_chrg_info chrg_info; typedef enum { ADAPTER_NONE = 0x00, ADAPTER_SDP = 0x01, // 500mA ADAPTER_CDP = 0x02, // 1.1A ADAPTER_DCP = 0x03, // 1.5A ADAPTER_QC20 = 0x04, // QC2.0 ADAPTER_QC30 = 0x05, // QC3.0 ADAPTER_PD = 0x06, // PD ADAPTER_FCP = 0x07, // FCP ADAPTER_SCP = 0x08, // SCP ADAPTER_DCS = 0x09, // DC source ADAPTER_AFC = 0x0b, // AFC ADAPTER_PDPPS = 0x0c, // PD PPS } ADAPTER_TYPE; typedef enum { VOUT_LOW = LBIT(0), SCREEN_LIGHTUP = LBIT(1), TEMP_HIGH = LBIT(2), }REDUCE_CURRENT_TYPE; // system mode typedef enum { RXMODE = LBIT(0), TXMODE = LBIT(2), ACMISSING = LBIT(3), OTPMODE = LBIT(4), EPRMODE = LBIT(5), SRAMMODE = LBIT(6), D2MODE = LBIT(7), } _SYS_MODE_E; typedef enum { SEND_PPP = LBIT(0), TOGGLE_LDO = LBIT(1), CLEAR_INT = LBIT(5), FW_UPDATE = LBIT(6), FAST_CHARGE = LBIT(7), OVP_CHANGE = LBIT(8), OCP_CHANGE = LBIT(9), VOUT_CHANGE = LBIT(10), LOW_POWER = LBIT(11), } _CUST_CMD_E; // ------------------------- INTFLAG ------------------------- typedef enum { // RX INT_RX_READY = LBIT(3), INT_FSK_RECV = LBIT(4), INT_MODECHANGE = LBIT(5), INT_LDO_ON = LBIT(6), INT_LDO_OFF = LBIT(7), INT_AFC_SUPPORT = LBIT(8), INT_EPP = LBIT(9), INT_FSK_TIMEOUT = LBIT(10), INT_FSK_SUCCESS = LBIT(11), INT_SLEEP = LBIT(14), INT_POWER_ON = LBIT(15), // TX INT_BC = LBIT(0), INT_BC_TIMEOUT = LBIT(1), INT_BC_SUCCESS = LBIT(2), INT_DETECT_RX = BIT(3), INT_OCPFRX = BIT(4), INT_FODDE = BIT(5), INT_REMOVE_POWER = BIT(6), INT_CHIP_DISABLE = BIT(7), INT_POWER_TRANS = BIT(8), INT_CHIP_ENABLE = BIT(9), INT_TX_OVP = BIT(10), } _INT_TYPE_E; /// Table 6-3: Packet types typedef enum { PP_NONE = 0x00, // ping phase SIGNALSTRENGTHPACKET = 0x01, ENDPOWERXFERPACKET = 0x02, // identification & configuration phase POWERHOLDOFFPACKET = 0x06, CONFIGURATIONPACKET = 0x51, IDENTIFICATIONPACKET = 0x71, EXTIDENTPACKET = 0x81, // power transfer phase CONTROLERRORPACKET = 0x03, RECEIVEDPOWER8bit = 0x04, CHARGESTATUSPACKET = 0x05, GENERALREQUEST = 0x07, RENEGOTIATE = 0x09, SPECIFICREQUEST = 0x20, FODSTATUS = 0x22, RECEIVEDPOWER24bit = 0x31, WPIDPACKET54 = 0x54, WPIDPACKET55 = 0x55, // identification & configuration / power transfer phase PP18 = 0x18, PP19 = 0x19, PP28 = 0x28, PP29 = 0x29, PP38 = 0x38, PP48 = 0x48, PP58 = 0x58, PP68 = 0x68, PP78 = 0x78, PP84 = 0x84, PPa4 = 0xa4, PPc4 = 0xc4, PPe2 = 0xe2, // Negotiation phase PP1E = 0x1e, PP1F = 0x1f, PP2E = 0x2e, PP2F = 0x2f, PP3F = 0x3f, PP4F = 0x4f, PP5F = 0x5f, PP6F = 0x6f, PP7F = 0x7f, PP8F = 0x8f, // General Request Packet PTDNAPACKET = 0x00, PTIDPACKET = 0x30, PTCAPPACKET = 0x31, } WPCHeaderType; // customer command typedef enum { CMD_NONE = 0x00, CMD_READ_HW_VER = 0xa2, CMD_READ_FW_VER = 0xa3, CMD_ADAPTER_TYPE = 0xa4, CMD_TOGGLE_LOOPMODE = 0xb0, CMD_SET_PERIOD = 0xb1, CMD_GET_PERIOD = 0xb2, CMD_SET_FREQ = 0xb3, CMD_GET_FREQ = 0xb4, CMD_SET_DUTYCYCLE = 0xb5, CMD_SET_MINFREQ = 0xb6, CMD_SET_MAXFREQ = 0xb7, CMD_SET_PINGFREQ = 0xb8, CMD_GET_DUTYCYCLE = 0xb9, CMD_GET_MINFREQ = 0xba, CMD_GET_MAXFREQ = 0xbb, CMD_GET_PINGFREQ = 0xbc, CMD_SET_DEADTIME = 0xbd, CMD_GET_DEADTIME = 0xbe, CMD_GET_Vcoil = 0xcf, CMD_GET_Iin = 0xd0, CMD_GET_Vin = 0xd1, CMD_SET_Vin = 0xd2, CMD_GET_Vbrg = 0xd3, CMD_SET_Vbrg = 0xd4, CMD_GET_TEMP = 0xd6, CMD_TEST = 0xee, } PrivateCmdType; typedef struct { u8 header; union { u8 msg[MAX_MSG_SIZE-1]; struct { u8 cmd; u8 data[MAX_MSG_SIZE-2]; }; }; } PktType; // End Power Transfer Packet Codes typedef enum { EPT_UNKNOWN = 0x00, // The Receiver may use this value if it does not have a specific reason for terminating the power transfer, or if none of the other values listed in Table 6-6 is appropriate. EPT_CHGCOMPLETE = 0x01, // The Receiver should use this value if it determines that the battery of the Mobile Device is fully charged. On receipt of an End Power Transfer Packet containing this value, the Transmitter should set any charged indication on its user interface that is associated with the Receiver. EPT_INTERNALFAULT = 0x02, // The Receiver may use this value if it has encountered some internal problem, e.g. a software or logic error. EPT_OVERTEMPERATURE = 0x03, // The Receiver should use this value if it has measured a temperature within the Mobile Device that exceeds a limit. EPT_OVERVOLTAGE = 0x04, // The Receiver should use this value if it has measured a voltage within the Mobile Device that exceeds a limit. EPT_OVERCURRENT = 0x05, // The Receiver should use this value if it has measured a current within the Mobile Device that exceeds a limit. EPT_BATTERYFAILURE = 0x06, // The Receiver should use this value if it has determined a problem with the battery of the Mobile Device. EPT_RECONFIGURE = 0x07, EPT_NORESPONSE = 0x08, // The Receiver should use this value if it determines that the Transmitter does not respond to Control Error Packets as expected (i.e. does not increase/decrease its Primary Cell current appropriately). EPT_RESERVED09 = 0x09, EPT_NEGOTIATION_FAILURE = 0x0a, // A Power Receiver should use this value if it cannot negotiate a suitable Guaranteed Power level. EPT_RESTART_POWER_TRANSFER = 0x0b, // A Power Receiver should use this value if sees a need for Foreign Object Detection with no power transfer in progress (see Section 11.3, FOD based on quality factor change). To enable such detection, the power transfer has to be terminated. Typically, the Power Transmitter then performs Foreign Object Detection before restarting the power transfer. EPT_MASK = 0x80, EPT_RESERVED_0X0C_0XFF = 0xff, } EPTResonType; const u16 mt5728_crc_ccitt_table[256] = { 0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf, 0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7, 0x1081, 0x0108, 0x3393, 0x221a, 0x56a5, 0x472c, 0x75b7, 0x643e, 0x9cc9, 0x8d40, 0xbfdb, 0xae52, 0xdaed, 0xcb64, 0xf9ff, 0xe876, 0x2102, 0x308b, 0x0210, 0x1399, 0x6726, 0x76af, 0x4434, 0x55bd, 0xad4a, 0xbcc3, 0x8e58, 0x9fd1, 0xeb6e, 0xfae7, 0xc87c, 0xd9f5, 0x3183, 0x200a, 0x1291, 0x0318, 0x77a7, 0x662e, 0x54b5, 0x453c, 0xbdcb, 0xac42, 0x9ed9, 0x8f50, 0xfbef, 0xea66, 0xd8fd, 0xc974, 0x4204, 0x538d, 0x6116, 0x709f, 0x0420, 0x15a9, 0x2732, 0x36bb, 0xce4c, 0xdfc5, 0xed5e, 0xfcd7, 0x8868, 0x99e1, 0xab7a, 0xbaf3, 0x5285, 0x430c, 0x7197, 0x601e, 0x14a1, 0x0528, 0x37b3, 0x263a, 0xdecd, 0xcf44, 0xfddf, 0xec56, 0x98e9, 0x8960, 0xbbfb, 0xaa72, 0x6306, 0x728f, 0x4014, 0x519d, 0x2522, 0x34ab, 0x0630, 0x17b9, 0xef4e, 0xfec7, 0xcc5c, 0xddd5, 0xa96a, 0xb8e3, 0x8a78, 0x9bf1, 0x7387, 0x620e, 0x5095, 0x411c, 0x35a3, 0x242a, 0x16b1, 0x0738, 0xffcf, 0xee46, 0xdcdd, 0xcd54, 0xb9eb, 0xa862, 0x9af9, 0x8b70, 0x8408, 0x9581, 0xa71a, 0xb693, 0xc22c, 0xd3a5, 0xe13e, 0xf0b7, 0x0840, 0x19c9, 0x2b52, 0x3adb, 0x4e64, 0x5fed, 0x6d76, 0x7cff, 0x9489, 0x8500, 0xb79b, 0xa612, 0xd2ad, 0xc324, 0xf1bf, 0xe036, 0x18c1, 0x0948, 0x3bd3, 0x2a5a, 0x5ee5, 0x4f6c, 0x7df7, 0x6c7e, 0xa50a, 0xb483, 0x8618, 0x9791, 0xe32e, 0xf2a7, 0xc03c, 0xd1b5, 0x2942, 0x38cb, 0x0a50, 0x1bd9, 0x6f66, 0x7eef, 0x4c74, 0x5dfd, 0xb58b, 0xa402, 0x9699, 0x8710, 0xf3af, 0xe226, 0xd0bd, 0xc134, 0x39c3, 0x284a, 0x1ad1, 0x0b58, 0x7fe7, 0x6e6e, 0x5cf5, 0x4d7c, 0xc60c, 0xd785, 0xe51e, 0xf497, 0x8028, 0x91a1, 0xa33a, 0xb2b3, 0x4a44, 0x5bcd, 0x6956, 0x78df, 0x0c60, 0x1de9, 0x2f72, 0x3efb, 0xd68d, 0xc704, 0xf59f, 0xe416, 0x90a9, 0x8120, 0xb3bb, 0xa232, 0x5ac5, 0x4b4c, 0x79d7, 0x685e, 0x1ce1, 0x0d68, 0x3ff3, 0x2e7a, 0xe70e, 0xf687, 0xc41c, 0xd595, 0xa12a, 0xb0a3, 0x8238, 0x93b1, 0x6b46, 0x7acf, 0x4854, 0x59dd, 0x2d62, 0x3ceb, 0x0e70, 0x1ff9, 0xf78f, 0xe606, 0xd49d, 0xc514, 0xb1ab, 0xa022, 0x92b9, 0x8330, 0x7bc7, 0x6a4e, 0x58d5, 0x495c, 0x3de3, 0x2c6a, 0x1ef1, 0x0f78 }; const u8 mt5728_pgm_bin[] = { 0x00, 0x18, 0x00, 0x20, 0x43, 0x03, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x8f, 0x00, 0x00, 0x00, /// 0x10 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /// 0x20 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, /// 0x30 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, /// 0x40 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, /// 0x50 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, /// 0x60 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, /// 0x70 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, /// 0x80 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0xfe, 0xe7, 0xfe, 0xe7, /// 0x90 0xfe, 0xe7, 0xfe, 0xe7, 0xfe, 0xe7, 0x00, 0x00, 0xc0, 0x46, 0xc0, 0x46, 0x00, 0xf0, 0x04, 0xf8, /// 0xa0 0x1f, 0xb5, 0x1f, 0xbd, 0x10, 0xb5, 0x10, 0xbd, 0x00, 0xf0, 0x4e, 0xfa, 0x11, 0x46, 0xff, 0xf7, /// 0xb0 0xf7, 0xff, 0x00, 0xf0, 0x46, 0xf9, 0x00, 0xf0, 0x66, 0xfa, 0x03, 0xb4, 0xff, 0xf7, 0xf2, 0xff, /// 0xc0 0x03, 0xbc, 0x00, 0xf0, 0x89, 0xfa, 0x00, 0x00, 0x01, 0xb5, 0x00, 0xe0, 0x00, 0xbf, 0x00, 0x98, /// 0xd0 0x41, 0x1e, 0x00, 0x91, 0xfa, 0xd2, 0x08, 0xbd, 0x03, 0xe0, 0x0b, 0x78, 0x03, 0x70, 0x40, 0x1c, /// 0xe0 0x49, 0x1c, 0x52, 0x1e, 0xf9, 0xd2, 0x70, 0x47, 0x00, 0xe0, 0x02, 0xc0, 0x52, 0x1e, 0xfc, 0xd2, /// 0xf0 0x70, 0x47, 0x10, 0xb5, 0x07, 0xe0, 0x03, 0x78, 0x0c, 0x78, 0x40, 0x1c, 0x49, 0x1c, 0xa3, 0x42, /// 0x100 0x01, 0xd0, 0x00, 0x20, 0x10, 0xbd, 0x52, 0x1e, 0xf5, 0xd2, 0x01, 0x20, 0x10, 0xbd, 0x70, 0xb5, /// 0x110 0x00, 0x24, 0xef, 0x4d, 0xef, 0x48, 0x1d, 0xe0, 0x11, 0x19, 0x49, 0x78, 0x09, 0x02, 0x41, 0x40, /// 0x120 0x00, 0x20, 0x0e, 0x04, 0x02, 0xd5, 0x49, 0x00, 0x69, 0x40, 0x00, 0xe0, 0x49, 0x00, 0x40, 0x1c, /// 0x130 0x89, 0xb2, 0x08, 0x28, 0xf5, 0xd3, 0x10, 0x5d, 0x00, 0x02, 0x48, 0x40, 0x00, 0x21, 0x06, 0x04, /// 0x140 0x02, 0xd5, 0x40, 0x00, 0x68, 0x40, 0x00, 0xe0, 0x40, 0x00, 0x49, 0x1c, 0x80, 0xb2, 0x08, 0x29, /// 0x150 0xf5, 0xd3, 0xa4, 0x1c, 0x9c, 0x42, 0xdf, 0xd3, 0x70, 0xbd, 0x02, 0x46, 0x00, 0x20, 0x02, 0xe0, /// 0x160 0x13, 0x78, 0x58, 0x40, 0x52, 0x1c, 0x49, 0x1e, 0xfa, 0xd2, 0x70, 0x47, 0xf0, 0xb5, 0x84, 0x46, /// 0x170 0x90, 0x07, 0x00, 0x24, 0x92, 0x08, 0x0d, 0x46, 0x00, 0x28, 0x00, 0xd0, 0x52, 0x1c, 0xd6, 0x49, /// 0x180 0x00, 0x20, 0x88, 0x63, 0xc8, 0x63, 0xd4, 0x4e, 0xd2, 0x4f, 0x40, 0x36, 0x08, 0xe0, 0x0a, 0x20, /// 0x190 0xff, 0xf7, 0x9a, 0xff, 0x20, 0x46, 0x64, 0x1c, 0xb8, 0x42, 0x01, 0xd9, 0x00, 0x20, 0xf0, 0xbd, /// 0x1a0 0x30, 0x69, 0x00, 0x07, 0x00, 0x0f, 0x09, 0x28, 0xf1, 0xd1, 0x00, 0x20, 0x01, 0x21, 0x09, 0x07, /// 0x1b0 0x06, 0xe0, 0x84, 0x00, 0x63, 0x46, 0xe3, 0x18, 0x5b, 0x18, 0x1b, 0x68, 0x40, 0x1c, 0x08, 0xc5, /// 0x1c0 0x90, 0x42, 0xf6, 0xd3, 0x01, 0x20, 0xf0, 0xbd, 0xf0, 0xb5, 0x01, 0x23, 0x1b, 0x07, 0xc6, 0x18, /// 0x1d0 0x90, 0x07, 0x92, 0x08, 0x0c, 0x46, 0x00, 0x28, 0x00, 0xd0, 0x52, 0x1c, 0xbf, 0x48, 0x41, 0x6b, /// 0x1e0 0x83, 0x15, 0x19, 0x43, 0x41, 0x63, 0xbc, 0x4d, 0x30, 0x20, 0xa8, 0x63, 0x01, 0x20, 0xe8, 0x63, /// 0x1f0 0x12, 0xe0, 0x00, 0x27, 0x07, 0xe0, 0x0a, 0x20, 0xff, 0xf7, 0x66, 0xff, 0x38, 0x46, 0xb5, 0x49, /// 0x200 0x7f, 0x1c, 0x88, 0x42, 0x16, 0xd8, 0xb4, 0x48, 0x40, 0x30, 0x00, 0x69, 0x00, 0x07, 0x00, 0x0f, /// 0x210 0x01, 0x28, 0xf0, 0xd1, 0x01, 0xcc, 0x01, 0xc6, 0x52, 0x1e, 0xea, 0xd2, 0xae, 0x4c, 0x00, 0x22, /// 0x220 0xac, 0x4e, 0x40, 0x34, 0x0a, 0xe0, 0x0a, 0x20, 0xff, 0xf7, 0x4e, 0xff, 0x10, 0x46, 0x52, 0x1c, /// 0x230 0xb0, 0x42, 0x03, 0xd9, 0x00, 0x20, 0xe8, 0x63, 0x20, 0x20, 0xf0, 0xbd, 0x20, 0x69, 0x00, 0x07, /// 0x240 0x00, 0x0f, 0x01, 0x28, 0xef, 0xd1, 0x00, 0x20, 0xe8, 0x63, 0x02, 0x20, 0xf0, 0xbd, 0xf0, 0xb5, /// 0x250 0x01, 0x23, 0x1b, 0x07, 0xc0, 0x18, 0xa0, 0x4c, 0x00, 0x26, 0x84, 0x46, 0x0d, 0x46, 0xa6, 0x63, /// 0x260 0x01, 0x20, 0xe0, 0x63, 0x16, 0xe0, 0x00, 0x27, 0x07, 0xe0, 0x0a, 0x20, 0xff, 0xf7, 0x2c, 0xff, /// 0x270 0x38, 0x46, 0x98, 0x49, 0x7f, 0x1c, 0x88, 0x42, 0x1a, 0xd8, 0x97, 0x48, 0x40, 0x30, 0x00, 0x69, /// 0x280 0x00, 0x07, 0x00, 0x0f, 0x01, 0x28, 0xf0, 0xd1, 0x29, 0x78, 0x60, 0x46, 0x01, 0x70, 0x40, 0x1c, /// 0x290 0x84, 0x46, 0x6d, 0x1c, 0x52, 0x1e, 0xe6, 0xd2, 0x8f, 0x4d, 0x00, 0x22, 0x8d, 0x4f, 0x40, 0x35, /// 0x2a0 0x09, 0xe0, 0x0a, 0x20, 0xff, 0xf7, 0x10, 0xff, 0x10, 0x46, 0x52, 0x1c, 0xb8, 0x42, 0x02, 0xd9, /// 0x2b0 0xe6, 0x63, 0x20, 0x20, 0xf0, 0xbd, 0x28, 0x69, 0x00, 0x07, 0x00, 0x0f, 0x01, 0x28, 0xf0, 0xd1, /// 0x2c0 0xe6, 0x63, 0x02, 0x20, 0xf0, 0xbd, 0xff, 0xb5, 0xc1, 0xb0, 0x02, 0x26, 0x1f, 0x46, 0x15, 0x46, /// 0x2d0 0xf1, 0x01, 0x68, 0x46, 0x00, 0xf0, 0x36, 0xf9, 0x01, 0x2f, 0x01, 0xd0, 0x80, 0x4f, 0x25, 0xe0, /// 0x2e0 0x80, 0x4f, 0x23, 0xe0, 0xff, 0x24, 0x01, 0x34, 0xa5, 0x42, 0x00, 0xd8, 0x2c, 0x46, 0x22, 0x46, /// 0x2f0 0x42, 0x99, 0x41, 0x98, 0xb8, 0x47, 0x02, 0x28, 0x01, 0xd0, 0x20, 0x26, 0x18, 0xe0, 0x22, 0x46, /// 0x300 0x69, 0x46, 0x41, 0x98, 0xff, 0xf7, 0x32, 0xff, 0x01, 0x28, 0x06, 0xd1, 0x22, 0x46, 0x69, 0x46, /// 0x310 0x42, 0x98, 0xff, 0xf7, 0xee, 0xfe, 0x00, 0x28, 0xef, 0xd0, 0xa1, 0x08, 0x42, 0x98, 0x89, 0x00, /// 0x320 0x08, 0x18, 0x42, 0x90, 0x41, 0x98, 0x2d, 0x1b, 0x00, 0x19, 0x41, 0x90, 0x00, 0x2d, 0xd9, 0xd1, /// 0x330 0x01, 0x22, 0x52, 0x02, 0x00, 0x21, 0x6c, 0x48, 0xff, 0xf7, 0xd6, 0xfe, 0x30, 0x46, 0x45, 0xb0, /// 0x340 0xf0, 0xbd, 0x08, 0xb5, 0x72, 0xb6, 0x69, 0x48, 0x57, 0x21, 0x41, 0x63, 0x95, 0x21, 0x81, 0x60, /// 0x350 0x67, 0x48, 0x00, 0x27, 0x07, 0x60, 0xff, 0x21, 0x02, 0x31, 0x41, 0x60, 0xc1, 0x68, 0xc2, 0x14, /// 0x360 0x11, 0x43, 0xc1, 0x60, 0x63, 0x4e, 0x02, 0x20, 0x70, 0x61, 0xb0, 0x62, 0x5a, 0x48, 0x3a, 0x46, /// 0x370 0x87, 0x63, 0xc7, 0x63, 0x58, 0x4c, 0x40, 0x34, 0x07, 0xe0, 0x0a, 0x20, 0xff, 0xf7, 0xa4, 0xfe, /// 0x380 0x10, 0x46, 0x54, 0x49, 0x52, 0x1c, 0x88, 0x42, 0x04, 0xd8, 0x20, 0x69, 0x00, 0x07, 0x00, 0x0f, /// 0x390 0x09, 0x28, 0xf2, 0xd1, 0x80, 0x22, 0x58, 0x49, 0x58, 0x48, 0xff, 0xf7, 0xa5, 0xfe, 0x0b, 0x22, /// 0x3a0 0xd2, 0x01, 0x00, 0x21, 0x56, 0x48, 0xff, 0xf7, 0x9f, 0xfe, 0x4f, 0x4c, 0x55, 0x48, 0x08, 0x3c, /// 0x3b0 0x25, 0x46, 0x08, 0x35, 0xa0, 0x60, 0x20, 0x88, 0x01, 0x28, 0x09, 0xd0, 0x20, 0x88, 0x10, 0x28, /// 0x3c0 0x06, 0xd0, 0x20, 0x88, 0x08, 0x28, 0x36, 0xd0, 0x20, 0x88, 0x40, 0x28, 0x56, 0xd0, 0x7a, 0xe0, /// 0x3d0 0x60, 0x88, 0xa1, 0x88, 0x40, 0x18, 0x69, 0x46, 0x08, 0x80, 0x20, 0x88, 0x10, 0x28, 0x02, 0xd0, /// 0x3e0 0x04, 0x23, 0x00, 0x20, 0x08, 0xe0, 0x01, 0x23, 0xfb, 0xe7, 0x6a, 0x46, 0x29, 0x5c, 0x12, 0x88, /// 0x3f0 0x89, 0x18, 0x6a, 0x46, 0x11, 0x80, 0x40, 0x1c, 0xa1, 0x88, 0x81, 0x42, 0xf5, 0xdc, 0xe1, 0x88, /// 0x400 0x68, 0x46, 0x00, 0x88, 0x81, 0x42, 0x01, 0xd0, 0x04, 0x20, 0x12, 0xe0, 0xa0, 0x88, 0x00, 0x28, /// 0x410 0x0e, 0xd0, 0xa2, 0x88, 0x60, 0x88, 0x29, 0x46, 0xff, 0xf7, 0x55, 0xff, 0x20, 0x80, 0x2e, 0x48, /// 0x420 0x87, 0x63, 0xc7, 0x63, 0x2d, 0x48, 0x41, 0x6b, 0x82, 0x15, 0x91, 0x43, 0x41, 0x63, 0x4a, 0xe0, /// 0x430 0x02, 0x20, 0x20, 0x80, 0xbf, 0xe7, 0x68, 0x46, 0x07, 0x80, 0xa0, 0x88, 0x00, 0x21, 0x82, 0x08, /// 0x440 0x28, 0x46, 0xff, 0xf7, 0x51, 0xfe, 0xa2, 0x88, 0x60, 0x88, 0x29, 0x46, 0xff, 0xf7, 0x8e, 0xfe, /// 0x450 0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, 0x08, 0xe0, 0x20, 0x20, 0xea, 0xe7, 0x6a, 0x46, 0x29, 0x5c, /// 0x460 0x12, 0x88, 0x89, 0x18, 0x6a, 0x46, 0x11, 0x80, 0x40, 0x1c, 0xa1, 0x88, 0x81, 0x42, 0xf5, 0xdc, /// 0x470 0x68, 0x46, 0x00, 0x88, 0xe0, 0x80, 0x02, 0x20, 0x20, 0x80, 0x24, 0xe0, 0x30, 0x69, 0x01, 0x21, /// 0x480 0x08, 0x43, 0x30, 0x61, 0xa0, 0x88, 0x00, 0x28, 0x14, 0xd0, 0x30, 0x69, 0x88, 0x43, 0x30, 0x61, /// 0x490 0xa7, 0x60, 0xa3, 0x88, 0x60, 0x88, 0x09, 0x07, 0x42, 0x18, 0x0e, 0x49, 0x0c, 0x48, 0xff, 0xf7, /// 0x4a0 0x36, 0xfe, 0x31, 0x69, 0x01, 0x22, 0x11, 0x43, 0x31, 0x61, 0xe1, 0x88, 0x81, 0x42, 0x03, 0xd1, /// 0x4b0 0x11, 0x02, 0x02, 0xe0, 0x80, 0x20, 0xbc, 0xe7, 0x80, 0x21, 0x21, 0x80, 0xa0, 0x60, 0x30, 0x69, /// 0x4c0 0x40, 0x08, 0x40, 0x00, 0x30, 0x61, 0x30, 0x69, 0x20, 0x21, 0x48, 0x40, 0x30, 0x61, 0x72, 0xe7, /// 0x4d0 0x21, 0x10, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x54, 0x00, 0x40, 0x80, 0x5c, 0x00, 0x40, /// 0x4e0 0xc9, 0x01, 0x00, 0x00, 0x4f, 0x02, 0x00, 0x00, 0x08, 0x00, 0x00, 0x20, 0x00, 0x58, 0x00, 0x40, /// 0x4f0 0x00, 0x5a, 0x00, 0x40, 0x00, 0x60, 0x00, 0x40, 0xef, 0xbe, 0xad, 0xde, 0x00, 0x16, 0x00, 0x20, /// 0x500 0x00, 0x00, 0x00, 0x20, 0x28, 0x57, 0x28, 0x57, 0x01, 0xe0, 0x04, 0xc0, 0x09, 0x1f, 0x04, 0x29, /// 0x510 0xfb, 0xd2, 0x8b, 0x07, 0x01, 0xd5, 0x02, 0x80, 0x80, 0x1c, 0xc9, 0x07, 0x00, 0xd0, 0x02, 0x70, /// 0x520 0x70, 0x47, 0x00, 0x29, 0x0b, 0xd0, 0xc3, 0x07, 0x02, 0xd0, 0x02, 0x70, 0x40, 0x1c, 0x49, 0x1e, /// 0x530 0x02, 0x29, 0x04, 0xd3, 0x83, 0x07, 0x02, 0xd5, 0x02, 0x80, 0x80, 0x1c, 0x89, 0x1e, 0xe3, 0xe7, /// 0x540 0x00, 0x22, 0xee, 0xe7, 0x00, 0x22, 0xdf, 0xe7, 0x75, 0x46, 0x00, 0xf0, 0x25, 0xf8, 0xae, 0x46, /// 0x550 0x05, 0x00, 0x69, 0x46, 0x53, 0x46, 0xc0, 0x08, 0xc0, 0x00, 0x85, 0x46, 0x18, 0xb0, 0x20, 0xb5, /// 0x560 0x00, 0xf0, 0x1e, 0xf8, 0x60, 0xbc, 0x00, 0x27, 0x49, 0x08, 0xb6, 0x46, 0x00, 0x26, 0xc0, 0xc5, /// 0x570 0xc0, 0xc5, 0xc0, 0xc5, 0xc0, 0xc5, 0xc0, 0xc5, 0xc0, 0xc5, 0xc0, 0xc5, 0xc0, 0xc5, 0x40, 0x3d, /// 0x580 0x49, 0x00, 0x8d, 0x46, 0x70, 0x47, 0x10, 0xb5, 0x04, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0x20, 0x46, /// 0x590 0xff, 0xf7, 0x93, 0xfd, 0x10, 0xbd, 0x00, 0x00, 0x00, 0x48, 0x70, 0x47, 0x08, 0x08, 0x00, 0x20, /// 0x5a0 0x00, 0xb5, 0x85, 0xb0, 0x69, 0x46, 0x01, 0xaa, 0x09, 0x48, 0x0a, 0x60, 0xab, 0xbe, 0x01, 0x98, /// 0x5b0 0x00, 0x28, 0x03, 0xd1, 0x05, 0x48, 0x07, 0x21, 0x40, 0x18, 0x88, 0x43, 0x03, 0x99, 0x02, 0x9a, /// 0x5c0 0x04, 0x9b, 0x05, 0xb0, 0x00, 0xbd, 0x00, 0xbf, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /// 0x5d0 0x16, 0x00, 0x00, 0x00, 0x70, 0x47, 0x00, 0x00, 0x01, 0x49, 0x18, 0x20, 0xab, 0xbe, 0xfe, 0xe7, /// 0x5e0 0x26, 0x00, 0x02, 0x00, }; const u8 MT572x_TxSRAM_bin[] = { 0x00,0x08,0x00,0x20,0x17,0x09,0x00,0x20,0x91,0x08,0x00,0x20,0x93,0x08,0x00,0x20,0x00,0x00,0x00,0x00,0x44, 0x0e,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x95,0x08,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x97,0x08,0x00,0x20,0x65,0x0a,0x00, 0x20,0x7b,0x0f,0x00,0x20,0xad,0x0f,0x00,0x20,0xb9,0x0f,0x00,0x20,0xc5,0x0f,0x00,0x20,0xd1,0x0f,0x00,0x20, 0xd9,0x0f,0x00,0x20,0xe1,0x0f,0x00,0x20,0xed,0x0f,0x00,0x20,0xf9,0x0f,0x00,0x20,0x00,0x00,0x00,0x00,0x05, 0x10,0x00,0x20,0x11,0x10,0x00,0x20,0x1d,0x10,0x00,0x20,0x33,0x10,0x00,0x20,0x87,0x10,0x00,0x20,0x8f,0x10, 0x00,0x20,0x05,0x11,0x00,0x20,0x0d,0x11,0x00,0x20,0x21,0x11,0x00,0x20,0x55,0x11,0x00,0x20,0xfe,0xe7,0xfe, 0xe7,0xfe,0xe7,0xfe,0xe7,0xfe,0xe7,0x00,0x00,0xf0,0xb5,0x62,0x4b,0x62,0x4d,0x5a,0x68,0x1e,0x1d,0x14,0x68, 0x72,0xb6,0x08,0xe0,0x0c,0x3a,0x97,0x68,0x87,0x42,0x02,0xd1,0x22,0xc2,0x62,0xb6,0xf0,0xbd,0x22,0x46,0x24, 0x68,0xb2,0x42,0xf4,0xd1,0x00,0x24,0x14,0x22,0x62,0x43,0xd2,0x18,0x56,0x69,0x0c,0x32,0x00,0x2e,0x04,0xd0, 0x64,0x1c,0x08,0x2c,0xf5,0xdb,0x62,0xb6,0xf0,0xbd,0x90,0x60,0x53,0x48,0x40,0x1c,0x81,0x42,0x03,0xd1,0x01, 0x21,0x11,0x60,0x50,0x60,0x01,0xe0,0x22,0xc2,0x08,0x3a,0x0c,0x32,0x98,0x68,0x9a,0x60,0x1b,0x1d,0x13,0x60, 0x50,0x60,0x02,0x60,0xea,0xe7,0x4b,0x48,0x80,0x68,0x00,0x07,0x04,0xd4,0x4a,0x48,0x08,0x22,0x41,0x79,0x11, 0x43,0x41,0x71,0x70,0x47,0x48,0x48,0x57,0x21,0x41,0x63,0x95,0x22,0x82,0x60,0x72,0xb6,0x47,0x48,0x45,0x4a, 0x42,0x60,0x00,0x24,0x04,0x60,0x45,0x4a,0x51,0x60,0xe8,0x21,0x81,0x60,0xc1,0x14,0xc1,0x60,0x41,0x48,0x40, 0x30,0x41,0x69,0x3c,0x48,0x10,0x22,0x80,0x30,0x00,0x29,0x02,0xd1,0x01,0x69,0x11,0x43,0x01,0x61,0x3e,0x49, 0x0b,0x6b,0x93,0x43,0x0b,0x63,0x4b,0x6b,0x93,0x43,0x4b,0x63,0x41,0x6b,0x02,0x22,0x11,0x43,0x41,0x63,0x40, 0x22,0x39,0x49,0x39,0x48,0x00,0xf0,0x91,0xf8,0xff,0x22,0xc1,0x32,0x00,0x21,0x37,0x48,0x00,0xf0,0x8b,0xf8, 0x38,0x48,0x36,0x49,0x41,0x61,0x37,0x4a,0x07,0x23,0xd5,0x69,0x04,0x21,0x2d,0x02,0x2d,0x0a,0x46,0x04,0x35, 0x43,0xd5,0x61,0x84,0x61,0x03,0x61,0x24,0x48,0x00,0x1d,0x00,0x60,0x40,0x60,0xa8,0x30,0x00,0x60,0x40,0x60, 0x23,0x48,0x41,0x71,0x01,0xf0,0x59,0xf9,0x00,0xf0,0x00,0xf8,0x62,0xb6,0x1d,0x48,0x08,0xb5,0x00,0x1d,0x00, 0x90,0x1b,0x49,0x08,0x68,0x87,0x1b,0x06,0x46,0x48,0x68,0x2a,0xe0,0x04,0x46,0x0c,0x3c,0x18,0x4a,0x61,0x68, 0x91,0x42,0x02,0xd1,0x00,0x20,0x60,0x60,0x20,0xe0,0x21,0x68,0xb9,0x42,0x01,0xd9,0xc9,0x1b,0x00,0xe0,0x00, 0x21,0x21,0x60,0x00,0x29,0x17,0xd1,0x10,0x4a,0x61,0x68,0x52,0x1c,0x91,0x42,0x04,0xd1,0xa0,0x68,0x80,0x47, 0x01,0x20,0x20,0x60,0x0d,0xe0,0xa2,0x68,0x72,0xb6,0x0a,0xc8,0x08,0x38,0x4b,0x60,0x0a,0xc8,0x19,0x60,0x00, 0x21,0x08,0x38,0x01,0x60,0x41,0x60,0xa1,0x60,0x62,0xb6,0x90,0x47,0x28,0x46,0x00,0x99,0x05,0x68,0x88,0x42, 0xca,0xd0,0xcf,0xe7,0x00,0x00,0x80,0x01,0x00,0x20,0xfe,0xff,0xff,0x7f,0x00,0x5c,0x00,0x40,0x00,0x00,0x00, 0x20,0x00,0x58,0x00,0x40,0x03,0x03,0x00,0x00,0x00,0x5a,0x00,0x40,0x40,0x52,0x00,0x40,0x00,0x60,0x00,0x40, 0xef,0xbe,0xad,0xde,0x00,0x07,0x00,0x20,0x00,0x00,0x00,0x20,0x0f,0x27,0x00,0x00,0x00,0xe0,0x00,0xe0,0x04, 0xed,0x00,0xe0,0x02,0x48,0x01,0x68,0x49,0x1c,0x01,0x60,0x70,0x47,0x00,0x00,0x80,0x01,0x00,0x20,0x01,0xb5, 0x00,0xe0,0x00,0xbf,0x00,0x98,0x41,0x1e,0x00,0x91,0xfa,0xd2,0x08,0xbd,0x01,0xe0,0x01,0x70,0x40,0x1c,0x52, 0x1e,0xfb,0xd2,0x70,0x47,0x00,0xe0,0x02,0xc0,0x52,0x1e,0xfc,0xd2,0x70,0x47,0x03,0xe0,0x0b,0x78,0x03,0x70, 0x40,0x1c,0x49,0x1c,0x52,0x1e,0xf9,0xd2,0x70,0x47,0x03,0xe0,0x0b,0x88,0x03,0x80,0x80,0x1c,0x89,0x1c,0x52, 0x1e,0xf9,0xd2,0x70,0x47,0x01,0xe0,0x08,0xc9,0x08,0xc0,0x52,0x1e,0xfb,0xd2,0x70,0x47,0x10,0xb5,0x07,0xe0, 0x03,0x78,0x0c,0x78,0x40,0x1c,0x49,0x1c,0xa3,0x42,0x01,0xd0,0x00,0x20,0x10,0xbd,0x13,0x46,0x52,0x1e,0xd2, 0xb2,0x00,0x2b,0xf2,0xd1,0x01,0x20,0x10,0xbd,0x20,0x28,0x01,0xd2,0x01,0x20,0x70,0x47,0x80,0x28,0x03,0xd2, 0x20,0x38,0x00,0x11,0x80,0x1c,0x70,0x47,0xe0,0x28,0x03,0xd2,0x80,0x38,0xc0,0x10,0x08,0x30,0x70,0x47,0xe0, 0x38,0x80,0x10,0x14,0x30,0x70,0x47,0x02,0x46,0x00,0x20,0x02,0xe0,0x13,0x78,0x58,0x40,0x52,0x1c,0x49,0x1e, 0xfa,0xd2,0x70,0x47,0x30,0xb5,0xac,0x4c,0x03,0x9d,0x20,0x70,0x90,0xb2,0x20,0x61,0x10,0x0c,0x60,0x61,0x88, 0xb2,0x60,0x60,0x08,0x0c,0xa0,0x60,0x02,0xe0,0x18,0x78,0xe0,0x60,0x5b,0x1c,0x6d,0x1e,0xfa,0xd2,0x20,0x69, 0x61,0x69,0x09,0x04,0x08,0x43,0x30,0xbd,0xa1,0x4a,0x13,0x78,0x9b,0x08,0x9b,0x00,0x13,0x70,0x03,0x78,0x93, 0x61,0x40,0x1c,0x49,0x1e,0x02,0xd3,0x03,0x78,0xd3,0x61,0xf9,0xe7,0x90,0x69,0xc0,0xb2,0x70,0x47,0x70,0xb5, 0x00,0x26,0x74,0x1e,0x33,0x46,0x35,0x46,0x09,0xe0,0x6a,0x00,0x82,0x5a,0xa2,0x42,0x00,0xd8,0x14,0x46,0x9a, 0x42,0x00,0xd3,0x13,0x46,0x96,0x19,0x6d,0x1c,0x8d,0x42,0xf3,0xd3,0xf0,0x1a,0x00,0x1b,0x89,0x1e,0x00,0xf0, 0x29,0xf9,0x70,0xbd,0x70,0xb5,0x1c,0x00,0x01,0xd4,0x1d,0x46,0x00,0xe0,0x65,0x42,0x48,0x43,0x11,0x46,0x00, 0xf0,0x1e,0xf9,0x00,0x2c,0x05,0xda,0xa8,0x42,0x01,0xd9,0x40,0x1b,0x02,0xe0,0x00,0x20,0x00,0xe0,0x00,0x19, 0x80,0xb2,0x70,0xbd,0xfe,0xb5,0x83,0x49,0x04,0x23,0xcb,0x5e,0xc9,0x88,0x40,0x22,0xff,0xf7,0xe3,0xff,0x0b, 0x21,0x00,0xf0,0x08,0xf9,0x00,0x90,0x7f,0x48,0x41,0x79,0x7f,0x48,0x4a,0x07,0x03,0xd5,0x3c,0x23,0xc3,0x5e, 0xc1,0x8f,0x1c,0xe0,0xc9,0x07,0x7c,0xd0,0x7a,0x48,0x38,0x24,0x04,0x5f,0x00,0x2c,0x02,0xd1,0x41,0x8f,0x00, 0x29,0xf1,0xd0,0x00,0x98,0x0a,0x21,0x32,0x38,0x00,0xf0,0xef,0xf8,0x0a,0x21,0x40,0x1d,0x00,0xf0,0xeb,0xf8, 0xc2,0xb2,0x04,0x2a,0x01,0xd2,0x70,0x48,0xe3,0xe7,0x6f,0x48,0x06,0x2a,0x04,0xd9,0x41,0x8f,0x23,0x46,0xff, 0x22,0x01,0x32,0x3d,0xe0,0xc0,0x30,0x81,0x88,0x43,0x88,0x7d,0x26,0xcd,0x1a,0x6f,0xb2,0x05,0x8f,0xb6,0x01, 0x68,0x48,0xb5,0x42,0x07,0xd9,0x55,0x00,0x28,0x18,0x20,0x38,0x8f,0x25,0xed,0x01,0x46,0x7e,0xad,0x7b,0x06, 0xe0,0x55,0x00,0x28,0x18,0x20,0x38,0x8f,0x25,0xed,0x01,0x46,0x7e,0xed,0x7b,0x00,0x7e,0x76,0x19,0x40,0x19, 0x45,0xb2,0x5e,0x48,0x76,0xb2,0x06,0x70,0x45,0x70,0x41,0x80,0x5a,0x49,0x83,0x80,0x4b,0x8f,0xc3,0x80,0x04, 0x81,0xc9,0x8f,0x9c,0x46,0x8e,0x46,0x41,0x81,0x55,0x49,0x3c,0x23,0xcb,0x5e,0x83,0x81,0x00,0x99,0x01,0x61, 0x02,0x75,0xaf,0x42,0x03,0xda,0x23,0x46,0x42,0x15,0x61,0x46,0x04,0xe0,0xb7,0x42,0x06,0xdd,0xff,0x22,0x01, 0x32,0x71,0x46,0x00,0x98,0xff,0xf7,0x75,0xff,0xfe,0xbd,0x23,0x46,0xff,0x24,0x01,0x34,0x22,0x46,0x61,0x46, 0x00,0x98,0xff,0xf7,0x6c,0xff,0x01,0x90,0x46,0x48,0x3c,0x23,0xc3,0x5e,0xc1,0x8f,0x22,0x46,0x00,0x98,0xff, 0xf7,0x63,0xff,0x79,0x1b,0x41,0x43,0x01,0x98,0xf2,0x1b,0x42,0x43,0x88,0x18,0x71,0x1b,0x00,0xf0,0x98,0xf8, 0x80,0xb2,0xfe,0xbd,0xff,0xe7,0x00,0x20,0xfb,0xe7,0xf0,0xb5,0x1d,0x78,0x00,0x24,0x00,0x2d,0x01,0xd1,0x05, 0x68,0x2c,0x80,0x00,0x29,0x11,0x78,0x11,0xd0,0x00,0x29,0x07,0xd0,0x02,0x68,0x1e,0x78,0x11,0x88,0x02,0x25, 0xb5,0x40,0x29,0x43,0x11,0x80,0x14,0xe0,0x06,0x68,0x1f,0x78,0x35,0x88,0x01,0x21,0xb9,0x40,0x0d,0x43,0x35, 0x80,0x01,0xe0,0x00,0x29,0x01,0xd0,0x14,0x70,0x08,0xe0,0x05,0x68,0x1f,0x78,0x29,0x88,0x03,0x26,0xbe,0x40, 0x31,0x43,0x29,0x80,0x01,0x21,0x11,0x70,0x19,0x78,0x89,0x1c,0xc9,0xb2,0x19,0x70,0x10,0x29,0x03,0xd3,0x1c, 0x70,0x01,0x68,0x89,0x1c,0x01,0x60,0xf0,0xbd,0xf7,0xb5,0x82,0xb0,0x0d,0x46,0x84,0x46,0x00,0x20,0x69,0x46, 0x08,0x70,0x08,0x71,0x26,0xe0,0x00,0x21,0x04,0xa8,0xff,0xf7,0xbf,0xff,0x00,0x26,0x34,0x46,0x60,0x46,0x00, 0x78,0x01,0xab,0xe0,0x40,0xc7,0x07,0xff,0x0f,0x6a,0x46,0x39,0x46,0x04,0xa8,0xff,0xf7,0xb2,0xff,0xf0,0x19, 0x64,0x1c,0xe4,0xb2,0xc6,0xb2,0x08,0x2c,0xee,0xd3,0xf1,0x07,0xc9,0x0f,0x01,0xab,0x6a,0x46,0x04,0xa8,0xff, 0xf7,0xa5,0xff,0x01,0xab,0x6a,0x46,0x01,0x21,0x04,0xa8,0xff,0xf7,0x9f,0xff,0x60,0x46,0x40,0x1c,0x84,0x46, 0x28,0x46,0x6d,0x1e,0xad,0xb2,0x00,0x28,0x01,0xab,0x6a,0x46,0xd1,0xd1,0x01,0x21,0x04,0xa8,0xff,0xf7,0x91, 0xff,0x05,0xb0,0xf0,0xbd,0x00,0x20,0x00,0x40,0x14,0x03,0x00,0x20,0x00,0x00,0x00,0x20,0xd4,0x02,0x00,0x20, 0x88,0x5b,0x00,0x40,0x00,0x10,0x00,0x20,0x30,0xb5,0x0b,0x46,0x01,0x46,0x00,0x20,0x20,0x22,0x01,0x24,0x09, 0xe0,0x0d,0x46,0xd5,0x40,0x9d,0x42,0x05,0xd3,0x1d,0x46,0x95,0x40,0x49,0x1b,0x25,0x46,0x95,0x40,0x40,0x19, 0x15,0x46,0x52,0x1e,0x00,0x2d,0xf1,0xdc,0x30,0xbd,0x70,0xb5,0x00,0x24,0x25,0x46,0x00,0x28,0x01,0xda,0x01, 0x24,0x40,0x42,0x00,0x29,0x01,0xda,0x01,0x25,0x49,0x42,0xff,0xf7,0xdd,0xff,0xac,0x42,0x00,0xd0,0x40,0x42, 0x00,0x2c,0x00,0xd0,0x49,0x42,0x70,0xbd,0x28,0x57,0x88,0x01,0x04,0x00,0x00,0x00,0xf1,0x45,0x00,0x40,0x5f, 0x1c,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x13, 0xc0,0x5d,0x10,0x27,0x20,0x1c,0xd0,0x07,0xb8,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x00,0x19,0x00,0xc4, 0x09,0x32,0x00,0x60,0x00,0xdc,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x96,0x00,0x2c,0x01,0x64,0x00,0x00,0x00,0x64,0x00,0xc8,0x00,0x06,0x00,0x90,0x01,0xc8, 0x00,0x64,0x00,0x2c,0x01,0x58,0x02,0x84,0x03,0x50,0x00,0x64,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x06,0x00,0x05,0x03,0x02,0x03,0x03,0x02,0x03, 0x03,0x0a,0x07,0x00,0x05,0x07,0x07,0x00,0x05,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x80,0x1c,0x80,0x1f,0x80,0x22,0x80,0x2a,0x82,0x28,0x84,0x28,0x00,0x00,0x00,0x00,0x80,0x17,0x80,0x1f,0x80, 0x22,0x80,0x2a,0x82,0x28,0x84,0x28,0x87,0x2b,0x87,0x2d,0x84,0x01,0x1e,0x03,0xc7,0x01,0xf4,0x01,0xac,0x0d, 0x94,0x11,0x50,0x46,0x4c,0x1d,0x00,0x00,0x00,0x00,0x55,0x00,0x05,0xff,0xd0,0x07,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x86,0x49,0x0a,0x69,0x02,0x43,0x0a,0x61,0xc9, 0x68,0x01,0x42,0x04,0xd0,0x84,0x48,0x01,0x69,0xc2,0x13,0x91,0x43,0x01,0x61,0x70,0x47,0x80,0x49,0x0a,0x69, 0x82,0x43,0x0a,0x61,0x08,0x69,0xc9,0x68,0x08,0x42,0x04,0xd1,0x7d,0x48,0x01,0x69,0xc2,0x13,0x11,0x43,0x01, 0x61,0x70,0x47,0x10,0xb5,0x7a,0x48,0x81,0x68,0xc2,0x68,0x81,0x60,0xc2,0x60,0x00,0x69,0x80,0x06,0x0e,0xd5, 0xff,0x20,0x02,0x30,0x01,0x42,0x0a,0xd0,0x72,0x48,0x40,0x79,0xc0,0x07,0x02,0xd0,0x01,0x21,0x73,0x48,0x01, 0xe0,0x01,0x21,0x72,0x48,0xff,0xf7,0x79,0xfc,0x10,0xbd,0x71,0x48,0x01,0x69,0x42,0x69,0x11,0x40,0x01,0x61, 0x70,0x47,0x6f,0x48,0x81,0x69,0x42,0x69,0x11,0x40,0x81,0x61,0x70,0x47,0x6d,0x48,0x81,0x69,0x42,0x69,0x11, 0x40,0x81,0x61,0x70,0x47,0x6b,0x48,0x81,0x68,0x81,0x60,0x70,0x47,0x62,0x48,0x41,0x68,0x41,0x60,0x70,0x47, 0x68,0x48,0x41,0x69,0x02,0x69,0x11,0x40,0x41,0x61,0x70,0x47,0x66,0x48,0x41,0x69,0x02,0x69,0x11,0x40,0x41, 0x61,0x70,0x47,0x64,0x48,0x41,0x69,0x02,0x69,0x11,0x40,0x41,0x61,0x70,0x47,0x62,0x48,0x41,0x69,0x02,0x69, 0x11,0x40,0x41,0x61,0x70,0x47,0x60,0x48,0x81,0x6a,0x42,0x6a,0x11,0x40,0x81,0x62,0x70,0x47,0x10,0xb5,0x5e, 0x49,0x88,0x68,0x4a,0x68,0x10,0x40,0x88,0x60,0x40,0x06,0x01,0xd5,0x00,0xf0,0x50,0xfb,0x10,0xbd,0x70,0xb5, 0x59,0x48,0x00,0x24,0x05,0x69,0x41,0x69,0x0d,0x40,0x05,0x61,0x47,0x48,0x40,0x79,0x41,0x07,0x0c,0xd5,0x01, 0x26,0x30,0x46,0xa0,0x40,0x28,0x42,0x02,0xd0,0x20,0x46,0x00,0xf0,0x5c,0xf9,0x64,0x1c,0xe4,0xb2,0x08,0x2c, 0xf4,0xd3,0x70,0xbd,0xc0,0x07,0xfc,0xd0,0x68,0x04,0x08,0xd4,0xa8,0x04,0x01,0xd5,0x01,0x20,0x02,0xe0,0xe8, 0x04,0x02,0xd5,0x00,0x20,0x00,0xf0,0xa6,0xf8,0x48,0x48,0x00,0x68,0x48,0x49,0x88,0x60,0x70,0xbd,0x48,0x48, 0x81,0x68,0x81,0x60,0x70,0x47,0x10,0xb5,0x46,0x48,0x81,0x68,0x81,0x60,0x89,0x07,0x33,0xd5,0x33,0x49,0x0a, 0x6a,0x52,0x08,0x52,0x00,0x0a,0x62,0x00,0x21,0x01,0x60,0x41,0x60,0x41,0x48,0x42,0x7b,0xfd,0x21,0x0a,0x40, 0x42,0x73,0x3f,0x48,0x3e,0x4a,0xc0,0x7d,0x40,0x32,0x10,0x73,0x3c,0x48,0x20,0x38,0x82,0x68,0x12,0x07,0x03, 0xd5,0x82,0x68,0x08,0x23,0x1a,0x43,0x82,0x60,0x39,0x48,0x02,0x7c,0x33,0x4c,0x92,0x07,0x05,0xd5,0x22,0x68, 0x12,0x07,0x02,0xd5,0x02,0x7c,0x0a,0x40,0x02,0x74,0x20,0x68,0x00,0x05,0x03,0xd5,0x01,0x21,0x33,0x48,0xff, 0xf7,0xd4,0xfb,0x20,0x68,0x00,0x04,0x03,0xd4,0xe1,0x68,0xa0,0x6c,0xff,0xf7,0xcd,0xfb,0x10,0xbd,0x2e,0x48, 0x81,0x68,0x81,0x60,0x70,0x47,0x70,0xb5,0x28,0x4d,0x20,0x3d,0xac,0x68,0x20,0x07,0x01,0xd5,0x00,0xf0,0x24, 0xfa,0xac,0x60,0x70,0xbd,0x25,0x48,0x00,0xb5,0x40,0x38,0x81,0x68,0x42,0x68,0x11,0x40,0x81,0x60,0xc9,0x06, 0x0f,0xd5,0x0b,0x49,0x49,0x79,0x49,0x07,0x0b,0xd5,0x00,0x21,0x01,0x62,0x1c,0x4a,0xf0,0x20,0x50,0x77,0x1a, 0x48,0x20,0x30,0x41,0x70,0x00,0x15,0xff,0xf7,0xfa,0xfe,0xfe,0xe7,0x00,0xbd,0x1b,0x48,0x81,0x68,0x42,0x68, 0x11,0x40,0x81,0x60,0x70,0x47,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0x40,0x00,0x50,0x00,0x40,0x2f,0x40,0x00, 0x40,0xb3,0x1b,0x00,0x20,0x00,0x52,0x00,0x40,0x00,0x30,0x00,0x40,0x00,0x32,0x00,0x40,0x00,0x36,0x00,0x40, 0x00,0x22,0x00,0x40,0x00,0x24,0x00,0x40,0x00,0x26,0x00,0x40,0x00,0x2c,0x00,0x40,0x00,0x20,0x00,0x40,0x00, 0x40,0x00,0x40,0x00,0x42,0x00,0x40,0x80,0x01,0x00,0x20,0xd4,0x02,0x00,0x20,0x00,0x4a,0x00,0x40,0x00,0x44, 0x00,0x40,0x20,0x46,0x00,0x40,0xd4,0x03,0x00,0x20,0x40,0x48,0x00,0x40,0x11,0x4c,0x00,0x40,0x00,0x5c,0x00, 0x40,0x00,0x54,0x00,0x40,0x03,0xb4,0x01,0x48,0x01,0x90,0x01,0xbd,0x45,0x4e,0x00,0x40,0x9a,0x48,0x81,0x68, 0x04,0x22,0x11,0x43,0x81,0x60,0x9a,0x48,0x98,0x49,0x01,0x63,0x01,0x21,0x41,0x63,0xff,0x21,0x98,0x48,0x04, 0x31,0x41,0x60,0x96,0x49,0x97,0x4a,0x40,0x31,0x4a,0x60,0x96,0x4a,0x4a,0x63,0x33,0x22,0xca,0x63,0x03,0x22, 0x0a,0x60,0x94,0x4a,0x02,0x62,0x94,0x4a,0x42,0x62,0x30,0x22,0x82,0x62,0x91,0x4a,0x08,0x32,0x8a,0x62,0xff, 0x21,0x41,0x61,0x80,0x21,0x01,0x60,0x70,0x47,0x70,0xb5,0x00,0x20,0x8e,0x4a,0x01,0x46,0x43,0x01,0x9b,0x18, 0xff,0x33,0xa1,0x33,0x40,0x1c,0x19,0x71,0x08,0x28,0xf7,0xdb,0x8a,0x48,0x8a,0x4c,0xc0,0x6a,0x2c,0x34,0x03, 0x68,0x0c,0xe0,0x06,0x46,0x72,0xb6,0x24,0xc8,0x18,0x3e,0x55,0x60,0x08,0x38,0x2a,0x60,0x01,0x60,0x41,0x60, 0x31,0x70,0x62,0xb6,0x18,0x46,0x1b,0x68,0xa0,0x42,0xf0,0xd1,0x81,0x48,0x81,0x75,0x70,0xbd,0xf8,0xb5,0x47, 0x01,0x7c,0x48,0x0d,0x46,0x3e,0x18,0x34,0x46,0xff,0x34,0xa1,0x34,0xa1,0x79,0x16,0x29,0x0b,0xd2,0x00,0x29, 0x0c,0xd1,0x28,0x46,0xff,0xf7,0x30,0xfc,0xc0,0xb2,0x00,0x2d,0x01,0xd0,0x14,0x28,0x02,0xd9,0x00,0x20,0x20, 0x71,0xf8,0xbd,0x80,0x1c,0x20,0x72,0x70,0x49,0xa0,0x79,0xff,0x37,0x41,0x18,0x40,0x1c,0xa0,0x71,0xab,0x37, 0xcd,0x55,0xe0,0x79,0x68,0x40,0xe0,0x71,0xa2,0x79,0x21,0x7a,0x8a,0x42,0xed,0xd1,0x69,0x4a,0x05,0x23,0x80, 0x32,0xd2,0x6a,0x9b,0x02,0x13,0x40,0x01,0x24,0x67,0x4d,0x00,0x2b,0x01,0xd1,0xd2,0x07,0x03,0xd0,0xac,0x75, 0x0a,0x20,0x28,0x75,0xf8,0xbd,0x00,0x28,0x28,0x7d,0x07,0xd0,0x08,0x28,0xf9,0xd1,0x03,0x29,0xf7,0xd1,0x60, 0x48,0x00,0xf0,0x21,0xfc,0xf8,0xbd,0x00,0x28,0xfc,0xd0,0x30,0x46,0xff,0x30,0xab,0x30,0x00,0xf0,0x88,0xfa, 0xa8,0x7d,0x00,0x28,0xf4,0xd1,0xac,0x75,0x02,0x21,0x59,0x48,0xff,0xf7,0xc7,0xfa,0xf8,0xbd,0xf8,0xb5,0x4e, 0x49,0x07,0x46,0x80,0x00,0x80,0x31,0x40,0x18,0x01,0x68,0x7a,0x01,0x48,0x05,0x46,0x0f,0x4e,0x48,0x14,0x18, 0xff,0x34,0xa1,0x34,0x05,0x2e,0x1a,0xd0,0x00,0x20,0x4b,0x4d,0x7b,0x01,0x5b,0x19,0xc0,0xb2,0xff,0x33,0x60, 0x71,0xa1,0x33,0xf7,0x22,0x1b,0x79,0x14,0x28,0x03,0xd8,0x0a,0x28,0x05,0xd9,0x18,0x07,0x03,0xd4,0x04,0x20, 0x03,0x43,0x13,0x40,0x23,0x71,0x20,0x79,0x05,0x2e,0x06,0xd2,0xfb,0x21,0x08,0x40,0x10,0x40,0x67,0xe0,0x60, 0x79,0x40,0x1c,0xe2,0xe7,0x3c,0x4d,0x7b,0x01,0x5d,0x19,0xff,0x35,0x42,0x07,0x81,0x35,0x00,0x2a,0x20,0xda, 0x06,0x2e,0x1e,0xd3,0x00,0xf0,0xdc,0xfb,0x20,0x79,0xfb,0x21,0x08,0x40,0x08,0x21,0x08,0x43,0x00,0x21,0x20, 0x71,0xa1,0x71,0xe1,0x71,0x06,0x2e,0x07,0xd0,0x01,0x22,0x10,0x43,0x20,0x71,0x03,0x20,0x00,0x02,0x28,0x84, 0x69,0x84,0xf8,0xbd,0x03,0x21,0x08,0x43,0x20,0x71,0x01,0x20,0x40,0x02,0x28,0x84,0x11,0x20,0x40,0x02,0x68, 0x84,0xf8,0xbd,0x02,0x07,0xfc,0xd5,0x22,0x4a,0x40,0x32,0x11,0x61,0xc1,0x07,0x1a,0xd0,0x07,0x2e,0x05,0xd1, 0x29,0x8c,0x89,0x04,0x02,0xd5,0x40,0x08,0x40,0x00,0x11,0xe0,0x1b,0x49,0x2a,0x8c,0x40,0x31,0x4a,0x61,0x89, 0x69,0x89,0xb2,0x29,0x84,0x0a,0x04,0x09,0xd5,0xca,0x04,0xf1,0xd5,0xc9,0xb2,0xf8,0xb2,0xff,0xf7,0x37,0xff, 0x20,0x79,0xfd,0x21,0x08,0x40,0x20,0x71,0x20,0x79,0x81,0x07,0xd9,0xd5,0x07,0x2e,0x02,0xd1,0x69,0x8c,0x89, 0x04,0x13,0xd4,0x0e,0x49,0x6a,0x8c,0x40,0x31,0x4a,0x61,0x89,0x69,0x89,0xb2,0x69,0x84,0x0a,0x04,0xcb,0xd5, 0xca,0x04,0x08,0xd5,0xc9,0xb2,0xf8,0xb2,0xff,0xf7,0x1c,0xff,0x20,0x79,0x40,0x08,0x40,0x00,0x20,0x71,0xf8, 0xbd,0xfd,0x21,0x08,0x40,0xfa,0xe7,0x00,0x5a,0x00,0x40,0x39,0x70,0x00,0x00,0x40,0x5c,0x00,0x40,0x00,0x42, 0x00,0x40,0x18,0x09,0x00,0x00,0x0c,0x0c,0x00,0x00,0x07,0x0f,0x00,0x00,0x19,0x23,0x00,0x00,0xd4,0x02,0x00, 0x20,0x00,0x02,0x00,0x20,0x34,0x04,0x00,0x20,0xdc,0x05,0x00,0x00,0xf3,0x18,0x00,0x20,0x70,0xb5,0x84,0x1e, 0x63,0x08,0x1a,0x46,0x4a,0x43,0x15,0x0a,0x89,0x4a,0x00,0x26,0x96,0x61,0xd3,0x61,0x15,0x62,0xeb,0x18,0x53, 0x62,0x14,0x61,0x86,0x4b,0x9b,0x78,0x13,0x63,0x13,0x68,0x80,0x24,0x23,0x43,0x13,0x60,0x84,0x4a,0x10,0x81, 0x10,0x46,0x20,0x30,0xc1,0x75,0x70,0xbd,0xf8,0xb5,0x81,0x48,0x10,0x24,0x81,0x68,0x00,0x25,0x42,0x22,0x11, 0x43,0x81,0x60,0x7d,0x48,0xc0,0x38,0x81,0x6a,0x04,0x22,0x11,0x43,0x81,0x62,0x7a,0x4f,0x21,0x46,0x38,0x89, 0xff,0xf7,0xd2,0xff,0x79,0x4e,0x00,0x20,0x30,0x70,0x79,0x4a,0xff,0x21,0x11,0x70,0x30,0x77,0x76,0x48,0x0f, 0x21,0x20,0x38,0x81,0x62,0x01,0x20,0x30,0x70,0xf5,0x20,0x70,0x77,0x32,0x20,0xff,0xf7,0xc0,0xfa,0xf0,0x20, 0x70,0x77,0x6f,0x49,0x20,0x31,0x48,0x70,0x27,0x20,0x48,0x77,0x69,0x48,0x01,0x68,0x01,0x22,0x11,0x43,0x01, 0x60,0x67,0x4e,0x16,0xe0,0x61,0x1d,0x88,0x42,0x01,0xd9,0x64,0x1d,0x00,0xe0,0x04,0x46,0xe1,0xb2,0x38,0x89, 0xff,0xf7,0xa8,0xff,0x14,0x20,0xff,0xf7,0xa5,0xfa,0x77,0x2d,0x03,0xd2,0x11,0x35,0x61,0x48,0xed,0xb2,0x05, 0x77,0x5c,0x48,0x01,0x68,0x09,0x06,0xfc,0xd4,0xf0,0x78,0xa0,0x42,0xe5,0xd8,0x5c,0x48,0x20,0x38,0x41,0x68, 0x08,0x22,0x11,0x43,0x41,0x60,0x01,0x68,0x01,0x22,0x11,0x43,0x01,0x60,0x57,0x48,0x01,0x78,0x04,0x22,0x11, 0x43,0x01,0x70,0xf8,0xbd,0xf8,0xb5,0x54,0x4d,0x28,0x78,0xfb,0x21,0x08,0x40,0x28,0x70,0x51,0x48,0x20,0x38, 0x41,0x68,0x08,0x22,0x91,0x43,0x41,0x60,0x4a,0x4f,0x4c,0x4e,0x4f,0x4c,0x0a,0xe0,0xc0,0x1e,0x80,0xb2,0xff, 0x21,0xff,0xf7,0x73,0xff,0x14,0x20,0xff,0xf7,0x70,0xfa,0x38,0x68,0x00,0x06,0xfc,0xd4,0x21,0x88,0x30,0x89, 0xc9,0x1e,0x88,0x42,0xef,0xdc,0x00,0x24,0x3c,0x60,0xc8,0x20,0xff,0xf7,0x63,0xfa,0x28,0x78,0x40,0x08,0x40, 0x00,0x28,0x70,0x3e,0x4d,0xc0,0x3d,0xa8,0x6a,0x14,0x21,0x88,0x43,0xa8,0x62,0x28,0x46,0xe0,0x30,0x44,0x76, 0x74,0x81,0x01,0x21,0x01,0x75,0x3d,0x4e,0x31,0x68,0x29,0x63,0x69,0x63,0xff,0x21,0x2d,0x31,0xa9,0x63,0x84, 0x77,0x01,0x46,0x04,0x77,0x20,0x31,0xcc,0x71,0x0c,0x72,0x05,0x21,0xc1,0x77,0xff,0xf7,0x18,0xfe,0xa8,0x8d, 0x80,0x04,0x06,0xd5,0x30,0x68,0x00,0x90,0x30,0x68,0x00,0x99,0x40,0x1a,0x28,0x28,0xfa,0xd3,0xf8,0xbd,0xf8, 0xb5,0x29,0x4c,0x1a,0x23,0x20,0x34,0xe3,0x56,0x18,0x1d,0x08,0x28,0x01,0xd9,0x04,0x21,0x00,0xe0,0x01,0x21, 0x2a,0x4a,0x23,0x4f,0x10,0x46,0xff,0x30,0xff,0x32,0x41,0x30,0x61,0x32,0x20,0x3f,0x06,0x89,0xd5,0x7d,0x00, 0x2b,0x14,0xdd,0xff,0x2d,0x05,0xd0,0xff,0x22,0x52,0x1a,0x95,0x42,0x0a,0xd9,0xff,0x22,0x09,0xe0,0xfa,0x89, 0x96,0x42,0x11,0xd0,0x75,0x18,0x95,0x42,0x00,0xd8,0x2a,0x46,0x02,0x81,0x01,0xe0,0x6a,0x18,0xe2,0x75,0x59, 0x1a,0x16,0xe0,0x00,0x2b,0x15,0xda,0xba,0x89,0x96,0x42,0x0b,0xd1,0x22,0x7e,0x95,0x42,0x02,0xd1,0x00,0x20, 0xa0,0x76,0xf8,0xbd,0x6d,0x1a,0x95,0x42,0x00,0xdd,0x2a,0x46,0xe2,0x75,0x04,0xe0,0x75,0x1a,0x95,0x42,0x00, 0xdd,0x2a,0x46,0x02,0x81,0x59,0x18,0xa1,0x76,0xe1,0x7d,0x00,0x89,0xff,0xf7,0xef,0xfe,0xa0,0x7e,0x00,0x28, 0xea,0xd0,0x02,0x21,0x0b,0x48,0xff,0xf7,0xfc,0xf8,0xf8,0xbd,0x00,0x00,0x00,0x40,0x00,0x40,0x60,0x00,0x00, 0x20,0x14,0x04,0x00,0x20,0x00,0x5a,0x00,0x40,0x20,0x46,0x00,0x40,0x60,0x5c,0x00,0x40,0x04,0x0f,0x00,0x20, 0x80,0x01,0x00,0x20,0xd4,0x02,0x00,0x20,0x07,0x16,0x00,0x20,0x70,0xb5,0x38,0x49,0x38,0x48,0xca,0x89,0x00, 0x2a,0x19,0xd0,0x10,0x2a,0x01,0xd9,0x10,0x23,0x00,0xe0,0x13,0x46,0xdc,0xb2,0x63,0x1e,0x1b,0x07,0x1b,0x0c, 0xff,0x33,0x83,0x63,0x8b,0x89,0x31,0x4e,0x5d,0x00,0xad,0x19,0xff,0x35,0x41,0x35,0x2d,0x8a,0xc5,0x60,0x5b, 0x1c,0x12,0x1b,0x12,0x04,0x8b,0x81,0x12,0x0c,0xca,0x81,0x0c,0xd1,0x00,0x22,0x8a,0x81,0x42,0x68,0x40,0x21, 0x8a,0x43,0x42,0x60,0x82,0x68,0x0a,0x43,0x82,0x60,0x01,0x68,0x12,0x22,0x91,0x43,0x01,0x60,0x70,0xbd,0x70, 0x47,0x70,0xb5,0x05,0x46,0x00,0x78,0xff,0xf7,0xd8,0xf9,0x04,0x46,0x40,0x1e,0x13,0x28,0x15,0xd2,0x61,0x1c, 0x28,0x46,0xff,0xf7,0xe4,0xf9,0x29,0x19,0x48,0x70,0xa4,0x1c,0x20,0x46,0x16,0x21,0x4c,0x43,0x17,0x49,0x17, 0x4a,0xcc,0x81,0x81,0xb2,0x10,0x32,0x28,0x46,0xff,0xf7,0xfd,0xfa,0x03,0x21,0x16,0x48,0xff,0xf7,0x98,0xf8, 0x70,0xbd,0x10,0xb5,0x10,0x49,0x2d,0x22,0xca,0x81,0x0a,0x46,0x10,0x32,0x02,0x21,0xff,0xf7,0xef,0xfa,0x03, 0x21,0x0f,0x48,0xff,0xf7,0x8a,0xf8,0x10,0xbd,0x70,0x47,0x70,0xb5,0x0b,0x4c,0x00,0x21,0x20,0x68,0x02,0x68, 0x0a,0xe0,0x06,0x46,0x28,0xc8,0x18,0x3e,0x5d,0x60,0x08,0x38,0x2b,0x60,0x01,0x60,0x41,0x60,0x31,0x70,0x10, 0x46,0x12,0x68,0xa0,0x42,0xf2,0xd1,0x70,0xbd,0x14,0x04,0x00,0x20,0x00,0x40,0x00,0x40,0xd4,0x02,0x00,0x20, 0x2d,0x17,0x00,0x20,0x70,0xb5,0x15,0x46,0x03,0x46,0xcd,0x4a,0x00,0x20,0x44,0x01,0xa4,0x18,0x26,0x7a,0x08, 0x34,0x00,0x2e,0x03,0xd0,0x40,0x1c,0x05,0x28,0xf6,0xdb,0x70,0xbd,0x0a,0x46,0x19,0x46,0x20,0x46,0xff,0xf7, 0x57,0xf9,0xc4,0x48,0x00,0x2d,0x06,0xd0,0x18,0x34,0x41,0x68,0x44,0x60,0x03,0xc4,0x08,0x3c,0x0c,0x60,0x70, 0xbd,0x01,0x68,0x18,0x34,0x4c,0x60,0x21,0x60,0x60,0x60,0x04,0x60,0x70,0xbd,0x70,0xb5,0x03,0x46,0xbc,0x4a, 0x00,0x20,0x44,0x01,0xa4,0x18,0xb4,0x34,0x25,0x78,0x00,0x2d,0x03,0xd0,0x40,0x1c,0x05,0x28,0xf6,0xdb,0x70, 0xbd,0x0a,0x46,0x19,0x46,0x20,0x46,0xff,0xf7,0x33,0xf9,0xb3,0x48,0x18,0x34,0xac,0x30,0x41,0x68,0x44,0x60, 0x03,0xc4,0x08,0x3c,0x0c,0x60,0x70,0xbd,0x70,0xb5,0xaf,0x4d,0x00,0x24,0xe0,0x00,0x28,0x58,0xc0,0xb2,0x00, 0xf0,0x71,0xf8,0x00,0x28,0x05,0xd0,0xe1,0x00,0x49,0x19,0x49,0x68,0x40,0x1c,0x88,0x47,0x70,0xbd,0x64,0x1c, 0x05,0x2c,0xef,0xd3,0x70,0xbd,0x10,0xb5,0x16,0x20,0x00,0xf0,0x5d,0xf9,0x51,0x20,0x00,0xf0,0x5e,0xf8,0x00, 0x28,0x0d,0xd0,0xa0,0x48,0x01,0x68,0x9e,0x48,0x80,0x30,0x41,0x63,0x08,0x22,0x01,0x46,0xe0,0x31,0x0a,0x75, 0x9e,0x49,0xc1,0x64,0x9e,0x48,0x00,0xf0,0x4a,0xf9,0x10,0xbd,0x70,0x47,0x70,0x47,0x70,0x47,0x70,0xb5,0x01, 0x20,0x00,0xf0,0x46,0xf8,0x94,0x4d,0x2c,0x46,0xff,0x35,0x80,0x34,0x61,0x35,0x00,0x28,0x0c,0xd0,0x40,0x78, 0x68,0x77,0x03,0x20,0x28,0x75,0x16,0x20,0x00,0xf0,0x34,0xf9,0x92,0x48,0xe0,0x64,0x08,0x20,0xff,0xf7,0x39, 0xfb,0x70,0xbd,0x02,0x20,0x00,0xf0,0x2f,0xf8,0x00,0x28,0x03,0xd1,0xe0,0x6a,0x02,0x21,0x08,0x43,0xe0,0x62, 0x0a,0x20,0x28,0x75,0x70,0xbd,0x70,0x47,0x70,0x47,0x70,0x47,0x70,0xb5,0x82,0x48,0x80,0x30,0xc1,0x6c,0x00, 0x29,0x01,0xd0,0xc0,0x6c,0x80,0x47,0xff,0xf7,0x8d,0xfc,0x7e,0x49,0xff,0x22,0x08,0x68,0x4f,0x32,0x54,0x5a, 0x03,0x68,0x05,0xe0,0x05,0x46,0x18,0x3d,0x00,0x2c,0x04,0xd0,0x18,0x46,0x1b,0x68,0x88,0x42,0xf7,0xd1,0x70, 0xbd,0x06,0xc8,0x4a,0x60,0x11,0x60,0x00,0x21,0x08,0x38,0x01,0x60,0x41,0x60,0x29,0x70,0x70,0xbd,0x03,0x46, 0x72,0x48,0x10,0xb5,0x80,0x30,0xc0,0x6a,0x70,0x4a,0x01,0x68,0xac,0x32,0x05,0xe0,0x18,0x38,0x04,0x78,0x9c, 0x42,0x04,0xd0,0x08,0x46,0x09,0x68,0x90,0x42,0xf7,0xd1,0x00,0x20,0x10,0xbd,0x10,0xb5,0x6d,0x4c,0x21,0x7c, 0x04,0x29,0x0e,0xd1,0x00,0x78,0x60,0x70,0x20,0x7a,0x06,0x28,0x01,0xd9,0x00,0xf0,0x1d,0xf9,0x60,0x78,0xa0, 0x70,0x62,0x48,0x01,0x68,0x60,0x48,0x80,0x30,0x01,0x63,0x41,0x63,0x10,0xbd,0x70,0x47,0xf1,0xb5,0x62,0x4e, 0x82,0xb0,0x20,0x3e,0x70,0x7d,0x5a,0x4c,0x61,0x4f,0x25,0x46,0xff,0x35,0x41,0x35,0x80,0x34,0x05,0x28,0x12, 0xd1,0x40,0x20,0xff,0xf7,0xda,0xfa,0xff,0x20,0x01,0x30,0xff,0xf7,0xc9,0xfa,0x08,0x20,0x70,0x75,0x78,0x7b, 0x00,0x28,0x06,0xd0,0x28,0x8e,0x42,0x28,0x03,0xd1,0xa0,0x6a,0x10,0x21,0x08,0x43,0xa0,0x62,0x02,0x98,0x01, 0x78,0x52,0x48,0x00,0x90,0xc1,0x70,0x02,0x98,0x00,0x78,0xc1,0x09,0x01,0xd0,0xc0,0x43,0x40,0x1c,0x00,0x06, 0x00,0x0e,0x14,0xd0,0x04,0x28,0x06,0xd2,0x00,0x29,0x02,0xd0,0x00,0x20,0xc0,0x43,0x0d,0xe0,0x01,0x20,0x0b, 0xe0,0x48,0x4a,0x2b,0x89,0x40,0x3a,0x95,0x89,0xab,0x42,0x0a,0xd1,0x00,0x29,0x01,0xd0,0x40,0x08,0x19,0xe0, 0x40,0x08,0x40,0xb2,0xb1,0x7e,0x00,0x29,0x16,0xd0,0xb0,0x76,0x1e,0xe0,0xd2,0x89,0xd2,0x1a,0x12,0x12,0x52, 0x1c,0x92,0xb2,0x1a,0x28,0x00,0xd9,0x1a,0x20,0x00,0x29,0x02,0xd0,0x43,0x08,0x18,0x18,0xc0,0xb2,0x50,0x43, 0x40,0x08,0x40,0x1c,0xc0,0xb2,0x00,0x29,0xe6,0xd0,0x40,0x42,0xe4,0xe7,0x00,0x28,0x07,0xd0,0xa1,0x6a,0x09, 0x07,0x04,0xd4,0xb0,0x76,0xf1,0x7f,0x33,0x48,0xfe,0xf7,0x22,0xff,0x00,0x98,0x00,0x7a,0x10,0x28,0x00,0xd2, 0x40,0x1c,0x00,0x99,0x08,0x72,0x2a,0x48,0x00,0xf0,0x62,0xf8,0xf8,0x6b,0x19,0x21,0x40,0x1c,0xf8,0x63,0x2b, 0x48,0xfe,0xf7,0x11,0xff,0xfe,0xbd,0x10,0xb5,0x01,0x78,0x25,0x48,0x01,0x70,0x22,0x48,0x00,0xf0,0x53,0xf8, 0x10,0xbd,0xf8,0xb5,0x71,0x20,0xff,0xf7,0x52,0xff,0x1a,0x4d,0x04,0x26,0x2c,0x46,0xff,0x34,0x61,0x34,0x80, 0x35,0x00,0x28,0x26,0xd0,0x47,0x1c,0x1c,0x48,0x07,0x22,0x39,0x46,0x14,0x30,0xfe,0xf7,0xf4,0xff,0x38,0x78, 0x00,0x07,0x00,0x0f,0xa0,0x74,0xb9,0x78,0x7a,0x78,0x08,0x02,0x29,0x46,0x10,0x43,0xc0,0x31,0x08,0x86,0xf8, 0x78,0xc0,0x09,0x02,0xd0,0x26,0x75,0x15,0x48,0x02,0xe0,0x05,0x20,0x20,0x75,0x14,0x48,0xe8,0x64,0x38,0x78, 0x00,0x07,0x05,0xd0,0x40,0x20,0x20,0x76,0x16,0x20,0x00,0xf0,0x22,0xf8,0xf8,0xbd,0x14,0x20,0xf8,0xe7,0xe8, 0x6a,0x30,0x43,0xe8,0x62,0x0a,0x20,0x20,0x75,0xf8,0xbd,0x70,0x47,0xd4,0x02,0x00,0x20,0x80,0x01,0x00,0x20, 0xc0,0x1f,0x00,0x20,0x47,0x18,0x00,0x20,0xdc,0x05,0x00,0x00,0x8d,0x1a,0x00,0x20,0x54,0x04,0x00,0x20,0x80, 0x00,0x00,0x20,0x07,0x16,0x00,0x20,0x75,0x1b,0x00,0x20,0xff,0x1a,0x00,0x20,0x6f,0x18,0x00,0x20,0xfe,0x49, 0x0a,0x68,0xfe,0x49,0x0a,0x63,0x88,0x63,0x70,0x47,0xfc,0x48,0xe0,0x30,0x01,0x7d,0x02,0x29,0x0d,0xd0,0x01, 0x7d,0x03,0x29,0x0c,0xd0,0x01,0x7d,0x04,0x29,0x0b,0xd0,0x01,0x7d,0x05,0x29,0x0a,0xd0,0x00,0x7d,0x08,0x28, 0x09,0xd1,0xf5,0x48,0xe6,0xe7,0x14,0x20,0xfc,0xe7,0x41,0x20,0xfa,0xe7,0x50,0x20,0xf8,0xe7,0xaa,0x20,0xf6, 0xe7,0x70,0x47,0x70,0xb5,0xee,0x4c,0x80,0x34,0xe0,0x8f,0xff,0xf7,0x25,0xf8,0xa0,0x87,0xed,0x4e,0x25,0x46, 0xf0,0x81,0x40,0x3d,0x18,0x23,0x40,0x34,0xeb,0x5e,0x69,0x8b,0x60,0x88,0x40,0x22,0xff,0xf7,0x03,0xf8,0x20, 0x80,0x30,0x82,0x1c,0x23,0xeb,0x5e,0xe9,0x8b,0xe0,0x88,0x40,0x22,0xfe,0xf7,0xfa,0xff,0xa0,0x80,0x70,0xbd, 0x70,0x47,0xf8,0xb5,0xde,0x4d,0x40,0x35,0xa8,0x8c,0x2c,0x46,0x81,0x08,0xa0,0x34,0xe0,0x7c,0x2e,0x46,0x40, 0x00,0xc0,0x3e,0x80,0x19,0xff,0x30,0x01,0x30,0x01,0x80,0xe8,0x8c,0x81,0x08,0xe0,0x7c,0x40,0x00,0x80,0x19, 0xff,0x30,0x01,0x30,0x81,0x82,0x20,0x46,0x60,0x38,0x0a,0x21,0x00,0x90,0xfe,0xf7,0xc2,0xff,0x07,0x46,0x20, 0x46,0x0a,0x21,0x4c,0x38,0xfe,0xf7,0xbc,0xff,0x38,0x18,0xc0,0x03,0x01,0x0c,0x00,0x98,0xc1,0x87,0x68,0x8c, 0x81,0x08,0xe0,0x7c,0x40,0x00,0x80,0x19,0xc0,0x30,0x81,0x85,0x20,0x46,0x0a,0x21,0x74,0x38,0xfe,0xf7,0xab, 0xff,0x27,0x46,0x20,0x3f,0x78,0x80,0x28,0x8c,0x81,0x08,0xe0,0x7c,0x40,0x00,0x80,0x19,0xff,0x30,0x01,0x30, 0x01,0x85,0x20,0x46,0x0a,0x21,0x38,0x38,0xfe,0xf7,0x9b,0xff,0xf8,0x80,0xe0,0x7c,0x09,0x28,0x01,0xd2,0x40, 0x1c,0x00,0xe0,0x00,0x20,0xe0,0x74,0x20,0x7d,0x08,0x28,0x01,0xd0,0xff,0xf7,0x90,0xff,0x02,0x21,0xb9,0x48, 0xfe,0xf7,0x20,0xfe,0xf8,0xbd,0x10,0xb5,0x00,0xf0,0xc5,0xf8,0x00,0xf0,0xf9,0xf8,0xb5,0x48,0x01,0x69,0x04, 0x22,0x51,0x40,0x01,0x61,0xb4,0x49,0xb4,0x48,0xfe,0xf7,0x11,0xfe,0xb4,0x48,0x57,0x21,0x41,0x63,0x59,0x21, 0x81,0x60,0x10,0xbd,0xb2,0x48,0x01,0x68,0x80,0x22,0x11,0x43,0x01,0x60,0x70,0x47,0xf8,0xb5,0xad,0x48,0x59, 0x21,0xc1,0x60,0xa7,0x4d,0x80,0x3d,0xe8,0x88,0xa3,0x4c,0x80,0x06,0x0a,0x27,0xa6,0x4e,0xe0,0x34,0x00,0x28, 0x03,0xda,0x68,0x69,0xff,0xf7,0x55,0xf9,0x28,0xe0,0xe9,0x88,0x28,0x46,0x09,0x05,0x24,0xd5,0x01,0x89,0xa4, 0x4a,0x91,0x42,0x20,0xd1,0x00,0x25,0x05,0x81,0x72,0xb6,0xff,0xf7,0x4a,0xfc,0xa1,0x48,0x05,0x62,0x27,0x75, 0xa1,0x48,0xff,0xf7,0x41,0xf9,0x00,0x20,0x81,0x00,0x89,0x19,0x4d,0x61,0x0d,0x63,0x40,0x1c,0x08,0x28,0xf8, 0xdb,0x9c,0x48,0x05,0x60,0x9c,0x49,0x8d,0x60,0xcd,0x60,0x95,0x48,0x57,0x22,0x42,0x63,0x01,0x23,0x0b,0x60, 0x14,0x21,0x41,0x60,0x02,0x60,0xfe,0xe7,0xe8,0x88,0x40,0x21,0x08,0x40,0xe8,0x80,0x30,0x69,0x04,0x21,0x48, 0x40,0x30,0x61,0x85,0x49,0x88,0x6a,0x00,0x07,0x2b,0xd4,0x20,0x7d,0xff,0x25,0x01,0x35,0x0a,0x28,0x1a,0xd0, 0x80,0x48,0x02,0x68,0x0b,0x6b,0x8e,0x6b,0xd3,0x1a,0x8c,0x4a,0xb3,0x42,0x04,0xd8,0x03,0x68,0x4e,0x6b,0x9b, 0x1b,0x93,0x42,0x19,0xd9,0x23,0x7d,0x00,0x2b,0x17,0xd0,0x01,0x2b,0x22,0xd0,0x23,0x7d,0x08,0x2b,0x3e,0xd0, 0xc8,0x6a,0x80,0x22,0x10,0x43,0x84,0x4a,0x10,0x40,0x43,0xe0,0xff,0xf7,0x00,0xfc,0x28,0x46,0xff,0xf7,0xfa, 0xf8,0x60,0x7d,0x08,0x28,0x02,0xd1,0x40,0x20,0xff,0xf7,0xe7,0xf8,0x67,0x75,0xf8,0xbd,0xc8,0x6a,0x01,0x05, 0x89,0x0f,0x03,0xd1,0xc1,0x04,0x01,0xd4,0x40,0x04,0x00,0xd5,0x27,0x75,0x01,0x20,0x20,0x75,0x1e,0x20,0x1b, 0xe0,0x66,0x48,0x68,0x4a,0xc0,0x30,0x40,0x3a,0x03,0x88,0x55,0x8b,0xab,0x42,0x05,0xd9,0x20,0x7d,0x01,0x21, 0x49,0x04,0x40,0x18,0x20,0x75,0x1c,0xe0,0x6f,0x4b,0xcb,0x64,0x89,0x6a,0x49,0x07,0x05,0xd4,0x11,0x8a,0x01, 0x81,0x05,0x21,0x6c,0x48,0xfe,0xf7,0x6b,0xfd,0x02,0x20,0x20,0x75,0x5a,0x20,0xff,0xf7,0xb0,0xfe,0xf8,0xbd, 0x00,0x68,0x4b,0x6b,0xc0,0x1a,0x90,0x42,0xc8,0x6a,0x03,0xd9,0x01,0x22,0x52,0x02,0x10,0x43,0x00,0xe0,0x28, 0x43,0xc8,0x62,0x27,0x75,0xf8,0xbd,0x50,0x48,0x10,0xb5,0x80,0x38,0x00,0x60,0x40,0x60,0x5f,0x49,0x4f,0x48, 0x10,0x22,0x0c,0x46,0x34,0x38,0xfe,0xf7,0x5a,0xfe,0x5c,0x4a,0x4b,0x48,0xc0,0x3a,0x11,0x88,0x80,0x38,0x01, 0x80,0x91,0x78,0x81,0x70,0x11,0x79,0x01,0x71,0xd1,0x78,0xc1,0x70,0x46,0x49,0x22,0x8b,0x4a,0x82,0x41,0x49, 0x0a,0x68,0x41,0x49,0x0a,0x63,0xff,0x21,0x41,0x31,0xc1,0x60,0x3f,0x48,0x08,0x22,0x51,0x49,0x50,0x30,0xfe, 0xf7,0x36,0xfe,0x4f,0x48,0x00,0x1d,0x80,0x8b,0x00,0x28,0x07,0xd0,0x4c,0x49,0x1c,0x39,0xca,0x8a,0x38,0x48, 0x40,0x30,0xc2,0x82,0x89,0x8a,0x81,0x82,0x10,0xbd,0x70,0xb5,0x3b,0x48,0x57,0x21,0x41,0x63,0x1f,0x21,0x01, 0x61,0x3f,0x4c,0xa1,0x69,0xde,0x20,0x81,0x43,0xa1,0x61,0xa1,0x69,0x01,0x43,0xa1,0x61,0x42,0x48,0x41,0x6b, 0x02,0x25,0x29,0x43,0x41,0x63,0x14,0x20,0xfe,0xf7,0xf7,0xfd,0x2e,0x48,0x40,0x30,0xc5,0x60,0x05,0x60,0x01, 0x21,0x41,0x60,0x2b,0x48,0x85,0x63,0x00,0x21,0x41,0x61,0x81,0x61,0xc5,0x61,0x01,0x62,0x03,0x69,0x80,0x22, 0x13,0x43,0x03,0x61,0x03,0x69,0x05,0x15,0xab,0x43,0x03,0x61,0xa0,0x68,0x10,0x43,0xa0,0x60,0x28,0x48,0x6a, 0x1e,0x42,0x62,0x26,0x4b,0xff,0x22,0x20,0x33,0x1a,0x73,0x27,0x22,0x02,0x62,0xc1,0x63,0x00,0xf0,0x08,0xf8, 0xff,0xf7,0x81,0xf9,0x2d,0x49,0x2b,0x48,0x08,0x60,0x2c,0x49,0x08,0x60,0x70,0xbd,0x10,0xb5,0x20,0x48,0x81, 0x68,0x08,0x23,0x19,0x43,0x81,0x60,0x19,0x48,0x00,0x22,0x02,0x60,0x17,0x49,0x27,0x4c,0x40,0x31,0x4c,0x61, 0x26,0x4c,0x0c,0x60,0x42,0x60,0x07,0x24,0x84,0x60,0x02,0x61,0x10,0x22,0x42,0x61,0x13,0x22,0x82,0x61,0xc2, 0x61,0x14,0x22,0x02,0x62,0x17,0x22,0x42,0x62,0x3f,0x22,0x4a,0x60,0x43,0x22,0x8a,0x60,0x10,0x49,0x0a,0x68, 0x1a,0x43,0x0a,0x60,0x1c,0x49,0x0a,0x68,0x37,0xe0,0x80,0x01,0x00,0x20,0x54,0x03,0x00,0x20,0xdc,0x05,0x00, 0x00,0x80,0x00,0x00,0x20,0x87,0x1c,0x00,0x20,0x00,0x60,0x00,0x40,0xff,0xff,0xff,0x7f,0x93,0x1c,0x00,0x20, 0x00,0x58,0x00,0x40,0x00,0x4a,0x00,0x40,0x28,0x57,0x00,0x00,0x00,0x48,0x00,0x40,0xff,0xff,0x00,0x00,0x00, 0x52,0x00,0x40,0x00,0x5a,0x00,0x40,0xd8,0x59,0x00,0x00,0xfe,0xcb,0xff,0xff,0xa5,0x18,0x00,0x20,0xab,0x14, 0x00,0x20,0x04,0x0f,0x00,0x20,0xbc,0x47,0x00,0x00,0x80,0x5c,0x00,0x40,0x01,0x70,0x04,0x00,0x80,0xe2,0x00, 0xe0,0x00,0xe1,0x00,0xe0,0x0a,0x02,0x00,0x00,0x3f,0x60,0x00,0x00,0x00,0x50,0x00,0x40,0x01,0x23,0x1a,0x43, 0x0a,0x60,0x2f,0x22,0x0a,0x61,0x04,0x4a,0x8a,0x61,0x04,0x4a,0xca,0x61,0x05,0x22,0x4a,0x61,0xb3,0x21,0x01, 0x60,0x10,0xbd,0x0c,0x4a,0x00,0x40,0xb4,0x03,0x00,0x20,0x03,0x00,0x00,0x00,0x8b,0x19,0x00,0x20,0x04,0x00, 0x00,0x00,0x5f,0x19,0x00,0x20,0x31,0x00,0x00,0x00,0x89,0x19,0x00,0x20,0x05,0x00,0x00,0x00,0x7d,0x1a,0x00, 0x20,0x02,0x00,0x00,0x00,0xa3,0x18,0x00,0x20, }; #endif