|
From: <ge...@op...> - 2023-11-30 12:03:54
|
This is an automated email from Gerrit. "Erhan Kurubas <erh...@es...>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8028 -- gerrit commit f2ddd89070ca18fdd4bb03ca1abc38555197e1af Author: Erhan Kurubas <erh...@es...> Date: Thu Nov 30 12:47:22 2023 +0100 loaders/espressif: add esp32c3 stub flasher application code Special binary program running on the target (ESP32-C3) to perform flash operations and communicate to the OpenOCD host. Camelcase symbols comes from esp-idf Checkpatch-ignore: CAMELCASE Signed-off-by: Erhan Kurubas <erh...@es...> Change-Id: Ia30ba7898fbdb85e17e86a9ccf55611b89d45b1d diff --git a/contrib/loaders/flash/espressif/esp32c3/Makefile b/contrib/loaders/flash/espressif/esp32c3/Makefile new file mode 100644 index 0000000000..9ed3a3295c --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c3/Makefile @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +# Makefile to compile flasher stub program +# Copyright (C) 2021 Espressif Systems Ltd. + +# Prefix for ESP32-C3 cross compilers (can include a directory path) +CROSS ?= riscv32-esp-elf- + +# Path to the esp-idf root dir +IDF_PATH ?= ../.. + +STUB_ARCH := riscv +STUB_CHIP_PATH := $(shell pwd) +STUB_COMMON_PATH := $(STUB_CHIP_PATH)/.. +STUB_CHIP_ARCH_PATH := $(STUB_COMMON_PATH)/$(STUB_ARCH) +STUB_OBJ_DEPS := sdkconfig.h +STUB_LD_SCRIPT := stub.ld +STUB_CHIP := ESP32C3 + +SRCS := $(IDF_PATH)/components/esp_hw_support/port/esp32c3/rtc_clk_init.c \ + $(IDF_PATH)/components/esp_hw_support/port/esp32c3/rtc_clk.c \ + $(IDF_PATH)/components/esp_hw_support/port/esp32c3/rtc_time.c \ + $(IDF_PATH)/components/app_trace/port/$(STUB_ARCH)/port.c + +CFLAGS := -std=gnu99 + +INCLUDES := -I$(IDF_PATH)/components/soc/esp32c3/include -I$(IDF_PATH)/components/riscv/include \ + -I$(IDF_PATH)/components/hal/esp32c3/include -I$(IDF_PATH)/components/esp32c3/include \ + -I$(IDF_PATH)/components/esp_hw_support/port/esp32c3/private_include -I$(IDF_PATH)/components/esp_rom/include/esp32c3 \ + -I$(IDF_PATH)/components/esp_hw_support/port/esp32c3 \ + -I$(IDF_PATH)/components/spi_flash/include \ + +DEFINES := + +LDFLAGS += -T$(IDF_PATH)/components/esp_rom/esp32c3/ld/esp32c3.rom.ld -T$(IDF_PATH)/components/esp_rom/esp32c3/ld/esp32c3.rom.newlib.ld \ + -T$(IDF_PATH)/components/esp_rom/esp32c3/ld/esp32c3.rom.api.ld + +include ../stub_common.mk diff --git a/contrib/loaders/flash/espressif/esp32c3/sdkconfig.h b/contrib/loaders/flash/espressif/esp32c3/sdkconfig.h new file mode 100644 index 0000000000..84f6c74022 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c3/sdkconfig.h @@ -0,0 +1,35 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef _STUB_SDKCONFIG_H_ +#define _STUB_SDKCONFIG_H_ + +#define CONFIG_IDF_TARGET_ARCH_RISCV 1 +#define CONFIG_IDF_TARGET_ESP32C3 1 +#define CONFIG_FREERTOS_UNICORE 1 +/* Use ROM flash driver patch + * #define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1 + * Disable application module multi-threading lock */ +#define CONFIG_APPTRACE_LOCK_ENABLE 0 +/* Enable apptarce module for flash data transfers */ +#define CONFIG_APPTRACE_DEST_JTAG 1 +#define CONFIG_APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE 1 +#define CONFIG_APPTRACE_ENABLE 1 +#define CONFIG_APPTRACE_BUF_SIZE 16384 +#define CONFIG_APPTRACE_PENDING_DATA_SIZE_MAX 0 +/* Debug UART number */ +#define CONFIG_CONSOLE_UART_NUM 0 +/* Debug UART baudrate */ +#define CONFIG_CONSOLE_UART_BAUDRATE 115200 +/* alloc apptrace data buffers on stack */ +#define CONFIG_STUB_STACK_DATA_POOL_SIZE (2 * CONFIG_APPTRACE_BUF_SIZE) + +/* needed due to apptrace sources usage */ +#define CONFIG_LOG_MAXIMUM_LEVEL 0 +/* needed due to various checks in IDF headers */ +#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 +/* TODO: use current clk, get it from PLL settings */ +#define CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ 160 +/* Unused by stub, just for compilation of IDF */ +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 + +#endif /*_STUB_SDKCONFIG_H_ */ diff --git a/contrib/loaders/flash/espressif/esp32c3/stub.ld b/contrib/loaders/flash/espressif/esp32c3/stub.ld new file mode 100644 index 0000000000..83ff530aba --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c3/stub.ld @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +/*************************************************************************** + * LD script for ESP32-C3 flasher stub * + * Copyright (C) 2021 Espressif Systems Ltd. * + * Author: Alexey Gerenkov <al...@es...> * + ***************************************************************************/ + +MEMORY { + /* Place sections by starting from the Internal SRAM1. OpenOCD will fill the sections using data bus. + 0x3FC80000 - code (OpenOCD workarea address) + 0x3FC84000 - data + */ + iram : org = 0x40380000, len = 0x4000 + dram : org = 0x3FC84000, len = 0x20000 +} + +INCLUDE stub_common.ld diff --git a/contrib/loaders/flash/espressif/esp32c3/stub_flasher_chip.c b/contrib/loaders/flash/espressif/esp32c3/stub_flasher_chip.c new file mode 100644 index 0000000000..e1fa2ffa78 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c3/stub_flasher_chip.c @@ -0,0 +1,546 @@ +// SPDX-License-Identifier: GPL-2.0-or-later + +/*************************************************************************** + * ESP32-C3 specific flasher stub functions * + * Copyright (C) 2021 Espressif Systems Ltd. * + ***************************************************************************/ +#include <string.h> +#include "sdkconfig.h" +#include "soc/rtc.h" +#include "soc/efuse_periph.h" +#include "soc/spi_mem_reg.h" +#include "soc/extmem_reg.h" +#include "soc/gpio_reg.h" +#include "soc/mmu.h" +#include "esp_spi_flash.h" +#include "rtc_clk_common.h" +#include "esp_app_trace_membufs_proto.h" +#include "stub_rom_chip.h" +#include "stub_logger.h" +#include "stub_flasher_int.h" +#include "stub_flasher_chip.h" +#include "stub_flasher.h" + +#define EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT BIT(4) + +/* Cache MMU related definitions */ +#define STUB_CACHE_BUS EXTMEM_ICACHE_SHUT_DBUS +#define STUB_MMU_DROM_VADDR 0x3c020000 +#define STUB_MMU_DROM_PAGES_START 2 +#define STUB_MMU_DROM_PAGES_END 128 +#define STUB_MMU_TABLE SOC_MMU_DPORT_PRO_FLASH_MMU_TABLE /* 0x600c5000 */ +#define STUB_MMU_INVALID_ENTRY_VAL SOC_MMU_INVALID_ENTRY_VAL /* 0x100 */ + +#define ESP_APPTRACE_RISCV_BLOCK_LEN_MSK 0x7FFFUL +#define ESP_APPTRACE_RISCV_BLOCK_LEN(_l_) ((_l_) & ESP_APPTRACE_RISCV_BLOCK_LEN_MSK) +#define ESP_APPTRACE_RISCV_BLOCK_LEN_GET(_v_) ((_v_) & ESP_APPTRACE_RISCV_BLOCK_LEN_MSK) +#define ESP_APPTRACE_RISCV_BLOCK_ID_MSK 0x7FUL +#define ESP_APPTRACE_RISCV_BLOCK_ID(_id_) (((_id_) & ESP_APPTRACE_RISCV_BLOCK_ID_MSK) << 15) +#define ESP_APPTRACE_RISCV_BLOCK_ID_GET(_v_) (((_v_) >> 15) & ESP_APPTRACE_RISCV_BLOCK_ID_MSK) +#define ESP_APPTRACE_RISCV_HOST_DATA BIT(22) +#define ESP_APPTRACE_RISCV_HOST_CONNECT BIT(23) + +/** RISCV memory host iface control block */ +typedef struct { + uint32_t ctrl; + /* - Guard field. If this register is not zero then CPU is changing this struct and */ + /* this guard field holds address of the instruction which application will execute when + * CPU finishes with those modifications. */ + uint32_t stat; + esp_apptrace_mem_block_t *mem_blocks; +} esp_apptrace_riscv_ctrl_block_t; + +static esp_apptrace_riscv_ctrl_block_t *s_apptrace_ctrl; +#if CONFIG_STUB_STACK_DATA_POOL_SIZE > 0 +static uint8_t *s_stack_data_pool; +static size_t s_stack_data_pool_sz; +#endif + +/* SPI Flash map request data */ +struct spiflash_map_req { + /* Request mapping SPI Flash base address */ + uint32_t src_addr; + /* Request mapping SPI Flash size */ + uint32_t size; + /* Mapped memory pointer */ + void *ptr; + /* Mapped started MMU page index */ + uint32_t start_page; + /* Mapped MMU page count */ + uint32_t page_cnt; +}; + +uint32_t g_stub_cpu_freq_hz = CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ * MHZ; + +void vPortEnterCritical(void) +{ +} + +void vPortExitCritical(void) +{ +} + +#if STUB_LOG_ENABLE == 1 +void stub_print_cache_mmu_registers(void) +{ + uint32_t icache_ctrl1_reg = REG_READ(EXTMEM_ICACHE_CTRL1_REG); + + STUB_LOGD("icache_ctrl1_reg: 0x%x\n", + icache_ctrl1_reg); +} +#endif + +uint32_t stub_flash_get_id(void) +{ + uint32_t ret; + + STUB_LOGD("flash %x, cs %x, bs %x, ss %x, ps %x, sm %x\n", + rom_spiflash_legacy_data->chip.device_id, + rom_spiflash_legacy_data->chip.chip_size, + rom_spiflash_legacy_data->chip.block_size, + rom_spiflash_legacy_data->chip.sector_size, + rom_spiflash_legacy_data->chip.page_size, + rom_spiflash_legacy_data->chip.status_mask); + WRITE_PERI_REG(PERIPHS_SPI_FLASH_C0, 0); /* clear register */ + WRITE_PERI_REG(PERIPHS_SPI_FLASH_CMD, SPI_MEM_FLASH_RDID); + while (READ_PERI_REG(PERIPHS_SPI_FLASH_CMD) != 0) + ; + ret = READ_PERI_REG(PERIPHS_SPI_FLASH_C0) & 0xffffff; + STUB_LOGD("Flash ID read %x\n", ret); + return ret >> 16; +} + +void stub_flash_cache_flush(void) +{ + /* we do not know breakpoint program address here, so invalidate the + * whole ICache */ + Cache_Invalidate_ICache_All(); +} + +void stub_cache_init(void) +{ + STUB_LOGD("%s\n", __func__); + + /* init cache mmu, set cache mode, invalidate cache tags, enable cache*/ + REG_SET_BIT(SYSTEM_CACHE_CONTROL_REG, SYSTEM_ICACHE_CLK_ON); + REG_SET_BIT(SYSTEM_CACHE_CONTROL_REG, SYSTEM_ICACHE_RESET); + REG_CLR_BIT(SYSTEM_CACHE_CONTROL_REG, SYSTEM_ICACHE_RESET); + /* init cache owner bit */ + Cache_Owner_Init(); + /* clear mmu entry */ + Cache_MMU_Init(); + /* config cache mode */ + Cache_Set_Default_Mode(); + Cache_Enable_ICache(0); + REG_CLR_BIT(EXTMEM_ICACHE_CTRL1_REG, STUB_CACHE_BUS); +} + +bool stub_is_cache_enabled(void) +{ + bool is_enabled = REG_GET_BIT(EXTMEM_ICACHE_CTRL_REG, EXTMEM_ICACHE_ENABLE) != 0; + int cache_bus = REG_READ(EXTMEM_ICACHE_CTRL1_REG); + return is_enabled && !(cache_bus & STUB_CACHE_BUS); +} + +void stub_flash_state_prepare(struct stub_flash_state *state) +{ + uint32_t spiconfig = ets_efuse_get_spiconfig(); + uint32_t strapping = REG_READ(GPIO_STRAP_REG); + /* If GPIO1 (U0TXD) is pulled low and flash pin configuration is not set in efuse, assume + * HSPI flash mode (same as normal boot) */ + if (spiconfig == 0 && (strapping & 0x1c) == 0x08) + spiconfig = 1; /* HSPI flash mode */ + + state->cache_enabled = stub_is_cache_enabled(); + if (!state->cache_enabled) { + STUB_LOGI("Cache needs to be enabled\n"); + stub_cache_init(); + } + + esp_rom_spiflash_attach(spiconfig, 0); +} + +void stub_flash_state_restore(struct stub_flash_state *state) +{ + /* we do not disable or store the cache settings. So, nothing to restore*/ +} + +#define RTC_PLL_FREQ_320M 320 +#define RTC_PLL_FREQ_480M 480 + +rtc_xtal_freq_t stub_rtc_clk_xtal_freq_get(void) +{ + uint32_t xtal_freq_reg = READ_PERI_REG(RTC_XTAL_FREQ_REG); + if (!clk_val_is_valid(xtal_freq_reg)) + return RTC_XTAL_FREQ_40M; + return reg_val_to_clk_val(xtal_freq_reg); +} + +/* Obviously we can call rtc_clk_cpu_freq_get_config() from esp-idf +But this call may cause undesired locks due to ets_printf or abort +*/ +int stub_rtc_clk_cpu_freq_get_config(rtc_cpu_freq_config_t *out_config) +{ + rtc_cpu_freq_src_t source; + uint32_t source_freq_mhz; + uint32_t div; + uint32_t freq_mhz; + uint32_t soc_clk_sel = REG_GET_FIELD(SYSTEM_SYSCLK_CONF_REG, SYSTEM_SOC_CLK_SEL); + switch (soc_clk_sel) { + case DPORT_SOC_CLK_SEL_XTAL: { + source = RTC_CPU_FREQ_SRC_XTAL; + div = REG_GET_FIELD(SYSTEM_SYSCLK_CONF_REG, SYSTEM_PRE_DIV_CNT) + 1; + source_freq_mhz = (uint32_t)stub_rtc_clk_xtal_freq_get(); + freq_mhz = source_freq_mhz / div; + } + break; + case DPORT_SOC_CLK_SEL_PLL: { + source = RTC_CPU_FREQ_SRC_PLL; + uint32_t cpuperiod_sel = REG_GET_FIELD(SYSTEM_CPU_PER_CONF_REG, + SYSTEM_CPUPERIOD_SEL); + uint32_t pllfreq_sel = REG_GET_FIELD(SYSTEM_CPU_PER_CONF_REG, + SYSTEM_PLL_FREQ_SEL); + source_freq_mhz = (pllfreq_sel) ? RTC_PLL_FREQ_480M : RTC_PLL_FREQ_320M; + if (cpuperiod_sel == DPORT_CPUPERIOD_SEL_80) { + div = (source_freq_mhz == RTC_PLL_FREQ_480M) ? 6 : 4; + freq_mhz = 80; + } else if (cpuperiod_sel == DPORT_CPUPERIOD_SEL_160) { + div = (source_freq_mhz == RTC_PLL_FREQ_480M) ? 3 : 2; + div = 3; + freq_mhz = 160; + } else { + /* unsupported frequency configuration */ + return -1; + } + break; + } + case DPORT_SOC_CLK_SEL_8M: + source = RTC_CPU_FREQ_SRC_8M; + source_freq_mhz = 8; + div = 1; + freq_mhz = source_freq_mhz; + break; + default: + /* unsupported frequency configuration */ + return -2; + } + *out_config = (rtc_cpu_freq_config_t) { + .source = source, + .source_freq_mhz = source_freq_mhz, + .div = div, + .freq_mhz = freq_mhz + }; + return 0; +} + +/* this function has almost the same implementation for ESP32 and ESP32-S2 + * TODO: move to common file */ +int stub_cpu_clock_configure(int cpu_freq_mhz) +{ + rtc_cpu_freq_config_t old_config; + int ret = stub_rtc_clk_cpu_freq_get_config(&old_config); + if (ret < 0) { + /* this return value will avoid undesired restore requests for unsupported frequency + *configuration */ + old_config.freq_mhz = 0; + } + +#if STUB_LOG_ENABLE == 1 + if (stub_get_log_dest() == STUB_LOG_DEST_UART) + uart_tx_wait_idle(CONFIG_CONSOLE_UART_NUM); +#endif + + /* set to maximum possible value */ + if (cpu_freq_mhz == -1) + cpu_freq_mhz = CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ; + + /* Set CPU to configured value. Keep other clocks unmodified. */ + if (cpu_freq_mhz > 0) { + rtc_clk_config_t clk_cfg = RTC_CLK_CONFIG_DEFAULT(); + /* ESP32-S2 doesn't have XTAL_FREQ choice, always 40MHz. + So using default value is fine */ + clk_cfg.cpu_freq_mhz = cpu_freq_mhz; + clk_cfg.slow_freq = rtc_clk_slow_freq_get(); + clk_cfg.fast_freq = rtc_clk_fast_freq_get(); + rtc_clk_init(clk_cfg); + + g_stub_cpu_freq_hz = cpu_freq_mhz * MHZ; + } + + return old_config.freq_mhz; +} + +#if STUB_LOG_ENABLE == 1 +void stub_uart_console_configure(int dest) +{ + extern bool g_uart_print; + /* set the default parameter to UART module, but don't enable RX interrupt */ + uartAttach(NULL); + /* first enable uart0 as printf channel */ + uint32_t clock = ets_get_apb_freq(); + ets_update_cpu_frequency(clock / 1000000); + + Uart_Init(0, UART_CLK_FREQ_ROM); + /* install to print later + * Non-Flash Boot can print + * Flash Boot can print when RTC_CNTL_STORE4_REG bit0 is 0 (can be 1 after deep sleep, software reset) + * and printf boot. + * print boot determined by GPIO and efuse, see ets_is_print_boot + */ + g_uart_print = true; + ets_install_uart_printf(); +} +#endif + +uint32_t stub_esp_clk_cpu_freq(void) +{ + return CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ * 1000000; +} + +/* override apptrace control block advertising func, IDF's implementation issues syscall */ +int esp_apptrace_advertise_ctrl_block(void *ctrl_block_addr) +{ + s_apptrace_ctrl = ctrl_block_addr; + return 0; +} + +#if CONFIG_STUB_STACK_DATA_POOL_SIZE > 0 +void stub_stack_data_pool_init(uint8_t *data, size_t sz) +{ + STUB_LOGD("stack data pool %lu bytes @ 0x%x\n", sz, data); + s_stack_data_pool = data; + s_stack_data_pool_sz = sz; +} + +void esp_apptrace_get_up_buffers(esp_apptrace_mem_block_t mem_blocks_cfg[2]) +{ + /* use whole stack data pool for apptrace up buffers */ + mem_blocks_cfg[0].start = s_stack_data_pool; + mem_blocks_cfg[0].sz = s_stack_data_pool_sz / 2; + mem_blocks_cfg[1].start = s_stack_data_pool + mem_blocks_cfg[0].sz; + mem_blocks_cfg[1].sz = mem_blocks_cfg[0].sz; +} +#endif + +int stub_apptrace_prepare(void) +{ + /* imply that host is auto-connected */ + s_apptrace_ctrl->ctrl |= ESP_APPTRACE_RISCV_HOST_CONNECT; + return ESP_STUB_ERR_OK; +} + +int64_t esp_timer_get_time(void) +{ + /* + This function is used by apptrace code to implement timeouts. + unfortunately esp32c3 does not support CPU cycle counter, so we have two options: + 1) Use some HW timer. It can be hard, because we need to ensure that it is initialized and + possibly restore its state. + 2) Emulate timer by incrementing some var on every call. + Stub flasher uses ESP_APPTRACE_TMO_INFINITE only, so this function won't be called by apptrace at all. + */ + return 0; +} + +uint64_t stub_get_time(void) +{ + /* this function is used for perf measurements only. + unfortunately esp32c3 does not support CPU cycle counter and usage of HW timer is problematic */ + return 0; +} + +esp_rom_spiflash_result_t esp_rom_spiflash_erase_area(uint32_t start_addr, uint32_t area_len) +{ + int32_t total_sector_num; + int32_t head_sector_num; + uint32_t sector_no; + uint32_t sector_num_per_block; + + /* set read mode to Fastmode ,not QDIO mode for erase + * + * TODO: this is probably a bug as it doesn't re-enable QIO mode, not serious as this + * function is not used in IDF. + * esp_rom_spiflash_config_readmode(ESP_ROM_SPIFLASH_SLOWRD_MODE); */ + + /* check if area is oversize of flash */ + if ((start_addr + area_len) > rom_spiflash_legacy_data->chip.chip_size) + return ESP_ROM_SPIFLASH_RESULT_ERR; + + /* start_addr is aligned as sector boundary */ + if (start_addr % rom_spiflash_legacy_data->chip.sector_size != 0) + return ESP_ROM_SPIFLASH_RESULT_ERR; + + /* Unlock flash to enable erase */ + if (esp_rom_spiflash_unlock(/*&rom_spiflash_legacy_data->chip*/) != ESP_ROM_SPIFLASH_RESULT_OK) + return ESP_ROM_SPIFLASH_RESULT_ERR; + + sector_no = start_addr / rom_spiflash_legacy_data->chip.sector_size; + sector_num_per_block = rom_spiflash_legacy_data->chip.block_size / + rom_spiflash_legacy_data->chip.sector_size; + total_sector_num = (0 == (area_len % rom_spiflash_legacy_data->chip.sector_size)) ? area_len / + rom_spiflash_legacy_data->chip.sector_size : 1 + (area_len / rom_spiflash_legacy_data->chip.sector_size); + + /* check if erase area reach over block boundary */ + head_sector_num = sector_num_per_block - (sector_no % sector_num_per_block); + + head_sector_num = (head_sector_num >= total_sector_num) ? total_sector_num : head_sector_num; + + /* JJJ, BUG of 6.0 erase + * middle part of area is aligned by blocks */ + total_sector_num -= head_sector_num; + + /* head part of area is erased */ + while (head_sector_num > 0) { + if (esp_rom_spiflash_erase_sector(sector_no) != ESP_ROM_SPIFLASH_RESULT_OK) + return ESP_ROM_SPIFLASH_RESULT_ERR; + sector_no++; + head_sector_num--; + } + while (total_sector_num > sector_num_per_block) { + if (esp_rom_spiflash_erase_block(sector_no / sector_num_per_block) != ESP_ROM_SPIFLASH_RESULT_OK) + return ESP_ROM_SPIFLASH_RESULT_ERR; + sector_no += sector_num_per_block; + total_sector_num -= sector_num_per_block; + } + + /* tail part of area burn */ + while (total_sector_num > 0) { + if (esp_rom_spiflash_erase_sector(sector_no) != ESP_ROM_SPIFLASH_RESULT_OK) + return ESP_ROM_SPIFLASH_RESULT_ERR; + sector_no++; + total_sector_num--; + } + + return ESP_ROM_SPIFLASH_RESULT_OK; +} + +bool esp_cpu_in_ocd_debug_mode(void) +{ + return true; +} + +static inline bool esp_flash_encryption_enabled(void) +{ + uint32_t flash_crypt_cnt = REG_GET_FIELD(EFUSE_RD_REPEAT_DATA1_REG, + EFUSE_SPI_BOOT_CRYPT_CNT); + + /* __builtin_parity is in flash, so we calculate parity inline */ + bool enabled = false; + while (flash_crypt_cnt) { + if (flash_crypt_cnt & 1) + enabled = !enabled; + flash_crypt_cnt >>= 1; + } + return enabled; +} + +esp_flash_enc_mode_t stub_get_flash_encryption_mode(void) +{ + static esp_flash_enc_mode_t s_mode = ESP_FLASH_ENC_MODE_DEVELOPMENT; + static bool s_first = true; + + if (s_first) { + if (esp_flash_encryption_enabled()) { + /* Check if SPI_BOOT_CRYPT_CNT is write protected */ + bool flash_crypt_cnt_wr_dis = REG_READ(EFUSE_RD_WR_DIS_REG) & + EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT; + if (!flash_crypt_cnt_wr_dis) { + uint8_t flash_crypt_cnt = REG_GET_FIELD(EFUSE_RD_REPEAT_DATA1_REG, + EFUSE_SPI_BOOT_CRYPT_CNT); + /* Check if SPI_BOOT_CRYPT_CNT set for permanent encryption */ + if (flash_crypt_cnt == EFUSE_SPI_BOOT_CRYPT_CNT_V) + flash_crypt_cnt_wr_dis = true; + } + + if (flash_crypt_cnt_wr_dis) { + uint8_t dis_dl_enc = REG_GET_FIELD(EFUSE_RD_REPEAT_DATA0_REG, + EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT); + uint8_t dis_dl_icache = REG_GET_FIELD(EFUSE_RD_REPEAT_DATA0_REG, + EFUSE_DIS_DOWNLOAD_ICACHE); + if (dis_dl_enc && dis_dl_icache) + s_mode = ESP_FLASH_ENC_MODE_RELEASE; + } + } else { + s_mode = ESP_FLASH_ENC_MODE_DISABLED; + } + s_first = false; + STUB_LOGD("flash_encryption_mode: %d\n", s_mode); + } + + return s_mode; +} + +static int stub_flash_mmap(struct spiflash_map_req *req) +{ + uint32_t map_src = req->src_addr & (~(SPI_FLASH_MMU_PAGE_SIZE - 1)); + uint32_t map_size = req->size + (req->src_addr - map_src); + uint32_t flash_page = map_src / SPI_FLASH_MMU_PAGE_SIZE; + uint32_t page_cnt = (map_size + SPI_FLASH_MMU_PAGE_SIZE - 1) / SPI_FLASH_MMU_PAGE_SIZE; + int start_page, ret = ESP_ROM_SPIFLASH_RESULT_ERR; + uint32_t saved_state = Cache_Suspend_ICache() << 16; + + for (start_page = STUB_MMU_DROM_PAGES_START; start_page < STUB_MMU_DROM_PAGES_END; + ++start_page) { + if (STUB_MMU_TABLE[start_page] == STUB_MMU_INVALID_ENTRY_VAL) + break; + } + + if (start_page == STUB_MMU_DROM_PAGES_END) + start_page = STUB_MMU_DROM_PAGES_START; + + if (start_page + page_cnt < STUB_MMU_DROM_PAGES_END) { + for (int i = 0; i < page_cnt; i++) + STUB_MMU_TABLE[start_page + i] = SOC_MMU_PAGE_IN_FLASH(flash_page + i); + + req->start_page = start_page; + req->page_cnt = page_cnt; + req->ptr = (void *)(STUB_MMU_DROM_VADDR + + (start_page - STUB_MMU_DROM_PAGES_START) * SPI_FLASH_MMU_PAGE_SIZE + + (req->src_addr - map_src)); + Cache_Invalidate_Addr((uint32_t)(STUB_MMU_DROM_VADDR + + (start_page - STUB_MMU_DROM_PAGES_START) * SPI_FLASH_MMU_PAGE_SIZE), + page_cnt * SPI_FLASH_MMU_PAGE_SIZE); + ret = ESP_ROM_SPIFLASH_RESULT_OK; + } + + STUB_LOGD("start_page: %d map_src: %x map_size: %x page_cnt: %d flash_page: %d map_ptr: %x\n", + start_page, + map_src, + map_size, + page_cnt, + flash_page, + req->ptr); + + Cache_Resume_ICache(saved_state >> 16); + + return ret; +} + +static void stub_flash_ummap(const struct spiflash_map_req *req) +{ + uint32_t saved_state = Cache_Suspend_ICache() << 16; + + for (int i = req->start_page; i < req->start_page + req->page_cnt; ++i) + STUB_MMU_TABLE[i] = STUB_MMU_INVALID_ENTRY_VAL; + + Cache_Resume_ICache(saved_state >> 16); +} + +int stub_flash_read_buff(uint32_t addr, void *buffer, uint32_t size) +{ + struct spiflash_map_req req = { + .src_addr = addr, + .size = size, + }; + + int ret = stub_flash_mmap(&req); + + if (ret) + return ret; + + memcpy(buffer, req.ptr, size); + + stub_flash_ummap(&req); + + return ESP_ROM_SPIFLASH_RESULT_OK; +} diff --git a/contrib/loaders/flash/espressif/esp32c3/stub_flasher_chip.h b/contrib/loaders/flash/espressif/esp32c3/stub_flasher_chip.h new file mode 100644 index 0000000000..19ca047c00 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c3/stub_flasher_chip.h @@ -0,0 +1,44 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +/*************************************************************************** + * ESP32-C3 flasher stub definitions * + * Copyright (C) 2019 Espressif Systems Ltd. * + * Author: Alexey Gerenkov <al...@es...> * + ***************************************************************************/ +#ifndef ESP32C3_FLASHER_STUB_H +#define ESP32C3_FLASHER_STUB_H + +#include "sdkconfig.h" + +#define STUB_FLASH_SECTOR_SIZE 0x1000 +/* Flash geometry constants */ +#define STUB_FLASH_BLOCK_SIZE 0x10000 +#define STUB_FLASH_PAGE_SIZE 0x100 +#define STUB_FLASH_STATUS_MASK 0xFFFF + +struct stub_flash_state { + uint32_t cache_flags[2]; + bool cache_enabled; +}; + +#define ESP_APPTRACE_USR_DATA_LEN_MAX (CONFIG_APPTRACE_BUF_SIZE - 2) +#define RISCV_EBREAK 0x9002 + +extern bool ets_efuse_flash_octal_mode(void); + +uint32_t stub_esp_clk_cpu_freq(void); + +static inline uint8_t stub_get_insn_size(uint8_t *insn) +{ + /* we use 16bit `c.ebreak`. it works perfectly with either 32bit and 16bit code */ + return 2; +} + +static inline uint32_t stub_get_break_insn(uint8_t insn_sz) +{ + return RISCV_EBREAK; +} + +void stub_stack_data_pool_init(uint8_t *data, size_t sz); + +#endif /*ESP32C3_FLASHER_STUB_H */ diff --git a/contrib/loaders/flash/espressif/esp32c3/stub_flasher_code.inc b/contrib/loaders/flash/espressif/esp32c3/stub_flasher_code.inc new file mode 100644 index 0000000000..4b7eb7d9c5 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c3/stub_flasher_code.inc @@ -0,0 +1,475 @@ +/* Autogenerated with ../../../../../src/helper/bin2char.sh */ +0xb7,0x47,0xc8,0x3f,0x83,0xc7,0x87,0x42,0x13,0x05,0x30,0x10,0x8d,0xcf,0xb7,0x47, +0xc8,0x3f,0x93,0x87,0x47,0x30,0x98,0x47,0x13,0x05,0x60,0x10,0x0d,0xc7,0x18,0x4b, +0x1d,0xc3,0x79,0x71,0x01,0x45,0x2a,0xc4,0x2a,0xcc,0xc8,0x47,0x81,0x45,0x7d,0x56, +0xfd,0x56,0x06,0xd6,0x2e,0xc6,0x2e,0xce,0x32,0xc8,0x36,0xca,0x2c,0x00,0x02,0x97, +0xb2,0x50,0x45,0x61,0x82,0x80,0x82,0x80,0x29,0xc5,0xb7,0x47,0xc8,0x3f,0x83,0xc7, +0x87,0x42,0xaa,0x85,0x13,0x05,0x30,0x10,0xa1,0xc3,0xb7,0x47,0xc8,0x3f,0x93,0x87, +0x47,0x30,0x98,0x47,0x13,0x05,0x60,0x10,0x05,0xcb,0x18,0x47,0x15,0xc7,0xc8,0x47, +0x79,0x71,0x01,0x48,0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,0x32,0xc8,0x42,0xc4, +0x46,0xc6,0x36,0xca,0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,0xb2,0x50,0x45,0x61, +0x82,0x80,0x13,0x05,0x20,0x10,0x82,0x80,0x82,0x80,0x39,0xc1,0xb7,0x47,0xc8,0x3f, +0x83,0xc7,0x87,0x42,0xaa,0x85,0x01,0x45,0x95,0xcf,0xb7,0x47,0xc8,0x3f,0x93,0x87, +0x47,0x30,0x88,0x47,0x05,0xc9,0x58,0x41,0x01,0x45,0x0d,0xc7,0xc8,0x47,0x79,0x71, +0x01,0x48,0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,0x32,0xc8,0x42,0xc4,0x46,0xc6, +0x36,0xca,0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,0xb2,0x50,0x45,0x61,0x82,0x80, +0x01,0x45,0x82,0x80,0x82,0x80,0x31,0xc5,0xb7,0x47,0xc8,0x3f,0x83,0xc7,0x87,0x42, +0xaa,0x85,0x13,0x05,0x30,0x10,0xa9,0xc3,0xb7,0x47,0xc8,0x3f,0x93,0x87,0x47,0x30, +0x98,0x47,0x13,0x05,0x60,0x10,0x0d,0xcb,0x14,0x4f,0x9d,0xc6,0x58,0x4f,0xc8,0x47, +0x79,0x71,0x01,0x48,0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,0x32,0xc8,0x42,0xc4, +0x46,0xc6,0x36,0xca,0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,0xb2,0x50,0x45,0x61, +0x82,0x80,0x13,0x05,0x20,0x10,0x82,0x80,0x82,0x80,0x1c,0x41,0xb9,0xc3,0xb7,0x47, +0xc8,0x3f,0x83,0xc7,0x87,0x42,0xaa,0x85,0x01,0x45,0x95,0xcf,0xb7,0x47,0xc8,0x3f, +0x93,0x87,0x47,0x30,0x88,0x47,0x05,0xc9,0x18,0x4d,0x01,0x45,0x0d,0xc7,0xc8,0x47, +0x79,0x71,0x01,0x48,0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,0x32,0xc8,0x42,0xc4, +0x46,0xc6,0x36,0xca,0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,0xb2,0x50,0x45,0x61, +0x82,0x80,0x01,0x45,0x82,0x80,0x82,0x80,0xb7,0x47,0xc8,0x3f,0x83,0xc7,0x87,0x42, +0x2e,0x86,0x91,0xcf,0xb7,0x47,0xc8,0x3f,0x93,0x87,0x47,0x30,0x98,0x47,0x01,0xcb, +0x03,0x23,0x47,0x01,0x63,0x05,0x03,0x00,0xaa,0x85,0xc8,0x47,0x02,0x83,0x82,0x80, +0xb7,0x47,0xc8,0x3f,0x83,0xc6,0x07,0x30,0x3e,0x87,0xb9,0xca,0xb7,0x97,0x00,0x60, +0x83,0xa7,0x47,0x83,0x81,0x46,0xc9,0x83,0x9d,0x8b,0xa1,0xeb,0x37,0x46,0xc8,0x3f, +0xa1,0xce,0xb7,0x96,0x00,0x60,0x83,0xa7,0xc6,0x82,0xc1,0x8b,0x81,0xeb,0x83,0xa7, +0x46,0x83,0x9d,0x46,0xc9,0x83,0x9d,0x8b,0x63,0x92,0xd7,0x02,0xb7,0x97,0x00,0x60, +0x83,0xa6,0x07,0x83,0x83,0xa7,0x07,0x83,0x93,0x95,0xb6,0x00,0x63,0xd8,0x05,0x00, +0xa9,0x83,0x85,0x8b,0x81,0xc7,0x89,0x47,0x23,0x2e,0xf6,0x2e,0x23,0x00,0x07,0x30, +0xb7,0x47,0xc8,0x3f,0x03,0xa5,0xc7,0x2f,0x82,0x80,0x13,0xf6,0x17,0x00,0x19,0xc2, +0x93,0xc6,0x16,0x00,0x85,0x83,0x55,0xb7,0x23,0x2e,0x06,0x2e,0xc5,0xb7,0xb7,0x27, +0x00,0x60,0x23,0xac,0x07,0x04,0x37,0x07,0x00,0x10,0x98,0xc3,0x98,0x43,0x7d,0xff, +0xa8,0x4f,0x41,0x81,0x13,0x75,0xf5,0x0f,0x82,0x80,0xb7,0x47,0xc8,0x3f,0x03,0xa5, +0xc7,0x31,0x59,0x81,0x05,0x89,0x82,0x80,0x01,0x45,0x82,0x80,0xb7,0x47,0xc8,0x3f, +0x23,0xa0,0x07,0x32,0x82,0x80,0xb7,0x46,0xc8,0x3f,0x93,0x86,0x46,0x30,0x98,0x4e, +0xb7,0x07,0x80,0x00,0x3e,0x05,0xf9,0x8f,0x21,0x67,0x7d,0x17,0xf9,0x8d,0xcd,0x8f, +0xb7,0x85,0x3f,0x00,0x41,0x11,0x6d,0x8d,0x06,0xc6,0xc9,0x8f,0x9c,0xce,0xf9,0x37, +0xb2,0x40,0x01,0x45,0x41,0x01,0x82,0x80,0xb7,0x47,0xc8,0x3f,0x37,0x07,0x38,0x40, +0x93,0x87,0x47,0x30,0x13,0x07,0x47,0x26,0xd8,0xcf,0x98,0x4f,0x93,0x17,0x87,0x00, +0x63,0xd6,0x07,0x02,0x93,0x57,0xf7,0x00,0x93,0x16,0x17,0x01,0x93,0xf7,0xf7,0x07, +0x91,0xe6,0x13,0x77,0xf5,0x07,0x01,0x45,0x63,0x0c,0xf7,0x00,0x41,0x11,0x06,0xc6, +0x71,0x37,0xb2,0x40,0x13,0x05,0x10,0x10,0x41,0x01,0x82,0x80,0x01,0x45,0x82,0x80, +0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,0x81,0xcb,0xb7,0x47,0xc8,0x3f,0x03,0xa5, +0xc7,0x31,0x5d,0x81,0x05,0x89,0x82,0x80,0x01,0x45,0x82,0x80,0x83,0x47,0x05,0x00, +0x85,0x8b,0x99,0xc3,0x01,0x45,0x82,0x80,0x13,0x05,0x30,0x10,0x82,0x80,0x83,0x47, +0x05,0x00,0x85,0x8b,0x81,0xcb,0x50,0xd5,0x10,0xd5,0x23,0x28,0x05,0x02,0x4c,0xd1, +0x23,0x2a,0x05,0x02,0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xc7,0x83,0xd7, +0xc5,0xff,0x01,0x45,0x23,0x9f,0xf5,0xfe,0x82,0x80,0x13,0x05,0x30,0x10,0x82,0x80, +0x03,0x47,0x05,0x00,0x1d,0xef,0xb7,0x47,0xc8,0x3f,0x23,0x26,0x05,0x02,0x83,0xa6, +0x07,0x42,0xb7,0x47,0xc8,0x3f,0x23,0x24,0x05,0x02,0x83,0xa7,0xc7,0x41,0x23,0x28, +0x05,0x02,0x23,0x2a,0x05,0x02,0x85,0x83,0x23,0x26,0x05,0x00,0x54,0xc9,0x23,0x28, +0x05,0x00,0xbe,0x96,0x23,0x22,0x05,0x02,0x1c,0xcd,0x54,0xcd,0x1c,0xd1,0x23,0x24, +0x05,0x00,0x13,0x67,0x17,0x00,0xb7,0x47,0xc8,0x3f,0x23,0x00,0xe5,0x00,0x93,0x87, +0x47,0x30,0x51,0x05,0x88,0xd3,0x37,0x47,0xc8,0x3f,0xe1,0x07,0x23,0x2c,0xf7,0x40, +0x01,0x45,0x82,0x80,0x79,0x71,0x22,0xd4,0x26,0xd2,0x06,0xd6,0x4a,0xd0,0x4e,0xce, +0x52,0xcc,0x56,0xca,0x5a,0xc8,0x2a,0x84,0xfd,0x54,0x1c,0x40,0x03,0x29,0x44,0x00, +0x48,0x40,0x9c,0x43,0x2e,0xc6,0x82,0x97,0xaa,0x89,0xb2,0x45,0x63,0x11,0x05,0x12, +0x93,0x44,0xf9,0xff,0x85,0x88,0x93,0x97,0x24,0x00,0xa2,0x97,0x23,0xa4,0x07,0x00, +0x5c,0x40,0x26,0x85,0x89,0x04,0x85,0x07,0x5c,0xc0,0x1c,0x40,0x8e,0x04,0xa2,0x94, +0xdc,0x43,0x82,0x97,0x1c,0x40,0x83,0xaa,0x04,0x00,0xdc,0x47,0x82,0x97,0x79,0xc1, +0x03,0xdb,0x0a,0x00,0x63,0x00,0x0b,0x0c,0x01,0x4a,0x58,0x54,0x1c,0x58,0x63,0xe6, +0xe7,0x04,0x5c,0x50,0x18,0x58,0x99,0x8f,0xc5,0xc7,0x58,0x54,0x19,0xe3,0xfd,0x17, +0xc5,0xc3,0xb3,0x04,0x4b,0x41,0x63,0xf3,0x97,0x00,0xbe,0x84,0x08,0x58,0x18,0x50, +0x54,0x54,0x1c,0x58,0x3a,0x95,0x63,0xe0,0xd7,0x06,0x1c,0x58,0x54,0x50,0xa6,0x97, +0x63,0xe1,0xd7,0x06,0x5c,0x54,0x89,0xcb,0x1c,0x58,0x54,0x50,0xa6,0x97,0x63,0x9b, +0xd7,0x00,0x23,0x28,0x04,0x02,0x31,0xe9,0x01,0xa0,0x5c,0x54,0x18,0x58,0xfd,0x17, +0x99,0x8f,0x7d,0xbf,0x5c,0x54,0xfd,0x17,0xe3,0xe8,0x97,0xfe,0x1c,0x58,0x1c,0xd4, +0x23,0x28,0x04,0x02,0x54,0x54,0x1c,0x54,0x63,0x9a,0xf6,0x00,0x23,0x26,0x04,0x02, +0x14,0x54,0x5c,0x50,0x63,0xf4,0xf6,0x00,0x5c,0x50,0x1c,0xd4,0x1c,0x58,0x3a,0x85, +0xa6,0x97,0x1c,0xd8,0xc9,0xb7,0x5c,0x54,0x18,0x58,0xfd,0x17,0x99,0x8f,0xe3,0xed, +0x97,0xfa,0x1c,0x58,0xa6,0x97,0x1c,0xd8,0x7d,0xb7,0x93,0x05,0x2a,0x00,0x26,0x86, +0xd6,0x95,0x26,0x9a,0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xea,0xe3,0x67,0x6a,0xf5, +0x23,0x90,0x0a,0x00,0x13,0x79,0x19,0x00,0x1c,0x40,0x0a,0x09,0x22,0x99,0x48,0x40, +0x9c,0x47,0x83,0x25,0x89,0x00,0x82,0x97,0xb2,0x50,0x22,0x54,0x4e,0x85,0x92,0x54, +0x02,0x59,0xf2,0x49,0x62,0x4a,0xd2,0x4a,0x42,0x4b,0x45,0x61,0x82,0x80,0x90,0x45, +0xd4,0x45,0x63,0x14,0x96,0x00,0xe3,0x82,0x96,0xec,0x98,0x41,0xdc,0x41,0x33,0x07, +0xe0,0x40,0x33,0x35,0xe0,0x00,0xb3,0x07,0xf0,0x40,0x89,0x8f,0x98,0xc9,0xdc,0xc9, +0xe3,0xc5,0xd7,0xea,0x63,0x94,0xf6,0x00,0xe3,0x61,0xc7,0xea,0x93,0x09,0x70,0x10, +0x65,0xbf,0x83,0x47,0x05,0x00,0x85,0x8b,0xb9,0xc7,0x1c,0x45,0x01,0x11,0x22,0xcc, +0x85,0x8b,0x8a,0x07,0xaa,0x97,0xdc,0x47,0x26,0xca,0x4a,0xc8,0x4e,0xc6,0x06,0xce, +0x32,0x89,0xae,0x84,0x2a,0x84,0x93,0x09,0x45,0x00,0x63,0xfe,0xb7,0x00,0x01,0x45, +0xf2,0x40,0x62,0x44,0xd2,0x44,0x42,0x49,0xb2,0x49,0x05,0x61,0x82,0x80,0xca,0x85, +0x4e,0x85,0x89,0x35,0x75,0xf5,0x1c,0x44,0x85,0x8b,0x8a,0x07,0xa2,0x97,0xdc,0x47, +0xe3,0xe7,0xf4,0xfe,0xe9,0xbf,0x13,0x05,0x30,0x10,0x82,0x80,0x83,0x47,0x05,0x00, +0x85,0x8b,0xa9,0xc3,0x1c,0x45,0x41,0x11,0x22,0xc4,0x85,0x8b,0x8a,0x07,0xaa,0x97, +0xdc,0x47,0x26,0xc2,0x4a,0xc0,0x06,0xc6,0xae,0x84,0x2a,0x84,0x13,0x09,0x45,0x00, +0x1c,0x44,0x85,0x8b,0x8a,0x07,0xa2,0x97,0xdc,0x47,0x99,0xe3,0x01,0x45,0x29,0xa0, +0xa6,0x85,0x4a,0x85,0xc5,0x3b,0x6d,0xd5,0xb2,0x40,0x22,0x44,0x92,0x44,0x02,0x49, +0x41,0x01,0x82,0x80,0x13,0x05,0x30,0x10,0x82,0x80,0x01,0x11,0x22,0xcc,0x26,0xca, +0x4a,0xc8,0x4e,0xc6,0x52,0xc4,0x06,0xce,0x83,0x47,0x05,0x00,0x2a,0x84,0x2e,0x89, +0x85,0x8b,0xb2,0x84,0x13,0x0a,0x45,0x00,0xfd,0x59,0xb9,0xe7,0x01,0x45,0xf2,0x40, +0x62,0x44,0xd2,0x44,0x42,0x49,0xb2,0x49,0x22,0x4a,0x05,0x61,0x82,0x80,0x58,0x54, +0x89,0xa0,0x18,0x58,0x54,0x54,0x3e,0x97,0x63,0xe0,0xe6,0x02,0x18,0x58,0x54,0x54, +0x3e,0x97,0x63,0x1e,0xd7,0x04,0x58,0x54,0x1c,0x54,0x63,0x74,0xf7,0x00,0x1c,0x54, +0x5c,0xd4,0x23,0x28,0x04,0x02,0x61,0xf5,0x01,0xa0,0x5c,0x40,0xdc,0x47,0x82,0x97, +0x39,0xc1,0xa6,0x85,0x52,0x85,0xbd,0x33,0x18,0x58,0x5c,0x58,0xe3,0xe1,0xe7,0xfc, +0x58,0x58,0x1c,0x58,0x1d,0x8f,0x75,0xd3,0x83,0x27,0x09,0x00,0x63,0x73,0xf7,0x00, +0xba,0x87,0x23,0x20,0xf9,0x00,0x18,0x58,0x48,0x50,0x14,0x58,0x3a,0x95,0x58,0x58, +0xe3,0x61,0xd7,0xfa,0x18,0x58,0x54,0x58,0x3e,0x97,0xe3,0xef,0xe6,0xfa,0x18,0x58, +0xba,0x97,0x1c,0xd8,0x4d,0xbf,0x90,0x44,0xd4,0x44,0x63,0x14,0x36,0x01,0xe3,0x8d, +0x36,0xfb,0x98,0x40,0xdc,0x40,0x33,0x07,0xe0,0x40,0xb3,0x35,0xe0,0x00,0xb3,0x07, +0xf0,0x40,0x8d,0x8f,0x98,0xc8,0xdc,0xc8,0xe3,0xc0,0xd7,0xfa,0xe3,0x98,0xf6,0xf4, +0xe3,0x6c,0xc7,0xf8,0xa1,0xb7,0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xe3,0x01,0x45, +0x82,0x80,0x1c,0x45,0x85,0x8b,0x89,0x07,0x8e,0x07,0xaa,0x97,0x9c,0x47,0xf1,0x17, +0xe3,0xe7,0xb7,0xfe,0x1c,0x45,0x41,0x11,0x26,0xc2,0x85,0x8b,0x8a,0x07,0xaa,0x97, +0xd8,0x47,0x1c,0x45,0x93,0x84,0x45,0x00,0x22,0xc4,0x85,0x8b,0x89,0x07,0x8e,0x07, +0xaa,0x97,0x9c,0x47,0x4a,0xc0,0x06,0xc6,0x26,0x97,0x2e,0x89,0x2a,0x84,0x63,0xf1, +0xe7,0x06,0xb2,0x85,0x11,0x05,0x7d,0x31,0x41,0xe1,0x1c,0x44,0x13,0x97,0x04,0x01, +0x41,0x83,0x85,0x8b,0x8a,0x07,0xa2,0x97,0xd4,0x47,0x1c,0x44,0x36,0x97,0x85,0x8b, +0x89,0x07,0x8e,0x07,0xa2,0x97,0x9c,0x47,0x63,0xe0,0xe7,0x06,0x1c,0x44,0x18,0x44, +0x85,0x8b,0x05,0x8b,0x89,0x07,0x0a,0x07,0x8e,0x07,0x22,0x97,0xa2,0x97,0x58,0x47, +0xc8,0x43,0x3a,0x95,0x31,0xc1,0x1c,0x44,0x85,0x8b,0x8a,0x07,0x3e,0x94,0x5c,0x44, +0xbe,0x94,0x44,0xc4,0x23,0x10,0x25,0x01,0x23,0x11,0x05,0x00,0x11,0x05,0x35,0xa0, +0x1c,0x45,0x18,0x45,0x85,0x8b,0x05,0x8b,0x89,0x07,0x0a,0x07,0x8e,0x07,0x2a,0x97, +0xaa,0x97,0x58,0x47,0xc8,0x43,0x1c,0x44,0x3a,0x95,0x85,0x8b,0x8a,0x07,0x3e,0x94, +0x5c,0x44,0xbe,0x94,0x44,0xc4,0x79,0xf5,0x01,0x45,0xb2,0x40,0x22,0x44,0x92,0x44, +0x02,0x49,0x41,0x01,0x82,0x80,0x79,0x71,0x22,0xd4,0x41,0x64,0x7d,0x14,0x4e,0xce, +0xb3,0x79,0x85,0x00,0x32,0x94,0x4a,0xd0,0x52,0xcc,0x56,0xca,0x5a,0xc8,0x5e,0xc6, +0x2e,0x8a,0xb2,0x8a,0x06,0xd6,0x26,0xd2,0x2a,0x8b,0x4e,0x94,0x97,0x00,0xc8,0xff, +0xe7,0x80,0x80,0xd7,0x13,0x59,0x04,0x01,0xaa,0x8b,0x89,0x47,0x37,0x56,0x0c,0x60, +0x93,0x05,0x00,0x10,0x93,0x06,0x00,0x08,0x13,0x97,0x27,0x00,0x32,0x97,0x18,0x43, +0x63,0x06,0xb7,0x00,0x85,0x07,0xe3,0x99,0xd7,0xfe,0x89,0x47,0x33,0x07,0xf9,0x00, +0x93,0x06,0xf0,0x07,0xbe,0x84,0x63,0xed,0xe6,0x08,0x93,0x96,0x27,0x00,0x37,0x57, +0x0c,0x60,0x36,0x97,0x13,0x5b,0x0b,0x01,0x81,0x46,0x63,0x1d,0xd9,0x06,0x11,0x65, +0x13,0x05,0x05,0xc0,0x3e,0x95,0xc1,0x75,0x42,0x05,0xe1,0x8d,0xaa,0x99,0x01,0x44, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xcc,0x13,0x95,0x0b,0x01,0x41,0x81,0x97,0x00, +0xc8,0xff,0xe7,0x80,0xa0,0xd0,0x1d,0xe8,0x56,0x86,0xce,0x85,0x52,0x85,0x97,0x00, +0xc8,0xff,0xe7,0x80,0xa0,0xb2,0x97,0x00,0xc8,0xff,0xe7,0x80,0xe0,0xce,0xa6,0x87, +0x33,0x07,0x99,0x00,0x37,0x56,0x0c,0x60,0x93,0x05,0x00,0x10,0x63,0xef,0xe7,0x02, +0x42,0x05,0x41,0x81,0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xcd,0x22,0x85,0xb2,0x50, +0x22,0x54,0x92,0x54,0x02,0x59,0xf2,0x49,0x62,0x4a,0xd2,0x4a,0x42,0x4b,0xb2,0x4b, +0x45,0x61,0x82,0x80,0x33,0x86,0x66,0x01,0x10,0xc3,0x85,0x06,0x11,0x07,0xb5,0xbf, +0x01,0x49,0x81,0x44,0x81,0x49,0x05,0x44,0x41,0xbf,0x93,0x96,0x27,0x00,0xb2,0x96, +0x8c,0xc2,0x85,0x07,0x65,0xbf,0x5d,0x71,0x52,0xdc,0x61,0x46,0x2e,0x8a,0x2c,0x00, +0xa6,0xc2,0x86,0xc6,0xa2,0xc4,0xca,0xc0,0x4e,0xde,0x56,0xda,0x5a,0xd8,0x5e,0xd6, +0x62,0xd4,0x66,0xd2,0xaa,0x84,0xc1,0x3d,0x29,0xed,0x03,0x47,0x81,0x00,0x93,0x07, +0x90,0x0e,0x61,0x59,0x63,0x14,0xf7,0x02,0x2a,0x89,0xe1,0x04,0x81,0x49,0x01,0x44, +0x37,0x0b,0x00,0xbe,0xb7,0x0a,0x80,0x00,0x85,0x4b,0x31,0x4c,0xb7,0x0c,0x00,0xc4, +0x83,0x47,0x91,0x00,0x63,0xc2,0xf9,0x02,0x23,0x20,0x8a,0x00,0xb6,0x40,0x26,0x44, +0x4a,0x85,0x96,0x44,0x06,0x49,0xf2,0x59,0x62,0x5a,0xd2,0x5a,0x42,0x5b,0xb2,0x5b, +0x22,0x5c,0x92,0x5c,0x61,0x61,0x82,0x80,0x21,0x46,0x8a,0x85,0x26,0x85,0xa5,0x3d, +0x19,0xc1,0x7d,0x59,0xe1,0xbf,0x02,0x47,0xb3,0x07,0x67,0x01,0x63,0xe6,0x57,0x01, +0xb3,0x07,0x97,0x01,0x63,0xf0,0x57,0x03,0xe3,0xe0,0x8b,0xfc,0xb3,0x07,0x84,0x03, +0x05,0x04,0x93,0x86,0x84,0x00,0x42,0x04,0x41,0x80,0xd2,0x97,0x98,0xc7,0x12,0x47, +0xd4,0xc3,0xd8,0xc7,0x92,0x47,0x85,0x09,0xa1,0x07,0xbe,0x94,0x51,0xbf,0x13,0x01, +0x01,0xde,0x23,0x2a,0x91,0x20,0x93,0x04,0x15,0x00,0x23,0x2c,0x81,0x20,0x23,0x26, +0x31,0x21,0x23,0x24,0x41,0x21,0x23,0x22,0x51,0x21,0x23,0x20,0x61,0x21,0x23,0x2e, +0x11,0x20,0x23,0x28,0x21,0x21,0x32,0x8a,0x33,0x04,0xa6,0x00,0xb2,0x04,0xb3,0x09, +0xb5,0x00,0x93,0x0a,0x00,0x20,0x13,0x0b,0xf0,0x0f,0xb3,0x07,0x44,0x41,0x63,0xe6, +0x37,0x03,0x01,0x45,0x83,0x20,0xc1,0x21,0x03,0x24,0x81,0x21,0x83,0x24,0x41,0x21, +0x03,0x29,0x01,0x21,0x83,0x29,0xc1,0x20,0x03,0x2a,0x81,0x20,0x83,0x2a,0x41,0x20, +0x03,0x2b,0x01,0x20,0x13,0x01,0x01,0x22,0x82,0x80,0x85,0x47,0x7d,0x79,0x23,0x00, +0xf4,0x00,0x26,0x99,0x63,0x00,0x99,0x02,0x13,0x06,0x00,0x20,0x8a,0x85,0x4a,0x85, +0x5d,0x3b,0x15,0xe5,0xb3,0x07,0xa1,0x00,0x83,0xc7,0x07,0x00,0x63,0x88,0x67,0x01, +0x23,0x00,0x04,0x00,0x85,0x67,0x05,0x04,0xbe,0x94,0x45,0xb7,0x05,0x05,0xe3,0x13, +0x55,0xff,0x83,0x47,0x04,0x00,0x13,0x09,0x09,0x20,0xe9,0xf7,0xe5,0xb7,0x7d,0x55, +0x51,0xbf,0xb7,0x87,0x00,0x60,0x03,0xa6,0x87,0x0b,0x13,0x15,0x06,0x01,0x41,0x81, +0x93,0x57,0x06,0x01,0x63,0x17,0xf5,0x00,0x93,0x07,0xf6,0xff,0x75,0x57,0x63,0x75, +0xf7,0x02,0xb7,0x45,0xc8,0x3f,0x37,0x45,0xc8,0x3f,0x41,0x11,0x93,0x85,0xc5,0x13, +0x13,0x05,0x45,0x14,0x06,0xc6,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xa0,0x60,0xb2,0x40, +0x13,0x05,0x80,0x02,0x41,0x01,0x82,0x80,0x82,0x80,0x01,0x11,0x26,0xca,0xae,0x84, +0x85,0x65,0xfd,0x15,0x22,0xcc,0x06,0xce,0x4a,0xc8,0x4e,0xc6,0x52,0xc4,0xb3,0x77, +0xb5,0x00,0x2a,0x84,0x81,0xc7,0xfd,0x77,0x33,0x74,0xf5,0x00,0xb3,0xf7,0xb4,0x00, +0x81,0xc7,0xae,0x94,0xfd,0x75,0xed,0x8c,0x37,0x09,0xce,0x3f,0x03,0x27,0x09,0xff, +0xb3,0x07,0x94,0x00,0x54,0x43,0x63,0xfb,0xf6,0x00,0x7d,0x55,0xf2,0x40,0x62,0x44, +0xd2,0x44,0x42,0x49,0xb2,0x49,0x22,0x4a,0x05,0x61,0x82,0x80,0x5c,0x47,0xb3,0x77, +0xf4,0x02,0xe5,0xf7,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xc0,0x69,0x79,0xfd,0x83,0x27, +0x09,0xff,0xcc,0x47,0x03,0xa9,0x87,0x00,0x33,0x54,0xb4,0x02,0xb3,0xd7,0xb4,0x02, +0x33,0x59,0xb9,0x02,0xb3,0xf5,0xb4,0x02,0x93,0x84,0x17,0x00,0x91,0xe1,0xbe,0x84, +0xb3,0x79,0x24,0x03,0xb3,0x09,0x39,0x41,0x63,0xd3,0x34,0x01,0xa6,0x89,0x33,0x8a, +0x89,0x00,0xb3,0x07,0x8a,0x40,0x63,0x4d,0xf0,0x00,0xb3,0x84,0x34,0x41,0x63,0x61, +0x99,0x02,0x26,0x94,0x33,0x05,0x94,0x40,0x63,0x47,0x90,0x02,0x01,0x45,0x79,0xb7, +0x22,0x85,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x60,0x62,0x41,0xf1,0x05,0x04,0xd1,0xbf, +0x33,0x55,0x24,0x03,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0x61,0x3d,0xf5,0x4a,0x94, +0xb3,0x84,0x24,0x41,0xe9,0xb7,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x20,0x60,0x31,0xfd, +0xfd,0x14,0xc9,0xb7,0x01,0x11,0x22,0xcc,0x26,0xca,0x06,0xce,0x2a,0x84,0xb6,0x84, +0x8d,0xe2,0x32,0xc6,0x2e,0xc4,0xef,0xf0,0xaf,0xe6,0xa2,0x45,0x32,0x46,0x1d,0xe5, +0x22,0x85,0x62,0x44,0xf2,0x40,0xd2,0x44,0x05,0x61,0x17,0xf3,0xc7,0xff,0x67,0x00, +0x23,0x5d,0x32,0xc6,0x2e,0xc4,0xef,0xf0,0xaf,0xe4,0xa2,0x45,0x32,0x46,0x71,0xf9, +0xf2,0x40,0x62,0x44,0xd2,0x44,0x7d,0x55,0x05,0x61,0x82,0x80,0xf1,0xd8,0x22,0x85, +0x62,0x44,0xf2,0x40,0xd2,0x44,0x05,0x61,0x17,0xf3,0xc7,0xff,0x67,0x00,0x83,0x58, +0x61,0x73,0x39,0x71,0x41,0x03,0x06,0xde,0x26,0xda,0x4a,0xd8,0x4e,0xd6,0x52,0xd4, +0x56,0xd2,0x5a,0xd0,0x5e,0xce,0x22,0xdc,0x1a,0x91,0xaa,0x8b,0x2e,0x89,0x32,0x8a, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xa9,0x37,0x45,0xc8,0x3f,0x89,0x45,0x13,0x05, +0x85,0x32,0x97,0x00,0xc8,0xff,0xe7,0x80,0xe0,0xa8,0xa1,0x67,0xb7,0x44,0xc8,0x3f, +0xa1,0x6a,0x8a,0x97,0x81,0x49,0x93,0x84,0x84,0x32,0x33,0x8b,0x57,0x41,0x63,0x1a, +0x09,0x02,0x63,0x11,0x0a,0x06,0x93,0x05,0x80,0x0d,0x26,0x85,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x00,0x79,0x01,0x45,0x21,0x63,0x41,0x13,0x1a,0x91,0xf2,0x50,0x62,0x54, +0xd2,0x54,0x42,0x59,0xb2,0x59,0x22,0x5a,0x92,0x5a,0x02,0x5b,0xf2,0x4b,0x21,0x61, +0x82,0x80,0x4a,0x84,0x63,0xf3,0x2a,0x01,0x21,0x64,0x22,0x86,0xda,0x85,0x33,0x85, +0x79,0x01,0x95,0x36,0x1d,0xe9,0x93,0x77,0x34,0x00,0x89,0xeb,0x81,0x46,0x22,0x86, +0xda,0x85,0x26,0x85,0x97,0x00,0xc8,0xff,0xe7,0x80,0x80,0xa2,0x33,0x09,0x89,0x40, +0xa2,0x99,0x71,0xbf,0xd2,0x85,0x26,0x85,0x97,0x00,0xc8,0xff,0xe7,0x80,0x80,0xa1, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x80,0x9f,0x71,0xbf,0x7d,0x55,0x69,0xbf,0x41,0x11, +0x22,0xc4,0x37,0x44,0xc8,0x3f,0x13,0x05,0x44,0x30,0x61,0x46,0x81,0x45,0x26,0xc2, +0x06,0xc6,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x20,0x6e,0xb7,0x47,0xc8,0x3f,0x93,0x04, +0x44,0x30,0x93,0x87,0x07,0x00,0x9c,0xc4,0x93,0x87,0x47,0x02,0xdc,0xc4,0x05,0x47, +0xb7,0x47,0xc8,0x3f,0x13,0x04,0x44,0x30,0x23,0x84,0xe7,0x42,0x93,0x04,0x84,0x01, +0x1c,0x40,0x99,0xef,0x21,0x04,0xe3,0x9d,0x84,0xfe,0xb7,0x47,0xc8,0x3f,0x03,0xa7, +0x87,0x41,0xb7,0x06,0x80,0x00,0x01,0x45,0x1c,0x43,0xd5,0x8f,0x1c,0xc3,0x31,0xa0, +0x9c,0x43,0x48,0x40,0x82,0x97,0x79,0xdd,0x7d,0x55,0xb2,0x40,0x22,0x44,0x92,0x44, +0x41,0x01,0x82,0x80,0x1c,0x4d,0x35,0x73,0x5d,0x71,0x13,0x03,0x03,0x50,0xca,0xc0, +0x4e,0xde,0x5a,0xd8,0x6e,0xce,0x86,0xc6,0xa2,0xc4,0xa6,0xc2,0x52,0xdc,0x56,0xda, +0x5e,0xd6,0x62,0xd4,0x66,0xd2,0x6a,0xd0,0x4d,0x69,0x1a,0x91,0x85,0x8b,0x10,0x08, +0x37,0x4b,0xc8,0x3f,0x93,0x06,0x09,0xb0,0x23,0x22,0xfb,0x42,0xb2,0x96,0xe1,0x77, +0xb6,0x97,0x37,0x47,0xc8,0x3f,0x23,0x20,0xf7,0x42,0xb7,0x47,0xc8,0x3f,0x21,0x67, +0xaa,0x8d,0x23,0xae,0xe7,0x40,0x25,0x3f,0xaa,0x89,0x63,0x18,0x05,0x18,0x83,0xa5, +0xcd,0x00,0x03,0xa5,0x8d,0x00,0x37,0x44,0xc8,0x3f,0xb5,0x74,0xef,0xf0,0xcf,0xc4, +0x03,0xa7,0x0d,0x00,0x93,0x07,0x44,0x30,0x10,0x08,0x23,0xae,0xe7,0x0e,0x03,0xa7, +0x0d,0x01,0x93,0x06,0x09,0xb0,0xb2,0x96,0x23,0xa0,0xe7,0x10,0x03,0xa7,0x4d,0x00, +0xb5,0x7b,0x13,0x8c,0xcb,0x50,0x23,0xa2,0xe7,0x10,0x13,0x87,0x04,0x51,0x36,0x97, +0x93,0x06,0x09,0xb0,0xb2,0x96,0x23,0xa4,0xe7,0x10,0x41,0x77,0x36,0x97,0x23,0xa6, +0xe7,0x10,0x23,0xa8,0xe7,0x10,0x93,0x8c,0x8b,0x50,0xb3,0x87,0x86,0x01,0xb6,0x94, +0x3e,0xc4,0xb3,0x87,0x96,0x01,0x23,0xa8,0x04,0x50,0x81,0x4a,0x13,0x04,0x44,0x30, +0x3e,0xc6,0x83,0xa7,0x4d,0x00,0x63,0xfa,0xfa,0x10,0xb3,0x87,0x57,0x41,0x23,0xa2, +0xf4,0x50,0xcd,0x67,0x18,0x08,0x93,0x87,0x07,0xb0,0xba,0x97,0x13,0x85,0x4b,0x50, +0x3e,0x95,0xef,0xf0,0x8f,0xb7,0x2a,0x8c,0x65,0xc9,0x03,0xad,0x44,0x50,0xaa,0x8c, +0x05,0x4a,0x21,0x6e,0x63,0x07,0x0d,0x00,0x83,0x27,0x04,0x10,0x99,0xc3,0x63,0x41, +0x40,0x03,0x63,0x4e,0x0a,0x08,0x83,0x27,0x04,0x10,0x63,0x15,0x0a,0x0c,0xc1,0xeb, +0x62,0x85,0xef,0xf0,0x4f,0xaf,0x69,0xe1,0x83,0xa7,0x44,0x50,0xbe,0x9a,0x55,0xb7, +0x83,0x26,0xc4,0x10,0x03,0x27,0x04,0x11,0x03,0x28,0x44,0x10,0xb3,0x87,0xc6,0x01, +0x99,0x8f,0x23,0xa6,0xf4,0x50,0x32,0x46,0xa2,0x47,0x03,0x25,0x84,0x10,0x33,0x38, +0x0d,0x01,0xe6,0x85,0x06,0x08,0x23,0xa4,0xa4,0x51,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0xa0,0x2c,0x83,0xa7,0x84,0x50,0x03,0x27,0x44,0x10,0x03,0x29,0x04,0x11,0x33,0x0d, +0xfd,0x40,0x1d,0x8f,0xbe,0x9c,0x83,0xa7,0xc4,0x50,0x83,0x25,0xc4,0x10,0x23,0x22, +0xe4,0x10,0x3e,0x99,0x23,0x28,0x24,0x11,0x2a,0x8a,0x33,0x09,0xb9,0x40,0x21,0x6e, +0x63,0x54,0xa0,0x00,0xe3,0x18,0xc9,0xf7,0x83,0x27,0x04,0x10,0x4a,0x86,0x63,0xf3, +0x27,0x01,0x3e,0x86,0x05,0xc2,0x63,0x76,0xc6,0x01,0x63,0x74,0xf9,0x00,0xf5,0x59, +0x2d,0xa8,0x83,0x26,0x4b,0x42,0x03,0x25,0xc4,0x0f,0xb3,0x36,0xd0,0x00,0x5d,0x31, +0x21,0x6e,0x75,0xf5,0x83,0x27,0xc4,0x0f,0xca,0x97,0x23,0x2e,0xf4,0x0e,0x83,0x27, +0x04,0x10,0x33,0x89,0x27,0x41,0x83,0x27,0xc4,0x10,0x23,0x20,0x24,0x11,0x23,0x28, +0xf4,0x10,0x0d,0xb7,0x95,0xff,0xe1,0xb7,0xfd,0x59,0x4d,0x63,0x13,0x03,0x03,0xb0, +0x1a,0x91,0xb6,0x40,0x4e,0x85,0x26,0x44,0x96,0x44,0x06,0x49,0xf2,0x59,0x62,0x5a, +0xd2,0x5a,0x42,0x5b,0xb2,0x5b,0x22,0x5c,0x92,0x5c,0x02,0x5d,0xf2,0x4d,0x61,0x61, +0x82,0x80,0x1c,0x4d,0x1d,0x71,0x41,0x73,0xa6,0xca,0xce,0xc6,0xda,0xc0,0x62,0xdc, +0x86,0xce,0xa2,0xcc,0xca,0xc8,0xd2,0xc4,0xd6,0xc2,0x5e,0xde,0x66,0xda,0x6a,0xd8, +0x6e,0xd6,0xc1,0x64,0x1a,0x91,0x85,0x8b,0x10,0x08,0x37,0x4c,0xc8,0x3f,0x93,0x86, +0x04,0x01,0x23,0x22,0xfc,0x42,0xb2,0x96,0xe1,0x77,0xb6,0x97,0x37,0x47,0xc8,0x3f, +0x23,0x20,0xf7,0x42,0xb7,0x47,0xc8,0x3f,0x21,0x67,0xaa,0x89,0x23,0xae,0xe7,0x40, +0x3d,0x33,0x2a,0x8b,0x63,0x18,0x05,0x10,0x83,0xa5,0xc9,0x00,0x03,0xa5,0x89,0x00, +0x37,0x44,0xc8,0x3f,0x41,0x7a,0xef,0xf0,0x2f,0xa4,0x03,0xa7,0x09,0x00,0x93,0x07, +0x44,0x30,0x14,0x08,0x23,0xae,0xe7,0x0e,0x03,0xa7,0x09,0x01,0x81,0x4b,0x13,0x04, +0x44,0x30,0x23,0xa0,0xe7,0x10,0x13,0x87,0x04,0x01,0x36,0x97,0x33,0x09,0x47,0x01, +0x23,0xa6,0x27,0x11,0x23,0xa8,0x27,0x11,0x93,0x87,0x04,0x01,0x71,0x1a,0xb6,0x97, +0xd2,0x97,0x3e,0xc6,0xa1,0x6c,0x83,0xa7,0x49,0x00,0x63,0xfd,0xfb,0x0a,0x32,0x45, +0xb3,0x87,0x77,0x41,0x23,0x2e,0xf9,0xfe,0xef,0xf0,0x2f,0x9a,0xaa,0x8d,0x55,0xc1, +0x03,0x2d,0xc9,0xff,0x2a,0x8a,0x63,0x05,0x0d,0x00,0x03,0x27,0x04,0x10,0x19,0xe3, +0x81,0x44,0xbd,0xa8,0x03,0x25,0x04,0x11,0x83,0x24,0xc4,0x10,0xea,0x8a,0xb3,0x04, +0x95,0x40,0x33,0x87,0xa4,0x01,0x63,0xf4,0xec,0x00,0xb3,0x8a,0x9c,0x40,0x56,0x86, +0xd2,0x85,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x60,0x38,0x03,0x27,0x04,0x11,0xd6,0x94, +0x33,0x0d,0x5d,0x41,0x56,0x9a,0xba,0x9a,0x03,0x27,0x04,0x10,0x23,0x28,0x54,0x11, +0x63,0x84,0xe4,0x00,0xe3,0x99,0x94,0xfb,0x83,0x26,0x4c,0x42,0x83,0x25,0xc4,0x10, +0x03,0x25,0xc4,0x0f,0xb3,0x36,0xd0,0x00,0x26,0x86,0x2d,0x36,0x0d,0xe1,0x03,0x27, +0xc4,0x0f,0x26,0x97,0x23,0x2e,0xe4,0x0e,0x03,0x27,0x04,0x10,0xb3,0x04,0x97,0x40, +0x03,0x27,0xc4,0x10,0x23,0x20,0x94,0x10,0x23,0x28,0xe4,0x10,0xad,0xbf,0xfd,0x54, +0x6e,0x85,0xef,0xf0,0x4f,0x8b,0x11,0xe5,0x85,0xe8,0x83,0x27,0xc9,0xff,0xbe,0x9b, +0x99,0xb7,0x7d,0x5b,0x41,0x63,0x1a,0x91,0xf6,0x40,0x5a,0x85,0x66,0x44,0xd6,0x44, +0x46,0x49,0xb6,0x49,0x26,0x4a,0x96,0x4a,0x06,0x4b,0xf2,0x5b,0x62,0x5c,0xd2,0x5c, +0x42,0x5d,0xb2,0x5d,0x25,0x61,0x82,0x80,0x75,0x5b,0xe9,0xbf,0x39,0x71,0x61,0x73, +0xa1,0x66,0x26,0xda,0x56,0xd2,0x5e,0xce,0x06,0xde,0x22,0xdc,0x4a,0xd8,0x4e,0xd6, +0x52,0xd4,0x5a,0xd0,0x62,0xcc,0xc1,0x06,0x1a,0x91,0x8a,0x96,0xe1,0x77,0xb6,0x97, +0x37,0x47,0xc8,0x3f,0x23,0x20,0xf7,0x42,0xb7,0x47,0xc8,0x3f,0x21,0x67,0xaa,0x8a, +0xae,0x8b,0x23,0xae,0xe7,0x40,0x65,0x3e,0xaa,0x84,0x01,0xe9,0x11,0x6a,0x79,0x1a, +0x01,0x49,0x13,0x7c,0xca,0xff,0x63,0x61,0x79,0x03,0x21,0x63,0x1a,0x91,0xf2,0x50, +0x26,0x85,0x62,0x54,0xd2,0x54,0x42,0x59,0xb2,0x59,0x22,0x5a,0x92,0x5a,0x02,0x5b, +0xf2,0x4b,0x62,0x4c,0x21,0x61,0x82,0x80,0x33,0x84,0x2b,0x41,0xa2,0x89,0x63,0x7a, +0x8a,0x00,0x62,0x84,0x22,0x85,0xef,0xe0,0x5f,0xfb,0x2a,0x8b,0x21,0xed,0xfd,0x54, +0xe9,0xb7,0x93,0x77,0x34,0x00,0xfd,0xd7,0x71,0x98,0x6d,0xf4,0x8d,0x47,0xe3,0xe8, +0x37,0xff,0xa1,0x67,0x61,0x74,0xc1,0x07,0x71,0x14,0x8a,0x97,0x3e,0x94,0x11,0x46, +0xa2,0x85,0x33,0x05,0x59,0x01,0xef,0xf0,0x0f,0xe7,0x71,0xf9,0x4e,0x85,0xef,0xe0, +0xdf,0xf7,0xaa,0x84,0x69,0xd5,0x4e,0x86,0xa2,0x85,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0xe0,0x22,0x26,0x85,0xef,0xe0,0x5f,0xf1,0x5d,0xf9,0xef,0xe0,0x7f,0xec,0xaa,0x84, +0x2d,0xdd,0x75,0xb7,0xaa,0x85,0x22,0x86,0x33,0x05,0x59,0x01,0xef,0xf0,0xaf,0xe3, +0xaa,0x89,0x5a,0x85,0xef,0xe0,0x5f,0xef,0x33,0xe5,0xa9,0x00,0x49,0xf9,0x22,0x99, +0xef,0xe0,0x1f,0xea,0x29,0xd9,0x61,0xb7,0x35,0x71,0x3a,0xc9,0x3e,0xcb,0x37,0x47, +0xc8,0x3f,0xb7,0x47,0xc8,0x3f,0x86,0xde,0xa2,0xdc,0xa6,0xda,0xca,0xd8,0xce,0xd6, +0xd2,0xd4,0xd6,0xd2,0xda,0xd0,0xde,0xce,0xe2,0xcc,0xe6,0xca,0xea,0xc8,0xee,0xc6, +0x2e,0xc3,0x32,0xc5,0x36,0xc7,0x42,0xcd,0x46,0xcf,0x93,0x87,0x47,0x30,0x13,0x07, +0x97,0x42,0x63,0xe0,0xe7,0x0e,0x5c,0x01,0x3e,0xce,0x2d,0x47,0xe3,0x42,0xa7,0x08, +0x2a,0x84,0x9a,0x44,0x2a,0x49,0x3a,0x4a,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x40,0x56, +0xb7,0x47,0x00,0x60,0xaa,0x89,0x88,0x5f,0x63,0x96,0x09,0x00,0x71,0x89,0x61,0x15, +0x93,0x39,0x15,0x00,0xb7,0x47,0x0c,0x60,0x98,0x43,0xdc,0x43,0x05,0x8b,0x19,0xc3, +0x89,0x8b,0xa1,0xc7,0xb7,0x07,0x0c,0x60,0xb8,0x43,0x13,0x67,0x17,0x00,0xb8,0xc3, +0xb8,0x43,0x13,0x67,0x27,0x00,0xb8,0xc3,0xb8,0x43,0x75,0x9b,0xb8,0xc3,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x60,0x35,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x60,0x35,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x20,0x2b,0x01,0x45,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x80,0x30, +0x37,0x47,0x0c,0x60,0x5c,0x43,0xf5,0x9b,0x5c,0xc3,0x81,0x45,0x4e,0x85,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x60,0xf3,0xef,0xe0,0x9f,0xff,0x39,0x15,0x93,0x07,0x70,0x02, +0x63,0xec,0xa7,0x00,0xb7,0x4a,0xc8,0x3f,0x93,0x87,0xca,0x09,0x0a,0x05,0x3e,0x95, +0x0c,0x41,0x93,0x8a,0xca,0x09,0x95,0xe9,0x71,0x14,0x33,0x34,0x80,0x00,0x33,0x04, +0x80,0x40,0x22,0x85,0xf6,0x50,0x66,0x54,0xd6,0x54,0x46,0x59,0xb6,0x59,0x26,0x5a, +0x96,0x5a,0x06,0x5b,0xf6,0x4b,0x66,0x4c,0xd6,0x4c,0x46,0x4d,0xb6,0x4d,0x0d,0x61, +0x82,0x80,0x23,0xa0,0x07,0x00,0x91,0x07,0x29,0xbf,0x91,0x47,0x63,0x14,0xf4,0x00, +0x2e,0x84,0xc1,0xbf,0xb7,0x07,0xce,0x3f,0x03,0xa5,0x07,0xff,0xc1,0x67,0xfd,0x17, +0x08,0x41,0x13,0x07,0x00,0x10,0x85,0x66,0x41,0x66,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0xa0,0xe8,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xe0,0xe8,0xaa,0x89,0x19,0xc1,0x7d,0x54, +0x4d,0xb7,0xad,0x47,0x63,0xe6,0x87,0x76,0x37,0x45,0xc8,0x3f,0x0a,0x04,0x13,0x05, +0xc5,0x06,0x2a,0x94,0x1c,0x40,0x82,0x87,0xca,0x85,0x26,0x85,0x41,0x3b,0x2a,0x84, +0x49,0xb7,0xca,0x85,0x26,0x85,0xef,0xf0,0x4f,0xf6,0xd5,0xbf,0x52,0x86,0xca,0x85, +0x26,0x85,0xef,0xf0,0xcf,0xe5,0xe5,0xb7,0x26,0x85,0xe5,0x36,0xcd,0xb7,0x26,0x85, +0xd1,0x3a,0xf1,0xbf,0x52,0x86,0xca,0x85,0x26,0x85,0xef,0xf0,0x7f,0x88,0xc1,0xbf, +0xef,0xe0,0xff,0xf1,0x39,0x15,0x93,0x07,0x70,0x02,0x63,0xe6,0xa7,0x00,0x0a,0x05, +0x56,0x95,0x83,0x29,0x05,0x00,0x23,0x20,0x09,0x00,0xfd,0x57,0x21,0x64,0x63,0x9e, +0xf4,0x02,0x95,0x64,0x93,0x84,0xa4,0x0a,0x13,0x06,0x00,0x02,0x0c,0x10,0x22,0x85, +0xef,0xf0,0x6f,0xc4,0x2d,0xfd,0x83,0x57,0x01,0x02,0x63,0x95,0x97,0x02,0x12,0x55, +0x63,0xe4,0xa9,0x02,0xa2,0x57,0xaa,0x97,0x63,0xe0,0xf9,0x02,0x83,0x47,0x21,0x02, +0x13,0x04,0x04,0x02,0xf1,0xfb,0xca,0x85,0x19,0xa0,0xca,0x85,0x26,0x85,0xef,0xf0, +0x8f,0xd2,0xb5,0xb7,0x69,0x54,0xf5,0xb5,0x65,0x54,0xe5,0xb5,0xfd,0x79,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0xa0,0x15,0xb3,0xf9,0x34,0x01,0x09,0x66,0xd2,0x85,0x4e,0x85, +0xef,0xf0,0x6f,0xbf,0x19,0xc1,0x01,0x44,0xe9,0xb5,0x05,0x64,0x7d,0x14,0x65,0x8c, +0x52,0x94,0xa2,0x85,0x09,0x46,0x4a,0x85,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0xfb, +0x89,0x45,0x26,0x85,0xef,0xf0,0x6f,0xe9,0x79,0xfd,0x89,0x47,0x23,0x00,0xf4,0x00, +0x93,0x07,0x00,0xf9,0xa3,0x00,0xf4,0x00,0xef,0xe0,0x9f,0xde,0xb3,0x36,0xa0,0x00, +0x09,0x66,0xd2,0x85,0x4e,0x85,0xef,0xf0,0xef,0xf5,0x55,0xfd,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0xc0,0x0f,0x09,0x44,0xb5,0xbd,0xfd,0x79,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0xe0,0x0e,0xb3,0xf9,0x34,0x01,0x09,0x66,0xd2,0x85,0x4e,0x85,0xef,0xf0,0xaf,0xb8, +0xe3,0x1f,0x05,0xea,0x89,0x45,0x26,0x85,0xef,0xf0,0x2f,0xe4,0x2a,0x84,0xe3,0x18, +0x05,0xea,0x85,0x67,0xfd,0x17,0xfd,0x8c,0x83,0x47,0x09,0x00,0xd2,0x94,0x23,0x80, +0xf4,0x00,0x83,0x47,0x19,0x00,0xa3,0x80,0xf4,0x00,0xef,0xe0,0x7f,0xd8,0xb3,0x36, +0xa0,0x00,0x09,0x66,0xd2,0x85,0x4e,0x85,0xef,0xf0,0xcf,0xef,0xe3,0x11,0x05,0xe8, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0x80,0x09,0x29,0xbd,0xb7,0x06,0x0c,0x60,0xbc,0x4e, +0x05,0x47,0x26,0x89,0xa9,0x83,0x8d,0x8b,0x63,0x85,0xe7,0x18,0x63,0x89,0x07,0x14, +0x09,0x47,0x21,0x44,0x63,0x83,0xe7,0x00,0x01,0x44,0xfd,0x57,0x63,0x88,0xf4,0x18, +0xe3,0x59,0x90,0xde,0xb7,0x84,0x00,0x60,0xbc,0x58,0x13,0x79,0xf9,0x3f,0x13,0x1d, +0x09,0x01,0x3e,0xc4,0x93,0xdc,0xe7,0x01,0xbc,0x58,0x37,0x07,0xfc,0xff,0x13,0x5d, +0x0d,0x01,0x3e,0xc2,0x13,0xda,0xd7,0x01,0x82,0x57,0x13,0x06,0xf7,0x0f,0x13,0x7c, +0xfd,0x3f,0x93,0x16,0x8c,0x00,0xf1,0x8f,0xd5,0x8f,0x7d,0x17,0x13,0x7a,0x1a,0x00, +0x93,0x16,0x2a,0x01,0xf9,0x8f,0x37,0x07,0xe8,0xff,0xd5,0x8f,0x7d,0x17,0x93,0x96, +0x3c,0x01,0xf9,0x8f,0x37,0x07,0x20,0x00,0xd5,0x8f,0x13,0x07,0x07,0xf0,0xf9,0x8f, +0x93,0xe7,0x87,0x02,0x3e,0xd0,0x83,0xa7,0x04,0x08,0x37,0x47,0xc0,0xff,0x7d,0x17, +0xf9,0x8f,0x37,0xc7,0x3f,0x00,0x66,0xc6,0xd9,0x8f,0x23,0xa0,0xf4,0x08,0xbc,0x58, +0x37,0x07,0x02,0xfe,0x7d,0x17,0xf9,0x8f,0x37,0x07,0xc8,0x00,0xd9,0x8f,0xbc,0xd8, +0xfc,0x58,0x37,0x07,0xc0,0xff,0x7d,0x17,0xf9,0x8f,0xfc,0xd8,0xfc,0x58,0x37,0x07, +0x80,0x80,0x7d,0x17,0xf9,0x8f,0xfc,0xd8,0xfc,0x58,0x37,0x07,0x40,0x00,0xb7,0x06, +0x04,0x00,0xd9,0x8f,0xfc,0xd8,0xbc,0x58,0x65,0x77,0x7d,0x17,0xdd,0x9b,0xbc,0xd8, +0xbc,0x58,0x93,0x86,0x06,0xf0,0x01,0x45,0xf9,0x8f,0xbc,0xd8,0xbc,0x58,0x93,0xe7, +0x87,0x00,0xbc,0xd8,0xb7,0xe7,0x00,0x60,0xf8,0x43,0x55,0x8f,0xf8,0xc3,0xf8,0x43, +0xb7,0xc6,0xfd,0xff,0xfd,0x16,0x75,0x8f,0xf8,0xc3,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0xa0,0xb2,0xb7,0x07,0x28,0x00,0x93,0x87,0x87,0x02,0x23,0xac,0xf4,0x0a,0xb7,0x27, +0x25,0x26,0x93,0x87,0x57,0x62,0x23,0xae,0xf4,0x0a,0xb7,0x06,0x0c,0x60,0xbc,0x4e, +0x05,0x47,0xa9,0x83,0x8d,0x8b,0x63,0x83,0xe7,0x0c,0xa5,0xcf,0x09,0x47,0xa1,0x4d, +0x63,0x82,0xe7,0x08,0xb7,0x45,0xc8,0x3f,0x37,0x45,0xc8,0x3f,0x93,0x85,0xc5,0x13, +0x13,0x05,0x85,0x17,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xc0,0xa9,0x01,0xa0,0xa0,0x4e, +0xb7,0x87,0x00,0x60,0x83,0xa7,0x87,0x0b,0x13,0x74,0xf4,0x3f,0x93,0x05,0x14,0x00, +0x13,0x94,0x07,0x01,0x41,0x80,0x13,0xd7,0x07,0x01,0x63,0x19,0xe4,0x00,0xfd,0x17, +0x75,0x57,0x63,0x65,0xf7,0x00,0x33,0x54,0xb4,0x02,0x41,0xbd,0x13,0x04,0x80,0x02, +0xdd,0xbf,0x98,0x46,0x94,0x46,0x13,0x04,0x00,0x05,0x0d,0x8b,0xe3,0x0f,0x07,0xe6, +0x01,0x44,0xe3,0x1c,0xf7,0xe6,0x13,0x04,0x00,0x0a,0x85,0xbd,0x13,0x09,0x00,0x0a, +0x95,0xbd,0x83,0xad,0x86,0x05,0xef,0xf0,0xcf,0xbf,0x93,0xfd,0xfd,0x3f,0x85,0x0d, +0xb3,0x5d,0xb5,0x03,0xef,0xf0,0xef,0xbe,0xaa,0x8a,0x63,0x61,0x25,0x07,0x01,0x46, +0xb3,0x57,0x25,0x03,0x93,0xd6,0x17,0x00,0xaa,0x96,0xb3,0xd6,0xf6,0x02,0x63,0x03, +0xd9,0x06,0xb7,0x45,0xc8,0x3f,0x37,0x45,0xc8,0x3f,0x93,0x85,0x85,0x1a,0x13,0x05, +0x85,0x1b,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xe0,0x9f,0x01,0xa0,0x98,0x46,0x94,0x46, +0x0d,0x8b,0x15,0xc3,0x93,0x0d,0x00,0x0a,0xe3,0x0e,0xf7,0xfa,0xb7,0x45,0xc8,0x3f, +0x37,0x45,0xc8,0x3f,0x93,0x85,0xc5,0x13,0x13,0x05,0x85,0x17,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x40,0x9d,0x01,0xa0,0x93,0x0d,0x00,0x05,0x69,0xbf,0x93,0x07,0x00,0x05, +0x63,0x0a,0xf9,0x1e,0x93,0x07,0x00,0x0a,0xe3,0x15,0xf9,0xfa,0x8d,0x47,0x05,0x46, +0x93,0x0a,0x00,0x1e,0xb7,0x04,0x0c,0x60,0xb4,0x4c,0xa9,0x82,0x8d,0x8a,0x63,0x1d, +0x06,0x1c,0xb8,0x4c,0xfd,0x17,0x93,0xf7,0xf7,0x3f,0x13,0x77,0x07,0xc0,0xb8,0xcc, +0xb8,0x4c,0x13,0x77,0x07,0xc0,0xd9,0x8f,0xbc,0xcc,0xbc,0x4c,0x7d,0x77,0x13,0x07, +0xf7,0x3f,0xf9,0x8f,0xbc,0xcc,0xb7,0x47,0x0f,0x00,0x93,0x87,0x07,0x24,0x33,0x09, +0xf9,0x02,0x05,0x47,0x13,0x59,0xc9,0x00,0x93,0x17,0x09,0x01,0xc1,0x83,0x42,0x09, +0x33,0xe9,0x27,0x01,0xb7,0x87,0x00,0x60,0x23,0xae,0x27,0x0b,0x63,0x96,0xe6,0x00, +0x98,0x43,0x13,0x67,0x07,0x54,0x98,0xc3,0x73,0x25,0x20,0x7e,0xb3,0x35,0xad,0x02, +0x6e,0x86,0x81,0x46,0x33,0x05,0xad,0x02,0x3d,0x26,0x73,0x10,0x25,0x7e,0x82,0x57, +0x37,0x07,0xfc,0xff,0x93,0x06,0xf7,0x0f,0x22,0x0c,0xf5,0x8f,0x7d,0x17,0xb3,0xe7, +0x87,0x01,0x4a,0x0a,0xf9,0x8f,0xb3,0xe7,0x47,0x01,0x37,0x0a,0xe8,0xff,0x7d,0x1a, +0x93,0x9b,0x3c,0x01,0xb3,0xf7,0x47,0x01,0xb3,0xe7,0x77,0x01,0xb7,0x0b,0x20,0x00, +0x93,0x8b,0x0b,0xf0,0xb3,0xf7,0x77,0x01,0x93,0xe7,0x87,0x02,0x37,0x09,0x18,0x00, +0x3e,0xd0,0x33,0xf9,0x27,0x01,0x37,0x07,0x08,0x00,0x63,0x16,0xe9,0x04,0x37,0x87, +0x00,0x60,0x34,0x53,0x37,0x06,0xf2,0xff,0x7d,0x16,0xf1,0x8e,0x37,0x06,0x06,0x00, +0xd1,0x8e,0x34,0xd3,0x34,0x53,0x49,0x76,0x7d,0x16,0xf1,0x8e,0x19,0x66,0xd1,0x8e, +0x34,0xd3,0x34,0x53,0x79,0x76,0x13,0x06,0xf6,0x3f,0xf1,0x8e,0x05,0x66,0x13,0x06, +0x06,0xc0,0xd1,0x8e,0x34,0xd3,0x34,0x53,0x41,0x66,0x93,0xe6,0x06,0x20,0x34,0xd3, +0x34,0x53,0xd1,0x8e,0x34,0xd3,0x13,0x97,0xd7,0x00,0x63,0x5e,0x07,0x02,0xb7,0x84, +0x00,0x60,0xbc,0x58,0x71,0x77,0x13,0x07,0xf7,0x03,0x93,0xf7,0xf7,0xfb,0xbc,0xd8, +0xdc,0x4c,0x13,0x05,0x20,0x03,0xf9,0x8f,0x93,0xe7,0x07,0x14,0xdc,0xcc,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x20,0x88,0xb7,0x07,0x10,0x00,0x63,0x17,0xf9,0x24,0xbc,0x58, +0x93,0xf7,0xf7,0xf7,0xbc,0xd8,0xb7,0x84,0x00,0x60,0xbc,0x58,0x92,0x46,0x37,0x07, +0x00,0xe0,0x7d,0x17,0xf9,0x8f,0x37,0x07,0x00,0x20,0x33,0xfb,0xe6,0x00,0x33,0xeb, +0x67,0x01,0x23,0xa8,0x64,0x07,0x0d,0x45,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x80,0x84, +0xbc,0x58,0xa2,0x46,0x37,0x07,0x00,0x40,0x7d,0x17,0xf9,0x8f,0x37,0x07,0x00,0xc0, +0xb3,0xfa,0xe6,0x00,0xb3,0xea,0x57,0x01,0x23,0xa8,0x54,0x07,0xbc,0x58,0x85,0x46, +0x13,0x07,0x00,0x10,0x93,0xf7,0xf7,0xef,0x63,0x83,0xdc,0x00,0x01,0x47,0xd9,0x8f, +0x37,0x87,0x00,0x60,0x3c,0xdb,0x3c,0x5b,0x37,0x07,0x00,0xfc,0x7d,0x17,0xf9,0x8f, +0x09,0x47,0x63,0x94,0xec,0x00,0xb7,0x09,0x00,0x04,0xb3,0xe9,0x37,0x01,0xb7,0x87, +0x00,0x60,0x23,0xa8,0x37,0x07,0x13,0x05,0xc0,0x12,0x97,0xe0,0xc7,0xff,0xe7,0x80, +0x60,0x7e,0xc5,0xba,0x99,0x47,0x21,0xbd,0x85,0x47,0x63,0x86,0xf6,0x10,0xb7,0x86, +0x00,0x60,0x9c,0x42,0x93,0xf7,0xf7,0xab,0x9c,0xc2,0xef,0xf0,0x8f,0x97,0xb7,0xe7, +0x00,0x60,0xb4,0x43,0xed,0x9a,0xb4,0xc3,0xb4,0x43,0x93,0xe6,0x86,0x00,0xb4,0xc3, +0x93,0x07,0x00,0x1e,0x63,0x9c,0xfa,0x10,0x9c,0x44,0x93,0xe7,0x47,0x00,0x9c,0xc4, +0x93,0x07,0x00,0x02,0x63,0x1f,0xf5,0x0e,0x81,0x4a,0x11,0x47,0xe9,0x44,0x85,0x4b, +0x93,0x06,0xb0,0x06,0x11,0x46,0x81,0x45,0x13,0x05,0x60,0x06,0x3a,0xc6,0x97,0x00, +0xc8,0xff,0xe7,0x80,0xe0,0x08,0x32,0x47,0x5e,0x8b,0x93,0x16,0x47,0x00,0xb3,0xe6, +0x76,0x01,0x09,0x46,0x81,0x45,0x13,0x05,0x60,0x06,0x97,0x00,0xc8,0xff,0xe7,0x80, +0x20,0x07,0xa6,0x86,0x0d,0x46,0x81,0x45,0x13,0x05,0x60,0x06,0x97,0x00,0xc8,0xff, +0xe7,0x80,0x00,0x06,0xda,0x87,0x01,0x47,0x89,0x46,0x15,0x46,0x81,0x45,0x13,0x05, +0x60,0x06,0x97,0x00,0xc8,0xff,0xe7,0x80,0xe0,0x04,0xda,0x87,0x11,0x47,0x99,0x46, +0x15,0x46,0x81,0x45,0x13,0x05,0x60,0x06,0x97,0x00,0xc8,0xff,0xe7,0x80,0x80,0x03, +0x93,0xe6,0x0a,0x09,0x19,0x46,0x81,0x45,0x13,0x05,0x60,0x06,0x97,0x00,0xc8,0xff, +0xe7,0x80,0x00,0x02,0x89,0x47,0x01,0x47,0x85,0x46,0x25,0x46,0x81,0x45,0x13,0x05, +0x60,0x06,0x97,0x00,0xc8,0xff,0xe7,0x80,0xe0,0x00,0x89,0x47,0x11,0x47,0x95,0x46, +0x19,0x46,0x81,0x45,0x13,0x05,0x60,0x06,0x97,0x00,0xc8,0xff,0xe7,0x80,0x80,0xff, +0x85,0x47,0x19,0x47,0x9d,0x46,0x19,0x46,0x81,0x45,0x13,0x05,0x60,0x06,0x97,0x00, +0xc8,0xff,0xe7,0x80,0x20,0xfe,0x93,0x07,0x00,0x05,0x63,0x03,0xf9,0x06,0x93,0x07, +0x00,0x0a,0x85,0x46,0x63,0x0f,0xf9,0x04,0xb7,0x45,0xc8,0x3f,0x37,0x45,0xc8,0x3f, +0x93,0x85,0xc5,0x13,0x13,0x05,0x05,0x1e,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x80,0x69, +0x01,0xa0,0x8d,0x4a,0x15,0x47,0xa1,0x44,0x81,0x4b,0x19,0xb7,0x9c,0x44,0xed,0x9b, +0x9c,0xc4,0x93,0x07,0x00,0x02,0x63,0x12,0xf5,0x02,0x99,0x44,0x85,0x4b,0x93,0x06, +0x90,0x06,0x11,0x46,0x81,0x45,0x13,0x05,0x60,0x06,0x97,0x00,0xc8,0xff,0xe7,0x80, +0x20,0xf8,0x8d,0x4a,0x15,0x47,0x01,0x4b,0xcd,0xbd,0x91,0x44,0x81,0x4b,0xc5,0xb7, +0x81,0x46,0xb7,0x07,0x0c,0x60,0x98,0x47,0x71,0x9b,0x55,0x8f,0x98,0xc7,0xb8,0x4f, +0xfd,0x76,0x93,0x86,0xf6,0x3f,0x13,0x77,0x07,0xc0,0xb8,0xcf,0xb8,0x4f,0x75,0x8f, +0x13,0x67,0x07,0x40,0xb8,0xcf,0xb7,0x57,0x4b,0x4c,0x37,0x87,0x00,0x60,0x93,0x87, +0xb7,0xc4,0x23,0x2e,0xf7,0x0a,0xc9,0xb9,0xbc,0x58,0x93,0xe7,0x07,0x08,0x5d,0xbb, +0x79,0x54,0x6f,0xf0,0x1f,0x83,0xae,0x87,0x32,0x88,0xb6,0x88,0x2a,0x83,0x63,0x96, +0x06,0x20,0x37,0x47,0xc8,0x3f,0x13,0x07,0xc7,0x1f,0x63,0xfe,0xc5,0x0a,0xc1,0x66, +0x63,0x74,0xd6,0x0a,0x93,0x06,0xf0,0x0f,0xb3,0xb6,0xc6,0x00,0x8e,0x06,0xb3,0x58, +0xd6,0x00,0x46,0x97,0x03,0x47,0x07,0x00,0xba,0x96,0x13,0x07,0x00,0x02,0x15,0x8f, +0x19,0xcb,0xb3,0x97,0xe7,0x00,0xb3,0x56,0xd5,0x00,0x33,0x18,0xe6,0x00,0xb3,0xe5, +0xf6,0x00,0x33,0x13,0xe5,0x00,0x13,0x55,0x08,0x01,0x33,0xf7,0xa5,0x02,0x13,0x16, +0x08,0x01,0x41,0x82,0x93,0x56,0x03,0x01,0xb3,0xd5,0xa5,0x02,0x42,0x07,0xd9,0x8e, +0xb3,0x07,0xb6,0x02,0x2e,0x87,0x63,0xfc,0xf6,0x00,0xc2,0x96,0x13,0x87,0xf5,0xff, +0x63,0xe7,0x06,0x01,0x63,0xf5,0xf6,0x00,0x13,0x87,0xe5,0xff,0xc2,0x96,0x9d,0x8e, +0xb3,0xf7,0xa6,0x02,0x42,0x03,0x13,0x53,0x03,0x01,0xb3,0xd6,0xa6,0x02,0xc2,0x07, +0x33,0xe3,0x67,0x00,0xb3,0x05,0xd6,0x02,0x36,0x85,0x63,0x7b,0xb3,0x00,0x42,0x93, +0x13,0x85,0xf6,0xff,0x63,0x66,0x03,0x01,0x63,0x74,0xb3,0x00,0x13,0x85,0xe6,0xff, +0x42,0x07,0x49,0x8f,0x81,0x45,0x4d,0xa8,0xb7,0x08,0x00,0x01,0xc1,0x46,0xe3,0x60, +0x16,0xf7,0xe1,0x46,0xa9,0xbf,0x01,0xe6,0x85,0x46,0x33,0xd8,0xc6,0x02,0xc1,0x66, +0x63,0x7e,0xd8,0x08,0x93,0x06,0xf0,0x0f,0x63,0xf3,0x06,0x01,0xa1,0x48,0xb3,0x56, +0x18,0x01,0x36,0x97,0x83,0x46,0x07,0x00,0x13,0x07,0x00,0x02,0xc6,0x96,0x15,0x8f, +0x49,0xe7,0xb3,0x87,0... [truncated message content] |