Fix mbtk from v1265 GSW
Change-Id: I5d8d395616f284bc74c8b9448cfa347164b5a668
diff --git a/mbtk/test/libgsw_lib/Makefile b/mbtk/test/libgsw_lib/Makefile
new file mode 100755
index 0000000..93c4517
--- /dev/null
+++ b/mbtk/test/libgsw_lib/Makefile
@@ -0,0 +1,36 @@
+BUILD_ROOT = $(shell pwd)/../..
+include $(BUILD_ROOT)/Make.defines
+INSTALL_DIR = $(BUILD_ROOT)/rootfs/bin
+
+INC_DIR +=
+
+LIB_DIR +=
+
+LIBS += -lmbtk_lib -lgsw_lib -ldl
+
+CFLAGS += $(CFLAGS_TEST)
+
+DEFINE +=
+
+LOCAL_SRC_FILES = $(wildcard *.c) $(wildcard *.cpp)
+
+$(info LOCAL_SRC_FILES = $(LOCAL_SRC_FILES))
+
+OBJS = $(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(LOCAL_SRC_FILES)))
+BINS = $(patsubst %.o,%,$(OBJS))
+
+all: $(BINS)
+
+$(BINS):$(OBJS)
+ @echo " BIN $@"
+ $(CC) $(CFLAGS) $(LIB_DIR) $(LIBS) $@.o -o $(OUT_DIR)/bin/$@
+ cp $(OUT_DIR)/bin/$@ $(INSTALL_DIR)/
+
+%.o:%.c
+ $(CC) $(CFLAGS) $(INC_DIR) $(DEFINE) -c $< -o $@
+
+%.o:%.cpp
+ $(CC) $(CFLAGS) $(INC_DIR) $(DEFINE) -c $< -o $@
+
+clean:
+ rm -f $(OBJS)
diff --git a/mbtk/test/libgsw_lib/gsw_at_test.c b/mbtk/test/libgsw_lib/gsw_at_test.c
new file mode 100755
index 0000000..6c06efb
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_at_test.c
@@ -0,0 +1,56 @@
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <dlfcn.h>
+#include <stdint.h>
+
+typedef void(*AT_CALLBACK)(char input[],char output[],int out_max_size);
+int32_t (*gsw_reg_atcmd)(const char *atcmd,AT_CALLBACK);
+void *dlHandle_at;
+char *lynqLib_at = "/lib/libgsw_lib.so";
+
+void lynq_test_example(char input[], char output[], int out_max_size)
+{
+ if(!strcmp(input, "AT+TEST1"))
+ {
+ memcpy(output, input, strlen(input));
+ }
+ else if(!strcmp(input, "AT+TEST2"))
+ {
+ memcpy(output, input, strlen(input));
+ }
+ else if(!strcmp(input, "AT+TEST3"))
+ {
+ memcpy(output, input, strlen(input));
+ }
+ else if(!strcmp(input, "AT+TEST4"))
+ {
+ memcpy(output, input, strlen(input));
+ }
+ else if(!strcmp(input, "AT+TEST5"))
+ {
+ memcpy(output, input, strlen(input));
+ }
+ return;
+}
+
+
+int main(void)
+{
+ int ret;
+ dlHandle_at = dlopen(lynqLib_at, RTLD_NOW);
+ gsw_reg_atcmd=(int32_t(*)(const char *atcmd,AT_CALLBACK))dlsym(dlHandle_at, "gsw_reg_atcmd");
+ ret = gsw_reg_atcmd("AT+TEST1;AT+TEST2;AT+TEST3;AT+TEST4;AT+TEST5",lynq_test_example);
+ if (ret == 0)
+ printf("at add ok\n");
+ else
+ printf("at add fail\n");
+ while (1)
+ {
+ getchar();
+ }
+ dlclose(dlHandle_at);
+ dlHandle_at = NULL;
+ return 0;
+
+}
\ No newline at end of file
diff --git a/mbtk/test/libgsw_lib/gsw_data_test.c b/mbtk/test/libgsw_lib/gsw_data_test.c
new file mode 100755
index 0000000..6efa383
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_data_test.c
@@ -0,0 +1,365 @@
+#include <stdint.h>
+#include <string.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <dlfcn.h>
+#include <stdlib.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
+//gsw include
+
+
+#define GSW_HAL_SUCCESS 0
+#define GSW_HAL_FAIL -1
+#define GSW_HAL_MEM_INVAILD -2
+#define GSW_NW_OPERATION_NAME_LEN 128
+#define GSW_NW_PLMN_LEN 6
+#define GSW_NW_MCC_LEN 3
+#define GSW_NW_MNC_LEN 3
+#define GSW_NW_PARA_MAX_LEN 128
+#define GSW_MCC_MAX_LEN 16
+#define GSW_MNC_MAX_LEN 16
+#define GSW_APN_CHANNEL_MAX 10
+#define GSW_POXY_ADDR_MAX_LEN 64
+#define GSW_PDP_TYPE_MAX_LEN 16
+#define GSW_APN_MAX_LEN 32
+#define GSW_APN_ID_MAX_LEN 32
+#define GSW_APN_TYPE_MAX_LEN 50
+#define GSW_USR_MAX_LEN 16
+#define GSW_PWD_MAX_LEN 16
+#define GSW_AUTH_TYPE_MAX_LEN 50
+#define GSW_PROTOCO_MAX_LEN 64
+#define GSW_CARRIER_ID_MAX_LEN 64
+#define GSW_IFACE_NAME_MAX_LEN 50
+#define GSW_PDP_ADDR_MAX_LEN 64
+#define GSW_DNS_ADDR_MAX_LEN 64
+#define GSW_GETWAYS_ADDR_MAX_LEN 64
+#define GSW_RSP_MAX_LEN 256
+
+typedef struct {
+ int handle; /**< data connection handle*/
+ int cid; /**< data connection cid*/
+ int state; /**< data connection state*/
+ int fail_cause; /**< data connection fail cause*/
+ char *type; /**< data connection type*/
+ char *ifname; /**< ifname*/
+
+ char *v4_ip; /**< ipv4 address*/
+ char *v4_pdns; /**< ipv4 pdns address*/
+ char *v4_sdns; /**< ipv4 sdns address*/
+ char *v4_gw; /**< ipv4 gateway address*/
+
+ char *v6_ip; /**< ipv6 address*/
+ char *v6_pdns; /**< ipv6 gateway address*/
+ char *v6_sdns; /**< ipv6 gateway address*/
+}Wan_State_ind_s;
+
+typedef struct {
+ char ip[GSW_PDP_ADDR_MAX_LEN]; /**< ip address */
+ char pdns[GSW_DNS_ADDR_MAX_LEN]; /**< pdns address*/
+ char sdns[GSW_DNS_ADDR_MAX_LEN]; /**< sdns address*/
+ char gw[GSW_GETWAYS_ADDR_MAX_LEN]; /**< gate way address*/
+}V4_Addr_s;
+
+typedef struct {
+ char ip[GSW_PDP_ADDR_MAX_LEN]; /**< ip address*/
+ char pdns[GSW_DNS_ADDR_MAX_LEN]; /**< pdns address*/
+ char sdns[GSW_DNS_ADDR_MAX_LEN]; /**< sdns address*/
+}V6_Addr_s;
+
+typedef struct {
+ int handle; /**< data connection handle*/
+
+ /* req info */
+ char mcc[GSW_MCC_MAX_LEN]; /**< apn mcc value*/
+ char mnc[GSW_MNC_MAX_LEN]; /**< apn mnc value*/
+ char apnid[GSW_APN_ID_MAX_LEN]; /**< apn id*/
+ char apn[GSW_APN_MAX_LEN]; /**< apn name*/
+ char apnType[GSW_APN_TYPE_MAX_LEN]; /**< apn type ipv4 ipv4v6 ipv6*/
+ char usr[GSW_USR_MAX_LEN]; /**< apn usr name*/
+ char pwd[GSW_PWD_MAX_LEN]; /**< apn password*/
+ char authType[GSW_AUTH_TYPE_MAX_LEN]; /**< apn auth type*/
+ char normalProtocol[GSW_PROTOCO_MAX_LEN]; /**< apn auth protoco*/
+ char roamingProtocol[GSW_PROTOCO_MAX_LEN]; /**< apn auth protoco roaming*/
+ char carrier[GSW_CARRIER_ID_MAX_LEN]; /**< carrier id*/
+
+ /* rsp */
+ int cid; /**< data connection cid for mdm sdk*/
+ int active; /**< pdn context active state: 2,actived; other,not active */
+ char ifname[GSW_IFACE_NAME_MAX_LEN]; /**< if name of current datalink */
+ int type; /**< data connection type*/
+ V4_Addr_s v4; /**< ipv4 addr*/
+ V6_Addr_s v6; /**< ipv6 addr*/
+ int mtu; /**< mtu value*/
+
+ char out[GSW_RSP_MAX_LEN]; /**< sdk return value*/
+}Link_Info_s;
+
+typedef struct
+{
+ uint64_t tx_pkts; /* the number of packet sent*/
+ uint64_t tx_bytes; /* the number of packet sent bytes */
+ uint64_t tx_dropped_pkts; /* the number of packet dropped by sent*/
+ uint64_t rx_pkts; /* the number of packet received*/
+ uint64_t rx_bytes; /* the number of packet receivedbytes */
+ uint64_t rx_dropped_pkts; /* the number of packet dropped by received*/
+}gsw_data_pkt_stats;
+
+
+typedef void (*gsw_data_call_evt_cb_t)(Wan_State_ind_s *linkState);
+
+int (*gsw_data_call_init)(gsw_data_call_evt_cb_t evt_cb);
+int (*gsw_data_call_deinit)(void);
+int (*gsw_data_call_set_apn)(Link_Info_s *LinkInf);
+int (*gsw_data_call_connect)(int linkid, Link_Info_s *LinkInf);
+int (*gsw_data_call_disconnect)(int linkid, Link_Info_s *LinkInf);
+int (*gsw_get_data_call_pkt_stats)(int linkid, gsw_data_pkt_stats *data_pkt);
+
+#define lib_gsw_data_path "/lib/libgsw_lib.so"
+static void *dlHandle_data = NULL;
+
+
+static int gsw_data_api_import()
+{
+ dlHandle_data = dlopen(lib_gsw_data_path, RTLD_NOW);
+ if (dlHandle_data == NULL) {
+ printf("error: %s\n", dlerror());
+ return -1;
+ }
+
+ gsw_data_call_init = (int (*) (gsw_data_call_evt_cb_t evt_cb))dlsym(dlHandle_data, "gsw_data_call_init");
+ if (gsw_data_call_init == NULL) {
+ printf("gsw_data_call_init dlsym failed\n");
+ return -1;
+ }
+
+ gsw_data_call_deinit = (int (*) (void))dlsym(dlHandle_data, "gsw_data_call_deinit");
+ if (gsw_data_call_deinit == NULL) {
+ printf("gsw_data_call_deinit dlsym failed\n");
+ return -1;
+ }
+
+ gsw_data_call_set_apn = (int (*)(Link_Info_s *LinkInf))dlsym(dlHandle_data, "gsw_data_call_set_apn");
+ if (gsw_data_call_set_apn == NULL) {
+ printf("gsw_data_call_set_apn dlsym failed\n");
+ return -1;
+ }
+
+ gsw_data_call_connect = (int (*)(int linkid, Link_Info_s *LinkInf))dlsym(dlHandle_data, "gsw_data_call_connect");
+ if (gsw_data_call_connect == NULL) {
+ printf("gsw_data_call_connect dlsym failed\n");
+ return -1;
+ }
+
+ gsw_data_call_disconnect = (int (*)(int linkid, Link_Info_s *LinkInf))dlsym(dlHandle_data, "gsw_data_call_disconnect");
+ if (gsw_data_call_disconnect == NULL) {
+ printf("gsw_data_call_disconnect dlsym failed\n");
+ return -1;
+ }
+
+ gsw_get_data_call_pkt_stats = (int (*)(int linkid, gsw_data_pkt_stats *data_pkt))dlsym(dlHandle_data, "gsw_get_data_call_pkt_stats");
+ if (gsw_get_data_call_pkt_stats == NULL) {
+ printf("gsw_get_data_call_pkt_stats dlsym failed\n");
+ return -1;
+ }
+
+ return 0;
+}
+
+void gsw_data_call_back(Wan_State_ind_s *linkState)
+{
+ printf("gsw_data_call_back, handle = %d\n", linkState->handle);
+ printf("gsw_data_call_back, cid = %d\n", linkState->cid);
+ printf("gsw_data_call_back, state = %d\n", linkState->state);
+ printf("gsw_data_call_back, fail_cause = %d\n", linkState->fail_cause);
+ printf("gsw_data_call_back, type = %s\n", linkState->type);
+ printf("gsw_data_call_back, ifname = %s\n", linkState->ifname);
+ printf("gsw_data_call_back, v4_ip = %s\n", linkState->v4_ip);
+ printf("gsw_data_call_back, v4_pdns = %s\n", linkState->v4_pdns);
+ printf("gsw_data_call_back, v4_sdns = %s\n", linkState->v4_sdns);
+ printf("gsw_data_call_back, v4_gw = %s\n", linkState->v4_gw);
+ printf("gsw_data_call_back, v6_ip = %s\n", linkState->v6_ip);
+ printf("gsw_data_call_back, v6_pdns = %s\n", linkState->v6_pdns);
+ printf("gsw_data_call_back, v6_sdns = %s\n", linkState->v6_sdns);
+}
+
+
+void dump_items()
+{
+
+ printf("\n");
+ printf("The current module is: data \n");
+
+ printf("-------------------------------------------------------------------------\n");
+ printf("| index | function name |\n");
+ printf("| 0 exit\n");
+ printf(" 1 gsw_data_call_init\n");
+ printf(" 2 gsw_data_call_deinit\n");
+ printf(" 3 gsw_data_call_set_apn\n");
+ printf(" 4 gsw_data_call_connect\n");
+ printf(" 5 gsw_data_call_disconnect\n");
+ printf(" 6 gsw_get_data_call_pkt_stats\n");
+ printf("-------------------------------------------------------------------------\n");
+}
+
+int main()
+{
+ int ret;
+ char operator[10];
+ int opt;
+
+ Link_Info_s* pub_LinkInf = (Link_Info_s*)malloc(sizeof(Link_Info_s));
+ memset(pub_LinkInf, 0x0, sizeof(Link_Info_s));
+
+ Link_Info_s* pri_LinkInf = (Link_Info_s*)malloc(sizeof(Link_Info_s));
+ memset(pri_LinkInf, 0x0, sizeof(Link_Info_s));
+
+ pub_LinkInf->handle = 0;
+ strcpy(pub_LinkInf->mcc,"460");
+ strcpy(pub_LinkInf->mnc,"11");
+ strcpy(pub_LinkInf->apn,"pub_apn");
+ strcpy(pub_LinkInf->apnid,"pub_apnid");
+ strcpy(pub_LinkInf->apnType,"default");
+ strcpy(pub_LinkInf->usr,"");
+ strcpy(pub_LinkInf->pwd,"");
+ strcpy(pub_LinkInf->authType,"0");
+ strcpy(pub_LinkInf->normalProtocol,"IPV4V6");
+ strcpy(pub_LinkInf->roamingProtocol,"IPV4V6");
+ strcpy(pub_LinkInf->carrier,"CHINA TELECOM");
+
+ pri_LinkInf->handle = 1;
+ strcpy(pri_LinkInf->mcc,"460");
+ strcpy(pri_LinkInf->mnc,"11");
+ strcpy(pri_LinkInf->apn,"pri_apn");
+ strcpy(pri_LinkInf->apnid,"pri_apnid");
+ strcpy(pri_LinkInf->apnType,"mms");
+ strcpy(pri_LinkInf->usr,"");
+ strcpy(pri_LinkInf->pwd,"");
+ strcpy(pri_LinkInf->authType,"0");
+ strcpy(pri_LinkInf->normalProtocol,"IPV4V6");
+ strcpy(pri_LinkInf->roamingProtocol,"IPV4V6");
+ strcpy(pri_LinkInf->carrier,"CHINA TELECOM");
+
+
+ ret = gsw_data_api_import();
+ if (ret != 0) {
+ printf("gsw_data_api_import failed \n");
+ free(pub_LinkInf);
+ free(pri_LinkInf);
+ return -1;
+ }
+
+
+ while(1)
+ {
+ dump_items();
+ printf("input the index of module: ");
+ opt = -1;
+ printf("%s/n",fgets(operator, sizeof(operator), stdin));
+ fflush(stdin);
+
+ opt = atoi(operator);
+ switch (opt) {
+ case 0:
+ {
+ printf("exit\n");
+ free(pub_LinkInf);
+ free(pri_LinkInf);
+ return 0;
+ }
+
+ case 1:
+ {
+ printf("gsw_data_call_init start\n");
+ ret = gsw_data_call_init(gsw_data_call_back);
+ if (ret != 0) {
+ printf("gsw_data_call_init failed,ret = %d\n",ret);
+ continue;
+ }
+ printf("gsw_data_call_init success\n");
+ break;
+ }
+
+ case 2:
+ {
+ printf("gsw_data_call_deinit start\n");
+ ret = gsw_data_call_deinit();
+ if (ret != 0) {
+ printf("gsw_data_call_deinit failed,ret = %d\n",ret);
+ continue;
+ }
+ printf("gsw_data_call_deinit success\n");
+ break;
+ }
+ case 3:
+ {
+ printf("gsw_data_call_set_apn start\n");
+ ret = gsw_data_call_set_apn(pub_LinkInf);
+ if (ret != 0) {
+ printf("gsw_data_call_set_apn failed,ret = %d\n",ret);
+ continue;
+ }
+ printf("gsw_data_call_set_apn success\n");
+ break;
+ }
+
+ case 4:
+ {
+ printf("gsw_data_call_connect start\n");
+ ret = gsw_data_call_connect(pub_LinkInf->handle, pub_LinkInf);
+ if (ret != 0) {
+ printf("gsw_data_call_connect failed, ret = %d\n",ret);
+ continue;
+ }
+ printf("gsw_data_call_connect success\n");
+ break;
+ }
+
+ case 5:
+ {
+ printf("gsw_data_call_disconnect start\n");
+ ret = gsw_data_call_disconnect(pub_LinkInf->handle, pub_LinkInf);
+ if (ret != 0) {
+ printf("gsw_data_call_disconnect failed,ret = %d\n",ret);
+ continue;
+ }
+ printf("gsw_data_call_disconnect success\n");
+ break;
+ }
+
+ case 6:
+ {
+ printf("gsw_get_data_call_pkt_stats start\n");
+ gsw_data_pkt_stats* data_pkt = (gsw_data_pkt_stats*)malloc(sizeof(gsw_data_pkt_stats));
+ memset(data_pkt, 0x0, sizeof(gsw_data_pkt_stats));
+ ret = gsw_get_data_call_pkt_stats(pub_LinkInf->handle, data_pkt);
+ if (ret != 0) {
+ printf("gsw_get_data_call_pkt_stats failed,ret = %d\n",ret);
+ continue;
+ }
+ else
+ {
+ printf("gsw_get_data_call_pkt_stats success \n");
+ printf("txPkts = %llu\n", data_pkt->tx_pkts);
+ printf("txbytes = %llu\n", data_pkt->tx_bytes);
+ printf("tx_dropped_pkts = %llu\n", data_pkt->tx_dropped_pkts);
+ printf("rxPkts = %llu\n", data_pkt->rx_pkts);
+ printf("rxbytes = %llu\n", data_pkt->rx_bytes);
+ printf("rx_dropped_pkts = %llu\n", data_pkt->rx_dropped_pkts);
+ free(data_pkt);
+ }
+ printf("gsw_get_data_call_pkt_stats success\n");
+ break;
+ }
+
+ default:
+ {
+ continue;
+ }
+ }
+ }
+}
+
+
diff --git a/mbtk/test/libgsw_lib/gsw_ecall_test.c b/mbtk/test/libgsw_lib/gsw_ecall_test.c
new file mode 100755
index 0000000..682d9e2
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_ecall_test.c
@@ -0,0 +1,566 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <stdint.h>
+#include <signal.h>
+#include <pthread.h>
+#include <stdbool.h>
+#include <dlfcn.h>
+
+
+static void *ecall_handle = NULL;
+typedef struct
+{
+ int cmdIdx;
+ char *funcName;
+}st_api_test_case;
+
+#define GSW_EU_ECALL_MAX_MSD 140
+#define GSW_EU_ECALL_MAX_PHONE_NUMBER 82
+
+typedef enum
+{
+ GSW_EU_ECALL_TYPE_TEST = 1,
+ GSW_EU_ECALL_TYPE_EMERGENCY = 2,
+ GSW_EU_ECALL_TYPE_RECONFIG = 3,
+} gsw_eu_ecall_type_e;
+
+typedef struct
+{
+ uint32_t msd_len;
+ uint8_t msd[GSW_EU_ECALL_MAX_MSD];
+ gsw_eu_ecall_type_e type;
+ int32_t auto_trigger;
+ char ecall_number[GSW_EU_ECALL_MAX_PHONE_NUMBER];
+} gsw_eu_ecall_info_t;
+
+
+
+typedef enum {
+ GSW_EU_ECALL_STATE_NONE = -1,
+ GSW_EU_ECALL_STATE_INACTIVE = 0,
+ GSW_EU_ECALL_STATE_ORIGINATING_CALL = 1,
+ GSW_EU_ECALL_STATE_IN_CALL_TRANSMITTING = 2,
+ GSW_EU_ECALL_STATE_WAITING_FOR_AL_ACK = 3,
+ GSW_EU_ECALL_STATE_IN_CALL = 4,
+ GSW_EU_ECALL_STATE_IDLE_ALLOW_MT_ECALL = 5,
+} gsw_eu_ecall_state_e;
+
+typedef enum {
+ GSW_EU_ECALL_MODE_NORMAL = 0,
+ GSW_EU_ECALL_MODE_ONLY = 1,
+ GSW_EU_ECALL_MODE_DEFAULT = 2,
+} gsw_eu_ecall_mode_e;
+
+
+typedef struct
+{
+ uint8_t enable;
+ uint8_t voice_mute;
+ gsw_eu_ecall_mode_e mode;
+ uint8_t report_event;
+ uint16_t start_timer;
+ uint16_t hack_timer;
+ uint16_t trans_timer;
+ uint8_t fail_redial;
+ uint8_t drop_redial;
+ uint16_t cleardown_timer;
+ uint16_t init_timer;
+ uint16_t nad_reg_timer;
+ uint16_t nad_dereg_timer;
+ uint8_t standard;
+ uint16_t era_glonass_redial;
+ uint16_t auto_answer; //auto_answer
+} gsw_eu_ecall_config_t;
+
+typedef enum {
+ GSW_EU_ECALL_CONFIG_ENABLE = (1 << 0),
+ GSW_EU_ECALL_CONFIG_VOICE_MUTE = (1 << 1),
+ GSW_EU_ECALL_CONFIG_MODE = (1 << 2),
+ GSW_EU_ECALL_CONFIG_REPORT_EVENT = (1 << 3),
+ GSW_EU_ECALL_CONFIG_START_TIMER = (1 << 4),
+ GSW_EU_ECALL_CONFIG_HACK_TIMER = (1 << 5),
+ GSW_EU_ECALL_CONFIG_TRANS_TIMER = (1 << 6),
+ GSW_EU_ECALL_CONFIG_FAIL_REDIAL = (1 << 7),
+ GSW_EU_ECALL_CONFIG_DROP_REDIAL = (1 << 8),
+ GSW_EU_ECALL_CONFIG_CLEARDOWN_TIMER = (1 << 9),
+ GSW_EU_ECALL_CONFIG_INIT_TIMER = (1 << 10),
+ GSW_EU_ECALL_CONFIG_NAD_REG_TIMER = (1 << 11),
+ GSW_EU_ECALL_CONFIG_NAD_DEREG_TIMER = (1 << 12),
+ GSW_EU_ECALL_CONFIG_STANDARD = (1 << 13),
+ GSW_EU_ECALL_CONFIG_ERA_GLONASS_REDIAL = (1 << 14),
+ GSW_EU_ECALL_CONFIG_AUTO_ANSWER = (1 << 15),
+} gsw_eu_ecall_config_e;
+
+typedef enum {
+ GSW_EU_ECALL_EVENT_FAIL_NONE = 0,
+ GSW_EU_ECALL_EVENT_FAIL_TIMEOUT = 1,
+ GSW_EU_ECALL_EVENT_FAIL_HACK_TIMEOUT = 2,
+ GSW_EU_ECALL_EVENT_FAIL_MSD_TRANS_TIMEOUT = 3,
+ GSW_EU_ECALL_EVENT_FAIL_IVS_RESET_TIMEOUT = 4,
+ GSW_EU_ECALL_EVENT_FAIL_CLEAR_DOWN_FALLBACK_TIMEOUT = 5,
+ GSW_EU_ECALL_EVENT_FAIL_IVS_INITIATION_TIMEOUT = 6,
+} gsw_eu_ecall_event_fail_e;
+
+typedef enum {
+ GSW_EU_ECALL_EVENT_PROCESS_IVS_NONE = 0,
+ GSW_EU_ECALL_EVENT_PROCESS_IVS_START_RECEIVED_MSD = 1,
+ GSW_EU_ECALL_EVENT_PROCESS_IVS_NACK_RECEIVED = 2,
+ GSW_EU_ECALL_EVENT_PROCESS_IVS_ACK_RECEIVED = 3,
+ GSW_EU_ECALL_EVENT_PROCESS_IVS_TX_COMPLETED = 4,
+ GSW_EU_ECALL_EVENT_PROCESS_IVS_HLACK_RECEIVED = 5,
+} gsw_eu_ecall_event_process_e;
+
+typedef enum {
+ GSW_EU_ECALL_EVENT_MSDUPADTE_NONE = -1,
+ GSW_EU_ECALL_EVENT_MSDUPDATE_IVS_UPDATING_MSD = 0,
+ GSW_EU_ECALL_EVENT_MSDUPDATE_PSAP_REQURE_UPDATE_MSD = 1,
+ GSW_EU_ECALL_EVENT_MSDUPDATE_IVS_UPDATE_MSD_TIMEOUT = 2,
+} gsw_eu_ecall_event_msdupdate_e;
+
+typedef enum {
+ GSW_EU_ECALL_EVENT_ESTABLISH_NONE = -1,
+ GSW_EU_ECALL_EVENT_ESTABLISH_SUCCESS = 0,
+ GSW_EU_ECALL_EVENT_ESTABLISH_FAIL = 1,
+} gsw_eu_ecall_event_establish_e;
+
+typedef enum {
+ GSW_EU_ECALL_EVENT_EXTEND_STATE_NONE = -1,
+ GSW_EU_ECALL_EVENT_EXTEND_STATE_START_RECV_SYN = 0,
+ GSW_EU_ECALL_EVENT_EXTEND_STATE_T9_TIMEOUT = 1,
+ GSW_EU_ECALL_EVENT_EXTEND_STATE_T10_TIMEOUT = 2,
+ GSW_EU_ECALL_EVENT_EXTEND_STATE_IVS_ALACK_RECEIVED = 3,
+ GSW_EU_ECALL_EVENT_EXTEND_STATE_IVS_LLACK_RECEIVED = 4,
+ GSW_EU_ECALL_EVENT_EXTEND_STATE_STOPPED = 5,
+ GSW_EU_ECALL_EVENT_EXTEND_STATE_ANSWERING_INCOMING_PSAP_ECALL = 6,
+ GSW_EU_ECALL_EVENT_EXTEND_STATE_CLEARDOWN_RECEIVED = 7,
+ GSW_EU_ECALL_EVENT_EXTEND_STATE_CALLBACK_TIMEOUT = 8,
+ GSW_EU_ECALL_EVENT_IVS_NORMAL_CLEARING = 9,
+ GSW_EU_ECALL_EVENT_IVS_ABNORMAL_CLEARING = 10,
+} gsw_eu_ecall_event_extend_state_e;
+
+typedef struct
+{
+ uint8_t ori_remainder_times;
+ uint16_t time;
+} gsw_eu_ecall_event_originate_fail_redial_t;
+
+typedef struct
+{
+ uint8_t drop_remainder_times;
+ uint16_t time; /* The minimum time duration between the previous call attempt */
+} gsw_eu_ecall_event_drop_redial_t;
+
+
+typedef struct
+{
+ gsw_eu_ecall_event_fail_e fail;
+ gsw_eu_ecall_event_process_e process;
+ gsw_eu_ecall_event_msdupdate_e msdupdate;
+ gsw_eu_ecall_event_establish_e establish;
+ uint16_t hack_code;
+ gsw_eu_ecall_event_originate_fail_redial_t ori_redial;
+ gsw_eu_ecall_event_drop_redial_t drop_redial;
+ gsw_eu_ecall_event_extend_state_e extend_state;
+} gsw_eu_ecall_event_t;
+
+typedef void (*gsw_eu_ecall_event_cb_f)(gsw_eu_ecall_event_t *p_event);
+
+
+typedef enum {
+ GSW_EU_ECALL_MSD_TRANS_STATUS_NONE = -1,
+ GSW_EU_ECALL_MSD_TRANS_STATUS_SUCCESS = 0,
+ GSW_EU_ECALL_MSD_TRANS_STATUS_FAILURE = 1,
+} gsw_eu_ecall_msd_trans_status_e;
+
+typedef void (*gsw_eu_ecall_status_cb_f)(uint32_t id, gsw_eu_ecall_msd_trans_status_e status);
+
+
+
+typedef int32_t (*gsw_eu_ecall_voice_init)(void);
+
+
+typedef int32_t (*gsw_eu_ecall_voice_deinit)(void);
+typedef int32_t (*gsw_eu_ecall_start)(gsw_eu_ecall_info_t *p_info);
+typedef int32_t (*gsw_eu_ecall_hangup)(void);
+typedef int32_t (*gsw_eu_ecall_updateMsd)(const uint8_t *msd, uint32_t msd_len);
+typedef int32_t (*gsw_eu_ecall_pushMsd)(gsw_eu_ecall_state_e state);
+typedef int32_t (*gsw_eu_ecall_getConfig)(gsw_eu_ecall_config_t *p_config);
+typedef int32_t (*gsw_eu_ecall_setConfig)(int32_t item, gsw_eu_ecall_config_t *p_config);
+typedef int32_t (*gsw_eu_ecall_setEventCB)(gsw_eu_ecall_event_cb_f cb);
+typedef int32_t (*gsw_eu_ecall_setStatusCB)(gsw_eu_ecall_status_cb_f cb);
+
+st_api_test_case api_testcases[] =
+{
+ {0, "print_help"},
+ {1, "gsw_eu_ecall_voice_init"},
+ {2, "gsw_eu_ecall_voice_deinit"},
+ {3, "gsw_eu_ecall_start"},
+ {4, "gsw_eu_ecall_hangup"},
+ {5, "gsw_eu_ecall_updateMsd"},
+ {6, "gsw_eu_ecall_pushMsd"},
+ {7, "gsw_eu_ecall_getConfig"},
+ {8, "gsw_eu_ecall_setConfig"},
+ {9, "gsw_eu_ecall_setEventCB"},
+ {10, "gsw_eu_ecall_setStatusCB"},
+ {-1, NULL}
+
+};
+void sigint_handler(int sig)
+{
+ printf("sigint_handler\n");
+ dlclose(ecall_handle);
+ ecall_handle = NULL;
+
+ exit(0);
+}
+static void gsw_eu_ecall_status_cb(uint32_t id, gsw_eu_ecall_msd_trans_status_e status)
+{
+ printf("id is %u\n",id);
+ printf("status is %d\n",status);
+
+}
+
+
+static void gsw_eu_ecall_event_cb(gsw_eu_ecall_event_t *p_event)
+{
+ printf("p_event->fail: %ud\n",p_event->fail);
+ printf("p_event->process: %d\n",p_event->process);
+ printf("p_event->msdupdate: %d\n",p_event->msdupdate);
+ printf("p_event->establish: %d\n",p_event->establish);
+ printf("p_event->hack_code: %d\n",p_event->hack_code);
+ printf("p_event->ori_redial.ori_remainder_times: %d\n",p_event->ori_redial.ori_remainder_times);
+ printf("p_event->ori_redial.time: %d\n",p_event->ori_redial.time);
+ printf("p_event->drop_redial.drop_remainder_times: %d\n",p_event->drop_redial.drop_remainder_times);
+ printf("p_event->drop_redial.time: %d\n",p_event->drop_redial.time);
+ printf("p_event->extend_state: %d\n",p_event->extend_state);
+
+}
+
+
+static void set_config(gsw_eu_ecall_config_t *p_config)
+{
+
+ int ret = -1;
+ p_config->enable = 0;
+ p_config->voice_mute = 0;
+ p_config->mode = 0;
+ p_config->report_event = 0;
+ p_config->start_timer = 0;
+ p_config->hack_timer = 0;
+ p_config->trans_timer = 0;
+ p_config->cleardown_timer = 0;
+ p_config->drop_redial = 0;
+ p_config->init_timer = 0;
+ p_config->nad_reg_timer = 0;
+ p_config->nad_dereg_timer = 0;
+ p_config->standard = 0;
+ p_config->era_glonass_redial = 0;
+ p_config->auto_answer = 0;
+
+ printf("input p_config->fail_redial\n");
+ ret = scanf("%hhu", &p_config->fail_redial);
+ if(ret)
+ {
+ printf("input ret is %d\n",ret);
+ }
+
+
+}
+
+static void print_get_config(gsw_eu_ecall_config_t p_config)
+{
+
+ printf("input p_config.enable: %d\n",p_config.enable);
+ printf("input p_config.voice_mute:%d\n",p_config.voice_mute);
+ printf("input p_config.mode:%d\n",p_config.mode);
+ printf("input p_config.report_event:%d\n",p_config.report_event);
+ printf("input p_config.start_timer:%d\n",p_config.start_timer);
+ printf("input p_config.hack_timer:%d\n",p_config.hack_timer);
+ printf("input p_config.trans_timer:%d\n",p_config.start_timer);
+ printf("input p_config.fail_redial:%d\n",p_config.fail_redial);
+ printf("input p_config.drop_redial:%d\n",p_config.drop_redial);
+ printf("input p_config.cleardown_timer:%d\n",p_config.cleardown_timer);
+ printf("input p_config.init_timer:%d\n",p_config.init_timer);
+ printf("input p_config.nad_reg_timer:%d\n",p_config.nad_reg_timer);
+ printf("input p_config.nad_dereg_timer:%d\n",p_config.nad_dereg_timer);
+ printf("input p_config.standard:%d\n",p_config.standard);
+ printf("input p_config.era_glonass_redial:%d\n",p_config.era_glonass_redial);
+ printf("input p_config.auto_answer:%d\n",p_config.auto_answer);
+
+
+}
+void print_help(void)
+{
+ int i;
+
+ printf("Supported test cases:\n");
+ for(i = 0; ; i++)
+ {
+ if(api_testcases[i].cmdIdx == -1)
+ {
+ break;
+ }
+ printf("%d:\t%s\n", api_testcases[i].cmdIdx, api_testcases[i].funcName);
+ }
+}
+
+
+
+//static ecall_init_flag = 0;
+int main(int argc,char *argv[])
+{
+ gsw_eu_ecall_voice_init gsw_eu_ecall_voice_init_ptr = NULL;
+ gsw_eu_ecall_voice_deinit gsw_eu_ecall_voice_deinit_ptr = NULL;
+ gsw_eu_ecall_start gsw_eu_ecall_start_ptr = NULL;
+ gsw_eu_ecall_hangup gsw_eu_ecall_hangup_ptr = NULL;
+ gsw_eu_ecall_updateMsd gsw_eu_ecall_updateMsd_ptr = NULL;
+ gsw_eu_ecall_pushMsd gsw_eu_ecall_pushMsd_ptr = NULL;
+ gsw_eu_ecall_getConfig gsw_eu_ecall_getConfig_ptr = NULL;
+ gsw_eu_ecall_setConfig gsw_eu_ecall_setConfig_ptr = NULL;
+ gsw_eu_ecall_setEventCB gsw_eu_ecall_setEventCB_ptr = NULL;
+ gsw_eu_ecall_setStatusCB gsw_eu_ecall_setStatusCB_ptr = NULL;
+
+ void *ota_handle = dlopen("/lib/libgsw_lib.so", RTLD_NOW );
+ if(ota_handle == NULL)
+ {
+ printf("open lib failed\n");
+ return -1;
+ }
+
+
+ signal(SIGINT, sigint_handler);
+
+ ecall_handle = dlopen("/lib/libgsw_lib.so", RTLD_NOW );
+ if(ecall_handle == NULL)
+ {
+ printf("open lib failed\n");
+ return -1;
+ }
+ gsw_eu_ecall_voice_init_ptr = (gsw_eu_ecall_voice_init)dlsym(ecall_handle, "gsw_eu_ecall_voice_init");
+ if(gsw_eu_ecall_voice_init_ptr == NULL)
+ {
+ printf("dlsym gsw_eu_ecall_voice_init failed\n");
+ return -1;
+ }
+ gsw_eu_ecall_voice_deinit_ptr = (gsw_eu_ecall_voice_deinit)dlsym(ecall_handle, "gsw_eu_ecall_voice_deinit");
+ if(gsw_eu_ecall_voice_deinit_ptr == NULL)
+ {
+ printf("dlsym gsw_eu_ecall_voice_deinit failed\n");
+ return -1;
+ }
+ gsw_eu_ecall_start_ptr = (gsw_eu_ecall_start)dlsym(ecall_handle, "gsw_eu_ecall_start");
+ if(gsw_eu_ecall_start_ptr == NULL)
+ {
+ printf("dlsym gsw_eu_ecall_start failed\n");
+ return -1;
+ }
+ gsw_eu_ecall_hangup_ptr = (gsw_eu_ecall_hangup)dlsym(ecall_handle, "gsw_eu_ecall_hangup");
+ if(gsw_eu_ecall_hangup_ptr == NULL)
+ {
+ printf("dlsym gsw_eu_ecall_hangup failed\n");
+ return -1;
+ }
+ gsw_eu_ecall_updateMsd_ptr = (gsw_eu_ecall_updateMsd)dlsym(ecall_handle, "gsw_eu_ecall_updateMsd");
+ if(gsw_eu_ecall_updateMsd_ptr == NULL)
+ {
+ printf("dlsym gsw_eu_ecall_updateMsd failed\n");
+ return -1;
+ }
+ gsw_eu_ecall_pushMsd_ptr = (gsw_eu_ecall_pushMsd)dlsym(ecall_handle, "gsw_eu_ecall_pushMsd");
+ if(gsw_eu_ecall_pushMsd_ptr == NULL)
+ {
+ printf("dlsym gsw_eu_ecall_pushMsd failed\n");
+ return -1;
+ }
+ gsw_eu_ecall_getConfig_ptr = (gsw_eu_ecall_getConfig)dlsym(ecall_handle, "gsw_eu_ecall_getConfig");
+ if(gsw_eu_ecall_getConfig_ptr == NULL)
+ {
+ printf("dlsym gsw_eu_ecall_getConfig failed\n");
+ return -1;
+ }
+ gsw_eu_ecall_setConfig_ptr = (gsw_eu_ecall_setConfig)dlsym(ecall_handle, "gsw_eu_ecall_setConfig");
+ if(gsw_eu_ecall_setConfig_ptr == NULL)
+ {
+ printf("dlsym gsw_eu_ecall_setConfig failed\n");
+ return -1;
+ }
+ gsw_eu_ecall_setEventCB_ptr = (gsw_eu_ecall_setEventCB)dlsym(ecall_handle, "gsw_eu_ecall_setEventCB");
+ if(gsw_eu_ecall_setEventCB_ptr == NULL)
+ {
+ printf("dlsym gsw_eu_ecall_setEventCB failed\n");
+ return -1;
+ }
+ gsw_eu_ecall_setStatusCB_ptr = (gsw_eu_ecall_setStatusCB)dlsym(ecall_handle, "gsw_eu_ecall_setStatusCB");
+ if(gsw_eu_ecall_setStatusCB_ptr == NULL)
+ {
+ printf("dlsym gsw_eu_ecall_setStatusCB failed\n");
+ return -1;
+ }
+
+
+
+ printf("Enter ecall api test \n");
+ int opt = -1;
+
+ while (1)
+ {
+
+ print_help();
+ int ret = scanf("%d",&opt);
+ if (ret == 1)
+ {
+ printf("输入的整数是:%d\n", opt);
+ }
+
+ switch(opt)
+ {
+ case 0 :
+ {
+ print_help();
+ break;
+ }
+ case 1 :
+ {
+ int32_t ret = -1;
+ printf("enter gsw_eu_ecall_voice_init");
+ ret = gsw_eu_ecall_voice_init_ptr();
+ printf("gsw_eu_ecall_voice_init ret = %d\n", ret);
+
+
+ break;
+ }
+ case 2 :
+ {
+ int32_t ret = -1;
+ printf("enter gsw_eu_ecall_voice_deinit\n");
+ ret = gsw_eu_ecall_voice_deinit_ptr();
+ printf("gsw_eu_ecall_voice_deinit ret = %d\n", ret);
+ break;
+ }
+ case 3 :
+ {
+ printf("enter gsw_eu_ecall_start\n");
+ gsw_eu_ecall_info_t info;
+ memset(&info,0,sizeof(info));
+
+ int type;
+ printf("Enter MSD data (hex values, space-separated): ");
+
+ ret = scanf("%140s",info.msd);
+ if(ret)
+ {
+ printf("input ret is %d\n",ret);
+ }
+ info.msd_len = (uint32_t)strlen((char*)info.msd);
+
+
+ printf("Enter eCall type (1: Test, 2: Emergency, 3: Reconfig):\n ");
+ ret = scanf("%d", &type);
+ if(ret)
+ {
+ printf("input ret is %d\n",ret);
+ }
+ info.type = (gsw_eu_ecall_type_e)type;
+
+ printf("Enter auto trigger (0: No, 1: Yes): \n");
+ ret=scanf("%d", &info.auto_trigger);
+ if(ret)
+ {
+ printf("input ret is %d\n",ret);
+ }
+
+ if(type == 1 || type == 3)
+ {
+ // 输入 eCall 号码
+ printf("Enter eCall number: \n");
+ ret = scanf("%82s", info.ecall_number);
+ if(ret)
+ {
+ printf("input ret is %d\n",ret);
+ }
+ }
+ ret = gsw_eu_ecall_start_ptr(&info);
+ printf("gsw_eu_ecall_start ret = %d\n", ret);
+ break;
+ }
+ case 4 :
+ {
+ int32_t ret = -1;
+ printf("enter gsw_eu_ecall_hangup\n");
+ ret = gsw_eu_ecall_hangup_ptr();
+ printf("gsw_eu_ecall_hangup ret = %d\n", ret);
+ break;
+ }
+ case 5 :
+ {
+ uint8_t msd[100] = "235646023026565";
+ int32_t ret = -1;
+ printf("enter gsw_eu_ecall_updateMsd\n");
+ ret = gsw_eu_ecall_updateMsd_ptr(msd, 100);
+ printf("gsw_eu_ecall_updateMsd ret = %d\n", ret);
+ break;
+ }
+ case 6 :
+ {
+ printf("enter gsw_eu_ecall_pushMsd\n");
+ gsw_eu_ecall_state_e state = -1;
+ int32_t ret = -1;
+ ret = gsw_eu_ecall_pushMsd_ptr(state);
+ printf("gsw_eu_ecall_pushMsd ret = %d\n", ret);
+ break;
+ }
+ case 7 :
+ {
+ printf("enter gsw_eu_ecall_getConfig\n");
+ gsw_eu_ecall_config_t config;
+ int32_t ret = -1;
+ memset(&config,0,sizeof(config));
+ ret = gsw_eu_ecall_getConfig_ptr(&config);
+ printf("gsw_eu_ecall_getConfig ret = %d\n", ret);
+ print_get_config(config);
+ break;
+ }
+ case 8 :
+ {
+ printf("enter gsw_eu_ecall_setConfig\n");
+ gsw_eu_ecall_config_t config;
+ //config.ori_timeout = 10;
+ int32_t ret = -1;
+ int32_t item = 128;
+ printf("item value %d\n",item);
+ set_config(&config);
+ ret = gsw_eu_ecall_setConfig_ptr(item, &config);
+ printf("gsw_eu_ecall_setConfig ret = %d\n", ret);
+ break;
+ }
+ case 9 :
+ {
+ printf("enter gsw_eu_ecall_setEventCB\n");
+ //gsw_eu_ecall_event_cb_f cb = NULL;
+ int32_t ret = -1;
+ ret = gsw_eu_ecall_setEventCB_ptr(gsw_eu_ecall_event_cb);
+ printf("gsw_eu_ecall_setEventCB ret = %d\n", ret);
+ break;
+ }
+ case 10 :
+ {
+ printf("""enter gsw_eu_ecall_setStatusCB\n");
+ int32_t ret = -1;
+ ret = gsw_eu_ecall_setStatusCB_ptr(gsw_eu_ecall_status_cb);
+ printf("gsw_eu_ecall_setStatusCB ret = %d\n", ret);
+ break;
+
+ }
+ default:
+ {
+ printf("default");
+ print_help();
+ break;
+ }
+ }
+ }
+
+ return 0;
+}
+
diff --git a/mbtk/test/libgsw_lib/gsw_gnss_test.c b/mbtk/test/libgsw_lib/gsw_gnss_test.c
new file mode 100755
index 0000000..51e550c
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_gnss_test.c
@@ -0,0 +1,318 @@
+#include <stdio.h>
+#include <string.h>
+#include <strings.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <pthread.h>
+#include <termios.h>
+#include <time.h>
+#include <sys/ioctl.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <stdbool.h>
+
+typedef struct
+{
+ /**< set to sizeof(GpsLocation) */
+ size_t size;
+ /**< Contains GpsLocationFlags bits. */
+ unsigned short int flags;
+ /**< Represents latitude in degrees. */
+ double latitude;
+ /**< Represents longitude in degrees. */
+ double longitude;
+ /**< Represents altitude in meters above the WGS 84 reference ellipsoid. */
+ double altitude;
+ /**< Represents speed in meters per second. */
+ float speed;
+ /**< Represents heading in degrees. */
+ float bearing;
+ /**< Represents expected accuracy in meters. */
+ float accuracy;
+ /**< Timestamp for the location fix. */
+ long long int timestamp;
+}GSW_GNSS_LOCATION_T;
+
+typedef struct {
+ GSW_GNSS_LOCATION_T legacyLocation;
+ float horizontalAccuracyMeters;
+ /**< Represents expected vertical position accuracy in meters
+ * (68% confidence).*/
+ float verticalAccuracyMeters;
+ /**< Represents expected speed accuracy in meter per seconds
+ * (68% confidence).*/
+ float speedAccuracyMetersPerSecond;
+ /**< Represents expected bearing accuracy in degrees
+ * (68% confidence).*/
+ float bearingAccuracyDegrees;
+}GSW_GNSS_LOCATION_EXT_T;
+
+
+typedef enum{
+ GSW_SWITCH_DISABLE = 0, /**< configuration switch disable :0 */
+ GSW_SWITCH_ENABLE /**< configuration switch enable :1 */
+}GSW_GNSS_CONF_SWITCH;
+
+typedef enum{
+ GSW_MODE_GPS = 1, /**< GPS only */
+ GSW_MODE_BEIDOU, /**< BEIDOU only*/
+ GSW_MODE_GPS_BEIDOU, /**< GPS+BEIDOU */
+ GSW_MODE_GLONASS, /**< GLONASS only */ /* The high-tech platform does not support this type */
+ GSW_MODE_GPS_GLONASS, /**< GPS+GLONASS */
+ GSW_MODE_GLONASS_BEIDOU, /**< GLONASS+BEIDOU */ /* The high-tech platform does not support this type */
+ GSW_MODE_GPS_GLONASS_BEIDOU, /**< GPS+GLONASS+BEIDOU */ /* The high-tech platform does not support this type */
+ GSW_MODE_GALILEO, /**< GALILEO only */
+ GSW_MODE_GPS_GALILEO, /**< GPS+GALILEO */
+ GSW_MODE_BEIDOU_GALILEO, /**< BEIDOU+GALILEO */
+ GSW_MODE_GPS_BEIDOU_GALILEO, /**< GPS+BEIDOU+GALILEO */
+ GSW_MODE_GLONASS_GALILEO, /**< GLONASS+GALILEO */
+ GSW_MODE_GPS_GLONASS_GALILEO, /**< GPS+GLONASS+GALILEO */
+ GSW_MODE_BEIDOU_GLONASS_GALILEO, /**< BEIDOU+GLONASS+GALILEO */ /* The high-tech platform does not support this type */
+}GSW_GNSS_MODE_CONFIGURATION;
+
+typedef void (*gsw_gnss_location_callback_ext)(GSW_GNSS_LOCATION_EXT_T* location);
+typedef void (*gsw_gnss_nmea_callback )(const char* nmea, int length);
+
+typedef struct{
+gsw_gnss_location_callback_ext gsw_location_cb;
+gsw_gnss_nmea_callback gsw_nmea_cb;
+}gsw_gnss_cb;
+
+typedef enum{
+ GSW_FREQ_1HZ = 1, /**< 1hZ */
+ GSW_FREQ_2HZ = 2, /**< 2hZ */
+ GSW_FREQ_5HZ = 5, /**< 5hZ */
+ GSW_FREQ_10HZ = 10, /**< 10hZ */
+}gnss_freq_type;
+
+typedef struct{
+GSW_GNSS_MODE_CONFIGURATION start_mode;
+gnss_freq_type freq;
+gsw_gnss_cb callback;
+}gsw_gnss_init_configure_t;
+
+int (*gsw_gnss_set_freq)(int freq);
+int (*gsw_gnss_init)(void);
+int (*gsw_gnss_start)(void);
+int (*gsw_gnss_stop)(void);
+int (*gsw_gnss_deinit)(void);
+int (*gsw_gnss_set_start_mode)(GSW_GNSS_MODE_CONFIGURATION start_mode);
+int (*gsw_gnss_epo_switch)(GSW_GNSS_CONF_SWITCH switch_op);
+int (*gsw_gnss_reg_cb_group)(gsw_gnss_cb callback);
+//int (*gsw_gnss_xtra_is_enable)(gsw_xtra_state_e state);
+int (*gsw_gnss_delete_aiding_data)(unsigned int flags);
+int (*gsw_gnss_init_configure_gps)(gsw_gnss_init_configure_t init_configure);
+
+void *dlHandle_gnss_test;
+char *lynqLib_gnss_test = "/lib/libgsw_lib.so";
+
+
+void tmp_gnss_callack(const char* nmea, int length)
+{
+ printf("%s",nmea);
+}
+
+gsw_gnss_cb tmp_ptr = {
+ NULL,
+ tmp_gnss_callack
+};
+
+void user_help(void)
+{
+ printf("\t-1 exit\n"
+ "\t1 gnss init\n"
+ "\t2 gnss deinit \n"
+ "\t3 gnss reg_cb\n"
+ "\t6 gnss start\n"
+ "\t7 gnss stop\n"
+ "\t8 gnss Delete_Aiding_Data and reset\n"
+ "\t9 gnss epo switch\n"
+ "\t10 gnss set startmode\n"
+ "\t11 gnss set frequency\n"
+ "please input operator: >> ");
+}
+void delete_type(void)
+{
+ printf("\t0 DELETE_NOTHING\n"
+ "\t1 DELETE_EPHEMERIS\n"
+ "\t2 DELETE_ALL\n"
+ "please input operator: >> ");
+}
+
+int main(void)
+{
+ int ret;
+ int opt = 0;
+ dlHandle_gnss_test = dlopen(lynqLib_gnss_test, RTLD_NOW);
+ while(1)
+ {
+ printf("=========gnss main=========\n");
+ user_help();
+ if (scanf("%d", &opt) != 1)
+ {
+ printf("Input error, please check it\n");
+ while (getchar() != '\n');
+ continue;
+ }
+ while(getchar()!='\n');
+ switch (opt)
+ {
+ case -1:
+ {
+ printf("main exit\n");
+ return 0;
+ }
+
+ case 1:
+ {
+ gsw_gnss_init=(int(*)())dlsym(dlHandle_gnss_test, "gsw_gnss_init");
+ ret = gsw_gnss_init();
+ if(ret < 0)
+ {
+ printf("gsw_gnss_init FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gnss_init success.\n");
+ break;
+ }
+ case 2:
+ {
+ gsw_gnss_deinit=(int(*)())dlsym(dlHandle_gnss_test, "gsw_gnss_deinit");
+ ret =gsw_gnss_deinit();
+ if(ret < 0)
+ {
+ printf("gsw_gnss_deinit FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gnss_deinit success \n");
+ break;
+ }
+ case 3:
+ {
+ gsw_gnss_reg_cb_group=(int(*)(gsw_gnss_cb))dlsym(dlHandle_gnss_test, "gsw_gnss_reg_cb_group");
+ ret =gsw_gnss_reg_cb_group(tmp_ptr);
+ if(ret < 0)
+ {
+ printf("gsw_gnss_reg_cb_group FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gnss_reg_cb_group success \n");
+ break;
+ }
+ // case 4:
+ // {
+ // qser_Gnss_Deinit=(int(*)(uint32_t))dlsym(dlHandle_gnss, "qser_Gnss_Deinit");
+ // ret =qser_Gnss_Deinit(ph_gnss);
+ // if(ret < 0)
+ // {
+ // printf("mopen_gnss_client_Deinit FAIL.\n");
+ // return -1;
+ // }
+ // printf("mopen_gnss_client_Deinit success \n");
+ // break;
+ // }
+ // case 5:
+ // {
+ // qser_Gnss_Deinit=(int(*)(uint32_t))dlsym(dlHandle_gnss, "qser_Gnss_Deinit");
+ // ret =qser_Gnss_Deinit(ph_gnss);
+ // if(ret < 0)
+ // {
+ // printf("mopen_gnss_client_Deinit FAIL.\n");
+ // return -1;
+ // }
+ // printf("mopen_gnss_client_Deinit success \n");
+ // break;
+ // }
+ case 6:
+ {
+ gsw_gnss_start=(int(*)())dlsym(dlHandle_gnss_test, "gsw_gnss_start");
+ ret =gsw_gnss_start();
+ if(ret < 0)
+ {
+ printf("gsw_gnss_start FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gnss_start success \n");
+ break;
+ }
+ case 7:
+ {
+ gsw_gnss_stop=(int(*)())dlsym(dlHandle_gnss_test, "gsw_gnss_stop");
+ ret =gsw_gnss_stop();
+ if(ret < 0)
+ {
+ printf("gsw_gnss_stop FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gnss_stop success \n");
+ break;
+ }
+ case 8:
+ {
+ int flags; // 1-dele no ; 2- dele eph ; 3 dele all
+ gsw_gnss_delete_aiding_data=(int(*)(unsigned int))dlsym(dlHandle_gnss_test, "gsw_gnss_delete_aiding_data");
+ delete_type();
+ if (scanf("%d", &flags) != 1)
+ printf("input error,please check it");
+ ret =gsw_gnss_delete_aiding_data(flags);
+ if(ret < 0)
+ {
+ printf("gsw_gnss_delete_aiding_data FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gnss_delete_aiding_data success \n");
+ break;
+ }
+ case 9:
+ {
+ int able;
+ gsw_gnss_epo_switch=(int(*)(GSW_GNSS_CONF_SWITCH))dlsym(dlHandle_gnss_test, "gsw_gnss_epo_switch");
+ if (scanf("%d", &able) != 1)
+ printf("input error,please check it");
+ ret =gsw_gnss_epo_switch(able);
+ if(ret < 0)
+ {
+ printf("mopen_gnss_client_Deinit FAIL.\n");
+ return -1;
+ }
+ printf("mopen_gnss_client_Deinit success \n");
+ break;
+ }
+ case 10:
+ {
+ int conf;
+ gsw_gnss_set_start_mode=(int(*)(uint32_t))dlsym(dlHandle_gnss_test, "gsw_gnss_set_start_mode");
+ if (scanf("%d", &conf) != 1)
+ printf("input error,please check it");
+ ret =gsw_gnss_set_start_mode(conf);
+ if(ret < 0)
+ {
+ printf("gsw_gnss_set_start_mode FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gnss_set_start_mode success \n");
+ break;
+ }
+ case 11:
+ {
+ int frequency;
+ gsw_gnss_set_freq=(int(*)(int))dlsym(dlHandle_gnss_test, "gsw_gnss_set_freq");
+ if (scanf("%d", &frequency) != 1)
+ printf("input error,please check it");
+ ret =gsw_gnss_set_freq(frequency);
+ if(ret < 0)
+ {
+ printf("gsw_gnss_set_freq FAIL.\n");
+ return -1;
+ }
+ printf("frequency is %d\n",frequency);
+ printf("gsw_gnss_set_freq success\n");
+ break;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/mbtk/test/libgsw_lib/gsw_gpio_test.c b/mbtk/test/libgsw_lib/gsw_gpio_test.c
new file mode 100755
index 0000000..3dbf1fc
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_gpio_test.c
@@ -0,0 +1,145 @@
+#include <stdio.h>
+#include <string.h>
+#include <strings.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <pthread.h>
+#include <termios.h>
+#include <time.h>
+#include <sys/ioctl.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <stdbool.h>
+
+typedef enum{
+ GSW_HAL_PINDIR_IN,
+ GSW_HAL_PINDIR_OUT,
+}gsw_hal_pinDirection;
+
+typedef enum{
+ GSW_HAL_LEVEL_LOW,
+ GSW_HAL_LEVEL_HIGH,
+}gsw_hal_pinLevel;
+
+typedef enum{
+ GSW_HAL_PULL_NULL,
+ GSW_HAL_PULL_DOWN,
+ GSW_HAL_PULL_UP,
+}gsw_hal_pinPullSel;
+
+typedef enum{
+ GSW_HAL_USB_DISCONNECTED,
+ GSW_HAL_USB_CONNECTED,
+}gsw_hal_usbStatus;
+
+int32_t (*gsw_gpio_Init)(uint32_t, gsw_hal_pinDirection, gsw_hal_pinLevel);
+int32_t (*gsw_gpio_SetDirection)(uint32_t, gsw_hal_pinDirection);
+int32_t (*gsw_gpio_SetLevel)(uint32_t, gsw_hal_pinLevel);
+gsw_hal_pinLevel (*gsw_gpio_GetLevel)(uint32_t);
+gsw_hal_usbStatus (*gsw_hwpin_is_usb_connected)();
+int32_t (*gsw_setWakeupLevel)(gsw_hal_pinLevel);
+void *dlHandle_gpio;
+char *lynqLib_gpio = "/lib/libgsw_lib.so";
+
+int main(int argc,char **argv)
+{
+ int ret;
+ dlHandle_gpio = dlopen(lynqLib_gpio, RTLD_NOW);
+ if (argc == 4)
+ {
+ if (strcmp(argv[1], "D") == 0)
+ {
+ gsw_gpio_SetDirection=(int32_t(*)(uint32_t, gsw_hal_pinDirection))dlsym(dlHandle_gpio, "gsw_gpio_SetDirection");
+ ret = gsw_gpio_SetDirection(atoi(argv[2]), atoi(argv[3]));
+ if(ret < 0)
+ {
+ printf("gsw_gpio_SetDirection FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gpio_SetDirection success.\n");
+ }
+ else if (strcmp(argv[1], "V") == 0)
+ {
+ gsw_gpio_SetLevel=(int32_t(*)(uint32_t, gsw_hal_pinLevel))dlsym(dlHandle_gpio, "gsw_gpio_SetLevel");
+ ret = gsw_gpio_SetLevel(atoi(argv[2]), atoi(argv[3]));
+ if(ret < 0)
+ {
+ printf("gsw_gpio_SetLevel FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gpio_SetLevel success.\n");
+ }
+ else
+ {
+ gsw_gpio_Init=(int32_t(*)(uint32_t, gsw_hal_pinDirection, gsw_hal_pinLevel))dlsym(dlHandle_gpio, "gsw_gpio_Init");
+ ret = gsw_gpio_Init(atoi(argv[1]), atoi(argv[2]), atoi(argv[3]));
+ if(ret < 0)
+ {
+ printf("gsw_gpio_Init FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gpio_Init success.\n");
+ }
+ }
+
+ else if (argc == 3)
+ {
+
+ if (strcmp(argv[1], "W") == 0)
+ {
+ gsw_setWakeupLevel=(int32_t(*)(gsw_hal_pinLevel))dlsym(dlHandle_gpio, "gsw_setWakeupLevel");
+ ret = gsw_setWakeupLevel(atoi(argv[2]));
+ if(ret < 0)
+ {
+ printf("gsw_setWakeupLevel FAIL.\n");
+ return -1;
+ }
+ printf("gsw_setWakeupLevel success.\n");
+ }
+ else
+ {
+ printf("error,please check input\n");
+ return -1;
+ }
+ }
+ else if (argc == 2)
+ {
+ if (strcmp(argv[1], "U") == 0)
+ {
+ gsw_hwpin_is_usb_connected=(gsw_hal_usbStatus(*)())dlsym(dlHandle_gpio, "gsw_hwpin_is_usb_connected");
+ ret = gsw_hwpin_is_usb_connected();
+ if(ret == 0)
+ {
+ printf("gsw_hwpin_is_usb_Unconnected ret = %d\n",ret);
+ return 0;
+ }
+ else
+ {
+ printf("gsw_hwpin_is_usb_connected.ret = %d\n",ret);
+ return 0;
+ }
+
+ }
+ else
+ {
+ gsw_gpio_GetLevel=(gsw_hal_pinLevel(*)(uint32_t))dlsym(dlHandle_gpio, "gsw_gpio_GetLevel");
+ ret = gsw_gpio_GetLevel(atoi(argv[1]));
+ if(ret < 0)
+ {
+ printf("gsw_gpio_GetLevel FAIL.\n");
+ return -1;
+ }
+ printf("gsw_gpio_GetLevel success.\n");
+ }
+ }
+ else
+ {
+ printf("error,please check input\n");
+ return -1;
+ }
+ return 0;
+}
\ No newline at end of file
diff --git a/mbtk/test/libgsw_lib/gsw_nw_test.c b/mbtk/test/libgsw_lib/gsw_nw_test.c
new file mode 100755
index 0000000..9fc90b1
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_nw_test.c
@@ -0,0 +1,1318 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdbool.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <string.h>
+#include <pthread.h>
+
+//mbtk include
+#define LYNQ_AIR_PLANE_MODE_ON 4 //at+cfun = 4
+#define LYNQ_AIR_PLANE_MODE_OFF 1 // at+cfun = 1
+
+
+#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
+
+#ifndef FALSE
+#define FALSE (0)
+#endif
+
+
+#ifndef TRUE
+#define TRUE (!FALSE)
+#endif
+
+typedef unsigned int uint32;
+typedef unsigned char uint8;
+typedef unsigned short uint16;
+typedef void (*mbtk_info_callback_func)(const void* data, int data_len);
+
+typedef enum
+{
+ MBTK_DEV_MODEM_MIN_FUN, //Modem 最小功能
+ MBTK_DEV_MODEM_FULL_FUN, //Modem 全功能
+ MBTK_DEV_MODEM_DISABLE_RECEIVE_RF_CIRCUITS = 3, //Modem 禁用射频接收电路
+ MBTK_DEV_MODEM_DISABLE_TRANSMIT_AND_RECEIVE_RF_CIRCUITS, //Modem禁用射频发射和接收电路
+ MBTK_DEV_MODEM_DISABLE_SIM, //Modem 禁用(U)SIM 卡
+ MBTK_DEV_MODEM_TURN_OFF_FULL_SECONDARY_RECEIVE, //Modem 完全禁用辅助接收
+}MBTK_DEV_MODEM_FUNCTION;
+
+typedef enum
+{
+ MBTK_CELL_TYPE_GSM = 0,
+ MBTK_CELL_TYPE_UMTS,
+ MBTK_CELL_TYPE_LTE
+} mbtk_cell_type_enum;
+
+typedef struct
+{
+ MBTK_DEV_MODEM_FUNCTION fun;
+ int rst;
+} mbtk_modem_info_t;
+
+typedef struct
+{
+ int client_fd;
+ pthread_t read_thread_id;
+ int exit_fd[2];
+ bool is_waitting;
+ pthread_cond_t cond;
+ pthread_mutex_t mutex;
+
+ pthread_mutex_t send_mutex;
+
+ // Temp response data.
+ uint16 info_err;
+ uint16 data_len;
+ void *data;
+
+ //mbtk wyq for server_ready_status add start
+ char server_ready_status;
+ //mbtk wyq for server_ready_status add end
+
+ mbtk_info_callback_func net_state_cb;
+ mbtk_info_callback_func call_state_cb;
+ mbtk_info_callback_func sms_state_cb;
+ mbtk_info_callback_func radio_state_cb;
+ mbtk_info_callback_func sim_state_cb;
+ mbtk_info_callback_func pdp_state_cb;
+ //add signal by xr
+ mbtk_info_callback_func signal_state_cb;
+} mbtk_info_handle_t;
+
+
+
+typedef struct
+{
+ // LTE server cell: tac, PCI, dlEuarfcn, ulEuarfcn, band
+ // LTE cell: phyCellId,euArfcn,rsrp,rsrq
+ // WCDMA server cell: lac, ci, arfcn
+ // WCDMA cell: lac, ci, arfcn
+ // GSM server cell: lac, ci, arfcn, bsic
+ // GSM cell:
+ mbtk_cell_type_enum type : 8;
+ uint32 value1; //tac
+ uint32 value2; //pci
+ uint32 value3; //dlEuarfcn
+ uint32 value4; //ul arfcn
+ uint32 value5; //band
+ uint32 value6; //mcc
+ uint32 value7; //mnc
+ uint32 value8; //cid
+ uint32 value9; //rsrp
+ uint32 value10; //cell identiy
+} __attribute__((packed)) mbtk_cell_info_t;
+
+
+
+
+
+typedef struct
+{
+ uint8 net_pref; // mbtk_net_pref_enum
+ uint16 gsm_band; // mbtk_gsm_band_enum
+ uint16 umts_band; // mbtk_umts_band_enum
+ uint32 tdlte_band; // mbtk_tdlte_band_enum
+ uint32 fddlte_band; // mbtk_fddlte_band_enum
+ uint32 lte_ext_band; // mbtk_lte_ext_band_enum
+} __attribute__((packed)) mbtk_band_info_t;
+
+typedef struct list_arraynode
+{
+ void *data;
+ struct list_arraynode *next;
+} list_arraynode_t;
+
+typedef struct list_treenode
+{
+ list_arraynode_t *data;
+ int count;
+ struct list_treenode *left;
+ struct list_treenode *right;
+} list_treenode_t;
+
+typedef int (*list_sort_func)(void *data1, void *data2);
+typedef void (*list_free_func)(void *data);
+
+typedef struct list_node
+{
+ uint32 size;
+ list_sort_func sort_func;
+ list_free_func free_func;
+
+ uint32 cur_index;
+ list_arraynode_t *cur_array_data;
+
+ list_arraynode_t array_data;
+ list_treenode_t tree_data;
+} list_node_t;
+
+/*
+0: GSM
+1: GSM Compact
+2: UTRAN
+3: GSM w/EGPRS
+4: UTRAN w/HSDPA
+5: UTRAN w/HSUPA
+6: UTRAN w/HSDPA and HSUPA
+7: E-UTRAN
+8: UTRAN HSPA+
+*/
+typedef enum {
+ MBTK_RADIO_TECH_GSM = 0,
+ MBTK_RADIO_TECH_GSM_COMPACT,
+ MBTK_RADIO_TECH_UTRAN,
+ MBTK_RADIO_TECH_GSM_EGPRS,
+ MBTK_RADIO_TECH_UTRAN_HSDPA,
+ MBTK_RADIO_TECH_UTRAN_HSUPA,
+ MBTK_RADIO_TECH_UTRAN_HSDPA_HSUPA,
+ MBTK_RADIO_TECH_E_UTRAN, // LTE
+ MBTK_RADIO_TECH_UTRAN_HSPA
+} mbtk_radio_technology_enum;
+
+typedef struct
+{
+ /*
+ 0: automatic
+ 1: manual
+ */
+ uint8 net_sel_mode;
+ /*
+ 0: GSM
+ 1: GSM Compact
+ 2: UTRAN
+ 3: GSM w/EGPRS
+ 4: UTRAN w/HSDPA
+ 5: UTRAN w/HSUPA
+ 6: UTRAN w/HSDPA and HSUPA
+ 7: E-UTRAN
+ 8: UTRAN HSPA+
+ 0xFF: Unused
+ */
+ uint8 net_type;
+ //uint8 plmn[10]; // 46000
+ /*
+ 0: unknown
+ 1: available
+ 2: current
+ 3: forbidden
+ */
+ uint8 net_state;
+ uint32 plmn;
+} __attribute__((packed)) mbtk_net_info_t;
+
+
+typedef enum
+{
+ MBTK_NET_REG_STATE_NON = 0,
+ MBTK_NET_REG_STATE_HOME,
+ MBTK_NET_REG_STATE_SEARCHING,
+ MBTK_NET_REG_STATE_DENIED,
+ MBTK_NET_REG_STATE_UNKNOWN,
+ MBTK_NET_REG_STATE_ROAMING,
+ MBTK_NET_REG_STATE_SMS_ONLY,
+ MBTK_NET_REG_STATE_ROAMING_SMS,
+ MBTK_NET_REG_STATE_ATTACHED_EMERGENCY,
+ MBTK_NET_REG_STATE_CSFB_HOME,
+ MBTK_NET_REG_STATE_CSFB_ROAMING,
+ MBTK_NET_REG_STATE_EMERGENCY_ONLY
+} mbtk_net_reg_state_enum;
+
+typedef struct
+{
+ uint8 call_state;// mbtk_net_reg_state_enum
+ uint8 data_state;// mbtk_net_reg_state_enum
+ uint8 ims_state;// mbtk_net_reg_state_enum
+ uint8 type; // mbtk_radio_technology_enum
+ uint16 lac;
+ uint32 ci;
+} __attribute__((packed)) mbtk_net_reg_info_t;
+
+typedef struct
+{
+ uint8 type; // mbtk_radio_technology_enum
+ uint8 rssi; // 0: 113 dBm or less
+ // 1: 111 dBm
+ // 2��30: 109��53 dBm
+ // 31: 51 dBm or greater
+ // 99: not known or not detectable
+ uint8 rxlev;// 0:rssi < -110 dBm
+ // 1: -110 dBm �� rssi < -109 dBm
+ // 2: -109 dBm �� rssi < -108 dBm
+ // ......
+ // 61: -50 dBm �� rssi < -49 dBm
+ // 62: -49 dBm �� rssi < -48 dBm
+ // 63: -48 dBm �� rssi
+ // 99: not known or not detectable
+ uint8 ber; // 0...7 as RXQUAL values in the table in 3GPP TS 45.008 [20] subclause 8.2.4
+ // 99 not known or not detectable
+ uint8 rscp; // 0: rscp < -120 dBm
+ // 1: -120 dBm �� rscp < -119 dBm
+ // 2: -119 dBm �� rscp < -118 dBm
+ // ......
+ // 94: -27 dBm �� rscp < -26 dBm
+ // 95: -26 dBm �� rscp < -25 dBm
+ // 96: - 25 dBm �� rscp
+ // 255: not known or not detectable
+ uint8 ecno; // 0: Ec/Io < -24 dB
+ // 1: -24 dB �� Ec/Io < -23.5 dB
+ // 2: -23.5 dB �� Ec/Io < -23 dB
+ // ......
+ // 47: -1 dB �� Ec/Io < -0.5 dB
+ // 48: -0.5 dB �� Ec/Io < 0 dB
+ // 49: 0 dB �� Ec/Io
+ // 255: not known or not detectable
+ uint8 rsrq; // 0: rsrq < -19.5 dB
+ // 1: -19.5 dB �� rsrq < -19 dB
+ // 2: -19 dB �� rsrq < -18.5 dB
+ // ......
+ // 32: -4 dB �� rsrq < -3.5 dB
+ // 33: -3.5 dB �� rsrq < -3 dB
+ // 34: -3 dB �� rsrq
+ // 255: not known or not detectable
+ uint8 rsrp; // 0: rsrp < -140 dBm
+ // 1: -140 dBm �� rsrp < -139 dBm
+ // 2: -139 dBm �� rsrp < -138 dBm
+ // ......
+ // 95: -46 dBm �� rsrp < -45 dBm
+ // 96: -45 dBm �� rsrp < -44 dBm
+ // 97: -44 dBm �� rsrp
+ // 255: not known or not detectable
+} __attribute__((packed)) mbtk_signal_info_t;
+
+#define lib_gsw_nw_path "/lib/libgsw_lib.so"
+static void *dlHandle_nw = NULL;
+
+//gsw include
+
+
+#define GSW_HAL_SUCCESS 0
+#define GSW_HAL_FAIL -1
+#define GSW_HAL_MEM_INVAILD -2
+#define GSW_NW_OPERATION_NAME_LEN 128
+#define GSW_NW_PLMN_LEN 6
+#define GSW_NW_MCC_LEN 3
+#define GSW_NW_MNC_LEN 3
+#define GSW_NW_PARA_MAX_LEN 128
+#define GSW_MCC_MAX_LEN 16
+#define GSW_MNC_MAX_LEN 16
+#define GSW_APN_CHANNEL_MAX 10
+#define GSW_POXY_ADDR_MAX_LEN 64
+#define GSW_PDP_TYPE_MAX_LEN 16
+#define GSW_APN_MAX_LEN 65
+#define GSW_APN_ID_MAX_LEN 32
+#define GSW_APN_TYPE_MAX_LEN 50
+#define GSW_USR_MAX_LEN 16
+#define GSW_PWD_MAX_LEN 16
+#define GSW_AUTH_TYPE_MAX_LEN 50
+#define GSW_PROTOCO_MAX_LEN 64
+#define GSW_CARRIER_ID_MAX_LEN 64
+#define GSW_IFACE_NAME_MAX_LEN 50
+#define GSW_PDP_ADDR_MAX_LEN 64
+#define GSW_DNS_APN_MAX_LEN 64
+#define GSW_GETWAYS_ADDR_MAX_LEN 64
+#define GSW_RSP_MAX_LEN 256
+#define GSW_PLMN_LIST_MAX_LEN 85
+
+
+
+typedef enum service_domain
+{
+ GSW_SRV_DOMAIN_NO_SVC = 0x0, /**< no service */
+ GSW_SRV_DOMAIN_CS_ONLY = 0x1, /**< cs only */
+ GSW_SRV_DOMAIN_PS_ONLY = 0x2, /**< ps only */
+ GSW_SRV_DOMAIN_CS_PS = 0x3, /**< reg all in service */
+} GSW_SERVICE_DOMAIN_E;
+
+typedef enum gsw_network_reg_state
+{
+ GSW_NETWORK_REG_NOT_REGISTERED = 0x0, /**< no service */
+ GSW_NETWORK_REG_REGISTERED = 0x1, /**< reg in service home */
+ GSW_NETWORK_REG_NOT_REGISTERED_SEARCHING = 0x2, /**< searching network */
+ GSW_NETWORK_REG_REGISTRATION_DENIED = 0x3, /**< network denny device */
+ GSW_NETWORK_REG_REGISTRATION_UNKNOWN = 0x4, /**< unknown state */
+ GSW_NETWORK_REG_REGISTRATION_ROAMING = 0x5, /**< roaming state in service */
+ GSW_NETWORK_REG_LIMITED_SERVICE = 0x6, /**< limited service */
+} GSW_NW_REG_STATE_E;
+
+typedef enum gsw_network_radio_interface
+{
+ GSW_NETWORK_RADIO_NO_SVC = 0x0, /**< radio state no service */
+ GSW_NETWORK_RADIO_CDMA_1X = 0x1, /**< cdma 1x */
+ GSW_NETWORK_RADIO_CDMA_1XEVDO = 0x2, /**< cdma evdo */
+ GSW_NETWORK_RADIO_AMPS = 0x3, /**< amps gsm 2g*/
+ GSW_NETWORK_RADIO_GSM = 0x4, /**< gsm */
+ GSW_NETWORK_RADIO_UMTS = 0x5, /**< umts wcdma*/
+ GSW_NETWORK_RADIO_LTE = 0x6, /**< LTE 4G */
+ GSW_NETWORK_RADIO_TDSCDMA = 0x7, /**< TDS 3G*/
+ GSW_NETWORK_RADIO_NR5G = 0x8, /**< NR 5G*/
+} GSW_NW_RADIO_ACCESS_TECH_E;
+
+
+typedef enum gsw_network_roaming_state
+{
+ GSW_NETWORK_ROAMING_OFF = 0x0, /**< roaming off */
+ GSW_NETWORK_ROAMING_ON = 0x1, /**< roaming on*/
+} GSW_NW_ROAMING_STATE_E;
+
+typedef enum oprate_mode
+{
+ GSW_OP_MODE_LPM = 0, /**< radio state off*/
+ GSW_OP_MODE_ONLINE = 1, /**< radio state on*/
+ GSW_OP_MODE_FTM = 2, /**< radio state ftm*/
+ GSW_OP_MODE_OFFLINE = 3, /**< radio state offline*/
+} OPERATE_MODE_E;
+
+typedef enum prefer_mode
+{
+ GSW_PREFER_MODE_GSW = 1, /**<2G only*/
+ GSW_PREFER_MODE_WCDMA = 2, /**< 3G only*/
+ GSW_PREFER_MODE_WCDMA_GSM = 3, /**< 3G/2G*/
+ GSW_PREFER_MODE_LTE = 4, /**< 4G only*/
+ GSW_PREFER_MODE_NR5G = 5, /**< 5G only*/
+ GSW_PREFER_MODE_NR5G_LTE = 8, /**< 5G/4G*/
+ GSW_PREFER_MODE_LTE_WCDMA_GSM = 9, /**< 4G/3G/2G*/
+ GSW_PREFER_MODE_NR5G_LTE_WCDMA_GSM = 32, /**< 5G/4G/3G/2G*/
+} PREFER_MODE_E;
+
+typedef enum gsw_hal_nw_mode_state_type
+{
+ GSW_MODEM_STATE_UNKNOWN = 0,
+ GSW_MODEM_STATE_ONLINE,
+ GSW_MODEM_STATE_OFFLINE,
+ GSW_SDK_STATE_SERVICE_DOWN,
+ GSW_SDK_STATE_SERVICE_UP,// service down->up 需要routectl 重启
+ GSW_SDK_STATE_GPS_DOWN,
+ GSW_SDK_STATE_GPS_UP,
+} gsw_mode_state_e;
+
+
+typedef struct
+{
+ GSW_NW_RADIO_ACCESS_TECH_E rej_rat; /**< current network radio tech*/
+ GSW_SERVICE_DOMAIN_E rej_domain; /**< reject code from ps or cs*/
+ int rej_cause; /**< reject code number*/
+} GSW_NW_REJ_CAUSE_E;
+
+typedef struct
+{
+ int32_t gw_sig_valid; /**< 1 valid,1 invalid*/
+ int32_t rssi; /**< Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
+ int32_t wcdma_sig_valid;/**< 1 valid,0 invalid*/
+ int32_t rscp; /**< The Received Signal Code Power in dBm multipled by -1.
+ * Range : 25 to 120
+ * INT_MAX: 0x7FFFFFFF denotes invalid value.
+ * Reference: 3GPP TS 25.123, section 9.1.1.1 */
+ int32_t ecno; /**< Valid values are positive integers. This value is the actual Ec/Io multiplied
+ * by -10. Example: If the actual Ec/Io is -12.5 dB, then this response value
+ * will be 125.*/
+ int32_t lte_sig_valid;/**< 1 valid,0 invalid*/
+ int32_t rsrp; /**< The current Reference Signal Receive Power in dBm multipled by -1.
+ * Range: 44 to 140 dBm
+ * INT_MAX: 0x7FFFFFFF denotes invalid value.
+ * Reference: 3GPP TS 36.133 9.1.4 */
+ int32_t rsrq; /**< The current Reference Signal Receive Quality in dB multiplied by -1.
+ * Range: 20 to 3 dB.
+ * INT_MAX: 0x7FFFFFFF denotes invalid value.
+ * Reference: 3GPP TS 36.133 9.1.7 */
+ int32_t rssnr; /**< The current reference signal signal-to-noise ratio in 0.1 dB units.
+ * Range: -200 to +300 (-200 = -20.0 dB, +300 = 30dB).
+ * INT_MAX : 0x7FFFFFFF denotes invalid value.
+ * Reference: 3GPP TS 36.101 8.1.1 */
+ int32_t nr_sig_valid;/**<1 valid,0 invalid*/
+ int32_t ssRsrp; /**< SS(Synchronization Signal) reference signal received power, multipled by -1.
+ * Reference: 3GPP TS 38.215.
+ * Range [44, 140], INT_MAX means invalid/unreported.*/
+ int32_t ssRsrq; /**< SS reference signal received quality, multipled by -1.
+ * Reference: 3GPP TS 38.215.
+ * Range [3, 20], INT_MAX means invalid/unreported.*/
+ int32_t ssSinr; /**< SS signal-to-noise and interference ratio.
+ * Reference: 3GPP TS 38.215 section 5.1.*, 3GPP TS 38.133 section 10.1.16.1.
+ * Range [-23, 40], INT_MAX means invalid/unreported.*/
+ int32_t csiRsrp; /**< CSI reference signal received power, multipled by -1.
+ * Reference: 3GPP TS 38.215.
+ * Range [44, 140], INT_MAX means invalid/unreported.*/
+ int32_t csiRsrq; /**< CSI reference signal received quality, multipled by -1.
+ * Reference: 3GPP TS 38.215.
+ * Range [3, 20], INT_MAX means invalid/unreported.*/
+ int32_t csiSinr; /**< CSI signal-to-noise and interference ratio.
+ * Reference: 3GPP TS 138.215 section 5.1.*, 3GPP TS 38.133 section 10.1.16.1.
+ * Range [-23, 40], INT_MAX means invalid/unreported.*/
+} signalStrength_t;
+
+typedef struct
+{
+ GSW_NW_REG_STATE_E reg_state; /**< network cs regstate*/
+ GSW_NW_REG_STATE_E ps_state; /**< network ps regstate*/
+ GSW_NW_RADIO_ACCESS_TECH_E reg_rat; /**< current radio state*/
+ GSW_SERVICE_DOMAIN_E srv_domain; /**< current cs or ps state*/
+ GSW_NW_ROAMING_STATE_E roaming_ind; /**< roaming state*/
+ char reg_plmn[GSW_NW_PLMN_LEN + 1]; /**< current cell plmn*/
+ char operator_name[GSW_NW_OPERATION_NAME_LEN + 1]; /**< operator name*/
+ char cell_id[128]; /**< cell id*/
+ char tac[128]; /**< cell tac*/
+ char lac[128]; /**< cell lac*/
+ int sid; /**< cell sid cdma*/
+ int nid; /**< cell nid cdma*/
+} GSW_NW_SERVING_INFO;
+
+
+typedef struct
+{
+ char long_eons[128]; /* Full name of the operator*/
+ char short_eons[128]; /* Shor name of the operator*/
+ char mcc[4]; /* Mobile country code*/
+ char mnc[4]; /* Mobile network code*/
+}gsw_mobile_operator_name;
+
+#define MAX_CELL_EXT_INFO (5)
+
+typedef struct
+{
+ unsigned char cell_id_valid;
+ unsigned char pci_valid;
+ unsigned char psc_valid;
+ unsigned char band_valid;
+ unsigned char arfcn_valid;
+ unsigned char rssi_valid;
+ unsigned char rsrp_valid;
+ unsigned char rsrq_valid;
+ unsigned char sinr_valid;
+ unsigned char rscp_valid;
+ unsigned char ecio_valid;
+ GSW_NW_RADIO_ACCESS_TECH_E rat;
+ unsigned int cell_id;
+ int pci;
+ int psc;
+ int band;
+ int arfcn;
+ int rssi;
+ int rsrp;
+ int rsrq;
+ int sinr;
+ int rscp;
+ int ecio;
+ char mcc[5];
+ char mnc[5];
+} GSW_NW_CELL_EXT_INFO;
+
+typedef struct
+{
+ GSW_NW_RADIO_ACCESS_TECH_E rat; /**< current radio state*/
+
+ unsigned char mcc_valid;
+ char mcc[5];
+
+ unsigned char mnc_valid;
+ char mnc[5];
+
+ unsigned char cell_id_valid;
+ unsigned int cell_id; /**< cell id*/
+
+ unsigned char pci_valid;
+ int pci; /**<physical cell id*/
+
+ unsigned char psc_valid;
+ int psc; /*wcdma primary scramble code*/
+
+ unsigned char nrarfcn_valid;
+ int nrarfcn; /*nr cell freq*/
+
+ unsigned char earfcn_valid;
+ int earfcn; /*lte cell freq*/
+
+ unsigned char uarfcn_valid;
+ int uarfcn; /*wcdma cell freq*/
+
+ unsigned char arfcn_valid;
+ int arfcn; /*gsw cell freq*/
+
+ unsigned char tac_valid;
+ unsigned int tac; /**< cell tac*/
+
+ unsigned char lac_valid;
+ unsigned int lac; /**< cell lac*/
+
+ unsigned char sid_valid;
+ int sid; /**< cell sid cdma*/
+
+ unsigned char nid_valid;
+ int nid; /**< cell nid cdma*/
+
+ unsigned char lteMode_valid;
+ int lteMode; /*tdd 0, fdd 1*/
+
+ unsigned char rssi_valid;
+ int rssi; /**< Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
+
+ unsigned char rscp_valid;
+ int rscp; /**< The Received Signal Code Power in dBm multipled by -1.
+ * Range : 25 to 120
+ * INT_MAX: 0x7FFFFFFF denotes invalid value.
+ * Reference: 3GPP TS 25.123, section 9.1.1.1 */
+
+ unsigned char ecio_valid;
+ int ecio; /**< Valid values are positive integers. This value is the actual Ec/Io multiplied
+ * by -10. Example: If the actual Ec/Io is -12.5 dB, then this response value
+ * will be 125.*/
+
+ unsigned char rsrp_valid;
+ int rsrp; /**< The current Reference Signal Receive Power in dBm multipled by -1.
+ * Range: 44 to 140 dBm
+ * INT_MAX: 0x7FFFFFFF denotes invalid value.
+ * Reference: 3GPP TS 36.133 9.1.4 */
+
+ unsigned char rsrq_valid;
+ int rsrq; /**< The current Reference Signal Receive Quality in dB multiplied by -1.
+ * Range: 20 to 3 dB.
+ * INT_MAX: 0x7FFFFFFF denotes invalid value.
+ * Reference: 3GPP TS 36.133 9.1.7 */
+
+ unsigned char rssnr_valid;
+ int rssnr; /**< The current reference signal signal-to-noise ratio in 0.1 dB units.
+ * Range: -200 to +300 (-200 = -20.0 dB, +300 = 30dB).
+ * INT_MAX : 0x7FFFFFFF denotes invalid value.
+ * Reference: 3GPP TS 36.101 8.1.1 */
+
+ unsigned char band_valid;
+ int band;
+
+ unsigned char bler_valid;
+ int bler; /*bit error rate*/
+
+ GSW_NW_CELL_EXT_INFO ext_info[MAX_CELL_EXT_INFO]; /* Used to hold neighborhood information for service cells. */
+} GSW_NW_CELL_INFO;
+
+typedef struct {
+ char mcc[GSW_MCC_MAX_LEN];
+ char mnc[GSW_MNC_MAX_LEN];
+} gsw_nw_plmn_t;
+
+
+typedef struct {
+ int plmn_list_len;
+ gsw_nw_plmn_t plmn_list[GSW_PLMN_LIST_MAX_LEN];
+} gsw_nw_plmn_list_t;
+
+typedef struct
+{
+ /* Configuration parameters for MCM network full band network scan when OOS (out of service)*/
+ int t_min;
+ int t_step;
+ int t_max;
+}GSW_NW_OOS_CONFIG_INFO_T;
+
+typedef void (* GSW_NW_ServingInfoHandlePtr)(GSW_NW_SERVING_INFO serving_info);
+typedef void (* GSW_NW_SigInfoHandlePtr)(signalStrength_t sig_info);
+typedef void (* GSW_NW_RejectCauseHandlePtr)(GSW_NW_REJ_CAUSE_E *rej_cause);
+typedef void (* GSW_HAL_NW_AIRPLANE_MODE_HANDLE_PTR)(int32_t airplane_mode);
+typedef void (* GSW_NW_ModemStateHandlePtr)(gsw_mode_state_e state);
+
+int (*gsw_reg_serving_info_callback)(GSW_NW_ServingInfoHandlePtr handle_ptr);
+int (*gsw_reg_sig_info_callback)(GSW_NW_SigInfoHandlePtr handle_ptr);
+int (*gsw_reg_rej_cause_callback)(GSW_NW_RejectCauseHandlePtr handle_ptr);
+int (*gsw_nw_sdk_init)(int token);
+int (*gsw_nw_sdk_deinit)(void);
+int (*gsw_get_nwinfo)(GSW_NW_SERVING_INFO *serving_info);
+int (*gsw_get_netype)(int32_t *netype);
+int (*gsw_get_opmode)(int *op_mode);
+int (*gsw_set_opmode)(int32_t op_mode);
+int (*gsw_get_mode_preference)(int32_t *mode_pref);
+int (*gsw_set_mode_preference)(int32_t mode_pref);
+int (*gsw_get_sig_info)(int32_t *csq_value);
+int (*gsw_network_set_power_mode)(int8_t mode);
+int (*gsw_sigInfo_to_csq)(int32_t netType, int32_t sigValue);
+int (*gsw_get_forbidden_networks)(gsw_nw_plmn_list_t *plmn_list);
+int (*gsw_add_forbidden_networks)(gsw_nw_plmn_list_t *plmn_list);
+int (*gsw_remove_forbidden_networks)(gsw_nw_plmn_list_t *plmn_list);
+int (*gsw_clear_forbidden_networks)(void);
+int (*gsw_get_mobile_operator_name)(gsw_mobile_operator_name *nw_operator_name_infos);
+int (*gsw_reg_set_modem_status_event_callback)(GSW_NW_ModemStateHandlePtr handle_ptr);
+int (*gsw_get_cell_info)(GSW_NW_CELL_INFO *cell_info);
+int (*gsw_oos_config_get)(GSW_NW_OOS_CONFIG_INFO_T *pt_info);
+int (*gsw_oos_config_set)(GSW_NW_OOS_CONFIG_INFO_T *pt_info);
+
+
+static int gsw_nw_api_import()
+{
+ dlHandle_nw = dlopen(lib_gsw_nw_path, RTLD_NOW);
+ if (dlHandle_nw == NULL) {
+ printf("error: %s\n", dlerror());
+ return -1;
+ }
+
+ gsw_nw_sdk_init = (int(*)(int token))dlsym(dlHandle_nw, "gsw_nw_sdk_init");
+ if (gsw_nw_sdk_init == NULL) {
+ printf("gsw_nw_sdk_init dlysm failed \n");
+ return -1;
+ }
+
+ gsw_nw_sdk_deinit = (int(*)(void))dlsym(dlHandle_nw, "gsw_nw_sdk_deinit");
+ if (gsw_nw_sdk_deinit == NULL) {
+ printf("gsw_nw_sdk_deinit dlysm failed \n");
+ return -1;
+ }
+
+ gsw_get_nwinfo = (int(*)(GSW_NW_SERVING_INFO *serving_info))dlsym(dlHandle_nw, "gsw_get_nwinfo");
+ if (gsw_get_nwinfo == NULL) {
+ printf("gsw_get_nwinfo dlysm failed \n");
+ return -1;
+ }
+
+ gsw_get_netype = (int(*)(int32_t *netype))dlsym(dlHandle_nw, "gsw_get_netype");
+ if (gsw_get_netype == NULL) {
+ printf("gsw_get_netype dlysm failed \n");
+ return -1;
+ }
+
+ gsw_get_opmode = (int(*)(int *op_mode))dlsym(dlHandle_nw, "gsw_get_opmode");
+ if (gsw_get_opmode == NULL) {
+ printf("gsw_get_opmode dlysm failed \n");
+ return -1;
+ }
+
+ gsw_set_opmode = (int(*)(int32_t op_mode))dlsym(dlHandle_nw, "gsw_set_opmode");
+ if (gsw_set_opmode == NULL) {
+ printf("gsw_set_opmode dlysm failed \n");
+ return -1;
+ }
+
+ gsw_get_mode_preference = (int(*)(int32_t *mode_pref))dlsym(dlHandle_nw, "gsw_get_mode_preference");
+ if (gsw_get_mode_preference == NULL) {
+ printf("gsw_get_mode_preference dlysm failed \n");
+ return -1;
+ }
+
+ gsw_set_mode_preference = (int(*)(int32_t mode_pref))dlsym(dlHandle_nw, "gsw_set_mode_preference");
+ if (gsw_set_mode_preference == NULL) {
+ printf("gsw_set_mode_preference dlysm failed \n");
+ return -1;
+ }
+
+ gsw_get_sig_info = (int(*)(int32_t *csq_value))dlsym(dlHandle_nw, "gsw_get_sig_info");
+ if (gsw_get_sig_info == NULL) {
+ printf("gsw_get_sig_info dlysm failed \n");
+ return -1;
+ }
+
+ gsw_network_set_power_mode = (int(*)(int8_t mode))dlsym(dlHandle_nw, "gsw_network_set_power_mode");
+ if (gsw_network_set_power_mode == NULL) {
+ printf("gsw_network_set_power_mode dlysm failed \n");
+ return -1;
+ }
+
+ gsw_sigInfo_to_csq = (int(*)(int32_t netType, int32_t sigValue))dlsym(dlHandle_nw, "gsw_sigInfo_to_csq");
+ if (gsw_sigInfo_to_csq == NULL) {
+ printf("gsw_sigInfo_to_csq dlysm failed \n");
+ return -1;
+ }
+
+ gsw_get_forbidden_networks = (int(*)(gsw_nw_plmn_list_t *plmn_list))dlsym(dlHandle_nw, "gsw_get_forbidden_networks");
+ if (gsw_get_forbidden_networks == NULL) {
+ printf("gsw_get_forbidden_networks dlysm failed \n");
+ return -1;
+ }
+
+ gsw_add_forbidden_networks = (int(*)(gsw_nw_plmn_list_t *plmn_list))dlsym(dlHandle_nw, "gsw_add_forbidden_networks");
+ if (gsw_add_forbidden_networks == NULL) {
+ printf("gsw_add_forbidden_networks dlysm failed \n");
+ return -1;
+ }
+
+ gsw_remove_forbidden_networks = (int(*)(gsw_nw_plmn_list_t *plmn_list))dlsym(dlHandle_nw, "gsw_remove_forbidden_networks");
+ if (gsw_remove_forbidden_networks == NULL) {
+ printf("gsw_remove_forbidden_networks dlysm failed \n");
+ return -1;
+ }
+
+ gsw_clear_forbidden_networks = (int(*)(void))dlsym(dlHandle_nw, "gsw_clear_forbidden_networks");
+ if (gsw_clear_forbidden_networks == NULL) {
+ printf("gsw_clear_forbidden_networks dlysm failed \n");
+ return -1;
+ }
+
+ gsw_get_mobile_operator_name = (int(*)(gsw_mobile_operator_name *nw_operator_name_infos))dlsym(dlHandle_nw, "gsw_get_mobile_operator_name");
+ if (gsw_get_mobile_operator_name == NULL) {
+ printf("gsw_get_mobile_operator_name dlysm failed \n");
+ return -1;
+ }
+
+ gsw_reg_set_modem_status_event_callback = (int(*)(GSW_NW_ModemStateHandlePtr handle_ptr))dlsym(dlHandle_nw, "gsw_reg_set_modem_status_event_callback");
+ if (gsw_reg_set_modem_status_event_callback == NULL) {
+ printf("gsw_reg_set_modem_status_event_callback dlysm failed \n");
+ return -1;
+ }
+
+ gsw_get_cell_info = (int(*)(GSW_NW_CELL_INFO *cell_info))dlsym(dlHandle_nw, "gsw_get_cell_info");
+ if (gsw_get_cell_info == NULL) {
+ printf("gsw_get_cell_info dlysm failed \n");
+ return -1;
+ }
+
+ gsw_reg_serving_info_callback = (int(*)(GSW_NW_ServingInfoHandlePtr handle_ptr))dlsym(dlHandle_nw, "gsw_reg_serving_info_callback");
+ if (gsw_reg_serving_info_callback == NULL) {
+ printf("gsw_reg_serving_info_callback dlysm failed \n");
+ return -1;
+ }
+
+ gsw_reg_sig_info_callback = (int(*)(GSW_NW_SigInfoHandlePtr handle_ptr))dlsym(dlHandle_nw, "gsw_reg_sig_info_callback");
+ if (gsw_reg_sig_info_callback == NULL) {
+ printf("gsw_reg_sig_info_callback dlysm failed \n");
+ return -1;
+ }
+
+ gsw_reg_rej_cause_callback = (int(*)(GSW_NW_RejectCauseHandlePtr handle_ptr))dlsym(dlHandle_nw, "gsw_reg_rej_cause_callback");
+ if (gsw_reg_rej_cause_callback == NULL) {
+ printf("gsw_reg_rej_cause_callback dlysm failed \n");
+ return -1;
+ }
+
+ gsw_oos_config_get = (int(*)(GSW_NW_OOS_CONFIG_INFO_T *oos_config))dlsym(dlHandle_nw, "gsw_oos_config_get");
+ if (gsw_oos_config_get == NULL) {
+ printf("gsw_oos_config_get dlysm failed \n");
+ return -1;
+ }
+
+ gsw_oos_config_set = (int(*)(GSW_NW_OOS_CONFIG_INFO_T *oos_config))dlsym(dlHandle_nw, "gsw_oos_config_set");
+ if (gsw_oos_config_set == NULL) {
+ printf("gsw_oos_config_set dlysm failed \n");
+ return -1;
+ }
+
+ return 0;
+
+}
+
+static void gsw_serving_info_callback(GSW_NW_SERVING_INFO serving_info)
+{
+ printf("gsw_serving_info_callback: \n");
+ printf("reg_state = %d\n", serving_info.reg_state);
+ printf("ps_state = %d\n", serving_info.ps_state);
+ printf("reg_rat = %d\n", serving_info.reg_rat);
+ printf("srv_domain = %d\n", serving_info.srv_domain);
+ printf("roaming_ind = %d\n", serving_info.roaming_ind);
+ printf("reg_plmn = %s\n", serving_info.reg_plmn);
+ printf("operator_name = %s\n", serving_info.operator_name);
+ printf("cell_id = %s\n", serving_info.cell_id);
+ printf("tac = %s\n", serving_info.tac);
+ printf("lac = %s\n", serving_info.lac);
+ printf("sid = %d\n", serving_info.sid);
+ printf("nid = %d\n", serving_info.nid);
+}
+
+static void gsw_sig_info_callback(signalStrength_t sig_info)
+{
+ printf("gsw_sig_info_callback: \n");
+ printf("gw_sig_valid = %d\n", sig_info.gw_sig_valid);
+ printf("rssi = %d\n", sig_info.rssi);
+ printf("wcdma_sig_valid = %d\n", sig_info.wcdma_sig_valid);
+ printf("rscp = %d\n", sig_info.rscp);
+ printf("ecno = %d\n", sig_info.ecno);
+ printf("lte_sig_valid = %d\n", sig_info.lte_sig_valid);
+ printf("rsrp = %d\n", sig_info.rsrp);
+ printf("rsrq = %d\n", sig_info.rsrq);
+ printf("rssnr = %d\n", sig_info.rssnr);
+ printf("nr_sig_valid = %d\n", sig_info.nr_sig_valid);
+ printf("ssRsrp = %d\n", sig_info.ssRsrp);
+ printf("ssRsrq = %d\n", sig_info.ssRsrq);
+ printf("ssSinr = %d\n", sig_info.ssSinr);
+ printf("csiRsrp = %d\n", sig_info.csiRsrp);
+ printf("csiRsrq = %d\n", sig_info.csiRsrq);
+ printf("csiSinr = %d\n", sig_info.csiSinr);
+}
+
+static void gsw_rej_cause_callback(GSW_NW_REJ_CAUSE_E *rej_cause)
+{
+ printf("gsw_rej_cause_callback: \n");
+ printf("rej_rat = %d\n", rej_cause->rej_rat);
+ printf("rej_domain = %d\n", rej_cause->rej_domain);
+ printf("rej_cause = %d\n", rej_cause->rej_cause);
+}
+
+static void gsw_modem_status_cb(gsw_mode_state_e state)
+{
+ printf("gsw_modem_status_cb: \n");
+ printf("state = %d\n", state);
+}
+
+
+void dump_items()
+{
+ printf("\n");
+ printf("The current module is: network \n");
+
+ printf("-------------------------------------------------------------------------\n");
+ printf("| index | function name |\n");
+ printf("| -1 exit\n");
+ printf(" 1 gsw_nw_sdk_init\n");
+ printf(" 2 gsw_nw_sdk_deinit\n");
+ printf(" 3 gsw_get_nwinfo\n");
+ printf(" 4 gsw_get_netype\n");
+ printf(" 5 gsw_get_opmode\n");
+ printf(" 6 gsw_set_opmode\n");
+ printf(" 7 gsw_get_mode_preference\n");
+ printf(" 8 gsw_set_mode_preference\n");
+ printf(" 9 gsw_get_sig_info\n");
+ printf(" 10 gsw_network_set_power_mode\n");
+ printf(" 11 gsw_sigInfo_to_csq\n");
+ printf(" 12 gsw_get_forbidden_networks\n");
+ printf(" 13 gsw_add_forbidden_networks\n");
+ printf(" 14 gsw_remove_forbidden_networks\n");
+ printf(" 15 gsw_clear_forbidden_networks\n");
+ printf(" 16 gsw_get_mobile_operator_name\n");
+ printf(" 17 gsw_reg_set_modem_status_event_callback\n");
+ printf(" 18 gsw_get_cell_info\n");
+ printf(" 19 gsw_reg_serving_info_callback\n");
+ printf(" 20 gsw_reg_sig_info_callback\n");
+ printf(" 21 gsw_reg_rej_cause_callback\n");
+ printf(" 22 gsw_oos_config_get\n");
+ printf(" 23 gsw_oos_config_set\n");
+ printf("-------------------------------------------------------------------------\n");
+}
+
+int main(int argc, char *argv[])
+{
+ int ret;
+ char operator[10];
+ int opt;
+
+ ret = gsw_nw_api_import();
+ if (ret != 0) {
+ printf("gsw_nw_api_import failed \n");
+ return -1;
+ }
+
+
+ while(1)
+ {
+ dump_items();
+ printf("input the index of module: ");
+
+ opt = -1;
+ printf("%s",fgets(operator, sizeof(operator), stdin));
+ fflush(stdin);
+
+ opt = atoi(operator);
+ switch (opt) {
+ case -1:
+ {
+ printf("main exit\n");
+ return 0;
+ }
+ case 1:
+ {
+ printf("gsw_nw_sdk_init\n");
+ ret = gsw_nw_sdk_init(1024);
+ printf("gsw_nw_sdk_init ret = %d\n",ret);
+ break;
+ }
+ case 2:
+ {
+ printf("gsw_nw_sdk_deinit\n");
+ ret = gsw_nw_sdk_deinit();
+ printf("gsw_nw_sdk_deinit ret = %d\n",ret);
+ break;
+ }
+ case 3:
+ {
+ GSW_NW_SERVING_INFO* nwinfo;
+ nwinfo = (GSW_NW_SERVING_INFO*)malloc(sizeof(GSW_NW_SERVING_INFO));
+ memset(nwinfo, 0x00, sizeof(GSW_NW_SERVING_INFO));
+ printf("gsw_get_nwinfo start\n");
+ ret = gsw_get_nwinfo(nwinfo);
+ if(ret != 0)
+ {
+ printf("gsw_get_nwinfo failed \n");
+ continue;
+ }
+ printf("nwinfo.reg_state = %d\nnwinfo.ps_state = %d\nnwinfo.reg_rat = %d\nnwinfo.srv_domain = %d\nnwinfo.roaming_ind = %d\nnwinfo.reg_plmn = %s\nnwinfo.operator_name = %s\nnwinfo.cell_id = %s\nnwinfo.lac = %s\nnwinfo.sid=%d\nnwinfo.nid = %d\n",nwinfo->reg_state, nwinfo->ps_state, nwinfo->reg_rat, nwinfo->srv_domain, nwinfo->roaming_ind, nwinfo->reg_plmn, nwinfo->operator_name, nwinfo->cell_id, nwinfo->lac, nwinfo->sid, nwinfo->nid);
+ free(nwinfo);
+ break;
+ }
+ case 4:
+ {
+ int nettype;
+ ret = gsw_get_netype(&nettype);
+ if(ret != 0)
+ {
+ printf("gsw_get_netype failed \n");
+ continue;
+ }
+ printf("nettype = %d\n", nettype);
+ break;
+ }
+
+ case 5:
+ {
+ int opmode;
+ ret = gsw_get_opmode(&opmode);
+ if(ret != 0)
+ {
+ printf("gsw_get_opmode failed \n");
+ continue;
+ }
+ printf("opmode = %d\n", opmode);
+ break;
+ }
+
+ case 6:
+ {
+ printf("input the opmode: ");
+ memset(operator,0x00, sizeof(operator));
+ printf("%s\n",fgets(operator, sizeof(operator)-1, stdin));
+ fflush(stdin);
+ opt = atoi(operator);
+ ret = gsw_set_opmode(opt);
+ if(ret != 0)
+ {
+ printf("gsw_set_opmode failed \n");
+ continue;
+ }
+ break;
+ }
+
+ case 7:
+ {
+ int mode_pref;
+ ret = gsw_get_mode_preference(&mode_pref);
+ if(ret != 0)
+ {
+ printf("gsw_get_mode_preference failed \n");
+ continue;
+ }
+ printf("mode_pref = %d\n", mode_pref);
+ break;
+ }
+
+ case 8:
+ {
+ printf("input the mode_pref: ");
+ memset(operator,0x00, sizeof(operator));
+ printf("%s\n",fgets(operator, sizeof(operator)-1, stdin));
+ fflush(stdin);
+ opt = atoi(operator);
+ ret = gsw_set_mode_preference(opt);
+ if(ret != 0)
+ {
+ printf("gsw_set_mode_preference failed \n");
+ continue;
+ }
+ break;
+ }
+
+ case 9:
+ {
+ int siginfo;
+ ret = gsw_get_sig_info(&siginfo);
+ if(ret != 0)
+ {
+ printf("gsw_get_sig_info failed \n");
+ continue;
+ }
+ printf("signal info: siginfo = %d\n", siginfo);
+ break;
+ }
+
+ case 10:
+ {
+ printf("input the power mode: ");
+ memset(operator,0x00, sizeof(operator));
+ printf("%s\n",fgets(operator, sizeof(operator)-1, stdin));
+ fflush(stdin);
+ opt = atoi(operator);
+ ret = gsw_network_set_power_mode(opt);
+ if(ret != 0)
+ {
+ printf("gsw_network_set_power_mode failed \n");
+ continue;
+ }
+ break;
+ }
+
+ case 11:
+ {
+ int nettype;
+ int sigValue;
+ printf("please input the netType:");
+ memset(operator,0x00, sizeof(operator));
+ printf("%s\n",fgets(operator, sizeof(operator)-1, stdin));
+ fflush(stdin);
+ nettype = atoi(operator);
+
+ printf("input the sigValue: ");
+ memset(operator,0x00, sizeof(operator));
+ printf("%s\n",fgets(operator, sizeof(operator)-1, stdin));
+ fflush(stdin);
+ sigValue = atoi(operator);
+
+ ret = gsw_sigInfo_to_csq(nettype, sigValue);
+ printf("csq = %d\n", ret);
+
+ break;
+ }
+
+ case 12:
+ {
+ printf("gsw_get_forbidden_networks start\n");
+ gsw_nw_plmn_list_t fplmn_list;
+ fplmn_list.plmn_list_len = 0;
+ ret = gsw_get_forbidden_networks(&fplmn_list);
+ if(ret != 0)
+ {
+ printf("gsw_get_forbidden_networks failed \n");
+ continue;
+ }
+
+ printf("gsw_get_forbidden_networks end\n");
+ for(int i = 0; i < fplmn_list.plmn_list_len; i++)
+ {
+ printf("list[%d] mcc = %s,mnc = %s\n",i, fplmn_list.plmn_list[i].mcc, fplmn_list.plmn_list[i].mnc);
+ }
+
+ break;
+ }
+ case 13:
+ {
+ printf("gsw_add_forbidden_networks start\n");
+ gsw_nw_plmn_list_t fplmn_list_set;
+ fplmn_list_set.plmn_list_len = 1;
+ strcpy(fplmn_list_set.plmn_list[0].mcc, "460");
+ strcpy(fplmn_list_set.plmn_list[0].mnc, "09");
+
+ ret = gsw_add_forbidden_networks(&fplmn_list_set);
+ if(ret != 0)
+ {
+ printf("gsw_add_forbidden_networks failed \n");
+ continue;
+ }
+ printf("gsw_add_forbidden_networks end\n");
+ break;
+ }
+ case 14:
+ {
+ printf("gsw_add_forbidden_networks start\n");
+ gsw_nw_plmn_list_t fplmn_list_remove;
+ fplmn_list_remove.plmn_list_len = 1;
+ strcpy(fplmn_list_remove.plmn_list[0].mcc, "460");
+ strcpy(fplmn_list_remove.plmn_list[0].mnc, "02");
+
+ ret = gsw_remove_forbidden_networks(&fplmn_list_remove);
+ if(ret != 0)
+ {
+ printf("gsw_add_forbidden_networks failed \n");
+ continue;
+ }
+ printf("gsw_add_forbidden_networks end\n");
+ break;
+ }
+
+ case 15:
+ {
+ printf("gsw_clear_forbidden_networks start\n");
+ ret = gsw_clear_forbidden_networks();
+ if(ret != 0)
+ {
+ printf("gsw_clear_forbidden_networks failed \n");
+ continue;
+ }
+ printf("gsw_clear_forbidden_networks end\n");
+ break;
+ }
+
+ case 16:
+ {
+ gsw_mobile_operator_name opname;
+
+ ret = gsw_get_mobile_operator_name(&opname);
+ if(ret != 0)
+ {
+ printf("gsw_get_mobile_operator_name failed \n");
+ continue;
+ }
+
+ printf("opname.operator_name = %s\nopname.operator_code = %s\nopname.mcc=%s\nopname.mnc=%s", opname.long_eons, opname.short_eons, opname.mcc, opname.mnc);
+ break;
+ }
+
+ case 17:
+ {
+ printf("gsw_reg_set_modem_status_event_callback\n");
+ ret = gsw_reg_set_modem_status_event_callback(gsw_modem_status_cb);
+ if(ret != 0)
+ {
+ printf("gsw_reg_set_modem_status_event_callback failed \n");
+ continue;
+ }
+ printf("gsw_reg_set_modem_status_event_callback success\n");
+ break;
+ }
+
+ case 18:
+ {
+ printf("gsw_get_cell_info starts\n");
+ GSW_NW_CELL_INFO cell_info;
+ memset(&cell_info, 0x00, sizeof(GSW_NW_CELL_INFO));
+ ret = gsw_get_cell_info(&cell_info);
+ if(ret != 0)
+ {
+ printf("gsw_get_cell_info failed \n");
+ continue;
+ }
+
+ printf("--------------------serving cell info ------------------------------\n");
+ printf("mcc_valid = %d\n",cell_info.mcc_valid);
+ printf("mcc = %s\n",cell_info.mcc);
+ printf("mnc_valid = %d\n",cell_info.mnc_valid);
+ printf("mnc = %s\n",cell_info.mnc);
+ printf("cell_id_valid = %d\n",cell_info.cell_id_valid);
+ printf("cell_id = %u\n",cell_info.cell_id);
+ printf("pci_valid = %d\n",cell_info.pci_valid);
+ printf("pci = %d\n",cell_info.pci);
+ printf("psc_valid = %d\n",cell_info.psc_valid);
+ printf("psc = %d\n",cell_info.psc);
+ printf("earfcn_valid = %d\n",cell_info.earfcn_valid);
+ printf("earfcn = %d\n",cell_info.earfcn);
+ printf("uarfcn_valid = %d\n",cell_info.uarfcn_valid);
+ printf("uarfcn = %d\n",cell_info.uarfcn);
+ printf("arfcn_valid = %d\n",cell_info.arfcn_valid);
+ printf("arfcn = %d\n",cell_info.arfcn);
+ printf("tac_valid = %d\n",cell_info.tac_valid);
+ printf("tac = %u\n",cell_info.tac);
+ printf("lac_valid = %d\n",cell_info.lac_valid);
+ printf("lac = %u\n",cell_info.lac);
+ printf("sid_valid = %d\n",cell_info.sid_valid);
+ printf("sid = %d\n",cell_info.sid);
+ printf("nid_valid = %d\n",cell_info.nid_valid);
+ printf("nid = %d\n",cell_info.nid);
+ printf("lteMode_valid = %d\n",cell_info.lteMode_valid);
+ printf("lteMode = %d\n",cell_info.lteMode);
+ printf("rssi_valid = %d\n",cell_info.rssi_valid);
+ printf("rssi = %d\n",cell_info.rssi);
+ printf("rsrq_valid = %d\n",cell_info.rsrq_valid);
+ printf("rsrq = %d\n",cell_info.rsrq);
+ printf("ecio_valid = %d\n",cell_info.ecio_valid);
+ printf("ecio = %d\n",cell_info.ecio);
+ printf("rsrp_valid = %d\n",cell_info.rsrp_valid);
+ printf("rsrp = %d\n",cell_info.rsrp);
+ printf("rsrq_valid = %d\n",cell_info.rsrq_valid);
+ printf("rsrq = %d\n",cell_info.rsrq);
+ printf("rssnr_valid = %d\n",cell_info.rssnr_valid);
+ printf("rssnr = %d\n",cell_info.rssnr);
+ printf("band_valid = %d\n",cell_info.band_valid);
+ printf("band = %d\n",cell_info.band);
+ printf("bler_valid = %d\n",cell_info.bler_valid);
+ printf("bler = %d\n",cell_info.bler);
+
+
+ printf("-----------------------------------------------------------------------------------\n");
+
+ printf("-------------------------------------inter cell info ------------------------------\n");
+
+ for(int i = 0; i <MAX_CELL_EXT_INFO ; i++)
+ {
+ printf("-----------------------------------------------------------\n");
+ printf("inter cell info[%d] rat = %d\n",i,cell_info.ext_info[i].rat);
+
+ printf("inter cell info[%d] mcc = %s\n",i,cell_info.ext_info[i].mcc);
+
+ printf("inter cell info[%d] mnc = %s\n",i,cell_info.ext_info[i].mnc);
+
+ printf("inter cell info[%d] pci_valid = %d\n",i,cell_info.ext_info[i].pci_valid);
+ printf("inter cell info[%d] pci = %d\n",i,cell_info.ext_info[i].pci);
+
+ printf("inter cell info[%d] arfcn_valid = %d\n",i,cell_info.ext_info[i].arfcn_valid);
+ printf("inter cell info[%d] arfcn = %d\n",i,cell_info.ext_info[i].arfcn);
+
+ printf("inter cell info[%d] rsrp_valid = %d\n",i,cell_info.ext_info[i].rsrp_valid);
+ printf("inter cell info[%d] rsrp = %d\n",i,cell_info.ext_info[i].rsrp);
+
+ printf("inter cell info[%d] rsrq_valid = %d\n",i,cell_info.ext_info[i].rsrq_valid);
+ printf("inter cell info[%d] rsrq = %d\n",i,cell_info.ext_info[i].rsrq);
+
+ printf("inter cell info[%d] cell_id_valid = %d\n",i,cell_info.ext_info[i].cell_id_valid);
+ printf("inter cell info[%d] cell_id = %u\n",i,cell_info.ext_info[i].cell_id);
+
+ printf("inter cell info[%d] band_valid = %d\n",i,cell_info.ext_info[i].band_valid);
+ printf("inter cell info[%d] band = %u\n",i,cell_info.ext_info[i].band);
+
+ printf("-----------------------------------------------------------\n");
+ }
+
+
+ break;
+ }
+
+ case 19:
+ {
+ printf("gsw_reg_serving_info_callback start\n");
+ ret = gsw_reg_serving_info_callback(gsw_serving_info_callback);
+ break;
+ }
+
+ case 20:
+ {
+ printf("gsw_reg_sig_info_callback start\n");
+ ret = gsw_reg_sig_info_callback(gsw_sig_info_callback);
+ break;
+ }
+
+ case 21:
+ {
+ printf("gsw_reg_rej_cause_callback\n");
+ ret = gsw_reg_rej_cause_callback(gsw_rej_cause_callback);
+ break;
+ }
+
+ case 22:
+ {
+ printf("gsw_oos_config_get\n");
+ GSW_NW_OOS_CONFIG_INFO_T oos_cfg;
+ ret = gsw_oos_config_get(&oos_cfg);
+ if(ret != 0)
+ {
+ printf("gsw_oos_config_get failed \n");
+ continue;
+ }
+
+ else
+ {
+ printf("oos_cfg.t_min = %d\n",oos_cfg.t_min);
+ printf("oos_cfg.t_max = %d\n",oos_cfg.t_max);
+ printf("oos_cfg.t_step = %d\n",oos_cfg.t_step);
+ }
+ break;
+ }
+
+ case 23:
+ {
+ printf("gsw_oos_config_set\n");
+ GSW_NW_OOS_CONFIG_INFO_T oos_cfg;
+ oos_cfg.t_min = 5;
+ oos_cfg.t_step = 5;
+ oos_cfg.t_max = 5;
+
+ ret = gsw_oos_config_set(&oos_cfg);
+ if(ret != 0)
+ {
+ printf("gsw_oos_config_set failed \n");
+ continue;
+ }
+ else
+ {
+ printf("gsw_oos_config_set success\n");
+ }
+ break;
+ }
+
+
+ default:
+ {
+ continue;
+ }
+
+
+ }
+ }
+
+
+}
diff --git a/mbtk/test/libgsw_lib/gsw_oem_rw_test.c b/mbtk/test/libgsw_lib/gsw_oem_rw_test.c
new file mode 100755
index 0000000..723c0c6
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_oem_rw_test.c
@@ -0,0 +1,181 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <time.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include <sys/ioctl.h>
+#include <mtd/mtd-user.h>
+#include <errno.h>
+
+#include "gsw_oem_rw_interface.h"
+
+
+#define FLASH_DEVICE "/dev/mtd32"
+
+
+
+#define TEST_BLOCK_ID 1 // 测试使用的block ID
+
+void print_usage(void)
+{
+ printf("Usage:\n");
+ printf(" 1: Write test data to block\n");
+ printf(" 2: Read data from block\n");
+ printf(" 0: Exit\n");
+ printf("Please input your choice: ");
+}
+
+int write_test(void)
+{
+ int ret;
+ struct mtd_info_user mtd_info;
+ int fd;
+ char *write_buf = NULL;
+ unsigned int max_write_size;
+
+
+ fd = open(FLASH_DEVICE, O_RDONLY);
+ if (fd == -1) {
+ printf("Error opening flash device: %s\n", strerror(errno));
+ return GSW_HAL_NORMAL_FAIL;
+ }
+
+ if (ioctl(fd, MEMGETINFO, &mtd_info) < 0) {
+ printf("Error getting MTD info: %s\n", strerror(errno));
+ close(fd);
+ return GSW_HAL_NORMAL_FAIL;
+ }
+
+ close(fd);
+
+ max_write_size = mtd_info.erasesize;
+ printf("MTD erase size: %u bytes\n", max_write_size);
+
+
+ write_buf = (char *)malloc(max_write_size);
+ if (write_buf == NULL)
+ {
+ printf("Failed to allocate write buffer\n");
+ return -1;
+ }
+
+ int block_id = -1;
+ printf("enter block id \n");
+ ret = scanf("%d",&block_id);
+ memset(write_buf, 0, max_write_size);
+ snprintf(write_buf, max_write_size, "Test data for block %d, timestamp: %d",
+ block_id, (int)time(NULL));
+ printf("Write data: %s\n", write_buf);
+ printf("Writing data to block %d...\n", block_id);
+ ret = gsw_oem_write_data_ext(block_id, write_buf, max_write_size);
+ if (ret != GSW_HAL_SUCCESS)
+ {
+ printf("Write failed with error: %d\n", ret);
+ }
+ else
+ {
+ printf("Write successful\n");
+ }
+
+ free(write_buf);
+ return ret;
+}
+
+int read_test(void)
+{
+ int ret;
+ unsigned int read_len = 0;
+ struct mtd_info_user mtd_info;
+ int fd;
+ char *read_buf = NULL;
+ unsigned int max_read_size;
+
+
+ fd = open(FLASH_DEVICE, O_RDONLY);
+ if (fd == -1) {
+ printf("Error opening flash device: %s\n", strerror(errno));
+ return GSW_HAL_NORMAL_FAIL;
+ }
+
+ if (ioctl(fd, MEMGETINFO, &mtd_info) < 0) {
+ printf("Error getting MTD info: %s\n", strerror(errno));
+ close(fd);
+ return GSW_HAL_NORMAL_FAIL;
+ }
+
+ close(fd);
+
+ max_read_size = mtd_info.erasesize;
+ printf("MTD erase size: %u bytes\n", max_read_size);
+
+
+ read_buf = (char *)malloc(max_read_size);
+ if (read_buf == NULL)
+ {
+ printf("Failed to allocate read buffer\n");
+ return -1;
+ }
+
+ memset(read_buf, 0, max_read_size);
+
+ int block_id = -1;
+ printf("enter block id \n");
+ ret = scanf("%d",&block_id);
+ printf("Reading data from block %d...\n", block_id);
+
+ ret = gsw_oem_read_data_ext(block_id, read_buf, &read_len);
+ if (ret != GSW_HAL_SUCCESS)
+ {
+ printf("Read failed with error: %d\n", ret);
+ }
+ else
+ {
+ printf("Read %u bytes\n", read_len);
+ printf("Read data: %s\n", read_buf);
+ }
+ free(read_buf);
+ return ret;
+}
+
+int main()
+{
+ int choice;
+ int ret = 0;
+
+ while (1)
+ {
+ print_usage();
+ if (scanf("%d", &choice) != 1)
+ {
+ printf("Invalid input\n");
+
+ while (getchar() != '\n');
+ continue;
+ }
+
+
+ while (getchar() != '\n');
+
+ switch (choice)
+ {
+ case 0:
+ printf("Exit\n");
+ return 0;
+ case 1:
+ ret = write_test();
+ break;
+ case 2:
+ ret = read_test();
+ break;
+ default:
+ printf("Invalid choice\n");
+ break;
+ }
+
+ printf("\n");
+ }
+
+ return ret;
+}
+
diff --git a/mbtk/test/libgsw_lib/gsw_ota_test.c b/mbtk/test/libgsw_lib/gsw_ota_test.c
new file mode 100755
index 0000000..99531e9
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_ota_test.c
@@ -0,0 +1,385 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <stdint.h>
+#include <signal.h>
+#include <pthread.h>
+#include <stdbool.h>
+#include <dlfcn.h>
+
+typedef struct
+{
+ int cmdIdx;
+ char *funcName;
+}st_api_test_case;
+
+
+
+typedef enum
+{
+ GSW_OTA_SUCCESS,
+ GSW_OTA_FAILURE,
+ GSW_OTA_TIMEOUT,
+ GSW_OTA_INPROCESS,
+ GSW_OTA_NO_TASK
+}E_GSW_OTA_RET;
+
+typedef enum _gsw_ota_ret
+{
+ GSW_OTA_SYSTEM_A,
+ GSW_OTA_SYSTEM_B,
+}E_GSW_OTA_SYSTEM;
+
+
+typedef enum
+{
+ GSW_UPDATE_SUCCEED = 0, //update succeed
+ GSW_UPDATE_INPROGRESS, //update in progress
+ GSW_UPDATE_BACKUP, //A/B partition sync in progress
+ GSW_UPDATE_FAILED, //update failed
+ GSW_UPDATE_WAITEDONE, //update in-active part finished,not switch update part.
+ GSW_UPDATE_NEEDSYNC, //switch update part, need sync A/B part
+ GSW_UPDATE_CANCEL //updata cancel success
+}gsw_update_state_t;
+
+typedef enum
+{
+ GSW_UPDATE_NOERROR=0, //升级成功
+ GSW_UPDATE_ARGUMENTERROR, //升级程序启动参数错误
+ GSW_UPDATE_SDCARDNOEXIST, //未挂载外置FLASH等存储设备
+ GSW_UPDATE_PACKAGENOEXIST, //升级包不存在
+ GSW_UPDATE_UNZIPFAILED, //解压升级包出错
+ GSW_UPDATE_PARTITIONFLUSHERROR,//写入分区出错
+ GSW_UPDATE_XMLPARSEERROR, //解析 fotaconfig.xml 文件出错
+ GSW_UPDATE_DIFFUBIUNATTACH, //差分升级 UBI 分区挂载异常
+ GSW_UPDATE_NOSPACELEFT, //空间不足
+ GSW_UPDATE_FILECHECKFAILED, //MD5 值校验失败
+ GSW_UPDATE_BSPATCHFAILED, //bspatch 合成新文件夹失败
+ GSW_UPDATE_NOFINDPARTITION, //待升级分区不存在
+ GSW_UPDATE_UBIVOLUMEERROR, //差分升级,待升级 UBI 卷不存在
+ GSW_UPDATE_NOFOTACONFIGFILE, //升级包中无 fotaconfig.xml 文件
+ GSW_UPDATE_GETOLDSOFTWAREFAILED,//读取原始版本固件失败
+ GSW_UPDATE_FILENOTEXIST, //文件不存在
+ GSW_UPDATE_UPGRADECANCELED, //升级或分区同步被取消
+ GSW_UPDATE_NONEEDCANCEL, //取消升级失败
+ GSW_UPDATE_NOGOING //升级或分区同步正在进行,不可重复操作
+}gsw_update_exit_code_t;
+
+
+typedef struct
+{
+ unsigned int percentage; //update progress0-100
+ gsw_update_state_t update_state;
+ gsw_update_exit_code_t exit_code;
+}gsw_update_info_s;
+
+typedef struct
+{
+ gsw_update_state_t update_state;
+ uint8_t is_damaged; //TURE: damaged FALSE:no damaged
+ uint8_t damaged_partname[16];
+}gsw_system_status_s;
+
+typedef int32_t (*gsw_update_modem_start_autobackup)(char* file_path);
+typedef bool (*gsw_update_modem_check_condition)(void);
+typedef E_GSW_OTA_RET (*gsw_update_modem_result_query)(void);
+typedef int32_t (*gsw_update_modem_start_nobackup)(char* file_path);
+typedef E_GSW_OTA_SYSTEM (*gsw_update_modem_get_system)(void);
+typedef int32_t (*gsw_update_modem_cancel)(void);
+typedef int32_t (*gsw_update_modem_get_info)(gsw_update_info_s *update_info);
+typedef int32_t (*gsw_update_modem_get_status)(gsw_system_status_s *system_status);
+typedef int32_t (*gsw_update_modem_sync)(void);
+typedef int32_t (*gsw_update_modem_switch)(void);
+
+gsw_update_modem_start_autobackup gsw_update_modem_start_autobackup_ptr = NULL;
+
+static void *ota_handle = NULL;
+
+st_api_test_case api_testcases[] =
+{
+ {0, "print_help"},
+ {1, "gsw_update_modem_start_autobackup"},
+ {2, "gsw_update_modem_check_condition"},
+ {3, "gsw_update_modem_result_query"},
+ {4, "gsw_update_modem_get_system"},
+ {5, "gsw_update_modem_get_info"},
+ {6, "gsw_update_modem_get_status"},
+ {7, "gsw_update_modem_sync"},
+ {8, "gsw_update_modem_switch"},
+ {9, "gsw_update_modem_start_nobackup"},
+ {10, "gsw_update_modem_cancel"},
+ {-1, NULL}
+
+};
+
+void print_help(void)
+{
+ int i;
+
+ printf("Supported test cases:\n");
+ for(i = 0; ; i++)
+ {
+ if(api_testcases[i].cmdIdx == -1)
+ {
+ break;
+ }
+ printf("%d:\t%s\n", api_testcases[i].cmdIdx, api_testcases[i].funcName);
+ }
+}
+
+void *fota_thread(void *arg)
+{
+ char *file_path = (char *)arg;
+ int ret = -1;
+ ret = gsw_update_modem_start_autobackup_ptr(file_path);
+ printf("gsw_update_modem_start_autobackup ret = %d\n", ret);
+ return NULL;
+}
+
+void sigint_handler(int sig)
+{
+ printf("sigint_handler\n");
+ dlclose(ota_handle);
+ ota_handle = NULL;
+ gsw_update_modem_start_autobackup_ptr = NULL;
+ exit(0);
+}
+void clear_input_buffer()
+{
+ int c;
+
+ while ((c = getchar()) != '\n' && c != EOF);
+}
+
+int main(int argc,char *argv[])
+{
+ gsw_update_modem_check_condition gsw_update_modem_check_condition_ptr = NULL;
+ gsw_update_modem_result_query gsw_update_modem_result_query_ptr = NULL;
+ gsw_update_modem_get_system gsw_update_modem_get_system_ptr = NULL;
+ gsw_update_modem_get_info gsw_update_modem_get_info_ptr = NULL;
+ gsw_update_modem_get_status gsw_update_modem_get_status_ptr = NULL;
+ gsw_update_modem_sync gsw_update_modem_sync_ptr = NULL;
+ gsw_update_modem_switch gsw_update_modem_switch_ptr = NULL;
+ gsw_update_modem_start_nobackup gsw_update_modem_start_nobackup_ptr = NULL;
+ gsw_update_modem_cancel gsw_update_modem_cancel_ptr = NULL;
+
+ signal(SIGINT, sigint_handler);
+ if (argc < 2)
+ {
+ printf("Usage: %s <file_path>\n", argv[0]);
+ return -1; // 确保提供了文件路径
+ }
+ char *file_path = argv[1];
+ ota_handle = dlopen("/lib/libgsw_lib.so", RTLD_NOW );
+ if(ota_handle == NULL)
+ {
+ printf("open lib failed\n");
+ return -1;
+ }
+
+ gsw_update_modem_start_autobackup_ptr = (gsw_update_modem_start_autobackup)dlsym(ota_handle, "gsw_update_modem_start_autobackup");
+ if(gsw_update_modem_start_autobackup_ptr == NULL)
+ {
+ printf("dlsym gsw_update_modem_start_autobackup failed\n");
+ return -1;
+ }
+
+ gsw_update_modem_check_condition_ptr = (gsw_update_modem_check_condition)dlsym(ota_handle, "gsw_update_modem_check_condition");
+ if(gsw_update_modem_check_condition_ptr == NULL)
+ {
+ printf("dlsym gsw_update_modem_check_condition failed\n");
+ return -1;
+ }
+
+ gsw_update_modem_result_query_ptr = (gsw_update_modem_result_query)dlsym(ota_handle, "gsw_update_modem_result_query");
+ if(gsw_update_modem_result_query_ptr == NULL)
+ {
+ printf("dlsym gsw_update_modem_result_query failed\n");
+ return -1;
+ }
+
+ gsw_update_modem_get_system_ptr = (gsw_update_modem_get_system)dlsym(ota_handle, "gsw_update_modem_get_system");
+ if(gsw_update_modem_get_system_ptr == NULL)
+ {
+ printf("dlsym gsw_update_modem_get_system failed\n");
+ return -1;
+ }
+
+ gsw_update_modem_get_info_ptr = (gsw_update_modem_get_info)dlsym(ota_handle, "gsw_update_modem_get_info");
+ if(gsw_update_modem_get_info_ptr == NULL)
+ {
+ printf("dlsym gsw_update_modem_get_info failed\n");
+ return -1;
+ }
+
+ gsw_update_modem_get_status_ptr = (gsw_update_modem_get_status)dlsym(ota_handle, "gsw_update_modem_get_status");
+ if(gsw_update_modem_get_status_ptr == NULL)
+ {
+ printf("dlsym gsw_update_modem_get_status failed\n");
+ return -1;
+ }
+
+ gsw_update_modem_sync_ptr = (gsw_update_modem_sync)dlsym(ota_handle, "gsw_update_modem_sync");
+ if(gsw_update_modem_sync_ptr == NULL)
+ {
+ printf("dlsym gsw_update_modem_sync failed\n");
+ return -1;
+ }
+
+ gsw_update_modem_switch_ptr = (gsw_update_modem_switch)dlsym(ota_handle, "gsw_update_modem_switch");
+ if(gsw_update_modem_switch_ptr == NULL)
+ {
+ printf("dlsym gsw_update_modem_switch failed\n");
+ return -1;
+ }
+
+ gsw_update_modem_start_nobackup_ptr = (gsw_update_modem_start_nobackup)dlsym(ota_handle, "gsw_update_modem_start_nobackup");
+ if(gsw_update_modem_start_nobackup_ptr == NULL)
+ {
+ printf("dlsym gsw_update_modem_start_nobackup failed\n");
+ return -1;
+ }
+
+ gsw_update_modem_cancel_ptr = (gsw_update_modem_cancel)dlsym(ota_handle, "gsw_update_modem_cancel");
+ if(gsw_update_modem_cancel_ptr == NULL)
+ {
+ printf("dlsym gsw_update_modem_cancel failed\n");
+ return -1;
+ }
+
+
+
+ printf("Enter ota api test \n");
+ int opt = -1;
+ print_help();
+ while (1)
+ {
+ char buffer[100]; // 用于存储输入的缓冲区
+
+ printf("请输入选项: \n");
+ if (fgets(buffer, sizeof(buffer), stdin) != NULL)
+ {
+
+ if (sscanf(buffer, "%d", &opt) != 1)
+ {
+ printf("无效输入,请输入一个整数。\n");
+ clear_input_buffer();
+ continue;
+ }
+ }
+ else
+ {
+
+ clear_input_buffer();
+ continue;
+ }
+
+ printf("输入的整数是:%d\n", opt);
+
+ switch(opt)
+ {
+ case 0 :
+ {
+ print_help();
+ break;
+ }
+ case 1 :
+ {
+ int32_t ret = -1;
+ pthread_t thread_id_reboot;
+ ret = pthread_create(&thread_id_reboot, NULL, fota_thread, (void*)file_path);
+ if (ret != 0)
+ {
+ printf("pthread_create failed \n");
+ return -1;
+ }
+ break;
+
+ }
+ case 2 :
+ {
+ bool ret = false;
+ ret = gsw_update_modem_check_condition_ptr();
+ printf("gsw_update_modem_check_condition ret = %d\n", ret);
+ break;
+ }
+ case 3 :
+ {
+ E_GSW_OTA_RET ret = -1;
+ ret = gsw_update_modem_result_query_ptr();
+ printf("gsw_update_modem_result_query ret = %d\n", ret);
+ break;
+ }
+ case 4 :
+ {
+ E_GSW_OTA_SYSTEM ret = -1;
+ ret = gsw_update_modem_get_system_ptr();
+ printf("gsw_update_modem_get_system ret = %d\n", ret);
+ printf("system %c\n", ret == 0? 'a' : 'b');
+
+ break;
+ }
+ case 5 :
+ {
+ int32_t ret = -1;
+ gsw_update_info_s update_info = {0};
+ ret = gsw_update_modem_get_info_ptr(&update_info);
+ printf("gsw_update_modem_get_info ret = %d\n", ret);
+
+ printf("update_info. = %u\n",update_info.percentage);
+ printf("update_state. = %d\n",update_info.update_state);
+ printf("exit_code. = %d\n",update_info.exit_code);
+
+ break;
+ }
+ case 6:
+ {
+ int32_t ret = -1;
+ gsw_system_status_s system_status = {0};
+ ret = gsw_update_modem_get_status_ptr(&system_status);
+ printf("gsw_update_modem_get_status ret is %d\n",ret);
+ break;
+
+ }
+ case 7:
+ {
+ int32_t ret = -1;
+ ret = gsw_update_modem_sync_ptr();
+ printf("gsw_update_modem_sync ret is %d\n",ret );
+ break;
+ }
+ case 8 :
+ {
+ int32_t ret = -1;
+ ret = gsw_update_modem_switch_ptr();
+ printf("gsw_update_modem_switch ret is %d \n",ret);
+ break;
+
+ }
+ case 9:
+ {
+ int32_t ret = -1;
+ ret = gsw_update_modem_start_nobackup_ptr(file_path);
+ printf("gsw_update_modem_start_nobackup ret is %d\n",ret);
+ break;
+ }
+ case 10:
+ {
+ int32_t ret = -1;
+ ret = gsw_update_modem_cancel_ptr();
+ printf("gsw_update_modem_cancel ret is %d\n",ret);
+ break;
+ }
+ default:
+ printf("invalid opt\n");
+ break;
+ }
+
+ }
+
+
+ return 0;
+
+
+}
+
diff --git a/mbtk/test/libgsw_lib/gsw_passwd_test.c b/mbtk/test/libgsw_lib/gsw_passwd_test.c
new file mode 100755
index 0000000..4bc0779
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_passwd_test.c
@@ -0,0 +1,59 @@
+#include <stdio.h>
+#include <string.h>
+#include <strings.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <pthread.h>
+#include <termios.h>
+#include <time.h>
+#include <sys/ioctl.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <stdbool.h>
+
+
+int (*gsw_set_passwd)(char *username, char *passwd);
+void *dlHandle;
+char *lynqLib = "/lib/libgsw_lib.so";
+
+int main(int argc, char *argv[])
+{
+ int ret;
+ char tmp1[128];
+ char tmp2[128];
+ if(argc != 3)
+ {
+ printf("parameter error,please input username and passwd\n");
+ return -1;
+ }
+ strcpy(tmp1, argv[1]);
+ strcpy(tmp2, argv[2]);
+ printf("username is %s, passwd is %s\n",tmp1, tmp2);
+ dlHandle = dlopen(lynqLib, RTLD_NOW);
+ if(dlHandle == NULL)
+ {
+ printf("dlopen libgsw_lib fail\n");
+ return -1;
+ }
+ gsw_set_passwd=(int(*)(char *username, char *passwd))dlsym(dlHandle, "gsw_set_passwd");
+ if(dlHandle == NULL)
+ {
+ printf("dlsym gsw_set_passwd fail\n");
+ return -1;
+ }
+ ret = gsw_set_passwd(tmp1, tmp2);
+ if(ret)
+ {
+ printf("gsw_set_passwd fail\n");
+ }
+ else
+ {
+ printf("gsw_set_passwd successful\n");
+ }
+
+ return 0;
+}
diff --git a/mbtk/test/libgsw_lib/gsw_pm_test.c b/mbtk/test/libgsw_lib/gsw_pm_test.c
new file mode 100755
index 0000000..933cf9e
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_pm_test.c
@@ -0,0 +1,132 @@
+#include <stdio.h>
+#include <string.h>
+#include <strings.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <pthread.h>
+#include <termios.h>
+#include <time.h>
+#include <sys/ioctl.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <stdbool.h>
+
+typedef void (*GSW_PM_WAKEUPCALLBACK)(int32_t wakeup_in);
+
+void tmp_callback(int32_t wakeup_in)
+{
+ printf("wackout value %d\n",wakeup_in);
+}
+
+int32_t (*gsw_autosleep_enable)(void);
+int32_t (*gsw_autosleep_disenable)(void);
+int32_t (*gsw_pm_sdk_init)(GSW_PM_WAKEUPCALLBACK );
+int32_t (*gsw_pm_enter_sleep)(const char *gsw_wakelock_name);
+int32_t (*gsw_pm_exit_sleep)(const char *gsw_wakelock_name);
+void (*gsw_modem_log_sync)(void);
+
+const char *tmp_name = "pm_test_lock";
+
+void *dlHandle_pm;
+char *lynqLib_pm = "/lib/libgsw_lib.so";
+
+void user_help(void)
+{
+ printf("\t1 autosleep_enable\n"
+ "\t2 autosleep_disenable \n"
+ "\t3 pm_sdk_init\n"
+ "\t4 pm_enter_sleep\n"
+ "\t5 pm_exit_sleep\n"
+ "\t6 modem_log_sync\n"
+ "please input operator: >> ");
+}
+
+int main(void)
+{
+ int ret;
+ int opt = 0;
+ dlHandle_pm = dlopen(lynqLib_pm, RTLD_NOW);
+ while(1)
+ {
+ printf("=========PM main=========\n");
+ user_help();
+ if (scanf("%d", &opt) != 1)
+ printf("input error,please check it");
+ while(getchar()!='\n');
+ switch (opt)
+ {
+ case 1:
+ {
+ gsw_autosleep_enable=(int32_t(*)())dlsym(dlHandle_pm, "gsw_autosleep_enable");
+ ret = gsw_autosleep_enable();
+ if(ret < 0)
+ {
+ printf("gsw_autosleep_enable FAIL.\n");
+ return -1;
+ }
+ printf("gsw_autosleep_enable success.\n");
+ return 0;
+ }
+ case 2:
+ {
+ gsw_autosleep_disenable=(int32_t(*)())dlsym(dlHandle_pm, "gsw_autosleep_disenable");
+ ret = gsw_autosleep_disenable();
+ if(ret < 0)
+ {
+ printf("gsw_autosleep_disenable FAIL.\n");
+ return -1;
+ }
+ printf("gsw_autosleep_disenable success.\n");
+ return 0;
+ }
+ case 3:
+ {
+ gsw_pm_sdk_init=(int32_t(*)(GSW_PM_WAKEUPCALLBACK ))dlsym(dlHandle_pm, "gsw_pm_sdk_init");
+ ret = gsw_pm_sdk_init(tmp_callback);
+ if(ret < 0)
+ {
+ printf("gsw_pm_sdk_init FAIL.\n");
+ return -1;
+ }
+ printf("gsw_pm_sdk_init success.\n");
+ break;
+ }
+ case 4:
+ {
+ gsw_pm_enter_sleep=(int32_t(*)(const char *gsw_wakelock_name))dlsym(dlHandle_pm, "gsw_pm_enter_sleep");
+ ret = gsw_pm_enter_sleep(tmp_name);
+ if(ret < 0)
+ {
+ printf("gsw_pm_enter_sleep FAIL.\n");
+ return -1;
+ }
+ printf("gsw_pm_enter_sleep success.\n");
+ return 0;
+ }
+ case 5:
+ {
+ gsw_pm_exit_sleep=(int32_t(*)(const char *gsw_wakelock_name))dlsym(dlHandle_pm, "gsw_pm_exit_sleep");
+ ret = gsw_pm_exit_sleep(tmp_name);
+ if(ret < 0)
+ {
+ printf("gsw_pm_exit_sleep FAIL.\n");
+ return -1;
+ }
+ printf("gsw_pm_exit_sleep success.\n");
+ break;
+ }
+ case 6:
+ {
+ gsw_modem_log_sync=(void(*)())dlsym(dlHandle_pm, "gsw_modem_log_sync");
+ gsw_modem_log_sync();
+ printf("gsw_modem_log_sync success.\n");
+ return 0;
+ }
+ }
+ }
+ return 0;
+}
\ No newline at end of file
diff --git a/mbtk/test/libgsw_lib/gsw_sim_test.c b/mbtk/test/libgsw_lib/gsw_sim_test.c
new file mode 100755
index 0000000..6ba8288
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_sim_test.c
@@ -0,0 +1,372 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdbool.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <string.h>
+#include <pthread.h>
+
+//mbtk include
+
+typedef unsigned int uint32;
+typedef unsigned char uint8;
+typedef unsigned short uint16;
+typedef void (*mbtk_info_callback_func)(const void* data, int data_len);
+
+typedef struct
+{
+ int client_fd;
+ pthread_t read_thread_id;
+ int exit_fd[2];
+ bool is_waitting;
+ pthread_cond_t cond;
+ pthread_mutex_t mutex;
+
+ pthread_mutex_t send_mutex;
+
+ // Temp response data.
+ uint16 info_err;
+ uint16 data_len;
+ void *data;
+
+ //mbtk wyq for server_ready_status add start
+ char server_ready_status;
+ //mbtk wyq for server_ready_status add end
+
+ mbtk_info_callback_func net_state_cb;
+ mbtk_info_callback_func call_state_cb;
+ mbtk_info_callback_func sms_state_cb;
+ mbtk_info_callback_func radio_state_cb;
+ mbtk_info_callback_func sim_state_cb;
+ mbtk_info_callback_func pdp_state_cb;
+ //add signal by xr
+ mbtk_info_callback_func signal_state_cb;
+} mbtk_info_handle_t;
+
+typedef enum {
+ MBTK_SIM_ABSENT = 0,
+ MBTK_SIM_NOT_READY = 1,
+ MBTK_SIM_READY = 2,
+ MBTK_SIM_PIN = 3,
+ MBTK_SIM_PUK = 4,
+ MBTK_SIM_NETWORK_PERSONALIZATION = 5
+} mbtk_sim_state_enum;
+
+typedef enum
+{
+ MBTK_DEV_MODEM_MIN_FUN, //Modem 最小功能
+ MBTK_DEV_MODEM_FULL_FUN, //Modem 全功能
+ MBTK_DEV_MODEM_DISABLE_RECEIVE_RF_CIRCUITS = 3, //Modem 禁用射频接收电路
+ MBTK_DEV_MODEM_DISABLE_TRANSMIT_AND_RECEIVE_RF_CIRCUITS, //Modem禁用射频发射和接收电路
+ MBTK_DEV_MODEM_DISABLE_SIM, //Modem 禁用(U)SIM 卡
+ MBTK_DEV_MODEM_TURN_OFF_FULL_SECONDARY_RECEIVE, //Modem 完全禁用辅助接收
+}MBTK_DEV_MODEM_FUNCTION;
+
+typedef struct
+{
+ MBTK_DEV_MODEM_FUNCTION fun;
+ int rst;
+} mbtk_modem_info_t;
+
+
+
+
+//gsw include
+#define GSW_HAL_SUCCESS 0
+#define GSW_HAL_FAIL -1
+#define GSW_HAL_MEM_INVAILD -2
+#define GSW_SIM_ICCID_LENGTH 20+1
+#define GSW_SIM_IMSI_LENGTH 20+1
+#define GSW_SIM_MSISDN_LENGTH 20+1
+#define GSW_SIM_IMEI_LENGTH 20+1
+
+typedef enum sim_status
+{
+ SIM_STATUS_ABSENT = 0, /**< sim absent*/
+ SIM_STATUS_PRESENT = 1, /**< sim present mtk as ready*/
+ SIM_STATUS_ERROR = 2, /**< sim error*/
+ SIM_STATUS_READY = 3, /**< sim state ready mtk no this value*/
+ SIM_STATUS_PIN = 4, /**< pinlock status*/
+} sim_status_e_type;
+
+
+int (*gsw_sim_sdk_init)(int32_t token);
+int (*gsw_sim_sdk_deinit)(void);
+int (*gsw_get_sim_status)(int32_t *sim_state);
+int (*gsw_get_sim_iccid)(int32_t len, int8_t *iccid);
+int (*gsw_get_sim_imsi)(int32_t len, int8_t *imsi);
+int (*gsw_get_sim_msisdn)(int32_t len, int8_t *msisdn);
+int (*gsw_get_imei)(int32_t len, int8_t *imei);
+int (*gsw_set_sim_power_down)(void);
+int (*gsw_set_sim_power_up)(void);
+int (*gsw_reset_modem)(void);
+
+
+#define lib_gsw_sim_path "/lib/libgsw_lib.so"
+static void *dlHandle_sim = NULL;
+
+
+static int gsw_sim_api_import()
+{
+ dlHandle_sim = dlopen(lib_gsw_sim_path, RTLD_NOW);
+ if (dlHandle_sim == NULL) {
+ printf("dlopen gsw_sim_sdk_init fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ gsw_sim_sdk_init = (int(*)(int32_t token))dlsym(dlHandle_sim, "gsw_sim_sdk_init");
+ if (gsw_sim_sdk_init == NULL) {
+ printf("dlsym gsw_sim_sdk_init fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ gsw_sim_sdk_deinit = (int(*)(void))dlsym(dlHandle_sim, "gsw_sim_sdk_deinit");
+ if (gsw_sim_sdk_deinit == NULL) {
+ printf("dlsym gsw_sim_sdk_deinit fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ gsw_get_sim_status = (int(*)(int32_t *sim_state))dlsym(dlHandle_sim, "gsw_get_sim_status");
+ if (gsw_get_sim_status == NULL) {
+ printf("dlsym gsw_get_sim_status fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ gsw_get_sim_iccid = (int(*)(int32_t len, int8_t *iccid))dlsym(dlHandle_sim, "gsw_get_sim_iccid");
+ if (gsw_get_sim_iccid == NULL) {
+ printf("dlsym gsw_get_sim_iccid fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ gsw_get_sim_imsi = (int(*)(int32_t len, int8_t *imsi))dlsym(dlHandle_sim, "gsw_get_sim_imsi");
+ if (gsw_get_sim_imsi == NULL) {
+ printf("dlsym gsw_get_sim_imsi fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ gsw_get_sim_msisdn = (int(*)(int32_t len, int8_t *msisdn))dlsym(dlHandle_sim,"gsw_get_sim_msisdn");
+ if (gsw_get_sim_msisdn == NULL) {
+ printf("dlsym gsw_get_sim_msisdn fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ gsw_get_imei = (int(*)(int32_t len, int8_t *imei))dlsym(dlHandle_sim,"gsw_get_imei");
+ if (gsw_get_imei == NULL) {
+ printf("dlsym gsw_get_imei fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ gsw_set_sim_power_down = (int(*)(void))dlsym(dlHandle_sim,"gsw_set_sim_power_down");
+ if (gsw_set_sim_power_down == NULL) {
+ printf("dlsym gsw_set_sim_power_down fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ gsw_set_sim_power_up = (int(*)(void))dlsym(dlHandle_sim,"gsw_set_sim_power_up");
+ if (gsw_set_sim_power_up == NULL) {
+ printf("dlsym gsw_set_sim_power_up fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ gsw_reset_modem = (int(*)(void))dlsym(dlHandle_sim,"gsw_reset_modem");
+ if (gsw_reset_modem == NULL) {
+ printf("dlsym gsw_reset_modem fail\n");
+ return GSW_HAL_FAIL;
+ }
+
+ return GSW_HAL_SUCCESS;
+}
+
+
+
+int main()
+{
+ char operator[10];
+ int opt;
+ int ret = -1;
+
+ gsw_sim_api_import();
+
+ while(1)
+ {
+ printf("-1.exit\n");
+ printf("1.sim init\n");
+ printf("2.sim deinit\n");
+ printf("3.imsi : Get IMSI.\n");
+ printf("4.iccid : Get ICCID.\n");
+ printf("5.msisdn : Get phone number.\n");
+ printf("6.sim states\n");
+ printf("7.sim power_down\n");
+ printf("8.sim power_up\n");
+ printf("9.reset modem\n");
+ printf(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>Enter cmd:");
+
+ char* temp = NULL;
+ memset(operator, 0, sizeof(operator));
+ temp = fgets(operator, sizeof(operator), stdin);
+ fflush(stdin);
+
+ printf("temp = %s",temp);
+ opt = atoi(operator);
+ switch(opt)
+ {
+ case -1:
+ {
+ printf("exit\n");
+ return 0;
+ }
+ //gsw_sim_sdk_init
+ case 1:
+ {
+ printf("sdk_init\n");
+ ret = gsw_sim_sdk_init(123);
+ if(ret == 0)
+ {
+ printf("gsw_sim_sdk_init success\n");
+ }
+ else
+ {
+ printf("gsw_sim_sdk_init fail,ret = %d\n",ret);
+ }
+ break;
+ }
+
+ //sim deinit
+ case 2:
+ {
+ printf("sim deinit\n");
+ ret = gsw_sim_sdk_deinit();
+ if(ret == 0)
+ {
+ printf("gsw_sim_sdk_deinit success\n");
+ }
+ else
+ {
+ printf("gsw_sim_sdk_deinit fail,ret = %d\n",ret);
+ }
+ break;
+ }
+
+ //imsi
+ case 3:
+ {
+ char imsi[GSW_SIM_IMEI_LENGTH] = {0};
+ ret = gsw_get_sim_imsi(GSW_SIM_IMEI_LENGTH, (int8_t *)imsi);
+ if(ret == 0)
+ {
+ printf("gsw_get_sim_imsi success, imsi = %s\n",imsi);
+ }
+ else
+ {
+ printf("gsw_get_sim_imsi fail,ret = %d\n",ret);
+ }
+ break;
+ }
+
+ //iccid
+ case 4:
+ {
+ char iccid[GSW_SIM_ICCID_LENGTH] = {0};
+ ret = gsw_get_sim_iccid(GSW_SIM_ICCID_LENGTH, (int8_t *)iccid);
+ if(ret == 0)
+ {
+ printf("gsw_get_sim_iccid success, iccid = %s\n",iccid);
+ }
+ else
+ {
+ printf("gsw_get_sim_iccid fail,ret = %d\n",ret);
+ }
+ break;
+ }
+
+ //msisdn
+ case 5:
+ {
+ char msisdn[GSW_SIM_MSISDN_LENGTH] = {0};
+ ret = gsw_get_sim_msisdn(GSW_SIM_MSISDN_LENGTH, (int8_t *)msisdn);
+ if(ret == 0)
+ {
+ printf("gsw_get_sim_msisdn success, msisdn = %s\n",msisdn);
+ }
+ else
+ {
+ printf("gsw_get_sim_msisdn fail,ret = %d\n",ret);
+ }
+ break;
+ }
+ //sim states
+ case 6:
+ {
+ int sim_state;
+ printf("start gsw_get_sim_status\n");
+ ret = gsw_get_sim_status(&sim_state);
+ printf("end gsw_get_sim_status\n");
+ if(ret == 0)
+ {
+ printf("gsw_get_sim_status success,sim_state = %d\n",sim_state);
+ }
+ else
+ {
+ printf("gsw_get_sim_status fail,ret = %d\n",ret);
+ }
+ break;
+ }
+
+ //sim power_down
+ case 7:
+ {
+ ret = gsw_set_sim_power_down();
+ if(ret == 0)
+ {
+ printf("gsw_set_sim_power_down success\n");
+ }
+ else
+ {
+ printf("gsw_set_sim_power_down fail,ret = %d\n",ret);
+ }
+ break;
+ }
+
+ //sim power_up
+ case 8:
+ {
+ ret = gsw_set_sim_power_up();
+ if(ret == 0)
+ {
+ printf("gsw_set_sim_power_up success\n");
+ }
+ else
+ {
+ printf("gsw_set_sim_power_up fail,ret = %d\n",ret);
+ }
+ break;
+ }
+
+ //reset modem
+ case 9:
+ {
+ ret = gsw_reset_modem();
+ if(ret == 0)
+ {
+ printf("gsw_reset_modem success\n");
+ }
+ else
+ {
+ printf("gsw_reset_modem fail,ret = %d\n",ret);
+ }
+ break;
+ }
+
+ default :
+ {
+ printf("error cmd.\n");
+ continue;
+ }
+
+ }
+ }
+
+
+
+
+}
diff --git a/mbtk/test/libgsw_lib/gsw_sms_test.c b/mbtk/test/libgsw_lib/gsw_sms_test.c
new file mode 100755
index 0000000..7678208
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_sms_test.c
@@ -0,0 +1,308 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdbool.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <string.h>
+
+
+#define GSW_SMS_SEND_NUM_MAX 5 /**< dest num max count */
+#define GSW_SMS_ADDRESS_LEN 32 /**< one dest number max length*/
+#define GSW_SMS_CONCAT_SMS_COUNT_MAX 160 /**< one page max bytes*/
+#define GSW_SMS_MSG_CONTENT_LEN_MAX 3 /**< sms page max count*/
+#define GSW_SMS_CONTENT_LEN_MAX 3 /**< newmsg recv one page*/
+#define GSW_SMS_SEND_CONT_MAX (GSW_SMS_MSG_CONTENT_LEN_MAX*GSW_SMS_CONCAT_SMS_COUNT_MAX*2) /**< sms send max len*/
+#define GSW_SMS_RECV_CONT_MAX 1440 /**< sms receive max len*/
+
+#define GSW_HAL_SMS_ADDRESS_LEN GSW_SMS_ADDRESS_LEN
+#define GSW_HAL_SMS_RECV_CONT_MAX GSW_SMS_RECV_CONT_MAX
+
+typedef unsigned short uint16_t;
+typedef unsigned int uint32_t;
+typedef unsigned short uint16;
+typedef uint32_t sms_client_handle_type;
+
+typedef enum
+{
+ GSW_SMS_FULL_FLG, /**< sms full flag*/
+ GSW_SMS_RECEIVED_FLG, /**<recv new sms flag*/
+}gsw_sms_state_e;
+
+typedef enum
+{
+ SMS_FORMAT_GSM_7BIT = 0, /**< 7bit econde*/
+ SMS_FORMAT_BINARY_DATA = 1, /**< 8bit binary encode*/
+ SMS_FORMAT_UCS2 = 2, /**< ucs2 encode*/
+}gsw_sms_format_e;
+
+typedef struct gsw_hal_sms_date
+{
+ unsigned char year[5]; /**< year of date*/
+ unsigned char month[3]; /**< month of date*/
+ unsigned char day[3]; /**< day of date*/
+ unsigned char hour[3]; /**< hour of time*/
+ unsigned char minutes[3]; /**< minute of time*/
+ unsigned char seconds[3]; /**< second of time*/
+ unsigned char timezone[4]; /**< timezone*/
+} gsw_sms_date_t;
+
+typedef struct gsw_hal_sms_msg_type
+{
+ char src_num[GSW_SMS_ADDRESS_LEN+1]; /**< sms phone num send msg*/
+ char dest_num[GSW_SMS_ADDRESS_LEN + 1]; /**< sms phone num recv msg*/
+ gsw_sms_format_e content_encode; /**< sms content is 7bit or 8bit or Ucs2 encode*/
+ unsigned int content_len; /**< sms content size*/
+ char content[GSW_SMS_RECV_CONT_MAX + 1]; /**< sms content*/
+ gsw_sms_date_t date; /**< message time*/
+} gsw_sms_msg_type_t;
+
+typedef void (* GSW_HAL_SMS_CALLBACK_FUN)(gsw_sms_state_e state, gsw_sms_msg_type_t *report_info);
+
+
+int (*gsw_sms_reg_callback)(GSW_HAL_SMS_CALLBACK_FUN handle_ptr);
+int (*gsw_sms_sdk_init)(int32_t token);
+int (*gsw_sms_sdk_deinit)(void);
+int (*gsw_send_sms)(int8_t *phone_num, int32_t char_set, int8_t *msg, int32_t msg_len);
+int (*gsw_get_smsc_address)(int32_t len, int8_t *smsc);
+int (*gsw_set_smsc_address)(const int8_t *smsc);
+
+#define lib_gsw_sms_path "/lib/libgsw_lib.so"
+static void *dlHandle_sms;
+
+
+void gsw_test_callback(gsw_sms_state_e state, gsw_sms_msg_type_t *report_info)
+{
+ printf("gsw_test_callback: state = %d\n", state);
+ printf("gsw_test_callback: report_info->src_num = %s\n", report_info->src_num);
+ printf("gsw_test_callback: report_info->dest_num = %s\n", report_info->dest_num);
+ printf("gsw_test_callback: report_info->content_encode = %d\n", report_info->content_encode);
+ printf("gsw_test_callback: report_info->content_len = %d\n", report_info->content_len);
+ printf("gsw_test_callback: report_info->content = %s\n", report_info->content);
+ printf("gsw_test_callback: report_info->date->year = %s\n", report_info->date.year);
+ printf("gsw_test_callback: report_info->date->month = %s\n", report_info->date.month);
+ printf("gsw_test_callback: report_info->date->day = %s\n", report_info->date.day);
+ printf("gsw_test_callback: report_info->date->hour = %s\n", report_info->date.hour);
+ printf("gsw_test_callback: report_info->date->minutes = %s\n", report_info->date.minutes);
+ printf("gsw_test_callback: report_info->date->seconds = %s\n", report_info->date.seconds);
+ printf("gsw_test_callback: report_info->date->timezone = %s\n", report_info->date.timezone);
+}
+
+
+static int gsw_sms_api_import()
+{
+ dlHandle_sms = dlopen(lib_gsw_sms_path, RTLD_NOW);
+ if (dlHandle_sms == NULL) {
+ printf("Failed to open %s\n", lib_gsw_sms_path);
+ return -1;
+ }
+
+ gsw_sms_sdk_init = (int(*)(int32_t token))dlsym(dlHandle_sms,"gsw_sms_sdk_init");
+ if(gsw_sms_sdk_init == NULL)
+ {
+ printf("gsw_sms_sdk_init fail\n");
+ return -1;
+ }
+
+ gsw_sms_reg_callback = (int(*)(GSW_HAL_SMS_CALLBACK_FUN handle_ptr))dlsym(dlHandle_sms,"gsw_sms_reg_callback");
+ if(gsw_sms_reg_callback == NULL)
+ {
+ printf("gsw_sms_reg_callback fail\n");
+ return -1;
+ }
+
+ gsw_send_sms = (int(*)(int8_t *phone_num, int32_t char_set, int8_t *msg, int32_t msg_len))dlsym(dlHandle_sms,"gsw_send_sms");
+ if(gsw_send_sms == NULL)
+ {
+ printf("gsw_send_sms fail\n");
+ return -1;
+ }
+
+ gsw_get_smsc_address = (int(*)(int32_t len, int8_t *smsc))dlsym(dlHandle_sms,"gsw_get_smsc_address");
+ if(gsw_get_smsc_address == NULL)
+ {
+ printf("gsw_get_smsc_address fail\n");
+ return -1;
+ }
+
+ gsw_set_smsc_address = (int(*)(const int8_t *smsc))dlsym(dlHandle_sms,"gsw_set_smsc_address");
+ if(gsw_set_smsc_address == NULL)
+ {
+ printf("gsw_set_smsc_address fail\n");
+ return -1;
+ }
+
+ gsw_sms_sdk_deinit = (int(*)(void))dlsym(dlHandle_sms,"gsw_sms_sdk_deinit");
+ if(gsw_sms_sdk_deinit == NULL)
+ {
+ printf("gsw_sms_sdk_deinit fail\n");
+ return -1;
+ }
+
+ return 0;
+}
+
+int main()
+{
+ int ret = -1;
+ int opt = -1;
+ char operator[10];
+ char phone_number[GSW_HAL_SMS_ADDRESS_LEN] = {0};
+ char serv_numer[GSW_HAL_SMS_ADDRESS_LEN] = {0};
+
+ ret = gsw_sms_api_import();
+ if(ret != 0)
+ {
+ printf("gsw_sms_api_import fail\n");
+ return -1;
+ }
+
+ while(1)
+ {
+ printf("=========sms main=========\n"
+ "\t-1 exit\n"
+ "\t1 sms init\n"
+ "\t2 send text sms\n"
+ "\t3 wait receive new sms\n"
+ "\t4 send PDU sms\n"
+ "\t7 query service number\n"
+ "\t8 set service number\n"
+ "\t9 deinit sms\n"
+ "operator: >> \n");
+
+ opt = -1;
+ ret = -1;
+ printf("%s\n",fgets(operator, sizeof(operator), stdin));
+ fflush(stdin);
+ opt = atoi(operator);
+ switch (opt)
+ {
+ case -1:
+ {
+ printf("main exit\n");
+ return 0;
+ }
+ case 1:
+ {
+ printf("gsw_sms_sdk_init start");
+ ret = gsw_sms_sdk_init(1234);
+ if(ret != 0)
+ {
+ printf("gsw_sms_sdk_init fail,ret = %d\n",ret);
+ dlclose(dlHandle_sms);
+ continue;
+ }
+
+ break;
+ }
+ case 2:
+ {
+ char *tmp = "all man hello world";
+ printf("input phone number:\n");
+ memset(phone_number, 0x0, GSW_HAL_SMS_ADDRESS_LEN);
+ //fgets(phone_number, MAX_LEN, stdin);
+ printf("%d\n",scanf("%15s", phone_number));
+ fflush(stdin);
+ int len = strlen(tmp);
+ ret = gsw_send_sms((int8_t*)phone_number, 0, (int8_t*)tmp, len);
+ if(ret != 0)
+ {
+ printf("gsw_send_sms fail,ret = %d\n",ret);
+ continue;
+ }
+ break;
+ }
+
+ case 3:
+ {
+ printf("gsw_sms_reg_callback start\n");
+ ret = gsw_sms_reg_callback(gsw_test_callback);
+ if(ret != 0)
+ {
+ printf("gsw_sms_reg_callback fail,ret = %d\n",ret);
+ continue;
+ }
+ printf("gsw_sms_reg_callback end");
+ break;
+ }
+
+ case 4:
+ {
+ char *tmp = "你好";
+ printf("input phone number:\n");
+ memset(phone_number, 0x0, GSW_HAL_SMS_ADDRESS_LEN);
+ //fgets(phone_number, MAX_LEN, stdin);
+ printf("%d\n",scanf("%15s", phone_number));
+ fflush(stdin);
+ int len = strlen(tmp);
+ ret = gsw_send_sms((int8_t*)phone_number, 2, (int8_t *)tmp, len);
+ if(ret != 0)
+ {
+ printf("gsw_send_sms fail,ret = %d\n",ret);
+ continue;
+ }
+ break;
+ }
+
+ case 7:
+ {
+ printf("gsw_get_smsc_address start\n");
+ ret = gsw_get_smsc_address(GSW_HAL_SMS_ADDRESS_LEN, (int8_t *)serv_numer);
+ if(ret != 0)
+ {
+ printf("gsw_get_smsc_address fail,ret = %d\n",ret);
+ continue;
+ }
+ printf("smsc: %s\n", serv_numer);
+ break;
+ }
+
+ case 8:
+ {
+ printf("input phone number:\n");
+ memset(phone_number, 0x0, GSW_HAL_SMS_ADDRESS_LEN);
+ //fgets(phone_number, MAX_LEN, stdin);
+ printf("%d\n",scanf("%15s", phone_number));
+ fflush(stdin);
+ printf("start memcpy\n");
+ memcpy(serv_numer, phone_number, GSW_HAL_SMS_ADDRESS_LEN);
+ ret = gsw_set_smsc_address((const int8_t *)serv_numer);
+ if(ret != 0)
+ {
+ printf("gsw_set_smsc_address fail,ret = %d\n",ret);
+ continue;
+ }
+ printf("smsc: %s\n", serv_numer);
+ break;
+ }
+
+
+ case 9:
+ {
+
+ printf("gsw_sms_sdk_deinit start\n");
+ ret = gsw_sms_sdk_deinit();
+ if(ret != 0)
+ {
+ printf("gsw_sms_sdk_deinit fail,ret = %d\n",ret);
+ dlclose(dlHandle_sms);
+ continue;
+ }
+ break;
+ }
+
+ default:
+ {
+ continue;
+ }
+
+ }
+
+
+ }
+
+
+
+
+
+}
+
diff --git a/mbtk/test/libgsw_lib/gsw_tee_test.c b/mbtk/test/libgsw_lib/gsw_tee_test.c
new file mode 100755
index 0000000..8d845ae
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_tee_test.c
@@ -0,0 +1,130 @@
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <dlfcn.h>
+#include <unistd.h>
+#include <stdint.h>
+
+#define TEST_OBJECT_SIZE 7000
+
+void *dlHandle_tee;
+char *lynqLib_tee = "/lib/libgsw_lib.so";
+
+
+int32_t (*gsw_tee_sdk_init)(void);
+int32_t (*gsw_tee_write_secure_data)(const char* in_obj_name, char* in_buf, unsigned int in_buf_len);
+int32_t (*gsw_tee_read_secure_data)(const char* in_obj_name, char* out_buf, unsigned int* p_out_buf_len);
+int32_t (*gsw_tee_delete_secure_data)(const char* in_obj_name);
+int32_t (*gsw_tee_check_secure_data)(const char* in_obj_name);
+int32_t (*gsw_tee_sdk_deinit)(void);
+
+int tee_init(void)
+{
+ dlHandle_tee = dlopen(lynqLib_tee, RTLD_NOW);
+
+ if(dlHandle_tee == NULL)
+ {
+ printf("dlHandle_tee is NULL\n");
+ return -1;
+ }
+ printf("dlHandle_tee is success\n");
+
+ gsw_tee_sdk_init=(int32_t(*)())dlsym(dlHandle_tee, "gsw_tee_sdk_init");
+ if(gsw_tee_sdk_init == NULL)
+ {
+ printf("gsw_tee_sdk_init is NULL\n");
+ return -1;
+ }
+ printf("gsw_tee_sdk_init is success\n");
+
+ gsw_tee_write_secure_data=(int32_t(*)(const char* in_obj_name, char* in_buf, unsigned int in_buf_len))dlsym(dlHandle_tee, "gsw_tee_write_secure_data");
+ if(gsw_tee_write_secure_data == NULL)
+ {
+ printf("gsw_tee_write_secure_data is NULL\n");
+ return -1;
+ }
+
+
+ gsw_tee_read_secure_data=(int32_t(*)(const char* in_obj_name, char* in_buf, unsigned int* p_out_buf_len))dlsym(dlHandle_tee, "gsw_tee_read_secure_data");
+ if(gsw_tee_read_secure_data == NULL)
+ {
+ printf("gsw_tee_read_secure_data is NULL\n");
+ return -1;
+ }
+
+ gsw_tee_delete_secure_data=(int32_t(*)(const char* in_obj_name))dlsym(dlHandle_tee, "gsw_tee_delete_secure_data");
+ if(gsw_tee_delete_secure_data == NULL)
+ {
+ printf("gsw_tee_delete_secure_data is NULL\n");
+ return -1;
+ }
+
+ gsw_tee_check_secure_data=(int32_t(*)(const char* in_obj_name))dlsym(dlHandle_tee, "gsw_tee_check_secure_data");
+ if(gsw_tee_check_secure_data == NULL)
+ {
+ printf("gsw_tee_check_secure_data is NULL\n");
+ return -1;
+ }
+
+ gsw_tee_sdk_deinit=(int32_t(*)())dlsym(dlHandle_tee, "gsw_tee_sdk_deinit");
+ if(gsw_tee_sdk_deinit == NULL)
+ {
+ printf("gsw_tee_sdk_deinit is NULL\n");
+ return -1;
+ }
+
+ return 0;
+}
+
+
+
+int main(void)
+{
+ int ret;
+ unsigned int len;
+ char obj1_id[] = "object#1";
+ char obj1_data[] = "123456789";
+ char read_data[TEST_OBJECT_SIZE];
+
+ printf("gsw_optee_test start\n");
+ ret = tee_init();
+ if(ret != 0)
+ {
+ printf("tee_init fail\n");
+ }
+
+ ret = gsw_tee_sdk_init();
+ if(ret != 0)
+ {
+ printf("gsw_tee_sdk_init fail\n");
+ return ret;
+ }
+ ret = gsw_tee_write_secure_data(obj1_id, obj1_data, sizeof(obj1_data));
+ if(ret != 0)
+ {
+ printf("gsw_tee_write_secure_data fail\n");
+ return ret;
+ }
+
+ ret = gsw_tee_read_secure_data(obj1_id, read_data, &len);
+ if(ret != 0)
+ {
+ printf("gsw_tee_read_secure_data fail\n");
+ return ret;
+ }
+ printf("read_data: %s\n", read_data);
+
+ ret = gsw_tee_delete_secure_data(obj1_id);
+ if(ret != 0)
+ {
+ printf("gsw_tee_delete_secure_data fail\n");
+ return ret;
+ }
+ ret = gsw_tee_check_secure_data(obj1_id);
+ printf("gsw_tee_check_secure_data ret = %d\n", ret);
+
+ ret = gsw_tee_sdk_deinit();
+ printf("gsw_tee_sdk_deinit ret = %d\n", ret);
+ return 0;
+
+}
diff --git a/mbtk/test/libgsw_lib/gsw_uart_test.c b/mbtk/test/libgsw_lib/gsw_uart_test.c
new file mode 100755
index 0000000..95b7654
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_uart_test.c
@@ -0,0 +1,215 @@
+#include <stdio.h>
+#include <string.h>
+#include <strings.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <pthread.h>
+#include <termios.h>
+#include <time.h>
+#include <sys/ioctl.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <stdbool.h>
+#define MY_IOCTL_CMD3 _IOW('d', 1, char*) // 写入字符串
+typedef enum{
+ GSW_HAL_BAUDRATE_1200=1200,
+ GSW_HAL_BAUDRATE_1800=1800,
+ GSW_HAL_BAUDRATE_4800=4800,
+ GSW_HAL_BAUDRATE_9600=9600,
+ GSW_HAL_BAUDRATE_19200=19200,
+ GSW_HAL_BAUDRATE_38400=38400,
+ GSW_HAL_BAUDRATE_57600=57600,
+ GSW_HAL_BAUDRATE_115200=115200,
+ GSW_HAL_BAUDRATE_230400=230400,
+ GSW_HAL_BAUDRATE_460800=460800,
+ GSW_HAL_BAUDRATE_500000=500000,
+ GSW_HAL_BAUDRATE_576000=576000,
+ GSW_HAL_BAUDRATE_921600=921600
+}gsw_hal_uart_baudrate;
+
+int32_t (*gsw_uart_open_ex)(int8_t *port, gsw_hal_uart_baudrate, uint32_t, int8_t, uint32_t);
+int32_t (*gsw_uart_flush)(int32_t);
+int32_t (*gsw_uart_close)(int32_t);
+int32_t (*gsw_uart_write)(int32_t, const uint8_t *buffer, uint32_t);
+int32_t (*gsw_uart_read)(int32_t, uint8_t *buffer, uint32_t, int32_t);
+int32_t (*gsw_uart_ioctl)(int32_t, uint32_t, void *pvalue);
+void *dlHandle_uart;
+char *lynqLib_uart = "/lib/libgsw_lib.so";
+
+
+int8_t *port;
+gsw_hal_uart_baudrate baudrate;
+uint32_t bits = -1;
+int8_t parity = 3;
+uint32_t stop = -1;
+int fd = -1;
+int ret = -1;
+void prama(char *buffer)
+{
+ char *words[10];
+ for (int i = 0; i < 10; i++)
+ {
+ words[i] = (char *)malloc(20 * sizeof(char));
+ if (words[i] != NULL)
+ {
+ strcpy(words[i], "");
+ }
+ }
+ int i = 0;
+ buffer[strlen(buffer)-1] = '\0';
+ char *token = strtok(buffer, " ");
+ while (token != NULL && i < 10)
+ {
+ strcpy(words[i], token);
+ printf("var%d = %s\n", i, words[i]);
+ i++;
+ token = strtok(NULL, " ");
+ }
+ if (words[0])
+ port = (int8_t *)words[0];
+ if (words[1])
+ baudrate = atoi(words[1]);
+ if (words[2])
+ bits = atoi(words[2]);
+ if (words[3])
+ parity = (int8_t)(words[3][0]);
+ if (words[4])
+ stop = atoi(words[4]);
+
+ for (int i = 1; i < 10; i++)
+ {
+ free(words[i]);
+ }
+ return;
+}
+
+void *read_function(void *timeout_ms)
+{
+ uint8_t buf[128];
+ while(1)
+ {
+ memset(buf,0,sizeof(buf));
+ ret = gsw_uart_read(fd, buf, sizeof(buf) - 1, *(int *)timeout_ms);
+ if(ret > 0)
+ {
+ if(memcmp(buf, "exit", 4) == 0)
+ {
+ printf("exit\n");
+ break;
+ }
+ printf("%s\n",buf);
+ printf("gsw_uart_read success.\n");
+ }
+ }
+ close(fd);
+ return NULL;
+}
+
+int main(void)
+{
+ int opt = 0;
+ int timeout_ms;
+ dlHandle_uart = dlopen(lynqLib_uart, RTLD_NOW);
+ pthread_t read_thread;
+ while(1)
+ {
+ printf("=========uart main=========\n");
+ if (scanf("%d", &opt) != 1)
+ printf("input error,please check it");
+ while(getchar()!='\n');
+ switch (opt)
+ {
+ case 1:
+ {
+ char buffer[126];
+ if (fgets(buffer, sizeof(buffer), stdin) == NULL)
+ {
+ printf("input error\n");
+ break;
+ }
+ prama(buffer);
+ gsw_uart_open_ex=(int32_t(*)(int8_t *port, gsw_hal_uart_baudrate, uint32_t, int8_t, uint32_t))dlsym(dlHandle_uart, "gsw_uart_open_ex");
+ fd = gsw_uart_open_ex(port, baudrate, bits, parity, stop);
+ if(fd < 0)
+ {
+ printf("gsw_uart_open_ex FAIL.\n");
+ break;
+ }
+
+ printf("gsw_uart_open_ex success.\n");
+ break;
+ }
+
+ case 2:
+ {
+ gsw_uart_flush=(int32_t(*)(int32_t))dlsym(dlHandle_uart, "gsw_uart_flush");
+ ret = gsw_uart_flush(fd);
+ if(ret < 0)
+ {
+ printf("gsw_uart_flush FAIL.\n");
+ break;
+ }
+ printf("gsw_uart_flush success.\n");
+ break;
+ }
+
+ case 3:
+ {
+ gsw_uart_close=(int32_t(*)(int32_t))dlsym(dlHandle_uart, "gsw_uart_close");
+ ret = gsw_uart_close(fd);
+ if(ret < 0)
+ {
+ printf("gsw_uart_close FAIL.\n");
+ break;
+ }
+ free(port);
+ printf("gsw_uart_close success.\n");
+ return 0;
+ }
+
+ case 4:
+ {
+ const uint8_t *buf = (const uint8_t *)"Hello ward";
+ gsw_uart_write=(int32_t(*)(int32_t, const uint8_t *buffer, uint32_t))dlsym(dlHandle_uart, "gsw_uart_write");
+ ret = gsw_uart_write(fd, buf, strlen((const char* )buf));
+ if(ret < 0)
+ {
+ printf("gsw_uart_write FAIL.\n");
+ break;
+ }
+ printf("gsw_uart_write success.\n");
+ break;
+ }
+
+ case 5:
+ {
+ printf("Non-blocking read : 0\nBlockage : 1\nTimeout time (milliseconds) : greater than 1\n");
+ ret = scanf("%d",&timeout_ms);
+ gsw_uart_read=(int32_t(*)(int32_t, uint8_t *buffer, uint32_t, int32_t))dlsym(dlHandle_uart, "gsw_uart_read");
+ pthread_create(&read_thread, NULL, read_function, (void *)&timeout_ms);
+ pthread_join(read_thread, NULL);
+ break;
+ }
+
+ case 6:
+ {
+ char buf[128] = "Hello ward";
+ gsw_uart_ioctl=(int32_t(*)(int32_t, uint32_t, void *pvalue))dlsym(dlHandle_uart, "gsw_uart_ioctl");
+ ret = gsw_uart_ioctl(fd, MY_IOCTL_CMD3, buf);
+ if(ret < 0)
+ {
+ printf("gsw_uart_ioctl FAIL.\n");
+ break;
+ }
+ printf("gsw_uart_ioctl success.\n");
+ break;
+ }
+ }
+
+ }
+ return 0;
+}
diff --git a/mbtk/test/libgsw_lib/gsw_usb_test.c b/mbtk/test/libgsw_lib/gsw_usb_test.c
new file mode 100755
index 0000000..8d58ed9
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_usb_test.c
@@ -0,0 +1,95 @@
+#include <stdio.h>
+#include <string.h>
+#include <strings.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <pthread.h>
+#include <termios.h>
+#include <time.h>
+#include <sys/ioctl.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <stdbool.h>
+
+#include "gsw_usb.h"
+
+int32_t (*gsw_usb_permanent_switch_demo)(EN_GSW_USB_SWITCH_TYPE type);
+int32_t (*gsw_usb_tempporary_switch_demo)(EN_GSW_USB_SWITCH_TYPE type);
+void *dlHandle;
+char *lynqLib = "/lib/libgsw_lib.so";
+
+int main(int argc, char *argv[])
+{
+ int ret;
+ EN_GSW_USB_SWITCH_TYPE type;
+ bool usb_change = false;
+ if(argc != 2)
+ {
+ printf("parameter error,please input open or close\n");
+ return -1;
+ }
+
+ if(strcmp(argv[0],"gsw_usb_test") == 0)
+ usb_change = true;
+ else
+ usb_change = false;
+ printf("usb is %s\n",argv[1]);
+ if(strcmp(argv[1],"open") == 0)
+ type = EN_GSW_USB_SWITCH_OPEN;
+ else if(strcmp(argv[1],"close") == 0)
+ type = EN_GSW_USB_SWITCH_CLOSE;
+ else
+ {
+ printf("parameter error,please input open or close\n");
+ return -1;
+ }
+ dlHandle = dlopen(lynqLib, RTLD_NOW);
+ if(dlHandle == NULL)
+ {
+ printf("dlopen libgsw_lib fail\n");
+ return -1;
+ }
+ if(usb_change)
+ {
+ gsw_usb_permanent_switch_demo=(int32_t(*)(EN_GSW_USB_SWITCH_TYPE type))dlsym(dlHandle, "gsw_usb_permanent_switch");
+ if(gsw_usb_permanent_switch_demo == NULL)
+ {
+ printf("dlsym gsw_usb_permanent_switch_demo fail\n");
+ return -1;
+ }
+ ret = gsw_usb_permanent_switch_demo(type);
+ if(ret)
+ {
+ printf("gsw_usb_permanent_switch_demo fail\n");
+ }
+ else
+ {
+ printf("gsw_usb_permanent_switch_demo successful\n");
+ }
+ }
+ else
+ {
+ gsw_usb_tempporary_switch_demo=(int32_t(*)(EN_GSW_USB_SWITCH_TYPE type))dlsym(dlHandle, "gsw_usb_tempporary_switch");
+ if(gsw_usb_tempporary_switch_demo == NULL)
+ {
+ printf("dlsym gsw_usb_tempporary_switch_demo fail\n");
+ return -1;
+ }
+ ret = gsw_usb_tempporary_switch_demo(type);
+ if(ret)
+ {
+ printf("gsw_usb_tempporary_switch_demo fail\n");
+ }
+ else
+ {
+ printf("gsw_usb_tempporary_switch_demo successful\n");
+ }
+ }
+
+
+ return 0;
+}
diff --git a/mbtk/test/libgsw_lib/gsw_uuid_test.c b/mbtk/test/libgsw_lib/gsw_uuid_test.c
new file mode 100755
index 0000000..f02ccb2
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_uuid_test.c
@@ -0,0 +1,70 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include <sys/ioctl.h>
+
+#define CPMEM_DEVICE "/dev/cpmem"
+#define CPLOAD_IOC_MAGIC 'Z'
+#define CPLOAD_IOCTL_SET_CP_ADDR _IOW(CPLOAD_IOC_MAGIC, 1, int)
+#define CPLOAD_IOCTL_GET_CP_FUSE _IOR(CPLOAD_IOC_MAGIC, 2, int)
+
+static int getUniqueKey(unsigned char *key, int keylen)
+{
+ unsigned char ukey[24];
+ int fd;
+
+ if (keylen < 16)
+ {
+ fprintf(stderr, "Error: Key length must be at least 16 bytes.\n");
+ return -1;
+ }
+
+ fd = open(CPMEM_DEVICE, O_RDONLY);
+ if (fd == -1)
+ {
+ perror("Error opening device");
+ return -1;
+ }
+
+ memset(ukey, 0, sizeof(ukey));
+
+ if (ioctl(fd, CPLOAD_IOCTL_GET_CP_FUSE, ukey) == -1)
+ {
+ perror("Error in ioctl");
+ close(fd);
+ return -1;
+ }
+
+ close(fd);
+
+ memcpy(key, ukey, 8);
+ memcpy(&key[8], ukey, 8);
+
+ return 0;
+}
+
+int main()
+{
+ unsigned char key[16];
+ int ret;
+
+ ret = getUniqueKey(key, sizeof(key));
+ if (ret == 0)
+ {
+ printf("Unique Key: ");
+ for (int i = 0; i < sizeof(key)/2; i++)
+ {
+ printf("%02x", key[i]);
+ }
+ printf("\n");
+ }
+ else
+ {
+ fprintf(stderr, "Failed to get unique key.\n");
+ return EXIT_FAILURE;
+ }
+
+ return EXIT_SUCCESS;
+}
\ No newline at end of file
diff --git a/mbtk/test/libgsw_lib/gsw_voice_test.c b/mbtk/test/libgsw_lib/gsw_voice_test.c
new file mode 100755
index 0000000..894ac86
--- /dev/null
+++ b/mbtk/test/libgsw_lib/gsw_voice_test.c
@@ -0,0 +1,494 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdbool.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <string.h>
+#include <pthread.h>
+
+// mbtk includes
+
+typedef unsigned int uint32;
+typedef unsigned char uint8;
+typedef unsigned short uint16;
+typedef void (*mbtk_info_callback_func)(const void* data, int data_len);
+
+typedef struct
+{
+ int client_fd;
+ pthread_t read_thread_id;
+ int exit_fd[2];
+ bool is_waitting;
+ pthread_cond_t cond;
+ pthread_mutex_t mutex;
+
+ pthread_mutex_t send_mutex;
+
+ // Temp response data.
+ uint16 info_err;
+ uint16 data_len;
+ void *data;
+
+ //mbtk wyq for server_ready_status add start
+ char server_ready_status;
+ //mbtk wyq for server_ready_status add end
+
+ mbtk_info_callback_func net_state_cb;
+ mbtk_info_callback_func call_state_cb;
+ mbtk_info_callback_func sms_state_cb;
+ mbtk_info_callback_func radio_state_cb;
+ mbtk_info_callback_func sim_state_cb;
+ mbtk_info_callback_func pdp_state_cb;
+ //add signal by xr
+ mbtk_info_callback_func signal_state_cb;
+} mbtk_info_handle_t;
+
+typedef struct
+{
+ uint8 call_wait;
+ uint8 dir1;
+ uint8 dir;
+ uint8 state;
+ uint8 mode;
+ uint8 mpty;
+ char phone_number[100];
+ uint8 type;
+ uint8 pas;
+ uint8 disconnected_id;
+} __attribute__((packed)) mbtk_call_info_t;
+
+typedef enum {
+ MBTK_CLCC = 1,
+ MBTK_CPAS,
+ MBTK_DISCONNECTED,
+} mbtk_call_enum;
+
+typedef enum {
+ MBTK_CALL_RADY, //MT allows commands from TA/TE
+ MBTK_CALL_UNAVAILABLE, //MT does not allow commands from TA/TE
+ MBTK_CALL_UNKNOWN, //MT is not guaranteed to respond to instructions
+ MBTK_CALL_RINGING, //MT is ready for commands from TA/TE, but the ringer is active
+ MBTK_CALL_PROGRESS, //MT is ready for commands from TA/TE, but a call is in progress
+ MBTK_CALL_ASLEEP, //MT is unable to process commands from TA/TE because it is in a low functionality state
+ MBTK_CALL_ACTIVE,
+} mbtk_call_pas_enum;
+
+typedef uint32_t voice_client_handle_type;
+
+
+// GSW includes
+#define GSW_HAL_SUCCESS 0
+#define GSW_HAL_FAIL -1
+#define GSW_HAL_MEM_INVAILD -2
+
+
+typedef int CallHandle;
+typedef enum {
+ GSW_VOICE_CALL_HOLDING = 0,
+ GSW_VOICE_CALL_DIALING,
+ GSW_VOICE_CALL_ALERTING,
+ GSW_VOICE_CALL_CONNECTED,
+ GSW_VOICE_CALL_INCOMING,
+ GSW_VOICE_CALL_WAITING,
+ GSW_VOICE_CALL_END,
+}VoiceCallState;
+
+typedef enum{
+ GSW_AUDIO_MODE_CODEC = 0,
+ GSW_AUDIO_MODE_RTP = 1,
+}AudioMode;
+
+typedef enum {
+ GSW_RTP_CLIENT = 0,
+ GSW_RTP_SERVER,
+}RTPMode;
+
+typedef void (*CallStateInd)(CallHandle, VoiceCallState);
+
+
+int32_t (*gsw_voice_sdk_init)(CallStateInd ind);
+int32_t (*gsw_voice_set_speaker_volume)(int32_t volume);
+int32_t (*gsw_voice_normal_voice_start)(CallHandle *handle, const char *callNumber);
+int32_t (*gsw_voice_answer)(CallHandle handle);
+int32_t (*gsw_voice_hangup)(CallHandle handle);
+int32_t (*gsw_voice_set_auto_answer_mode)(int32_t mode);
+int32_t (*gsw_voice_get_current_call_end_reason)(CallHandle handle);
+/*#############################rtp begin*/
+int32_t (*gsw_voice_set_audio_mode)(AudioMode audioMode);
+int32_t (*gsw_voice_set_remote_rtp_ip)(const char *ip, int32_t len);
+int32_t (*gsw_voice_set_rtp_port)(RTPMode rtpMode, int32_t port);
+int32_t (*gsw_voice_set_rtp_param)(int32_t clockRate, int32_t channel, int32_t latency);
+/*#############################rtp end*/
+
+CallHandle call_handle;
+
+#define lib_gsw_voice_path "/lib/libgsw_lib.so"
+static void *dlHandle_voice = NULL;
+
+void gsw_test_callback(CallHandle handle, VoiceCallState state)
+{
+
+ printf("gsw_test_callback succeess!\n");
+ printf("id = %d, state = %d\n", handle, state);
+
+ call_handle = handle;
+ printf("set call_handle = %d\n", call_handle);
+ printf("call_handle = %d\n", call_handle);
+
+}
+
+static int gsw_rtp_api_import()
+{
+ gsw_voice_set_audio_mode = (int32_t (*)(AudioMode audioMode))dlsym(dlHandle_voice, "gsw_voice_set_audio_mode");
+ if(gsw_voice_set_audio_mode == NULL) {
+ printf("dlsym gsw_voice_set_audio_mode failed: %s\n", dlerror());
+ return -1;
+ }
+
+
+ gsw_voice_set_remote_rtp_ip = (int32_t (*)(const char *ip, int32_t len))dlsym(dlHandle_voice, "gsw_voice_set_remote_rtp_ip");
+ if(gsw_voice_set_remote_rtp_ip == NULL) {
+ printf("dlsym gsw_voice_set_remote_rtp_ip failed: %s\n", dlerror());
+ return -1;
+ }
+
+
+ gsw_voice_set_rtp_port = (int32_t (*)(RTPMode rtpMode, int32_t port))dlsym(dlHandle_voice, "gsw_voice_set_rtp_port");
+ if(gsw_voice_set_rtp_port == NULL) {
+ printf("dlsym gsw_voice_set_rtp_port failed: %s\n", dlerror());
+ return -1;
+ }
+
+
+ gsw_voice_set_rtp_param = (int32_t (*)(int32_t clockRate, int32_t channel, int32_t latency))dlsym(dlHandle_voice, "gsw_voice_set_rtp_param");
+ if(gsw_voice_set_rtp_param == NULL) {
+ printf("dlsym gsw_voice_set_rtp_param failed: %s\n", dlerror());
+ return -1;
+ }
+
+ gsw_voice_get_current_call_end_reason = (int32_t (*)(CallHandle handle))dlsym(dlHandle_voice, "gsw_voice_get_current_call_end_reason");
+ if(gsw_voice_get_current_call_end_reason == NULL) {
+ printf("dlsym gsw_voice_get_current_call_end_reason failed: %s\n", dlerror());
+ return -1;
+ }
+
+ return 0;
+
+}
+
+
+
+static int gsw_call_api_import()
+{
+ dlHandle_voice = dlopen(lib_gsw_voice_path, RTLD_NOW);
+ if (!dlHandle_voice) {
+ printf("dlopen %s failed: %s\n", lib_gsw_voice_path, dlerror());
+ return -1;
+ }
+
+ gsw_voice_sdk_init = (int32_t (*)(CallStateInd ind))dlsym(dlHandle_voice, "gsw_voice_sdk_init");
+ if(gsw_voice_sdk_init == NULL) {
+ printf("dlsym gsw_voice_sdk_init failed: %s\n", dlerror());
+ return -1;
+ }
+
+ gsw_voice_set_speaker_volume = (int32_t (*)(int32_t volume))dlsym(dlHandle_voice, "gsw_voice_set_speaker_volume");
+ if(gsw_voice_set_speaker_volume == NULL) {
+ printf("dlsym gsw_voice_set_speaker_volume failed: %s\n", dlerror());
+ return -1;
+ }
+
+ gsw_voice_normal_voice_start = (int32_t (*)(CallHandle *, const char *))dlsym(dlHandle_voice, "gsw_voice_normal_voice_start");
+ if(gsw_voice_normal_voice_start == NULL) {
+ printf("dlsym gsw_voice_normal_voice_start failed: %s\n", dlerror());
+ return -1;
+ }
+
+ gsw_voice_answer = (int32_t (*)(CallHandle handle))dlsym(dlHandle_voice, "gsw_voice_answer");
+ if(gsw_voice_answer == NULL) {
+ printf("dlsym gsw_voice_answer failed: %s\n", dlerror());
+ return -1;
+
+ }
+
+ gsw_voice_hangup = (int32_t (*)(CallHandle handle))dlsym(dlHandle_voice, "gsw_voice_hangup");
+ if(gsw_voice_hangup == NULL) {
+ printf("dlsym gsw_voice_hangup failed: %s\n", dlerror());
+ return -1;
+ }
+
+ gsw_voice_set_auto_answer_mode = (int32_t (*)(int32_t mode))dlsym(dlHandle_voice, "gsw_voice_set_auto_answer_mode");
+ if(gsw_voice_set_auto_answer_mode == NULL) {
+ printf("dlsym gsw_voice_set_auto_answer_mode failed: %s\n", dlerror());
+ return -1;
+ }
+
+ return gsw_rtp_api_import();
+}
+
+int main()
+{
+ char operator[10];
+ int opt;
+ int ret;
+
+ gsw_call_api_import();
+
+ while(1)
+ {
+ printf("=========gsw voice main=========\n"
+ "\t-1 exit\n"
+ "\t1 voice init\n"
+ "\t2 voice dial\n"
+ "\t3 voice hangup\n"
+ "\t4 voice answer\n"
+ "\t5 set auto answer mode\n"
+ "\t6 set speaker volume\n"
+ "\t7 set audio mode (local codec or rtp) \n"
+ "\t8 set remote rtp ip\n"
+ "\t9 set rtp port\n"
+ "\t10 set rtp param\n"
+ "\t11 get current call end reason\n"
+ "operator: >> \n");
+
+ memset(operator, 0, sizeof(operator));
+ printf("%s\n",fgets(operator, sizeof(operator), stdin));
+ fflush(stdin);
+ opt = atoi(operator);
+ switch (opt)
+ {
+ case -1:
+ printf("main exit\n");
+ return 0;
+ case 1:
+ {
+ printf(">>>>>voice init\n");
+ ret = gsw_voice_sdk_init(gsw_test_callback);
+ if(ret != 0)
+ {
+ printf("gsw_voice_sdk_init fail\n");
+ }
+ else
+ {
+ printf("gsw_voice_sdk_init success\n");
+ }
+ }
+ break;
+ case 2:
+ {
+ printf(">>>>>Input gsw_voice_normal_voice_start<<<<<\n");
+ char number[16] = {0};
+ printf("Enter call number\n");
+ printf("%d\n",scanf("%15s", number));
+ printf("call number is %s\n", number);
+
+ ret = gsw_voice_normal_voice_start(&call_handle, number);
+ if(ret < 0)
+ {
+ printf("gsw_voice_normal_voice_start fail\n");
+ }
+ else
+ {
+ printf("gsw_voice_normal_voice_start success\n");
+ }
+ }
+ break;
+ case 3:
+ {
+ printf(">>>>>Input gsw_voice_hangup<<<<<\n");
+ printf("call_handle is %d\n", call_handle);
+ ret = gsw_voice_hangup(call_handle);
+ if(ret < 0)
+ {
+ printf("gsw_voice_hangup fail\n");
+ }
+ else
+ {
+ printf("gsw_voice_hangup success\n");
+ }
+ }
+ break;
+ case 4:
+ {
+ printf(">>>>>Input gsw_voice_answer<<<<<\n");
+ printf("call_handle is %d\n", call_handle);
+ ret = gsw_voice_answer(call_handle);
+ if(ret < 0)
+ {
+ printf("gsw_voice_answer fail\n");
+ }
+ else
+ {
+ printf("gsw_voice_answer success\n");
+ }
+ }
+ break;
+ case 5:
+ {
+ printf(">>>>>Input gsw_voice_set_auto_answer_mode<<<<<\n");
+
+ int mode = 0;
+ printf("Enter set mode\n");
+ printf("%d\n",scanf("%d", &mode));
+ fflush(stdin);
+ printf("mode is %d\n", mode);
+
+ printf("start set auto answer mode(0:disable, 1:enable)\n");
+ ret = gsw_voice_set_auto_answer_mode(mode);
+ if(ret < 0)
+ {
+ printf("gsw_voice_set_auto_answer_mode fail\n");
+ }
+ else
+ {
+ printf("gsw_voice_set_auto_answer_mode success\n");
+ }
+ }
+ break;
+ case 6:
+ {
+ printf(">>>>>Input gsw_voice_set_speaker_volume<<<<<\n");
+
+
+ int volume;
+
+ printf("Enter set volume\n");
+ printf("%d\n",scanf("%d", &volume));
+ fflush(stdin);
+ printf("volume is %d\n", volume);
+
+ ret = gsw_voice_set_speaker_volume(volume);
+ if(ret < 0)
+ {
+ printf("gsw_voice_set_speaker_volume fail\n");
+ }
+ else
+ {
+ printf("gsw_voice_set_speaker_volume success\n");
+ }
+ }
+ break;
+ /*#############################rtp begin*/
+ case 7:
+ {
+ printf(">>>>>Input gsw_voice_set_audio_mode<<<<<\n");
+
+ int mode;
+
+ printf("Enter set mode (0: local codec, 1:rtp)\n");
+ printf("%d\n",scanf("%d", &mode));
+ fflush(stdin);
+ printf("mode is %d\n", mode);
+
+ ret = gsw_voice_set_audio_mode(mode);
+ if(ret != 0)
+ {
+ printf("gsw_voice_set_audio_mode fail\n");
+ }
+ else
+ {
+ printf("gsw_voice_set_audio_mode success\n");
+ }
+ }
+ break;
+
+ case 8:
+ {
+ printf(">>>>>Input gsw_voice_set_remote_rtp_ip<<<<<\n");
+
+ char remote_ip_addr[100] = {0};
+
+ printf("Enter set remote rtp ip address (***.***.***.***) \n");
+ printf("%d\n",scanf("%s", remote_ip_addr));
+ fflush(stdin);
+ printf("remote rtp ip address is %s\n", remote_ip_addr);
+
+ ret = gsw_voice_set_remote_rtp_ip(remote_ip_addr,strlen(remote_ip_addr)+1);
+ if(ret != 0)
+ {
+ printf("gsw_voice_set_remote_rtp_ip fail\n");
+ }
+ else
+ {
+ printf("gsw_voice_set_remote_rtp_ip success\n");
+ }
+ }
+ break;
+
+ case 9:
+ {
+ printf(">>>>>Input gsw_voice_set_rtp_port<<<<<\n");
+
+ int mode;
+ int port;
+ printf("Enter set mode (0: server, 1:client)\n");
+ printf("%d\n",scanf("%d", &mode));
+ fflush(stdin);
+ printf("mode is %d\n", mode);
+
+ printf("Enter set port\n");
+ printf("%d\n",scanf("%d", &port));
+ fflush(stdin);
+ printf("port is %d\n", port);
+
+ ret = gsw_voice_set_rtp_port(mode,port);
+ if(ret != 0)
+ {
+ printf("gsw_voice_set_rtp_port fail\n");
+ }
+ else
+ {
+ printf("gsw_voice_set_rtp_port success\n");
+ }
+ }
+ break;
+
+
+ case 10:
+ {
+ printf(">>>>>Input gsw_voice_set_rtp_param<<<<<\n");
+
+ int clockRate;
+ int channel;
+ int latency=400;
+
+ printf("Enter set clockRate (only 8000 and 16000 supoort) \n");
+ printf("%d\n",scanf("%d", &clockRate));
+ fflush(stdin);
+ printf("clockRate is %d\n", clockRate);
+
+ printf("Enter set channel (only 1 support)\n");
+ printf("%d\n",scanf("%d", &channel));
+ fflush(stdin);
+ printf("channel is %d\n", channel);
+
+ ret = gsw_voice_set_rtp_param(clockRate, channel, latency);
+ if(ret != 0)
+ {
+ printf("gsw_voice_set_rtp_param fail\n");
+ }
+ else
+ {
+ printf("gsw_voice_set_rtp_param success\n");
+ }
+ }
+ break;
+ /*#############################rtp end*/
+
+ case 11:
+ {
+ printf(">>>>gsw_voice_get_current_call_end_reason<<<\n");
+ ret = gsw_voice_get_current_call_end_reason(call_handle);
+ printf("gsw_voice_get_current_call_end_reason = %d\n", ret);
+ break;
+ }
+
+ default:
+ break;
+ }
+
+ }
+
+ return 0;
+
+}
diff --git a/mbtk/test/libgsw_lib/lynq_bus_hound_monitor.c b/mbtk/test/libgsw_lib/lynq_bus_hound_monitor.c
new file mode 100755
index 0000000..3a81b8c
--- /dev/null
+++ b/mbtk/test/libgsw_lib/lynq_bus_hound_monitor.c
@@ -0,0 +1,200 @@
+/*@file lynq-ndis-uevent.c
+* @brief adb default port is closed, The uevent event of NDIS is reported to switch port.
+* @author dongyu
+* @date 2022-10-14
+* @version V1.0
+* @copyright MobileTek
+*/
+#include <stdio.h>
+#include <string.h>
+#include <strings.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <pthread.h>
+#include <termios.h>
+#include <time.h>
+#include <sys/ioctl.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <stdbool.h>
+
+#include <sys/socket.h>
+#include <linux/netlink.h>
+
+#define UEVENT_MSG_LEN 1024
+#define USB_REPORTING 3300
+
+struct uevent {
+ const char *action;
+ const char *path;
+ const char *subsystem;
+ const char *firmware;
+ const char *calluser;
+ int major;
+ int minor;
+};
+
+static int open_uevent_socket(void)
+{
+ struct sockaddr_nl addr;
+ int sz = 64*1024;
+ int on = 1;
+ int s;
+
+ memset(&addr, 0, sizeof(addr));
+ addr.nl_family = AF_NETLINK;
+ addr.nl_pid = getpid();
+ addr.nl_groups = 0xffffffff;
+
+ s = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
+ if(s < 0)
+ return -1;
+
+ setsockopt(s, SOL_SOCKET, SO_RCVBUFFORCE, &sz, sizeof(sz));
+ setsockopt(s, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
+
+ if(bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
+ close(s);
+ return -1;
+ }
+
+ return s;
+}
+
+static void parse_event(const char *msg, struct uevent *uevent)
+{
+ uevent->action = "";
+ uevent->path = "";
+ uevent->subsystem = "";
+ uevent->firmware = "";
+ uevent->calluser = "";
+ uevent->major = -1;
+ uevent->minor = -1;
+
+ /* currently ignoring SEQNUM */
+ while(*msg) {
+ printf("%s\n", msg);
+ if(!strncmp(msg, "ACTION=", 7)) {
+ msg += 7;
+ uevent->action = msg;
+ } else if(!strncmp(msg, "DEVPATH=", 8)) {
+ msg += 8;
+ uevent->path = msg;
+ } else if(!strncmp(msg, "SUBSYSTEM=", 10)) {
+ msg += 10;
+ uevent->subsystem = msg;
+ } else if(!strncmp(msg, "FIRMWARE=", 9)) {
+ msg += 9;
+ uevent->firmware = msg;
+ } else if(!strncmp(msg, "MAJOR=", 6)) {
+ msg += 6;
+ uevent->major = atoi(msg);
+ } else if(!strncmp(msg, "MINOR=", 6)) {
+ msg += 6;
+ uevent->minor = atoi(msg);
+ } else if(!strncmp(msg, "CALL_USER=", 10)) {
+ msg += 10;
+ uevent->calluser = msg;
+ }
+
+ /* advance to after the next \0 */
+ while(*msg++);
+ }
+
+ printf("event { '%s', '%s', '%s', '%s', %d, %d }\n",
+ uevent->action, uevent->path, uevent->subsystem,
+ uevent->firmware, uevent->major, uevent->minor);
+}
+
+int handle_device_fd(int fd)
+{
+ printf("enter %s\n", __func__);
+ char cmd[128] = {0};
+ for(;;) {
+ char msg[UEVENT_MSG_LEN+2];
+ char cred_msg[CMSG_SPACE(sizeof(struct ucred))];
+ struct iovec iov = {msg, sizeof(msg)};
+ struct sockaddr_nl snl;
+ struct msghdr hdr = {&snl, sizeof(snl), &iov, 1, cred_msg, sizeof(cred_msg), 0};
+
+ ssize_t n = recvmsg(fd, &hdr, 0);
+ if (n <= 0) {
+ break;
+ }
+
+ if ((snl.nl_groups != 1) || (snl.nl_pid != 0)) {
+ /* ignoring non-kernel netlink multicast message */
+ continue;
+ }
+
+ struct cmsghdr * cmsg = CMSG_FIRSTHDR(&hdr);
+ if (cmsg == NULL || cmsg->cmsg_type != SCM_CREDENTIALS) {
+ /* no sender credentials received, ignore message */
+ continue;
+ }
+
+ struct ucred * cred = (struct ucred *)CMSG_DATA(cmsg);
+ if (cred->uid != 0) {
+ /* message from non-root user, ignore */
+ continue;
+ }
+
+ if(n >= UEVENT_MSG_LEN) /* overflow -- discard */
+ continue;
+
+ msg[n] = '\0';
+ msg[n+1] = '\0';
+
+ printf("usb ::: msg = %s\n", msg);
+ struct uevent uevent;
+ parse_event(msg, &uevent);
+
+ if(strcmp(uevent.calluser, "/usr/bin/usb uevent permanent reporting") == 0){
+ sprintf(cmd, "setprop persist.mbtk.usb_pid %d && /sbin/tmp_usb_init %d &", USB_REPORTING, USB_REPORTING);
+ int ret = system(cmd);
+ if (ret == -1) {
+ fprintf(stderr, "Error: Failed to execute system command.\n");
+ return 1;
+ }
+ printf("USB login port switch permanent successfully!\n");
+ // while(1){
+ // sleep(1);
+ // }
+ }
+ else if(strcmp(uevent.calluser, "/usr/bin/usb uevent tempporary reporting") == 0){
+ sprintf(cmd, "/sbin/tmp_usb_init %d &",USB_REPORTING);
+ int ret = system(cmd);
+ if (ret == -1) {
+ fprintf(stderr, "Error: Failed to execute system command.\n");
+ return 1;
+ }
+ printf("USB login port switch tempporary successfully!\n");
+ // while(1){
+ // sleep(1);
+ // }
+ }
+
+ }
+ return 0;
+}
+
+int main(void)
+{
+ int fd = 0;
+
+ fd = open_uevent_socket();
+ if (fd < 0) {
+ printf("error!\n");
+ return -1;
+ }
+
+ handle_device_fd(fd);
+ while(1){
+ sleep(1);
+ }
+ return 0;
+}
diff --git a/mbtk/test/liblynq_lib/Makefile.backup b/mbtk/test/liblynq_lib/Makefile.backup
new file mode 100755
index 0000000..d8eea05
--- /dev/null
+++ b/mbtk/test/liblynq_lib/Makefile.backup
@@ -0,0 +1,34 @@
+BUILD_ROOT = $(shell pwd)/../..
+include $(BUILD_ROOT)/Make.defines
+
+INC_DIR +=
+
+LIB_DIR +=
+
+LIBS += -lmbtk_lib -lmbtk_ril -lmbtk_net -lmbtk_audio -lmbtk_fota -lmbtk_gnss -lmbtk_factory -llynq_lib
+
+CFLAGS +=
+
+DEFINE +=
+
+LOCAL_SRC_FILES = $(wildcard *.c) $(wildcard *.cpp)
+
+$(info LOCAL_SRC_FILES = $(LOCAL_SRC_FILES))
+
+OBJS = $(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(LOCAL_SRC_FILES)))
+BINS = $(patsubst %.o,%,$(OBJS))
+
+all: $(BINS)
+
+$(BINS):$(OBJS)
+ @echo " BIN $@"
+ $(CC) $(CFLAGS) $(LIB_DIR) $(LIBS) $@.o -o $(OUT_DIR)/bin/$@
+
+%.o:%.c
+ $(CC) $(CFLAGS) $(INC_DIR) $(DEFINE) -c $< -o $@
+
+%.o:%.cpp
+ $(CC) $(CFLAGS) $(INC_DIR) $(DEFINE) -c $< -o $@
+
+clean:
+ rm -f $(OBJS)
diff --git a/mbtk/test/liblynq_lib/lynq-audio-demo.cpp b/mbtk/test/liblynq_lib/lynq-audio-demo.cpp
new file mode 100755
index 0000000..d97464d
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq-audio-demo.cpp
@@ -0,0 +1,163 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <errno.h>
+#include "ring_tele.h"
+#include "lynq/lynq-qser-audio.h"
+
+static int playback_handle = 1;
+
+void player_cmd_proc(char *cmdstr)
+{
+ if (strcmp(cmdstr, "P\n") == 0)
+ {
+ qser_AudPlayer_Pause(playback_handle);
+ }
+ else if (strcmp(cmdstr, "R\n") == 0)
+ {
+ qser_AudPlayer_Resume(playback_handle);
+ }
+ else if (strcmp(cmdstr, "T\n") == 0)
+ {
+ qser_AudPlayer_Stop(playback_handle);
+ }
+ else
+ {
+ printf("Unknown command: %s", cmdstr);
+ }
+}
+
+void capture_cmd_proc(char *cmdstr)
+{
+ if (strcmp(cmdstr, "P\n") == 0)
+ {
+ qser_AudRecorder_Pause();
+ }
+ else if (strcmp(cmdstr, "R\n") == 0)
+ {
+ qser_AudRecorder_Resume();
+ }
+ else if (strcmp(cmdstr, "T\n") == 0)
+ {
+ qser_AudRecorder_Stop();
+ }
+ else
+ {
+ printf("Unknown command: %s", cmdstr);
+ }
+}
+
+int main(int argc, char *argv[])
+{
+ if (argc < 2)
+ {
+ printf("Usage: %s <play|recd|playbuf> [file]\n", argv[0]);
+ return 1;
+ }
+
+ const char *action = argv[1];
+ const char *file = argv[2];
+
+ int g_audio_owner_id = 0;
+ char player_device[] = "device1";
+ char recorder_device[] = "device2";
+ char cmdstr[256];
+
+ _cb_onPlayer cb_fun = [](int result)
+ {
+ if (result == 0)
+ {
+ printf("Audio recorder opened successfully.\n");
+ }
+ else
+ {
+ printf("Failed to open audio recorder, error code: %d\n", result);
+ }
+ };
+
+ if (strcmp(action, "playbuf") == 0)
+ {
+ int player_open_result = qser_AudPlayer_Open(player_device, cb_fun);
+ if (player_open_result != 0)
+ {
+ printf("Failed to open audio player.\n");
+ return 1;
+ }
+ qser_AudPlayer_PlayPcmBuf(PCM_DATA, PCM_DATA_SIZE, 640, 3, 1, 8000, g_audio_owner_id);
+ while (1)
+ {
+ printf("Please input a player command (P/R/T/exit) :\n");
+ if (fgets(cmdstr, sizeof(cmdstr), stdin) != NULL)
+ {
+ if (strcmp(cmdstr, "exit\n") == 0)
+ {
+ qser_AudPlayer_Close(playback_handle);
+ break;
+ }
+ player_cmd_proc(cmdstr);
+ }
+ }
+ qser_AudPlayer_Close(playback_handle);
+ }
+ else if (strcmp(action, "play") == 0)
+ {
+ int player_open_result = qser_AudPlayer_Open(player_device, cb_fun);
+ if (player_open_result != 0)
+ {
+ printf("Failed to open audio player.\n");
+ return 1;
+ }
+
+ qser_AudPlayer_PlayFrmFile(g_audio_owner_id, file, 0);
+
+ while (1)
+ {
+ printf("Please input a player command (P/R/T/exit) :\n");
+ if (fgets(cmdstr, sizeof(cmdstr), stdin) != NULL)
+ {
+ if (strcmp(cmdstr, "exit\n") == 0)
+ {
+ qser_AudPlayer_Close(playback_handle);
+ break;
+ }
+ player_cmd_proc(cmdstr);
+ }
+ }
+
+ qser_AudPlayer_Close(playback_handle);
+ }
+ else if (strcmp(action, "recd") == 0)
+ {
+ int recorder_open_result = qser_AudRecorder_Open(recorder_device, cb_fun);
+ if (recorder_open_result != 0) {
+ printf("Failed to open audio recorder.\n");
+ return 1;
+ }
+
+ qser_AudRecorder_StartRecord(g_audio_owner_id, file, 0);
+
+ while (1)
+ {
+ printf("Please input a player command (P/R/T/exit) :\n");
+ if (fgets(cmdstr, sizeof(cmdstr), stdin) != NULL)
+ {
+ if (strcmp(cmdstr, "exit\n") == 0)
+ {
+ qser_AudRecorder_Close();
+ break;
+ }
+ capture_cmd_proc(cmdstr);
+ }
+ }
+ qser_AudRecorder_Close();
+ }
+ else
+ {
+ printf("Unknown action: %s\n", action);
+ return 1;
+ }
+
+ qser_Audio_Deinit();
+
+ return 0;
+}
diff --git a/mbtk/test/liblynq_lib/lynq_alarm_test.c b/mbtk/test/liblynq_lib/lynq_alarm_test.c
new file mode 100755
index 0000000..8f8e2f7
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq_alarm_test.c
@@ -0,0 +1,22 @@
+#include "lynq_alarm.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+
+int main()
+{
+ int rtc_id = 0;
+ rtc_id = lynq_rtc_service_init();
+ if(rtc_id == -1)
+ {
+ printf("init fail\n");
+ return 0;
+ }
+
+ lynq_set_poweralarm(60, rtc_id);
+
+ lynq_rtc_service_deinit();
+ return 0;
+}
+
+
diff --git a/mbtk/test/liblynq_lib/lynq_call_test.c b/mbtk/test/liblynq_lib/lynq_call_test.c
new file mode 100755
index 0000000..48ce4af
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq_call_test.c
@@ -0,0 +1,398 @@
+#include "lynq-qser-voice.h"
+
+#include "mbtk_type.h"
+#include "mbtk_info_api.h"
+#include "mbtk_audio.h"
+
+#define MAX_LEN 15
+
+#if 0
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/types.h>
+#include <pthread.h>
+#include <unistd.h>
+#include <dlfcn.h>
+#include <stdint.h>
+
+//#include"lynq-qser-voice-demo.h"
+
+typedef struct
+{
+ int cmdIdx;
+ char *funcName;
+} st_api_test_case;
+
+//for server test
+st_api_test_case at_api_testcases[] =
+{
+ {0, "print_help"},
+ {1, "qser_voice_call_start"},
+ {2, "qser_voice_call_end"},
+ {3, "qser_voice_call_answer"},
+ {4, "qser_voice_set_speech_volume"},
+ {5, "qser_voice_get_speech_volume"},
+ {-1, NULL}
+};
+
+
+
+typedef uint32_t voice_client_handle_type;
+
+static pthread_t s_lynq_voice_tid = -1;
+
+
+int (*qser_voice_call_client_init)(voice_client_handle_type *ph_voice);
+int (*qser_voice_call_client_deinit)(voice_client_handle_type );
+int (*qser_voice_call_addstatehandler)(voice_client_handle_type h_voice,
+ QSER_VoiceCall_StateHandlerFunc_t handlerPtr,
+ void *contextPtr);
+
+int (*qser_voice_call_removestatehandle)(voice_client_handle_type );
+int (*qser_voice_call_start)(voice_client_handle_type h_voice,
+ E_QSER_VCALL_ID_T simId,
+ char *phone_number, int *call_id);
+
+int (*qser_voice_call_end)(voice_client_handle_type ,int );
+int (*qser_voice_call_answer)(voice_client_handle_type ,int );
+int (*qser_voice_set_speech_volume)(const int volume);
+int (*qser_voice_get_speech_volume)(int *volume);
+
+void *dlHandle_call = NULL;
+
+static void yk_voice_call_cb_func(int call_id,
+ char* phone_num,
+ qser_voice_call_state_t state,
+ void *contextPtr)
+{
+ char *call_state[] = {"INCOMING", "DIALING", "ALERTING", "ACTIVE", "HOLDING", "END", "WAITING"};
+
+ printf("######### Call id=%d, PhoneNum:%s, event=%s! ######\n", call_id, phone_num, call_state[state]);
+}
+
+void print_help(void)
+{
+ int i;
+ printf("Supported test cases:\n");
+ for(i = 0; ; i++)
+ {
+ if(at_api_testcases[i].cmdIdx == -1)
+ {
+ break;
+ }
+ printf("%d:\t%s\n", at_api_testcases[i].cmdIdx, at_api_testcases[i].funcName);
+ }
+}
+
+int main(int argc, char const *argv[])
+{
+ int cmdIdx = 0;
+ int ret = 0;
+ int voice_call_id = 0;
+ voice_client_handle_type h_voice = 0;
+
+ //const char *lynqLibPath_Call = "/lib/liblynq-qser-voice.so";
+ const char *lynqLibPath_Call = "/lib/liblynq_lib.so";
+ dlHandle_call = dlopen(lynqLibPath_Call, RTLD_NOW);
+ if (dlHandle_call == NULL)
+ {
+ printf("dlopen dlHandle_call failed: %s\n", dlerror());
+ exit(EXIT_FAILURE);
+ }
+
+ qser_voice_call_client_init = (int(*)(voice_client_handle_type *ph_voice))dlsym(dlHandle_call, "qser_voice_call_client_init");
+ if(qser_voice_call_client_init == NULL)
+ {
+ printf("qser_voice_call_client_init not defined or exported in %s\n", lynqLibPath_Call);
+ return -1;
+ }
+
+ qser_voice_call_addstatehandler = (int(*)(voice_client_handle_type h_voice,
+ QSER_VoiceCall_StateHandlerFunc_t handlerPtr,
+ void *contextPtr))dlsym(dlHandle_call,"qser_voice_call_addstatehandler");
+ if(qser_voice_call_addstatehandler == NULL)
+ {
+ printf("qser_voice_call_addstatehandler not defined or exported in %s\n", lynqLibPath_Call);
+ return -1;
+ }
+
+ qser_voice_call_answer = (int(*)(voice_client_handle_type,int ))dlsym(dlHandle_call,"qser_voice_call_answer");
+ if(qser_voice_call_answer == NULL)
+ {
+ printf("qser_voice_call_answer not defined or exported in %s\n", lynqLibPath_Call);
+ return -1;
+ }
+
+ qser_voice_call_start = (int(*)(voice_client_handle_type h_voice,E_QSER_VCALL_ID_T simId,
+ char *phone_number, int *call_id))dlsym(dlHandle_call,"qser_voice_call_start");
+ if(qser_voice_call_start == NULL)
+ {
+ printf("qser_voice_call_start not defined or exported in %s\n", lynqLibPath_Call);
+ return -1;
+ }
+
+ qser_voice_call_end = (int(*)(voice_client_handle_type ,int))dlsym(dlHandle_call,"qser_voice_call_end");
+ if(qser_voice_call_end == NULL)
+ {
+ printf("qser_voice_call_end not defined or exported in %s\n", lynqLibPath_Call);
+ return -1;
+ }
+
+
+ qser_voice_call_client_deinit = (int (*)(voice_client_handle_type h_voice))dlsym(dlHandle_call,"qser_voice_call_client_deinit");
+ if(qser_voice_call_client_deinit == NULL)
+ {
+ printf("qser_voice_call_client_deinit not defined or exported in %s\n", lynqLibPath_Call);
+ return -1;
+ }
+
+ qser_voice_call_removestatehandle = (int (*)(voice_client_handle_type))dlsym(dlHandle_call,"qser_voice_call_removestatehandle");
+ if(qser_voice_call_removestatehandle == NULL)
+ {
+ printf("qser_voice_call_removestatehandle not defined or exported in %s\n", lynqLibPath_Call);
+ return -1;
+ }
+
+ qser_voice_set_speech_volume = (int (*)(const int ))dlsym(dlHandle_call,"qser_voice_set_speech_volume");
+ if(qser_voice_set_speech_volume == NULL)
+ {
+ printf("qser_voice_set_speech_volume not defined or exported in %s\n", lynqLibPath_Call);
+ return -1;
+ }
+
+ qser_voice_get_speech_volume = (int (*)(int* ))dlsym(dlHandle_call,"qser_voice_get_speech_volume");
+ if(qser_voice_get_speech_volume == NULL)
+ {
+ printf("qser_voice_get_speech_volume not defined or exported in %s\n", lynqLibPath_Call);
+ return -1;
+ }
+
+ ret = qser_voice_call_client_init(&h_voice);
+ if(ret != 0 )
+ {
+ printf("qser_voice_call_client_init FAIL\n");
+ return -1;
+ }
+
+ ret = qser_voice_call_addstatehandler(h_voice, yk_voice_call_cb_func, &voice_call_id);
+ if(ret != 0)
+ {
+ printf("qser_voice_call_addstatehandler FAIL\n");
+ return -1;
+ }
+
+
+ print_help();
+ while(1)
+ {
+ printf("\nplease input cmd index(-1 exit): ");
+ scanf("%d", &cmdIdx);
+ if(cmdIdx == -1)
+ {
+ break;
+ }
+
+ switch(cmdIdx)
+ {
+ //"print_help
+ case 0:
+ print_help();
+ break;
+
+ //"qser_voice_call_start"
+ case 1:
+ {
+ char PhoneNum[32] = {0};
+
+ printf("please input dest phone number: \n");
+ scanf("%s", PhoneNum);
+
+ ret = qser_voice_call_start(h_voice, E_QSER_VCALL_EXTERNAL_SLOT_1, PhoneNum, &voice_call_id);
+ printf("qser_voice_call_start ret = %d, with voice_call_id=%d\n", ret, voice_call_id);
+ break;
+ }
+
+ //"qser_voice_call_end"
+ case 2:
+ {
+ int call_id = -1;
+ printf("please input end call id: \n");
+ scanf("%d", &call_id);
+ ret = qser_voice_call_end(h_voice, call_id);
+ printf(" ret = %d\n", ret);
+ break;
+ }
+
+ //"qser_voice_call_answer"
+ case 3:
+ {
+ int call_id = -1;
+ printf(" please input answer call id\n");
+ scanf("%d", &call_id);
+ ret = qser_voice_call_answer(h_voice, call_id);
+ printf(" ret = %d\n", ret);
+ break;
+ }
+ case 4:
+ {
+ int volume = 0;
+ printf("Please set speech volume:0-5 level\n");
+ scanf("%d",&volume);
+ ret = qser_voice_set_speech_volume(volume);
+ printf("ret is %d\n",ret);
+ break;
+
+ }
+
+ case 5:
+ {
+ int volume = -1;
+ printf("Enter get speech volume\n");
+ ret = qser_voice_get_speech_volume(&volume);
+ printf("ret is %d,get volume is %d\n",ret,volume);
+ break;
+
+ }
+ default:
+ print_help();
+ break;
+ }
+
+ }
+ ret = qser_voice_call_removestatehandle(h_voice);
+ if(ret != 0 && ret != 1)
+ {
+ printf("qser_voice_call_removestatehandle FAIL!!!\n");
+ return -1;
+ }
+ printf("qser_voice_call_removestatehandle ret = %d\n", ret);
+
+
+ ret = qser_voice_call_client_deinit(h_voice);
+ if(ret != 0)
+ {
+ printf("qser_voice_call_client_deinit FAIL\n");
+ return -1;
+ }
+ printf("qser_voice_call_client_deinit ret = %d, with h_voice=%d\n", ret, h_voice);
+
+ return 0;
+}
+
+
+#else
+
+static void yk_voice_call_cb_func(int call_id,
+ char* phone_num,
+ qser_voice_call_state_t state,
+ void *contextPtr)
+{
+ char *call_state[] = {"INCOMING", "DIALING", "ALERTING", "ACTIVE", "HOLDING", "END", "WAITING"};
+
+ printf("######### Call id=%d, PhoneNum:%s, event=%s! ######\n", call_id, phone_num, call_state[state]);
+}
+
+int main(int argc, char *argv[])
+{
+ char operator[MAX_LEN];
+ int opt;
+ int lv_voll = 0;
+ voice_client_handle_type handle = -1;
+ int voice_call_id = 0;
+ mbtk_log_init("radio", "CALL_TEST");
+
+ printf("=========call main=========\n"
+ "\t0 exit\n"
+ "\t1 call init\n"
+ "\t2 call add register handle\n"
+ "\t3 call start\n"
+ "\t4 call end\n"
+ "\t5 call answer\n"
+ "\t6 call remove register handle\n"
+ "\t7 call set volume level 0-5\n"
+ "\t8 call get volume\n"
+ "\t9 call dtmf\n"
+ "\t10 call deinit\n"
+ "operator: >> \n");
+
+ while(1)
+ {
+ fgets(operator, sizeof(operator), stdin);
+ fflush(stdin);
+ opt = atoi(operator);
+ switch (opt)
+ {
+ case 0:
+ printf("main exit\n");
+ return 0;
+ case 1:
+ qser_voice_call_client_init(&handle);
+ printf("test>>: handle = %d\n",handle);
+ break;
+ case 2:
+ qser_voice_call_addstatehandler(handle, yk_voice_call_cb_func, &voice_call_id);
+ break;
+ case 3:
+ printf("input phone number:\n");
+ memset(operator, 0x0, MAX_LEN);
+ fgets(operator, MAX_LEN, stdin);
+ fflush(stdin);
+ printf("number:%s\n", operator);
+ qser_voice_call_start(handle, E_QSER_VCALL_EXTERNAL_SLOT_1, operator, &voice_call_id);//被叫电话
+ break;
+ case 4:
+ qser_voice_call_end(handle, voice_call_id);
+ break;
+ case 5:
+ qser_voice_call_answer(handle, voice_call_id);
+ break;
+ case 6:
+ qser_voice_call_removestatehandle(handle);
+ break;
+ case 7:
+ {
+ printf("Pleas set volume level(0-5)>>>>\n");
+ memset(operator, 0x00, sizeof(operator));
+ fgets(operator, sizeof(operator), stdin);
+ fflush(stdin);
+ //def level 3
+ lv_voll = atoi(operator);
+ if (lv_voll >= 0 && lv_voll <= 5)
+ qser_voice_set_speech_volume(lv_voll);
+ else
+ printf("set volume level(0-5) ERR\n");
+ }
+ break;
+ case 8:
+ qser_voice_get_speech_volume(&lv_voll);
+ printf("volume level = %d\n",lv_voll);
+ break;
+ case 9:
+ {
+ char inputChar;
+
+ printf("Enter set dtmf\n");
+ scanf(" %c", &inputChar);
+ printf("inputChar is %c\n", inputChar);
+
+ if (qser_voice_set_dtmf(inputChar) != 0)
+ {
+ printf("qser set voice dtmf failed\n");
+ }
+ }
+ break;
+ case 10:
+ qser_voice_call_client_deinit(handle);
+ break;
+ default:
+ break;
+ }
+
+ }
+
+ return 0;
+}
+
+#endif
+
diff --git a/mbtk/test/liblynq_lib/lynq_chip_id.c b/mbtk/test/liblynq_lib/lynq_chip_id.c
new file mode 100755
index 0000000..461948c
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq_chip_id.c
@@ -0,0 +1,24 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/time.h>
+#include <time.h>
+#include "lynq_chip_id.h"
+
+int main()
+{
+ char chip_id[128]={0};
+ int ret = 0;
+ ret = lynq_get_chip_id(chip_id);
+ if(!ret)
+ {
+ printf("chip_id:%s",chip_id);
+ }
+ else{
+ printf("get chip_id error");
+ }
+ return 0;
+}
+
+
+
diff --git a/mbtk/test/liblynq_lib/lynq_irq_test.c b/mbtk/test/liblynq_lib/lynq_irq_test.c
new file mode 100755
index 0000000..e4ec8c8
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq_irq_test.c
@@ -0,0 +1,174 @@
+#include "lynq-irq.h"
+
+#include "mbtk_type.h"
+#include "mbtk_info_api.h"
+
+int line;
+
+static void irq_test_handler(void)
+{
+ int trig_type;
+ trig_type = lynq_irq_get_type(line);
+ printf("this is irq_test_handler\nthis irq is gpio %d,trig_type is %d\n", line_gpio[line-117],trig_type);
+ return NULL;
+}
+
+int main(int argc, char *argv[])
+{
+ char operator[10];
+ int opt;
+ int irq, trig_type, en;
+ int ret;
+ irq_handler handler;
+ mbtk_log_init("radio", "IRQ_TEST");
+
+ printf("=========irq main=========\n"
+ "\t0 exit\n"
+ "\t1 irq install\n"
+ "\t2 irq set_type\n"
+ "\t3 irq get_type\n"
+ "\t4 irq set_wake\n"
+ "\t5 irq get_wake\n"
+ "\t6 irq uninstall\n"
+ "operator: >> \n");
+
+ while(1)
+ {
+
+ fgets(operator, sizeof(operator), stdin);
+ fflush(stdin);
+ opt = atoi(operator);
+ switch (opt)
+ {
+ case 0:
+ printf("main exit\n");
+ return 0;
+ case 1:
+ {
+ printf("input>> irq \n");
+ memset(operator,0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ irq = atoi(operator);
+ printf("input>> trig_type \n");
+ memset(operator,0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ trig_type = atoi(operator);
+ ret = lynq_irq_install(irq, irq_test_handler, trig_type);
+ if (ret != 0)
+ {
+ printf("lynq_irq_install fail\n");
+ }
+ else
+ {
+ printf("lynq_irq_install success\n");
+ line = irq;
+ }
+ }
+ break;
+ case 2:
+ {
+ printf("input>> trig_type \n");
+ memset(operator,0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ trig_type = atoi(operator);
+ ret = lynq_irq_set_type(line, trig_type);
+ if (ret != 0)
+ {
+ printf("lynq_irq_set_type fail\n");
+ }
+ else
+ {
+ printf("lynq_irq_set_type success\n");
+ }
+ }
+ break;
+ case 3:
+ {
+ printf("input>> irq \n");
+ memset(operator,0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ irq = atoi(operator);
+ ret = lynq_irq_get_type(irq);
+ if (ret < 0)
+ {
+ printf("lynq_irq_get_type fail\n");
+ }
+ else
+ {
+ printf("lynq_irq_get_type success trig_type =%d\n",ret);
+ }
+ }
+ break;
+ case 4:
+ {
+ printf("input>> irq \n");
+ memset(operator,0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ irq = atoi(operator);
+ printf("input>> en \n");
+ memset(operator,0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ en = atoi(operator);
+ ret = lynq_irq_set_wake(irq, en);
+ if (ret != 0)
+ {
+ printf("lynq_irq_set_wake fail\n");
+ }
+ else
+ {
+ printf("lynq_irq_set_wake success\n");
+ }
+ }
+ break;
+ case 5:
+ {
+ printf("input>> irq \n");
+ memset(operator,0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ irq = atoi(operator);
+ ret = lynq_irq_get_wake(irq);
+ if (ret < 0)
+ {
+ printf("lynq_irq_get_wake fail\n");
+ }
+ else
+ {
+ printf("lynq_irq_get_wake success en = %d\n", ret);
+ }
+ }
+ break;
+ case 6:
+ {
+ printf("input>> irq \n");
+ memset(operator,0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ irq = atoi(operator);
+ ret = lynq_irq_uninstall(irq);
+ if (ret != 0)
+ {
+ printf("lynq_irq_uninstall fail\n");
+ }
+ else
+ {
+ printf("lynq_irq_uninstall success\n");
+ }
+ }
+ break;
+ default:
+ break;
+ }
+
+ }
+
+ return 0;
+}
+
+
diff --git a/mbtk/test/liblynq_lib/lynq_log_test.c b/mbtk/test/liblynq_lib/lynq_log_test.c
new file mode 100755
index 0000000..6dfcfb7
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq_log_test.c
@@ -0,0 +1,200 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <errno.h>
+#include <string.h>
+#include "lynq_deflog.h"
+
+int main(int argc, char *argv[])
+{
+ int err, value;
+ int cmdIdx = 0;
+ int ret = 0;
+ int i = 0;
+ char operator[10];
+ int opt = 0;
+ const char * module_name = "MBTK_QL_TEST";
+ log_level_enum *level = -1;
+
+ lynq_log_configuration_init("MBTK_QL_TEST");
+
+ while(1)
+ {
+
+ printf("=========log========\n"
+ "\t 0 lynq_syslog_set_file_size\n"
+ "\t 1 lynq_syslog_get_file_size\n"
+ "\t 2 lynq_syslog_set_file_rotate\n"
+ "\t 3 lynq_syslog_get_file_rotate\n"
+ "\t 4 lynq_set_log_level\n"
+ "\t 5 lynq_get_log_level\n"
+ "\t 6 lynq_notify_recalc_log_level\n"
+ "\t 7 test write log\n"
+ "\t 8 lynq_write_log_to_file_now\n"
+ "\t 9 lynq_stop_record_log\n"
+ "\t 10 lynq_syslog_control\n"
+ "\t 11 lynq_kernel_control\n"
+ "\t -1 EXIT \n"
+ "=========================\n");
+
+ printf("input opt \n");
+ scanf("%d",&opt);
+
+
+ switch(opt)
+ {
+ case 0://"lynq_syslog_set_file_size"
+ {
+ //fgets(arg_string, MAX_INPUT, stdin);
+ printf("please input size:\n");
+ scanf("%d", &value);
+ printf("Input value is %d\n",value);
+ ret = lynq_syslog_set_file_size(value);
+ if(ret < 0)
+ {
+ printf("lynq_syslog_set_file_size failed, ret=%d\n", ret);
+ }
+
+ break;
+ }
+ case 1://"lynq_syslog_get_file_size"
+ {
+ //ret = demo_lynq_syslog_get_file_size();
+ ret = lynq_syslog_get_file_size();
+ printf("lynq_syslog_get_file_size ret:%d!\n", ret);
+
+ break;
+ }
+ case 2://"lynq_syslog_set_file_rotate"
+ {
+ printf("please input count:\n");
+ scanf("%d", &value);
+ printf("Input value is %d\n",value);
+ ret = lynq_syslog_set_file_rotate(value);
+ if(ret < 0)
+ {
+ printf("lynq_syslog_set_file_r otate failed, ret=%d\n", ret);
+ }
+
+ break;
+ }
+ case 3://"lynq_syslog_get_file_rotate"
+ {
+ ret = lynq_syslog_get_file_rotate();
+ printf("lynq_syslog_get_file_rotate ret:%d!\n", ret);
+
+ break;
+ }
+ case 4://"lynq_set_log_level"
+ {
+ printf("please input level:\n");
+ scanf("%d", &value);
+ ret = lynq_set_log_level(module_name, value);
+ printf("lynq_set_log_level ret:%d!\n", ret);
+
+ break;
+ }
+ case 5://"lynq_get_log_level"
+ {
+ ret = lynq_get_log_level(module_name, &level);
+ printf("lynq_get_log_level ret:%d, level:%d!\n", ret, level);
+
+ break;
+ }
+ case 6://test write log
+ {
+ ret = lynq_notify_recalc_log_level(0);
+ printf("lynq_notify_recalc_log_level ret: %d!\n", ret);
+ break;
+ }
+ case 7://test write log
+ {
+
+ puts(lynq_read_log_version());
+ for(i=0;i<10;i++)
+ {
+ LYVERBLOG("LYNQ: Test LYVERBLOG\n");
+ LYERRLOG("LYNQ: Test LYERRLOG\n");
+ LYWARNLOG("LYNQ: Test LYWARNLOG\n");
+ LYINFLOG("LYNQ: Test LYINFLOG\n");
+ LYDBGLOG("LYNQ: Test LYDBGLOG\n");
+ lynq_log_global_output(LOG_VERBOSE, "LOG_VERBOSE test");
+ lynq_log_global_output(LOG_ERROR, "LOG_ERROR test");
+ lynq_log_global_output(LOG_WARNING, "LOG_WARNING test");
+ lynq_log_global_output(LOG_INFO, "LOG_INFO test");
+ lynq_log_global_output(LOG_DEBUG, "LOG_DEBUG test");
+ lynq_log_global_output(LOG_UNSET, "LOG_UNSET test");
+
+ lynq_log_debug("LYNQ: test lynq_log_debug");
+ lynq_log_verbose("LYNQ: test lynq_log_verbose");
+ lynq_log_error("LYNQ: test lynq_log_error");
+ lynq_log_info("LYNQ: test lynq_log_info");
+ lynq_log_warning("LYNQ: test lynq_log_warning");
+
+ }
+
+ printf("test write log end\n");
+ break;
+ }
+ case 8:
+ {
+ int ret = -1;
+ printf("Enter lynq_write_log_to_file_now ");
+
+ lynq_log_global_output(LOG_DEBUG, "lynq_write_log_to_file_now test buffer");
+
+ ret = lynq_write_log_to_file_now();
+ printf("lynq_write_log_to_file_now is %d \n",ret );
+ break;
+ }
+ case 9:
+ {
+ int ret = -1;
+ int opt = -1;
+
+ printf("enter stop record log function: 0 ON 1:OFF\n");
+ scanf("%d",&opt);
+ ret = lynq_stop_record_log(opt);
+ printf("lynq_stop_record_log ret is %d\n",ret);
+ break;
+ }
+ case 10:
+ {
+ int ret = -1;
+ printf("Enter lynq_syslog_control 0:OPEN 1:CLOSE\n");
+ int value = -1;
+ ret = scanf("%d",&value);
+ if(ret)
+ {
+ printf("input value is %d\n",value);
+ }
+ ret = lynq_syslog_control(value);
+ printf("lynq_write_log_to_file_now is %d \n",ret );
+ break;
+ }
+ case 11:
+ {
+ int ret = -1;
+ int value = -1;
+ printf("Enter lynq_kernel_control 2:OPEN 3:CLOSE\n");
+ ret = scanf("%d",&value);
+ if(ret)
+ {
+ printf("input value is %d\n",value);
+ }
+ ret = lynq_kernel_log_control(value);
+ printf("lynq_kernel_control is %d \n",ret );
+ break;
+ }
+
+ default://EXIT
+ {
+ printf("break\n");
+ return 0;
+ }
+ }
+ }
+
+ return 0;
+}
+
diff --git a/mbtk/test/liblynq_lib/lynq_nw_test.c b/mbtk/test/liblynq_lib/lynq_nw_test.c
new file mode 100755
index 0000000..faaf2f0
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq_nw_test.c
@@ -0,0 +1,519 @@
+#include "lynq_qser_network.h"
+#include "mbtk_type.h"
+#include "mbtk_info_api.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+
+
+char *tech_domain[] = {"NONE", "3GPP", "3GPP2"};
+char *radio_tech[] = {"unknown",
+ "TD_SCDMA", "GSM", "HSPAP", "LTE", "EHRPD", "EVDO_B",
+ "HSPA", "HSUPA", "HSDPA", "EVDO_A", "EVDO_0", "1xRTT",
+ "IS95B", "IS95A", "UMTS", "EDGE", "GPRS", "NONE"};
+
+void nw_event_ind_handler (
+ nw_client_handle_type h_nw,
+ u_int32_t ind_flag,
+ void *ind_msg_buf,
+ u_int32_t ind_msg_len,
+ void *contextPtr)
+{
+ switch(ind_flag) {
+ case NW_IND_VOICE_REG_EVENT_IND_FLAG:
+ {
+ QSER_NW_VOICE_REG_EVENT_IND_T *ind = (QSER_NW_VOICE_REG_EVENT_IND_T*)ind_msg_buf;
+ printf("Recv event indication : VOICE REG EVENT\n");
+
+ if(ind==NULL)
+ {
+ printf("ind is NULL\n");
+ break;
+ }
+
+ if(ind->registration_valid)
+ {
+ printf("voice_registration: \ntech_domain=%s, radio_tech=%s, roaming=%d, registration_state=%d\n",
+ tech_domain[ind->registration.tech_domain],
+ radio_tech[ind->registration.radio_tech],
+ ind->registration.roaming,
+ ind->registration.registration_state);
+ }
+ if(ind->registration_details_3gpp_valid)
+ {
+ printf("voice_registration_details_3gpp: \ntech_domain=%s, radio_tech=%s, mcc=%s, mnc=%s, roaming=%d, forbidden=%d, cid=0x%X, lac=%d, psc=%d, tac=%d\n",
+ tech_domain[ind->registration_details_3gpp.tech_domain],
+ radio_tech[ind->registration_details_3gpp.radio_tech],
+ ind->registration_details_3gpp.mcc,
+ ind->registration_details_3gpp.mnc,
+ ind->registration_details_3gpp.roaming,
+ ind->registration_details_3gpp.forbidden,
+ ind->registration_details_3gpp.cid,
+ ind->registration_details_3gpp.lac,
+ ind->registration_details_3gpp.psc,
+ ind->registration_details_3gpp.tac);
+ }
+
+ if(ind->registration_details_3gpp2_valid)
+ {
+ printf("voice_registration_details_3gpp2: \ntech_domain=%s, radio_tech=%s, mcc=%s, mnc=%s, roaming=%d, forbidden=%d, sid=%d, nid=%d, bsid=%d\n",
+ tech_domain[ind->registration_details_3gpp2.tech_domain],
+ radio_tech[ind->registration_details_3gpp2.radio_tech],
+ ind->registration_details_3gpp2.mcc,
+ ind->registration_details_3gpp2.mnc,
+ ind->registration_details_3gpp2.roaming,
+ ind->registration_details_3gpp2.forbidden,
+ ind->registration_details_3gpp2.sid,
+ ind->registration_details_3gpp2.nid,
+ ind->registration_details_3gpp2.bsid);
+ }
+
+ break;
+ }
+ case NW_IND_DATA_REG_EVENT_IND_FLAG:
+ {
+ QSER_NW_DATA_REG_EVENT_IND_T *ind = (QSER_NW_DATA_REG_EVENT_IND_T*)ind_msg_buf;
+
+ printf("Recv event indication : DATA REG EVENT\n");
+
+ if(ind==NULL)
+ {
+ printf("ind is NULL\n");
+ break;
+ }
+
+
+ if(ind->registration_valid)
+ {
+ printf("data_registration: \ntech_domain=%s, radio_tech=%s, roaming=%d, registration_state=%d\n",
+ tech_domain[ind->registration.tech_domain],
+ radio_tech[ind->registration.radio_tech],
+ ind->registration.roaming,
+ ind->registration.registration_state);
+ }
+ if(ind->registration_details_3gpp_valid)
+ {
+ printf("data_registration_details_3gpp: \ntech_domain=%s, radio_tech=%s, mcc=%s, mnc=%s, roaming=%d, forbidden=%d, cid=0x%X, lac=%d, psc=%d, tac=%d\n",
+ tech_domain[ind->registration_details_3gpp.tech_domain],
+ radio_tech[ind->registration_details_3gpp.radio_tech],
+ ind->registration_details_3gpp.mcc,
+ ind->registration_details_3gpp.mnc,
+ ind->registration_details_3gpp.roaming,
+ ind->registration_details_3gpp.forbidden,
+ ind->registration_details_3gpp.cid,
+ ind->registration_details_3gpp.lac,
+ ind->registration_details_3gpp.psc,
+ ind->registration_details_3gpp.tac);
+ }
+
+ if(ind->registration_details_3gpp2_valid)
+ {
+ printf("data_registration_details_3gpp2: \ntech_domain=%s, radio_tech=%s, mcc=%s, mnc=%s, roaming=%d, forbidden=%d, prl=%d, css=%d, sid=%d, nid=%d, bsid=%d\n",
+ tech_domain[ind->registration_details_3gpp2.tech_domain],
+ radio_tech[ind->registration_details_3gpp2.radio_tech],
+ ind->registration_details_3gpp2.mcc,
+ ind->registration_details_3gpp2.mnc,
+ ind->registration_details_3gpp2.roaming,
+ ind->registration_details_3gpp2.forbidden,
+ ind->registration_details_3gpp2.inPRL,
+ ind->registration_details_3gpp2.css,
+ ind->registration_details_3gpp2.sid,
+ ind->registration_details_3gpp2.nid,
+ ind->registration_details_3gpp2.bsid);
+ }
+
+ break;
+ }
+ case NW_IND_SIGNAL_STRENGTH_EVENT_IND_FLAG:
+ {
+ QSER_NW_SINGNAL_EVENT_IND_T *ind = (QSER_NW_SINGNAL_EVENT_IND_T*)ind_msg_buf;
+
+ printf("Recv event indication : SIGNAL STRENGTH EVENT\n");
+
+ if(ind==NULL)
+ {
+ printf("ind is NULL\n");
+ break;
+ }
+
+ if(ind->gsm_sig_info_valid)
+ {
+ printf("gsm_sig_info: rssi=%d\n",
+ ind->gsm_sig_info.rssi);
+ }
+
+ if(ind->wcdma_sig_info_valid)
+ {
+ printf("wcdma_sig_info: rssi=%d, ecio=%d\n",
+ ind->wcdma_sig_info.rssi,
+ ind->wcdma_sig_info.ecio);
+ }
+ if(ind->tdscdma_sig_info_valid)
+ {
+ printf("tdscdma_sig_info: rssi=%d, rscp=%d, ecio=%d, sinr=%d\n",
+ ind->tdscdma_sig_info.rssi,
+ ind->tdscdma_sig_info.rscp,
+ ind->tdscdma_sig_info.ecio,
+ ind->tdscdma_sig_info.sinr);
+ }
+ if(ind->lte_sig_info_valid)
+ {
+ printf("lte_sig_info: rssi=%d, rsrq=%d, rsrp=%d, snr=%d\n",
+ ind->lte_sig_info.rssi,
+ ind->lte_sig_info.rsrq,
+ ind->lte_sig_info.rsrp,
+ ind->lte_sig_info.snr);
+ }
+ if(ind->cdma_sig_info_valid)
+ {
+ printf("cdma_sig_info: rssi=%d, ecio=%d\n",
+ ind->cdma_sig_info.rssi,
+ ind->cdma_sig_info.ecio);
+ }
+ if(ind->hdr_sig_info_valid)
+ {
+ printf("hdr_sig_info: rssi=%d, ecio=%d, sinr=%d, io=%d\n",
+ ind->hdr_sig_info.rssi,
+ ind->hdr_sig_info.ecio,
+ ind->hdr_sig_info.sinr,
+ ind->hdr_sig_info.io);
+ }
+ break;
+ }
+ case NW_IND_IMS_REG_EVENT_IND_FLAG:
+ {
+ printf("Recv event indication : IMS REG EVENT\n");
+ printf("ind is NULL\n");
+
+ break;
+ }
+ default:
+ break;
+ }
+}
+
+
+
+int main(int argc, char *argv[])
+{
+ char operator[10];
+ int opt;
+ int lv_voll = 0;
+ int ret;
+ nw_client_handle_type handle = -1;
+ mbtk_log_init("radio", "NW_TEST");
+
+ printf("=========network main=========\n"
+ "\t0 exit\n"
+ "\t1 network init\n"
+ "\t2 network add rx msg handle\n"
+ "\t3 network band set config\n"
+ "\t4 network get operator name\n"
+ "\t5 network get reg status\n"
+ "\t6 network get signal strength\n"
+ "\t7 network set oos config\n"
+ "\t8 network get oos config\n"
+ "\t9 network set rf config\n"
+ "\t10 network get rf config\n"
+ "\t11 network set ims config\n"
+ "\t12 network get ims config\n"
+ "\t13 network deinit\n"
+ "operator: >> ");
+
+ while(1)
+ {
+
+ opt = -1;
+ fgets(operator, sizeof(operator), stdin);
+ fflush(stdin);
+ opt = atoi(operator);
+ switch (opt)
+ {
+ case 0:
+ printf("main exit\n");
+ return 0;
+ case 1:
+ ret = qser_nw_client_init(&handle);
+ printf("qser_nw_client_init ret = %d\n", ret);
+ break;
+ case 2:
+ ret = qser_nw_add_rx_msg_handler(handle, nw_event_ind_handler, NULL);
+ printf("qser_nw_add_rx_msg_handler ret = %d\n", ret);
+ break;
+ case 3:
+ {
+ //漫游开关现在不支持,所以就不用配置
+ printf("please input \n"
+ "\t1:GSM \n"
+ "\t2:WCDMA \n"
+ "\t4:CDMA \n"
+ "\t8:EVDO \n"
+ "\t16:LTE \n"
+ "\t32:TDSCDMA \n"
+ );
+ memset(operator,0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ opt = atoi(operator);
+ QSER_NW_CONFIG_INFO_T t_info;
+
+ t_info.preferred_nw_mode = opt;
+ ret = qser_nw_set_config(handle, &t_info);
+ printf("qser_nw_set_config ret = %d\n", ret);
+ }
+ break;
+ case 4:
+ {
+ QSER_NW_OPERATOR_NAME_INFO_T t_info;
+ int err = qser_nw_get_operator_name(handle, &t_info);
+ if(err)
+ {
+ printf("Error : %d\n", err);
+ } else
+ {
+ printf("Operator : %s, %s, %s, %s\n", t_info.long_eons, t_info.short_eons, t_info.mcc, t_info.mnc);
+ }
+ }
+ break;
+ case 5:
+ {
+ QSER_NW_REG_STATUS_INFO_T t_info;
+ int err = qser_nw_get_reg_status(handle, &t_info);
+ if(err)
+ {
+ printf("Error : %d\n", err);
+ }
+ else
+ {
+ if(t_info.voice_registration_valid)
+ {
+ printf("voice_registration: \ntech_domain=%s, radio_tech=%s, roaming=%d, registration_state=%d\n",
+ tech_domain[t_info.voice_registration.tech_domain],
+ radio_tech[t_info.voice_registration.radio_tech],
+ t_info.voice_registration.roaming,
+ t_info.voice_registration.registration_state);
+ }
+ if(t_info.data_registration_valid)
+ {
+ printf("data_registration: \ntech_domain=%s, radio_tech=%s, roaming=%d, registration_state=%d\n",
+ tech_domain[t_info.data_registration.tech_domain],
+ radio_tech[t_info.data_registration.radio_tech],
+ t_info.data_registration.roaming,
+ t_info.data_registration.registration_state);
+ }
+ if(t_info.voice_registration_details_3gpp_valid)
+ {
+ printf("voice_registration_details_3gpp: \ntech_domain=%s, radio_tech=%s, mcc=%s, mnc=%s, roaming=%d, forbidden=%d, cid=0x%X, lac=%d, psc=%d, tac=%d\n",
+ tech_domain[t_info.voice_registration_details_3gpp.tech_domain],
+ radio_tech[t_info.voice_registration_details_3gpp.radio_tech],
+ t_info.voice_registration_details_3gpp.mcc,
+ t_info.voice_registration_details_3gpp.mnc,
+ t_info.voice_registration_details_3gpp.roaming,
+ t_info.voice_registration_details_3gpp.forbidden,
+ t_info.voice_registration_details_3gpp.cid,
+ t_info.voice_registration_details_3gpp.lac,
+ t_info.voice_registration_details_3gpp.psc,
+ t_info.voice_registration_details_3gpp.tac);
+ }
+ if(t_info.data_registration_details_3gpp_valid)
+ {
+ printf("data_registration_details_3gpp: \ntech_domain=%s, radio_tech=%s, mcc=%s, mnc=%s, roaming=%d, forbidden=%d, cid=0x%X, lac=%d, psc=%d, tac=%d\n",
+ tech_domain[t_info.data_registration_details_3gpp.tech_domain],
+ radio_tech[t_info.data_registration_details_3gpp.radio_tech],
+ t_info.data_registration_details_3gpp.mcc,
+ t_info.data_registration_details_3gpp.mnc,
+ t_info.data_registration_details_3gpp.roaming,
+ t_info.data_registration_details_3gpp.forbidden,
+ t_info.data_registration_details_3gpp.cid,
+ t_info.data_registration_details_3gpp.lac,
+ t_info.data_registration_details_3gpp.psc,
+ t_info.data_registration_details_3gpp.tac);
+ }
+
+ if(t_info.voice_registration_details_3gpp2_valid)
+ {
+ printf("voice_registration_details_3gpp2: \ntech_domain=%s, radio_tech=%s, mcc=%s, mnc=%s, roaming=%d, forbidden=%d, sid=%d, nid=%d, bsid=%d\n",
+ tech_domain[t_info.voice_registration_details_3gpp2.tech_domain],
+ radio_tech[t_info.voice_registration_details_3gpp2.radio_tech],
+ t_info.voice_registration_details_3gpp2.mcc,
+ t_info.voice_registration_details_3gpp2.mnc,
+ t_info.voice_registration_details_3gpp2.roaming,
+ t_info.voice_registration_details_3gpp2.forbidden,
+ t_info.voice_registration_details_3gpp2.sid,
+ t_info.voice_registration_details_3gpp2.nid,
+ t_info.voice_registration_details_3gpp2.bsid);
+ }
+
+ if(t_info.data_registration_details_3gpp2_valid)
+ {
+ printf("data_registration_details_3gpp2: \ntech_domain=%s, radio_tech=%s, mcc=%s, mnc=%s, roaming=%d, forbidden=%d, sid=%d, nid=%d, bsid=%d\n",
+ tech_domain[t_info.data_registration_details_3gpp2.tech_domain],
+ radio_tech[t_info.data_registration_details_3gpp2.radio_tech],
+ t_info.data_registration_details_3gpp2.mcc,
+ t_info.data_registration_details_3gpp2.mnc,
+ t_info.data_registration_details_3gpp2.roaming,
+ t_info.data_registration_details_3gpp2.forbidden,
+ t_info.data_registration_details_3gpp2.sid,
+ t_info.data_registration_details_3gpp2.nid,
+ t_info.data_registration_details_3gpp2.bsid);
+ }
+
+ //printf("Data Reg: radio_tech = %d, lac = %x, cid = %x\n", reg.data_registration_details_3gpp.radio_tech, reg.data_registration_details_3gpp.lac, reg.data_registration_details_3gpp.cid);
+ //printf("Voice Reg: radio_tech = %d, lac = %x, cid = %x\n", reg.voice_registration_details_3gpp.radio_tech, reg.voice_registration_details_3gpp.lac, reg.voice_registration_details_3gpp.cid);
+ }
+ }
+ break;
+ case 6:
+ {
+ QSER_NW_SIGNAL_STRENGTH_INFO_T t_info;
+ int err = qser_nw_get_signal_strength(handle, &t_info);
+ if(err)
+ {
+ printf("Error : %d\n", err);
+ }
+ else
+ {
+ printf("qser_nw_get_signal_strength, ret=%d\n", err);
+ if(err==0)
+ {
+ printf("qser_solicited_signal_strength gsm_sig_info_valid = %d\n"
+ " gsm_sig_info.rssi = %d\n"
+ " wcdma _sig_info_valid = %d\n"
+ " wcdma_sig_info.rssi = %d\n"
+ " wcdma_sig_info.ecio = %d\n"
+ " tdscdma_sig_info_valid = %d\n"
+ " lte_sig_info_valid = %d\n"
+ " lte_sig_info.rssi = %d\n"
+ " lte_sig_info.rsrp = %d\n"
+ " lte_sig_info.rsrq = %d\n"
+ " lte_sig_info.snr = %d\n"
+ " cdma_sig_info_valid = %d\n"
+ " hdr_sig_info_valid = %d\n"
+ " nr_sig_info_valid = %d\n"
+ " nr_sig_info.ssRsrp = %d\n"
+ " nr_sig_info.ssRsrq = %d\n"
+ " nr_sig_info.ssSinr = %d\n"
+ " nr_sig_info.csiRsrp = %d\n"
+ " nr_sig_info.csiRsrq = %d\n"
+ " nr_sig_info.csiSinr = %d\n",
+ t_info.gsm_sig_info_valid, t_info.gsm_sig_info.rssi,
+ t_info.wcdma_sig_info_valid, t_info.wcdma_sig_info.rssi, t_info.wcdma_sig_info.ecio,
+ t_info.tdscdma_sig_info_valid,
+ t_info.lte_sig_info_valid, t_info.lte_sig_info.rssi, t_info.lte_sig_info.rsrp, t_info.lte_sig_info.rsrq, t_info.lte_sig_info.snr,
+ t_info.cdma_sig_info_valid,
+ t_info.hdr_sig_info_valid,
+ t_info.nr_sig_info_valid, t_info.nr_sig_info.ssRsrp, t_info.nr_sig_info.ssRsrq, t_info.nr_sig_info.ssSinr,
+ t_info.nr_sig_info.csiRsrp, t_info.nr_sig_info.csiRsrq, t_info.nr_sig_info.csiSinr);
+
+ }
+
+ }
+ }
+ break;
+ case 7:
+ {
+ QSER_NW_OOS_CONFIG_INFO_T pt_info_s;
+ memset(&pt_info_s, 0x00, sizeof(QSER_NW_OOS_CONFIG_INFO_T));
+ /*取值范围0-255,设置时间自定义
+ phase 1 5次 次数无法更改,这五次都是以10秒为一次的间隔搜网
+ phase 2 5次 次数无法更改,这五次都是以15秒为一次的间隔搜网
+ phase 3 不限制次数的秒数设置,第三阶段不限制次数以20秒为一次的间隔搜网
+ 如果要关闭OOS配置,则把min step max 全部配置为0即可
+ */
+ int p1,p2,p3;
+ printf("input phase 1 number:\n");
+ memset(operator, 0x0, 10);
+ fgets(operator, 10, stdin);
+ fflush(stdin);
+ p1 = atoi(operator);
+ printf("phase 1 number:%s\n", operator);
+
+ printf("input phase 2 number:\n");
+ memset(operator, 0x0, 10);
+ fgets(operator, 10, stdin);
+ fflush(stdin);
+ p2 = atoi(operator);
+ printf("phase 2 number:%s\n", operator);
+
+ printf("input phase 3 number:\n");
+ memset(operator, 0x0, 10);
+ fgets(operator, 10, stdin);
+ fflush(stdin);
+ p3 = atoi(operator);
+ printf("phase 3 number:%s\n", operator);
+
+ pt_info_s.type = QSER_NW_OOS_CFG_TYPE_FULL_BAND_SCAN;//平台提供自定义配置搜网时间间隔
+ {
+ pt_info_s.u.full_band_scan_info.t_min = p1;//phase 1
+ pt_info_s.u.full_band_scan_info.t_step = p2;//phase 2
+ pt_info_s.u.full_band_scan_info.t_num = 0;//可以不配置,并没有使用
+ pt_info_s.u.full_band_scan_info.t_max = p3;//phase 3
+ }
+ printf("set OOS %d %d %d \n",pt_info_s.u.full_band_scan_info.t_min, pt_info_s.u.full_band_scan_info.t_step, pt_info_s.u.full_band_scan_info.t_max);
+ //pt_info_s.type = QSER_NW_OOS_CFG_TYPE_FAST_SCAN;平台本身有历史频点优先处理的逻辑(无接口不需要我们进行处理)
+ ret = qser_nw_set_oos_config(handle, &pt_info_s);
+ printf("qser_nw_set_oos_config ret = %d\n", ret);
+ }
+ break;
+ case 8:
+ {
+ QSER_NW_OOS_CONFIG_INFO_T pt_info_g;
+ qser_nw_get_oos_config(handle, &pt_info_g);
+ if (pt_info_g.type == QSER_NW_OOS_CFG_TYPE_FULL_BAND_SCAN)
+ printf("TYPE: %d min: %d setp: %d max: %d\n", pt_info_g.type, pt_info_g.u.full_band_scan_info.t_min, pt_info_g.u.full_band_scan_info.t_step, pt_info_g.u.full_band_scan_info.t_max);
+ else
+ printf("type not supported \n");
+ }
+ break;
+ case 9:
+ {
+ printf("please input 0 or 1 or 4: \n");
+ memset(operator,0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ opt = atoi(operator);
+ printf("rf_mode: [%d]\n",opt);
+ ret = qser_nw_set_rf_mode(handle, opt);
+ printf("qser_nw_set_rf_mode ret = %d\n", ret);
+ }
+ break;
+ case 10:
+ {
+ int rf_t;
+ qser_nw_get_rf_mode(handle, &rf_t);
+ printf(">>>rf_mode = [%d]\n",rf_t);
+ }
+ break;
+ case 11:
+ {
+ E_QSER_NW_IMS_MODE_TYPE_T ims_mode;
+ printf("please input you want set ims mode (0: off; 1: volte enable \n");
+ scanf("%d", &ims_mode);
+ ret = qser_nw_set_ims_enable(handle, ims_mode);
+ printf("qser_nw_set_ims_enable %d ret = %d\n",ims_mode, ret);
+ }
+ break;
+ case 12:
+ {
+ QSER_NW_IMS_REG_STATUS_INFO_T t_info;
+ memset(&t_info, 0, sizeof(QSER_NW_IMS_REG_STATUS_INFO_T));
+ ret = qser_nw_get_ims_reg_status(handle, &t_info);
+ printf("qser_nw_get_ims_reg_status ret = %d, detail info:\n", ret);
+ if(ret == 0)
+ {
+ printf("ims_registration: registration_state=%d\n", t_info.registration_state);
+ }
+ }
+ break;
+ case 13:
+ qser_nw_client_deinit(handle);
+ break;
+ default:
+ break;
+ }
+
+ }
+
+ return 0;
+}
+
diff --git a/mbtk/test/liblynq_lib/lynq_qser_sms_test.c b/mbtk/test/liblynq_lib/lynq_qser_sms_test.c
new file mode 100755
index 0000000..56077f4
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq_qser_sms_test.c
@@ -0,0 +1,436 @@
+/**
+ * \file dtmf_test.c
+ * \brief A Documented file.
+ *
+ * Detailed description
+ * \Author: jinLuo
+ * \Version: 1.0.0
+ * \Date: 2022-12-1
+ */
+
+/******************************************************************************\
+ * Include files
+\******************************************************************************/
+#include <pthread.h>
+#include <time.h>
+#include <sys/ioctl.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <string.h>
+#include <stdio.h>
+#include <signal.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <errno.h>
+#include <string.h>
+#include <stdlib.h>
+#include <poll.h>
+#include <stdlib.h>
+
+#include <sys/ioctl.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include "lynq_qser_sms.h"
+#define MAX_LEN 15
+
+
+#if 0
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/types.h>
+#include <pthread.h>
+#include <unistd.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include <ctype.h>
+
+//#include"lynq-qser-sms-demo.h"
+
+
+#define SMS_BUF 64
+#define MSG_BUF 100
+
+int flag_init = 0;
+
+typedef uint32_t sim_client_handle_type;
+sms_client_handle_type ph_sms = 2022;
+sms_client_handle_type h_sms = 2022;
+
+
+int (*qser_sms_client_init)(sms_client_handle_type *ph_sms);
+int (*qser_sms_client_deinit)(sms_client_handle_type h_sms);
+int (*qser_sms_send_sms)(sms_client_handle_type h_sms, QSER_sms_info_t *pt_sms_info);
+int (*qser_sms_addrxmsghandler)(QSER_SMS_RxMsgHandlerFunc_t handlerPtr, void* contextPtr);
+int (*qser_sms_deletefromstorage)(sms_client_handle_type h_sms, QSER_sms_storage_info_t *pt_sms_storage);
+int (*qser_sms_getsmscenteraddress)(sms_client_handle_type h_sms, QSER_sms_service_center_cfg_t *set_sca_cfg);
+int (*qser_sms_setsmscenteraddress)(sms_client_handle_type h_sms, QSER_sms_service_center_cfg_t *get_sca_cfg);
+
+void qser_sms_handler(QSER_SMS_MsgRef msgRef, void* contextPtr) {
+ printf("[%s-%d] sms handler, msgRef->sms_data = %s\n", __FUNCTION__, __LINE__, msgRef->sms_data);
+}
+
+bool isNumeric(char *phnum) {
+ int length = strlen(phnum);
+
+ if (length == 0) {
+ return false;
+ }
+
+ if (phnum[0] != '+' && (phnum[0] < '0' || phnum[0] > '9')) {
+ return false;
+ }
+
+ if (phnum[0] == '+' && length < 3) {
+ return false;
+ }
+
+ for (int i = 1; i < length; i++) {
+ if (phnum[i] < '0' || phnum[i] > '9') {
+ return false;
+ }
+ }
+
+ return true;
+}
+
+//以下示例默认为所有API 执行都成功的情况下,依次执行后续API
+int main(int argc, char *argv[])
+{
+ int ret = 0;
+ //char phnum[SMS_BUF]={0};
+
+ //const char *lynq_libpath_sms = "/lib/liblynq-qser-sms.so";
+ const char *lynq_libpath_sms = "/lib/liblynq_lib.so";
+ void *dlHandle_sms = dlopen(lynq_libpath_sms, RTLD_NOW);
+
+ if (dlHandle_sms == NULL)
+ {
+ printf("dlopen dlHandle_sms failed: %s\n", dlerror());
+ exit(EXIT_FAILURE);
+ }
+
+ if(argc != 2 || !isNumeric(argv[1]))
+ {
+ printf("[%s][%d] please input correct phnum\n",__FUNCTION__,__LINE__);
+ exit(1);
+ }
+
+ qser_sms_client_init = (int(*)(sms_client_handle_type *ph_sms))dlsym(dlHandle_sms,"qser_sms_client_init");
+ if(NULL != qser_sms_client_init)
+ {
+ ret = qser_sms_client_init(&ph_sms);
+ if(ret == 0)
+ {
+ printf("Run qser_sms_client_init\n");
+ }else{
+ printf("qser_sim_client_init error\n");
+ }
+ }else{
+ printf("qser_sim_client_init dlsym error\n");
+ }
+
+ sleep(2);
+
+ qser_sms_addrxmsghandler = (int(*)(QSER_SMS_RxMsgHandlerFunc_t handlerPtr, void* contextPtr))dlsym(dlHandle_sms,"qser_sms_addrxmsghandler");
+
+ if(NULL != qser_sms_addrxmsghandler)
+ {
+ ret = qser_sms_addrxmsghandler(qser_sms_handler, NULL);
+ if(ret == 0)
+ {
+ printf("qser_sms_addrxmsghandler success");
+ }else{
+ printf("qser_sms_addrxmsghandler error, ret = %d\n", ret);
+ }
+ }else{
+ printf("qser_sms_addrxmsghandler dlsym error\n");
+ }
+
+ QSER_sms_service_center_cfg_t get_sca_cfg;
+ qser_sms_getsmscenteraddress = (int (*)(sms_client_handle_type h_sms, QSER_sms_service_center_cfg_t *get_sca_cfg))dlsym(dlHandle_sms,"qser_sms_getsmscenteraddress");
+ if(NULL != qser_sms_getsmscenteraddress)
+ {
+ ret = qser_sms_getsmscenteraddress(h_sms, &get_sca_cfg);
+ if(ret == 0)
+ {
+ printf("get smsc success,service_center_addr = %s\n",get_sca_cfg.service_center_addr);
+ }else{
+ printf("get smsc error, ret = %d\n", ret);
+ }
+ }else{
+ printf("qser_sms_getsmscenteraddress dlsym error\n");
+ }
+ sleep(1);
+ QSER_sms_service_center_cfg_t set_sca_cfg;
+ strncpy(set_sca_cfg.service_center_addr, "+8613800280500", 14);//smsc +8613800280500成都号码 +8613800230500黑龙江
+ qser_sms_setsmscenteraddress = (int (*)(sms_client_handle_type h_sms, QSER_sms_service_center_cfg_t *set_sca_cfg))dlsym(dlHandle_sms,"qser_sms_setsmscenteraddress");
+ if(NULL != qser_sms_setsmscenteraddress)
+ {
+ ret = qser_sms_setsmscenteraddress(h_sms, &set_sca_cfg);
+ if(ret == 0)
+ {
+ printf("set smsc success");
+ }else{
+ printf("set smsc error, ret = %d\n", ret);
+ }
+ }else{
+ printf("qser_sms_setsmscenteraddress dlsym error\n");
+ }
+
+ //再次查询是否设置成功
+ sleep(1);
+ qser_sms_getsmscenteraddress = (int (*)(sms_client_handle_type h_sms, QSER_sms_service_center_cfg_t *get_sca_cfg))dlsym(dlHandle_sms,"qser_sms_getsmscenteraddress");
+ if(NULL != qser_sms_getsmscenteraddress)
+ {
+ ret = qser_sms_getsmscenteraddress(h_sms, &get_sca_cfg);
+ if(ret == 0)
+ {
+ printf("get smsc success,service_center_addr = %s\n",get_sca_cfg.service_center_addr);
+ }else{
+ printf("get smsc error, ret = %d\n", ret);
+ }
+ }else{
+ printf("qser_sms_getsmscenteraddress dlsym error\n");
+ }
+
+
+ //test 7bit
+ //char telephony_num[SMS_BUF] = {};
+ char msg[MSG_BUF] = {};
+ QSER_sms_info_t pt_sms_info;
+ //sprintf(telephony_num,"18981904623");//请用户务必替换此号码,随意向运营商发短消息极有可能被封号。
+ sprintf(msg,"hello");
+ strncpy(pt_sms_info.src_addr, argv[1], SMS_BUF);
+ strncpy(pt_sms_info.sms_data, msg, MSG_BUF);
+ pt_sms_info.format = QSER_SMS_7BIT;
+ // printf("[%s,%d] src_addr=%s, telephony_num = %s\n",__FUNCTION__,__LINE__, pt_sms_info.src_addr, telephony_num);
+ printf("[%s,%d] sms_data=%s, msg = %s\n",__FUNCTION__,__LINE__, pt_sms_info.sms_data, msg);
+
+ sleep(120);
+
+ //test ucs2
+ //char telephony_num[SMS_BUF] = {};
+ char msg[MSG_BUF] = {};
+ QSER_sms_info_t pt_sms_info;
+ //sprintf(telephony_num,"18981904623");//请用户务必替换此号码,随意向运营商发短消息极有可能被封号。
+ sprintf(msg,"你好吗");
+ strncpy(pt_sms_info.src_addr, argv[1], SMS_BUF);
+ strncpy(pt_sms_info.sms_data, msg, MSG_BUF);
+ pt_sms_info.format = QSER_SMS_UCS2;
+ // printf("[%s,%d] src_addr=%s, telephony_num = %s\n",__FUNCTION__,__LINE__, pt_sms_info.src_addr, telephony_num);
+ printf("[%s,%d] sms_data=%s, msg = %s\n",__FUNCTION__,__LINE__, pt_sms_info.sms_data, msg);
+
+ qser_sms_send_sms = (int (*)(sms_client_handle_type h_sms, QSER_sms_info_t *pt_sms_info))dlsym(dlHandle_sms,"qser_sms_send_sms");
+ if(NULL != qser_sms_send_sms)
+ {
+ ret = qser_sms_send_sms(h_sms, &pt_sms_info);
+ if(ret == 0)
+ {
+ printf("send sms success");
+ }else{
+ printf("send sms error, ret = %d\n", ret);
+ }
+ }else{
+ printf("qser_sms_send_sms dlsym error\n");
+ }
+
+ sleep(120);//在此期间向模组发送短消息,即可触发“接受新短消息事件”。
+ qser_sms_client_deinit = (int (*)(sms_client_handle_type h_sms))dlsym(dlHandle_sms,"qser_sms_client_deinit");
+ if(NULL != qser_sms_client_deinit)
+ {
+ ret = qser_sms_client_deinit(h_sms);
+ if(ret == 0)
+ {
+ printf("sms deinit success");
+ }else{
+ printf("sms deinit error, ret = %d\n", ret);
+ }
+ }else{
+ printf("qser_sms_client_deinit dlsym error\n");
+ }
+
+}
+
+#else
+
+void qser_sms_handler(QSER_SMS_MsgRef msgRef, void* contextPtr) {
+ printf("[%s-%d] sms handler, msgRef->sms_data = %s\n", __FUNCTION__, __LINE__, msgRef->sms_data);
+}
+
+
+int main(int argc, char *argv[])
+{
+ char operator[10];
+ char serNum[50] = {0};
+ char phone_number[MAX_LEN] ={0};
+ int opt;
+ int ret, uToken;
+ sms_client_handle_type handle = -1;
+ QSER_sms_info_t test_sms_info;
+ QSER_sms_service_center_cfg_t test_sca_cfg;
+ QSER_sms_storage_info_t test_sms_storage;
+ mbtk_log_init("radio", "SMS_TEST");
+
+ printf("=========sms main=========\n"
+ "\t0 exit\n"
+ "\t1 sms init\n"
+ "\t2 send text sms\n"
+ "\t3 wait receive new sms\n"
+ "\t4 send PDU sms\n"
+ "\t5 //delete sms list\n"
+ "\t6 delete sms\n"
+ "\t7 query service number\n"
+ "\t8 set service number\n"
+ "\t9 deinit sms\n"
+ "operator: >> \n");
+
+ while(1)
+ {
+ opt = -1;
+ scanf("%d", &opt);;
+ fflush(stdin);
+ switch (opt)
+ {
+ case 0:
+ printf("main exit\n");
+ return 0;
+ case 1:
+ {
+ ret = qser_sms_client_init(&handle);
+ if(ret == 0)
+ printf("Run qser_sms_client_init success\n");
+ else
+ printf("qser_sim_client_init error\n");
+ }
+ break;
+ case 2:
+ {
+ memset(&test_sms_info, 0x00, sizeof(QSER_sms_info_t));
+ char *tmp = "all man hello world";
+ printf("input phone number:\n");
+ memset(phone_number, 0x0, MAX_LEN);
+ //fgets(phone_number, MAX_LEN, stdin);
+ scanf("%s", phone_number);
+ fflush(stdin);
+ int len = strlen(tmp);
+ int num_len = strlen(phone_number);
+ test_sms_info.format = 0;
+ memcpy(test_sms_info.sms_data, tmp, len);
+ memcpy(test_sms_info.src_addr, phone_number, num_len);
+ ret = qser_sms_send_sms(handle, &test_sms_info);
+ if(ret == 0)
+ printf("Run qser_sms_send_sms success\n");
+ else
+ printf("qser_sms_send_sms error\n");
+ }
+ break;
+ case 3:
+ {
+ ret = qser_sms_addrxmsghandler(qser_sms_handler, NULL);
+ if(ret == 0)
+ printf("Run qser_sms_addrxmsghandler success\n");
+ else
+ printf("qser_sms_addrxmsghandler error\n");
+ }
+ break;
+ case 4:
+ {
+ memset(&test_sms_info, 0x00, sizeof(QSER_sms_info_t));
+ char *tmp = "你好";
+ printf("input phone number:\n");
+ memset(phone_number, 0x0, MAX_LEN);
+ scanf("%s", phone_number);
+ fflush(stdin);
+ int len = strlen(tmp);
+ int num_len = strlen(phone_number);
+ test_sms_info.format = 2;
+ memcpy(test_sms_info.sms_data, tmp, len);
+ memcpy(test_sms_info.src_addr, phone_number, num_len);
+ ret = qser_sms_send_sms(handle, &test_sms_info);
+ if(ret == 0)
+ printf("Run qser_sms_send_sms success\n");
+ else
+ printf("qser_sms_send_sms error\n");
+ }
+ break;
+ case 5:
+ {
+ /*
+ char list_del[1024] = {0};
+
+ if (strcmp(list_del, "") == 0)
+ printf("list_del = NULL\n");
+ else
+ printf("list_del = [%s]\n",list_del);
+ */
+ }
+ break;
+ case 6:
+ {
+ memset(&test_sms_storage, 0x00, sizeof(QSER_sms_storage_info_t));
+ memset(operator,0x00, sizeof(operator));
+ printf("please input index \n");
+ scanf("%s", operator);
+ //fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ opt = atoi(operator);
+ int t_index = opt;
+ test_sms_storage.storage_idx = t_index;
+ ret = qser_sms_deletefromstorage(handle, &test_sms_storage);
+ if(ret == 0)
+ printf("Run qser_sms_deletefromstorage success\n");
+ else
+ printf("qser_sms_deletefromstorage error\n");
+ }
+ break;
+ case 7:
+ {
+ memset(&test_sca_cfg, 0x00, sizeof(QSER_sms_service_center_cfg_t));
+ ret = qser_sms_getsmscenteraddress(handle,&test_sca_cfg);
+ if(!ret)
+ printf("get_smsc:%s success\n", test_sca_cfg.service_center_addr);
+ else
+ printf("qser_sms_getsmscenteraddress error\n");
+ }
+ break;
+ case 8:
+ {
+ memset(&test_sca_cfg, 0x00, sizeof(QSER_sms_service_center_cfg_t));
+ printf("input phone number:\n");
+ memset(phone_number, 0x0, MAX_LEN);
+ fgets(phone_number, MAX_LEN, stdin);
+ fflush(stdin);
+ int len = strlen(phone_number);
+ memcpy(test_sca_cfg.service_center_addr, phone_number, len);
+ ret= qser_sms_setsmscenteraddress(handle, &test_sca_cfg);
+ if(ret == 0)
+ printf("Run qser_sms_setsmscenteraddress success\n");
+ else
+ printf("qser_sms_setsmscenteraddress error\n");
+ }
+ break;
+ case 9:
+ {
+ ret = qser_sms_client_deinit(handle);
+ if(ret == 0)
+ printf("Run qser_sms_client_deinit success\n");
+ else
+ printf("qser_sms_client_deinit error\n");
+ }
+ break;
+ default:
+ break;
+ }
+ }
+
+ return 0;
+}
+
+#endif
+
+
+
diff --git a/mbtk/test/liblynq_lib/lynq_sleep_test.c b/mbtk/test/liblynq_lib/lynq_sleep_test.c
new file mode 100755
index 0000000..5366ef5
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq_sleep_test.c
@@ -0,0 +1,187 @@
+#include "lynq-qser-autosuspend.h"
+
+#include <stdio.h>
+#include <unistd.h>
+#include <stddef.h>
+#include "mbtk_type.h"
+#include "mbtk_log.h"
+
+static void qser_lpm_handler(qser_lpm_edge_t edge_state)
+{
+ printf("this is qser_lpm_handler, edge_state=%d\n", edge_state);
+}
+
+
+int main(int argc, char *argv[])
+{
+ char operator[10];
+ int opt;
+ int lv_voll = 0;
+ int fd_t;
+ mbtk_log_init("radio", "SLEEP_TEST");
+
+ printf("=========sleep main=========\n"
+ "\t0 exit\n"
+ "\t1 autosuspend enable\n"
+ "\t2 wakelock create\n"
+ "\t3 wakelock lock\n"
+ "\t4 wakelock unlock\n"
+ "\t5 wakelock destroy\n"
+ "\t6 whitelist set\n"
+ "\t7 whitelist get\n"
+ "\t8 lpm init\n"
+ "\t9 lpm destroy\n"
+ "operator: >> \n");
+
+ while(1)
+ {
+ fgets(operator, sizeof(operator), stdin);
+ fflush(stdin);
+ opt = atoi(operator);
+ switch (opt)
+ {
+ case 0:
+ printf("main exit\n");
+ return 0;
+ case 1:
+ {
+ printf(">>>>>Input 0 or 1<<<<<\n");
+ char tmp_en[4]={0};
+ memset(tmp_en, 0x00, sizeof(tmp_en));
+ fgets(tmp_en, sizeof(tmp_en)-1, stdin);
+ fflush(stdin);
+
+ if (tmp_en[0] == '0' || tmp_en[0] == '1')
+ qser_autosuspend_enable(tmp_en[0]);
+ else
+ printf(">>>>>re Input 0 or 1 error<<<<<\n");
+ }
+ break;
+ case 2:
+ {
+ printf(">>>>>Input name<<<<<\n");
+ char t_name[64]={0};
+ int len_name;
+ char tmp_c[64]={0};
+ memset(tmp_c, 0x00, sizeof(tmp_c));
+ fgets(tmp_c, sizeof(tmp_c)-1, stdin);
+ fflush(stdin);
+ len_name = strlen(tmp_c)-1;
+ strncpy(t_name, tmp_c, len_name);
+ printf(">>>>>name=[%s] name_len=[%d]<<<<<\n",t_name, len_name);
+
+ fd_t = qser_wakelock_create(t_name, len_name);
+ if (fd_t == -1)
+ {
+ printf(">>>>>Output error =[%d]<<<<<\n",fd_t);
+ }
+ else
+ {
+ printf(">>>>>Output ID NUM =[%d]<<<<<\n",fd_t);
+ }
+ }
+ break;
+ case 3:
+ {
+ printf(">>>>>Input ID NUM<<<<<\n");
+ char tmp_l[127]={0};
+ fgets(tmp_l, sizeof(tmp_l), stdin);
+ fflush(stdin);
+ fd_t = atoi(tmp_l);
+ fd_t = qser_wakelock_lock(fd_t);
+ if (fd_t == -1)
+ {
+ printf(">>>>>Output error =[%d]<<<<<\n",fd_t);
+ }
+ else
+ {
+ printf(">>>>>Output succuess<<<<<\n");
+ }
+ }
+ break;
+ case 4:
+ {
+ printf(">>>>>Input ID NUM<<<<<\n");
+ char tmp_ul[127]={0};
+ memset(tmp_ul, 0x00, sizeof(tmp_ul));
+ fgets(tmp_ul, sizeof(tmp_ul)-1, stdin);
+ fflush(stdin);
+ fd_t = atoi(tmp_ul);
+ fd_t = qser_wakelock_unlock(fd_t);
+ if (fd_t == -1)
+ {
+ printf(">>>>>Output error =[%d]<<<<<\n",fd_t);
+ }
+ else
+ {
+ printf(">>>>>Output succuess<<<<<\n");
+ }
+ }
+ break;
+ case 5:
+ {
+ printf(">>>>>Input ID NUM<<<<<\n");
+ char tmp_d[127]={0};
+ memset(tmp_d, 0x00, sizeof(tmp_d));
+ fgets(tmp_d, sizeof(tmp_d)-1, stdin);
+ fflush(stdin);
+ fd_t = atoi(tmp_d);
+ fd_t = qser_wakelock_destroy(fd_t);
+ if (fd_t == -1)
+ {
+ printf(">>>>>Output error =[%d]<<<<<\n",fd_t);
+ }
+ else
+ {
+ printf(">>>>>Output succuess<<<<<\n");
+ }
+ }
+ break;
+ case 6:
+ {
+ printf(">>>>>Input whitelish NUM 4位(eg:1010) <<<<<\n");
+ char whitelish[16]={0};
+ int len_whitelish;
+ char tmp[16]={0};
+ memset(tmp, 0x00, sizeof(tmp));
+ fgets(tmp, sizeof(tmp)-1, stdin);
+ fflush(stdin);
+ len_whitelish = strlen(tmp)-1;
+
+ strncpy(whitelish, tmp, len_whitelish);
+ printf(">>>set tmp =[%s] list = [%s] len_whitelish =[%d]\n",tmp, whitelish,len_whitelish);
+
+ qser_whitelist_set(whitelish);
+ }
+ break;
+ case 7:
+ {
+ char whitelish_get[10]={0};
+
+ qser_whitelist_get(whitelish_get);
+ printf(">>>get list = [%s]\n", whitelish_get);
+ }
+ break;
+ case 8:
+ {
+ qser_pm_cfg_t *qser_lpm_cfg = NULL;
+ qser_lpm_cfg = (qser_pm_cfg_t *)malloc(sizeof(qser_pm_cfg_t));
+ qser_lpm_cfg->wakeupin.wakeupin_pin = 50;
+ qser_lpm_cfg->wakeupin.wakeupin_edge = E_QL_LPM_FALLING;
+ qser_lpm_init(qser_lpm_handler, qser_lpm_cfg);
+ free(qser_lpm_cfg);
+ }
+ break;
+ case 9:
+ qser_lpm_deinit();
+ break;
+
+ default:
+ break;
+ }
+
+ }
+
+ return 0;
+}
+
diff --git a/mbtk/test/liblynq_lib/lynq_time_test.c b/mbtk/test/liblynq_lib/lynq_time_test.c
new file mode 100755
index 0000000..886f4d3
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq_time_test.c
@@ -0,0 +1,114 @@
+#include "lynq_systime.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+
+
+
+int main()
+{
+ char operator[10];
+ int opt;
+ time_src_status_s time_src ={0};
+ unsigned long ulsec =0;
+ int en;
+
+ while(1)
+ {
+ printf("=========time main=========\n"
+ "\t0 exit\n"
+ "\t1 ntp_sync_time\n"
+ "\t2 modem_time_enable\n"
+ "\t3 gnss_time_enable\n"
+ "\t4 user_set_time\n"
+ "\t5 lynq_sync_time_from_rtc(don't support)\n"
+ "\t6 lynq_get_time_src_status\n"
+ "\t7 lynq_set_rtc_time(don't support)\n"
+ "\t8 lynq_get_rtc_time(don't support)\n"
+ "operator: >> ");
+
+
+ fgets(operator, sizeof(operator), stdin);
+ fflush(stdin);
+ opt = atoi(operator);
+ switch (opt)
+ {
+ case 0:
+ printf("main exit\n");
+ return 0;
+ case 1:
+ {
+ printf(">>>>>Input 0 or 1<<<<<\n");
+ memset(operator, 0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ en = atoi(operator);
+ //enable set time from ntp
+ if (en == 0 || en == 1)
+ ntp_sync_time(en);
+ else
+ printf(">>>>>RE Input 0 or 1<<<<<\n");
+ }
+ break;
+ case 2:
+ {
+ printf(">>>>>Input 0 or 1<<<<<\n");
+ memset(operator, 0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ en = atoi(operator);
+ //enable set time from nitz
+ if (en == 0 || en == 1)
+ modem_time_enable(en);
+ else
+ printf(">>>>>RE Input 0 or 1<<<<<\n");
+ }
+ break;
+ case 3:
+ {
+ printf(">>>>>Input 0 or 1<<<<<\n");
+ memset(operator, 0x00, sizeof(operator));
+ fgets(operator, sizeof(operator)-1, stdin);
+ fflush(stdin);
+ en = atoi(operator);
+ //enable set time from gnss
+ if (en == 0 || en == 1)
+ gnss_time_enable(en);
+ else
+ printf(">>>>>RE Input 0 or 1<<<<<\n");
+ }
+ break;
+ case 4:
+ //enable set time from user
+ user_set_time("2024-01-09", "11:30");
+ break;
+ case 5:
+ // RTC TIME set to system
+ lynq_sync_time_from_rtc();
+ break;
+ case 6:
+ //check sysytem type
+ lynq_get_time_src_status (&time_src);
+ printf("time source status are: \nntp=%d\nnitz=%d\ngnss=%d\n",time_src.ntp,time_src.nitz, time_src.gnss);
+ break;
+ case 7:
+ // system time set to RTC
+ lynq_set_rtc_time();
+ break;
+ case 8:
+ // get RTC time
+ lynq_get_rtc_time(&ulsec);
+ break;
+ default:
+ break;
+ }
+
+ sleep(1);
+ }
+
+ return 0;
+}
+
+
+
+
diff --git a/mbtk/test/liblynq_lib/lynq_wifi_test.c b/mbtk/test/liblynq_lib/lynq_wifi_test.c
new file mode 100755
index 0000000..077c7e3
--- /dev/null
+++ b/mbtk/test/liblynq_lib/lynq_wifi_test.c
@@ -0,0 +1,55 @@
+#include "sta_cli.h"
+#include "lynq_wifi.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+
+
+
+
+#define MAX_LEN 15
+
+
+void lynq_wifi_event_handle_sta_demo(lynq_wifi_sta_scan_list_t *event)
+{
+ int i = 0;
+ for (i = 0; i < event->cnt; i++)
+ {
+ printf("[lynq-wifi-demo] %s : ap[%d]:%s,%d,%d,%d,%s,%d,%d,%d\n", __func__, i,
+ event->info[i].essid, event->info[i].auth,
+ event->info[i].cipher, event->info[i].channel, event->info[i].bssid,
+ event->info[i].signal_level,event->info[i].frequency,event->info[i].signal);
+ }
+}
+
+
+
+int main(int argc, char const *argv[])
+{
+ lynq_wifi_sta_param_t sta_param;
+ lynq_wifi_sta_status_t sta_status;
+
+ qser_wifi_enable();
+ qser_wifi_sta_param_get(&sta_param);
+ qser_wifi_register_handle(NULL, lynq_wifi_event_handle_sta_demo, NULL);
+ qser_wifi_sta_start_scan();
+ qser_wifi_sta_start();
+ qser_wifi_sta_get_status(&sta_status);
+
+
+ // qser_wifi_sta_stop();
+
+ // qser_wifi_disable();
+
+ //qser_wifi_sta_param_get(&sta_param);
+ /*
+ strcpy(sta_param.ssid, "test");
+ strcpy(sta_param.passwd, "123456");
+ printf("test111");
+ qser_wifi_sta_param_set(&sta_param);
+ */
+
+
+
+ return 0;
+}
diff --git a/mbtk/test/liblynq_lib/qser_data_call_test.c b/mbtk/test/liblynq_lib/qser_data_call_test.c
new file mode 100755
index 0000000..0d4d9f2
--- /dev/null
+++ b/mbtk/test/liblynq_lib/qser_data_call_test.c
@@ -0,0 +1,380 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <errno.h>
+#include <sys/socket.h>
+#include <sys/un.h>
+#include <netinet/in.h>
+#include <pthread.h>
+#include <sys/epoll.h>
+#include <string.h>
+#include <fcntl.h>
+#include <signal.h>
+
+#include "lynq-qser-data.h"
+#include "mbtk_log.h"
+
+static void help()
+{
+ printf("apn_get <cid> : Get current apns.\n");
+ printf("apn_del <cid> : del apns.\n");
+ printf("apn_list <cid> : list apns.\n");
+ printf("apn_set <cid> <0/1/2/3> <apn> <apn_type> [<user> <pass> <(0 1)/2/3>] : \n");
+ printf("Set apn (1-6) (IPV4/PPP/IPV6/IPV4V6) (150) (iot_net_i) (127) (127) (NONE/PAP/CHAP).\n");
+ printf("apn_add <0/1/2/3> <apn> <apn_type> [<user> <pass> <(0 1)/2/3>] : \n");
+ printf("data_call <0/1/2/3> <cid> <type> <re-con> <user> <pass>: Stop/Start/State data call.\n");
+ printf("data_call <0/1/2/3> <cid> <IPV4/IPV6/IPV4V6> [<0/1> <user> <pass>].\n");
+}
+
+static int proc_exit()
+{
+ qser_data_call_destroy();
+ return 0;
+}
+
+static void sig_process(int sig)
+{
+ LOGI("I got signal %d\n", sig);
+ switch(sig)
+ {
+ case SIGINT: // Ctrl + C
+ {
+ LOGI("Exit by SIGINT.\n");
+ proc_exit();
+ exit(0);
+ }
+ case SIGQUIT: // Ctrl + \ (类似 SIGINT ,但要产生core文件)
+ {
+ LOGI("Exit by SIGQUIT.\n");
+ proc_exit();
+ exit(0);
+ }
+ case SIGTERM:// 默认kill (同 SIGKILL ,但 SIGKILL 不可捕获)
+ {
+ LOGI("Exit by SIGTERM.\n");
+ proc_exit();
+ exit(0);
+ }
+ case SIGTSTP:// Ctrl + Z (同 SIGSTOP ,但 SIGSTOP 不可捕获)
+ {
+ LOGI("Exit by SIGTSTP.\n");
+ exit(0);
+ }
+ case SIGSEGV: // 如空指针
+ {
+ LOGI("Exit by SIGSEGV.\n");
+ exit(0);
+ }
+ default:
+ {
+ LOGI("Unknown sig:%d\n",sig);
+ break;
+ }
+ }
+}
+
+static void data_call_status_cb(qser_data_call_state_s *state)
+{
+ printf("entry data_call_status_cb\n");
+ if(state == NULL)
+ {
+ printf("state is NULL\n");
+ }
+ printf("DATA_DEMO_CALL_BACK: profile_idx=%d, name=%s, ip_family=%d, state=%d, error=%d\n"
+ , state->profile_idx, state->name, state->ip_family, state->state, state->err);
+}
+
+int main(int argc, char *argv[])
+{
+ signal(SIGINT, sig_process);
+ signal(SIGQUIT, sig_process);
+ signal(SIGTERM, sig_process);
+ //signal(SIGTSTP, sig_process);
+ //signal(SIGSEGV, sig_process);
+
+ mbtk_log_init(NULL,"MBTK_QSER_DATA_CALL_TEST");
+
+ //test2(0, "192.168.1.198");
+ //test2(1, "2409:8162:140:cd3c:1:2:1494:72ba");
+ //test2(1, "254.128.0.0.0.0.0.0.0.1.0.2.144.5.212.239");
+ //test2(1, "2400:3200::1");
+
+ int err = qser_data_call_init(data_call_status_cb);
+ if(err)
+ {
+ printf("qser_data_call_init fail.");
+ return -1;
+ }
+
+ printf(">>>>>>>>>>>>>>>>>>>>>>>>Enter cmd:\n");
+ char cmd[1024];
+ while(1)
+ {
+ memset(cmd, 0, 1024);
+ if(fgets(cmd, 1024, stdin))
+ {
+ char *ptr = cmd + strlen(cmd) - 1;
+ while(ptr >= cmd && (*ptr == '\r' || *ptr == '\n'))
+ {
+ *ptr-- = '\0';
+ }
+
+ if(!strncasecmp(cmd, "apn", 3)){
+ if(!strncasecmp(cmd, "apn_get", 7)) { // Get apn
+ char *ptr = strstr(cmd, " ");
+ if(ptr == NULL)
+ continue;
+ while(*ptr != '\0' && *ptr == ' ')
+ ptr++;
+ int cid = atoi(ptr);
+ qser_apn_info_s qser_apn = {0};
+ err = qser_apn_get(cid, &qser_apn);
+ if(err) {
+ printf("Error : %d\n", err);
+ } else {
+ printf("APN : %d, %d, %s, %s, %s, %d, %s.\n",qser_apn.profile_idx, qser_apn.pdp_type, qser_apn.apn_name, qser_apn.username, qser_apn.password, qser_apn.auth_proto, qser_apn.apn_type);
+ }
+ } else if(!strncasecmp(cmd, "apn_list", 8)){
+ qser_apn_info_list_s apn_list = {0};
+ err = qser_apn_get_list(&apn_list);
+ if(err)
+ {
+ printf("Error : %d\n", err);
+ }
+ else
+ {
+ printf("cnt: %d.\n", apn_list.cnt);
+ int i = 0;
+ for(i = 0; i < apn_list.cnt; i++)
+ {
+ printf("APN : %d, %d, %s, %s, %s, %d, %s.\n", apn_list.apn[i].profile_idx, apn_list.apn[i].pdp_type, apn_list.apn[i].apn_name, apn_list.apn[i].username, apn_list.apn[i].password, apn_list.apn[i].auth_proto, apn_list.apn[i].apn_type);
+ }
+ }
+ } else if(!strncasecmp(cmd, "apn_del", 7)){
+ char *ptr = strstr(cmd, " ");
+ if(ptr == NULL)
+ continue;
+ while(*ptr != '\0' && *ptr == ' ')
+ ptr++;
+ char profile_idx = atoi(ptr);
+ err = qser_apn_del(profile_idx);
+ if(err)
+ {
+ printf("Error : %d\n", err);
+ }
+ else
+ {
+ printf("APN set success.\n");
+ }
+ } else if(!strncasecmp(cmd, "apn_add", 7)){
+ char qser_idx = 0;
+ qser_apn_add_s qser_apn = {0};
+
+ char buf1[2] = {0};
+ char buf2[2] = {0};
+ int ret = sscanf(cmd, "apn_add %s %s %s %s %s %s", buf1, qser_apn.apn_name, qser_apn.apn_type, qser_apn.username, qser_apn.password, buf2);
+ if(strlen(buf1))
+ {
+ qser_apn.pdp_type = buf1[0] - '0';
+ }
+
+ if(strlen(buf2))
+ {
+ qser_apn.auth_proto = buf2[0] - '0';
+ }
+ printf("param is [%d]\r\n", ret);
+ printf("apn_add:%d %s %s %s %s %d\r\n", qser_apn.pdp_type, qser_apn.apn_name, qser_apn.apn_type, qser_apn.username, qser_apn.password, qser_apn.auth_proto);
+ if(ret >= 3)
+ {
+ err = qser_apn_add(&qser_apn, &qser_idx);
+ }
+
+ if(err) {
+ printf("Error : %d\n", err);
+ } else {
+ printf("APN set success. get idx = [%d]\n", qser_idx);
+ }
+ }
+ else { // apn <cid> <0/1/2> <apn> <apn_type> [<user> <pass> <auth>]
+ qser_apn_info_s qser_apn = {0};
+
+ char buf0[2] = {0};
+ char buf1[2] = {0};
+ char buf2[2] = {0};
+ int ret = sscanf(cmd, "apn_set %s %s %s %s %s %s %s", buf0, buf1, qser_apn.apn_name, qser_apn.apn_type, qser_apn.username, qser_apn.password, buf2);
+ if(strlen(buf0))
+ {
+ qser_apn.profile_idx = buf0[0] - '0';
+ }
+
+ if(strlen(buf1))
+ {
+ qser_apn.pdp_type = buf1[0] - '0';
+ }
+
+ if(strlen(buf2))
+ {
+ qser_apn.auth_proto = buf2[0] - '0';
+ }
+ printf("param is [%d]\r\n", ret);
+ printf("apn_set:%d %d %s %s %s %s %d\r\n", qser_apn.profile_idx, qser_apn.pdp_type, qser_apn.apn_name, qser_apn.apn_type, qser_apn.username, qser_apn.password, qser_apn.auth_proto);
+ if(ret >= 4)
+ {
+ err = qser_apn_set(&qser_apn);
+ }
+
+ if(err) {
+ printf("Error : %d\n", err);
+ } else {
+ printf("APN set success\n");
+ }
+ }
+ } else if(!strncasecmp(cmd, "data_call", 9)){ // data_call <0/1/2> <cid> <timeout>
+ // data_call <0/1/2> <cid> <type> <re-con> <user> <pass>
+ qser_data_call_s qser_data_call = {0};
+ char *ptr = strstr(cmd, " ");
+ if(ptr == NULL)
+ continue;
+ while(*ptr != '\0' && *ptr == ' ')
+ ptr++;
+ int type = atoi(ptr);
+
+ ptr = strstr(ptr, " ");
+ if(ptr == NULL)
+ continue;
+ while(*ptr != '\0' && *ptr == ' ')
+ ptr++;
+ int cid = atoi(ptr);
+
+ ptr = strstr(ptr, " ");
+ if(ptr == NULL)
+ continue;
+ while(*ptr != '\0' && *ptr == ' ')
+ ptr++;
+ qser_data_call_ip_family_e ip_type = atoi(ptr);
+
+ ptr = strstr(ptr, " ");
+ if(ptr == NULL)
+ {
+
+ }
+ else
+ {
+ while(*ptr != '\0' && *ptr == ' ')
+ ptr++;
+ qser_data_call.reconnect = atoi(ptr);
+
+ ptr = strstr(ptr, " ");
+ if(ptr == NULL)
+ continue;
+ while(*ptr != '\0' && *ptr == ' ')
+ ptr++;
+ memcpy(qser_data_call.cdma_username, ptr, strlen(ptr));
+ char *tmp = qser_data_call.cdma_username;
+ while(*tmp) {
+ if(*tmp == ' ') {
+ *tmp = '\0';
+ break;
+ }
+ tmp++;
+ }
+
+ ptr = strstr(ptr, " ");
+ if(ptr == NULL)
+ continue;
+ while(*ptr != '\0' && *ptr == ' ')
+ ptr++;
+ memcpy(qser_data_call.cdma_password, ptr, strlen(ptr));
+ tmp = qser_data_call.cdma_password;
+ while(*tmp) {
+ if(*tmp == ' ') {
+ *tmp = '\0';
+ break;
+ }
+ tmp++;
+ }
+ }
+#if 1
+ qser_data_call_error_e qser_err;
+ switch (type)
+ {
+ case 0:
+ err = qser_data_call_stop(cid, ip_type, &qser_err);
+ break;
+ case 1:
+ qser_data_call.profile_idx = cid;
+ qser_data_call.ip_family = ip_type;
+ err = qser_data_call_start(&qser_data_call, &qser_err);
+ break;
+ case 2: {
+ qser_data_call_info_s info;
+ err = qser_data_call_info_get(cid, ip_type, &info, &qser_err);
+ if(!err) {
+ printf("cid : %d, ip_type : %d\n", info.profile_idx, info.ip_family);
+ if(info.v4.state) {
+ LOGE("[qser_data_call] IP: 0x%08x pri_DNS: 0x%08x sec_DNS: 0x%08x.", info.v4.addr.ip.s_addr, info.v4.addr.pri_dns.s_addr, info.v4.addr.sec_dns.s_addr);
+ //printf("%s: %s, %s, %s\n", info.v4.name, inet_ntoa(info.v4.addr.ip), inet_ntoa(info.v4.addr.pri_dns), inet_ntoa(info.v4.addr.sec_dns));
+ printf("%s: %s ", info.v4.name, inet_ntoa(info.v4.addr.ip));
+ printf("%s ", inet_ntoa(info.v4.addr.pri_dns));
+ printf("%s\n", inet_ntoa(info.v4.addr.sec_dns));
+ } else {
+ printf("IPV4 not available.\n");
+ }
+
+ if(info.v6.state) {
+ char IP_buf[128] = {0};
+ char pri_dns_buf[128] = {0};
+ char sec_dns_buf[128] = {0};
+ ipv6_2_str(&(info.v6.addr.ip), IP_buf);
+ ipv6_2_str(&(info.v6.addr.pri_dns), pri_dns_buf);
+ ipv6_2_str(&(info.v6.addr.sec_dns), sec_dns_buf);
+ printf("%s: %s, %s, %s\n", info.v6.name, IP_buf, pri_dns_buf, sec_dns_buf);
+ } else {
+ printf("IPV6 not available.\n");
+ }
+ }
+ break;
+ }
+ case 3:
+ {
+ qser_data_call.profile_idx = cid;
+ qser_data_call.ip_family = ip_type;
+ err = qser_data_call_start_async(&qser_data_call, &qser_err);
+ break;
+ }
+ default:
+ printf("Type error:%d\n", type);
+ break;
+ }
+#endif
+ printf("qser_err: %d\n", qser_err);
+ if(err) {
+ printf("Error : %d\n", err);
+ } else {
+ printf("DATA_CALL success\n");
+ }
+ }
+ else if(!strcasecmp(cmd, "h") || !strcasecmp(cmd, "help")) {
+ help();
+ } else if(!strcasecmp(cmd, "q")) {
+ break;
+ } else {
+ printf("\n");
+ }
+ }
+ }
+
+ proc_exit();
+
+ LOGI("Client exec complete.");
+#if 1
+ while(1)
+ {
+ sleep(1000 * 365 * 24 * 60 * 60);
+ }
+#else
+ sleep(1);
+#endif
+ return 0;
+}
+
diff --git a/mbtk/test/liblynq_lib/qser_gnss_test.c b/mbtk/test/liblynq_lib/qser_gnss_test.c
new file mode 100755
index 0000000..c7c8563
--- /dev/null
+++ b/mbtk/test/liblynq_lib/qser_gnss_test.c
@@ -0,0 +1,350 @@
+#include <stdio.h>
+#include <string.h>
+#include <strings.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <termios.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <pthread.h>
+#include <termios.h>
+#include <time.h>
+#include <sys/ioctl.h>
+#include <dlfcn.h>
+#include <stdint.h>
+#include "lynq_gnss.h"
+
+void cb(uint32_t h_loc, e_msg_id_t e_msg_id, void *pv_data, void *context_ptr)
+{
+ printf("e_msg_id=%d\n", e_msg_id);
+ switch(e_msg_id)
+ {
+ case E_MT_LOC_MSG_ID_LOCATION_INFO: //选择mode1,输出定位信息
+ {
+ mopen_location_info_t *pt_location = (mopen_location_info_t *)pv_data;
+ printf("**** flag=0x%X, Latitude = %f, Longitude=%f, altitude = %f, speed = %f, timestamp = %lld ****\n",
+ pt_location->flags,
+ pt_location->latitude,
+ pt_location->longitude,
+ pt_location->altitude,
+ pt_location->speed,
+ pt_location->timestamp);
+ break;
+ }
+ case E_MT_LOC_MSG_ID_NMEA_INFO: //选择mode3,输出nmea数据信息
+ {
+ mopen_gnss_nmea_info_t *pt_nmea = (mopen_gnss_nmea_info_t *)pv_data;
+
+ printf("**** NMEA info: timestamp=%lld, length=%d, nmea=%s ****\n",
+ pt_nmea->timestamp, pt_nmea->length, pt_nmea->nmea);
+ break;
+ }
+ }
+}
+
+void async_cb(qser_gnss_error_e state)
+{
+ printf("start gnss async state: %d \n", state);
+}
+
+void user_help(void)
+{
+ printf("\t-1 exit\n"
+ "\t1 gnss init\n"
+ "\t2 gnss deinit \n"
+ "\t3 gnss add nmea callback\n"
+ "\t4 gnss set local mode\n"
+ "\t5 gnss set nmea mode\n"
+ "\t6 gnss start\n"
+ "\t7 gnss stop\n"
+ "\t8 gnss Delete_Aiding_Data and reset (new not support)\n"
+ "\t9 gnss injecttime (new not support)\n"
+ "\t10 gnss download agps\n"
+ "\t11 gnss set frequency\n"
+ "\t12 gnss send agps data to gnss\n"
+ "\t13 gnss config agps server info\n"
+ "\t14 gnss set async cb\n"
+ "\t15 gnss start async\n"
+ "please input operator: >> \n");
+}
+void delete_type(void)
+{
+ printf("\t0 DELETE_NOTHING\n"
+ "\t1 DELETE_EPHEMERIS\n"
+ "\t2 DELETE_ALMANAC\n"
+ "\t3 DELETE_POSITION_TIME \n"
+ "\t4 DELETE_UTC\n"
+ "\t5 DELETE_ALL\n"
+ "please input operator: >> \n");
+}
+
+int main(int argc, char *argv[])
+{
+ int ret;
+ int opt = 0;
+ //char *lynqLib_gnss = "/lib/liblynq-qser-gnss.so";
+ char dev_file[12] = {0};
+ uint32_t ph_gnss;
+ //dlHandle_gnss = dlopen(lynqLib_gnss, RTLD_NOW);
+ while(1)
+ {
+ printf("=========gnss main=========\n");
+ user_help();
+ scanf("%d", &opt);
+ switch (opt)
+ {
+ case -1:
+ {
+ qser_Gnss_Stop(ph_gnss);
+ qser_Gnss_Deinit(ph_gnss);
+ printf("main exit\n");
+ return 0;
+ }
+
+ case 1:
+ {
+ ret = qser_Gnss_Init(&ph_gnss);
+ if(ret < 0)
+ {
+ printf("qser_Gnss_Init FAIL.\n");
+ }
+ else
+ {
+ printf("qser_Gnss_Init success , with address=%08x\n", ph_gnss);
+ }
+ break;
+ }
+ case 2:
+ {
+ ret =qser_Gnss_Deinit(ph_gnss);
+ if(ret < 0)
+ {
+ printf("qser_Gnss_Deinit FAIL.\n");
+ }
+ else
+ {
+ printf("qser_Gnss_Deinit success \n");
+ }
+ break;
+ }
+ case 3:
+ {
+ ret = qser_AddRxIndMsgHandler((gnss_handler_func_t)&cb,ph_gnss);
+ if(ret < 0)
+ {
+ printf("qser_AddRxIndMsgHandler fail\n");
+ }
+ else
+ {
+ printf("add success\n");
+ }
+ break;
+ }
+ case 4:
+ {
+ e_msg_id_t ptr2=E_MT_LOC_MSG_ID_LOCATION_INFO;
+ ret = qser_Set_Indications(ph_gnss,ptr2);
+ if(ret < 0)
+ {
+ printf("qser_Set_Indications fail\n");
+ }
+ else
+ {
+ printf("set location mode success\n");
+ }
+ break;
+ }
+ case 5:
+ {
+ e_msg_id_t ptr4=E_MT_LOC_MSG_ID_NMEA_INFO;
+ ret = qser_Set_Indications(ph_gnss,ptr4);
+ if(ret < 0)
+ {
+ printf("qser_Set_Indications fail\n");
+ }
+ else
+ {
+ printf("set nmea mode success\n");
+ }
+ break;
+ }
+ case 6:
+ {
+ ret = qser_Gnss_Start(ph_gnss);
+ if(ret < 0)
+ {
+ printf("qser_Gnss_Start fail\n");
+ }
+ else
+ {
+ printf("start success\n");
+ }
+ break;
+ }
+ case 7:
+ {
+ ret = qser_Gnss_Stop(ph_gnss);
+ if(ret < 0)
+ {
+ printf("qser_Gnss_Stop fail\n");
+ }
+ else
+ {
+ printf("stop success\n");
+ }
+ break;
+ }
+ case 8:
+ {
+ int opt_1;
+ DELETE_AIDING_DATA_TYPE_T ptr;
+ printf("=========delete aiding data type=========\n");
+ delete_type();
+ scanf("%d", &opt_1);
+ switch(opt_1)
+ {
+ case 0:
+ {
+ ptr = DELETE_NOTHING;//hot
+ break;
+ }
+ case 1:
+ {
+ ptr = DELETE_EPHEMERIS;//warm
+ break;
+ }
+ case 2:
+ {
+ ptr = DELETE_ALMANAC;
+ break;
+ }
+ case 3:
+ {
+ ptr = DELETE_POSITION_TIME;
+ break;
+ }
+ case 4:
+ {
+ ptr = DELETE_UTC;
+ break;
+ }
+ case 5:
+ {
+ ptr = DELETE_ALL;//cold
+ break;
+ }
+ }
+ ret = qser_Gnss_Delete_Aiding_Data(ph_gnss,ptr);
+ if(ret < 0)
+ {
+ printf("qser_Gnss_Delete_Aiding_Data %d fail\n",opt_1);
+ }
+ else
+ {
+ printf("qser_Gnss_Delete_Aiding_Data %d success\n",opt_1);
+ }
+ break;
+ }
+ case 9:
+ {
+ LYNQ_INJECT_TIME_INTO_T time_test;
+ ret = qser_Gnss_InjectTime(ph_gnss,&time_test);
+ if(ret < 0)
+ {
+ printf("qser_Gnss_InjectTime fail\n");
+ }
+ else
+ {
+ printf("qser_Gnss_InjectTime success\n");
+ }
+ break;
+ }
+ case 10:
+ {
+ ret = qser_Gnss_download_tle();
+ if(ret < 0)
+ {
+ printf("qser_Gnss_download_tle fail\n");
+ }
+ else
+ {
+ printf("qser_Gnss_download_tle success\n");
+ }
+ break;
+ }
+ case 11:
+ {
+ int frequency;
+ printf("=========Set Frequency=========\n");
+ scanf("%d", &frequency);
+ ret = qser_Gnss_Set_Frequency(ph_gnss,frequency);
+ if(ret < 0)
+ {
+ printf("qser_Gnss_Set_Frequency fail\n");
+ }
+ else
+ {
+ printf("frequency is %d\n",frequency);
+ printf("qser_Gnss_Set_Frequency success\n");
+ }
+ break;
+ }
+ case 12:
+ {
+ ret = qser_Gnss_injectEphemeris(ph_gnss);
+ if(ret < 0)
+ {
+ printf("qser_Gnss_injectEphemeris fail\n");
+ }
+ else
+ {
+ printf("qser_Gnss_injectEphemeri ssuccess\n");
+ }
+ break;
+ }
+ case 13:
+ {
+ ret = qser_Gnss_Server_Configuration("http://uagnss.allystar.com:80/ephemeris/HD_GPS_BDS.hdb","yikecs1","Z38w5urAuawubTxi");
+ if(ret < 0)
+ {
+ printf("qser_Gnss_Server_Configuration fail\n");
+ }
+ else
+ {
+ printf("qser_Gnss_Server_Configuration ssuccess\n");
+ }
+ break;
+ }
+ case 14:
+ {
+ ret = qser_Gnss_Set_Async_Callback(async_cb);
+ if(ret < 0)
+ {
+ printf("qser_Gnss_Set_Async_Callback fail\n");
+ }
+ else
+ {
+ printf("qser_Gnss_Set_Async_Callback ssuccess\n");
+ }
+ break;
+ }
+ case 15:
+ {
+ ret = qser_Gnss_Start_Async(ph_gnss);
+ if(ret < 0)
+ {
+ printf("qser_Gnss_Start_Async fail\n");
+ }
+ else
+ {
+ printf("qser_Gnss_Start_Async ssuccess\n");
+ }
+ break;
+ }
+ }
+ }
+ return 0;
+}
diff --git a/mbtk/test/liblynq_lib/qser_led_test.c b/mbtk/test/liblynq_lib/qser_led_test.c
new file mode 100755
index 0000000..00edbde
--- /dev/null
+++ b/mbtk/test/liblynq_lib/qser_led_test.c
@@ -0,0 +1,100 @@
+#include <stdio.h>
+#include <strings.h>
+#include<stdlib.h>
+
+#include "lynq_led.h"
+
+void user_help(void)
+{
+ printf("\t-1 exit\n"
+ "\t1 open net led\n"
+ "\t2 close net led \n"
+ "\t3 open status led\n"
+ "\t4 close status led\n"
+ "please input operator: >> \n");
+}
+
+
+int main(int argc, const char *argv[])
+{
+ int ret;
+ int opt = 0;
+ while(1)
+ {
+ printf("=========gnss main=========\n");
+ user_help();
+ scanf("%d", &opt);
+ switch (opt)
+ {
+ case -1:
+ {
+ printf("main exit\n");
+ return 0;
+ }
+ case 1:
+ {
+ ret = lynq_set_netled_on(1);
+ if(ret)
+ {
+ printf("[%s-%d] lynq_set_netled_on error\n", __FUNCTION__, __LINE__);
+ return -1;
+ }
+ else
+ {
+ printf("open net led success.\n");
+ }
+ break;
+ }
+ case 2:
+ {
+ ret = lynq_set_netled_on(0);
+ if(ret)
+ {
+ printf("[%s-%d] lynq_set_netled_on error\n", __FUNCTION__, __LINE__);
+ return -1;
+ }
+ else
+ {
+ printf("close net led success.\n");
+ }
+ break;
+ }
+ case 3:
+ {
+ ret = lynq_set_statusled_on(1);
+ if(ret)
+ {
+ printf("[%s-%d] lynq_set_statusled_on error\n", __FUNCTION__, __LINE__);
+ return -1;
+ }
+ else
+ {
+ printf("open status led success.\n");
+ }
+ break;
+ }
+ case 4:
+ {
+ ret = lynq_set_statusled_on(0);
+ if(ret)
+ {
+ printf("[%s-%d] lynq_set_statusled_on error\n", __FUNCTION__, __LINE__);
+ return -1;
+ }
+ else
+ {
+ printf("close status led success.\n");
+ }
+ break;
+ }
+ default:
+ {
+ printf("opt unkuown\n");
+ break;
+ }
+ }
+ }
+
+ return 0;
+}
+
diff --git a/mbtk/test/liblynq_lib/qser_sim_test.c b/mbtk/test/liblynq_lib/qser_sim_test.c
new file mode 100755
index 0000000..6022782
--- /dev/null
+++ b/mbtk/test/liblynq_lib/qser_sim_test.c
@@ -0,0 +1,325 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/types.h>
+#include <pthread.h>
+#include <unistd.h>
+#include <dlfcn.h>
+#include <stdint.h>
+
+#include"lynq_qser_sim.h"
+
+
+#define BUF_SIZE 32
+#define BUF_PIN QSER_SIM_PIN_LEN_MAX
+#define VER_SIZE 128
+
+typedef uint32_t sim_client_handle_type;
+
+sim_client_handle_type ph_sim = 2023;
+sim_client_handle_type h_sim = 2023;
+
+
+int main(int argc, char const *argv[])
+{
+ printf("=========sim main=========\n"
+ "\t0 qser_sim_init\n"
+ "\t1 qser_get_imsi\n"
+ "\t2 qser_get_iccid\n"
+ "\t3 qser_get_phonenumber\n"
+ "\t4 qser_verify_pin\n"
+ "\t5 qser_change_pin\n"
+ "\t6 qser_unlock_pin\n"
+ "\t7 qser_enable_pin\n"
+ "\t8 qser_disable_pin\n"
+ "\t9 qser_get_sim_status\n"
+ "\t10 qser_get_imei\n"
+ "\t11 qser_get_imei_and_sv\n"
+ "\t12 qser_reset_modem\n"
+ "\t13 qser_get_version\n"
+ "\t14 qser_reset_sim\n"
+ "\t15 qser_deinit_sim\n"
+ "\t16 exit\n");
+
+ while(1)
+ {
+ int cmdIdx = -1;
+ int res = -1;
+
+ printf("operator: >> \n");
+
+ scanf("%d", &cmdIdx);
+ fflush(stdin);
+
+ switch(cmdIdx)
+ {
+ //"qser_sim_init"
+ case 0:
+ {
+ //int token;
+ //printf("input token\n");
+ //scanf("%d", &token);
+ res = qser_sim_client_init(&h_sim);
+ if(res == 0)
+ {
+ printf("Run qser_sim_client_init\n");
+ }else{
+ printf("qser_sim_client_init error\n");
+ }
+ }
+ break;
+ //"qser_sim_getimsi"
+ case 1:
+ {
+ char imsi[BUF_SIZE] = {0};
+ QSER_SIM_APP_ID_INFO_T pt_info;
+ res = qser_sim_getimsi(h_sim, &pt_info, imsi, BUF_SIZE);
+ if(res == 0)
+ {
+ printf("imsi is %s!!!\n",imsi);
+ }else{
+ printf("get imsi error, res = %d\n", res);
+ }
+ }
+ break;
+ //"qser_get_iccid"
+ case 2:
+ {
+ char iccid[BUF_SIZE] = {0};
+ res = qser_sim_geticcid(h_sim, QSER_SIM_SLOT_ID_1, iccid, BUF_SIZE);
+ if(res == 0)
+ {
+ printf("get iccid success!!! iccid is %s\n",iccid);
+ }else{
+ printf("get iccid error, res = %d\n", res);
+ }
+ }
+ break;
+ //qser_get_phonenumber
+ case 3:
+ {
+ char phonenumber[BUF_SIZE] = "";
+ QSER_SIM_APP_ID_INFO_T pt_info;
+ res = qser_sim_getphonenumber(h_sim, &pt_info, phonenumber, BUF_SIZE);
+ if(res == 0)
+ {
+ printf("get phonenumber success!!! phonenumber is %s\n",phonenumber);
+ }else{
+ printf("get phonenumber error, res = %d\n", res);
+ }
+ }
+ break;
+ //qser_verify_pin
+ case 4:
+ {
+ char pin[BUF_PIN] = {0};
+ QSER_SIM_VERIFY_PIN_INFO_T pt_info;
+ printf("input pin\n");
+ scanf("%s", pin);
+ strncpy(pt_info.pin_value, pin, BUF_PIN);
+ printf("pin_value = %s , pin = %s\n", pt_info.pin_value, pin);
+ pt_info.pin_value_len = strlen(pt_info.pin_value);
+
+ res = qser_sim_verifypin(h_sim, &pt_info);
+ if(res == 0)
+ {
+ printf("verify pin success!!!\n");
+ }else{
+ printf("verify pin error, res = %d\n", res);
+ }
+ }
+ break;
+ //qser_change_pin
+ case 5:
+ {
+ char old_pin[BUF_PIN] = {0};
+ QSER_SIM_CHANGE_PIN_INFO_T pt_info;
+ printf("input old pin\n");
+ scanf("%s", old_pin);
+ char new_pin[BUF_PIN] = {0};
+ printf("input new pin\n");
+ scanf("%s", new_pin);
+ strncpy(pt_info.old_pin_value, old_pin, BUF_PIN);
+ strncpy(pt_info.new_pin_value, new_pin, BUF_PIN);
+ printf("pt_info.old_pin_value = %s, old_pin = %s\n", pt_info.old_pin_value, old_pin);
+ printf("pt_info.new_pin_value = %s, new_pin = %s\n", pt_info.new_pin_value, new_pin);
+ pt_info.old_pin_value_len = strlen(pt_info.old_pin_value);
+ pt_info.new_pin_value_len = strlen(pt_info.new_pin_value);
+
+ res = qser_sim_changepin(h_sim, &pt_info);
+ if(res == 0)
+ {
+ printf("change pin success!!!\n");
+ }else{
+ printf("change pin error, res = %d\n", res);
+ }
+ }
+ break;
+ //qser_unlock_pin
+ case 6:
+ {
+ char puk[BUF_PIN] = {0};
+ QSER_SIM_UNBLOCK_PIN_INFO_T pt_info;
+ printf("input puk\n");
+ scanf("%s", puk);
+ char new_pin[BUF_PIN] = {0};
+ printf("input new pin\n");
+ scanf("%s", new_pin);
+
+ strncpy(pt_info.puk_value, puk, BUF_PIN);
+ strncpy(pt_info.new_pin_value, new_pin, BUF_PIN);
+ printf("pt_info.puk_value = %s, puk = %s\n", pt_info.puk_value, puk);
+ printf("pt_info.new_pin_value = %s, new_pin = %s\n", pt_info.new_pin_value, new_pin);
+ pt_info.new_pin_value_len = strlen(pt_info.new_pin_value);
+ pt_info.puk_value_len = strlen(pt_info.puk_value);
+
+ res = qser_sim_unblockpin(h_sim, &pt_info);
+ if(res == 0)
+ {
+ printf("unlock pin success!!!\n");
+ }else{
+ printf("unlock pin error, res = %d\n", res);
+ }
+ }
+ break;
+ //qser_enable_pin
+ case 7:
+ {
+ char pin[BUF_PIN] = {0};
+ QSER_SIM_ENABLE_PIN_INFO_T pt_info;
+ printf("input pin\n");
+ scanf("%s", pin);
+ strncpy(pt_info.pin_value, pin, BUF_PIN);
+ pt_info.pin_value_len = strlen(pt_info.pin_value);
+
+ res = qser_sim_enablepin(h_sim, &pt_info);
+ if(res == 0)
+ {
+ printf("pin enabled!!!\n");
+ }else{
+ printf("pin enable error, res =%d\n", res);
+ }
+ }
+ break;
+ //qser_disable_pin
+ case 8:
+ {
+ char pin[BUF_PIN] = {0};
+ QSER_SIM_ENABLE_PIN_INFO_T pt_info;
+ printf("input pin\n");
+ scanf("%s", pin);
+ strncpy(pt_info.pin_value, pin, BUF_PIN);
+ pt_info.pin_value_len = strlen(pt_info.pin_value);
+
+ res = qser_sim_disablepin(h_sim, &pt_info);
+ if(res == 0)
+ {
+ printf("pin disnabled!!!\n");
+ }else{
+ printf("pin disable error,res = %d\n", res);
+ }
+ }
+ break;
+ //qser_get_sim_status
+ case 9:
+ {
+ QSER_SIM_CARD_STATUS_INFO_T pt_info;
+
+ res = qser_sim_getcardstatus(h_sim, QSER_SIM_SLOT_ID_1, &pt_info);
+ if(res == 0)
+ {
+ printf("state is %d !!!\n",pt_info.e_card_state);
+ }else{
+ printf("get imsi error,res = %d\n", res);
+ }
+ }
+ break;
+ //qser_get_imei
+ case 10:
+ {
+ char imei[BUF_SIZE]="";
+ res = qser_sim_getimei(h_sim, imei);
+ if(res == 0)
+ {
+ printf("get imei success!!! imei = %s\n", imei);
+ }else{
+ printf("get imei error, res = %d\n", res);
+ }
+ }
+ break;
+ //qser_get_imei_and_sv
+ case 11:
+ {
+ char imei[BUF_SIZE]="";
+ char sv[BUF_SIZE]="";
+
+ res = qser_get_imei_and_sv(h_sim, imei, sv);
+ if(res == 0)
+ {
+ printf("get imei and sv success!!!imei = %s sv = %s\n", imei, sv);
+ }else{
+ printf("get imei and sv error, res = %d\n", res);
+ }
+ }
+ break;
+ //qser_reset_modem
+ case 12:
+ {
+ res = qser_reset_modem(h_sim);
+ if(res == 0)
+ {
+ printf("reset modem success!!!\n");
+ }else{
+ printf("reset modem error, res = %d\n", res);
+ }
+ }
+ break;
+ //qser_get_version
+ case 13:
+ {
+ char buf[VER_SIZE]="";
+
+ res = qser_get_version(h_sim, buf);
+ if(res == 0)
+ {
+ printf("get version success!!! ver = %s\n", buf);
+ }else{
+ printf("get version error, res = %d\n", res);
+ }
+ }
+ break;
+ //qser_reset_sim
+ case 14:
+ {
+ res = qser_reset_sim(h_sim);
+ if(res == 0)
+ {
+ printf("reset sim success!!!\n");
+ }else{
+ printf("reset sim error, res = %d\n", res);
+ }
+ }
+ break;
+ //qser_deinit_sim
+ case 15:
+ {
+ res = qser_sim_client_deinit(h_sim);
+ if(res == 0)
+ {
+ printf("sim deinit success is!!!\n");
+ }else{
+ printf("sim deint errors, res = %d\n", res);
+ }
+ }
+ break;
+ case 16:
+ printf("main exit\n");
+ return 0;
+ default :
+ break;
+ }
+
+ }
+
+ return 0;
+}
diff --git a/mbtk/test/liblynq_lib/qser_thermal_test.c b/mbtk/test/liblynq_lib/qser_thermal_test.c
new file mode 100755
index 0000000..62af03a
--- /dev/null
+++ b/mbtk/test/liblynq_lib/qser_thermal_test.c
@@ -0,0 +1,27 @@
+#include <sys/types.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <string.h>
+#include <fcntl.h>
+#include <stdlib.h>
+
+#include"lynq_qser_thermal.h"
+#define MAX_SIZE 3
+
+int main(int argc, char *argv[]){
+ int numbers[MAX_SIZE];
+ int ret = 0;
+ ret = get_thermal_zone(numbers, MAX_SIZE);
+ if (ret <= 0)
+ {
+ printf("get_thermal_zone error\n");
+ return -1;
+ }
+
+ for (int j = 0; j < ret; ++j) {
+ printf("[%s-%d] temp[%d] = %d \n", __func__, __LINE__, j, numbers[j]);
+ }
+
+ return 0;
+}
+
diff --git a/mbtk/test/liblynq_lib/ring_tele.h b/mbtk/test/liblynq_lib/ring_tele.h
new file mode 100755
index 0000000..580bfe8
--- /dev/null
+++ b/mbtk/test/liblynq_lib/ring_tele.h
@@ -0,0 +1,6364 @@
+/* Generated by reswrap version 4.0.0 */
+
+/* created by reswrap from file m.pcm */
+#ifndef RING_TELE
+#define RING_TELE
+
+#define PCM_DATA ring_tele
+#define PCM_DATA_SIZE (sizeof(ring_tele) / sizeof(ring_tele[0]))
+
+const unsigned char ring_tele[]={
+0xd8, 0xff, 0xbc, 0xff, 0xa4, 0xff, 0x9a, 0xff, 0x9a, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xd8, 0xff,
+0xfc, 0xff, 0x18, 0x00, 0x3a, 0x00, 0x44, 0x00, 0x64, 0x00, 0x6a, 0x00, 0x4e, 0x00, 0x38, 0x00,
+0x14, 0x00, 0xf6, 0xff, 0xc6, 0xff, 0x9a, 0xff, 0x86, 0xff, 0x70, 0xff, 0x68, 0xff, 0x86, 0xff,
+0x9c, 0xff, 0xca, 0xff, 0xf0, 0xff, 0x22, 0x00, 0x58, 0x00, 0x74, 0x00, 0x86, 0x00, 0x82, 0x00,
+0x6a, 0x00, 0x42, 0x00, 0x1a, 0x00, 0xe8, 0xff, 0xa8, 0xff, 0x74, 0xff, 0x66, 0xff, 0x4c, 0xff,
+0x56, 0xff, 0x7e, 0xff, 0xa2, 0xff, 0xd6, 0xff, 0x0c, 0x00, 0x3e, 0x00, 0x72, 0x00, 0x9a, 0x00,
+0xae, 0x00, 0xa0, 0x00, 0x80, 0x00, 0x4e, 0x00, 0x06, 0x00, 0xd2, 0xff, 0x96, 0xff, 0x62, 0xff,
+0x3e, 0xff, 0x3a, 0xff, 0x44, 0xff, 0x5c, 0xff, 0x9e, 0xff, 0xd0, 0xff, 0x06, 0x00, 0x42, 0x00,
+0x8c, 0x00, 0xa0, 0x00, 0xac, 0x00, 0x9e, 0x00, 0x6e, 0x00, 0x30, 0x00, 0xfc, 0xff, 0xc2, 0xff,
+0x7c, 0xff, 0x4c, 0xff, 0x20, 0xff, 0x20, 0xff, 0x34, 0xff, 0x64, 0xff, 0xa4, 0xff, 0xec, 0xff,
+0x24, 0x00, 0x5c, 0x00, 0x96, 0x00, 0xb6, 0x00, 0xc2, 0x00, 0x9c, 0x00, 0x6c, 0x00, 0x26, 0x00,
+0xee, 0xff, 0xb2, 0xff, 0x74, 0xff, 0x4e, 0xff, 0x36, 0xff, 0x3a, 0xff, 0x54, 0xff, 0x7a, 0xff,
+0xc8, 0xff, 0x06, 0x00, 0x2e, 0x00, 0x74, 0x00, 0x9c, 0x00, 0xae, 0x00, 0xa2, 0x00, 0x86, 0x00,
+0x4c, 0x00, 0x12, 0x00, 0xdc, 0xff, 0xa2, 0xff, 0x66, 0xff, 0x48, 0xff, 0x44, 0xff, 0x46, 0xff,
+0x62, 0xff, 0x90, 0xff, 0xce, 0xff, 0x02, 0x00, 0x32, 0x00, 0x62, 0x00, 0x8a, 0x00, 0x98, 0x00,
+0x90, 0x00, 0x72, 0x00, 0x42, 0x00, 0x0a, 0x00, 0xd2, 0xff, 0xaa, 0xff, 0x74, 0xff, 0x5a, 0xff,
+0x5a, 0xff, 0x68, 0xff, 0x84, 0xff, 0xa8, 0xff, 0xde, 0xff, 0x1a, 0x00, 0x56, 0x00, 0x74, 0x00,
+0x88, 0x00, 0x96, 0x00, 0x86, 0x00, 0x60, 0x00, 0x3a, 0x00, 0xfe, 0xff, 0xce, 0xff, 0xa8, 0xff,
+0x90, 0xff, 0x82, 0xff, 0x70, 0xff, 0x7e, 0xff, 0x94, 0xff, 0xba, 0xff, 0xf4, 0xff, 0x16, 0x00,
+0x40, 0x00, 0x54, 0x00, 0x6a, 0x00, 0x60, 0x00, 0x52, 0x00, 0x46, 0x00, 0x0c, 0x00, 0xf6, 0xff,
+0xd2, 0xff, 0xa6, 0xff, 0xa0, 0xff, 0x9e, 0xff, 0x94, 0xff, 0x96, 0xff, 0xa6, 0xff, 0xd2, 0xff,
+0xee, 0xff, 0x0a, 0x00, 0x2e, 0x00, 0x30, 0x00, 0x3a, 0x00, 0x44, 0x00, 0x42, 0x00, 0x36, 0x00,
+0x14, 0x00, 0xfe, 0xff, 0xea, 0xff, 0xd2, 0xff, 0xca, 0xff, 0xc8, 0xff, 0xb4, 0xff, 0xbc, 0xff,
+0xc4, 0xff, 0xd6, 0xff, 0xec, 0xff, 0xf8, 0xff, 0x0e, 0x00, 0x16, 0x00, 0x14, 0x00, 0x22, 0x00,
+0x0e, 0x00, 0x14, 0x00, 0x0e, 0x00, 0xfc, 0xff, 0xfa, 0xff, 0xe8, 0xff, 0xda, 0xff, 0xd2, 0xff,
+0xce, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd2, 0xff, 0xec, 0xff, 0xec, 0xff,
+0xee, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,
+0xf8, 0xff, 0xf8, 0xff, 0xee, 0xff, 0xea, 0xff, 0xde, 0xff, 0xd6, 0xff, 0xd2, 0xff, 0xc6, 0xff,
+0xcc, 0xff, 0xca, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xe6, 0xff, 0xf8, 0xff, 0x10, 0x00, 0x1e, 0x00,
+0x20, 0x00, 0x28, 0x00, 0x10, 0x00, 0x16, 0x00, 0x12, 0x00, 0x04, 0x00, 0xe4, 0xff, 0xc0, 0xff,
+0xb6, 0xff, 0x9c, 0xff, 0x8c, 0xff, 0x98, 0xff, 0xac, 0xff, 0xbc, 0xff, 0xdc, 0xff, 0xf8, 0xff,
+0x1a, 0x00, 0x36, 0x00, 0x42, 0x00, 0x50, 0x00, 0x40, 0x00, 0x38, 0x00, 0x18, 0x00, 0xf8, 0xff,
+0xd2, 0xff, 0xa8, 0xff, 0x86, 0xff, 0x78, 0xff, 0x76, 0xff, 0x86, 0xff, 0xa6, 0xff, 0xb6, 0xff,
+0xe4, 0xff, 0x10, 0x00, 0x48, 0x00, 0x68, 0x00, 0x78, 0x00, 0x7c, 0x00, 0x6c, 0x00, 0x46, 0x00,
+0x22, 0x00, 0xf4, 0xff, 0xd0, 0xff, 0x9c, 0xff, 0x74, 0xff, 0x5e, 0xff, 0x5c, 0xff, 0x70, 0xff,
+0x90, 0xff, 0xc2, 0xff, 0xea, 0xff, 0x22, 0x00, 0x60, 0x00, 0x7a, 0x00, 0x94, 0x00, 0x9a, 0x00,
+0x7a, 0x00, 0x54, 0x00, 0x2c, 0x00, 0xf4, 0xff, 0xc2, 0xff, 0x86, 0xff, 0x52, 0xff, 0x3e, 0xff,
+0x3c, 0xff, 0x4a, 0xff, 0x7a, 0xff, 0xb8, 0xff, 0xf4, 0xff, 0x2e, 0x00, 0x68, 0x00, 0x96, 0x00,
+0xaa, 0x00, 0xb6, 0x00, 0x90, 0x00, 0x6a, 0x00, 0x32, 0x00, 0xfa, 0xff, 0xba, 0xff, 0x76, 0xff,
+0x3e, 0xff, 0x2c, 0xff, 0x30, 0xff, 0x4c, 0xff, 0x82, 0xff, 0xc8, 0xff, 0x02, 0x00, 0x36, 0x00,
+0x7c, 0x00, 0xa2, 0x00, 0xb4, 0x00, 0xae, 0x00, 0x8e, 0x00, 0x60, 0x00, 0x0e, 0x00, 0xe4, 0xff,
+0xa0, 0xff, 0x62, 0xff, 0x36, 0xff, 0x18, 0xff, 0x2c, 0xff, 0x56, 0xff, 0x8e, 0xff, 0xcc, 0xff,
+0xfc, 0xff, 0x30, 0x00, 0x72, 0x00, 0x9c, 0x00, 0xa4, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x3e, 0x00,
+0x02, 0x00, 0xce, 0xff, 0x94, 0xff, 0x5a, 0xff, 0x2e, 0xff, 0x26, 0xff, 0x3a, 0xff, 0x5e, 0xff,
+0x96, 0xff, 0xd4, 0xff, 0x0e, 0x00, 0x44, 0x00, 0x78, 0x00, 0xa4, 0x00, 0xb2, 0x00, 0x9c, 0x00,
+0x74, 0x00, 0x3c, 0x00, 0x04, 0x00, 0xbe, 0xff, 0x88, 0xff, 0x54, 0xff, 0x38, 0xff, 0x32, 0xff,
+0x40, 0xff, 0x6e, 0xff, 0xa6, 0xff, 0xe6, 0xff, 0x18, 0x00, 0x48, 0x00, 0x72, 0x00, 0x92, 0x00,
+0x96, 0x00, 0x7e, 0x00, 0x5a, 0x00, 0x28, 0x00, 0xe4, 0xff, 0xb0, 0xff, 0x88, 0xff, 0x5e, 0xff,
+0x4e, 0xff, 0x54, 0xff, 0x68, 0xff, 0x8a, 0xff, 0xc6, 0xff, 0xec, 0xff, 0x1c, 0x00, 0x4c, 0x00,
+0x6c, 0x00, 0x7c, 0x00, 0x76, 0x00, 0x66, 0x00, 0x4c, 0x00, 0x10, 0x00, 0xe6, 0xff, 0xc2, 0xff,
+0xa0, 0xff, 0x90, 0xff, 0x74, 0xff, 0x7c, 0xff, 0x90, 0xff, 0xa2, 0xff, 0xde, 0xff, 0xfc, 0xff,
+0x20, 0x00, 0x44, 0x00, 0x4e, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x56, 0x00, 0x2c, 0x00, 0x0e, 0x00,
+0xe8, 0xff, 0xc4, 0xff, 0xb0, 0xff, 0xa0, 0xff, 0x98, 0xff, 0x94, 0xff, 0xa6, 0xff, 0xb4, 0xff,
+0xe4, 0xff, 0x02, 0x00, 0x14, 0x00, 0x2c, 0x00, 0x36, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x34, 0x00,
+0x08, 0x00, 0xfa, 0xff, 0xe6, 0xff, 0xdc, 0xff, 0xcc, 0xff, 0xc4, 0xff, 0xba, 0xff, 0xbc, 0xff,
+0xd2, 0xff, 0xde, 0xff, 0xf4, 0xff, 0x04, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x10, 0x00,
+0x0c, 0x00, 0x0a, 0x00, 0x08, 0x00, 0xf4, 0xff, 0xf8, 0xff, 0xea, 0xff, 0xea, 0xff, 0xf4, 0xff,
+0xf4, 0xff, 0xf2, 0xff, 0xe6, 0xff, 0xde, 0xff, 0xd4, 0xff, 0xe4, 0xff, 0xd4, 0xff, 0xd4, 0xff,
+0xde, 0xff, 0xd4, 0xff, 0xde, 0xff, 0xec, 0xff, 0xf8, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x14, 0x00,
+0x1c, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xdc, 0xff, 0xc6, 0xff, 0xb0, 0xff,
+0xa4, 0xff, 0xb6, 0xff, 0xac, 0xff, 0xb4, 0xff, 0xd6, 0xff, 0xe4, 0xff, 0xf8, 0xff, 0x14, 0x00,
+0x2a, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x3e, 0x00, 0x2e, 0x00, 0x10, 0x00, 0xf4, 0xff, 0xde, 0xff,
+0xb4, 0xff, 0x96, 0xff, 0x94, 0xff, 0x86, 0xff, 0x96, 0xff, 0x9e, 0xff, 0xbc, 0xff, 0xee, 0xff,
+0x04, 0x00, 0x32, 0x00, 0x50, 0x00, 0x62, 0x00, 0x60, 0x00, 0x58, 0x00, 0x4c, 0x00, 0x1c, 0x00,
+0xf4, 0xff, 0xca, 0xff, 0x94, 0xff, 0x80, 0xff, 0x6a, 0xff, 0x60, 0xff, 0x7e, 0xff, 0x98, 0xff,
+0xb6, 0xff, 0xec, 0xff, 0x1e, 0x00, 0x4e, 0x00, 0x76, 0x00, 0x94, 0x00, 0x88, 0x00, 0x64, 0x00,
+0x46, 0x00, 0x14, 0x00, 0xf0, 0xff, 0xba, 0xff, 0x80, 0xff, 0x60, 0xff, 0x4a, 0xff, 0x54, 0xff,
+0x68, 0xff, 0xa0, 0xff, 0xd6, 0xff, 0x02, 0x00, 0x3a, 0x00, 0x6e, 0x00, 0x96, 0x00, 0xa8, 0x00,
+0x9c, 0x00, 0x7a, 0x00, 0x44, 0x00, 0x0a, 0x00, 0xd0, 0xff, 0x9a, 0xff, 0x64, 0xff, 0x48, 0xff,
+0x36, 0xff, 0x46, 0xff, 0x66, 0xff, 0xa0, 0xff, 0xe4, 0xff, 0x16, 0x00, 0x48, 0x00, 0x90, 0x00,
+0xb2, 0x00, 0xb4, 0x00, 0x9e, 0x00, 0x78, 0x00, 0x40, 0x00, 0xfc, 0xff, 0xc6, 0xff, 0x86, 0xff,
+0x5c, 0xff, 0x36, 0xff, 0x24, 0xff, 0x3a, 0xff, 0x6e, 0xff, 0xb0, 0xff, 0xec, 0xff, 0x1e, 0x00,
+0x60, 0x00, 0x90, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xa6, 0x00, 0x78, 0x00, 0x26, 0x00, 0xf8, 0xff,
+0xc2, 0xff, 0x7c, 0xff, 0x4a, 0xff, 0x28, 0xff, 0x32, 0xff, 0x40, 0xff, 0x6c, 0xff, 0xb0, 0xff,
+0xf8, 0xff, 0x28, 0x00, 0x62, 0x00, 0x9a, 0x00, 0xae, 0x00, 0xa8, 0x00, 0x8c, 0x00, 0x5a, 0x00,
+0x14, 0x00, 0xe2, 0xff, 0xa4, 0xff, 0x72, 0xff, 0x4a, 0xff, 0x2e, 0xff, 0x32, 0xff, 0x4a, 0xff,
+0x82, 0xff, 0xc0, 0xff, 0xfe, 0xff, 0x32, 0x00, 0x6e, 0x00, 0x90, 0x00, 0x96, 0x00, 0x96, 0x00,
+0x76, 0x00, 0x46, 0x00, 0x06, 0x00, 0xd6, 0xff, 0xa4, 0xff, 0x70, 0xff, 0x58, 0xff, 0x54, 0xff,
+0x52, 0xff, 0x6a, 0xff, 0xa4, 0xff, 0xe2, 0xff, 0x12, 0x00, 0x40, 0x00, 0x66, 0x00, 0x84, 0x00,
+0x90, 0x00, 0x72, 0x00, 0x5a, 0x00, 0x32, 0x00, 0xfc, 0xff, 0xd8, 0xff, 0x9c, 0xff, 0x82, 0xff,
+0x72, 0xff, 0x64, 0xff, 0x72, 0xff, 0x8c, 0xff, 0xb6, 0xff, 0xe8, 0xff, 0x0a, 0x00, 0x3a, 0x00,
+0x54, 0x00, 0x56, 0x00, 0x68, 0x00, 0x56, 0x00, 0x30, 0x00, 0x12, 0x00, 0xf2, 0xff, 0xd6, 0xff,
+0xaa, 0xff, 0x94, 0xff, 0x90, 0xff, 0x8e, 0xff, 0x96, 0xff, 0xb0, 0xff, 0xdc, 0xff, 0xfc, 0xff,
+0x0e, 0x00, 0x30, 0x00, 0x42, 0x00, 0x40, 0x00, 0x4a, 0x00, 0x3e, 0x00, 0x20, 0x00, 0x04, 0x00,
+0xfa, 0xff, 0xdc, 0xff, 0xc2, 0xff, 0xc8, 0xff, 0xb6, 0xff, 0xb0, 0xff, 0xb8, 0xff, 0xce, 0xff,
+0xee, 0xff, 0xf6, 0xff, 0x08, 0x00, 0x18, 0x00, 0x1e, 0x00, 0x18, 0x00, 0x20, 0x00, 0x1e, 0x00,
+0x12, 0x00, 0xfc, 0xff, 0xf4, 0xff, 0xf8, 0xff, 0xe4, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xd4, 0xff,
+0xdc, 0xff, 0xd8, 0xff, 0xe2, 0xff, 0xe8, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xfc, 0xff, 0x00, 0x00,
+0xf4, 0xff, 0x06, 0x00, 0x04, 0x00, 0x02, 0x00, 0x0c, 0x00, 0xfe, 0xff, 0x06, 0x00, 0xfc, 0xff,
+0xf2, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xdc, 0xff, 0xd2, 0xff, 0xcc, 0xff, 0xcc, 0xff,
+0xd0, 0xff, 0xd6, 0xff, 0xe0, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0x06, 0x00, 0x16, 0x00, 0x20, 0x00,
+0x2a, 0x00, 0x18, 0x00, 0x1a, 0x00, 0x0e, 0x00, 0xfc, 0xff, 0xea, 0xff, 0xd6, 0xff, 0xbc, 0xff,
+0xa8, 0xff, 0xa4, 0xff, 0x9a, 0xff, 0xb4, 0xff, 0xb8, 0xff, 0xd4, 0xff, 0xf6, 0xff, 0x18, 0x00,
+0x2e, 0x00, 0x40, 0x00, 0x48, 0x00, 0x42, 0x00, 0x40, 0x00, 0x38, 0x00, 0x14, 0x00, 0xe8, 0xff,
+0xcc, 0xff, 0xa0, 0xff, 0x88, 0xff, 0x7e, 0xff, 0x7a, 0xff, 0x96, 0xff, 0xaa, 0xff, 0xda, 0xff,
+0xfe, 0xff, 0x2a, 0x00, 0x54, 0x00, 0x64, 0x00, 0x7e, 0x00, 0x6e, 0x00, 0x5e, 0x00, 0x3e, 0x00,
+0x08, 0x00, 0xe2, 0xff, 0xb2, 0xff, 0x7c, 0xff, 0x66, 0xff, 0x54, 0xff, 0x5c, 0xff, 0x7c, 0xff,
+0x9e, 0xff, 0xdc, 0xff, 0x10, 0x00, 0x40, 0x00, 0x64, 0x00, 0x8a, 0x00, 0x9a, 0x00, 0x94, 0x00,
+0x72, 0x00, 0x36, 0x00, 0x06, 0x00, 0xc2, 0xff, 0x90, 0xff, 0x5e, 0xff, 0x52, 0xff, 0x3c, 0xff,
+0x42, 0xff, 0x78, 0xff, 0xa2, 0xff, 0xe6, 0xff, 0x18, 0x00, 0x62, 0x00, 0x8a, 0x00, 0xa4, 0x00,
+0xb2, 0x00, 0x9a, 0x00, 0x7e, 0x00, 0x3a, 0x00, 0xf6, 0xff, 0xc0, 0xff, 0x84, 0xff, 0x4a, 0xff,
+0x30, 0xff, 0x32, 0xff, 0x4c, 0xff, 0x7e, 0xff, 0xc8, 0xff, 0xf4, 0xff, 0x2a, 0x00, 0x70, 0x00,
+0xa6, 0x00, 0xbe, 0x00, 0xbe, 0x00, 0x9e, 0x00, 0x6e, 0x00, 0x20, 0x00, 0xf2, 0xff, 0xae, 0xff,
+0x6c, 0xff, 0x4a, 0xff, 0x24, 0xff, 0x30, 0xff, 0x58, 0xff, 0x88, 0xff, 0xce, 0xff, 0x08, 0x00,
+0x32, 0x00, 0x72, 0x00, 0xa8, 0x00, 0xbc, 0x00, 0xaa, 0x00, 0x92, 0x00, 0x4c, 0x00, 0x12, 0x00,
+0xde, 0xff, 0x9e, 0xff, 0x6c, 0xff, 0x42, 0xff, 0x2c, 0xff, 0x38, 0xff, 0x60, 0xff, 0x96, 0xff,
+0xd0, 0xff, 0x0c, 0x00, 0x42, 0x00, 0x7c, 0x00, 0xaa, 0x00, 0xb0, 0x00, 0xa4, 0x00, 0x7e, 0x00,
+0x48, 0x00, 0x08, 0x00, 0xcc, 0xff, 0x98, 0xff, 0x6a, 0xff, 0x48, 0xff, 0x3a, 0xff, 0x46, 0xff,
+0x70, 0xff, 0xa8, 0xff, 0xe4, 0xff, 0x1a, 0x00, 0x48, 0x00, 0x74, 0x00, 0x90, 0x00, 0x9a, 0x00,
+0x88, 0x00, 0x5e, 0x00, 0x28, 0x00, 0xf4, 0xff, 0xbc, 0xff, 0x92, 0xff, 0x70, 0xff, 0x56, 0xff,
+0x5a, 0xff, 0x70, 0xff, 0x8c, 0xff, 0xc0, 0xff, 0xe8, 0xff, 0x1c, 0x00, 0x4a, 0x00, 0x6c, 0x00,
+0x76, 0x00, 0x6e, 0x00, 0x62, 0x00, 0x38, 0x00, 0x06, 0x00, 0xe8, 0xff, 0xb8, 0xff, 0x98, 0xff,
+0x88, 0xff, 0x76, 0xff, 0x7e, 0xff, 0x8c, 0xff, 0xa4, 0xff, 0xd2, 0xff, 0xfa, 0xff, 0x22, 0x00,
+0x4e, 0x00, 0x4c, 0x00, 0x48, 0x00, 0x48, 0x00, 0x38, 0x00, 0x14, 0x00, 0x02, 0x00, 0xde, 0xff,
+0xc4, 0xff, 0xa0, 0xff, 0xa6, 0xff, 0xa8, 0xff, 0x9e, 0xff, 0xb4, 0xff, 0xc4, 0xff, 0xe0, 0xff,
+0xfe, 0xff, 0x10, 0x00, 0x20, 0x00, 0x2e, 0x00, 0x30, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0x08, 0x00,
+0xfc, 0xff, 0xec, 0xff, 0xe0, 0xff, 0xd4, 0xff, 0xe0, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xe0, 0xff,
+0xe4, 0xff, 0xee, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x02, 0x00,
+0x06, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfc, 0xff,
+0x02, 0x00, 0xf0, 0xff, 0xe2, 0xff, 0xe2, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd6, 0xff,
+0xd4, 0xff, 0xe4, 0xff, 0xe8, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x12, 0x00, 0x1c, 0x00, 0x18, 0x00,
+0x1e, 0x00, 0x1a, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf2, 0xff, 0xce, 0xff, 0xc2, 0xff, 0xa4, 0xff,
+0xa8, 0xff, 0xb4, 0xff, 0xb2, 0xff, 0xcc, 0xff, 0xea, 0xff, 0x04, 0x00, 0x1e, 0x00, 0x38, 0x00,
+0x44, 0x00, 0x46, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x18, 0x00, 0x04, 0x00, 0xe0, 0xff, 0xbc, 0xff,
+0x9c, 0xff, 0x8c, 0xff, 0x86, 0xff, 0x92, 0xff, 0xa4, 0xff, 0xb2, 0xff, 0xe0, 0xff, 0x06, 0x00,
+0x2c, 0x00, 0x54, 0x00, 0x62, 0x00, 0x58, 0x00, 0x4e, 0x00, 0x3c, 0x00, 0x1e, 0x00, 0xf2, 0xff,
+0xcc, 0xff, 0x96, 0xff, 0x80, 0xff, 0x62, 0xff, 0x54, 0xff, 0x72, 0xff, 0x94, 0xff, 0xb6, 0xff,
+0xe4, 0xff, 0x14, 0x00, 0x50, 0x00, 0x6a, 0x00, 0x8a, 0x00, 0x92, 0x00, 0x6e, 0x00, 0x46, 0x00,
+0x1a, 0x00, 0xee, 0xff, 0xbc, 0xff, 0x8a, 0xff, 0x60, 0xff, 0x48, 0xff, 0x46, 0xff, 0x5c, 0xff,
+0x96, 0xff, 0xb6, 0xff, 0xf6, 0xff, 0x30, 0x00, 0x60, 0x00, 0x94, 0x00, 0xa2, 0x00, 0xa2, 0x00,
+0x82, 0x00, 0x56, 0x00, 0x12, 0x00, 0xec, 0xff, 0xb2, 0xff, 0x6a, 0xff, 0x3e, 0xff, 0x30, 0xff,
+0x30, 0xff, 0x54, 0xff, 0x86, 0xff, 0xc2, 0xff, 0xf8, 0xff, 0x3e, 0x00, 0x82, 0x00, 0xa0, 0x00,
+0xbe, 0x00, 0xae, 0x00, 0x8e, 0x00, 0x52, 0x00, 0x0c, 0x00, 0xe6, 0xff, 0xa2, 0xff, 0x66, 0xff,
+0x3e, 0xff, 0x22, 0xff, 0x3e, 0xff, 0x5c, 0xff, 0x98, 0xff, 0xd8, 0xff, 0x0e, 0x00, 0x56, 0x00,
+0x88, 0x00, 0xb4, 0x00, 0xc2, 0x00, 0xac, 0x00, 0x8a, 0x00, 0x46, 0x00, 0xfc, 0xff, 0xd2, 0xff,
+0x8e, 0xff, 0x54, 0xff, 0x30, 0xff, 0x30, 0xff, 0x3a, 0xff, 0x64, 0xff, 0xa2, 0xff, 0xe0, 0xff,
+0x16, 0x00, 0x56, 0x00, 0x8c, 0x00, 0xb0, 0x00, 0xb6, 0x00, 0x9a, 0x00, 0x62, 0x00, 0x24, 0x00,
+0xf6, 0xff, 0xba, 0xff, 0x7e, 0xff, 0x4a, 0xff, 0x32, 0xff, 0x38, 0xff, 0x58, 0xff, 0x82, 0xff,
+0xc8, 0xff, 0xf8, 0xff, 0x30, 0x00, 0x68, 0x00, 0x8e, 0x00, 0xaa, 0x00, 0x9c, 0x00, 0x86, 0x00,
+0x50, 0x00, 0x1a, 0x00, 0xf2, 0xff, 0xb0, 0xff, 0x7a, 0xff, 0x5a, 0xff, 0x44, 0xff, 0x58, 0xff,
+0x76, 0xff, 0xa0, 0xff, 0xe0, 0xff, 0x08, 0x00, 0x32, 0x00, 0x56, 0x00, 0x78, 0x00, 0x7e, 0x00,
+0x7a, 0x00, 0x60, 0x00, 0x34, 0x00, 0x04, 0x00, 0xdc, 0xff, 0xa2, 0xff, 0x7e, 0xff, 0x66, 0xff,
+0x64, 0xff, 0x72, 0xff, 0x7a, 0xff, 0xac, 0xff, 0xe0, 0xff, 0x00, 0x00, 0x22, 0x00, 0x42, 0x00,
+0x4e, 0x00, 0x56, 0x00, 0x4a, 0x00, 0x36, 0x00, 0x18, 0x00, 0xfe, 0xff, 0xe2, 0xff, 0xb4, 0xff,
+0xa2, 0xff, 0x8e, 0xff, 0x96, 0xff, 0x96, 0xff, 0xa8, 0xff, 0xce, 0xff, 0xf4, 0xff, 0x06, 0x00,
+0x1a, 0x00, 0x2e, 0x00, 0x2a, 0x00, 0x3a, 0x00, 0x32, 0x00, 0x26, 0x00, 0x08, 0x00, 0xfa, 0xff,
+0xea, 0xff, 0xce, 0xff, 0xbc, 0xff, 0xc0, 0xff, 0xb2, 0xff, 0xb6, 0xff, 0xca, 0xff, 0xd8, 0xff,
+0xf4, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x12, 0x00, 0x10, 0x00, 0x16, 0x00, 0x0a, 0x00,
+0x04, 0x00, 0xfa, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xda, 0xff, 0xe4, 0xff, 0xdc, 0xff,
+0xde, 0xff, 0xe6, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xe8, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0xf8, 0xff,
+0xf2, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x16, 0x00, 0x12, 0x00, 0x0c, 0x00,
+0x12, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xdc, 0xff, 0xc4, 0xff, 0xc8, 0xff, 0xcc, 0xff,
+0xd0, 0xff, 0xca, 0xff, 0xda, 0xff, 0xf0, 0xff, 0xfc, 0xff, 0x14, 0x00, 0x20, 0x00, 0x30, 0x00,
+0x2a, 0x00, 0x28, 0x00, 0x26, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xdc, 0xff, 0xc0, 0xff, 0xac, 0xff,
+0xa6, 0xff, 0xa8, 0xff, 0xb0, 0xff, 0xba, 0xff, 0xd0, 0xff, 0xee, 0xff, 0xfc, 0xff, 0x28, 0x00,
+0x40, 0x00, 0x56, 0x00, 0x54, 0x00, 0x48, 0x00, 0x3a, 0x00, 0x16, 0x00, 0xfc, 0xff, 0xc4, 0xff,
+0xa6, 0xff, 0x8e, 0xff, 0x7e, 0xff, 0x84, 0xff, 0x98, 0xff, 0xa6, 0xff, 0xc4, 0xff, 0xea, 0xff,
+0x0c, 0x00, 0x48, 0x00, 0x5e, 0x00, 0x6c, 0x00, 0x72, 0x00, 0x5c, 0x00, 0x3c, 0x00, 0x10, 0x00,
+0xe8, 0xff, 0xa8, 0xff, 0x74, 0xff, 0x5c, 0xff, 0x56, 0xff, 0x4e, 0xff, 0x60, 0xff, 0x8a, 0xff,
+0xb8, 0xff, 0xea, 0xff, 0x1c, 0x00, 0x52, 0x00, 0x78, 0x00, 0x8e, 0x00, 0x88, 0x00, 0x68, 0x00,
+0x40, 0x00, 0x0e, 0x00, 0xd6, 0xff, 0xa0, 0xff, 0x6a, 0xff, 0x48, 0xff, 0x3c, 0xff, 0x42, 0xff,
+0x60, 0xff, 0x9a, 0xff, 0xc8, 0xff, 0xfa, 0xff, 0x3c, 0x00, 0x78, 0x00, 0x98, 0x00, 0xae, 0x00,
+0x9e, 0x00, 0x80, 0x00, 0x40, 0x00, 0x12, 0x00, 0xd0, 0xff, 0x8e, 0xff, 0x62, 0xff, 0x32, 0xff,
+0x28, 0xff, 0x32, 0xff, 0x56, 0xff, 0xa2, 0xff, 0xd6, 0xff, 0x10, 0x00, 0x5c, 0x00, 0x8a, 0x00,
+0xb2, 0x00, 0xb6, 0x00, 0xa8, 0x00, 0x6c, 0x00, 0x24, 0x00, 0xf0, 0xff, 0xbc, 0xff, 0x80, 0xff,
+0x48, 0xff, 0x28, 0xff, 0x2a, 0xff, 0x46, 0xff, 0x7a, 0xff, 0xcc, 0xff, 0xfa, 0xff, 0x28, 0x00,
+0x6e, 0x00, 0xb0, 0x00, 0xca, 0x00, 0xb8, 0x00, 0x9a, 0x00, 0x60, 0x00, 0x1e, 0x00, 0xe0, 0xff,
+0xb0, 0xff, 0x74, 0xff, 0x46, 0xff, 0x36, 0xff, 0x3c, 0xff, 0x64, 0xff, 0x9e, 0xff, 0xd6, 0xff,
+0x20, 0x00, 0x4e, 0x00, 0x86, 0x00, 0xa0, 0x00, 0xbc, 0x00, 0xae, 0x00, 0x74, 0x00, 0x48, 0x00,
+0x06, 0x00, 0xce, 0xff, 0x96, 0xff, 0x6c, 0xff, 0x44, 0xff, 0x3e, 0xff, 0x4a, 0xff, 0x70, 0xff,
+0xae, 0xff, 0xe2, 0xff, 0x18, 0x00, 0x48, 0x00, 0x84, 0x00, 0x90, 0x00, 0xa6, 0x00, 0x82, 0x00,
+0x62, 0x00, 0x34, 0x00, 0xfa, 0xff, 0xd4, 0xff, 0x90, 0xff, 0x76, 0xff, 0x60, 0xff, 0x58, 0xff,
+0x68, 0xff, 0x8a, 0xff, 0xc0, 0xff, 0xf4, 0xff, 0x1e, 0x00, 0x4e, 0x00, 0x64, 0x00, 0x80, 0x00,
+0x7c, 0x00, 0x64, 0x00, 0x54, 0x00, 0x1e, 0x00, 0xec, 0xff, 0xc2, 0xff, 0x9a, 0xff, 0x8c, 0xff,
+0x7c, 0xff, 0x74, 0xff, 0x7c, 0xff, 0xa0, 0xff, 0xce, 0xff, 0xf2, 0xff, 0x1c, 0x00, 0x3e, 0x00,
+0x3e, 0x00, 0x50, 0x00, 0x4e, 0x00, 0x44, 0x00, 0x1e, 0x00, 0x06, 0x00, 0xe6, 0xff, 0xc2, 0xff,
+0xa0, 0xff, 0x94, 0xff, 0x96, 0xff, 0x94, 0xff, 0xa0, 0xff, 0xbe, 0xff, 0xda, 0xff, 0xf6, 0xff,
+0x0c, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x32, 0x00, 0x22, 0x00, 0x10, 0x00, 0xfe, 0xff,
+0xe8, 0xff, 0xd6, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xb6, 0xff, 0xcc, 0xff, 0xda, 0xff,
+0xec, 0xff, 0xf6, 0xff, 0xf0, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x00, 0x00, 0x02, 0x00, 0xf8, 0xff,
+0xfc, 0xff, 0xfa, 0xff, 0xee, 0xff, 0xe8, 0xff, 0xee, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe8, 0xff,
+0xee, 0xff, 0xe8, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xd6, 0xff, 0xde, 0xff, 0xe2, 0xff, 0xda, 0xff,
+0xe0, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0x02, 0x00, 0x12, 0x00, 0x14, 0x00, 0x20, 0x00, 0x12, 0x00,
+0x18, 0x00, 0x10, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xe4, 0xff, 0xd4, 0xff, 0xbc, 0xff, 0xbc, 0xff,
+0xc6, 0xff, 0xd6, 0xff, 0xce, 0xff, 0xf4, 0xff, 0x00, 0x00, 0x18, 0x00, 0x36, 0x00, 0x3c, 0x00,
+0x46, 0x00, 0x3c, 0x00, 0x28, 0x00, 0x22, 0x00, 0xfc, 0xff, 0xe4, 0xff, 0xc8, 0xff, 0x98, 0xff,
+0x9a, 0xff, 0x92, 0xff, 0x88, 0xff, 0xa0, 0xff, 0xba, 0xff, 0xee, 0xff, 0x08, 0x00, 0x2a, 0x00,
+0x58, 0x00, 0x5a, 0x00, 0x6c, 0x00, 0x60, 0x00, 0x42, 0x00, 0x34, 0x00, 0x02, 0x00, 0xda, 0xff,
+0xac, 0xff, 0x7c, 0xff, 0x6c, 0xff, 0x62, 0xff, 0x74, 0xff, 0x94, 0xff, 0xba, 0xff, 0xe6, 0xff,
+0x14, 0x00, 0x4c, 0x00, 0x78, 0x00, 0x88, 0x00, 0x84, 0x00, 0x7a, 0x00, 0x5c, 0x00, 0x28, 0x00,
+0x00, 0x00, 0xcc, 0xff, 0x96, 0xff, 0x58, 0xff, 0x42, 0xff, 0x44, 0xff, 0x52, 0xff, 0x7e, 0xff,
+0xb2, 0xff, 0xe8, 0xff, 0x20, 0x00, 0x50, 0x00, 0x78, 0x00, 0x94, 0x00, 0x94, 0x00, 0x86, 0x00,
+0x52, 0x00, 0x14, 0x00, 0xdc, 0xff, 0xa0, 0xff, 0x70, 0xff, 0x4e, 0xff, 0x62, 0xff, 0x8a, 0xff,
+0xc4, 0xff, 0xfe, 0xff, 0x38, 0x00, 0x76, 0x00, 0x9a, 0x00, 0xa6, 0x00, 0xa8, 0x00, 0x8c, 0x00,
+0x52, 0x00, 0x0c, 0x00, 0xd4, 0xff, 0x9a, 0xff, 0x60, 0xff, 0x2a, 0xff, 0x1e, 0xff, 0x36, 0xff,
+0x62, 0xff, 0x9c, 0xff, 0xda, 0xff, 0x0c, 0x00, 0x48, 0x00, 0x86, 0x00, 0xa0, 0x00, 0xb8, 0x00,
+0xa8, 0x00, 0x74, 0x00, 0x38, 0x00, 0xf6, 0xff, 0xc2, 0xff, 0x86, 0xff, 0x52, 0xff, 0x28, 0xff,
+0x26, 0xff, 0x3e, 0xff, 0x68, 0xff, 0xa0, 0xff, 0xe6, 0xff, 0x14, 0x00, 0x4e, 0x00, 0x80, 0x00,
+0xa2, 0x00, 0xb6, 0x00, 0x94, 0x00, 0x6c, 0x00, 0x2a, 0x00, 0xf2, 0xff, 0xb8, 0xff, 0x7a, 0xff,
+0x5c, 0xff, 0x48, 0xff, 0x46, 0xff, 0x62, 0xff, 0x82, 0xff, 0xb4, 0xff, 0xf4, 0xff, 0x26, 0x00,
+0x5a, 0x00, 0x84, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0x8c, 0x00, 0x60, 0x00, 0x20, 0x00, 0xf4, 0xff,
+0xbe, 0xff, 0x8c, 0xff, 0x62, 0xff, 0x44, 0xff, 0x54, 0xff, 0x6e, 0xff, 0x8e, 0xff, 0xc2, 0xff,
+0xf6, 0xff, 0x26, 0x00, 0x52, 0x00, 0x78, 0x00, 0x82, 0x00, 0x7a, 0x00, 0x6e, 0x00, 0x40, 0x00,
+0x0e, 0x00, 0xe2, 0xff, 0xb2, 0xff, 0x8c, 0xff, 0x7c, 0xff, 0x6a, 0xff, 0x6a, 0xff, 0x82, 0xff,
+0x9e, 0xff, 0xda, 0xff, 0x06, 0x00, 0x2e, 0x00, 0x4c, 0x00, 0x66, 0x00, 0x60, 0x00, 0x56, 0x00,
+0x50, 0x00, 0x24, 0x00, 0x06, 0x00, 0xec, 0xff, 0xc2, 0xff, 0xa6, 0xff, 0xa4, 0xff, 0x98, 0xff,
+0xa4, 0xff, 0xaa, 0xff, 0xc0, 0xff, 0xea, 0xff, 0xfe, 0xff, 0x14, 0x00, 0x28, 0x00, 0x3a, 0x00,
+0x40, 0x00, 0x38, 0x00, 0x1a, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xe4, 0xff, 0xcc, 0xff, 0xba, 0xff,
+0xb4, 0xff, 0xbc, 0xff, 0xac, 0xff, 0xc6, 0xff, 0xe0, 0xff, 0xee, 0xff, 0xf6, 0xff, 0xfe, 0xff,
+0x10, 0x00, 0x10, 0x00, 0x12, 0x00, 0x06, 0x00, 0x06, 0x00, 0xfc, 0xff, 0xf2, 0xff, 0xf0, 0xff,
+0xe8, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdc, 0xff, 0xdc, 0xff, 0xd0, 0xff, 0xea, 0xff,
+0xf2, 0xff, 0xec, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xf0, 0xff,
+0x06, 0x00, 0x08, 0x00, 0x06, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x08, 0x00, 0xf6, 0xff, 0xe6, 0xff,
+0xe6, 0xff, 0xd2, 0xff, 0xc6, 0xff, 0xc4, 0xff, 0xcc, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xe0, 0xff,
+0xf0, 0xff, 0x06, 0x00, 0x0c, 0x00, 0x24, 0x00, 0x3a, 0x00, 0x22, 0x00, 0x1a, 0x00, 0x16, 0x00,
+0x02, 0x00, 0xf4, 0xff, 0xd4, 0xff, 0xb0, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xa2, 0xff, 0xa0, 0xff,
+0xb4, 0xff, 0xd2, 0xff, 0xfc, 0xff, 0x14, 0x00, 0x3c, 0x00, 0x60, 0x00, 0x5c, 0x00, 0x6a, 0x00,
+0x4c, 0x00, 0x30, 0x00, 0x10, 0x00, 0xe8, 0xff, 0xca, 0xff, 0x9e, 0xff, 0x8a, 0xff, 0x82, 0xff,
+0x7a, 0xff, 0x90, 0xff, 0xac, 0xff, 0xd0, 0xff, 0x06, 0x00, 0x2a, 0x00, 0x5a, 0x00, 0x78, 0x00,
+0x82, 0x00, 0x7e, 0x00, 0x60, 0x00, 0x30, 0x00, 0x04, 0x00, 0xde, 0xff, 0xa4, 0xff, 0x6c, 0xff,
+0x5a, 0xff, 0x50, 0xff, 0x54, 0xff, 0x74, 0xff, 0x9c, 0xff, 0xd6, 0xff, 0x14, 0x00, 0x46, 0x00,
+0x6e, 0x00, 0x90, 0x00, 0x96, 0x00, 0x8a, 0x00, 0x60, 0x00, 0x30, 0x00, 0x06, 0x00, 0xca, 0xff,
+0x94, 0xff, 0x66, 0xff, 0x42, 0xff, 0x3a, 0xff, 0x48, 0xff, 0x68, 0xff, 0xa8, 0xff, 0xec, 0xff,
+0x20, 0x00, 0x5e, 0x00, 0x92, 0x00, 0xa4, 0x00, 0xa8, 0x00, 0x90, 0x00, 0x62, 0x00, 0x2e, 0x00,
+0xee, 0xff, 0xba, 0xff, 0x7e, 0xff, 0x4a, 0xff, 0x2e, 0xff, 0x22, 0xff, 0x44, 0xff, 0x70, 0xff,
+0xa8, 0xff, 0xee, 0xff, 0x20, 0x00, 0x5c, 0x00, 0x92, 0x00, 0xac, 0x00, 0xa4, 0x00, 0x90, 0x00,
+0x62, 0x00, 0x2a, 0x00, 0xe8, 0xff, 0xb0, 0xff, 0x66, 0xff, 0x38, 0xff, 0x28, 0xff, 0x22, 0xff,
+0x44, 0xff, 0x74, 0xff, 0xc2, 0xff, 0x00, 0x00, 0x36, 0x00, 0x74, 0x00, 0x98, 0x00, 0xac, 0x00,
+0xaa, 0x00, 0x92, 0x00, 0x5a, 0x00, 0x1c, 0x00, 0xe8, 0xff, 0xa6, 0xff, 0x72, 0xff, 0x46, 0xff,
+0x2c, 0xff, 0x40, 0xff, 0x5a, 0xff, 0x8c, 0xff, 0xd4, 0xff, 0x0e, 0x00, 0x38, 0x00, 0x70, 0x00,
+0x92, 0x00, 0xa0, 0x00, 0x96, 0x00, 0x74, 0x00, 0x3c, 0x00, 0x04, 0x00, 0xc8, 0xff, 0x8a, 0xff,
+0x6a, 0xff, 0x50, 0xff, 0x42, 0xff, 0x4c, 0xff, 0x76, 0xff, 0xa8, 0xff, 0xdc, 0xff, 0x0a, 0x00,
+0x3e, 0x00, 0x74, 0x00, 0x86, 0x00, 0x8e, 0x00, 0x80, 0x00, 0x5e, 0x00, 0x32, 0x00, 0xf4, 0xff,
+0xc2, 0xff, 0x9e, 0xff, 0x76, 0xff, 0x64, 0xff, 0x66, 0xff, 0x6c, 0xff, 0x8e, 0xff, 0xbe, 0xff,
+0xf6, 0xff, 0x2a, 0x00, 0x50, 0x00, 0x5c, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x5c, 0x00, 0x46, 0x00,
+0x14, 0x00, 0xec, 0xff, 0xc6, 0xff, 0xa0, 0xff, 0x90, 0xff, 0x78, 0xff, 0x74, 0xff, 0x88, 0xff,
+0xa6, 0xff, 0xd2, 0xff, 0xf6, 0xff, 0x12, 0x00, 0x32, 0x00, 0x3e, 0x00, 0x48, 0x00, 0x3c, 0x00,
+0x3a, 0x00, 0x26, 0x00, 0xfa, 0xff, 0xe0, 0xff, 0xc2, 0xff, 0xae, 0xff, 0xaa, 0xff, 0xa0, 0xff,
+0xaa, 0xff, 0xae, 0xff, 0xbe, 0xff, 0xe8, 0xff, 0xf8, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x24, 0x00,
+0x20, 0x00, 0x24, 0x00, 0x14, 0x00, 0x0c, 0x00, 0x08, 0x00, 0xec, 0xff, 0xe8, 0xff, 0xcc, 0xff,
+0xca, 0xff, 0xdc, 0xff, 0xc8, 0xff, 0xce, 0xff, 0xdc, 0xff, 0xe2, 0xff, 0xe8, 0xff, 0xf6, 0xff,
+0xf2, 0xff, 0xe8, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf4, 0xff, 0xfe, 0xff,
+0xfa, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xdc, 0xff,
+0xd0, 0xff, 0xd0, 0xff, 0xc2, 0xff, 0xca, 0xff, 0xca, 0xff, 0xca, 0xff, 0xe4, 0xff, 0xf6, 0xff,
+0x0e, 0x00, 0x12, 0x00, 0x1a, 0x00, 0x26, 0x00, 0x1a, 0x00, 0x2a, 0x00, 0x1e, 0x00, 0x04, 0x00,
+0xf0, 0xff, 0xd0, 0xff, 0xbc, 0xff, 0xa2, 0xff, 0xa6, 0xff, 0xa2, 0xff, 0xb2, 0xff, 0xc0, 0xff,
+0xe4, 0xff, 0x04, 0x00, 0x10, 0x00, 0x30, 0x00, 0x3a, 0x00, 0x3e, 0x00, 0x4c, 0x00, 0x3a, 0x00,
+0x26, 0x00, 0x08, 0x00, 0xda, 0xff, 0xb6, 0xff, 0x98, 0xff, 0x88, 0xff, 0x7c, 0xff, 0x86, 0xff,
+0x9c, 0xff, 0xb2, 0xff, 0xe0, 0xff, 0x08, 0x00, 0x2a, 0x00, 0x4c, 0x00, 0x6a, 0x00, 0x76, 0x00,
+0x72, 0x00, 0x50, 0x00, 0x2e, 0x00, 0xfc, 0xff, 0xde, 0xff, 0xa8, 0xff, 0x82, 0xff, 0x80, 0xff,
+0x68, 0xff, 0x72, 0xff, 0x8e, 0xff, 0xb6, 0xff, 0xf0, 0xff, 0x1c, 0x00, 0x4e, 0x00, 0x6a, 0x00,
+0x90, 0x00, 0x9a, 0x00, 0x8e, 0x00, 0x6a, 0x00, 0x2c, 0x00, 0x12, 0x00, 0xce, 0xff, 0x98, 0xff,
+0x66, 0xff, 0x4e, 0xff, 0x42, 0xff, 0x56, 0xff, 0x86, 0xff, 0xb8, 0xff, 0xf8, 0xff, 0x26, 0x00,
+0x56, 0x00, 0x86, 0x00, 0xa0, 0x00, 0xb0, 0x00, 0x9c, 0x00, 0x66, 0x00, 0x28, 0x00, 0xf0, 0xff,
+0xbc, 0xff, 0x7a, 0xff, 0x4e, 0xff, 0x3c, 0xff, 0x32, 0xff, 0x58, 0xff, 0x8a, 0xff, 0xc0, 0xff,
+0xfa, 0xff, 0x36, 0x00, 0x80, 0x00, 0xa0, 0x00, 0xc0, 0x00, 0xc2, 0x00, 0x90, 0x00, 0x60, 0x00,
+0x14, 0x00, 0xec, 0xff, 0xa8, 0xff, 0x6a, 0xff, 0x4e, 0xff, 0x2a, 0xff, 0x34, 0xff, 0x4a, 0xff,
+0x7a, 0xff, 0xd2, 0xff, 0xfe, 0xff, 0x38, 0x00, 0x7c, 0x00, 0xae, 0x00, 0xb6, 0x00, 0xaa, 0x00,
+0x8a, 0x00, 0x48, 0x00, 0x06, 0x00, 0xd2, 0xff, 0x8e, 0xff, 0x4a, 0xff, 0x32, 0xff, 0x1a, 0xff,
+0x2c, 0xff, 0x50, 0xff, 0x8e, 0xff, 0xda, 0xff, 0x18, 0x00, 0x4c, 0x00, 0x8c, 0x00, 0xae, 0x00,
+0xb0, 0x00, 0x98, 0x00, 0x74, 0x00, 0x3a, 0x00, 0xfa, 0xff, 0xc6, 0xff, 0x86, 0xff, 0x5c, 0xff,
+0x32, 0xff, 0x3c, 0xff, 0x4c, 0xff, 0x70, 0xff, 0xae, 0xff, 0xea, 0xff, 0x2a, 0x00, 0x60, 0x00,
+0x86, 0x00, 0x94, 0x00, 0x94, 0x00, 0x7e, 0x00, 0x58, 0x00, 0x2e, 0x00, 0xf2, 0xff, 0xbe, 0xff,
+0x8c, 0xff, 0x6e, 0xff, 0x4c, 0xff, 0x52, 0xff, 0x74, 0xff, 0x88, 0xff, 0xc6, 0xff, 0xfa, 0xff,
+0x28, 0x00, 0x4e, 0x00, 0x6e, 0x00, 0x80, 0x00, 0x76, 0x00, 0x5a, 0x00, 0x3c, 0x00, 0x1a, 0x00,
+0xf8, 0xff, 0xbc, 0xff, 0x9a, 0xff, 0x90, 0xff, 0x80, 0xff, 0x86, 0xff, 0x96, 0xff, 0xb6, 0xff,
+0xe4, 0xff, 0x08, 0x00, 0x2a, 0x00, 0x4e, 0x00, 0x5c, 0x00, 0x64, 0x00, 0x5c, 0x00, 0x48, 0x00,
+0x28, 0x00, 0x12, 0x00, 0xec, 0xff, 0xc6, 0xff, 0xb0, 0xff, 0x9e, 0xff, 0x9c, 0xff, 0x9c, 0xff,
+0xae, 0xff, 0xce, 0xff, 0xf4, 0xff, 0x04, 0x00, 0x26, 0x00, 0x3a, 0x00, 0x2e, 0x00, 0x38, 0x00,
+0x3e, 0x00, 0x30, 0x00, 0x10, 0x00, 0xfa, 0xff, 0xe8, 0xff, 0xd0, 0xff, 0xbc, 0xff, 0xba, 0xff,
+0xc2, 0xff, 0xba, 0xff, 0xcc, 0xff, 0xdc, 0xff, 0x02, 0x00, 0x04, 0x00, 0x08, 0x00, 0x1c, 0x00,
+0x16, 0x00, 0x20, 0x00, 0x18, 0x00, 0x16, 0x00, 0x12, 0x00, 0xfc, 0xff, 0xf4, 0xff, 0xf2, 0xff,
+0xde, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xe8, 0xff, 0xf6, 0xff, 0xec, 0xff,
+0xf6, 0xff, 0xe8, 0xff, 0xe6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x04, 0x00,
+0xfe, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xee, 0xff, 0xe8, 0xff, 0xe4, 0xff,
+0xd0, 0xff, 0xba, 0xff, 0xba, 0xff, 0xb6, 0xff, 0xb8, 0xff, 0xc2, 0xff, 0xd6, 0xff, 0xf0, 0xff,
+0xf6, 0xff, 0x04, 0x00, 0x1e, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x22, 0x00, 0x06, 0x00,
+0xe8, 0xff, 0xd2, 0xff, 0xb4, 0xff, 0xa2, 0xff, 0x94, 0xff, 0x8e, 0xff, 0x9c, 0xff, 0xa6, 0xff,
+0xbe, 0xff, 0xf0, 0xff, 0x0a, 0x00, 0x32, 0x00, 0x52, 0x00, 0x52, 0x00, 0x5e, 0x00, 0x40, 0x00,
+0x36, 0x00, 0x14, 0x00, 0xf2, 0xff, 0xd0, 0xff, 0xa2, 0xff, 0x7c, 0xff, 0x6a, 0xff, 0x62, 0xff,
+0x78, 0xff, 0x92, 0xff, 0xb2, 0xff, 0xf6, 0xff, 0x14, 0x00, 0x50, 0x00, 0x66, 0x00, 0x72, 0x00,
+0x80, 0x00, 0x66, 0x00, 0x52, 0x00, 0x1e, 0x00, 0xfc, 0xff, 0xb6, 0xff, 0x7a, 0xff, 0x6a, 0xff,
+0x48, 0xff, 0x4e, 0xff, 0x6c, 0xff, 0x90, 0xff, 0xc0, 0xff, 0xfa, 0xff, 0x32, 0x00, 0x6c, 0x00,
+0x8a, 0x00, 0xac, 0x00, 0xa2, 0x00, 0x84, 0x00, 0x5a, 0x00, 0x22, 0x00, 0xec, 0xff, 0xb6, 0xff,
+0x78, 0xff, 0x4a, 0xff, 0x3a, 0xff, 0x36, 0xff, 0x56, 0xff, 0x92, 0xff, 0xcc, 0xff, 0x04, 0x00,
+0x44, 0x00, 0x7c, 0x00, 0xa2, 0x00, 0xb2, 0x00, 0xaa, 0x00, 0x86, 0x00, 0x50, 0x00, 0x16, 0x00,
+0xe2, 0xff, 0x9c, 0xff, 0x54, 0xff, 0x32, 0xff, 0x1a, 0xff, 0x38, 0xff, 0x58, 0xff, 0x96, 0xff,
+0xe2, 0xff, 0x16, 0x00, 0x52, 0x00, 0x8e, 0x00, 0xb2, 0x00, 0xb8, 0x00, 0xac, 0x00, 0x80, 0x00,
+0x42, 0x00, 0x02, 0x00, 0xce, 0xff, 0x7e, 0xff, 0x4e, 0xff, 0x1e, 0xff, 0x16, 0xff, 0x3e, 0xff,
+0x68, 0xff, 0xb0, 0xff, 0xf2, 0xff, 0x22, 0x00, 0x64, 0x00, 0x8e, 0x00, 0xae, 0x00, 0xb4, 0x00,
+0x96, 0x00, 0x6e, 0x00, 0x2a, 0x00, 0xe6, 0xff, 0xb4, 0xff, 0x6a, 0xff, 0x36, 0xff, 0x28, 0xff,
+0x2e, 0xff, 0x4e, 0xff, 0x80, 0xff, 0xbc, 0xff, 0xf4, 0xff, 0x24, 0x00, 0x58, 0x00, 0x84, 0x00,
+0x98, 0x00, 0x9c, 0x00, 0x7e, 0x00, 0x42, 0x00, 0x18, 0x00, 0xd0, 0xff, 0x9c, 0xff, 0x72, 0xff,
+0x4c, 0xff, 0x44, 0xff, 0x48, 0xff, 0x74, 0xff, 0x90, 0xff, 0xc8, 0xff, 0xfc, 0xff, 0x2c, 0x00,
+0x66, 0x00, 0x74, 0x00, 0x88, 0x00, 0x74, 0x00, 0x56, 0x00, 0x3a, 0x00, 0x06, 0x00, 0xd6, 0xff,
+0xa4, 0xff, 0x7e, 0xff, 0x6c, 0xff, 0x66, 0xff, 0x72, 0xff, 0x8a, 0xff, 0xb8, 0xff, 0xe2, 0xff,
+0x04, 0x00, 0x38, 0x00, 0x46, 0x00, 0x5a, 0x00, 0x5e, 0x00, 0x50, 0x00, 0x48, 0x00, 0x16, 0x00,
+0xec, 0xff, 0xd2, 0xff, 0xa8, 0xff, 0x9a, 0xff, 0x96, 0xff, 0x8a, 0xff, 0x9e, 0xff, 0xb6, 0xff,
+0xd4, 0xff, 0xee, 0xff, 0x0a, 0x00, 0x22, 0x00, 0x3e, 0x00, 0x44, 0x00, 0x40, 0x00, 0x34, 0x00,
+0x22, 0x00, 0x0c, 0x00, 0xec, 0xff, 0xde, 0xff, 0xca, 0xff, 0xc2, 0xff, 0xb8, 0xff, 0xc0, 0xff,
+0xc2, 0xff, 0xd0, 0xff, 0xe6, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x14, 0x00, 0x26, 0x00, 0x20, 0x00,
+0x24, 0x00, 0x1e, 0x00, 0x08, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xea, 0xff, 0xda, 0xff, 0xd8, 0xff,
+0xe6, 0xff, 0xe0, 0xff, 0xda, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xee, 0xff, 0xf2, 0xff, 0xf6, 0xff,
+0xf4, 0xff, 0xf4, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xf8, 0xff, 0x00, 0x00, 0x00, 0x00,
+0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0xee, 0xff, 0xf0, 0xff, 0xde, 0xff, 0xdc, 0xff,
+0xe2, 0xff, 0xd6, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0x02, 0x00,
+0x10, 0x00, 0x1a, 0x00, 0x22, 0x00, 0x22, 0x00, 0x16, 0x00, 0x0e, 0x00, 0xfa, 0xff, 0xf0, 0xff,
+0xda, 0xff, 0xbc, 0xff, 0xb4, 0xff, 0xa4, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xbc, 0xff, 0xd4, 0xff,
+0xe2, 0xff, 0x06, 0x00, 0x26, 0x00, 0x32, 0x00, 0x34, 0x00, 0x34, 0x00, 0x22, 0x00, 0x26, 0x00,
+0x00, 0x00, 0xdc, 0xff, 0xc4, 0xff, 0x90, 0xff, 0x94, 0xff, 0x86, 0xff, 0x80, 0xff, 0x9a, 0xff,
+0x9e, 0xff, 0xd4, 0xff, 0xfc, 0xff, 0x18, 0x00, 0x4e, 0x00, 0x5c, 0x00, 0x70, 0x00, 0x5c, 0x00,
+0x48, 0x00, 0x2e, 0x00, 0x06, 0x00, 0xdc, 0xff, 0xa6, 0xff, 0x84, 0xff, 0x66, 0xff, 0x58, 0xff,
+0x64, 0xff, 0x7c, 0xff, 0xac, 0xff, 0xd8, 0xff, 0x06, 0x00, 0x46, 0x00, 0x68, 0x00, 0x88, 0x00,
+0x8c, 0x00, 0x86, 0x00, 0x50, 0x00, 0x34, 0x00, 0xfa, 0xff, 0xc0, 0xff, 0x92, 0xff, 0x5a, 0xff,
+0x44, 0xff, 0x3a, 0xff, 0x48, 0xff, 0x78, 0xff, 0xac, 0xff, 0xea, 0xff, 0x26, 0x00, 0x56, 0x00,
+0x98, 0x00, 0xaa, 0x00, 0xae, 0x00, 0x94, 0x00, 0x68, 0x00, 0x28, 0x00, 0xf2, 0xff, 0xbe, 0xff,
+0x86, 0xff, 0x58, 0xff, 0x38, 0xff, 0x34, 0xff, 0x4c, 0xff, 0x8c, 0xff, 0xca, 0xff, 0x06, 0x00,
+0x3e, 0x00, 0x76, 0x00, 0xa6, 0x00, 0xb8, 0x00, 0xc0, 0x00, 0x98, 0x00, 0x66, 0x00, 0x18, 0x00,
+0xe0, 0xff, 0xb8, 0xff, 0x72, 0xff, 0x4c, 0xff, 0x2a, 0xff, 0x28, 0xff, 0x5c, 0xff, 0x86, 0xff,
+0xd4, 0xff, 0x02, 0x00, 0x38, 0x00, 0x88, 0x00, 0x9a, 0x00, 0xbc, 0x00, 0xaa, 0x00, 0x90, 0x00,
+0x4e, 0x00, 0x0a, 0x00, 0xe2, 0xff, 0xa0, 0xff, 0x7a, 0xff, 0x40, 0xff, 0x32, 0xff, 0x3c, 0xff,
+0x5e, 0xff, 0xac, 0xff, 0xe4, 0xff, 0x22, 0x00, 0x54, 0x00, 0x82, 0x00, 0xb2, 0x00, 0xb2, 0x00,
+0x98, 0x00, 0x78, 0x00, 0x3e, 0x00, 0x0c, 0x00, 0xd2, 0xff, 0x9c, 0xff, 0x64, 0xff, 0x40, 0xff,
+0x4c, 0xff, 0x5c, 0xff, 0x82, 0xff, 0xb2, 0xff, 0xf2, 0xff, 0x22, 0x00, 0x56, 0x00, 0x82, 0x00,
+0x8e, 0x00, 0x8e, 0x00, 0x84, 0x00, 0x58, 0x00, 0x20, 0x00, 0xf0, 0xff, 0xb6, 0xff, 0x8c, 0xff,
+0x66, 0xff, 0x5a, 0xff, 0x4e, 0xff, 0x60, 0xff, 0x92, 0xff, 0xcc, 0xff, 0xee, 0xff, 0x20, 0x00,
+0x52, 0x00, 0x62, 0x00, 0x74, 0x00, 0x72, 0x00, 0x5a, 0x00, 0x40, 0x00, 0x12, 0x00, 0xee, 0xff,
+0xc8, 0xff, 0x92, 0xff, 0x86, 0xff, 0x78, 0xff, 0x7c, 0xff, 0x9a, 0xff, 0xae, 0xff, 0xe4, 0xff,
+0x02, 0x00, 0x1e, 0x00, 0x42, 0x00, 0x44, 0x00, 0x5e, 0x00, 0x52, 0x00, 0x40, 0x00, 0x32, 0x00,
+0xfc, 0xff, 0xe4, 0xff, 0xc6, 0xff, 0xac, 0xff, 0xa0, 0xff, 0x96, 0xff, 0xa0, 0xff, 0xaa, 0xff,
+0xc8, 0xff, 0xe6, 0xff, 0x00, 0x00, 0x10, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2a, 0x00, 0x2e, 0x00,
+0x26, 0x00, 0x0a, 0x00, 0xf6, 0xff, 0xf2, 0xff, 0xd2, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc0, 0xff,
+0xca, 0xff, 0xd2, 0xff, 0xe4, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x08, 0x00, 0x1e, 0x00, 0x14, 0x00,
+0x12, 0x00, 0x24, 0x00, 0x16, 0x00, 0x0c, 0x00, 0xfc, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf4, 0xff,
+0xe6, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff,
+0xee, 0xff, 0xf2, 0xff, 0xf4, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x02, 0x00,
+0x0a, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xe0, 0xff,
+0xcc, 0xff, 0xca, 0xff, 0xbe, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xd0, 0xff, 0xf4, 0xff, 0xf8, 0xff,
+0x10, 0x00, 0x2a, 0x00, 0x24, 0x00, 0x2c, 0x00, 0x36, 0x00, 0x34, 0x00, 0x24, 0x00, 0x06, 0x00,
+0xf0, 0xff, 0xce, 0xff, 0xa0, 0xff, 0xa2, 0xff, 0xa0, 0xff, 0x9c, 0xff, 0xa4, 0xff, 0xbc, 0xff,
+0xda, 0xff, 0xee, 0xff, 0x20, 0x00, 0x3a, 0x00, 0x4e, 0x00, 0x58, 0x00, 0x50, 0x00, 0x42, 0x00,
+0x1c, 0x00, 0xf2, 0xff, 0xd2, 0xff, 0x9c, 0xff, 0x7c, 0xff, 0x6c, 0xff, 0x60, 0xff, 0x6c, 0xff,
+0x7e, 0xff, 0xa0, 0xff, 0xd4, 0xff, 0xfc, 0xff, 0x36, 0x00, 0x58, 0x00, 0x66, 0x00, 0x78, 0x00,
+0x6c, 0x00, 0x50, 0x00, 0x2c, 0x00, 0xf0, 0xff, 0xb6, 0xff, 0x86, 0xff, 0x5c, 0xff, 0x58, 0xff,
+0x50, 0xff, 0x56, 0xff, 0x7e, 0xff, 0xa8, 0xff, 0xe4, 0xff, 0x1a, 0x00, 0x52, 0x00, 0x7a, 0x00,
+0x86, 0x00, 0x92, 0x00, 0x88, 0x00, 0x4e, 0x00, 0x1c, 0x00, 0xea, 0xff, 0xaa, 0xff, 0x78, 0xff,
+0x52, 0xff, 0x32, 0xff, 0x34, 0xff, 0x4c, 0xff, 0x7a, 0xff, 0xb6, 0xff, 0xea, 0xff, 0x26, 0x00,
+0x62, 0x00, 0x82, 0x00, 0x94, 0x00, 0xa2, 0x00, 0x7e, 0x00, 0x42, 0x00, 0x08, 0x00, 0xce, 0xff,
+0x98, 0xff, 0x68, 0xff, 0x42, 0xff, 0x38, 0xff, 0x42, 0xff, 0x5a, 0xff, 0x90, 0xff, 0xda, 0xff,
+0x0a, 0x00, 0x48, 0x00, 0x84, 0x00, 0xa6, 0x00, 0xb8, 0x00, 0x9e, 0x00, 0x76, 0x00, 0x40, 0x00,
+0x04, 0x00, 0xd4, 0xff, 0x98, 0xff, 0x60, 0xff, 0x42, 0xff, 0x3a, 0xff, 0x48, 0xff, 0x70, 0xff,
+0xb4, 0xff, 0xf4, 0xff, 0x20, 0x00, 0x60, 0x00, 0x92, 0x00, 0xaa, 0x00, 0xac, 0x00, 0x98, 0x00,
+0x68, 0x00, 0x2c, 0x00, 0xf2, 0xff, 0xb6, 0xff, 0x8a, 0xff, 0x54, 0xff, 0x3c, 0xff, 0x3c, 0xff,
+0x54, 0xff, 0x86, 0xff, 0xc0, 0xff, 0xf8, 0xff, 0x28, 0x00, 0x60, 0x00, 0x8a, 0x00, 0xa6, 0x00,
+0xac, 0x00, 0x92, 0x00, 0x62, 0x00, 0x22, 0x00, 0xf0, 0xff, 0xbe, 0xff, 0x84, 0xff, 0x5c, 0xff,
+0x56, 0xff, 0x50, 0xff, 0x72, 0xff, 0x92, 0xff, 0xba, 0xff, 0x00, 0x00, 0x32, 0x00, 0x64, 0x00,
+0x86, 0x00, 0x90, 0x00, 0x8e, 0x00, 0x72, 0x00, 0x40, 0x00, 0x0a, 0x00, 0xe4, 0xff, 0xb4, 0xff,
+0x8c, 0xff, 0x78, 0xff, 0x64, 0xff, 0x62, 0xff, 0x70, 0xff, 0x9a, 0xff, 0xd4, 0xff, 0xfc, 0xff,
+0x22, 0x00, 0x3e, 0x00, 0x56, 0x00, 0x60, 0x00, 0x52, 0x00, 0x46, 0x00, 0x22, 0x00, 0xfc, 0xff,
+0xe2, 0xff, 0xba, 0xff, 0xa4, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8c, 0xff, 0x96, 0xff, 0xc0, 0xff,
+0xd6, 0xff, 0xfa, 0xff, 0x1c, 0x00, 0x2e, 0x00, 0x3a, 0x00, 0x2a, 0x00, 0x2e, 0x00, 0x30, 0x00,
+0x16, 0x00, 0x04, 0x00, 0xe8, 0xff, 0xd2, 0xff, 0xbe, 0xff, 0xbc, 0xff, 0xb4, 0xff, 0xac, 0xff,
+0xc0, 0xff, 0xd0, 0xff, 0xea, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0x0a, 0x00, 0x0a, 0x00, 0x12, 0x00,
+0x0e, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xe2, 0xff, 0xd8, 0xff, 0xe0, 0xff,
+0xd6, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xea, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xf8, 0xff,
+0xf6, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0x0e, 0x00, 0x04, 0x00, 0xfc, 0xff,
+0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xe6, 0xff, 0xdc, 0xff,
+0xde, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xde, 0xff, 0xec, 0xff, 0xec, 0xff, 0xf6, 0xff, 0x0a, 0x00,
+0x18, 0x00, 0x24, 0x00, 0x18, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xea, 0xff,
+0xca, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb0, 0xff, 0xaa, 0xff, 0xb4, 0xff, 0xcc, 0xff, 0xe6, 0xff,
+0x0a, 0x00, 0x26, 0x00, 0x4a, 0x00, 0x5a, 0x00, 0x4e, 0x00, 0x44, 0x00, 0x3a, 0x00, 0x1a, 0x00,
+0xfe, 0xff, 0xdc, 0xff, 0xac, 0xff, 0x9c, 0xff, 0x8c, 0xff, 0x8a, 0xff, 0x90, 0xff, 0x9e, 0xff,
+0xd2, 0xff, 0xfa, 0xff, 0x2a, 0x00, 0x56, 0x00, 0x68, 0x00, 0x7c, 0x00, 0x68, 0x00, 0x4e, 0x00,
+0x3e, 0x00, 0x0e, 0x00, 0xe4, 0xff, 0xb6, 0xff, 0x88, 0xff, 0x68, 0xff, 0x48, 0xff, 0x5c, 0xff,
+0x78, 0xff, 0xa0, 0xff, 0xd6, 0xff, 0x08, 0x00, 0x3e, 0x00, 0x62, 0x00, 0x7c, 0x00, 0x8a, 0x00,
+0x80, 0x00, 0x5c, 0x00, 0x2e, 0x00, 0x06, 0x00, 0xd0, 0xff, 0x9e, 0xff, 0x6a, 0xff, 0x4a, 0xff,
+0x48, 0xff, 0x54, 0xff, 0x80, 0xff, 0xb0, 0xff, 0xde, 0xff, 0x1e, 0x00, 0x56, 0x00, 0x7a, 0x00,
+0x94, 0x00, 0x96, 0x00, 0x8e, 0x00, 0x70, 0x00, 0x26, 0x00, 0xf2, 0xff, 0xbe, 0xff, 0x80, 0xff,
+0x48, 0xff, 0x3a, 0xff, 0x32, 0xff, 0x4c, 0xff, 0x7c, 0xff, 0xbc, 0xff, 0x02, 0x00, 0x26, 0x00,
+0x6a, 0x00, 0x96, 0x00, 0xb4, 0x00, 0xb0, 0x00, 0x88, 0x00, 0x58, 0x00, 0x0e, 0x00, 0xd0, 0xff,
+0x98, 0xff, 0x64, 0xff, 0x44, 0xff, 0x22, 0xff, 0x28, 0xff, 0x56, 0xff, 0x82, 0xff, 0xd2, 0xff,
+0x10, 0x00, 0x46, 0x00, 0x86, 0x00, 0xa0, 0x00, 0xb6, 0x00, 0xa6, 0x00, 0x84, 0x00, 0x50, 0x00,
+0x12, 0x00, 0xdc, 0xff, 0x96, 0xff, 0x68, 0xff, 0x46, 0xff, 0x2e, 0xff, 0x40, 0xff, 0x62, 0xff,
+0x9a, 0xff, 0xe0, 0xff, 0x18, 0x00, 0x4e, 0x00, 0x7a, 0x00, 0xa4, 0x00, 0xae, 0x00, 0xaa, 0x00,
+0x88, 0x00, 0x42, 0x00, 0x14, 0x00, 0xd6, 0xff, 0x98, 0xff, 0x70, 0xff, 0x48, 0xff, 0x42, 0xff,
+0x4e, 0xff, 0x6e, 0xff, 0xa8, 0xff, 0xe2, 0xff, 0x20, 0x00, 0x46, 0x00, 0x74, 0x00, 0x8e, 0x00,
+0x90, 0x00, 0x88, 0x00, 0x66, 0x00, 0x2e, 0x00, 0xfe, 0xff, 0xc6, 0xff, 0x94, 0xff, 0x6e, 0xff,
+0x4e, 0xff, 0x4c, 0xff, 0x64, 0xff, 0x82, 0xff, 0xb6, 0xff, 0xee, 0xff, 0x1c, 0x00, 0x48, 0x00,
+0x6a, 0x00, 0x7e, 0x00, 0x86, 0x00, 0x70, 0x00, 0x50, 0x00, 0x1e, 0x00, 0xf2, 0xff, 0xc2, 0xff,
+0x9c, 0xff, 0x88, 0xff, 0x70, 0xff, 0x78, 0xff, 0x8c, 0xff, 0xa0, 0xff, 0xca, 0xff, 0xf6, 0xff,
+0x10, 0x00, 0x38, 0x00, 0x48, 0x00, 0x58, 0x00, 0x5c, 0x00, 0x4c, 0x00, 0x32, 0x00, 0x06, 0x00,
+0xe2, 0xff, 0xc0, 0xff, 0xac, 0xff, 0x98, 0xff, 0x92, 0xff, 0x92, 0xff, 0xa0, 0xff, 0xb4, 0xff,
+0xd2, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x1e, 0x00, 0x22, 0x00, 0x28, 0x00, 0x2c, 0x00, 0x20, 0x00,
+0x16, 0x00, 0x00, 0x00, 0xea, 0xff, 0xdc, 0xff, 0xd0, 0xff, 0xc8, 0xff, 0xd0, 0xff, 0xc0, 0xff,
+0xc6, 0xff, 0xd2, 0xff, 0xdc, 0xff, 0xec, 0xff, 0xfa, 0xff, 0x04, 0x00, 0xfa, 0xff, 0x06, 0x00,
+0x08, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf4, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfe, 0xff,
+0xf4, 0xff, 0xec, 0xff, 0xe2, 0xff, 0xe0, 0xff, 0xdc, 0xff, 0xd8, 0xff, 0xdc, 0xff, 0xe8, 0xff,
+0xee, 0xff, 0xe2, 0xff, 0xe8, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0x0a, 0x00, 0x18, 0x00,
+0x0c, 0x00, 0x12, 0x00, 0x18, 0x00, 0xfe, 0xff, 0xf4, 0xff, 0xe2, 0xff, 0xdc, 0xff, 0xce, 0xff,
+0xbc, 0xff, 0xce, 0xff, 0xc8, 0xff, 0xca, 0xff, 0xd4, 0xff, 0xe4, 0xff, 0xfe, 0xff, 0x0a, 0x00,
+0x24, 0x00, 0x36, 0x00, 0x42, 0x00, 0x2c, 0x00, 0x2a, 0x00, 0x22, 0x00, 0x04, 0x00, 0xf0, 0xff,
+0xda, 0xff, 0xbe, 0xff, 0xa0, 0xff, 0x92, 0xff, 0xac, 0xff, 0xb0, 0xff, 0xb2, 0xff, 0xea, 0xff,
+0x16, 0x00, 0x2e, 0x00, 0x46, 0x00, 0x50, 0x00, 0x62, 0x00, 0x66, 0x00, 0x3e, 0x00, 0x14, 0x00,
+0xee, 0xff, 0xd6, 0xff, 0xb0, 0xff, 0x84, 0xff, 0x68, 0xff, 0x5a, 0xff, 0x7a, 0xff, 0xac, 0xff,
+0xa0, 0xff, 0xc6, 0xff, 0x20, 0x00, 0x74, 0x00, 0x6a, 0x00, 0x5c, 0x00, 0x82, 0x00, 0x64, 0x00,
+0x4a, 0x00, 0x28, 0x00, 0xf6, 0xff, 0xbe, 0xff, 0x8a, 0xff, 0x7e, 0xff, 0x52, 0xff, 0x86, 0xff,
+0x7a, 0xff, 0x2c, 0xff, 0x98, 0xff, 0x26, 0x00, 0x6c, 0x00, 0x52, 0x00, 0x72, 0x00, 0xb8, 0x00,
+0xb6, 0x00, 0x04, 0x01, 0x34, 0x01, 0x48, 0x01, 0xbc, 0x00, 0xf0, 0xfe, 0x16, 0xfc, 0x70, 0xf8,
+0xc2, 0xf4, 0xf4, 0xf1, 0x12, 0xf1, 0x4c, 0xf3, 0xde, 0xf8, 0x9c, 0x01, 0x90, 0x0c, 0x1a, 0x18,
+0x0f, 0x22, 0x9b, 0x28, 0x0d, 0x2a, 0xb7, 0x24, 0xd4, 0x18, 0x6c, 0x07, 0x06, 0xf3, 0xcb, 0xde,
+0x0d, 0xcd, 0x37, 0xc0, 0x15, 0xba, 0xe1, 0xbc, 0xab, 0xc8, 0xf9, 0xdb, 0x28, 0xf5, 0x32, 0x11,
+0x43, 0x2c, 0x41, 0x42, 0xd1, 0x50, 0x7a, 0x55, 0x0d, 0x4f, 0x6b, 0x3e, 0x41, 0x25, 0xde, 0x06,
+0x6e, 0xe7, 0x63, 0xca, 0xf7, 0xb3, 0x14, 0xa7, 0x48, 0xa5, 0x41, 0xae, 0x5b, 0xc1, 0xad, 0xdc,
+0xf0, 0xfb, 0xf6, 0x1a, 0x4b, 0x35, 0xe7, 0x48, 0x45, 0x54, 0x88, 0x56, 0x4f, 0x4e, 0x6b, 0x3d,
+0xc1, 0x24, 0xbc, 0x06, 0x4c, 0xe7, 0x09, 0xca, 0x1b, 0xb4, 0xc2, 0xa8, 0x54, 0xa9, 0xf3, 0xb4,
+0x9b, 0xc9, 0x8a, 0xe4, 0x3a, 0x01, 0x9e, 0x1b, 0x71, 0x31, 0x03, 0x42, 0x7f, 0x4c, 0x8f, 0x4f,
+0xe3, 0x49, 0xcd, 0x3a, 0x49, 0x23, 0xa2, 0x05, 0xbe, 0xe5, 0x19, 0xc9, 0x87, 0xb4, 0x41, 0xab,
+0x37, 0xae, 0xdb, 0xbb, 0x37, 0xd1, 0x7e, 0xea, 0x40, 0x04, 0xa4, 0x1b, 0x51, 0x2f, 0x7b, 0x3e,
+0x1d, 0x48, 0xe3, 0x4a, 0x33, 0x45, 0xfb, 0x35, 0x07, 0x1e, 0x14, 0x00, 0xd3, 0xe0, 0xe3, 0xc5,
+0x79, 0xb4, 0x1f, 0xaf, 0x7d, 0xb5, 0x19, 0xc5, 0xc9, 0xda, 0x06, 0xf3, 0x10, 0x0a, 0x93, 0x1e,
+0x0b, 0x2f, 0xb7, 0x3a, 0x3f, 0x41, 0x59, 0x41, 0x91, 0x39, 0xb1, 0x29, 0x26, 0x13, 0xf4, 0xf8,
+0xbf, 0xdf, 0x33, 0xcc, 0xb9, 0xc1, 0xe1, 0xc0, 0x69, 0xc8, 0xc7, 0xd5, 0x14, 0xe6, 0x1a, 0xf7,
+0x12, 0x07, 0xf8, 0x14, 0x37, 0x20, 0x5d, 0x28, 0xd5, 0x2c, 0x27, 0x2d, 0xdf, 0x27, 0xff, 0x1c,
+0x9a, 0x0d, 0xbe, 0xfb, 0xdc, 0xea, 0x41, 0xde, 0x87, 0xd7, 0x43, 0xd7, 0x2b, 0xdc, 0x60, 0xe4,
+0x2e, 0xee, 0x14, 0xf8, 0x62, 0x01, 0x4c, 0x09, 0x98, 0x0f, 0x5e, 0x14, 0xba, 0x17, 0x2e, 0x19,
+0x36, 0x18, 0x4a, 0x14, 0x8a, 0x0d, 0x06, 0x05, 0x08, 0xfc, 0x30, 0xf4, 0xe8, 0xee, 0xbc, 0xec,
+0x4c, 0xed, 0xb2, 0xef, 0x20, 0xf3, 0x58, 0xf6, 0xde, 0xf8, 0xb0, 0xfa, 0x42, 0xfc, 0x34, 0xfe,
+0x6c, 0x01, 0x0c, 0x06, 0x62, 0x0b, 0x1c, 0x10, 0x8e, 0x12, 0x44, 0x12, 0x8c, 0x0f, 0x50, 0x0b,
+0x56, 0x06, 0xaa, 0x01, 0xc2, 0xfd, 0x54, 0xfa, 0x9c, 0xf6, 0x22, 0xf2, 0x2e, 0xed, 0xb6, 0xe8,
+0x12, 0xe6, 0xd0, 0xe6, 0x66, 0xec, 0xc8, 0xf6, 0x3c, 0x04, 0xa0, 0x11, 0x65, 0x1c, 0xad, 0x22,
+0x0f, 0x24, 0x0d, 0x21, 0x2a, 0x1b, 0xac, 0x13, 0x26, 0x0b, 0x82, 0x01, 0x5e, 0xf6, 0x22, 0xea,
+0xdf, 0xdd, 0xe3, 0xd3, 0x91, 0xce, 0x6f, 0xd0, 0x79, 0xda, 0xb0, 0xeb, 0xfe, 0x00, 0x76, 0x16,
+0x65, 0x28, 0x1f, 0x34, 0xc1, 0x38, 0xd5, 0x36, 0xb5, 0x2f, 0x63, 0x24, 0xb8, 0x15, 0xda, 0x03,
+0xde, 0xef, 0x45, 0xdb, 0x0b, 0xc9, 0x6b, 0xbc, 0x2b, 0xb8, 0x31, 0xbe, 0x59, 0xce, 0x68, 0xe6,
+0x82, 0x02, 0x13, 0x1e, 0xdb, 0x34, 0x95, 0x44, 0xa5, 0x4b, 0x33, 0x4a, 0x01, 0x41, 0x15, 0x31,
+0x44, 0x1b, 0x2c, 0x01, 0x24, 0xe5, 0x6b, 0xca, 0x2b, 0xb5, 0xc6, 0xa8, 0xb2, 0xa7, 0x8b, 0xb2,
+0x3f, 0xc8, 0x04, 0xe6, 0xae, 0x07, 0x0d, 0x28, 0xf1, 0x42, 0xe8, 0x54, 0x72, 0x5c, 0x34, 0x59,
+0xaf, 0x4b, 0x39, 0x35, 0x06, 0x18, 0x44, 0xf7, 0x67, 0xd6, 0xdf, 0xb9, 0x7a, 0xa5, 0x44, 0x9c,
+0x50, 0x9f, 0x5f, 0xae, 0x05, 0xc8, 0x94, 0xe9, 0xbc, 0x0e, 0x6f, 0x32, 0xf7, 0x4f, 0x6a, 0x63,
+0x5a, 0x6a, 0xdc, 0x63, 0x9f, 0x50, 0x11, 0x33, 0x44, 0x0f, 0xa6, 0xe9, 0x1f, 0xc7, 0xd3, 0xab,
+0xe8, 0x9a, 0xac, 0x95, 0x66, 0x9c, 0xa7, 0xae, 0x19, 0xcb, 0x4c, 0xef, 0xf4, 0x16, 0xc3, 0x3c,
+0x6c, 0x5b, 0x66, 0x6e, 0x4a, 0x72, 0x60, 0x66, 0xb3, 0x4c, 0xb5, 0x29, 0xc0, 0x02, 0xef, 0xdc,
+0xbb, 0xbc, 0x4e, 0xa5, 0x4e, 0x98, 0x4c, 0x96, 0x48, 0x9f, 0x0f, 0xb3, 0x1d, 0xd1, 0xc6, 0xf6,
+0x99, 0x1f, 0xd3, 0x45, 0x82, 0x63, 0x8a, 0x73, 0xcc, 0x72, 0xc8, 0x61, 0x27, 0x44, 0x91, 0x1f,
+0x88, 0xf9, 0x7b, 0xd6, 0xa7, 0xb9, 0x86, 0xa5, 0x26, 0x9b, 0x00, 0x9b, 0x70, 0xa5, 0xb5, 0xba,
+0xe9, 0xd9, 0x24, 0x00, 0x63, 0x28, 0x75, 0x4c, 0x4c, 0x66, 0x28, 0x71, 0x70, 0x6b, 0xec, 0x56,
+0x8d, 0x38, 0x8c, 0x15, 0x94, 0xf2, 0x37, 0xd3, 0x1f, 0xba, 0x4a, 0xa9, 0xb0, 0xa1, 0xee, 0xa3,
+0x57, 0xb0, 0xf3, 0xc6, 0x2a, 0xe6, 0x88, 0x0a, 0xcb, 0x2e, 0x3d, 0x4d, 0xa8, 0x60, 0x02, 0x66,
+0x14, 0x5d, 0x9d, 0x48, 0xdf, 0x2c, 0x28, 0x0e, 0x10, 0xf0, 0x6f, 0xd5, 0xab, 0xc0, 0x3d, 0xb3,
+0x4f, 0xae, 0x47, 0xb2, 0x7b, 0xbf, 0x4f, 0xd5, 0xa2, 0xf1, 0xca, 0x10, 0x45, 0x2e, 0x97, 0x45,
+0x17, 0x53, 0x10, 0x55, 0xb5, 0x4b, 0x7b, 0x39, 0xa9, 0x21, 0xc6, 0x07, 0xd2, 0xee, 0x6b, 0xd9,
+0x85, 0xc9, 0x83, 0xc0, 0xf3, 0xbe, 0xed, 0xc4, 0xed, 0xd1, 0x84, 0xe4, 0xca, 0xfa, 0xda, 0x11,
+0xef, 0x26, 0x1f, 0x37, 0x35, 0x40, 0xd7, 0x40, 0x3f, 0x39, 0xc1, 0x2a, 0xf4, 0x17, 0xc6, 0x03,
+0xd0, 0xf0, 0x6d, 0xe1, 0x01, 0xd7, 0x73, 0xd2, 0x79, 0xd3, 0x8f, 0xd9, 0x79, 0xe3, 0xee, 0xef,
+0xa4, 0xfd, 0x84, 0x0b, 0x62, 0x18, 0xcf, 0x22, 0x6d, 0x29, 0xc1, 0x2a, 0x67, 0x26, 0x11, 0x1d,
+0x8c, 0x10, 0x2a, 0x03, 0x4e, 0xf7, 0x7e, 0xee, 0x9e, 0xe9, 0x8e, 0xe8, 0x50, 0xea, 0x7a, 0xed,
+0x1a, 0xf1, 0xbe, 0xf4, 0xda, 0xf8, 0x22, 0xfe, 0xa2, 0x04, 0xd8, 0x0b, 0x1e, 0x12, 0xf6, 0x15,
+0xf4, 0x15, 0x76, 0x12, 0xce, 0x0c, 0xfc, 0x06, 0xb4, 0x02, 0x8e, 0x00, 0x4a, 0x00, 0xc4, 0x00,
+0x70, 0x00, 0x0e, 0xfe, 0xb6, 0xf9, 0x48, 0xf4, 0xb0, 0xef, 0xc0, 0xed, 0x48, 0xef, 0xdc, 0xf3,
+0x46, 0xfa, 0xa4, 0x00, 0xb8, 0x05, 0x50, 0x09, 0x2e, 0x0c, 0x4c, 0x0f, 0xea, 0x12, 0x82, 0x16,
+0xa0, 0x18, 0xda, 0x17, 0xd8, 0x12, 0x8c, 0x09, 0x18, 0xfd, 0x9c, 0xef, 0xd2, 0xe3, 0xf3, 0xdb,
+0x77, 0xd9, 0x87, 0xdc, 0x1a, 0xe4, 0x84, 0xee, 0x60, 0xfa, 0x98, 0x06, 0xd0, 0x12, 0x41, 0x1e,
+0xd7, 0x27, 0xed, 0x2d, 0x19, 0x2f, 0x59, 0x2a, 0x8f, 0x1f, 0x98, 0x0f, 0x3a, 0xfc, 0x30, 0xe8,
+0x4d, 0xd6, 0x8d, 0xc9, 0xb9, 0xc3, 0xed, 0xc5, 0xc5, 0xcf, 0xcf, 0xdf, 0xba, 0xf3, 0x3c, 0x09,
+0x1f, 0x1e, 0x0d, 0x30, 0xf1, 0x3c, 0xff, 0x42, 0x9b, 0x41, 0x8d, 0x38, 0x71, 0x28, 0x86, 0x12,
+0xfe, 0xf8, 0xa1, 0xde, 0x17, 0xc7, 0xcf, 0xb5, 0x0d, 0xae, 0x9f, 0xb1, 0x33, 0xc0, 0xb9, 0xd7,
+0x7e, 0xf4, 0x40, 0x12, 0x07, 0x2d, 0xf5, 0x41, 0xdf, 0x4e, 0x49, 0x53, 0x8f, 0x4e, 0x5d, 0x41,
+0xb3, 0x2c, 0xe6, 0x11, 0x12, 0xf3, 0x8b, 0xd3, 0x93, 0xb7, 0x00, 0xa4, 0xee, 0x9c, 0xfa, 0xa3,
+0xcd, 0xb8, 0xbb, 0xd7, 0x5c, 0xfb, 0xdd, 0x1d, 0x0b, 0x3b, 0x31, 0x50, 0xfa, 0x5b, 0xf6, 0x5d,
+0x30, 0x56, 0x83, 0x45, 0xdd, 0x2c, 0x90, 0x0d, 0xfe, 0xe9, 0x4d, 0xc6, 0x10, 0xa8, 0xac, 0x94,
+0x7a, 0x90, 0xd6, 0x9c, 0xe1, 0xb7, 0x9d, 0xdc, 0x44, 0x04, 0xe1, 0x28, 0x8f, 0x46, 0xde, 0x5a,
+0x0c, 0x65, 0xc6, 0x64, 0x00, 0x5a, 0xbf, 0x45, 0xed, 0x28, 0x38, 0x05, 0x11, 0xde, 0x8d, 0xb8,
+0xc2, 0x9a, 0xb6, 0x8a, 0x8e, 0x8b, 0x80, 0x9d, 0x23, 0xbd, 0xc8, 0xe4, 0x60, 0x0d, 0xb1, 0x31,
+0xfd, 0x4d, 0x82, 0x60, 0x7e, 0x68, 0x84, 0x65, 0xc0, 0x57, 0xf9, 0x3f, 0xc3, 0x1f, 0x5c, 0xf9,
+0x6b, 0xd1, 0x77, 0xad, 0xd2, 0x93, 0xf4, 0x88, 0xfe, 0x8e, 0x9a, 0xa4, 0x25, 0xc6, 0xb4, 0xed,
+0xee, 0x14, 0x45, 0x37, 0x4d, 0x51, 0x7c, 0x61, 0xd8, 0x66, 0xde, 0x60, 0xe7, 0x4f, 0x63, 0x35,
+0x48, 0x13, 0x38, 0xed, 0x17, 0xc8, 0x38, 0xa9, 0x76, 0x95, 0xd2, 0x8f, 0x1a, 0x99, 0x9f, 0xaf,
+0x15, 0xd0, 0x12, 0xf5, 0x48, 0x19, 0x6f, 0x38, 0xab, 0x4f, 0xd8, 0x5c, 0x3a, 0x5f, 0x3e, 0x56,
+0xd7, 0x42, 0x53, 0x27, 0x88, 0x06, 0x86, 0xe4, 0xad, 0xc5, 0xc1, 0xad, 0x90, 0x9f, 0x68, 0x9d,
+0x44, 0xa7, 0x75, 0xbc, 0xa1, 0xd9, 0x9c, 0xfa, 0xf0, 0x1a, 0xa3, 0x36, 0x47, 0x4a, 0x0d, 0x54,
+0xdf, 0x52, 0x2d, 0x47, 0x0b, 0x33, 0x06, 0x19, 0xd8, 0xfc, 0xbb, 0xe1, 0x69, 0xca, 0xd9, 0xb8,
+0xfb, 0xae, 0x2d, 0xae, 0x39, 0xb7, 0x5d, 0xc9, 0x77, 0xe2, 0xfc, 0xfe, 0xb8, 0x1a, 0xb9, 0x31,
+0x9f, 0x40, 0xc5, 0x45, 0x6b, 0x41, 0xb3, 0x34, 0x67, 0x22, 0xa4, 0x0d, 0xda, 0xf8, 0x14, 0xe6,
+0x4f, 0xd6, 0x33, 0xca, 0x21, 0xc3, 0x69, 0xc2, 0xf7, 0xc8, 0x37, 0xd7, 0x1e, 0xeb, 0xae, 0x01,
+0x08, 0x17, 0x6d, 0x27, 0x8f, 0x30, 0xb1, 0x31, 0xb3, 0x2b, 0x07, 0x21, 0x24, 0x14, 0xfc, 0x06,
+0xe8, 0xfa, 0x42, 0xf0, 0xec, 0xe6, 0x21, 0xdf, 0x61, 0xd9, 0xa5, 0xd7, 0x0f, 0xdb, 0xe2, 0xe3,
+0x0a, 0xf1, 0xde, 0xff, 0x60, 0x0d, 0xee, 0x16, 0x26, 0x1b, 0x30, 0x1a, 0x1e, 0x16, 0x4e, 0x10,
+0xc4, 0x0a, 0x2e, 0x06, 0x94, 0x02, 0x3c, 0xff, 0x32, 0xfb, 0x34, 0xf6, 0x00, 0xf1, 0x0c, 0xed,
+0x8e, 0xeb, 0x5c, 0xed, 0xcc, 0xf1, 0x9e, 0xf7, 0xdc, 0xfc, 0x54, 0x00, 0xfa, 0x01, 0x52, 0x02,
+0x76, 0x02, 0x78, 0x03, 0xd4, 0x05, 0x74, 0x09, 0x5e, 0x0d, 0x22, 0x10, 0xa8, 0x10, 0x28, 0x0e,
+0xac, 0x08, 0x4e, 0x01, 0x64, 0xf9, 0x4c, 0xf2, 0x0c, 0xed, 0xb0, 0xe9, 0x16, 0xe8, 0x32, 0xe8,
+0xf4, 0xe9, 0x90, 0xed, 0x4c, 0xf3, 0x20, 0xfb, 0xc8, 0x04, 0xae, 0x0f, 0x3c, 0x1a, 0x9f, 0x22,
+0x0d, 0x27, 0xd7, 0x25, 0x53, 0x1e, 0x5e, 0x11, 0x20, 0x01, 0x3c, 0xf0, 0xc1, 0xe1, 0xfd, 0xd6,
+0x35, 0xd1, 0x89, 0xd0, 0x9b, 0xd4, 0xad, 0xdc, 0x4a, 0xe8, 0xe6, 0xf6, 0xaa, 0x07, 0x7e, 0x19,
+0x01, 0x2a, 0x19, 0x37, 0x7b, 0x3d, 0x0d, 0x3b, 0xcf, 0x2e, 0x92, 0x1a, 0x8a, 0x01, 0x1c, 0xe8,
+0x71, 0xd2, 0x8b, 0xc3, 0x7b, 0xbc, 0x0b, 0xbd, 0x29, 0xc4, 0xa1, 0xd0, 0xcf, 0xe1, 0x7c, 0xf6,
+0xb2, 0x0d, 0xc7, 0x25, 0xaf, 0x3b, 0x4b, 0x4b, 0x91, 0x51, 0x69, 0x4b, 0x41, 0x39, 0x7f, 0x1d,
+0xe6, 0xfc, 0x3b, 0xdd, 0x77, 0xc3, 0x31, 0xb2, 0xbe, 0xaa, 0xc5, 0xac, 0xa3, 0xb6, 0xcd, 0xc7,
+0xc9, 0xde, 0x98, 0xfa, 0x08, 0x19, 0xaf, 0x36, 0x4d, 0x4f, 0x02, 0x5f, 0xc6, 0x61, 0xf8, 0x55,
+0x09, 0x3d, 0xee, 0x1a, 0x84, 0xf5, 0x89, 0xd2, 0xcb, 0xb6, 0x68, 0xa5, 0xfa, 0x9e, 0xec, 0xa2,
+0x07, 0xb0, 0x7d, 0xc5, 0x13, 0xe2, 0x3c, 0x03, 0xa3, 0x25, 0x6b, 0x45, 0xf6, 0x5d, 0xda, 0x6a,
+0x38, 0x69, 0x5a, 0x58, 0x45, 0x3b, 0x36, 0x16, 0x60, 0xee, 0xdd, 0xc9, 0x57, 0xad, 0x90, 0x9b,
+0xc2, 0x95, 0xa0, 0x9b, 0x8f, 0xac, 0x93, 0xc7, 0xd2, 0xe9, 0x86, 0x0f, 0x85, 0x34, 0xcf, 0x53,
+0x40, 0x69, 0x68, 0x71, 0xc6, 0x6a, 0x34, 0x56, 0xa7, 0x36, 0x28, 0x10, 0xc4, 0xe7, 0xf1, 0xc2,
+0x44, 0xa6, 0x4c, 0x95, 0x76, 0x91, 0x0a, 0x9b, 0x03, 0xb1, 0xf9, 0xd0, 0xce, 0xf6, 0x7b, 0x1d,
+0x4d, 0x40, 0x28, 0x5b, 0x36, 0x6b, 0x76, 0x6e, 0x6c, 0x64, 0x73, 0x4e, 0xe3, 0x2e, 0x3e, 0x09,
+0xbd, 0xe1, 0xf1, 0xbd, 0xdc, 0xa2, 0x6e, 0x94, 0x2a, 0x94, 0x16, 0xa2, 0x0f, 0xbc, 0x57, 0xde,
+0xc6, 0x03, 0x4f, 0x27, 0x15, 0x45, 0x38, 0x5a, 0x16, 0x65, 0x1a, 0x65, 0x1c, 0x5a, 0xc9, 0x44,
+0xd9, 0x26, 0xfe, 0x02, 0x8b, 0xdd, 0x0f, 0xbc, 0xdc, 0xa3, 0xfe, 0x98, 0x00, 0x9d, 0x5d, 0xae,
+0x3f, 0xca, 0x8a, 0xeb, 0x4c, 0x0d, 0x0f, 0x2b, 0x75, 0x42, 0x11, 0x52, 0x64, 0x59, 0xca, 0x57,
+0x1b, 0x4d, 0x8d, 0x39, 0xc3, 0x1d, 0xaa, 0xfc, 0x85, 0xda, 0x5d, 0xbd, 0x50, 0xaa, 0x70, 0xa4,
+0x09, 0xac, 0x4f, 0xbf, 0xa3, 0xd9, 0x64, 0xf6, 0x94, 0x11, 0x79, 0x28, 0xef, 0x39, 0x17, 0x45,
+0xa3, 0x49, 0x89, 0x47, 0x0d, 0x3e, 0xab, 0x2c, 0x56, 0x14, 0xd4, 0xf7, 0xbf, 0xdb, 0x07, 0xc5,
+0xb5, 0xb7, 0x15, 0xb6, 0x7f, 0xbf, 0xd5, 0xd0, 0x4a, 0xe6, 0x30, 0xfc, 0x14, 0x10, 0x87, 0x20,
+0x91, 0x2c, 0x39, 0x34, 0x45, 0x37, 0x3d, 0x35, 0x71, 0x2d, 0xbf, 0x1f, 0xf6, 0x0c, 0xbc, 0xf7,
+0x73, 0xe3, 0xdf, 0xd3, 0x09, 0xcc, 0x45, 0xcc, 0xfb, 0xd3, 0x7f, 0xe0, 0x24, 0xef, 0x70, 0xfd,
+0xf2, 0x09, 0xd8, 0x13, 0x40, 0x1b, 0xcd, 0x1f, 0x71, 0x21, 0x8b, 0x20, 0x5f, 0x1c, 0xe0, 0x14,
+0x68, 0x0a, 0x58, 0xfe, 0x9e, 0xf2, 0x8c, 0xe9, 0x62, 0xe4, 0xe8, 0xe3, 0x72, 0xe7, 0x7e, 0xed,
+0x6a, 0xf4, 0x18, 0xfb, 0x90, 0x00, 0x8a, 0x04, 0x38, 0x07, 0x14, 0x09, 0xac, 0x0a, 0x74, 0x0c,
+0x44, 0x0e, 0x38, 0x0f, 0xa0, 0x0e, 0xb0, 0x0b, 0x0a, 0x07, 0x9e, 0x01, 0xce, 0xfc, 0x40, 0xf9,
+0x5c, 0xf7, 0x96, 0xf6, 0x2c, 0xf6, 0x86, 0xf5, 0x20, 0xf4, 0x4e, 0xf2, 0x04, 0xf1, 0x6a, 0xf1,
+0xae, 0xf4, 0x88, 0xfb, 0x2e, 0x05, 0x88, 0x0f, 0x34, 0x18, 0xe5, 0x1c, 0x09, 0x1d, 0x82, 0x19,
+0x90, 0x13, 0x82, 0x0c, 0x2e, 0x05, 0x90, 0xfd, 0x80, 0xf5, 0x06, 0xed, 0x34, 0xe4, 0xad, 0xdc,
+0x89, 0xd8, 0xbd, 0xd9, 0xa1, 0xe1, 0xe6, 0xef, 0x64, 0x02, 0xee, 0x15, 0x55, 0x26, 0x63, 0x30,
+0x6b, 0x33, 0x0b, 0x30, 0xdb, 0x27, 0x55, 0x1c, 0xac, 0x0e, 0x88, 0xff, 0x66, 0xef, 0xdd, 0xde,
+0xd9, 0xcf, 0x33, 0xc5, 0x9f, 0xc1, 0xc7, 0xc6, 0x0d, 0xd5, 0x30, 0xeb, 0xbc, 0x05, 0xd1, 0x1f,
+0x29, 0x35, 0xa9, 0x42, 0x15, 0x47, 0x1f, 0x43, 0x27, 0x38, 0xfd, 0x27, 0xe2, 0x13, 0xec, 0xfc,
+0xb2, 0xe4, 0xdf, 0xcd, 0x45, 0xbb, 0x77, 0xb0, 0xe1, 0xaf, 0x61, 0xba, 0x47, 0xcf, 0x94, 0xeb,
+0x68, 0x0b, 0xef, 0x29, 0xe1, 0x42, 0xb9, 0x52, 0x44, 0x58, 0x3d, 0x53, 0xdb, 0x44, 0xc5, 0x2e,
+0x14, 0x13, 0x5e, 0xf4, 0xc1, 0xd5, 0x35, 0xbb, 0x82, 0xa8, 0x80, 0xa0, 0x82, 0xa4, 0x65, 0xb4,
+0x41, 0xce, 0x44, 0xef, 0xf2, 0x12, 0x91, 0x34, 0xc3, 0x4f, 0x26, 0x61, 0x28, 0x66, 0x62, 0x5e,
+0xd7, 0x4a, 0x17, 0x2e, 0x88, 0x0b, 0x10, 0xe7, 0x87, 0xc5, 0x5f, 0xab, 0xde, 0x9b, 0x2a, 0x98,
+0xb4, 0xa0, 0x6b, 0xb4, 0x9d, 0xd1, 0x04, 0xf5, 0xb0, 0x1a, 0x3f, 0x3e, 0xd4, 0x5a, 0x3a, 0x6c,
+0x44, 0x6f, 0x48, 0x63, 0x05, 0x4a, 0x91, 0x27, 0x7e, 0x00, 0x2d, 0xda, 0x7f, 0xb9, 0x44, 0xa2,
+0x7a, 0x96, 0x66, 0x96, 0xa2, 0xa1, 0x71, 0xb7, 0x1f, 0xd6, 0xae, 0xfa, 0x8d, 0x21, 0x0d, 0x46,
+0xf6, 0x62, 0x12, 0x73, 0xd0, 0x72, 0x1a, 0x62, 0x21, 0x44, 0xf7, 0x1d, 0x7a, 0xf5, 0x35, 0xd0,
+0x99, 0xb2, 0x54, 0x9f, 0x16, 0x97, 0xa0, 0x99, 0xd4, 0xa6, 0x09, 0xbe, 0xc5, 0xdd, 0x56, 0x03,
+0x93, 0x2a, 0x4d, 0x4e, 0x8a, 0x68, 0x06, 0x74, 0x5e, 0x6e, 0xe2, 0x58, 0xe5, 0x37, 0x5e, 0x11,
+0x10, 0xeb, 0xb3, 0xc9, 0xab, 0xb0, 0x8a, 0xa1, 0xc4, 0x9c, 0x22, 0xa2, 0x23, 0xb1, 0x39, 0xc9,
+0xd2, 0xe8, 0x1a, 0x0d, 0x9b, 0x31, 0xfd, 0x50, 0x82, 0x65, 0x76, 0x6b, 0xae, 0x61, 0xb5, 0x4a,
+0x2d, 0x2b, 0x7e, 0x08, 0x72, 0xe7, 0x93, 0xcb, 0x65, 0xb7, 0xfb, 0xab, 0x9e, 0xa9, 0x07, 0xb0,
+0x4b, 0xbf, 0x4f, 0xd6, 0x84, 0xf3, 0xd2, 0x13, 0xef, 0x32, 0xe9, 0x4b, 0x70, 0x5a, 0x08, 0x5c,
+0xd3, 0x50, 0x8b, 0x3b, 0xcd, 0x1f, 0x52, 0x02, 0xac, 0xe6, 0xe5, 0xcf, 0xd5, 0xbf, 0xb5, 0xb7,
+0xc7, 0xb7, 0xf7, 0xbf, 0x5f, 0xcf, 0x9e, 0xe4, 0xbe, 0xfd, 0x70, 0x17, 0xab, 0x2e, 0x03, 0x40,
+0x15, 0x49, 0x79, 0x48, 0x8d, 0x3e, 0x0b, 0x2d, 0x46, 0x17, 0x5a, 0x00, 0x36, 0xeb, 0x1d, 0xda,
+0xc3, 0xce, 0x09, 0xca, 0xd7, 0xcb, 0xb5, 0xd3, 0x61, 0xe0, 0x64, 0xf0, 0x82, 0x01, 0x88, 0x12,
+0x77, 0x21, 0xed, 0x2c, 0x33, 0x33, 0x57, 0x33, 0xfb, 0x2c, 0x0f, 0x21, 0x54, 0x11, 0xa0, 0x00,
+0xbc, 0xf1, 0x74, 0xe6, 0x49, 0xe0, 0x1d, 0xdf, 0x71, 0xe2, 0x92, 0xe8, 0x20, 0xf0, 0xbc, 0xf7,
+0x60, 0xff, 0xc0, 0x06, 0x2e, 0x0e, 0x4c, 0x15, 0xdc, 0x1a, 0x81, 0x1d, 0xfe, 0x1b, 0x7c, 0x16,
+0x34, 0x0e, 0x2e, 0x05, 0x4c, 0xfd, 0x4c, 0xf8, 0x58, 0xf6, 0xcc, 0xf6, 0x36, 0xf8, 0xf2, 0xf8,
+0x86, 0xf8, 0x16, 0xf7, 0x82, 0xf5, 0x80, 0xf5, 0x10, 0xf8, 0x42, 0xfd, 0xce, 0x03, 0xc8, 0x09,
+0xc0, 0x0d, 0x42, 0x0f, 0xb8, 0x0e, 0x88, 0x0d, 0xfa, 0x0c, 0x3a, 0x0d, 0xe6, 0x0d, 0x98, 0x0d,
+0xe2, 0x0a, 0xf4, 0x04, 0x26, 0xfc, 0x0e, 0xf2, 0xf6, 0xe8, 0x03, 0xe3, 0xc5, 0xe1, 0xc4, 0xe5,
+0xa2, 0xed, 0x92, 0xf7, 0xb8, 0x01, 0x10, 0x0b, 0x9e, 0x13, 0x04, 0x1b, 0x0b, 0x21, 0xff, 0x24,
+0xbd, 0x25, 0xeb, 0x21, 0x0a, 0x19, 0x7c, 0x0b, 0xde, 0xfa, 0x7c, 0xe9, 0xd1, 0xd9, 0x25, 0xcf,
+0x29, 0xcb, 0xb7, 0xce, 0xfb, 0xd8, 0x22, 0xe8, 0x20, 0xfa, 0xd4, 0x0c, 0x71, 0x1e, 0x2f, 0x2d,
+0xcb, 0x37, 0x59, 0x3c, 0x65, 0x3a, 0x7d, 0x31, 0x37, 0x22, 0xf2, 0x0d, 0xae, 0xf6, 0x3b, 0xdf,
+0xa9, 0xca, 0x4b, 0xbc, 0x7f, 0xb6, 0xf3, 0xba, 0x0f, 0xc9, 0xff, 0xde, 0x64, 0xf9, 0xb4, 0x14,
+0x6f, 0x2d, 0x8d, 0x40, 0xe1, 0x4b, 0x87, 0x4e, 0x55, 0x48, 0x2b, 0x3a, 0x69, 0x25, 0xe6, 0x0b,
+0xaa, 0xef, 0xa1, 0xd3, 0x37, 0xbb, 0x4e, 0xaa, 0x88, 0xa4, 0x8d, 0xab, 0x69, 0xbf, 0xdd, 0xdc,
+0x7c, 0xff, 0x65, 0x21, 0x01, 0x3e, 0x05, 0x52, 0xfe, 0x5b, 0x5c, 0x5b, 0x03, 0x51, 0xa7, 0x3e,
+0xab, 0x25, 0xf2, 0x07, 0x4a, 0xe7, 0x3b, 0xc7, 0x01, 0xac, 0x62, 0x9a, 0x54, 0x96, 0x1e, 0xa2,
+0xa5, 0xbc, 0x65, 0xe1, 0x9e, 0x09, 0xc1, 0x2e, 0x1b, 0x4c, 0xee, 0x5e, 0x1c, 0x66, 0x56, 0x62,
+0xaf, 0x54, 0xd3, 0x3e, 0x1d, 0x22, 0x4a, 0x00, 0x19, 0xdc, 0xa3, 0xb9, 0x2a, 0x9e, 0xca, 0x8e,
+0x7e, 0x8f, 0x04, 0xa1, 0x23, 0xc1, 0xdc, 0xe9, 0xfc, 0x13, 0x0f, 0x39, 0xd4, 0x54, 0x80, 0x65,
+0x74, 0x6a, 0x38, 0x64, 0xf5, 0x53, 0x3b, 0x3b, 0x7c, 0x1b, 0xca, 0xf6, 0xbb, 0xd0, 0x47, 0xae,
+0x5c, 0x95, 0x50, 0x8a, 0x04, 0x90, 0x3c, 0xa6, 0x47, 0xc9, 0xb8, 0xf2, 0x98, 0x1b, 0x81, 0x3e,
+0xee, 0x57, 0x78, 0x66, 0x44, 0x69, 0xdc, 0x60, 0x29, 0x4e, 0xc9, 0x32, 0xca, 0x10, 0x10, 0xeb,
+0x51, 0xc6, 0x92, 0xa7, 0xc6, 0x93, 0x3c, 0x8e, 0x60, 0x98, 0xc7, 0xb0, 0x95, 0xd3, 0x0a, 0xfb,
+0xdd, 0x20, 0x9d, 0x40, 0x10, 0x57, 0xcc, 0x62, 0xfa, 0x62, 0x08, 0x58, 0x3f, 0x43, 0x89, 0x26,
+0x92, 0x04, 0x27, 0xe1, 0xf5, 0xc0, 0x4a, 0xa8, 0xa0, 0x9a, 0xba, 0x99, 0xc0, 0xa5, 0x7f, 0xbd,
+0x45, 0xdd, 0x74, 0x00, 0x05, 0x22, 0xf3, 0x3d, 0x37, 0x51, 0xe2, 0x59, 0x86, 0x57, 0x6f, 0x4a,
+0xa5, 0x34, 0x6c, 0x18, 0xc0, 0xf9, 0x0b, 0xdc, 0x43, 0xc3, 0xcb, 0xb1, 0x36, 0xa9, 0x7a, 0xaa,
+0xa3, 0xb5, 0xe7, 0xc9, 0xdc, 0xe4, 0x10, 0x03, 0xeb, 0x1f, 0xbb, 0x37, 0x13, 0x47, 0x5b, 0x4c,
+0x67, 0x47, 0x61, 0x39, 0x9f, 0x24, 0x9e, 0x0c, 0x4c, 0xf4, 0xc3, 0xde, 0xa1, 0xcd, 0x0d, 0xc2,
+0x7b, 0xbc, 0xc7, 0xbd, 0x4d, 0xc6, 0x03, 0xd6, 0x8a, 0xeb, 0xc4, 0x03, 0x3a, 0x1b, 0xb7, 0x2d,
+0xc3, 0x38, 0x9d, 0x3a, 0x13, 0x34, 0xdd, 0x26, 0x08, 0x16, 0x4e, 0x04, 0x1e, 0xf4, 0xc6, 0xe6,
+0x85, 0xdc, 0x67, 0xd5, 0x85, 0xd1, 0xb3, 0xd1, 0xd5, 0xd6, 0x59, 0xe1, 0x7c, 0xf0, 0xe2, 0x01,
+0x4c, 0x12, 0x93, 0x1e, 0x99, 0x24, 0x1b, 0x24, 0x3f, 0x1e, 0x4e, 0x15, 0x7a, 0x0b, 0xac, 0x02,
+0x6c, 0xfb, 0xaa, 0xf5, 0xe2, 0xf0, 0xa4, 0xec, 0xf6, 0xe8, 0xa6, 0xe6, 0x06, 0xe7, 0xe8, 0xea,
+0xfc, 0xf1, 0xee, 0xfa, 0x60, 0x03, 0x9e, 0x09, 0x90, 0x0c, 0x78, 0x0c, 0x7a, 0x0a, 0x52, 0x08,
+0x12, 0x07, 0xdc, 0x06, 0x8a, 0x07, 0xe4, 0x07, 0x26, 0x07, 0x40, 0x04, 0x68, 0xff, 0x42, 0xf9,
+0x62, 0xf3, 0x16, 0xef, 0x20, 0xed, 0x60, 0xed, 0x0a, 0xef, 0x86, 0xf1, 0x36, 0xf4, 0x62, 0xf7,
+0x70, 0xfb, 0xc2, 0x00, 0x60, 0x07, 0xc0, 0x0e, 0xbe, 0x15, 0x0e, 0x1b, 0x53, 0x1d, 0x62, 0x1b,
+0xa2, 0x14, 0xd2, 0x09, 0x7c, 0xfc, 0x10, 0xef, 0x85, 0xe3, 0x8d, 0xdb, 0xe7, 0xd7, 0xa1, 0xd8,
+0x63, 0xdd, 0x50, 0xe5, 0xf4, 0xef, 0x6c, 0xfc, 0x58, 0x0a, 0x64, 0x18, 0x45, 0x25, 0x01, 0x2f,
+0x7f, 0x33, 0x09, 0x31, 0x8d, 0x26, 0x08, 0x15, 0xd2, 0xfe, 0xe8, 0xe7, 0x17, 0xd4, 0x8d, 0xc6,
+0xc7, 0xc0, 0xb5, 0xc2, 0x3d, 0xcb, 0xa1, 0xd8, 0x98, 0xe9, 0xbe, 0xfc, 0x14, 0x11, 0x0b, 0x25,
+0xc3, 0x36, 0x73, 0x43, 0x37, 0x48, 0xcb, 0x42, 0x79, 0x32, 0xf4, 0x18, 0x42, 0xfa, 0xf1, 0xdb,
+0x41, 0xc3, 0xa3, 0xb3, 0x43, 0xae, 0x6d, 0xb2, 0x5f, 0xbe, 0x69, 0xd0, 0xa8, 0xe6, 0xd6, 0xff,
+0xfc, 0x19, 0x4d, 0x33, 0xa3, 0x48, 0x9a, 0x56, 0x7e, 0x59, 0x43, 0x4f, 0x1b, 0x38, 0x22, 0x17,
+0xd8, 0xf1, 0xab, 0xce, 0x8f, 0xb3, 0x7a, 0xa3, 0x62, 0x9f, 0xf0, 0xa5, 0x93, 0xb5, 0x4f, 0xcc,
+0x40, 0xe8, 0x24, 0x07, 0x67, 0x26, 0x37, 0x43, 0x70, 0x59, 0x32, 0x65, 0x30, 0x63, 0xb9, 0x52,
+0xc1, 0x35, 0x72, 0x10, 0xb8, 0xe8, 0x95, 0xc4, 0x5c, 0xa9, 0xd6, 0x99, 0xba, 0x96, 0x28, 0x9f,
+0xd1, 0xb1, 0xf5, 0xcc, 0x06, 0xee, 0xd8, 0x11, 0xb5, 0x34, 0xa3, 0x52, 0x2c, 0x67, 0xb2, 0x6e,
+0x5a, 0x67, 0xdf, 0x51, 0x57, 0x31, 0x06, 0x0a, 0x45, 0xe1, 0xab, 0xbc, 0x6e, 0xa1, 0xac, 0x92,
+0x44, 0x91, 0xbe, 0x9c, 0x5d, 0xb3, 0x3f, 0xd3, 0x82, 0xf8, 0x0d, 0x1f, 0x19, 0x42, 0x48, 0x5d,
+0xee, 0x6c, 0xb2, 0x6e, 0x8a, 0x62, 0x29, 0x4a, 0xc9, 0x28, 0xfe, 0x01, 0x95, 0xda, 0xa5, 0xb7,
+0x2a, 0x9e, 0x6c, 0x91, 0x9c, 0x92, 0x88, 0xa1, 0x47, 0xbc, 0x83, 0xdf, 0x54, 0x06, 0x87, 0x2b,
+0x83, 0x4a, 0xd4, 0x5f, 0x8a, 0x69, 0xd6, 0x66, 0xc0, 0x58, 0xc5, 0x40, 0x35, 0x21, 0xd6, 0xfc,
+0x9d, 0xd7, 0xc5, 0xb6, 0x60, 0x9f, 0x18, 0x95, 0x72, 0x99, 0xad, 0xab, 0x09, 0xc9, 0xcc, 0xec,
+0x68, 0x11, 0xaf, 0x31, 0x5d, 0x4a, 0x90, 0x59, 0xce, 0x5e, 0x50, 0x5a, 0x9b, 0x4c, 0xcd, 0x36,
+0xea, 0x19, 0x7c, 0xf8, 0x39, 0xd6, 0xa3, 0xb8, 0xb6, 0xa4, 0x4a, 0x9e, 0x3a, 0xa6, 0xf5, 0xba,
+0x65, 0xd8, 0x34, 0xf9, 0x3c, 0x18, 0xad, 0x31, 0xc1, 0x43, 0xc9, 0x4d, 0x39, 0x50, 0x13, 0x4b,
+0xc9, 0x3e, 0x5f, 0x2b, 0xdc, 0x11, 0x70, 0xf4, 0x17, 0xd7, 0xb5, 0xbe, 0x15, 0xb0, 0xdf, 0xad,
+0x2f, 0xb8, 0x57, 0xcc, 0xd6, 0xe5, 0x30, 0x00, 0x8a, 0x17, 0xd1, 0x29, 0x25, 0x36, 0xa7, 0x3c,
+0x9b, 0x3d, 0x3d, 0x39, 0x53, 0x2f, 0xd7, 0x1f, 0x82, 0x0b, 0x6c, 0xf4, 0xeb, 0xdd, 0x35, 0xcc,
+0xbb, 0xc2, 0x3b, 0xc3, 0xdd, 0xcc, 0xcb, 0xdc, 0x8e, 0xef, 0xd4, 0x01, 0x6c, 0x11, 0x25, 0x1d,
+0xcb, 0x24, 0xa5, 0x28, 0x0f, 0x29, 0xf5, 0x25, 0x6f, 0x1f, 0x4e, 0x15, 0x06, 0x08, 0x06, 0xf9,
+0x78, 0xea, 0x33, 0xdf, 0x7d, 0xd9, 0x15, 0xda, 0x29, 0xe0, 0xe0, 0xe9, 0xcc, 0xf4, 0x26, 0xff,
+0xa4, 0x07, 0xa4, 0x0d, 0x56, 0x11, 0x1c, 0x13, 0x62, 0x13, 0xae, 0x12, 0x08, 0x11, 0x42, 0x0e,
+0x1c, 0x0a, 0x76, 0x04, 0xe2, 0xfd, 0x9a, 0xf7, 0xe6, 0xf2, 0x92, 0xf0, 0xba, 0xf0, 0x94, 0xf2,
+0x68, 0xf5, 0x08, 0xf8, 0xf8, 0xf9, 0xe0, 0xfa, 0x44, 0xfb, 0xd8, 0xfb, 0xb2, 0xfd, 0x5e, 0x01,
+0x20, 0x07, 0xb6, 0x0d, 0x30, 0x13, 0xe8, 0x15, 0xda, 0x14, 0x8a, 0x10, 0x50, 0x0a, 0x82, 0x03,
+0x3e, 0xfd, 0xe8, 0xf7, 0x04, 0xf3, 0x5e, 0xee, 0xd4, 0xe9, 0xd4, 0xe5, 0x9d, 0xe3, 0xa4, 0xe4,
+0x20, 0xea, 0xd0, 0xf4, 0x92, 0x03, 0xc2, 0x13, 0xd9, 0x21, 0x8f, 0x2a, 0x79, 0x2c, 0xf9, 0x27,
+0xc5, 0x1e, 0xf6, 0x12, 0x66, 0x06, 0xb8, 0xf9, 0x5e, 0xed, 0x5d, 0xe1, 0xa1, 0xd6, 0xc1, 0xce,
+0xd5, 0xcb, 0xd3, 0xcf, 0xb7, 0xdb, 0xde, 0xee, 0x9e, 0x06, 0xd7, 0x1e, 0xab, 0x32, 0xeb, 0x3e,
+0xd9, 0x41, 0x2d, 0x3c, 0xc3, 0x2f, 0x05, 0x1f, 0xf0, 0x0b, 0xd8, 0xf7, 0x79, 0xe3, 0x7b, 0xd0,
+0x39, 0xc1, 0x37, 0xb8, 0xfb, 0xb7, 0xc1, 0xc1, 0x25, 0xd5, 0xfe, 0xef, 0x5e, 0x0e, 0x5f, 0x2b,
+0x9f, 0x42, 0x83, 0x50, 0x93, 0x53, 0x49, 0x4c, 0x67, 0x3c, 0x4d, 0x26, 0x5c, 0x0c, 0x96, 0xf0,
+0x61, 0xd5, 0xb5, 0xbd, 0xeb, 0xac, 0x24, 0xa6, 0xb2, 0xaa, 0xad, 0xba, 0x79, 0xd4, 0xca, 0xf4,
+0x22, 0x17, 0xf1, 0x36, 0xd9, 0x4f, 0xa8, 0x5e, 0x5e, 0x61, 0xd4, 0x57, 0xed, 0x43, 0x11, 0x28,
+0x4e, 0x07, 0x12, 0xe5, 0x63, 0xc5, 0x47, 0xac, 0x74, 0x9d, 0xbc, 0x9a, 0x9e, 0xa4, 0xdb, 0xb9,
+0xdb, 0xd7, 0x34, 0xfb, 0xa7, 0x1f, 0xd9, 0x40, 0xc2, 0x5a, 0xac, 0x69, 0x1c, 0x6b, 0x9a, 0x5e,
+0xb1, 0x45, 0xdf, 0x23, 0x8e, 0xfd, 0x5f, 0xd7, 0xaf, 0xb6, 0xc0, 0x9f, 0xf0, 0x94, 0xea, 0x96,
+0xea, 0xa4, 0x1d, 0xbd, 0x37, 0xdd, 0xb2, 0x01, 0xe7, 0x26, 0xbf, 0x48, 0xd4, 0x62, 0xd6, 0x70,
+0xda, 0x6f, 0x14, 0x5f, 0x41, 0x41, 0xc8, 0x1a, 0x5a, 0xf1, 0x15, 0xcb, 0xe7, 0xac, 0x20, 0x9a,
+0xec, 0x93, 0xa2, 0x99, 0xf0, 0xa9, 0x8f, 0xc3, 0xfc, 0xe3, 0x78, 0x08, 0x85, 0x2d, 0xc3, 0x4e,
+0x9a, 0x67, 0x12, 0x73, 0x2a, 0x6e, 0x1e, 0x59, 0x89, 0x37, 0xf0, 0x0e, 0x04, 0xe6, 0x7b, 0xc2,
+0xb2, 0xa8, 0xd6, 0x9a, 0x92, 0x98, 0x0e, 0xa1, 0xe9, 0xb2, 0xe1, 0xcc, 0xf4, 0xec, 0x80, 0x10,
+0xc3, 0x33, 0x9d, 0x52, 0xa4, 0x67, 0x76, 0x6e, 0x1c, 0x65, 0xf1, 0x4c, 0x8b, 0x2a, 0x1a, 0x04,
+0x55, 0xdf, 0x4b, 0xc1, 0xf5, 0xac, 0x38, 0xa3, 0xa4, 0xa3, 0x3f, 0xad, 0x1f, 0xbf, 0x19, 0xd8,
+0x5a, 0xf6, 0xfa, 0x16, 0x59, 0x36, 0xe5, 0x4f, 0x56, 0x5f, 0x64, 0x61, 0x52, 0x55, 0x83, 0x3d,
+0x41, 0x1e, 0xf8, 0xfc, 0x5b, 0xde, 0x61, 0xc6, 0xc1, 0xb6, 0x5b, 0xb0, 0x79, 0xb2, 0x97, 0xbc,
+0xc1, 0xcd, 0xca, 0xe4, 0x98, 0xff, 0x38, 0x1b, 0x5d, 0x34, 0x6d, 0x47, 0x67, 0x51, 0x3b, 0x50,
+0x4d, 0x44, 0x7b, 0x2f, 0xa8, 0x15, 0xc4, 0xfa, 0x93, 0xe2, 0x0b, 0xd0, 0xaf, 0xc4, 0xe3, 0xc0,
+0x7b, 0xc4, 0x8b, 0xce, 0xd1, 0xdd, 0xbe, 0xf0, 0xdc, 0x04, 0x58, 0x18, 0x45, 0x29, 0xb9, 0x35,
+0x09, 0x3c, 0x23, 0x3b, 0xa5, 0x32, 0x03, 0x24, 0x48, 0x11, 0x6a, 0xfd, 0x6e, 0xeb, 0x9b, 0xdd,
+0x99, 0xd5, 0xc9, 0xd3, 0xcd, 0xd7, 0x55, 0xe0, 0xce, 0xeb, 0x2a, 0xf8, 0x6a, 0x04, 0x5e, 0x0f,
+0xc6, 0x18, 0x0d, 0x20, 0x95, 0x24, 0x61, 0x25, 0xcd, 0x21, 0xca, 0x19, 0x96, 0x0e, 0x5a, 0x02,
+0x3a, 0xf7, 0x54, 0xef, 0x7e, 0xeb, 0xbe, 0xeb, 0xf0, 0xee, 0x64, 0xf3, 0x60, 0xf7, 0x6e, 0xfa,
+0x80, 0xfc, 0xa0, 0xfe, 0xd6, 0x01, 0x64, 0x06, 0xe0, 0x0b, 0xc4, 0x10, 0x50, 0x13, 0xce, 0x12,
+0xa4, 0x0f, 0x00, 0x0b, 0xee, 0x06, 0x46, 0x04, 0x72, 0x03, 0x8c, 0x03, 0xf2, 0x02, 0x74, 0x00,
+0xba, 0xfb, 0x52, 0xf5, 0x14, 0xef, 0xec, 0xea, 0x7c, 0xea, 0x9a, 0xee, 0x2c, 0xf6, 0x64, 0xff,
+0x34, 0x08, 0x10, 0x0f, 0xe0, 0x13, 0x28, 0x17, 0x6a, 0x19, 0x10, 0x1b, 0x3c, 0x1b, 0xc2, 0x18,
+0x88, 0x12, 0x52, 0x08, 0xe0, 0xfa, 0x88, 0xec, 0x8b, 0xdf, 0xbb, 0xd6, 0x21, 0xd4, 0x31, 0xd8,
+0x3f, 0xe2, 0x48, 0xf0, 0xe2, 0xff, 0x2a, 0x0f, 0xf1, 0x1c, 0x0d, 0x28, 0xfd, 0x2f, 0x99, 0x33,
+0xc3, 0x31, 0xf5, 0x29, 0x51, 0x1c, 0xca, 0x09, 0xdc, 0xf4, 0xdd, 0xdf, 0x03, 0xce, 0x37, 0xc2,
+0x6b, 0xbe, 0xb5, 0xc3, 0x77, 0xd1, 0xba, 0xe5, 0x90, 0xfd, 0x14, 0x16, 0xef, 0x2b, 0x01, 0x3d,
+0x19, 0x47, 0x13, 0x49, 0x9f, 0x42, 0x5d, 0x34, 0xc5, 0x1f, 0x0a, 0x07, 0x90, 0xec, 0x33, 0xd3,
+0x11, 0xbe, 0x47, 0xb0, 0x6f, 0xac, 0xed, 0xb3, 0x8f, 0xc6, 0xe1, 0xe1, 0x26, 0x02, 0x19, 0x22,
+0x6d, 0x3d, 0x69, 0x50, 0x50, 0x59, 0x82, 0x57, 0xd5, 0x4b, 0x37, 0x38, 0xc5, 0x1e, 0xe8, 0x01,
+0xad, 0xe3, 0x27, 0xc7, 0x91, 0xaf, 0xdc, 0xa0, 0xfe, 0x9d, 0x04, 0xa9, 0x91, 0xc1, 0x4c, 0xe4,
+0x6a, 0x0b, 0x51, 0x30, 0x8b, 0x4d, 0xc2, 0x5f, 0xd0, 0x65, 0xf6, 0x5f, 0x35, 0x50, 0xb3, 0x38,
+0xe8, 0x1b, 0x8c, 0xfb, 0x53, 0xda, 0x2d, 0xbb, 0x8c, 0xa2, 0x8e, 0x94, 0xc8, 0x94, 0x1e, 0xa5,
+0x09, 0xc4, 0xaa, 0xec, 0x86, 0x17, 0xa7, 0x3d, 0x92, 0x59, 0x1e, 0x69, 0xb0, 0x6b, 0x7e, 0x62,
+0xad, 0x4f, 0x83, 0x35, 0xe4, 0x15, 0x06, 0xf3, 0xa3, 0xcf, 0xc3, 0xaf, 0x5e, 0x98, 0xc0, 0x8d,
+0x1a, 0x93, 0x08, 0xa9, 0x97, 0xcc, 0x64, 0xf7, 0x2d, 0x22, 0xe9, 0x45, 0xf4, 0x5e, 0x76, 0x6b,
+0x6a, 0x6b, 0xfe, 0x5f, 0x27, 0x4b, 0xef, 0x2e, 0x52, 0x0d, 0x04, 0xe9, 0x5b, 0xc5, 0x98, 0xa7,
+0x0c, 0x94, 0x9c, 0x8e, 0xf4, 0x98, 0x59, 0xb2, 0xe5, 0xd6, 0x58, 0x00, 0xf3, 0x27, 0x57, 0x48,
+0x78, 0x5e, 0x90, 0x68, 0xa2, 0x66, 0x70, 0x59, 0xe5, 0x42, 0x2b, 0x25, 0xba, 0x02, 0x11, 0xdf,
+0x85, 0xbe, 0x96, 0xa5, 0xea, 0x97, 0xb2, 0x97, 0x2c, 0xa5, 0x0d, 0xbf, 0x65, 0xe1, 0xf2, 0x06,
+0x59, 0x2a, 0xf7, 0x46, 0xce, 0x59, 0x54, 0x61, 0xdc, 0x5c, 0x97, 0x4d, 0x9b, 0x35, 0x82, 0x17,
+0xda, 0xf6, 0x75, 0xd7, 0x25, 0xbd, 0x3c, 0xab, 0xbc, 0xa3, 0xd4, 0xa6, 0xe7, 0xb4, 0x0f, 0xcc,
+0xc2, 0xe9, 0xfe, 0x09, 0x2d, 0x28, 0x4b, 0x40, 0x89, 0x4f, 0xf9, 0x53, 0x33, 0x4d, 0x1b, 0x3d,
+0x91, 0x25, 0x8e, 0x0a, 0x50, 0xef, 0x35, 0xd7, 0xd7, 0xc4, 0xc5, 0xb9, 0x09, 0xb6, 0x13, 0xba,
+0x99, 0xc5, 0xff, 0xd7, 0xce, 0xef, 0xba, 0x09, 0x39, 0x22, 0x8b, 0x35, 0xe5, 0x40, 0x93, 0x42,
+0xf5, 0x3a, 0x97, 0x2b, 0xb4, 0x17, 0x6a, 0x02, 0xc0, 0xee, 0xd1, 0xde, 0x75, 0xd3, 0xf9, 0xcc,
+0xfb, 0xca, 0x85, 0xcd, 0x25, 0xd5, 0xdf, 0xe1, 0x08, 0xf3, 0x58, 0x06, 0xac, 0x18, 0xa7, 0x26,
+0xf7, 0x2d, 0x9f, 0x2d, 0x45, 0x26, 0x7e, 0x1a, 0xa8, 0x0c, 0xaa, 0xff, 0xfc, 0xf4, 0x1c, 0xed,
+0xc0, 0xe7, 0x2e, 0xe4, 0x01, 0xe2, 0x7f, 0xe1, 0x04, 0xe4, 0xe8, 0xe9, 0x70, 0xf3, 0xfe, 0xfe,
+0x0c, 0x0a, 0x94, 0x12, 0xac, 0x16, 0x24, 0x16, 0x1a, 0x12, 0x70, 0x0c, 0xe8, 0x06, 0xde, 0x02,
+0x54, 0x00, 0xbc, 0xfe, 0x3a, 0xfd, 0xda, 0xfa, 0x48, 0xf7, 0x32, 0xf3, 0xba, 0xef, 0x2e, 0xee,
+0x32, 0xef, 0x6e, 0xf2, 0xce, 0xf6, 0x1e, 0xfb, 0x94, 0xfe, 0xce, 0x00, 0xb4, 0x02, 0xe6, 0x04,
+0xe8, 0x07, 0xd4, 0x0b, 0xbc, 0x0f, 0xaa, 0x12, 0x9a, 0x13, 0x5c, 0x11, 0xa6, 0x0b, 0xe6, 0x02,
+0x74, 0xf8, 0x26, 0xee, 0x0c, 0xe6, 0x11, 0xe1, 0xd1, 0xdf, 0x09, 0xe2, 0xf8, 0xe6, 0x38, 0xee,
+0xfe, 0xf6, 0x06, 0x01, 0x84, 0x0b, 0x26, 0x16, 0x91, 0x1f, 0x9d, 0x26, 0x95, 0x29, 0xe7, 0x26,
+0x05, 0x1e, 0x46, 0x0f, 0x8c, 0xfc, 0xd4, 0xe8, 0xbb, 0xd7, 0x13, 0xcc, 0x99, 0xc7, 0x45, 0xca,
+0xdb, 0xd2, 0xf1, 0xdf, 0xde, 0xef, 0x30, 0x01, 0xd6, 0x12, 0x67, 0x23, 0xaf, 0x31, 0x97, 0x3b,
+0x21, 0x3f, 0x03, 0x3a, 0xb5, 0x2b, 0x14, 0x15, 0x3e, 0xf9, 0xf7, 0xdc, 0x41, 0xc5, 0x53, 0xb6,
+0xd3, 0xb1, 0x77, 0xb7, 0xd5, 0xc4, 0xd5, 0xd7, 0xf0, 0xed, 0x6c, 0x05, 0x99, 0x1c, 0x05, 0x32,
+0x7b, 0x43, 0x9d, 0x4e, 0x85, 0x50, 0x03, 0x47, 0x1b, 0x32, 0xb8, 0x13, 0x86, 0xf0, 0x6f, 0xce,
+0x99, 0xb3, 0xf2, 0xa3, 0x2a, 0xa1, 0xc0, 0xa9, 0x39, 0xbb, 0x19, 0xd3, 0xbe, 0xee, 0x02, 0x0c,
+0xa3, 0x28, 0x07, 0x42, 0x4c, 0x55, 0x4c, 0x5f, 0x0e, 0x5d, 0x51, 0x4d, 0x75, 0x31, 0xe4, 0x0c,
+0x4a, 0xe5, 0x43, 0xc1, 0x3e, 0xa6, 0x2c, 0x98, 0x9a, 0x97, 0x22, 0xa3, 0x43, 0xb8, 0x73, 0xd4,
+0x7e, 0xf4, 0xbe, 0x15, 0x49, 0x35, 0xdf, 0x4f, 0x62, 0x62, 0xfa, 0x68, 0xa4, 0x61, 0x79, 0x4c,
+0x19, 0x2c, 0x90, 0x04, 0xc3, 0xdb, 0x6b, 0xb7, 0x18, 0x9d, 0x40, 0x90, 0x30, 0x91, 0x14, 0x9f,
+0x7f, 0xb7, 0xb5, 0xd7, 0x06, 0xfc, 0xf1, 0x20, 0x39, 0x42, 0x4a, 0x5c, 0x74, 0x6b, 0xdc, 0x6c,
+0x34, 0x60, 0xcf, 0x46, 0x33, 0x24, 0x68, 0xfc, 0x7b, 0xd4, 0xe1, 0xb1, 0x80, 0x99, 0x6c, 0x8e,
+0x9a, 0x91, 0x2a, 0xa2, 0xe9, 0xbd, 0x91, 0xe1, 0x8a, 0x08, 0xd3, 0x2d, 0x25, 0x4d, 0x6e, 0x62,
+0x80, 0x6b, 0x5a, 0x67, 0xbc, 0x56, 0x4b, 0x3c, 0xa2, 0x1a, 0x36, 0xf5, 0x29, 0xd0, 0x5b, 0xb0,
+0x3c, 0x9a, 0x76, 0x91, 0xf4, 0x96, 0x36, 0xaa, 0xf1, 0xc8, 0x24, 0xee, 0x8a, 0x14, 0xed, 0x36,
+0xeb, 0x50, 0x4e, 0x60, 0x22, 0x64, 0x7a, 0x5c, 0x45, 0x4b, 0x75, 0x32, 0xb8, 0x13, 0xbc, 0xf1,
+0x07, 0xd0, 0xff, 0xb2, 0xb6, 0x9f, 0x66, 0x99, 0x6c, 0xa1, 0x13, 0xb7, 0x79, 0xd6, 0x48, 0xfa,
+0xc9, 0x1c, 0x0d, 0x39, 0x8d, 0x4c, 0x3e, 0x56, 0x52, 0x56, 0xb9, 0x4d, 0x11, 0x3e, 0x0f, 0x28,
+0x46, 0x0d, 0x60, 0xef, 0xb9, 0xd1, 0x09, 0xb9, 0xc4, 0xa9, 0x24, 0xa7, 0xbb, 0xb1, 0xd7, 0xc7,
+0xe8, 0xe4, 0xa4, 0x03, 0xd9, 0x1e, 0xa9, 0x33, 0xa9, 0x40, 0xff, 0x45, 0x59, 0x44, 0x9f, 0x3c,
+0x8d, 0x2f, 0xe3, 0x1d, 0xf0, 0x07, 0x90, 0xef, 0xf1, 0xd7, 0x1d, 0xc5, 0xe9, 0xba, 0x51, 0xbb,
+0x5b, 0xc6, 0x4b, 0xd9, 0x62, 0xf0, 0xc8, 0x06, 0xd2, 0x19, 0x57, 0x27, 0x4d, 0x2f, 0x0d, 0x32,
+0x2d, 0x30, 0x65, 0x2a, 0x1f, 0x21, 0x88, 0x14, 0xe8, 0x04, 0xe8, 0xf3, 0x75, 0xe3, 0xd5, 0xd6,
+0x71, 0xd0, 0x81, 0xd1, 0x7f, 0xd9, 0xa0, 0xe6, 0x9a, 0xf5, 0xde, 0x03, 0x52, 0x0f, 0x20, 0x17,
+0x6c, 0x1b, 0xb3, 0x1c, 0x82, 0x1b, 0x60, 0x18, 0xc6, 0x13, 0x9e, 0x0d, 0x1e, 0x06, 0x72, 0xfd,
+0xca, 0xf4, 0x88, 0xed, 0xec, 0xe8, 0xe2, 0xe7, 0x86, 0xea, 0xdc, 0xef, 0x6a, 0xf6, 0xa0, 0xfc,
+0x58, 0x01, 0x30, 0x04, 0x7a, 0x05, 0xb8, 0x05, 0xd2, 0x05, 0xcc, 0x06, 0xd2, 0x08, 0x64, 0x0b,
+0x78, 0x0d, 0xda, 0x0d, 0xa2, 0x0b, 0x1e, 0x07, 0x6e, 0x01, 0xcc, 0xfb, 0x64, 0xf7, 0x6a, 0xf4,
+0x94, 0xf2, 0x4e, 0xf1, 0xf2, 0xef, 0x8a, 0xee, 0xd6, 0xed, 0xca, 0xee, 0x6c, 0xf2, 0xb6, 0xf9,
+0x36, 0x04, 0x66, 0x10, 0x88, 0x1b, 0x99, 0x22, 0xe3, 0x23, 0x73, 0x1f, 0x78, 0x16, 0x20, 0x0b,
+0x92, 0xff, 0xe6, 0xf4, 0x84, 0xeb, 0x61, 0xe3, 0xaf, 0xdc, 0x13, 0xd8, 0xc3, 0xd6, 0x25, 0xda,
+0x7d, 0xe3, 0xf2, 0xf2, 0xac, 0x06, 0x80, 0x1b, 0x47, 0x2d, 0x8f, 0x38, 0x11, 0x3b, 0xeb, 0x34,
+0xfd, 0x27, 0x04, 0x17, 0x96, 0x04, 0x68, 0xf2, 0xc1, 0xe1, 0x53, 0xd3, 0x3f, 0xc8, 0xd9, 0xc1,
+0x09, 0xc2, 0x2f, 0xca, 0xe5, 0xda, 0x9e, 0xf2, 0x36, 0x0e, 0x43, 0x29, 0x37, 0x3f, 0x17, 0x4c,
+0x3b, 0x4e, 0xe7, 0x45, 0xdf, 0x34, 0x7b, 0x1e, 0x7e, 0x05, 0x50, 0xec, 0xbf, 0xd4, 0x17, 0xc1,
+0x41, 0xb3, 0xcd, 0xad, 0x2d, 0xb2, 0x07, 0xc1, 0x65, 0xd9, 0x34, 0xf8, 0x1e, 0x19, 0x7d, 0x37,
+0xf1, 0x4e, 0x0e, 0x5c, 0x26, 0x5d, 0x1f, 0x52, 0x31, 0x3d, 0x7b, 0x21, 0x40, 0x02, 0x59, 0xe2,
+0x67, 0xc5, 0xa7, 0xae, 0x8a, 0xa1, 0xb4, 0x9f, 0xcc, 0xa9, 0x07, 0xbf, 0xeb, 0xdc, 0xb0, 0xff,
+0xdf, 0x22, 0x81, 0x42, 0x5c, 0x5a, 0x6c, 0x67, 0x36, 0x67, 0xb6, 0x59, 0xc5, 0x40, 0xb9, 0x1f,
+0x72, 0xfa, 0x6b, 0xd5, 0xa1, 0xb5, 0x8a, 0x9f, 0xc4, 0x95, 0x06, 0x99, 0x88, 0xa8, 0x39, 0xc2,
+0x1d, 0xe3, 0x7e, 0x07, 0x6d, 0x2b, 0x01, 0x4b, 0xd6, 0x62, 0x1a, 0x6f, 0x2c, 0x6d, 0x52, 0x5c,
+0xa9, 0x3e, 0x4a, 0x18, 0x78, 0xee, 0x41, 0xc7, 0x44, 0xa8, 0xc8, 0x95, 0x1c, 0x91, 0x84, 0x99,
+0xe9, 0xac, 0x0f, 0xc9, 0x02, 0xeb, 0x38, 0x0f, 0x65, 0x32, 0x2d, 0x51, 0xa2, 0x67, 0xbe, 0x71,
+0x92, 0x6c, 0xbc, 0x57, 0xfd, 0x35, 0x84, 0x0c, 0xd9, 0xe1, 0x97, 0xbc, 0x06, 0xa2, 0xc8, 0x94,
+0xe8, 0x94, 0x90, 0xa0, 0xad, 0xb5, 0xf5, 0xd1, 0xc6, 0xf2, 0x8e, 0x15, 0x27, 0x37, 0xfb, 0x53,
+0xea, 0x67, 0xde, 0x6e, 0xf4, 0x65, 0xb3, 0x4d, 0xff, 0x29, 0xc4, 0x00, 0xf1, 0xd8, 0x7d, 0xb8,
+0x56, 0xa3, 0xd6, 0x9a, 0x42, 0x9e, 0x8b, 0xab, 0xb9, 0xc0, 0xeb, 0xdb, 0xea, 0xfa, 0x24, 0x1b,
+0xa1, 0x39, 0xdb, 0x52, 0x78, 0x62, 0xca, 0x64, 0x7c, 0x58, 0x39, 0x3f, 0x1d, 0x1d, 0x26, 0xf8,
+0x3d, 0xd6, 0x19, 0xbc, 0x7b, 0xac, 0xd4, 0xa7, 0xff, 0xac, 0x53, 0xba, 0x4d, 0xce, 0xf8, 0xe6,
+0x70, 0x02, 0x6d, 0x1e, 0x05, 0x38, 0x77, 0x4b, 0xb4, 0x55, 0x9b, 0x54, 0xa3, 0x47, 0xab, 0x30,
+0xa4, 0x13, 0x48, 0xf5, 0x15, 0xda, 0xc7, 0xc5, 0x13, 0xba, 0x79, 0xb7, 0x25, 0xbd, 0xb9, 0xc9,
+0x81, 0xdb, 0xf4, 0xf0, 0xba, 0x07, 0x87, 0x1d, 0x05, 0x30, 0xe3, 0x3c, 0x63, 0x42, 0x8f, 0x3f,
+0xbf, 0x34, 0x21, 0x23, 0x86, 0x0d, 0x3a, 0xf7, 0x95, 0xe3, 0xf3, 0xd4, 0x1d, 0xcd, 0x25, 0xcc,
+0x95, 0xd1, 0x21, 0xdc, 0x0e, 0xea, 0x68, 0xf9, 0x92, 0x08, 0x4e, 0x16, 0x61, 0x21, 0x05, 0x29,
+0x8f, 0x2c, 0x99, 0x2b, 0x81, 0x25, 0xaa, 0x1a, 0x56, 0x0c, 0x10, 0xfd, 0x76, 0xef, 0xce, 0xe5,
+0x2f, 0xe1, 0xb7, 0xe1, 0x80, 0xe6, 0xb2, 0xed, 0x98, 0xf5, 0xe6, 0xfc, 0xe2, 0x02, 0x82, 0x07,
+0x92, 0x0b, 0x96, 0x0f, 0x8e, 0x13, 0x78, 0x16, 0x16, 0x17, 0x86, 0x14, 0xe6, 0x0e, 0xac, 0x07,
+0xac, 0x00, 0x90, 0xfb, 0x2e, 0xf9, 0x2c, 0xf9, 0x2a, 0xfa, 0xfa, 0xfa, 0x82, 0xfa, 0x5e, 0xf8,
+0x70, 0xf5, 0x64, 0xf3, 0xc8, 0xf3, 0x5c, 0xf7, 0x00, 0xfe, 0x0a, 0x06, 0x62, 0x0d, 0x64, 0x12,
+0x9a, 0x14, 0x7c, 0x14, 0x4a, 0x13, 0xea, 0x11, 0x72, 0x10, 0x40, 0x0e, 0x28, 0x0a, 0x42, 0x03,
+0xc8, 0xf9, 0x44, 0xef, 0x78, 0xe5, 0xa7, 0xde, 0xe7, 0xdc, 0x19, 0xe1, 0x8a, 0xea, 0x78, 0xf7,
+0x78, 0x05, 0x50, 0x12, 0xb9, 0x1c, 0x1f, 0x24, 0x67, 0x28, 0x79, 0x29, 0x17, 0x27, 0x53, 0x20,
+0xd0, 0x14, 0x50, 0x05, 0x92, 0xf3, 0xeb, 0xe1, 0xff, 0xd2, 0x63, 0xc9, 0xf9, 0xc6, 0xd1, 0xcc,
+0x41, 0xda, 0x6a, 0xed, 0x3e, 0x03, 0xd2, 0x18, 0x3d, 0x2b, 0xaf, 0x38, 0xe1, 0x3f, 0x27, 0x40,
+0x2f, 0x39, 0x71, 0x2b, 0x18, 0x18, 0x0a, 0x01, 0x16, 0xe9, 0xff, 0xd2, 0x7d, 0xc1, 0x99, 0xb6,
+0xab, 0xb4, 0xc1, 0xbc, 0xb3, 0xce, 0x2c, 0xe8, 0xbe, 0x05, 0xe9, 0x22, 0x9d, 0x3b, 0x9f, 0x4c,
+0xe1, 0x53, 0xf7, 0x50, 0x9d, 0x44, 0xad, 0x30, 0x46, 0x17, 0x62, 0xfb, 0x95, 0xdf, 0x91, 0xc6,
+0xe1, 0xb2, 0x64, 0xa7, 0x4a, 0xa6, 0x3f, 0xb1, 0x2f, 0xc8, 0x82, 0xe8, 0x40, 0x0d, 0x8f, 0x30,
+0x01, 0x4d, 0x98, 0x5e, 0xa2, 0x63, 0x3c, 0x5c, 0x7f, 0x4a, 0x5b, 0x31, 0xf4, 0x13, 0x7e, 0xf4,
+0xa3, 0xd5, 0x51, 0xba, 0xa2, 0xa5, 0x86, 0x9a, 0xe0, 0x9b, 0x73, 0xab, 0x6f, 0xc8, 0x3e, 0xef,
+0x62, 0x19, 0xb1, 0x3f, 0x36, 0x5c, 0x7c, 0x6b, 0x5e, 0x6c, 0x5c, 0x60, 0xa3, 0x4a, 0x61, 0x2e,
+0x4a, 0x0e, 0xb2, 0xec, 0x31, 0xcc, 0xe1, 0xaf, 0xb0, 0x9b, 0x10, 0x93, 0x8e, 0x98, 0x49, 0xad,
+0xb1, 0xcf, 0x80, 0xfa, 0x31, 0x26, 0x77, 0x4b, 0xfc, 0x64, 0x5c, 0x70, 0xb8, 0x6d, 0xe2, 0x5e,
+0xcf, 0x46, 0xcb, 0x28, 0x46, 0x07, 0x5e, 0xe4, 0x21, 0xc3, 0xba, 0xa7, 0x08, 0x96, 0x64, 0x91,
+0xde, 0x9b, 0x57, 0xb5, 0x9d, 0xda, 0xaa, 0x05, 0x1f, 0x2f, 0x8d, 0x50, 0x36, 0x66, 0x62, 0x6e,
+0x54, 0x69, 0xdc, 0x58, 0xd3, 0x3f, 0xd1, 0x20, 0x70, 0xfe, 0xbd, 0xdb, 0x3b, 0xbc, 0x1a, 0xa4,
+0x14, 0x97, 0xaa, 0x97, 0x58, 0xa6, 0xcb, 0xc1, 0x34, 0xe6, 0xc8, 0x0d, 0x8f, 0x32, 0x89, 0x4f,
+0x7c, 0x61, 0xe2, 0x66, 0x1e, 0x60, 0x9f, 0x4e, 0xe5, 0x34, 0xde, 0x15, 0x94, 0xf4, 0x73, 0xd4,
+0x6f, 0xb9, 0x2e, 0xa7, 0xfe, 0x9f, 0xde, 0xa4, 0x65, 0xb5, 0x77, 0xcf, 0xa6, 0xef, 0x92, 0x11,
+0xa1, 0x30, 0xdd, 0x48, 0x62, 0x57, 0xa8, 0x5a, 0x85, 0x52, 0xc7, 0x40, 0xd5, 0x27, 0xc8, 0x0a,
+0x1a, 0xed, 0xa7, 0xd2, 0x73, 0xbe, 0x93, 0xb2, 0x1b, 0xb0, 0xb1, 0xb6, 0x71, 0xc5, 0xc3, 0xda,
+0x94, 0xf4, 0xda, 0x0f, 0x63, 0x29, 0x9b, 0x3d, 0x3b, 0x49, 0xb1, 0x4a, 0x31, 0x42, 0x47, 0x31,
+0x94, 0x1a, 0xd2, 0x01, 0x98, 0xea, 0x9f, 0xd7, 0xb9, 0xca, 0x61, 0xc4, 0x3f, 0xc4, 0xc5, 0xc9,
+0x75, 0xd4, 0xb9, 0xe3, 0x9a, 0xf6, 0x8c, 0x0b, 0x6b, 0x1f, 0xf9, 0x2e, 0x53, 0x37, 0x25, 0x37,
+0xbb, 0x2e, 0x2f, 0x20, 0x86, 0x0e, 0xd6, 0xfc, 0x0e, 0xee, 0x7d, 0xe3, 0x35, 0xdd, 0x71, 0xda,
+0xa1, 0xda, 0x45, 0xdd, 0x93, 0xe2, 0x12, 0xeb, 0xb0, 0xf6, 0x42, 0x04, 0xb0, 0x11, 0x1a, 0x1c,
+0x3b, 0x21, 0x3f, 0x20, 0x34, 0x1a, 0xd4, 0x10, 0xe8, 0x06, 0x98, 0xfe, 0xec, 0xf8, 0x92, 0xf5,
+0xb6, 0xf3, 0x5e, 0xf2, 0xa0, 0xf0, 0xee, 0xee, 0xf2, 0xed, 0xea, 0xee, 0x5e, 0xf2, 0x36, 0xf8,
+0xfa, 0xfe, 0xfe, 0x04, 0xf4, 0x08, 0x44, 0x0a, 0x84, 0x09, 0x26, 0x08, 0x7c, 0x07, 0xfc, 0x07,
+0x46, 0x09, 0x7a, 0x0a, 0x7a, 0x0a, 0x7c, 0x08, 0x14, 0x04, 0x6c, 0xfd, 0xc6, 0xf5, 0x9c, 0xee,
+0x78, 0xe9, 0x1a, 0xe7, 0xf2, 0xe7, 0x50, 0xeb, 0x64, 0xf0, 0x98, 0xf6, 0x78, 0xfd, 0xe6, 0x04,
+0xa8, 0x0c, 0x7e, 0x14, 0x0c, 0x1b, 0x73, 0x1f, 0xa1, 0x20, 0xbd, 0x1d, 0xfc, 0x15, 0xb8, 0x09,
+0x64, 0xfa, 0x2e, 0xea, 0x29, 0xdc, 0xb9, 0xd2, 0x8f, 0xcf, 0xaf, 0xd2, 0x69, 0xdb, 0xda, 0xe7,
+0x84, 0xf6, 0xd6, 0x05, 0xcc, 0x14, 0x2b, 0x22, 0x11, 0x2d, 0xf9, 0x33, 0x8b, 0x35, 0x79, 0x30,
+0x19, 0x24, 0xb8, 0x10, 0x80, 0xf8, 0x81, 0xdf, 0xf7, 0xc9, 0x1f, 0xbc, 0x0d, 0xb8, 0x1b, 0xbe,
+0xed, 0xcb, 0x3d, 0xdf, 0xee, 0xf4, 0xe4, 0x0a, 0x43, 0x1f, 0x09, 0x31, 0xc5, 0x3e, 0xbd, 0x46,
+0x2b, 0x47, 0x49, 0x3e, 0xc9, 0x2b, 0xc0, 0x10, 0xc8, 0xf0, 0xed, 0xd0, 0x6d, 0xb7, 0x9c, 0xa8,
+0x6e, 0xa6, 0x0b, 0xb0, 0xff, 0xc2, 0xa7, 0xdb, 0xc0, 0xf6, 0xc6, 0x11, 0xb7, 0x2a, 0xf7, 0x3f,
+0xb7, 0x4f, 0xaa, 0x57, 0x42, 0x55, 0x51, 0x47, 0xfb, 0x2d, 0xc4, 0x0b, 0x50, 0xe5, 0x57, 0xc1,
+0x1e, 0xa6, 0x1e, 0x98, 0x9c, 0x98, 0x00, 0xa6, 0x59, 0xbd, 0xd9, 0xda, 0xee, 0xfa, 0x3a, 0x1a,
+0xd3, 0x36, 0x4d, 0x4e, 0x1e, 0x5e, 0x2e, 0x63, 0xac, 0x5b, 0x3b, 0x47, 0xa9, 0x27, 0xec, 0x00,
+0x65, 0xd8, 0xad, 0xb4, 0x70, 0x9b, 0x4e, 0x90, 0x82, 0x93, 0xb6, 0xa3, 0xe1, 0xbd, 0x87, 0xde,
+0xc8, 0x01, 0x65, 0x24, 0x1d, 0x43, 0xf2, 0x5a, 0x9e, 0x68, 0x54, 0x69, 0x02, 0x5c, 0x3b, 0x42,
+0x1f, 0x1f, 0xe8, 0xf6, 0xff, 0xce, 0x0b, 0xad, 0x0a, 0x96, 0xc2, 0x8c, 0x08, 0x92, 0x56, 0xa4,
+0x2f, 0xc1, 0xdc, 0xe4, 0x18, 0x0b, 0x8b, 0x2f, 0x2f, 0x4e, 0x7a, 0x63, 0x40, 0x6c, 0x48, 0x67,
+0x32, 0x55, 0xa3, 0x38, 0x08, 0x15, 0x72, 0xee, 0x4d, 0xc9, 0x42, 0xaa, 0xdc, 0x95, 0xd6, 0x8e,
+0x30, 0x96, 0xdc, 0xaa, 0x4f, 0xca, 0x0c, 0xf0, 0x10, 0x17, 0x39, 0x3a, 0x2c, 0x55, 0xb8, 0x64,
+0x72, 0x67, 0x96, 0x5d, 0x2b, 0x49, 0xf9, 0x2c, 0xf0, 0x0b, 0xfa, 0xe8, 0xbb, 0xc7, 0x4f, 0xac,
+0xac, 0x9a, 0xf0, 0x95, 0x64, 0x9f, 0x19, 0xb6, 0xab, 0xd6, 0x18, 0xfc, 0x81, 0x20, 0xbd, 0x3e,
+0x4f, 0x53, 0x7c, 0x5c, 0x7e, 0x5a, 0xbf, 0x4e, 0x91, 0x3b, 0xcb, 0x22, 0x5e, 0x06, 0x54, 0xe8,
+0x83, 0xcb, 0xbf, 0xb3, 0x04, 0xa5, 0xae, 0xa2, 0xa3, 0xad, 0xd3, 0xc4, 0x0e, 0xe4, 0xe2, 0x05,
+0x77, 0x24, 0xd5, 0x3b, 0x93, 0x49, 0xab, 0x4d, 0x5b, 0x49, 0x63, 0x3e, 0x21, 0x2e, 0xf2, 0x19,
+0xbc, 0x02, 0xfe, 0xe9, 0x37, 0xd2, 0x05, 0xbf, 0x13, 0xb4, 0x25, 0xb4, 0xfb, 0xbf, 0x37, 0xd5,
+0xe0, 0xef, 0xbe, 0x0a, 0x9d, 0x21, 0x5b, 0x31, 0x9b, 0x39, 0xd5, 0x3a, 0x67, 0x36, 0x99, 0x2d,
+0x69, 0x21, 0x48, 0x12, 0xe4, 0x00, 0x82, 0xee, 0x01, 0xdd, 0x2f, 0xcf, 0x21, 0xc8, 0x91, 0xc9,
+0x5b, 0xd3, 0x77, 0xe3, 0x66, 0xf6, 0xa2, 0x08, 0x52, 0x17, 0x15, 0x21, 0x87, 0x25, 0xc7, 0x25,
+0xa1, 0x22, 0x0d, 0x1d, 0x90, 0x15, 0xa2, 0x0c, 0x76, 0x02, 0x9a, 0xf7, 0x24, 0xed, 0xa6, 0xe4,
+0xe1, 0xdf, 0xe1, 0xdf, 0xa0, 0xe4, 0x0e, 0xed, 0x16, 0xf7, 0xba, 0x00, 0x5c, 0x08, 0x2a, 0x0d,
+0x56, 0x0f, 0x86, 0x0f, 0x90, 0x0e, 0xfe, 0x0c, 0x9e, 0x0b, 0x4c, 0x0a, 0xc6, 0x08, 0x4c, 0x06,
+0x7e, 0x02, 0x90, 0xfd, 0x88, 0xf8, 0x60, 0xf4, 0xfc, 0xf1, 0xb2, 0xf1, 0x0a, 0xf3, 0xec, 0xf4,
+0xa4, 0xf6, 0xc0, 0xf7, 0x64, 0xf8, 0x3e, 0xf9, 0x42, 0xfb, 0x44, 0xff, 0x66, 0x05, 0x38, 0x0d,
+0xaa, 0x14, 0xa0, 0x19, 0x4a, 0x1a, 0x30, 0x16, 0x22, 0x0e, 0x2c, 0x04, 0x40, 0xfa, 0xbe, 0xf1,
+0x66, 0xeb, 0xf0, 0xe6, 0xb3, 0xe3, 0xe7, 0xe1, 0xf5, 0xe1, 0xd4, 0xe4, 0xa6, 0xeb, 0x16, 0xf7,
+0x46, 0x06, 0x16, 0x17, 0x55, 0x26, 0x33, 0x30, 0x9b, 0x32, 0xd9, 0x2c, 0x8d, 0x20, 0x38, 0x10,
+0xec, 0xfe, 0xc2, 0xee, 0x13, 0xe1, 0x49, 0xd6, 0xa5, 0xce, 0xaf, 0xca, 0xb7, 0xcb, 0xeb, 0xd2,
+0x2b, 0xe1, 0x84, 0xf5, 0xd6, 0x0d, 0x3b, 0x26, 0x47, 0x3a, 0x39, 0x46, 0xa5, 0x47, 0xfb, 0x3e,
+0xb3, 0x2d, 0x64, 0x17, 0x2c, 0xff, 0x32, 0xe8, 0xf1, 0xd3, 0x2b, 0xc4, 0xc9, 0xb9, 0x1b, 0xb6,
+0xbf, 0xba, 0x6f, 0xc8, 0x79, 0xde, 0xb8, 0xfa, 0x6a, 0x19, 0xf3, 0x35, 0x01, 0x4c, 0xee, 0x57,
+0xce, 0x57, 0xcd, 0x4b, 0x63, 0x36, 0xae, 0x1a, 0xa0, 0xfc, 0x55, 0xdf, 0xc9, 0xc5, 0x2f, 0xb2,
+0xf4, 0xa6, 0xdc, 0xa5, 0xc3, 0xaf, 0x81, 0xc4, 0x8d, 0xe1, 0x82, 0x03, 0xc1, 0x25, 0xf1, 0x43,
+0xf4, 0x59, 0xdc, 0x64, 0xa4, 0x62, 0xa5, 0x53, 0x45, 0x3a, 0xd0, 0x19, 0x22, 0xf6, 0x9b, 0xd3,
+0x4b, 0xb6, 0xa6, 0xa1, 0x96, 0x98, 0x5a, 0x9c, 0xb7, 0xac, 0x9b, 0xc7, 0x8c, 0xe9, 0xea, 0x0d,
+0xdf, 0x30, 0x8b, 0x4e, 0x86, 0x63, 0xd0, 0x6c, 0xb2, 0x68, 0xee, 0x56, 0x91, 0x39, 0x4a, 0x14,
+0xa8, 0xeb, 0x8d, 0xc5, 0x58, 0xa7, 0xfe, 0x94, 0xa4, 0x90, 0x50, 0x9a, 0xf3, 0xaf, 0x81, 0xce,
+0x0c, 0xf2, 0x92, 0x16, 0x89, 0x38, 0xf0, 0x54, 0xa8, 0x68, 0x64, 0x70, 0x02, 0x6a, 0x16, 0x55,
+0xbb, 0x33, 0x6e, 0x0a, 0x57, 0xdf, 0x1f, 0xb9, 0xd6, 0x9d, 0xa4, 0x90, 0xfc, 0x91, 0x58, 0xa0,
+0xf7, 0xb8, 0x43, 0xd8, 0xa4, 0xfa, 0x17, 0x1d, 0x97, 0x3c, 0xbe, 0x56, 0x4e, 0x68, 0xa8, 0x6d,
+0x4c, 0x64, 0x4f, 0x4c, 0x83, 0x28, 0x5a, 0xfe, 0xb9, 0xd4, 0x71, 0xb2, 0x8a, 0x9c, 0xe6, 0x94,
+0x90, 0x9a, 0x28, 0xab, 0xcb, 0xc3, 0x77, 0xe1, 0x50, 0x01, 0xd7, 0x20, 0xc1, 0x3d, 0x2a, 0x55,
+0xd0, 0x63, 0x04, 0x66, 0xe4, 0x59, 0x2b, 0x40, 0x71, 0x1c, 0xb2, 0xf4, 0x9f, 0xcf, 0x41, 0xb3,
+0xec, 0xa2, 0x8c, 0x9f, 0x76, 0xa7, 0x2d, 0xb8, 0x43, 0xcf, 0x50, 0xea, 0xf0, 0x06, 0xd3, 0x22,
+0xcb, 0x3b, 0xe5, 0x4e, 0x0c, 0x59, 0x98, 0x57, 0x97, 0x49, 0xbb, 0x30, 0xf6, 0x10, 0x6c, 0xef,
+0xb1, 0xd1, 0x17, 0xbc, 0xe3, 0xb0, 0x09, 0xb0, 0x3d, 0xb8, 0x57, 0xc7, 0x73, 0xdb, 0xa0, 0xf2,
+0xa6, 0x0a, 0x83, 0x21, 0xf9, 0x34, 0xcf, 0x42, 0x73, 0x48, 0xf5, 0x44, 0x07, 0x38, 0x8f, 0x23,
+0x7e, 0x0a, 0xec, 0xf0, 0x9d, 0xda, 0xc7, 0xca, 0x0f, 0xc3, 0x6b, 0xc3, 0xf5, 0xca, 0x07, 0xd8,
+0xa4, 0xe8, 0xb0, 0xfa, 0x38, 0x0c, 0x9a, 0x1b, 0xe3, 0x27, 0xe9, 0x2f, 0xcd, 0x32, 0xdd, 0x2f,
+0x53, 0x27, 0xa8, 0x19, 0xc2, 0x08, 0x04, 0xf7, 0x50, 0xe7, 0xfd, 0xdb, 0x8f, 0xd6, 0x45, 0xd7,
+0x2b, 0xdd, 0x08, 0xe7, 0xb6, 0xf2, 0x58, 0xfe, 0x7c, 0x08, 0x68, 0x10, 0x0a, 0x16, 0xc0, 0x19,
+0xb2, 0x1b, 0x94, 0x1b, 0xfc, 0x18, 0x5a, 0x13, 0x02, 0x0b, 0x72, 0x01, 0x64, 0xf8, 0xb2, 0xf1,
+0x6e, 0xee, 0xc6, 0xee, 0xc6, 0xf1, 0xe6, 0xf5, 0xb4, 0xf9, 0x0a, 0xfc, 0xe4, 0xfc, 0x0c, 0xfd,
+0xc0, 0xfd, 0x26, 0x00, 0xb8, 0x04, 0x9a, 0x0a, 0xee, 0x0f, 0x26, 0x13, 0x42, 0x13, 0xb6, 0x10,
+0xda, 0x0c, 0xec, 0x08, 0x18, 0x06, 0x22, 0x04, 0x2a, 0x02, 0xca, 0xfe, 0xa6, 0xf9, 0xde, 0xf2,
+0xf8, 0xeb, 0xda, 0xe6, 0x86, 0xe5, 0x28, 0xe9, 0xa6, 0xf1, 0x62, 0xfd, 0xcc, 0x09, 0x74, 0x14,
+0xfa, 0x1b, 0xff, 0x1f, 0x15, 0x21, 0x05, 0x20, 0xd7, 0x1c, 0x48, 0x17, 0x76, 0x0e, 0x82, 0x02,
+0x22, 0xf4, 0x8c, 0xe5, 0xd1, 0xd8, 0xc3, 0xd0, 0x37, 0xcf, 0x19, 0xd5, 0xf5, 0xe1, 0xa4, 0xf3,
+0x42, 0x07, 0xc2, 0x19, 0xf3, 0x28, 0x3f, 0x33, 0x23, 0x38, 0x63, 0x37, 0xe3, 0x30, 0x9d, 0x24,
+0x56, 0x13, 0x9c, 0xfe, 0xd2, 0xe8, 0xc9, 0xd4, 0x3d, 0xc5, 0x55, 0xbc, 0x03, 0xbc, 0xf7, 0xc4,
+0x65, 0xd6, 0x50, 0xee, 0x3c, 0x09, 0x6b, 0x23, 0x55, 0x39, 0x55, 0x48, 0x6b, 0x4e, 0x47, 0x4b,
+0x25, 0x3f, 0x6d, 0x2b, 0x86, 0x12, 0x42, 0xf7, 0x95, 0xdc, 0x6b, 0xc5, 0x59, 0xb4, 0x91, 0xab,
+0xc5, 0xac, 0xe7, 0xb8, 0x3d, 0xcf, 0x84, 0xed, 0xac, 0x0f, 0xad, 0x30, 0x81, 0x4b, 0x44, 0x5c,
+0xbe, 0x60, 0xa6, 0x58, 0x07, 0x46, 0xc5, 0x2b, 0x6c, 0x0d, 0x42, 0xee, 0x13, 0xd1, 0x61, 0xb8,
+0xec, 0xa6, 0x02, 0x9f, 0x6a, 0xa2, 0x55, 0xb2, 0x13, 0xce, 0x86, 0xf2, 0xa8, 0x1a, 0xe3, 0x3f,
+0x30, 0x5c, 0x4c, 0x6b, 0xae, 0x6b, 0x52, 0x5e, 0x8b, 0x46, 0x45, 0x28, 0x12, 0x07, 0xfc, 0xe5,
+0x93, 0xc7, 0x79, 0xae, 0x6c, 0x9d, 0x10, 0x97, 0x66, 0x9d, 0x81, 0xb1, 0x7b, 0xd2, 0xf6, 0xfb,
+0x6f, 0x27, 0x9d, 0x4d, 0x38, 0x68, 0x9e, 0x73, 0x78, 0x6f, 0xf6, 0x5d, 0x03, 0x43, 0xd1, 0x22,
+0x6c, 0x00, 0x5d, 0xde, 0x7d, 0xbf, 0xba, 0xa6, 0x4a, 0x97, 0xe6, 0x93, 0x94, 0x9e, 0x93, 0xb7,
+0xad, 0xdc, 0x56, 0x08, 0x35, 0x33, 0x5e, 0x56, 0xa6, 0x6c, 0xa6, 0x73, 0xec, 0x6b, 0x40, 0x58,
+0x51, 0x3c, 0x92, 0x1b, 0x0c, 0xf9, 0x39, 0xd7, 0x6b, 0xb9, 0x10, 0xa3, 0x2a, 0x97, 0x32, 0x98,
+0x52, 0xa7, 0xa1, 0xc3, 0x82, 0xe9, 0x30, 0x13, 0xd3, 0x39, 0xce, 0x57, 0x72, 0x69, 0xf4, 0x6c,
+0x4a, 0x63, 0xc1, 0x4e, 0xc3, 0x32, 0x54, 0x12, 0xa0, 0xf0, 0xb1, 0xd0, 0x33, 0xb6, 0x5a, 0xa4,
+0xc6, 0x9d, 0x9a, 0xa3, 0xbb, 0xb5, 0x29, 0xd2, 0xf4, 0xf4, 0x20, 0x19, 0xab, 0x39, 0x47, 0x52,
+0xf6, 0x5f, 0x86, 0x61, 0x08, 0x57, 0xf7, 0x42, 0xf5, 0x27, 0x50, 0x09, 0x40, 0xea, 0x83, 0xce,
+0x3d, 0xb9, 0x33, 0xad, 0x8f, 0xab, 0x11, 0xb4, 0xc3, 0xc5, 0x45, 0xde, 0xd0, 0xfa, 0xe8, 0x17,
+0x3f, 0x32, 0x5d, 0x46, 0x85, 0x51, 0xeb, 0x51, 0xbf, 0x47, 0xaf, 0x34, 0xe6, 0x1b, 0xc6, 0x00,
+0xda, 0xe6, 0x75, 0xd1, 0x1f, 0xc3, 0xcf, 0xbc, 0x7b, 0xbe, 0x2d, 0xc7, 0x61, 0xd5, 0x04, 0xe8,
+0x46, 0xfd, 0x56, 0x13, 0xcd, 0x27, 0xbd, 0x37, 0x43, 0x40, 0xb7, 0x3f, 0x07, 0x36, 0x1d, 0x25,
+0x3a, 0x10, 0xd0, 0xfa, 0x42, 0xe8, 0xc7, 0xda, 0x4b, 0xd3, 0x81, 0xd1, 0x13, 0xd4, 0x01, 0xda,
+0xb5, 0xe2, 0xdc, 0xed, 0x6c, 0xfb, 0x80, 0x0a, 0x36, 0x19, 0xf5, 0x24, 0x2b, 0x2b, 0x27, 0x2a,
+0x8d, 0x22, 0x44, 0x16, 0x4e, 0x08, 0xa6, 0xfb, 0x1e, 0xf2, 0x50, 0xec, 0xd8, 0xe9, 0x62, 0xe9,
+0xfa, 0xe9, 0x0c, 0xeb, 0xe4, 0xec, 0x4c, 0xf0, 0x16, 0xf6, 0xf4, 0xfd, 0xda, 0x06, 0x8e, 0x0e,
+0x18, 0x13, 0xa4, 0x13, 0x90, 0x10, 0xa4, 0x0b, 0xb8, 0x06, 0x40, 0x03, 0x90, 0x01, 0x36, 0x01,
+0xe6, 0x00, 0xee, 0xff, 0x4c, 0xfd, 0x16, 0xf9, 0x22, 0xf4, 0xe4, 0xef, 0xa4, 0xed, 0x4e, 0xee,
+0x76, 0xf1, 0x1a, 0xf6, 0x20, 0xfb, 0x8e, 0xff, 0x88, 0x03, 0x5c, 0x07, 0xaa, 0x0b, 0x32, 0x10,
+0x76, 0x14, 0x36, 0x17, 0xa6, 0x17, 0xb0, 0x14, 0x2e, 0x0e, 0x4a, 0x04, 0x10, 0xf8, 0x9c, 0xeb,
+0x19, 0xe1, 0x85, 0xda, 0xfd, 0xd8, 0xb7, 0xdc, 0x8a, 0xe4, 0x84, 0xef, 0xf8, 0xfb, 0xec, 0x08,
+0x3c, 0x15, 0xf3, 0x1f, 0x1f, 0x28, 0xb1, 0x2c, 0xab, 0x2c, 0x47, 0x27, 0x49, 0x1c, 0xc4, 0x0b,
+0x84, 0xf7, 0x37, 0xe2, 0xa7, 0xcf, 0x7f, 0xc3, 0x01, 0xc0, 0xa9, 0xc5, 0x0f, 0xd3, 0xb2, 0xe5,
+0x9e, 0xfa, 0x58, 0x0f, 0xc1, 0x21, 0xdb, 0x30, 0x79, 0x3b, 0x8f, 0x40, 0x13, 0x3f, 0x17, 0x36,
+0x45, 0x25, 0x52, 0x0d, 0x98, 0xf0, 0x71, 0xd3, 0x69, 0xbb, 0x0b, 0xad, 0x04, 0xab, 0x25, 0xb5,
+0xdd, 0xc8, 0x71, 0xe2, 0xc2, 0xfd, 0xc6, 0x17, 0x41, 0x2e, 0x09, 0x40, 0xcd, 0x4b, 0x93, 0x50,
+0x97, 0x4c, 0x25, 0x3f, 0xf5, 0x27, 0xb8, 0x08, 0x20, 0xe5, 0xf5, 0xc2, 0xac, 0xa8, 0x1a, 0x9b,
+0x44, 0x9c, 0xc4, 0xaa, 0xa1, 0xc3, 0x03, 0xe2, 0x0a, 0x02, 0x1b, 0x20, 0x43, 0x3a, 0x8f, 0x4e,
+0x62, 0x5b, 0x82, 0x5e, 0x9a, 0x56, 0x05, 0x43, 0xcb, 0x24, 0x3c, 0xff, 0x37, 0xd7, 0x77, 0xb3,
+0x30, 0x9a, 0x8c, 0x8f, 0x78, 0x94, 0x2c, 0xa7, 0xc9, 0xc3, 0xde, 0xe5, 0x00, 0x09, 0xa7, 0x29,
+0x9b, 0x45, 0x76, 0x5a, 0xcc, 0x65, 0x70, 0x65, 0x1e, 0x58, 0xb3, 0x3e, 0xa6, 0x1b, 0x26, 0xf3,
+0xe7, 0xca, 0x1e, 0xa9, 0xc2, 0x92, 0x0e, 0x8b, 0x56, 0x92, 0x0e, 0xa7, 0xe7, 0xc5, 0x6a, 0xea,
+0x14, 0x10, 0x1b, 0x33, 0x09, 0x50, 0xd6, 0x63, 0xb6, 0x6b, 0xfe, 0x65, 0x3d, 0x53, 0x9f, 0x35,
+0xae, 0x10, 0xe6, 0xe8, 0x41, 0xc3, 0xc0, 0xa4, 0xa2, 0x91, 0x50, 0x8c, 0x84, 0x95, 0x09, 0xac,
+0xa9, 0xcc, 0x00, 0xf3, 0xf8, 0x19, 0xef, 0x3c, 0xe2, 0x57, 0x72, 0x67, 0xa4, 0x69, 0x7a, 0x5e,
+0xd1, 0x47, 0x01, 0x29, 0xa2, 0x05, 0x51, 0xe1, 0x0d, 0xc0, 0xcc, 0xa5, 0xe8, 0x95, 0xe4, 0x92,
+0xaa, 0x9d, 0x57, 0xb5, 0xf1, 0xd6, 0x74, 0xfd, 0x5b, 0x23, 0x61, 0x43, 0x6c, 0x59, 0xf6, 0x62,
+0xb2, 0x5f, 0xf7, 0x50, 0xef, 0x39, 0x7d, 0x1d, 0x88, 0xfe, 0x89, 0xdf, 0x75, 0xc3, 0x2d, 0xad,
+0x18, 0xa0, 0xcc, 0x9e, 0x82, 0xaa, 0x8d, 0xc2, 0x45, 0xe3, 0x7c, 0x07, 0x05, 0x29, 0x2d, 0x43,
+0x81, 0x52, 0x5e, 0x56, 0x77, 0x4f, 0x7b, 0x40, 0xeb, 0x2b, 0x2c, 0x14, 0xf6, 0xfa, 0xe1, 0xe1,
+0xcd, 0xca, 0x87, 0xb8, 0x27, 0xae, 0x7d, 0xae, 0xdd, 0xba, 0xd3, 0xd1, 0x60, 0xef, 0x08, 0x0e,
+0x71, 0x28, 0x15, 0x3b, 0x2d, 0x44, 0x21, 0x44, 0xad, 0x3c, 0xef, 0x2f, 0xe3, 0x1f, 0xea, 0x0d,
+0xc8, 0xfa, 0x80, 0xe7, 0xcd, 0xd5, 0xe1, 0xc7, 0xc7, 0xc0, 0x79, 0xc2, 0xa7, 0xcd, 0x91, 0xe0,
+0x5c, 0xf7, 0x8c, 0x0d, 0x85, 0x1f, 0xf9, 0x2a, 0xab, 0x2f, 0x6b, 0x2e, 0xab, 0x28, 0x15, 0x20,
+0xa4, 0x15, 0xf0, 0x09, 0xa0, 0xfd, 0x20, 0xf1, 0x80, 0xe5, 0x91, 0xdc, 0xd9, 0xd7, 0xed, 0xd8,
+0xcd, 0xdf, 0x3a, 0xeb, 0xd2, 0xf8, 0xea, 0x05, 0x48, 0x10, 0xd6, 0x16, 0x8a, 0x19, 0xee, 0x18,
+0x38, 0x16, 0x06, 0x12, 0x6e, 0x0d, 0x9c, 0x08, 0xc4, 0x03, 0x96, 0xfe, 0x30, 0xf9, 0xce, 0xf3,
+0x5e, 0xef, 0xea, 0xec, 0x1a, 0xed, 0xf8, 0xef, 0x8e, 0xf4, 0xbc, 0xf9, 0x22, 0xfe, 0x20, 0x01,
+0x9e, 0x02, 0x4c, 0x03, 0xd8, 0x03, 0x14, 0x05, 0x84, 0x07, 0x00, 0x0b, 0x9e, 0x0e, 0xf0, 0x10,
+0x86, 0x10, 0xd2, 0x0c, 0x14, 0x06, 0xd6, 0xfd, 0xe0, 0xf5, 0xb4, 0xef, 0xe0, 0xeb, 0x34, 0xea,
+0xd0, 0xe9, 0x4a, 0xea, 0xd0, 0xeb, 0x90, 0xee, 0xc2, 0xf3, 0xa6, 0xfb, 0x5c, 0x06, 0xca, 0x12,
+0xa5, 0x1e, 0xf7, 0x26, 0x57, 0x29, 0x7d, 0x24, 0x2c, 0x19, 0x08, 0x0a, 0xde, 0xf9, 0x9e, 0xeb,
+0x91, 0xe0, 0xe7, 0xd8, 0xbd, 0xd4, 0xb7, 0xd3, 0x2f, 0xd6, 0xef, 0xdc, 0x86, 0xe8, 0xf2, 0xf8,
+0xdc, 0x0c, 0x8d, 0x21, 0x6f, 0x33, 0xb5, 0x3e, 0x57, 0x40, 0xff, 0x37, 0xe7, 0x26, 0xca, 0x10,
+0x86, 0xf9, 0x26, 0xe4, 0xe7, 0xd2, 0xc1, 0xc6, 0x19, 0xc0, 0x5d, 0xbf, 0xe5, 0xc4, 0x33, 0xd1,
+0x8c, 0xe4, 0x26, 0xfd, 0x4c, 0x18, 0x39, 0x32, 0x77, 0x46, 0x89, 0x51, 0x01, 0x51, 0xe3, 0x44,
+0x85, 0x2f, 0x56, 0x14, 0x64, 0xf7, 0x33, 0xdc, 0xa1, 0xc5, 0xb3, 0xb5, 0xb1, 0xad, 0x51, 0xae,
+0x3f, 0xb8, 0x6f, 0xcb, 0x4a, 0xe6, 0xdc, 0x05, 0xdf, 0x25, 0x63, 0x42, 0x08, 0x57, 0xcc, 0x60,
+0xdc, 0x5d, 0x65, 0x4e, 0xd5, 0x34, 0x88, 0x14, 0xd8, 0xf1, 0xfb, 0xd0, 0xfb, 0xb5, 0xd8, 0xa3,
+0xc0, 0x9c, 0x56, 0xa1, 0xc1, 0xb1, 0x5b, 0xcc, 0x96, 0xed, 0x64, 0x11, 0x1b, 0x33, 0x2f, 0x4f,
+0x4e, 0x62, 0xd8, 0x69, 0x58, 0x64, 0x13, 0x52, 0xef, 0x34, 0x8c, 0x10, 0x6e, 0xe9, 0xbb, 0xc4,
+0xea, 0xa7, 0x90, 0x96, 0xe2, 0x92, 0x14, 0x9d, 0x8b, 0xb3, 0x49, 0xd3, 0xba, 0xf7, 0x49, 0x1c,
+0x5d, 0x3d, 0xd0, 0x57, 0xfa, 0x68, 0x78, 0x6e, 0x7c, 0x66, 0x27, 0x51, 0x6f, 0x30, 0x00, 0x08,
+0x9f, 0xdd, 0x97, 0xb7, 0xf2, 0x9b, 0xb2, 0x8e, 0xa2, 0x90, 0xae, 0xa0, 0xbf, 0xbb, 0x7f, 0xdd,
+0x9a, 0x01, 0x4b, 0x24, 0xc1, 0x42, 0xb8, 0x5a, 0x8e, 0x69, 0x8e, 0x6c, 0x2e, 0x62, 0x25, 0x4a,
+0xf9, 0x26, 0x0c, 0xfd, 0xbf, 0xd2, 0x1f, 0xaf, 0xe4, 0x97, 0xda, 0x8f, 0xae, 0x96, 0x06, 0xaa,
+0x0b, 0xc6, 0xb6, 0xe6, 0x46, 0x08, 0xff, 0x27, 0x91, 0x43, 0xda, 0x58, 0x32, 0x65, 0xda, 0x65,
+0x52, 0x59, 0xb1, 0x3f, 0xea, 0x1b, 0x0a, 0xf3, 0xe3, 0xcb, 0x59, 0xad, 0xec, 0x9b, 0xda, 0x98,
+0xe4, 0xa2, 0xe1, 0xb6, 0x55, 0xd1, 0x2c, 0xef, 0x3a, 0x0d, 0x5f, 0x29, 0x81, 0x41, 0x31, 0x53,
+0x1a, 0x5c, 0xc8, 0x59, 0x11, 0x4b, 0x33, 0x31, 0x48, 0x0f, 0xc8, 0xea, 0x05, 0xca, 0x17, 0xb2,
+0x4e, 0xa6, 0x04, 0xa7, 0x39, 0xb2, 0x77, 0xc5, 0x81, 0xdd, 0x8c, 0xf7, 0x76, 0x11, 0xc7, 0x28,
+0xd5, 0x3b, 0xa9, 0x48, 0x1f, 0x4d, 0x29, 0x48, 0x61, 0x39, 0x41, 0x22, 0x4c, 0x06, 0x9c, 0xe9,
+0xc5, 0xd0, 0xb5, 0xbf, 0xef, 0xb7, 0xd5, 0xb9, 0xf3, 0xc3, 0xd9, 0xd3, 0x86, 0xe7, 0x66, 0xfc,
+0x72, 0x10, 0x13, 0x22, 0x7b, 0x2f, 0x83, 0x37, 0x5b, 0x39, 0x27, 0x34, 0x87, 0x28, 0xd2, 0x17,
+0xfe, 0x03, 0x30, 0xf0, 0x0d, 0xdf, 0xf1, 0xd2, 0x7b, 0xcd, 0xcf, 0xce, 0x45, 0xd6, 0x37, 0xe2,
+0x8a, 0xf0, 0x2e, 0xff, 0x70, 0x0c, 0xfc, 0x16, 0x67, 0x1e, 0x79, 0x22, 0x43, 0x23, 0xef, 0x20,
+0x74, 0x1b, 0xf8, 0x12, 0xf2, 0x07, 0xc0, 0xfb, 0x40, 0xf0, 0x94, 0xe7, 0x75, 0xe3, 0x22, 0xe4,
+0xf0, 0xe8, 0x20, 0xf0, 0xd0, 0xf7, 0x6c, 0xfe, 0x1a, 0x03, 0xe4, 0x05, 0xb6, 0x07, 0x86, 0x09,
+0x02, 0x0c, 0x16, 0x0f, 0x72, 0x11, 0x10, 0x12, 0xe0, 0x0f, 0xe6, 0x0a, 0xa6, 0x04, 0xc0, 0xfe,
+0xc0, 0xfa, 0x18, 0xf9, 0xe0, 0xf8, 0xf4, 0xf8, 0x28, 0xf8, 0xc4, 0xf5, 0x82, 0xf2, 0x98, 0xef,
+0xd6, 0xee, 0xee, 0xf1, 0xc2, 0xf8, 0x68, 0x02, 0xda, 0x0c, 0x7c, 0x15, 0xe2, 0x1a, 0x55, 0x1c,
+0x84, 0x1a, 0xe0, 0x16, 0x42, 0x12, 0xd4, 0x0c, 0x44, 0x06, 0xc6, 0xfd, 0x9e, 0xf3, 0xcc, 0xe8,
+0xdb, 0xde, 0x85, 0xd8, 0x97, 0xd7, 0x13, 0xdd, 0xd6, 0xe8, 0xf4, 0xf8, 0x92, 0x0a, 0xe8, 0x1a,
+0x45, 0x27, 0x7f, 0x2e, 0x95, 0x30, 0xcb, 0x2d, 0xcb, 0x26, 0xc8, 0x1b, 0x18, 0x0d, 0xbe, 0xfb,
+0x42, 0xe9, 0x07, 0xd8, 0x9d, 0xca, 0x6b, 0xc3, 0xeb, 0xc3, 0xcb, 0xcc, 0x55, 0xdd, 0x98, 0xf3,
+0x30, 0x0c, 0x83, 0x23, 0x6b, 0x36, 0x75, 0x42, 0xa9, 0x46, 0x7b, 0x42, 0x7d, 0x36, 0xf9, 0x23,
+0xec, 0x0c, 0xd8, 0xf3, 0xa1, 0xdb, 0x19, 0xc7, 0xa9, 0xb8, 0x4d, 0xb2, 0xf3, 0xb4, 0x39, 0xc1,
+0x59, 0xd6, 0x2e, 0xf2, 0x3c, 0x11, 0xe1, 0x2e, 0x13, 0x47, 0x1a, 0x56, 0xfc, 0x59, 0x0b, 0x52,
+0x9b, 0x3f, 0xc1, 0x25, 0xe8, 0x07, 0xd2, 0xe9, 0x55, 0xce, 0x6b, 0xb8, 0x00, 0xaa, 0xde, 0xa4,
+0xc4, 0xa9, 0x6f, 0xb9, 0x7d, 0xd3, 0x58, 0xf5, 0xf0, 0x1a, 0x33, 0x3e, 0x90, 0x59, 0xa0, 0x68,
+0xcc, 0x68, 0xd0, 0x5a, 0xc9, 0x41, 0x0b, 0x22, 0x06, 0x00, 0x3f, 0xdf, 0x8f, 0xc2, 0x87, 0xac,
+0x10, 0x9f, 0x76, 0x9b, 0x7a, 0xa3, 0x77, 0xb7, 0xd7, 0xd6, 0x32, 0xfe, 0xdb, 0x27, 0x4b, 0x4d,
+0x18, 0x68, 0xc8, 0x73, 0x18, 0x6f, 0x08, 0x5c, 0xad, 0x3e, 0x2e, 0x1c, 0x66, 0xf8, 0xf7, 0xd6,
+0x5d, 0xba, 0xfc, 0xa4, 0xf0, 0x98, 0xce, 0x97, 0x32, 0xa3, 0x9f, 0xbb, 0x75, 0xdf, 0x08, 0x0a,
+0x01, 0x35, 0xe8, 0x58, 0x1e, 0x70, 0x38, 0x77, 0xfa, 0x6d, 0x9e, 0x57, 0x7f, 0x38, 0x20, 0x15,
+0x54, 0xf1, 0x17, 0xd0, 0x43, 0xb4, 0x9a, 0xa0, 0x10, 0x97, 0x7c, 0x99, 0x36, 0xa9, 0x91, 0xc5,
+0xc2, 0xeb, 0x3a, 0x16, 0x2d, 0x3e, 0x72, 0x5d, 0x78, 0x6f, 0x0c, 0x72, 0x28, 0x66, 0xef, 0x4e,
+0x23, 0x30, 0xd4, 0x0d, 0x12, 0xeb, 0x0d, 0xcb, 0x2b, 0xb1, 0x32, 0xa0, 0x68, 0x9a, 0x5c, 0xa1,
+0x01, 0xb5, 0x53, 0xd3, 0x7a, 0xf8, 0xd5, 0x1e, 0xfb, 0x40, 0x8a, 0x5a, 0xc2, 0x67, 0x9e, 0x67,
+0xc6, 0x5a, 0xdb, 0x43, 0x65, 0x26, 0xbc, 0x05, 0x26, 0xe5, 0x51, 0xc8, 0xbd, 0xb2, 0xda, 0xa6,
+0x66, 0xa6, 0x1d, 0xb1, 0xdb, 0xc5, 0xa1, 0xe1, 0xfe, 0x00, 0x27, 0x20, 0x81, 0x3b, 0xab, 0x4f,
+0xba, 0x59, 0x7c, 0x58, 0x6d, 0x4c, 0x71, 0x37, 0x42, 0x1c, 0x8c, 0xfe, 0xed, 0xe1, 0x4b, 0xca,
+0xab, 0xba, 0x63, 0xb4, 0xd7, 0xb7, 0xcf, 0xc3, 0xe1, 0xd5, 0x40, 0xec, 0x60, 0x04, 0x32, 0x1c,
+0x4d, 0x31, 0x01, 0x41, 0x99, 0x48, 0xf3, 0x46, 0xdd, 0x3b, 0xeb, 0x28, 0xa4, 0x11, 0xf0, 0xf8,
+0xfd, 0xe2, 0xbb, 0xd2, 0xcf, 0xc9, 0x5f, 0xc8, 0x5d, 0xcd, 0xf5, 0xd6, 0xad, 0xe3, 0xa4, 0xf2,
+0x96, 0x02, 0x16, 0x13, 0x91, 0x22, 0x5d, 0x2e, 0x5b, 0x34, 0xc5, 0x32, 0xaf, 0x29, 0x08, 0x1b,
+0x82, 0x09, 0x6a, 0xf8, 0xd4, 0xea, 0x25, 0xe2, 0x71, 0xde, 0x05, 0xdf, 0x6d, 0xe2, 0x50, 0xe7,
+0x54, 0xed, 0x06, 0xf4, 0x5a, 0xfc, 0xfe, 0x05, 0xec, 0x0f, 0x7c, 0x18, 0x75, 0x1d, 0x9d, 0x1d,
+0xbe, 0x18, 0x78, 0x10, 0x34, 0x07, 0x52, 0xff, 0xfe, 0xf9, 0x60, 0xf7, 0xd6, 0xf6, 0x18, 0xf7,
+0x02, 0xf7, 0xd6, 0xf5, 0xe8, 0xf3, 0x98, 0xf2, 0xb4, 0xf2, 0x76, 0xf5, 0x3e, 0xfa, 0x0a, 0x00,
+0x70, 0x05, 0xda, 0x08, 0xaa, 0x0a, 0x14, 0x0b, 0x6c, 0x0b, 0x04, 0x0c, 0x4e, 0x0d, 0x2a, 0x0e,
+0x0c, 0x0e, 0xe6, 0x0b, 0xf4, 0x06, 0xbc, 0xff, 0x94, 0xf6, 0x70, 0xed, 0x4e, 0xe6, 0x79, 0xe2,
+0xef, 0xe2, 0x66, 0xe7, 0x14, 0xef, 0x76, 0xf8, 0x86, 0x02, 0x32, 0x0c, 0xee, 0x14, 0x5f, 0x1c,
+0x55, 0x21, 0xdb, 0x23, 0xcd, 0x22, 0xd1, 0x1d, 0x4c, 0x14, 0xd8, 0x06, 0x70, 0xf6, 0x4e, 0xe5,
+0x63, 0xd6, 0x63, 0xcc, 0xf1, 0xc9, 0x75, 0xcf, 0xb9, 0xdb, 0xd0, 0xec, 0xb2, 0xff, 0x00, 0x12,
+0xc9, 0x21, 0xef, 0x2d, 0xd5, 0x35, 0xc7, 0x38, 0x3d, 0x36, 0x69, 0x2d, 0xab, 0x1e, 0xf6, 0x09,
+0x6c, 0xf1, 0xf7, 0xd7, 0x4f, 0xc2, 0xd1, 0xb4, 0x6d, 0xb2, 0xe3, 0xbb, 0xe3, 0xce, 0xf0, 0xe7,
+0x9c, 0x02, 0x62, 0x1b, 0xf3, 0x2f, 0x0b, 0x3f, 0xc3, 0x47, 0xf3, 0x49, 0x99, 0x44, 0x71, 0x37,
+0x5d, 0x22, 0x98, 0x06, 0x96, 0xe6, 0x65, 0xc7, 0x35, 0xae, 0xbc, 0xa0, 0xa2, 0xa1, 0x15, 0xb0,
+0x5f, 0xc9, 0x70, 0xe8, 0x82, 0x08, 0x73, 0x25, 0xe1, 0x3c, 0x91, 0x4d, 0xec, 0x56, 0xae, 0x57,
+0xe5, 0x4e, 0x91, 0x3c, 0x11, 0x21, 0x86, 0xfe, 0xff, 0xd8, 0x43, 0xb6, 0x14, 0x9d, 0x0c, 0x92,
+0xf0, 0x96, 0x54, 0xaa, 0x5b, 0xc8, 0xc2, 0xeb, 0x40, 0x0f, 0x17, 0x2f, 0x93, 0x48, 0x6a, 0x5a,
+0xe4, 0x62, 0xa6, 0x60, 0x07, 0x53, 0x55, 0x3a, 0xb4, 0x18, 0x7c, 0xf1, 0x25, 0xca, 0x8e, 0xa8,
+0x6e, 0x92, 0x7a, 0x8b, 0x58, 0x94, 0x2c, 0xab, 0xe3, 0xcb, 0x7a, 0xf1, 0xd2, 0x16, 0x25, 0x38,
+0x63, 0x52, 0x98, 0x63, 0xd0, 0x69, 0x52, 0x63, 0x37, 0x50, 0x85, 0x32, 0x40, 0x0d, 0x36, 0xe5,
+0x55, 0xbf, 0xf6, 0xa0, 0xde, 0x8e, 0x46, 0x8b, 0x8c, 0x96, 0xfd, 0xae, 0x19, 0xd1, 0xaa, 0xf7,
+0x3d, 0x1e, 0xe7, 0x3f, 0xaa, 0x59, 0x6e, 0x68, 0x14, 0x6a, 0x44, 0x5e, 0xbd, 0x46, 0x5d, 0x26,
+0x40, 0x01, 0xbd, 0xdb, 0x01, 0xba, 0x7e, 0xa0, 0x26, 0x92, 0x22, 0x91, 0xe0, 0x9d, 0x2f, 0xb7,
+0xa3, 0xd9, 0xb0, 0x00, 0xa5, 0x26, 0xb5, 0x46, 0xde, 0x5c, 0x82, 0x66, 0xb0, 0x62, 0x6d, 0x52,
+0xaf, 0x38, 0x30, 0x19, 0x9a, 0xf7, 0x39, 0xd7, 0x13, 0xbb, 0x1e, 0xa6, 0x08, 0x9b, 0x96, 0x9b,
+0xf4, 0xa8, 0x31, 0xc2, 0x22, 0xe4, 0x7a, 0x09, 0x83, 0x2c, 0x0b, 0x48, 0xb8, 0x58, 0xea, 0x5c,
+0xcc, 0x54, 0x35, 0x43, 0x01, 0x2b, 0x78, 0x0f, 0x6e, 0xf3, 0xd7, 0xd8, 0x11, 0xc2, 0x25, 0xb1,
+0x6a, 0xa8, 0x08, 0xaa, 0x63, 0xb7, 0x37, 0xcf, 0x46, 0xee, 0x76, 0x0f, 0xc3, 0x2c, 0x09, 0x42,
+0xb1, 0x4c, 0x83, 0x4c, 0x33, 0x43, 0x17, 0x33, 0xcb, 0x1e, 0x04, 0x09, 0x48, 0xf3, 0xe9, 0xde,
+0x41, 0xcd, 0x4b, 0xc0, 0x09, 0xba, 0xdb, 0xbc, 0x15, 0xc9, 0xd9, 0xdd, 0xa0, 0xf7, 0x96, 0x11,
+0x13, 0x27, 0x0f, 0x35, 0x8b, 0x3a, 0x01, 0x38, 0x9f, 0x2f, 0x0b, 0x23, 0x9e, 0x14, 0x6e, 0x05,
+0x76, 0xf6, 0x96, 0xe8, 0x75, 0xdc, 0x89, 0xd3, 0x75, 0xcf, 0xd1, 0xd1, 0x03, 0xdb, 0xa2, 0xe9,
+0x40, 0xfb, 0x62, 0x0c, 0x0c, 0x1a, 0x27, 0x22, 0x67, 0x24, 0x2f, 0x22, 0x87, 0x1c, 0x4c, 0x15,
+0x12, 0x0d, 0x2e, 0x05, 0xc4, 0xfd, 0x82, 0xf6, 0xdc, 0xef, 0x4a, 0xea, 0xf2, 0xe6, 0x8a, 0xe6,
+0x64, 0xe9, 0x56, 0xef, 0x74, 0xf7, 0xc4, 0xff, 0x98, 0x06, 0x10, 0x0b, 0xf0, 0x0c, 0xea, 0x0c,
+0xca, 0x0b, 0x46, 0x0a, 0x46, 0x09, 0xcc, 0x08, 0xa4, 0x08, 0x24, 0x08, 0x70, 0x06, 0xda, 0x02,
+0xda, 0xfd, 0x0c, 0xf8, 0xca, 0xf2, 0x78, 0xef, 0x20, 0xee, 0x0c, 0xef, 0x1c, 0xf1, 0x46, 0xf3,
+0xda, 0xf5, 0xa4, 0xf8, 0x70, 0xfc, 0x82, 0x01, 0x22, 0x08, 0x0a, 0x10, 0x02, 0x18, 0xd3, 0x1d,
+0x2f, 0x1f, 0x66, 0x1b, 0x1c, 0x12, 0x16, 0x05, 0x12, 0xf7, 0x6c, 0xea, 0x77, 0xe1, 0x59, 0xdc,
+0xa7, 0xda, 0x17, 0xdc, 0x25, 0xe0, 0xe0, 0xe6, 0x98, 0xf0, 0x68, 0xfd, 0xda, 0x0c, 0x2d, 0x1d,
+0xa9, 0x2b, 0x1f, 0x35, 0xe9, 0x36, 0xb1, 0x2f, 0x51, 0x20, 0x92, 0x0b, 0x88, 0xf5, 0xc7, 0xe1,
+0xd5, 0xd2, 0xa3, 0xc9, 0x17, 0xc6, 0xab, 0xc7, 0x53, 0xce, 0x1b, 0xda, 0xca, 0xea, 0xe2, 0xff,
+0x4a, 0x17, 0x01, 0x2e, 0x79, 0x40, 0x67, 0x4a, 0xcf, 0x49, 0x11, 0x3e, 0xd7, 0x28, 0xf2, 0x0d,
+0xa6, 0xf1, 0x2d, 0xd8, 0x85, 0xc4, 0x01, 0xb8, 0xf5, 0xb2, 0xbb, 0xb5, 0x3d, 0xc0, 0x3b, 0xd2,
+0xd0, 0xea, 0xbc, 0x07, 0x6b, 0x25, 0x13, 0x40, 0xf5, 0x52, 0x4a, 0x5b, 0x4c, 0x57, 0x2f, 0x47,
+0x63, 0x2d, 0x96, 0x0d, 0x4e, 0xec, 0x11, 0xce, 0x59, 0xb6, 0x62, 0xa7, 0x80, 0xa2, 0x0c, 0xa8,
+0x0d, 0xb8, 0x53, 0xd1, 0x54, 0xf1, 0xd2, 0x13, 0xad, 0x34, 0x8f, 0x4f, 0xf8, 0x60, 0x7c, 0x66,
+0x00, 0x5f, 0x5f, 0x4b, 0xe7, 0x2d, 0x20, 0x0a, 0x9c, 0xe4, 0x7f, 0xc2, 0x36, 0xa8, 0xec, 0x98,
+0x4e, 0x96, 0xf2, 0xa0, 0x75, 0xb7, 0x67, 0xd7, 0x18, 0xfc, 0xc9, 0x20, 0x61, 0x41, 0x2c, 0x5a,
+0xe6, 0x68, 0x84, 0x6b, 0x4a, 0x61, 0xdb, 0x4a, 0x4d, 0x2a, 0x1e, 0x03, 0x67, 0xda, 0x1b, 0xb6,
+0xa8, 0x9b, 0xfe, 0x8e, 0x80, 0x91, 0x5a, 0xa2, 0xc5, 0xbe, 0x69, 0xe2, 0x16, 0x08, 0x6f, 0x2b,
+0xe7, 0x48, 0x94, 0x5e, 0x74, 0x6a, 0xb8, 0x6a, 0x80, 0x5e, 0x11, 0x46, 0x81, 0x23, 0x5e, 0xfa,
+0x5f, 0xd0, 0x87, 0xac, 0xfe, 0x94, 0xee, 0x8c, 0xe6, 0x94, 0x68, 0xaa, 0x91, 0xc9, 0x3e, 0xed,
+0xb0, 0x10, 0x77, 0x30, 0x6f, 0x4a, 0xdc, 0x5c, 0xea, 0x65, 0x1e, 0x64, 0x1e, 0x56, 0x6d, 0x3c,
+0xe6, 0x18, 0xf0, 0xef, 0x05, 0xc8, 0x32, 0xa8, 0xd8, 0x95, 0x64, 0x93, 0x7a, 0x9f, 0xf1, 0xb6,
+0x69, 0xd5, 0x3c, 0xf6, 0xf4, 0x15, 0xad, 0x31, 0xe1, 0x47, 0x32, 0x57, 0xea, 0x5d, 0xfa, 0x59,
+0xc5, 0x4a, 0x91, 0x30, 0x02, 0x0e, 0x0a, 0xe8, 0xd9, 0xc4, 0xf8, 0xaa, 0x76, 0x9e, 0xcc, 0x9f,
+0x5d, 0xad, 0x07, 0xc4, 0x6b, 0xdf, 0x46, 0xfc, 0x6c, 0x17, 0x15, 0x2f, 0xa1, 0x41, 0x65, 0x4d,
+0xe1, 0x50, 0xfb, 0x4a, 0x07, 0x3b, 0x11, 0x22, 0x8c, 0x03, 0xd8, 0xe3, 0x85, 0xc8, 0xf3, 0xb5,
+0x89, 0xae, 0x6f, 0xb2, 0xa5, 0xbf, 0xeb, 0xd2, 0xac, 0xe9, 0xc4, 0x00, 0x36, 0x16, 0x7f, 0x28,
+0xdf, 0x35, 0x81, 0x3d, 0x43, 0x3e, 0xc1, 0x37, 0x15, 0x2a, 0x90, 0x16, 0xa4, 0xff, 0xd2, 0xe8,
+0x51, 0xd5, 0x45, 0xc8, 0x6f, 0xc3, 0xdd, 0xc6, 0x23, 0xd1, 0x3b, 0xe0, 0x84, 0xf1, 0xa4, 0x02,
+0xf0, 0x11, 0xbd, 0x1d, 0xe1, 0x25, 0x87, 0x29, 0xd3, 0x28, 0x3b, 0x24, 0xde, 0x1b, 0x3c, 0x10,
+0x6e, 0x02, 0x14, 0xf4, 0x3c, 0xe7, 0xc7, 0xdd, 0x79, 0xd9, 0x13, 0xdb, 0xa1, 0xe1, 0x84, 0xeb,
+0x62, 0xf6, 0xc8, 0x00, 0x26, 0x09, 0xc8, 0x0e, 0xcc, 0x11, 0xe2, 0x12, 0xf2, 0x12, 0x44, 0x12,
+0xec, 0x10, 0x3c, 0x0e, 0x7a, 0x09, 0xea, 0x02, 0x80, 0xfb, 0x02, 0xf5, 0x1a, 0xf1, 0x20, 0xf0,
+0x02, 0xf2, 0x2e, 0xf5, 0x38, 0xf8, 0x14, 0xfa, 0x5e, 0xfa, 0xea, 0xf9, 0xac, 0xf9, 0x28, 0xfb,
+0x3e, 0xff, 0xa0, 0x05, 0xd6, 0x0c, 0xd0, 0x12, 0xe2, 0x15, 0x68, 0x15, 0xcc, 0x11, 0x9c, 0x0c,
+0x52, 0x07, 0xd0, 0x02, 0xb4, 0xfe, 0x30, 0xfa, 0xc4, 0xf4, 0x44, 0xee, 0xc8, 0xe7, 0xc5, 0xe2,
+0x79, 0xe1, 0x6a, 0xe5, 0xae, 0xee, 0x20, 0xfc, 0x56, 0x0b, 0x44, 0x19, 0x73, 0x23, 0x5d, 0x28,
+0x1d, 0x28, 0xfb, 0x23, 0xb7, 0x1c, 0x02, 0x13, 0x1a, 0x07, 0x60, 0xf9, 0xd2, 0xea, 0xdb, 0xdc,
+0x8d, 0xd1, 0x5b, 0xcb, 0x0d, 0xcc, 0x53, 0xd4, 0xab, 0xe3, 0xee, 0xf7, 0x1c, 0x0e, 0xe9, 0x22,
+0xfb, 0x32, 0x7d, 0x3c, 0xa3, 0x3e, 0x75, 0x39, 0x0f, 0x2e, 0x49, 0x1d, 0x8e, 0x08, 0x36, 0xf2,
+0x6d, 0xdc, 0xef, 0xc9, 0x2b, 0xbd, 0xe1, 0xb7, 0x7b, 0xbb, 0x0f, 0xc8, 0x75, 0xdc, 0x78, 0xf6,
+0xfc, 0x12, 0xd9, 0x2d, 0x81, 0x43, 0x95, 0x50, 0x3f, 0x53, 0x75, 0x4b, 0xff, 0x39, 0x2f, 0x21,
+0x58, 0x04, 0xd2, 0xe6, 0x75, 0xcc, 0x21, 0xb8, 0xb3, 0xab, 0xc2, 0xa8, 0xa7, 0xaf, 0x57, 0xc0,
+0xcb, 0xd9, 0x74, 0xf9, 0xa2, 0x1b, 0xe1, 0x3b, 0x1a, 0x55, 0x48, 0x63, 0xa8, 0x63, 0x4e, 0x56,
+0x9d, 0x3d, 0xc7, 0x1d, 0x16, 0xfb, 0xff, 0xd9, 0x7d, 0xbe, 0xb0, 0xaa, 0x76, 0xa0, 0xda, 0x9f,
+0xa2, 0xa9, 0x05, 0xbe, 0xb3, 0xdb, 0x3a, 0x00, 0x05, 0x27, 0x8f, 0x4a, 0xc8, 0x64, 0xda, 0x70,
+0x7a, 0x6c, 0xe4, 0x58, 0x4f, 0x3a, 0xc6, 0x15, 0xb2, 0xf0, 0x45, 0xcf, 0x9d, 0xb4, 0xc4, 0xa2,
+0x72, 0x9a, 0x42, 0x9c, 0xf8, 0xa8, 0xf1, 0xc0, 0xe7, 0xe2, 0x62, 0x0b, 0xbb, 0x34, 0x70, 0x58,
+0x3c, 0x70, 0x8a, 0x77, 0x84, 0x6d, 0xb3, 0x54, 0x97, 0x32, 0xd0, 0x0c, 0xfc, 0xe7, 0xc7, 0xc7,
+0xb9, 0xae, 0xb8, 0x9e, 0x76, 0x98, 0x0e, 0x9d, 0x0d, 0xad, 0xd5, 0xc8, 0xfc, 0xed, 0xd2, 0x17,
+0x57, 0x40, 0xc0, 0x60, 0x94, 0x73, 0xb8, 0x75, 0xc2, 0x67, 0x25, 0x4d, 0x07, 0x2b, 0x22, 0x06,
+0xad, 0xe2, 0xf5, 0xc3, 0x95, 0xac, 0x64, 0x9e, 0xfe, 0x9a, 0x18, 0xa3, 0x0d, 0xb7, 0x91, 0xd5,
+0x30, 0xfb, 0xe1, 0x22, 0x87, 0x46, 0xf8, 0x60, 0x1a, 0x6e, 0x70, 0x6c, 0x00, 0x5d, 0x01, 0x43,
+0xbb, 0x22, 0x44, 0x00, 0x1b, 0xdf, 0xdb, 0xc2, 0x35, 0xae, 0x68, 0xa3, 0xd8, 0xa3, 0x81, 0xaf,
+0xb1, 0xc5, 0xaf, 0xe3, 0xd0, 0x05, 0x79, 0x27, 0x61, 0x44, 0xac, 0x58, 0xb4, 0x61, 0x52, 0x5e,
+0x71, 0x4f, 0xa5, 0x37, 0x30, 0x1a, 0xb8, 0xfa, 0x05, 0xdd, 0xd3, 0xc4, 0xd3, 0xb4, 0xd9, 0xae,
+0x2f, 0xb3, 0x39, 0xc1, 0x8f, 0xd6, 0x28, 0xf0, 0x30, 0x0b, 0xb5, 0x24, 0x41, 0x3a, 0x7d, 0x49,
+0xd9, 0x4f, 0xad, 0x4c, 0xcd, 0x3f, 0x03, 0x2b, 0x82, 0x11, 0x96, 0xf6, 0x4b, 0xde, 0xe3, 0xcb,
+0xd7, 0xc1, 0x83, 0xc0, 0xa1, 0xc7, 0xa9, 0xd4, 0x82, 0xe5, 0xde, 0xf7, 0x30, 0x0a, 0xbe, 0x1b,
+0x0f, 0x2b, 0x79, 0x36, 0xbb, 0x3b, 0x91, 0x39, 0x79, 0x2f, 0xe7, 0x1e, 0x96, 0x0a, 0xe2, 0xf5,
+0x8c, 0xe4, 0xf1, 0xd8, 0x4d, 0xd4, 0x03, 0xd6, 0x43, 0xdc, 0x4e, 0xe5, 0x1a, 0xef, 0x3c, 0xf9,
+0x6c, 0x03, 0x08, 0x0e, 0x72, 0x18, 0x2f, 0x21, 0x1d, 0x26, 0xab, 0x25, 0x69, 0x1f, 0x84, 0x14,
+0xb4, 0x07, 0x6c, 0xfb, 0x5a, 0xf2, 0x3c, 0xed, 0x18, 0xec, 0xb6, 0xed, 0x40, 0xf0, 0xba, 0xf2,
+0x92, 0xf4, 0x30, 0xf6, 0xd4, 0xf8, 0x02, 0xfd, 0xee, 0x02, 0x6c, 0x09, 0xbc, 0x0e, 0x5e, 0x11,
+0xfa, 0x10, 0x32, 0x0e, 0x84, 0x0a, 0x78, 0x07, 0x8e, 0x05, 0xf0, 0x04, 0x9e, 0x04, 0x86, 0x03,
+0xc8, 0x00, 0x48, 0xfc, 0x32, 0xf6, 0x20, 0xf0, 0x90, 0xeb, 0xe0, 0xe9, 0xe8, 0xeb, 0xfe, 0xf0,
+0x40, 0xf8, 0x4e, 0x00, 0xce, 0x07, 0x7e, 0x0e, 0x2a, 0x14, 0x98, 0x18, 0x8e, 0x1b, 0x3e, 0x1c,
+0x62, 0x1a, 0x54, 0x15, 0xf6, 0x0c, 0xc8, 0x01, 0x9a, 0xf4, 0x48, 0xe7, 0xd3, 0xdb, 0xcd, 0xd4,
+0xd9, 0xd3, 0x6b, 0xd9, 0xd0, 0xe4, 0x18, 0xf4, 0xc6, 0x04, 0xb6, 0x14, 0x2b, 0x22, 0xe5, 0x2b,
+0x45, 0x31, 0x99, 0x31, 0x43, 0x2d, 0x19, 0x24, 0x72, 0x16, 0xa6, 0x04, 0x32, 0xf0, 0x57, 0xdb,
+0x81, 0xc9, 0x55, 0xbe, 0x83, 0xbc, 0x11, 0xc5, 0x99, 0xd6, 0xf2, 0xed, 0x14, 0x07, 0x69, 0x1e,
+0x05, 0x31, 0xe9, 0x3d, 0xf7, 0x43, 0x97, 0x43, 0xb1, 0x3c, 0x65, 0x2f, 0x0e, 0x1c, 0x6e, 0x03,
+0x7e, 0xe7, 0x09, 0xcc, 0xaf, 0xb5, 0x38, 0xa9, 0xae, 0xa9, 0x41, 0xb7, 0xd9, 0xcf, 0x96, 0xee,
+0x46, 0x0e, 0x13, 0x2a, 0x8f, 0x3f, 0x3b, 0x4d, 0x29, 0x53, 0xcf, 0x50, 0x9d, 0x46, 0x7d, 0x34,
+0x16, 0x1b, 0xee, 0xfb, 0xf7, 0xd9, 0x83, 0xba, 0xd8, 0xa2, 0x3e, 0x98, 0xae, 0x9c, 0xf9, 0xaf,
+0x51, 0xce, 0x24, 0xf2, 0x84, 0x15, 0x05, 0x34, 0x59, 0x4b, 0x22, 0x5a, 0xb8, 0x5f, 0x78, 0x5b,
+0x55, 0x4d, 0xb3, 0x35, 0xe8, 0x15, 0xc0, 0xf0, 0xe5, 0xca, 0x44, 0xaa, 0x8a, 0x94, 0xda, 0x8d,
+0x4c, 0x97, 0x3b, 0xaf, 0xab, 0xd1, 0x36, 0xf8, 0x9f, 0x1d, 0x61, 0x3d, 0x2c, 0x55, 0xa4, 0x63,
+0x18, 0x67, 0x3a, 0x5f, 0x0b, 0x4c, 0xfd, 0x2e, 0xa4, 0x0a, 0x0b, 0xe3, 0x6b, 0xbd, 0xa8, 0x9f,
+0x52, 0x8e, 0xe8, 0x8b, 0xec, 0x98, 0x29, 0xb3, 0xc1, 0xd6, 0x0e, 0xfe, 0xd9, 0x23, 0xfd, 0x43,
+0xbe, 0x5b, 0x90, 0x68, 0x08, 0x69, 0xd4, 0x5c, 0xed, 0x44, 0x41, 0x24, 0x4e, 0xfe, 0xc5, 0xd7,
+0xb9, 0xb5, 0x90, 0x9c, 0xaa, 0x8f, 0xb4, 0x90, 0x5e, 0x9f, 0x51, 0xba, 0xcf, 0xdd, 0xec, 0x04,
+0x7d, 0x2a, 0xd7, 0x49, 0x96, 0x5f, 0xe6, 0x68, 0xa2, 0x64, 0x65, 0x53, 0xfd, 0x37, 0x4a, 0x16,
+0x72, 0xf2, 0x9b, 0xd0, 0x69, 0xb4, 0xda, 0xa0, 0xf4, 0x97, 0xcc, 0x9a, 0xc8, 0xa9, 0x17, 0xc4,
+0x80, 0xe6, 0x30, 0x0c, 0x9d, 0x2f, 0xf3, 0x4b, 0x66, 0x5d, 0xb2, 0x61, 0xc2, 0x58, 0xd1, 0x44,
+0x99, 0x29, 0xee, 0x0a, 0x6a, 0xec, 0xe1, 0xd0, 0x8b, 0xba, 0x3e, 0xab, 0x9e, 0xa4, 0xe2, 0xa7,
+0x57, 0xb6, 0x15, 0xcf, 0x44, 0xef, 0xf6, 0x11, 0x53, 0x31, 0xa5, 0x48, 0xa7, 0x54, 0x1d, 0x54,
+0x9d, 0x48, 0x15, 0x35, 0x11, 0x1d, 0x1a, 0x04, 0x1a, 0xec, 0x01, 0xd7, 0xdf, 0xc5, 0x15, 0xba,
+0xef, 0xb4, 0x75, 0xb8, 0x69, 0xc5, 0x87, 0xdb, 0x84, 0xf7, 0x72, 0x14, 0x51, 0x2d, 0xdf, 0x3d,
+0x57, 0x44, 0xc1, 0x40, 0x87, 0x35, 0x3b, 0x25, 0x08, 0x13, 0xbe, 0x00, 0xbc, 0xef, 0xfd, 0xe0,
+0xd5, 0xd4, 0x61, 0xcc, 0xeb, 0xc8, 0xdf, 0xcb, 0x5d, 0xd6, 0x68, 0xe7, 0x54, 0xfc, 0x32, 0x11,
+0x07, 0x22, 0x39, 0x2c, 0x01, 0x2f, 0x27, 0x2b, 0xc3, 0x22, 0xea, 0x17, 0x40, 0x0c, 0x34, 0x01,
+0x08, 0xf7, 0x78, 0xee, 0x44, 0xe7, 0xef, 0xe1, 0x4f, 0xdf, 0x3b, 0xe0, 0xb6, 0xe5, 0x00, 0xef,
+0xbe, 0xfa, 0x74, 0x06, 0xec, 0x0f, 0x9c, 0x15, 0x2e, 0x17, 0x7a, 0x15, 0x90, 0x11, 0xf6, 0x0c,
+0x6e, 0x08, 0xb8, 0x04, 0xf2, 0x01, 0xae, 0xff, 0x28, 0xfd, 0x12, 0xfa, 0x46, 0xf6, 0x96, 0xf2,
+0x30, 0xf0, 0x88, 0xef, 0x86, 0xf1, 0xfe, 0xf4, 0x18, 0xf9, 0xc8, 0xfc, 0x6a, 0xff, 0x52, 0x01,
+0x1e, 0x03, 0x48, 0x05, 0x74, 0x08, 0x9e, 0x0c, 0x02, 0x11, 0x82, 0x14, 0x52, 0x15, 0x42, 0x12,
+0xf6, 0x0a, 0x7e, 0x00, 0xf6, 0xf4, 0x02, 0xeb, 0x60, 0xe4, 0xb3, 0xe1, 0x6d, 0xe2, 0x8e, 0xe5,
+0x30, 0xea, 0x62, 0xf0, 0xe8, 0xf7, 0x62, 0x01, 0x6e, 0x0c, 0x60, 0x18, 0x7f, 0x23, 0x3f, 0x2b,
+0x19, 0x2d, 0x59, 0x27, 0x3c, 0x1a, 0xbc, 0x07, 0xb6, 0xf3, 0xd7, 0xe1, 0xeb, 0xd4, 0x0d, 0xce,
+0xeb, 0xcc, 0x65, 0xd0, 0xd1, 0xd7, 0xd1, 0xe2, 0x4c, 0xf1, 0xbe, 0x02, 0xfa, 0x15, 0xb5, 0x28,
+0x8b, 0x38, 0x83, 0x41, 0x5b, 0x41, 0xe1, 0x36, 0x33, 0x23, 0xe0, 0x09, 0x08, 0xef, 0x2d, 0xd7,
+0x93, 0xc5, 0xc7, 0xbb, 0x7d, 0xb9, 0x67, 0xbe, 0x6b, 0xc9, 0x55, 0xda, 0x5a, 0xf0, 0xb4, 0x09,
+0xf1, 0x23, 0xc1, 0x3b, 0x07, 0x4d, 0xab, 0x54, 0x61, 0x50, 0x57, 0x40, 0xd3, 0x26, 0xa6, 0x07,
+0x74, 0xe7, 0x0b, 0xcb, 0xe1, 0xb5, 0xf8, 0xa9, 0x1e, 0xa8, 0x57, 0xaf, 0xcf, 0xbf, 0xfb, 0xd7,
+0xd4, 0xf5, 0x1c, 0x16, 0xd3, 0x34, 0xe5, 0x4d, 0xce, 0x5d, 0xf6, 0x61, 0x5c, 0x59, 0x11, 0x45,
+0x6f, 0x27, 0x62, 0x04, 0x45, 0xe0, 0xf7, 0xbf, 0x0a, 0xa8, 0x38, 0x9b, 0x9c, 0x9a, 0x52, 0xa6,
+0xfb, 0xbc, 0x57, 0xdc, 0x60, 0x00, 0x65, 0x24, 0xe9, 0x43, 0x64, 0x5b, 0x00, 0x68, 0x3e, 0x68,
+0x1a, 0x5c, 0x97, 0x44, 0x23, 0x24, 0x20, 0xfe, 0x2d, 0xd7, 0xab, 0xb4, 0xcc, 0x9b, 0x4c, 0x90,
+0x6e, 0x93, 0xa6, 0xa4, 0x8b, 0xc1, 0xf8, 0xe5, 0xac, 0x0c, 0xa9, 0x30, 0x03, 0x4e, 0x0a, 0x62,
+0x3a, 0x6b, 0x84, 0x68, 0xf6, 0x59, 0x8f, 0x40, 0x45, 0x1e, 0x54, 0xf6, 0xcb, 0xcd, 0xec, 0xaa,
+0xc0, 0x93, 0xd0, 0x8b, 0x14, 0x94, 0xb2, 0xaa, 0xbf, 0xcb, 0xe8, 0xf1, 0x8e, 0x17, 0x5f, 0x38,
+0x9b, 0x51, 0xf4, 0x61, 0x04, 0x68, 0x54, 0x63, 0x7d, 0x53, 0x3f, 0x39, 0x56, 0x16, 0x26, 0xee,
+0x59, 0xc6, 0xba, 0xa5, 0x58, 0x92, 0x14, 0x8f, 0xdc, 0x9b, 0x87, 0xb5, 0x47, 0xd7, 0x98, 0xfb,
+0x8d, 0x1d, 0x13, 0x3a, 0x73, 0x4f, 0x8e, 0x5c, 0x74, 0x60, 0x32, 0x5a, 0x7d, 0x49, 0xcf, 0x2e,
+0x40, 0x0c, 0xc2, 0xe5, 0x7f, 0xc1, 0x12, 0xa6, 0x5c, 0x98, 0x24, 0x9a, 0x98, 0xa9, 0x63, 0xc3,
+0x8b, 0xe2, 0x54, 0x02, 0x4d, 0x1f, 0x45, 0x37, 0x01, 0x49, 0x69, 0x53, 0x40, 0x55, 0x8f, 0x4d,
+0x7d, 0x3c, 0xa1, 0x22, 0x88, 0x02, 0xbb, 0xe0, 0x95, 0xc2, 0xb1, 0xad, 0x4a, 0xa5, 0xe4, 0xa9,
+0xaf, 0xb9, 0xfd, 0xd0, 0xe2, 0xeb, 0xa8, 0x06, 0x61, 0x1e, 0x6d, 0x31, 0xf5, 0x3e, 0x81, 0x45,
+0x71, 0x44, 0x85, 0x3b, 0x0f, 0x2b, 0xd0, 0x14, 0x06, 0xfb, 0x59, 0xe1, 0xe7, 0xcb, 0xfb, 0xbd,
+0x75, 0xb9, 0xa3, 0xbe, 0xab, 0xcb, 0x0b, 0xde, 0xa4, 0xf2, 0xb6, 0x06, 0x42, 0x18, 0xe9, 0x25,
+0x95, 0x2e, 0xe5, 0x31, 0x7f, 0x2f, 0xe7, 0x27, 0x1a, 0x1c, 0xee, 0x0c, 0xfe, 0xfb, 0x3e, 0xeb,
+0x2d, 0xdd, 0x89, 0xd3, 0xeb, 0xcf, 0xc1, 0xd2, 0x97, 0xdb, 0x42, 0xe8, 0x9e, 0xf6, 0x4c, 0x04,
+0x88, 0x0f, 0x56, 0x17, 0x36, 0x1b, 0x88, 0x1b, 0x5e, 0x19, 0xa4, 0x15, 0xc4, 0x10, 0xda, 0x0a,
+0x8c, 0x03, 0x22, 0xfb, 0x80, 0xf2, 0x6c, 0xeb, 0x6a, 0xe7, 0x82, 0xe7, 0x46, 0xeb, 0x7c, 0xf1,
+0x2a, 0xf8, 0xdc, 0xfd, 0x78, 0x01, 0xd6, 0x02, 0xce, 0x02, 0xd4, 0x02, 0x32, 0x04, 0x60, 0x07,
+0x8a, 0x0b, 0x18, 0x0f, 0x3e, 0x10, 0x32, 0x0e, 0x5c, 0x09, 0x1a, 0x03, 0x72, 0xfd, 0x70, 0xf9,
+0x46, 0xf7, 0x04, 0xf6, 0xb6, 0xf4, 0x6a, 0xf2, 0x76, 0xef, 0x84, 0xec, 0x5a, 0xeb, 0xbc, 0xed,
+0x44, 0xf4, 0x98, 0xfe, 0xd4, 0x0a, 0x2c, 0x16, 0x57, 0x1e, 0xa9, 0x21, 0x09, 0x20, 0x9c, 0x1a,
+0xec, 0x12, 0x2e, 0x0a, 0xe0, 0x00, 0xd2, 0xf6, 0x32, 0xec, 0x03, 0xe2, 0x45, 0xd9, 0x63, 0xd4,
+0xb9, 0xd4, 0x83, 0xdb, 0xc0, 0xe8, 0xac, 0xfa, 0x88, 0x0e, 0x0b, 0x21, 0x07, 0x2f, 0x67, 0x36,
+0x9d, 0x36, 0x15, 0x30, 0x7f, 0x24, 0x3e, 0x15, 0x64, 0x03, 0x5e, 0xf0, 0x9d, 0xdd, 0x95, 0xcd,
+0xbf, 0xc2, 0xab, 0xbe, 0xcf, 0xc2, 0x21, 0xcf, 0x9d, 0xe2, 0x1a, 0xfb, 0x6e, 0x15, 0xb9, 0x2d,
+0xa9, 0x40, 0x21, 0x4b, 0xc1, 0x4b, 0xc9, 0x42, 0x6d, 0x31, 0x1e, 0x1a, 0x7e, 0xff, 0x68, 0xe4,
+0x4b, 0xcc, 0xfb, 0xb9, 0xb5, 0xaf, 0xbb, 0xae, 0xf1, 0xb6, 0x0b, 0xc8, 0x8f, 0xe0, 0x36, 0xfe,
+0x8b, 0x1d, 0xaf, 0x3a, 0x09, 0x51, 0x3c, 0x5d, 0xac, 0x5c, 0x59, 0x4f, 0x73, 0x37, 0x86, 0x18,
+0xe6, 0xf6, 0xfb, 0xd6, 0x9f, 0xbc, 0xb0, 0xaa, 0x94, 0xa2, 0x7c, 0xa4, 0x3d, 0xb0, 0x19, 0xc5,
+0xe1, 0xe1, 0xe0, 0x03, 0xa1, 0x27, 0x47, 0x48, 0xd2, 0x60, 0x4c, 0x6c, 0x54, 0x68, 0x3c, 0x55,
+0x95, 0x36, 0x8e, 0x11, 0xac, 0xeb, 0xfb, 0xc9, 0xf7, 0xaf, 0xee, 0x9f, 0x5a, 0x9a, 0x2e, 0x9f,
+0x15, 0xae, 0x87, 0xc6, 0x0c, 0xe7, 0xda, 0x0c, 0x85, 0x33, 0xa8, 0x55, 0x4e, 0x6d, 0x94, 0x75,
+0x74, 0x6c, 0xbf, 0x53, 0x67, 0x30, 0xaa, 0x08, 0x01, 0xe2, 0xe7, 0xc0, 0xae, 0xa8, 0xb4, 0x9a,
+0x7e, 0x97, 0xee, 0x9e, 0xe1, 0xb0, 0xe7, 0xcc, 0xd4, 0xf0, 0xd8, 0x18, 0xf7, 0x3f, 0x32, 0x60,
+0xbc, 0x73, 0xac, 0x76, 0x4a, 0x68, 0x09, 0x4c, 0x5d, 0x27, 0xe8, 0xff, 0xdb, 0xda, 0x0f, 0xbc,
+0x18, 0xa6, 0x80, 0x9a, 0xb0, 0x99, 0xec, 0xa3, 0x19, 0xb9, 0xbf, 0xd7, 0xf6, 0xfc, 0x45, 0x24,
+0x25, 0x48, 0x62, 0x63, 0x62, 0x71, 0x8a, 0x6f, 0xa8, 0x5e, 0xfb, 0x41, 0xbb, 0x1e, 0xe0, 0xf9,
+0x97, 0xd7, 0x7b, 0xbb, 0x50, 0xa8, 0x70, 0x9f, 0xa6, 0xa1, 0xe3, 0xae, 0x27, 0xc6, 0x66, 0xe5,
+0xa6, 0x08, 0x49, 0x2b, 0x3b, 0x49, 0xfe, 0x5d, 0xde, 0x66, 0x62, 0x62, 0x6f, 0x51, 0x13, 0x37,
+0x20, 0x17, 0xc0, 0xf5, 0xf1, 0xd6, 0x6d, 0xbe, 0x6d, 0xae, 0x20, 0xa9, 0x79, 0xae, 0xed, 0xbd,
+0x8b, 0xd5, 0xec, 0xf1, 0xce, 0x0f, 0x91, 0x2b, 0x3d, 0x42, 0x5d, 0x51, 0x1a, 0x57, 0x5f, 0x52,
+0x97, 0x43, 0xa5, 0x2c, 0xa0, 0x10, 0x9c, 0xf3, 0x57, 0xd9, 0x51, 0xc5, 0x31, 0xba, 0xc7, 0xb8,
+0xcf, 0xc0, 0x47, 0xd0, 0xba, 0xe4, 0x48, 0xfb, 0x42, 0x11, 0xe3, 0x24, 0xcb, 0x34, 0xa5, 0x3f,
+0xb9, 0x43, 0xff, 0x3f, 0x13, 0x34, 0x55, 0x21, 0x56, 0x0a, 0xe6, 0xf2, 0xdd, 0xde, 0x25, 0xd1,
+0x3b, 0xcb, 0x2b, 0xcd, 0x9d, 0xd5, 0x39, 0xe2, 0xa2, 0xf0, 0xe8, 0xfe, 0x62, 0x0c, 0x7e, 0x18,
+0xed, 0x22, 0xa3, 0x2a, 0x5b, 0x2e, 0x9f, 0x2c, 0x83, 0x24, 0x24, 0x17, 0xce, 0x06, 0xfe, 0xf6,
+0x74, 0xea, 0x29, 0xe3, 0x87, 0xe1, 0x7e, 0xe4, 0x40, 0xea, 0xba, 0xf0, 0xde, 0xf6, 0x30, 0xfc,
+0x46, 0x01, 0xd8, 0x06, 0xf2, 0x0c, 0x2c, 0x13, 0xb2, 0x17, 0x32, 0x19, 0xb2, 0x16, 0xb0, 0x10,
+0xf0, 0x08, 0x8e, 0x01, 0x74, 0xfc, 0x14, 0xfa, 0x0e, 0xfa, 0xd2, 0xfa, 0x2e, 0xfb, 0x1e, 0xfa,
+0xb6, 0xf7, 0xc8, 0xf4, 0x9e, 0xf2, 0xc2, 0xf2, 0xa8, 0xf5, 0xe2, 0xfa, 0x68, 0x01, 0xb2, 0x07,
+0xaa, 0x0c, 0xd2, 0x0f, 0x76, 0x11, 0x40, 0x12, 0x96, 0x12, 0x1e, 0x12, 0xac, 0x10, 0x56, 0x0d,
+0x96, 0x07, 0x86, 0xff, 0xb4, 0xf5, 0xa8, 0xeb, 0x3b, 0xe3, 0x4f, 0xde, 0x31, 0xde, 0x93, 0xe3,
+0x5c, 0xed, 0x2c, 0xfa, 0xe8, 0x07, 0x8e, 0x14, 0xe5, 0x1e, 0xc7, 0x25, 0x23, 0x29, 0xbf, 0x28,
+0x79, 0x24, 0x49, 0x1c, 0x60, 0x10, 0x6c, 0x01, 0x6c, 0xf0, 0x61, 0xdf, 0xcf, 0xd0, 0xcd, 0xc7,
+0x7d, 0xc6, 0xf7, 0xcd, 0x99, 0xdd, 0xc4, 0xf2, 0xe6, 0x09, 0x57, 0x1f, 0x25, 0x30, 0xf3, 0x3a,
+0x01, 0x3f, 0xa9, 0x3c, 0x5f, 0x34, 0xeb, 0x26, 0xcc, 0x14, 0x02, 0xff, 0x34, 0xe7, 0xf9, 0xcf,
+0xd3, 0xbc, 0xa5, 0xb1, 0xa1, 0xb1, 0xd5, 0xbd, 0xcb, 0xd4, 0x5e, 0xf2, 0x6e, 0x11, 0xd9, 0x2c,
+0x4b, 0x41, 0xf5, 0x4c, 0x11, 0x50, 0x05, 0x4b, 0x05, 0x3f, 0xab, 0x2c, 0x00, 0x15, 0x28, 0xf9,
+0x6b, 0xdb, 0x6f, 0xbf, 0xf0, 0xa9, 0xd6, 0x9f, 0xa6, 0xa3, 0xe9, 0xb5, 0xad, 0xd3, 0x98, 0xf7,
+0x48, 0x1b, 0x73, 0x39, 0xf3, 0x4e, 0x94, 0x5a, 0x84, 0x5c, 0x32, 0x55, 0x95, 0x45, 0xab, 0x2e,
+0x5c, 0x11, 0xa6, 0xef, 0xef, 0xcc, 0x61, 0xae, 0x80, 0x99, 0x84, 0x92, 0x7a, 0x9b, 0x6b, 0xb3,
+0x4b, 0xd6, 0xf8, 0xfd, 0x09, 0x24, 0x71, 0x43, 0x72, 0x59, 0xe0, 0x64, 0x5c, 0x65, 0x24, 0x5b,
+0x05, 0x47, 0x67, 0x2a, 0x72, 0x07, 0x7d, 0xe1, 0x3d, 0xbd, 0x62, 0xa0, 0xca, 0x8f, 0x4c, 0x8e,
+0x50, 0x9c, 0xd3, 0xb7, 0xd9, 0xdc, 0x4e, 0x05, 0x5d, 0x2b, 0x69, 0x4a, 0xfa, 0x5f, 0x56, 0x6a,
+0x86, 0x68, 0x8e, 0x5a, 0xe1, 0x41, 0x07, 0x21, 0x20, 0xfb, 0x9b, 0xd4, 0x9d, 0xb2, 0x4a, 0x9a,
+0xd6, 0x8e, 0x9a, 0x91, 0x46, 0xa2, 0xe5, 0xbe, 0xbd, 0xe3, 0x50, 0x0b, 0x71, 0x30, 0xc7, 0x4e,
+0x2a, 0x63, 0x4c, 0x6b, 0xe8, 0x65, 0xe5, 0x53, 0x69, 0x37, 0x3c, 0x14, 0x8e, 0xee, 0x25, 0xcb,
+0x55, 0xae, 0x8e, 0x9b, 0x7e, 0x94, 0xd4, 0x99, 0x2a, 0xab, 0x1d, 0xc7, 0x6c, 0xea, 0x88, 0x10,
+0x27, 0x34, 0x9b, 0x50, 0x30, 0x62, 0x80, 0x66, 0x0c, 0x5d, 0x8b, 0x47, 0x8b, 0x29, 0xa4, 0x07,
+0x12, 0xe6, 0x8f, 0xc8, 0x2f, 0xb2, 0x70, 0xa4, 0x6c, 0xa0, 0x82, 0xa6, 0x3d, 0xb7, 0x4b, 0xd1,
+0x4e, 0xf2, 0x68, 0x15, 0xa3, 0x35, 0x0d, 0x4e, 0xdc, 0x5a, 0x74, 0x5a, 0x9f, 0x4d, 0x61, 0x37,
+0x7a, 0x1b, 0x50, 0xfe, 0x1f, 0xe3, 0xbb, 0xcc, 0x4b, 0xbc, 0x73, 0xb2, 0x23, 0xb0, 0x25, 0xb6,
+0x2d, 0xc5, 0x5d, 0xdc, 0x50, 0xf9, 0xa8, 0x17, 0x71, 0x32, 0x0b, 0x45, 0x79, 0x4c, 0x8d, 0x48,
+0x05, 0x3b, 0xfd, 0x26, 0x64, 0x10, 0x2e, 0xfa, 0xa4, 0xe6, 0xe3, 0xd6, 0x71, 0xcb, 0xb3, 0xc4,
+0x65, 0xc3, 0x81, 0xc8, 0xa3, 0xd4, 0x62, 0xe7, 0x38, 0xfe, 0x8a, 0x15, 0xdd, 0x28, 0xfd, 0x34,
+0x1f, 0x38, 0x05, 0x33, 0xbb, 0x27, 0x30, 0x19, 0xd4, 0x09, 0x7a, 0xfb, 0x44, 0xef, 0x6e, 0xe5,
+0x43, 0xde, 0xa7, 0xd9, 0x9f, 0xd8, 0xa7, 0xdb, 0x4b, 0xe3, 0x04, 0xef, 0x8a, 0xfd, 0x30, 0x0c,
+0x18, 0x18, 0x4b, 0x1f, 0xe3, 0x20, 0xcf, 0x1d, 0x6e, 0x17, 0x7e, 0x0f, 0xa0, 0x07, 0xce, 0x00,
+0x28, 0xfb, 0x96, 0xf6, 0x10, 0xf3, 0x44, 0xf0, 0x5c, 0xee, 0x94, 0xed, 0x54, 0xee, 0x6c, 0xf1,
+0x5c, 0xf6, 0x4a, 0xfc, 0x20, 0x02, 0xc6, 0x06, 0x92, 0x09, 0x90, 0x0a, 0x3a, 0x0a, 0x6c, 0x09,
+0x24, 0x09, 0x7c, 0x09, 0x5a, 0x0a, 0x24, 0x0b, 0xda, 0x0a, 0x58, 0x08, 0x2a, 0x03, 0xb6, 0xfb,
+0x84, 0xf3, 0xaa, 0xec, 0x76, 0xe8, 0xc8, 0xe7, 0x10, 0xea, 0x5e, 0xee, 0x9e, 0xf3, 0x46, 0xf9,
+0x22, 0xff, 0xac, 0x05, 0x2e, 0x0d, 0x06, 0x15, 0x7f, 0x1c, 0xad, 0x21, 0xc1, 0x22, 0x33, 0x1e,
+0xb4, 0x13, 0x5a, 0x04, 0x0a, 0xf3, 0x57, 0xe3, 0xf3, 0xd7, 0x8f, 0xd2, 0x19, 0xd3, 0x77, 0xd8,
+0x2d, 0xe1, 0x10, 0xec, 0xae, 0xf8, 0xa8, 0x06, 0xc2, 0x15, 0x8b, 0x24, 0x07, 0x31, 0x8d, 0x38,
+0x91, 0x38, 0x59, 0x2f, 0xb5, 0x1d, 0x36, 0x06, 0x02, 0xed, 0x7f, 0xd6, 0x55, 0xc6, 0x61, 0xbe,
+0xbb, 0xbe, 0xe1, 0xc5, 0x2b, 0xd2, 0xc5, 0xe2, 0x54, 0xf6, 0x1a, 0x0c, 0x4f, 0x22, 0xd3, 0x36,
+0x1b, 0x46, 0x21, 0x4d, 0x39, 0x49, 0x49, 0x3a, 0x23, 0x22, 0x0c, 0x04, 0xe0, 0xe4, 0x99, 0xc9,
+0xfd, 0xb5, 0x5d, 0xac, 0xe1, 0xac, 0x4f, 0xb6, 0x5d, 0xc7, 0x77, 0xde, 0xb8, 0xf9, 0xe0, 0x16,
+0xf9, 0x32, 0x35, 0x4a, 0x28, 0x59, 0xb8, 0x5c, 0x99, 0x53, 0xeb, 0x3e, 0x53, 0x21, 0xca, 0xfe,
+0xef, 0xdb, 0x97, 0xbd, 0xea, 0xa7, 0x9c, 0x9d, 0x3a, 0x9f, 0xef, 0xab, 0xa3, 0xc2, 0xb3, 0xe0,
+0xce, 0x02, 0x31, 0x25, 0x9b, 0x43, 0x44, 0x5a, 0x06, 0x66, 0x02, 0x65, 0x42, 0x57, 0xad, 0x3e,
+0xef, 0x1d, 0x8e, 0xf8, 0x03, 0xd3, 0x87, 0xb2, 0xd6, 0x9b, 0xec, 0x91, 0x16, 0x96, 0xc0, 0xa7,
+0x9b, 0xc4, 0x04, 0xe9, 0xe4, 0x0f, 0xfd, 0x33, 0x45, 0x51, 0x76, 0x64, 0xba, 0x6b, 0x9c, 0x66,
+0xba, 0x55, 0xdb, 0x3a, 0x7a, 0x18, 0xb4, 0xf1, 0xe1, 0xca, 0xd2, 0xa9, 0x98, 0x93, 0x04, 0x8c,
+0x7c, 0x94, 0x5f, 0xab, 0x69, 0xcd, 0xea, 0xf4, 0x34, 0x1c, 0x23, 0x3e, 0x98, 0x57, 0x78, 0x66,
+0x06, 0x6a, 0x70, 0x62, 0x11, 0x50, 0xb5, 0x34, 0xc6, 0x11, 0x60, 0xea, 0xb1, 0xc3, 0xb8, 0xa3,
+0x04, 0x90, 0x72, 0x8c, 0x9c, 0x99, 0xc5, 0xb4, 0x3d, 0xd9, 0x68, 0x00, 0xbd, 0x24, 0xab, 0x42,
+0x66, 0x57, 0x54, 0x62, 0x20, 0x63, 0xd4, 0x59, 0x15, 0x47, 0xb7, 0x2b, 0xde, 0x08, 0xa3, 0xe2,
+0x4f, 0xbe, 0x06, 0xa2, 0x4e, 0x93, 0x0c, 0x95, 0xf8, 0xa5, 0xbf, 0xc2, 0xb8, 0xe5, 0xe6, 0x08,
+0x57, 0x28, 0xc5, 0x40, 0x3b, 0x51, 0xfc, 0x58, 0x08, 0x58, 0x17, 0x4e, 0x9f, 0x3b, 0xff, 0x20,
+0x66, 0x00, 0xb3, 0xdd, 0x25, 0xbe, 0x8c, 0xa7, 0x12, 0x9e, 0x2e, 0xa3, 0x2f, 0xb5, 0x27, 0xd0,
+0xf0, 0xee, 0xdc, 0x0c, 0x85, 0x26, 0x53, 0x3a, 0xff, 0x46, 0x05, 0x4c, 0x33, 0x49, 0xa1, 0x3e,
+0x53, 0x2c, 0x16, 0x14, 0x34, 0xf8, 0xf5, 0xdb, 0x3b, 0xc4, 0xe5, 0xb4, 0x5d, 0xb0, 0x67, 0xb7,
+0xcb, 0xc7, 0x0d, 0xde, 0xa2, 0xf6, 0xbe, 0x0d, 0x05, 0x21, 0x69, 0x2f, 0xcd, 0x37, 0x05, 0x3a,
+0x2d, 0x36, 0x33, 0x2c, 0x23, 0x1d, 0xdc, 0x0a, 0xb0, 0xf6, 0x41, 0xe3, 0x55, 0xd3, 0x11, 0xc9,
+0x57, 0xc6, 0xa7, 0xcb, 0x7f, 0xd7, 0xce, 0xe7, 0x8c, 0xf9, 0x2a, 0x0a, 0x8e, 0x17, 0x3f, 0x20,
+0x65, 0x24, 0x51, 0x24, 0x5f, 0x20, 0xa0, 0x19, 0x06, 0x11, 0x48, 0x07, 0xf0, 0xfc, 0x6e, 0xf2,
+0x9a, 0xe8, 0x41, 0xe1, 0xe3, 0xdd, 0x7b, 0xdf, 0x6c, 0xe5, 0x64, 0xee, 0x8e, 0xf8, 0xfa, 0x01,
+0x38, 0x09, 0x76, 0x0d, 0x7a, 0x0e, 0x6e, 0x0d, 0x96, 0x0b, 0x02, 0x0a, 0x4c, 0x09, 0xf2, 0x08,
+0xd6, 0x07, 0xa0, 0x04, 0x9c, 0xff, 0xea, 0xf9, 0xd0, 0xf5, 0x8a, 0xf3, 0x98, 0xf4, 0x5a, 0xf6,
+0xdc, 0xf6, 0x64, 0xf6, 0xca, 0xf5, 0x5a, 0xf7, 0x5c, 0xfb, 0x6a, 0x02, 0x22, 0x0b, 0xbc, 0x13,
+0x5a, 0x19, 0x96, 0x1a, 0x18, 0x17, 0xfc, 0x0f, 0xc2, 0x07, 0xb6, 0xff, 0x90, 0xf8, 0x50, 0xf2,
+0x58, 0xec, 0x60, 0xe6, 0x53, 0xe1, 0x4f, 0xde, 0x49, 0xdf, 0x5e, 0xe5, 0x9c, 0xf0, 0xbc, 0xff,
+0x90, 0x10, 0xef, 0x1f, 0xdb, 0x2a, 0x93, 0x2f, 0x33, 0x2d, 0x25, 0x25, 0xfa, 0x18, 0x6c, 0x0a,
+0x00, 0xfb, 0x98, 0xeb, 0xff, 0xdc, 0xe1, 0xd0, 0x09, 0xc9, 0x1b, 0xc7, 0x7b, 0xcc, 0x13, 0xd9,
+0xea, 0xeb, 0xa8, 0x02, 0x34, 0x1a, 0x09, 0x2f, 0xff, 0x3d, 0xb5, 0x44, 0x4d, 0x42, 0x5d, 0x37,
+0x9f, 0x25, 0x74, 0x0f, 0x24, 0xf7, 0x45, 0xdf, 0x7b, 0xca, 0x4b, 0xbb, 0x03, 0xb4, 0xb1, 0xb5,
+0x5b, 0xc0, 0x19, 0xd3, 0xf2, 0xeb, 0x0e, 0x08, 0x49, 0x24, 0x13, 0x3d, 0xdd, 0x4e, 0xfa, 0x56,
+0x6f, 0x53, 0x8b, 0x44, 0x3f, 0x2c, 0xe2, 0x0d, 0x80, 0xed, 0x7b, 0xcf, 0x87, 0xb7, 0x7a, 0xa8,
+0x10, 0xa4, 0xe0, 0xa9, 0x5b, 0xb9, 0xfb, 0xd0, 0x5a, 0xee, 0xb4, 0x0e, 0xc5, 0x2e, 0x8f, 0x4a,
+0x4e, 0x5e, 0x56, 0x66, 0xf2, 0x5f, 0xad, 0x4b, 0x75, 0x2c, 0x1c, 0x07, 0x7b, 0xe1, 0xdb, 0xc0,
+0x26, 0xa9, 0xa4, 0x9c, 0x66, 0x9b, 0x9c, 0xa4, 0x6b, 0xb7, 0x23, 0xd2, 0xc4, 0xf2, 0x7a, 0x16,
+0x9d, 0x39, 0x98, 0x57, 0x8a, 0x6b, 0xe0, 0x70, 0xa2, 0x65, 0x3b, 0x4b, 0x19, 0x26, 0xd6, 0xfc,
+0x83, 0xd5, 0x89, 0xb5, 0xe4, 0x9f, 0x22, 0x96, 0xcc, 0x97, 0x1a, 0xa4, 0xdf, 0xb9, 0xb3, 0xd7,
+0x56, 0xfb, 0x6b, 0x21, 0xdd, 0x45, 0x02, 0x63, 0xda, 0x73, 0x2a, 0x74, 0x40, 0x63, 0x0d, 0x44,
+0x30, 0x1c, 0x34, 0xf2, 0x4f, 0xcc, 0x05, 0xaf, 0xac, 0x9c, 0x16, 0x96, 0x9e, 0x9a, 0x78, 0xa9,
+0xb3, 0xc1, 0x99, 0xe1, 0x70, 0x06, 0x6d, 0x2c, 0xcb, 0x4e, 0x0a, 0x68, 0x96, 0x73, 0xc8, 0x6e,
+0x14, 0x5a, 0x4f, 0x39, 0x58, 0x12, 0xce, 0xea, 0x59, 0xc8, 0x57, 0xae, 0xe0, 0x9e, 0xc6, 0x9a,
+0xa0, 0xa1, 0x8f, 0xb2, 0xa7, 0xcc, 0x84, 0xed, 0x96, 0x11, 0xe5, 0x34, 0x31, 0x52, 0x7c, 0x65,
+0x76, 0x6b, 0x00, 0x63, 0x8f, 0x4d, 0xc9, 0x2e, 0x44, 0x0b, 0xf4, 0xe7, 0x6f, 0xc9, 0xe7, 0xb2,
+0x62, 0xa6, 0x98, 0xa4, 0x2d, 0xad, 0x9d, 0xbf, 0xd1, 0xd9, 0xf0, 0xf8, 0x10, 0x19, 0x5f, 0x36,
+0x05, 0x4d, 0x44, 0x5a, 0x9a, 0x5c, 0x81, 0x53, 0x8b, 0x40, 0x8d, 0x25, 0xa6, 0x06, 0xda, 0xe7,
+0xa1, 0xcd, 0xd7, 0xba, 0xd1, 0xb1, 0xcd, 0xb2, 0xa9, 0xbd, 0x8f, 0xd0, 0x7c, 0xe8, 0xa8, 0x02,
+0x6a, 0x1b, 0x83, 0x30, 0x15, 0x40, 0xdb, 0x48, 0xa3, 0x49, 0x4f, 0x42, 0x95, 0x32, 0x8b, 0x1c,
+0x14, 0x03, 0xec, 0xe9, 0x3d, 0xd5, 0xa9, 0xc7, 0x63, 0xc2, 0xf9, 0xc5, 0xfd, 0xd0, 0x3d, 0xe1,
+0x14, 0xf4, 0x72, 0x06, 0xe2, 0x16, 0x5f, 0x24, 0x33, 0x2e, 0x15, 0x34, 0x49, 0x35, 0x97, 0x30,
+0xe9, 0x25, 0xb0, 0x15, 0x80, 0x02, 0xf6, 0xef, 0x2b, 0xe1, 0x97, 0xd8, 0x47, 0xd7, 0x09, 0xdc,
+0x3a, 0xe5, 0x10, 0xf0, 0x92, 0xfa, 0xd4, 0x03, 0x80, 0x0b, 0x0e, 0x12, 0xd0, 0x17, 0xb5, 0x1c,
+0x69, 0x1f, 0xdf, 0x1e, 0xb2, 0x19, 0xa2, 0x10, 0x46, 0x05, 0x72, 0xfa, 0xac, 0xf2, 0x34, 0xef,
+0xd4, 0xef, 0xcc, 0xf2, 0x56, 0xf6, 0xe6, 0xf8, 0x16, 0xfa, 0x5e, 0xfa, 0xd2, 0xfa, 0x68, 0xfc,
+0xce, 0xff, 0xba, 0x04, 0x50, 0x0a, 0xea, 0x0e, 0x42, 0x11, 0xba, 0x10, 0x8c, 0x0e, 0xb6, 0x0b,
+0x9a, 0x09, 0x3c, 0x08, 0x00, 0x07, 0x16, 0x05, 0x40, 0x01, 0x96, 0xfb, 0xae, 0xf4, 0x0a, 0xee,
+0xec, 0xe8, 0xda, 0xe6, 0xa2, 0xe8, 0xa6, 0xee, 0x14, 0xf8, 0xf0, 0x02, 0xb6, 0x0d, 0x9a, 0x16,
+0x11, 0x1d, 0xab, 0x20, 0x73, 0x21, 0x91, 0x1f, 0xae, 0x1a, 0xe8, 0x12, 0x32, 0x08, 0x6c, 0xfb,
+0xb2, 0xed, 0xad, 0xe0, 0x6d, 0xd6, 0x09, 0xd1, 0x1f, 0xd2, 0x39, 0xda, 0xea, 0xe8, 0xae, 0xfb,
+0xa2, 0x0f, 0x93, 0x21, 0xfd, 0x2e, 0xfd, 0x36, 0x97, 0x38, 0x45, 0x34, 0xbf, 0x2a, 0xd3, 0x1c,
+0x96, 0x0b, 0x0e, 0xf8, 0xc6, 0xe3, 0x15, 0xd1, 0xb1, 0xc2, 0x07, 0xbb, 0x21, 0xbd, 0x8f, 0xc9,
+0x3d, 0xdf, 0xf8, 0xfa, 0x86, 0x17, 0xa1, 0x30, 0x97, 0x42, 0x91, 0x4b, 0x93, 0x4b, 0xb9, 0x43,
+0x07, 0x35, 0x77, 0x21, 0x1a, 0x0a, 0x5c, 0xf0, 0xb1, 0xd6, 0x89, 0xbf, 0xc1, 0xae, 0x0c, 0xa8,
+0xab, 0xad, 0x77, 0xc0, 0x15, 0xde, 0x80, 0x01, 0x5b, 0x24, 0x07, 0x41, 0xc5, 0x53, 0x9a, 0x5b,
+0xfe, 0x58, 0x2f, 0x4d, 0x6b, 0x3a, 0xe3, 0x21, 0x58, 0x05, 0x4e, 0xe6, 0xe7, 0xc7, 0x23, 0xae,
+0x7e, 0x9d, 0xb6, 0x99, 0xac, 0xa4, 0x0b, 0xbe, 0xab, 0xe1, 0x92, 0x09, 0xed, 0x2e, 0x7f, 0x4c,
+0x42, 0x5f, 0x4e, 0x66, 0xf8, 0x61, 0xb1, 0x53, 0x23, 0x3d, 0xd1, 0x1f, 0x1e, 0xfe, 0xaf, 0xda,
+0x95, 0xb9, 0x04, 0xa0, 0x16, 0x92, 0x16, 0x93, 0xac, 0xa3, 0xb9, 0xc1, 0xea, 0xe8, 0xb0, 0x12,
+0x61, 0x38, 0x58, 0x55, 0xe6, 0x66, 0xfc, 0x6b, 0x38, 0x65, 0x6d, 0x53, 0xc7, 0x38, 0x96, 0x17,
+0x54, 0xf2, 0x4d, 0xcd, 0x47, 0xad, 0x38, 0x97, 0x84, 0x8e, 0xae, 0x94, 0x20, 0xa9, 0x81, 0xc9,
+0xd2, 0xf0, 0x62, 0x19, 0xb5, 0x3d, 0x58, 0x59, 0xac, 0x69, 0x10, 0x6d, 0x9e, 0x63, 0xa3, 0x4e,
+0x5f, 0x30, 0xfe, 0x0b, 0xc8, 0xe5, 0x7d, 0xc2, 0xea, 0xa6, 0x7e, 0x96, 0xf2, 0x92, 0xa8, 0x9c,
+0x67, 0xb2, 0xe3, 0xd1, 0x6e, 0xf7, 0x05, 0x1e, 0x9b, 0x40, 0x9c, 0x5a, 0xae, 0x68, 0x36, 0x69,
+0x4a, 0x5c, 0xc1, 0x43, 0x43, 0x23, 0xf8, 0xfe, 0x95, 0xdb, 0xbd, 0xbd, 0x6e, 0xa8, 0xb6, 0x9d,
+0xe4, 0x9d, 0xbe, 0xa8, 0xb7, 0xbd, 0x0f, 0xdb, 0x80, 0xfd, 0xe3, 0x20, 0x1f, 0x40, 0x8c, 0x56,
+0x16, 0x61, 0xf0, 0x5d, 0x21, 0x4e, 0x8b, 0x34, 0x02, 0x15, 0x96, 0xf4, 0x4f, 0xd7, 0x53, 0xc0,
+0x51, 0xb1, 0xe6, 0xaa, 0xf1, 0xac, 0xab, 0xb7, 0x99, 0xca, 0x6e, 0xe4, 0xec, 0x02, 0xa9, 0x21,
+0x39, 0x3c, 0xff, 0x4d, 0x1d, 0x54, 0xcf, 0x4d, 0xe1, 0x3c, 0xc5, 0x24, 0xe8, 0x09, 0x68, 0xf0,
+0xe1, 0xda, 0xfb, 0xca, 0x15, 0xc1, 0x1b, 0xbd, 0x4f, 0xbf, 0xdb, 0xc7, 0xeb, 0xd6, 0xe8, 0xeb,
+0x9e, 0x04, 0x65, 0x1d, 0x0b, 0x32, 0xab, 0x3e, 0x03, 0x41, 0xab, 0x39, 0x9f, 0x2a, 0xba, 0x17,
+0x56, 0x04, 0xea, 0xf2, 0x02, 0xe5, 0xed, 0xda, 0x75, 0xd4, 0x99, 0xd1, 0xdd, 0xd2, 0x61, 0xd8,
+0xe3, 0xe2, 0x84, 0xf1, 0xea, 0x02, 0x50, 0x14, 0x35, 0x22, 0x05, 0x2a, 0xb1, 0x2a, 0xf5, 0x24,
+0xe0, 0x1a, 0x0e, 0x0f, 0x96, 0x03, 0xee, 0xf9, 0x82, 0xf2, 0x00, 0xed, 0x58, 0xe9, 0x28, 0xe7,
+0xc2, 0xe6, 0x54, 0xe8, 0x76, 0xec, 0x22, 0xf3, 0xbc, 0xfb, 0xdc, 0x04, 0xa0, 0x0c, 0xa4, 0x11,
+0x42, 0x13, 0xe6, 0x11, 0x9c, 0x0e, 0xb6, 0x0a, 0x18, 0x07, 0x84, 0x04, 0xee, 0x02, 0xce, 0x01,
+0x74, 0x00, 0x34, 0xfe, 0xc0, 0xfa, 0x98, 0xf6, 0x40, 0xf2, 0x36, 0xef, 0x5a, 0xee, 0x0a, 0xf0,
+0xb2, 0xf3, 0x74, 0xf8, 0x52, 0xfd, 0xde, 0x01, 0xf4, 0x05, 0xb4, 0x09, 0xbe, 0x0d, 0xb4, 0x11,
+0x78, 0x15, 0xcc, 0x17, 0x7e, 0x17, 0x3e, 0x13, 0xb0, 0x0a, 0x7a, 0xfe, 0xd4, 0xf0, 0x64, 0xe4,
+0xcd, 0xdb, 0xad, 0xd8, 0x17, 0xdb, 0xeb, 0xe1, 0x56, 0xeb, 0x10, 0xf6, 0x1e, 0x01, 0x54, 0x0c,
+0x60, 0x17, 0xd7, 0x21, 0x63, 0x2a, 0x21, 0x2f, 0xd7, 0x2d, 0x3f, 0x25, 0x8a, 0x15, 0x76, 0x00,
+0xce, 0xe9, 0xa5, 0xd5, 0xc5, 0xc7, 0x69, 0xc2, 0x41, 0xc5, 0xff, 0xce, 0x39, 0xdd, 0x12, 0xee,
+0x1a, 0x00, 0xb8, 0x12, 0x9f, 0x24, 0x95, 0x34, 0xfd, 0x3f, 0x23, 0x44, 0x4b, 0x3f, 0x3f, 0x30,
+0xe6, 0x18, 0x38, 0xfc, 0x09, 0xdf, 0x15, 0xc6, 0x91, 0xb5, 0x45, 0xaf, 0x8b, 0xb3, 0x4b, 0xc0,
+0x41, 0xd3, 0x66, 0xea, 0xc8, 0x03, 0x6b, 0x1d, 0x71, 0x35, 0x9d, 0x48, 0x41, 0x54, 0x4e, 0x55,
+0x8b, 0x4a, 0xdb, 0x34, 0xd0, 0x16, 0x98, 0xf4, 0xff, 0xd2, 0x77, 0xb7, 0xa4, 0xa5, 0x12, 0xa0,
+0xfc, 0xa5, 0x5b, 0xb6, 0x9b, 0xce, 0x3e, 0xec, 0x6e, 0x0c, 0xed, 0x2b, 0x51, 0x47, 0xc0, 0x5a,
+0x46, 0x63, 0x0a, 0x5f, 0x93, 0x4e, 0xb5, 0x33, 0xb0, 0x11, 0x84, 0xec, 0xfd, 0xc8, 0x19, 0xac,
+0xd8, 0x99, 0xb6, 0x94, 0x10, 0x9d, 0x85, 0xb1, 0x95, 0xcf, 0x80, 0xf3, 0xf4, 0x18, 0x61, 0x3b,
+0x68, 0x56, 0xc6, 0x66, 0x7e, 0x6a, 0x5c, 0x61, 0xb5, 0x4c, 0x1d, 0x2f, 0x5a, 0x0b, 0x30, 0xe5,
+0xeb, 0xc0, 0xac, 0xa3, 0xf0, 0x91, 0x88, 0x8e, 0x10, 0x9a, 0x47, 0xb3, 0x97, 0xd6, 0xc2, 0xfe,
+0x29, 0x26, 0xa9, 0x47, 0x8e, 0x5f, 0x66, 0x6b, 0xa0, 0x6a, 0xf2, 0x5d, 0x53, 0x47, 0xe5, 0x28,
+0xe6, 0x04, 0x97, 0xde, 0x8b, 0xba, 0x0a, 0x9e, 0xec, 0x8d, 0x84, 0x8d, 0x66, 0x9d, 0x35, 0xbb,
+0xf9, 0xe1, 0x42, 0x0b, 0xf9, 0x30, 0x8f, 0x4e, 0x5c, 0x61, 0x66, 0x68, 0x2e, 0x64, 0x0c, 0x56,
+0x4b, 0x3f, 0x69, 0x21, 0x3e, 0xfe, 0xb7, 0xd8, 0x15, 0xb6, 0x1a, 0x9c, 0xba, 0x8f, 0xd8, 0x93,
+0xf8, 0xa7, 0x37, 0xc8, 0xcc, 0xee, 0x06, 0x15, 0xb7, 0x35, 0xc3, 0x4d, 0x82, 0x5b, 0xfe, 0x5e,
+0x08, 0x59, 0x63, 0x4a, 0x43, 0x34, 0x88, 0x17, 0x0e, 0xf6, 0x9f, 0xd3, 0x4d, 0xb5, 0x96, 0xa0,
+0xc4, 0x99, 0x14, 0xa2, 0xe3, 0xb7, 0x01, 0xd7, 0x7a, 0xf9, 0xec, 0x19, 0x67, 0x34, 0xbb, 0x46,
+0x73, 0x50, 0xa1, 0x51, 0xd1, 0x4a, 0xf3, 0x3c, 0x51, 0x28, 0x44, 0x0e, 0x0a, 0xf1, 0xff, 0xd3,
+0xc9, 0xbb, 0xcf, 0xac, 0xda, 0xa9, 0x7d, 0xb3, 0xc9, 0xc7, 0x7f, 0xe2, 0xf6, 0xfe, 0xcc, 0x18,
+0x31, 0x2d, 0xb1, 0x3a, 0xdd, 0x40, 0xff, 0x3f, 0xc5, 0x38, 0xcf, 0x2b, 0x4e, 0x1a, 0x80, 0x05,
+0x48, 0xef, 0x73, 0xda, 0xd9, 0xc9, 0x3b, 0xc0, 0x5b, 0xbf, 0x75, 0xc7, 0xa1, 0xd6, 0x60, 0xea,
+0x2a, 0xff, 0x1e, 0x12, 0xdd, 0x20, 0x49, 0x2a, 0x07, 0x2e, 0x95, 0x2c, 0x7f, 0x26, 0xa3, 0x1c,
+0x36, 0x10, 0x5a, 0x02, 0x58, 0xf4, 0x78, 0xe7, 0x47, 0xdd, 0xcd, 0xd6, 0x55, 0xd5, 0x65, 0xd9,
+0x73, 0xe2, 0xc6, 0xee, 0x4e, 0xfc, 0xd2, 0x08, 0x0a, 0x12, 0x6e, 0x17, 0xb0, 0x18, 0xdc, 0x16,
+0xce, 0x12, 0x1c, 0x0e, 0x72, 0x09, 0x1c, 0x05, 0x98, 0x00, 0x30, 0xfb, 0x3e, 0xf5, 0x5c, 0xef,
+0x7a, 0xeb, 0x7c, 0xea, 0xe4, 0xec, 0xc4, 0xf1, 0xc6, 0xf7, 0x0e, 0xfd, 0x62, 0x00, 0x6e, 0x01,
+0x1a, 0x01, 0x98, 0x00, 0x7e, 0x01, 0x40, 0x04, 0x00, 0x09, 0xdc, 0x0d, 0x36, 0x11, 0x26, 0x11,
+0x60, 0x0d, 0xd8, 0x06, 0x32, 0xff, 0x84, 0xf8, 0x86, 0xf3, 0x6e, 0xf0, 0x30, 0xee, 0x2e, 0xec,
+0x0a, 0xea, 0xc2, 0xe8, 0x9a, 0xe9, 0xc0, 0xed, 0xf0, 0xf5, 0x68, 0x01, 0xb6, 0x0e, 0x46, 0x1b,
+0x1f, 0x24, 0x5d, 0x27, 0x51, 0x24, 0xde, 0x1b, 0xfc, 0x0f, 0xec, 0x02, 0xfe, 0xf5, 0x34, 0xea,
+0xb9, 0xdf, 0x29, 0xd7, 0xbd, 0xd1, 0xd5, 0xd0, 0x9f, 0xd5, 0x7b, 0xe0, 0x9a, 0xf0, 0x50, 0x04,
+0xe6, 0x18, 0x09, 0x2b, 0xe7, 0x37, 0x15, 0x3d, 0xcb, 0x39, 0xb9, 0x2e, 0xbb, 0x1d, 0x56, 0x09,
+0xec, 0xf3, 0x57, 0xdf, 0x9d, 0xcd, 0xd5, 0xc0, 0xab, 0xba, 0xc5, 0xbc, 0x2b, 0xc7, 0x33, 0xd9,
+0xd4, 0xf0, 0x3e, 0x0b, 0xd7, 0x24, 0xc3, 0x3a, 0xab, 0x49, 0x8f, 0x4f, 0xf1, 0x4a, 0x4b, 0x3c,
+0x51, 0x25, 0x42, 0x09, 0x80, 0xeb, 0xe9, 0xcf, 0x2b, 0xba, 0xbd, 0xac, 0x94, 0xa9, 0x61, 0xb0,
+0xaf, 0xc0, 0x43, 0xd8, 0xe0, 0xf4, 0x48, 0x13, 0x5d, 0x30, 0xd3, 0x48, 0x6a, 0x59, 0x50, 0x5f,
+0x46, 0x58, 0xcd, 0x44, 0x0d, 0x27, 0x56, 0x03, 0x3d, 0xdf, 0xa7, 0xbf, 0x00, 0xa9, 0xa4, 0x9d,
+0xfa, 0x9d, 0x36, 0xa9, 0xd7, 0xbd, 0x8b, 0xd9, 0xce, 0xf9, 0x8a, 0x1b, 0x69, 0x3b, 0x16, 0x56,
+0x58, 0x67, 0x76, 0x6b, 0x5c, 0x60, 0xbb, 0x46, 0x73, 0x22, 0x22, 0xf9, 0x59, 0xd1, 0xff, 0xb0,
+0x38, 0x9c, 0x6e, 0x94, 0x20, 0x99, 0x5e, 0xa8, 0x45, 0xc0, 0xaf, 0xde, 0xda, 0x00, 0x3f, 0x24,
+0x59, 0x45, 0x56, 0x60, 0x1a, 0x70, 0xc6, 0x70, 0x7c, 0x60, 0x69, 0x41, 0xb2, 0x18, 0x08, 0xed,
+0x7b, 0xc5, 0x9a, 0xa7, 0x60, 0x96, 0x22, 0x92, 0xb4, 0x99, 0x3c, 0xab, 0x45, 0xc5, 0xa4, 0xe5,
+0xc0, 0x09, 0x25, 0x2e, 0x19, 0x4f, 0xac, 0x67, 0x54, 0x73, 0xac, 0x6e, 0xb6, 0x59, 0xa9, 0x37,
+0x34, 0x0e, 0x1a, 0xe4, 0x8b, 0xbf, 0x68, 0xa5, 0xc4, 0x97, 0x78, 0x96, 0x48, 0xa0, 0x9d, 0xb3,
+0xf1, 0xce, 0xec, 0xef, 0x6e, 0x13, 0xe3, 0x35, 0xf9, 0x52, 0x8c, 0x66, 0x9c, 0x6c, 0xa4, 0x63,
+0x9f, 0x4c, 0x61, 0x2b, 0x06, 0x05, 0x63, 0xdf, 0xc7, 0xbf, 0xca, 0xa9, 0x4c, 0x9f, 0x04, 0xa0,
+0x0a, 0xab, 0x51, 0xbf, 0xcb, 0xda, 0xf6, 0xfa, 0xfa, 0x1b, 0x3b, 0x3a, 0xa7, 0x51, 0x14, 0x5f,
+0x70, 0x60, 0x1a, 0x55, 0x2b, 0x3f, 0x43, 0x21, 0xf8, 0xff, 0x9f, 0xdf, 0xd3, 0xc4, 0xa1, 0xb2,
+0xca, 0xaa, 0x43, 0xad, 0x63, 0xb9, 0xd5, 0xcd, 0xf4, 0xe7, 0xae, 0x04, 0x3b, 0x20, 0x4f, 0x37,
+0xbd, 0x47, 0x83, 0x4f, 0x3d, 0x4e, 0x2f, 0x44, 0xf9, 0x31, 0xe8, 0x19, 0x92, 0xfe, 0xd8, 0xe3,
+0x9f, 0xcd, 0x09, 0xbf, 0x7f, 0xb9, 0xc5, 0xbd, 0x93, 0xca, 0xad, 0xdd, 0x48, 0xf4, 0xa4, 0x0a,
+0x43, 0x1e, 0x57, 0x2d, 0x17, 0x37, 0x5d, 0x3b, 0x25, 0x3a, 0x17, 0x33, 0x55, 0x26, 0x86, 0x14,
+0xb8, 0xff, 0x10, 0xeb, 0x11, 0xda, 0xa3, 0xcf, 0x25, 0xcd, 0x73, 0xd2, 0xd7, 0xdd, 0x98, 0xec,
+0xca, 0xfb, 0x50, 0x09, 0x2c, 0x14, 0x1a, 0x1c, 0xa1, 0x21, 0xeb, 0x24, 0xb9, 0x25, 0x09, 0x23,
+0x2e, 0x1c, 0xf8, 0x10, 0x26, 0x03, 0x78, 0xf5, 0x8a, 0xea, 0xc8, 0xe4, 0x98, 0xe4, 0xde, 0xe8,
+0xbc, 0xef, 0xe2, 0xf6, 0xa2, 0xfc, 0xe0, 0x00, 0xbe, 0x03, 0x48, 0x06, 0x68, 0x09, 0x58, 0x0d,
+0x5e, 0x11, 0x14, 0x14, 0x38, 0x14, 0x38, 0x11, 0xe4, 0x0b, 0xc2, 0x05, 0xc2, 0x00, 0xba, 0xfd,
+0xd2, 0xfc, 0xd4, 0xfc, 0x74, 0xfc, 0x96, 0xfa, 0x36, 0xf7, 0x32, 0xf3, 0x16, 0xf0, 0x26, 0xef,
+0x6c, 0xf1, 0x1c, 0xf7, 0x54, 0xff, 0x58, 0x08, 0x44, 0x10, 0x38, 0x16, 0x2e, 0x19, 0x02, 0x1a,
+0xe6, 0x18, 0x4c, 0x16, 0x12, 0x12, 0xcc, 0x0b, 0x4e, 0x03, 0xf8, 0xf8, 0x1a, 0xee, 0x0a, 0xe4,
+0xb5, 0xdc, 0x8d, 0xd9, 0xa3, 0xdb, 0xa1, 0xe3, 0x86, 0xf0, 0xb4, 0x00, 0x64, 0x11, 0x49, 0x20,
+0x2b, 0x2b, 0xd7, 0x30, 0x23, 0x31, 0xfd, 0x2b, 0x47, 0x22, 0xec, 0x14, 0xe6, 0x04, 0xac, 0xf3,
+0x7d, 0xe2, 0x81, 0xd3, 0x81, 0xc8, 0x85, 0xc3, 0x83, 0xc6, 0xff, 0xd1, 0x8e, 0xe5, 0x4a, 0xfe,
+0x92, 0x18, 0x91, 0x2f, 0x33, 0x40, 0xb9, 0x47, 0x59, 0x46, 0x17, 0x3d, 0x75, 0x2d, 0xfc, 0x19,
+0xde, 0x03, 0x06, 0xed, 0xf7, 0xd6, 0xe3, 0xc3, 0x55, 0xb6, 0x17, 0xb1, 0x49, 0xb6, 0x37, 0xc7,
+0x15, 0xe2, 0x4e, 0x03, 0xb5, 0x24, 0xc3, 0x40, 0xfb, 0x52, 0xb2, 0x59, 0x1c, 0x55, 0x63, 0x47,
+0xef, 0x32, 0x34, 0x1a, 0x5e, 0xff, 0xa3, 0xe3, 0xaf, 0xc9, 0xaf, 0xb3, 0x92, 0xa5, 0x5e, 0xa2,
+0x63, 0xac, 0x0d, 0xc4, 0x30, 0xe6, 0x5c, 0x0d, 0xb7, 0x32, 0xfb, 0x4f, 0x76, 0x61, 0x1e, 0x66,
+0x84, 0x5e, 0x6f, 0x4d, 0x4d, 0x35, 0x7e, 0x18, 0x1e, 0xf9, 0x15, 0xd9, 0x7b, 0xbb, 0x72, 0xa4,
+0xc4, 0x97, 0xd6, 0x98, 0xe2, 0xa8, 0x93, 0xc6, 0xd2, 0xed, 0xc0, 0x17, 0xcd, 0x3d, 0x36, 0x5a,
+0x1e, 0x6a, 0xae, 0x6c, 0xe6, 0x62, 0xe1, 0x4e, 0x39, 0x33, 0x5a, 0x12, 0xc4, 0xee, 0xc1, 0xcb,
+0x8f, 0xad, 0xd8, 0x98, 0xe4, 0x90, 0xec, 0x97, 0x5d, 0xad, 0xd3, 0xce, 0x76, 0xf7, 0xb9, 0x20,
+0xe7, 0x44, 0x62, 0x5f, 0x66, 0x6d, 0x30, 0x6e, 0x58, 0x62, 0x9f, 0x4b, 0xf7, 0x2c, 0xe4, 0x08,
+0x43, 0xe3, 0x69, 0xc0, 0x0c, 0xa5, 0x28, 0x95, 0xc6, 0x92, 0x4a, 0x9e, 0x51, 0xb6, 0xff, 0xd7,
+0xcc, 0xfe, 0x8f, 0x25, 0x29, 0x47, 0xbe, 0x5f, 0x00, 0x6c, 0xe6, 0x6a, 0xaa, 0x5c, 0x57, 0x43,
+0x3b, 0x22, 0xec, 0xfc, 0x51, 0xd8, 0x1d, 0xb9, 0x60, 0xa3, 0x78, 0x99, 0xd6, 0x9b, 0xa0, 0xa9,
+0xab, 0xc1, 0xfd, 0xe0, 0x8e, 0x04, 0xfb, 0x27, 0xa7, 0x46, 0x9a, 0x5c, 0x96, 0x66, 0xaa, 0x62,
+0xf5, 0x51, 0xaf, 0x36, 0xe4, 0x14, 0x98, 0xf1, 0x35, 0xd1, 0x57, 0xb8, 0x20, 0xa9, 0x76, 0xa4,
+0x82, 0xa9, 0x91, 0xb7, 0x45, 0xcd, 0x02, 0xe9, 0x20, 0x08, 0x33, 0x27, 0x01, 0x42, 0x35, 0x54,
+0xd0, 0x5a, 0x4d, 0x54, 0x05, 0x42, 0x5b, 0x27, 0xbe, 0x08, 0xf4, 0xea, 0xff, 0xd1, 0x65, 0xc0,
+0x25, 0xb7, 0x9f, 0xb5, 0x79, 0xbb, 0x81, 0xc7, 0x65, 0xd9, 0x20, 0xf0, 0xaa, 0x09, 0x47, 0x23,
+0xf9, 0x38, 0xa7, 0x46, 0x87, 0x49, 0x7d, 0x41, 0xf7, 0x2f, 0x0a, 0x19, 0xd2, 0x00, 0x18, 0xeb,
+0x5b, 0xda, 0x5d, 0xcf, 0x2f, 0xca, 0x1b, 0xca, 0x8f, 0xce, 0x31, 0xd7, 0xfe, 0xe3, 0x96, 0xf4,
+0xa2, 0x07, 0x82, 0x1a, 0x0d, 0x2a, 0xeb, 0x32, 0x8d, 0x33, 0x11, 0x2c, 0xe1, 0x1e, 0xfe, 0x0e,
+0x6c, 0xff, 0x54, 0xf2, 0xc2, 0xe8, 0xe5, 0xe2, 0x23, 0xe0, 0xf9, 0xdf, 0x19, 0xe2, 0x72, 0xe6,
+0xe4, 0xec, 0xea, 0xf5, 0xde, 0x00, 0x2e, 0x0c, 0xa6, 0x15, 0x6a, 0x1b, 0x43, 0x1c, 0xe6, 0x18,
+0x76, 0x12, 0xca, 0x0a, 0xb4, 0x03, 0x1a, 0xfe, 0x4e, 0xfa, 0xfc, 0xf7, 0xd4, 0xf6, 0xf8, 0xf5,
+0xf0, 0xf4, 0xc4, 0xf3, 0xd2, 0xf2, 0xf6, 0xf2, 0xee, 0xf4, 0xac, 0xf8, 0x78, 0xfd, 0x3a, 0x02,
+0x3c, 0x06, 0xd6, 0x08, 0x50, 0x0a, 0x06, 0x0b, 0x96, 0x0b, 0x60, 0x0c, 0x66, 0x0d, 0x02, 0x0e,
+0x42, 0x0d, 0x7c, 0x0a, 0xda, 0x04, 0x8c, 0xfc, 0xc8, 0xf2, 0x8a, 0xe9, 0x49, 0xe3, 0x65, 0xe1,
+0x14, 0xe4, 0xa2, 0xea, 0x74, 0xf3, 0x10, 0xfd, 0x52, 0x06, 0xc4, 0x0e, 0x64, 0x16, 0x25, 0x1d,
+0x2b, 0x22, 0xa3, 0x24, 0x3f, 0x23, 0xc1, 0x1c, 0x80, 0x10, 0x72, 0xff, 0x12, 0xec, 0x39, 0xda,
+0x83, 0xcd, 0xb5, 0xc8, 0x2b, 0xcc, 0x65, 0xd6, 0xfe, 0xe4, 0x5c, 0xf5, 0xe6, 0x05, 0x92, 0x15,
+0xa3, 0x23, 0x89, 0x2f, 0xdf, 0x37, 0xe1, 0x3a, 0x8f, 0x36, 0x01, 0x2a, 0xca, 0x15, 0xd6, 0xfb,
+0x55, 0xe0, 0x83, 0xc8, 0xd9, 0xb8, 0xb7, 0xb3, 0x73, 0xb9, 0x81, 0xc7, 0x59, 0xdb, 0xf2, 0xf1,
+0xf2, 0x08, 0x1d, 0x1f, 0x01, 0x33, 0xe5, 0x42, 0x5f, 0x4c, 0xef, 0x4c, 0x75, 0x43, 0xb9, 0x2f,
+0x9c, 0x13, 0x08, 0xf3, 0x97, 0xd2, 0xe1, 0xb7, 0x56, 0xa7, 0x34, 0xa3, 0x18, 0xab, 0x17, 0xbd,
+0xd7, 0xd5, 0x9a, 0xf2, 0x4c, 0x10, 0x85, 0x2c, 0xa9, 0x44, 0xe6, 0x55, 0x96, 0x5d, 0x54, 0x59,
+0x31, 0x49, 0xd1, 0x2e, 0x54, 0x0d, 0xe6, 0xe8, 0x61, 0xc6, 0x02, 0xab, 0xea, 0x9a, 0xbe, 0x97,
+0xa6, 0xa1, 0xd7, 0xb6, 0x81, 0xd4, 0x32, 0xf7, 0xae, 0x1a, 0x35, 0x3b, 0x1e, 0x55, 0x04, 0x65,
+0x4e, 0x68, 0x60, 0x5e, 0xa9, 0x48, 0xff, 0x29, 0xb8, 0x05, 0x15, 0xe0, 0x6b, 0xbd, 0x3e, 0xa2,
+0xa4, 0x92, 0xd4, 0x90, 0x4a, 0x9d, 0xb3, 0xb6, 0xb7, 0xd9, 0x70, 0x01, 0x85, 0x28, 0xfb, 0x49,
+0xb6, 0x61, 0xd6, 0x6c, 0x90, 0x6a, 0x8c, 0x5b, 0x5d, 0x42, 0x53, 0x22, 0x06, 0xfe, 0xe3, 0xd8,
+0xe1, 0xb6, 0x96, 0x9c, 0x5a, 0x8e, 0xde, 0x8e, 0xfc, 0x9e, 0xd5, 0xbc, 0x02, 0xe4, 0x28, 0x0e,
+0x25, 0x35, 0x99, 0x53, 0x92, 0x66, 0x60, 0x6c, 0x58, 0x65, 0x9d, 0x53, 0xbb, 0x39, 0x34, 0x1a,
+0x42, 0xf7, 0xa5, 0xd3, 0x5d, 0xb3, 0x0a, 0x9b, 0x5a, 0x8f, 0x50, 0x93, 0x18, 0xa7, 0x35, 0xc8,
+0x9a, 0xf0, 0xac, 0x19, 0xf3, 0x3c, 0x58, 0x56, 0xaa, 0x63, 0xd4, 0x64, 0x50, 0x5b, 0x29, 0x49,
+0x4d, 0x30, 0x90, 0x12, 0xcc, 0xf1, 0x5f, 0xd0, 0xe9, 0xb2, 0x16, 0x9e, 0x62, 0x96, 0x2a, 0x9e,
+0xa9, 0xb4, 0x0b, 0xd6, 0x12, 0xfc, 0x0d, 0x20, 0x05, 0x3d, 0x4f, 0x50, 0x18, 0x59, 0xb4, 0x57,
+0x91, 0x4d, 0x8f, 0x3c, 0xdf, 0x25, 0xc4, 0x0a, 0x0a, 0xed, 0xcb, 0xcf, 0x37, 0xb7, 0x48, 0xa7,
+0xd6, 0xa3, 0x11, 0xae, 0x71, 0xc4, 0x79, 0xe2, 0xd2, 0x02, 0xef, 0x1f, 0xb5, 0x36, 0xf1, 0x44,
+0x7f, 0x4a, 0xd7, 0x47, 0x19, 0x3e, 0x95, 0x2e, 0x74, 0x1a, 0x4a, 0x03, 0x0c, 0xeb, 0x73, 0xd4,
+0x93, 0xc2, 0xcd, 0xb8, 0xa7, 0xb8, 0x0d, 0xc3, 0xa7, 0xd5, 0x1e, 0xed, 0x48, 0x05, 0x96, 0x1a,
+0x83, 0x2a, 0x03, 0x34, 0xdf, 0x36, 0xa3, 0x33, 0x2b, 0x2b, 0xcd, 0x1e, 0xc0, 0x0f, 0xfa, 0xfe,
+0x84, 0xee, 0xd3, 0xdf, 0x95, 0xd4, 0x59, 0xce, 0x93, 0xce, 0x69, 0xd5, 0xd3, 0xe1, 0x92, 0xf1,
+0x0c, 0x02, 0xca, 0x10, 0x98, 0x1b, 0x33, 0x21, 0xf1, 0x21, 0xc3, 0x1e, 0xa0, 0x18, 0xca, 0x10,
+0x5c, 0x08, 0x58, 0x00, 0x1a, 0xf9, 0x56, 0xf2, 0x6e, 0xec, 0xe4, 0xe7, 0xa4, 0xe5, 0xb0, 0xe6,
+0x1e, 0xeb, 0x16, 0xf2, 0x68, 0xfa, 0x34, 0x02, 0xfa, 0x07, 0xfc, 0x0a, 0x50, 0x0b, 0xe6, 0x09,
+0xfe, 0x07, 0xd2, 0x06, 0x08, 0x07, 0x26, 0x08, 0x08, 0x09, 0x5c, 0x08, 0x00, 0x05, 0x5a, 0xff,
+0xe6, 0xf8, 0x28, 0xf3, 0x92, 0xef, 0x60, 0xee, 0x0c, 0xef, 0x8e, 0xf0, 0xf2, 0xf1, 0xe6, 0xf2,
+0x0a, 0xf4, 0xb4, 0xf6, 0xd6, 0xfb, 0x62, 0x03, 0xda, 0x0c, 0x7a, 0x16, 0x7b, 0x1d, 0xc1, 0x1f,
+0x3c, 0x1c, 0xd6, 0x13, 0x6e, 0x08, 0x56, 0xfc, 0x7a, 0xf1, 0xd4, 0xe8, 0x99, 0xe2, 0x67, 0xde,
+0xf5, 0xdb, 0x2b, 0xdc, 0xfd, 0xdf, 0x30, 0xe8, 0xfa, 0xf4, 0x4a, 0x05, 0xf8, 0x16, 0xc3, 0x26,
+0xa9, 0x31, 0x75, 0x35, 0x4f, 0x31, 0x11, 0x26, 0xcc, 0x15, 0x04, 0x03, 0x36, 0xf0, 0x45, 0xdf,
+0x87, 0xd1, 0x1d, 0xc8, 0x0f, 0xc4, 0x6b, 0xc6, 0x97, 0xcf, 0x79, 0xdf, 0x9c, 0xf4, 0x6a, 0x0c,
+0xef, 0x23, 0xe1, 0x37, 0xe5, 0x44, 0xe7, 0x48, 0x37, 0x43, 0x67, 0x34, 0x75, 0x1e, 0x2c, 0x04,
+0x38, 0xe9, 0xa1, 0xd0, 0x8f, 0xbd, 0x07, 0xb2, 0xa5, 0xaf, 0xb7, 0xb6, 0xcb, 0xc6, 0xb9, 0xdd,
+0x3e, 0xf9, 0x30, 0x16, 0x1b, 0x31, 0xf1, 0x46, 0xc4, 0x54, 0x7e, 0x58, 0x8d, 0x50, 0x77, 0x3d,
+0x55, 0x21, 0xf6, 0xff, 0xbf, 0xdd, 0xdf, 0xbf, 0x46, 0xaa, 0xfc, 0x9f, 0x8c, 0xa1, 0x3d, 0xae,
+0x11, 0xc4, 0x6d, 0xe0, 0x20, 0x00, 0xd1, 0x1f, 0xad, 0x3c, 0xdd, 0x53, 0x34, 0x62, 0x8c, 0x64,
+0x8a, 0x59, 0x2d, 0x41, 0x77, 0x1e, 0x38, 0xf6, 0xf7, 0xce, 0xdb, 0xae, 0x6a, 0x9a, 0xc4, 0x93,
+0x5c, 0x9a, 0x47, 0xac, 0x8d, 0xc6, 0x08, 0xe6, 0xb2, 0x07, 0xed, 0x28, 0xb3, 0x46, 0x04, 0x5e,
+0x46, 0x6b, 0x18, 0x6b, 0xa6, 0x5b, 0xe9, 0x3d, 0x14, 0x16, 0x52, 0xea, 0xe1, 0xc1, 0x4a, 0xa3,
+0x68, 0x92, 0xf8, 0x8f, 0x98, 0x9a, 0x59, 0xaf, 0xbf, 0xcb, 0xb4, 0xec, 0x84, 0x0f, 0x3b, 0x31,
+0x01, 0x4f, 0x3a, 0x65, 0xb2, 0x6f, 0x30, 0x6b, 0xd2, 0x56, 0x19, 0x35, 0xdc, 0x0a, 0x4d, 0xdf,
+0x47, 0xb9, 0x9e, 0x9e, 0xe0, 0x91, 0xf2, 0x92, 0xe6, 0x9f, 0x3b, 0xb6, 0x8b, 0xd3, 0xe2, 0xf4,
+0xa8, 0x17, 0xe1, 0x38, 0xce, 0x54, 0x88, 0x67, 0x4e, 0x6d, 0x1c, 0x64, 0x5d, 0x4c, 0x3d, 0x29,
+0x5a, 0x00, 0x25, 0xd8, 0xb7, 0xb6, 0x70, 0xa0, 0x36, 0x97, 0x76, 0x9a, 0xd6, 0xa8, 0xdd, 0xbf,
+0x49, 0xdd, 0x5c, 0xfe, 0xab, 0x1f, 0xf7, 0x3d, 0x6e, 0x55, 0xd0, 0x62, 0x84, 0x63, 0xf2, 0x56,
+0xb5, 0x3e, 0x05, 0x1e, 0xa0, 0xf9, 0xc3, 0xd6, 0x91, 0xba, 0x64, 0xa8, 0xe8, 0xa1, 0xc0, 0xa6,
+0x95, 0xb5, 0x81, 0xcc, 0xd6, 0xe8, 0x5e, 0x07, 0x81, 0x24, 0x25, 0x3d, 0x2d, 0x4e, 0xa0, 0x55,
+0xc7, 0x52, 0xef, 0x45, 0xc9, 0x30, 0x7e, 0x15, 0xa4, 0xf7, 0x31, 0xdb, 0x43, 0xc4, 0xd3, 0xb5,
+0x7d, 0xb1, 0x4f, 0xb7, 0x2f, 0xc6, 0xb3, 0xdb, 0xa2, 0xf4, 0xde, 0x0d, 0x09, 0x24, 0xd7, 0x34,
+0xf1, 0x3e, 0x03, 0x42, 0x4b, 0x3e, 0x41, 0x34, 0x6f, 0x24, 0xfa, 0x0f, 0x0a, 0xf9, 0x0f, 0xe3,
+0x63, 0xd1, 0xd7, 0xc6, 0xcf, 0xc4, 0x5f, 0xcb, 0xbb, 0xd8, 0x6c, 0xea, 0x34, 0xfd, 0x5a, 0x0e,
+0x00, 0x1c, 0x51, 0x25, 0x65, 0x2a, 0xb5, 0x2b, 0xcf, 0x29, 0x57, 0x24, 0xe6, 0x1a, 0xac, 0x0d,
+0x26, 0xfe, 0xd0, 0xee, 0x81, 0xe2, 0x91, 0xdb, 0x13, 0xdb, 0x8f, 0xe0, 0x14, 0xea, 0x2e, 0xf5,
+0x66, 0xff, 0x70, 0x07, 0xee, 0x0c, 0x4a, 0x10, 0x96, 0x12, 0xa8, 0x14, 0x4a, 0x16, 0x8c, 0x16,
+0x5e, 0x14, 0x22, 0x0f, 0x6c, 0x07, 0xe6, 0xfe, 0xdc, 0xf7, 0xa6, 0xf3, 0xfe, 0xf2, 0xe6, 0xf4,
+0xba, 0xf7, 0xf8, 0xf9, 0xe2, 0xfa, 0x54, 0xfa, 0x3a, 0xf9, 0xec, 0xf8, 0x80, 0xfa, 0x8e, 0xfe,
+0xa8, 0x04, 0x6c, 0x0b, 0x0e, 0x11, 0x44, 0x14, 0xb4, 0x14, 0xba, 0x12, 0x94, 0x0f, 0x3e, 0x0c,
+0xb2, 0x08, 0x8c, 0x04, 0x1a, 0xff, 0x88, 0xf8, 0x14, 0xf1, 0x00, 0xea, 0x94, 0xe4, 0x55, 0xe2,
+0x88, 0xe4, 0x84, 0xeb, 0xa4, 0xf6, 0x20, 0x04, 0x1a, 0x12, 0xe1, 0x1d, 0xd9, 0x25, 0x1f, 0x29,
+0xdd, 0x27, 0x97, 0x22, 0xbc, 0x19, 0x22, 0x0e, 0x7e, 0x00, 0x2a, 0xf2, 0x5c, 0xe4, 0x51, 0xd8,
+0xfb, 0xcf, 0xdf, 0xcc, 0x73, 0xd0, 0xff, 0xda, 0x2a, 0xec, 0xa6, 0x01, 0x58, 0x18, 0x71, 0x2c,
+0x75, 0x3a, 0x9f, 0x40, 0x73, 0x3e, 0x21, 0x35, 0xf7, 0x25, 0x3a, 0x13, 0x9a, 0xfe, 0xd6, 0xe9,
+0xc5, 0xd6, 0xf1, 0xc6, 0x73, 0xbc, 0x33, 0xb9, 0xfd, 0xbe, 0x81, 0xce, 0xc0, 0xe6, 0xc8, 0x04,
+0xa3, 0x23, 0x1d, 0x3e, 0x61, 0x4f, 0x68, 0x55, 0x2d, 0x50, 0xb3, 0x41, 0xa9, 0x2c, 0xe4, 0x13,
+0xba, 0xf9, 0xff, 0xdf, 0xeb, 0xc8, 0x87, 0xb6, 0x4d, 0xab, 0x90, 0xa9, 0x35, 0xb3, 0xf5, 0xc8,
+0xc0, 0xe8, 0x18, 0x0e, 0x71, 0x32, 0x95, 0x4f, 0xd6, 0x60, 0x66, 0x64, 0x2c, 0x5b, 0xf1, 0x47,
+0x43, 0x2e, 0xf8, 0x10, 0x8a, 0xf2, 0x1b, 0xd5, 0x49, 0xbb, 0xdc, 0xa7, 0x9a, 0x9d, 0x32, 0x9f,
+0x47, 0xae, 0x65, 0xca, 0x0a, 0xf0, 0x66, 0x19, 0x6d, 0x3f, 0x2a, 0x5c, 0xd2, 0x6b, 0x0c, 0x6d,
+0x12, 0x61, 0xdd, 0x4a, 0xd9, 0x2d, 0xee, 0x0c, 0xb4, 0xea, 0x23, 0xca, 0xa9, 0xae, 0xd2, 0x9b,
+0xa4, 0x94, 0x56, 0x9b, 0x7b, 0xb0, 0xeb, 0xd1, 0xf2, 0xfa, 0x1d, 0x25, 0x29, 0x4a, 0xca, 0x64,
+0xd8, 0x71, 0x3e, 0x70, 0x7a, 0x61, 0x67, 0x48, 0x5d, 0x28, 0x76, 0x04, 0xc3, 0xdf, 0x41, 0xbe,
+0x2c, 0xa4, 0x04, 0x95, 0x4e, 0x93, 0xbc, 0x9f, 0x67, 0xb9, 0xe9, 0xdc, 0x4e, 0x05, 0xe3, 0x2c,
+0x81, 0x4e, 0x0a, 0x66, 0x86, 0x70, 0xf0, 0x6c, 0x4a, 0x5c, 0x69, 0x41, 0x87, 0x1f, 0x14, 0xfa,
+0x2f, 0xd5, 0x99, 0xb5, 0xbe, 0x9f, 0x34, 0x96, 0x18, 0x9a, 0x94, 0xaa, 0x7b, 0xc5, 0x74, 0xe7,
+0x26, 0x0c, 0x8b, 0x2f, 0x5b, 0x4d, 0x14, 0x62, 0x8e, 0x6a, 0x62, 0x65, 0x45, 0x53, 0xe7, 0x36,
+0x26, 0x14, 0x4a, 0xef, 0x69, 0xcd, 0x07, 0xb3, 0x8a, 0xa3, 0xf0, 0x9f, 0xa2, 0xa7, 0xe1, 0xb8,
+0x97, 0xd1, 0x46, 0xef, 0x08, 0x0f, 0xe5, 0x2d, 0x31, 0x48, 0x14, 0x5a, 0x4c, 0x60, 0x2c, 0x59,
+0xcd, 0x45, 0x37, 0x29, 0x06, 0x08, 0x48, 0xe7, 0x97, 0xcb, 0x6b, 0xb8, 0x3b, 0xaf, 0xd7, 0xaf,
+0x99, 0xb8, 0x13, 0xc8, 0x97, 0xdc, 0x04, 0xf5, 0x88, 0x0f, 0x93, 0x29, 0x9d, 0x3f, 0xcd, 0x4d,
+0xfd, 0x50, 0x0d, 0x48, 0xa9, 0x34, 0x74, 0x1a, 0x3c, 0xfe, 0x9a, 0xe4, 0xe1, 0xd0, 0xeb, 0xc4,
+0xad, 0xc0, 0x17, 0xc3, 0xe1, 0xca, 0xd9, 0xd6, 0x52, 0xe6, 0xe0, 0xf8, 0x50, 0x0d, 0x6b, 0x21,
+0x1b, 0x32, 0xf5, 0x3b, 0xcf, 0x3c, 0x37, 0x34, 0x07, 0x24, 0xe8, 0x0f, 0xa4, 0xfb, 0x9a, 0xea,
+0x95, 0xde, 0x2b, 0xd8, 0x65, 0xd6, 0x6d, 0xd8, 0x4f, 0xdd, 0x82, 0xe4, 0x02, 0xee, 0xac, 0xf9,
+0xfe, 0x06, 0x46, 0x14, 0x2f, 0x1f, 0x5b, 0x25, 0xa3, 0x25, 0xe5, 0x1f, 0xdc, 0x15, 0x00, 0x0a,
+0xea, 0xfe, 0x3c, 0xf6, 0xd0, 0xf0, 0x12, 0xee, 0x66, 0xed, 0xce, 0xed, 0xf4, 0xee, 0xba, 0xf0,
+0x16, 0xf3, 0xbe, 0xf6, 0xba, 0xfb, 0xc8, 0x01, 0xa8, 0x07, 0x72, 0x0c, 0x2a, 0x0f, 0x6e, 0x0f,
+0xa8, 0x0d, 0xbe, 0x0a, 0x08, 0x08, 0x12, 0x06, 0xfc, 0x04, 0x60, 0x04, 0x9c, 0x03, 0xe0, 0x01,
+0xbc, 0xfe, 0xe6, 0xf9, 0xfa, 0xf3, 0x48, 0xee, 0xc2, 0xea, 0x6e, 0xea, 0xd4, 0xed, 0x1e, 0xf4,
+0x08, 0xfc, 0xf8, 0x03, 0xb6, 0x0a, 0x48, 0x10, 0x9c, 0x14, 0x06, 0x18, 0x2c, 0x1a, 0xc0, 0x1a,
+0xd8, 0x18, 0xaa, 0x13, 0x6e, 0x0a, 0x78, 0xfd, 0x46, 0xee, 0xc1, 0xdf, 0x45, 0xd5, 0x77, 0xd1,
+0x05, 0xd5, 0xe7, 0xde, 0xf6, 0xec, 0x4a, 0xfc, 0xf0, 0x0a, 0xc6, 0x17, 0x4f, 0x22, 0x61, 0x2a,
+0x71, 0x2f, 0xa3, 0x30, 0x89, 0x2c, 0x43, 0x22, 0x66, 0x11, 0x6a, 0xfb, 0x7d, 0xe3, 0xcb, 0xcd,
+0x3b, 0xbf, 0x6f, 0xba, 0x21, 0xc0, 0x7b, 0xce, 0x7d, 0xe2, 0xa8, 0xf8, 0x1a, 0x0e, 0x69, 0x21,
+0x75, 0x31, 0x7f, 0x3d, 0x33, 0x44, 0xdf, 0x43, 0x45, 0x3b, 0xb7, 0x29, 0x9e, 0x10, 0x96, 0xf2,
+0x4b, 0xd4, 0x0b, 0xbb, 0x3e, 0xab, 0xda, 0xa7, 0x7b, 0xb0, 0x67, 0xc3, 0xe1, 0xdc, 0x3c, 0xf9,
+0x0c, 0x15, 0x25, 0x2e, 0xdb, 0x42, 0xf9, 0x50, 0xba, 0x56, 0x2f, 0x52, 0xdb, 0x42, 0xc9, 0x29,
+0x7e, 0x09, 0x22, 0xe6, 0xdf, 0xc4, 0xba, 0xaa, 0xec, 0x9b, 0x7c, 0x9a, 0x3a, 0xa6, 0x01, 0xbd,
+0x83, 0xdb, 0x64, 0xfd, 0xcd, 0x1e, 0xa3, 0x3c, 0xbf, 0x53, 0x8c, 0x61, 0x92, 0x63, 0x30, 0x59,
+0x4d, 0x43, 0x7f, 0x24, 0x62, 0x00, 0x3d, 0xdb, 0xdd, 0xb9, 0xac, 0xa0, 0x54, 0x93, 0xa0, 0x93,
+0xae, 0xa1, 0xe3, 0xbb, 0x97, 0xde, 0x08, 0x05, 0x77, 0x2a, 0x4f, 0x4a, 0x1a, 0x61, 0x84, 0x6b,
+0x48, 0x68, 0x1c, 0x58, 0xa7, 0x3d, 0x2e, 0x1c, 0x56, 0xf7, 0xf9, 0xd2, 0xcd, 0xb2, 0x1c, 0x9b,
+0x30, 0x8f, 0x2e, 0x91, 0xde, 0xa1, 0x8d, 0xbf, 0x30, 0xe6, 0x14, 0x10, 0xff, 0x36, 0x16, 0x56,
+0x68, 0x69, 0xc8, 0x6e, 0x4c, 0x66, 0x2d, 0x52, 0xc3, 0x35, 0x2c, 0x14, 0x6c, 0xf0, 0x71, 0xcd,
+0x15, 0xaf, 0xf0, 0x98, 0xd0, 0x8e, 0x6c, 0x93, 0x4a, 0xa7, 0x71, 0xc8, 0xb8, 0xf1, 0x3e, 0x1c,
+0x59, 0x41, 0x42, 0x5c, 0x02, 0x6a, 0xec, 0x69, 0xa0, 0x5d, 0xe3, 0x47, 0xeb, 0x2b, 0x36, 0x0c,
+0xe6, 0xea, 0xc1, 0xca, 0xfd, 0xae, 0x9a, 0x9b, 0x82, 0x94, 0x3a, 0x9c, 0xe1, 0xb2, 0xb3, 0xd5,
+0x40, 0xfe, 0x91, 0x25, 0x7d, 0x45, 0x28, 0x5a, 0x24, 0x62, 0x28, 0x5e, 0x3b, 0x50, 0x35, 0x3b,
+0x5b, 0x21, 0x8c, 0x04, 0xcc, 0xe6, 0x6f, 0xca, 0xd7, 0xb2, 0xda, 0xa3, 0xdc, 0xa0, 0x87, 0xab,
+0x45, 0xc3, 0x02, 0xe4, 0xfa, 0x07, 0x9b, 0x28, 0x4f, 0x41, 0xc3, 0x4f, 0xcf, 0x53, 0x3d, 0x4e,
+0x43, 0x41, 0xb7, 0x2e, 0x58, 0x18, 0xac, 0xff, 0x80, 0xe6, 0x39, 0xcf, 0xe7, 0xbc, 0x83, 0xb2,
+0x8f, 0xb2, 0xd7, 0xbd, 0xd5, 0xd2, 0x16, 0xee, 0x74, 0x0a, 0x41, 0x23, 0x3f, 0x35, 0x21, 0x3f,
+0xc7, 0x40, 0x4f, 0x3b, 0x19, 0x30, 0xa7, 0x20, 0xb2, 0x0e, 0xa6, 0xfb, 0x24, 0xe9, 0x3b, 0xd9,
+0x53, 0xcd, 0x53, 0xc7, 0x8d, 0xc8, 0x1f, 0xd1, 0xfd, 0xdf, 0xf2, 0xf2, 0xa8, 0x06, 0xea, 0x17,
+0x79, 0x24, 0x61, 0x2b, 0x57, 0x2c, 0x17, 0x28, 0x9d, 0x1f, 0xa6, 0x14, 0x70, 0x08, 0x5c, 0xfc,
+0x64, 0xf1, 0x38, 0xe8, 0xd3, 0xe1, 0xed, 0xdd, 0x61, 0xdd, 0xcd, 0xe0, 0x3e, 0xe8, 0xd6, 0xf2,
+0xc2, 0xfe, 0xd0, 0x09, 0xe8, 0x11, 0x1e, 0x16, 0x64, 0x16, 0x3e, 0x13, 0x94, 0x0e, 0xa0, 0x09,
+0x82, 0x05, 0x80, 0x02, 0x3a, 0x00, 0xf8, 0xfd, 0xb4, 0xfa, 0x88, 0xf6, 0x1e, 0xf2, 0xe6, 0xee,
+0x06, 0xee, 0xf2, 0xef, 0x28, 0xf4, 0xbc, 0xf8, 0x84, 0xfc, 0xd2, 0xfe, 0xa4, 0xff, 0x2c, 0x00,
+0x80, 0x01, 0xd4, 0x04, 0xd4, 0x09, 0x9c, 0x0f, 0x3a, 0x14, 0xe6, 0x15, 0x2e, 0x13, 0xfe, 0x0b,
+0x02, 0x02, 0x62, 0xf7, 0x54, 0xee, 0x72, 0xe8, 0x72, 0xe5, 0xa4, 0xe4, 0x36, 0xe5, 0x06, 0xe7,
+0x92, 0xea, 0xa2, 0xf0, 0xf4, 0xf9, 0x02, 0x06, 0xa0, 0x13, 0x1b, 0x20, 0x43, 0x29, 0x8d, 0x2c,
+0xbd, 0x28, 0x3f, 0x1e, 0xca, 0x0e, 0x74, 0xfd, 0xc4, 0xec, 0xdd, 0xde, 0xcf, 0xd4, 0xe5, 0xce,
+0x57, 0xcd, 0x97, 0xd0, 0xf9, 0xd8, 0xb6, 0xe6, 0x9a, 0xf8, 0x36, 0x0d, 0x57, 0x21, 0x73, 0x32,
+0x91, 0x3d, 0x99, 0x40, 0x9d, 0x3a, 0x11, 0x2c, 0x6a, 0x17, 0x54, 0xff, 0x3a, 0xe7, 0xe9, 0xd1,
+0xf7, 0xc1, 0xed, 0xb8, 0xd7, 0xb7, 0x09, 0xbf, 0x2d, 0xce, 0xd2, 0xe3, 0xa4, 0xfd, 0x34, 0x18,
+0xb9, 0x30, 0xef, 0x43, 0x75, 0x4f, 0x59, 0x51, 0x8b, 0x48, 0xdf, 0x35, 0x5e, 0x1b, 0x52, 0xfc,
+0xb1, 0xdc, 0x37, 0xc1, 0x91, 0xad, 0x86, 0xa4, 0xe8, 0xa6, 0x03, 0xb4, 0x37, 0xca, 0x94, 0xe6,
+0x78, 0x05, 0xa3, 0x23, 0xd7, 0x3d, 0xcd, 0x51, 0x20, 0x5d, 0xac, 0x5d, 0x1f, 0x52, 0x21, 0x3b,
+0xbe, 0x1a, 0x02, 0xf5, 0x7b, 0xcf, 0x2b, 0xb0, 0x2e, 0x9c, 0xfc, 0x95, 0x2c, 0x9d, 0x21, 0xb0,
+0xab, 0xcb, 0x16, 0xec, 0xa4, 0x0d, 0x25, 0x2d, 0x2f, 0x48, 0x5e, 0x5c, 0x20, 0x67, 0xa0, 0x65,
+0x90, 0x56, 0x65, 0x3a, 0x16, 0x14, 0x24, 0xe9, 0x89, 0xc0, 0x64, 0xa1, 0x7e, 0x90, 0xfe, 0x8e,
+0x7a, 0x9b, 0xaf, 0xb2, 0x33, 0xd1, 0x08, 0xf3, 0x22, 0x15, 0xb3, 0x34, 0x7b, 0x4f, 0x06, 0x63,
+0xca, 0x6b, 0x36, 0x67, 0xb3, 0x53, 0xd3, 0x32, 0xc4, 0x08, 0x27, 0xdc, 0xad, 0xb4, 0x02, 0x99,
+0xda, 0x8c, 0xf2, 0x8f, 0xfe, 0x9f, 0x83, 0xb9, 0x09, 0xd9, 0x3a, 0xfb, 0x09, 0x1d, 0xf7, 0x3b,
+0x86, 0x55, 0x78, 0x66, 0x7a, 0x6b, 0x34, 0x62, 0x63, 0x4a, 0xd3, 0x26, 0x90, 0xfc, 0x5f, 0xd2,
+0x55, 0xaf, 0xca, 0x98, 0xde, 0x90, 0xd8, 0x96, 0x52, 0xa8, 0x2d, 0xc2, 0x6b, 0xe1, 0xc4, 0x02,
+0x4f, 0x23, 0x5f, 0x40, 0xd0, 0x56, 0x78, 0x63, 0xd8, 0x63, 0xb4, 0x56, 0x57, 0x3d, 0xe6, 0x1a,
+0x4e, 0xf4, 0x7f, 0xcf, 0xf7, 0xb1, 0xe0, 0x9f, 0xca, 0x9a, 0x1a, 0xa2, 0x93, 0xb3, 0xe5, 0xcc,
+0xd0, 0xea, 0x3e, 0x0a, 0xf7, 0x27, 0xd9, 0x40, 0x09, 0x52, 0x4e, 0x59, 0x64, 0x55, 0xcf, 0x46,
+0x21, 0x2f, 0x34, 0x11, 0x10, 0xf1, 0xbb, 0xd2, 0xcd, 0xba, 0x8b, 0xac, 0x7c, 0xa9, 0x1f, 0xb1,
+0x2f, 0xc2, 0xed, 0xd9, 0x5a, 0xf5, 0xec, 0x10, 0x1d, 0x29, 0x6f, 0x3b, 0x1f, 0x46, 0x43, 0x48,
+0x8f, 0x42, 0x93, 0x35, 0xb7, 0x22, 0x8e, 0x0b, 0x98, 0xf2, 0xcf, 0xda, 0x05, 0xc8, 0xfd, 0xbc,
+0x55, 0xbb, 0x4d, 0xc3, 0xc1, 0xd2, 0x90, 0xe7, 0xfa, 0xfd, 0xd2, 0x12, 0x55, 0x23, 0x4f, 0x2e,
+0x3f, 0x33, 0xdf, 0x32, 0x35, 0x2e, 0x7d, 0x25, 0x52, 0x19, 0xe2, 0x09, 0x6e, 0xf8, 0x60, 0xe7,
+0x6b, 0xd9, 0x85, 0xd1, 0xed, 0xd0, 0x9d, 0xd7, 0x93, 0xe3, 0x76, 0xf2, 0x1c, 0x01, 0x4a, 0x0d,
+0xe4, 0x15, 0xb2, 0x1a, 0x97, 0x1c, 0x93, 0x1c, 0x48, 0x1b, 0x82, 0x18, 0xc0, 0x13, 0x26, 0x0c,
+0x30, 0x02, 0x88, 0xf7, 0x76, 0xee, 0x16, 0xe9, 0x62, 0xe8, 0xbe, 0xeb, 0x9e, 0xf1, 0x22, 0xf8,
+0x6a, 0xfd, 0xd8, 0x00, 0x96, 0x02, 0x84, 0x03, 0xd6, 0x04, 0x3a, 0x07, 0xce, 0x0a, 0xb4, 0x0e,
+0x8c, 0x11, 0xba, 0x11, 0x50, 0x0f, 0xb2, 0x0a, 0xb8, 0x05, 0x5e, 0x01, 0x4a, 0xfe, 0x04, 0xfc,
+0xf6, 0xf9, 0x4a, 0xf7, 0x94, 0xf3, 0xb4, 0xef, 0x7e, 0xec, 0x9c, 0xeb, 0xc2, 0xed, 0x8a, 0xf3,
+0x8a, 0xfc, 0x60, 0x07, 0x26, 0x12, 0xba, 0x1a, 0xc7, 0x1f, 0xe9, 0x20, 0x71, 0x1e, 0xe6, 0x18,
+0x0c, 0x11, 0x74, 0x07, 0x9a, 0xfc, 0x40, 0xf1, 0x5e, 0xe6, 0x4f, 0xdd, 0x93, 0xd7, 0x21, 0xd6,
+0xfd, 0xd9, 0x75, 0xe3, 0xee, 0xf1, 0xf4, 0x03, 0xf6, 0x16, 0xc1, 0x27, 0xad, 0x33, 0xbb, 0x38,
+0x23, 0x36, 0xf3, 0x2c, 0x67, 0x1e, 0xa0, 0x0c, 0xc0, 0xf9, 0x42, 0xe7, 0xfd, 0xd6, 0x85, 0xca,
+0x2b, 0xc3, 0x43, 0xc2, 0xb9, 0xc8, 0xd3, 0xd6, 0x0c, 0xec, 0x44, 0x06, 0x6b, 0x21, 0x3d, 0x39,
+0x73, 0x49, 0xed, 0x4e, 0xdb, 0x49, 0x0f, 0x3b, 0xd9, 0x25, 0x5a, 0x0d, 0x24, 0xf4, 0xa7, 0xdc,
+0xc1, 0xc8, 0xed, 0xb9, 0xc1, 0xb1, 0xf1, 0xb1, 0x8d, 0xbb, 0x47, 0xcf, 0xea, 0xeb, 0xcc, 0x0d,
+0xc1, 0x2f, 0xdb, 0x4b, 0xd0, 0x5c, 0x94, 0x60, 0xf6, 0x56, 0xc1, 0x42, 0xf5, 0x27, 0x1e, 0x0a,
+0x70, 0xec, 0x49, 0xd1, 0xc3, 0xba, 0xd8, 0xaa, 0x6c, 0xa3, 0x4c, 0xa6, 0xe7, 0xb4, 0x51, 0xcf,
+0xf6, 0xf2, 0x96, 0x1a, 0xd9, 0x3f, 0x56, 0x5c, 0x7a, 0x6b, 0xa4, 0x6b, 0xae, 0x5d, 0x6b, 0x45,
+0xb1, 0x26, 0x6c, 0x05, 0x78, 0xe4, 0xa1, 0xc6, 0xa7, 0xae, 0x98, 0x9e, 0x40, 0x99, 0x30, 0xa0,
+0x77, 0xb4, 0xe9, 0xd4, 0x0a, 0xfd, 0x15, 0x27, 0x4d, 0x4c, 0x0a, 0x67, 0x7c, 0x73, 0x70, 0x70,
+0x82, 0x5f, 0x31, 0x44, 0xc3, 0x22, 0x8a, 0xfe, 0x07, 0xdb, 0x91, 0xbb, 0x82, 0xa3, 0x00, 0x96,
+0x16, 0x95, 0xd0, 0xa1, 0xdd, 0xbb, 0x11, 0xe0, 0x60, 0x09, 0x0b, 0x32, 0x27, 0x54, 0x5c, 0x6b,
+0x70, 0x74, 0xc0, 0x6e, 0xb8, 0x5b, 0xb5, 0x3e, 0x5e, 0x1b, 0x92, 0xf5, 0x51, 0xd1, 0x91, 0xb2,
+0x6c, 0x9d, 0x9a, 0x94, 0x56, 0x99, 0x36, 0xab, 0x25, 0xc8, 0x56, 0xec, 0x0a, 0x13, 0x49, 0x37,
+0x00, 0x55, 0x7a, 0x68, 0x1e, 0x6f, 0xec, 0x67, 0xd7, 0x53, 0xf7, 0x35, 0x0e, 0x12, 0x4c, 0xec,
+0xb7, 0xc9, 0x87, 0xae, 0x84, 0x9e, 0x7a, 0x9b, 0xe8, 0xa4, 0x17, 0xb9, 0x39, 0xd5, 0xda, 0xf5,
+0x3a, 0x17, 0x65, 0x36, 0xa5, 0x4f, 0x02, 0x60, 0xe0, 0x64, 0x7a, 0x5c, 0x11, 0x48, 0x2d, 0x2a,
+0x34, 0x07, 0x52, 0xe4, 0x77, 0xc6, 0x7d, 0xb1, 0xe8, 0xa7, 0xa4, 0xa9, 0x31, 0xb5, 0x7b, 0xc8,
+0xb5, 0xe0, 0xc6, 0xfb, 0x8a, 0x17, 0x49, 0x31, 0x8b, 0x46, 0xeb, 0x53, 0xae, 0x56, 0x5b, 0x4d,
+0x1b, 0x39, 0xbd, 0x1c, 0x90, 0xfd, 0x73, 0xe0, 0x7b, 0xc9, 0xc9, 0xbb, 0x93, 0xb7, 0x2b, 0xbc,
+0x4d, 0xc7, 0x19, 0xd7, 0x14, 0xea, 0xea, 0xfe, 0x5a, 0x14, 0x91, 0x28, 0x45, 0x39, 0x31, 0x43,
+0x13, 0x44, 0xd9, 0x3a, 0xb3, 0x28, 0x3c, 0x11, 0xb6, 0xf8, 0xa9, 0xe3, 0xad, 0xd4, 0x15, 0xcd,
+0x23, 0xcc, 0xc7, 0xd0, 0x09, 0xd9, 0xea, 0xe3, 0x90, 0xf0, 0x9e, 0xfe, 0x60, 0x0d, 0x86, 0x1b,
+0x47, 0x27, 0x09, 0x2e, 0x0b, 0x2e, 0xf7, 0x26, 0x02, 0x1a, 0x1e, 0x0a, 0x9e, 0xfa, 0x1c, 0xee,
+0x12, 0xe6, 0xb1, 0xe2, 0x23, 0xe3, 0x0a, 0xe6, 0x74, 0xea, 0x7c, 0xef, 0x3e, 0xf5, 0x9e, 0xfb,
+0xa6, 0x02, 0x1a, 0x0a, 0xf8, 0x10, 0xc8, 0x15, 0x7e, 0x17, 0x6e, 0x15, 0x76, 0x10, 0xfa, 0x09,
+0x8a, 0x03, 0x8e, 0xfe, 0x84, 0xfb, 0x3e, 0xfa, 0xe0, 0xf9, 0xc4, 0xf9, 0x02, 0xf9, 0xb0, 0xf7,
+0xa2, 0xf5, 0x9a, 0xf3, 0xc0, 0xf2, 0xfe, 0xf3, 0x8e, 0xf7, 0x04, 0xfd, 0x2c, 0x03, 0xca, 0x08,
+0x1a, 0x0d, 0xbc, 0x0f, 0x2a, 0x11, 0xb2, 0x11, 0xb6, 0x11, 0x0c, 0x11, 0x24, 0x0f, 0x30, 0x0b,
+0xa6, 0x04, 0xa0, 0xfb, 0xde, 0xf0, 0x44, 0xe6, 0x43, 0xde, 0x49, 0xdb, 0xa1, 0xde, 0x84, 0xe7,
+0x2c, 0xf4, 0xcc, 0x01, 0x68, 0x0e, 0x9c, 0x18, 0xf3, 0x1f, 0xa7, 0x24, 0xe9, 0x26, 0x43, 0x26,
+0x21, 0x22, 0x98, 0x19, 0x32, 0x0c, 0xbc, 0xfa, 0x12, 0xe7, 0xaf, 0xd4, 0xa5, 0xc7, 0x17, 0xc3,
+0x51, 0xc8, 0x3b, 0xd6, 0xa8, 0xe9, 0xce, 0xfe, 0xc6, 0x12, 0x33, 0x23, 0xa7, 0x2f, 0xe5, 0x37,
+0x6d, 0x3b, 0xeb, 0x39, 0xef, 0x31, 0x0d, 0x23, 0x7a, 0x0d, 0x5e, 0xf3, 0x31, 0xd8, 0x03, 0xc1,
+0x3d, 0xb2, 0x0b, 0xaf, 0x19, 0xb8, 0x0d, 0xcb, 0x56, 0xe4, 0xa0, 0xff, 0x4a, 0x19, 0x2d, 0x2f,
+0xf3, 0x3f, 0x9f, 0x4a, 0x5f, 0x4e, 0xb5, 0x49, 0xe5, 0x3b, 0x2b, 0x25, 0x76, 0x07, 0x56, 0xe6,
+0xd1, 0xc6, 0xf7, 0xad, 0x5a, 0xa0, 0x00, 0xa0, 0xa9, 0xac, 0x33, 0xc4, 0x79, 0xe2, 0x36, 0x03,
+0x39, 0x22, 0xcf, 0x3c, 0xbb, 0x50, 0x50, 0x5c, 0x66, 0x5d, 0x4f, 0x53, 0x89, 0x3e, 0x9f, 0x20,
+0x3a, 0xfd, 0x99, 0xd8, 0x21, 0xb8, 0x80, 0xa0, 0x08, 0x95, 0x48, 0x97, 0x10, 0xa7, 0x3d, 0xc2,
+0xb8, 0xe4, 0x04, 0x0a, 0x61, 0x2d, 0x25, 0x4b, 0xfc, 0x5f, 0x58, 0x69, 0xbc, 0x65, 0x4e, 0x55,
+0x33, 0x3a, 0xb0, 0x17, 0x34, 0xf2, 0xbb, 0xcd, 0xef, 0xae, 0x80, 0x99, 0x42, 0x90, 0xa0, 0x94,
+0xae, 0xa6, 0xbd, 0xc4, 0xce, 0xea, 0x9a, 0x13, 0x4b, 0x39, 0x4a, 0x57, 0xdc, 0x69, 0x8a, 0x6e,
+0x28, 0x65, 0x63, 0x4f, 0x09, 0x31, 0xdc, 0x0d, 0x94, 0xe9, 0x6b, 0xc7, 0x1c, 0xab, 0xd6, 0x97,
+0x5a, 0x90, 0x92, 0x96, 0xd8, 0xaa, 0x99, 0xcb, 0x02, 0xf4, 0x45, 0x1e, 0xd3, 0x43, 0x80, 0x5f,
+0x88, 0x6d, 0xd4, 0x6c, 0x98, 0x5e, 0xff, 0x45, 0xfd, 0x26, 0x1e, 0x05, 0x51, 0xe3, 0x2d, 0xc4,
+0xb0, 0xaa, 0xd6, 0x99, 0x94, 0x94, 0xe6, 0x9c, 0x3f, 0xb3, 0x73, 0xd5, 0x82, 0xfe, 0x79, 0x27,
+0xc9, 0x49, 0x4e, 0x60, 0xd4, 0x68, 0xac, 0x63, 0x01, 0x53, 0x67, 0x3a, 0x69, 0x1d, 0xd2, 0xfe,
+0x89, 0xe0, 0x27, 0xc5, 0xef, 0xae, 0x54, 0xa1, 0xf0, 0x9e, 0x90, 0xa9, 0x5b, 0xc1, 0x1f, 0xe3,
+0x3a, 0x09, 0xf5, 0x2c, 0xb5, 0x48, 0x8c, 0x58, 0x18, 0x5c, 0xf9, 0x53, 0x47, 0x43, 0x0d, 0x2d,
+0x70, 0x13, 0x2e, 0xf9, 0xb1, 0xdf, 0x49, 0xc9, 0xf3, 0xb7, 0x5b, 0xae, 0xe7, 0xae, 0xf7, 0xba,
+0x49, 0xd1, 0x9c, 0xee, 0x0e, 0x0e, 0xfb, 0x29, 0x5f, 0x3e, 0xef, 0x48, 0xa9, 0x49, 0x03, 0x42,
+0xe5, 0x33, 0x57, 0x21, 0xba, 0x0c, 0xa0, 0xf7, 0xd8, 0xe3, 0xd7, 0xd2, 0x83, 0xc6, 0xdf, 0xc0,
+0x5d, 0xc3, 0x19, 0xce, 0xf9, 0xdf, 0x24, 0xf6, 0xbe, 0x0c, 0x59, 0x20, 0x29, 0x2e, 0xdf, 0x34,
+0x79, 0x34, 0xfd, 0x2d, 0x3d, 0x23, 0xb4, 0x15, 0xfa, 0x06, 0xa0, 0xf8, 0xe6, 0xeb, 0x7b, 0xe1,
+0x3f, 0xda, 0xf1, 0xd6, 0x51, 0xd8, 0x9b, 0xde, 0xea, 0xe8, 0x56, 0xf6, 0xdc, 0x04, 0x3c, 0x12,
+0xde, 0x1b, 0x5d, 0x20, 0xef, 0x1f, 0xc0, 0x1b, 0xc6, 0x14, 0x9c, 0x0c, 0xa8, 0x04, 0xc4, 0xfd,
+0x78, 0xf8, 0x7a, 0xf4, 0x5e, 0xf1, 0xe2, 0xee, 0x20, 0xed, 0xae, 0xec, 0x82, 0xee, 0xd6, 0xf2,
+0x0a, 0xf9, 0xd6, 0xff, 0x78, 0x05, 0xd4, 0x08, 0xb4, 0x09, 0xb8, 0x08, 0x36, 0x07, 0x5a, 0x06,
+0xd0, 0x06, 0x90, 0x08, 0xae, 0x0a, 0x9e, 0x0b, 0xce, 0x09, 0xaa, 0x04, 0x02, 0xfd, 0xa2, 0xf4,
+0x8c, 0xed, 0x8a, 0xe9, 0xea, 0xe8, 0xdc, 0xea, 0xf8, 0xed, 0x44, 0xf1, 0xd4, 0xf4, 0x36, 0xf9,
+0x46, 0xff, 0x44, 0x07, 0xc6, 0x10, 0x34, 0x1a, 0x43, 0x21, 0xb7, 0x23, 0x3d, 0x20, 0xd4, 0x16,
+0xe4, 0x08, 0x2e, 0xf9, 0xb2, 0xea, 0x9d, 0xdf, 0xd5, 0xd8, 0x1b, 0xd6, 0x0d, 0xd7, 0x31, 0xdb,
+0x95, 0xe2, 0xa0, 0xed, 0x3a, 0xfc, 0x6c, 0x0d, 0xdd, 0x1e, 0xe5, 0x2d, 0x9f, 0x37, 0xe1, 0x39,
+0x81, 0x33, 0x29, 0x25, 0x0e, 0x11, 0x44, 0xfa, 0x64, 0xe4, 0x15, 0xd2, 0x99, 0xc5, 0x87, 0xbf,
+0x5b, 0xc0, 0xf5, 0xc7, 0x11, 0xd6, 0xb4, 0xe9, 0x0c, 0x01, 0x54, 0x19, 0x97, 0x2f, 0xd9, 0x40,
+0x3d, 0x4a, 0x91, 0x4a, 0x0b, 0x41, 0xa1, 0x2e, 0x4c, 0x15, 0x4e, 0xf8, 0x7d, 0xdb, 0x0d, 0xc3,
+0xe7, 0xb1, 0x4c, 0xaa, 0x31, 0xad, 0x27, 0xba, 0xe1, 0xcf, 0x72, 0xeb, 0x98, 0x09, 0xb7, 0x26,
+0x71, 0x3f, 0x01, 0x51, 0x96, 0x59, 0xa6, 0x57, 0xfb, 0x4a, 0x4d, 0x34, 0x64, 0x15, 0x40, 0xf2,
+0x6f, 0xcf, 0x43, 0xb2, 0x88, 0x9f, 0xe6, 0x99, 0x96, 0xa1, 0x5b, 0xb5, 0xbd, 0xd1, 0xc4, 0xf2,
+0x2a, 0x14, 0x33, 0x32, 0xab, 0x4a, 0x84, 0x5b, 0xcc, 0x62, 0x12, 0x5f, 0xa9, 0x4f, 0xd9, 0x34,
+0x2c, 0x11, 0x64, 0xe8, 0x41, 0xc1, 0xae, 0xa2, 0x6a, 0x91, 0xea, 0x8f, 0x44, 0x9d, 0x85, 0xb6,
+0x31, 0xd7, 0xb0, 0xfa, 0x8d, 0x1c, 0x97, 0x3a, 0x77, 0x52, 0x4c, 0x62, 0x24, 0x68, 0xfc, 0x61,
+0x33, 0x4f, 0x3d, 0x30, 0x14, 0x08, 0x3f, 0xdc, 0x3b, 0xb4, 0x38, 0x97, 0x0e, 0x8a, 0x92, 0x8d,
+0xa2, 0x9f, 0x45, 0xbc, 0xa9, 0xde, 0x62, 0x02, 0x01, 0x24, 0x05, 0x41, 0xc2, 0x57, 0xf8, 0x65,
+0x1c, 0x69, 0x76, 0x5f, 0x67, 0x48, 0xdd, 0x25, 0x92, 0xfb, 0x33, 0xd0, 0x5b, 0xab, 0x68, 0x93,
+0x7c, 0x8b, 0x20, 0x93, 0x88, 0xa7, 0xaf, 0xc4, 0xb4, 0xe6, 0x3e, 0x09, 0x95, 0x29, 0x23, 0x45,
+0x72, 0x59, 0x56, 0x64, 0x5a, 0x63, 0x9e, 0x55, 0xa3, 0x3b, 0x52, 0x18, 0x3a, 0xf0, 0xab, 0xc9,
+0xc8, 0xaa, 0x5a, 0x98, 0x6c, 0x94, 0xe0, 0x9d, 0x67, 0xb2, 0x7d, 0xce, 0x8e, 0xee, 0x3e, 0x0f,
+0xfd, 0x2c, 0x61, 0x45, 0xe2, 0x55, 0x66, 0x5c, 0x4c, 0x57, 0xef, 0x46, 0xeb, 0x2c, 0x60, 0x0c,
+0xca, 0xe9, 0xbb, 0xc9, 0x6d, 0xb1, 0xec, 0xa3, 0xb0, 0xa2, 0xbf, 0xac, 0x47, 0xc0, 0x4f, 0xda,
+0x62, 0xf7, 0x4c, 0x14, 0xa1, 0x2d, 0xeb, 0x40, 0xb7, 0x4b, 0x3f, 0x4d, 0x6f, 0x45, 0xa7, 0x35,
+0xa1, 0x1f, 0xdc, 0x05, 0x04, 0xeb, 0x8b, 0xd2, 0xb5, 0xbf, 0x29, 0xb5, 0x81, 0xb4, 0xc1, 0xbd,
+0xf9, 0xce, 0xa8, 0xe5, 0x94, 0xfe, 0x28, 0x16, 0x61, 0x29, 0x17, 0x36, 0x47, 0x3b, 0x77, 0x39,
+0xb9, 0x31, 0x5f, 0x25, 0xb2, 0x15, 0xbc, 0x03, 0xd0, 0xf0, 0xdd, 0xde, 0x81, 0xd0, 0x6f, 0xc8,
+0x3b, 0xc8, 0xd9, 0xcf, 0x1d, 0xde, 0x16, 0xf0, 0xae, 0x02, 0xec, 0x12, 0xaf, 0x1e, 0xf9, 0x24,
+0x77, 0x26, 0xeb, 0x23, 0x03, 0x1f, 0x6c, 0x18, 0x58, 0x10, 0x5c, 0x06, 0xe0, 0xfa, 0xea, 0xee,
+0xb8, 0xe4, 0x7f, 0xde, 0xdd, 0xdd, 0x07, 0xe3, 0x24, 0xec, 0x12, 0xf7, 0xea, 0x00, 0x60, 0x08,
+0x86, 0x0c, 0x0a, 0x0e, 0xf4, 0x0d, 0xd8, 0x0d, 0x2e, 0x0e, 0xc4, 0x0e, 0xc4, 0x0e, 0xd4, 0x0c,
+0xa0, 0x08, 0x6e, 0x02, 0xf4, 0xfb, 0xf2, 0xf6, 0xae, 0xf4, 0xee, 0xf4, 0x84, 0xf6, 0x22, 0xf8,
+0xc2, 0xf8, 0x00, 0xf8, 0x74, 0xf6, 0x84, 0xf5, 0x66, 0xf6, 0xe8, 0xf9, 0x40, 0x00, 0x28, 0x08,
+0x1a, 0x10, 0x20, 0x16, 0xce, 0x18, 0x00, 0x18, 0x66, 0x14, 0x22, 0x0f, 0xbc, 0x08, 0xaa, 0x01,
+0x00, 0xfa, 0x06, 0xf2, 0x3c, 0xea, 0xa3, 0xe3, 0x63, 0xdf, 0x73, 0xde, 0x1d, 0xe2, 0x6a, 0xea,
+0xca, 0xf6, 0x1c, 0x06, 0xdc, 0x15, 0x6f, 0x23, 0x99, 0x2c, 0xf3, 0x2f, 0xd1, 0x2c, 0x35, 0x24,
+0x1e, 0x17, 0x5e, 0x07, 0xb6, 0xf6, 0xe8, 0xe6, 0x47, 0xd9, 0x53, 0xcf, 0xfd, 0xc9, 0x73, 0xca,
+0x2b, 0xd1, 0x83, 0xde, 0x6e, 0xf1, 0x00, 0x08, 0x77, 0x1f, 0x33, 0x34, 0x7b, 0x42, 0x6f, 0x47,
+0x79, 0x42, 0x3b, 0x34, 0xb7, 0x1f, 0xc2, 0x07, 0x9e, 0xef, 0xb9, 0xd9, 0x77, 0xc8, 0x8f, 0xbc,
+0x57, 0xb7, 0x89, 0xb9, 0xed, 0xc3, 0x6b, 0xd6, 0x1c, 0xf0, 0x44, 0x0e, 0xf3, 0x2c, 0x1f, 0x47,
+0x92, 0x57, 0x58, 0x5b, 0xbb, 0x51, 0x6d, 0x3d, 0xf3, 0x21, 0xe8, 0x03, 0xb2, 0xe6, 0x71, 0xcd,
+0xbb, 0xb9, 0x31, 0xad, 0xcc, 0xa8, 0x6d, 0xad, 0x29, 0xbc, 0xbd, 0xd4, 0x56, 0xf5, 0x34, 0x1a,
+0xa9, 0x3d, 0x92, 0x59, 0xe6, 0x68, 0xe4, 0x68, 0xfe, 0x59, 0xf1, 0x3f, 0x99, 0x1f, 0x66, 0xfd,
+0x3f, 0xdd, 0xc7, 0xc1, 0x37, 0xad, 0x0c, 0xa1, 0x80, 0x9e, 0xca, 0xa6, 0xbb, 0xba, 0x69, 0xd9,
+0x80, 0xff, 0xcd, 0x27, 0x1d, 0x4c, 0x92, 0x66, 0xc8, 0x72, 0xc0, 0x6e, 0x40, 0x5c, 0xfd, 0x3e,
+0x04, 0x1c, 0x86, 0xf7, 0x63, 0xd5, 0x7b, 0xb8, 0xb2, 0xa3, 0xb2, 0x98, 0x06, 0x99, 0x16, 0xa6,
+0x87, 0xbf, 0x2f, 0xe3, 0x46, 0x0c, 0x0b, 0x35, 0x62, 0x57, 0x84, 0x6e, 0x82, 0x76, 0xde, 0x6e,
+0x60, 0x59, 0x2b, 0x3a, 0x82, 0x15, 0xbe, 0xef, 0x9b, 0xcc, 0xe3, 0xaf, 0x82, 0x9c, 0xf8, 0x94,
+0x88, 0x9a, 0xf1, 0xac, 0xcf, 0xca, 0x40, 0xf0, 0x38, 0x18, 0x55, 0x3d, 0xfa, 0x5a, 0x36, 0x6d,
+0xe6, 0x71, 0x4e, 0x68, 0x0b, 0x52, 0x87, 0x32, 0xdc, 0x0d, 0x18, 0xe8, 0xd1, 0xc5, 0x43, 0xab,
+0xee, 0x9b, 0x92, 0x99, 0x16, 0xa4, 0x29, 0xba, 0xbf, 0xd8, 0xde, 0xfb, 0xfb, 0x1e, 0x69, 0x3e,
+0xba, 0x56, 0x80, 0x65, 0x3c, 0x68, 0x12, 0x5e, 0x41, 0x48, 0x53, 0x29, 0x62, 0x05, 0x55, 0xe1,
+0x17, 0xc2, 0x11, 0xac, 0x36, 0xa2, 0xd4, 0xa4, 0xa7, 0xb2, 0x4d, 0xc9, 0x2a, 0xe5, 0xfc, 0x02,
+0xe5, 0x1f, 0x7f, 0x39, 0x91, 0x4d, 0x82, 0x59, 0x36, 0x5b, 0x27, 0x51, 0x07, 0x3c, 0x71, 0x1e,
+0x22, 0xfd, 0x17, 0xdd, 0x89, 0xc3, 0xc9, 0xb3, 0x51, 0xaf, 0x61, 0xb5, 0xed, 0xc3, 0xbb, 0xd7,
+0x82, 0xee, 0x02, 0x06, 0x97, 0x1c, 0x9b, 0x30, 0x9d, 0x40, 0xf1, 0x49, 0x6d, 0x4a, 0xb5, 0x40,
+0x25, 0x2d, 0x3c, 0x13, 0x50, 0xf7, 0x4f, 0xde, 0x23, 0xcc, 0xff, 0xc2, 0xa7, 0xc2, 0xd1, 0xc9,
+0xcd, 0xd5, 0xa0, 0xe4, 0xb4, 0xf4, 0xf6, 0x04, 0xe4, 0x14, 0xad, 0x23, 0x73, 0x2f, 0x59, 0x36,
+0x0b, 0x36, 0x99, 0x2d, 0x57, 0x1e, 0xd0, 0x0a, 0x02, 0xf7, 0xbe, 0xe6, 0x35, 0xdc, 0xfd, 0xd7,
+0x65, 0xd9, 0xa1, 0xde, 0x1e, 0xe6, 0xa0, 0xee, 0x5a, 0xf7, 0x66, 0x00, 0xba, 0x09, 0xb8, 0x12,
+0x54, 0x1a, 0x09, 0x1f, 0x9d, 0x1f, 0x94, 0x1b, 0x70, 0x13, 0x1a, 0x09, 0xf2, 0xfe, 0xfa, 0xf6,
+0x1c, 0xf2, 0x44, 0xf0, 0x9c, 0xf0, 0x46, 0xf2, 0x20, 0xf4, 0xb0, 0xf5, 0xe4, 0xf6, 0x64, 0xf8,
+0x76, 0xfa, 0xa2, 0xfd, 0xe4, 0x01, 0xba, 0x06, 0x18, 0x0b, 0x06, 0x0e, 0xd4, 0x0e, 0x0a, 0x0e,
+0x62, 0x0c, 0x7c, 0x0a, 0xf0, 0x08, 0x74, 0x07, 0xac, 0x05, 0xfa, 0x02, 0xe6, 0xfe, 0x4c, 0xf9,
+0xba, 0xf2, 0xfe, 0xeb, 0x1a, 0xe7, 0x88, 0xe5, 0x88, 0xe8, 0x14, 0xf0, 0xb6, 0xfa, 0x1e, 0x06,
+0x86, 0x10, 0x2e, 0x18, 0x1f, 0x1d, 0x73, 0x1f, 0x5f, 0x1f, 0x2d, 0x1d, 0x80, 0x18, 0x10, 0x11,
+0x90, 0x06, 0x14, 0xf9, 0xc0, 0xe9, 0x31, 0xdb, 0x5b, 0xd0, 0x7f, 0xcc, 0x05, 0xd1, 0x85, 0xdd,
+0xc4, 0xef, 0x8a, 0x03, 0xb8, 0x15, 0x4b, 0x24, 0x19, 0x2e, 0x73, 0x33, 0x53, 0x34, 0xcf, 0x30,
+0xc1, 0x28, 0xa6, 0x1b, 0x3a, 0x09, 0x36, 0xf3, 0xc5, 0xdb, 0x15, 0xc7, 0x93, 0xb9, 0x37, 0xb6,
+0xd7, 0xbe, 0x5f, 0xd1, 0x66, 0xea, 0x52, 0x05, 0xf3, 0x1d, 0x7d, 0x31, 0x11, 0x3f, 0xfd, 0x45,
+0x65, 0x46, 0x83, 0x40, 0x4d, 0x33, 0x2f, 0x1f, 0xf4, 0x04, 0x34, 0xe7, 0x77, 0xca, 0x59, 0xb3,
+0x4a, 0xa6, 0x36, 0xa6, 0x27, 0xb3, 0x07, 0xcb, 0x92, 0xe9, 0xb6, 0x09, 0x1b, 0x27, 0xdb, 0x3e,
+0xed, 0x4e, 0x16, 0x57, 0x1c, 0x56, 0x95, 0x4b, 0xff, 0x37, 0x24, 0x1c, 0xf8, 0xfa, 0x71, 0xd8,
+0xab, 0xb9, 0x28, 0xa3, 0xf2, 0x98, 0x22, 0x9c, 0xcd, 0xac, 0x95, 0xc8, 0x22, 0xeb, 0x78, 0x0f,
+0xb5, 0x30, 0xa5, 0x4b, 0xa4, 0x5d, 0x00, 0x65, 0x62, 0x60, 0x17, 0x50, 0xa9, 0x35, 0xd8, 0x13,
+0xce, 0xee, 0x0d, 0xcb, 0x2f, 0xad, 0x54, 0x99, 0xa6, 0x91, 0xb6, 0x97, 0x47, 0xab, 0x05, 0xca,
+0xac, 0xef, 0x3e, 0x17, 0x5d, 0x3b, 0xf4, 0x57, 0xae, 0x69, 0xe2, 0x6d, 0x1e, 0x64, 0xb9, 0x4d,
+0xf1, 0x2d, 0x08, 0x09, 0x5b, 0xe3, 0x13, 0xc1, 0x3a, 0xa6, 0x5e, 0x95, 0x92, 0x90, 0x12, 0x99,
+0x67, 0xae, 0x4b, 0xcf, 0x56, 0xf7, 0xc7, 0x20, 0xf3, 0x45, 0x84, 0x61, 0xaa, 0x6f, 0xa4, 0x6e,
+0x06, 0x5f, 0x05, 0x44, 0x4d, 0x22, 0xe0, 0xfd, 0xbf, 0xda, 0x13, 0xbc, 0xd6, 0xa4, 0x26, 0x97,
+0xc8, 0x94, 0x10, 0x9f, 0x5d, 0xb6, 0xed, 0xd8, 0xf4, 0x01, 0x3d, 0x2b, 0x1d, 0x4e, 0x54, 0x65,
+0xd6, 0x6d, 0x10, 0x67, 0x9f, 0x53, 0xbf, 0x37, 0xa0, 0x17, 0xcc, 0xf6, 0xe7, 0xd7, 0x7f, 0xbd,
+0xac, 0xa9, 0x8c, 0x9e, 0xf2, 0x9d, 0x8e, 0xa9, 0xa3, 0xc1, 0xdc, 0xe3, 0x14, 0x0b, 0x9f, 0x30,
+0x4d, 0x4e, 0x94, 0x5f, 0x10, 0x63, 0x52, 0x59, 0xa7, 0x45, 0xe5, 0x2b, 0x6e, 0x0f, 0x1a, 0xf3,
+0xab, 0xd8, 0x6d, 0xc2, 0x33, 0xb2, 0x2e, 0xaa, 0xd5, 0xab, 0xe9, 0xb8, 0x91, 0xd0, 0x04, 0xf0,
+0x3e, 0x12, 0x0d, 0x31, 0xa3, 0x47, 0x1d, 0x53, 0xd3, 0x52, 0x5b, 0x48, 0xb1, 0x36, 0xab, 0x20,
+0x34, 0x09, 0x1e, 0xf2, 0xf5, 0xdc, 0x9b, 0xcb, 0x8b, 0xbf, 0x29, 0xba, 0x87, 0xbd, 0xf1, 0xc9,
+0x9d, 0xde, 0x82, 0xf8, 0x0a, 0x13, 0x0b, 0x2a, 0x0f, 0x3a, 0x17, 0x41, 0x3b, 0x3f, 0xeb, 0x35,
+0x39, 0x27, 0xda, 0x15, 0xde, 0x03, 0xda, 0xf2, 0x62, 0xe4, 0x1b, 0xd9, 0x29, 0xd2, 0x23, 0xd0,
+0x87, 0xd3, 0x95, 0xdc, 0x34, 0xea, 0x94, 0xfa, 0x72, 0x0b, 0x44, 0x1a, 0xd3, 0x24, 0xf1, 0x29,
+0x2f, 0x29, 0x4f, 0x23, 0xde, 0x19, 0x6c, 0x0e, 0xce, 0x02, 0x82, 0xf8, 0x3a, 0xf0, 0xa4, 0xea,
+0xe6, 0xe7, 0x26, 0xe7, 0x04, 0xe8, 0xb0, 0xea, 0x84, 0xef, 0xb4, 0xf6, 0x52, 0xff, 0x30, 0x08,
+0x4a, 0x0f, 0x32, 0x13, 0xa2, 0x13, 0xdc, 0x10, 0x86, 0x0c, 0xde, 0x07, 0x56, 0x04, 0x94, 0x02,
+0x12, 0x02, 0x1c, 0x02, 0x26, 0x01, 0x5a, 0xfe, 0xae, 0xf9, 0x44, 0xf4, 0xd6, 0xef, 0x18, 0xee,
+0x7a, 0xef, 0x20, 0xf3, 0xc6, 0xf7, 0xe8, 0xfb, 0x06, 0xff, 0x8a, 0x01, 0x3e, 0x04, 0x44, 0x08,
+0xac, 0x0d, 0xda, 0x13, 0xde, 0x18, 0xe0, 0x1a, 0x2a, 0x18, 0x38, 0x10, 0x4c, 0x04, 0x9e, 0xf6,
+0x22, 0xea, 0x2d, 0xe1, 0xe7, 0xdc, 0xaf, 0xdc, 0xff, 0xdf, 0x7e, 0xe5, 0xa2, 0xec, 0xd6, 0xf5,
+0xc0, 0x00, 0xa6, 0x0d, 0x26, 0x1b, 0xff, 0x26, 0x0b, 0x2f, 0x01, 0x31, 0x5f, 0x2b, 0xd9, 0x1e,
+0xd0, 0x0c, 0x06, 0xf8, 0x74, 0xe4, 0x3f, 0xd4, 0xf7, 0xc9, 0x37, 0xc6, 0x8b, 0xc8, 0xbf, 0xd0,
+0x1f, 0xde, 0x6c, 0xef, 0xee, 0x03, 0x42, 0x19, 0xc7, 0x2c, 0x4b, 0x3c, 0x79, 0x44, 0xe5, 0x43,
+0x5d, 0x3a, 0x31, 0x28, 0x1e, 0x10, 0x18, 0xf5, 0x8b, 0xda, 0xa1, 0xc4, 0x19, 0xb6, 0x7f, 0xb0,
+0xaf, 0xb4, 0xe5, 0xc1, 0x95, 0xd6, 0xc0, 0xf0, 0xde, 0x0c, 0xd3, 0x27, 0xb9, 0x3e, 0x73, 0x4e,
+0x52, 0x55, 0xd1, 0x51, 0x2f, 0x44, 0x7d, 0x2d, 0x3c, 0x10, 0x48, 0xef, 0x41, 0xcf, 0xc7, 0xb4,
+0xd0, 0xa3, 0x5a, 0x9f, 0x50, 0xa7, 0xf7, 0xba, 0x23, 0xd7, 0xf4, 0xf7, 0xe0, 0x18, 0x37, 0x36,
+0x13, 0x4d, 0x6a, 0x5b, 0xe8, 0x5f, 0x6a, 0x59, 0x6f, 0x48, 0xe5, 0x2d, 0xfa, 0x0b, 0x32, 0xe6,
+0xcd, 0xc1, 0xb0, 0xa4, 0x18, 0x94, 0xbe, 0x92, 0x3c, 0xa0, 0x41, 0xba, 0x4d, 0xdc, 0xe8, 0x00,
+0xe5, 0x23, 0x1d, 0x41, 0xee, 0x56, 0xb8, 0x63, 0xea, 0x65, 0x12, 0x5d, 0xfb, 0x48, 0xb3, 0x2a,
+0x92, 0x04, 0x11, 0xdb, 0x39, 0xb4, 0xa6, 0x97, 0x24, 0x8a, 0xca, 0x8d, 0x32, 0xa1, 0xe5, 0xbf,
+0xd4, 0xe4, 0x42, 0x0a, 0x09, 0x2c, 0x7b, 0x47, 0x66, 0x5b, 0x42, 0x66, 0xc0, 0x66, 0xb8, 0x5b,
+0xa3, 0x44, 0x0d, 0x23, 0xce, 0xf9, 0xb1, 0xce, 0x46, 0xa9, 0x60, 0x90, 0x4e, 0x88, 0x44, 0x91,
+0x58, 0xa8, 0xc9, 0xc8, 0x56, 0xed, 0x12, 0x11, 0xc9, 0x30, 0x63, 0x4a, 0x6c, 0x5c, 0x24, 0x65,
+0xae, 0x62, 0x27, 0x54, 0xeb, 0x39, 0x44, 0x16, 0x50, 0xed, 0x29, 0xc5, 0xd0, 0xa4, 0xa6, 0x91,
+0x6c, 0x8e, 0x6c, 0x9a, 0x87, 0xb2, 0x77, 0xd2, 0x28, 0xf5, 0x8a, 0x16, 0x8d, 0x33, 0x5d, 0x4a,
+0x3a, 0x59, 0x66, 0x5e, 0x6e, 0x58, 0x3f, 0x47, 0x0f, 0x2c, 0xde, 0x09, 0xea, 0xe4, 0xc9, 0xc2,
+0xfc, 0xa8, 0x46, 0x9b, 0x6a, 0x9b, 0x5a, 0xa8, 0x77, 0xbf, 0xe7, 0xdc, 0x46, 0xfc, 0xf2, 0x19,
+0x4f, 0x33, 0x1d, 0x46, 0xd5, 0x50, 0xf7, 0x51, 0x01, 0x49, 0x2b, 0x37, 0x25, 0x1e, 0x14, 0x01,
+0x63, 0xe3, 0xeb, 0xc8, 0x55, 0xb5, 0x5b, 0xab, 0x41, 0xac, 0xbf, 0xb7, 0xf7, 0xcb, 0x96, 0xe5,
+0xce, 0x00, 0x48, 0x1a, 0xe3, 0x2e, 0xdb, 0x3c, 0xaf, 0x42, 0x1f, 0x40, 0x2f, 0x36, 0x7f, 0x26,
+0xfc, 0x12, 0x88, 0xfd, 0x1e, 0xe8, 0xe5, 0xd4, 0x91, 0xc6, 0xf9, 0xbe, 0xf3, 0xbf, 0x79, 0xc9,
+0x1f, 0xda, 0x1c, 0xef, 0x9a, 0x04, 0xc0, 0x17, 0xc5, 0x25, 0x93, 0x2d, 0xfb, 0x2e, 0xb9, 0x2a,
+0xb7, 0x22, 0x54, 0x18, 0x74, 0x0c, 0xba, 0xff, 0x6a, 0xf2, 0xa0, 0xe5, 0x53, 0xdb, 0x1f, 0xd5,
+0xe7, 0xd4, 0x4b, 0xdb, 0xce, 0xe6, 0x54, 0xf5, 0x76, 0x03, 0x92, 0x0e, 0xbc, 0x15, 0x62, 0x18,
+0xa6, 0x17, 0xf8, 0x14, 0xa2, 0x11, 0x7a, 0x0e, 0x40, 0x0b, 0xf0, 0x06, 0x06, 0x01, 0xe6, 0xf9,
+0x86, 0xf2, 0x04, 0xed, 0xd4, 0xea, 0x76, 0xec, 0x4c, 0xf1, 0x28, 0xf7, 0x12, 0xfc, 0x26, 0xff,
+0x20, 0x00, 0x14, 0x00, 0x34, 0x00, 0x70, 0x01, 0x94, 0x04, 0x32, 0x09, 0xe4, 0x0d, 0x46, 0x11,
+0xce, 0x11, 0x4e, 0x0f, 0x96, 0x0a, 0xaa, 0x04, 0x1a, 0xff, 0x46, 0xfa, 0x20, 0xf6, 0x56, 0xf2,
+0x58, 0xee, 0xc2, 0xea, 0x24, 0xe8, 0xc2, 0xe7, 0x96, 0xea, 0x06, 0xf1, 0xfe, 0xfa, 0x2a, 0x07,
+0xa0, 0x13, 0x29, 0x1e, 0xad, 0x24, 0x2d, 0x26, 0x89, 0x22, 0x5e, 0x1a, 0xfa, 0x0e, 0xbe, 0x01,
+0x02, 0xf4, 0x56, 0xe7, 0xa9, 0xdc, 0x17, 0xd5, 0x9d, 0xd1, 0xe9, 0xd2, 0x95, 0xd9, 0x8c, 0xe5,
+0xf6, 0xf5, 0x34, 0x09, 0xed, 0x1c, 0x0f, 0x2e, 0xd3, 0x39, 0xe3, 0x3d, 0x1d, 0x39, 0x53, 0x2c,
+0x54, 0x19, 0x0a, 0x03, 0xca, 0xec, 0xfd, 0xd8, 0xe1, 0xc9, 0xa3, 0xc0, 0xb9, 0xbd, 0xc9, 0xc1,
+0xa1, 0xcc, 0xf7, 0xdd, 0xc8, 0xf4, 0xec, 0x0e, 0x6b, 0x29, 0x4f, 0x40, 0x47, 0x4f, 0x11, 0x53,
+0x9f, 0x4a, 0x31, 0x37, 0x7d, 0x1c, 0xb8, 0xfe, 0x2f, 0xe2, 0x63, 0xca, 0x59, 0xb9, 0x0b, 0xb0,
+0xbf, 0xae, 0x7f, 0xb5, 0x83, 0xc4, 0x45, 0xdb, 0x70, 0xf8, 0x1e, 0x19, 0x55, 0x39, 0x8b, 0x53,
+0xee, 0x62, 0xb4, 0x63, 0xb0, 0x55, 0xc7, 0x3b, 0x8c, 0x1a, 0x9c, 0xf7, 0x55, 0xd7, 0x4d, 0xbd,
+0x87, 0xab, 0xb8, 0xa2, 0x38, 0xa3, 0x4f, 0xad, 0x15, 0xc1, 0xcd, 0xdd, 0x32, 0x01, 0x0b, 0x27,
+0x21, 0x4a, 0x5a, 0x64, 0x98, 0x70, 0x9a, 0x6c, 0x04, 0x59, 0x39, 0x3a, 0x72, 0x15, 0xea, 0xef,
+0x55, 0xce, 0xaf, 0xb3, 0x18, 0xa2, 0x6c, 0x9a, 0x28, 0x9d, 0xdc, 0xaa, 0x91, 0xc3, 0x84, 0xe5,
+0x34, 0x0d, 0x2b, 0x35, 0x78, 0x57, 0xac, 0x6e, 0x8c, 0x76, 0xfe, 0x6d, 0xe6, 0x56, 0x8f, 0x35,
+0x34, 0x0f, 0xa0, 0xe8, 0x2d, 0xc6, 0x5f, 0xab, 0x92, 0x9a, 0x36, 0x95, 0xdc, 0x9b, 0xbb, 0xae,
+0x87, 0xcc, 0x3a, 0xf2, 0xc6, 0x1a, 0xbf, 0x40, 0xf2, 0x5e, 0x2e, 0x71, 0xb8, 0x74, 0x32, 0x69,
+0x9b, 0x50, 0xf7, 0x2e, 0x90, 0x08, 0x21, 0xe2, 0x2f, 0xc0, 0x9e, 0xa6, 0x7e, 0x98, 0xf4, 0x96,
+0x58, 0xa2, 0x83, 0xb9, 0xe1, 0xd9, 0x16, 0xff, 0x3d, 0x24, 0xcb, 0x44, 0x4a, 0x5d, 0x02, 0x6b,
+0xda, 0x6b, 0x98, 0x5f, 0x77, 0x47, 0xbf, 0x26, 0x9c, 0x01, 0xb1, 0xdc, 0x11, 0xbd, 0xca, 0xa6,
+0xc8, 0x9c, 0xe2, 0x9f, 0x47, 0xaf, 0x89, 0xc8, 0xca, 0xe7, 0xe2, 0x08, 0xd3, 0x27, 0x17, 0x42,
+0x4e, 0x55, 0x8c, 0x5f, 0x06, 0x5f, 0xdf, 0x52, 0x29, 0x3c, 0x63, 0x1d, 0xc4, 0xfa, 0x51, 0xd9,
+0x0f, 0xbe, 0xfd, 0xac, 0x18, 0xa8, 0x33, 0xaf, 0x37, 0xc0, 0xfb, 0xd7, 0x98, 0xf2, 0x18, 0x0d,
+0x2b, 0x25, 0x41, 0x39, 0x13, 0x48, 0x8b, 0x4f, 0x49, 0x4e, 0x21, 0x43, 0xaf, 0x2e, 0x6a, 0x13,
+0x5e, 0xf5, 0xb9, 0xd9, 0xf1, 0xc4, 0x03, 0xba, 0xa7, 0xb9, 0xb5, 0xc2, 0x57, 0xd2, 0x88, 0xe5,
+0x7e, 0xf9, 0x90, 0x0c, 0xd7, 0x1d, 0x73, 0x2c, 0x69, 0x37, 0xff, 0x3c, 0xa5, 0x3b, 0x43, 0x32,
+0x71, 0x21, 0x68, 0x0b, 0x34, 0xf4, 0x09, 0xe0, 0x87, 0xd2, 0x19, 0xcd, 0x67, 0xcf, 0x6f, 0xd7,
+0xdb, 0xe2, 0x86, 0xef, 0xf8, 0xfb, 0xb2, 0x07, 0x44, 0x12, 0xaa, 0x1b, 0xfd, 0x22, 0x3f, 0x27,
+0xe5, 0x26, 0x23, 0x21, 0x2c, 0x16, 0x16, 0x08, 0xa8, 0xf9, 0xfc, 0xed, 0xdc, 0xe6, 0x9e, 0xe4,
+0x86, 0xe6, 0xda, 0xea, 0x42, 0xf0, 0x96, 0xf5, 0x72, 0xfa, 0xca, 0xfe, 0x06, 0x03, 0x5e, 0x07,
+0xf8, 0x0b, 0x00, 0x10, 0x88, 0x12, 0xaa, 0x12, 0x2c, 0x10, 0xc0, 0x0b, 0x76, 0x06, 0xc6, 0x01,
+0x7e, 0xfe, 0xcc, 0xfc, 0x12, 0xfc, 0x8e, 0xfb, 0x8a, 0xfa, 0x94, 0xf8, 0xa0, 0xf5, 0x6a, 0xf2,
+0x04, 0xf0, 0xe8, 0xef, 0xb8, 0xf2, 0xac, 0xf8, 0xd0, 0x00, 0x8e, 0x09, 0x1c, 0x11, 0x3a, 0x16,
+0xa4, 0x18, 0xbe, 0x18, 0x1e, 0x17, 0xe8, 0x13, 0x66, 0x0f, 0x0c, 0x09, 0x10, 0x01, 0x36, 0xf7,
+0x5c, 0xec, 0x05, 0xe2, 0x3b, 0xda, 0x7f, 0xd7, 0x41, 0xdb, 0xaa, 0xe5, 0x18, 0xf5, 0x90, 0x06,
+0xc8, 0x16, 0x47, 0x23, 0xe3, 0x2a, 0xd1, 0x2d, 0x91, 0x2c, 0x9d, 0x27, 0x17, 0x1f, 0x24, 0x13,
+0xe4, 0x03, 0x32, 0xf2, 0x89, 0xdf, 0xd3, 0xce, 0x53, 0xc3, 0x45, 0xc0, 0x3b, 0xc7, 0xb1, 0xd7,
+0x0c, 0xef, 0x9e, 0x08, 0x39, 0x20, 0x41, 0x32, 0xab, 0x3d, 0x21, 0x42, 0x43, 0x40, 0x6b, 0x38,
+0x15, 0x2b, 0x84, 0x18, 0xa4, 0x01, 0xf6, 0xe7, 0xc7, 0xce, 0x19, 0xba, 0x07, 0xae, 0xa9, 0xad,
+0xc9, 0xb9, 0xe7, 0xd0, 0xc4, 0xee, 0x44, 0x0e, 0x5d, 0x2a, 0x15, 0x40, 0x93, 0x4d, 0xd3, 0x52,
+0x8b, 0x4f, 0x55, 0x44, 0x59, 0x31, 0xa4, 0x17, 0x46, 0xf9, 0x5d, 0xd9, 0x8b, 0xbc, 0x4e, 0xa7,
+0xa4, 0x9d, 0x72, 0xa1, 0xc3, 0xb2, 0xdf, 0xce, 0x66, 0xf1, 0xf0, 0x14, 0xa9, 0x34, 0x2b, 0x4d,
+0x6c, 0x5c, 0x38, 0x61, 0x0a, 0x5b, 0x7f, 0x4a, 0xc3, 0x30, 0x3e, 0x10, 0x48, 0xec, 0x7f, 0xc9,
+0xfd, 0xac, 0xb4, 0x9a, 0x16, 0x95, 0x10, 0x9d, 0xdb, 0xb1, 0x01, 0xd1, 0x1a, 0xf6, 0xfa, 0x1b,
+0x17, 0x3e, 0x42, 0x58, 0xb0, 0x67, 0x6a, 0x6a, 0xfe, 0x5f, 0xab, 0x49, 0x11, 0x2a, 0xe8, 0x04,
+0x07, 0xdf, 0x2d, 0xbd, 0x86, 0xa3, 0xd2, 0x94, 0x98, 0x92, 0x46, 0x9d, 0x23, 0xb4, 0x23, 0xd5,
+0x42, 0xfc, 0x39, 0x24, 0xbb, 0x47, 0x16, 0x62, 0x72, 0x6f, 0x02, 0x6e, 0xf2, 0x5d, 0x45, 0x42,
+0x03, 0x1f, 0xfa, 0xf8, 0x9d, 0xd4, 0x21, 0xb6, 0x80, 0xa0, 0x4a, 0x95, 0x7a, 0x95, 0x96, 0xa1,
+0xcf, 0xb9, 0x01, 0xdc, 0x24, 0x04, 0xa5, 0x2c, 0x79, 0x4f, 0x52, 0x67, 0x54, 0x70, 0xa4, 0x69,
+0x00, 0x55, 0xb7, 0x36, 0x38, 0x13, 0x96, 0xef, 0x53, 0xcf, 0x79, 0xb5, 0xe6, 0xa3, 0x92, 0x9b,
+0xde, 0x9d, 0x69, 0xab, 0x55, 0xc4, 0x5c, 0xe6, 0xae, 0x0d, 0xbd, 0x33, 0xc7, 0x52, 0x4c, 0x65,
+0xfa, 0x68, 0xd4, 0x5d, 0x25, 0x47, 0x7b, 0x29, 0x64, 0x09, 0x86, 0xea, 0x7d, 0xcf, 0x65, 0xba,
+0x5f, 0xac, 0xb8, 0xa6, 0x42, 0xaa, 0x61, 0xb8, 0x7f, 0xd0, 0xa2, 0xf0, 0xf0, 0x13, 0x05, 0x35,
+0xff, 0x4d, 0xd8, 0x5a, 0x48, 0x5a, 0xcd, 0x4d, 0xc5, 0x38, 0xf1, 0x1e, 0x12, 0x04, 0xbe, 0xea,
+0x01, 0xd5, 0x29, 0xc4, 0x6b, 0xb9, 0x09, 0xb6, 0xfd, 0xba, 0xb9, 0xc8, 0x93, 0xde, 0x10, 0xfa,
+0x20, 0x17, 0xc7, 0x30, 0xbd, 0x42, 0x8d, 0x4a, 0x09, 0x48, 0x63, 0x3c, 0x75, 0x2a, 0x92, 0x15,
+0x48, 0x00, 0xae, 0xec, 0x2b, 0xdc, 0x4b, 0xd0, 0xa3, 0xc9, 0xf3, 0xc8, 0x9b, 0xce, 0x3b, 0xda,
+0x1e, 0xeb, 0xde, 0xfe, 0xe0, 0x12, 0xed, 0x23, 0x9f, 0x2f, 0x23, 0x34, 0x7d, 0x31, 0xcb, 0x28,
+0x47, 0x1c, 0x04, 0x0e, 0xec, 0xff, 0x94, 0xf3, 0xa6, 0xe9, 0x03, 0xe3, 0xcb, 0xdf, 0xfd, 0xdf,
+0x0d, 0xe3, 0xd6, 0xe8, 0xf8, 0xf0, 0x5a, 0xfb, 0x94, 0x06, 0x64, 0x11, 0xc2, 0x19, 0xab, 0x1d,
+0x2d, 0x1d, 0xce, 0x18, 0xd6, 0x11, 0x02, 0x0a, 0xf0, 0x02, 0x6c, 0xfd, 0xde, 0xf9, 0xec, 0xf7,
+0x1e, 0xf7, 0x20, 0xf6, 0x7c, 0xf4, 0xb2, 0xf2, 0xac, 0xf1, 0x90, 0xf2, 0xb8, 0xf5, 0x1a, 0xfb,
+0xf8, 0x00, 0xe6, 0x05, 0xae, 0x08, 0x7a, 0x09, 0x48, 0x09, 0x0e, 0x09, 0xe4, 0x09, 0xb6, 0x0b,
+0x0e, 0x0e, 0x54, 0x0f, 0x0c, 0x0e, 0x0a, 0x09, 0x8a, 0x00, 0x14, 0xf6, 0x1e, 0xec, 0x22, 0xe5,
+0x83, 0xe2, 0x3c, 0xe4, 0x32, 0xe9, 0xc8, 0xef, 0xd0, 0xf6, 0xe8, 0xfd, 0x7a, 0x05, 0x00, 0x0e,
+0x04, 0x17, 0x69, 0x1f, 0x67, 0x25, 0xe5, 0x26, 0x5b, 0x22, 0x78, 0x17, 0x9e, 0x07, 0x7c, 0xf5,
+0x44, 0xe4, 0xdf, 0xd6, 0x71, 0xcf, 0x7f, 0xce, 0x1f, 0xd3, 0x03, 0xdc, 0x02, 0xe8, 0x80, 0xf6,
+0xce, 0x06, 0x04, 0x18, 0x09, 0x28, 0xe3, 0x34, 0xef, 0x3b, 0x4d, 0x3b, 0x31, 0x32, 0x71, 0x21,
+0x1a, 0x0b, 0x38, 0xf2, 0x77, 0xda, 0x7d, 0xc7, 0xf1, 0xbb, 0x0f, 0xb9, 0xa7, 0xbe, 0xa5, 0xcb,
+0xb7, 0xde, 0xc8, 0xf5, 0xee, 0x0e, 0x1b, 0x27, 0xaf, 0x3b, 0x93, 0x49, 0x0f, 0x4f, 0xb7, 0x4a,
+0x03, 0x3d, 0xe5, 0x26, 0x14, 0x0b, 0x64, 0xec, 0xf5, 0xce, 0x17, 0xb7, 0x6e, 0xa8, 0x6e, 0xa5,
+0xd1, 0xad, 0xe3, 0xc0, 0x9d, 0xdb, 0x26, 0xfb, 0xca, 0x1a, 0x01, 0x37, 0x6f, 0x4c, 0x1a, 0x59,
+0x96, 0x5b, 0x89, 0x53, 0xd1, 0x41, 0xdb, 0x27, 0xb8, 0x07, 0x62, 0xe4, 0x8f, 0xc2, 0x88, 0xa7,
+0x1e, 0x98, 0xd2, 0x96, 0x3c, 0xa4, 0xf9, 0xbd, 0x31, 0xe0, 0x40, 0x05, 0x51, 0x28, 0x39, 0x45,
+0x96, 0x59, 0xce, 0x63, 0x54, 0x63, 0x40, 0x58, 0x2b, 0x43, 0x67, 0x25, 0xec, 0x00, 0xa3, 0xd9,
+0xd1, 0xb4, 0x16, 0x99, 0x84, 0x8b, 0xec, 0x8e, 0x64, 0xa2, 0x5b, 0xc2, 0x10, 0xe9, 0x74, 0x10,
+0x57, 0x33, 0x77, 0x4e, 0x56, 0x60, 0xee, 0x67, 0xee, 0x64, 0x1a, 0x57, 0x35, 0x3f, 0x63, 0x1e,
+0x32, 0xf7, 0xf5, 0xcd, 0x48, 0xa9, 0xda, 0x8f, 0xac, 0x86, 0x42, 0x8f, 0xb2, 0xa7, 0xf7, 0xca,
+0xc0, 0xf2, 0x18, 0x19, 0xc7, 0x39, 0xb5, 0x52, 0x18, 0x62, 0x84, 0x67, 0xe8, 0x61, 0xa7, 0x51,
+0x0d, 0x37, 0xee, 0x13, 0x98, 0xeb, 0x63, 0xc3, 0x1e, 0xa2, 0xce, 0x8d, 0x60, 0x8a, 0xa4, 0x97,
+0x9f, 0xb2, 0xdb, 0xd5, 0xa4, 0xfb, 0x05, 0x1f, 0xab, 0x3c, 0x65, 0x52, 0x34, 0x5f, 0xda, 0x61,
+0xe4, 0x59, 0x35, 0x47, 0x0d, 0x2b, 0xec, 0x07, 0xe1, 0xe1, 0x37, 0xbe, 0xfe, 0xa2, 0xc2, 0x94,
+0x90, 0x95, 0x9e, 0xa4, 0xa9, 0xbe, 0x49, 0xdf, 0x6c, 0x01, 0x07, 0x21, 0xeb, 0x3a, 0x71, 0x4d,
+0xd6, 0x56, 0x6c, 0x56, 0xb9, 0x4b, 0xa3, 0x37, 0x4b, 0x1c, 0xb6, 0xfc, 0xbd, 0xdc, 0xc7, 0xc0,
+0xb1, 0xac, 0x92, 0xa3, 0x86, 0xa6, 0xbf, 0xb4, 0xdd, 0xcb, 0x14, 0xe8, 0x74, 0x05, 0x2f, 0x20,
+0xa3, 0x35, 0x89, 0x43, 0x1f, 0x49, 0xc1, 0x45, 0xf9, 0x39, 0x71, 0x27, 0x7e, 0x10, 0xee, 0xf7,
+0x4d, 0xe0, 0xfd, 0xcb, 0x89, 0xbd, 0xf3, 0xb6, 0x71, 0xb9, 0xdb, 0xc4, 0xcf, 0xd7, 0x24, 0xef,
+0x54, 0x07, 0xbd, 0x1c, 0xb9, 0x2c, 0xc9, 0x35, 0x4d, 0x37, 0xef, 0x31, 0xf3, 0x26, 0x90, 0x18,
+0x9c, 0x08, 0xbc, 0xf8, 0x92, 0xe9, 0x29, 0xdc, 0xbb, 0xd1, 0x35, 0xcc, 0x1f, 0xcd, 0xf9, 0xd4,
+0xcd, 0xe2, 0x06, 0xf4, 0x8a, 0x05, 0x38, 0x14, 0x17, 0x1e, 0x21, 0x22, 0x1f, 0x21, 0x42, 0x1c,
+0x7c, 0x15, 0x38, 0x0e, 0x36, 0x07, 0x42, 0x00, 0xc6, 0xf8, 0x9e, 0xf0, 0xf2, 0xe8, 0x7f, 0xe3,
+0x03, 0xe2, 0x4c, 0xe5, 0xc0, 0xec, 0x5c, 0xf6, 0xa2, 0xff, 0x74, 0x06, 0xbe, 0x09, 0x2e, 0x0a,
+0xe8, 0x08, 0xaa, 0x07, 0x90, 0x07, 0xb6, 0x08, 0x68, 0x0a, 0x5a, 0x0b, 0x1c, 0x0a, 0x4c, 0x06,
+0x82, 0x00, 0x6c, 0xfa, 0x78, 0xf5, 0xc2, 0xf2, 0x34, 0xf2, 0xbe, 0xf2, 0x4a, 0xf3, 0xe8, 0xf2,
+0x40, 0xf2, 0x02, 0xf2, 0xaa, 0xf3, 0x14, 0xf8, 0x2e, 0xff, 0x2a, 0x08, 0x5c, 0x11, 0xdc, 0x18,
+0xeb, 0x1c, 0x9b, 0x1c, 0x10, 0x18, 0x0c, 0x10, 0x18, 0x06, 0xb6, 0xfb, 0xca, 0xf1, 0x0a, 0xe9,
+0xa1, 0xe1, 0x73, 0xdc, 0x47, 0xda, 0xf9, 0xdb, 0x37, 0xe2, 0xb2, 0xec, 0xda, 0xfa, 0xce, 0x0a,
+0xda, 0x1a, 0x91, 0x28, 0x99, 0x31, 0x27, 0x34, 0x2b, 0x2f, 0x35, 0x23, 0x1c, 0x12, 0x80, 0xfe,
+0x08, 0xeb, 0xf3, 0xd9, 0x35, 0xcd, 0x09, 0xc6, 0xef, 0xc4, 0x07, 0xca, 0xe5, 0xd4, 0x54, 0xe5,
+0xd2, 0xf9, 0xae, 0x10, 0x4b, 0x27, 0x91, 0x3a, 0x3b, 0x47, 0x39, 0x4a, 0x31, 0x42, 0x01, 0x30,
+0xba, 0x16, 0x7a, 0xfa, 0x77, 0xdf, 0x3d, 0xc9, 0x21, 0xba, 0x2b, 0xb3, 0x37, 0xb4, 0x87, 0xbc,
+0x0d, 0xcc, 0xc3, 0xe1, 0x5e, 0xfc, 0x56, 0x19, 0x95, 0x35, 0xed, 0x4c, 0xf8, 0x5a, 0x20, 0x5c,
+0x1f, 0x4f, 0xfd, 0x35, 0x42, 0x15, 0x6c, 0xf2, 0x9f, 0xd2, 0xe3, 0xb9, 0x7a, 0xaa, 0xc8, 0xa4,
+0x16, 0xa8, 0x1f, 0xb4, 0x31, 0xc8, 0x99, 0xe3, 0x0c, 0x04, 0x6b, 0x26, 0x6f, 0x46, 0x0a, 0x5f,
+0x4e, 0x6b, 0xd2, 0x67, 0xad, 0x54, 0x55, 0x35, 0x68, 0x0f, 0xf2, 0xe8, 0x29, 0xc7, 0xfb, 0xad,
+0x2e, 0x9f, 0xf4, 0x9a, 0xea, 0xa0, 0x7d, 0xb0, 0x7b, 0xc9, 0xf0, 0xe9, 0xf6, 0x0e, 0x31, 0x34,
+0x9f, 0x54, 0x00, 0x6b, 0xf2, 0x72, 0x6a, 0x6a, 0xd7, 0x52, 0x6f, 0x30, 0xec, 0x08, 0xc7, 0xe1,
+0x13, 0xc0, 0x3a, 0xa7, 0x20, 0x99, 0x6a, 0x96, 0xe0, 0x9e, 0x8d, 0xb2, 0x01, 0xd0, 0xa8, 0xf4,
+0x24, 0x1c, 0x6d, 0x41, 0x54, 0x5f, 0x26, 0x71, 0xf4, 0x73, 0x2a, 0x67, 0xff, 0x4c, 0xb1, 0x29,
+0x02, 0x02, 0x51, 0xdb, 0x31, 0xba, 0x7a, 0xa2, 0x46, 0x96, 0x46, 0x96, 0xb2, 0xa2, 0x8d, 0xba,
+0xa7, 0xdb, 0xde, 0x01, 0x2f, 0x28, 0xa5, 0x49, 0xfc, 0x61, 0x50, 0x6e, 0xf8, 0x6c, 0x40, 0x5e,
+0x2d, 0x44, 0xeb, 0x21, 0xf0, 0xfb, 0xe3, 0xd6, 0xd7, 0xb7, 0xa8, 0xa2, 0x96, 0x99, 0x92, 0x9d,
+0xed, 0xad, 0xb3, 0xc8, 0x48, 0xea, 0xca, 0x0d, 0xd3, 0x2e, 0x9d, 0x49, 0xe4, 0x5b, 0xdc, 0x63,
+0xb6, 0x60, 0x6b, 0x52, 0x0b, 0x3a, 0x48, 0x1a, 0xaa, 0xf6, 0x79, 0xd4, 0xa7, 0xb8, 0x40, 0xa7,
+0x8c, 0xa2, 0x66, 0xaa, 0x5b, 0xbd, 0x0d, 0xd8, 0x42, 0xf6, 0xf2, 0x13, 0xd1, 0x2d, 0x37, 0x42,
+0xb5, 0x4f, 0x64, 0x55, 0x03, 0x52, 0x29, 0x45, 0x57, 0x2f, 0x84, 0x12, 0xac, 0xf2, 0xaf, 0xd4,
+0xd1, 0xbd, 0xa1, 0xb1, 0x69, 0xb1, 0x25, 0xbc, 0x1f, 0xcf, 0x6c, 0xe6, 0x9a, 0xfe, 0xaa, 0x14,
+0x4b, 0x27, 0xb7, 0x35, 0x63, 0x3f, 0x59, 0x43, 0x63, 0x40, 0xa1, 0x35, 0x3d, 0x23, 0x38, 0x0b,
+0x40, 0xf1, 0x15, 0xda, 0x13, 0xca, 0x6d, 0xc3, 0x75, 0xc6, 0xff, 0xd0, 0x33, 0xe0, 0xfe, 0xf0,
+0xe6, 0x00, 0x1e, 0x0f, 0xda, 0x1a, 0x67, 0x24, 0x07, 0x2b, 0x33, 0x2e, 0x93, 0x2c, 0x4b, 0x25,
+0x4c, 0x18, 0x4c, 0x07, 0x86, 0xf5, 0x7a, 0xe6, 0x2b, 0xdd, 0x89, 0xda, 0xcf, 0xdd, 0xf6, 0xe4,
+0xca, 0xed, 0x7e, 0xf6, 0x7c, 0xfe, 0x4e, 0x05, 0x32, 0x0b, 0x50, 0x10, 0x90, 0x14, 0xb4, 0x17,
+0xce, 0x18, 0xbe, 0x16, 0x74, 0x11, 0xa0, 0x09, 0x38, 0x01, 0x14, 0xfa, 0x90, 0xf5, 0xc2, 0xf3,
+0x1c, 0xf4, 0x66, 0xf5, 0x9a, 0xf6, 0x8c, 0xf7, 0xbc, 0xf7, 0xe6, 0xf7, 0x38, 0xf8, 0x94, 0xf9,
+0x9e, 0xfc, 0x58, 0x01, 0x3e, 0x07, 0xee, 0x0c, 0x42, 0x11, 0x20, 0x13, 0xdc, 0x12, 0xda, 0x10,
+0xf4, 0x0d, 0xa2, 0x0a, 0xa4, 0x06, 0x0c, 0x02, 0x88, 0xfc, 0x10, 0xf6, 0x20, 0xef, 0x8e, 0xe8,
+0x9b, 0xe3, 0x07, 0xe2, 0xfa, 0xe4, 0x56, 0xed, 0x3a, 0xfa, 0x16, 0x09, 0xf6, 0x16, 0x41, 0x21,
+0xb5, 0x26, 0x81, 0x27, 0x73, 0x24, 0x57, 0x1e, 0xe8, 0x15, 0x76, 0x0b, 0x00, 0xff, 0x4c, 0xf1,
+0x07, 0xe3, 0x29, 0xd6, 0x4f, 0xcd, 0x87, 0xca, 0x57, 0xd0, 0xc5, 0xde, 0xfe, 0xf3, 0xa8, 0x0b,
+0x6f, 0x21, 0x7d, 0x31, 0x7d, 0x3a, 0x61, 0x3c, 0xf3, 0x37, 0xe9, 0x2e, 0x91, 0x21, 0xd0, 0x10,
+0x44, 0xfd, 0xfe, 0xe7, 0x17, 0xd3, 0x9b, 0xc1, 0xd1, 0xb6, 0x31, 0xb6, 0x01, 0xc1, 0x69, 0xd6,
+0x20, 0xf3, 0xd4, 0x11, 0x11, 0x2d, 0x25, 0x41, 0x43, 0x4c, 0x7b, 0x4e, 0xb3, 0x48, 0xd1, 0x3b,
+0x07, 0x29, 0x80, 0x11, 0x44, 0xf6, 0xf3, 0xd9, 0x2b, 0xc0, 0xc9, 0xac, 0x12, 0xa4, 0xec, 0xa7,
+0xe7, 0xb8, 0xb5, 0xd4, 0x02, 0xf7, 0x0c, 0x1a, 0x97, 0x38, 0xdf, 0x4e, 0x1a, 0x5b, 0x2c, 0x5d,
+0xde, 0x54, 0x9f, 0x43, 0xaf, 0x2a, 0xfc, 0x0b, 0x58, 0xea, 0x93, 0xc9, 0x79, 0xae, 0x44, 0x9d,
+0x9e, 0x98, 0x84, 0xa1, 0x55, 0xb7, 0x1d, 0xd7, 0x5e, 0xfc, 0xc5, 0x21, 0x2f, 0x42, 0x26, 0x5a,
+0x1e, 0x67, 0xa2, 0x67, 0xe4, 0x5b, 0x51, 0x45, 0x07, 0x26, 0xa2, 0x01, 0x33, 0xdc, 0xc7, 0xba,
+0x18, 0xa2, 0xae, 0x94, 0x7c, 0x94, 0x66, 0xa1, 0xff, 0xb9, 0xd9, 0xdb, 0x7e, 0x02, 0x2b, 0x29,
+0xe9, 0x4a, 0x5c, 0x63, 0x0c, 0x6f, 0x8a, 0x6c, 0x0a, 0x5c, 0xed, 0x3f, 0x04, 0x1c, 0xcc, 0xf4,
+0xaf, 0xcf, 0x13, 0xb1, 0x8e, 0x9c, 0xa2, 0x93, 0xda, 0x96, 0xd0, 0xa5, 0x77, 0xbf, 0xaf, 0xe1,
+0xd0, 0x08, 0xf5, 0x2f, 0x8f, 0x51, 0xc4, 0x68, 0xaa, 0x71, 0xe0, 0x6a, 0x98, 0x55, 0xbd, 0x35,
+0x30, 0x10, 0x22, 0xea, 0x41, 0xc8, 0x0b, 0xae, 0xe8, 0x9d, 0x6e, 0x98, 0xb6, 0x9d, 0x95, 0xad,
+0x9b, 0xc7, 0xfa, 0xe9, 0x8e, 0x10, 0x85, 0x36, 0xde, 0x55, 0x5e, 0x69, 0x8a, 0x6d, 0xb8, 0x61,
+0xf7, 0x48, 0x0b, 0x28, 0x50, 0x04, 0x53, 0xe2, 0xbf, 0xc5, 0x09, 0xb1, 0x44, 0xa5, 0xac, 0xa2,
+0x7c, 0xa9, 0x01, 0xba, 0x8d, 0xd3, 0x1e, 0xf4, 0xe6, 0x17, 0xa3, 0x39, 0xad, 0x53, 0x66, 0x61,
+0x7a, 0x60, 0x03, 0x52, 0xa7, 0x39, 0xc0, 0x1b, 0x42, 0xfd, 0x9d, 0xe1, 0x49, 0xcb, 0x73, 0xbb,
+0xc1, 0xb2, 0xab, 0xb1, 0xb3, 0xb8, 0x0d, 0xc8, 0xed, 0xde, 0xb0, 0xfb, 0x4a, 0x1a, 0xf3, 0x35,
+0xad, 0x49, 0x3f, 0x52, 0xf3, 0x4e, 0x0f, 0x41, 0xc1, 0x2b, 0x2e, 0x13, 0xce, 0xfa, 0x50, 0xe5,
+0x39, 0xd4, 0x65, 0xc8, 0x71, 0xc2, 0x2d, 0xc3, 0x51, 0xca, 0x11, 0xd8, 0x88, 0xeb, 0x60, 0x02,
+0xa0, 0x19, 0x55, 0x2d, 0x6f, 0x3a, 0xff, 0x3e, 0xcf, 0x3a, 0xef, 0x2e, 0x7d, 0x1e, 0xf6, 0x0b,
+0x5e, 0xfa, 0x9a, 0xeb, 0x77, 0xe0, 0x9f, 0xd9, 0x0b, 0xd7, 0xa9, 0xd8, 0x4f, 0xde, 0x76, 0xe7,
+0x1c, 0xf3, 0x82, 0x00, 0x1a, 0x0e, 0x30, 0x1a, 0xe9, 0x22, 0xaf, 0x26, 0x0b, 0x25, 0xd5, 0x1e,
+0x2e, 0x15, 0x1c, 0x0a, 0x68, 0xff, 0x9c, 0xf6, 0x68, 0xf0, 0x24, 0xed, 0xa2, 0xec, 0x22, 0xee,
+0x24, 0xf0, 0x46, 0xf2, 0xea, 0xf4, 0x5e, 0xf8, 0x92, 0xfd, 0xf6, 0x03, 0x44, 0x0a, 0xfa, 0x0e,
+0x38, 0x11, 0x80, 0x10, 0xbe, 0x0d, 0x50, 0x0a, 0x60, 0x07, 0x02, 0x06, 0xac, 0x05, 0xca, 0x05,
+0x38, 0x05, 0x92, 0x02, 0x76, 0xfd, 0xae, 0xf6, 0xd0, 0xef, 0x28, 0xeb, 0x42, 0xea, 0x22, 0xed,
+0x10, 0xf3, 0x14, 0xfa, 0x7a, 0x00, 0xce, 0x05, 0x4a, 0x0a, 0xa2, 0x0e, 0x82, 0x13, 0x5a, 0x18,
+0x45, 0x1c, 0xb7, 0x1d, 0xac, 0x1a, 0x70, 0x12, 0x9c, 0x05, 0xe6, 0xf5, 0x94, 0xe6, 0x9b, 0xda,
+0x5f, 0xd4, 0xf7, 0xd4, 0x23, 0xdb, 0xfc, 0xe4, 0xd4, 0xf0, 0x78, 0xfd, 0x68, 0x0a, 0x96, 0x17,
+0xd3, 0x23, 0xf1, 0x2d, 0xbf, 0x33, 0x2d, 0x33, 0x55, 0x2b, 0x5d, 0x1c, 0xe8, 0x07, 0xf0, 0xf0,
+0x11, 0xdb, 0xef, 0xc9, 0x9f, 0xc0, 0xc5, 0xbf, 0xff, 0xc6, 0x83, 0xd4, 0x86, 0xe6, 0x6c, 0xfb,
+0x78, 0x11, 0x7f, 0x26, 0x47, 0x38, 0x53, 0x44, 0x6b, 0x48, 0xa7, 0x43, 0xe3, 0x35, 0x79, 0x20,
+0xe0, 0x05, 0x2e, 0xe9, 0x53, 0xce, 0x4f, 0xb9, 0x41, 0xad, 0xff, 0xab, 0x79, 0xb5, 0x35, 0xc8,
+0xd1, 0xe1, 0x5c, 0xff, 0x1d, 0x1d, 0xa7, 0x37, 0x99, 0x4b, 0x9a, 0x56, 0x7a, 0x57, 0x0b, 0x4e,
+0x4d, 0x3b, 0x01, 0x21, 0xdc, 0x01, 0xed, 0xe0, 0x61, 0xc2, 0x88, 0xaa, 0x6e, 0x9d, 0x66, 0x9d,
+0xbc, 0xaa, 0xc3, 0xc3, 0xcc, 0xe4, 0x18, 0x09, 0x77, 0x2b, 0xb9, 0x47, 0xf2, 0x5a, 0x66, 0x63,
+0x8e, 0x60, 0x03, 0x53, 0x63, 0x3c, 0x83, 0x1e, 0xbe, 0xfb, 0x45, 0xd7, 0xcd, 0xb5, 0x9e, 0x9c,
+0x48, 0x90, 0x74, 0x93, 0x4a, 0xa6, 0xfd, 0xc5, 0x2e, 0xed, 0x52, 0x15, 0xcd, 0x38, 0xcf, 0x53,
+0x58, 0x64, 0x80, 0x69, 0x50, 0x63, 0xd7, 0x52, 0x8f, 0x39, 0x1a, 0x19, 0xb0, 0xf3, 0x1d, 0xcd,
+0xaa, 0xaa, 0x7a, 0x92, 0x5a, 0x89, 0x90, 0x91, 0x20, 0xaa, 0x81, 0xce, 0x0a, 0xf8, 0x07, 0x20,
+0x5d, 0x41, 0x38, 0x59, 0x8a, 0x66, 0xd4, 0x68, 0x68, 0x60, 0x23, 0x4e, 0x1d, 0x33, 0xf8, 0x10,
+0x60, 0xea, 0x89, 0xc3, 0xac, 0xa2, 0xd4, 0x8d, 0x6a, 0x89, 0xa4, 0x96, 0xd9, 0xb2, 0xa1, 0xd8,
+0x3e, 0x01, 0x97, 0x26, 0x91, 0x44, 0x52, 0x59, 0xce, 0x63, 0xdc, 0x63, 0x84, 0x59, 0x57, 0x45,
+0xf5, 0x28, 0x2e, 0x06, 0x69, 0xe0, 0x7f, 0xbc, 0x58, 0xa0, 0x3a, 0x91, 0x36, 0x92, 0xbc, 0xa2,
+0x8f, 0xbf, 0x6f, 0xe3, 0x4a, 0x08, 0x49, 0x29, 0x35, 0x43, 0x37, 0x54, 0xd2, 0x5b, 0x64, 0x59,
+0x1b, 0x4d, 0x09, 0x38, 0xc4, 0x1b, 0x20, 0xfb, 0xb7, 0xd9, 0x29, 0xbc, 0xcc, 0xa6, 0x8a, 0x9d,
+0x74, 0xa1, 0x07, 0xb2, 0x39, 0xcc, 0x6c, 0xeb, 0x48, 0x0b, 0x85, 0x27, 0x69, 0x3d, 0x19, 0x4b,
+0xb5, 0x4f, 0xdd, 0x4a, 0x7b, 0x3d, 0xbb, 0x28, 0x18, 0x0f, 0xae, 0xf3, 0x99, 0xd9, 0xd9, 0xc3,
+0x4f, 0xb5, 0x85, 0xaf, 0x1f, 0xb4, 0x2f, 0xc2, 0xc9, 0xd7, 0xba, 0xf1, 0x22, 0x0c, 0x5f, 0x23,
+0x91, 0x34, 0x0b, 0x3e, 0xfb, 0x3e, 0x6f, 0x38, 0xed, 0x2a, 0x2c, 0x19, 0x6a, 0x05, 0xec, 0xf1,
+0xa1, 0xe0, 0x73, 0xd2, 0xa1, 0xc8, 0xbd, 0xc4, 0xa1, 0xc7, 0x8d, 0xd1, 0x9b, 0xe1, 0x40, 0xf5,
+0x4c, 0x09, 0xa6, 0x1a, 0x67, 0x26, 0xab, 0x2b, 0x7d, 0x2a, 0xa3, 0x23, 0x90, 0x19, 0xca, 0x0d,
+0x78, 0x02, 0x46, 0xf8, 0x3a, 0xef, 0x04, 0xe7, 0x2d, 0xe0, 0xb1, 0xdb, 0x3b, 0xdb, 0xf7, 0xdf,
+0x38, 0xe9, 0xb6, 0xf5, 0x8a, 0x02, 0x00, 0x0d, 0x7a, 0x13, 0x3e, 0x15, 0x58, 0x13, 0x62, 0x0f,
+0xfc, 0x0a, 0x70, 0x07, 0x30, 0x05, 0x7a, 0x03, 0x1c, 0x01, 0x3e, 0xfd, 0xcc, 0xf7, 0x44, 0xf2,
+0x2c, 0xee, 0xdc, 0xec, 0xc2, 0xee, 0xc4, 0xf2, 0x3a, 0xf7, 0x9a, 0xfa, 0x1e, 0xfc, 0x84, 0xfc,
+0xf2, 0xfc, 0x96, 0xfe, 0x08, 0x02, 0x54, 0x07, 0x46, 0x0d, 0x7a, 0x12, 0x0e, 0x15, 0xd2, 0x13,
+0xe8, 0x0e, 0x36, 0x07, 0x60, 0xfe, 0xf6, 0xf5, 0x04, 0xef, 0xc8, 0xe9, 0x1a, 0xe6, 0xbb, 0xe3,
+0x37, 0xe3, 0x3e, 0xe5, 0xa6, 0xea, 0x44, 0xf3, 0xac, 0xfe, 0x8a, 0x0b, 0x94, 0x18, 0x59, 0x23,
+0xfb, 0x29, 0xcf, 0x2a, 0x29, 0x25, 0xea, 0x19, 0x62, 0x0a, 0x38, 0xf9, 0xa2, 0xe8, 0xcf, 0xda,
+0xd3, 0xd0, 0xd7, 0xcb, 0x25, 0xcc, 0x0b, 0xd2, 0x15, 0xdd, 0x56, 0xec, 0xb0, 0xfe, 0x7a, 0x12,
+0x65, 0x25, 0x4b, 0x35, 0x27, 0x3f, 0xe5, 0x40, 0x2f, 0x39, 0x9b, 0x28, 0x8c, 0x11, 0x6a, 0xf7,
+0x5d, 0xde, 0xb7, 0xc9, 0x5d, 0xbc, 0xef, 0xb6, 0xdd, 0xb9, 0xdd, 0xc3, 0x2b, 0xd4, 0x58, 0xe9,
+0x82, 0x01, 0xda, 0x1a, 0xd7, 0x32, 0x6b, 0x46, 0x1b, 0x52, 0xf5, 0x52, 0x57, 0x47, 0x61, 0x30,
+0x8a, 0x11, 0xbc, 0xef, 0xbd, 0xd0, 0xe9, 0xb8, 0xe8, 0xaa, 0x66, 0xa7, 0x3b, 0xad, 0x53, 0xbb,
+0x09, 0xd0, 0x06, 0xea, 0x5a, 0x07, 0xb7, 0x25, 0xe1, 0x41, 0xe0, 0x57, 0x50, 0x63, 0x9a, 0x60,
+0x39, 0x4f, 0x1b, 0x31, 0x8c, 0x0b, 0xd8, 0xe4, 0x01, 0xc3, 0xb6, 0xaa, 0xf0, 0x9d, 0x96, 0x9c,
+0x5a, 0xa5, 0x19, 0xb7, 0x31, 0xd0, 0xf4, 0xee, 0xf6, 0x10, 0x15, 0x33, 0x5b, 0x51, 0xaa, 0x66,
+0xb6, 0x6e, 0xd4, 0x66, 0x6d, 0x4f, 0x55, 0x2c, 0x5e, 0x03, 0x07, 0xdb, 0x1b, 0xb9, 0xd8, 0xa1,
+0xa0, 0x96, 0x42, 0x97, 0x9c, 0xa2, 0x87, 0xb7, 0x83, 0xd4, 0x2e, 0xf7, 0x75, 0x1c, 0x03, 0x40,
+0x14, 0x5d, 0xfa, 0x6e, 0xe8, 0x71, 0xae, 0x64, 0x5d, 0x49, 0x4d, 0x24, 0x08, 0xfb, 0x93, 0xd3,
+0x0f, 0xb3, 0x2a, 0x9d, 0x9a, 0x93, 0x52, 0x96, 0xb0, 0xa4, 0x61, 0xbd, 0x41, 0xde, 0xd4, 0x03,
+0xaf, 0x29, 0x0b, 0x4b, 0x78, 0x63, 0x54, 0x6f, 0xca, 0x6c, 0x48, 0x5c, 0x0b, 0x40, 0x26, 0x1c,
+0x0c, 0xf5, 0xcb, 0xcf, 0x41, 0xb1, 0x5e, 0x9d, 0xf6, 0x95, 0x9e, 0x9b, 0x65, 0xad, 0x57, 0xc9,
+0x16, 0xec, 0xd8, 0x10, 0x15, 0x33, 0xbd, 0x4e, 0xb8, 0x60, 0x32, 0x67, 0xa0, 0x61, 0x81, 0x50,
+0xdd, 0x35, 0x88, 0x14, 0x44, 0xf0, 0xf9, 0xcd, 0x81, 0xb2, 0xa2, 0xa1, 0xa4, 0x9d, 0x90, 0xa6,
+0x2b, 0xbb, 0x2b, 0xd8, 0x20, 0xf9, 0x78, 0x19, 0x4d, 0x35, 0x23, 0x4a, 0x7c, 0x56, 0xca, 0x59,
+0x5d, 0x53, 0xe7, 0x43, 0xfd, 0x2b, 0x16, 0x0e, 0xa4, 0xed, 0x49, 0xcf, 0xe9, 0xb7, 0x4f, 0xab,
+0x1e, 0xab, 0xcd, 0xb6, 0x0b, 0xcc, 0xa4, 0xe6, 0x64, 0x02, 0xa6, 0x1b, 0x05, 0x30, 0x8f, 0x3e,
+0xd7, 0x46, 0x67, 0x48, 0xe1, 0x42, 0xdb, 0x35, 0xe9, 0x21, 0x9e, 0x08, 0x82, 0xed, 0xbd, 0xd4,
+0xf7, 0xc2, 0x05, 0xbb, 0xf7, 0xbd, 0x5f, 0xca, 0xd9, 0xdc, 0x04, 0xf2, 0x2c, 0x06, 0x66, 0x17,
+0xa1, 0x24, 0xe1, 0x2d, 0x35, 0x33, 0x5d, 0x34, 0xa3, 0x30, 0x65, 0x27, 0xc4, 0x18, 0xf2, 0x05,
+0xdc, 0xf1, 0x1f, 0xe0, 0x17, 0xd4, 0x3d, 0xd0, 0x1f, 0xd4, 0x05, 0xde, 0xee, 0xea, 0x2c, 0xf8,
+0x06, 0x04, 0x9c, 0x0d, 0xd6, 0x14, 0x00, 0x1a, 0x8d, 0x1d, 0x2b, 0x1f, 0x5b, 0x1e, 0x26, 0x1a,
+0x38, 0x12, 0x9a, 0x07, 0xe2, 0xfb, 0xa4, 0xf1, 0xf4, 0xea, 0xbc, 0xe8, 0xaa, 0xea, 0x14, 0xef,
+0x4e, 0xf4, 0x1a, 0xf9, 0xee, 0xfc, 0x6c, 0xff, 0x58, 0x01, 0x24, 0x03, 0xae, 0x05, 0x1a, 0x09,
+0xa8, 0x0c, 0x86, 0x0f, 0xa2, 0x10, 0x88, 0x0f, 0x96, 0x0c, 0x96, 0x08, 0x72, 0x04, 0x12, 0x01,
+0x34, 0xfe, 0x86, 0xfb, 0xc6, 0xf8, 0xb6, 0xf5, 0x3e, 0xf2, 0xf2, 0xee, 0x44, 0xec, 0xce, 0xeb,
+0x96, 0xee, 0x42, 0xf5, 0x3e, 0xff, 0xd6, 0x0a, 0xb2, 0x15, 0xc5, 0x1d, 0x6b, 0x21, 0xb7, 0x20,
+0x77, 0x1c, 0x8e, 0x15, 0x2a, 0x0d, 0xd0, 0x03, 0xfa, 0xf9, 0xd4, 0xef, 0xee, 0xe5, 0xdd, 0xdc,
+0xab, 0xd6, 0x09, 0xd5, 0xe5, 0xd9, 0xba, 0xe5, 0x4c, 0xf7, 0xc6, 0x0b, 0x51, 0x1f, 0x0d, 0x2e,
+0xe9, 0x35, 0x7b, 0x36, 0xc9, 0x30, 0x79, 0x26, 0xfc, 0x18, 0x5c, 0x09, 0x8a, 0xf8, 0x3a, 0xe7,
+0x81, 0xd6, 0xd7, 0xc8, 0x4b, 0xc0, 0x13, 0xc0, 0x45, 0xc9, 0x47, 0xdc, 0x20, 0xf6, 0xde, 0x12,
+0xeb, 0x2c, 0x15, 0x40, 0xed, 0x49, 0x19, 0x4a, 0x41, 0x42, 0xd3, 0x33, 0x11, 0x21, 0x0c, 0x0b,
+0x2e, 0xf3, 0x11, 0xdb, 0x2f, 0xc5, 0x9b, 0xb4, 0xcd, 0xac, 0x0f, 0xb0, 0x77, 0xbf, 0x93, 0xd9,
+0xa4, 0xfa, 0xcf, 0x1c, 0x9f, 0x3a, 0x83, 0x4f, 0x7c, 0x59, 0x8c, 0x58, 0xbf, 0x4d, 0x67, 0x3b,
+0xfb, 0x22, 0xb0, 0x06, 0x46, 0xe8, 0x09, 0xcb, 0x53, 0xb2, 0x76, 0xa2, 0x18, 0x9e, 0xde, 0xa6,
+0x7d, 0xbc, 0x03, 0xdc, 0x3e, 0x01, 0x3b, 0x26, 0xb9, 0x45, 0xba, 0x5b, 0x22, 0x66, 0x40, 0x64,
+0xfe, 0x56, 0x35, 0x40, 0xf7, 0x21, 0x4a, 0xff, 0x79, 0xdb, 0x2d, 0xbb, 0xfa, 0xa2, 0x34, 0x96,
+0xe6, 0x96, 0x0e, 0xa5, 0xfb, 0xbe, 0xb1, 0xe1, 0x9a, 0x08, 0x95, 0x2e, 0xb9, 0x4e, 0xfc, 0x64,
+0x72, 0x6e, 0x48, 0x6a, 0xfa, 0x58, 0xb1, 0x3c, 0x14, 0x19, 0x00, 0xf2, 0xab, 0xcc, 0xcf, 0xad,
+0x92, 0x99, 0x00, 0x92, 0xa2, 0x97, 0x50, 0xa9, 0x5b, 0xc5, 0xae, 0xe8, 0x58, 0x0f, 0x1f, 0x35,
+0xe2, 0x54, 0x6c, 0x6a, 0x14, 0x72, 0x86, 0x6a, 0xab, 0x54, 0x1d, 0x34, 0x36, 0x0d, 0xa6, 0xe5,
+0x79, 0xc2, 0xdc, 0xa7, 0xb2, 0x98, 0x6a, 0x95, 0xb4, 0x9d, 0x79, 0xb0, 0x5f, 0xcc, 0x24, 0xef,
+0x40, 0x15, 0x1d, 0x3a, 0xbc, 0x58, 0x00, 0x6c, 0x24, 0x70, 0x66, 0x64, 0xdd, 0x4a, 0xf3, 0x27,
+0x76, 0x01, 0x6f, 0xdc, 0xd5, 0xbd, 0xb4, 0xa8, 0x46, 0x9e, 0x90, 0x9e, 0x9c, 0xa8, 0xb1, 0xbb,
+0xa7, 0xd6, 0x86, 0xf7, 0xe8, 0x1a, 0xb7, 0x3c, 0x60, 0x57, 0x30, 0x66, 0x32, 0x66, 0x0e, 0x57,
+0x5f, 0x3c, 0xd6, 0x1a, 0x00, 0xf8, 0x8d, 0xd8, 0x0d, 0xc0, 0x61, 0xb0, 0xfa, 0xa9, 0x53, 0xac,
+0xab, 0xb6, 0xd9, 0xc8, 0x6f, 0xe1, 0xf6, 0xfe, 0x1b, 0x1e, 0xa9, 0x3a, 0xe7, 0x4f, 0x92, 0x59,
+0xe6, 0x55, 0xf1, 0x45, 0x3f, 0x2d, 0x92, 0x10, 0x68, 0xf4, 0x25, 0xdc, 0xfb, 0xc9, 0x27, 0xbf,
+0x35, 0xbb, 0x21, 0xbe, 0x9d, 0xc7, 0x1f, 0xd7, 0x04, 0xec, 0x3e, 0x04, 0x4f, 0x1d, 0x39, 0x33,
+0x61, 0x42, 0x9f, 0x47, 0x63, 0x42, 0x0b, 0x34, 0xe1, 0x1f, 0xba, 0x09, 0xa4, 0xf4, 0x3b, 0xe3,
+0xa9, 0xd6, 0x99, 0xcf, 0xf3, 0xcd, 0x57, 0xd1, 0x51, 0xd9, 0x5e, 0xe5, 0x60, 0xf4, 0xf2, 0x04,
+0x40, 0x15, 0x0d, 0x23, 0x49, 0x2c, 0x71, 0x2f, 0xf9, 0x2b, 0x0f, 0x23, 0x68, 0x16, 0x4a, 0x08,
+0x02, 0xfb, 0xf2, 0xef, 0x22, 0xe8, 0x50, 0xe4, 0x28, 0xe4, 0xfc, 0xe6, 0xd6, 0xeb, 0xb6, 0xf1,
+0x52, 0xf8, 0x8e, 0xff, 0x02, 0x07, 0x82, 0x0e, 0xe0, 0x14, 0x8a, 0x18, 0xd4, 0x18, 0xb4, 0x15,
+0xf6, 0x0f, 0x2e, 0x09, 0xf4, 0x02, 0x4a, 0xfe, 0xc6, 0xfb, 0xe6, 0xfa, 0x34, 0xfb, 0x46, 0xfb,
+0x3c, 0xfa, 0xf8, 0xf7, 0x52, 0xf5, 0x76, 0xf3, 0xb4, 0xf3, 0xa0, 0xf6, 0xa6, 0xfb, 0xb2, 0x01,
+0xe0, 0x06, 0x9c, 0x0a, 0xcc, 0x0c, 0x3c, 0x0e, 0x96, 0x0f, 0x22, 0x11, 0x8c, 0x12, 0x08, 0x13,
+0x30, 0x11, 0xde, 0x0b, 0xce, 0x02, 0x28, 0xf7, 0x28, 0xeb, 0x9d, 0xe1, 0xaf, 0xdc, 0xc9, 0xdd,
+0x3a, 0xe4, 0x22, 0xee, 0x68, 0xf9, 0x2e, 0x04, 0x34, 0x0e, 0x38, 0x17, 0x67, 0x1f, 0xdb, 0x25,
+0xab, 0x29, 0x1b, 0x29, 0xf7, 0x22, 0xac, 0x16, 0x22, 0x05, 0x2c, 0xf1, 0xd3, 0xdd, 0xe7, 0xce,
+0x0b, 0xc7, 0x81, 0xc7, 0xb5, 0xcf, 0x95, 0xdd, 0xb4, 0xee, 0x08, 0x01, 0x7c, 0x13, 0x75, 0x24,
+0xc9, 0x32, 0x71, 0x3c, 0xb7, 0x3f, 0x79, 0x3b, 0xfb, 0x2e, 0x48, 0x1b, 0x84, 0x02, 0x22, 0xe8,
+0xdb, 0xcf, 0x71, 0xbd, 0xb1, 0xb3, 0x1f, 0xb4, 0x6b, 0xbe, 0xbf, 0xd0, 0xaa, 0xe8, 0x58, 0x03,
+0xc7, 0x1d, 0x6d, 0x35, 0x31, 0x47, 0x21, 0x51, 0x95, 0x51, 0x21, 0x48, 0x8f, 0x35, 0xbc, 0x1b,
+0xa4, 0xfd, 0xab, 0xde, 0xe9, 0xc2, 0xd3, 0xad, 0x24, 0xa3, 0x5a, 0xa4, 0xd9, 0xb1, 0xfb, 0xc9,
+0x52, 0xe9, 0xb8, 0x0b, 0x75, 0x2c, 0x49, 0x47, 0x0e, 0x59, 0x10, 0x60, 0xc0, 0x5b, 0x0b, 0x4d,
+0xad, 0x35, 0xe0, 0x17, 0x82, 0xf6, 0xd1, 0xd4, 0x9d, 0xb6, 0x5c, 0xa0, 0xb0, 0x95, 0x5c, 0x99,
+0x8f, 0xab, 0x13, 0xca, 0x38, 0xf0, 0xf2, 0x17, 0x67, 0x3b, 0x26, 0x56, 0x8a, 0x65, 0x94, 0x68,
+0x08, 0x60, 0x5d, 0x4d, 0xcb, 0x32, 0xa0, 0x12, 0x1e, 0xef, 0x91, 0xcb, 0x1d, 0xac, 0xbe, 0x95,
+0x16, 0x8d, 0xdc, 0x94, 0xcb, 0xac, 0x5d, 0xd1, 0xf0, 0xfb, 0x37, 0x25, 0x5b, 0x47, 0xb0, 0x5e,
+0xf4, 0x69, 0x60, 0x69, 0x16, 0x5e, 0xa5, 0x49, 0xcd, 0x2d, 0xf2, 0x0b, 0xe8, 0xe6, 0x55, 0xc2,
+0x7c, 0xa3, 0xbe, 0x8f, 0x58, 0x8b, 0x2a, 0x98, 0x95, 0xb4, 0xaf, 0xdb, 0x5e, 0x06, 0xe3, 0x2d,
+0xfd, 0x4c, 0x26, 0x61, 0x68, 0x69, 0x1c, 0x66, 0x96, 0x58, 0x4b, 0x42, 0xd9, 0x24, 0x56, 0x02,
+0x87, 0xdd, 0xf5, 0xba, 0xb0, 0x9f, 0xc0, 0x90, 0x64, 0x91, 0x5a, 0xa2, 0xdb, 0xc0, 0x6a, 0xe7,
+0x4e, 0x0f, 0x45, 0x32, 0xb9, 0x4c, 0x7a, 0x5c, 0x70, 0x61, 0xe2, 0x5b, 0xf5, 0x4c, 0x19, 0x36,
+0xfa, 0x18, 0xde, 0xf7, 0x25, 0xd6, 0x5b, 0xb8, 0x14, 0xa3, 0x0e, 0x9a, 0x06, 0x9f, 0x59, 0xb1,
+0x41, 0xce, 0x98, 0xf0, 0xf8, 0x12, 0xaf, 0x30, 0xab, 0x46, 0x75, 0x53, 0x4e, 0x56, 0x93, 0x4f,
+0x17, 0x40, 0x9b, 0x29, 0x14, 0x0e, 0x78, 0xf0, 0x47, 0xd4, 0x47, 0xbd, 0xb9, 0xae, 0x44, 0xaa,
+0xb1, 0xb0, 0x21, 0xc1, 0x51, 0xd9, 0xb4, 0xf5, 0xec, 0x11, 0x47, 0x2a, 0x09, 0x3c, 0xa9, 0x45,
+0x61, 0x46, 0xb1, 0x3e, 0xb3, 0x2f, 0x6c, 0x1b, 0x7e, 0x04, 0x82, 0xed, 0x61, 0xd9, 0xeb, 0xc9,
+0x95, 0xc0, 0x17, 0xbe, 0x05, 0xc3, 0x55, 0xcf, 0xd1, 0xe1, 0xdc, 0xf7, 0x1c, 0x0e, 0x39, 0x21,
+0x97, 0x2e, 0xc5, 0x34, 0x77, 0x33, 0x73, 0x2b, 0xa9, 0x1e, 0x42, 0x0f, 0xa4, 0xff, 0xa2, 0xf1,
+0x10, 0xe6, 0x35, 0xdd, 0x31, 0xd7, 0x97, 0xd4, 0x69, 0xd6, 0x69, 0xdd, 0x1a, 0xe9, 0xf2, 0xf7,
+0x44, 0x07, 0x38, 0x14, 0xa3, 0x1c, 0x69, 0x1f, 0xfd, 0x1c, 0xea, 0x16, 0x26, 0x0f, 0x86, 0x07,
+0x06, 0x01, 0xb2, 0xfb, 0x10, 0xf7, 0xa2, 0xf2, 0xa0, 0xee, 0x0e, 0xec, 0xba, 0xeb, 0xec, 0xed,
+0xea, 0xf1, 0x6c, 0xf6, 0x58, 0xfa, 0x1c, 0xfd, 0x98, 0xfe, 0x3e, 0xff, 0x68, 0xff, 0x2e, 0xff,
+0xc4, 0xfe, 0x1e, 0xfe, 0x96, 0xfd, 0x34, 0xfd, 0x04, 0xfd, 0xda, 0xfc, 0xc4, 0xfc, 0xa6, 0xfc,
+0x8e, 0xfc, 0x76, 0xfc, 0x42, 0xfc, 0x2a, 0xfc, 0x34, 0xfc, 0x54, 0xfc, 0x88, 0xfc, 0xb8, 0xfc,
+0xda, 0xfc, 0x16, 0xfd, 0x4c, 0xfd, 0x78, 0xfd, 0x9e, 0xfd, 0xb4, 0xfd, 0xbc, 0xfd, 0xc8, 0xfd,
+0xcc, 0xfd, 0xe8, 0xfd, 0xf0, 0xfd, 0xe2, 0xfd, 0xd6, 0xfd, 0xce, 0xfd, 0xfc, 0xfd, 0x14, 0xfe,
+0x12, 0xfe, 0xf2, 0xfd, 0xda, 0xfd, 0xc2, 0xfd, 0xb4, 0xfd, 0xb2, 0xfd, 0xc4, 0xfd, 0xfa, 0xfd,
+0x2e, 0xfe, 0x56, 0xfe, 0x7c, 0xfe, 0x9a, 0xfe, 0xae, 0xfe, 0xb6, 0xfe, 0xa0, 0xfe, 0x76, 0xfe,
+0x3c, 0xfe, 0xfe, 0xfd, 0xf4, 0xfd, 0x26, 0xfe, 0x78, 0xfe, 0xdc, 0xfe, 0xfc, 0xfe, 0xfc, 0xfe,
+0xfa, 0xfe, 0x04, 0xff, 0x28, 0xff, 0x30, 0xff, 0x18, 0xff, 0xe4, 0xfe, 0xc2, 0xfe, 0xb4, 0xfe,
+0xbe, 0xfe, 0xda, 0xfe, 0xe8, 0xfe, 0xe6, 0xfe, 0xe2, 0xfe, 0xee, 0xfe, 0x1e, 0xff, 0x70, 0xff,
+0xc2, 0xff, 0x04, 0x00, 0x44, 0x00, 0x84, 0x00, 0xa2, 0x00, 0x8c, 0x00, 0x5c, 0x00, 0x14, 0x00,
+0xc8, 0xff, 0x72, 0xff, 0x1a, 0xff, 0xe0, 0xfe, 0xca, 0xfe, 0xc4, 0xfe, 0xd6, 0xfe, 0x00, 0xff,
+0x50, 0xff, 0xba, 0xff, 0x28, 0x00, 0x84, 0x00, 0xc4, 0x00, 0xdc, 0x00, 0xd0, 0x00, 0xb0, 0x00,
+0x82, 0x00, 0x58, 0x00, 0x26, 0x00, 0xde, 0xff, 0x76, 0xff, 0x1c, 0xff, 0xde, 0xfe, 0xd6, 0xfe,
+0xee, 0xfe, 0x1e, 0xff, 0x64, 0xff, 0xb0, 0xff, 0xf8, 0xff, 0x36, 0x00, 0x6e, 0x00, 0x9a, 0x00,
+0xc0, 0x00, 0xbe, 0x00, 0x96, 0x00, 0x66, 0x00, 0x40, 0x00, 0x20, 0x00, 0x0c, 0x00, 0xfc, 0xff,
+0xf0, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0x08, 0x00, 0x38, 0x00, 0x74, 0x00, 0xa8, 0x00, 0xcc, 0x00,
+0xec, 0x00, 0xfc, 0x00, 0xee, 0x00, 0xbc, 0x00, 0x6c, 0x00, 0x22, 0x00, 0xec, 0xff, 0xc8, 0xff,
+0xb6, 0xff, 0xb6, 0xff, 0xb0, 0xff, 0xb8, 0xff, 0xc6, 0xff, 0xe8, 0xff, 0x24, 0x00, 0x74, 0x00,
+0xbc, 0x00, 0xe8, 0x00, 0x10, 0x01, 0x24, 0x01, 0x24, 0x01, 0xf8, 0x00, 0xb6, 0x00, 0x68, 0x00,
+0x24, 0x00, 0xee, 0xff, 0xcc, 0xff, 0xd4, 0xff, 0xf2, 0xff, 0x24, 0x00, 0x4e, 0x00, 0x70, 0x00,
+0xae, 0x00, 0xf0, 0x00, 0x36, 0x01, 0x64, 0x01, 0x7a, 0x01, 0x70, 0x01, 0x3e, 0x01, 0xf6, 0x00,
+0x92, 0x00, 0x38, 0x00, 0xfe, 0xff, 0xd2, 0xff, 0xb2, 0xff, 0xb8, 0xff, 0xd2, 0xff, 0xf4, 0xff,
+0x0e, 0x00, 0x38, 0x00, 0x7a, 0x00, 0xb8, 0x00, 0xea, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xee, 0x00,
+0xe8, 0x00, 0xcc, 0x00, 0x90, 0x00, 0x72, 0x00, 0x56, 0x00, 0x46, 0x00, 0x36, 0x00, 0x20, 0x00,
+0x10, 0x00, 0x08, 0x00, 0x16, 0x00, 0x4c, 0x00, 0x92, 0x00, 0xda, 0x00, 0x04, 0x01, 0xfe, 0x00,
+0xf8, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xd6, 0x00, 0x94, 0x00, 0x58, 0x00, 0x44, 0x00, 0x54, 0x00,
+0x7e, 0x00, 0x88, 0x00, 0x7a, 0x00, 0x5c, 0x00, 0x42, 0x00, 0x44, 0x00, 0x5a, 0x00, 0x8a, 0x00,
+0xa8, 0x00, 0x9a, 0x00, 0x8a, 0x00, 0x94, 0x00, 0xa6, 0x00, 0xa8, 0x00, 0x98, 0x00, 0x96, 0x00,
+0x9c, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0x8e, 0x00, 0x84, 0x00, 0x7e, 0x00, 0x76, 0x00, 0x70, 0x00,
+0x60, 0x00, 0x72, 0x00, 0x84, 0x00, 0xa0, 0x00, 0xc0, 0x00, 0xe6, 0x00, 0xee, 0x00, 0xd4, 0x00,
+0xa8, 0x00, 0x8e, 0x00, 0x98, 0x00, 0xa8, 0x00, 0xac, 0x00, 0xb2, 0x00, 0xae, 0x00, 0xb4, 0x00,
+0xbe, 0x00, 0xc8, 0x00, 0xd4, 0x00, 0xca, 0x00, 0xb6, 0x00, 0x90, 0x00, 0x70, 0x00, 0x68, 0x00,
+0x7e, 0x00, 0x92, 0x00, 0xa0, 0x00, 0xa2, 0x00, 0xa2, 0x00, 0xb2, 0x00, 0xb0, 0x00, 0xc6, 0x00,
+0xc8, 0x00, 0xcc, 0x00, 0xc2, 0x00, 0xa2, 0x00, 0x8e, 0x00, 0x7a, 0x00, 0x7c, 0x00, 0x72, 0x00,
+0x5a, 0x00, 0x54, 0x00, 0x52, 0x00, 0x50, 0x00, 0x52, 0x00, 0x5c, 0x00, 0x84, 0x00, 0xb4, 0x00,
+0xd4, 0x00, 0xe4, 0x00, 0xda, 0x00, 0xbe, 0x00, 0x9c, 0x00, 0x60, 0x00, 0x3e, 0x00, 0x30, 0x00,
+0x2a, 0x00, 0x3a, 0x00, 0x50, 0x00, 0x6c, 0x00, 0x9e, 0x00, 0xc2, 0x00, 0xd6, 0x00, 0xe0, 0x00,
+0xe6, 0x00, 0xee, 0x00, 0xe4, 0x00, 0xd2, 0x00, 0xba, 0x00, 0xa0, 0x00, 0x80, 0x00, 0x48, 0x00,
+0x1c, 0x00, 0xf8, 0xff, 0xf0, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x38, 0x00, 0x78, 0x00, 0xba, 0x00,
+0xf4, 0x00, 0x04, 0x01, 0x08, 0x01, 0xe2, 0x00, 0xac, 0x00, 0x68, 0x00, 0x42, 0x00, 0x20, 0x00,
+0x06, 0x00, 0xec, 0xff, 0xd6, 0xff, 0xcc, 0xff, 0xd6, 0xff, 0xee, 0xff, 0x10, 0x00, 0x42, 0x00,
+0x8a, 0x00, 0xc4, 0x00, 0xfe, 0x00, 0x0e, 0x01, 0x16, 0x01, 0x0a, 0x01, 0xe2, 0x00, 0xb0, 0x00,
+0x74, 0x00, 0x44, 0x00, 0x02, 0x00, 0xbe, 0xff, 0x94, 0xff, 0x84, 0xff, 0xa6, 0xff, 0xe4, 0xff,
+0x24, 0x00, 0x60, 0x00, 0xa0, 0x00, 0xc8, 0x00, 0xf0, 0x00, 0x08, 0x01, 0x1e, 0x01, 0x16, 0x01,
+0xdc, 0x00, 0x98, 0x00, 0x58, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xd0, 0xff, 0xaa, 0xff, 0x8c, 0xff,
+0x88, 0xff, 0xa8, 0xff, 0xe0, 0xff, 0x32, 0x00, 0x7a, 0x00, 0xc4, 0x00, 0xfc, 0x00, 0x2c, 0x01,
+0x2e, 0x01, 0x1a, 0x01, 0xf0, 0x00, 0xa0, 0x00, 0x54, 0x00, 0x18, 0x00, 0xd0, 0xff, 0x90, 0xff,
+0x6a, 0xff, 0x6e, 0xff, 0x90, 0xff, 0xc4, 0xff, 0x0a, 0x00, 0x44, 0x00, 0x7e, 0x00, 0xc8, 0x00,
+0x06, 0x01, 0x30, 0x01, 0x22, 0x01, 0xf4, 0x00, 0xb4, 0x00, 0x62, 0x00, 0x2c, 0x00, 0x02, 0x00,
+0xda, 0xff, 0xa8, 0xff, 0x8e, 0xff, 0x94, 0xff, 0xc2, 0xff, 0xf2, 0xff, 0x28, 0x00, 0x50, 0x00,
+0x6c, 0x00, 0xa6, 0x00, 0xd8, 0x00, 0xee, 0x00, 0xf2, 0x00, 0xd0, 0x00, 0x9c, 0x00, 0x52, 0x00,
+0x1c, 0x00, 0xf2, 0xff, 0xbc, 0xff, 0xa8, 0xff, 0x92, 0xff, 0x9c, 0xff, 0xc4, 0xff, 0xec, 0xff,
+0x22, 0x00, 0x4a, 0x00, 0x80, 0x00, 0xa8, 0x00, 0xbe, 0x00, 0xc6, 0x00, 0xba, 0x00, 0xa0, 0x00,
+0x7e, 0x00, 0x4a, 0x00, 0x1a, 0x00, 0xf2, 0xff, 0xda, 0xff, 0xc4, 0xff, 0xcc, 0xff, 0xe2, 0xff,
+0xe6, 0xff, 0x06, 0x00, 0x30, 0x00, 0x4e, 0x00, 0x7e, 0x00, 0xa0, 0x00, 0xa6, 0x00, 0xa8, 0x00,
+0x96, 0x00, 0x82, 0x00, 0x64, 0x00, 0x3c, 0x00, 0x10, 0x00, 0xea, 0xff, 0xd4, 0xff, 0xc6, 0xff,
+0xca, 0xff, 0xc6, 0xff, 0xda, 0xff, 0xfa, 0xff, 0x14, 0x00, 0x40, 0x00, 0x60, 0x00, 0x74, 0x00,
+0x7e, 0x00, 0x82, 0x00, 0x82, 0x00, 0x74, 0x00, 0x58, 0x00, 0x2e, 0x00, 0x14, 0x00, 0xfc, 0xff,
+0xe4, 0xff, 0xf6, 0xff, 0xee, 0xff, 0xea, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x18, 0x00, 0x30, 0x00,
+0x54, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x6a, 0x00, 0x66, 0x00, 0x56, 0x00, 0x3a, 0x00, 0x30, 0x00,
+0x1c, 0x00, 0xfa, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x02, 0x00,
+0x08, 0x00, 0x1e, 0x00, 0x24, 0x00, 0x2a, 0x00, 0x34, 0x00, 0x2e, 0x00, 0x30, 0x00, 0x2c, 0x00,
+0x32, 0x00, 0x36, 0x00, 0x30, 0x00, 0x2e, 0x00, 0x26, 0x00, 0x2a, 0x00, 0x2c, 0x00, 0x22, 0x00,
+0x20, 0x00, 0x12, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x04, 0x00, 0x0a, 0x00,
+0x14, 0x00, 0x20, 0x00, 0x2c, 0x00, 0x44, 0x00, 0x54, 0x00, 0x66, 0x00, 0x62, 0x00, 0x56, 0x00,
+0x4e, 0x00, 0x36, 0x00, 0x20, 0x00, 0x06, 0x00, 0xf2, 0xff, 0xd2, 0xff, 0xcc, 0xff, 0xd0, 0xff,
+0xd0, 0xff, 0xd4, 0xff, 0xfa, 0xff, 0x10, 0x00, 0x28, 0x00, 0x4c, 0x00, 0x66, 0x00, 0x72, 0x00,
+0x7e, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x40, 0x00, 0x1a, 0x00, 0xf6, 0xff, 0xcc, 0xff, 0xbc, 0xff,
+0xaa, 0xff, 0xa0, 0xff, 0xb2, 0xff, 0xba, 0xff, 0xe4, 0xff, 0x0a, 0x00, 0x40, 0x00, 0x6e, 0x00,
+0x88, 0x00, 0x9c, 0x00, 0x98, 0x00, 0x86, 0x00, 0x72, 0x00, 0x38, 0x00, 0x0c, 0x00, 0xd6, 0xff,
+0xa4, 0xff, 0x92, 0xff, 0x72, 0xff, 0x7c, 0xff, 0x8e, 0xff, 0xaa, 0xff, 0xdc, 0xff, 0x12, 0x00,
+0x54, 0x00, 0x80, 0x00, 0xa0, 0x00, 0xaa, 0x00, 0xa0, 0x00, 0x80, 0x00, 0x58, 0x00, 0x28, 0x00,
+0xe6, 0xff, 0xaa, 0xff, 0x82, 0xff, 0x5c, 0xff, 0x54, 0xff, 0x60, 0xff, 0x78, 0xff, 0xba, 0xff,
+0xee, 0xff, 0x22, 0x00, 0x58, 0x00, 0x8c, 0x00, 0xb4, 0x00, 0xc0, 0x00, 0xaa, 0x00, 0x82, 0x00,
+0x46, 0x00, 0x1a, 0x00, 0xda, 0xff, 0xa0, 0xff, 0x7c, 0xff, 0x50, 0xff, 0x44, 0xff, 0x58, 0xff,
+0x82, 0xff, 0xca, 0xff, 0xfe, 0xff, 0x2e, 0x00, 0x7a, 0x00, 0xa6, 0x00, 0xc2, 0x00, 0xc2, 0x00,
+0xae, 0x00, 0x7e, 0x00, 0x30, 0x00, 0x02, 0x00, 0xce, 0xff, 0x94, 0xff, 0x60, 0xff, 0x38, 0xff,
+0x3e, 0xff, 0x5c, 0xff, 0x88, 0xff, 0xd8, 0xff, 0x0c, 0x00, 0x3a, 0x00, 0x80, 0x00, 0x9e, 0x00,
+0xc4, 0x00, 0xc6, 0x00, 0xa4, 0x00, 0x78, 0x00, 0x26, 0x00, 0xf8, 0xff, 0xbe, 0xff, 0x86, 0xff,
+0x66, 0xff, 0x46, 0xff, 0x5a, 0xff, 0x6e, 0xff, 0xa6, 0xff, 0xec, 0xff, 0x24, 0x00, 0x5c, 0x00,
+0x86, 0x00, 0xb0, 0x00, 0xc8, 0x00, 0xb2, 0x00, 0x9e, 0x00, 0x62, 0x00, 0x24, 0x00, 0xf0, 0xff,
+0xc0, 0xff, 0x98, 0xff, 0x68, 0xff, 0x56, 0xff, 0x62, 0xff, 0x7c, 0xff, 0xc0, 0xff, 0xf8, 0xff,
+0x24, 0x00, 0x5a, 0x00, 0x7c, 0x00, 0x94, 0x00, 0x96, 0x00, 0x8e, 0x00, 0x74, 0x00, 0x44, 0x00,
+0x0e, 0x00, 0xd6, 0xff, 0xae, 0xff, 0x8c, 0xff, 0x7c, 0xff, 0x6e, 0xff, 0x7a, 0xff, 0xa0, 0xff,
+0xc6, 0xff, 0xf8, 0xff, 0x20, 0x00, 0x4a, 0x00, 0x72, 0x00, 0x84, 0x00, 0x7c, 0x00, 0x64, 0x00,
+0x54, 0x00, 0x22, 0x00, 0xfe, 0xff, 0xde, 0xff, 0xa6, 0xff, 0xa0, 0xff, 0x8c, 0xff, 0x90, 0xff,
+0x9e, 0xff, 0xbe, 0xff, 0xe4, 0xff, 0x00, 0x00, 0x24, 0x00, 0x36, 0x00, 0x4a, 0x00, 0x54, 0x00,
+0x54, 0x00, 0x42, 0x00, 0x24, 0x00, 0x0c, 0x00, 0xec, 0xff, 0xda, 0xff, 0xb8, 0xff, 0xb4, 0xff,
+0xa0, 0xff, 0xa8, 0xff, 0xb4, 0xff, 0xca, 0xff, 0xe8, 0xff, 0xf2, 0xff, 0x00, 0x00, 0x10, 0x00,
+0x20, 0x00, 0x24, 0x00, 0x28, 0x00, 0x24, 0x00, 0x12, 0x00, 0x0a, 0x00, 0xf6, 0xff, 0xe8, 0xff,
+0xd4, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xca, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xea, 0xff, 0xf2, 0xff,
+0xf8, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x06, 0x00, 0x10, 0x00, 0x10, 0x00, 0x04, 0x00,
+0x04, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf4, 0xff, 0xf6, 0xff, 0xe6, 0xff,
+0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xd2, 0xff, 0xea, 0xff, 0xf6, 0xff,
+0x00, 0x00, 0xfe, 0xff, 0x14, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x18, 0x00, 0x16, 0x00, 0x0c, 0x00,
+0x02, 0x00, 0xfe, 0xff, 0xe0, 0xff, 0xcc, 0xff, 0xb8, 0xff, 0xca, 0xff, 0xd2, 0xff, 0xd2, 0xff,
+0xde, 0xff, 0xf4, 0xff, 0x0c, 0x00, 0x26, 0x00, 0x2a, 0x00, 0x3e, 0x00, 0x42, 0x00, 0x3c, 0x00,
+0x48, 0x00, 0x2c, 0x00, 0x0a, 0x00, 0xec, 0xff, 0xda, 0xff, 0xae, 0xff, 0xac, 0xff, 0xa8, 0xff,
+0xb2, 0xff, 0xb6, 0xff, 0xc0, 0xff, 0xf6, 0xff, 0x06, 0x00, 0x32, 0x00, 0x4e, 0x00, 0x60, 0x00,
+0x58, 0x00, 0x5c, 0x00, 0x48, 0x00, 0x26, 0x00, 0x04, 0x00, 0xe6, 0xff, 0xb4, 0xff, 0x90, 0xff,
+0x80, 0xff, 0x70, 0xff, 0x8a, 0xff, 0x94, 0xff, 0xbc, 0xff, 0xf6, 0xff, 0x10, 0x00, 0x3c, 0x00,
+0x60, 0x00, 0x72, 0x00, 0x86, 0x00, 0x80, 0x00, 0x60, 0x00, 0x26, 0x00, 0xfa, 0xff, 0xd4, 0xff,
+0x9c, 0xff, 0x7e, 0xff, 0x5e, 0xff, 0x56, 0xff, 0x68, 0xff, 0x8c, 0xff, 0xba, 0xff, 0xe2, 0xff,
+0x1a, 0x00, 0x4a, 0x00, 0x76, 0x00, 0x94, 0x00, 0x98, 0x00, 0x92, 0x00, 0x54, 0x00, 0x26, 0x00,
+0xf2, 0xff, 0xae, 0xff, 0x7c, 0xff, 0x52, 0xff, 0x3c, 0xff, 0x32, 0xff, 0x46, 0xff, 0x78, 0xff,
+0xba, 0xff, 0xe2, 0xff, 0x1a, 0x00, 0x5c, 0x00, 0x8a, 0x00, 0xa2, 0x00, 0xa8, 0x00, 0x88, 0x00,
+0x58, 0x00, 0x18, 0x00, 0xea, 0xff, 0xb0, 0xff, 0x6c, 0xff, 0x46, 0xff, 0x24, 0xff, 0x38, 0xff,
+0x58, 0xff, 0x7c, 0xff, 0xbe, 0xff, 0xfa, 0xff, 0x32, 0x00, 0x76, 0x00, 0x9c, 0x00, 0xb8, 0x00,
+0xa8, 0x00, 0x82, 0x00, 0x48, 0x00, 0x0a, 0x00, 0xe0, 0xff, 0x94, 0xff, 0x62, 0xff, 0x42, 0xff,
+0x2e, 0xff, 0x40, 0xff, 0x5c, 0xff, 0x90, 0xff, 0xd6, 0xff, 0x04, 0x00, 0x46, 0x00, 0x7e, 0x00,
+0xa6, 0x00, 0xb8, 0x00, 0x9c, 0x00, 0x70, 0x00, 0x3a, 0x00, 0xfa, 0xff, 0xc0, 0xff, 0x8e, 0xff,
+0x5a, 0xff, 0x44, 0xff, 0x3a, 0xff, 0x52, 0xff, 0x76, 0xff, 0xae, 0xff, 0xee, 0xff, 0x18, 0x00,
+0x58, 0x00, 0x8e, 0x00, 0x9c, 0x00, 0xa8, 0x00, 0x92, 0x00, 0x62, 0x00, 0x30, 0x00, 0xf4, 0xff,
+0xc4, 0xff, 0x8a, 0xff, 0x62, 0xff, 0x4a, 0xff, 0x50, 0xff, 0x62, 0xff, 0x92, 0xff, 0xc2, 0xff,
+0xf4, 0xff, 0x28, 0x00, 0x56, 0x00, 0x78, 0x00, 0x84, 0x00, 0x88, 0x00, 0x72, 0x00, 0x46, 0x00,
+0x08, 0x00, 0xe4, 0xff, 0xbc, 0xff, 0x92, 0xff, 0x72, 0xff, 0x70, 0xff, 0x6c, 0xff, 0x70, 0xff,
+0x90, 0xff, 0xce, 0xff, 0xf8, 0xff, 0x24, 0x00, 0x4e, 0x00, 0x62, 0x00, 0x64, 0x00, 0x54, 0x00,
+0x4c, 0x00, 0x2e, 0x00, 0x06, 0x00, 0xe2, 0xff, 0xb8, 0xff, 0x9a, 0xff, 0x8e, 0xff, 0x92, 0xff,
+0x92, 0xff, 0x9c, 0xff, 0xc0, 0xff, 0xde, 0xff, 0xf4, 0xff, 0x24, 0x00, 0x38, 0x00, 0x3a, 0x00,
+0x40, 0x00, 0x3e, 0x00, 0x2a, 0x00, 0x0e, 0x00, 0xf4, 0xff, 0xdc, 0xff, 0xc4, 0xff, 0xb2, 0xff,
+0xb8, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xc2, 0xff, 0xd2, 0xff, 0xea, 0xff, 0xfa, 0xff, 0x04, 0x00,
+0x18, 0x00, 0x14, 0x00, 0x16, 0x00, 0x12, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xea, 0xff,
+0xde, 0xff, 0xc6, 0xff, 0xd2, 0xff, 0xc4, 0xff, 0xbe, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xde, 0xff,
+0xe0, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xfc, 0xff,
+0x08, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xec, 0xff, 0xf8, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe8, 0xff,
+0xde, 0xff, 0xd4, 0xff, 0xd0, 0xff, 0xce, 0xff, 0xdc, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xe8, 0xff,
+0xf2, 0xff, 0x08, 0x00, 0x0c, 0x00, 0x18, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x1c, 0x00, 0x1a, 0x00,
+0xfe, 0xff, 0xf0, 0xff, 0xd2, 0xff, 0xc8, 0xff, 0xb8, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xac, 0xff,
+0xb4, 0xff, 0xd0, 0xff, 0xf2, 0xff, 0x0a, 0x00, 0x2c, 0x00, 0x34, 0x00, 0x44, 0x00, 0x4c, 0x00,
+0x38, 0x00, 0x36, 0x00, 0x18, 0x00, 0xf2, 0xff, 0xce, 0xff, 0xb0, 0xff, 0x94, 0xff, 0x8c, 0xff,
+0x7c, 0xff, 0x96, 0xff, 0xa0, 0xff, 0xce, 0xff, 0xfe, 0xff, 0x24, 0x00, 0x5a, 0x00, 0x68, 0x00,
+0x72, 0x00, 0x76, 0x00, 0x6a, 0x00, 0x50, 0x00, 0x2e, 0x00, 0xf0, 0xff, 0xca, 0xff, 0x96, 0xff,
+0x6c, 0xff, 0x5e, 0xff, 0x5a, 0xff, 0x70, 0xff, 0x98, 0xff, 0xca, 0xff, 0xfe, 0xff, 0x28, 0x00,
+0x68, 0x00, 0x8c, 0x00, 0x94, 0x00, 0x9c, 0x00, 0x7a, 0x00, 0x4a, 0x00, 0x24, 0x00, 0xe2, 0xff,
+0xac, 0xff, 0x7a, 0xff, 0x52, 0xff, 0x3a, 0xff, 0x40, 0xff, 0x5e, 0xff, 0x9c, 0xff, 0xd2, 0xff,
+0x06, 0x00, 0x46, 0x00, 0x70, 0x00, 0x98, 0x00, 0xa8, 0x00, 0x9e, 0x00, 0x7a, 0x00, 0x44, 0x00,
+0x0c, 0x00, 0xdc, 0xff, 0x98, 0xff, 0x58, 0xff, 0x38, 0xff, 0x30, 0xff, 0x46, 0xff, 0x6a, 0xff,
+0xac, 0xff, 0xe2, 0xff, 0x0c, 0x00, 0x54, 0x00, 0x7e, 0x00, 0x96, 0x00, 0xa6, 0x00, 0x82, 0x00,
+0x5e, 0x00, 0x28, 0x00, 0xe6, 0xff, 0xb6, 0xff, 0x76, 0xff, 0x40, 0xff, 0x2a, 0xff, 0x20, 0xff,
+0x36, 0xff, 0x72, 0xff, 0xba, 0xff, 0xf4, 0xff, 0x16, 0x00, 0x4a, 0x00, 0x7c, 0x00, 0x92, 0x00,
+0x92, 0x00, 0x7c, 0x00, 0x40, 0x00, 0x00, 0x00, 0xce, 0xff, 0xa4, 0xff, 0x66, 0xff, 0x3e, 0xff,
+0x26, 0xff, 0x2e, 0xff, 0x58, 0xff, 0x88, 0xff, 0xc8, 0xff, 0xfe, 0xff, 0x2c, 0x00, 0x58, 0x00,
+0x88, 0x00, 0x94, 0x00, 0x7e, 0x00, 0x68, 0x00, 0x3c, 0x00, 0x06, 0x00, 0xc2, 0xff, 0x94, 0xff,
+0x5c, 0xff, 0x38, 0xff, 0x2e, 0xff, 0x40, 0xff, 0x64, 0xff, 0x94, 0xff, 0xce, 0xff, 0x00, 0x00,
+0x2a, 0x00, 0x4e, 0x00, 0x72, 0x00, 0x88, 0x00, 0x74, 0x00, 0x52, 0x00, 0x2a, 0x00, 0xf2, 0xff,
+0xbc, 0xff, 0x8a, 0xff, 0x62, 0xff, 0x46, 0xff, 0x50, 0xff, 0x58, 0xff, 0x7c, 0xff, 0xac, 0xff,
+0xda, 0xff, 0x10, 0x00, 0x40, 0x00, 0x52, 0x00, 0x68, 0x00, 0x70, 0x00, 0x64, 0x00, 0x4a, 0x00,
+0x28, 0x00, 0xfa, 0xff, 0xc4, 0xff, 0x92, 0xff, 0x82, 0xff, 0x72, 0xff, 0x72, 0xff, 0x8a, 0xff,
+0x96, 0xff, 0xc2, 0xff, 0xee, 0xff, 0x0c, 0x00, 0x30, 0x00, 0x3c, 0x00, 0x4a, 0x00, 0x4a, 0x00,
+0x4e, 0x00, 0x28, 0x00, 0x10, 0x00, 0xee, 0xff, 0xc0, 0xff, 0x9e, 0xff, 0x94, 0xff, 0x98, 0xff,
+0x8c, 0xff, 0x9c, 0xff, 0xb2, 0xff, 0xd0, 0xff, 0xf0, 0xff, 0x04, 0x00, 0x1a, 0x00, 0x20, 0x00,
+0x22, 0x00, 0x30, 0x00, 0x2a, 0x00, 0x1e, 0x00, 0xfa, 0xff, 0xde, 0xff, 0xd4, 0xff, 0xba, 0xff,
+0xb8, 0xff, 0xba, 0xff, 0xb4, 0xff, 0xc2, 0xff, 0xce, 0xff, 0xda, 0xff, 0xf4, 0xff, 0x04, 0x00,
+0x00, 0x00, 0x06, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x06, 0x00, 0x02, 0x00, 0xe8, 0xff, 0xe4, 0xff,
+0xe0, 0xff, 0xd0, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdc, 0xff, 0xd6, 0xff, 0xde, 0xff, 0xe2, 0xff,
+0xde, 0xff, 0xd4, 0xff, 0xd0, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xe4, 0xff, 0xde, 0xff, 0xe6, 0xff,
+0xe4, 0xff, 0xf2, 0xff, 0x02, 0x00, 0x06, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0xf4, 0xff,
+0xea, 0xff, 0xda, 0xff, 0xc0, 0xff, 0xb8, 0xff, 0xae, 0xff, 0xb2, 0xff, 0xc0, 0xff, 0xc2, 0xff,
+0xde, 0xff, 0xe8, 0xff, 0x04, 0x00, 0x18, 0x00, 0x2c, 0x00, 0x32, 0x00, 0x3a, 0x00, 0x30, 0x00,
+0x1c, 0x00, 0x0e, 0x00, 0xde, 0xff, 0xc2, 0xff, 0xa0, 0xff, 0x8a, 0xff, 0x82, 0xff, 0x8a, 0xff,
+0x96, 0xff, 0xa8, 0xff, 0xd2, 0xff, 0xee, 0xff, 0x16, 0x00, 0x42, 0x00, 0x50, 0x00, 0x66, 0x00,
+0x54, 0x00, 0x3c, 0x00, 0x38, 0x00, 0x04, 0x00, 0xe4, 0xff, 0xb0, 0xff, 0x86, 0xff, 0x6c, 0xff,
+0x6e, 0xff, 0x72, 0xff, 0x86, 0xff, 0xb4, 0xff, 0xd6, 0xff, 0x08, 0x00, 0x36, 0x00, 0x68, 0x00,
+0x86, 0x00, 0x90, 0x00, 0x8a, 0x00, 0x6a, 0x00, 0x3c, 0x00, 0x0c, 0x00, 0xda, 0xff, 0xaa, 0xff,
+0x7a, 0xff, 0x58, 0xff, 0x4c, 0xff, 0x5a, 0xff, 0x78, 0xff, 0xa6, 0xff, 0xde, 0xff, 0x10, 0x00,
+0x50, 0x00, 0x7c, 0x00, 0x94, 0x00, 0xa6, 0x00, 0x92, 0x00, 0x66, 0x00, 0x30, 0x00, 0x02, 0x00,
+0xc6, 0xff, 0x86, 0xff, 0x5a, 0xff, 0x2c, 0xff, 0x32, 0xff, 0x40, 0xff, 0x6a, 0xff, 0xa6, 0xff,
+0xe2, 0xff, 0x16, 0x00, 0x5a, 0x00, 0x96, 0x00, 0xb0, 0x00, 0xb2, 0x00, 0x92, 0x00, 0x64, 0x00,
+0x28, 0x00, 0xfa, 0xff, 0xbe, 0xff, 0x7c, 0xff, 0x42, 0xff, 0x2e, 0xff, 0x22, 0xff, 0x44, 0xff,
+0x7a, 0xff, 0xbe, 0xff, 0xf4, 0xff, 0x36, 0x00, 0x74, 0x00, 0x96, 0x00, 0xb2, 0x00, 0xb0, 0x00,
+0x88, 0x00, 0x4e, 0x00, 0x0c, 0x00, 0xdc, 0xff, 0xa0, 0xff, 0x5a, 0xff, 0x36, 0xff, 0x1a, 0xff,
+0x2a, 0xff, 0x4c, 0xff, 0x88, 0xff, 0xd0, 0xff, 0x00, 0x00, 0x3c, 0x00, 0x7e, 0x00, 0xa0, 0x00,
+0xa0, 0x00, 0x94, 0x00, 0x62, 0x00, 0x36, 0x00, 0xfc, 0xff, 0xc0, 0xff, 0x96, 0xff, 0x4e, 0xff,
+0x2c, 0xff, 0x2c, 0xff, 0x36, 0xff, 0x6e, 0xff, 0x9e, 0xff, 0xea, 0xff, 0x1c, 0x00, 0x52, 0x00,
+0x86, 0x00, 0x98, 0x00, 0xa8, 0x00, 0x8a, 0x00, 0x6a, 0x00, 0x2a, 0x00, 0xf4, 0xff, 0xba, 0xff,
+0x88, 0xff, 0x66, 0xff, 0x4e, 0xff, 0x46, 0xff, 0x52, 0xff, 0x8a, 0xff, 0xc0, 0xff, 0xf2, 0xff,
+0x28, 0x00, 0x52, 0x00, 0x6a, 0x00, 0x7a, 0x00, 0x78, 0x00, 0x6c, 0x00, 0x48, 0x00, 0x16, 0x00,
+0xf2, 0xff, 0xb0, 0xff, 0x90, 0xff, 0x72, 0xff, 0x6c, 0xff, 0x6c, 0xff, 0x78, 0xff, 0x96, 0xff,
+0xce, 0xff, 0xf8, 0xff, 0x1a, 0x00, 0x4a, 0x00, 0x4e, 0x00, 0x66, 0x00, 0x56, 0x00, 0x54, 0x00,
+0x40, 0x00, 0x10, 0x00, 0xec, 0xff, 0xca, 0xff, 0xb2, 0xff, 0x9a, 0xff, 0x9a, 0xff, 0x8a, 0xff,
+0xa4, 0xff, 0xba, 0xff, 0xe4, 0xff, 0x06, 0x00, 0x14, 0x00, 0x3a, 0x00, 0x3e, 0x00, 0x42, 0x00,
+0x4a, 0x00, 0x38, 0x00, 0x22, 0x00, 0x0c, 0x00, 0xe4, 0xff, 0xda, 0xff, 0xbe, 0xff, 0xb4, 0xff,
+0xb4, 0xff, 0xa4, 0xff, 0xc0, 0xff, 0xc8, 0xff, 0xe4, 0xff, 0x02, 0x00, 0x02, 0x00, 0x16, 0x00,
+0x16, 0x00, 0x1a, 0x00, 0x18, 0x00, 0x14, 0x00, 0x02, 0x00, 0xf2, 0xff, 0xe8, 0xff, 0xe8, 0xff,
+0xde, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xe4, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf4, 0xff,
+0xfa, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0x00, 0x00, 0xfc, 0xff,
+0x08, 0x00, 0x06, 0x00, 0x02, 0x00, 0xf4, 0xff, 0x02, 0x00, 0xf4, 0xff, 0xee, 0xff, 0xf6, 0xff,
+0xe4, 0xff, 0xe0, 0xff, 0xd0, 0xff, 0xd2, 0xff, 0xd6, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xf2, 0xff,
+0xf8, 0xff, 0x08, 0x00, 0x10, 0x00, 0x18, 0x00, 0x1c, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x00, 0x00,
+0xee, 0xff, 0xd8, 0xff, 0xc4, 0xff, 0xa6, 0xff, 0xa0, 0xff, 0xa4, 0xff, 0xa2, 0xff, 0xae, 0xff,
+0xc4, 0xff, 0xe6, 0xff, 0x08, 0x00, 0x22, 0x00, 0x42, 0x00, 0x3c, 0x00, 0x42, 0x00, 0x42, 0x00,
+0x38, 0x00, 0x1e, 0x00, 0xf6, 0xff, 0xd0, 0xff, 0xa8, 0xff, 0x8c, 0xff, 0x80, 0xff, 0x7c, 0xff,
+0x82, 0xff, 0x94, 0xff, 0xbc, 0xff, 0xf0, 0xff, 0x14, 0x00, 0x3e, 0x00, 0x58, 0x00, 0x6e, 0x00,
+0x6c, 0x00, 0x5c, 0x00, 0x4a, 0x00, 0x18, 0x00, 0xf0, 0xff, 0xc2, 0xff, 0x84, 0xff, 0x56, 0xff,
+0x4e, 0xff, 0x54, 0xff, 0x5c, 0xff, 0x86, 0xff, 0xb0, 0xff, 0xf2, 0xff, 0x22, 0x00, 0x58, 0x00,
+0x74, 0x00, 0x8e, 0x00, 0x92, 0x00, 0x82, 0x00, 0x58, 0x00, 0x1a, 0x00, 0xf2, 0xff, 0xb4, 0xff,
+0x7a, 0xff, 0x4c, 0xff, 0x3a, 0xff, 0x40, 0xff, 0x58, 0xff, 0x92, 0xff, 0xcc, 0xff, 0xfe, 0xff,
+0x3a, 0x00, 0x6e, 0x00, 0x98, 0x00, 0xae, 0x00, 0xb6, 0x00, 0x90, 0x00, 0x60, 0x00, 0x1c, 0x00,
+0xe0, 0xff, 0xa4, 0xff, 0x62, 0xff, 0x42, 0xff, 0x2c, 0xff, 0x30, 0xff, 0x52, 0xff, 0x90, 0xff,
+0xd4, 0xff, 0x00, 0x00, 0x38, 0x00, 0x80, 0x00, 0x9c, 0x00, 0xb6, 0x00, 0xac, 0x00, 0x80, 0x00,
+0x44, 0x00, 0x04, 0x00, 0xca, 0xff, 0x8a, 0xff, 0x50, 0xff, 0x2e, 0xff, 0x22, 0xff, 0x3c, 0xff,
+0x68, 0xff, 0x9c, 0xff, 0xe8, 0xff, 0x0c, 0x00, 0x50, 0x00, 0x88, 0x00, 0xae, 0x00, 0xbc, 0x00,
+0x9c, 0x00, 0x78, 0x00, 0x30, 0x00, 0xf6, 0xff, 0xc0, 0xff, 0x7e, 0xff, 0x4e, 0xff, 0x3c, 0xff,
+0x34, 0xff, 0x42, 0xff, 0x7e, 0xff, 0xac, 0xff, 0xe6, 0xff, 0x12, 0x00, 0x58, 0x00, 0x86, 0x00,
+0x96, 0x00, 0xa2, 0x00, 0x84, 0x00, 0x54, 0x00, 0x1e, 0x00, 0xe6, 0xff, 0xa6, 0xff, 0x7a, 0xff,
+0x54, 0xff, 0x3c, 0xff, 0x42, 0xff, 0x50, 0xff, 0x80, 0xff, 0xba, 0xff, 0xf0, 0xff, 0x1a, 0x00,
+0x54, 0x00, 0x8c, 0x00, 0x90, 0x00, 0x92, 0x00, 0x70, 0x00, 0x46, 0x00, 0x18, 0x00, 0xea, 0xff,
+0xb4, 0xff, 0x88, 0xff, 0x6a, 0xff, 0x66, 0xff, 0x62, 0xff, 0x7c, 0xff, 0xa6, 0xff, 0xca, 0xff,
+0x04, 0x00, 0x2c, 0x00, 0x5e, 0x00, 0x6a, 0x00, 0x78, 0x00, 0x70, 0x00, 0x56, 0x00, 0x32, 0x00,
+0x00, 0x00, 0xdc, 0xff, 0xb4, 0xff, 0xa6, 0xff, 0x90, 0xff, 0x84, 0xff, 0x88, 0xff, 0x9c, 0xff,
+0xbc, 0xff, 0xde, 0xff, 0x08, 0x00, 0x2c, 0x00, 0x40, 0x00, 0x46, 0x00, 0x4a, 0x00, 0x46, 0x00,
+0x34, 0x00, 0x14, 0x00, 0xfc, 0xff, 0xee, 0xff, 0xba, 0xff, 0xb0, 0xff, 0xc2, 0xff, 0xb0, 0xff,
+0xae, 0xff, 0xc8, 0xff, 0xda, 0xff, 0xf4, 0xff, 0x08, 0x00, 0x18, 0x00, 0x2e, 0x00, 0x20, 0x00,
+0x30, 0x00, 0x20, 0x00, 0x18, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xf0, 0xff, 0xe2, 0xff, 0xde, 0xff,
+0xd0, 0xff, 0xdc, 0xff, 0xd8, 0xff, 0xe2, 0xff, 0xe8, 0xff, 0xfc, 0xff, 0xf4, 0xff, 0xfc, 0xff,
+0xfe, 0xff, 0xfa, 0xff, 0x06, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0x02, 0x00, 0x00, 0x00,
+0xf4, 0xff, 0xf0, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xdc, 0xff,
+0xd8, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xda, 0xff, 0xda, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xfc, 0xff,
+0x08, 0x00, 0x1e, 0x00, 0x1c, 0x00, 0x18, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x0c, 0x00, 0xf8, 0xff,
+0xe6, 0xff, 0xc4, 0xff, 0xb8, 0xff, 0xa8, 0xff, 0xb2, 0xff, 0xc2, 0xff, 0xb8, 0xff, 0xd4, 0xff,
+0xee, 0xff, 0x0c, 0x00, 0x20, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x44, 0x00, 0x34, 0x00, 0x1a, 0x00,
+0xf8, 0xff, 0xb0, 0xff, 0x8c, 0xff, 0x78, 0xff, 0x84, 0xff, 0x96, 0xff, 0xa4, 0xff, 0xcc, 0xff,
+0xf8, 0xff, 0x1c, 0x00, 0x40, 0x00, 0x5e, 0x00, 0x6c, 0x00, 0x62, 0x00, 0x52, 0x00, 0x34, 0x00,
+0x06, 0x00, 0xdc, 0xff, 0xac, 0xff, 0x86, 0xff, 0x6c, 0xff, 0x5e, 0xff, 0x68, 0xff, 0x7a, 0xff,
+0xa4, 0xff, 0xda, 0xff, 0x0a, 0x00, 0x36, 0x00, 0x72, 0x00, 0x88, 0x00, 0x94, 0x00, 0x8c, 0x00,
+0x62, 0x00, 0x44, 0x00, 0x06, 0x00, 0xdc, 0xff, 0x90, 0xff, 0x64, 0xff, 0x46, 0xff, 0x38, 0xff,
+0x50, 0xff, 0x70, 0xff, 0xac, 0xff, 0xe6, 0xff, 0x1c, 0x00, 0x5a, 0x00, 0x8c, 0x00, 0xac, 0x00,
+0xb2, 0x00, 0x94, 0x00, 0x72, 0x00, 0x2e, 0x00, 0xfc, 0xff, 0xc8, 0xff, 0x84, 0xff, 0x58, 0xff,
+0x3c, 0xff, 0x38, 0xff, 0x52, 0xff, 0x7a, 0xff, 0xc4, 0xff, 0xfa, 0xff, 0x2c, 0x00, 0x74, 0x00,
+0x9c, 0x00, 0xb8, 0x00, 0xb2, 0x00, 0x9a, 0x00, 0x6e, 0x00, 0x2e, 0x00, 0xf4, 0xff, 0xc2, 0xff,
+0x76, 0xff, 0x54, 0xff, 0x34, 0xff, 0x32, 0xff, 0x5a, 0xff, 0x84, 0xff, 0xd4, 0xff, 0x08, 0x00,
+0x3e, 0x00, 0x7c, 0x00, 0xa6, 0x00, 0xba, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x58, 0x00, 0x12, 0x00,
+0xe6, 0xff, 0xa8, 0xff, 0x70, 0xff, 0x44, 0xff, 0x2a, 0xff, 0x44, 0xff, 0x64, 0xff, 0x92, 0xff,
+0xde, 0xff, 0x06, 0x00, 0x40, 0x00, 0x7e, 0x00, 0x9c, 0x00, 0xae, 0x00, 0x9c, 0x00, 0x7a, 0x00,
+0x46, 0x00, 0x08, 0x00, 0xd0, 0xff, 0x9e, 0xff, 0x66, 0xff, 0x3e, 0xff, 0x3a, 0xff, 0x50, 0xff,
+0x70, 0xff, 0xa8, 0xff, 0xe4, 0xff, 0x1a, 0x00, 0x56, 0x00, 0x72, 0x00, 0x8e, 0x00, 0x98, 0x00,
+0x88, 0x00, 0x66, 0x00, 0x2c, 0x00, 0xf4, 0xff, 0xc4, 0xff, 0x94, 0xff, 0x5e, 0xff, 0x46, 0xff,
+0x4c, 0xff, 0x5c, 0xff, 0x84, 0xff, 0xb0, 0xff, 0xde, 0xff, 0x16, 0x00, 0x46, 0x00, 0x66, 0x00,
+0x7e, 0x00, 0x7e, 0x00, 0x66, 0x00, 0x48, 0x00, 0x1c, 0x00, 0xf2, 0xff, 0xb8, 0xff, 0x8a, 0xff,
+0x74, 0xff, 0x6a, 0xff, 0x5c, 0xff, 0x78, 0xff, 0x98, 0xff, 0xc8, 0xff, 0xec, 0xff, 0x16, 0x00,
+0x3e, 0x00, 0x46, 0x00, 0x68, 0x00, 0x66, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x0c, 0x00, 0xf4, 0xff,
+0xc2, 0xff, 0xaa, 0xff, 0x9e, 0xff, 0x98, 0xff, 0x9a, 0xff, 0xa6, 0xff, 0xc2, 0xff, 0xe0, 0xff,
+0xfa, 0xff, 0x16, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x30, 0x00, 0x12, 0x00,
+0xfc, 0xff, 0xec, 0xff, 0xd2, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc8, 0xff, 0xc0, 0xff, 0xc4, 0xff,
+0xde, 0xff, 0xea, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x16, 0x00, 0x0c, 0x00, 0x1c, 0x00, 0x1a, 0x00,
+0x12, 0x00, 0x0c, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xe8, 0xff, 0xe0, 0xff,
+0xde, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xf8, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xfa, 0xff, 0x00, 0x00,
+0xfe, 0xff, 0x06, 0x00, 0x00, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x10, 0x00,
+0x0c, 0x00, 0x00, 0x00, 0x04, 0x00, 0xea, 0xff, 0xe8, 0xff, 0xdc, 0xff, 0xce, 0xff, 0xc8, 0xff,
+0xca, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xde, 0xff, 0xf2, 0xff, 0x04, 0x00, 0x12, 0x00, 0x26, 0x00,
+0x28, 0x00, 0x32, 0x00, 0x2a, 0x00, 0x20, 0x00, 0x16, 0x00, 0xfa, 0xff, 0xce, 0xff, 0xc4, 0xff,
+0xaa, 0xff, 0x9c, 0xff, 0xa6, 0xff, 0xa0, 0xff, 0xb4, 0xff, 0xc2, 0xff, 0xee, 0xff, 0x0a, 0x00,
+0x28, 0x00, 0x50, 0x00, 0x5a, 0x00, 0x5e, 0x00, 0x52, 0x00, 0x3e, 0x00, 0x22, 0x00, 0xf6, 0xff,
+0xd6, 0xff, 0xa8, 0xff, 0x7c, 0xff, 0x72, 0xff, 0x6e, 0xff, 0x78, 0xff, 0x8e, 0xff, 0xa6, 0xff,
+0xe2, 0xff, 0x0a, 0x00, 0x3c, 0x00, 0x5c, 0x00, 0x74, 0x00, 0x82, 0x00, 0x62, 0x00, 0x48, 0x00,
+0x1c, 0x00, 0xec, 0xff, 0xba, 0xff, 0x8a, 0xff, 0x58, 0xff, 0x46, 0xff, 0x4c, 0xff, 0x4c, 0xff,
+0x80, 0xff, 0xa8, 0xff, 0xdc, 0xff, 0x18, 0x00, 0x4e, 0x00, 0x84, 0x00, 0x9a, 0x00, 0x96, 0x00,
+0x80, 0x00, 0x5a, 0x00, 0x20, 0x00, 0xf0, 0xff, 0xb4, 0xff, 0x80, 0xff, 0x52, 0xff, 0x36, 0xff,
+0x40, 0xff, 0x58, 0xff, 0x76, 0xff, 0xb4, 0xff, 0xf0, 0xff, 0x20, 0x00, 0x60, 0x00, 0x92, 0x00,
+0xb0, 0x00, 0xa6, 0x00, 0x8a, 0x00, 0x52, 0x00, 0x1c, 0x00, 0xea, 0xff, 0xae, 0xff, 0x6e, 0xff,
+0x3e, 0xff, 0x30, 0xff, 0x3c, 0xff, 0x54, 0xff, 0x8c, 0xff, 0xd2, 0xff, 0x00, 0x00, 0x38, 0x00,
+0x7c, 0x00, 0xa8, 0x00, 0xb6, 0x00, 0xa8, 0x00, 0x80, 0x00, 0x3c, 0x00, 0x08, 0x00, 0xd6, 0xff,
+0x9a, 0xff, 0x68, 0xff, 0x44, 0xff, 0x32, 0xff, 0x4a, 0xff, 0x6e, 0xff, 0xb0, 0xff, 0xf2, 0xff,
+0x1e, 0x00, 0x58, 0x00, 0x8e, 0x00, 0xb4, 0x00, 0xb6, 0x00, 0x9c, 0x00, 0x6a, 0x00, 0x2c, 0x00,
+0xf8, 0xff, 0xc2, 0xff, 0x8c, 0xff, 0x5c, 0xff, 0x36, 0xff, 0x3c, 0xff, 0x46, 0xff, 0x76, 0xff,
+0xb4, 0xff, 0xea, 0xff, 0x2a, 0x00, 0x6a, 0x00, 0x98, 0x00, 0xa6, 0x00, 0xaa, 0x00, 0x88, 0x00,
+0x60, 0x00, 0x2a, 0x00, 0xe2, 0xff, 0xa8, 0xff, 0x74, 0xff, 0x56, 0xff, 0x3c, 0xff, 0x44, 0xff,
+0x66, 0xff, 0x7e, 0xff, 0xc2, 0xff, 0xfe, 0xff, 0x38, 0x00, 0x74, 0x00, 0x92, 0x00, 0x9a, 0x00,
+0x8c, 0x00, 0x78, 0x00, 0x4a, 0x00, 0x16, 0x00, 0xe2, 0xff, 0xa6, 0xff, 0x74, 0xff, 0x5e, 0xff,
+0x52, 0xff, 0x5a, 0xff, 0x7a, 0xff, 0xa4, 0xff, 0xda, 0xff, 0x06, 0x00, 0x3a, 0x00, 0x56, 0x00,
+0x72, 0x00, 0x74, 0x00, 0x62, 0x00, 0x44, 0x00, 0x1e, 0x00, 0xf0, 0xff, 0xce, 0xff, 0xa4, 0xff,
+0x86, 0xff, 0x72, 0xff, 0x70, 0xff, 0x7c, 0xff, 0x96, 0xff, 0xc2, 0xff, 0xe8, 0xff, 0x0e, 0x00,
+0x34, 0x00, 0x3e, 0x00, 0x46, 0x00, 0x46, 0x00, 0x34, 0x00, 0x32, 0x00, 0x0c, 0x00, 0xf2, 0xff,
+0xdc, 0xff, 0xbc, 0xff, 0xaa, 0xff, 0xa6, 0xff, 0xaa, 0xff, 0xb6, 0xff, 0xc6, 0xff, 0xd2, 0xff,
+0xf6, 0xff, 0x0a, 0x00, 0x1e, 0x00, 0x2e, 0x00, 0x22, 0x00, 0x20, 0x00, 0x18, 0x00, 0x0a, 0x00,
+0xfa, 0xff, 0xf2, 0xff, 0xe8, 0xff, 0xd4, 0xff, 0xc6, 0xff, 0xce, 0xff, 0xca, 0xff, 0xd6, 0xff,
+0xdc, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xf8, 0xff,
+0xfc, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xf4, 0xff,
+0xf4, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf4, 0xff, 0xe4, 0xff, 0xec, 0xff, 0xe0, 0xff, 0xd8, 0xff,
+0xec, 0xff, 0xe6, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfa, 0xff, 0x12, 0x00, 0x1a, 0x00, 0x12, 0x00,
+0x16, 0x00, 0x0a, 0x00, 0x06, 0x00, 0x06, 0x00, 0xf8, 0xff, 0xe8, 0xff, 0xd2, 0xff, 0xc0, 0xff,
+0xae, 0xff, 0xb2, 0xff, 0xc2, 0xff, 0xc4, 0xff, 0xde, 0xff, 0xf4, 0xff, 0x0a, 0x00, 0x2a, 0x00,
+0x36, 0x00, 0x40, 0x00, 0x3c, 0x00, 0x28, 0x00, 0x20, 0x00, 0x06, 0x00, 0xf0, 0xff, 0xd4, 0xff,
+0xac, 0xff, 0x96, 0xff, 0x90, 0xff, 0x8a, 0xff, 0x9e, 0xff, 0xac, 0xff, 0xd8, 0xff, 0xf4, 0xff,
+0x20, 0x00, 0x4e, 0x00, 0x58, 0x00, 0x6a, 0x00, 0x6e, 0x00, 0x5e, 0x00, 0x3a, 0x00, 0x1a, 0x00,
+0xe4, 0xff, 0xba, 0xff, 0x96, 0xff, 0x70, 0xff, 0x64, 0xff, 0x6a, 0xff, 0x82, 0xff, 0x98, 0xff,
+0xd2, 0xff, 0xfa, 0xff, 0x30, 0x00, 0x58, 0x00, 0x7c, 0x00, 0x8c, 0x00, 0x86, 0x00, 0x72, 0x00,
+0x44, 0x00, 0x10, 0x00, 0xce, 0xff, 0x98, 0xff, 0x6a, 0xff, 0x40, 0xff, 0x2e, 0xff, 0x44, 0xff,
+0x62, 0xff, 0x9a, 0xff, 0xd4, 0xff, 0x06, 0x00, 0x40, 0x00, 0x7c, 0x00, 0x9e, 0x00, 0xac, 0x00,
+0xa0, 0x00, 0x76, 0x00, 0x42, 0x00, 0x0c, 0x00, 0xce, 0xff, 0x82, 0xff, 0x48, 0xff, 0x26, 0xff,
+0x16, 0xff, 0x34, 0xff, 0x5e, 0xff, 0xa0, 0xff, 0xe8, 0xff, 0x0e, 0x00, 0x58, 0x00, 0x9a, 0x00,
+0xb6, 0x00, 0xc4, 0x00, 0xa6, 0x00, 0x76, 0x00, 0x36, 0x00, 0xfa, 0xff, 0xbe, 0xff, 0x78, 0xff,
+0x38, 0xff, 0x1a, 0xff, 0x18, 0xff, 0x32, 0xff, 0x58, 0xff, 0xac, 0xff, 0xea, 0xff, 0x26, 0x00,
+0x6c, 0x00, 0x9a, 0x00, 0xc2, 0x00, 0xb4, 0x00, 0xa8, 0x00, 0x6c, 0x00, 0x20, 0x00, 0xe8, 0xff,
+0xaa, 0xff, 0x6a, 0xff, 0x3a, 0xff, 0x2a, 0xff, 0x2e, 0xff, 0x52, 0xff, 0x7a, 0xff, 0xc8, 0xff,
+0xfe, 0xff, 0x44, 0x00, 0x80, 0x00, 0xa4, 0x00, 0xc6, 0x00, 0xae, 0x00, 0x96, 0x00, 0x58, 0x00,
+0x16, 0x00, 0xdc, 0xff, 0xa2, 0xff, 0x6e, 0xff, 0x44, 0xff, 0x3a, 0xff, 0x44, 0xff, 0x6e, 0xff,
+0xa6, 0xff, 0xe4, 0xff, 0x12, 0x00, 0x3e, 0x00, 0x7c, 0x00, 0x9c, 0x00, 0xa4, 0x00, 0x9a, 0x00,
+0x78, 0x00, 0x3c, 0x00, 0xfe, 0xff, 0xc6, 0xff, 0x98, 0xff, 0x6e, 0xff, 0x58, 0xff, 0x52, 0xff,
+0x58, 0xff, 0x80, 0xff, 0xb8, 0xff, 0xee, 0xff, 0x1c, 0x00, 0x50, 0x00, 0x74, 0x00, 0x86, 0x00,
+0x86, 0x00, 0x76, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0xfe, 0xff, 0xc8, 0xff, 0x9c, 0xff, 0x88, 0xff,
+0x74, 0xff, 0x80, 0xff, 0x88, 0xff, 0x98, 0xff, 0xca, 0xff, 0xf8, 0xff, 0x18, 0x00, 0x46, 0x00,
+0x5e, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x4e, 0x00, 0x3a, 0x00, 0x0a, 0x00, 0xf0, 0xff, 0xce, 0xff,
+0xae, 0xff, 0xa4, 0xff, 0xa0, 0xff, 0x98, 0xff, 0x9c, 0xff, 0xbc, 0xff, 0xda, 0xff, 0xf0, 0xff,
+0x02, 0x00, 0x2a, 0x00, 0x28, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x10, 0x00, 0xf6, 0xff,
+0xec, 0xff, 0xd4, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xce, 0xff, 0xb6, 0xff, 0xc4, 0xff, 0xd4, 0xff,
+0xdc, 0xff, 0xe6, 0xff, 0xf4, 0xff, 0x06, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x08, 0x00,
+0x04, 0x00, 0xf4, 0xff, 0xf8, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe8, 0xff, 0xe2, 0xff, 0xe0, 0xff,
+0xe4, 0xff, 0xe8, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe8, 0xff, 0xec, 0xff, 0xf0, 0xff,
+0xfe, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x00, 0x00,
+0xfa, 0xff, 0xf6, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xd4, 0xff, 0xd0, 0xff, 0xca, 0xff, 0xc8, 0xff,
+0xc6, 0xff, 0xbe, 0xff, 0xd0, 0xff, 0xee, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x22, 0x00, 0x34, 0x00,
+0x36, 0x00, 0x24, 0x00, 0x2a, 0x00, 0x16, 0x00, 0xf0, 0xff, 0xe4, 0xff, 0xc2, 0xff, 0xa4, 0xff,
+0xb0, 0xff, 0xa0, 0xff, 0xa4, 0xff, 0xb2, 0xff, 0xc4, 0xff, 0xf6, 0xff, 0x10, 0x00, 0x2a, 0x00,
+0x52, 0x00, 0x62, 0x00, 0x5a, 0x00, 0x52, 0x00, 0x36, 0x00, 0x28, 0x00, 0xf6, 0xff, 0xd0, 0xff,
+0xae, 0xff, 0x86, 0xff, 0x7e, 0xff, 0x70, 0xff, 0x84, 0xff, 0xa2, 0xff, 0xbe, 0xff, 0xf6, 0xff,
+0x14, 0x00, 0x40, 0x00, 0x6e, 0x00, 0x76, 0x00, 0x7e, 0x00, 0x72, 0x00, 0x50, 0x00, 0x1e, 0x00,
+0xf4, 0xff, 0xce, 0xff, 0x98, 0xff, 0x6a, 0xff, 0x56, 0xff, 0x52, 0xff, 0x64, 0xff, 0x94, 0xff,
+0xc0, 0xff, 0xf6, 0xff, 0x26, 0x00, 0x54, 0x00, 0x88, 0x00, 0xa0, 0x00, 0x9a, 0x00, 0x90, 0x00,
+0x60, 0x00, 0x2c, 0x00, 0xfa, 0xff, 0xbe, 0xff, 0x8a, 0xff, 0x64, 0xff, 0x3e, 0xff, 0x32, 0xff,
+0x4a, 0xff, 0x7c, 0xff, 0xc0, 0xff, 0xf4, 0xff, 0x2a, 0x00, 0x5e, 0x00, 0x98, 0x00, 0xa4, 0x00,
+0xa8, 0x00, 0x8c, 0x00, 0x58, 0x00, 0x1c, 0x00, 0xe2, 0xff, 0xae, 0xff, 0x72, 0xff, 0x44, 0xff,
+0x20, 0xff, 0x22, 0xff, 0x4a, 0xff, 0x80, 0xff, 0xbc, 0xff, 0xf6, 0xff, 0x32, 0x00, 0x6e, 0x00,
+0x9e, 0x00, 0xae, 0x00, 0xa0, 0x00, 0x8c, 0x00, 0x48, 0x00, 0x0c, 0x00, 0xe6, 0xff, 0xa2, 0xff,
+0x64, 0xff, 0x40, 0xff, 0x28, 0xff, 0x38, 0xff, 0x5e, 0xff, 0x98, 0xff, 0xe6, 0xff, 0x04, 0x00,
+0x44, 0x00, 0x82, 0x00, 0xa2, 0x00, 0xb0, 0x00, 0xa2, 0x00, 0x7c, 0x00, 0x3c, 0x00, 0x00, 0x00,
+0xcc, 0xff, 0x94, 0xff, 0x58, 0xff, 0x38, 0xff, 0x26, 0xff, 0x3e, 0xff, 0x66, 0xff, 0xaa, 0xff,
+0xf2, 0xff, 0x16, 0x00, 0x54, 0x00, 0x80, 0x00, 0x9e, 0x00, 0xa4, 0x00, 0x92, 0x00, 0x68, 0x00,
+0x24, 0x00, 0xec, 0xff, 0xb8, 0xff, 0x7e, 0xff, 0x56, 0xff, 0x3e, 0xff, 0x38, 0xff, 0x56, 0xff,
+0x88, 0xff, 0xb8, 0xff, 0x00, 0x00, 0x36, 0x00, 0x58, 0x00, 0x86, 0x00, 0x96, 0x00, 0x94, 0x00,
+0x86, 0x00, 0x58, 0x00, 0x1c, 0x00, 0xf2, 0xff, 0xb0, 0xff, 0x86, 0xff, 0x70, 0xff, 0x5e, 0xff,
+0x68, 0xff, 0x80, 0xff, 0x9e, 0xff, 0xd4, 0xff, 0x08, 0x00, 0x32, 0x00, 0x58, 0x00, 0x66, 0x00,
+0x6c, 0x00, 0x6c, 0x00, 0x5c, 0x00, 0x36, 0x00, 0x02, 0x00, 0xda, 0xff, 0xb2, 0xff, 0x9c, 0xff,
+0x8e, 0xff, 0x8c, 0xff, 0x94, 0xff, 0xa0, 0xff, 0xc2, 0xff, 0xea, 0xff, 0x00, 0x00, 0x22, 0x00,
+0x3c, 0x00, 0x44, 0x00, 0x44, 0x00, 0x44, 0x00, 0x3a, 0x00, 0x12, 0x00, 0xfa, 0xff, 0xde, 0xff,
+0xbc, 0xff, 0xb0, 0xff, 0xb6, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xc6, 0xff, 0xd8, 0xff, 0xf6, 0xff,
+0x0e, 0x00, 0x10, 0x00, 0x2a, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00, 0x08, 0x00, 0xfc, 0xff,
+0xde, 0xff, 0xd6, 0xff, 0xd4, 0xff, 0xca, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xcc, 0xff, 0xd8, 0xff,
+0xe2, 0xff, 0xe4, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0xf4, 0xff, 0x00, 0x00,
+0xf4, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xe8, 0xff,
+0xf0, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xea, 0xff, 0xde, 0xff, 0xce, 0xff, 0xe0, 0xff, 0xe2, 0xff,
+0xd4, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xfe, 0xff, 0x12, 0x00, 0x12, 0x00, 0x10, 0x00,
+0x14, 0x00, 0x12, 0x00, 0x10, 0x00, 0xfa, 0xff, 0xe4, 0xff, 0xd2, 0xff, 0xb2, 0xff, 0xaa, 0xff,
+0xb4, 0xff, 0xb2, 0xff, 0xb4, 0xff, 0xc8, 0xff, 0xee, 0xff, 0x02, 0x00, 0x1c, 0x00, 0x3a, 0x00,
+0x44, 0x00, 0x3c, 0x00, 0x3e, 0x00, 0x2e, 0x00, 0x16, 0x00, 0xee, 0xff, 0xce, 0xff, 0xb6, 0xff,
+0x8e, 0xff, 0x80, 0xff, 0x8e, 0xff, 0xa0, 0xff, 0xb2, 0xff, 0xd0, 0xff, 0xfe, 0xff, 0x24, 0x00,
+0x42, 0x00, 0x68, 0x00, 0x72, 0x00, 0x80, 0x00, 0x5a, 0x00, 0x3e, 0x00, 0x18, 0x00, 0xe2, 0xff,
+0xba, 0xff, 0x86, 0xff, 0x70, 0xff, 0x66, 0xff, 0x66, 0xff, 0x80, 0xff, 0xa4, 0xff, 0xd6, 0xff,
+0x02, 0x00, 0x2a, 0x00, 0x66, 0x00, 0x7c, 0x00, 0x94, 0x00, 0x8e, 0x00, 0x6e, 0x00, 0x40, 0x00,
+0x16, 0x00, 0xce, 0xff, 0x9e, 0xff, 0x78, 0xff, 0x50, 0xff, 0x46, 0xff, 0x4e, 0xff, 0x72, 0xff,
+0x9e, 0xff, 0xda, 0xff, 0x0e, 0x00, 0x42, 0x00, 0x76, 0x00, 0xa2, 0x00, 0xaa, 0x00, 0x9e, 0x00,
+0x78, 0x00, 0x3a, 0x00, 0xfe, 0xff, 0xd4, 0xff, 0xa0, 0xff, 0x62, 0xff, 0x46, 0xff, 0x3c, 0xff,
+0x4c, 0xff, 0x78, 0xff, 0xaa, 0xff, 0xec, 0xff, 0x1a, 0x00, 0x52, 0x00, 0x88, 0x00, 0xa2, 0x00,
+0xb0, 0x00, 0x8e, 0x00, 0x5a, 0x00, 0x20, 0x00, 0xee, 0xff, 0xb4, 0xff, 0x7a, 0xff, 0x50, 0xff,
+0x34, 0xff, 0x24, 0xff, 0x46, 0xff, 0x76, 0xff, 0xb4, 0xff, 0xfe, 0xff, 0x1e, 0x00, 0x60, 0x00,
+0x92, 0x00, 0xa2, 0x00, 0xa8, 0x00, 0x8c, 0x00, 0x54, 0x00, 0x0e, 0x00, 0xe0, 0xff, 0xa8, 0xff,
+0x74, 0xff, 0x3e, 0xff, 0x2a, 0xff, 0x2e, 0xff, 0x4c, 0xff, 0x90, 0xff, 0xca, 0xff, 0x06, 0x00,
+0x42, 0x00, 0x76, 0x00, 0x9e, 0x00, 0xb4, 0x00, 0xb0, 0x00, 0x8c, 0x00, 0x4c, 0x00, 0x16, 0x00,
+0xd0, 0xff, 0x9a, 0xff, 0x68, 0xff, 0x44, 0xff, 0x32, 0xff, 0x3a, 0xff, 0x5c, 0xff, 0x96, 0xff,
+0xd2, 0xff, 0x0e, 0x00, 0x40, 0x00, 0x6a, 0x00, 0x9a, 0x00, 0xa8, 0x00, 0x9e, 0x00, 0x7a, 0x00,
+0x42, 0x00, 0x04, 0x00, 0xca, 0xff, 0x9e, 0xff, 0x70, 0xff, 0x52, 0xff, 0x44, 0xff, 0x50, 0xff,
+0x72, 0xff, 0xaa, 0xff, 0xdc, 0xff, 0x12, 0x00, 0x52, 0x00, 0x70, 0x00, 0x8c, 0x00, 0x8e, 0x00,
+0x82, 0x00, 0x70, 0x00, 0x3c, 0x00, 0x04, 0x00, 0xda, 0xff, 0xa2, 0xff, 0x94, 0xff, 0x78, 0xff,
+0x6c, 0xff, 0x7e, 0xff, 0x92, 0xff, 0xbe, 0xff, 0xec, 0xff, 0x18, 0x00, 0x3e, 0x00, 0x56, 0x00,
+0x6a, 0x00, 0x64, 0x00, 0x5c, 0x00, 0x42, 0x00, 0x16, 0x00, 0x00, 0x00, 0xe4, 0xff, 0xb6, 0xff,
+0xa2, 0xff, 0x9e, 0xff, 0x86, 0xff, 0x94, 0xff, 0xae, 0xff, 0xdc, 0xff, 0xf2, 0xff, 0x10, 0x00,
+0x1e, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x38, 0x00, 0x30, 0x00, 0x10, 0x00, 0x0e, 0x00, 0xf4, 0xff,
+0xec, 0xff, 0xca, 0xff, 0xc4, 0xff, 0xc2, 0xff, 0xae, 0xff, 0xba, 0xff, 0xd0, 0xff, 0xde, 0xff,
+0xf8, 0xff, 0xfa, 0xff, 0x0a, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x14, 0x00, 0x0c, 0x00, 0x0c, 0x00,
+0x02, 0x00, 0xfc, 0xff, 0xf4, 0xff, 0xe6, 0xff, 0xe2, 0xff, 0xe6, 0xff, 0xd8, 0xff, 0xd4, 0xff,
+0xde, 0xff, 0xd6, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xd8, 0xff, 0xe2, 0xff, 0xd4, 0xff, 0xe6, 0xff,
+0xf0, 0xff, 0xfa, 0xff, 0x06, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xfc, 0xff,
+0xfc, 0xff, 0xf6, 0xff, 0xec, 0xff, 0xc8, 0xff, 0xb8, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xba, 0xff,
+0xc2, 0xff, 0xc8, 0xff, 0xde, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x1e, 0x00, 0x2a, 0x00, 0x34, 0x00,
+0x24, 0x00, 0x24, 0x00, 0x1c, 0x00, 0xfa, 0xff, 0xe8, 0xff, 0xce, 0xff, 0xaa, 0xff, 0x98, 0xff,
+0x90, 0xff, 0x92, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xde, 0xff, 0xfc, 0xff, 0x1a, 0x00, 0x40, 0x00,
+0x44, 0x00, 0x58, 0x00, 0x4c, 0x00, 0x42, 0x00, 0x2c, 0x00, 0x08, 0x00, 0xe2, 0xff, 0xb8, 0xff,
+0x94, 0xff, 0x7c, 0xff, 0x6a, 0xff, 0x7a, 0xff, 0x8a, 0xff, 0xb0, 0xff, 0xe4, 0xff, 0x14, 0x00,
+0x40, 0x00, 0x5a, 0x00, 0x78, 0x00, 0x80, 0x00, 0x7a, 0x00, 0x60, 0x00, 0x38, 0x00, 0x08, 0x00,
+0xd8, 0xff, 0xaa, 0xff, 0x74, 0xff, 0x62, 0xff, 0x52, 0xff, 0x60, 0xff, 0x88, 0xff, 0xac, 0xff,
+0xf2, 0xff, 0x1e, 0x00, 0x58, 0x00, 0x88, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0x8c, 0x00, 0x70, 0x00,
+0x42, 0x00, 0x04, 0x00, 0xc8, 0xff, 0x88, 0xff, 0x58, 0xff, 0x40, 0xff, 0x32, 0xff, 0x50, 0xff,
+0x8a, 0xff, 0xc6, 0xff, 0xfc, 0xff, 0x2e, 0x00, 0x68, 0x00, 0x9e, 0x00, 0xb6, 0x00, 0xb4, 0x00,
+0x9c, 0x00, 0x6a, 0x00, 0x28, 0x00, 0xea, 0xff, 0xac, 0xff, 0x66, 0xff, 0x34, 0xff, 0x20, 0xff,
+0x32, 0xff, 0x56, 0xff, 0x88, 0xff, 0xd8, 0xff, 0x06, 0x00, 0x3c, 0x00, 0x76, 0x00, 0xa2, 0x00,
+0xbe, 0x00, 0xba, 0x00, 0x96, 0x00, 0x5c, 0x00, 0x0c, 0x00, 0xd6, 0xff, 0xa4, 0xff, 0x54, 0xff,
+0x30, 0xff, 0x20, 0xff, 0x3a, 0xff, 0x5e, 0xff, 0x90, 0xff, 0xe6, 0xff, 0x0a, 0x00, 0x38, 0x00,
+0x78, 0x00, 0x9a, 0x00, 0xb0, 0x00, 0x9c, 0x00, 0x78, 0x00, 0x3e, 0x00, 0xfc, 0xff, 0xc8, 0xff,
+0x84, 0xff, 0x58, 0xff, 0x3a, 0xff, 0x2c, 0xff, 0x46, 0xff, 0x64, 0xff, 0xa2, 0xff, 0xd8, 0xff,
+0x0e, 0x00, 0x44, 0x00, 0x6e, 0x00, 0x96, 0x00, 0x92, 0x00, 0x7e, 0x00, 0x5e, 0x00, 0x26, 0x00,
+0xec, 0xff, 0xb8, 0xff, 0x8c, 0xff, 0x66, 0xff, 0x4a, 0xff, 0x46, 0xff, 0x5a, 0xff, 0x8a, 0xff,
+0xb8, 0xff, 0xe4, 0xff, 0x1c, 0x00, 0x4c, 0x00, 0x7c, 0x00, 0x84, 0x00, 0x88, 0x00, 0x70, 0x00,
+0x40, 0x00, 0x18, 0x00, 0xee, 0xff, 0xbe, 0xff, 0x94, 0xff, 0x74, 0xff, 0x64, 0xff, 0x62, 0xff,
+0x7c, 0xff, 0x9a, 0xff, 0xca, 0xff, 0xf8, 0xff, 0x1c, 0x00, 0x3c, 0x00, 0x64, 0x00, 0x74, 0x00,
+0x6c, 0x00, 0x5a, 0x00, 0x34, 0x00, 0x0c, 0x00, 0xec, 0xff, 0xc6, 0xff, 0xac, 0xff, 0x9a, 0xff,
+0x8e, 0xff, 0x92, 0xff, 0x96, 0xff, 0xba, 0xff, 0xda, 0xff, 0xfa, 0xff, 0x20, 0x00, 0x38, 0x00,
+0x42, 0x00, 0x4e, 0x00, 0x4c, 0x00, 0x3a, 0x00, 0x30, 0x00, 0x04, 0x00, 0xf0, 0xff, 0xdc, 0xff,
+0xc2, 0xff, 0xc2, 0xff, 0xb8, 0xff, 0xc0, 0xff, 0xcc, 0xff, 0xd0, 0xff, 0xea, 0xff, 0x06, 0x00,
+0x04, 0x00, 0x20, 0x00, 0x1a, 0x00, 0x22, 0x00, 0x1e, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0xfc, 0xff,
+0xee, 0xff, 0xe6, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xdc, 0xff, 0xdc, 0xff, 0xec, 0xff, 0xe2, 0xff,
+0xea, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xf0, 0xff,
+0xf8, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x06, 0x00, 0x06, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfc, 0xff,
+0xfc, 0xff, 0xee, 0xff, 0xe8, 0xff, 0xde, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xce, 0xff,
+0xd6, 0xff, 0xe0, 0xff, 0xea, 0xff, 0x00, 0x00, 0x12, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x18, 0x00,
+0x12, 0x00, 0x06, 0x00, 0xfa, 0xff, 0xe2, 0xff, 0xd2, 0xff, 0xc6, 0xff, 0xb6, 0xff, 0xa8, 0xff,
+0xb0, 0xff, 0xa6, 0xff, 0xba, 0xff, 0xd6, 0xff, 0xea, 0xff, 0x12, 0x00, 0x28, 0x00, 0x40, 0x00,
+0x3a, 0x00, 0x30, 0x00, 0x2e, 0x00, 0x10, 0x00, 0xf8, 0xff, 0xda, 0xff, 0xba, 0xff, 0x9e, 0xff,
+0x8e, 0xff, 0x8a, 0xff, 0x96, 0xff, 0xa2, 0xff, 0xb0, 0xff, 0xe6, 0xff, 0x06, 0x00, 0x3a, 0x00,
+0x5a, 0x00, 0x5a, 0x00, 0x6a, 0x00, 0x52, 0x00, 0x46, 0x00, 0x18, 0x00, 0xf6, 0xff, 0xca, 0xff,
+0x98, 0xff, 0x82, 0xff, 0x6a, 0xff, 0x5c, 0xff, 0x6a, 0xff, 0x92, 0xff, 0xb0, 0xff, 0xec, 0xff,
+0x20, 0x00, 0x48, 0x00, 0x6e, 0x00, 0x82, 0x00, 0x7e, 0x00, 0x6e, 0x00, 0x4c, 0x00, 0x1e, 0x00,
+0xf0, 0xff, 0xb6, 0xff, 0x8e, 0xff, 0x66, 0xff, 0x3e, 0xff, 0x42, 0xff, 0x60, 0xff, 0x94, 0xff,
+0xca, 0xff, 0x00, 0x00, 0x3a, 0x00, 0x62, 0x00, 0x92, 0x00, 0x9a, 0x00, 0x92, 0x00, 0x8c, 0x00,
+0x5a, 0x00, 0x20, 0x00, 0xf0, 0xff, 0xb6, 0xff, 0x82, 0xff, 0x68, 0xff, 0x48, 0xff, 0x46, 0xff,
+0x64, 0xff, 0x9e, 0xff, 0xd6, 0xff, 0x0e, 0x00, 0x40, 0x00, 0x7c, 0x00, 0xa4, 0x00, 0xa2, 0x00,
+0x94, 0x00, 0x70, 0x00, 0x3c, 0x00, 0x0c, 0x00, 0xdc, 0xff, 0x98, 0xff, 0x66, 0xff, 0x3e, 0xff,
+0x30, 0xff, 0x4a, 0xff, 0x70, 0xff, 0xb4, 0xff, 0xf2, 0xff, 0x16, 0x00, 0x58, 0x00, 0x8a, 0x00,
+0xb2, 0x00, 0xb0, 0x00, 0x94, 0x00, 0x6c, 0x00, 0x28, 0x00, 0xfc, 0xff, 0xc2, 0xff, 0x88, 0xff,
+0x5c, 0xff, 0x34, 0xff, 0x40, 0xff, 0x50, 0xff, 0x84, 0xff, 0xc2, 0xff, 0x02, 0x00, 0x36, 0x00,
+0x64, 0x00, 0x96, 0x00, 0xb0, 0x00, 0xa6, 0x00, 0x8a, 0x00, 0x5c, 0x00, 0x10, 0x00, 0xea, 0xff,
+0xb2, 0xff, 0x7c, 0xff, 0x58, 0xff, 0x34, 0xff, 0x3e, 0xff, 0x5a, 0xff, 0x86, 0xff, 0xc6, 0xff,
+0xfc, 0xff, 0x32, 0x00, 0x64, 0x00, 0x86, 0x00, 0x9a, 0x00, 0x8c, 0x00, 0x72, 0x00, 0x46, 0x00,
+0x10, 0x00, 0xda, 0xff, 0x9a, 0xff, 0x70, 0xff, 0x54, 0xff, 0x42, 0xff, 0x44, 0xff, 0x70, 0xff,
+0xa0, 0xff, 0xd6, 0xff, 0x08, 0x00, 0x38, 0x00, 0x4e, 0x00, 0x6e, 0x00, 0x84, 0x00, 0x76, 0x00,
+0x5a, 0x00, 0x32, 0x00, 0xf6, 0xff, 0xd0, 0xff, 0xa4, 0xff, 0x88, 0xff, 0x7c, 0xff, 0x72, 0xff,
+0x72, 0xff, 0x80, 0xff, 0xba, 0xff, 0xe4, 0xff, 0x00, 0x00, 0x22, 0x00, 0x3e, 0x00, 0x3c, 0x00,
+0x46, 0x00, 0x40, 0x00, 0x30, 0x00, 0x18, 0x00, 0xf0, 0xff, 0xd0, 0xff, 0xae, 0xff, 0x9a, 0xff,
+0x98, 0xff, 0xa4, 0xff, 0xa0, 0xff, 0xb0, 0xff, 0xce, 0xff, 0xf2, 0xff, 0x0c, 0x00, 0x12, 0x00,
+0x24, 0x00, 0x22, 0x00, 0x2a, 0x00, 0x2a, 0x00, 0x16, 0x00, 0x04, 0x00, 0xf4, 0xff, 0xd8, 0xff,
+0xc0, 0xff, 0xcc, 0xff, 0xd0, 0xff, 0xca, 0xff, 0xd0, 0xff, 0xdc, 0xff, 0xe4, 0xff, 0xfe, 0xff,
+0x0a, 0x00, 0x0a, 0x00, 0x14, 0x00, 0x08, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x06, 0x00,
+0xf2, 0xff, 0xfa, 0xff, 0xee, 0xff, 0xec, 0xff, 0xee, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe0, 0xff,
+0xe4, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xfe, 0xff,
+0x04, 0x00, 0x02, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x12, 0x00, 0x0a, 0x00, 0x12, 0x00, 0x0e, 0x00,
+0xfe, 0xff, 0xfc, 0xff, 0xee, 0xff, 0xd6, 0xff, 0xcc, 0xff, 0xc2, 0xff, 0xcc, 0xff, 0xd2, 0xff,
+0xd8, 0xff, 0xe4, 0xff, 0xf6, 0xff, 0x06, 0x00, 0x18, 0x00, 0x38, 0x00, 0x38, 0x00, 0x36, 0x00,
+0x2c, 0x00, 0x26, 0x00, 0x02, 0x00, 0xea, 0xff, 0xd8, 0xff, 0xb2, 0xff, 0x98, 0xff, 0x96, 0xff,
+0x9e, 0xff, 0xa6, 0xff, 0xb2, 0xff, 0xd0, 0xff, 0xf8, 0xff, 0x0c, 0x00, 0x40, 0x00, 0x52, 0x00,
+0x52, 0x00, 0x52, 0x00, 0x3e, 0x00, 0x2c, 0x00, 0x06, 0x00, 0xda, 0xff, 0xa8, 0xff, 0x82, 0xff,
+0x72, 0xff, 0x62, 0xff, 0x64, 0xff, 0x8a, 0xff, 0xa8, 0xff, 0xd6, 0xff, 0x02, 0x00, 0x32, 0x00,
+0x5c, 0x00, 0x7a, 0x00, 0x84, 0x00, 0x7c, 0x00, 0x64, 0x00, 0x36, 0x00, 0x00, 0x00, 0xcc, 0xff,
+0x96, 0xff, 0x6e, 0xff, 0x56, 0xff, 0x4c, 0xff, 0x5a, 0xff, 0x6e, 0xff, 0xa4, 0xff, 0xd4, 0xff,
+0x0e, 0x00, 0x40, 0x00, 0x70, 0x00, 0x90, 0x00, 0x98, 0x00, 0x90, 0x00, 0x64, 0x00, 0x32, 0x00,
+0xfa, 0xff, 0xc0, 0xff, 0x84, 0xff, 0x62, 0xff, 0x46, 0xff, 0x34, 0xff, 0x46, 0xff, 0x6a, 0xff,
+0xa8, 0xff, 0xe6, 0xff, 0x1a, 0x00, 0x52, 0x00, 0x7e, 0x00, 0xa6, 0x00, 0xac, 0x00, 0x9a, 0x00,
+0x70, 0x00, 0x2c, 0x00, 0xfa, 0xff, 0xc6, 0xff, 0x82, 0xff, 0x54, 0xff, 0x48, 0xff, 0x3a, 0xff,
+0x5a, 0xff, 0x88, 0xff, 0xb6, 0xff, 0xf2, 0xff, 0x28, 0x00, 0x6c, 0x00, 0x9c, 0x00, 0xae, 0x00,
+0xac, 0x00, 0x94, 0x00, 0x66, 0x00, 0x1a, 0x00, 0xee, 0xff, 0xbe, 0xff, 0x82, 0xff, 0x60, 0xff,
+0x3c, 0xff, 0x44, 0xff, 0x5e, 0xff, 0x88, 0xff, 0xd8, 0xff, 0x06, 0x00, 0x28, 0x00, 0x6e, 0x00,
+0x92, 0x00, 0xa6, 0x00, 0x98, 0x00, 0x7e, 0x00, 0x4a, 0x00, 0x08, 0x00, 0xe8, 0xff, 0xaa, 0xff,
+0x7a, 0xff, 0x54, 0xff, 0x48, 0xff, 0x50, 0xff, 0x76, 0xff, 0xa2, 0xff, 0xce, 0xff, 0x18, 0x00,
+0x3e, 0x00, 0x70, 0x00, 0x96, 0x00, 0x94, 0x00, 0x8c, 0x00, 0x72, 0x00, 0x42, 0x00, 0x04, 0x00,
+0xd6, 0xff, 0xa6, 0xff, 0x82, 0xff, 0x68, 0xff, 0x54, 0xff, 0x6e, 0xff, 0x8a, 0xff, 0xb0, 0xff,
+0xe8, 0xff, 0x1e, 0x00, 0x40, 0x00, 0x64, 0x00, 0x80, 0x00, 0x82, 0x00, 0x70, 0x00, 0x46, 0x00,
+0x26, 0x00, 0xec, 0xff, 0xcc, 0xff, 0x9e, 0xff, 0x7e, 0xff, 0x78, 0xff, 0x76, 0xff, 0x7e, 0xff,
+0x90, 0xff, 0xce, 0xff, 0xf8, 0xff, 0x1a, 0x00, 0x3e, 0x00, 0x4a, 0x00, 0x50, 0x00, 0x50, 0x00,
+0x50, 0x00, 0x30, 0x00, 0x06, 0x00, 0xf0, 0xff, 0xc2, 0xff, 0xa6, 0xff, 0xa0, 0xff, 0x98, 0xff,
+0x9e, 0xff, 0x9e, 0xff, 0xb4, 0xff, 0xde, 0xff, 0xf8, 0xff, 0x1a, 0x00, 0x32, 0x00, 0x34, 0x00,
+0x3a, 0x00, 0x34, 0x00, 0x26, 0x00, 0x14, 0x00, 0x04, 0x00, 0xe8, 0xff, 0xc8, 0xff, 0xbe, 0xff,
+0xbe, 0xff, 0xba, 0xff, 0xb6, 0xff, 0xc2, 0xff, 0xd8, 0xff, 0xec, 0xff, 0xfa, 0xff, 0x12, 0x00,
+0x20, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfa, 0xff, 0xe6, 0xff,
+0xe2, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xda, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe2, 0xff, 0xf0, 0xff,
+0xfe, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xf8, 0xff,
+0xfe, 0xff, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfa, 0xff, 0xfc, 0xff, 0xf8, 0xff,
+0xf2, 0xff, 0xe6, 0xff, 0xde, 0xff, 0xd8, 0xff, 0xce, 0xff, 0xe0, 0xff, 0xd6, 0xff, 0xd8, 0xff,
+0xee, 0xff, 0xf4, 0xff, 0x06, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x16, 0x00, 0x1e, 0x00,
+0x06, 0x00, 0xfe, 0xff, 0xf2, 0xff, 0xd8, 0xff, 0xbe, 0xff, 0xa6, 0xff, 0xa2, 0xff, 0xae, 0xff,
+0xbe, 0xff, 0xc0, 0xff, 0xe4, 0xff, 0x02, 0x00, 0x0c, 0x00, 0x34, 0x00, 0x48, 0x00, 0x48, 0x00,
+0x42, 0x00, 0x36, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xe6, 0xff, 0xbe, 0xff, 0xa0, 0xff, 0x90, 0xff,
+0x8a, 0xff, 0x8e, 0xff, 0x92, 0xff, 0xb0, 0xff, 0xe2, 0xff, 0x0a, 0x00, 0x36, 0x00, 0x52, 0x00,
+0x5c, 0x00, 0x64, 0x00, 0x5e, 0x00, 0x4a, 0x00, 0x30, 0x00, 0x00, 0x00, 0xc6, 0xff, 0x92, 0xff,
+0x6e, 0xff, 0x5e, 0xff, 0x58, 0xff, 0x6a, 0xff, 0x8a, 0xff, 0xae, 0xff, 0xdc, 0xff, 0x12, 0x00,
+0x50, 0x00, 0x6c, 0x00, 0x80, 0x00, 0x8a, 0x00, 0x78, 0x00, 0x54, 0x00, 0x20, 0x00, 0xee, 0xff,
+0xc2, 0xff, 0x88, 0xff, 0x5a, 0xff, 0x46, 0xff, 0x3e, 0xff, 0x58, 0xff, 0x88, 0xff, 0xba, 0xff,
+0x00, 0x00, 0x32, 0x00, 0x54, 0x00, 0x94, 0x00, 0xa4, 0x00, 0xa6, 0x00, 0x9a, 0x00, 0x56, 0x00,
+0x24, 0x00, 0xec, 0xff, 0xa2, 0xff, 0x74, 0xff, 0x3e, 0xff, 0x32, 0xff, 0x36, 0xff, 0x4c, 0xff,
+0x86, 0xff, 0xc6, 0xff, 0xfc, 0xff, 0x32, 0x00, 0x7e, 0x00, 0x9c, 0x00, 0xb8, 0x00, 0xaa, 0x00,
+0x84, 0x00, 0x58, 0x00, 0x0e, 0x00, 0xde, 0xff, 0xa6, 0xff, 0x62, 0xff, 0x36, 0xff, 0x28, 0xff,
+0x42, 0xff, 0x66, 0xff, 0xa2, 0xff, 0xe2, 0xff, 0x0c, 0x00, 0x4e, 0x00, 0x86, 0x00, 0xae, 0x00,
+0xc4, 0x00, 0xb0, 0x00, 0x7e, 0x00, 0x40, 0x00, 0xfe, 0xff, 0xd6, 0xff, 0x96, 0xff, 0x62, 0xff,
+0x48, 0xff, 0x32, 0xff, 0x4e, 0xff, 0x70, 0xff, 0xb4, 0xff, 0xfc, 0xff, 0x1a, 0x00, 0x4e, 0x00,
+0x84, 0x00, 0x9e, 0x00, 0xa4, 0x00, 0x98, 0x00, 0x66, 0x00, 0x30, 0x00, 0xf2, 0xff, 0xbc, 0xff,
+0x90, 0xff, 0x60, 0xff, 0x42, 0xff, 0x40, 0xff, 0x64, 0xff, 0x8e, 0xff, 0xb2, 0xff, 0xf4, 0xff,
+0x26, 0x00, 0x4c, 0x00, 0x7e, 0x00, 0x90, 0x00, 0x92, 0x00, 0x7e, 0x00, 0x4a, 0x00, 0x1a, 0x00,
+0xe0, 0xff, 0xb2, 0xff, 0x8e, 0xff, 0x6e, 0xff, 0x6a, 0xff, 0x60, 0xff, 0x7c, 0xff, 0xa4, 0xff,
+0xd8, 0xff, 0x04, 0x00, 0x2e, 0x00, 0x5a, 0x00, 0x74, 0x00, 0x7a, 0x00, 0x70, 0x00, 0x56, 0x00,
+0x32, 0x00, 0x06, 0x00, 0xdc, 0xff, 0xa4, 0xff, 0x8c, 0xff, 0x72, 0xff, 0x6e, 0xff, 0x84, 0xff,
+0x8c, 0xff, 0xb0, 0xff, 0xdc, 0xff, 0xfe, 0xff, 0x26, 0x00, 0x46, 0x00, 0x48, 0x00, 0x4e, 0x00,
+0x42, 0x00, 0x40, 0x00, 0x1c, 0x00, 0xe8, 0xff, 0xd6, 0xff, 0xb2, 0xff, 0xa0, 0xff, 0xa2, 0xff,
+0x96, 0xff, 0xa2, 0xff, 0xb2, 0xff, 0xbe, 0xff, 0xe4, 0xff, 0x00, 0x00, 0x18, 0x00, 0x36, 0x00,
+0x38, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x22, 0x00, 0x0c, 0x00, 0xf6, 0xff, 0xec, 0xff, 0xde, 0xff,
+0xbc, 0xff, 0xc4, 0xff, 0xc4, 0xff, 0xc0, 0xff, 0xce, 0xff, 0xdc, 0xff, 0xf0, 0xff, 0xfe, 0xff,
+0xfc, 0xff, 0x08, 0x00, 0x0c, 0x00, 0x14, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x04, 0x00, 0xf4, 0xff,
+0xe8, 0xff, 0xe6, 0xff, 0xf2, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xec, 0xff, 0xdc, 0xff, 0xe4, 0xff,
+0xdc, 0xff, 0xe2, 0xff, 0xec, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xee, 0xff,
+0xfc, 0xff, 0x14, 0x00, 0x14, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x14, 0x00, 0x02, 0x00,
+0x02, 0x00, 0xf2, 0xff, 0xdc, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xca, 0xff, 0xce, 0xff, 0xd0, 0xff,
+0xdc, 0xff, 0xf6, 0xff, 0x0a, 0x00, 0x1e, 0x00, 0x30, 0x00, 0x3e, 0x00, 0x46, 0x00, 0x2e, 0x00,
+0x26, 0x00, 0x12, 0x00, 0xf2, 0xff, 0xd8, 0xff, 0xc2, 0xff, 0x9e, 0xff, 0x90, 0xff, 0x9a, 0xff,
+0xa2, 0xff, 0xa8, 0xff, 0xcc, 0xff, 0xe4, 0xff, 0x0a, 0x00, 0x30, 0x00, 0x52, 0x00, 0x60, 0x00,
+0x5a, 0x00, 0x4c, 0x00, 0x3c, 0x00, 0x14, 0x00, 0xe8, 0xff, 0xd0, 0xff, 0x9c, 0xff, 0x7e, 0xff,
+0x78, 0xff, 0x6c, 0xff, 0x84, 0xff, 0x9e, 0xff, 0xc4, 0xff, 0xf8, 0xff, 0x26, 0x00, 0x60, 0x00,
+0x76, 0x00, 0x8a, 0x00, 0x7c, 0x00, 0x66, 0x00, 0x42, 0x00, 0x10, 0x00, 0xe0, 0xff, 0xa2, 0xff,
+0x74, 0xff, 0x56, 0xff, 0x48, 0xff, 0x4c, 0xff, 0x68, 0xff, 0x8e, 0xff, 0xc4, 0xff, 0x00, 0x00,
+0x30, 0x00, 0x6a, 0x00, 0x82, 0x00, 0x90, 0x00, 0x82, 0x00, 0x60, 0x00, 0x2c, 0x00, 0xfa, 0xff,
+0xc4, 0xff, 0x8e, 0xff, 0x54, 0xff, 0x32, 0xff, 0x32, 0xff, 0x3c, 0xff, 0x5e, 0xff, 0xa4, 0xff,
+0xd0, 0xff, 0x12, 0x00, 0x4c, 0x00, 0x88, 0x00, 0xac, 0x00, 0xb2, 0x00, 0x9e, 0x00, 0x60, 0x00,
+0x36, 0x00, 0xee, 0xff, 0xc6, 0xff, 0x90, 0xff, 0x58, 0xff, 0x2c, 0xff, 0x18, 0xff, 0x36, 0xff,
+0x6c, 0xff, 0xac, 0xff, 0xf0, 0xff, 0x22, 0x00, 0x66, 0x00, 0x9a, 0x00, 0xbc, 0x00, 0xba, 0x00,
+0xa6, 0x00, 0x74, 0x00, 0x26, 0x00, 0xee, 0xff, 0xb6, 0xff, 0x70, 0xff, 0x32, 0xff, 0x20, 0xff,
+0x16, 0xff, 0x30, 0xff, 0x6c, 0xff, 0xb4, 0xff, 0xf2, 0xff, 0x30, 0x00, 0x72, 0x00, 0xa2, 0x00,
+0xb6, 0x00, 0xbc, 0x00, 0xa0, 0x00, 0x70, 0x00, 0x28, 0x00, 0xee, 0xff, 0xba, 0xff, 0x74, 0xff,
+0x46, 0xff, 0x32, 0xff, 0x32, 0xff, 0x56, 0xff, 0x82, 0xff, 0xc6, 0xff, 0x0c, 0x00, 0x46, 0x00,
+0x76, 0x00, 0xa2, 0x00, 0xae, 0x00, 0xa8, 0x00, 0x8a, 0x00, 0x58, 0x00, 0x20, 0x00, 0xe6, 0xff,
+0xae, 0xff, 0x80, 0xff, 0x56, 0xff, 0x3e, 0xff, 0x52, 0xff, 0x64, 0xff, 0x9c, 0xff, 0xda, 0xff,
+0x10, 0x00, 0x40, 0x00, 0x64, 0x00, 0x82, 0x00, 0x8a, 0x00, 0x7e, 0x00, 0x66, 0x00, 0x38, 0x00,
+0x0a, 0x00, 0xd0, 0xff, 0xa6, 0xff, 0x82, 0xff, 0x68, 0xff, 0x5e, 0xff, 0x6c, 0xff, 0x8c, 0xff,
+0xb2, 0xff, 0xe8, 0xff, 0x16, 0x00, 0x4a, 0x00, 0x50, 0x00, 0x68, 0x00, 0x72, 0x00, 0x5a, 0x00,
+0x4c, 0x00, 0x22, 0x00, 0x02, 0x00, 0xd2, 0xff, 0xaa, 0xff, 0x9e, 0xff, 0x88, 0xff, 0x8a, 0xff,
+0x90, 0xff, 0xac, 0xff, 0xcc, 0xff, 0xe6, 0xff, 0x16, 0x00, 0x28, 0x00, 0x36, 0x00, 0x34, 0x00,
+0x30, 0x00, 0x32, 0x00, 0x18, 0x00, 0x0a, 0x00, 0xee, 0xff, 0xcc, 0xff, 0xb6, 0xff, 0xae, 0xff,
+0xa8, 0xff, 0x9e, 0xff, 0xae, 0xff, 0xc4, 0xff, 0xd4, 0xff, 0xe0, 0xff, 0xf4, 0xff, 0x04, 0x00,
+0x04, 0x00, 0x08, 0x00, 0x12, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf4, 0xff, 0xee, 0xff, 0xde, 0xff,
+0xdc, 0xff, 0xd8, 0xff, 0xce, 0xff, 0xc8, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xe8, 0xff,
+0xde, 0xff, 0xee, 0xff, 0xe6, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xf8, 0xff,
+0xf8, 0xff, 0x02, 0x00, 0xfa, 0xff, 0xee, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xec, 0xff,
+0xea, 0xff, 0xd2, 0xff, 0xcc, 0xff, 0xca, 0xff, 0xca, 0xff, 0xce, 0xff, 0xd4, 0xff, 0xe2, 0xff,
+0xf4, 0xff, 0xfc, 0xff, 0x0e, 0x00, 0x1a, 0x00, 0x26, 0x00, 0x20, 0x00, 0x28, 0x00, 0x24, 0x00,
+0x18, 0x00, 0x00, 0x00, 0xde, 0xff, 0xd0, 0xff, 0xba, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xba, 0xff,
+0xc4, 0xff, 0xe4, 0xff, 0xfa, 0xff, 0x1a, 0x00, 0x36, 0x00, 0x48, 0x00, 0x5c, 0x00, 0x52, 0x00,
+0x4e, 0x00, 0x3a, 0x00, 0x0e, 0x00, 0xf6, 0xff, 0xce, 0xff, 0xa6, 0xff, 0x8e, 0xff, 0x84, 0xff,
+0x86, 0xff, 0xa2, 0xff, 0xba, 0xff, 0xe2, 0xff, 0x0c, 0x00, 0x30, 0x00, 0x54, 0x00, 0x70, 0x00,
+0x7e, 0x00, 0x72, 0x00, 0x5c, 0x00, 0x34, 0x00, 0x08, 0x00, 0xda, 0xff, 0xa0, 0xff, 0x84, 0xff,
+0x5c, 0xff, 0x5c, 0xff, 0x6e, 0xff, 0x8e, 0xff, 0xbe, 0xff, 0xe8, 0xff, 0x22, 0x00, 0x4a, 0x00,
+0x76, 0x00, 0x9c, 0x00, 0x9c, 0x00, 0x92, 0x00, 0x6e, 0x00, 0x2e, 0x00, 0xfa, 0xff, 0xba, 0xff,
+0x82, 0xff, 0x56, 0xff, 0x44, 0xff, 0x3e, 0xff, 0x4e, 0xff, 0x80, 0xff, 0xba, 0xff, 0xf6, 0xff,
+0x2c, 0x00, 0x66, 0x00, 0x96, 0x00, 0xb0, 0x00, 0xac, 0x00, 0x90, 0x00, 0x62, 0x00, 0x1a, 0x00,
+0xdc, 0xff, 0x9c, 0xff, 0x60, 0xff, 0x2e, 0xff, 0x12, 0xff, 0x18, 0xff, 0x3e, 0xff, 0x74, 0xff,
+0xbc, 0xff, 0xfc, 0xff, 0x34, 0x00, 0x76, 0x00, 0xa6, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0x94, 0x00,
+0x60, 0x00, 0x14, 0x00, 0xdc, 0xff, 0x96, 0xff, 0x52, 0xff, 0x2c, 0xff, 0x16, 0xff, 0x24, 0xff,
+0x4e, 0xff, 0x8c, 0xff, 0xce, 0xff, 0x08, 0x00, 0x4a, 0x00, 0x8e, 0x00, 0xb8, 0x00, 0xcc, 0x00,
+0xbc, 0x00, 0x8a, 0x00, 0x4a, 0x00, 0x08, 0x00, 0xce, 0xff, 0x88, 0xff, 0x52, 0xff, 0x2a, 0xff,
+0x18, 0xff, 0x38, 0xff, 0x5e, 0xff, 0x8e, 0xff, 0xda, 0xff, 0x16, 0x00, 0x54, 0x00, 0x84, 0x00,
+0xaa, 0x00, 0xb2, 0x00, 0xa4, 0x00, 0x74, 0x00, 0x38, 0x00, 0x02, 0x00, 0xc0, 0xff, 0x86, 0xff,
+0x56, 0xff, 0x40, 0xff, 0x3e, 0xff, 0x50, 0xff, 0x82, 0xff, 0xaa, 0xff, 0xf4, 0xff, 0x2e, 0x00,
+0x5a, 0x00, 0x90, 0x00, 0xa0, 0x00, 0xa8, 0x00, 0x94, 0x00, 0x66, 0x00, 0x32, 0x00, 0xf6, 0xff,
+0xc2, 0xff, 0x90, 0xff, 0x74, 0xff, 0x56, 0xff, 0x5c, 0xff, 0x72, 0xff, 0x90, 0xff, 0xc6, 0xff,
+0xfc, 0xff, 0x32, 0x00, 0x50, 0x00, 0x76, 0x00, 0x86, 0x00, 0x82, 0x00, 0x6e, 0x00, 0x40, 0x00,
+0x14, 0x00, 0xe6, 0xff, 0xbc, 0xff, 0x96, 0xff, 0x86, 0xff, 0x7a, 0xff, 0x74, 0xff, 0x88, 0xff,
+0xaa, 0xff, 0xdc, 0xff, 0xfe, 0xff, 0x30, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x62, 0x00, 0x54, 0x00,
+0x44, 0x00, 0x2a, 0x00, 0x02, 0x00, 0xe6, 0xff, 0xc2, 0xff, 0xa2, 0xff, 0xa8, 0xff, 0xa6, 0xff,
+0xb2, 0xff, 0xb0, 0xff, 0xc0, 0xff, 0xe2, 0xff, 0x08, 0x00, 0x1a, 0x00, 0x2c, 0x00, 0x2c, 0x00,
+0x32, 0x00, 0x28, 0x00, 0x1a, 0x00, 0x0c, 0x00, 0xf6, 0xff, 0xe0, 0xff, 0xd4, 0xff, 0xc6, 0xff,
+0xc0, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc4, 0xff, 0xd6, 0xff, 0xea, 0xff, 0xee, 0xff, 0x00, 0x00,
+0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf0, 0xff, 0xe6, 0xff,
+0xf0, 0xff, 0xee, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xdc, 0xff, 0xd4, 0xff, 0xde, 0xff, 0xd8, 0xff,
+0xda, 0xff, 0xdc, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xd6, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xf6, 0xff,
+0x08, 0x00, 0x08, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0xfe, 0xff, 0xec, 0xff,
+0xdc, 0xff, 0xc8, 0xff, 0xba, 0xff, 0xb6, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xbc, 0xff, 0xc8, 0xff,
+0xea, 0xff, 0xfc, 0xff, 0x1a, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x2e, 0x00, 0x26, 0x00,
+0x10, 0x00, 0xf0, 0xff, 0xd6, 0xff, 0xc0, 0xff, 0x9a, 0xff, 0x8a, 0xff, 0x86, 0xff, 0x92, 0xff,
+0xa2, 0xff, 0xbe, 0xff, 0xec, 0xff, 0x0c, 0x00, 0x32, 0x00, 0x52, 0x00, 0x64, 0x00, 0x68, 0x00,
+0x58, 0x00, 0x4c, 0x00, 0x28, 0x00, 0xfc, 0xff, 0xd8, 0xff, 0xae, 0xff, 0x86, 0xff, 0x70, 0xff,
+0x6c, 0xff, 0x80, 0xff, 0x96, 0xff, 0xb6, 0xff, 0xf0, 0xff, 0x18, 0x00, 0x4c, 0x00, 0x72, 0x00,
+0x8c, 0x00, 0x84, 0x00, 0x74, 0x00, 0x5c, 0x00, 0x30, 0x00, 0x00, 0x00, 0xc6, 0xff, 0x90, 0xff,
+0x6a, 0xff, 0x56, 0xff, 0x46, 0xff, 0x60, 0xff, 0x8e, 0xff, 0xbc, 0xff, 0xfa, 0xff, 0x34, 0x00,
+0x60, 0x00, 0x96, 0x00, 0xa4, 0x00, 0x9c, 0x00, 0x90, 0x00, 0x54, 0x00, 0x22, 0x00, 0xf0, 0xff,
+0xaa, 0xff, 0x6c, 0xff, 0x44, 0xff, 0x34, 0xff, 0x3e, 0xff, 0x56, 0xff, 0x8c, 0xff, 0xd0, 0xff,
+0x04, 0x00, 0x46, 0x00, 0x80, 0x00, 0xa4, 0x00, 0xbc, 0x00, 0xae, 0x00, 0x88, 0x00, 0x52, 0x00,
+0x14, 0x00, 0xe2, 0xff, 0x96, 0xff, 0x5e, 0xff, 0x2e, 0xff, 0x18, 0xff, 0x32, 0xff, 0x58, 0xff,
+0x9c, 0xff, 0xd8, 0xff, 0x10, 0x00, 0x52, 0x00, 0x8c, 0x00, 0xa8, 0x00, 0xb4, 0x00, 0xa8, 0x00,
+0x80, 0x00, 0x3c, 0x00, 0xf8, 0xff, 0xc6, 0xff, 0x82, 0xff, 0x48, 0xff, 0x26, 0xff, 0x1c, 0xff,
+0x3e, 0xff, 0x5c, 0xff, 0xa2, 0xff, 0xe8, 0xff, 0x12, 0x00, 0x58, 0x00, 0x98, 0x00, 0xa2, 0x00,
+0xa2, 0x00, 0x9a, 0x00, 0x66, 0x00, 0x30, 0x00, 0xf0, 0xff, 0xba, 0xff, 0x7c, 0xff, 0x44, 0xff,
+0x30, 0xff, 0x38, 0xff, 0x4e, 0xff, 0x80, 0xff, 0xb8, 0xff, 0xfe, 0xff, 0x28, 0x00, 0x58, 0x00,
+0x8a, 0x00, 0x9a, 0x00, 0xa4, 0x00, 0x88, 0x00, 0x4e, 0x00, 0x14, 0x00, 0xe0, 0xff, 0xae, 0xff,
+0x7c, 0xff, 0x4a, 0xff, 0x4c, 0xff, 0x58, 0xff, 0x62, 0xff, 0x8e, 0xff, 0xd0, 0xff, 0x06, 0x00,
+0x36, 0x00, 0x5e, 0x00, 0x6e, 0x00, 0x86, 0x00, 0x84, 0x00, 0x68, 0x00, 0x3c, 0x00, 0x0e, 0x00,
+0xd4, 0xff, 0xa0, 0xff, 0x88, 0xff, 0x70, 0xff, 0x66, 0xff, 0x7a, 0xff, 0x92, 0xff, 0xb2, 0xff,
+0xec, 0xff, 0x0a, 0x00, 0x3e, 0x00, 0x58, 0x00, 0x6a, 0x00, 0x6e, 0x00, 0x60, 0x00, 0x50, 0x00,
+0x2e, 0x00, 0xfc, 0xff, 0xdc, 0xff, 0xba, 0xff, 0xa2, 0xff, 0x9c, 0xff, 0x94, 0xff, 0x9a, 0xff,
+0xb2, 0xff, 0xd2, 0xff, 0xf4, 0xff, 0x08, 0x00, 0x24, 0x00, 0x34, 0x00, 0x38, 0x00, 0x4a, 0x00,
+0x46, 0x00, 0x3a, 0x00, 0x10, 0x00, 0xfa, 0xff, 0xe4, 0xff, 0xc8, 0xff, 0xbc, 0xff, 0xba, 0xff,
+0xba, 0xff, 0xc2, 0xff, 0xc4, 0xff, 0xd4, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x18, 0x00,
+0x14, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x12, 0x00, 0x06, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xe4, 0xff,
+0xda, 0xff, 0xe6, 0xff, 0xe2, 0xff, 0xe8, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff,
+0xf8, 0xff, 0xf8, 0xff, 0xee, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xec, 0xff, 0xfe, 0xff, 0xf6, 0xff,
+0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x04, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xf6, 0xff, 0xee, 0xff,
+0xde, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xca, 0xff, 0xd2, 0xff, 0xde, 0xff, 0xe8, 0xff,
+0xf2, 0xff, 0x08, 0x00, 0x1a, 0x00, 0x28, 0x00, 0x22, 0x00, 0x28, 0x00, 0x22, 0x00, 0x16, 0x00,
+0xfa, 0xff, 0xe2, 0xff, 0xc2, 0xff, 0xac, 0xff, 0xa6, 0xff, 0xa6, 0xff, 0xb4, 0xff, 0xb6, 0xff,
+0xd2, 0xff, 0xf2, 0xff, 0x10, 0x00, 0x32, 0x00, 0x4a, 0x00, 0x54, 0x00, 0x54, 0x00, 0x4c, 0x00,
+0x30, 0x00, 0x12, 0x00, 0xf0, 0xff, 0xc2, 0xff, 0x92, 0xff, 0x86, 0xff, 0x70, 0xff, 0x72, 0xff,
+0x8e, 0xff, 0x98, 0xff, 0xce, 0xff, 0x08, 0x00, 0x2a, 0x00, 0x54, 0x00, 0x70, 0x00, 0x7c, 0x00,
+0x7a, 0x00, 0x5e, 0x00, 0x3e, 0x00, 0x0a, 0x00, 0xdc, 0xff, 0xb2, 0xff, 0x7c, 0xff, 0x5e, 0xff,
+0x54, 0xff, 0x5c, 0xff, 0x82, 0xff, 0xa8, 0xff, 0xd8, 0xff, 0x18, 0x00, 0x46, 0x00, 0x6e, 0x00,
+0xa6, 0x00, 0x9a, 0x00, 0x98, 0x00, 0x78, 0x00, 0x38, 0x00, 0x12, 0x00, 0xd8, 0xff, 0xa0, 0xff,
+0x5e, 0xff, 0x42, 0xff, 0x40, 0xff, 0x40, 0xff, 0x6a, 0xff, 0xa2, 0xff, 0xdc, 0xff, 0x14, 0x00,
+0x52, 0x00, 0x8e, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0x9c, 0x00, 0x74, 0x00, 0x36, 0x00, 0xfc, 0xff,
+0xc0, 0xff, 0x90, 0xff, 0x50, 0xff, 0x2e, 0xff, 0x30, 0xff, 0x3e, 0xff, 0x6a, 0xff, 0xb2, 0xff,
+0xec, 0xff, 0x1c, 0x00, 0x6a, 0x00, 0x9a, 0x00, 0xb0, 0x00, 0xae, 0x00, 0x94, 0x00, 0x6a, 0x00,
+0x2a, 0x00, 0xfe, 0xff, 0xb0, 0xff, 0x7a, 0xff, 0x48, 0xff, 0x2c, 0xff, 0x2e, 0xff, 0x56, 0xff,
+0x88, 0xff, 0xc4, 0xff, 0x00, 0x00, 0x32, 0x00, 0x6a, 0x00, 0x92, 0x00, 0xb2, 0x00, 0xaa, 0x00,
+0x8a, 0x00, 0x5a, 0x00, 0x10, 0x00, 0xdc, 0xff, 0xa4, 0xff, 0x64, 0xff, 0x46, 0xff, 0x2e, 0xff,
+0x38, 0xff, 0x60, 0xff, 0x8c, 0xff, 0xc4, 0xff, 0x06, 0x00, 0x36, 0x00, 0x6a, 0x00, 0x8c, 0x00,
+0x9c, 0x00, 0x96, 0x00, 0x72, 0x00, 0x40, 0x00, 0x0e, 0x00, 0xca, 0xff, 0x9e, 0xff, 0x78, 0xff,
+0x42, 0xff, 0x40, 0xff, 0x4e, 0xff, 0x70, 0xff, 0xa8, 0xff, 0xda, 0xff, 0x12, 0x00, 0x38, 0x00,
+0x6e, 0x00, 0x8c, 0x00, 0x8e, 0x00, 0x7c, 0x00, 0x5e, 0x00, 0x38, 0x00, 0xfe, 0xff, 0xc6, 0xff,
+0x9c, 0xff, 0x72, 0xff, 0x58, 0xff, 0x58, 0xff, 0x66, 0xff, 0x86, 0xff, 0xb8, 0xff, 0xe0, 0xff,
+0x12, 0x00, 0x42, 0x00, 0x50, 0x00, 0x64, 0x00, 0x66, 0x00, 0x64, 0x00, 0x4a, 0x00, 0x14, 0x00,
+0xf4, 0xff, 0xc2, 0xff, 0x98, 0xff, 0x8e, 0xff, 0x7c, 0xff, 0x82, 0xff, 0x82, 0xff, 0x9a, 0xff,
+0xc2, 0xff, 0xee, 0xff, 0x16, 0x00, 0x30, 0x00, 0x42, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x46, 0x00,
+0x42, 0x00, 0x0a, 0x00, 0xf6, 0xff, 0xe6, 0xff, 0xc0, 0xff, 0xbc, 0xff, 0xaa, 0xff, 0xa4, 0xff,
+0xa8, 0xff, 0xbe, 0xff, 0xe2, 0xff, 0xf6, 0xff, 0x08, 0x00, 0x1a, 0x00, 0x12, 0x00, 0x1c, 0x00,
+0x2e, 0x00, 0x24, 0x00, 0x14, 0x00, 0x08, 0x00, 0x00, 0x00, 0xee, 0xff, 0xd2, 0xff, 0xd0, 0xff,
+0xd4, 0xff, 0xc2, 0xff, 0xd4, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xe8, 0xff, 0xee, 0xff, 0xee, 0xff,
+0xf2, 0xff, 0xfa, 0xff, 0x04, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x06, 0x00, 0x04, 0x00,
+0xf6, 0xff, 0xfa, 0xff, 0xf4, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xdc, 0xff, 0xdc, 0xff,
+0xde, 0xff, 0xd6, 0xff, 0xe2, 0xff, 0xea, 0xff, 0xee, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
+0x14, 0x00, 0x14, 0x00, 0x1e, 0x00, 0x14, 0x00, 0x0e, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf0, 0xff,
+0xd2, 0xff, 0xc2, 0xff, 0xb4, 0xff, 0xae, 0xff, 0xb8, 0xff, 0xbc, 0xff, 0xc4, 0xff, 0xe0, 0xff,
+0xf6, 0xff, 0x14, 0x00, 0x28, 0x00, 0x34, 0x00, 0x3e, 0x00, 0x34, 0x00, 0x36, 0x00, 0x22, 0x00,
+0xfe, 0xff, 0xe6, 0xff, 0xbe, 0xff, 0x98, 0xff, 0x84, 0xff, 0x7e, 0xff, 0x92, 0xff, 0xa2, 0xff,
+0xb8, 0xff, 0xe0, 0xff, 0x00, 0x00, 0x2a, 0x00, 0x54, 0x00, 0x62, 0x00, 0x70, 0x00, 0x68, 0x00,
+0x4c, 0x00, 0x2e, 0x00, 0x08, 0x00, 0xd6, 0xff, 0x9a, 0xff, 0x74, 0xff, 0x5e, 0xff, 0x5a, 0xff,
+0x6e, 0xff, 0x84, 0xff, 0xa6, 0xff, 0xdc, 0xff, 0x12, 0x00, 0x4c, 0x00, 0x72, 0x00, 0x90, 0x00,
+0x8e, 0x00, 0x74, 0x00, 0x5a, 0x00, 0x32, 0x00, 0xfe, 0xff, 0xc4, 0xff, 0x84, 0xff, 0x54, 0xff,
+0x42, 0xff, 0x32, 0xff, 0x4e, 0xff, 0x74, 0xff, 0xac, 0xff, 0xe6, 0xff, 0x26, 0x00, 0x5a, 0x00,
+0x82, 0x00, 0xac, 0x00, 0x9c, 0x00, 0x92, 0x00, 0x66, 0x00, 0x30, 0x00, 0xfa, 0xff, 0xae, 0xff,
+0x78, 0xff, 0x48, 0xff, 0x2e, 0xff, 0x32, 0xff, 0x54, 0xff, 0x8e, 0xff, 0xce, 0xff, 0xfe, 0xff,
+0x32, 0x00, 0x6a, 0x00, 0x94, 0x00, 0xb2, 0x00, 0xa6, 0x00, 0x8e, 0x00, 0x56, 0x00, 0x10, 0x00,
+0xdc, 0xff, 0x9c, 0xff, 0x5e, 0xff, 0x3e, 0xff, 0x26, 0xff, 0x38, 0xff, 0x64, 0xff, 0x98, 0xff,
+0xd8, 0xff, 0x0c, 0x00, 0x42, 0x00, 0x78, 0x00, 0x92, 0x00, 0xb0, 0x00, 0x9c, 0x00, 0x70, 0x00,
+0x34, 0x00, 0xf2, 0xff, 0xc8, 0xff, 0x84, 0xff, 0x52, 0xff, 0x36, 0xff, 0x2c, 0xff, 0x42, 0xff,
+0x7a, 0xff, 0xb2, 0xff, 0xf4, 0xff, 0x20, 0x00, 0x50, 0x00, 0x82, 0x00, 0xaa, 0x00, 0xaa, 0x00,
+0x8c, 0x00, 0x6c, 0x00, 0x22, 0x00, 0xe0, 0xff, 0xbe, 0xff, 0x84, 0xff, 0x4c, 0xff, 0x3e, 0xff,
+0x42, 0xff, 0x5c, 0xff, 0x92, 0xff, 0xc8, 0xff, 0xf6, 0xff, 0x28, 0x00, 0x5a, 0x00, 0x7e, 0x00,
+0x9e, 0x00, 0x9e, 0x00, 0x7e, 0x00, 0x50, 0x00, 0x12, 0x00, 0xde, 0xff, 0xa4, 0xff, 0x80, 0xff,
+0x5c, 0xff, 0x46, 0xff, 0x4e, 0xff, 0x6a, 0xff, 0x98, 0xff, 0xc2, 0xff, 0xfa, 0xff, 0x24, 0x00,
+0x4e, 0x00, 0x66, 0x00, 0x7a, 0x00, 0x78, 0x00, 0x5c, 0x00, 0x44, 0x00, 0x00, 0x00, 0xde, 0xff,
+0xae, 0xff, 0x92, 0xff, 0x80, 0xff, 0x6c, 0xff, 0x70, 0xff, 0x84, 0xff, 0xac, 0xff, 0xd6, 0xff,
+0xf2, 0xff, 0x20, 0x00, 0x40, 0x00, 0x44, 0x00, 0x5e, 0x00, 0x5a, 0x00, 0x4a, 0x00, 0x22, 0x00,
+0x00, 0x00, 0xf0, 0xff, 0xba, 0xff, 0xa6, 0xff, 0x9e, 0xff, 0x94, 0xff, 0x98, 0xff, 0xa4, 0xff,
+0xc6, 0xff, 0xe4, 0xff, 0xf8, 0xff, 0x0e, 0x00, 0x18, 0x00, 0x2c, 0x00, 0x34, 0x00, 0x26, 0x00,
+0x1c, 0x00, 0x06, 0x00, 0xf2, 0xff, 0xde, 0xff, 0xc6, 0xff, 0xba, 0xff, 0xc8, 0xff, 0xc2, 0xff,
+0xc6, 0xff, 0xc8, 0xff, 0xda, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0x0a, 0x00, 0x08, 0x00, 0x04, 0x00,
+0x1a, 0x00, 0x14, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf2, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf0, 0xff,
+0xf4, 0xff, 0xe8, 0xff, 0xee, 0xff, 0xec, 0xff, 0xe8, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xee, 0xff,
+0xe8, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf8, 0xff, 0x02, 0x00, 0x08, 0x00, 0x0e, 0x00,
+0x06, 0x00, 0x0c, 0x00, 0x04, 0x00, 0x0c, 0x00, 0xfa, 0xff, 0xf0, 0xff, 0xe2, 0xff, 0xca, 0xff,
+0xca, 0xff, 0xc8, 0xff, 0xd0, 0xff, 0xd6, 0xff, 0xd2, 0xff, 0xd6, 0xff, 0xf4, 0xff, 0x08, 0x00,
+0x12, 0x00, 0x26, 0x00, 0x2c, 0x00, 0x34, 0x00, 0x26, 0x00, 0x22, 0x00, 0x0c, 0x00, 0xfc, 0xff,
+0xe4, 0xff, 0xbc, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xa6, 0xff, 0xb0, 0xff, 0xc0, 0xff, 0xd0, 0xff,
+0xf2, 0xff, 0x08, 0x00, 0x34, 0x00, 0x52, 0x00, 0x50, 0x00, 0x46, 0x00, 0x3a, 0x00, 0x36, 0x00,
+0x0e, 0x00, 0xe6, 0xff, 0xca, 0xff, 0x94, 0xff, 0x76, 0xff, 0x72, 0xff, 0x6c, 0xff, 0x8c, 0xff,
+0x92, 0xff, 0xc2, 0xff, 0xf4, 0xff, 0x22, 0x00, 0x58, 0x00, 0x64, 0x00, 0x7c, 0x00, 0x76, 0x00,
+0x54, 0x00, 0x44, 0x00, 0x10, 0x00, 0xe4, 0xff, 0xa8, 0xff, 0x74, 0xff, 0x64, 0xff, 0x4c, 0xff,
+0x54, 0xff, 0x6e, 0xff, 0x8e, 0xff, 0xc6, 0xff, 0x00, 0x00, 0x3e, 0x00, 0x6e, 0x00, 0x86, 0x00,
+0xa8, 0x00, 0x94, 0x00, 0x76, 0x00, 0x4a, 0x00, 0x16, 0x00, 0xd2, 0xff, 0xa2, 0xff, 0x6a, 0xff,
+0x40, 0xff, 0x36, 0xff, 0x3c, 0xff, 0x64, 0xff, 0x98, 0xff, 0xd8, 0xff, 0x0a, 0x00, 0x44, 0x00,
+0x86, 0x00, 0xa4, 0x00, 0xac, 0x00, 0xa2, 0x00, 0x76, 0x00, 0x3e, 0x00, 0x0c, 0x00, 0xd4, 0xff,
+0x92, 0xff, 0x5c, 0xff, 0x30, 0xff, 0x20, 0xff, 0x3e, 0xff, 0x68, 0xff, 0xa2, 0xff, 0xe0, 0xff,
+0x14, 0x00, 0x64, 0x00, 0x94, 0x00, 0xb8, 0x00, 0xc2, 0x00, 0xb0, 0x00, 0x8a, 0x00, 0x3c, 0x00,
+0x08, 0x00, 0xda, 0xff, 0x86, 0xff, 0x58, 0xff, 0x2e, 0xff, 0x22, 0xff, 0x3e, 0xff, 0x66, 0xff,
+0xb2, 0xff, 0xee, 0xff, 0x1e, 0x00, 0x6c, 0x00, 0x9c, 0x00, 0xba, 0x00, 0xba, 0x00, 0x9e, 0x00,
+0x72, 0x00, 0x2c, 0x00, 0xf8, 0xff, 0xb8, 0xff, 0x7a, 0xff, 0x48, 0xff, 0x28, 0xff, 0x26, 0xff,
+0x4c, 0xff, 0x80, 0xff, 0xba, 0xff, 0xfe, 0xff, 0x30, 0x00, 0x70, 0x00, 0xa2, 0x00, 0xa8, 0x00,
+0xa4, 0x00, 0x86, 0x00, 0x58, 0x00, 0x1a, 0x00, 0xdc, 0xff, 0xa8, 0xff, 0x6e, 0xff, 0x4c, 0xff,
+0x3c, 0xff, 0x48, 0xff, 0x74, 0xff, 0xa2, 0xff, 0xdc, 0xff, 0x1a, 0x00, 0x40, 0x00, 0x76, 0x00,
+0x8e, 0x00, 0x96, 0x00, 0x88, 0x00, 0x62, 0x00, 0x3a, 0x00, 0xf8, 0xff, 0xd0, 0xff, 0x9c, 0xff,
+0x70, 0xff, 0x54, 0xff, 0x52, 0xff, 0x58, 0xff, 0x80, 0xff, 0xac, 0xff, 0xe2, 0xff, 0x0e, 0x00,
+0x32, 0x00, 0x4e, 0x00, 0x62, 0x00, 0x6e, 0x00, 0x60, 0x00, 0x42, 0x00, 0x14, 0x00, 0xf4, 0xff,
+0xc6, 0xff, 0xa2, 0xff, 0x8e, 0xff, 0x74, 0xff, 0x78, 0xff, 0x84, 0xff, 0x96, 0xff, 0xc6, 0xff,
+0xec, 0xff, 0x0c, 0x00, 0x2a, 0x00, 0x36, 0x00, 0x46, 0x00, 0x4a, 0x00, 0x42, 0x00, 0x30, 0x00,
+0x06, 0x00, 0xee, 0xff, 0xd6, 0xff, 0xb4, 0xff, 0xae, 0xff, 0x9e, 0xff, 0xa0, 0xff, 0xb6, 0xff,
+0xc2, 0xff, 0xd0, 0xff, 0xee, 0xff, 0xfc, 0xff, 0x18, 0x00, 0x16, 0x00, 0x14, 0x00, 0x24, 0x00,
+0x14, 0x00, 0x14, 0x00, 0xf6, 0xff, 0xe8, 0xff, 0xe4, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xc6, 0xff,
+0xc2, 0xff, 0xd2, 0xff, 0xd6, 0xff, 0xe6, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xf6, 0xff, 0xfc, 0xff,
+0x02, 0x00, 0x06, 0x00, 0x04, 0x00, 0x06, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xf8, 0xff,
+0xfc, 0xff, 0xfe, 0xff, 0xf4, 0xff, 0xfa, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xe6, 0xff, 0xe2, 0xff,
+0xe0, 0xff, 0xec, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x0e, 0x00,
+0x12, 0x00, 0x16, 0x00, 0x12, 0x00, 0x1c, 0x00, 0x16, 0x00, 0xf8, 0xff, 0xf0, 0xff, 0xd6, 0xff,
+0xd4, 0xff, 0xbc, 0xff, 0xac, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xe2, 0xff, 0x04, 0x00,
+0x0a, 0x00, 0x2c, 0x00, 0x48, 0x00, 0x44, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x2c, 0x00, 0xfc, 0xff,
+0xea, 0xff, 0xc8, 0xff, 0x9a, 0xff, 0x90, 0xff, 0x92, 0xff, 0x92, 0xff, 0xa6, 0xff, 0xbe, 0xff,
+0xe2, 0xff, 0x0a, 0x00, 0x2c, 0x00, 0x58, 0x00, 0x68, 0x00, 0x76, 0x00, 0x60, 0x00, 0x46, 0x00,
+0x2c, 0x00, 0xfe, 0xff, 0xce, 0xff, 0x9c, 0xff, 0x7a, 0xff, 0x60, 0xff, 0x5e, 0xff, 0x6c, 0xff,
+0x86, 0xff, 0xa8, 0xff, 0xe2, 0xff, 0x10, 0x00, 0x3c, 0x00, 0x6c, 0x00, 0x80, 0x00, 0x8a, 0x00,
+0x74, 0x00, 0x54, 0x00, 0x22, 0x00, 0xec, 0xff, 0xb8, 0xff, 0x84, 0xff, 0x5e, 0xff, 0x46, 0xff,
+0x46, 0xff, 0x58, 0xff, 0x82, 0xff, 0xb0, 0xff, 0xee, 0xff, 0x22, 0x00, 0x5a, 0x00, 0x80, 0x00,
+0x9c, 0x00, 0xa0, 0x00, 0x8e, 0x00, 0x52, 0x00, 0x1a, 0x00, 0xe6, 0xff, 0xaa, 0xff, 0x7c, 0xff,
+0x52, 0xff, 0x38, 0xff, 0x3a, 0xff, 0x58, 0xff, 0x82, 0xff, 0xc2, 0xff, 0xfa, 0xff, 0x2e, 0x00,
+0x64, 0x00, 0x98, 0x00, 0xb2, 0x00, 0xa2, 0x00, 0x80, 0x00, 0x52, 0x00, 0x0e, 0x00, 0xda, 0xff,
+0xa4, 0xff, 0x6a, 0xff, 0x46, 0xff, 0x30, 0xff, 0x36, 0xff, 0x56, 0xff, 0x88, 0xff, 0xd6, 0xff,
+0x06, 0x00, 0x34, 0x00, 0x7c, 0x00, 0x9c, 0x00, 0xb8, 0x00, 0xaa, 0x00, 0x7c, 0x00, 0x42, 0x00,
+0x00, 0x00, 0xe0, 0xff, 0x9e, 0xff, 0x6a, 0xff, 0x42, 0xff, 0x2a, 0xff, 0x40, 0xff, 0x60, 0xff,
+0xa6, 0xff, 0xe6, 0xff, 0x1a, 0x00, 0x56, 0x00, 0x88, 0x00, 0xaa, 0x00, 0xba, 0x00, 0x9e, 0x00,
+0x7c, 0x00, 0x3c, 0x00, 0x06, 0x00, 0xca, 0xff, 0x8c, 0xff, 0x64, 0xff, 0x38, 0xff, 0x38, 0xff,
+0x54, 0xff, 0x78, 0xff, 0xb4, 0xff, 0xf0, 0xff, 0x20, 0x00, 0x56, 0x00, 0x8a, 0x00, 0xa0, 0x00,
+0xa6, 0x00, 0x8a, 0x00, 0x66, 0x00, 0x2e, 0x00, 0xf2, 0xff, 0xbc, 0xff, 0x92, 0xff, 0x6c, 0xff,
+0x4c, 0xff, 0x4a, 0xff, 0x64, 0xff, 0x88, 0xff, 0xbe, 0xff, 0xf8, 0xff, 0x26, 0x00, 0x56, 0x00,
+0x76, 0x00, 0x84, 0x00, 0x8a, 0x00, 0x72, 0x00, 0x54, 0x00, 0x24, 0x00, 0xf6, 0xff, 0xba, 0xff,
+0x90, 0xff, 0x88, 0xff, 0x68, 0xff, 0x6c, 0xff, 0x78, 0xff, 0x98, 0xff, 0xcc, 0xff, 0xec, 0xff,
+0x1a, 0x00, 0x40, 0x00, 0x54, 0x00, 0x62, 0x00, 0x54, 0x00, 0x52, 0x00, 0x36, 0x00, 0x04, 0x00,
+0xf0, 0xff, 0xca, 0xff, 0xa6, 0xff, 0x94, 0xff, 0x8c, 0xff, 0x90, 0xff, 0x8c, 0xff, 0xae, 0xff,
+0xd6, 0xff, 0xe8, 0xff, 0x0a, 0x00, 0x24, 0x00, 0x20, 0x00, 0x26, 0x00, 0x28, 0x00, 0x22, 0x00,
+0x06, 0x00, 0xfa, 0xff, 0xe6, 0xff, 0xd0, 0xff, 0xc2, 0xff, 0xba, 0xff, 0xb6, 0xff, 0xba, 0xff,
+0xc8, 0xff, 0xd6, 0xff, 0xf2, 0xff, 0xf4, 0xff, 0xfc, 0xff, 0x0c, 0x00, 0xf8, 0xff, 0x06, 0x00,
+0x06, 0x00, 0x04, 0x00, 0x06, 0x00, 0xf2, 0xff, 0xe8, 0xff, 0xd2, 0xff, 0xdc, 0xff, 0xec, 0xff,
+0xde, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xde, 0xff, 0xe2, 0xff, 0xe8, 0xff, 0xea, 0xff,
+0xf4, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xf6, 0xff, 0x06, 0x00, 0x02, 0x00, 0x04, 0x00,
+0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0xf2, 0xff, 0xf6, 0xff, 0xe4, 0xff, 0xde, 0xff, 0xda, 0xff,
+0xc8, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xd8, 0xff, 0xe6, 0xff, 0xf8, 0xff, 0x0a, 0x00, 0x18, 0x00,
+0x28, 0x00, 0x30, 0x00, 0x34, 0x00, 0x26, 0x00, 0x28, 0x00, 0x16, 0x00, 0xfa, 0xff, 0xdc, 0xff,
+0xd2, 0xff, 0xb4, 0xff, 0xac, 0xff, 0xae, 0xff, 0xba, 0xff, 0xbe, 0xff, 0xd2, 0xff, 0xfc, 0xff,
+0x14, 0x00, 0x3c, 0x00, 0x50, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x48, 0x00, 0x36, 0x00, 0x10, 0x00,
+0xf6, 0xff, 0xcc, 0xff, 0xa0, 0xff, 0x88, 0xff, 0x70, 0xff, 0x76, 0xff, 0x8a, 0xff, 0xaa, 0xff,
+0xcc, 0xff, 0xfc, 0xff, 0x24, 0x00, 0x5e, 0x00, 0x6c, 0x00, 0x78, 0x00, 0x7e, 0x00, 0x68, 0x00,
+0x4e, 0x00, 0x16, 0x00, 0xe8, 0xff, 0xae, 0xff, 0x86, 0xff, 0x64, 0xff, 0x48, 0xff, 0x54, 0xff,
+0x72, 0xff, 0x9c, 0xff, 0xce, 0xff, 0x00, 0x00, 0x32, 0x00, 0x6e, 0x00, 0x92, 0x00, 0x9e, 0x00,
+0x9e, 0x00, 0x82, 0x00, 0x44, 0x00, 0x06, 0x00, 0xdc, 0xff, 0x9c, 0xff, 0x64, 0xff, 0x3e, 0xff,
+0x26, 0xff, 0x34, 0xff, 0x4c, 0xff, 0x90, 0xff, 0xd2, 0xff, 0x02, 0x00, 0x46, 0x00, 0x7a, 0x00,
+0x9c, 0x00, 0xa8, 0x00, 0xa4, 0x00, 0x80, 0x00, 0x44, 0x00, 0xf8, 0xff, 0xc8, 0xff, 0x96, 0xff,
+0x58, 0xff, 0x32, 0xff, 0x14, 0xff, 0x3a, 0xff, 0x54, 0xff, 0x98, 0xff, 0xe6, 0xff, 0x02, 0x00,
+0x54, 0x00, 0x8c, 0x00, 0xa8, 0x00, 0xb8, 0x00, 0x9c, 0x00, 0x7a, 0x00, 0x32, 0x00, 0x02, 0x00,
+0xcc, 0xff, 0x7a, 0xff, 0x56, 0xff, 0x28, 0xff, 0x22, 0xff, 0x3a, 0xff, 0x6a, 0xff, 0xb6, 0xff,
+0xf4, 0xff, 0x12, 0x00, 0x5c, 0x00, 0x88, 0x00, 0xa6, 0x00, 0xb4, 0x00, 0x90, 0x00, 0x64, 0x00,
+0x12, 0x00, 0xea, 0xff, 0xb2, 0xff, 0x70, 0xff, 0x52, 0xff, 0x26, 0xff, 0x38, 0xff, 0x52, 0xff,
+0x7c, 0xff, 0xc8, 0xff, 0x04, 0x00, 0x30, 0x00, 0x6c, 0x00, 0x96, 0x00, 0x9e, 0x00, 0x9c, 0x00,
+0x84, 0x00, 0x58, 0x00, 0x1e, 0x00, 0xe2, 0xff, 0xa8, 0xff, 0x68, 0xff, 0x56, 0xff, 0x42, 0xff,
+0x4e, 0xff, 0x7c, 0xff, 0x9c, 0xff, 0xd0, 0xff, 0x08, 0x00, 0x3a, 0x00, 0x68, 0x00, 0x94, 0x00,
+0x98, 0x00, 0x8c, 0x00, 0x68, 0x00, 0x42, 0x00, 0x08, 0x00, 0xd0, 0xff, 0xa6, 0xff, 0x7e, 0xff,
+0x6e, 0xff, 0x52, 0xff, 0x66, 0xff, 0x80, 0xff, 0xa4, 0xff, 0xda, 0xff, 0x02, 0x00, 0x38, 0x00,
+0x4c, 0x00, 0x64, 0x00, 0x78, 0x00, 0x60, 0x00, 0x52, 0x00, 0x32, 0x00, 0x08, 0x00, 0xd6, 0xff,
+0xa4, 0xff, 0x9c, 0xff, 0x8a, 0xff, 0x8a, 0xff, 0x8a, 0xff, 0x98, 0xff, 0xc2, 0xff, 0xe2, 0xff,
+0xfe, 0xff, 0x28, 0x00, 0x48, 0x00, 0x4e, 0x00, 0x4e, 0x00, 0x4a, 0x00, 0x38, 0x00, 0x1e, 0x00,
+0x00, 0x00, 0xe0, 0xff, 0xc4, 0xff, 0xb0, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xb2, 0xff, 0xbc, 0xff,
+0xd4, 0xff, 0xe8, 0xff, 0xfc, 0xff, 0x14, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x2a, 0x00, 0x24, 0x00,
+0x12, 0x00, 0x04, 0x00, 0xee, 0xff, 0xec, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xdc, 0xff, 0xcc, 0xff,
+0xd2, 0xff, 0xce, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xfc, 0xff, 0xf8, 0xff,
+0x00, 0x00, 0xfa, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfa, 0xff, 0x08, 0x00, 0xfe, 0xff, 0x02, 0x00,
+0x02, 0x00, 0xf8, 0xff, 0xf4, 0xff, 0xea, 0xff, 0xdc, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xd6, 0xff,
+0xd4, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf0, 0xff, 0x10, 0x00, 0x16, 0x00,
+0x28, 0x00, 0x1e, 0x00, 0x12, 0x00, 0x0e, 0x00, 0xf2, 0xff, 0xe8, 0xff, 0xce, 0xff, 0xca, 0xff,
+0xba, 0xff, 0xa6, 0xff, 0xb0, 0xff, 0xb6, 0xff, 0xc4, 0xff, 0xdc, 0xff, 0xec, 0xff, 0x06, 0x00,
+0x28, 0x00, 0x42, 0x00, 0x46, 0x00, 0x3c, 0x00, 0x3a, 0x00, 0x26, 0x00, 0x0a, 0x00, 0xee, 0xff,
+0xd0, 0xff, 0xb0, 0xff, 0xa0, 0xff, 0x94, 0xff, 0x90, 0xff, 0x9c, 0xff, 0xb2, 0xff, 0xe0, 0xff,
+0xfe, 0xff, 0x16, 0x00, 0x4e, 0x00, 0x5e, 0x00, 0x6c, 0x00, 0x66, 0x00, 0x46, 0x00, 0x38, 0x00,
+0x02, 0x00, 0xea, 0xff, 0xb4, 0xff, 0x88, 0xff, 0x7a, 0xff, 0x6e, 0xff, 0x6a, 0xff, 0x80, 0xff,
+0xa2, 0xff, 0xd6, 0xff, 0x06, 0x00, 0x32, 0x00, 0x60, 0x00, 0x80, 0x00, 0x88, 0x00, 0x78, 0x00,
+0x68, 0x00, 0x3a, 0x00, 0x0a, 0x00, 0xd2, 0xff, 0xa0, 0xff, 0x78, 0xff, 0x56, 0xff, 0x4e, 0xff,
+0x52, 0xff, 0x74, 0xff, 0xa8, 0xff, 0xe4, 0xff, 0x24, 0x00, 0x52, 0x00, 0x7c, 0x00, 0x9e, 0x00,
+0xa8, 0x00, 0x98, 0x00, 0x6e, 0x00, 0x2e, 0x00, 0xfe, 0xff, 0xc6, 0xff, 0x94, 0xff, 0x5a, 0xff,
+0x34, 0xff, 0x34, 0xff, 0x46, 0xff, 0x6c, 0xff, 0xaa, 0xff, 0xe8, 0xff, 0x22, 0x00, 0x62, 0x00,
+0x92, 0x00, 0xae, 0x00, 0xac, 0x00, 0x98, 0x00, 0x60, 0x00, 0x1e, 0x00, 0xee, 0xff, 0xb8, 0xff,
+0x6e, 0xff, 0x42, 0xff, 0x28, 0xff, 0x28, 0xff, 0x40, 0xff, 0x70, 0xff, 0xc0, 0xff, 0xf8, 0xff,
+0x28, 0x00, 0x6c, 0x00, 0x9a, 0x00, 0xae, 0x00, 0xae, 0x00, 0x88, 0x00, 0x5a, 0x00, 0x10, 0x00,
+0xdc, 0xff, 0xac, 0xff, 0x76, 0xff, 0x46, 0xff, 0x2e, 0xff, 0x40, 0xff, 0x5a, 0xff, 0x92, 0xff,
+0xe2, 0xff, 0x0c, 0x00, 0x42, 0x00, 0x80, 0x00, 0x9e, 0x00, 0xa8, 0x00, 0x98, 0x00, 0x7c, 0x00,
+0x3c, 0x00, 0x04, 0x00, 0xcc, 0xff, 0x98, 0xff, 0x60, 0xff, 0x44, 0xff, 0x38, 0xff, 0x48, 0xff,
+0x70, 0xff, 0xa4, 0xff, 0xe6, 0xff, 0x1e, 0x00, 0x44, 0x00, 0x74, 0x00, 0x98, 0x00, 0x9e, 0x00,
+0x88, 0x00, 0x66, 0x00, 0x2a, 0x00, 0xfc, 0xff, 0xc2, 0xff, 0x8e, 0xff, 0x64, 0xff, 0x4e, 0xff,
+0x4c, 0xff, 0x5a, 0xff, 0x86, 0xff, 0xc4, 0xff, 0xfc, 0xff, 0x30, 0x00, 0x5c, 0x00, 0x6c, 0x00,
+0x8e, 0x00, 0x8e, 0x00, 0x74, 0x00, 0x4e, 0x00, 0x22, 0x00, 0xea, 0xff, 0xb4, 0xff, 0x8c, 0xff,
+0x7a, 0xff, 0x68, 0xff, 0x68, 0xff, 0x86, 0xff, 0xa2, 0xff, 0xd2, 0xff, 0xfc, 0xff, 0x26, 0x00,
+0x4a, 0x00, 0x52, 0x00, 0x56, 0x00, 0x52, 0x00, 0x52, 0x00, 0x34, 0x00, 0x06, 0x00, 0xe8, 0xff,
+0xbc, 0xff, 0xa4, 0xff, 0xa0, 0xff, 0x94, 0xff, 0xa0, 0xff, 0x98, 0xff, 0xbc, 0xff, 0xf6, 0xff,
+0x02, 0x00, 0x10, 0x00, 0x24, 0x00, 0x36, 0x00, 0x38, 0x00, 0x34, 0x00, 0x36, 0x00, 0x16, 0x00,
+0x00, 0x00, 0xf2, 0xff, 0xd6, 0xff, 0xc4, 0xff, 0xc2, 0xff, 0xc4, 0xff, 0xc6, 0xff, 0xca, 0xff,
+0xd8, 0xff, 0xea, 0xff, 0x02, 0x00, 0x02, 0x00, 0x12, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x14, 0x00,
+0x10, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xe2, 0xff, 0xe0, 0xff,
+0xe2, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xe4, 0xff, 0xda, 0xff, 0xe6, 0xff, 0xde, 0xff, 0xe4, 0xff,
+0xea, 0xff, 0xee, 0xff, 0xf0, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00, 0x0e, 0x00,
+0x06, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xea, 0xff, 0xd4, 0xff, 0xcc, 0xff, 0xbc, 0xff,
+0xbe, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xda, 0xff, 0xf2, 0xff, 0x00, 0x00, 0x0c, 0x00, 0x22, 0x00,
+0x2a, 0x00, 0x32, 0x00, 0x26, 0x00, 0x22, 0x00, 0x12, 0x00, 0xfa, 0xff, 0xe4, 0xff, 0xc6, 0xff,
+0xac, 0xff, 0x8e, 0xff, 0x94, 0xff, 0xa6, 0xff, 0xb4, 0xff, 0xbe, 0xff, 0xe2, 0xff, 0xfe, 0xff,
+0x1e, 0x00, 0x4c, 0x00, 0x52, 0x00, 0x5a, 0x00, 0x46, 0x00, 0x3e, 0x00, 0x2a, 0x00, 0xf6, 0xff,
+0xd8, 0xff, 0xaa, 0xff, 0x7e, 0xff, 0x70, 0xff, 0x6c, 0xff, 0x7a, 0xff, 0x9a, 0xff, 0xbc, 0xff,
+0xea, 0xff, 0x16, 0x00, 0x40, 0x00, 0x6a, 0x00, 0x82, 0x00, 0x8e, 0x00, 0x76, 0x00, 0x54, 0x00,
+0x32, 0x00, 0xfe, 0xff, 0xcc, 0xff, 0x92, 0xff, 0x70, 0xff, 0x5c, 0xff, 0x56, 0xff, 0x6c, 0xff,
+0x8c, 0xff, 0xc0, 0xff, 0xf4, 0xff, 0x24, 0x00, 0x60, 0x00, 0x82, 0x00, 0x94, 0x00, 0xa2, 0x00,
+0x92, 0x00, 0x5a, 0x00, 0x26, 0x00, 0xf4, 0xff, 0xae, 0xff, 0x86, 0xff, 0x52, 0xff, 0x3c, 0xff,
+0x40, 0xff, 0x52, 0xff, 0x88, 0xff, 0xc6, 0xff, 0xfe, 0xff, 0x28, 0x00, 0x70, 0x00, 0x98, 0x00,
+0xb0, 0x00, 0xac, 0x00, 0x8e, 0x00, 0x5c, 0x00, 0x24, 0x00, 0xee, 0xff, 0xae, 0xff, 0x74, 0xff,
+0x48, 0xff, 0x34, 0xff, 0x38, 0xff, 0x5a, 0xff, 0x8e, 0xff, 0xd2, 0xff, 0x0a, 0x00, 0x3e, 0x00,
+0x7a, 0x00, 0xa6, 0x00, 0xb8, 0x00, 0xb0, 0x00, 0x86, 0x00, 0x4a, 0x00, 0x0c, 0x00, 0xda, 0xff,
+0xa0, 0xff, 0x58, 0xff, 0x38, 0xff, 0x28, 0xff, 0x3a, 0xff, 0x58, 0xff, 0x98, 0xff, 0xe4, 0xff,
+0x10, 0x00, 0x50, 0x00, 0x84, 0x00, 0xaa, 0x00, 0xa6, 0x00, 0x9a, 0x00, 0x72, 0x00, 0x36, 0x00,
+0xf6, 0xff, 0xba, 0xff, 0x88, 0xff, 0x4c, 0xff, 0x32, 0xff, 0x30, 0xff, 0x4a, 0xff, 0x72, 0xff,
+0xa8, 0xff, 0xf4, 0xff, 0x22, 0x00, 0x5e, 0x00, 0x92, 0x00, 0xa8, 0x00, 0x9e, 0x00, 0x84, 0x00,
+0x5c, 0x00, 0x1a, 0x00, 0xf4, 0xff, 0xb0, 0xff, 0x7e, 0xff, 0x56, 0xff, 0x3c, 0xff, 0x40, 0xff,
+0x5a, 0xff, 0x90, 0xff, 0xc6, 0xff, 0x02, 0x00, 0x28, 0x00, 0x66, 0x00, 0x80, 0x00, 0x90, 0x00,
+0x92, 0x00, 0x62, 0x00, 0x46, 0x00, 0x10, 0x00, 0xe2, 0xff, 0xb4, 0xff, 0x82, 0xff, 0x68, 0xff,
+0x60, 0xff, 0x62, 0xff, 0x7e, 0xff, 0x96, 0xff, 0xc8, 0xff, 0x08, 0x00, 0x2e, 0x00, 0x54, 0x00,
+0x66, 0x00, 0x68, 0x00, 0x70, 0x00, 0x60, 0x00, 0x3c, 0x00, 0x14, 0x00, 0xee, 0xff, 0xbe, 0xff,
+0xae, 0xff, 0xa2, 0xff, 0x8a, 0xff, 0x8a, 0xff, 0xa2, 0xff, 0xc2, 0xff, 0xe8, 0xff, 0x08, 0x00,
+0x20, 0x00, 0x3e, 0x00, 0x46, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x3a, 0x00, 0x1a, 0x00, 0x02, 0x00,
+0xfe, 0xff, 0xda, 0xff, 0xc2, 0xff, 0xbe, 0xff, 0xb2, 0xff, 0xba, 0xff, 0xc2, 0xff, 0xdc, 0xff,
+0xf2, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x24, 0x00, 0x0e, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x0c, 0x00,
+0x06, 0x00, 0xf4, 0xff, 0xf4, 0xff, 0xec, 0xff, 0xe8, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xe4, 0xff,
+0xf0, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x06, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf4, 0xff,
+0xee, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xfc, 0xff,
+0xfa, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xd0, 0xff, 0xca, 0xff, 0xc8, 0xff,
+0xba, 0xff, 0xbc, 0xff, 0xca, 0xff, 0xda, 0xff, 0xee, 0xff, 0x0a, 0x00, 0x1a, 0x00, 0x2a, 0x00,
+0x1c, 0x00, 0x20, 0x00, 0x20, 0x00, 0x06, 0x00, 0xf2, 0xff, 0xe2, 0xff, 0xc4, 0xff, 0xa2, 0xff,
+0x98, 0xff, 0x9a, 0xff, 0x9e, 0xff, 0xa6, 0xff, 0xce, 0xff, 0xe8, 0xff, 0x08, 0x00, 0x32, 0x00,
+0x48, 0x00, 0x56, 0x00, 0x56, 0x00, 0x40, 0x00, 0x30, 0x00, 0x14, 0x00, 0xe8, 0xff, 0xc6, 0xff,
+0xa2, 0xff, 0x82, 0xff, 0x7a, 0xff, 0x74, 0xff, 0x8c, 0xff, 0xa2, 0xff, 0xd4, 0xff, 0x04, 0x00,
+0x2a, 0x00, 0x4c, 0x00, 0x62, 0x00, 0x6e, 0x00, 0x62, 0x00, 0x4c, 0x00, 0x2a, 0x00, 0x02, 0x00,
+0xd2, 0xff, 0xa8, 0xff, 0x80, 0xff, 0x64, 0xff, 0x60, 0xff, 0x62, 0xff, 0x7c, 0xff, 0xa6, 0xff,
+0xda, 0xff, 0x0e, 0x00, 0x46, 0x00, 0x74, 0x00, 0x84, 0x00, 0x92, 0x00, 0x82, 0x00, 0x6e, 0x00,
+0x40, 0x00, 0x08, 0x00, 0xd8, 0xff, 0x9e, 0xff, 0x7a, 0xff, 0x56, 0xff, 0x4a, 0xff, 0x50, 0xff,
+0x78, 0xff, 0xae, 0xff, 0xea, 0xff, 0x1c, 0x00, 0x5a, 0x00, 0x8a, 0x00, 0xa0, 0x00, 0xba, 0x00,
+0xa6, 0x00, 0x7e, 0x00, 0x42, 0x00, 0x02, 0x00, 0xd2, 0xff, 0x96, 0xff, 0x62, 0xff, 0x48, 0xff,
+0x2c, 0xff, 0x40, 0xff, 0x70, 0xff, 0xae, 0xff, 0xea, 0xff, 0x28, 0x00, 0x58, 0x00, 0x8c, 0x00,
+0xaa, 0x00, 0xb6, 0x00, 0xae, 0x00, 0x72, 0x00, 0x38, 0x00, 0xfc, 0xff, 0xc8, 0xff, 0x88, 0xff,
+0x5c, 0xff, 0x38, 0xff, 0x3a, 0xff, 0x50, 0xff, 0x7c, 0xff, 0xc6, 0xff, 0xfa, 0xff, 0x34, 0x00,
+0x74, 0x00, 0x98, 0x00, 0xb8, 0x00, 0xb2, 0x00, 0x94, 0x00, 0x66, 0x00, 0x26, 0x00, 0xea, 0xff,
+0xb4, 0xff, 0x78, 0xff, 0x48, 0xff, 0x30, 0xff, 0x3e, 0xff, 0x5c, 0xff, 0x90, 0xff, 0xc8, 0xff,
+0x00, 0x00, 0x36, 0x00, 0x6c, 0x00, 0x8e, 0x00, 0xa4, 0x00, 0x9e, 0x00, 0x78, 0x00, 0x40, 0x00,
+0xfe, 0xff, 0xce, 0xff, 0x9c, 0xff, 0x6c, 0xff, 0x40, 0xff, 0x2a, 0xff, 0x42, 0xff, 0x6a, 0xff,
+0x96, 0xff, 0xd2, 0xff, 0x02, 0x00, 0x34, 0x00, 0x58, 0x00, 0x84, 0x00, 0x94, 0x00, 0x80, 0x00,
+0x60, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xc8, 0xff, 0xa0, 0xff, 0x72, 0xff, 0x5e, 0xff, 0x54, 0xff,
+0x66, 0xff, 0x8c, 0xff, 0xa6, 0xff, 0xe6, 0xff, 0x0a, 0x00, 0x42, 0x00, 0x62, 0x00, 0x78, 0x00,
+0x76, 0x00, 0x62, 0x00, 0x56, 0x00, 0x20, 0x00, 0xfc, 0xff, 0xc2, 0xff, 0xa0, 0xff, 0x7e, 0xff,
+0x72, 0xff, 0x74, 0xff, 0x7a, 0xff, 0x98, 0xff, 0xba, 0xff, 0xea, 0xff, 0x0c, 0x00, 0x3a, 0x00,
+0x46, 0x00, 0x5c, 0x00, 0x60, 0x00, 0x4e, 0x00, 0x32, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xdc, 0xff,
+0xae, 0xff, 0xa4, 0xff, 0xa6, 0xff, 0x9e, 0xff, 0xa8, 0xff, 0xc6, 0xff, 0xe6, 0xff, 0x00, 0x00,
+0x0a, 0x00, 0x2e, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x42, 0x00, 0x36, 0x00, 0x26, 0x00, 0x06, 0x00,
+0xf8, 0xff, 0xec, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xca, 0xff, 0xca, 0xff, 0xd8, 0xff,
+0xee, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x10, 0x00, 0x10, 0x00, 0x16, 0x00, 0x0c, 0x00,
+0x06, 0x00, 0x04, 0x00, 0xfa, 0xff, 0xf8, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe6, 0xff,
+0xe4, 0xff, 0xda, 0xff, 0xe2, 0xff, 0xe0, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xf6, 0xff, 0xf2, 0xff,
+0xfc, 0xff, 0xfc, 0xff, 0x0c, 0x00, 0x10, 0x00, 0x14, 0x00, 0x18, 0x00, 0x18, 0x00, 0x0a, 0x00,
+0x12, 0x00, 0x04, 0x00, 0xec, 0xff, 0xec, 0xff, 0xd0, 0xff, 0xca, 0xff, 0xbe, 0xff, 0xc6, 0xff,
+0xce, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xec, 0xff, 0xfe, 0xff, 0x0e, 0x00, 0x1e, 0x00, 0x2e, 0x00,
+0x38, 0x00, 0x30, 0x00, 0x1a, 0x00, 0x0c, 0x00, 0xf4, 0xff, 0xd8, 0xff, 0xc2, 0xff, 0xa2, 0xff,
+0x88, 0xff, 0x90, 0xff, 0x9e, 0xff, 0xa6, 0xff, 0xb6, 0xff, 0xd6, 0xff, 0x00, 0x00, 0x12, 0x00,
+0x38, 0x00, 0x58, 0x00, 0x62, 0x00, 0x4e, 0x00, 0x2e, 0x00, 0x24, 0x00, 0x04, 0x00, 0xe0, 0xff,
+0xac, 0xff, 0x8e, 0xff, 0x7e, 0xff, 0x78, 0xff, 0x86, 0xff, 0x9c, 0xff, 0xb6, 0xff, 0xe0, 0xff,
+0x0e, 0x00, 0x3a, 0x00, 0x62, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x6e, 0x00, 0x4e, 0x00, 0x28, 0x00,
+0x00, 0x00, 0xcc, 0xff, 0x98, 0xff, 0x74, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x66, 0xff, 0x84, 0xff,
+0xb4, 0xff, 0xe4, 0xff, 0x20, 0x00, 0x4a, 0x00, 0x7a, 0x00, 0x8c, 0x00, 0x94, 0x00, 0x80, 0x00,
+0x56, 0x00, 0x20, 0x00, 0xee, 0xff, 0xc0, 0xff, 0x88, 0xff, 0x58, 0xff, 0x46, 0xff, 0x46, 0xff,
+0x5c, 0xff, 0x88, 0xff, 0xc0, 0xff, 0xfe, 0xff, 0x30, 0x00, 0x68, 0x00, 0x92, 0x00, 0xac, 0x00,
+0xaa, 0x00, 0x92, 0x00, 0x5e, 0x00, 0x1e, 0x00, 0xea, 0xff, 0xb6, 0xff, 0x7a, 0xff, 0x4e, 0xff,
+0x3a, 0xff, 0x3a, 0xff, 0x52, 0xff, 0x8c, 0xff, 0xd6, 0xff, 0x06, 0x00, 0x3c, 0x00, 0x72, 0x00,
+0xa8, 0x00, 0xb2, 0x00, 0xaa, 0x00, 0x8a, 0x00, 0x52, 0x00, 0x08, 0x00, 0xe2, 0xff, 0xa0, 0xff,
+0x6a, 0xff, 0x44, 0xff, 0x34, 0xff, 0x44, 0xff, 0x5e, 0xff, 0x9a, 0xff, 0xe6, 0xff, 0x18, 0x00,
+0x48, 0x00, 0x82, 0x00, 0xa2, 0x00, 0xb8, 0x00, 0xa4, 0x00, 0x82, 0x00, 0x3a, 0x00, 0x0e, 0x00,
+0xdc, 0xff, 0x9e, 0xff, 0x64, 0xff, 0x48, 0xff, 0x40, 0xff, 0x46, 0xff, 0x74, 0xff, 0xb0, 0xff,
+0xec, 0xff, 0x1a, 0x00, 0x54, 0x00, 0x8a, 0x00, 0xa4, 0x00, 0xa4, 0x00, 0x90, 0x00, 0x74, 0x00,
+0x3c, 0x00, 0xfc, 0xff, 0xc0, 0xff, 0x8a, 0xff, 0x6a, 0xff, 0x4e, 0xff, 0x44, 0xff, 0x56, 0xff,
+0x84, 0xff, 0xb8, 0xff, 0xf4, 0xff, 0x20, 0x00, 0x54, 0x00, 0x78, 0x00, 0x82, 0x00, 0x86, 0x00,
+0x6c, 0x00, 0x50, 0x00, 0x1a, 0x00, 0xea, 0xff, 0xc0, 0xff, 0x8c, 0xff, 0x70, 0xff, 0x68, 0xff,
+0x70, 0xff, 0x88, 0xff, 0x9c, 0xff, 0xd0, 0xff, 0x02, 0x00, 0x28, 0x00, 0x4c, 0x00, 0x5a, 0x00,
+0x6c, 0x00, 0x58, 0x00, 0x48, 0x00, 0x30, 0x00, 0xfe, 0xff, 0xe2, 0xff, 0xb0, 0xff, 0x96, 0xff,
+0x92, 0xff, 0x80, 0xff, 0x8e, 0xff, 0x9e, 0xff, 0xc0, 0xff, 0xe6, 0xff, 0x02, 0x00, 0x12, 0x00,
+0x2e, 0x00, 0x38, 0x00, 0x2e, 0x00, 0x36, 0x00, 0x1c, 0x00, 0x0a, 0x00, 0xee, 0xff, 0xce, 0xff,
+0xc2, 0xff, 0xaa, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xa4, 0xff, 0xc4, 0xff, 0xd4, 0xff, 0xec, 0xff,
+0x06, 0x00, 0x0c, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x1e, 0x00, 0x12, 0x00, 0xfe, 0xff,
+0xec, 0xff, 0xf2, 0xff, 0xdc, 0xff, 0xcc, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xe0, 0xff, 0xdc, 0xff,
+0xe6, 0xff, 0xf2, 0xff, 0xfa, 0xff, 0x0a, 0x00, 0x04, 0x00, 0xfc, 0xff, 0x04, 0x00, 0x04, 0x00,
+0x00, 0x00, 0xfe, 0xff, 0xfa, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xe8, 0xff, 0xea, 0xff, 0xf4, 0xff,
+0xee, 0xff, 0xf8, 0xff, 0xea, 0xff, 0xe2, 0xff, 0xe4, 0xff, 0xd8, 0xff, 0xe4, 0xff, 0xe0, 0xff,
+0xd8, 0xff, 0xea, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x0c, 0x00, 0x14, 0x00, 0x26, 0x00, 0x28, 0x00,
+0x22, 0x00, 0x1c, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xee, 0xff, 0xd6, 0xff, 0xb6, 0xff, 0xac, 0xff,
+0xac, 0xff, 0xbc, 0xff, 0xc8, 0xff, 0xdc, 0xff, 0xfe, 0xff, 0x10, 0x00, 0x28, 0x00, 0x4e, 0x00,
+0x5a, 0x00, 0x52, 0x00, 0x4c, 0x00, 0x42, 0x00, 0x1a, 0x00, 0xfa, 0xff, 0xd4, 0xff, 0xa6, 0xff,
+0x88, 0xff, 0x6c, 0xff, 0x7e, 0xff, 0x8c, 0xff, 0x94, 0xff, 0xce, 0xff, 0xee, 0xff, 0x1e, 0x00,
+0x46, 0x00, 0x5e, 0x00, 0x7a, 0x00, 0x72, 0x00, 0x5c, 0x00, 0x46, 0x00, 0x1a, 0x00, 0xee, 0xff,
+0xba, 0xff, 0x74, 0xff, 0x66, 0xff, 0x5e, 0xff, 0x60, 0xff, 0x82, 0xff, 0x94, 0xff, 0xc2, 0xff,
+0x06, 0x00, 0x34, 0x00, 0x62, 0x00, 0x7c, 0x00, 0x98, 0x00, 0x8e, 0x00, 0x74, 0x00, 0x46, 0x00,
+0x10, 0x00, 0xd8, 0xff, 0xa2, 0xff, 0x70, 0xff, 0x4a, 0xff, 0x40, 0xff, 0x4e, 0xff, 0x78, 0xff,
+0x9c, 0xff, 0xce, 0xff, 0x14, 0x00, 0x42, 0x00, 0x74, 0x00, 0xa0, 0x00, 0xa6, 0x00, 0x98, 0x00,
+0x76, 0x00, 0x3e, 0x00, 0xfe, 0xff, 0xc6, 0xff, 0x8c, 0xff, 0x5e, 0xff, 0x34, 0xff, 0x2c, 0xff,
+0x38, 0xff, 0x62, 0xff, 0x9e, 0xff, 0xe6, 0xff, 0x14, 0x00, 0x40, 0x00, 0x88, 0x00, 0xaa, 0x00,
+0xb8, 0x00, 0xa4, 0x00, 0x76, 0x00, 0x36, 0x00, 0xfc, 0xff, 0xd2, 0xff, 0x90, 0xff, 0x62, 0xff,
+0x3e, 0xff, 0x2a, 0xff, 0x46, 0xff, 0x6a, 0xff, 0xb8, 0xff, 0xf6, 0xff, 0x16, 0x00, 0x58, 0x00,
+0x92, 0x00, 0xba, 0x00, 0xb4, 0x00, 0x92, 0x00, 0x74, 0x00, 0x2e, 0x00, 0xec, 0xff, 0xc4, 0xff,
+0x84, 0xff, 0x4e, 0xff, 0x3c, 0xff, 0x32, 0xff, 0x4c, 0xff, 0x80, 0xff, 0xba, 0xff, 0xfa, 0xff,
+0x28, 0x00, 0x66, 0x00, 0x90, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0x98, 0x00, 0x5c, 0x00, 0x18, 0x00,
+0xe4, 0xff, 0xb2, 0xff, 0x80, 0xff, 0x4c, 0xff, 0x3e, 0xff, 0x44, 0xff, 0x5e, 0xff, 0x96, 0xff,
+0xc4, 0xff, 0x0a, 0x00, 0x30, 0x00, 0x60, 0x00, 0x88, 0x00, 0x90, 0x00, 0xa0, 0x00, 0x84, 0x00,
+0x3e, 0x00, 0x08, 0x00, 0xe6, 0xff, 0xb4, 0xff, 0x88, 0xff, 0x68, 0xff, 0x58, 0xff, 0x6a, 0xff,
+0x80, 0xff, 0xa2, 0xff, 0xdc, 0xff, 0x02, 0x00, 0x36, 0x00, 0x56, 0x00, 0x6e, 0x00, 0x6c, 0x00,
+0x62, 0x00, 0x4a, 0x00, 0x22, 0x00, 0xf0, 0xff, 0xca, 0xff, 0x9e, 0xff, 0x8a, 0xff, 0x82, 0xff,
+0x76, 0xff, 0x8e, 0xff, 0x98, 0xff, 0xbe, 0xff, 0xf6, 0xff, 0x12, 0x00, 0x38, 0x00, 0x4c, 0x00,
+0x56, 0x00, 0x4a, 0x00, 0x3c, 0x00, 0x30, 0x00, 0x04, 0x00, 0xe2, 0xff, 0xc0, 0xff, 0xae, 0xff,
+0x98, 0xff, 0x9a, 0xff, 0xa0, 0xff, 0x9e, 0xff, 0xb4, 0xff, 0xd8, 0xff, 0xfe, 0xff, 0x0c, 0x00,
+0x28, 0x00, 0x36, 0x00, 0x2e, 0x00, 0x34, 0x00, 0x26, 0x00, 0x18, 0x00, 0x02, 0x00, 0xf2, 0xff,
+0xe8, 0xff, 0xce, 0xff, 0xbe, 0xff, 0xc6, 0xff, 0xc4, 0xff, 0xc2, 0xff, 0xca, 0xff, 0xd6, 0xff,
+0xf2, 0xff, 0xf4, 0xff, 0x02, 0x00, 0x06, 0x00, 0xf6, 0xff, 0x04, 0x00, 0x04, 0x00, 0xfc, 0xff,
+0x02, 0x00, 0xfa, 0xff, 0xfa, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xec, 0xff,
+0xe8, 0xff, 0xe4, 0xff, 0xe8, 0xff, 0xea, 0xff, 0xde, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe6, 0xff,
+0xf8, 0xff, 0xf4, 0xff, 0x04, 0x00, 0x10, 0x00, 0x10, 0x00, 0x20, 0x00, 0x0e, 0x00, 0x10, 0x00,
+0x1c, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xe8, 0xff, 0xd6, 0xff, 0xce, 0xff, 0xb8, 0xff, 0xc6, 0xff,
+0xc2, 0xff, 0xc6, 0xff, 0xe0, 0xff, 0xec, 0xff, 0x06, 0x00, 0x14, 0x00, 0x32, 0x00, 0x40, 0x00,
+0x2e, 0x00, 0x38, 0x00, 0x2e, 0x00, 0x12, 0x00, 0xfe, 0xff, 0xe2, 0xff, 0xae, 0xff, 0x98, 0xff,
+0x94, 0xff, 0x86, 0xff, 0xa2, 0xff, 0xa0, 0xff, 0xc6, 0xff, 0xf0, 0xff, 0x0a, 0x00, 0x44, 0x00,
+0x56, 0x00, 0x6c, 0x00, 0x6a, 0x00, 0x58, 0x00, 0x50, 0x00, 0x1e, 0x00, 0xf8, 0xff, 0xca, 0xff,
+0xa0, 0xff, 0x7e, 0xff, 0x6a, 0xff, 0x72, 0xff, 0x80, 0xff, 0x9a, 0xff, 0xc4, 0xff, 0xfe, 0xff,
+0x26, 0x00, 0x50, 0x00, 0x78, 0x00, 0x86, 0x00, 0x74, 0x00, 0x64, 0x00, 0x3a, 0x00, 0x0c, 0x00,
+0xd8, 0xff, 0xaa, 0xff, 0x7e, 0xff, 0x4e, 0xff, 0x48, 0xff, 0x5a, 0xff, 0x72, 0xff, 0xaa, 0xff,
+0xe0, 0xff, 0x0a, 0x00, 0x46, 0x00, 0x78, 0x00, 0x98, 0x00, 0x9e, 0x00, 0x86, 0x00, 0x56, 0x00,
+0x24, 0x00, 0xfe, 0xff, 0xc0, 0xff, 0x7a, 0xff, 0x52, 0xff, 0x32, 0xff, 0x2a, 0xff, 0x4a, 0xff,
+0x7a, 0xff, 0xb2, 0xff, 0xf8, 0xff, 0x30, 0x00, 0x70, 0x00, 0x98, 0x00, 0xb4, 0x00, 0xbe, 0x00,
+0x98, 0x00, 0x66, 0x00, 0x28, 0x00, 0xea, 0xff, 0xb8, 0xff, 0x66, 0xff, 0x3a, 0xff, 0x20, 0xff,
+0x1c, 0xff, 0x4e, 0xff, 0x78, 0xff, 0xc6, 0xff, 0x08, 0x00, 0x34, 0x00, 0x7c, 0x00, 0xa4, 0x00,
+0xc0, 0x00, 0xba, 0x00, 0x94, 0x00, 0x5c, 0x00, 0x10, 0x00, 0xe6, 0xff, 0x9e, 0xff, 0x58, 0xff,
+0x30, 0xff, 0x20, 0xff, 0x30, 0xff, 0x50, 0xff, 0x9e, 0xff, 0xe4, 0xff, 0x16, 0x00, 0x50, 0x00,
+0x86, 0x00, 0xc2, 0x00, 0xc2, 0x00, 0xb0, 0x00, 0x8a, 0x00, 0x4c, 0x00, 0x12, 0x00, 0xc6, 0xff,
+0x8a, 0xff, 0x52, 0xff, 0x36, 0xff, 0x2e, 0xff, 0x3a, 0xff, 0x64, 0xff, 0xa6, 0xff, 0xec, 0xff,
+0x22, 0x00, 0x58, 0x00, 0x96, 0x00, 0xb2, 0x00, 0xbc, 0x00, 0xa8, 0x00, 0x7e, 0x00, 0x4a, 0x00,
+0xfc, 0xff, 0xc2, 0xff, 0x82, 0xff, 0x58, 0xff, 0x3a, 0xff, 0x36, 0xff, 0x50, 0xff, 0x70, 0xff,
+0xae, 0xff, 0xe6, 0xff, 0x20, 0x00, 0x5c, 0x00, 0x7e, 0x00, 0x8e, 0x00, 0x94, 0x00, 0x84, 0x00,
+0x5c, 0x00, 0x28, 0x00, 0xf6, 0xff, 0xb4, 0xff, 0x8a, 0xff, 0x7e, 0xff, 0x60, 0xff, 0x60, 0xff,
+0x7a, 0xff, 0x9a, 0xff, 0xc4, 0xff, 0xfa, 0xff, 0x26, 0x00, 0x48, 0x00, 0x5a, 0x00, 0x6e, 0x00,
+0x64, 0x00, 0x58, 0x00, 0x3e, 0x00, 0x0e, 0x00, 0xea, 0xff, 0xba, 0xff, 0xa0, 0xff, 0x9a, 0xff,
+0x90, 0xff, 0x8a, 0xff, 0x90, 0xff, 0xb2, 0xff, 0xda, 0xff, 0xf6, 0xff, 0x12, 0x00, 0x2c, 0x00,
+0x40, 0x00, 0x3c, 0x00, 0x40, 0x00, 0x34, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0xe8, 0xff, 0xcc, 0xff,
+0xb0, 0xff, 0xb8, 0xff, 0xb6, 0xff, 0xa8, 0xff, 0xba, 0xff, 0xca, 0xff, 0xda, 0xff, 0xf8, 0xff,
+0x04, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x12, 0x00, 0x20, 0x00, 0x12, 0x00, 0x0c, 0x00, 0xf6, 0xff,
+0xf2, 0xff, 0xf0, 0xff, 0xe6, 0xff, 0xd8, 0xff, 0xe2, 0xff, 0xe6, 0xff, 0xd6, 0xff, 0xea, 0xff,
+0xec, 0xff, 0xee, 0xff, 0xee, 0xff, 0xf6, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0xfa, 0xff,
+0xf6, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0x04, 0x00, 0x06, 0x00, 0xfe, 0xff, 0x0a, 0x00, 0xfc, 0xff,
+0xf8, 0xff, 0xf0, 0xff, 0xe4, 0xff, 0xd6, 0xff, 0xca, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xc8, 0xff,
+0xd6, 0xff, 0xe6, 0xff, 0xfa, 0xff, 0x0e, 0x00, 0x18, 0x00, 0x2e, 0x00, 0x34, 0x00, 0x2a, 0x00,
+0x2e, 0x00, 0x10, 0x00, 0x02, 0x00, 0xe8, 0xff, 0xd2, 0xff, 0xc2, 0xff, 0x9e, 0xff, 0xa6, 0xff,
+0xb2, 0xff, 0xb8, 0xff, 0xce, 0xff, 0xea, 0xff, 0xfe, 0xff, 0x22, 0x00, 0x52, 0x00, 0x5e, 0x00,
+0x58, 0x00, 0x52, 0x00, 0x46, 0x00, 0x2c, 0x00, 0x08, 0x00, 0xea, 0xff, 0xc0, 0xff, 0x92, 0xff,
+0x88, 0xff, 0x7e, 0xff, 0x84, 0xff, 0x92, 0xff, 0xb4, 0xff, 0xe2, 0xff, 0x04, 0x00, 0x3a, 0x00,
+0x5c, 0x00, 0x72, 0x00, 0x7e, 0x00, 0x6c, 0x00, 0x4a, 0x00, 0x30, 0x00, 0xfe, 0xff, 0xce, 0xff,
+0x9c, 0xff, 0x7e, 0xff, 0x62, 0xff, 0x62, 0xff, 0x70, 0xff, 0x82, 0xff, 0xac, 0xff, 0xe4, 0xff,
+0x24, 0x00, 0x50, 0x00, 0x7a, 0x00, 0x8e, 0x00, 0x90, 0x00, 0x80, 0x00, 0x54, 0x00, 0x20, 0x00,
+0xec, 0xff, 0xba, 0xff, 0x86, 0xff, 0x58, 0xff, 0x38, 0xff, 0x42, 0xff, 0x52, 0xff, 0x88, 0xff,
+0xbe, 0xff, 0xf2, 0xff, 0x2e, 0x00, 0x66, 0x00, 0x98, 0x00, 0xa6, 0x00, 0xa0, 0x00, 0x82, 0x00,
+0x50, 0x00, 0x0e, 0x00, 0xda, 0xff, 0x9a, 0xff, 0x62, 0xff, 0x40, 0xff, 0x24, 0xff, 0x28, 0xff,
+0x4a, 0xff, 0x84, 0xff, 0xcc, 0xff, 0x02, 0x00, 0x40, 0x00, 0x82, 0x00, 0xac, 0x00, 0xb4, 0x00,
+0xaa, 0x00, 0x84, 0x00, 0x4e, 0x00, 0xfe, 0xff, 0xd2, 0xff, 0x8c, 0xff, 0x5a, 0xff, 0x3c, 0xff,
+0x20, 0xff, 0x38, 0xff, 0x62, 0xff, 0xa0, 0xff, 0xe0, 0xff, 0x1c, 0x00, 0x5e, 0x00, 0x96, 0x00,
+0xb2, 0x00, 0xc2, 0x00, 0x9e, 0x00, 0x7a, 0x00, 0x32, 0x00, 0xf0, 0xff, 0xc6, 0xff, 0x7c, 0xff,
+0x4a, 0xff, 0x34, 0xff, 0x2c, 0xff, 0x3a, 0xff, 0x6e, 0xff, 0xb4, 0xff, 0xf6, 0xff, 0x24, 0x00,
+0x66, 0x00, 0x8e, 0x00, 0xa4, 0x00, 0xa6, 0x00, 0x8a, 0x00, 0x58, 0x00, 0x1e, 0x00, 0xe2, 0xff,
+0xa8, 0xff, 0x7c, 0xff, 0x58, 0xff, 0x42, 0xff, 0x40, 0xff, 0x66, 0xff, 0x90, 0xff, 0xc8, 0xff,
+0x08, 0x00, 0x40, 0x00, 0x68, 0x00, 0x8c, 0x00, 0x9a, 0x00, 0x94, 0x00, 0x78, 0x00, 0x4c, 0x00,
+0x10, 0x00, 0xde, 0xff, 0xae, 0xff, 0x88, 0xff, 0x6a, 0xff, 0x54, 0xff, 0x62, 0xff, 0x78, 0xff,
+0xa8, 0xff, 0xe0, 0xff, 0x08, 0x00, 0x32, 0x00, 0x58, 0x00, 0x6e, 0x00, 0x82, 0x00, 0x72, 0x00,
+0x50, 0x00, 0x32, 0x00, 0xf8, 0xff, 0xe0, 0xff, 0xaa, 0xff, 0x90, 0xff, 0x7c, 0xff, 0x74, 0xff,
+0x80, 0xff, 0x92, 0xff, 0xba, 0xff, 0xe0, 0xff, 0x06, 0x00, 0x32, 0x00, 0x48, 0x00, 0x46, 0x00,
+0x60, 0x00, 0x58, 0x00, 0x44, 0x00, 0x24, 0x00, 0x02, 0x00, 0xdc, 0xff, 0xc6, 0xff, 0xb4, 0xff,
+0xa6, 0xff, 0x9a, 0xff, 0x9a, 0xff, 0xb4, 0xff, 0xce, 0xff, 0xdc, 0xff, 0xfa, 0xff, 0x14, 0x00,
+0x26, 0x00, 0x2c, 0x00, 0x34, 0x00, 0x2c, 0x00, 0x1e, 0x00, 0x12, 0x00, 0xf6, 0xff, 0xe6, 0xff,
+0xcc, 0xff, 0xc2, 0xff, 0xbe, 0xff, 0xb8, 0xff, 0xc2, 0xff, 0xc4, 0xff, 0xd2, 0xff, 0xda, 0xff,
+0xe4, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfa, 0xff, 0xf2, 0xff,
+0xf0, 0xff, 0xf4, 0xff, 0xec, 0xff, 0xee, 0xff, 0xe2, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe2, 0xff,
+0xe4, 0xff, 0xe0, 0xff, 0xd6, 0xff, 0xce, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xdc, 0xff, 0xf4, 0xff,
+0xf6, 0xff, 0xfc, 0xff, 0x0e, 0x00, 0x0e, 0x00, 0x18, 0x00, 0x0c, 0x00, 0x14, 0x00, 0x14, 0x00,
+0xfc, 0xff, 0xf8, 0xff, 0xe0, 0xff, 0xc4, 0xff, 0xb4, 0xff, 0xb2, 0xff, 0xc0, 0xff, 0xb8, 0xff,
+0xba, 0xff, 0xda, 0xff, 0xe8, 0xff, 0x06, 0x00, 0x22, 0x00, 0x34, 0x00, 0x38, 0x00, 0x32, 0x00,
+0x36, 0x00, 0x38, 0x00, 0x18, 0x00, 0xf8, 0xff, 0xdc, 0xff, 0xb2, 0xff, 0x9e, 0xff, 0x92, 0xff,
+0x98, 0xff, 0x9e, 0xff, 0xb0, 0xff, 0xd4, 0xff, 0xf6, 0xff, 0x1c, 0x00, 0x3e, 0x00, 0x58, 0x00,
+0x64, 0x00, 0x6e, 0x00, 0x5c, 0x00, 0x56, 0x00, 0x24, 0x00, 0xfe, 0xff, 0xcc, 0xff, 0x98, 0xff,
+0x84, 0xff, 0x6c, 0xff, 0x76, 0xff, 0x82, 0xff, 0xa2, 0xff, 0xc8, 0xff, 0xf2, 0xff, 0x26, 0x00,
+0x58, 0x00, 0x7c, 0x00, 0x86, 0x00, 0x84, 0x00, 0x78, 0x00, 0x44, 0x00, 0x20, 0x00, 0xf0, 0xff,
+0xac, 0xff, 0x76, 0xff, 0x44, 0xff, 0x3c, 0xff, 0x4c, 0xff, 0x68, 0xff, 0x94, 0xff, 0xc8, 0xff,
+0xf8, 0xff, 0x38, 0x00, 0x70, 0x00, 0x94, 0x00, 0xae, 0x00, 0xa2, 0x00, 0x88, 0x00, 0x46, 0x00,
+0x10, 0x00, 0xe2, 0xff, 0x9a, 0xff, 0x5c, 0xff, 0x36, 0xff, 0x30, 0xff, 0x3c, 0xff, 0x60, 0xff,
+0xa0, 0xff, 0xe0, 0xff, 0x12, 0x00, 0x52, 0x00, 0x8c, 0x00, 0xae, 0x00, 0xb8, 0x00, 0xae, 0x00,
+0x7e, 0x00, 0x32, 0x00, 0x00, 0x00, 0xb6, 0xff, 0x74, 0xff, 0x48, 0xff, 0x24, 0xff, 0x16, 0xff,
+0x30, 0xff, 0x60, 0xff, 0xaa, 0xff, 0xea, 0xff, 0x1a, 0x00, 0x5c, 0x00, 0x90, 0x00, 0xac, 0x00,
+0xb0, 0x00, 0xa0, 0x00, 0x64, 0x00, 0x1e, 0x00, 0xe2, 0xff, 0xa8, 0xff, 0x68, 0xff, 0x36, 0xff,
+0x1c, 0xff, 0x22, 0xff, 0x46, 0xff, 0x72, 0xff, 0xb8, 0xff, 0xf8, 0xff, 0x32, 0x00, 0x70, 0x00,
+0x9a, 0x00, 0xae, 0x00, 0xa6, 0x00, 0x8a, 0x00, 0x4c, 0x00, 0x06, 0x00, 0xe0, 0xff, 0xa6, 0xff,
+0x6e, 0xff, 0x46, 0xff, 0x30, 0xff, 0x48, 0xff, 0x64, 0xff, 0xa0, 0xff, 0xd4, 0xff, 0x0e, 0x00,
+0x40, 0x00, 0x6a, 0x00, 0x8e, 0x00, 0x9c, 0x00, 0x8a, 0x00, 0x6a, 0x00, 0x38, 0x00, 0xf8, 0xff,
+0xce, 0xff, 0x8e, 0xff, 0x76, 0xff, 0x58, 0xff, 0x4e, 0xff, 0x64, 0xff, 0x7e, 0xff, 0xac, 0xff,
+0xe4, 0xff, 0x18, 0x00, 0x40, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x7e, 0x00, 0x72, 0x00, 0x54, 0x00,
+0x20, 0x00, 0xfe, 0xff, 0xd0, 0xff, 0xa2, 0xff, 0x94, 0xff, 0x80, 0xff, 0x7a, 0xff, 0x84, 0xff,
+0x9a, 0xff, 0xca, 0xff, 0xf0, 0xff, 0x1c, 0x00, 0x3c, 0x00, 0x54, 0x00, 0x62, 0x00, 0x6a, 0x00,
+0x64, 0x00, 0x46, 0x00, 0x10, 0x00, 0xfc, 0xff, 0xe0, 0xff, 0xa8, 0xff, 0xa4, 0xff, 0x94, 0xff,
+0x90, 0xff, 0x92, 0xff, 0xa4, 0xff, 0xc6, 0xff, 0xf4, 0xff, 0x10, 0x00, 0x24, 0x00, 0x30, 0x00,
+0x40, 0x00, 0x36, 0x00, 0x32, 0x00, 0x20, 0x00, 0x04, 0x00, 0xf4, 0xff, 0xdc, 0xff, 0xc6, 0xff,
+0xbc, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xce, 0xff, 0xe8, 0xff, 0xf4, 0xff, 0xfc, 0xff,
+0x0a, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x12, 0x00, 0x0c, 0x00, 0xfe, 0xff, 0xfa, 0xff, 0xf6, 0xff,
+0xe8, 0xff, 0xe8, 0xff, 0xee, 0xff, 0xe8, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xe4, 0xff, 0xe4, 0xff,
+0xe6, 0xff, 0xec, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xdc, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xe8, 0xff,
+0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x16, 0x00, 0x06, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xf6, 0xff,
+0xec, 0xff, 0xda, 0xff, 0xce, 0xff, 0xba, 0xff, 0xba, 0xff, 0xc2, 0xff, 0xc0, 0xff, 0xc0, 0xff,
+0xe4, 0xff, 0xf0, 0xff, 0x04, 0x00, 0x18, 0x00, 0x2e, 0x00, 0x30, 0x00, 0x2a, 0x00, 0x2a, 0x00,
+0x1e, 0x00, 0x12, 0x00, 0xf4, 0xff, 0xdc, 0xff, 0xb6, 0xff, 0xa4, 0xff, 0xa6, 0xff, 0xa8, 0xff,
+0xaa, 0xff, 0xb2, 0xff, 0xce, 0xff, 0xf0, 0xff, 0x0e, 0x00, 0x36, 0x00, 0x46, 0x00, 0x4c, 0x00,
+0x4a, 0x00, 0x42, 0x00, 0x28, 0x00, 0x06, 0x00, 0xf0, 0xff, 0xbc, 0xff, 0x96, 0xff, 0x82, 0xff,
+0x7e, 0xff, 0x78, 0xff, 0x94, 0xff, 0xa4, 0xff, 0xd8, 0xff, 0x02, 0x00, 0x36, 0x00, 0x56, 0x00,
+0x72, 0x00, 0x7c, 0x00, 0x70, 0x00, 0x52, 0x00, 0x30, 0x00, 0x0a, 0x00, 0xdc, 0xff, 0xa2, 0xff,
+0x78, 0xff, 0x68, 0xff, 0x52, 0xff, 0x60, 0xff, 0x80, 0xff, 0xb8, 0xff, 0xee, 0xff, 0x1e, 0x00,
+0x54, 0x00, 0x7c, 0x00, 0x9e, 0x00, 0x94, 0x00, 0x8a, 0x00, 0x60, 0x00, 0x38, 0x00, 0x00, 0x00,
+0xc4, 0xff, 0x8a, 0xff, 0x52, 0xff, 0x3a, 0xff, 0x32, 0xff, 0x4c, 0xff, 0x7e, 0xff, 0xb6, 0xff,
+0xee, 0xff, 0x16, 0x00, 0x5e, 0x00, 0x96, 0x00, 0xa4, 0x00, 0xac, 0x00, 0x94, 0x00, 0x6c, 0x00,
+0x22, 0x00, 0xf4, 0xff, 0xbe, 0xff, 0x76, 0xff, 0x4a, 0xff, 0x36, 0xff, 0x2a, 0xff, 0x4a, 0xff,
+0x82, 0xff, 0xbe, 0xff, 0xf4, 0xff, 0x2c, 0x00, 0x7a, 0x00, 0xaa, 0x00, 0xb6, 0x00, 0xb2, 0x00,
+0x9e, 0x00, 0x60, 0x00, 0x1e, 0x00, 0xee, 0xff, 0xb0, 0xff, 0x72, 0xff, 0x40, 0xff, 0x22, 0xff,
+0x30, 0xff, 0x56, 0xff, 0x86, 0xff, 0xd8, 0xff, 0x0c, 0x00, 0x48, 0x00, 0x80, 0x00, 0xa2, 0x00,
+0xba, 0x00, 0xb8, 0x00, 0x82, 0x00, 0x40, 0x00, 0x04, 0x00, 0xc4, 0xff, 0x8c, 0xff, 0x4e, 0xff,
+0x2e, 0xff, 0x1e, 0xff, 0x32, 0xff, 0x5e, 0xff, 0x98, 0xff, 0xe2, 0xff, 0x18, 0x00, 0x4e, 0x00,
+0x78, 0x00, 0x9c, 0x00, 0xa8, 0x00, 0x9c, 0x00, 0x70, 0x00, 0x2a, 0x00, 0xf4, 0xff, 0xb4, 0xff,
+0x80, 0xff, 0x5c, 0xff, 0x3e, 0xff, 0x2c, 0xff, 0x5a, 0xff, 0x84, 0xff, 0xb0, 0xff, 0xee, 0xff,
+0x2a, 0x00, 0x5e, 0x00, 0x78, 0x00, 0x92, 0x00, 0x8e, 0x00, 0x82, 0x00, 0x48, 0x00, 0x14, 0x00,
+0xe0, 0xff, 0xb0, 0xff, 0x86, 0xff, 0x5a, 0xff, 0x4c, 0xff, 0x4e, 0xff, 0x6e, 0xff, 0x86, 0xff,
+0xca, 0xff, 0xfc, 0xff, 0x1e, 0x00, 0x52, 0x00, 0x66, 0x00, 0x76, 0x00, 0x62, 0x00, 0x56, 0x00,
+0x38, 0x00, 0x06, 0x00, 0xe2, 0xff, 0xbc, 0xff, 0x98, 0xff, 0x82, 0xff, 0x6e, 0xff, 0x7c, 0xff,
+0x90, 0xff, 0xb4, 0xff, 0xea, 0xff, 0x00, 0x00, 0x20, 0x00, 0x3a, 0x00, 0x4c, 0x00, 0x60, 0x00,
+0x52, 0x00, 0x4c, 0x00, 0x28, 0x00, 0xfe, 0xff, 0xee, 0xff, 0xce, 0xff, 0xbc, 0xff, 0xae, 0xff,
+0xae, 0xff, 0xaa, 0xff, 0xba, 0xff, 0xd0, 0xff, 0xee, 0xff, 0xfe, 0xff, 0x06, 0x00, 0x22, 0x00,
+0x1e, 0x00, 0x2a, 0x00, 0x22, 0x00, 0x1e, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xf0, 0xff, 0xe0, 0xff,
+0xe2, 0xff, 0xdc, 0xff, 0xd8, 0xff, 0xcc, 0xff, 0xd6, 0xff, 0xe0, 0xff, 0xee, 0xff, 0xfa, 0xff,
+0xfa, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x06, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,
+0x0a, 0x00, 0x04, 0x00, 0xfc, 0xff, 0x0a, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xee, 0xff,
+0xea, 0xff, 0xe8, 0xff, 0xe0, 0xff, 0xda, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xee, 0xff,
+0xf6, 0xff, 0xf4, 0xff, 0x0c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x14, 0x00,
+0x02, 0x00, 0xde, 0xff, 0xc4, 0xff, 0xb6, 0xff, 0xaa, 0xff, 0xa4, 0xff, 0xa8, 0xff, 0xb6, 0xff,
+0xbc, 0xff, 0xdc, 0xff, 0xf0, 0xff, 0x0a, 0x00, 0x2c, 0x00, 0x3e, 0x00, 0x4c, 0x00, 0x44, 0x00,
+0x3c, 0x00, 0x1e, 0x00, 0xf6, 0xff, 0xdc, 0xff, 0xb6, 0xff, 0x94, 0xff, 0x8c, 0xff, 0x82, 0xff,
+0x8c, 0xff, 0x96, 0xff, 0xb6, 0xff, 0xea, 0xff, 0x06, 0x00, 0x34, 0x00, 0x52, 0x00, 0x68, 0x00,
+0x76, 0x00, 0x5a, 0x00, 0x52, 0x00, 0x26, 0x00, 0xf8, 0xff, 0xce, 0xff, 0x98, 0xff, 0x80, 0xff,
+0x62, 0xff, 0x5a, 0xff, 0x66, 0xff, 0x8e, 0xff, 0xba, 0xff, 0xe6, 0xff, 0x10, 0x00, 0x52, 0x00,
+0x70, 0x00, 0x8c, 0x00, 0x96, 0x00, 0x70, 0x00, 0x54, 0x00, 0x28, 0x00, 0xf0, 0xff, 0xb6, 0xff,
+0x86, 0xff, 0x64, 0xff, 0x48, 0xff, 0x4c, 0xff, 0x62, 0xff, 0x92, 0xff, 0xbc, 0xff, 0xfc, 0xff,
+0x3e, 0x00, 0x74, 0x00, 0x9c, 0x00, 0xb0, 0x00, 0xac, 0x00, 0x8c, 0x00, 0x50, 0x00, 0x1c, 0x00,
+0xec, 0xff, 0xb2, 0xff, 0x82, 0xff, 0x46, 0xff, 0x34, 0xff, 0x4c, 0xff, 0x5e, 0xff, 0xa2, 0xff,
+0xd2, 0xff, 0x12, 0x00, 0x52, 0x00, 0x88, 0x00, 0xb0, 0x00, 0xb6, 0x00, 0xac, 0x00, 0x78, 0x00,
+0x48, 0x00, 0x06, 0x00, 0xdc, 0xff, 0x9a, 0xff, 0x56, 0xff, 0x2c, 0xff, 0x26, 0xff, 0x48, 0xff,
+0x5e, 0xff, 0xae, 0xff, 0xee, 0xff, 0x16, 0x00, 0x5e, 0x00, 0x94, 0x00, 0xb8, 0x00, 0xb0, 0x00,
+0xa4, 0x00, 0x78, 0x00, 0x38, 0x00, 0x04, 0x00, 0xc0, 0xff, 0x86, 0xff, 0x54, 0xff, 0x32, 0xff,
+0x2a, 0xff, 0x4c, 0xff, 0x7c, 0xff, 0xba, 0xff, 0xfe, 0xff, 0x2a, 0x00, 0x6c, 0x00, 0x96, 0x00,
+0xb0, 0x00, 0xac, 0x00, 0x98, 0x00, 0x68, 0x00, 0x1e, 0x00, 0xe6, 0xff, 0xba, 0xff, 0x76, 0xff,
+0x44, 0xff, 0x2a, 0xff, 0x24, 0xff, 0x4e, 0xff, 0x84, 0xff, 0xc8, 0xff, 0x02, 0x00, 0x32, 0x00,
+0x62, 0x00, 0x8c, 0x00, 0x96, 0x00, 0x96, 0x00, 0x7a, 0x00, 0x44, 0x00, 0x12, 0x00, 0xde, 0xff,
+0xa2, 0xff, 0x70, 0xff, 0x4e, 0xff, 0x42, 0xff, 0x42, 0xff, 0x70, 0xff, 0xa4, 0xff, 0xe0, 0xff,
+0x16, 0x00, 0x3a, 0x00, 0x64, 0x00, 0x74, 0x00, 0x8e, 0x00, 0x7e, 0x00, 0x5c, 0x00, 0x32, 0x00,
+0x02, 0x00, 0xe2, 0xff, 0xa4, 0xff, 0x84, 0xff, 0x70, 0xff, 0x62, 0xff, 0x78, 0xff, 0x8a, 0xff,
+0xae, 0xff, 0xe4, 0xff, 0x10, 0x00, 0x34, 0x00, 0x4a, 0x00, 0x58, 0x00, 0x60, 0x00, 0x4e, 0x00,
+0x40, 0x00, 0x1a, 0x00, 0xf6, 0xff, 0xde, 0xff, 0xa8, 0xff, 0x9c, 0xff, 0x9a, 0xff, 0x8e, 0xff,
+0x9a, 0xff, 0xa4, 0xff, 0xc8, 0xff, 0xec, 0xff, 0x08, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x34, 0x00,
+0x34, 0x00, 0x3c, 0x00, 0x30, 0x00, 0x14, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xd2, 0xff, 0xd4, 0xff,
+0xd0, 0xff, 0xc2, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xdc, 0xff, 0xee, 0xff, 0xfc, 0xff, 0x04, 0x00,
+0x0c, 0x00, 0x12, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xfa, 0xff,
+0xf0, 0xff, 0xe8, 0xff, 0xee, 0xff, 0xe6, 0xff, 0xe0, 0xff, 0xd2, 0xff, 0xda, 0xff, 0xe2, 0xff,
+0xdc, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xee, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x06, 0x00,
+0x0e, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf0, 0xff,
+0xe2, 0xff, 0xd2, 0xff, 0xc2, 0xff, 0xbe, 0xff, 0xcc, 0xff, 0xd2, 0xff, 0xde, 0xff, 0xf0, 0xff,
+0xfc, 0xff, 0x10, 0x00, 0x16, 0x00, 0x2a, 0x00, 0x32, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x16, 0x00,
+0x00, 0x00, 0xf0, 0xff, 0xd0, 0xff, 0xb0, 0xff, 0x98, 0xff, 0x9a, 0xff, 0x9e, 0xff, 0xa0, 0xff,
+0xb8, 0xff, 0xd4, 0xff, 0xee, 0xff, 0x0e, 0x00, 0x2c, 0x00, 0x42, 0x00, 0x4a, 0x00, 0x48, 0x00,
+0x3a, 0x00, 0x28, 0x00, 0x08, 0x00, 0xe0, 0xff, 0xc6, 0xff, 0x92, 0xff, 0x78, 0xff, 0x6e, 0xff,
+0x76, 0xff, 0x88, 0xff, 0xa0, 0xff, 0xd6, 0xff, 0xfe, 0xff, 0x2e, 0x00, 0x54, 0x00, 0x64, 0x00,
+0x7c, 0x00, 0x78, 0x00, 0x5c, 0x00, 0x3e, 0x00, 0x10, 0x00, 0xde, 0xff, 0xaa, 0xff, 0x7e, 0xff,
+0x56, 0xff, 0x44, 0xff, 0x5e, 0xff, 0x82, 0xff, 0xa2, 0xff, 0xd6, 0xff, 0x06, 0x00, 0x42, 0x00,
+0x6e, 0x00, 0x90, 0x00, 0x9c, 0x00, 0x86, 0x00, 0x6a, 0x00, 0x36, 0x00, 0x02, 0x00, 0xcc, 0xff,
+0x8c, 0xff, 0x5a, 0xff, 0x40, 0xff, 0x40, 0xff, 0x50, 0xff, 0x78, 0xff, 0xb0, 0xff, 0xee, 0xff,
+0x24, 0x00, 0x56, 0x00, 0x84, 0x00, 0x9e, 0x00, 0xb2, 0x00, 0x96, 0x00, 0x72, 0x00, 0x2e, 0x00,
+0xfa, 0xff, 0xc4, 0xff, 0x80, 0xff, 0x5a, 0xff, 0x38, 0xff, 0x40, 0xff, 0x58, 0xff, 0x7e, 0xff,
+0xce, 0xff, 0xf0, 0xff, 0x26, 0x00, 0x6a, 0x00, 0x92, 0x00, 0xb2, 0x00, 0xaa, 0x00, 0x9a, 0x00,
+0x62, 0x00, 0x20, 0x00, 0xf8, 0xff, 0xb6, 0xff, 0x76, 0xff, 0x4a, 0xff, 0x2a, 0xff, 0x3a, 0xff,
+0x5c, 0xff, 0x8c, 0xff, 0xcc, 0xff, 0xfa, 0xff, 0x32, 0x00, 0x6e, 0x00, 0x96, 0x00, 0xba, 0x00,
+0x9c, 0x00, 0x86, 0x00, 0x5a, 0x00, 0x10, 0x00, 0xe0, 0xff, 0x98, 0xff, 0x60, 0xff, 0x44, 0xff,
+0x2c, 0xff, 0x3e, 0xff, 0x5c, 0xff, 0x96, 0xff, 0xda, 0xff, 0x10, 0x00, 0x4a, 0x00, 0x7e, 0x00,
+0xae, 0x00, 0xb8, 0x00, 0xaa, 0x00, 0x76, 0x00, 0x44, 0x00, 0xfc, 0xff, 0xc2, 0xff, 0x96, 0xff,
+0x56, 0xff, 0x44, 0xff, 0x34, 0xff, 0x50, 0xff, 0x72, 0xff, 0xa8, 0xff, 0xe4, 0xff, 0x1a, 0x00,
+0x56, 0x00, 0x88, 0x00, 0x9a, 0x00, 0x94, 0x00, 0x80, 0x00, 0x48, 0x00, 0x1c, 0x00, 0xf0, 0xff,
+0xac, 0xff, 0x82, 0xff, 0x68, 0xff, 0x50, 0xff, 0x58, 0xff, 0x6c, 0xff, 0x90, 0xff, 0xba, 0xff,
+0xf4, 0xff, 0x22, 0x00, 0x46, 0x00, 0x62, 0x00, 0x72, 0x00, 0x6c, 0x00, 0x50, 0x00, 0x40, 0x00,
+0x02, 0x00, 0xe8, 0xff, 0xc4, 0xff, 0x96, 0xff, 0x90, 0xff, 0x8e, 0xff, 0x86, 0xff, 0x92, 0xff,
+0xb6, 0xff, 0xdc, 0xff, 0x04, 0x00, 0x20, 0x00, 0x3e, 0x00, 0x42, 0x00, 0x42, 0x00, 0x42, 0x00,
+0x36, 0x00, 0x16, 0x00, 0xf8, 0xff, 0xdc, 0xff, 0xcc, 0xff, 0xba, 0xff, 0xae, 0xff, 0xa6, 0xff,
+0xa2, 0xff, 0xb6, 0xff, 0xd2, 0xff, 0xea, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x16, 0x00, 0x0e, 0x00,
+0x1a, 0x00, 0x20, 0x00, 0x06, 0x00, 0x0a, 0x00, 0xf2, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xcc, 0xff,
+0xd6, 0xff, 0xe0, 0xff, 0xd0, 0xff, 0xde, 0xff, 0xec, 0xff, 0xf4, 0xff, 0xfa, 0xff, 0x00, 0x00,
+0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x04, 0x00,
+0x00, 0x00, 0xf8, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xe4, 0xff,
+0xe4, 0xff, 0xd0, 0xff, 0xd6, 0xff, 0xe0, 0xff, 0xc6, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xec, 0xff,
+0x00, 0x00, 0x0a, 0x00, 0x22, 0x00, 0x1e, 0x00, 0x1c, 0x00, 0x18, 0x00, 0x0c, 0x00, 0xfe, 0xff,
+0xec, 0xff, 0xd4, 0xff, 0xb8, 0xff, 0xac, 0xff, 0xaa, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xc6, 0xff,
+0xe0, 0xff, 0xf8, 0xff, 0x0e, 0x00, 0x2e, 0x00, 0x4e, 0x00, 0x4e, 0x00, 0x40, 0x00, 0x3e, 0x00,
+0x16, 0x00, 0xfe, 0xff, 0xe8, 0xff, 0xbe, 0xff, 0xa2, 0xff, 0x8c, 0xff, 0x86, 0xff, 0x8a, 0xff,
+0xa4, 0xff, 0xc0, 0xff, 0xe6, 0xff, 0x0c, 0x00, 0x34, 0x00, 0x5c, 0x00, 0x6a, 0x00, 0x72, 0x00,
+0x62, 0x00, 0x48, 0x00, 0x20, 0x00, 0xea, 0xff, 0xc4, 0xff, 0x90, 0xff, 0x68, 0xff, 0x56, 0xff,
+0x5c, 0xff, 0x62, 0xff, 0x80, 0xff, 0xae, 0xff, 0xec, 0xff, 0x1a, 0x00, 0x52, 0x00, 0x7c, 0x00,
+0x8c, 0x00, 0x96, 0x00, 0x74, 0x00, 0x56, 0x00, 0x26, 0x00, 0xf0, 0xff, 0xba, 0xff, 0x82, 0xff,
+0x54, 0xff, 0x42, 0xff, 0x3a, 0xff, 0x58, 0xff, 0x8c, 0xff, 0xc0, 0xff, 0xfe, 0xff, 0x30, 0x00,
+0x70, 0x00, 0x96, 0x00, 0xae, 0x00, 0xae, 0x00, 0x94, 0x00, 0x60, 0x00, 0x26, 0x00, 0xe2, 0xff,
+0xa8, 0xff, 0x70, 0xff, 0x44, 0xff, 0x30, 0xff, 0x30, 0xff, 0x4a, 0xff, 0x80, 0xff, 0xc2, 0xff,
+0xfc, 0xff, 0x3e, 0x00, 0x76, 0x00, 0x9a, 0x00, 0xb6, 0x00, 0xac, 0x00, 0x8e, 0x00, 0x4e, 0x00,
+0x0c, 0x00, 0xda, 0xff, 0x9c, 0xff, 0x5c, 0xff, 0x3a, 0xff, 0x20, 0xff, 0x32, 0xff, 0x5e, 0xff,
+0x94, 0xff, 0xe4, 0xff, 0x00, 0x00, 0x52, 0x00, 0x90, 0x00, 0xbe, 0x00, 0xc8, 0x00, 0xb0, 0x00,
+0x84, 0x00, 0x4c, 0x00, 0x0a, 0x00, 0xd4, 0xff, 0x9c, 0xff, 0x58, 0xff, 0x36, 0xff, 0x26, 0xff,
+0x42, 0xff, 0x68, 0xff, 0xb4, 0xff, 0xe8, 0xff, 0x22, 0x00, 0x6a, 0x00, 0x96, 0x00, 0xbc, 0x00,
+0xb2, 0x00, 0x96, 0x00, 0x6c, 0x00, 0x30, 0x00, 0xf0, 0xff, 0xb8, 0xff, 0x88, 0xff, 0x50, 0xff,
+0x34, 0xff, 0x36, 0xff, 0x4c, 0xff, 0x82, 0xff, 0xc4, 0xff, 0x00, 0x00, 0x2c, 0x00, 0x66, 0x00,
+0x8c, 0x00, 0xa4, 0x00, 0x98, 0x00, 0x74, 0x00, 0x5a, 0x00, 0x1a, 0x00, 0xec, 0xff, 0xb8, 0xff,
+0x82, 0xff, 0x64, 0xff, 0x4e, 0xff, 0x5a, 0xff, 0x7c, 0xff, 0x98, 0xff, 0xd4, 0xff, 0x08, 0x00,
+0x38, 0x00, 0x68, 0x00, 0x7a, 0x00, 0x84, 0x00, 0x76, 0x00, 0x64, 0x00, 0x36, 0x00, 0x18, 0x00,
+0xe6, 0xff, 0xb2, 0xff, 0x92, 0xff, 0x6a, 0xff, 0x66, 0xff, 0x6c, 0xff, 0x82, 0xff, 0xb8, 0xff,
+0xe8, 0xff, 0xfc, 0xff, 0x26, 0x00, 0x40, 0x00, 0x4e, 0x00, 0x5a, 0x00, 0x60, 0x00, 0x44, 0x00,
+0x1c, 0x00, 0xfa, 0xff, 0xde, 0xff, 0xaa, 0xff, 0x94, 0xff, 0x94, 0xff, 0x84, 0xff, 0x92, 0xff,
+0x9e, 0xff, 0xd4, 0xff, 0xe8, 0xff, 0xf8, 0xff, 0x14, 0x00, 0x2c, 0x00, 0x38, 0x00, 0x36, 0x00,
+0x3c, 0x00, 0x30, 0x00, 0x1a, 0x00, 0xf8, 0xff, 0xea, 0xff, 0xc4, 0xff, 0xb8, 0xff, 0xc2, 0xff,
+0xae, 0xff, 0xb8, 0xff, 0xbe, 0xff, 0xd6, 0xff, 0xea, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x08, 0x00,
+0x12, 0x00, 0x18, 0x00, 0x1e, 0x00, 0x14, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xda, 0xff,
+0xe2, 0xff, 0xde, 0xff, 0xd4, 0xff, 0xe0, 0xff, 0xda, 0xff, 0xdc, 0xff, 0xdc, 0xff, 0xe4, 0xff,
+0xea, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x06, 0x00, 0x08, 0x00,
+0x14, 0x00, 0x14, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xee, 0xff, 0xe4, 0xff,
+0xde, 0xff, 0xce, 0xff, 0xc6, 0xff, 0xd2, 0xff, 0xd6, 0xff, 0xdc, 0xff, 0xf0, 0xff, 0xfa, 0xff,
+0x0e, 0x00, 0x1c, 0x00, 0x2a, 0x00, 0x36, 0x00, 0x24, 0x00, 0x28, 0x00, 0x22, 0x00, 0xfc, 0xff,
+0xf0, 0xff, 0xda, 0xff, 0xc0, 0xff, 0xaa, 0xff, 0x98, 0xff, 0xa4, 0xff, 0xb0, 0xff, 0xb8, 0xff,
+0xd4, 0xff, 0xf2, 0xff, 0x06, 0x00, 0x36, 0x00, 0x52, 0x00, 0x4e, 0x00, 0x54, 0x00, 0x4c, 0x00,
+0x3a, 0x00, 0x12, 0x00, 0xf0, 0xff, 0xc4, 0xff, 0xa0, 0xff, 0x90, 0xff, 0x80, 0xff, 0x7a, 0xff,
+0x8a, 0xff, 0xa6, 0xff, 0xd4, 0xff, 0xf6, 0xff, 0x1e, 0x00, 0x52, 0x00, 0x62, 0x00, 0x76, 0x00,
+0x7a, 0x00, 0x5e, 0x00, 0x3e, 0x00, 0x08, 0x00, 0xe4, 0xff, 0xb4, 0xff, 0x86, 0xff, 0x64, 0xff,
+0x56, 0xff, 0x54, 0xff, 0x74, 0xff, 0xa0, 0xff, 0xc8, 0xff, 0x02, 0x00, 0x2a, 0x00, 0x62, 0x00,
+0x7e, 0x00, 0x88, 0x00, 0x82, 0x00, 0x64, 0x00, 0x32, 0x00, 0x00, 0x00, 0xce, 0xff, 0x94, 0xff,
+0x5e, 0xff, 0x4a, 0xff, 0x3c, 0xff, 0x4c, 0xff, 0x70, 0xff, 0xaa, 0xff, 0xda, 0xff, 0x0a, 0x00,
+0x48, 0x00, 0x84, 0x00, 0x98, 0x00, 0xa8, 0x00, 0xa0, 0x00, 0x68, 0x00, 0x2e, 0x00, 0xf0, 0xff,
+0xb8, 0xff, 0x7e, 0xff, 0x4e, 0xff, 0x34, 0xff, 0x28, 0xff, 0x3e, 0xff, 0x6e, 0xff, 0xa0, 0xff,
+0xea, 0xff, 0x1e, 0x00, 0x66, 0x00, 0x9e, 0x00, 0xae, 0x00, 0xb4, 0x00, 0x96, 0x00, 0x6a, 0x00,
+0x1e, 0x00, 0xe6, 0xff, 0xb4, 0xff, 0x78, 0xff, 0x40, 0xff, 0x16, 0xff, 0x20, 0xff, 0x42, 0xff,
+0x7c, 0xff, 0xc2, 0xff, 0xfe, 0xff, 0x2a, 0x00, 0x78, 0x00, 0xa4, 0x00, 0xba, 0x00, 0xb8, 0x00,
+0x92, 0x00, 0x66, 0x00, 0x10, 0x00, 0xdc, 0xff, 0xa4, 0xff, 0x64, 0xff, 0x4c, 0xff, 0x30, 0xff,
+0x3a, 0xff, 0x62, 0xff, 0x90, 0xff, 0xe0, 0xff, 0x14, 0x00, 0x46, 0x00, 0x84, 0x00, 0xa4, 0x00,
+0xba, 0x00, 0xac, 0x00, 0x7c, 0x00, 0x48, 0x00, 0x06, 0x00, 0xc8, 0xff, 0xa4, 0xff, 0x66, 0xff,
+0x56, 0xff, 0x44, 0xff, 0x48, 0xff, 0x72, 0xff, 0xaa, 0xff, 0xe8, 0xff, 0x22, 0x00, 0x46, 0x00,
+0x78, 0x00, 0x90, 0x00, 0x92, 0x00, 0x8a, 0x00, 0x60, 0x00, 0x32, 0x00, 0xf8, 0xff, 0xce, 0xff,
+0x9a, 0xff, 0x78, 0xff, 0x62, 0xff, 0x5e, 0xff, 0x72, 0xff, 0x88, 0xff, 0xc0, 0xff, 0xf2, 0xff,
+0x16, 0x00, 0x56, 0x00, 0x5e, 0x00, 0x70, 0x00, 0x76, 0x00, 0x5e, 0x00, 0x4e, 0x00, 0x1a, 0x00,
+0xf4, 0xff, 0xce, 0xff, 0x98, 0xff, 0x94, 0xff, 0x86, 0xff, 0x88, 0xff, 0x8c, 0xff, 0xa6, 0xff,
+0xcc, 0xff, 0xec, 0xff, 0x12, 0x00, 0x2e, 0x00, 0x38, 0x00, 0x44, 0x00, 0x3e, 0x00, 0x32, 0x00,
+0x22, 0x00, 0x04, 0x00, 0xe8, 0xff, 0xcc, 0xff, 0xb6, 0xff, 0xa6, 0xff, 0xaa, 0xff, 0xa6, 0xff,
+0xa8, 0xff, 0xbe, 0xff, 0xd6, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x10, 0x00, 0x14, 0x00, 0x12, 0x00,
+0x14, 0x00, 0x12, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xec, 0xff, 0xec, 0xff, 0xd4, 0xff, 0xc8, 0xff,
+0xd4, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xd8, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xee, 0xff,
+0xf6, 0xff, 0xf6, 0xff, 0x00, 0x00, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x00, 0x00,
+0xf4, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xd2, 0xff,
+0xd8, 0xff, 0xca, 0xff, 0xda, 0xff, 0xda, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xee, 0xff, 0x08, 0x00,
+0x0a, 0x00, 0x2a, 0x00, 0x20, 0x00, 0x14, 0x00, 0x12, 0x00, 0x06, 0x00, 0x06, 0x00, 0xf6, 0xff,
+0xe2, 0xff, 0xca, 0xff, 0xba, 0xff, 0xb4, 0xff, 0xb8, 0xff, 0xc0, 0xff, 0xc6, 0xff, 0xe6, 0xff,
+0x00, 0x00, 0x12, 0x00, 0x2c, 0x00, 0x42, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x46, 0x00, 0x30, 0x00,
+0x14, 0x00, 0xfa, 0xff, 0xd0, 0xff, 0x9e, 0xff, 0x9c, 0xff, 0x92, 0xff, 0x96, 0xff, 0xa6, 0xff,
+0xb4, 0xff, 0xda, 0xff, 0xfc, 0xff, 0x34, 0x00, 0x54, 0x00, 0x64, 0x00, 0x64, 0x00, 0x64, 0x00,
+0x5a, 0x00, 0x34, 0x00, 0x08, 0x00, 0xe2, 0xff, 0xac, 0xff, 0x82, 0xff, 0x78, 0xff, 0x5c, 0xff,
+0x74, 0xff, 0x8c, 0xff, 0xaa, 0xff, 0xea, 0xff, 0x16, 0x00, 0x4c, 0x00, 0x6a, 0x00, 0x80, 0x00,
+0x8e, 0x00, 0x8a, 0x00, 0x66, 0x00, 0x30, 0x00, 0x02, 0x00, 0xce, 0xff, 0x92, 0xff, 0x68, 0xff,
+0x40, 0xff, 0x42, 0xff, 0x54, 0xff, 0x7e, 0xff, 0xb2, 0xff, 0xee, 0xff, 0x2a, 0x00, 0x5c, 0x00,
+0x8a, 0x00, 0xa2, 0x00, 0xa6, 0x00, 0x8c, 0x00, 0x6c, 0x00, 0x24, 0x00, 0xea, 0xff, 0xb6, 0xff,
+0x70, 0xff, 0x4a, 0xff, 0x28, 0xff, 0x1a, 0xff, 0x4a, 0xff, 0x76, 0xff, 0xbe, 0xff, 0x00, 0x00,
+0x20, 0x00, 0x60, 0x00, 0x8c, 0x00, 0xa6, 0x00, 0xb0, 0x00, 0x8a, 0x00, 0x4c, 0x00, 0x08, 0x00,
+0xd8, 0xff, 0x9a, 0xff, 0x58, 0xff, 0x3c, 0xff, 0x1e, 0xff, 0x26, 0xff, 0x5e, 0xff, 0x8c, 0xff,
+0xd6, 0xff, 0x04, 0x00, 0x34, 0x00, 0x7c, 0x00, 0xa4, 0x00, 0xac, 0x00, 0xa8, 0x00, 0x78, 0x00,
+0x38, 0x00, 0x04, 0x00, 0xca, 0xff, 0x92, 0xff, 0x4e, 0xff, 0x2c, 0xff, 0x2e, 0xff, 0x48, 0xff,
+0x6a, 0xff, 0xa0, 0xff, 0xe2, 0xff, 0x18, 0x00, 0x44, 0x00, 0x7c, 0x00, 0x9a, 0x00, 0xa0, 0x00,
+0x9c, 0x00, 0x5e, 0x00, 0x20, 0x00, 0xf4, 0xff, 0xaa, 0xff, 0x88, 0xff, 0x60, 0xff, 0x3e, 0xff,
+0x44, 0xff, 0x50, 0xff, 0x7c, 0xff, 0xba, 0xff, 0xf8, 0xff, 0x2a, 0x00, 0x56, 0x00, 0x80, 0x00,
+0x9a, 0x00, 0x8e, 0x00, 0x7e, 0x00, 0x5c, 0x00, 0x2a, 0x00, 0xf6, 0xff, 0xba, 0xff, 0x86, 0xff,
+0x68, 0xff, 0x5e, 0xff, 0x68, 0xff, 0x86, 0xff, 0xa2, 0xff, 0xda, 0xff, 0x02, 0x00, 0x36, 0x00,
+0x66, 0x00, 0x72, 0x00, 0x8c, 0x00, 0x82, 0x00, 0x62, 0x00, 0x46, 0x00, 0x0c, 0x00, 0xe4, 0xff,
+0xae, 0xff, 0x8e, 0xff, 0x80, 0xff, 0x7a, 0xff, 0x84, 0xff, 0x94, 0xff, 0xb0, 0xff, 0xe0, 0xff,
+0x0c, 0x00, 0x2e, 0x00, 0x4c, 0x00, 0x56, 0x00, 0x66, 0x00, 0x5a, 0x00, 0x4e, 0x00, 0x28, 0x00,
+0xf6, 0xff, 0xe6, 0xff, 0xb0, 0xff, 0xa0, 0xff, 0xa2, 0xff, 0x92, 0xff, 0x9c, 0xff, 0xb6, 0xff,
+0xca, 0xff, 0xee, 0xff, 0x06, 0x00, 0x20, 0x00, 0x36, 0x00, 0x3a, 0x00, 0x4e, 0x00, 0x40, 0x00,
+0x24, 0x00, 0x08, 0x00, 0xf4, 0xff, 0xd8, 0xff, 0xca, 0xff, 0xba, 0xff, 0xc0, 0xff, 0xb4, 0xff,
+0xbe, 0xff, 0xca, 0xff, 0xcc, 0xff, 0xea, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x14, 0x00, 0x0e, 0x00,
+0xfc, 0xff, 0xfe, 0xff, 0xfa, 0xff, 0xee, 0xff, 0xe8, 0xff, 0xec, 0xff, 0xd4, 0xff, 0xe4, 0xff,
+0xdc, 0xff, 0xda, 0xff, 0xe8, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xe6, 0xff,
+0xe4, 0xff, 0xda, 0xff, 0xe4, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xea, 0xff, 0x02, 0x00, 0x0e, 0x00,
+0x14, 0x00, 0x18, 0x00, 0x14, 0x00, 0x10, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xe8, 0xff, 0xde, 0xff,
+0xbc, 0xff, 0xaa, 0xff, 0xae, 0xff, 0xae, 0xff, 0xb4, 0xff, 0xce, 0xff, 0xdc, 0xff, 0xee, 0xff,
+0x10, 0x00, 0x22, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x30, 0x00, 0x2c, 0x00, 0x1a, 0x00, 0xf4, 0xff,
+0xdc, 0xff, 0xbe, 0xff, 0xa4, 0xff, 0x98, 0xff, 0x8c, 0xff, 0x98, 0xff, 0xa6, 0xff, 0xba, 0xff,
+0xe6, 0xff, 0xfe, 0xff, 0x20, 0x00, 0x4a, 0x00, 0x62, 0x00, 0x6a, 0x00, 0x4e, 0x00, 0x44, 0x00,
+0x2a, 0x00, 0x00, 0x00, 0xde, 0xff, 0xaa, 0xff, 0x84, 0xff, 0x84, 0xff, 0x7a, 0xff, 0x7c, 0xff,
+0x9e, 0xff, 0xc4, 0xff, 0xe4, 0xff, 0x14, 0x00, 0x48, 0x00, 0x6e, 0x00, 0x8a, 0x00, 0x7c, 0x00,
+0x64, 0x00, 0x50, 0x00, 0x24, 0x00, 0xf6, 0xff, 0xb2, 0xff, 0x8a, 0xff, 0x6e, 0xff, 0x56, 0xff,
+0x58, 0xff, 0x68, 0xff, 0x92, 0xff, 0xb6, 0xff, 0xfe, 0xff, 0x2e, 0x00, 0x5a, 0x00, 0x86, 0x00,
+0x98, 0x00, 0x90, 0x00, 0x6e, 0x00, 0x40, 0x00, 0x10, 0x00, 0xe8, 0xff, 0xb0, 0xff, 0x78, 0xff,
+0x5a, 0xff, 0x48, 0xff, 0x42, 0xff, 0x5c, 0xff, 0xac, 0xff, 0xe4, 0xff, 0x0e, 0x00, 0x4a, 0x00,
+0x78, 0x00, 0xa2, 0x00, 0xac, 0x00, 0xa0, 0x00, 0x7a, 0x00, 0x30, 0x00, 0x02, 0x00, 0xdc, 0xff,
+0x8e, 0xff, 0x58, 0xff, 0x40, 0xff, 0x26, 0xff, 0x4a, 0xff, 0x72, 0xff, 0xa8, 0xff, 0xee, 0xff,
+0x1c, 0x00, 0x58, 0x00, 0x8e, 0x00, 0xae, 0x00, 0xa4, 0x00, 0x8c, 0x00, 0x5e, 0x00, 0x2c, 0x00,
+0xee, 0xff, 0xba, 0xff, 0x6e, 0xff, 0x40, 0xff, 0x2c, 0xff, 0x28, 0xff, 0x4c, 0xff, 0x76, 0xff,
+0xc4, 0xff, 0xf6, 0xff, 0x26, 0x00, 0x68, 0x00, 0x96, 0x00, 0xb4, 0x00, 0xa8, 0x00, 0x8a, 0x00,
+0x56, 0x00, 0x1a, 0x00, 0xe4, 0xff, 0xae, 0xff, 0x74, 0xff, 0x44, 0xff, 0x36, 0xff, 0x3e, 0xff,
+0x5c, 0xff, 0x84, 0xff, 0xc6, 0xff, 0x06, 0x00, 0x32, 0x00, 0x6a, 0x00, 0x88, 0x00, 0xa4, 0x00,
+0x96, 0x00, 0x6c, 0x00, 0x44, 0x00, 0x10, 0x00, 0xd2, 0xff, 0x9e, 0xff, 0x70, 0xff, 0x4e, 0xff,
+0x46, 0xff, 0x48, 0xff, 0x66, 0xff, 0x98, 0xff, 0xd4, 0xff, 0x0a, 0x00, 0x48, 0x00, 0x64, 0x00,
+0x7c, 0x00, 0x8a, 0x00, 0x74, 0x00, 0x5e, 0x00, 0x2a, 0x00, 0xfa, 0xff, 0xd0, 0xff, 0xa2, 0xff,
+0x82, 0xff, 0x68, 0xff, 0x5e, 0xff, 0x72, 0xff, 0x8e, 0xff, 0xb4, 0xff, 0xf0, 0xff, 0x12, 0x00,
+0x3a, 0x00, 0x52, 0x00, 0x62, 0x00, 0x66, 0x00, 0x52, 0x00, 0x3c, 0x00, 0x1c, 0x00, 0xfa, 0xff,
+0xd6, 0xff, 0xac, 0xff, 0x92, 0xff, 0x7e, 0xff, 0x84, 0xff, 0x8c, 0xff, 0xa2, 0xff, 0xc8, 0xff,
+0xee, 0xff, 0x10, 0x00, 0x24, 0x00, 0x2e, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x3e, 0x00, 0x2e, 0x00,
+0x12, 0x00, 0xf6, 0xff, 0xce, 0xff, 0xb8, 0xff, 0xb6, 0xff, 0xae, 0xff, 0xa4, 0xff, 0xb0, 0xff,
+0xc2, 0xff, 0xe2, 0xff, 0x00, 0x00, 0x04, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x2e, 0x00,
+0x24, 0x00, 0x1e, 0x00, 0x04, 0x00, 0xea, 0xff, 0xe4, 0xff, 0xd0, 0xff, 0xca, 0xff, 0xd8, 0xff,
+0xce, 0xff, 0xce, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xf4, 0xff, 0xf8, 0xff,
+0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfa, 0xff, 0xec, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xea, 0xff,
+0xe2, 0xff, 0xea, 0xff, 0xe8, 0xff, 0xec, 0xff, 0xee, 0xff, 0xe0, 0xff, 0xd8, 0xff, 0xd8, 0xff,
+0xd6, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xdc, 0xff, 0xee, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0x0a, 0x00,
+0x12, 0x00, 0x18, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xde, 0xff,
+0xc4, 0xff, 0xba, 0xff, 0xb2, 0xff, 0xbc, 0xff, 0xb4, 0xff, 0xbe, 0xff, 0xde, 0xff, 0xf6, 0xff,
+0x0a, 0x00, 0x20, 0x00, 0x30, 0x00, 0x40, 0x00, 0x40, 0x00, 0x40, 0x00, 0x30, 0x00, 0x08, 0x00,
+0xf2, 0xff, 0xc2, 0xff, 0xaa, 0xff, 0x98, 0xff, 0x7c, 0xff, 0x90, 0xff, 0x9e, 0xff, 0xa4, 0xff,
+0xd4, 0xff, 0xf0, 0xff, 0x10, 0x00, 0x44, 0x00, 0x58, 0x00, 0x68, 0x00, 0x62, 0x00, 0x52, 0x00,
+0x3e, 0x00, 0x0a, 0x00, 0xea, 0xff, 0xb6, 0xff, 0x80, 0xff, 0x78, 0xff, 0x6e, 0xff, 0x72, 0xff,
+0x90, 0xff, 0xac, 0xff, 0xde, 0xff, 0x10, 0x00, 0x36, 0x00, 0x6e, 0x00, 0x8c, 0x00, 0x96, 0x00,
+0x84, 0x00, 0x6e, 0x00, 0x4a, 0x00, 0x06, 0x00, 0xdc, 0xff, 0xac, 0xff, 0x70, 0xff, 0x58, 0xff,
+0x4e, 0xff, 0x60, 0xff, 0x82, 0xff, 0xae, 0xff, 0xe2, 0xff, 0x1c, 0x00, 0x52, 0x00, 0x82, 0x00,
+0x98, 0x00, 0xa4, 0x00, 0x9e, 0x00, 0x6c, 0x00, 0x28, 0x00, 0xf6, 0xff, 0xb6, 0xff, 0x80, 0xff,
+0x54, 0xff, 0x30, 0xff, 0x30, 0xff, 0x4c, 0xff, 0x78, 0xff, 0xc0, 0xff, 0xf2, 0xff, 0x1c, 0x00,
+0x64, 0x00, 0x94, 0x00, 0xac, 0x00, 0xb2, 0x00, 0x90, 0x00, 0x5e, 0x00, 0x16, 0x00, 0xdc, 0xff,
+0xac, 0xff, 0x5e, 0xff, 0x44, 0xff, 0x2c, 0xff, 0x2c, 0xff, 0x5c, 0xff, 0x86, 0xff, 0xcc, 0xff,
+0x08, 0x00, 0x38, 0x00, 0x7e, 0x00, 0xa2, 0x00, 0xc0, 0x00, 0xba, 0x00, 0x90, 0x00, 0x48, 0x00,
+0x04, 0x00, 0xda, 0xff, 0x9c, 0xff, 0x5a, 0xff, 0x3e, 0xff, 0x28, 0xff, 0x36, 0xff, 0x5e, 0xff,
+0x9c, 0xff, 0xd0, 0xff, 0x06, 0x00, 0x48, 0x00, 0x80, 0x00, 0xae, 0x00, 0xb2, 0x00, 0x98, 0x00,
+0x74, 0x00, 0x34, 0x00, 0xee, 0xff, 0xb0, 0xff, 0x7e, 0xff, 0x58, 0xff, 0x38, 0xff, 0x30, 0xff,
+0x3a, 0xff, 0x76, 0xff, 0xa6, 0xff, 0xdc, 0xff, 0x20, 0x00, 0x58, 0x00, 0x8e, 0x00, 0xa2, 0x00,
+0x9e, 0x00, 0x86, 0x00, 0x4e, 0x00, 0x1a, 0x00, 0xec, 0xff, 0xb6, 0xff, 0x8a, 0xff, 0x66, 0xff,
+0x54, 0xff, 0x5c, 0xff, 0x76, 0xff, 0x90, 0xff, 0xc2, 0xff, 0xf8, 0xff, 0x26, 0x00, 0x60, 0x00,
+0x76, 0x00, 0x7e, 0x00, 0x7c, 0x00, 0x66, 0x00, 0x3e, 0x00, 0x0e, 0x00, 0xd8, 0xff, 0x98, 0xff,
+0x72, 0xff, 0x70, 0xff, 0x86, 0xff, 0xaa, 0xff, 0xde, 0xff, 0x0a, 0x00, 0x2e, 0x00, 0x44, 0x00,
+0x58, 0x00, 0x60, 0x00, 0x52, 0x00, 0x42, 0x00, 0x20, 0x00, 0x08, 0x00, 0xe4, 0xff, 0xc6, 0xff,
+0xb0, 0xff, 0xa8, 0xff, 0xb0, 0xff, 0xa2, 0xff, 0xac, 0xff, 0xd0, 0xff, 0xee, 0xff, 0x0e, 0x00,
+0x1c, 0x00, 0x28, 0x00, 0x2c, 0x00, 0x36, 0x00, 0x30, 0x00, 0x22, 0x00, 0x10, 0x00, 0xfc, 0xff,
+0xf6, 0xff, 0xde, 0xff, 0xca, 0xff, 0xd0, 0xff, 0xbe, 0xff, 0xc4, 0xff, 0xca, 0xff, 0xd6, 0xff,
+0xfa, 0xff, 0xf4, 0xff, 0xf6, 0xff, 0x08, 0x00, 0x08, 0x00, 0x12, 0x00, 0x0c, 0x00, 0x04, 0x00,
+0x0a, 0x00, 0x02, 0x00, 0xfa, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xe6, 0xff, 0xe4, 0xff,
+0xe6, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xec, 0xff, 0xe2, 0xff, 0xe2, 0xff, 0xea, 0xff, 0xe0, 0xff,
+0xf4, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0x06, 0x00, 0x10, 0x00, 0x12, 0x00, 0x0e, 0x00, 0x08, 0x00,
+0x08, 0x00, 0xf4, 0xff, 0xee, 0xff, 0xe6, 0xff, 0xc8, 0xff, 0xc2, 0xff, 0xb2, 0xff, 0xac, 0xff,
+0xb8, 0xff, 0xbc, 0xff, 0xcc, 0xff, 0xe0, 0xff, 0xf4, 0xff, 0x10, 0x00, 0x22, 0x00, 0x28, 0x00,
+0x26, 0x00, 0x1c, 0x00, 0x18, 0x00, 0x0a, 0x00, 0xf8, 0xff, 0xd8, 0xff, 0xb4, 0xff, 0x98, 0xff,
+0x8a, 0xff, 0x82, 0xff, 0x98, 0xff, 0xaa, 0xff, 0xc0, 0xff, 0xf0, 0xff, 0x14, 0x00, 0x32, 0x00,
+0x56, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x4c, 0x00, 0x34, 0x00, 0x1e, 0x00, 0xfa, 0xff, 0xd2, 0xff,
+0x9e, 0xff, 0x84, 0xff, 0x6e, 0xff, 0x66, 0xff, 0x7c, 0xff, 0x92, 0xff, 0xca, 0xff, 0x08, 0x00,
+0x26, 0x00, 0x58, 0x00, 0x6c, 0x00, 0x7c, 0x00, 0x82, 0x00, 0x62, 0x00, 0x4e, 0x00, 0x20, 0x00,
+0xec, 0xff, 0xb2, 0xff, 0x76, 0xff, 0x60, 0xff, 0x46, 0xff, 0x3c, 0xff, 0x5c, 0xff, 0x8e, 0xff,
+0xd0, 0xff, 0x02, 0x00, 0x3e, 0x00, 0x60, 0x00, 0x8a, 0x00, 0xa6, 0x00, 0x9c, 0x00, 0x88, 0x00,
+0x56, 0x00, 0x20, 0x00, 0xec, 0xff, 0xa6, 0xff, 0x74, 0xff, 0x48, 0xff, 0x3c, 0xff, 0x3c, 0xff,
+0x52, 0xff, 0xa2, 0xff, 0xd8, 0xff, 0x10, 0x00, 0x4c, 0x00, 0x82, 0x00, 0xac, 0x00, 0xbc, 0x00,
+0xa4, 0x00, 0x8a, 0x00, 0x4c, 0x00, 0x0c, 0x00, 0xdc, 0xff, 0x90, 0xff, 0x52, 0xff, 0x3e, 0xff,
+0x20, 0xff, 0x3c, 0xff, 0x68, 0xff, 0xa0, 0xff, 0xe6, 0xff, 0x06, 0x00, 0x4e, 0x00, 0x8a, 0x00,
+0xa2, 0x00, 0xc2, 0x00, 0xae, 0x00, 0x7e, 0x00, 0x3a, 0x00, 0xee, 0xff, 0xc8, 0xff, 0x76, 0xff,
+0x50, 0xff, 0x3a, 0xff, 0x2a, 0xff, 0x48, 0xff, 0x68, 0xff, 0xb0, 0xff, 0xf6, 0xff, 0x18, 0x00,
+0x5e, 0x00, 0x92, 0x00, 0xaa, 0x00, 0xb2, 0x00, 0xa2, 0x00, 0x6c, 0x00, 0x24, 0x00, 0xe6, 0xff,
+0xac, 0xff, 0x78, 0xff, 0x48, 0xff, 0x2a, 0xff, 0x36, 0xff, 0x52, 0xff, 0x8a, 0xff, 0xbc, 0xff,
+0xf6, 0xff, 0x2a, 0x00, 0x5c, 0x00, 0x90, 0x00, 0x9c, 0x00, 0x9a, 0x00, 0x78, 0x00, 0x4a, 0x00,
+0x1c, 0x00, 0xce, 0xff, 0xa0, 0xff, 0x6e, 0xff, 0x4a, 0xff, 0x46, 0xff, 0x48, 0xff, 0x78, 0xff,
+0x9c, 0xff, 0xd0, 0xff, 0x08, 0x00, 0x38, 0x00, 0x58, 0x00, 0x7e, 0x00, 0x96, 0x00, 0x84, 0x00,
+0x60, 0x00, 0x2c, 0x00, 0xf0, 0xff, 0xcc, 0xff, 0x9e, 0xff, 0x7c, 0xff, 0x6e, 0xff, 0x58, 0xff,
+0x72, 0xff, 0x90, 0xff, 0xb8, 0xff, 0xec, 0xff, 0x16, 0x00, 0x40, 0x00, 0x5e, 0x00, 0x6a, 0x00,
+0x6c, 0x00, 0x5a, 0x00, 0x42, 0x00, 0x10, 0x00, 0xee, 0xff, 0xce, 0xff, 0x98, 0xff, 0x90, 0xff,
+0x84, 0xff, 0x7a, 0xff, 0x94, 0xff, 0xac, 0xff, 0xce, 0xff, 0xf2, 0xff, 0x0a, 0x00, 0x2c, 0x00,
+0x3c, 0x00, 0x50, 0x00, 0x4e, 0x00, 0x40, 0x00, 0x1c, 0x00, 0xfc, 0xff, 0xe2, 0xff, 0xce, 0xff,
+0xbe, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb0, 0xff, 0xb2, 0xff, 0xca, 0xff, 0xe2, 0xff, 0xfe, 0xff,
+0x0a, 0x00, 0x1e, 0x00, 0x24, 0x00, 0x2a, 0x00, 0x32, 0x00, 0x22, 0x00, 0x22, 0x00, 0xfa, 0xff,
+0xde, 0xff, 0xde, 0xff, 0xd6, 0xff, 0xe0, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xd8, 0xff,
+0xe6, 0xff, 0xea, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xf8, 0xff, 0xfc, 0xff,
+0x00, 0x00, 0xf4, 0xff, 0xf6, 0xff, 0x06, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
+0x00, 0x00, 0xf8, 0xff, 0xec, 0xff, 0xe2, 0xff, 0xca, 0xff, 0xc8, 0xff, 0xce, 0xff, 0xd4, 0xff,
+0xd2, 0xff, 0xe0, 0xff, 0xf4, 0xff, 0xfc, 0xff, 0x1a, 0x00, 0x2a, 0x00, 0x2c, 0x00, 0x2c, 0x00,
+0x30, 0x00, 0x28, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xe0, 0xff, 0xc2, 0xff, 0xac, 0xff, 0xa6, 0xff,
+0xa8, 0xff, 0xaa, 0xff, 0xc0, 0xff, 0xd6, 0xff, 0xec, 0xff, 0x08, 0x00, 0x22, 0x00, 0x44, 0x00,
+0x48, 0x00, 0x40, 0x00, 0x40, 0x00, 0x1c, 0x00, 0x02, 0x00, 0xf2, 0xff, 0xca, 0xff, 0xa6, 0xff,
+0x9c, 0xff, 0x7e, 0xff, 0x84, 0xff, 0x98, 0xff, 0xa2, 0xff, 0xd2, 0xff, 0xfa, 0xff, 0x1a, 0x00,
+0x4c, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x30, 0x00, 0x0c, 0x00, 0xf8, 0xff,
+0xba, 0xff, 0x92, 0xff, 0x7a, 0xff, 0x6a, 0xff, 0x74, 0xff, 0x8c, 0xff, 0xa8, 0xff, 0xd0, 0xff,
+0x00, 0x00, 0x30, 0x00, 0x56, 0x00, 0x72, 0x00, 0x7c, 0x00, 0x76, 0x00, 0x5a, 0x00, 0x32, 0x00,
+0xfe, 0xff, 0xd4, 0xff, 0xa0, 0xff, 0x7a, 0xff, 0x6a, 0xff, 0x48, 0xff, 0x50, 0xff, 0x78, 0xff,
+0xa6, 0xff, 0xd4, 0xff, 0x0c, 0x00, 0x54, 0x00, 0x76, 0x00, 0x96, 0x00, 0xa0, 0x00, 0x80, 0x00,
+0x60, 0x00, 0x20, 0x00, 0xfa, 0xff, 0xd0, 0xff, 0x8c, 0xff, 0x5e, 0xff, 0x3e, 0xff, 0x2e, 0xff,
+0x4c, 0xff, 0x7a, 0xff, 0xb8, 0xff, 0xfa, 0xff, 0x30, 0x00, 0x74, 0x00, 0x9e, 0x00, 0xba, 0x00,
+0xbc, 0x00, 0xa0, 0x00, 0x6a, 0x00, 0x22, 0x00, 0xea, 0xff, 0xc0, 0xff, 0x66, 0xff, 0x46, 0xff,
+0x28, 0xff, 0x1a, 0xff, 0x4c, 0xff, 0x84, 0xff, 0xd0, 0xff, 0x0a, 0x00, 0x44, 0x00, 0x8c, 0x00,
+0xb0, 0x00, 0xcc, 0x00, 0xc0, 0x00, 0x90, 0x00, 0x62, 0x00, 0x10, 0x00, 0xd8, 0xff, 0x9c, 0xff,
+0x5a, 0xff, 0x2a, 0xff, 0x1e, 0xff, 0x20, 0xff, 0x48, 0xff, 0x90, 0xff, 0xdc, 0xff, 0x20, 0x00,
+0x5c, 0x00, 0x90, 0x00, 0xb4, 0x00, 0xc4, 0x00, 0xb6, 0x00, 0x82, 0x00, 0x48, 0x00, 0x10, 0x00,
+0xc4, 0xff, 0x94, 0xff, 0x56, 0xff, 0x28, 0xff, 0x26, 0xff, 0x40, 0xff, 0x6e, 0xff, 0xaa, 0xff,
+0xf8, 0xff, 0x2e, 0x00, 0x60, 0x00, 0x9a, 0x00, 0xb4, 0x00, 0xac, 0x00, 0x90, 0x00, 0x64, 0x00,
+0x28, 0x00, 0xf8, 0xff, 0xc0, 0xff, 0x82, 0xff, 0x6c, 0xff, 0x46, 0xff, 0x48, 0xff, 0x64, 0xff,
+0x80, 0xff, 0xba, 0xff, 0xf4, 0xff, 0x2a, 0x00, 0x52, 0x00, 0x6c, 0x00, 0x7a, 0x00, 0x7a, 0x00,
+0x5a, 0x00, 0x3e, 0x00, 0x0e, 0x00, 0xea, 0xff, 0xc2, 0xff, 0x90, 0xff, 0x82, 0xff, 0x76, 0xff,
+0x72, 0xff, 0x86, 0xff, 0xa2, 0xff, 0xd4, 0xff, 0xf4, 0xff, 0x14, 0x00, 0x3e, 0x00, 0x4a, 0x00,
+0x52, 0x00, 0x50, 0x00, 0x3c, 0x00, 0x22, 0x00, 0x04, 0x00, 0xea, 0xff, 0xd4, 0xff, 0xba, 0xff,
+0xaa, 0xff, 0xa2, 0xff, 0x9c, 0xff, 0xa8, 0xff, 0xc6, 0xff, 0xe2, 0xff, 0xf4, 0xff, 0x06, 0x00,
+0x1c, 0x00, 0x16, 0x00, 0x18, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x0c, 0x00, 0xfa, 0xff, 0xee, 0xff,
+0xda, 0xff, 0xca, 0xff, 0xd4, 0xff, 0xcc, 0xff, 0xd4, 0xff, 0xd6, 0xff, 0xd0, 0xff, 0xe6, 0xff,
+0xf8, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xee, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x06, 0x00,
+0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0x02, 0x00, 0xf8, 0xff, 0xfa, 0xff, 0xf0, 0xff,
+0xe8, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xe6, 0xff, 0xdc, 0xff, 0xe8, 0xff,
+0xf6, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x04, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x0e, 0x00, 0x22, 0x00,
+0x10, 0x00, 0x00, 0x00, 0xf4, 0xff, 0xdc, 0xff, 0xcc, 0xff, 0xb8, 0xff, 0xb4, 0xff, 0xba, 0xff,
+0xbc, 0xff, 0xc8, 0xff, 0xe4, 0xff, 0xfc, 0xff, 0x12, 0x00, 0x28, 0x00, 0x34, 0x00, 0x3a, 0x00,
+0x36, 0x00, 0x2a, 0x00, 0x20, 0x00, 0x06, 0x00, 0xe8, 0xff, 0xce, 0xff, 0xa4, 0xff, 0xa2, 0xff,
+0x9a, 0xff, 0xa2, 0xff, 0xb0, 0xff, 0xc6, 0xff, 0xf6, 0xff, 0x08, 0x00, 0x30, 0x00, 0x50, 0x00,
+0x5a, 0x00, 0x5c, 0x00, 0x52, 0x00, 0x44, 0x00, 0x20, 0x00, 0xfa, 0xff, 0xd6, 0xff, 0xa0, 0xff,
+0x86, 0xff, 0x78, 0xff, 0x6a, 0xff, 0x7e, 0xff, 0x92, 0xff, 0xc0, 0xff, 0xf0, 0xff, 0x12, 0x00,
+0x3c, 0x00, 0x62, 0x00, 0x72, 0x00, 0x74, 0x00, 0x6a, 0x00, 0x4e, 0x00, 0x1c, 0x00, 0xe8, 0xff,
+0xb6, 0xff, 0x7c, 0xff, 0x5e, 0xff, 0x52, 0xff, 0x4c, 0xff, 0x68, 0xff, 0x86, 0xff, 0xb6, 0xff,
+0xf2, 0xff, 0x24, 0x00, 0x58, 0x00, 0x82, 0x00, 0x9c, 0x00, 0x96, 0x00, 0x88, 0x00, 0x54, 0x00,
+0x1c, 0x00, 0xe4, 0xff, 0xae, 0xff, 0x76, 0xff, 0x42, 0xff, 0x38, 0xff, 0x40, 0xff, 0x4e, 0xff,
+0x94, 0xff, 0xc8, 0xff, 0xfc, 0xff, 0x2a, 0x00, 0x68, 0x00, 0x8e, 0x00, 0xa8, 0x00, 0xa6, 0x00,
+0x7c, 0x00, 0x4c, 0x00, 0xfe, 0xff, 0xcc, 0xff, 0x8c, 0xff, 0x54, 0xff, 0x38, 0xff, 0x2a, 0xff,
+0x34, 0xff, 0x56, 0xff, 0x90, 0xff, 0xd6, 0xff, 0x08, 0x00, 0x4c, 0x00, 0x88, 0x00, 0xa2, 0x00,
+0xb8, 0x00, 0xa4, 0x00, 0x78, 0x00, 0x3a, 0x00, 0xfc, 0xff, 0xd4, 0xff, 0x86, 0xff, 0x5e, 0xff,
+0x36, 0xff, 0x2a, 0xff, 0x52, 0xff, 0x70, 0xff, 0xb0, 0xff, 0xf8, 0xff, 0x1c, 0x00, 0x5e, 0x00,
+0x98, 0x00, 0xb4, 0x00, 0xb0, 0x00, 0xa0, 0x00, 0x6e, 0x00, 0x22, 0x00, 0x00, 0x00, 0xbe, 0xff,
+0x80, 0xff, 0x5a, 0xff, 0x36, 0xff, 0x36, 0xff, 0x52, 0xff, 0x84, 0xff, 0xb8, 0xff, 0xfe, 0xff,
+0x28, 0x00, 0x58, 0x00, 0x96, 0x00, 0xa6, 0x00, 0xa2, 0x00, 0x86, 0x00, 0x56, 0x00, 0x26, 0x00,
+0xe8, 0xff, 0xb4, 0xff, 0x86, 0xff, 0x60, 0xff, 0x46, 0xff, 0x48, 0xff, 0x7a, 0xff, 0x9c, 0xff,
+0xd0, 0xff, 0x00, 0x00, 0x3e, 0x00, 0x60, 0x00, 0x80, 0x00, 0xa0, 0x00, 0x90, 0x00, 0x72, 0x00,
+0x58, 0x00, 0x14, 0x00, 0xdc, 0xff, 0xbc, 0xff, 0x90, 0xff, 0x78, 0xff, 0x6c, 0xff, 0x70, 0xff,
+0x86, 0xff, 0xa0, 0xff, 0xd2, 0xff, 0x00, 0x00, 0x2e, 0x00, 0x4c, 0x00, 0x60, 0x00, 0x68, 0x00,
+0x5c, 0x00, 0x4a, 0x00, 0x24, 0x00, 0x02, 0x00, 0xd8, 0xff, 0xb2, 0xff, 0x9e, 0xff, 0x8c, 0xff,
+0x86, 0xff, 0x90, 0xff, 0x9a, 0xff, 0xba, 0xff, 0xdc, 0xff, 0xfa, 0xff, 0x1c, 0x00, 0x32, 0x00,
+0x3e, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x30, 0x00, 0x0a, 0x00, 0xfe, 0xff, 0xe8, 0xff, 0xd0, 0xff,
+0xce, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xb2, 0xff, 0xc6, 0xff, 0xd8, 0xff, 0xf0, 0xff, 0x02, 0x00,
+0x08, 0x00, 0x1c, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x12, 0x00, 0x12, 0x00, 0x04, 0x00, 0xf4, 0xff,
+0xf4, 0xff, 0xe6, 0xff, 0xd6, 0xff, 0xdc, 0xff, 0xd6, 0xff, 0xd0, 0xff, 0xd6, 0xff, 0xe2, 0xff,
+0xda, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xea, 0xff, 0xf4, 0xff, 0xee, 0xff, 0xf0, 0xff, 0x00, 0x00,
+0xf6, 0xff, 0xfe, 0xff, 0xfa, 0xff, 0x00, 0x00, 0xfa, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf6, 0xff,
+0xf2, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xd2, 0xff, 0xd6, 0xff, 0xdc, 0xff, 0xe0, 0xff, 0xdc, 0xff,
+0xe2, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x26, 0x00,
+0x2a, 0x00, 0x10, 0x00, 0xfe, 0xff, 0xee, 0xff, 0xd2, 0xff, 0xbe, 0xff, 0xb0, 0xff, 0xb4, 0xff,
+0xae, 0xff, 0xb0, 0xff, 0xc2, 0xff, 0xde, 0xff, 0xfc, 0xff, 0x1e, 0x00, 0x42, 0x00, 0x40, 0x00,
+0x50, 0x00, 0x4a, 0x00, 0x3e, 0x00, 0x24, 0x00, 0x02, 0x00, 0xe0, 0xff, 0xb8, 0xff, 0x94, 0xff,
+0x88, 0xff, 0x80, 0xff, 0x88, 0xff, 0x92, 0xff, 0xbc, 0xff, 0xee, 0xff, 0x12, 0x00, 0x48, 0x00,
+0x6a, 0x00, 0x76, 0x00, 0x88, 0x00, 0x7a, 0x00, 0x5a, 0x00, 0x30, 0x00, 0xfc, 0xff, 0xc6, 0xff,
+0x9c, 0xff, 0x7c, 0xff, 0x5c, 0xff, 0x60, 0xff, 0x64, 0xff, 0x86, 0xff, 0xb8, 0xff, 0xf6, 0xff,
+0x30, 0x00, 0x6a, 0x00, 0x84, 0x00, 0x96, 0x00, 0x96, 0x00, 0x76, 0x00, 0x46, 0x00, 0x1a, 0x00,
+0xe2, 0xff, 0xa6, 0xff, 0x6a, 0xff, 0x3c, 0xff, 0x26, 0xff, 0x30, 0xff, 0x5a, 0xff, 0x8e, 0xff,
+0xca, 0xff, 0x0e, 0x00, 0x50, 0x00, 0x84, 0x00, 0xa8, 0x00, 0xae, 0x00, 0xa4, 0x00, 0x80, 0x00,
+0x40, 0x00, 0x0c, 0x00, 0xcc, 0xff, 0x86, 0xff, 0x58, 0xff, 0x2a, 0xff, 0x22, 0xff, 0x42, 0xff,
+0x6a, 0xff, 0xb4, 0xff, 0xee, 0xff, 0x24, 0x00, 0x64, 0x00, 0x92, 0x00, 0xb0, 0x00, 0xb4, 0x00,
+0xa4, 0x00, 0x76, 0x00, 0x30, 0x00, 0xf2, 0xff, 0xb8, 0xff, 0x70, 0xff, 0x44, 0xff, 0x2e, 0xff,
+0x26, 0xff, 0x46, 0xff, 0x72, 0xff, 0xb2, 0xff, 0xf0, 0xff, 0x22, 0x00, 0x68, 0x00, 0x94, 0x00,
+0xa8, 0x00, 0xa6, 0x00, 0x90, 0x00, 0x54, 0x00, 0x12, 0x00, 0xe4, 0xff, 0xaa, 0xff, 0x6e, 0xff,
+0x42, 0xff, 0x2c, 0xff, 0x34, 0xff, 0x58, 0xff, 0x86, 0xff, 0xca, 0xff, 0x0a, 0x00, 0x3a, 0x00,
+0x72, 0x00, 0x9e, 0x00, 0xae, 0x00, 0xa6, 0x00, 0x8a, 0x00, 0x54, 0x00, 0x16, 0x00, 0xda, 0xff,
+0xa8, 0xff, 0x6e, 0xff, 0x40, 0xff, 0x40, 0xff, 0x4e, 0xff, 0x6c, 0xff, 0x9e, 0xff, 0xdc, 0xff,
+0x14, 0x00, 0x3e, 0x00, 0x70, 0x00, 0x8e, 0x00, 0x98, 0x00, 0x8c, 0x00, 0x66, 0x00, 0x3e, 0x00,
+0x00, 0x00, 0xcc, 0xff, 0x98, 0xff, 0x78, 0xff, 0x5e, 0xff, 0x52, 0xff, 0x64, 0xff, 0x7e, 0xff,
+0xae, 0xff, 0xe6, 0xff, 0x0e, 0x00, 0x46, 0x00, 0x5c, 0x00, 0x72, 0x00, 0x80, 0x00, 0x6c, 0x00,
+0x54, 0x00, 0x26, 0x00, 0x00, 0x00, 0xc6, 0xff, 0xa8, 0xff, 0x98, 0xff, 0x7c, 0xff, 0x84, 0xff,
+0x8a, 0xff, 0xaa, 0xff, 0xd0, 0xff, 0xf6, 0xff, 0x20, 0x00, 0x32, 0x00, 0x4c, 0x00, 0x5a, 0x00,
+0x52, 0x00, 0x4e, 0x00, 0x2e, 0x00, 0x10, 0x00, 0xf8, 0xff, 0xd2, 0xff, 0xb4, 0xff, 0xa4, 0xff,
+0x9a, 0xff, 0x96, 0xff, 0xa0, 0xff, 0xb2, 0xff, 0xca, 0xff, 0xea, 0xff, 0x00, 0x00, 0x1c, 0x00,
+0x26, 0x00, 0x26, 0x00, 0x2e, 0x00, 0x2a, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xfa, 0xff, 0xdc, 0xff,
+0xc2, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xc6, 0xff, 0xce, 0xff, 0xda, 0xff, 0xe8, 0xff,
+0xf6, 0xff, 0x02, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x18, 0x00, 0x18, 0x00, 0x14, 0x00, 0x06, 0x00,
+0xfe, 0xff, 0xfa, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xde, 0xff, 0xd8, 0xff,
+0xce, 0xff, 0xd0, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xde, 0xff, 0xe6, 0xff, 0xf2, 0xff, 0xfa, 0xff,
+0xfc, 0xff, 0xfc, 0xff, 0x12, 0x00, 0x16, 0x00, 0x18, 0x00, 0x16, 0x00, 0x14, 0x00, 0x00, 0x00,
+0xea, 0xff, 0xdc, 0xff, 0xc4, 0xff, 0xc0, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xbc, 0xff, 0xc0, 0xff,
+0xc8, 0xff, 0xe4, 0xff, 0xf2, 0xff, 0x12, 0x00, 0x32, 0x00, 0x3c, 0x00, 0x4a, 0x00, 0x40, 0x00,
+0x36, 0x00, 0x24, 0x00, 0x06, 0x00, 0xf0, 0xff, 0xc8, 0xff, 0xac, 0xff, 0x9e, 0xff, 0x92, 0xff,
+0x98, 0xff, 0xa2, 0xff, 0xb6, 0xff, 0xe0, 0xff, 0xf4, 0xff, 0x16, 0x00, 0x42, 0x00, 0x58, 0x00,
+0x66, 0x00, 0x50, 0x00, 0x4e, 0x00, 0x34, 0x00, 0x08, 0x00, 0xe4, 0xff, 0xb2, 0xff, 0x94, 0xff,
+0x78, 0xff, 0x66, 0xff, 0x6e, 0xff, 0x94, 0xff, 0xa6, 0xff, 0xd6, 0xff, 0x04, 0x00, 0x30, 0x00,
+0x6c, 0x00, 0x86, 0x00, 0x8a, 0x00, 0x7e, 0x00, 0x5c, 0x00, 0x3c, 0x00, 0x08, 0x00, 0xd6, 0xff,
+0xa0, 0xff, 0x74, 0xff, 0x5c, 0xff, 0x50, 0xff, 0x5c, 0xff, 0x86, 0xff, 0xac, 0xff, 0xec, 0xff,
+0x28, 0x00, 0x56, 0x00, 0x8c, 0x00, 0x9c, 0x00, 0xa2, 0x00, 0x8a, 0x00, 0x5e, 0x00, 0x2a, 0x00,
+0xf4, 0xff, 0xb2, 0xff, 0x7e, 0xff, 0x50, 0xff, 0x2e, 0xff, 0x3a, 0xff, 0x4a, 0xff, 0x80, 0xff,
+0xbe, 0xff, 0xf8, 0xff, 0x2e, 0x00, 0x68, 0x00, 0x98, 0x00, 0xae, 0x00, 0xa6, 0x00, 0x88, 0x00,
+0x54, 0x00, 0x10, 0x00, 0xda, 0xff, 0x94, 0xff, 0x62, 0xff, 0x3e, 0xff, 0x22, 0xff, 0x36, 0xff,
+0x54, 0xff, 0x8e, 0xff, 0xde, 0xff, 0x12, 0x00, 0x48, 0x00, 0x82, 0x00, 0xae, 0x00, 0xb6, 0x00,
+0xaa, 0x00, 0x80, 0x00, 0x4e, 0x00, 0x02, 0x00, 0xce, 0xff, 0x90, 0xff, 0x52, 0xff, 0x3c, 0xff,
+0x20, 0xff, 0x38, 0xff, 0x60, 0xff, 0x96, 0xff, 0xe0, 0xff, 0x16, 0x00, 0x4c, 0x00, 0x8a, 0x00,
+0xac, 0x00, 0xb2, 0x00, 0x9a, 0x00, 0x72, 0x00, 0x32, 0x00, 0xf4, 0xff, 0xc0, 0xff, 0x7e, 0xff,
+0x4e, 0xff, 0x36, 0xff, 0x34, 0xff, 0x3c, 0xff, 0x6a, 0xff, 0xac, 0xff, 0xe2, 0xff, 0x2a, 0x00,
+0x5c, 0x00, 0x8e, 0x00, 0xac, 0x00, 0xa4, 0x00, 0x8a, 0x00, 0x60, 0x00, 0x2c, 0x00, 0xea, 0xff,
+0xb6, 0xff, 0x90, 0xff, 0x60, 0xff, 0x4a, 0xff, 0x44, 0xff, 0x68, 0xff, 0x92, 0xff, 0xcc, 0xff,
+0x06, 0x00, 0x3c, 0x00, 0x66, 0x00, 0x82, 0x00, 0x8a, 0x00, 0x8c, 0x00, 0x6c, 0x00, 0x46, 0x00,
+0x16, 0x00, 0xdc, 0xff, 0xba, 0xff, 0x8c, 0xff, 0x6a, 0xff, 0x60, 0xff, 0x70, 0xff, 0x88, 0xff,
+0xa2, 0xff, 0xde, 0xff, 0x04, 0x00, 0x30, 0x00, 0x4e, 0x00, 0x54, 0x00, 0x60, 0x00, 0x5c, 0x00,
+0x4a, 0x00, 0x28, 0x00, 0x02, 0x00, 0xe4, 0xff, 0xc0, 0xff, 0x9c, 0xff, 0xa0, 0xff, 0x96, 0xff,
+0x9c, 0xff, 0xa8, 0xff, 0xc0, 0xff, 0xe8, 0xff, 0x08, 0x00, 0x22, 0x00, 0x32, 0x00, 0x3a, 0x00,
+0x36, 0x00, 0x36, 0x00, 0x28, 0x00, 0x12, 0x00, 0x00, 0x00, 0xea, 0xff, 0xd8, 0xff, 0xba, 0xff,
+0xc4, 0xff, 0xc2, 0xff, 0xba, 0xff, 0xc2, 0xff, 0xd8, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x00, 0x00,
+0x0a, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x06, 0x00, 0xfe, 0xff, 0xee, 0xff, 0xf2, 0xff,
+0xea, 0xff, 0xd4, 0xff, 0xe2, 0xff, 0xda, 0xff, 0xda, 0xff, 0xe2, 0xff, 0xe4, 0xff, 0xf0, 0xff,
+0xd6, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xe8, 0xff, 0xec, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xf6, 0xff,
+0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xf2, 0xff,
+0xf0, 0xff, 0xd6, 0xff, 0xd0, 0xff, 0xc4, 0xff, 0xca, 0xff, 0xd6, 0xff, 0xca, 0xff, 0xda, 0xff,
+0xea, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x16, 0x00, 0x24, 0x00, 0x24, 0x00, 0x26, 0x00, 0x10, 0x00,
+0x0c, 0x00, 0x00, 0x00, 0xe6, 0xff, 0xd2, 0xff, 0xa2, 0xff, 0xa8, 0xff, 0xa2, 0xff, 0xa2, 0xff,
+0xb0, 0xff, 0xc4, 0xff, 0xf4, 0xff, 0xf8, 0xff, 0x26, 0x00, 0x44, 0x00, 0x44, 0x00, 0x50, 0x00,
+0x3a, 0x00, 0x3e, 0x00, 0x20, 0x00, 0xfa, 0xff, 0xdc, 0xff, 0xb0, 0xff, 0x98, 0xff, 0x8a, 0xff,
+0x86, 0xff, 0x98, 0xff, 0xa2, 0xff, 0xd4, 0xff, 0xfa, 0xff, 0x1a, 0x00, 0x4c, 0x00, 0x60, 0x00,
+0x70, 0x00, 0x70, 0x00, 0x60, 0x00, 0x4e, 0x00, 0x24, 0x00, 0xec, 0xff, 0xbc, 0xff, 0x92, 0xff,
+0x78, 0xff, 0x64, 0xff, 0x64, 0xff, 0x7c, 0xff, 0xa0, 0xff, 0xd2, 0xff, 0x06, 0x00, 0x34, 0x00,
+0x5e, 0x00, 0x7c, 0x00, 0x94, 0x00, 0x8e, 0x00, 0x76, 0x00, 0x4e, 0x00, 0x10, 0x00, 0xd6, 0xff,
+0xa2, 0xff, 0x6c, 0xff, 0x4a, 0xff, 0x3c, 0xff, 0x46, 0xff, 0x66, 0xff, 0x9c, 0xff, 0xd4, 0xff,
+0x12, 0x00, 0x48, 0x00, 0x80, 0x00, 0x9c, 0x00, 0xb2, 0x00, 0xae, 0x00, 0x86, 0x00, 0x4c, 0x00,
+0x00, 0x00, 0xc8, 0xff, 0x88, 0xff, 0x46, 0xff, 0x2a, 0xff, 0x20, 0xff, 0x2e, 0xff, 0x5a, 0xff,
+0xa0, 0xff, 0xe2, 0xff, 0x1a, 0x00, 0x5c, 0x00, 0x96, 0x00, 0xb6, 0x00, 0xc4, 0x00, 0xa8, 0x00,
+0x84, 0x00, 0x36, 0x00, 0xe8, 0xff, 0xb2, 0xff, 0x68, 0xff, 0x2e, 0xff, 0x18, 0xff, 0x0c, 0xff,
+0x2e, 0xff, 0x5a, 0xff, 0xa8, 0xff, 0xf4, 0xff, 0x1e, 0x00, 0x68, 0x00, 0x98, 0x00, 0xba, 0x00,
+0xba, 0x00, 0xa0, 0x00, 0x66, 0x00, 0x16, 0x00, 0xd6, 0xff, 0xa2, 0xff, 0x58, 0xff, 0x2e, 0xff,
+0x12, 0xff, 0x1e, 0xff, 0x48, 0xff, 0x7a, 0xff, 0xc8, 0xff, 0x08, 0x00, 0x36, 0x00, 0x78, 0x00,
+0xaa, 0x00, 0xc4, 0x00, 0xba, 0x00, 0x98, 0x00, 0x54, 0x00, 0x0e, 0x00, 0xd4, 0xff, 0x9c, 0xff,
+0x68, 0xff, 0x3c, 0xff, 0x2a, 0xff, 0x36, 0xff, 0x5c, 0xff, 0x92, 0xff, 0xd2, 0xff, 0x10, 0x00,
+0x48, 0x00, 0x72, 0x00, 0x9a, 0x00, 0xac, 0x00, 0x9a, 0x00, 0x76, 0x00, 0x40, 0x00, 0x04, 0x00,
+0xca, 0xff, 0x8c, 0xff, 0x70, 0xff, 0x54, 0xff, 0x4c, 0xff, 0x60, 0xff, 0x78, 0xff, 0xa4, 0xff,
+0xe2, 0xff, 0x18, 0x00, 0x40, 0x00, 0x64, 0x00, 0x7e, 0x00, 0x84, 0x00, 0x68, 0x00, 0x58, 0x00,
+0x2c, 0x00, 0xfa, 0xff, 0xcc, 0xff, 0xa2, 0xff, 0x94, 0xff, 0x7c, 0xff, 0x80, 0xff, 0x90, 0xff,
+0xa2, 0xff, 0xd0, 0xff, 0xf4, 0xff, 0x10, 0x00, 0x3e, 0x00, 0x4c, 0x00, 0x56, 0x00, 0x4a, 0x00,
+0x48, 0x00, 0x32, 0x00, 0x0a, 0x00, 0xf0, 0xff, 0xda, 0xff, 0xb8, 0xff, 0xb0, 0xff, 0xa8, 0xff,
+0xaa, 0xff, 0xb2, 0xff, 0xc4, 0xff, 0xe2, 0xff, 0xe2, 0xff, 0x00, 0x00, 0x1e, 0x00, 0x18, 0x00,
+0x22, 0x00, 0x26, 0x00, 0x14, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xea, 0xff, 0xde, 0xff,
+0xde, 0xff, 0xda, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xf0, 0xff, 0xf8, 0xff,
+0xf2, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0x00, 0x00, 0xfa, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,
+0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf4, 0xff, 0xf0, 0xff, 0xe4, 0xff, 0xe0, 0xff,
+0xe2, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xc6, 0xff, 0xd4, 0xff, 0xe0, 0xff, 0xe4, 0xff,
+0xfc, 0xff, 0xfe, 0xff, 0x14, 0x00, 0x1e, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
+0xf2, 0xff, 0xd6, 0xff, 0xc6, 0xff, 0xae, 0xff, 0xaa, 0xff, 0xac, 0xff, 0xaa, 0xff, 0xc0, 0xff,
+0xd6, 0xff, 0xf0, 0xff, 0x02, 0x00, 0x28, 0x00, 0x36, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x32, 0x00,
+0x28, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xd2, 0xff, 0xb2, 0xff, 0xa0, 0xff, 0x88, 0xff, 0x8c, 0xff,
+0x96, 0xff, 0xa4, 0xff, 0xcc, 0xff, 0xf2, 0xff, 0x14, 0x00, 0x30, 0x00, 0x54, 0x00, 0x60, 0x00,
+0x52, 0x00, 0x44, 0x00, 0x34, 0x00, 0x0e, 0x00, 0xe4, 0xff, 0xbc, 0xff, 0x9a, 0xff, 0x7a, 0xff,
+0x68, 0xff, 0x66, 0xff, 0x8c, 0xff, 0xa0, 0xff, 0xc6, 0xff, 0xfe, 0xff, 0x2e, 0x00, 0x5c, 0x00,
+0x76, 0x00, 0x88, 0x00, 0x7a, 0x00, 0x6e, 0x00, 0x42, 0x00, 0x10, 0x00, 0xe0, 0xff, 0xae, 0xff,
+0x7c, 0xff, 0x5e, 0xff, 0x54, 0xff, 0x58, 0xff, 0x7c, 0xff, 0xa8, 0xff, 0xda, 0xff, 0x20, 0x00,
+0x54, 0x00, 0x82, 0x00, 0x96, 0x00, 0x9e, 0x00, 0x94, 0x00, 0x64, 0x00, 0x36, 0x00, 0x04, 0x00,
+0xca, 0xff, 0x8c, 0xff, 0x58, 0xff, 0x3a, 0xff, 0x3e, 0xff, 0x4c, 0xff, 0x70, 0xff, 0xb4, 0xff,
+0xf0, 0xff, 0x28, 0x00, 0x66, 0x00, 0x90, 0x00, 0xaa, 0x00, 0xb0, 0x00, 0x8e, 0x00, 0x6c, 0x00,
+0x24, 0x00, 0xe6, 0xff, 0xb8, 0xff, 0x76, 0xff, 0x4e, 0xff, 0x30, 0xff, 0x2e, 0xff, 0x56, 0xff,
+0x8c, 0xff, 0xd8, 0xff, 0x02, 0x00, 0x3c, 0x00, 0x7a, 0x00, 0xa2, 0x00, 0xbc, 0x00, 0xa8, 0x00,
+0x88, 0x00, 0x58, 0x00, 0x04, 0x00, 0xd2, 0xff, 0xa8, 0xff, 0x68, 0xff, 0x3a, 0xff, 0x26, 0xff,
+0x3c, 0xff, 0x5c, 0xff, 0x96, 0xff, 0xe4, 0xff, 0x12, 0x00, 0x46, 0x00, 0x74, 0x00, 0x8e, 0x00,
+0xa4, 0x00, 0x94, 0x00, 0x6a, 0x00, 0x34, 0x00, 0xf0, 0xff, 0xb8, 0xff, 0x8c, 0xff, 0x4e, 0xff,
+0x3c, 0xff, 0x30, 0xff, 0x44, 0xff, 0x72, 0xff, 0x9c, 0xff, 0xe4, 0xff, 0x20, 0x00, 0x56, 0x00,
+0x7a, 0x00, 0x92, 0x00, 0x98, 0x00, 0x80, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0xf4, 0xff, 0xb8, 0xff,
+0x82, 0xff, 0x5c, 0xff, 0x48, 0xff, 0x4e, 0xff, 0x6a, 0xff, 0x8e, 0xff, 0xc2, 0xff, 0xf6, 0xff,
+0x28, 0x00, 0x4c, 0x00, 0x6e, 0x00, 0x8c, 0x00, 0x82, 0x00, 0x68, 0x00, 0x42, 0x00, 0x02, 0x00,
+0xde, 0xff, 0xae, 0xff, 0x88, 0xff, 0x6c, 0xff, 0x5a, 0xff, 0x6a, 0xff, 0x86, 0xff, 0xa8, 0xff,
+0xd6, 0xff, 0x04, 0x00, 0x2a, 0x00, 0x52, 0x00, 0x5e, 0x00, 0x60, 0x00, 0x5c, 0x00, 0x4c, 0x00,
+0x1c, 0x00, 0xfc, 0xff, 0xe8, 0xff, 0xb0, 0xff, 0x9c, 0xff, 0x92, 0xff, 0x90, 0xff, 0xa4, 0xff,
+0xae, 0xff, 0xd6, 0xff, 0xf2, 0xff, 0x10, 0x00, 0x24, 0x00, 0x3a, 0x00, 0x48, 0x00, 0x44, 0x00,
+0x44, 0x00, 0x36, 0x00, 0x18, 0x00, 0xfe, 0xff, 0xea, 0xff, 0xcc, 0xff, 0xb4, 0xff, 0xbc, 0xff,
+0xc4, 0xff, 0xca, 0xff, 0xd0, 0xff, 0xd4, 0xff, 0xee, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x1c, 0x00,
+0x1a, 0x00, 0x0e, 0x00, 0x18, 0x00, 0x14, 0x00, 0x0c, 0x00, 0xf8, 0xff, 0xee, 0xff, 0xec, 0xff,
+0xe8, 0xff, 0xe6, 0xff, 0xee, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xea, 0xff,
+0xe4, 0xff, 0xee, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xfe, 0xff, 0x04, 0x00,
+0x08, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xe8, 0xff,
+0xd8, 0xff, 0xc6, 0xff, 0xb6, 0xff, 0xb8, 0xff, 0xc4, 0xff, 0xc4, 0xff, 0xd0, 0xff, 0xe0, 0xff,
+0xf0, 0xff, 0x02, 0x00, 0x1a, 0x00, 0x2a, 0x00, 0x2c, 0x00, 0x2a, 0x00, 0x1a, 0x00, 0x14, 0x00,
+0x06, 0x00, 0xe8, 0xff, 0xca, 0xff, 0xb0, 0xff, 0x9e, 0xff, 0x9a, 0xff, 0xa2, 0xff, 0xaa, 0xff,
+0xbe, 0xff, 0xd4, 0xff, 0xea, 0xff, 0x0a, 0x00, 0x28, 0x00, 0x3a, 0x00, 0x4e, 0x00, 0x4a, 0x00,
+0x3c, 0x00, 0x22, 0x00, 0x02, 0x00, 0xe4, 0xff, 0xb6, 0xff, 0x9e, 0xff, 0x8e, 0xff, 0x7c, 0xff,
+0x7c, 0xff, 0x92, 0xff, 0xaa, 0xff, 0xce, 0xff, 0xfa, 0xff, 0x2c, 0x00, 0x5a, 0x00, 0x64, 0x00,
+0x6a, 0x00, 0x62, 0x00, 0x4c, 0x00, 0x2a, 0x00, 0xf8, 0xff, 0xd2, 0xff, 0x94, 0xff, 0x6e, 0xff,
+0x56, 0xff, 0x50, 0xff, 0x66, 0xff, 0x84, 0xff, 0xa6, 0xff, 0xdc, 0xff, 0x10, 0x00, 0x4a, 0x00,
+0x78, 0x00, 0x92, 0x00, 0x9a, 0x00, 0x84, 0x00, 0x50, 0x00, 0x22, 0x00, 0xf4, 0xff, 0xb8, 0xff,
+0x7a, 0xff, 0x4e, 0xff, 0x44, 0xff, 0x3e, 0xff, 0x5a, 0xff, 0x88, 0xff, 0xc4, 0xff, 0xfc, 0xff,
+0x3a, 0x00, 0x78, 0x00, 0xa6, 0x00, 0xb8, 0x00, 0xb4, 0x00, 0x92, 0x00, 0x56, 0x00, 0x18, 0x00,
+0xe0, 0xff, 0x98, 0xff, 0x62, 0xff, 0x44, 0xff, 0x2c, 0xff, 0x3e, 0xff, 0x64, 0xff, 0x9a, 0xff,
+0xe0, 0xff, 0x16, 0x00, 0x5c, 0x00, 0x92, 0x00, 0xc0, 0x00, 0xc8, 0x00, 0xa8, 0x00, 0x88, 0x00,
+0x3a, 0x00, 0xf6, 0xff, 0xc6, 0xff, 0x82, 0xff, 0x50, 0xff, 0x2e, 0xff, 0x20, 0xff, 0x46, 0xff,
+0x68, 0xff, 0xaa, 0xff, 0xf4, 0xff, 0x22, 0x00, 0x6a, 0x00, 0x98, 0x00, 0xae, 0x00, 0xbe, 0x00,
+0x96, 0x00, 0x6c, 0x00, 0x2e, 0x00, 0xf0, 0xff, 0xc0, 0xff, 0x76, 0xff, 0x52, 0xff, 0x3c, 0xff,
+0x38, 0xff, 0x54, 0xff, 0x82, 0xff, 0xb2, 0xff, 0xfc, 0xff, 0x2e, 0x00, 0x60, 0x00, 0x90, 0x00,
+0xa4, 0x00, 0xa2, 0x00, 0x8a, 0x00, 0x50, 0x00, 0x24, 0x00, 0xe4, 0xff, 0xae, 0xff, 0x86, 0xff,
+0x50, 0xff, 0x44, 0xff, 0x4e, 0xff, 0x5e, 0xff, 0x84, 0xff, 0xbc, 0xff, 0xfa, 0xff, 0x2e, 0x00,
+0x5a, 0x00, 0x88, 0x00, 0x86, 0x00, 0x7e, 0x00, 0x6a, 0x00, 0x38, 0x00, 0x0a, 0x00, 0xe4, 0xff,
+0xaa, 0xff, 0x7e, 0xff, 0x58, 0xff, 0x5a, 0xff, 0x60, 0xff, 0x72, 0xff, 0xa2, 0xff, 0xd6, 0xff,
+0x02, 0x00, 0x34, 0x00, 0x5a, 0x00, 0x68, 0x00, 0x70, 0x00, 0x68, 0x00, 0x50, 0x00, 0x32, 0x00,
+0x00, 0x00, 0xda, 0xff, 0xb0, 0xff, 0x90, 0xff, 0x84, 0xff, 0x80, 0xff, 0x92, 0xff, 0x92, 0xff,
+0xb8, 0xff, 0xe8, 0xff, 0x04, 0x00, 0x28, 0x00, 0x40, 0x00, 0x44, 0x00, 0x46, 0x00, 0x3a, 0x00,
+0x30, 0x00, 0x12, 0x00, 0xf0, 0xff, 0xde, 0xff, 0xc0, 0xff, 0xa2, 0xff, 0xa6, 0xff, 0xaa, 0xff,
+0xa4, 0xff, 0xb8, 0xff, 0xce, 0xff, 0xec, 0xff, 0xfa, 0xff, 0x10, 0x00, 0x24, 0x00, 0x16, 0x00,
+0x20, 0x00, 0x28, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xfa, 0xff, 0xee, 0xff, 0xda, 0xff, 0xd4, 0xff,
+0xda, 0xff, 0xd2, 0xff, 0xd0, 0xff, 0xda, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xfa, 0xff, 0xfa, 0xff,
+0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x06, 0x00, 0xfe, 0xff, 0xfe, 0xff,
+0xfc, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf4, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xe2, 0xff,
+0xd8, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xd6, 0xff, 0xd8, 0xff, 0xe6, 0xff, 0xf0, 0xff, 0xfc, 0xff,
+0x02, 0x00, 0x14, 0x00, 0x1e, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x18, 0x00, 0x08, 0x00, 0xfc, 0xff,
+0xea, 0xff, 0xdc, 0xff, 0xc8, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xba, 0xff, 0xc6, 0xff, 0xe0, 0xff,
+0xf0, 0xff, 0x06, 0x00, 0x1a, 0x00, 0x44, 0x00, 0x52, 0x00, 0x3e, 0x00, 0x3c, 0x00, 0x30, 0x00,
+0x1a, 0x00, 0x00, 0x00, 0xec, 0xff, 0xb8, 0xff, 0x98, 0xff, 0x8c, 0xff, 0x88, 0xff, 0x98, 0xff,
+0xa0, 0xff, 0xca, 0xff, 0xf2, 0xff, 0x08, 0x00, 0x38, 0x00, 0x5e, 0x00, 0x62, 0x00, 0x68, 0x00,
+0x5c, 0x00, 0x40, 0x00, 0x16, 0x00, 0xf0, 0xff, 0xc0, 0xff, 0x90, 0xff, 0x6a, 0xff, 0x5a, 0xff,
+0x64, 0xff, 0x7a, 0xff, 0x92, 0xff, 0xce, 0xff, 0x00, 0x00, 0x26, 0x00, 0x5c, 0x00, 0x80, 0x00,
+0x94, 0x00, 0x88, 0x00, 0x72, 0x00, 0x4c, 0x00, 0x1c, 0x00, 0xe6, 0xff, 0xa8, 0xff, 0x80, 0xff,
+0x58, 0xff, 0x44, 0xff, 0x56, 0xff, 0x6e, 0xff, 0x9a, 0xff, 0xd4, 0xff, 0x08, 0x00, 0x40, 0x00,
+0x74, 0x00, 0x96, 0x00, 0xa2, 0x00, 0x9a, 0x00, 0x78, 0x00, 0x3a, 0x00, 0x04, 0x00, 0xcc, 0xff,
+0x90, 0xff, 0x58, 0xff, 0x38, 0xff, 0x28, 0xff, 0x3a, 0xff, 0x64, 0xff, 0xa0, 0xff, 0xde, 0xff,
+0x12, 0x00, 0x4e, 0x00, 0x88, 0x00, 0xb2, 0x00, 0xb6, 0x00, 0xa0, 0x00, 0x76, 0x00, 0x36, 0x00,
+0x00, 0x00, 0xce, 0xff, 0x80, 0xff, 0x4a, 0xff, 0x38, 0xff, 0x34, 0xff, 0x52, 0xff, 0x78, 0xff,
+0xb4, 0xff, 0xfa, 0xff, 0x24, 0x00, 0x6a, 0x00, 0x98, 0x00, 0xb4, 0x00, 0xbc, 0x00, 0x98, 0x00,
+0x70, 0x00, 0x2a, 0x00, 0xf6, 0xff, 0xb4, 0xff, 0x78, 0xff, 0x4a, 0xff, 0x2e, 0xff, 0x32, 0xff,
+0x48, 0xff, 0x82, 0xff, 0xc2, 0xff, 0xf6, 0xff, 0x2c, 0x00, 0x6a, 0x00, 0x90, 0x00, 0xb2, 0x00,
+0xa8, 0x00, 0x84, 0x00, 0x56, 0x00, 0x12, 0x00, 0xe4, 0xff, 0xac, 0xff, 0x74, 0xff, 0x4c, 0xff,
+0x3a, 0xff, 0x4c, 0xff, 0x68, 0xff, 0x94, 0xff, 0xce, 0xff, 0x00, 0x00, 0x38, 0x00, 0x70, 0x00,
+0x8e, 0x00, 0x9c, 0x00, 0xa0, 0x00, 0x72, 0x00, 0x4c, 0x00, 0x18, 0x00, 0xd8, 0xff, 0xac, 0xff,
+0x7c, 0xff, 0x60, 0xff, 0x50, 0xff, 0x68, 0xff, 0x7c, 0xff, 0xa0, 0xff, 0xde, 0xff, 0x0c, 0x00,
+0x38, 0x00, 0x60, 0x00, 0x70, 0x00, 0x7c, 0x00, 0x78, 0x00, 0x4a, 0x00, 0x22, 0x00, 0x00, 0x00,
+0xd2, 0xff, 0xa0, 0xff, 0x8e, 0xff, 0x78, 0xff, 0x6a, 0xff, 0x86, 0xff, 0x94, 0xff, 0xb6, 0xff,
+0xe4, 0xff, 0x0e, 0x00, 0x38, 0x00, 0x4a, 0x00, 0x52, 0x00, 0x54, 0x00, 0x52, 0x00, 0x36, 0x00,
+0x0e, 0x00, 0xf2, 0xff, 0xcc, 0xff, 0xb0, 0xff, 0xa8, 0xff, 0xa6, 0xff, 0x98, 0xff, 0x9e, 0xff,
+0xbc, 0xff, 0xd8, 0xff, 0xf4, 0xff, 0x10, 0x00, 0x1c, 0x00, 0x26, 0x00, 0x3a, 0x00, 0x30, 0x00,
+0x2e, 0x00, 0x14, 0x00, 0x00, 0x00, 0xf2, 0xff, 0xda, 0xff, 0xca, 0xff, 0xbc, 0xff, 0xc0, 0xff,
+0xb4, 0xff, 0xb6, 0xff, 0xc0, 0xff, 0xdc, 0xff, 0xe6, 0xff, 0xfa, 0xff, 0x12, 0x00, 0x0c, 0x00,
+0x16, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x10, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xec, 0xff, 0xe2, 0xff,
+0xd8, 0xff, 0xd6, 0xff, 0xd4, 0xff, 0xce, 0xff, 0xd8, 0xff, 0xea, 0xff, 0xec, 0xff, 0xee, 0xff,
+0x02, 0x00, 0xf8, 0xff, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x0e, 0x00,
+0x0c, 0x00, 0x12, 0x00, 0x00, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xec, 0xff, 0xe8, 0xff, 0xdc, 0xff,
+0xce, 0xff, 0xc4, 0xff, 0xc8, 0xff, 0xd0, 0xff, 0xcc, 0xff, 0xda, 0xff, 0xf6, 0xff, 0xf6, 0xff,
+0x06, 0x00, 0x22, 0x00, 0x30, 0x00, 0x34, 0x00, 0x26, 0x00, 0x20, 0x00, 0x0a, 0x00, 0xfc, 0xff,
+0xec, 0xff, 0xd0, 0xff, 0xb4, 0xff, 0xa2, 0xff, 0x9c, 0xff, 0xa4, 0xff, 0xb4, 0xff, 0xc2, 0xff,
+0xe6, 0xff, 0xfe, 0xff, 0x1e, 0x00, 0x40, 0x00, 0x54, 0x00, 0x56, 0x00, 0x50, 0x00, 0x3c, 0x00,
+0x28, 0x00, 0x02, 0x00, 0xee, 0xff, 0xbc, 0xff, 0x96, 0xff, 0x92, 0xff, 0x76, 0xff, 0x7c, 0xff,
+0xa0, 0xff, 0xaa, 0xff, 0xdc, 0xff, 0x06, 0x00, 0x34, 0x00, 0x5c, 0x00, 0x6e, 0x00, 0x7c, 0x00,
+0x62, 0x00, 0x50, 0x00, 0x2a, 0x00, 0xfc, 0xff, 0xce, 0xff, 0xa6, 0xff, 0x7a, 0xff, 0x58, 0xff,
+0x52, 0xff, 0x60, 0xff, 0x82, 0xff, 0xac, 0xff, 0xe0, 0xff, 0x1a, 0x00, 0x54, 0x00, 0x74, 0x00,
+0x8c, 0x00, 0x98, 0x00, 0x7a, 0x00, 0x58, 0x00, 0x22, 0x00, 0xf2, 0xff, 0xc2, 0xff, 0x82, 0xff,
+0x5e, 0xff, 0x40, 0xff, 0x48, 0xff, 0x5e, 0xff, 0x84, 0xff, 0xc8, 0xff, 0xfa, 0xff, 0x32, 0x00,
+0x78, 0x00, 0x9c, 0x00, 0xb0, 0x00, 0xb4, 0x00, 0x88, 0x00, 0x52, 0x00, 0x10, 0x00, 0xe0, 0xff,
+0xaa, 0xff, 0x58, 0xff, 0x3e, 0xff, 0x28, 0xff, 0x20, 0xff, 0x44, 0xff, 0x88, 0xff, 0xcc, 0xff,
+0x00, 0x00, 0x44, 0x00, 0x86, 0x00, 0xa8, 0x00, 0xb0, 0x00, 0xb4, 0x00, 0x7e, 0x00, 0x52, 0x00,
+0x08, 0x00, 0xd6, 0xff, 0x9a, 0xff, 0x52, 0xff, 0x34, 0xff, 0x20, 0xff, 0x32, 0xff, 0x5e, 0xff,
+0xa2, 0xff, 0xec, 0xff, 0x16, 0x00, 0x5c, 0x00, 0x9a, 0x00, 0xb4, 0x00, 0xca, 0x00, 0xaa, 0x00,
+0x86, 0x00, 0x40, 0x00, 0x00, 0x00, 0xcc, 0xff, 0x8e, 0xff, 0x56, 0xff, 0x34, 0xff, 0x2a, 0xff,
+0x3e, 0xff, 0x6a, 0xff, 0xac, 0xff, 0xf6, 0xff, 0x32, 0x00, 0x6a, 0x00, 0x92, 0x00, 0xae, 0x00,
+0xb0, 0x00, 0x9e, 0x00, 0x72, 0x00, 0x30, 0x00, 0x04, 0x00, 0xbe, 0xff, 0x86, 0xff, 0x58, 0xff,
+0x3c, 0xff, 0x3c, 0xff, 0x58, 0xff, 0x8a, 0xff, 0xbe, 0xff, 0x00, 0x00, 0x2a, 0x00, 0x58, 0x00,
+0x84, 0x00, 0x90, 0x00, 0x8c, 0x00, 0x86, 0x00, 0x5a, 0x00, 0x22, 0x00, 0xec, 0xff, 0xb6, 0xff,
+0x96, 0xff, 0x70, 0xff, 0x64, 0xff, 0x66, 0xff, 0x7c, 0xff, 0xa0, 0xff, 0xd6, 0xff, 0x06, 0x00,
+0x30, 0x00, 0x4e, 0x00, 0x66, 0x00, 0x7a, 0x00, 0x66, 0x00, 0x5a, 0x00, 0x3e, 0x00, 0x0c, 0x00,
+0xec, 0xff, 0xb2, 0xff, 0x94, 0xff, 0x80, 0xff, 0x78, 0xff, 0x84, 0xff, 0x8c, 0xff, 0xb8, 0xff,
+0xdc, 0xff, 0xf0, 0xff, 0x0c, 0x00, 0x2c, 0x00, 0x36, 0x00, 0x40, 0x00, 0x40, 0x00, 0x2c, 0x00,
+0x1c, 0x00, 0xf2, 0xff, 0xd6, 0xff, 0xbc, 0xff, 0x9e, 0xff, 0xa0, 0xff, 0x9a, 0xff, 0xaa, 0xff,
+0xba, 0xff, 0xc8, 0xff, 0xe2, 0xff, 0xf4, 0xff, 0x12, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x28, 0x00,
+0x1c, 0x00, 0x10, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xe8, 0xff, 0xda, 0xff, 0xce, 0xff, 0xd0, 0xff,
+0xca, 0xff, 0xd2, 0xff, 0xe0, 0xff, 0xe8, 0xff, 0xe4, 0xff, 0xec, 0xff, 0xf8, 0xff, 0xfc, 0xff,
+0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xe8, 0xff, 0xea, 0xff,
+0xea, 0xff, 0xec, 0xff, 0xea, 0xff, 0xee, 0xff, 0xea, 0xff, 0xe2, 0xff, 0xe0, 0xff, 0xda, 0xff,
+0xd2, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x10, 0x00,
+0x2a, 0x00, 0x2a, 0x00, 0x2a, 0x00, 0x1c, 0x00, 0x12, 0x00, 0x0c, 0x00, 0xf6, 0xff, 0xe6, 0xff,
+0xca, 0xff, 0xc0, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xc4, 0xff, 0xc8, 0xff, 0xd2, 0xff, 0xec, 0xff,
+0x08, 0x00, 0x18, 0x00, 0x36, 0x00, 0x52, 0x00, 0x56, 0x00, 0x46, 0x00, 0x40, 0x00, 0x1e, 0x00,
+0xf6, 0xff, 0xd8, 0xff, 0xae, 0xff, 0x86, 0xff, 0x78, 0xff, 0x76, 0xff, 0x92, 0xff, 0x9c, 0xff,
+0xbe, 0xff, 0xf0, 0xff, 0x1c, 0x00, 0x44, 0x00, 0x66, 0x00, 0x72, 0x00, 0x70, 0x00, 0x66, 0x00,
+0x4a, 0x00, 0x28, 0x00, 0xf6, 0xff, 0xc6, 0xff, 0x8c, 0xff, 0x74, 0xff, 0x54, 0xff, 0x56, 0xff,
+0x70, 0xff, 0x8c, 0xff, 0xba, 0xff, 0xee, 0xff, 0x1a, 0x00, 0x58, 0x00, 0x90, 0x00, 0xa8, 0x00,
+0xa2, 0x00, 0x8a, 0x00, 0x5c, 0x00, 0x28, 0x00, 0xea, 0xff, 0xa6, 0xff, 0x6a, 0xff, 0x3e, 0xff,
+0x28, 0xff, 0x2e, 0xff, 0x48, 0xff, 0x7e, 0xff, 0xc8, 0xff, 0x08, 0x00, 0x3c, 0x00, 0x7c, 0x00,
+0x96, 0x00, 0xa6, 0x00, 0xa4, 0x00, 0x80, 0x00, 0x48, 0x00, 0x06, 0x00, 0xc6, 0xff, 0x7e, 0xff,
+0x4e, 0xff, 0x22, 0xff, 0x14, 0xff, 0x1e, 0xff, 0x4a, 0xff, 0x76, 0xff, 0xb8, 0xff, 0x02, 0x00,
+0x50, 0x00, 0xa4, 0x00, 0xce, 0x00, 0xdc, 0x00, 0xba, 0x00, 0x7e, 0x00, 0x46, 0x00, 0x06, 0x00,
+0xbc, 0xff, 0x88, 0xff, 0x42, 0xff, 0x36, 0xff, 0x22, 0xff, 0x1c, 0xff, 0x4e, 0xff, 0x94, 0xff,
+0xe4, 0xff, 0x20, 0x00, 0x68, 0x00, 0xa2, 0x00, 0xde, 0x00, 0xc6, 0x00, 0x92, 0x00, 0x88, 0x00,
+0x82, 0x00, 0x44, 0x00, 0x98, 0xff, 0x04, 0xfe, 0x84, 0xfb, 0xc0, 0xf8, 0x44, 0xf6, 0x10, 0xf5,
+0xac, 0xf5, 0xf6, 0xf8, 0x4a, 0xff, 0xea, 0x07, 0x04, 0x12, 0xca, 0x1b, 0xc3, 0x22, 0x01, 0x26,
+0x0b, 0x24, 0x97, 0x1c, 0x38, 0x10, 0x52, 0x00, 0x3e, 0xee, 0xd5, 0xdb, 0xe9, 0xcb, 0xbf, 0xc0,
+0xb5, 0xbc, 0xe5, 0xc1, 0x47, 0xd1, 0x20, 0xe9, 0xec, 0x05, 0xa7, 0x22, 0x93, 0x3a, 0x15, 0x4a,
+0x6f, 0x4f, 0xfb, 0x4a, 0x7f, 0x3e, 0xc7, 0x2b, 0x14, 0x15, 0x70, 0xfc, 0xb9, 0xe3, 0x37, 0xcd,
+0x9d, 0xbb, 0xe3, 0xb1, 0x5f, 0xb2, 0x97, 0xbe, 0x77, 0xd5, 0x5e, 0xf3, 0xe6, 0x12, 0x47, 0x2e,
+0x7f, 0x41, 0x97, 0x4a, 0x89, 0x49, 0x21, 0x40, 0x87, 0x30, 0xf7, 0x1c, 0x88, 0x07, 0xde, 0xf1,
+0xed, 0xdd, 0x67, 0xcd, 0xc5, 0xc2, 0x83, 0xbf, 0x07, 0xc5, 0x97, 0xd3, 0x16, 0xe9, 0x16, 0x02,
+0x60, 0x1a, 0x17, 0x2e, 0x9b, 0x3a, 0xd3, 0x3e, 0xe1, 0x3a, 0x39, 0x30, 0xdb, 0x20, 0xf6, 0x0e,
+0x76, 0xfc, 0x14, 0xeb, 0x81, 0xdc, 0x0d, 0xd2, 0xe9, 0xcc, 0x99, 0xcd, 0x57, 0xd4, 0x9b, 0xe0,
+0x14, 0xf1, 0x9c, 0x03, 0x96, 0x15, 0x73, 0x24, 0xc7, 0x2d, 0x8f, 0x30, 0xdb, 0x2c, 0x13, 0x24,
+0xf6, 0x17, 0x36, 0x0a, 0x9e, 0xfc, 0x1a, 0xf1, 0x84, 0xe8, 0x25, 0xe3, 0xb9, 0xe0, 0xc1, 0xe0,
+0x25, 0xe3, 0x02, 0xe8, 0x62, 0xef, 0xaa, 0xf8, 0x24, 0x03, 0xfc, 0x0c, 0x5c, 0x14, 0xf6, 0x17,
+0xfc, 0x17, 0xee, 0x13, 0x28, 0x0e, 0xc6, 0x08, 0x40, 0x04, 0x64, 0x01, 0xb0, 0xff, 0x06, 0xfe,
+0x46, 0xfb, 0x84, 0xf7, 0x24, 0xf3, 0xb0, 0xef, 0x62, 0xee, 0xfa, 0xef, 0x00, 0xf4, 0x0e, 0xf9,
+0x6c, 0xfd, 0x5c, 0x00, 0xfc, 0x01, 0x3e, 0x03, 0x32, 0x05, 0x34, 0x08, 0x8e, 0x0c, 0x5c, 0x11,
+0x26, 0x15, 0xd0, 0x15, 0x3a, 0x12, 0x9e, 0x0a, 0x2c, 0x00, 0x20, 0xf5, 0xc6, 0xeb, 0xc2, 0xe5,
+0x47, 0xe3, 0x91, 0xe3, 0xb0, 0xe5, 0x40, 0xe9, 0xca, 0xee, 0xae, 0xf6, 0x0c, 0x01, 0x46, 0x0d,
+0xde, 0x19, 0xb5, 0x24, 0x67, 0x2b, 0x11, 0x2c, 0xfb, 0x25, 0xbe, 0x19, 0x38, 0x09, 0xda, 0xf6,
+0xce, 0xe5, 0x55, 0xd8, 0xd7, 0xcf, 0x87, 0xcc, 0x6b, 0xce, 0x3f, 0xd5, 0xbf, 0xe0, 0xc2, 0xf0,
+0xd6, 0x03, 0x22, 0x18, 0x91, 0x2a, 0xab, 0x38, 0x0d, 0x40, 0x6f, 0x3f, 0x6d, 0x36, 0xb9, 0x25,
+0x2a, 0x0f, 0xa2, 0xf5, 0xc7, 0xdc, 0x0b, 0xc8, 0x35, 0xba, 0xf3, 0xb4, 0xe1, 0xb8, 0x6b, 0xc5,
+0x49, 0xd9, 0x02, 0xf2, 0xb4, 0x0c, 0x11, 0x26, 0x41, 0x3b, 0x07, 0x4a, 0xc5, 0x50, 0x5d, 0x4e,
+0x37, 0x42, 0xd1, 0x2c, 0x08, 0x10, 0x52, 0xef, 0x39, 0xcf, 0x17, 0xb5, 0x1e, 0xa5, 0x9a, 0xa1,
+0x98, 0xaa, 0x41, 0xbe, 0x5f, 0xd9, 0x20, 0xf8, 0xda, 0x16, 0x8b, 0x32, 0xc7, 0x48, 0xa2, 0x57,
+0x8c, 0x5d, 0xe0, 0x58, 0xef, 0x48, 0x39, 0x2e, 0x3c, 0x0b, 0x66, 0xe4, 0xd5, 0xbf, 0xce, 0xa3,
+0x18, 0x95, 0x94, 0x95, 0x12, 0xa4, 0x5d, 0xbd, 0x15, 0xdd, 0x2c, 0xff, 0x01, 0x20, 0xe7, 0x3c,
+0xab, 0x53, 0x3c, 0x62, 0x6e, 0x66, 0xa8, 0x5e, 0xff, 0x49, 0xb7, 0x29, 0x2a, 0x01, 0x29, 0xd6,
+0x05, 0xb0, 0x7a, 0x95, 0xe0, 0x8a, 0x8c, 0x90, 0x00, 0xa4, 0x11, 0xc1, 0x3d, 0xe3, 0x74, 0x06,
+0x9b, 0x27, 0x65, 0x44, 0xb8, 0x5a, 0xec, 0x67, 0x9a, 0x69, 0xe4, 0x5d, 0xab, 0x44, 0x21, 0x20,
+0xc2, 0xf4, 0x7f, 0xc9, 0xaa, 0xa5, 0x52, 0x8f, 0x48, 0x89, 0xec, 0x92, 0x40, 0xa9, 0x0f, 0xc8,
+0xf4, 0xea, 0x1e, 0x0e, 0xa3, 0x2e, 0xfb, 0x49, 0xd2, 0x5d, 0x78, 0x67, 0xdc, 0x64, 0x08, 0x55,
+0xf5, 0x38, 0xaa, 0x13, 0x58, 0xea, 0x3b, 0xc3, 0xaa, 0xa4, 0x28, 0x93, 0x64, 0x90, 0xa8, 0x9b,
+0x07, 0xb2, 0x25, 0xd0, 0xee, 0xf1, 0xe8, 0x13, 0xef, 0x32, 0x61, 0x4c, 0x4c, 0x5d, 0x22, 0x63,
+0x68, 0x5c, 0x93, 0x49, 0xbf, 0x2c, 0x56, 0x09, 0x14, 0xe4, 0x2b, 0xc2, 0xae, 0xa8, 0xd2, 0x9a,
+0x38, 0x9a, 0x28, 0xa6, 0x9b, 0xbc, 0x1f, 0xda, 0xd4, 0xfa, 0xdc, 0x1a, 0xb1, 0x36, 0x63, 0x4b,
+0x64, 0x56, 0x90, 0x56, 0x17, 0x4c, 0xd1, 0x38, 0xe5, 0x1e, 0x1c, 0x01, 0xb7, 0xe2, 0xb7, 0xc7,
+0xad, 0xb3, 0x72, 0xa9, 0x66, 0xaa, 0x5d, 0xb6, 0xa5, 0xcb, 0xc8, 0xe6, 0xea, 0x03, 0xf7, 0x1e,
+0xb1, 0x34, 0x81, 0x42, 0x77, 0x47, 0xc1, 0x43, 0x0d, 0x39, 0x05, 0x29, 0x30, 0x15, 0x04, 0xff,
+0x54, 0xe8, 0xcd, 0xd3, 0x1f, 0xc4, 0x11, 0xbc, 0x31, 0xbd, 0xf5, 0xc7, 0x67, 0xda, 0x32, 0xf1,
+0x3e, 0x08, 0x0e, 0x1c, 0x23, 0x2a, 0x77, 0x31, 0x73, 0x32, 0x51, 0x2e, 0xad, 0x26, 0x43, 0x1c,
+0x96, 0x0f, 0xee, 0x00, 0x4a, 0xf1, 0x6f, 0xe2, 0xf3, 0xd6, 0x13, 0xd1, 0x81, 0xd2, 0x0b, 0xdb,
+0xb0, 0xe8, 0x70, 0xf8, 0x08, 0x07, 0x50, 0x12, 0x36, 0x19, 0x12, 0x1c, 0xd4, 0x1b, 0xf4, 0x19,
+0x1c, 0x17, 0x7a, 0x13, 0x86, 0x0e, 0x9a, 0x07, 0xd0, 0xfe, 0x4a, 0xf5, 0x14, 0xed, 0x34, 0xe8,
+0xf2, 0xe7, 0xe4, 0xeb, 0x86, 0xf2, 0x84, 0xf9, 0x1c, 0xff, 0x86, 0x02, 0xfc, 0x03, 0x52, 0x04,
+0xdc, 0x04, 0x74, 0x06, 0x4e, 0x09, 0xbc, 0x0c, 0x64, 0x0f, 0x10, 0x10, 0x0c, 0x0e, 0xd2, 0x09,
+0x96, 0x04, 0xd0, 0xff, 0xf8, 0xfb, 0x2a, 0xf9, 0xe0, 0xf6, 0x8a, 0xf4, 0x06, 0xf2, 0x8a, 0xef,
+0xdc, 0xed, 0x06, 0xee, 0xd8, 0xf0, 0xbc, 0xf6, 0x7c, 0xff, 0xce, 0x09, 0x1a, 0x14, 0x63, 0x1c,
+0x1b, 0x21, 0x71, 0x21, 0x81, 0x1d, 0xee, 0x15, 0xea, 0x0b, 0x92, 0x00, 0xfc, 0xf4, 0x36, 0xea,
+0xf5, 0xe0, 0x31, 0xda, 0xe5, 0xd6, 0xed, 0xd7, 0xe9, 0xdd, 0xde, 0xe8, 0x16, 0xf8, 0x3a, 0x0a,
+0xd1, 0x1c, 0xdd, 0x2c, 0x4b, 0x37, 0xed, 0x39, 0x45, 0x34, 0x7b, 0x27, 0xd4, 0x15, 0x04, 0x02,
+0x96, 0xee, 0x6d, 0xdd, 0xe5, 0xcf, 0xed, 0xc6, 0x31, 0xc3, 0xb1, 0xc5, 0xf9, 0xce, 0x57, 0xdf,
+0xea, 0xf5, 0x78, 0x10, 0x45, 0x2b, 0x97, 0x41, 0xdf, 0x4e, 0x5b, 0x50, 0x0d, 0x46, 0x6d, 0x32,
+0x54, 0x19, 0x8a, 0xfe, 0x44, 0xe5, 0xa5, 0xcf, 0x5f, 0xbf, 0x19, 0xb5, 0x05, 0xb2, 0xfd, 0xb6,
+0x09, 0xc5, 0x0f, 0xdc, 0x44, 0xfa, 0xec, 0x1b, 0xe7, 0x3b, 0x99, 0x54, 0x22, 0x61, 0x88, 0x5f,
+0x95, 0x50, 0xdd, 0x37, 0xc6, 0x19, 0x62, 0xfa, 0xe3, 0xdc, 0xfd, 0xc3, 0x3f, 0xb1, 0x4e, 0xa6,
+0x50, 0xa4, 0xad, 0xac, 0x4f, 0xc0, 0x0b, 0xde, 0xbe, 0x02, 0x33, 0x29, 0x7b, 0x4b, 0xbc, 0x63,
+0xea, 0x6d, 0x6a, 0x68, 0x3a, 0x55, 0x6b, 0x38, 0x96, 0x16, 0xd2, 0xf3, 0x67, 0xd3, 0x17, 0xb8,
+0x7e, 0xa4, 0x90, 0x9a, 0xf6, 0x9b, 0xfc, 0xa9, 0x01, 0xc4, 0xaa, 0xe7, 0x18, 0x10, 0x89, 0x37,
+0x42, 0x58, 0x72, 0x6d, 0xdc, 0x73, 0xee, 0x6a, 0xde, 0x54, 0x6b, 0x35, 0x2a, 0x11, 0xdc, 0xeb,
+0x61, 0xc9, 0x53, 0xad, 0xf2, 0x9a, 0x60, 0x94, 0x1e, 0x9b, 0xcd, 0xae, 0xa9, 0xcd, 0xb0, 0xf3,
+0xb6, 0x1b, 0x93, 0x40, 0xb0, 0x5d, 0x5e, 0x6f, 0xfe, 0x72, 0x32, 0x68, 0x95, 0x50, 0xef, 0x2f,
+0x1a, 0x0a, 0x89, 0xe3, 0xb1, 0xc0, 0x00, 0xa6, 0xfc, 0x96, 0xa0, 0x95, 0xc2, 0xa1, 0xbf, 0xb9,
+0x59, 0xda, 0xfa, 0xfe, 0x61, 0x23, 0x79, 0x43, 0x24, 0x5c, 0x7c, 0x6a, 0x4c, 0x6c, 0x88, 0x60,
+0x9d, 0x48, 0x67, 0x27, 0x52, 0x01, 0x6f, 0xdb, 0xcd, 0xba, 0x36, 0xa4, 0x82, 0x9a, 0x50, 0x9e,
+0x3d, 0xae, 0x6b, 0xc7, 0x0e, 0xe6, 0xbc, 0x06, 0x05, 0x26, 0x4d, 0x41, 0x40, 0x56, 0x0c, 0x62,
+0x42, 0x62, 0xc8, 0x55, 0x77, 0x3d, 0x67, 0x1c, 0xbe, 0xf7, 0xe5, 0xd4, 0x5d, 0xb9, 0xea, 0xa8,
+0xfe, 0xa4, 0xd9, 0xac, 0x15, 0xbe, 0x65, 0xd5, 0xbc, 0xef, 0x98, 0x0a, 0x01, 0x24, 0x69, 0x3a,
+0x77, 0x4b, 0xb3, 0x54, 0x7f, 0x53, 0xad, 0x46, 0x55, 0x2f, 0x16, 0x11, 0xee, 0xf0, 0x91, 0xd4,
+0x4f, 0xc0, 0x5f, 0xb6, 0x01, 0xb7, 0x3d, 0xc0, 0x7b, 0xcf, 0x35, 0xe2, 0x60, 0xf6, 0x8a, 0x0a,
+0x03, 0x1e, 0x25, 0x2f, 0x0f, 0x3c, 0x5f, 0x42, 0xf1, 0x3f, 0xff, 0x33, 0x1d, 0x20, 0xb6, 0x07,
+0x8c, 0xef, 0xdd, 0xdb, 0x3d, 0xcf, 0x99, 0xca, 0x0d, 0xcd, 0xd3, 0xd4, 0xed, 0xdf, 0x9a, 0xec,
+0xce, 0xf9, 0x28, 0x07, 0x02, 0x14, 0x95, 0x1f, 0x57, 0x28, 0x77, 0x2c, 0xab, 0x2a, 0x93, 0x22,
+0x40, 0x15, 0xa0, 0x05, 0xc2, 0xf6, 0x1c, 0xeb, 0x08, 0xe4, 0x91, 0xe1, 0xf1, 0xe2, 0x1e, 0xe7,
+0xbe, 0xec, 0x04, 0xf3, 0x8a, 0xf9, 0xf8, 0xff, 0x6a, 0x06, 0x8e, 0x0c, 0xbe, 0x11, 0x56, 0x15,
+0x9c, 0x16, 0xbc, 0x14, 0x32, 0x10, 0xda, 0x09, 0x40, 0x03, 0xd2, 0xfd, 0x36, 0xfa, 0x7e, 0xf8,
+0x60, 0xf8, 0xd2, 0xf8, 0xfa, 0xf8, 0x78, 0xf8, 0xfe, 0xf6, 0x38, 0xf5, 0x18, 0xf4, 0xd2, 0xf4,
+0x4c, 0xf8, 0x40, 0xfe, 0x1e, 0x05, 0x78, 0x0b, 0x04, 0x10, 0x44, 0x12, 0xbc, 0x12, 0xec, 0x11,
+0x6e, 0x10, 0x76, 0x0e, 0x8e, 0x0b, 0x10, 0x07, 0xa2, 0x00, 0x00, 0xf8, 0x08, 0xee, 0x5e, 0xe4,
+0x5b, 0xdd, 0x89, 0xdb, 0x23, 0xe0, 0x92, 0xea, 0xc0, 0xf8, 0xca, 0x07, 0x18, 0x15, 0x57, 0x1f,
+0x85, 0x25, 0xfd, 0x27, 0x69, 0x27, 0xe9, 0x23, 0x15, 0x1d, 0x7e, 0x12, 0xe2, 0x03, 0x48, 0xf2,
+0xe9, 0xdf, 0xc5, 0xcf, 0xbb, 0xc5, 0x7f, 0xc4, 0x03, 0xcd, 0xa1, 0xdd, 0x0e, 0xf3, 0x32, 0x09,
+0x19, 0x1d, 0x69, 0x2c, 0xa9, 0x36, 0xc7, 0x3b, 0xc5, 0x3b, 0x43, 0x36, 0x95, 0x2a, 0x82, 0x18,
+0x1e, 0x01, 0x06, 0xe7, 0xc5, 0xcd, 0x15, 0xba, 0x9d, 0xaf, 0xe3, 0xb0, 0xdd, 0xbd, 0x5f, 0xd4,
+0x4c, 0xf0, 0x60, 0x0d, 0x4f, 0x27, 0xc5, 0x3b, 0x59, 0x49, 0x63, 0x4f, 0x83, 0x4d, 0x19, 0x43,
+0x35, 0x30, 0xfc, 0x15, 0x3c, 0xf7, 0x8f, 0xd7, 0xf7, 0xbb, 0x74, 0xa8, 0x66, 0xa0, 0x2c, 0xa5,
+0x2f, 0xb6, 0x05, 0xd1, 0xb6, 0xf1, 0x54, 0x13, 0xb9, 0x31, 0xeb, 0x49, 0x88, 0x59, 0x44, 0x5f,
+0xe2, 0x59, 0x75, 0x49, 0x81, 0x2f, 0x0c, 0x0f, 0xa8, 0xeb, 0x35, 0xca, 0xd3, 0xae, 0xfc, 0x9c,
+0x36, 0x97, 0x34, 0x9e, 0xe3, 0xb1, 0x2d, 0xd0, 0x0c, 0xf5, 0x2e, 0x1b, 0xc7, 0x3d, 0x6c, 0x58,
+0x10, 0x68, 0x8c, 0x6a, 0x48, 0x5f, 0x35, 0x48, 0x97, 0x28, 0x6a, 0x04, 0xfd, 0xdf, 0x41, 0xbf,
+0xc0, 0xa5, 0x6c, 0x96, 0xc6, 0x92, 0x2c, 0x9c, 0x9f, 0xb2, 0x3d, 0xd4, 0xa4, 0xfc, 0x13, 0x26,
+0x59, 0x4a, 0x9e, 0x64, 0x28, 0x71, 0x26, 0x6e, 0x14, 0x5d, 0x15, 0x41, 0xbb, 0x1e, 0x44, 0xfa,
+0x3d, 0xd7, 0xc7, 0xb8, 0x0a, 0xa2, 0xe0, 0x94, 0x7e, 0x93, 0x4a, 0x9f, 0x6b, 0xb8, 0xcf, 0xdc,
+0x64, 0x07, 0x63, 0x31, 0x4f, 0x54, 0xe0, 0x6a, 0xd2, 0x71, 0x78, 0x69, 0x25, 0x54, 0x5f, 0x36,
+0x82, 0x14, 0x00, 0xf2, 0xe3, 0xd1, 0xd9, 0xb6, 0xec, 0xa2, 0x9e, 0x98, 0xd8, 0x99, 0x0a, 0xa8,
+0x4d, 0xc3, 0xa6, 0xe8, 0x40, 0x12, 0x5b, 0x39, 0x78, 0x57, 0x16, 0x68, 0x0e, 0x6a, 0x32, 0x5e,
+0x23, 0x48, 0xe5, 0x2b, 0xd2, 0x0c, 0xe0, 0xed, 0x81, 0xd1, 0xc9, 0xb9, 0x16, 0xa9, 0xaa, 0xa1,
+0x38, 0xa5, 0x3b, 0xb5, 0xb7, 0xd0, 0x1c, 0xf4, 0xac, 0x19, 0xdd, 0x3a, 0x59, 0x52, 0x5e, 0x5d,
+0x7c, 0x5b, 0xe3, 0x4e, 0xa5, 0x3a, 0x89, 0x21, 0xa0, 0x06, 0x0a, 0xec, 0x03, 0xd4, 0xa3, 0xc0,
+0x03, 0xb4, 0xf5, 0xaf, 0x0f, 0xb6, 0x67, 0xc6, 0x31, 0xdf, 0x3a, 0xfd, 0x48, 0x1b, 0xbd, 0x34,
+0xcf, 0x45, 0x83, 0x4c, 0x5f, 0x49, 0x23, 0x3e, 0xbf, 0x2c, 0xba, 0x17, 0x7a, 0x01, 0x3a, 0xec,
+0xcf, 0xd9, 0x0f, 0xcc, 0x39, 0xc4, 0x8f, 0xc3, 0x39, 0xca, 0xa3, 0xd7, 0x78, 0xea, 0xf0, 0xff,
+0x54, 0x15, 0x3f, 0x27, 0x3d, 0x33, 0xdb, 0x37, 0x37, 0x35, 0x63, 0x2c, 0x0d, 0x1f, 0x42, 0x0f,
+0x22, 0xff, 0xb6, 0xf0, 0x46, 0xe5, 0xa5, 0xdd, 0x35, 0xda, 0xc1, 0xda, 0xd9, 0xde, 0x2c, 0xe6,
+0x24, 0xf0, 0x48, 0xfc, 0x20, 0x09, 0xc8, 0x14, 0x31, 0x1d, 0xfb, 0x20, 0xe3, 0x1f, 0x6c, 0x1a,
+0x20, 0x12, 0xc8, 0x08, 0x62, 0x00, 0x00, 0xfa, 0xb8, 0xf5, 0x64, 0xf3, 0x18, 0xf2, 0xf6, 0xf0,
+0x92, 0xef, 0xd8, 0xee, 0xf4, 0xef, 0x88, 0xf3, 0x72, 0xf9, 0x3e, 0x00, 0x54, 0x06, 0x56, 0x0a,
+0x96, 0x0b, 0xaa, 0x0a, 0xdc, 0x08, 0xd0, 0x07, 0x18, 0x08, 0x96, 0x09, 0x54, 0x0b, 0xde, 0x0b,
+0xba, 0x09, 0x1e, 0x04, 0xf6, 0xfb, 0x08, 0xf3, 0xb0, 0xeb, 0x9e, 0xe7, 0x46, 0xe7, 0x0c, 0xea,
+0x76, 0xee, 0x5c, 0xf3, 0x52, 0xf8, 0x9e, 0xfd, 0x0c, 0x04, 0x0c, 0x0c, 0xe4, 0x14, 0xe9, 0x1c,
+0x39, 0x22, 0xed, 0x22, 0xed, 0x1d, 0x56, 0x13, 0x92, 0x04, 0x58, 0xf4, 0x98, 0xe5, 0x5d, 0xda,
+0x35, 0xd4, 0x31, 0xd3, 0xb9, 0xd6, 0x11, 0xde, 0x90, 0xe8, 0x12, 0xf6, 0xd6, 0x05, 0xb0, 0x16,
+0x29, 0x26, 0x17, 0x32, 0x37, 0x38, 0x3f, 0x37, 0x6f, 0x2e, 0x75, 0x1e, 0x86, 0x09, 0x2e, 0xf2,
+0xaf, 0xdb, 0xa9, 0xc9, 0x97, 0xbe, 0xa3, 0xbb, 0xcd, 0xc0, 0x35, 0xcd, 0xa9, 0xdf, 0x32, 0xf6,
+0x7c, 0x0e, 0x91, 0x25, 0xf7, 0x38, 0xd7, 0x45, 0xe7, 0x4a, 0x0f, 0x47, 0x45, 0x3a, 0x65, 0x25,
+0x40, 0x0a, 0x0c, 0xec, 0x0b, 0xcf, 0xe3, 0xb7, 0x12, 0xaa, 0xdc, 0xa7, 0x1b, 0xb1, 0x7b, 0xc4,
+0xc9, 0xde, 0xa2, 0xfc, 0x42, 0x1a, 0x89, 0x34, 0x9d, 0x48, 0xf6, 0x54, 0x4c, 0x58, 0xaf, 0x51,
+0x1d, 0x41, 0x4b, 0x27, 0x8a, 0x06, 0x5b, 0xe2, 0x41, 0xc0, 0x16, 0xa6, 0x8a, 0x98, 0x6c, 0x99,
+0x2c, 0xa8, 0x03, 0xc2, 0xa1, 0xe2, 0x2c, 0x05, 0x81, 0x25, 0x87, 0x40, 0x83, 0x54, 0xd2, 0x5f,
+0x30, 0x61, 0xc4, 0x57, 0x5b, 0x43, 0x05, 0x25, 0x26, 0xff, 0x9f, 0xd6, 0xd9, 0xb1, 0xb8, 0x97,
+0x88, 0x8c, 0xe4, 0x91, 0x1a, 0xa6, 0xed, 0xc4, 0xf8, 0xe8, 0x3c, 0x0d, 0xf1, 0x2d, 0xb1, 0x48,
+0xe6, 0x5b, 0x02, 0x66, 0x76, 0x65, 0x0a, 0x59, 0xd1, 0x40, 0x41, 0x1e, 0xd6, 0xf4, 0x45, 0xca,
+0xe0, 0xa5, 0x68, 0x8e, 0xb6, 0x87, 0xec, 0x91, 0x1a, 0xaa, 0x7f, 0xcb, 0xbe, 0xf0, 0x10, 0x15,
+0x31, 0x35, 0xcb, 0x4e, 0x62, 0x60, 0x0c, 0x68, 0x2a, 0x64, 0xdb, 0x53, 0xc1, 0x37, 0x4e, 0x12,
+0xd2, 0xe7, 0xf9, 0xbe, 0xc2, 0x9e, 0xb2, 0x8c, 0x02, 0x8b, 0xf6, 0x98, 0x05, 0xb3, 0x89, 0xd4,
+0xcc, 0xf8, 0x98, 0x1b, 0xdb, 0x39, 0x51, 0x51, 0xd4, 0x5f, 0xdc, 0x63, 0x1a, 0x5c, 0x49, 0x48,
+0x35, 0x2a, 0x38, 0x05, 0x1b, 0xde, 0xc3, 0xba, 0xc8, 0xa0, 0xe0, 0x93, 0xa0, 0x95, 0x8e, 0xa4,
+0xc9, 0xbd, 0x7d, 0xdd, 0x5e, 0xff, 0x9b, 0x1f, 0x0d, 0x3b, 0x19, 0x4f, 0xf0, 0x59, 0x2c, 0x5a,
+0x17, 0x4f, 0x05, 0x3a, 0x37, 0x1d, 0x4a, 0xfc, 0x49, 0xdb, 0xaf, 0xbe, 0x56, 0xaa, 0x22, 0xa1,
+0x02, 0xa4, 0x57, 0xb2, 0xf3, 0xc9, 0xf4, 0xe6, 0xd2, 0x05, 0x7f, 0x22, 0xab, 0x39, 0xb3, 0x48,
+0x27, 0x4e, 0xd5, 0x49, 0xd3, 0x3c, 0xf9, 0x28, 0xf4, 0x10, 0x64, 0xf7, 0x8f, 0xde, 0x0f, 0xc9,
+0x91, 0xb9, 0x75, 0xb2, 0x5d, 0xb5, 0x1b, 0xc2, 0xaf, 0xd6, 0x38, 0xf0, 0x62, 0x0a, 0x77, 0x21,
+0x3f, 0x32, 0xff, 0x3a, 0xa9, 0x3b, 0x6f, 0x35, 0x03, 0x2a, 0x84, 0x1b, 0x48, 0x0b, 0xf4, 0xf9,
+0xd4, 0xe8, 0x2d, 0xd9, 0x47, 0xcd, 0x7d, 0xc7, 0x83, 0xc9, 0x71, 0xd3, 0xea, 0xe3, 0x62, 0xf7,
+0x8e, 0x0a, 0xfe, 0x19, 0x81, 0x23, 0xcb, 0x26, 0xe1, 0x24, 0x99, 0x1f, 0xbc, 0x18, 0x3a, 0x11,
+0x14, 0x09, 0x24, 0x00, 0x18, 0xf6, 0xc0, 0xeb, 0x09, 0xe3, 0x07, 0xde, 0x83, 0xde, 0x98, 0xe4,
+0xa2, 0xee, 0x3e, 0xfa, 0x92, 0x04, 0xae, 0x0b, 0xfe, 0x0e, 0x54, 0x0f, 0x14, 0x0e, 0xa2, 0x0c,
+0xd4, 0x0b, 0xca, 0x0b, 0xa0, 0x0b, 0x00, 0x0a, 0x68, 0x06, 0x08, 0x01, 0xea, 0xfa, 0xa4, 0xf5,
+0x9c, 0xf2, 0x46, 0xf2, 0xd2, 0xf3, 0xd8, 0xf5, 0x40, 0xf7, 0x9c, 0xf7, 0x28, 0xf7, 0x1e, 0xf7,
+0x74, 0xf8, 0x0a, 0xfc, 0xfa, 0x01, 0x80, 0x09, 0x20, 0x11, 0x0a, 0x17, 0xaa, 0x19, 0x6e, 0x18,
+0xac, 0x13, 0x58, 0x0c, 0xd2, 0x03, 0x36, 0xfb, 0xea, 0xf2, 0x9e, 0xeb, 0x64, 0xe5, 0x1f, 0xe1,
+0x75, 0xdf, 0x27, 0xe1, 0x7c, 0xe6, 0x86, 0xef, 0x18, 0xfc, 0xf8, 0x0a, 0x30, 0x1a, 0xdf, 0x26,
+0x0b, 0x2f, 0x85, 0x30, 0xe9, 0x2a, 0xf9, 0x1e, 0xd6, 0x0e, 0xfc, 0xfc, 0xd2, 0xeb, 0x0b, 0xdd,
+0x19, 0xd2, 0xbd, 0xcb, 0x55, 0xca, 0x57, 0xce, 0xaf, 0xd7, 0x70, 0xe6, 0xe8, 0xf9, 0x5e, 0x10,
+0xe5, 0x26, 0x13, 0x3a, 0xd7, 0x45, 0x89, 0x47, 0x4f, 0x3e, 0xcf, 0x2b, 0xa4, 0x13, 0xc4, 0xf9,
+0x97, 0xe1, 0xef, 0xcd, 0x1b, 0xc0, 0xb5, 0xb8, 0x53, 0xb8, 0xcf, 0xbe, 0xc1, 0xcc, 0xaf, 0xe1,
+0x74, 0xfc, 0x06, 0x1a, 0xf1, 0x36, 0xcf, 0x4d, 0x56, 0x5a, 0x62, 0x59, 0xbb, 0x4a, 0xd9, 0x31,
+0x40, 0x13, 0xc4, 0xf3, 0x3b, 0xd7, 0x79, 0xc0, 0xe7, 0xb0, 0xa6, 0xa9, 0xa6, 0xaa, 0x89, 0xb4,
+0xa3, 0xc7, 0x13, 0xe3, 0x66, 0x04, 0xe9, 0x27, 0x35, 0x48, 0xf2, 0x5f, 0x50, 0x6a, 0xd6, 0x64,
+0x0f, 0x51, 0x13, 0x33, 0xfa, 0x0f, 0x9a, 0xec, 0x03, 0xcd, 0x37, 0xb4, 0x2e, 0xa4, 0xaa, 0x9d,
+0x5e, 0xa1, 0xf1, 0xaf, 0xf5, 0xc8, 0xa0, 0xea, 0x3e, 0x11, 0x77, 0x37, 0xa2, 0x57, 0xa8, 0x6c,
+0xa2, 0x72, 0xcc, 0x68, 0xf5, 0x50, 0xcb, 0x2f, 0x46, 0x0a, 0x10, 0xe5, 0x35, 0xc4, 0x0c, 0xab,
+0xa0, 0x9b, 0x3a, 0x97, 0xec, 0x9e, 0x7b, 0xb2, 0xfb, 0xd0, 0xa2, 0xf6, 0xa3, 0x1e, 0x73, 0x43,
+0x50, 0x60, 0x2c, 0x71, 0x76, 0x73, 0xa6, 0x66, 0x4b, 0x4d, 0x29, 0x2b, 0x9a, 0x04, 0x33, 0xde,
+0x81, 0xbc, 0x60, 0xa3, 0xb0, 0x95, 0x1c, 0x95, 0xf4, 0xa1, 0xfb, 0xba, 0x03, 0xdd, 0x88, 0x03,
+0x47, 0x29, 0xdb, 0x49, 0xe2, 0x61, 0x84, 0x6e, 0xf4, 0x6d, 0x02, 0x60, 0x29, 0x46, 0xc9, 0x23,
+0x3c, 0xfd, 0x5f, 0xd7, 0x39, 0xb7, 0xe8, 0xa0, 0x70, 0x97, 0xd2, 0x9b, 0xfb, 0xac, 0x3f, 0xc8,
+0xb8, 0xe9, 0xda, 0x0c, 0x93, 0x2d, 0x11, 0x49, 0xba, 0x5c, 0x7e, 0x66, 0x7a, 0x64, 0x20, 0x56,
+0xad, 0x3c, 0xe6, 0x1a, 0x6a, 0xf5, 0xa3, 0xd1, 0x07, 0xb5, 0xae, 0xa3, 0x8c, 0x9f, 0x54, 0xa8,
+0xc1, 0xbb, 0x69, 0xd6, 0x1e, 0xf4, 0xbc, 0x11, 0x7b, 0x2c, 0xb1, 0x42, 0x63, 0x52, 0xbe, 0x59,
+0xbe, 0x56, 0xb7, 0x48, 0x3b, 0x30, 0x7a, 0x10, 0x60, 0xee, 0x87, 0xcf, 0x09, 0xb9, 0xe1, 0xad,
+0xc5, 0xae, 0x17, 0xba, 0xed, 0xcc, 0xab, 0xe3, 0x7e, 0xfb, 0x48, 0x12, 0xa3, 0x26, 0x7d, 0x37,
+0x5d, 0x43, 0x79, 0x48, 0x21, 0x45, 0x55, 0x38, 0x31, 0x23, 0x80, 0x08, 0xfa, 0xec, 0xaf, 0xd5,
+0x4f, 0xc6, 0x7d, 0xc0, 0xd1, 0xc3, 0x2f, 0xce, 0xe1, 0xdc, 0x86, 0xed, 0x04, 0xfe, 0xa0, 0x0d,
+0xb6, 0x1b, 0x77, 0x27, 0xdb, 0x2f, 0x73, 0x33, 0xb3, 0x30, 0x03, 0x27, 0x3e, 0x17, 0xf6, 0x03,
+0x2c, 0xf1, 0x25, 0xe2, 0x3b, 0xd9, 0xf3, 0xd6, 0x3d, 0xda, 0x6d, 0xe1, 0x94, 0xea, 0x46, 0xf4,
+0x96, 0xfd, 0x62, 0x06, 0x3e, 0x0e, 0x3a, 0x15, 0xa2, 0x1a, 0xa7, 0x1d, 0x65, 0x1d, 0x34, 0x19,
+0x72, 0x11, 0x60, 0x07, 0x2e, 0xfd, 0xcc, 0xf4, 0x9a, 0xef, 0xb0, 0xed, 0x8c, 0xee, 0x06, 0xf1,
+0x0c, 0xf4, 0x0e, 0xf7, 0x68, 0xf9, 0x4a, 0xfb, 0x04, 0xfd, 0x34, 0xff, 0x4a, 0x02, 0x60, 0x06,
+0xba, 0x0a, 0x40, 0x0e, 0x06, 0x10, 0x74, 0x0f, 0x5a, 0x0d, 0x76, 0x0a, 0xba, 0x07, 0x58, 0x05,
+0x22, 0x03, 0x98, 0x00, 0x26, 0xfd, 0x68, 0xf8, 0x80, 0xf2, 0x62, 0xec, 0x7c, 0xe7, 0x0c, 0xe6,
+0x90, 0xe9, 0x0e, 0xf2, 0x0c, 0xfe, 0xcc, 0x0a, 0xc8, 0x15, 0x43, 0x1d, 0xc5, 0x20, 0xed, 0x20,
+0x89, 0x1e, 0x3e, 0x1a, 0x0e, 0x14, 0xc0, 0x0b, 0xc2, 0x00, 0x74, 0xf3, 0xd4, 0xe4, 0x7d, 0xd7,
+0xcf, 0xce, 0x37, 0xcd, 0x67, 0xd4, 0x55, 0xe3, 0x88, 0xf7, 0xbc, 0x0c, 0x8d, 0x1f, 0xcb, 0x2c,
+0x19, 0x34, 0x9d, 0x35, 0x61, 0x32, 0x39, 0x2b, 0x07, 0x20, 0xd6, 0x10, 0xd4, 0xfd, 0x92, 0xe8,
+0x67, 0xd3, 0x5b, 0xc2, 0xad, 0xb8, 0x6b, 0xb9, 0x2d, 0xc5, 0x51, 0xda, 0x3c, 0xf5, 0x40, 0x11,
+0xc5, 0x29, 0xfd, 0x3b, 0x9d, 0x46, 0x9d, 0x49, 0x85, 0x45, 0x91, 0x3a, 0xf9, 0x28, 0x66, 0x11,
+0xb0, 0xf5, 0xe1, 0xd8, 0x6d, 0xbf, 0x33, 0xad, 0xf2, 0xa5, 0xf2, 0xaa, 0x47, 0xbc, 0x53, 0xd7,
+0xf4, 0xf7, 0xe6, 0x18, 0xb7, 0x35, 0x1b, 0x4b, 0x72, 0x57, 0x40, 0x5a, 0x11, 0x53, 0xbb, 0x42,
+0x01, 0x2a, 0x0c, 0x0b, 0x1a, 0xe9, 0xbd, 0xc8, 0x7d, 0xae, 0x48, 0x9e, 0x3e, 0x9a, 0x0e, 0xa3,
+0x57, 0xb8, 0x3b, 0xd7, 0xae, 0xfb, 0x5f, 0x20, 0x89, 0x40, 0x80, 0x58, 0xaa, 0x65, 0x78, 0x66,
+0xc6, 0x5a, 0xfd, 0x43, 0x8b, 0x24, 0x74, 0x00, 0xcd, 0xdb, 0x71, 0xbb, 0x66, 0xa3, 0x2a, 0x96,
+0x38, 0x95, 0x14, 0xa1, 0xf3, 0xb8, 0xb9, 0xda, 0x08, 0x02, 0x71, 0x29, 0xb9, 0x4b, 0x4c, 0x64,
+0x8c, 0x6f, 0x2e, 0x6c, 0xc6, 0x5a, 0x43, 0x3e, 0x00, 0x1b, 0x22, 0xf5, 0x5b, 0xd1, 0x6b, 0xb3,
+0x78, 0x9e, 0x2c, 0x94, 0xaa, 0x95, 0x5c, 0xa3, 0x21, 0xbd, 0xb5, 0xe0, 0xb0, 0x09, 0x7f, 0x32,
+0xb9, 0x54, 0x5e, 0x6b, 0xca, 0x72, 0x30, 0x6a, 0xf1, 0x53, 0x51, 0x34, 0x10, 0x10, 0xb8, 0xeb,
+0xfd, 0xca, 0x9b, 0xb0, 0x26, 0x9f, 0x90, 0x97, 0x1e, 0x9b, 0xa0, 0xaa, 0xdd, 0xc5, 0x74, 0xea,
+0xc6, 0x13, 0x39, 0x3b, 0x72, 0x5a, 0x52, 0x6c, 0x3a, 0x6e, 0x28, 0x61, 0x5b, 0x48, 0xbd, 0x28,
+0xc4, 0x06, 0xf8, 0xe5, 0x57, 0xc9, 0x0b, 0xb3, 0x9e, 0xa4, 0x9e, 0x9f, 0x2e, 0xa5, 0xd9, 0xb5,
+0x87, 0xd1, 0x3e, 0xf5, 0xc8, 0x1b, 0x0f, 0x3f, 0xb4, 0x58, 0xd2, 0x64, 0x94, 0x62, 0x87, 0x53,
+0x6b, 0x3b, 0x91, 0x1e, 0x8c, 0x00, 0x38, 0xe4, 0x25, 0xcc, 0xdb, 0xb9, 0xf3, 0xae, 0xbb, 0xac,
+0x13, 0xb4, 0x81, 0xc5, 0x77, 0xdf, 0x50, 0xff, 0xdb, 0x1f, 0xf7, 0x3b, 0xd5, 0x4e, 0x02, 0x56,
+0x3d, 0x51, 0xdb, 0x42, 0xb5, 0x2d, 0x1a, 0x15, 0x58, 0xfc, 0x8c, 0xe5, 0xbd, 0xd2, 0x77, 0xc5,
+0x9b, 0xbe, 0x09, 0xbf, 0x45, 0xc7, 0x97, 0xd6, 0xb4, 0xeb, 0x04, 0x04, 0x10, 0x1c, 0x19, 0x30,
+0x0d, 0x3d, 0x39, 0x41, 0xe9, 0x3c, 0x6b, 0x31, 0x11, 0x21, 0x64, 0x0e, 0xb6, 0xfb, 0x20, 0xeb,
+0x33, 0xde, 0xd7, 0xd5, 0xaf, 0xd2, 0x93, 0xd4, 0x2d, 0xdb, 0xca, 0xe5, 0x24, 0xf3, 0x20, 0x02,
+0x2c, 0x11, 0x1d, 0x1e, 0xff, 0x26, 0x85, 0x2a, 0x23, 0x28, 0xd9, 0x20, 0x36, 0x16, 0xd2, 0x09,
+0xee, 0xfd, 0x14, 0xf4, 0x44, 0xed, 0xd0, 0xe9, 0x24, 0xe9, 0x4e, 0xea, 0x72, 0xec, 0x62, 0xef,
+0x70, 0xf3, 0x50, 0xf9, 0xd4, 0x00, 0xe6, 0x08, 0xe4, 0x0f, 0xfc, 0x13, 0xa4, 0x14, 0xfa, 0x11,
+0x66, 0x0d, 0x4e, 0x08, 0x22, 0x04, 0xe4, 0x01, 0x40, 0x01, 0x36, 0x01, 0x60, 0x00, 0xe2, 0xfd,
+0x2e, 0xf9, 0xc4, 0xf3, 0x4c, 0xef, 0x68, 0xed, 0xfc, 0xee, 0x68, 0xf3, 0xd6, 0xf8, 0xf2, 0xfd,
+0xf8, 0x01, 0xfc, 0x04, 0xd0, 0x07, 0x46, 0x0b, 0x92, 0x0f, 0x3e, 0x14, 0xe2, 0x17, 0xbc, 0x18,
+0x74, 0x15, 0x7e, 0x0d, 0xa4, 0x01, 0xec, 0xf3, 0x52, 0xe7, 0x59, 0xde, 0x75, 0xda, 0xb7, 0xdb,
+0xfb, 0xe0, 0xc2, 0xe8, 0x3e, 0xf2, 0xe8, 0xfc, 0xac, 0x08, 0x2a, 0x15, 0x1f, 0x21, 0xa9, 0x2a,
+0xe5, 0x2f, 0x01, 0x2f, 0x15, 0x27, 0xc4, 0x18, 0xb4, 0x05, 0xbc, 0xf0, 0x35, 0xdd, 0x37, 0xce,
+0xef, 0xc5, 0xe5, 0xc4, 0xf3, 0xca, 0xc9, 0xd6, 0x48, 0xe7, 0x08, 0xfb, 0x1c, 0x10, 0x55, 0x24,
+0x39, 0x35, 0x85, 0x40, 0x4f, 0x44, 0xe7, 0x3f, 0x0d, 0x33, 0xfb, 0x1e, 0xe4, 0x05, 0xa6, 0xea,
+0xfd, 0xd0, 0xeb, 0xbc, 0x67, 0xb1, 0x17, 0xb0, 0x33, 0xb9, 0x3d, 0xcb, 0x00, 0xe4, 0x3e, 0x00,
+0x4f, 0x1c, 0xd7, 0x34, 0x45, 0x47, 0x97, 0x51, 0xd5, 0x52, 0xa9, 0x4a, 0xb7, 0x39, 0xf7, 0x20,
+0xac, 0x02, 0x0d, 0xe2, 0x61, 0xc3, 0xa3, 0xab, 0x08, 0x9f, 0xdc, 0x9f, 0xf1, 0xad, 0x3b, 0xc7,
+0x80, 0xe7, 0xda, 0x09, 0xbb, 0x29, 0x9d, 0x43, 0x7c, 0x55, 0x2a, 0x5e, 0xde, 0x5c, 0x8d, 0x51,
+0xc3, 0x3c, 0xad, 0x1f, 0x72, 0xfc, 0xdf, 0xd6, 0x61, 0xb4, 0x08, 0x9b, 0xcc, 0x8f, 0xe8, 0x94,
+0x4e, 0xa9, 0x11, 0xc9, 0x9e, 0xee, 0xf0, 0x13, 0xaf, 0x34, 0x1b, 0x4e, 0x90, 0x5e, 0x58, 0x65,
+0xca, 0x61, 0xa1, 0x53, 0x6b, 0x3b, 0x74, 0x1a, 0x30, 0xf3, 0x71, 0xca, 0x0e, 0xa7, 0x50, 0x8f,
+0x18, 0x88, 0x82, 0x92, 0x03, 0xac, 0x91, 0xcf, 0xce, 0xf6, 0x3a, 0x1c, 0x11, 0x3c, 0x47, 0x54,
+0x5c, 0x63, 0x0e, 0x68, 0xda, 0x61, 0x6b, 0x50, 0x91, 0x34, 0x34, 0x10, 0xba, 0xe6, 0x07, 0xbe,
+0x14, 0x9d, 0x20, 0x8a, 0x0e, 0x88, 0x1e, 0x97, 0xa1, 0xb3, 0x2d, 0xd8, 0xf6, 0xfe, 0xe3, 0x22,
+0xf3, 0x40, 0x28, 0x57, 0xe6, 0x63, 0xa4, 0x65, 0x02, 0x5c, 0x39, 0x47, 0x97, 0x28, 0x0c, 0x03,
+0x05, 0xdb, 0x6b, 0xb6, 0x6c, 0x9b, 0x80, 0x8e, 0x48, 0x91, 0x96, 0xa2, 0x37, 0xbf, 0x2d, 0xe2,
+0x46, 0x06, 0x43, 0x27, 0x07, 0x42, 0xce, 0x54, 0xe8, 0x5d, 0x4c, 0x5c, 0xa7, 0x4f, 0x4d, 0x39,
+0x36, 0x1b, 0x8a, 0xf8, 0xf7, 0xd5, 0x03, 0xb8, 0x32, 0xa3, 0x80, 0x9a, 0xd4, 0x9e, 0x71, 0xaf,
+0x9b, 0xc9, 0x3e, 0xe9, 0xc4, 0x09, 0x79, 0x27, 0x11, 0x3f, 0x33, 0x4e, 0x79, 0x53, 0x25, 0x4e,
+0x6b, 0x3f, 0x15, 0x29, 0x16, 0x0e, 0x78, 0xf1, 0x6f, 0xd6, 0x33, 0xc0, 0x41, 0xb1, 0x9f, 0xab,
+0x63, 0xb0, 0x2b, 0xbf, 0x09, 0xd6, 0x8e, 0xf1, 0x9e, 0x0d, 0x2b, 0x26, 0x7d, 0x38, 0x43, 0x42,
+0xd9, 0x42, 0x0d, 0x3b, 0x97, 0x2c, 0x26, 0x1a, 0xf6, 0x05, 0xd8, 0xf1, 0x39, 0xdf, 0x9d, 0xcf,
+0x93, 0xc4, 0x0b, 0xc0, 0x77, 0xc3, 0x0f, 0xcf, 0x53, 0xe1, 0x3a, 0xf7, 0x06, 0x0d, 0x31, 0x1f,
+0x09, 0x2b, 0xcb, 0x2f, 0xab, 0x2d, 0x49, 0x26, 0xe8, 0x1b, 0x1e, 0x10, 0x2c, 0x04, 0x8e, 0xf8,
+0x36, 0xed, 0xa9, 0xe2, 0x7b, 0xda, 0x17, 0xd6, 0x5b, 0xd7, 0xc3, 0xde, 0x02, 0xeb, 0xc4, 0xf9,
+0xd2, 0x07, 0x66, 0x12, 0x2e, 0x18, 0x44, 0x19, 0xde, 0x16, 0xe2, 0x12, 0x8a, 0x0e, 0xc8, 0x0a,
+0x26, 0x07, 0x2e, 0x03, 0x0a, 0xfe, 0xd2, 0xf7, 0x52, 0xf1, 0x80, 0xec, 0x8a, 0xea, 0x3a, 0xec,
+0x18, 0xf1, 0x16, 0xf7, 0x88, 0xfc, 0xfc, 0xff, 0x20, 0x01, 0x1e, 0x01, 0x42, 0x01, 0x60, 0x02,
+0x12, 0x05, 0x00, 0x09, 0x24, 0x0d, 0x38, 0x10, 0xfa, 0x10, 0x80, 0x0e, 0x86, 0x09, 0xca, 0x02,
+0x00, 0xfc, 0x0e, 0xf6, 0x76, 0xf1, 0x16, 0xee, 0x60, 0xeb, 0x82, 0xe9, 0xf4, 0xe8, 0x7e, 0xea,
+0xbe, 0xee, 0x08, 0xf6, 0xb4, 0xff, 0x0a, 0x0b, 0x9a, 0x16, 0x01, 0x20, 0xc1, 0x25, 0x21, 0x26,
+0x95, 0x20, 0x2c, 0x16, 0x6e, 0x08, 0x6c, 0xf9, 0x46, 0xeb, 0x71, 0xdf, 0xd3, 0xd6, 0x5f, 0xd2,
+0x45, 0xd2, 0xbf, 0xd6, 0xe7, 0xdf, 0x46, 0xed, 0xfc, 0xfd, 0xa2, 0x10, 0x09, 0x23, 0x8d, 0x32,
+0x23, 0x3c, 0x77, 0x3d, 0x85, 0x35, 0x01, 0x25, 0xe2, 0x0e, 0x96, 0xf6, 0xf5, 0xdf, 0xe1, 0xcd,
+0x23, 0xc2, 0x17, 0xbd, 0xf3, 0xbe, 0x2b, 0xc7, 0x29, 0xd5, 0xae, 0xe8, 0x26, 0x00, 0xb8, 0x19,
+0x77, 0x32, 0x93, 0x46, 0xe7, 0x51, 0xa5, 0x51, 0x8b, 0x44, 0xb9, 0x2c, 0x7c, 0x0e, 0xfc, 0xee,
+0xf1, 0xd2, 0xe3, 0xbd, 0x1d, 0xb1, 0x01, 0xad, 0xd9, 0xb0, 0x5f, 0xbc, 0x47, 0xcf, 0xa0, 0xe8,
+0xba, 0x06, 0x55, 0x26, 0x73, 0x43, 0x62, 0x59, 0x84, 0x63, 0xde, 0x5e, 0xf5, 0x4b, 0xcf, 0x2d,
+0xe0, 0x09, 0x2c, 0xe6, 0x51, 0xc7, 0xe5, 0xb0, 0x3e, 0xa4, 0x22, 0xa1, 0x7a, 0xa7, 0x03, 0xb7,
+0x23, 0xcf, 0xa0, 0xee, 0x40, 0x12, 0xd3, 0x35, 0x6d, 0x54, 0xc6, 0x68, 0xcc, 0x6e, 0x02, 0x65,
+0xa9, 0x4c, 0x3b, 0x2a, 0x3c, 0x03, 0x29, 0xdd, 0x1d, 0xbd, 0x28, 0xa6, 0xe6, 0x99, 0xd4, 0x98,
+0x98, 0xa2, 0xe5, 0xb6, 0xd3, 0xd4, 0x5e, 0xf9, 0x51, 0x20, 0x87, 0x44, 0xd2, 0x60, 0xe4, 0x70,
+0x26, 0x72, 0xec, 0x63, 0xc1, 0x48, 0xe9, 0x24, 0x42, 0xfd, 0x27, 0xd7, 0x07, 0xb7, 0xa0, 0xa0,
+0xac, 0x95, 0x08, 0x97, 0xbc, 0xa4, 0xcd, 0xbd, 0xe7, 0xdf, 0x80, 0x06, 0x91, 0x2c, 0x29, 0x4d,
+0xb6, 0x64, 0xde, 0x6f, 0x40, 0x6d, 0x3c, 0x5d, 0x8d, 0x41, 0x09, 0x1e, 0xfc, 0xf6, 0x4d, 0xd1,
+0x25, 0xb2, 0x82, 0x9d, 0x62, 0x95, 0xc8, 0x9a, 0x0f, 0xad, 0xe1, 0xc9, 0x82, 0xed, 0xc0, 0x12,
+0xbb, 0x34, 0x37, 0x50, 0x8a, 0x62, 0xe8, 0x69, 0x2c, 0x65, 0x65, 0x54, 0x41, 0x39, 0xae, 0x16,
+0xb0, 0xf0, 0xaf, 0xcc, 0xe7, 0xaf, 0x90, 0x9e, 0xea, 0x9a, 0xa2, 0xa4, 0x0f, 0xba, 0xcd, 0xd7,
+0x0e, 0xf9, 0x46, 0x19, 0x4d, 0x35, 0xc9, 0x4a, 0x76, 0x58, 0x40, 0x5d, 0xb8, 0x57, 0x15, 0x48,
+0xed, 0x2e, 0x94, 0x0e, 0x8a, 0xeb, 0x41, 0xcb, 0x1f, 0xb3, 0xd4, 0xa6, 0x04, 0xa8, 0x13, 0xb5,
+0x49, 0xcb, 0x18, 0xe6, 0x9a, 0x01, 0xcc, 0x1a, 0xcb, 0x2f, 0xd5, 0x3f, 0xc5, 0x49, 0xcb, 0x4c,
+0xa3, 0x47, 0xad, 0x39, 0x7b, 0x23, 0x6e, 0x07, 0xcc, 0xe9, 0xc5, 0xcf, 0x31, 0xbe, 0x65, 0xb7,
+0xbf, 0xbb, 0xf5, 0xc8, 0x9b, 0xdb, 0x54, 0xf0, 0x34, 0x04, 0xb2, 0x15, 0x31, 0x24, 0x67, 0x2f,
+0xab, 0x36, 0x25, 0x39, 0x59, 0x35, 0x6d, 0x2a, 0xe4, 0x18, 0xfe, 0x02, 0xc0, 0xec, 0x51, 0xda,
+0x0b, 0xcf, 0x61, 0xcc, 0x61, 0xd1, 0xc1, 0xdb, 0xca, 0xe8, 0x44, 0xf6, 0xaa, 0x02, 0x94, 0x0d,
+0x8c, 0x16, 0xa5, 0x1d, 0x87, 0x22, 0x71, 0x24, 0x9d, 0x22, 0x3a, 0x1c, 0xb4, 0x11, 0x8e, 0x04,
+0x6a, 0xf7, 0x90, 0xec, 0x2c, 0xe6, 0x70, 0xe4, 0xac, 0xe6, 0x48, 0xeb, 0x04, 0xf1, 0xd4, 0xf6,
+0x1c, 0xfc, 0x9a, 0x00, 0x6e, 0x04, 0xfc, 0x07, 0x70, 0x0b, 0xd6, 0x0e, 0x3a, 0x11, 0xee, 0x11,
+0x46, 0x10, 0x64, 0x0c, 0x38, 0x07, 0x04, 0x02, 0xc4, 0xfd, 0x12, 0xfb, 0xb4, 0xf9, 0x10, 0xf9,
+0x66, 0xf8, 0x38, 0xf7, 0x2c, 0xf5, 0xd8, 0xf2, 0xe6, 0xf0, 0xc2, 0xf0, 0x9c, 0xf3, 0xca, 0xf9,
+0xa2, 0x02, 0x24, 0x0c, 0x7e, 0x14, 0xb4, 0x19, 0x66, 0x1b, 0xc8, 0x19, 0xf8, 0x15, 0x98, 0x10,
+0x56, 0x0a, 0x58, 0x03, 0x36, 0xfb, 0x18, 0xf2, 0x4c, 0xe8, 0x37, 0xdf, 0xd9, 0xd8, 0x81, 0xd7,
+0xdf, 0xdc, 0x0e, 0xe9, 0x5c, 0xfa, 0x4e, 0x0d, 0x75, 0x1e, 0xa9, 0x2a, 0x9d, 0x30, 0x6f, 0x30,
+0x55, 0x2b, 0xb3, 0x22, 0x70, 0x17, 0xfa, 0x09, 0x6a, 0xfa, 0x72, 0xe9, 0xb5, 0xd8, 0xdd, 0xca,
+0xc9, 0xc2, 0x2d, 0xc3, 0x4b, 0xcd, 0x59, 0xe0, 0x4a, 0xf9, 0x9a, 0x13, 0x71, 0x2a, 0xa3, 0x3a,
+0xb5, 0x42, 0xfd, 0x42, 0xb7, 0x3c, 0x0d, 0x31, 0xbb, 0x20, 0x5c, 0x0c, 0xe0, 0xf4, 0x47, 0xdc,
+0xe5, 0xc5, 0x3f, 0xb5, 0xf3, 0xad, 0x27, 0xb2, 0x43, 0xc2, 0x23, 0xdc, 0xce, 0xfb, 0xc0, 0x1b,
+0x27, 0x37, 0x5f, 0x4a, 0x01, 0x54, 0x0f, 0x54, 0x3f, 0x4b, 0xcd, 0x3a, 0xcd, 0x23, 0xbc, 0x07,
+0x00, 0xe9, 0x65, 0xcb, 0xd9, 0xb2, 0x76, 0xa3, 0xbe, 0x9f, 0xd0, 0xa8, 0x0b, 0xbe, 0xb5, 0xdc,
+0x58, 0x00, 0xb1, 0x23, 0xdf, 0x41, 0x66, 0x57, 0x3e, 0x62, 0x84, 0x61, 0x86, 0x55, 0x7f, 0x3f,
+0x77, 0x21, 0xa4, 0xfe, 0xe3, 0xda, 0xf7, 0xba, 0x66, 0xa3, 0x3a, 0x97, 0x10, 0x98, 0xc0, 0xa5,
+0xeb, 0xbe, 0xc7, 0xe0, 0x14, 0x07, 0xa9, 0x2c, 0xcb, 0x4c, 0x48, 0x63, 0x46, 0x6d, 0x7e, 0x69,
+0x3c, 0x58, 0xd3, 0x3b, 0x02, 0x18, 0x3e, 0xf1, 0xa3, 0xcc, 0xc5, 0xae, 0x0e, 0x9b, 0x42, 0x93,
+0xbc, 0x97, 0x1a, 0xa8, 0x3d, 0xc3, 0x90, 0xe6, 0x26, 0x0e, 0x1b, 0x35, 0xd0, 0x55, 0xc4, 0x6b,
+0x30, 0x73, 0xd0, 0x6a, 0x2f, 0x54, 0x21, 0x33, 0x8e, 0x0c, 0xd8, 0xe5, 0xa5, 0xc3, 0x8a, 0xa9,
+0xf8, 0x99, 0x72, 0x95, 0x3a, 0x9c, 0x05, 0xae, 0x01, 0xca, 0x06, 0xee, 0x0c, 0x16, 0x7b, 0x3c,
+0x98, 0x5b, 0x24, 0x6e, 0xc0, 0x70, 0x74, 0x63, 0x09, 0x49, 0x8b, 0x26, 0x76, 0x01, 0x65, 0xde,
+0x03, 0xc1, 0xb3, 0xab, 0xac, 0x9f, 0x90, 0x9d, 0x9a, 0xa5, 0xfb, 0xb7, 0x1d, 0xd4, 0x9e, 0xf7,
+0x1b, 0x1e, 0xf1, 0x41, 0xd4, 0x5c, 0x16, 0x6a, 0x90, 0x67, 0x7c, 0x56, 0x13, 0x3b, 0x54, 0x1a,
+0x16, 0xf9, 0x09, 0xdb, 0xb7, 0xc2, 0xb7, 0xb1, 0x08, 0xa9, 0x10, 0xa9, 0x55, 0xb2, 0x27, 0xc5,
+0x4d, 0xe0, 0x5a, 0x01, 0x85, 0x23, 0x87, 0x41, 0x24, 0x56, 0xe2, 0x5d, 0xf8, 0x57, 0xb1, 0x46,
+0xdb, 0x2d, 0xd4, 0x11, 0x44, 0xf6, 0xb5, 0xdd, 0x6b, 0xca, 0x83, 0xbd, 0xcd, 0xb7, 0xd5, 0xb9,
+0xd1, 0xc3, 0x43, 0xd5, 0xee, 0xec, 0xd4, 0x07, 0x7b, 0x22, 0xb9, 0x38, 0xdb, 0x46, 0xd1, 0x4a,
+0x9d, 0x44, 0xe9, 0x35, 0xe1, 0x21, 0x96, 0x0b, 0xcc, 0xf5, 0x25, 0xe3, 0xf7, 0xd4, 0x61, 0xcc,
+0xd7, 0xc9, 0x6d, 0xcd, 0x85, 0xd6, 0x78, 0xe4, 0xa4, 0xf5, 0x5a, 0x08, 0x46, 0x1a, 0xf5, 0x28,
+0x53, 0x32, 0xdd, 0x34, 0x7b, 0x30, 0x27, 0x26, 0xde, 0x17, 0x12, 0x08, 0x28, 0xf9, 0xdc, 0xec,
+0x76, 0xe4, 0x5f, 0xe0, 0x41, 0xe0, 0x87, 0xe3, 0x00, 0xe9, 0xf0, 0xef, 0xf8, 0xf7, 0xd2, 0x00,
+0x30, 0x0a, 0x20, 0x13, 0x22, 0x1a, 0xa7, 0x1d, 0xf5, 0x1c, 0x0a, 0x18, 0x4c, 0x10, 0xb4, 0x07,
+0x38, 0x00, 0xf0, 0xfa, 0x32, 0xf8, 0x9e, 0xf7, 0x10, 0xf8, 0x2a, 0xf8, 0x2e, 0xf7, 0x4c, 0xf5,
+0x9c, 0xf3, 0xb0, 0xf3, 0x66, 0xf6, 0x70, 0xfb, 0xa0, 0x01, 0x46, 0x07, 0xf8, 0x0a, 0x6c, 0x0c,
+0x34, 0x0c, 0xca, 0x0b, 0x14, 0x0c, 0x52, 0x0d, 0xc6, 0x0e, 0x4a, 0x0f, 0x3a, 0x0d, 0xc4, 0x07,
+0x00, 0xff, 0x52, 0xf4, 0x4a, 0xea, 0x4b, 0xe3, 0x15, 0xe1, 0xc0, 0xe3, 0x32, 0xea, 0x96, 0xf2,
+0x82, 0xfb, 0x0c, 0x04, 0x4e, 0x0c, 0x9c, 0x14, 0x85, 0x1c, 0x21, 0x23, 0xbf, 0x26, 0xbf, 0x25,
+0x31, 0x1f, 0xf8, 0x12, 0x50, 0x02, 0xd2, 0xef, 0xd1, 0xde, 0x45, 0xd2, 0x57, 0xcc, 0x59, 0xcd,
+0xad, 0xd4, 0xa1, 0xe0, 0x9a, 0xef, 0x50, 0x00, 0x8e, 0x11, 0xf9, 0x21, 0xdf, 0x2f, 0x3b, 0x39,
+0x2f, 0x3c, 0xbd, 0x37, 0xcb, 0x2b, 0x50, 0x19, 0x28, 0x02, 0x60, 0xe9, 0x8b, 0xd2, 0x57, 0xc1,
+0x3b, 0xb8, 0x99, 0xb8, 0x0f, 0xc2, 0x43, 0xd3, 0xd6, 0xe9, 0x4c, 0x03, 0x85, 0x1c, 0xd3, 0x32,
+0x85, 0x43, 0xa7, 0x4c, 0x1f, 0x4d, 0x69, 0x44, 0x63, 0x33, 0x72, 0x1b, 0xf0, 0xfe, 0xd9, 0xe0,
+0x59, 0xc5, 0x47, 0xb0, 0x78, 0xa5, 0xbc, 0xa6, 0x4f, 0xb4, 0x59, 0xcc, 0x32, 0xeb, 0x78, 0x0c,
+0x85, 0x2b, 0xa7, 0x44, 0x34, 0x55, 0xe0, 0x5b, 0x6c, 0x58, 0x5d, 0x4b, 0xbf, 0x35, 0x54, 0x19,
+0x46, 0xf8, 0xf1, 0xd5, 0xc3, 0xb6, 0xca, 0x9f, 0x68, 0x95, 0x3c, 0x9a, 0xcd, 0xad, 0x2f, 0xcd,
+0xd6, 0xf2, 0xcc, 0x18, 0xc5, 0x39, 0x63, 0x52, 0xec, 0x60, 0xd0, 0x64, 0x3e, 0x5e, 0xcf, 0x4d,
+0xc7, 0x34, 0xa0, 0x14, 0xc6, 0xef, 0x1f, 0xca, 0x36, 0xa9, 0xca, 0x92, 0x90, 0x8b, 0x8e, 0x95,
+0x1d, 0xaf, 0xc1, 0xd3, 0xbc, 0xfc, 0x9f, 0x23, 0xb9, 0x43, 0x48, 0x5a, 0x6a, 0x66, 0xb8, 0x67,
+0x86, 0x5e, 0x59, 0x4b, 0x71, 0x2f, 0x68, 0x0c, 0x52, 0xe5, 0xc3, 0xbe, 0xe6, 0x9e, 0xd4, 0x8b,
+0x46, 0x89, 0x42, 0x98, 0xbd, 0xb5, 0x71, 0xdc, 0x6c, 0x05, 0xc7, 0x2a, 0xb5, 0x48, 0x30, 0x5d,
+0x30, 0x67, 0x2c, 0x66, 0x9a, 0x5a, 0x05, 0x45, 0xc5, 0x26, 0x08, 0x02, 0xa1, 0xda, 0xeb, 0xb5,
+0x04, 0x9a, 0x0e, 0x8c, 0x86, 0x8e, 0x08, 0xa1, 0xf9, 0xbf, 0xda, 0xe5, 0x96, 0x0c, 0x15, 0x2f,
+0x0d, 0x4a, 0x94, 0x5b, 0x96, 0x62, 0x8e, 0x5e, 0xfd, 0x4f, 0x13, 0x38, 0xbc, 0x18, 0x0c, 0xf5,
+0x3d, 0xd1, 0x87, 0xb2, 0x80, 0x9d, 0x74, 0x95, 0x8e, 0x9b, 0xb5, 0xae, 0xc7, 0xcb, 0xf4, 0xed,
+0x70, 0x10, 0xef, 0x2e, 0x73, 0x46, 0xbd, 0x54, 0xd6, 0x58, 0x5b, 0x52, 0x57, 0x42, 0x6b, 0x2a,
+0x1e, 0x0d, 0xe4, 0xed, 0x75, 0xd0, 0xd9, 0xb8, 0xb4, 0xa9, 0x52, 0xa5, 0x05, 0xac, 0x41, 0xbd,
+0x7d, 0xd6, 0x2e, 0xf4, 0xe0, 0x11, 0xe3, 0x2b, 0x09, 0x3f, 0x1f, 0x49, 0x73, 0x49, 0x8f, 0x40,
+0x43, 0x30, 0xa0, 0x1a, 0xae, 0x02, 0x04, 0xeb, 0x31, 0xd6, 0xf7, 0xc5, 0xed, 0xbb, 0x31, 0xb9,
+0xdd, 0xbe, 0xa3, 0xcc, 0x17, 0xe1, 0xfe, 0xf8, 0xe2, 0x10, 0x11, 0x25, 0xb7, 0x32, 0x2f, 0x38,
+0x95, 0x35, 0x75, 0x2c, 0xcd, 0x1e, 0x04, 0x0f, 0x0a, 0xff, 0x72, 0xf0, 0x95, 0xe3, 0x29, 0xd9,
+0xb7, 0xd1, 0xb5, 0xce, 0x65, 0xd1, 0x6d, 0xda, 0xcc, 0xe8, 0x0a, 0xfa, 0x32, 0x0b, 0xe2, 0x18,
+0x15, 0x21, 0x11, 0x23, 0xf1, 0x1f, 0x78, 0x19, 0x86, 0x11, 0x90, 0x09, 0x36, 0x02, 0xa4, 0xfb,
+0x24, 0xf5, 0x78, 0xee, 0x1c, 0xe8, 0xbb, 0xe3, 0xd9, 0xe2, 0x5a, 0xe6, 0xd8, 0xed, 0x6e, 0xf7,
+0xda, 0x00, 0xca, 0x07, 0x56, 0x0b, 0xda, 0x0b, 0xba, 0x0a, 0x4c, 0x09, 0x62, 0x08, 0x80, 0x08,
+0x38, 0x09, 0x9e, 0x09, 0x6e, 0x08, 0xd0, 0x04, 0x36, 0xff, 0xf4, 0xf8, 0xc2, 0xf3, 0x82, 0xf0,
+0x90, 0xef, 0x2c, 0xf0, 0x4e, 0xf1, 0x56, 0xf2, 0x36, 0xf3, 0xa2, 0xf4, 0x72, 0xf7, 0x42, 0xfc,
+0xca, 0x02, 0xbe, 0x0a, 0xfe, 0x12, 0xd2, 0x19, 0x61, 0x1d, 0x81, 0x1c, 0x14, 0x17, 0xc2, 0x0d,
+0x40, 0x02, 0x24, 0xf6, 0x1c, 0xeb, 0x61, 0xe2, 0x65, 0xdc, 0xbf, 0xd9, 0x97, 0xda, 0x37, 0xdf,
+0x62, 0xe7, 0xfa, 0xf2, 0x22, 0x01, 0xae, 0x10, 0xcb, 0x1f, 0x2f, 0x2c, 0x6b, 0x33, 0xa7, 0x33,
+0x13, 0x2c, 0x23, 0x1d, 0x62, 0x09, 0xd0, 0xf3, 0xeb, 0xdf, 0x37, 0xd0, 0xa5, 0xc6, 0x67, 0xc3,
+0xa5, 0xc6, 0x99, 0xcf, 0x6f, 0xdd, 0x46, 0xef, 0x16, 0x04, 0x1a, 0x1a, 0xcb, 0x2e, 0x79, 0x3f,
+0xc1, 0x48, 0x0b, 0x48, 0x0d, 0x3c, 0x13, 0x26, 0xa6, 0x09, 0xe2, 0xeb, 0x53, 0xd1, 0xa9, 0xbd,
+0xb7, 0xb2, 0xef, 0xb0, 0x33, 0xb7, 0x91, 0xc4, 0xa1, 0xd7, 0x64, 0xef, 0x4c, 0x0a, 0xf1, 0x25,
+0x49, 0x3f, 0x53, 0x52, 0x68, 0x5b, 0x0e, 0x57, 0x2d, 0x45, 0xf5, 0x27, 0xb0, 0x04, 0x47, 0xe1,
+0x4f, 0xc3, 0x39, 0xae, 0xb0, 0xa3, 0xb6, 0xa3, 0xdb, 0xac, 0x0f, 0xbe, 0x07, 0xd6, 0x5a, 0xf3,
+0xb6, 0x13, 0xff, 0x33, 0xff, 0x4f, 0x10, 0x63, 0x1e, 0x69, 0xba, 0x5f, 0xa9, 0x47, 0xfb, 0x24,
+0x52, 0xfd, 0x39, 0xd7, 0xcf, 0xb7, 0xcc, 0xa2, 0x3e, 0x99, 0x00, 0x9b, 0x2a, 0xa7, 0x5d, 0xbc,
+0x85, 0xd9, 0xf4, 0xfb, 0x81, 0x20, 0xe7, 0x42, 0x56, 0x5e, 0x2e, 0x6e, 0x16, 0x6f, 0x50, 0x60,
+0xe3, 0x43, 0x4f, 0x1e, 0x5e, 0xf5, 0xd9, 0xce, 0xe7, 0xaf, 0xdc, 0x9b, 0xd6, 0x93, 0xd8, 0x97,
+0x52, 0xa7, 0x03, 0xc1, 0x9b, 0xe2, 0x86, 0x08, 0x3f, 0x2e, 0x11, 0x4f, 0xc8, 0x66, 0x6c, 0x71,
+0x56, 0x6d, 0x0e, 0x5b, 0x21, 0x3d, 0x88, 0x17, 0x40, 0xef, 0x93, 0xc9, 0x85, 0xab, 0xc4, 0x98,
+0x9e, 0x92, 0xac, 0x99, 0x25, 0xad, 0x0d, 0xcb, 0x74, 0xef, 0x9c, 0x15, 0xbf, 0x38, 0xbf, 0x54,
+0xac, 0x66, 0x2c, 0x6c, 0xce, 0x64, 0x8f, 0x51, 0x99, 0x34, 0xd6, 0x10, 0x94, 0xea, 0xf5, 0xc6,
+0xfc, 0xaa, 0xac, 0x9a, 0xb6, 0x97, 0x7e, 0xa2, 0x65, 0xb9, 0x23, 0xd9, 0xc6, 0xfc, 0x49, 0x1f,
+0xdf, 0x3c, 0xb5, 0x52, 0x2c, 0x5f, 0x58, 0x61, 0x0c, 0x59, 0xe3, 0x46, 0x09, 0x2c, 0xe6, 0x0a,
+0x36, 0xe7, 0x61, 0xc6, 0xab, 0xad, 0xd8, 0xa0, 0xf2, 0xa1, 0x0f, 0xb0, 0x97, 0xc8, 0xf8, 0xe6,
+0x70, 0x06, 0xbb, 0x22, 0x85, 0x39, 0x55, 0x49, 0x85, 0x51, 0xd7, 0x51, 0xff, 0x49, 0xe1, 0x39,
+0xfd, 0x21, 0xac, 0x04, 0x5c, 0xe5, 0x8d, 0xc9, 0xf9, 0xb5, 0x33, 0xae, 0xf3, 0xb2, 0xa9, 0xc2,
+0x59, 0xd9, 0xb8, 0xf2, 0x00, 0x0b, 0x8f, 0x1f, 0x53, 0x2f, 0xf1, 0x39, 0x5f, 0x3f, 0x3b, 0x3f,
+0x21, 0x39, 0x03, 0x2c, 0x72, 0x18, 0x70, 0x00, 0xac, 0xe7, 0x7b, 0xd2, 0x1b, 0xc5, 0xaf, 0xc1,
+0xe9, 0xc7, 0xad, 0xd5, 0x3a, 0xe7, 0x3a, 0xf9, 0x8e, 0x09, 0xec, 0x16, 0xb9, 0x20, 0x45, 0x27,
+0xb1, 0x2a, 0xc1, 0x2a, 0xd3, 0x26, 0x37, 0x1e, 0xf4, 0x10, 0xe8, 0x00, 0xac, 0xf0, 0x21, 0xe3,
+0x0f, 0xdb, 0x9d, 0xd9, 0x0f, 0xde, 0x6c, 0xe6, 0x74, 0xf0, 0x1a, 0xfa, 0x72, 0x02, 0x22, 0x09,
+0x16, 0x0e, 0xba, 0x11, 0x80, 0x14, 0x3c, 0x16, 0x3c, 0x16, 0xfe, 0x13, 0x06, 0x0f, 0xf8, 0x07,
+0xf2, 0xff, 0x90, 0xf8, 0x50, 0xf3, 0x02, 0xf1, 0x68, 0xf1, 0x50, 0xf3, 0xfc, 0xf5, 0x2e, 0xf8,
+0x80, 0xf9, 0x04, 0xfa, 0x36, 0xfa, 0xd8, 0xfa, 0x02, 0xfd, 0x28, 0x01, 0xae, 0x06, 0x94, 0x0c,
+0x62, 0x11, 0xa4, 0x13, 0x06, 0x13, 0x28, 0x10, 0xb8, 0x0b, 0x06, 0x07, 0x6a, 0x02, 0xd0, 0xfd,
+0xda, 0xf8, 0x8c, 0xf3, 0xa6, 0xed, 0xf2, 0xe7, 0xe2, 0xe3, 0x0b, 0xe3, 0x12, 0xe7, 0x80, 0xf0,
+0x54, 0xfe, 0xd0, 0x0d, 0x22, 0x1c, 0xfb, 0x25, 0x05, 0x2a, 0x75, 0x28, 0x95, 0x22, 0xcc, 0x19,
+0x4c, 0x0f, 0xb2, 0x03, 0x3a, 0xf7, 0x30, 0xea, 0x21, 0xdd, 0xf7, 0xd1, 0x6b, 0xcb, 0xe3, 0xcb,
+0x85, 0xd4, 0x68, 0xe5, 0xfc, 0xfb, 0x76, 0x14, 0xf9, 0x29, 0x05, 0x39, 0x6d, 0x3f, 0xad, 0x3d,
+0x6b, 0x35, 0x37, 0x28, 0xc8, 0x17, 0xfe, 0x04, 0xe0, 0xf0, 0x91, 0xdc, 0x3f, 0xca, 0x79, 0xbc,
+0x61, 0xb6, 0x47, 0xba, 0xed, 0xc8, 0xdf, 0xe0, 0xae, 0xfe, 0x53, 0x1d, 0xa1, 0x37, 0xcb, 0x49,
+0xbf, 0x51, 0xa1, 0x4f, 0x01, 0x45, 0x89, 0x33, 0xcf, 0x1c, 0x88, 0x02, 0xba, 0xe6, 0x1b, 0xcc,
+0x2b, 0xb6, 0x62, 0xa8, 0x7c, 0xa5, 0xff, 0xae, 0x63, 0xc4, 0xd9, 0xe2, 0xea, 0x05, 0x6b, 0x28,
+0x47, 0x45, 0xb2, 0x58, 0xc4, 0x60, 0xfc, 0x5c, 0xc7, 0x4e, 0x25, 0x38, 0x0c, 0x1b, 0x3e, 0xfa,
+0xfd, 0xd8, 0x77, 0xbb, 0xa4, 0xa5, 0xbe, 0x9a, 0x7e, 0x9c, 0xfc, 0xaa, 0xf1, 0xc4, 0xd2, 0xe6,
+0x5c, 0x0c, 0xa3, 0x30, 0xff, 0x4e, 0x76, 0x63, 0x84, 0x6b, 0x04, 0x66, 0xc7, 0x53, 0x7d, 0x37,
+0x4e, 0x14, 0x30, 0xee, 0xf7, 0xc9, 0x93, 0xac, 0xc6, 0x99, 0x76, 0x93, 0x12, 0x9a, 0xa1, 0xac,
+0x49, 0xc9, 0x12, 0xed, 0xb2, 0x13, 0xf7, 0x38, 0x08, 0x58, 0x5c, 0x6c, 0x90, 0x72, 0x4a, 0x69,
+0x0b, 0x52, 0x4d, 0x30, 0xf0, 0x08, 0xf5, 0xe0, 0xdd, 0xbd, 0x0c, 0xa4, 0x00, 0x96, 0x2e, 0x94,
+0x10, 0x9e, 0x79, 0xb2, 0xc7, 0xcf, 0x96, 0xf3, 0x36, 0x1a, 0x27, 0x3f, 0x5c, 0x5d, 0xb8, 0x6f,
+0x78, 0x72, 0xd8, 0x64, 0x45, 0x49, 0xa5, 0x24, 0x86, 0xfc, 0xb5, 0xd6, 0xab, 0xb7, 0xec, 0xa2,
+0x7c, 0x99, 0x00, 0x9b, 0xa2, 0xa6, 0xb3, 0xbb, 0xf9, 0xd8, 0x14, 0xfc, 0x97, 0x21, 0x81, 0x44,
+0x82, 0x5f, 0x66, 0x6d, 0x42, 0x6b, 0x76, 0x59, 0xd7, 0x3b, 0xb2, 0x17, 0xc8, 0xf2, 0x07, 0xd2,
+0xd9, 0xb8, 0xfa, 0xa8, 0xfe, 0xa2, 0x60, 0xa6, 0x99, 0xb2, 0x59, 0xc7, 0x51, 0xe3, 0x3a, 0x04,
+0x45, 0x26, 0xe3, 0x44, 0x7a, 0x5a, 0x48, 0x63, 0x5e, 0x5d, 0x6b, 0x4a, 0x61, 0x2e, 0x46, 0x0e,
+0xf6, 0xee, 0x11, 0xd4, 0x39, 0xc0, 0x2f, 0xb4, 0x93, 0xb0, 0x09, 0xb5, 0x4d, 0xc1, 0xb7, 0xd4,
+0x18, 0xee, 0xac, 0x0a, 0x09, 0x27, 0x1b, 0x3f, 0x93, 0x4e, 0xcb, 0x52, 0x6f, 0x4b, 0xf9, 0x39,
+0x35, 0x22, 0x1a, 0x08, 0x50, 0xef, 0xa1, 0xda, 0xc9, 0xcb, 0xb1, 0xc3, 0x4f, 0xc2, 0xb7, 0xc7,
+0x07, 0xd3, 0x67, 0xe3, 0x24, 0xf7, 0x66, 0x0c, 0x87, 0x20, 0xd1, 0x30, 0xf5, 0x3a, 0x0d, 0x3d,
+0x35, 0x37, 0x5f, 0x2a, 0xee, 0x18, 0xd2, 0x05, 0xda, 0xf3, 0x20, 0xe5, 0x0d, 0xdb, 0x71, 0xd6,
+0x0b, 0xd7, 0x41, 0xdc, 0xd0, 0xe4, 0x70, 0xef, 0x4a, 0xfb, 0x56, 0x07, 0xc0, 0x12, 0x97, 0x1c,
+0x7d, 0x23, 0x09, 0x26, 0xab, 0x23, 0xc7, 0x1c, 0x7a, 0x12, 0xec, 0x06, 0x10, 0xfc, 0xa4, 0xf3,
+0x7e, 0xee, 0xde, 0xec, 0xfe, 0xed, 0x8c, 0xf0, 0x64, 0xf3, 0xd6, 0xf5, 0x0e, 0xf8, 0xfc, 0xfa,
+0x54, 0xff, 0xea, 0x04, 0xfa, 0x0a, 0xf4, 0x0f, 0x4c, 0x12, 0xc8, 0x11, 0xf6, 0x0e, 0x02, 0x0b,
+0x7a, 0x07, 0x4a, 0x05, 0x9a, 0x04, 0xbc, 0x04, 0x50, 0x04, 0xf6, 0x01, 0x2e, 0xfd, 0x8a, 0xf6,
+0xc6, 0xef, 0xf6, 0xea, 0xe8, 0xe9, 0x22, 0xed, 0xa8, 0xf3, 0xb0, 0xfb, 0x60, 0x03, 0xc2, 0x09,
+0xcc, 0x0e, 0x10, 0x13, 0xe8, 0x16, 0x46, 0x1a, 0x3c, 0x1c, 0x90, 0x1b, 0xf2, 0x16, 0xaa, 0x0d,
+0x96, 0x00, 0x74, 0xf1, 0x51, 0xe3, 0xdd, 0xd8, 0x69, 0xd4, 0x9d, 0xd6, 0x8b, 0xde, 0x62, 0xea,
+0x18, 0xf8, 0x14, 0x06, 0x8a, 0x13, 0xd9, 0x1f, 0x17, 0x2a, 0xcb, 0x30, 0x93, 0x32, 0x67, 0x2e,
+0xcd, 0x23, 0x62, 0x13, 0xc4, 0xfe, 0xf0, 0xe8, 0x19, 0xd5, 0xa5, 0xc6, 0xc9, 0xbf, 0xb5, 0xc1,
+0xb1, 0xcb, 0x37, 0xdc, 0xd6, 0xf0, 0x6e, 0x07, 0xa1, 0x1d, 0xff, 0x30, 0x87, 0x3f, 0xe5, 0x46,
+0x57, 0x46, 0x45, 0x3d, 0x85, 0x2c, 0xba, 0x15, 0x24, 0xfb, 0xb1, 0xdf, 0x25, 0xc7, 0x29, 0xb5,
+0x7b, 0xac, 0xcb, 0xae, 0x2d, 0xbc, 0xe9, 0xd2, 0xde, 0xef, 0x00, 0x0f, 0x1f, 0x2c, 0xbb, 0x43,
+0xe7, 0x52, 0x1c, 0x58, 0x21, 0x53, 0xf5, 0x44, 0x0b, 0x2f, 0x7e, 0x13, 0x72, 0xf4, 0x33, 0xd5,
+0x69, 0xb9, 0x56, 0xa5, 0x74, 0x9c, 0x16, 0xa1, 0x9f, 0xb3, 0x73, 0xd1, 0x0e, 0xf6, 0x6e, 0x1b,
+0x23, 0x3c, 0x49, 0x54, 0x86, 0x61, 0x3c, 0x63, 0xea, 0x59, 0x79, 0x47, 0x9f, 0x2d, 0x82, 0x0e,
+0x26, 0xec, 0xcf, 0xc9, 0xf9, 0xab, 0x58, 0x97, 0x62, 0x90, 0x84, 0x99, 0x73, 0xb2, 0xff, 0xd6,
+0xd0, 0x00, 0xb7, 0x28, 0x31, 0x49, 0x14, 0x5f, 0x1a, 0x69, 0x42, 0x67, 0xf0, 0x5a, 0xcb, 0x45,
+0x7f, 0x29, 0xba, 0x07, 0x01, 0xe3, 0x1d, 0xbf, 0x3a, 0xa1, 0xc2, 0x8e, 0xe4, 0x8b, 0x84, 0x9a,
+0x97, 0xb8, 0xc5, 0xe0, 0x88, 0x0b, 0x57, 0x32, 0x5d, 0x50, 0x62, 0x63, 0x74, 0x6a, 0x26, 0x66,
+0x9a, 0x57, 0x43, 0x40, 0xe7, 0x21, 0x32, 0xfe, 0x85, 0xd8, 0x4d, 0xb5, 0x38, 0x9a, 0x1e, 0x8c,
+0x96, 0x8e, 0xca, 0xa1, 0x95, 0xc2, 0xe8, 0xea, 0xd4, 0x13, 0x87, 0x37, 0x37, 0x52, 0x20, 0x62,
+0xa6, 0x66, 0x38, 0x60, 0xcd, 0x4f, 0xe1, 0x36, 0x1a, 0x17, 0x44, 0xf3, 0x3d, 0xcf, 0xf7, 0xaf,
+0x76, 0x9a, 0x88, 0x92, 0xbe, 0x99, 0x35, 0xaf, 0x5f, 0xcf, 0xa8, 0xf4, 0x4a, 0x19, 0x59, 0x38,
+0xd9, 0x4e, 0x3c, 0x5b, 0x2a, 0x5d, 0xab, 0x54, 0xf9, 0x42, 0x93, 0x29, 0xe2, 0x0a, 0x4c, 0xea,
+0xa7, 0xcb, 0x3b, 0xb3, 0x26, 0xa4, 0xca, 0xa0, 0x62, 0xa9, 0x2d, 0xbd, 0x13, 0xd9, 0x20, 0xf9,
+0x9e, 0x18, 0x89, 0x33, 0xdd, 0x46, 0xa1, 0x50, 0x13, 0x50, 0xbf, 0x45, 0x23, 0x33, 0xae, 0x1a,
+0x94, 0xff, 0xfc, 0xe4, 0x1b, 0xce, 0x31, 0xbd, 0x05, 0xb4, 0x27, 0xb3, 0x43, 0xbb, 0x7d, 0xcb,
+0x5b, 0xe2, 0xa8, 0xfc, 0xc0, 0x16, 0xa5, 0x2c, 0x69, 0x3b, 0x6f, 0x41, 0x51, 0x3e, 0x3d, 0x33,
+0x35, 0x22, 0x44, 0x0e, 0x10, 0xfa, 0x0c, 0xe8, 0x63, 0xd9, 0xf3, 0xce, 0x07, 0xc9, 0x37, 0xc8,
+0x2d, 0xcd, 0x31, 0xd8, 0xa2, 0xe8, 0x4c, 0xfc, 0xda, 0x0f, 0xcf, 0x1f, 0xd1, 0x29, 0xb1, 0x2c,
+0xd1, 0x28, 0xb1, 0x1f, 0xac, 0x13, 0x18, 0x07, 0xe2, 0xfb, 0x8e, 0xf2, 0x32, 0xeb, 0x48, 0xe5,
+0xc9, 0xe0, 0x45, 0xde, 0xe5, 0xde, 0xd2, 0xe3, 0x26, 0xed, 0x4c, 0xf9, 0x7e, 0x05, 0x2a, 0x0f,
+0x9a, 0x14, 0x94, 0x15, 0xfc, 0x12, 0x5c, 0x0e, 0x6e, 0x09, 0x94, 0x05, 0x1e, 0x03, 0x68, 0x01,
+0x66, 0xff, 0x26, 0xfc, 0x7e, 0xf7, 0x5e, 0xf2, 0x4e, 0xee, 0xe8, 0xec, 0x9a, 0xee, 0x94, 0xf2,
+0x0a, 0xf7, 0xcc, 0xfa, 0x18, 0xfd, 0x6a, 0xfe, 0x8c, 0xff, 0x5c, 0x01, 0xa4, 0x04, 0x48, 0x09,
+0x7c, 0x0e, 0xc2, 0x12, 0xb4, 0x14, 0x2e, 0x13, 0xdc, 0x0d, 0x9e, 0x05, 0xf6, 0xfb, 0xba, 0xf2,
+0x2c, 0xeb, 0xc6, 0xe5, 0xb5, 0xe2, 0x11, 0xe2, 0xf2, 0xe3, 0x76, 0xe8, 0x9c, 0xef, 0x1a, 0xf9,
+0x6a, 0x04, 0x80, 0x10, 0xe2, 0x1b, 0xf1, 0x24, 0xe9, 0x29, 0x45, 0x29, 0x3d, 0x22, 0x78, 0x15,
+0x84, 0x04, 0x20, 0xf2, 0x1b, 0xe1, 0xa7, 0xd3, 0xd7, 0xcb, 0x1b, 0xca, 0x6b, 0xce, 0xd9, 0xd7,
+0x70, 0xe5, 0xfc, 0xf5, 0x28, 0x08, 0x74, 0x1a, 0x11, 0x2b, 0x1f, 0x38, 0x11, 0x3f, 0xdd, 0x3d,
+0x2f, 0x33, 0xd5, 0x1f, 0x54, 0x06, 0xdc, 0xea, 0xd7, 0xd1, 0x69, 0xbf, 0xe9, 0xb5, 0xc9, 0xb5,
+0xf5, 0xbd, 0xb9, 0xcc, 0x49, 0xe0, 0xdc, 0xf6, 0xc8, 0x0e, 0x2d, 0x26, 0x15, 0x3b, 0xbd, 0x4a,
+0x33, 0x52, 0x49, 0x4e, 0x55, 0x3e, 0x6d, 0x23, 0xe2, 0x01, 0x4d, 0xdf, 0xb9, 0xc1, 0x8d, 0xad,
+0xee, 0xa4, 0x62, 0xa7, 0x0f, 0xb3, 0x15, 0xc6, 0x23, 0xde, 0xb4, 0xf9, 0x94, 0x16, 0xb5, 0x32,
+0x0f, 0x4b, 0xf8, 0x5b, 0x74, 0x61, 0xf0, 0x58, 0x59, 0x42, 0x8f, 0x20, 0x34, 0xf9, 0xd5, 0xd2,
+0xbd, 0xb3, 0x08, 0xa0, 0x06, 0x99, 0xce, 0x9d, 0x9f, 0xac, 0x53, 0xc3, 0x03, 0xe0, 0x6e, 0x00,
+0xf9, 0x21, 0x6f, 0x41, 0xe0, 0x5a, 0xec, 0x69, 0xee, 0x6a, 0x90, 0x5c, 0x51, 0x40, 0x56, 0x1a,
+0x48, 0xf0, 0x0b, 0xc9, 0x26, 0xaa, 0x88, 0x97, 0x00, 0x92, 0xc0, 0x98, 0x52, 0xaa, 0xd9, 0xc4,
+0x10, 0xe6, 0xa4, 0x0a, 0x0d, 0x2f, 0xeb, 0x4e, 0x28, 0x66, 0x9c, 0x70, 0x18, 0x6c, 0xca, 0x58,
+0x65, 0x39, 0x42, 0x12, 0xc6, 0xe8, 0xd5, 0xc2, 0x88, 0xa5, 0x7c, 0x94, 0x98, 0x90, 0x9c, 0x99,
+0x47, 0xae, 0x85, 0xcc, 0x00, 0xf1, 0x6c, 0x17, 0xfb, 0x3a, 0x74, 0x57, 0x38, 0x69, 0xea, 0x6d,
+0xda, 0x64, 0x5b, 0x4f, 0x23, 0x30, 0xc2, 0x0a, 0xde, 0xe3, 0x5b, 0xc0, 0x38, 0xa5, 0x0a, 0x96,
+0x6c, 0x94, 0x2a, 0xa0, 0x0f, 0xb8, 0xdd, 0xd8, 0x1c, 0xfe, 0xa3, 0x22, 0xcd, 0x41, 0x52, 0x58,
+0xfe, 0x63, 0x12, 0x64, 0xfc, 0x58, 0x17, 0x44, 0x27, 0x27, 0x00, 0x05, 0x63, 0xe1, 0xd5, 0xc0,
+0x86, 0xa8, 0x2e, 0x9c, 0x9e, 0x9d, 0x6d, 0xac, 0x5d, 0xc6, 0xfc, 0xe6, 0x60, 0x09, 0x7f, 0x28,
+0xdd, 0x40, 0xdd, 0x50, 0xb4, 0x57, 0x72, 0x55, 0x9b, 0x4a, 0x0b, 0x38, 0xa9, 0x1e, 0xa2, 0x00,
+0xff, 0xe0, 0x6d, 0xc4, 0x03, 0xb0, 0x92, 0xa7, 0x39, 0xac, 0x05, 0xbd, 0x5d, 0xd6, 0x80, 0xf3,
+0xc4, 0x0f, 0x8f, 0x27, 0xd1, 0x38, 0x29, 0x43, 0xb9, 0x46, 0xbf, 0x43, 0xb7, 0x3a, 0x4f, 0x2b,
+0x5e, 0x16, 0x66, 0xfd, 0x83, 0xe3, 0xcd, 0xcc, 0x01, 0xbe, 0xbd, 0xb9, 0x99, 0xc0, 0x6d, 0xd0,
+0x54, 0xe5, 0x6e, 0xfb, 0x50, 0x0f, 0x11, 0x1f, 0xe1, 0x29, 0x1d, 0x30, 0xff, 0x31, 0xd5, 0x2f,
+0x91, 0x29, 0xd1, 0x1e, 0xb6, 0x0f, 0xbe, 0xfd, 0x18, 0xeb, 0x73, 0xdb, 0xef, 0xd1, 0x39, 0xd0,
+0x1b, 0xd6, 0x8b, 0xe1, 0x86, 0xef, 0x54, 0xfd, 0x40, 0x09, 0x04, 0x12, 0xde, 0x17, 0x3c, 0x1b,
+0x85, 0x1c, 0x0c, 0x1c, 0x88, 0x19, 0x80, 0x14, 0xf6, 0x0c, 0x78, 0x03, 0x40, 0xf9, 0x46, 0xf0,
+0x52, 0xea, 0x44, 0xe8, 0x02, 0xea, 0x78, 0xee, 0x2c, 0xf4, 0xb2, 0xf9, 0x20, 0xfe, 0x18, 0x01,
+0x12, 0x03, 0x94, 0x04, 0x40, 0x06, 0x8e, 0x08, 0x6e, 0x0b, 0x06, 0x0e, 0x92, 0x0f, 0x22, 0x0f,
+0x5c, 0x0c, 0xfa, 0x07, 0xf0, 0x02, 0x46, 0xfe, 0xac, 0xfa, 0x22, 0xf8, 0x30, 0xf6, 0x42, 0xf4,
+0xd8, 0xf1, 0x3c, 0xef, 0x76, 0xed, 0x78, 0xed, 0x58, 0xf0, 0xfc, 0xf6, 0x12, 0x01, 0x08, 0x0d,
+0x4a, 0x18, 0x33, 0x20, 0x11, 0x23, 0xb7, 0x20, 0x22, 0x1a, 0xf0, 0x10, 0xe2, 0x06, 0xdc, 0xfc,
+0x30, 0xf3, 0xe0, 0xe9, 0x07, 0xe1, 0xd5, 0xd9, 0xcf, 0xd5, 0x81, 0xd6, 0x5b, 0xdd, 0xda, 0xea,
+0xa6, 0xfd, 0xbe, 0x12, 0xf5, 0x25, 0xa9, 0x33, 0x85, 0x39, 0xfb, 0x36, 0x95, 0x2d, 0xad, 0x1f,
+0xba, 0x0f, 0xe8, 0xfe, 0x12, 0xee, 0xeb, 0xdd, 0x99, 0xcf, 0x03, 0xc5, 0x85, 0xc0, 0x05, 0xc4,
+0xbd, 0xd0, 0x1a, 0xe6, 0x22, 0x01, 0x7b, 0x1d, 0xf3, 0x35, 0x81, 0x46, 0xeb, 0x4c, 0x45, 0x49,
+0xfb, 0x3c, 0xdd, 0x2a, 0xfc, 0x14, 0x3c, 0xfd, 0xf8, 0xe4, 0x31, 0xce, 0x57, 0xbb, 0x6d, 0xaf,
+0x11, 0xad, 0xe5, 0xb5, 0x11, 0xca, 0x2a, 0xe7, 0xe0, 0x08, 0xbf, 0x29, 0x1f, 0x45, 0xe4, 0x56,
+0x52, 0x5d, 0xd6, 0x57, 0x45, 0x48, 0x37, 0x31, 0x46, 0x15, 0x90, 0xf6, 0x0b, 0xd8, 0xdb, 0xbc,
+0xb8, 0xa8, 0xe6, 0x9e, 0x34, 0xa1, 0x4b, 0xb0, 0x8d, 0xca, 0x5e, 0xec, 0xfa, 0x10, 0xcd, 0x33,
+0x3b, 0x50, 0xdc, 0x62, 0x02, 0x69, 0x08, 0x62, 0x2b, 0x4f, 0x27, 0x33, 0xf8, 0x10, 0x58, 0xec,
+0x77, 0xc9, 0xe3, 0xac, 0xa0, 0x9a, 0x1a, 0x95, 0xd2, 0x9c, 0xe5, 0xb0, 0xe5, 0xce, 0xec, 0xf2,
+0xca, 0x18, 0x33, 0x3c, 0x10, 0x59, 0x8e, 0x6b, 0x74, 0x70, 0x86, 0x66, 0x53, 0x4f, 0xf7, 0x2d,
+0xae, 0x06, 0xa3, 0xde, 0x51, 0xbb, 0x82, 0xa1, 0x3a, 0x94, 0x00, 0x94, 0x06, 0xa0, 0xc9, 0xb6,
+0xd7, 0xd5, 0xe4, 0xf9, 0x71, 0x1f, 0x91, 0x42, 0xf0, 0x5e, 0x30, 0x70, 0x9e, 0x72, 0xf6, 0x64,
+0x25, 0x49, 0x81, 0x23, 0xae, 0xf9, 0xed, 0xd1, 0xb7, 0xb1, 0xe8, 0x9c, 0xea, 0x94, 0x04, 0x99,
+0xb2, 0xa7, 0x71, 0xbf, 0x2b, 0xde, 0x20, 0x01, 0x47, 0x25, 0xbf, 0x46, 0xfa, 0x60, 0x32, 0x6f,
+0xd8, 0x6d, 0x36, 0x5c, 0x4f, 0x3d, 0x76, 0x16, 0x36, 0xee, 0xbd, 0xca, 0x5d, 0xb0, 0x3c, 0xa1,
+0x60, 0x9d, 0xb2, 0xa3, 0xe1, 0xb2, 0xc1, 0xc9, 0x9c, 0xe6, 0x6a, 0x07, 0x0b, 0x29, 0x73, 0x47,
+0xdc, 0x5d, 0xba, 0x67, 0x34, 0x62, 0xf3, 0x4d, 0x05, 0x2f, 0x0e, 0x0b, 0x2a, 0xe8, 0x05, 0xcb,
+0x8f, 0xb6, 0xbb, 0xab, 0x60, 0xaa, 0x83, 0xb1, 0x6d, 0xc0, 0xe1, 0xd5, 0x3a, 0xf0, 0x66, 0x0d,
+0x71, 0x2a, 0x69, 0x43, 0x01, 0x54, 0xf4, 0x58, 0xad, 0x50, 0x07, 0x3d, 0xa7, 0x21, 0x9a, 0x03,
+0x74, 0xe7, 0xe3, 0xd0, 0xa7, 0xc1, 0x81, 0xba, 0x21, 0xbb, 0xc5, 0xc2, 0x7b, 0xd0, 0x13, 0xe3,
+0x2c, 0xf9, 0x96, 0x10, 0xe1, 0x26, 0xc5, 0x38, 0x9f, 0x43, 0x1f, 0x45, 0x2b, 0x3d, 0x23, 0x2d,
+0xec, 0x17, 0x06, 0x01, 0x18, 0xec, 0xad, 0xdb, 0x3d, 0xd1, 0x45, 0xcd, 0x3d, 0xcf, 0x63, 0xd6,
+0x75, 0xe1, 0x56, 0xef, 0x72, 0xfe, 0xa2, 0x0d, 0x2a, 0x1b, 0xcb, 0x25, 0x3b, 0x2c, 0x77, 0x2d,
+0xf9, 0x28, 0x5d, 0x1f, 0x08, 0x12, 0x50, 0x03, 0xc8, 0xf5, 0x50, 0xeb, 0x28, 0xe5, 0x63, 0xe3,
+0x78, 0xe5, 0x22, 0xea, 0x74, 0xf0, 0x20, 0xf7, 0x74, 0xfd, 0x4e, 0x03, 0xf2, 0x08, 0x80, 0x0e,
+0x9e, 0x13, 0x24, 0x17, 0xfa, 0x17, 0x80, 0x15, 0xf4, 0x0f, 0xe6, 0x08, 0x04, 0x02, 0xf6, 0xfc,
+0x7c, 0xfa, 0x4c, 0xfa, 0x2e, 0xfb, 0xd4, 0xfb, 0x2c, 0xfb, 0xd0, 0xf8, 0x90, 0xf5, 0xec, 0xf2,
+0xac, 0xf2, 0xe8, 0xf5, 0x30, 0xfc, 0xae, 0x03, 0x66, 0x0a, 0xf4, 0x0e, 0x12, 0x11, 0x9c, 0x11,
+0x8c, 0x11, 0x98, 0x11, 0xc0, 0x11, 0x2c, 0x11, 0x6e, 0x0e, 0x88, 0x08, 0x4c, 0xff, 0xea, 0xf3,
+0x8a, 0xe8, 0xdb, 0xdf, 0x3d, 0xdc, 0xcb, 0xde, 0xea, 0xe6, 0x82, 0xf2, 0x32, 0xff, 0x10, 0x0b,
+0x60, 0x15, 0xc1, 0x1d, 0x27, 0x24, 0x41, 0x28, 0x37, 0x29, 0xcf, 0x25, 0x25, 0x1d, 0x5a, 0x0f,
+0x96, 0xfd, 0x4a, 0xea, 0x99, 0xd8, 0xbf, 0xcb, 0x45, 0xc6, 0x53, 0xc9, 0x09, 0xd4, 0x78, 0xe4,
+0x0e, 0xf8, 0x16, 0x0c, 0xb5, 0x1e, 0x69, 0x2e, 0xd9, 0x39, 0x77, 0x3f, 0x4b, 0x3e, 0x95, 0x35,
+0xe3, 0x25, 0x88, 0x10, 0xca, 0xf7, 0xad, 0xde, 0xdd, 0xc8, 0x83, 0xb9, 0x0f, 0xb3, 0xe7, 0xb6,
+0x85, 0xc4, 0x5f, 0xda, 0x4c, 0xf5, 0xbc, 0x11, 0xf9, 0x2b, 0x3b, 0x41, 0xd7, 0x4e, 0x39, 0x53,
+0x9f, 0x4d, 0xd1, 0x3e, 0xbf, 0x28, 0xce, 0x0d, 0x5c, 0xf0, 0x93, 0xd3, 0xe9, 0xba, 0xca, 0xa9,
+0x42, 0xa3, 0xcc, 0xa8, 0xc1, 0xba, 0x11, 0xd7, 0xa4, 0xf9, 0x17, 0x1d, 0x7b, 0x3c, 0xa7, 0x53,
+0x16, 0x60, 0xa2, 0x60, 0xdc, 0x55, 0xd9, 0x41, 0x39, 0x27, 0x64, 0x08, 0xc4, 0xe7, 0x6b, 0xc8,
+0xe3, 0xad, 0x26, 0x9c, 0xa0, 0x96, 0x84, 0x9f, 0xe5, 0xb6, 0xff, 0xd9, 0xf8, 0x02, 0xf9, 0x2a,
+0x1b, 0x4c, 0x36, 0x62, 0x5e, 0x6b, 0x8c, 0x67, 0x68, 0x58, 0xbd, 0x40, 0x2f, 0x23, 0xe8, 0x01,
+0x23, 0xdf, 0x27, 0xbe, 0x1a, 0xa3, 0x82, 0x92, 0x12, 0x90, 0xde, 0x9d, 0xf1, 0xba, 0xff, 0xe2,
+0xf4, 0x0e, 0x43, 0x37, 0x6a, 0x56, 0x02, 0x69, 0x2a, 0x6e, 0xc8, 0x66, 0xf8, 0x54, 0x59, 0x3b,
+0x43, 0x1c, 0xb0, 0xf9, 0x2f, 0xd6, 0x83, 0xb5, 0x2e, 0x9c, 0xc6, 0x8e, 0xc2, 0x90, 0x74, 0xa3,
+0x77, 0xc4, 0x54, 0xee, 0x7a, 0x19, 0xf3, 0x3e, 0x34, 0x5a, 0x06, 0x69, 0x22, 0x6b, 0x9e, 0x61,
+0x69, 0x4e, 0xbb, 0x33, 0xac, 0x13, 0xa0, 0xf0, 0xef, 0xcd, 0x9f, 0xaf, 0x40, 0x9a, 0xcc, 0x91,
+0xaa, 0x98, 0x93, 0xae, 0x79, 0xd0, 0x68, 0xf8, 0xd7, 0x1f, 0xe9, 0x40, 0x08, 0x58, 0x6e, 0x63,
+0x12, 0x63, 0xec, 0x57, 0x95, 0x43, 0x41, 0x28, 0x54, 0x08, 0xe8, 0xe6, 0x9f, 0xc7, 0xe7, 0xae,
+0xfa, 0x9f, 0x4c, 0x9d, 0x82, 0xa7, 0x93, 0xbd, 0x5f, 0xdc, 0x28, 0xff, 0xa7, 0x20, 0x7b, 0x3c,
+0x9f, 0x4f, 0x54, 0x58, 0x72, 0x56, 0x8f, 0x4a, 0x65, 0x36, 0x28, 0x1c, 0x02, 0xff, 0x1b, 0xe2,
+0x21, 0xc9, 0xf3, 0xb6, 0xbb, 0xad, 0x65, 0xae, 0xcd, 0xb8, 0xed, 0xcb, 0x8c, 0xe5, 0x5a, 0x02,
+0x41, 0x1e, 0x65, 0x35, 0x9f, 0x44, 0x63, 0x4a, 0x3b, 0x46, 0x65, 0x39, 0xdb, 0x25, 0xbe, 0x0e,
+0x0e, 0xf7, 0xbd, 0xe1, 0xdd, 0xd0, 0xbf, 0xc5, 0x0d, 0xc1, 0xb1, 0xc2, 0xbb, 0xca, 0x93, 0xd8,
+0x9a, 0xeb, 0x74, 0x01, 0x10, 0x17, 0xcb, 0x28, 0x01, 0x34, 0x1b, 0x37, 0x3f, 0x32, 0xd1, 0x26,
+0x46, 0x17, 0x9e, 0x06, 0x2a, 0xf7, 0x96, 0xea, 0x4b, 0xe1, 0x55, 0xdb, 0x35, 0xd8, 0x17, 0xd8,
+0x5f, 0xdb, 0xbb, 0xe2, 0x44, 0xee, 0xb8, 0xfc, 0x86, 0x0b, 0xaa, 0x17, 0xeb, 0x1e, 0x47, 0x20,
+0x65, 0x1c, 0xd6, 0x14, 0xd0, 0x0b, 0x7e, 0x03, 0x1e, 0xfd, 0xb4, 0xf8, 0x6e, 0xf5, 0x60, 0xf2,
+0x2e, 0xef, 0x14, 0xec, 0x36, 0xea, 0xfc, 0xea, 0x18, 0xef, 0xf0, 0xf5, 0xa4, 0xfd, 0x24, 0x04,
+0x0c, 0x08, 0x38, 0x09, 0x58, 0x08, 0xca, 0x06, 0xfa, 0x05, 0x92, 0x06, 0x6a, 0x08, 0x54, 0x0a,
+0x16, 0x0b, 0x7a, 0x09, 0x28, 0x05, 0x98, 0xfe, 0x10, 0xf7, 0x4e, 0xf0, 0xb0, 0xeb, 0xda, 0xe9,
+0x3e, 0xea, 0x18, 0xec, 0xc6, 0xee, 0x62, 0xf2, 0x40, 0xf7, 0xd2, 0xfd, 0xf6, 0x05, 0xfc, 0x0e,
+0x96, 0x17, 0x55, 0x1e, 0x95, 0x21, 0x61, 0x20, 0x08, 0x1a, 0xe6, 0x0e, 0x70, 0x00, 0xd4, 0xf0,
+0xd1, 0xe2, 0x4b, 0xd8, 0xb5, 0xd2, 0x4b, 0xd2, 0xdf, 0xd6, 0x9f, 0xdf, 0xf0, 0xeb, 0xb6, 0xfa,
+0x9a, 0x0a, 0x60, 0x1a, 0xff, 0x27, 0x19, 0x32, 0xe1, 0x36, 0xf7, 0x34, 0x35, 0x2b, 0x1e, 0x1a,
+0x72, 0x03, 0xde, 0xea, 0x65, 0xd4, 0xd3, 0xc3, 0xa5, 0xbb, 0x61, 0xbc, 0x0b, 0xc5, 0xe1, 0xd3,
+0xea, 0xe6, 0x22, 0xfc, 0xe4, 0x11, 0x25, 0x26, 0x8d, 0x37, 0xf7, 0x43, 0x63, 0x49, 0x65, 0x45,
+0x3d, 0x37, 0x45, 0x1f, 0xae, 0x00, 0x55, 0xe0, 0xdb, 0xc3, 0x35, 0xb0, 0xfe, 0xa7, 0x5f, 0xab,
+0x65, 0xb8, 0xa5, 0xcc, 0x36, 0xe5, 0xf2, 0xff, 0x8c, 0x1a, 0x1f, 0x33, 0x6f, 0x47, 0x02, 0x55,
+0x1a, 0x59, 0x5f, 0x51, 0x17, 0x3d, 0xff, 0x1d, 0x78, 0xf8, 0xad, 0xd2, 0x69, 0xb3, 0xa0, 0x9f,
+0x88, 0x99, 0x5e, 0xa0, 0x8f, 0xb1, 0x0d, 0xca, 0x3e, 0xe7, 0x5e, 0x06, 0xfd, 0x24, 0xb9, 0x40,
+0xc4, 0x56, 0xb4, 0x63, 0x5a, 0x64, 0xf0, 0x56, 0xfd, 0x3b, 0xe2, 0x16, 0x02, 0xed, 0x6d, 0xc5,
+0x84, 0xa6, 0xb0, 0x94, 0x12, 0x91, 0x8c, 0x9a, 0xc3, 0xae, 0xdf, 0xca, 0xe4, 0xeb, 0xda, 0x0e,
+0xbb, 0x30, 0x13, 0x4e, 0x38, 0x63, 0x80, 0x6c, 0x82, 0x67, 0x15, 0x54, 0x61, 0x34, 0xca, 0x0c,
+0xd5, 0xe2, 0xa7, 0xbc, 0xe2, 0x9f, 0x38, 0x90, 0xb4, 0x8e, 0x72, 0x9a, 0x55, 0xb1, 0x97, 0xd0,
+0xea, 0xf4, 0x3c, 0x1a, 0x83, 0x3c, 0xfe, 0x57, 0x14, 0x69, 0xde, 0x6c, 0x96, 0x62, 0x77, 0x4b,
+0x9b, 0x2a, 0xce, 0x03, 0xff, 0xdb, 0x7f, 0xb8, 0x7c, 0x9e, 0x38, 0x91, 0xe8, 0x91, 0xde, 0x9f,
+0x3d, 0xb9, 0xff, 0xda, 0xa0, 0x00, 0xbb, 0x25, 0x8d, 0x45, 0x56, 0x5c, 0x56, 0x67, 0x9a, 0x65,
+0x88, 0x57, 0x91, 0x3f, 0x4f, 0x20, 0xfc, 0xfc, 0x57, 0xd9, 0xbd, 0xb9, 0xac, 0xa2, 0xc2, 0x97,
+0x4c, 0x9a, 0x0a, 0xaa, 0xf9, 0xc4, 0x20, 0xe7, 0xa2, 0x0b, 0x1d, 0x2d, 0x45, 0x47, 0x92, 0x57,
+0x06, 0x5d, 0xba, 0x57, 0x75, 0x49, 0xed, 0x33, 0xb0, 0x18, 0xe6, 0xf9, 0x3d, 0xda, 0x31, 0xbe,
+0x50, 0xaa, 0x3c, 0xa2, 0x74, 0xa7, 0x4f, 0xb9, 0x7d, 0xd4, 0x62, 0xf4, 0xcc, 0x13, 0x29, 0x2e,
+0xe7, 0x40, 0xc5, 0x4a, 0x49, 0x4c, 0x8b, 0x46, 0x89, 0x3a, 0xed, 0x28, 0xae, 0x12, 0x00, 0xf9,
+0x97, 0xde, 0x31, 0xc7, 0x45, 0xb7, 0x1b, 0xb2, 0x03, 0xb9, 0x39, 0xca, 0x59, 0xe2, 0xa6, 0xfc,
+0xee, 0x14, 0xef, 0x27, 0x39, 0x34, 0x03, 0x3a, 0x07, 0x3a, 0x31, 0x35, 0x01, 0x2c, 0xcd, 0x1e,
+0xb6, 0x0d, 0xe6, 0xf9, 0x7e, 0xe5, 0xe1, 0xd3, 0xb7, 0xc8, 0x69, 0xc6, 0x6f, 0xcd, 0xdf, 0xdb,
+0x2e, 0xee, 0xb2, 0x00, 0x86, 0x10, 0x18, 0x1c, 0xf1, 0x22, 0xb1, 0x25, 0x17, 0x25, 0x05, 0x22,
+0x8b, 0x1c, 0x88, 0x14, 0x32, 0x0a, 0x1a, 0xfe, 0x9a, 0xf1, 0xcc, 0xe6, 0xfd, 0xdf, 0x9f, 0xde,
+0xdd, 0xe2, 0x0c, 0xeb, 0xe4, 0xf4, 0x5c, 0xfe, 0xe8, 0x05, 0xe6, 0x0a, 0x9a, 0x0d, 0x8e, 0x0e,
+0xa6, 0x0e, 0x68, 0x0e, 0x02, 0x0e, 0x3c, 0x0d, 0x84, 0x0b, 0x5e, 0x08, 0xea, 0x03, 0xac, 0xfe,
+0xa2, 0xf9, 0x06, 0xf6, 0x2e, 0xf4, 0x28, 0xf4, 0x28, 0xf5, 0x34, 0xf6, 0xda, 0xf6, 0x10, 0xf7,
+0x04, 0xf7, 0x8a, 0xf7, 0x86, 0xf9, 0xa2, 0xfd, 0x0c, 0x04, 0xbc, 0x0b, 0x44, 0x13, 0xca, 0x18,
+0x80, 0x1a, 0xee, 0x17, 0xde, 0x11, 0xb6, 0x09, 0x28, 0x01, 0x36, 0xf9, 0xfc, 0xf1, 0xac, 0xeb,
+0x4c, 0xe6, 0x07, 0xe2, 0xf1, 0xdf, 0x05, 0xe1, 0x76, 0xe6, 0xe0, 0xf0, 0xca, 0xff, 0x22, 0x11,
+0xb5, 0x21, 0xab, 0x2d, 0xa5, 0x32, 0xcb, 0x2f, 0x3f, 0x26, 0x70, 0x18, 0x06, 0x09, 0xba, 0xf9,
+0xb0, 0xeb, 0x0b, 0xdf, 0x29, 0xd4, 0x6b, 0xcc, 0x51, 0xc9, 0xb3, 0xcc, 0x8f, 0xd7, 0x0a, 0xea,
+0xd4, 0x01, 0x92, 0x1b, 0x2b, 0x32, 0xf3, 0x41, 0xc9, 0x47, 0x57, 0x43, 0x1f, 0x36, 0x59, 0x23,
+0xba, 0x0d, 0xb0, 0xf7, 0xaf, 0xe2, 0x15, 0xd0, 0x5d, 0xc1, 0xe9, 0xb7, 0x19, 0xb6, 0xa3, 0xbd,
+0x4d, 0xcf, 0x6a, 0xe9, 0xdc, 0x08, 0x21, 0x28, 0xad, 0x42, 0xc9, 0x53, 0x32, 0x59, 0xb7, 0x52,
+0x13, 0x42, 0x43, 0x2a, 0x9c, 0x0e, 0xe0, 0xf1, 0x45, 0xd6, 0xbf, 0xbe, 0x7f, 0xad, 0x58, 0xa5,
+0xf8, 0xa7, 0x2d, 0xb6, 0x2b, 0xcf, 0x04, 0xf0, 0xde, 0x13, 0xad, 0x35, 0xfd, 0x50, 0xe2, 0x61,
+0x32, 0x66, 0x3c, 0x5d, 0xe9, 0x48, 0x71, 0x2c, 0x40, 0x0b, 0xb2, 0xe8, 0x93, 0xc8, 0x91, 0xae,
+0x14, 0x9e, 0x60, 0x99, 0x78, 0xa1, 0xf3, 0xb5, 0x5f, 0xd4, 0x9e, 0xf8, 0x0f, 0x1e, 0x2f, 0x40,
+0xf6, 0x5a, 0xfc, 0x6a, 0x84, 0x6d, 0x14, 0x62, 0x45, 0x4a, 0x1f, 0x29, 0xe4, 0x02, 0x0d, 0xdc,
+0xab, 0xb9, 0x7a, 0xa0, 0xbc, 0x93, 0x84, 0x94, 0x6c, 0xa2, 0x55, 0xbb, 0x33, 0xdc, 0x28, 0x01,
+0xe7, 0x25, 0xf7, 0x46, 0xaa, 0x60, 0x5c, 0x6f, 0xf4, 0x6f, 0xa8, 0x61, 0xed, 0x45, 0xe5, 0x20,
+0x46, 0xf7, 0x11, 0xcf, 0x43, 0xae, 0x6c, 0x99, 0x30, 0x92, 0x60, 0x98, 0x02, 0xaa, 0x9b, 0xc4,
+0x34, 0xe5, 0x5c, 0x08, 0x25, 0x2b, 0x5f, 0x4a, 0x48, 0x62, 0xca, 0x6e, 0xdc, 0x6c, 0x54, 0x5b,
+0x8b, 0x3c, 0x26, 0x15, 0x46, 0xeb, 0x99, 0xc5, 0x7e, 0xa9, 0x2c, 0x9a, 0xf4, 0x97, 0x64, 0xa1,
+0x15, 0xb4, 0x03, 0xce, 0xbc, 0xec, 0xc8, 0x0d, 0x43, 0x2e, 0xf5, 0x4a, 0x08, 0x60, 0x44, 0x69,
+0xce, 0x63, 0x7d, 0x4f, 0x7f, 0x2f, 0x18, 0x09, 0xcb, 0xe2, 0x71, 0xc2, 0x8f, 0xac, 0x8e, 0xa2,
+0xca, 0xa3, 0x6b, 0xae, 0xc5, 0xc0, 0xb5, 0xd8, 0x88, 0xf4, 0xfa, 0x11, 0x91, 0x2e, 0x3d, 0x47,
+0x04, 0x58, 0x4e, 0x5d, 0x1a, 0x55, 0x85, 0x40, 0x89, 0x22, 0xcc, 0x00, 0xb5, 0xe0, 0x55, 0xc7,
+0x1b, 0xb7, 0xdf, 0xb0, 0x9d, 0xb3, 0x13, 0xbe, 0xb9, 0xce, 0xd6, 0xe3, 0xd6, 0xfb, 0x9c, 0x14,
+0xc9, 0x2b, 0x69, 0x3e, 0xbd, 0x49, 0x2d, 0x4b, 0x05, 0x42, 0x9f, 0x2f, 0x1e, 0x17, 0x8e, 0xfc,
+0x74, 0xe4, 0xff, 0xd1, 0x05, 0xc7, 0xb3, 0xc3, 0x5d, 0xc7, 0xa3, 0xd0, 0x7d, 0xde, 0x18, 0xef,
+0xf8, 0x00, 0x98, 0x12, 0x41, 0x22, 0x3f, 0x2e, 0xe5, 0x34, 0x01, 0x35, 0x45, 0x2e, 0xb1, 0x21,
+0xec, 0x10, 0xc4, 0xfe, 0x36, 0xee, 0xa5, 0xe1, 0x4b, 0xda, 0x91, 0xd8, 0xfb, 0xdb, 0x43, 0xe3,
+0xe8, 0xec, 0x84, 0xf7, 0xb2, 0x01, 0xd8, 0x0a, 0x9a, 0x12, 0xc2, 0x18, 0xeb, 0x1c, 0x8f, 0x1e,
+0xd7, 0x1c, 0x9a, 0x17, 0x72, 0x0f, 0x6c, 0x05, 0xcc, 0xfb, 0x56, 0xf4, 0x1c, 0xf0, 0x4c, 0xef,
+0x38, 0xf1, 0x7a, 0xf4, 0x96, 0xf7, 0xd2, 0xf9, 0xb4, 0xfa, 0x50, 0xfb, 0xb8, 0xfc, 0xfa, 0xff,
+0x04, 0x05, 0xda, 0x0a, 0xd2, 0x0f, 0x5a, 0x12, 0xf8, 0x11, 0x26, 0x0f, 0xa6, 0x0b, 0x98, 0x08,
+0xc2, 0x06, 0xe0, 0x05, 0xd8, 0x04, 0x52, 0x02, 0x74, 0xfd, 0x7c, 0xf6, 0xc6, 0xee, 0x4e, 0xe8,
+0x60, 0xe5, 0x96, 0xe7, 0xb0, 0xee, 0x3e, 0xf9, 0xda, 0x04, 0x1a, 0x0f, 0xb2, 0x16, 0xa8, 0x1b,
+0x39, 0x1e, 0x59, 0x1f, 0xc9, 0x1e, 0xc6, 0x1b, 0x64, 0x15, 0xf6, 0x0a, 0xee, 0xfc, 0x36, 0xed,
+0x55, 0xde, 0x27, 0xd3, 0x89, 0xce, 0x93, 0xd1, 0xe9, 0xdb, 0x8c, 0xeb, 0xd8, 0xfd, 0x80, 0x0f,
+0xe9, 0x1e, 0xcf, 0x2a, 0xf3, 0x32, 0x69, 0x36, 0xad, 0x34, 0xfd, 0x2c, 0x39, 0x1f, 0x54, 0x0c,
+0x1c, 0xf6, 0xdd, 0xdf, 0x53, 0xcc, 0x2d, 0xbf, 0x35, 0xba, 0x11, 0xbf, 0x03, 0xcd, 0x37, 0xe2,
+0x6a, 0xfb, 0x3c, 0x15, 0x4d, 0x2c, 0x53, 0x3e, 0x73, 0x49, 0x09, 0x4c, 0xff, 0x45, 0x85, 0x37,
+0x1d, 0x22, 0x2c, 0x08, 0x70, 0xec, 0x0b, 0xd2, 0x89, 0xbc, 0x6d, 0xae, 0x46, 0xaa, 0x17, 0xb1,
+0xb1, 0xc2, 0x55, 0xdd, 0x98, 0xfd, 0x69, 0x1e, 0x93, 0x3b, 0x25, 0x51, 0x3c, 0x5c, 0xd0, 0x5b,
+0x27, 0x50, 0x71, 0x3b, 0x35, 0x20, 0xc0, 0x01, 0xb9, 0xe2, 0x6b, 0xc6, 0x97, 0xaf, 0x4c, 0xa1,
+0x08, 0x9e, 0x46, 0xa7, 0x89, 0xbd, 0x45, 0xde, 0x1e, 0x05, 0xaf, 0x2b, 0x2f, 0x4c, 0xda, 0x61,
+0x62, 0x6a, 0x38, 0x65, 0x4b, 0x54, 0xe5, 0x3a, 0xea, 0x1b, 0x7a, 0xfa, 0x83, 0xd9, 0xb5, 0xbb,
+0x78, 0xa4, 0x0a, 0x97, 0x06, 0x96, 0x64, 0xa3, 0xfb, 0xbe, 0x92, 0xe5, 0x02, 0x11, 0x27, 0x3a,
+0x04, 0x5a, 0xdc, 0x6c, 0xba, 0x70, 0xce, 0x66, 0xf5, 0x51, 0xa9, 0x35, 0x00, 0x15, 0xb2, 0xf2,
+0x4d, 0xd1, 0x97, 0xb3, 0x48, 0x9d, 0xb8, 0x91, 0x46, 0x94, 0x48, 0xa6, 0xa7, 0xc6, 0xc4, 0xf0,
+0x47, 0x1d, 0x93, 0x44, 0x04, 0x61, 0x3c, 0x6f, 0xe0, 0x6e, 0x02, 0x62, 0x77, 0x4b, 0x81, 0x2e,
+0xb0, 0x0d, 0x20, 0xeb, 0xbf, 0xc9, 0x4d, 0xad, 0x6e, 0x99, 0x2a, 0x92, 0xaa, 0x99, 0x11, 0xb0,
+0x07, 0xd3, 0xda, 0xfc, 0x43, 0x26, 0x17, 0x49, 0xc4, 0x60, 0xde, 0x6a, 0xf6, 0x67, 0xa0, 0x59,
+0xab, 0x42, 0xbd, 0x25, 0x3c, 0x05, 0xb3, 0xe3, 0xd9, 0xc4, 0x29, 0xac, 0x82, 0x9d, 0x60, 0x9b,
+0xaa, 0xa6, 0x9b, 0xbe, 0x0f, 0xe0, 0xa2, 0x05, 0x85, 0x29, 0xc1, 0x46, 0x88, 0x59, 0x9a, 0x60,
+0xd6, 0x5b, 0x0d, 0x4d, 0x65, 0x36, 0x70, 0x1a, 0xea, 0xfb, 0x3d, 0xde, 0x9d, 0xc4, 0x3d, 0xb2,
+0x90, 0xa9, 0x53, 0xab, 0xc1, 0xb7, 0x47, 0xcd, 0x3e, 0xe9, 0xf0, 0x07, 0x3f, 0x25, 0x2f, 0x3d,
+0xb1, 0x4c, 0xdd, 0x51, 0x57, 0x4c, 0xe1, 0x3d, 0x4f, 0x28, 0xaa, 0x0e, 0x52, 0xf4, 0x8b, 0xdc,
+0x21, 0xca, 0xed, 0xbe, 0x75, 0xbb, 0x5b, 0xbf, 0x2d, 0xca, 0xbd, 0xda, 0xc4, 0xef, 0x02, 0x07,
+0x97, 0x1d, 0x4d, 0x30, 0x2d, 0x3c, 0x3d, 0x3f, 0x7b, 0x39, 0x39, 0x2c, 0x0c, 0x1a, 0xc0, 0x05,
+0xb2, 0xf2, 0x09, 0xe3, 0x3b, 0xd8, 0x75, 0xd2, 0x37, 0xd1, 0xc3, 0xd3, 0xe1, 0xd9, 0xee, 0xe3,
+0x5a, 0xf1, 0x6c, 0x01, 0xc6, 0x11, 0x9d, 0x1f, 0x37, 0x28, 0x11, 0x2a, 0x19, 0x25, 0xfc, 0x1a,
+0x6c, 0x0e, 0xd4, 0x01, 0x8e, 0xf7, 0x60, 0xf0, 0x08, 0xec, 0xb4, 0xe9, 0x78, 0xe8, 0xe2, 0xe7,
+0x76, 0xe8, 0x64, 0xeb, 0x3a, 0xf1, 0xd6, 0xf9, 0xb6, 0x03, 0x80, 0x0c, 0x24, 0x12, 0x8e, 0x13,
+0x0c, 0x11, 0x52, 0x0c, 0x52, 0x07, 0x7a, 0x03, 0x8c, 0x01, 0x26, 0x01, 0xf2, 0x00, 0xd8, 0xff,
+0x26, 0xfd, 0xc0, 0xf8, 0xb4, 0xf3, 0xa0, 0xef, 0xba, 0xed, 0x84, 0xee, 0x74, 0xf1, 0x7c, 0xf5,
+0x4c, 0xf9, 0x74, 0xfc, 0x4c, 0xff, 0x8e, 0x02, 0xca, 0x06, 0x14, 0x0c, 0xd2, 0x11, 0x5a, 0x16,
+0xa8, 0x18, 0x4c, 0x17, 0xe6, 0x11, 0x98, 0x08, 0xac, 0xfc, 0x18, 0xf0, 0x38, 0xe5, 0x8f, 0xdd,
+0x39, 0xda, 0x71, 0xdb, 0x43, 0xe0, 0x36, 0xe8, 0xe6, 0xf2, 0x14, 0xff, 0x2c, 0x0c, 0x10, 0x19,
+0xef, 0x23, 0x7d, 0x2b, 0x77, 0x2e, 0xc1, 0x2b, 0xb5, 0x22, 0xf0, 0x13, 0x60, 0x00, 0x46, 0xeb,
+0xaf, 0xd7, 0x25, 0xc9, 0x31, 0xc2, 0x69, 0xc3, 0x39, 0xcc, 0xe1, 0xda, 0x66, 0xed, 0x42, 0x01,
+0x06, 0x15, 0xc5, 0x26, 0x11, 0x35, 0x71, 0x3e, 0x69, 0x41, 0xbb, 0x3c, 0x35, 0x2f, 0xac, 0x19,
+0x10, 0xfe, 0x83, 0xe0, 0x2d, 0xc6, 0xe7, 0xb3, 0x85, 0xac, 0xcf, 0xb0, 0xf5, 0xbe, 0xe1, 0xd3,
+0x9e, 0xec, 0x4a, 0x06, 0x97, 0x1e, 0x39, 0x34, 0x0f, 0x45, 0x8b, 0x4f, 0xc7, 0x51, 0xbb, 0x49,
+0xc1, 0x36, 0x22, 0x1a, 0x1c, 0xf7, 0x25, 0xd3, 0xfb, 0xb4, 0x7a, 0xa1, 0x00, 0x9c, 0xfe, 0xa3,
+0xd5, 0xb6, 0xcd, 0xd0, 0x64, 0xee, 0x62, 0x0c, 0xa3, 0x28, 0x23, 0x41, 0xc7, 0x53, 0x1c, 0x5e,
+0x7a, 0x5d, 0x73, 0x50, 0x07, 0x37, 0xa8, 0x13, 0x5a, 0xeb, 0x79, 0xc4, 0xb2, 0xa5, 0x38, 0x94,
+0xde, 0x91, 0x58, 0x9d, 0xf9, 0xb3, 0xb9, 0xd1, 0xf6, 0xf2, 0x8c, 0x14, 0xa9, 0x33, 0xe3, 0x4d,
+0x74, 0x60, 0x30, 0x68, 0xec, 0x62, 0x17, 0x50, 0xfb, 0x30, 0x8e, 0x09, 0x51, 0xdf, 0xb5, 0xb8,
+0xf4, 0x9b, 0x4e, 0x8d, 0xd2, 0x8d, 0x44, 0x9c, 0xb7, 0xb5, 0xa3, 0xd6, 0xc6, 0xfa, 0x9d, 0x1e,
+0x05, 0x3f, 0xc4, 0x58, 0x74, 0x68, 0x98, 0x6b, 0xca, 0x60, 0xc1, 0x48, 0xb3, 0x26, 0xae, 0xfe,
+0x13, 0xd6, 0x6f, 0xb2, 0x02, 0x99, 0x1c, 0x8d, 0xd8, 0x8f, 0x1e, 0xa0, 0x81, 0xbb, 0x73, 0xde,
+0x3e, 0x04, 0xe9, 0x28, 0x37, 0x48, 0xbc, 0x5e, 0x86, 0x69, 0x14, 0x67, 0x78, 0x57, 0x1d, 0x3d,
+0x68, 0x1b, 0x04, 0xf6, 0x59, 0xd1, 0xc7, 0xb1, 0xda, 0x9b, 0x76, 0x92, 0xf8, 0x96, 0xc0, 0xa8,
+0x9f, 0xc5, 0x44, 0xe9, 0xe2, 0x0e, 0x63, 0x31, 0x9b, 0x4c, 0x90, 0x5d, 0xac, 0x62, 0x96, 0x5b,
+0x19, 0x4a, 0xdf, 0x30, 0x8c, 0x12, 0xe6, 0xf1, 0x01, 0xd2, 0xbd, 0xb6, 0xe4, 0xa3, 0xbe, 0x9c,
+0xae, 0xa2, 0x91, 0xb5, 0x73, 0xd2, 0xce, 0xf4, 0x28, 0x17, 0x71, 0x34, 0x53, 0x49, 0xed, 0x53,
+0x17, 0x54, 0xdf, 0x4a, 0x8f, 0x3a, 0xdd, 0x24, 0xd2, 0x0b, 0xe4, 0xf0, 0x5d, 0xd6, 0xa3, 0xbf,
+0x5d, 0xb0, 0x83, 0xab, 0xdf, 0xb2, 0xb9, 0xc5, 0x71, 0xe0, 0x56, 0xfe, 0x1c, 0x1a, 0x07, 0x30,
+0xe9, 0x3d, 0x49, 0x43, 0xe9, 0x40, 0xc7, 0x38, 0x01, 0x2c, 0xbc, 0x1b, 0xae, 0x08, 0xbc, 0xf3,
+0xbd, 0xde, 0xdb, 0xcc, 0x77, 0xc1, 0x0d, 0xbf, 0xc7, 0xc6, 0x31, 0xd7, 0xe6, 0xec, 0x30, 0x03,
+0x98, 0x16, 0x7b, 0x24, 0x2f, 0x2c, 0x1d, 0x2e, 0xa3, 0x2b, 0xed, 0x25, 0xd3, 0x1d, 0x66, 0x13,
+0xde, 0x06, 0xe8, 0xf8, 0xaa, 0xea, 0x7b, 0xde, 0xdd, 0xd6, 0x97, 0xd5, 0x37, 0xdb, 0x54, 0xe6,
+0xf2, 0xf3, 0x52, 0x01, 0x34, 0x0c, 0x7a, 0x13, 0x2c, 0x17, 0x1a, 0x18, 0xe2, 0x16, 0x8c, 0x14,
+0x64, 0x11, 0x84, 0x0d, 0x74, 0x08, 0x42, 0x02, 0x62, 0xfb, 0xca, 0xf4, 0xae, 0xef, 0x34, 0xed,
+0xcc, 0xed, 0xbe, 0xf0, 0x14, 0xf5, 0x6e, 0xf9, 0xea, 0xfc, 0x16, 0xff, 0x56, 0x00, 0x44, 0x01,
+0x7e, 0x02, 0xa2, 0x04, 0xf4, 0x07, 0x02, 0x0c, 0xbc, 0x0f, 0xf6, 0x11, 0x7e, 0x11, 0x0a, 0x0e,
+0x40, 0x08, 0x32, 0x01, 0x58, 0xfa, 0xa6, 0xf4, 0x76, 0xf0, 0x8a, 0xed, 0x6a, 0xeb, 0x1e, 0xea,
+0xee, 0xe9, 0x5e, 0xeb, 0x4c, 0xef, 0xc2, 0xf6, 0x6e, 0x01, 0x58, 0x0e, 0x64, 0x1b, 0x43, 0x25,
+0xa7, 0x29, 0x3b, 0x27, 0xa7, 0x1e, 0xaa, 0x11, 0x24, 0x03, 0x10, 0xf5, 0x20, 0xe9, 0x8d, 0xdf,
+0x83, 0xd8, 0x6b, 0xd4, 0x9f, 0xd3, 0x47, 0xd7, 0x49, 0xe0, 0xec, 0xee, 0x2e, 0x02, 0xec, 0x17,
+0x13, 0x2c, 0xbd, 0x3a, 0xb3, 0x40, 0xbf, 0x3c, 0xd7, 0x2f, 0xef, 0x1c, 0x74, 0x07, 0x8a, 0xf2,
+0xd3, 0xdf, 0x99, 0xd0, 0x77, 0xc5, 0x4f, 0xbf, 0x53, 0xbf, 0xcf, 0xc6, 0x45, 0xd6, 0x02, 0xed,
+0xf6, 0x08, 0xd3, 0x25, 0xdb, 0x3e, 0x29, 0x4f, 0x23, 0x54, 0x05, 0x4d, 0xc1, 0x3b, 0xbf, 0x23,
+0x88, 0x08, 0x66, 0xed, 0xd9, 0xd4, 0xef, 0xc0, 0xd9, 0xb2, 0xb3, 0xac, 0xb1, 0xaf, 0x1d, 0xbd,
+0x6d, 0xd4, 0x4c, 0xf3, 0xbc, 0x15, 0x93, 0x36, 0xbd, 0x50, 0x32, 0x60, 0xa2, 0x62, 0xc4, 0x57,
+0x39, 0x42, 0x3d, 0x25, 0x96, 0x04, 0x24, 0xe4, 0x0d, 0xc7, 0x19, 0xb0, 0xfc, 0xa1, 0x76, 0x9e,
+0xec, 0xa6, 0x23, 0xbb, 0x21, 0xd9, 0xe2, 0xfc, 0xb1, 0x21, 0x93, 0x42, 0xaa, 0x5b, 0x86, 0x69,
+0xe2, 0x69, 0x04, 0x5d, 0x99, 0x44, 0xf9, 0x23, 0xe2, 0xfe, 0xdf, 0xd9, 0x39, 0xb9, 0x70, 0xa1,
+0x8a, 0x95, 0x0c, 0x97, 0xbc, 0xa5, 0xa3, 0xbf, 0x97, 0xe1, 0xf0, 0x06, 0x67, 0x2b, 0x1f, 0x4b,
+0x9e, 0x62, 0xce, 0x6e, 0x82, 0x6d, 0x3e, 0x5e, 0xa3, 0x42, 0x2b, 0x1e, 0x6e, 0xf5, 0xf3, 0xcd,
+0x2f, 0xad, 0xe2, 0x97, 0xb0, 0x90, 0x86, 0x97, 0xf8, 0xaa, 0xf9, 0xc7, 0xac, 0xea, 0x0c, 0x0f,
+0xc1, 0x31, 0x3b, 0x4f, 0xbc, 0x64, 0x10, 0x6f, 0xa6, 0x6b, 0xdc, 0x59, 0x49, 0x3b, 0xe0, 0x13,
+0x62, 0xe9, 0x33, 0xc2, 0x74, 0xa4, 0x5a, 0x94, 0xc2, 0x92, 0x8e, 0x9e, 0xfb, 0xb4, 0x7d, 0xd2,
+0x96, 0xf3, 0x3e, 0x15, 0xb1, 0x34, 0x8f, 0x4f, 0xaa, 0x62, 0xce, 0x6a, 0xe4, 0x64, 0x93, 0x50,
+0x0b, 0x30, 0x3c, 0x08, 0x8b, 0xdf, 0xad, 0xbc, 0xf8, 0xa4, 0xac, 0x9a, 0xa2, 0x9d, 0x95, 0xab,
+0xb9, 0xc1, 0xf9, 0xdc, 0xbe, 0xfa, 0xc8, 0x18, 0x9d, 0x34, 0xed, 0x4b, 0x6e, 0x5b, 0x06, 0x60,
+0x2a, 0x57, 0x79, 0x41, 0xb7, 0x21, 0x0c, 0xfd, 0xe3, 0xd9, 0x07, 0xbe, 0xe1, 0xac, 0xba, 0xa7,
+0x2b, 0xad, 0x2d, 0xbb, 0x3d, 0xcf, 0xf4, 0xe6, 0x8a, 0x00, 0xe2, 0x19, 0x0f, 0x31, 0xb5, 0x43,
+0xf9, 0x4e, 0x31, 0x50, 0x57, 0x46, 0xf7, 0x31, 0x84, 0x16, 0x7a, 0xf8, 0xff, 0xdc, 0x35, 0xc8,
+0xd1, 0xbc, 0x5b, 0xba, 0x27, 0xc0, 0x25, 0xcc, 0x93, 0xdc, 0xfc, 0xef, 0x2a, 0x04, 0xc2, 0x17,
+0xbd, 0x28, 0x7b, 0x35, 0x29, 0x3c, 0x63, 0x3b, 0xb9, 0x32, 0x35, 0x23, 0x04, 0x0f, 0x62, 0xf9,
+0x06, 0xe6, 0x87, 0xd7, 0xad, 0xcf, 0xa3, 0xce, 0x8f, 0xd3, 0xe9, 0xdc, 0x76, 0xe9, 0x44, 0xf7,
+0xd6, 0x04, 0x0c, 0x11, 0xe4, 0x1a, 0x07, 0x22, 0x91, 0x25, 0x23, 0x25, 0x55, 0x20, 0x56, 0x17,
+0x0a, 0x0c, 0x18, 0x00, 0x68, 0xf5, 0x48, 0xee, 0x02, 0xec, 0x00, 0xee, 0x2e, 0xf3, 0xb8, 0xf9,
+0x96, 0xff, 0x18, 0x04, 0x66, 0x07, 0x8a, 0x0a, 0x0a, 0x0e, 0x60, 0x11, 0x44, 0x13, 0xda, 0x12,
+0xac, 0x0f, 0x2e, 0x0a, 0x16, 0x04, 0x14, 0xff, 0x1c, 0xfc, 0x40, 0xfb, 0xb0, 0xfb, 0xc0, 0xfb,
+0xb2, 0xfa, 0xf4, 0xf7, 0xf0, 0xf3, 0x66, 0xf0, 0x38, 0xef, 0xb6, 0xf1, 0x06, 0xf8, 0x18, 0x01,
+0x78, 0x0a, 0x60, 0x12, 0x16, 0x17, 0x7c, 0x18, 0xc0, 0x17, 0xd2, 0x15, 0x70, 0x13, 0x50, 0x10,
+0x4a, 0x0b, 0x72, 0x03, 0x20, 0xf9, 0x24, 0xed, 0x99, 0xe1, 0x3d, 0xd9, 0x9b, 0xd6, 0x9b, 0xda,
+0x2c, 0xe5, 0x70, 0xf4, 0x44, 0x05, 0xd8, 0x14, 0x21, 0x21, 0x29, 0x29, 0x37, 0x2d, 0xab, 0x2d,
+0x0f, 0x2a, 0x81, 0x22, 0x22, 0x16, 0x76, 0x05, 0x5c, 0xf2, 0xeb, 0xde, 0x83, 0xce, 0x13, 0xc4,
+0xd7, 0xc1, 0xa1, 0xc8, 0xb5, 0xd7, 0xc2, 0xec, 0x64, 0x04, 0x1c, 0x1b, 0xf3, 0x2d, 0x9b, 0x3b,
+0xd7, 0x42, 0x0b, 0x43, 0xb9, 0x3b, 0x37, 0x2d, 0x9c, 0x18, 0xf4, 0xff, 0x04, 0xe6, 0x53, 0xce,
+0xe1, 0xbb, 0x89, 0xb1, 0x39, 0xb1, 0x0f, 0xbb, 0xc1, 0xce, 0x88, 0xe9, 0xfc, 0x07, 0xa1, 0x25,
+0xdb, 0x3e, 0x3d, 0x50, 0xf6, 0x57, 0xcc, 0x54, 0x3b, 0x47, 0x7f, 0x31, 0xca, 0x15, 0x50, 0xf7,
+0xd7, 0xd9, 0xe9, 0xbf, 0xe7, 0xac, 0x4e, 0xa3, 0x80, 0xa4, 0x75, 0xb1, 0x93, 0xc9, 0x34, 0xea,
+0x2c, 0x0f, 0xdd, 0x32, 0xc9, 0x4f, 0x32, 0x62, 0x62, 0x67, 0x16, 0x5f, 0x75, 0x4b, 0xb3, 0x2f,
+0x68, 0x0f, 0x12, 0xee, 0xed, 0xce, 0xa1, 0xb4, 0x12, 0xa2, 0x8c, 0x99, 0xfe, 0x9c, 0x3b, 0xad,
+0x17, 0xca, 0x30, 0xf0, 0x26, 0x1a, 0xf5, 0x40, 0x84, 0x5e, 0xd2, 0x6e, 0x98, 0x6f, 0x0e, 0x62,
+0x9f, 0x49, 0x73, 0x2a, 0x28, 0x08, 0x18, 0xe6, 0xb5, 0xc6, 0xe3, 0xac, 0x40, 0x9b, 0x84, 0x94,
+0xb4, 0x9a, 0x07, 0xaf, 0x69, 0xd0, 0xa6, 0xfa, 0xbf, 0x26, 0x35, 0x4d, 0x28, 0x68, 0xc2, 0x73,
+0xce, 0x6f, 0x48, 0x5e, 0x3d, 0x43, 0xeb, 0x22, 0x5c, 0x00, 0xbf, 0xde, 0x5d, 0xc0, 0x12, 0xa8,
+0xe2, 0x98, 0x66, 0x95, 0xc2, 0x9f, 0x27, 0xb8, 0x97, 0xdc, 0x3a, 0x07, 0x61, 0x31, 0xdf, 0x53,
+0xc6, 0x69, 0xc2, 0x70, 0x46, 0x69, 0xf6, 0x55, 0xbb, 0x3a, 0xda, 0x1a, 0x82, 0xf9, 0x29, 0xd9,
+0xe1, 0xbc, 0x78, 0xa7, 0xd8, 0x9b, 0x84, 0x9c, 0x72, 0xaa, 0x3b, 0xc5, 0xea, 0xe8, 0x84, 0x10,
+0x6f, 0x35, 0x6d, 0x52, 0x94, 0x63, 0x4c, 0x67, 0x82, 0x5e, 0x3b, 0x4b, 0xe3, 0x30, 0x5c, 0x12,
+0x68, 0xf2, 0x85, 0xd4, 0xc1, 0xbb, 0x0c, 0xab, 0xac, 0xa4, 0x9a, 0xa9, 0xc5, 0xb9, 0x6d, 0xd3,
+0x30, 0xf3, 0x68, 0x14, 0xbd, 0x32, 0xd1, 0x49, 0x24, 0x57, 0x56, 0x59, 0x63, 0x50, 0x87, 0x3e,
+0x07, 0x26, 0x12, 0x0a, 0xda, 0xed, 0xab, 0xd4, 0x83, 0xc1, 0xa1, 0xb6, 0xc3, 0xb4, 0x37, 0xbc,
+0x59, 0xcb, 0xd1, 0xe0, 0x0c, 0xfa, 0x08, 0x14, 0x89, 0x2b, 0x93, 0x3d, 0x85, 0x47, 0x0d, 0x48,
+0x57, 0x3f, 0x8d, 0x2e, 0xd6, 0x18, 0xfa, 0x00, 0xbe, 0xea, 0xf9, 0xd8, 0x47, 0xcd, 0x69, 0xc8,
+0x07, 0xca, 0xc5, 0xd0, 0xad, 0xdb, 0x06, 0xea, 0xee, 0xfa, 0x0e, 0x0d, 0x2b, 0x1e, 0xb5, 0x2b,
+0x1f, 0x33, 0x1b, 0x33, 0x8f, 0x2b, 0x41, 0x1e, 0xf6, 0x0d, 0x94, 0xfd, 0x0c, 0xf0, 0x82, 0xe6,
+0x63, 0xe1, 0xe3, 0xdf, 0x13, 0xe1, 0xe6, 0xe3, 0x5e, 0xe8, 0xce, 0xee, 0x7e, 0xf7, 0x22, 0x02,
+0x3c, 0x0d, 0xbe, 0x16, 0x4f, 0x1c, 0xc7, 0x1c, 0x2c, 0x18, 0x36, 0x10, 0x36, 0x07, 0x8a, 0xff,
+0x66, 0xfa, 0x08, 0xf8, 0x2a, 0xf7, 0xda, 0xf6, 0xe6, 0xf5, 0xea, 0xf3, 0xba, 0xf1, 0x66, 0xf0,
+0x3a, 0xf1, 0xba, 0xf4, 0xfc, 0xf9, 0xc0, 0xff, 0x5c, 0x04, 0xe2, 0x06, 0x96, 0x07, 0x74, 0x07,
+0xfc, 0x07, 0xb6, 0x09, 0x42, 0x0c, 0x88, 0x0e, 0x60, 0x0f, 0x80, 0x0d, 0x92, 0x08, 0xb2, 0x00,
+0x4c, 0xf7, 0x3a, 0xee, 0x20, 0xe7, 0x61, 0xe3, 0x69, 0xe3, 0x8e, 0xe6, 0x3c, 0xec, 0x68, 0xf3,
+0xc8, 0xfb, 0x26, 0x05, 0xdc, 0x0e, 0x42, 0x18, 0xe9, 0x1f, 0xc7, 0x24, 0xa9, 0x25, 0x81, 0x21,
+0x44, 0x18, 0x78, 0x0a, 0xc2, 0xf9, 0x9a, 0xe8, 0x65, 0xd9, 0x19, 0xcf, 0x5d, 0xcb, 0x47, 0xce,
+0x75, 0xd7, 0x7c, 0xe5, 0x52, 0xf6, 0x34, 0x08, 0x50, 0x19, 0xd5, 0x27, 0xf5, 0x32, 0xd9, 0x38,
+0xd5, 0x38, 0x2b, 0x32, 0x53, 0x24, 0x68, 0x10, 0x36, 0xf8, 0xc5, 0xde, 0x69, 0xc8, 0x53, 0xb9,
+0x35, 0xb4, 0xad, 0xb9, 0x7f, 0xc8, 0xef, 0xdd, 0x5a, 0xf6, 0xfc, 0x0e, 0x1f, 0x25, 0x7d, 0x37,
+0x4b, 0x44, 0x8f, 0x4a, 0x13, 0x49, 0xd9, 0x3e, 0x91, 0x2b, 0x72, 0x10, 0x6a, 0xf0, 0xb7, 0xcf,
+0x83, 0xb4, 0xd4, 0xa3, 0xd6, 0xa0, 0x34, 0xab, 0x7b, 0xc0, 0x8d, 0xdc, 0x04, 0xfb, 0x1c, 0x18,
+0xc1, 0x31, 0xf7, 0x45, 0xad, 0x53, 0x2a, 0x59, 0xd0, 0x54, 0xc1, 0x45, 0x17, 0x2c, 0x22, 0x0a,
+0xd2, 0xe3, 0xf3, 0xbe, 0x64, 0xa2, 0xa0, 0x93, 0x96, 0x94, 0xfc, 0xa3, 0x63, 0xbe, 0x05, 0xdf,
+0x1e, 0x01, 0x17, 0x21, 0x97, 0x3c, 0x03, 0x52, 0x68, 0x5f, 0xd6, 0x62, 0x94, 0x5a, 0x2f, 0x46,
+0xe9, 0x26, 0xca, 0xff, 0x73, 0xd6, 0x0b, 0xb1, 0xa0, 0x96, 0x60, 0x8b, 0x1a, 0x90, 0x0a, 0xa3,
+0x8b, 0xc0, 0xc2, 0xe3, 0xfc, 0x07, 0xb5, 0x29, 0x57, 0x46, 0xb4, 0x5b, 0x40, 0x67, 0xe6, 0x66,
+0x74, 0x59, 0xe1, 0x3f, 0x75, 0x1c, 0xc0, 0xf3, 0x47, 0xcb, 0xf8, 0xa8, 0x3a, 0x92, 0x68, 0x8a,
+0x94, 0x91, 0x50, 0xa6, 0x49, 0xc5, 0xca, 0xe9, 0x66, 0x0f, 0x1f, 0x32, 0x8d, 0x4e, 0xea, 0x61,
+0x88, 0x69, 0xee, 0x63, 0xe3, 0x51, 0x11, 0x35, 0x2a, 0x11, 0x80, 0xea, 0xbd, 0xc5, 0xce, 0xa7,
+0xd6, 0x94, 0x4a, 0x8f, 0xcc, 0x97, 0x5b, 0xad, 0x01, 0xcd, 0x2c, 0xf2, 0xbe, 0x17, 0x25, 0x39,
+0xf9, 0x52, 0xe6, 0x61, 0x46, 0x64, 0x14, 0x5a, 0x11, 0x45, 0x55, 0x28, 0xfe, 0x06, 0x9a, 0xe4,
+0x03, 0xc5, 0xb7, 0xab, 0x02, 0x9c, 0x88, 0x98, 0xfc, 0xa1, 0x1d, 0xb8, 0xcd, 0xd7, 0xf8, 0xfb,
+0x4b, 0x1f, 0x43, 0x3d, 0xb5, 0x51, 0xca, 0x5a, 0x1a, 0x58, 0xe9, 0x4a, 0xa1, 0x36, 0xdd, 0x1c,
+0x94, 0x00, 0x04, 0xe4, 0xb5, 0xc9, 0xb7, 0xb4, 0x28, 0xa8, 0x7a, 0xa6, 0xfb, 0xb0, 0x0b, 0xc7,
+0xec, 0xe4, 0xc0, 0x05, 0xed, 0x23, 0x13, 0x3b, 0xa9, 0x48, 0xdb, 0x4b, 0xdd, 0x45, 0x21, 0x39,
+0xa7, 0x27, 0x90, 0x13, 0xa0, 0xfd, 0xa8, 0xe7, 0x23, 0xd3, 0xa5, 0xc2, 0x19, 0xb9, 0xef, 0xb8,
+0x3d, 0xc3, 0xcf, 0xd6, 0x10, 0xf0, 0xfe, 0x09, 0x6f, 0x20, 0xf7, 0x2f, 0x8b, 0x37, 0x73, 0x37,
+0x9b, 0x31, 0x99, 0x27, 0x78, 0x1b, 0x8c, 0x0d, 0x98, 0xfe, 0x3e, 0xef, 0x87, 0xe0, 0xad, 0xd4,
+0xdd, 0xcd, 0x3d, 0xce, 0x29, 0xd6, 0xa8, 0xe4, 0x70, 0xf6, 0x04, 0x08, 0x52, 0x16, 0x4b, 0x1f,
+0xd7, 0x22, 0xb5, 0x21, 0x9d, 0x1d, 0xe4, 0x17, 0x48, 0x11, 0x16, 0x0a, 0x40, 0x02, 0x18, 0xfa,
+0xfa, 0xf1, 0xe6, 0xea, 0x42, 0xe6, 0x44, 0xe5, 0x5a, 0xe8, 0xe2, 0xee, 0x22, 0xf7, 0x44, 0xff,
+0x08, 0x06, 0x28, 0x0a, 0xcc, 0x0b, 0xb6, 0x0b, 0xda, 0x0a, 0x24, 0x0a, 0xee, 0x09, 0x0c, 0x0a,
+0x36, 0x0a, 0x86, 0x09, 0xfe, 0x06, 0xe0, 0x02, 0x8c, 0xfd, 0x46, 0xf8, 0x1c, 0xf4, 0x80, 0xf1,
+0xc0, 0xf0, 0x3c, 0xf1, 0x64, 0xf2, 0x8e, 0xf3, 0xd4, 0xf4, 0xc2, 0xf6, 0x06, 0xfa, 0x20, 0xff,
+0x28, 0x06, 0x9e, 0x0e, 0xe0, 0x16, 0x1f, 0x1d, 0x21, 0x1f, 0xfe, 0x1b, 0xee, 0x13, 0x80, 0x08,
+0x0c, 0xfc, 0x7e, 0xf0, 0x58, 0xe7, 0x01, 0xe1, 0xa1, 0xdd, 0xb1, 0xdc, 0x8b, 0xde, 0x59, 0xe3,
+0xc4, 0xeb, 0x1e, 0xf8, 0xaa, 0x07, 0xca, 0x18, 0x89, 0x28, 0x89, 0x33, 0xe3, 0x36, 0x99, 0x31,
+0x73, 0x24, 0x1e, 0x12, 0x16, 0xfe, 0x42, 0xeb, 0xcf, 0xdb, 0xa3, 0xd0, 0xbd, 0xc9, 0x67, 0xc7,
+0x35, 0xca, 0xcb, 0xd2, 0xb7, 0xe1, 0x50, 0xf6, 0xb0, 0x0e, 0x9b, 0x27, 0xab, 0x3c, 0xdb, 0x49,
+0x35, 0x4c, 0x1d, 0x43, 0x7f, 0x30, 0x9a, 0x17, 0xc4, 0xfc, 0x85, 0xe3, 0x6f, 0xce, 0x1b, 0xbf,
+0x4f, 0xb6, 0x7f, 0xb4, 0x57, 0xba, 0x87, 0xc8, 0xa3, 0xde, 0x6e, 0xfb, 0xec, 0x1a, 0xad, 0x38,
+0xcf, 0x4f, 0x4e, 0x5c, 0xf8, 0x5b, 0xb9, 0x4e, 0xf1, 0x36, 0xac, 0x18, 0x52, 0xf8, 0xa3, 0xd9,
+0x09, 0xc0, 0x93, 0xad, 0x24, 0xa4, 0xc2, 0xa4, 0xdd, 0xaf, 0x7f, 0xc5, 0xa9, 0xe3, 0xcc, 0x06,
+0x01, 0x2a, 0xb5, 0x48, 0x88, 0x5e, 0x94, 0x68, 0xf4, 0x64, 0x3b, 0x54, 0xf9, 0x38, 0x00, 0x17,
+0x82, 0xf2, 0xe3, 0xcf, 0x15, 0xb3, 0xb2, 0x9f, 0xdc, 0x97, 0xa4, 0x9c, 0xfb, 0xad, 0xef, 0xc9,
+0x0c, 0xed, 0x98, 0x12, 0xd7, 0x35, 0xcb, 0x52, 0x66, 0x66, 0xd4, 0x6d, 0x0a, 0x68, 0x26, 0x55,
+0x7f, 0x37, 0x64, 0x12, 0x68, 0xea, 0xb1, 0xc4, 0x9c, 0xa6, 0x74, 0x94, 0x6c, 0x90, 0xe0, 0x9a,
+0xd7, 0xb1, 0x55, 0xd2, 0x78, 0xf7, 0xad, 0x1c, 0xeb, 0x3d, 0x4c, 0x58, 0x5a, 0x69, 0xc2, 0x6e,
+0xec, 0x66, 0xeb, 0x51, 0xab, 0x31, 0xd6, 0x09, 0xcb, 0xdf, 0xc7, 0xb9, 0xee, 0x9d, 0x4c, 0x90,
+0xe4, 0x91, 0x82, 0xa1, 0x09, 0xbc, 0x5d, 0xdd, 0x16, 0x01, 0x45, 0x23, 0x1f, 0x41, 0x7c, 0x58,
+0x22, 0x67, 0x68, 0x6a, 0xba, 0x60, 0xbd, 0x49, 0xb9, 0x27, 0xe4, 0xfe, 0x93, 0xd5, 0xb1, 0xb2,
+0x00, 0x9c, 0x28, 0x94, 0xe0, 0x9a, 0x7d, 0xad, 0x6b, 0xc8, 0xc6, 0xe7, 0xce, 0x07, 0xb7, 0x25,
+0x9d, 0x3f, 0x93, 0x53, 0x56, 0x5f, 0x50, 0x60, 0xca, 0x54, 0xeb, 0x3c, 0x3a, 0x1b, 0xcc, 0xf4,
+0x1b, 0xd0, 0x9d, 0xb3, 0x6e, 0xa3, 0xc0, 0xa0, 0x0c, 0xaa, 0x95, 0xbc, 0xfd, 0xd4, 0x0a, 0xf0,
+0x4a, 0x0b, 0x7b, 0x24, 0x3d, 0x3a, 0x5d, 0x4a, 0xf5, 0x52, 0x99, 0x51, 0x47, 0x45, 0x65, 0x2e,
+0x22, 0x10, 0x58, 0xef, 0xd7, 0xd1, 0x7f, 0xbc, 0xc3, 0xb1, 0x1b, 0xb2, 0x9d, 0xbb, 0xed, 0xcb,
+0x59, 0xe0, 0xb4, 0xf6, 0xb6, 0x0c, 0xe5, 0x20, 0x7d, 0x31, 0x29, 0x3d, 0x2d, 0x42, 0x15, 0x3f,
+0x5d, 0x33, 0x35, 0x20, 0x3a, 0x08, 0x80, 0xef, 0x37, 0xda, 0x81, 0xcb, 0xfb, 0xc4, 0x57, 0xc6,
+0x61, 0xce, 0x2f, 0xdb, 0xd8, 0xea, 0x42, 0xfb, 0x28, 0x0b, 0xf2, 0x18, 0xd1, 0x23, 0xaf, 0x2a,
+0x0d, 0x2d, 0x6d, 0x2a, 0xc5, 0x22, 0x94, 0x16, 0x54, 0x07, 0x7a, 0xf7, 0x74, 0xe9, 0x79, 0xdf,
+0xa5, 0xda, 0x7f, 0xdb, 0xff, 0xe0, 0x98, 0xe9, 0x84, 0xf3, 0x42, 0xfd, 0xac, 0x05, 0x4a, 0x0c,
+0xec, 0x10, 0xfe, 0x13, 0xe8, 0x15, 0x96, 0x16, 0x5a, 0x15, 0xc4, 0x11, 0xa8, 0x0b, 0xe0, 0x03,
+0xd0, 0xfb, 0x4a, 0xf5, 0xac, 0xf1, 0x22, 0xf1, 0xfa, 0xf2, 0xc8, 0xf5, 0x62, 0xf8, 0xde, 0xf9,
+0x0c, 0xfa, 0x4e, 0xf9, 0x28, 0xf9, 0x10, 0xfb, 0x9c, 0xff, 0x50, 0x06, 0x60, 0x0d, 0xd6, 0x12,
+0x1a, 0x15, 0x2e, 0x14, 0xe0, 0x10, 0xd8, 0x0c, 0x08, 0x09, 0xc0, 0x05, 0x52, 0x02, 0xdc, 0xfd,
+0xc8, 0xf7, 0x3c, 0xf0, 0x5e, 0xe8, 0x0f, 0xe2, 0xdf, 0xdf, 0x5f, 0xe3, 0x96, 0xec, 0x00, 0xfa,
+0x0e, 0x09, 0x92, 0x16, 0x6d, 0x20, 0x9d, 0x25, 0xa5, 0x26, 0x6f, 0x24, 0xb5, 0x1f, 0x3c, 0x18,
+0x10, 0x0e, 0xee, 0x00, 0xb2, 0xf1, 0xf7, 0xe1, 0x55, 0xd4, 0x97, 0xcb, 0xfb, 0xc9, 0x9d, 0xd0,
+0xcb, 0xde, 0x76, 0xf2, 0x14, 0x08, 0x93, 0x1c, 0xcf, 0x2c, 0x47, 0x37, 0x6f, 0x3b, 0x9d, 0x39,
+0xeb, 0x31, 0xbd, 0x24, 0x76, 0x12, 0xb4, 0xfc, 0xde, 0xe5, 0xc9, 0xd0, 0x75, 0xc0, 0x9f, 0xb7,
+0x0d, 0xb8, 0x53, 0xc2, 0x4b, 0xd5, 0x86, 0xee, 0xa4, 0x0a, 0xd5, 0x25, 0x47, 0x3c, 0x47, 0x4b,
+0x53, 0x51, 0xb5, 0x4d, 0xbd, 0x40, 0xa1, 0x2b, 0xe0, 0x10, 0x80, 0xf3, 0x2f, 0xd7, 0x4f, 0xbf,
+0xc3, 0xae, 0x92, 0xa7, 0xd2, 0xaa, 0xab, 0xb8, 0x3d, 0xd0, 0x30, 0xef, 0x86, 0x11, 0x77, 0x32,
+0x5f, 0x4d, 0x60, 0x5e, 0x04, 0x63, 0xb4, 0x5a, 0xed, 0x46, 0x9f, 0x2a, 0xc2, 0x09, 0x50, 0xe8,
+0x25, 0xca, 0x4b, 0xb2, 0xfe, 0xa2, 0x8e, 0x9d, 0x1c, 0xa3, 0x3d, 0xb4, 0x1b, 0xd0, 0x0a, 0xf4,
+0x72, 0x1b, 0x8d, 0x40, 0x7a, 0x5d, 0x66, 0x6d, 0x0a, 0x6e, 0xf8, 0x5f, 0x37, 0x46, 0x1f, 0x25,
+0x52, 0x01, 0xd7, 0xde, 0xd7, 0xc0, 0xd4, 0xa9, 0xba, 0x9b, 0x08, 0x98, 0x12, 0xa0, 0x7b, 0xb4,
+0x7f, 0xd4, 0xc8, 0xfc, 0x9b, 0x27, 0xef, 0x4d, 0x6e, 0x69, 0xac, 0x75, 0x3a, 0x71, 0xee, 0x5d,
+0x4d, 0x40, 0x3d, 0x1d, 0x26, 0xf9, 0x27, 0xd7, 0x29, 0xba, 0xba, 0xa4, 0xb6, 0x98, 0x98, 0x97,
+0xd8, 0xa2, 0x0b, 0xbb, 0x79, 0xde, 0xc0, 0x08, 0x3d, 0x33, 0xfc, 0x56, 0x2e, 0x6e, 0x66, 0x75,
+0x6e, 0x6c, 0x6a, 0x56, 0xd5, 0x37, 0x4c, 0x15, 0x4a, 0xf2, 0xe9, 0xd1, 0xd5, 0xb6, 0x90, 0xa3,
+0x3a, 0x9a, 0x8c, 0x9c, 0x55, 0xab, 0x57, 0xc6, 0xcc, 0xea, 0x80, 0x13, 0x11, 0x3a, 0x82, 0x58,
+0x54, 0x6a, 0x64, 0x6d, 0x4a, 0x62, 0x07, 0x4c, 0xc5, 0x2e, 0x32, 0x0e, 0x4e, 0xed, 0x11, 0xcf,
+0x95, 0xb6, 0xae, 0xa6, 0x30, 0xa1, 0x28, 0xa7, 0xcb, 0xb8, 0x71, 0xd4, 0xb6, 0xf6, 0x9c, 0x1a,
+0x0b, 0x3b, 0x71, 0x53, 0x68, 0x60, 0xa8, 0x60, 0x1a, 0x55, 0x0b, 0x40, 0xe9, 0x24, 0xbe, 0x06,
+0x02, 0xe9, 0xe7, 0xce, 0x4d, 0xbb, 0x5d, 0xb0, 0x67, 0xaf, 0x59, 0xb8, 0x21, 0xca, 0x75, 0xe2,
+0x7c, 0xfe, 0xb2, 0x1a, 0xbd, 0x33, 0x61, 0x46, 0x1b, 0x50, 0x99, 0x4f, 0x03, 0x45, 0x1d, 0x32,
+0xdc, 0x19, 0xa2, 0xff, 0xc4, 0xe6, 0x75, 0xd2, 0x0d, 0xc5, 0xc9, 0xbf, 0xad, 0xc2, 0x7b, 0xcc,
+0x71, 0xdb, 0xb6, 0xed, 0x92, 0x01, 0xa4, 0x15, 0xcf, 0x27, 0xc1, 0x35, 0x05, 0x3d, 0x21, 0x3c,
+0x27, 0x33, 0x83, 0x23, 0xe0, 0x0f, 0xca, 0xfb, 0x60, 0xea, 0xe5, 0xdd, 0x41, 0xd7, 0x45, 0xd6,
+0xe9, 0xd9, 0x9b, 0xe0, 0xe8, 0xe8, 0x9e, 0xf2, 0xa8, 0xfd, 0xe2, 0x09, 0x2e, 0x16, 0x39, 0x20,
+0x13, 0x26, 0x31, 0x26, 0x41, 0x20, 0xd4, 0x15, 0x54, 0x09, 0x96, 0xfd, 0xae, 0xf4, 0x78, 0xef,
+0xb6, 0xed, 0x36, 0xee, 0x90, 0xef, 0xc0, 0xf0, 0xa6, 0xf1, 0x0e, 0xf3, 0x22, 0xf6, 0x6c, 0xfb,
+0x64, 0x02, 0x76, 0x09, 0xba, 0x0e, 0xf4, 0x10, 0xea, 0x0f, 0x96, 0x0c, 0xa4, 0x08, 0xd8, 0x05,
+0xd6, 0x04, 0x12, 0x05, 0x48, 0x05, 0x52, 0x04, 0x5e, 0x01, 0x4a, 0xfc, 0xd0, 0xf5, 0x86, 0xef,
+0x4c, 0xeb, 0x38, 0xea, 0x48, 0xec, 0x0e, 0xf1, 0x1e, 0xf7, 0x68, 0xfd, 0x44, 0x03, 0xd4, 0x08,
+0xbc, 0x0e, 0xa6, 0x14, 0xa2, 0x19, 0xaf, 0x1c, 0xb9, 0x1c, 0x04, 0x19, 0x42, 0x11, 0xc2, 0x05,
+0xdc, 0xf7, 0xd8, 0xe9, 0xbf, 0xdd, 0xfd, 0xd5, 0x1b, 0xd4, 0x07, 0xd8, 0x1f, 0xe1, 0xa8, 0xed,
+0x2a, 0xfc, 0x50, 0x0b, 0x88, 0x19, 0x61, 0x25, 0xc1, 0x2d, 0x77, 0x31, 0x1b, 0x30, 0x49, 0x29,
+0xd5, 0x1c, 0x76, 0x0b, 0xa4, 0xf6, 0xe9, 0xe0, 0xf9, 0xcd, 0x0d, 0xc1, 0xf3, 0xbc, 0x93, 0xc2,
+0xa5, 0xd0, 0xb2, 0xe4, 0xa2, 0xfb, 0x74, 0x12, 0x99, 0x26, 0x15, 0x36, 0xdd, 0x3f, 0x6b, 0x43,
+0x5f, 0x40, 0x2b, 0x36, 0xbd, 0x24, 0x06, 0x0d, 0x04, 0xf1, 0x43, 0xd4, 0x73, 0xbb, 0x85, 0xab,
+0xfc, 0xa7, 0x93, 0xb1, 0x1d, 0xc6, 0xdd, 0xe1, 0x14, 0x00, 0x93, 0x1c, 0x65, 0x34, 0xf5, 0x45,
+0x47, 0x50, 0xfd, 0x52, 0x0b, 0x4d, 0x6d, 0x3e, 0x23, 0x27, 0x94, 0x08, 0xb0, 0xe5, 0x87, 0xc3,
+0x02, 0xa8, 0xba, 0x98, 0xe0, 0x98, 0x06, 0xa8, 0x31, 0xc3, 0xb8, 0xe4, 0x70, 0x07, 0x0f, 0x27,
+0xc7, 0x40, 0x3f, 0x53, 0x62, 0x5d, 0x30, 0x5e, 0xec, 0x54, 0x39, 0x41, 0xd5, 0x23, 0x36, 0xff,
+0xaf, 0xd7, 0x45, 0xb3, 0xd6, 0x98, 0xee, 0x8c, 0xdc, 0x91, 0xf6, 0xa5, 0x0f, 0xc5, 0xf8, 0xe9,
+0xd4, 0x0e, 0xeb, 0x2f, 0x97, 0x4a, 0x36, 0x5d, 0x0c, 0x66, 0xd2, 0x63, 0xbe, 0x55, 0x97, 0x3c,
+0x3e, 0x1a, 0xf4, 0xf1, 0x8b, 0xc9, 0x0a, 0xa7, 0x72, 0x90, 0x2e, 0x89, 0xe2, 0x91, 0xec, 0xa8,
+0x0f, 0xca, 0x0c, 0xf0, 0xd0, 0x15, 0x7b, 0x37, 0x3f, 0x52, 0xdc, 0x63, 0x12, 0x6a, 0x8c, 0x63,
+0xa1, 0x50, 0xd9, 0x32, 0xb0, 0x0d, 0x8a, 0xe5, 0xb9, 0xbf, 0xce, 0xa1, 0xdc, 0x8f, 0x52, 0x8c,
+0x76, 0x97, 0x9f, 0xaf, 0x17, 0xd1, 0x1c, 0xf7, 0x8f, 0x1c, 0x4f, 0x3d, 0x6a, 0x56, 0xd2, 0x64,
+0xc4, 0x66, 0x84, 0x5b, 0xbf, 0x44, 0x7f, 0x25, 0xd4, 0x01, 0x99, 0xdd, 0x51, 0xbd, 0xa8, 0xa4,
+0xa6, 0x96, 0x48, 0x95, 0x1a, 0xa1, 0x13, 0xb9, 0xf7, 0xd9, 0xee, 0xfe, 0xd7, 0x22, 0x3d, 0x41,
+0x6e, 0x56, 0xfe, 0x5f, 0xc6, 0x5c, 0xc7, 0x4d, 0xd3, 0x35, 0x66, 0x18, 0x10, 0xf9, 0x01, 0xdb,
+0xdf, 0xc0, 0x2d, 0xad, 0x74, 0xa2, 0xa6, 0xa2, 0xa7, 0xae, 0xd7, 0xc5, 0xd8, 0xe4, 0x1a, 0x07,
+0x5b, 0x27, 0xaf, 0x40, 0xfb, 0x4f, 0xbd, 0x53, 0x53, 0x4c, 0x4b, 0x3c, 0x93, 0x26, 0x44, 0x0e,
+0xc2, 0xf5, 0x95, 0xde, 0x3f, 0xca, 0x1d, 0xbb, 0xa1, 0xb2, 0x93, 0xb3, 0xe9, 0xbe, 0x9d, 0xd3,
+0x02, 0xef, 0x1c, 0x0c, 0xc3, 0x25, 0x35, 0x38, 0x49, 0x41, 0xa7, 0x40, 0x71, 0x38, 0xa9, 0x2a,
+0x16, 0x1a, 0x8a, 0x08, 0x1c, 0xf7, 0xb2, 0xe6, 0x1b, 0xd8, 0x9d, 0xcc, 0xab, 0xc6, 0xd1, 0xc7,
+0x2b, 0xd1, 0xaf, 0xe1, 0x74, 0xf6, 0x66, 0x0b, 0xdf, 0x1c, 0x05, 0x28, 0x2b, 0x2c, 0x61, 0x2a,
+0x0b, 0x24, 0x3c, 0x1b, 0x30, 0x11, 0xe6, 0x06, 0xba, 0xfc, 0xd0, 0xf2, 0x66, 0xe9, 0xa7, 0xe1,
+0x19, 0xdd, 0x2f, 0xdd, 0x79, 0xe2, 0x3c, 0xec, 0x82, 0xf8, 0xae, 0x04, 0x1a, 0x0e, 0x9e, 0x13,
+0x46, 0x15, 0x0a, 0x14, 0x2e, 0x11, 0xc2, 0x0d, 0x70, 0x0a, 0x94, 0x07, 0xe2, 0x04, 0xb8, 0x01,
+0xc0, 0xfd, 0x44, 0xf9, 0xc4, 0xf4, 0x78, 0xf1, 0xf8, 0xef, 0x9e, 0xf0, 0x2a, 0xf3, 0x78, 0xf6,
+0xa2, 0xf9, 0x28, 0xfc, 0x0a, 0xfe, 0xb6, 0xff, 0xd2, 0x01, 0x7e, 0x04, 0x40, 0x08, 0xbe, 0x0c,
+0x26, 0x11, 0x44, 0x14, 0x92, 0x14, 0x3e, 0x11, 0x6c, 0x0a, 0x32, 0x01, 0x7e, 0xf7, 0xec, 0xee,
+0xa6, 0xe8, 0x2e, 0xe5, 0x0a, 0xe4, 0x14, 0xe5, 0xe6, 0xe7, 0x92, 0xec, 0x50, 0xf3, 0x70, 0xfc,
+0xec, 0x07, 0xf2, 0x14, 0x3b, 0x21, 0x59, 0x2a, 0xb7, 0x2d, 0x61, 0x29, 0xdf, 0x1d, 0xe0, 0x0c,
+0xe0, 0xf9, 0x5a, 0xe8, 0xa1, 0xda, 0x01, 0xd2, 0xa1, 0xce, 0x95, 0xcf, 0xbd, 0xd4, 0xab, 0xdd,
+0x70, 0xea, 0x0a, 0xfb, 0x6a, 0x0e, 0x7f, 0x22, 0x53, 0x34, 0x4d, 0x40, 0x15, 0x43, 0x67, 0x3b,
+0x93, 0x29, 0x92, 0x11, 0x60, 0xf7, 0x8b, 0xdf, 0xf5, 0xcc, 0x07, 0xc1, 0xc3, 0xbb, 0xc7, 0xbc,
+0x0f, 0xc4, 0x73, 0xd1, 0x10, 0xe5, 0xa2, 0xfd, 0xe4, 0x18, 0x4f, 0x33, 0x77, 0x48, 0x85, 0x54,
+0xa9, 0x54, 0x3b, 0x48, 0x4f, 0x31, 0xb2, 0x13, 0x3e, 0xf4, 0x2b, 0xd7, 0x3f, 0xc0, 0xe5, 0xb0,
+0x52, 0xaa, 0x7d, 0xac, 0x9f, 0xb7, 0xbf, 0xcb, 0x32, 0xe7, 0x7e, 0x07, 0x59, 0x28, 0x91, 0x45,
+0x82, 0x5a, 0xf6, 0x63, 0xda, 0x5f, 0x77, 0x4e, 0xe7, 0x32, 0xaa, 0x10, 0x0c, 0xed, 0x4b, 0xcc,
+0x6b, 0xb2, 0x04, 0xa2, 0x74, 0x9c, 0x36, 0xa2, 0x2f, 0xb3, 0x0d, 0xce, 0x76, 0xef, 0xce, 0x13,
+0xf5, 0x35, 0x25, 0x52, 0xb2, 0x64, 0xbe, 0x6a, 0x92, 0x63, 0xcb, 0x4f, 0xbd, 0x31, 0x4c, 0x0d,
+0xa0, 0xe6, 0xfb, 0xc2, 0x42, 0xa7, 0xf0, 0x96, 0xee, 0x93, 0xba, 0x9e, 0x89, 0xb5, 0xe9, 0xd5,
+0x1a, 0xfb, 0x0f, 0x20, 0xed, 0x40, 0xfc, 0x59, 0x1e, 0x69, 0x30, 0x6c, 0x9a, 0x62, 0xbf, 0x4c,
+0x0f, 0x2d, 0x5c, 0x06, 0xe7, 0xdd, 0x47, 0xb9, 0x3e, 0x9e, 0xd4, 0x90, 0x82, 0x92, 0x9c, 0xa2,
+0x41, 0xbe, 0x39, 0xe1, 0x38, 0x06, 0xdb, 0x28, 0xef, 0x45, 0x46, 0x5b, 0x1c, 0x67, 0xe0, 0x67,
+0xaa, 0x5c, 0xbd, 0x45, 0xb5, 0x24, 0x24, 0xfd, 0x95, 0xd4, 0xd1, 0xb1, 0x88, 0x9a, 0x64, 0x92,
+0x92, 0x99, 0xf9, 0xad, 0x89, 0xcb, 0x76, 0xed, 0x2e, 0x0f, 0x65, 0x2d, 0xf9, 0x45, 0x64, 0x57,
+0x38, 0x60, 0xd6, 0x5e, 0x4b, 0x52, 0x85, 0x3a, 0x7e, 0x19, 0x2a, 0xf3, 0xbd, 0xcd, 0xd1, 0xaf,
+0x7a, 0x9e, 0xfc, 0x9b, 0x28, 0xa7, 0xe5, 0xbc, 0xdb, 0xd8, 0xcc, 0xf6, 0x60, 0x13, 0x3f, 0x2c,
+0x39, 0x40, 0xe7, 0x4d, 0x35, 0x54, 0x23, 0x51, 0x05, 0x44, 0xe9, 0x2c, 0xfe, 0x0d, 0xf0, 0xeb,
+0x69, 0xcc, 0x47, 0xb5, 0x44, 0xaa, 0xf3, 0xab, 0x6f, 0xb8, 0x99, 0xcc, 0x88, 0xe4, 0x26, 0xfd,
+0x2c, 0x14, 0xbf, 0x27, 0x15, 0x37, 0x47, 0x41, 0x9d, 0x44, 0x85, 0x40, 0xcb, 0x33, 0x5f, 0x1f,
+0xbc, 0x05, 0xa6, 0xea, 0xfd, 0xd2, 0xf5, 0xc2, 0x79, 0xbc, 0x91, 0xbf, 0xa1, 0xca, 0xa1, 0xda,
+0x60, 0xed, 0x46, 0x00, 0x5e, 0x11, 0xd9, 0x1f, 0x5f, 0x2a, 0x65, 0x30, 0x85, 0x31, 0xc9, 0x2c,
+0xb1, 0x22, 0xd6, 0x13, 0xdc, 0x01, 0x9c, 0xef, 0x2d, 0xe0, 0xcf, 0xd5, 0x15, 0xd2, 0xdf, 0xd4,
+0xb9, 0xdc, 0x60, 0xe8, 0x34, 0xf5, 0xb2, 0x01, 0x58, 0x0c, 0x26, 0x14, 0xfa, 0x18, 0x08, 0x1b,
+0xa4, 0x1a, 0x2c, 0x18, 0xce, 0x13, 0x46, 0x0d, 0xfe, 0x04, 0xd0, 0xfb, 0x18, 0xf3, 0xa8, 0xec,
+0xa2, 0xe9, 0x6a, 0xea, 0x68, 0xee, 0x32, 0xf4, 0x24, 0xfa, 0xfc, 0xfe, 0xf6, 0x01, 0xf4, 0x02,
+0xd8, 0x02, 0xbe, 0x02, 0xe4, 0x03, 0xa6, 0x06, 0x1e, 0x0a, 0xe4, 0x0c, 0xc2, 0x0d, 0x04, 0x0c,
+0x5c, 0x08, 0x34, 0x04, 0xb4, 0x00, 0xba, 0xfe, 0xc8, 0xfd, 0xc2, 0xfc, 0xc8, 0xfa, 0x1c, 0xf7,
+0x54, 0xf2, 0x8a, 0xed, 0x8e, 0xea, 0x50, 0xeb, 0xb8, 0xf0, 0x5a, 0xfa, 0x2a, 0x06, 0x8a, 0x11,
+0xfa, 0x19, 0x1d, 0x1e, 0x23, 0x1e, 0x42, 0x1b, 0x9a, 0x16, 0xce, 0x10, 0x94, 0x09, 0x80, 0x00,
+0x92, 0xf5, 0x9e, 0xe9, 0x4f, 0xde, 0x15, 0xd6, 0x47, 0xd3, 0x77, 0xd7, 0xcf, 0xe2, 0x84, 0xf3,
+0xea, 0x06, 0x82, 0x19, 0x17, 0x28, 0x03, 0x31, 0xbd, 0x33, 0x1b, 0x31, 0xbb, 0x29, 0x7b, 0x1e,
+0x7c, 0x0f, 0x8c, 0xfd, 0x4a, 0xea, 0xa5, 0xd7, 0xf1, 0xc8, 0x5d, 0xc0, 0x29, 0xc0, 0xfd, 0xc8,
+0xeb, 0xd9, 0xf6, 0xf0, 0xa2, 0x0a, 0x15, 0x23, 0xd9, 0x36, 0x9b, 0x43, 0xf3, 0x47, 0x13, 0x44,
+0x6d, 0x38, 0x21, 0x26, 0x10, 0x0f, 0x2c, 0xf5, 0xb1, 0xdb, 0xdf, 0xc5, 0x65, 0xb6, 0xf3, 0xaf,
+0xf3, 0xb2, 0xdb, 0xbf, 0x65, 0xd5, 0x5c, 0xf1, 0x48, 0x10, 0x03, 0x2e, 0x43, 0x46, 0x96, 0x55,
+0xf8, 0x59, 0x8f, 0x52, 0xbf, 0x40, 0xaf, 0x26, 0xec, 0x07, 0x32, 0xe8, 0x75, 0xcb, 0x1f, 0xb5,
+0x90, 0xa7, 0xf6, 0xa3, 0x9a, 0xaa, 0x61, 0xbb, 0x43, 0xd5, 0xfa, 0xf5, 0xb0, 0x19, 0x95, 0x3b,
+0x70, 0x56, 0xec, 0x65, 0x3a, 0x67, 0x16, 0x5a, 0x4f, 0x41, 0x9f, 0x20, 0x3a, 0xfd, 0x4f, 0xdb,
+0xb1, 0xbe, 0x4a, 0xaa, 0x52, 0x9f, 0x76, 0x9e, 0x04, 0xa8, 0xf3, 0xbb, 0x97, 0xd9, 0x40, 0xfe,
+0x69, 0x25, 0x67, 0x49, 0x24, 0x64, 0xbc, 0x70, 0xfe, 0x6c, 0x08, 0x5a, 0x05, 0x3c, 0x30, 0x18,
+0x7c, 0xf3, 0x27, 0xd2, 0x3d, 0xb7, 0xd8, 0xa4, 0xdc, 0x9b, 0xf2, 0x9c, 0xee, 0xa8, 0x03, 0xc0,
+0x1b, 0xe1, 0xa2, 0x08, 0x21, 0x31, 0x39, 0x54, 0xcc, 0x6b, 0x5e, 0x73, 0x6a, 0x6a, 0x0f, 0x53,
+0xd1, 0x32, 0xa8, 0x0e, 0x4c, 0xeb, 0x41, 0xcc, 0x0f, 0xb4, 0x74, 0xa4, 0x2e, 0x9e, 0x4c, 0xa2,
+0x63, 0xb1, 0x73, 0xcb, 0x32, 0xee, 0x62, 0x15, 0x37, 0x3b, 0xb8, 0x59, 0x8e, 0x6b, 0xde, 0x6d,
+0x06, 0x61, 0x41, 0x48, 0x7b, 0x28, 0x72, 0x06, 0xbe, 0xe5, 0xcb, 0xc9, 0x93, 0xb4, 0xc0, 0xa7,
+0xb2, 0xa4, 0xcf, 0xab, 0xc3, 0xbd, 0x07, 0xd9, 0x9e, 0xfa, 0x3f, 0x1e, 0xa5, 0x3e, 0xd6, 0x56,
+0x4a, 0x63, 0x16, 0x62, 0x21, 0x54, 0x85, 0x3c, 0xff, 0x1e, 0xda, 0xff, 0x5b, 0xe2, 0x91, 0xc9,
+0xeb, 0xb7, 0x39, 0xaf, 0x19, 0xb0, 0xb3, 0xba, 0xfb, 0xcd, 0xaa, 0xe7, 0xca, 0x04, 0xa5, 0x21,
+0x97, 0x3a, 0x59, 0x4c, 0x6b, 0x54, 0x91, 0x51, 0xaf, 0x44, 0xc3, 0x2f, 0xfc, 0x15, 0x2e, 0xfb,
+0x4f, 0xe2, 0x87, 0xce, 0xff, 0xc1, 0x8f, 0xbd, 0xd7, 0xc1, 0x99, 0xcd, 0x0f, 0xdf, 0x10, 0xf4,
+0xe0, 0x09, 0xa3, 0x1e, 0x4f, 0x30, 0xa5, 0x3c, 0xf9, 0x41, 0x21, 0x3f, 0x25, 0x34, 0xc5, 0x22,
+0x90, 0x0d, 0xe6, 0xf7, 0x0c, 0xe5, 0x67, 0xd7, 0xb5, 0xd0, 0xf7, 0xd0, 0x05, 0xd7, 0x1f, 0xe1,
+0x60, 0xed, 0x6a, 0xfa, 0x82, 0x07, 0xde, 0x13, 0x2f, 0x1f, 0x9d, 0x27, 0xc7, 0x2b, 0x43, 0x2a,
+0xa7, 0x22, 0x62, 0x16, 0x56, 0x07, 0xda, 0xf8, 0x66, 0xed, 0xbe, 0xe6, 0x2e, 0xe5, 0xb2, 0xe7,
+0x80, 0xec, 0xd0, 0xf1, 0xac, 0xf6, 0x0a, 0xfb, 0xc4, 0xff, 0x4e, 0x05, 0xba, 0x0b, 0xb6, 0x11,
+0xaa, 0x15, 0x52, 0x16, 0xec, 0x12, 0x96, 0x0c, 0x24, 0x05, 0xd0, 0xfe, 0x66, 0xfb, 0xc0, 0xfa,
+0x46, 0xfc, 0x5e, 0xfe, 0x28, 0xff, 0xfa, 0xfd, 0xc4, 0xfa, 0xda, 0xf6, 0x06, 0xf4, 0x5c, 0xf3,
+0x5e, 0xf5, 0x6a, 0xf9, 0x16, 0xfe, 0x72, 0x02, 0x9e, 0x05, 0xd6, 0x07, 0xe2, 0x09, 0x86, 0x0c,
+0xd8, 0x0f, 0xf6, 0x12, 0x72, 0x14, 0x38, 0x13, 0x80, 0x0e, 0x40, 0x06, 0x94, 0xfb, 0x1c, 0xf0,
+0x4c, 0xe6, 0xe5, 0xdf, 0x19, 0xde, 0x35, 0xe1, 0x54, 0xe8, 0x7a, 0xf2, 0xe4, 0xfd, 0x7e, 0x09,
+0x82, 0x14, 0x25, 0x1e, 0x63, 0x25, 0x41, 0x29, 0x9f, 0x28, 0x4f, 0x23, 0x2c, 0x19, 0x9c, 0x0a,
+0x2e, 0xf9, 0xde, 0xe6, 0xbd, 0xd6, 0x79, 0xcb, 0x3f, 0xc7, 0x53, 0xcb, 0xf7, 0xd6, 0x92, 0xe8,
+0x10, 0xfd, 0x92, 0x11, 0xbf, 0x23, 0xcf, 0x31, 0x8d, 0x3a, 0x27, 0x3d, 0x67, 0x39, 0x75, 0x2f,
+0xd1, 0x1f, 0x14, 0x0b, 0xea, 0xf2, 0x0d, 0xda, 0x59, 0xc4, 0xe9, 0xb5, 0xb9, 0xb1, 0x6d, 0xb9,
+0xef, 0xcb, 0xb2, 0xe5, 0x50, 0x02, 0x37, 0x1d, 0x89, 0x33, 0x29, 0x43, 0x53, 0x4b, 0xe7, 0x4b,
+0xe7, 0x44, 0xdd, 0x36, 0x05, 0x22, 0x4e, 0x07, 0xee, 0xe8, 0xbd, 0xca, 0x97, 0xb1, 0xb8, 0xa2,
+0xa0, 0xa1, 0xed, 0xae, 0x77, 0xc8, 0x16, 0xe9, 0x20, 0x0b, 0x9f, 0x29, 0x57, 0x41, 0x27, 0x51,
+0x68, 0x58, 0xec, 0x56, 0xc9, 0x4c, 0x31, 0x3a, 0xcf, 0x1f, 0x32, 0xff, 0x85, 0xdb, 0xc7, 0xb9,
+0x3c, 0xa0, 0xfe, 0x93, 0xb2, 0x97, 0xf2, 0xaa, 0xfd, 0xc9, 0xd8, 0xee, 0x84, 0x13, 0x53, 0x33,
+0xa3, 0x4b, 0x48, 0x5b, 0x70, 0x61, 0x98, 0x5d, 0xa7, 0x4f, 0x3b, 0x38, 0x6c, 0x18, 0x22, 0xf3,
+0xaf, 0xcc, 0x26, 0xab, 0x70, 0x94, 0xc6, 0x8c, 0x88, 0x95, 0x29, 0xad, 0x53, 0xcf, 0x18, 0xf6,
+0xa0, 0x1b, 0x81, 0x3b, 0x6b, 0x53, 0x04, 0x62, 0x00, 0x66, 0x98, 0x5e, 0x1b, 0x4c, 0xb5, 0x2f,
+0x14, 0x0c, 0x04, 0xe5, 0xad, 0xbf, 0xe8, 0xa1, 0x82, 0x90, 0xc4, 0x8d, 0x4c, 0x9a, 0xff, 0xb3,
+0xb3, 0xd6, 0x18, 0xfd, 0xe5, 0x21, 0x11, 0x41, 0x04, 0x58, 0x8c, 0x64, 0x00, 0x65, 0x4e, 0x59,
+0x61, 0x42, 0x09, 0x23, 0xbe, 0xfe, 0xbb, 0xd9, 0x2f, 0xb9, 0x3a, 0xa1, 0xcc, 0x94, 0x84, 0x95,
+0x78, 0xa3, 0xff, 0xbc, 0xc5, 0xde, 0xcc, 0x03, 0x31, 0x27, 0xa9, 0x44, 0xea, 0x58, 0x9a, 0x61,
+0x82, 0x5d, 0x73, 0x4d, 0x2b, 0x34, 0xbc, 0x14, 0xb0, 0xf3, 0x69, 0xd4, 0x63, 0xba, 0x56, 0xa8,
+0xe2, 0x9f, 0x18, 0xa2, 0x99, 0xaf, 0xab, 0xc7, 0x1a, 0xe7, 0xe0, 0x09, 0x4b, 0x2a, 0x35, 0x44,
+0x11, 0x54, 0xb2, 0x57, 0x7f, 0x4f, 0xb5, 0x3d, 0x35, 0x25, 0xd8, 0x09, 0xc0, 0xee, 0x47, 0xd6,
+0xcf, 0xc2, 0x37, 0xb5, 0xdb, 0xae, 0x5d, 0xb1, 0xcd, 0xbd, 0x71, 0xd3, 0x08, 0xf0, 0xaa, 0x0e,
+0x55, 0x2a, 0xc1, 0x3e, 0xbf, 0x48, 0xc7, 0x47, 0x73, 0x3d, 0x37, 0x2c, 0x9c, 0x17, 0x9a, 0x02,
+0xce, 0xee, 0xb9, 0xdd, 0xd9, 0xcf, 0xf5, 0xc5, 0x71, 0xc1, 0xc7, 0xc3, 0x27, 0xce, 0x6b, 0xe0,
+0x9a, 0xf7, 0xbe, 0x0f, 0x3b, 0x24, 0xa9, 0x31, 0x87, 0x36, 0x17, 0x33, 0x83, 0x29, 0x73, 0x1c,
+0x70, 0x0e, 0xc8, 0x00, 0x9e, 0xf4, 0xfe, 0xe9, 0x1b, 0xe1, 0x43, 0xda, 0x91, 0xd6, 0x9d, 0xd7,
+0x51, 0xde, 0x4e, 0xea, 0x9a, 0xf9, 0x42, 0x09, 0xd6, 0x15, 0x95, 0x1d, 0x73, 0x1f, 0xab, 0x1c,
+0x0e, 0x17, 0x14, 0x10, 0x4e, 0x09, 0x5c, 0x03, 0x50, 0xfe, 0xb4, 0xf9, 0x1e, 0xf5, 0xc0, 0xf0,
+0x4c, 0xed, 0x88, 0xeb, 0x54, 0xec, 0x1c, 0xf0, 0xf2, 0xf5, 0x7e, 0xfc, 0x44, 0x02, 0xfe, 0x05,
+0xe4, 0x07, 0x1a, 0x08, 0xa2, 0x07, 0x6a, 0x07, 0xe4, 0x07, 0x02, 0x09, 0x78, 0x0a, 0x74, 0x0b,
+0xb4, 0x0a, 0xd8, 0x07, 0x94, 0x02, 0xf8, 0xfb, 0x1a, 0xf5, 0x56, 0xef, 0xb2, 0xeb, 0x7c, 0xea,
+0x72, 0xeb, 0xc8, 0xed, 0x4c, 0xf1, 0x8e, 0xf5, 0xd8, 0xfa, 0x38, 0x01, 0xde, 0x08, 0x74, 0x11,
+0xfc, 0x19, 0x77, 0x20, 0xcf, 0x22, 0xa7, 0x1f, 0x60, 0x16, 0x76, 0x08, 0x44, 0xf8, 0x00, 0xe9,
+0x51, 0xdd, 0x69, 0xd6, 0x7b, 0xd4, 0xeb, 0xd6, 0xdb, 0xdc, 0x96, 0xe5, 0x10, 0xf1, 0x1e, 0xff,
+0xfa, 0x0e, 0x61, 0x1f, 0xe9, 0x2d, 0xbb, 0x37, 0xfb, 0x39, 0xd1, 0x32, 0xed, 0x22, 0xe0, 0x0c,
+0x82, 0xf4, 0x21, 0xde, 0x13, 0xcd, 0x3f, 0xc3, 0x83, 0xc0, 0xcd, 0xc3, 0xad, 0xcc, 0x85, 0xda,
+0xa2, 0xec, 0x30, 0x02, 0x8a, 0x19, 0x39, 0x30, 0xc9, 0x42, 0x71, 0x4d, 0x3f, 0x4d, 0x3d, 0x41,
+0xd5, 0x2a, 0xaa, 0x0d, 0xb8, 0xee, 0x9d, 0xd2, 0x87, 0xbd, 0x19, 0xb1, 0xd1, 0xad, 0x07, 0xb3,
+0x9f, 0xbf, 0xf3, 0xd2, 0x36, 0xec, 0x16, 0x09, 0x9d, 0x26, 0x81, 0x41, 0x26, 0x55, 0x4e, 0x5e,
+0x46, 0x5a, 0xfb, 0x48, 0x17, 0x2d, 0x12, 0x0b, 0xb2, 0xe7, 0x15, 0xc8, 0x51, 0xb0, 0x86, 0xa2,
+0xcc, 0x9f, 0x74, 0xa7, 0xfb, 0xb8, 0x4b, 0xd3, 0xa2, 0xf3, 0x42, 0x16, 0x2f, 0x37, 0x0d, 0x52,
+0x70, 0x63, 0x42, 0x68, 0x60, 0x5f, 0xef, 0x49, 0xe3, 0x2a, 0x04, 0x06, 0x63, 0xe0, 0xe7, 0xbe,
+0xd6, 0xa5, 0x6a, 0x98, 0x58, 0x97, 0xd2, 0xa2, 0x9d, 0xb9, 0x5d, 0xd9, 0x22, 0xfe, 0x4f, 0x23,
+0x03, 0x44, 0x6e, 0x5c, 0xfe, 0x69, 0xd8, 0x6a, 0xf4, 0x5e, 0x51, 0x47, 0xb1, 0x26, 0x76, 0x00,
+0x43, 0xd9, 0x57, 0xb6, 0xf6, 0x9c, 0xd6, 0x90, 0x62, 0x93, 0xe8, 0xa3, 0x29, 0xc0, 0x5e, 0xe4,
+0x0e, 0x0b, 0x33, 0x2f, 0xa1, 0x4c, 0xcc, 0x60, 0x3a, 0x6a, 0xda, 0x67, 0xb8, 0x59, 0x09, 0x41,
+0xa9, 0x1f, 0xca, 0xf8, 0x71, 0xd1, 0x41, 0xaf, 0x26, 0x98, 0xec, 0x8f, 0x52, 0x97, 0xd9, 0xac,
+0xa7, 0xcc, 0x5a, 0xf1, 0xca, 0x15, 0x75, 0x35, 0x97, 0x4d, 0x1c, 0x5d, 0x28, 0x63, 0xfe, 0x5e,
+0x77, 0x50, 0xc9, 0x37, 0xb4, 0x16, 0xa2, 0xf0, 0xd7, 0xca, 0xdb, 0xab, 0x70, 0x99, 0x7c, 0x96,
+0x9e, 0xa2, 0xdf, 0xba, 0x87, 0xda, 0x6a, 0xfc, 0xec, 0x1b, 0xe3, 0x35, 0xf3, 0x48, 0x87, 0x54,
+0x1c, 0x58, 0xa7, 0x52, 0xd7, 0x43, 0xdb, 0x2b, 0x64, 0x0c, 0x44, 0xe9, 0x09, 0xc8, 0x0b, 0xaf,
+0xb8, 0xa2, 0xaa, 0xa4, 0x33, 0xb3, 0xf3, 0xca, 0x0c, 0xe7, 0x60, 0x03, 0x9f, 0x1c, 0xe3, 0x30,
+0x7b, 0x3f, 0xab, 0x47, 0xff, 0x48, 0xc5, 0x42, 0x8d, 0x34, 0xab, 0x1e, 0x6e, 0x03, 0x38, 0xe6,
+0x2f, 0xcc, 0x1f, 0xba, 0x05, 0xb3, 0x69, 0xb7, 0x57, 0xc5, 0x57, 0xd9, 0xf8, 0xef, 0x22, 0x06,
+0x6c, 0x19, 0x89, 0x28, 0xc5, 0x32, 0x8f, 0x37, 0xad, 0x36, 0xd7, 0x2f, 0x5d, 0x23, 0x2c, 0x12,
+0xd4, 0xfd, 0x5c, 0xe9, 0xf5, 0xd7, 0xd9, 0xcc, 0x6d, 0xc9, 0xc9, 0xcd, 0x4d, 0xd8, 0xdc, 0xe6,
+0xcc, 0xf6, 0xea, 0x05, 0xba, 0x12, 0xe6, 0x1b, 0x53, 0x21, 0x8d, 0x22, 0x7b, 0x20, 0x76, 0x1b,
+0xec, 0x13, 0x4e, 0x0a, 0x62, 0xff, 0x38, 0xf4, 0x5a, 0xea, 0xb1, 0xe3, 0xeb, 0xe0, 0xf1, 0xe2,
+0xbc, 0xe8, 0xda, 0xf0, 0x00, 0xfa, 0x58, 0x02, 0x7a, 0x08, 0xe2, 0x0b, 0xb4, 0x0c, 0xbc, 0x0b,
+0x86, 0x0a, 0x8a, 0x09, 0x06, 0x09, 0x96, 0x08, 0xf4, 0x06, 0xca, 0x03, 0x88, 0xff, 0x20, 0xfb,
+0xe0, 0xf7, 0x92, 0xf6, 0x26, 0xf7, 0xe2, 0xf8, 0x96, 0xfa, 0xf0, 0xfa, 0xd8, 0xf9, 0x74, 0xf7,
+0x24, 0xf5, 0x98, 0xf4, 0xf8, 0xf6, 0xd2, 0xfc, 0xfa, 0x04, 0x80, 0x0d, 0x1e, 0x14, 0x46, 0x17,
+0x68, 0x16, 0x9a, 0x12, 0x54, 0x0d, 0xcc, 0x07, 0x6e, 0x02, 0xb2, 0xfc, 0x24, 0xf6, 0x86, 0xee,
+0x78, 0xe6, 0xcd, 0xdf, 0xa7, 0xdc, 0x0d, 0xdf, 0x8c, 0xe7, 0x4e, 0xf5, 0xe8, 0x05, 0x64, 0x16,
+0x59, 0x23, 0xbb, 0x2a, 0x21, 0x2c, 0x3b, 0x28, 0x9d, 0x20, 0x2c, 0x16, 0xc6, 0x09, 0x9a, 0xfb,
+0x7c, 0xec, 0x67, 0xdd, 0xe3, 0xd0, 0x1d, 0xc9, 0x69, 0xc8, 0xcd, 0xcf, 0xff, 0xde, 0x06, 0xf4,
+0x88, 0x0b, 0xdf, 0x21, 0x8b, 0x33, 0x3b, 0x3e, 0x89, 0x40, 0x6f, 0x3b, 0xc9, 0x2f, 0x01, 0x1f,
+0x68, 0x0a, 0xb0, 0xf3, 0x1d, 0xdd, 0x87, 0xc9, 0x89, 0xbb, 0x71, 0xb5, 0xdd, 0xb8, 0xbb, 0xc5,
+0x9f, 0xda, 0x56, 0xf5, 0x30, 0x12, 0x71, 0x2d, 0xff, 0x42, 0xd3, 0x4f, 0x5f, 0x52, 0x81, 0x4a,
+0x79, 0x39, 0x43, 0x21, 0xf2, 0x04, 0x68, 0xe7, 0x97, 0xcc, 0x77, 0xb7, 0xf8, 0xaa, 0x7e, 0xa8,
+0x39, 0xb0, 0xc1, 0xc1, 0x59, 0xdb, 0x76, 0xfa, 0x58, 0x1b, 0xff, 0x39, 0x09, 0x52, 0xc4, 0x5f,
+0xd4, 0x60, 0xa1, 0x54, 0x45, 0x3d, 0xf9, 0x1d, 0x30, 0xfb, 0x71, 0xd9, 0x25, 0xbd, 0x9e, 0xa9,
+0x22, 0xa0, 0x68, 0xa1, 0xd5, 0xac, 0xd9, 0xc1, 0xd9, 0xde, 0x5c, 0x01, 0x91, 0x25, 0xdb, 0x46,
+0x22, 0x60, 0x4e, 0x6c, 0x26, 0x69, 0xc4, 0x56, 0x95, 0x38, 0xd6, 0x13, 0x12, 0xee, 0x71, 0xcc,
+0x63, 0xb2, 0x1a, 0xa2, 0x0a, 0x9c, 0x3c, 0xa0, 0x45, 0xae, 0xcf, 0xc5, 0x6e, 0xe5, 0x52, 0x0a,
+0x5f, 0x30, 0xd3, 0x51, 0x26, 0x69, 0xd2, 0x71, 0x96, 0x69, 0x37, 0x52, 0x71, 0x30, 0x12, 0x0a,
+0xca, 0xe4, 0x09, 0xc5, 0x8f, 0xad, 0xe8, 0x9f, 0x8e, 0x9c, 0x28, 0xa3, 0xe1, 0xb3, 0x11, 0xce,
+0xd2, 0xef, 0xae, 0x15, 0xb1, 0x3a, 0x54, 0x59, 0x14, 0x6c, 0x22, 0x6f, 0xfc, 0x61, 0x75, 0x47,
+0xd1, 0x24, 0xe2, 0xff, 0x87, 0xdd, 0x45, 0xc1, 0x81, 0xad, 0x4a, 0xa3, 0xb6, 0xa2, 0x21, 0xac,
+0xf3, 0xbe, 0x7f, 0xda, 0x20, 0xfc, 0xe9, 0x1f, 0xa9, 0x40, 0x84, 0x59, 0x6a, 0x66, 0xe2, 0x64,
+0x92, 0x55, 0x81, 0x3b, 0x86, 0x1b, 0x54, 0xfa, 0x01, 0xdc, 0x6f, 0xc3, 0xbf, 0xb2, 0x53, 0xab,
+0x77, 0xad, 0x1f, 0xb9, 0xa3, 0xcd, 0xd8, 0xe8, 0xca, 0x07, 0x65, 0x26, 0xd5, 0x40, 0x1f, 0x53,
+0xc2, 0x5a, 0x78, 0x56, 0x25, 0x47, 0x8d, 0x2f, 0x16, 0x13, 0x00, 0xf6, 0xa1, 0xdb, 0x59, 0xc7,
+0xcf, 0xba, 0x49, 0xb7, 0xe3, 0xbc, 0xbf, 0xca, 0xd3, 0xde, 0x8a, 0xf6, 0x1a, 0x0f, 0x8b, 0x25,
+0xdb, 0x37, 0xe7, 0x43, 0x09, 0x48, 0x95, 0x43, 0x97, 0x36, 0xc7, 0x22, 0x48, 0x0b, 0x88, 0xf3,
+0xc5, 0xde, 0xcb, 0xcf, 0x65, 0xc8, 0x01, 0xc9, 0xff, 0xd0, 0x3f, 0xde, 0xa2, 0xee, 0xb0, 0xff,
+0xc0, 0x0f, 0xd1, 0x1d, 0xeb, 0x28, 0x77, 0x30, 0x25, 0x33, 0xfb, 0x2f, 0x95, 0x26, 0x26, 0x18,
+0x8e, 0x06, 0x3e, 0xf5, 0x30, 0xe7, 0x59, 0xde, 0xdd, 0xdb, 0x01, 0xdf, 0x56, 0xe6, 0x92, 0xef,
+0xd4, 0xf8, 0xf6, 0x00, 0x0a, 0x08, 0x8a, 0x0e, 0xa8, 0x14, 0xf4, 0x19, 0x2f, 0x1d, 0x25, 0x1d,
+0x9a, 0x18, 0x2a, 0x10, 0xc0, 0x05, 0xbc, 0xfb, 0x92, 0xf4, 0x60, 0xf1, 0xf8, 0xf1, 0x2c, 0xf5,
+0x40, 0xf9, 0x3e, 0xfc, 0x6e, 0xfd, 0x2c, 0xfd, 0x8e, 0xfc, 0xfa, 0xfc, 0x24, 0xff, 0xfc, 0x02,
+0x3c, 0x07, 0x86, 0x0a, 0xb0, 0x0b, 0xb2, 0x0a, 0xba, 0x08, 0x4e, 0x07, 0x46, 0x07, 0x8e, 0x08,
+0x46, 0x0a, 0xce, 0x0a, 0xf8, 0x08, 0x52, 0x04, 0x36, 0xfd, 0x18, 0xf5, 0xc6, 0xed, 0x1c, 0xe9,
+0x26, 0xe8, 0x5a, 0xeb, 0xd0, 0xf1, 0xfa, 0xf9, 0x9a, 0x02, 0xba, 0x0a, 0x2a, 0x12, 0x94, 0x18,
+0xb7, 0x1d, 0x83, 0x20, 0x47, 0x20, 0x2e, 0x1c, 0xee, 0x13, 0x16, 0x08, 0xb2, 0xf9, 0xbe, 0xea,
+0x37, 0xdd, 0xeb, 0xd3, 0xb9, 0xd0, 0x8f, 0xd4, 0xeb, 0xde, 0x18, 0xee, 0x92, 0xff, 0x12, 0x11,
+0xa5, 0x20, 0x8b, 0x2c, 0xe1, 0x33, 0xcf, 0x35, 0xf9, 0x31, 0x99, 0x28, 0x2c, 0x1a, 0xa6, 0x07,
+0xb8, 0xf2, 0x83, 0xdd, 0x1f, 0xcb, 0xb7, 0xbe, 0x3b, 0xbb, 0x33, 0xc2, 0xb1, 0xd2, 0x02, 0xea,
+0x4c, 0x04, 0x57, 0x1d, 0xf1, 0x31, 0x29, 0x40, 0xef, 0x46, 0x59, 0x46, 0xbd, 0x3e, 0x5b, 0x30,
+0x67, 0x1c, 0x06, 0x04, 0x1a, 0xe9, 0xaf, 0xce, 0x7d, 0xb8, 0x08, 0xab, 0x9a, 0xa9, 0x85, 0xb5,
+0x13, 0xcd, 0x38, 0xec, 0x30, 0x0d, 0x07, 0x2b, 0xfb, 0x41, 0x3b, 0x50, 0x9e, 0x55, 0x05, 0x52,
+0x6d, 0x46, 0x97, 0x33, 0x80, 0x1a, 0xa8, 0xfc, 0xb9, 0xdc, 0x6d, 0xbe, 0xe8, 0xa6, 0xf2, 0x9a,
+0xd0, 0x9d, 0x17, 0xb0, 0x83, 0xce, 0x74, 0xf3, 0x7a, 0x18, 0x2d, 0x38, 0x45, 0x4f, 0x66, 0x5c,
+0x48, 0x5f, 0xd4, 0x58, 0x73, 0x49, 0x43, 0x32, 0x84, 0x14, 0x36, 0xf2, 0xd3, 0xce, 0x63, 0xaf,
+0x72, 0x99, 0x76, 0x91, 0xe2, 0x99, 0x65, 0xb1, 0x37, 0xd4, 0xf6, 0xfb, 0x21, 0x22, 0xb1, 0x41,
+0xb8, 0x57, 0x5a, 0x63, 0x04, 0x64, 0x58, 0x5a, 0x2b, 0x47, 0xcf, 0x2b, 0xf2, 0x09, 0xc2, 0xe4,
+0xe9, 0xc0, 0xb6, 0xa3, 0x62, 0x92, 0xc2, 0x8f, 0xe0, 0x9c, 0xdf, 0xb7, 0x47, 0xdc, 0x10, 0x04,
+0x39, 0x29, 0xa3, 0x47, 0x3e, 0x5c, 0xea, 0x65, 0xf4, 0x63, 0xcc, 0x56, 0xa3, 0x3f, 0x91, 0x20,
+0x98, 0xfc, 0xcb, 0xd7, 0x3b, 0xb7, 0x5a, 0x9f, 0xb4, 0x93, 0xd4, 0x95, 0x96, 0xa5, 0x07, 0xc1,
+0x3c, 0xe4, 0x22, 0x0a, 0x57, 0x2d, 0xc9, 0x49, 0x8e, 0x5c, 0xc6, 0x63, 0xa0, 0x5e, 0xdd, 0x4d,
+0x9f, 0x33, 0x34, 0x13, 0x84, 0xf0, 0x9f, 0xcf, 0xeb, 0xb4, 0x56, 0xa3, 0x6c, 0x9c, 0xf6, 0xa0,
+0xd3, 0xb0, 0xb1, 0xca, 0x8e, 0xeb, 0xcc, 0x0e, 0x77, 0x2f, 0x6d, 0x49, 0xf8, 0x58, 0x44, 0x5c,
+0x1b, 0x53, 0x67, 0x3f, 0x5d, 0x24, 0xda, 0x05, 0xe8, 0xe7, 0x0b, 0xce, 0x6d, 0xba, 0x6d, 0xae,
+0xe8, 0xaa, 0x0d, 0xb0, 0x7d, 0xbe, 0x5b, 0xd5, 0x58, 0xf2, 0xaa, 0x11, 0x75, 0x2e, 0xef, 0x43,
+0x0d, 0x4f, 0x51, 0x4e, 0x9d, 0x42, 0xcd, 0x2e, 0x96, 0x16, 0xe6, 0xfd, 0x6c, 0xe7, 0xe5, 0xd4,
+0x4f, 0xc7, 0x05, 0xbf, 0x71, 0xbc, 0xab, 0xc0, 0x53, 0xcc, 0x79, 0xdf, 0x2c, 0xf8, 0x46, 0x12,
+0x59, 0x29, 0x45, 0x39, 0x73, 0x3f, 0xc5, 0x3b, 0x03, 0x30, 0x3d, 0x1f, 0xcc, 0x0c, 0x08, 0xfb,
+0xda, 0xeb, 0xf3, 0xdf, 0x1f, 0xd7, 0x8f, 0xd1, 0xeb, 0xcf, 0xf7, 0xd2, 0xcd, 0xdb, 0xfe, 0xe9,
+0xd2, 0xfb, 0x3c, 0x0e, 0x6f, 0x1d, 0xad, 0x26, 0xeb, 0x28, 0xcf, 0x24, 0x53, 0x1c, 0xbc, 0x11,
+0xee, 0x06, 0xc0, 0xfd, 0x3a, 0xf6, 0x3a, 0xf0, 0x8e, 0xeb, 0x14, 0xe8, 0x22, 0xe6, 0x5e, 0xe6,
+0xa0, 0xe9, 0x26, 0xf0, 0x30, 0xf9, 0x98, 0x02, 0xbe, 0x0a, 0xd6, 0x0f, 0x94, 0x11, 0x7e, 0x10,
+0x9c, 0x0d, 0x22, 0x0a, 0x0a, 0x07, 0xda, 0x04, 0x7e, 0x03, 0xb4, 0x02, 0x6e, 0x01, 0x18, 0xff,
+0x62, 0xfb, 0xf6, 0xf6, 0xba, 0xf2, 0xde, 0xef, 0x48, 0xef, 0xea, 0xf0, 0x0c, 0xf4, 0x8a, 0xf7,
+0xf6, 0xfa, 0x38, 0xfe, 0x94, 0x01, 0x42, 0x05, 0x98, 0x09, 0xc8, 0x0e, 0x08, 0x14, 0xf2, 0x17,
+0xfc, 0x18, 0x1e, 0x16, 0x90, 0x0e, 0x2e, 0x03, 0x0a, 0xf6, 0xb6, 0xe9, 0xcb, 0xe0, 0x3d, 0xdc,
+0x03, 0xdc, 0x8f, 0xdf, 0xf8, 0xe5, 0x26, 0xee, 0xf4, 0xf7, 0x04, 0x03, 0x20, 0x0f, 0x84, 0x1b,
+0xa1, 0x26, 0x83, 0x2e, 0x87, 0x30, 0xe7, 0x2a, 0x87, 0x1d, 0xec, 0x09, 0x60, 0xf3, 0x73, 0xde,
+0x85, 0xce, 0xf3, 0xc5, 0xfb, 0xc4, 0x55, 0xca, 0xcb, 0xd4, 0xfb, 0xe2, 0x90, 0xf3, 0x06, 0x06,
+0x40, 0x19, 0xa5, 0x2b, 0xd3, 0x3a, 0xbd, 0x43, 0xf1, 0x43, 0xc1, 0x39, 0x6f, 0x25, 0x16, 0x0a,
+0x70, 0xec, 0x77, 0xd1, 0xd9, 0xbd, 0x4d, 0xb3, 0x33, 0xb2, 0x87, 0xb9, 0xa5, 0xc7, 0x09, 0xdb,
+0x56, 0xf2, 0x04, 0x0c, 0x15, 0x26, 0xab, 0x3d, 0xf7, 0x4e, 0x0e, 0x57, 0x0f, 0x53, 0xbb, 0x42,
+0xe3, 0x27, 0x9a, 0x06, 0x14, 0xe4, 0xdb, 0xc5, 0x01, 0xb0, 0xca, 0xa4, 0x6a, 0xa4, 0xd1, 0xad,
+0x13, 0xc0, 0x35, 0xd9, 0x34, 0xf7, 0x14, 0x17, 0x91, 0x35, 0xd1, 0x4e, 0x12, 0x5f, 0x20, 0x63,
+0xf2, 0x59, 0x83, 0x44, 0x51, 0x25, 0xb2, 0x00, 0xbd, 0xdb, 0xc3, 0xbb, 0xdc, 0xa4, 0x98, 0x99,
+0x98, 0x9a, 0x92, 0xa7, 0xd7, 0xbe, 0xe3, 0xdd, 0x4c, 0x01, 0xe7, 0x24, 0x5b, 0x44, 0xdc, 0x5b,
+0x50, 0x68, 0xf4, 0x67, 0xb8, 0x5a, 0x11, 0x42, 0xdd, 0x20, 0xca, 0xfa, 0x65, 0xd4, 0x09, 0xb3,
+0x8a, 0x9b, 0x06, 0x91, 0xf2, 0x94, 0x6a, 0xa6, 0x2d, 0xc3, 0x8c, 0xe7, 0x68, 0x0e, 0x8b, 0x32,
+0xdb, 0x4f, 0x4c, 0x63, 0xf2, 0x6a, 0x52, 0x66, 0xf0, 0x55, 0xb9, 0x3b, 0xd0, 0x19, 0x6a, 0xf3,
+0x17, 0xcd, 0x4b, 0xac, 0x64, 0x96, 0xf2, 0x8e, 0xfc, 0x96, 0x31, 0xad, 0x31, 0xce, 0x6e, 0xf4,
+0x84, 0x1a, 0x87, 0x3b, 0x0f, 0x54, 0x84, 0x62, 0x22, 0x66, 0xd6, 0x5e, 0x95, 0x4d, 0x7b, 0x33,
+0x44, 0x12, 0x02, 0xed, 0x1b, 0xc8, 0x88, 0xa9, 0xd6, 0x96, 0x76, 0x93, 0xd0, 0x9f, 0x8d, 0xb9,
+0xb7, 0xdb, 0xba, 0x00, 0xd3, 0x22, 0x31, 0x3e, 0x35, 0x51, 0xe0, 0x5a, 0x64, 0x5b, 0xa1, 0x52,
+0x61, 0x41, 0x5d, 0x28, 0x2e, 0x09, 0x5c, 0xe6, 0x23, 0xc5, 0x53, 0xab, 0xae, 0x9d, 0x20, 0x9f,
+0x77, 0xae, 0xf5, 0xc8, 0x04, 0xe9, 0x20, 0x09, 0xe7, 0x24, 0x41, 0x3a, 0x23, 0x48, 0x69, 0x4e,
+0x17, 0x4d, 0x19, 0x44, 0x01, 0x34, 0xfb, 0x1c, 0xf0, 0x00, 0xcf, 0xe2, 0x61, 0xc7, 0xbd, 0xb3,
+0xa7, 0xab, 0x63, 0xb0, 0xbf, 0xc0, 0xb7, 0xd8, 0xa6, 0xf3, 0x54, 0x0d, 0x67, 0x22, 0xc9, 0x31,
+0x19, 0x3b, 0x37, 0x3e, 0x3b, 0x3b, 0x5d, 0x32, 0xd5, 0x23, 0xc0, 0x10, 0x72, 0xfa, 0xc0, 0xe3,
+0x69, 0xd0, 0xc7, 0xc3, 0x3f, 0xc0, 0xf7, 0xc5, 0x81, 0xd3, 0x02, 0xe6, 0xc0, 0xf9, 0xac, 0x0b,
+0x1a, 0x1a, 0x13, 0x24, 0x7f, 0x29, 0x51, 0x2a, 0xb9, 0x26, 0x73, 0x1f, 0x2a, 0x15, 0x3c, 0x08,
+0x3a, 0xfa, 0x6c, 0xec, 0xed, 0xe0, 0x7b, 0xd9, 0x53, 0xd7, 0x03, 0xdb, 0xab, 0xe3, 0x5c, 0xef,
+0xbe, 0xfb, 0xf4, 0x06, 0x66, 0x0f, 0xb2, 0x14, 0x7e, 0x16, 0x7a, 0x15, 0x6e, 0x12, 0x2c, 0x0e,
+0xb6, 0x09, 0x28, 0x05, 0x60, 0x00, 0x3a, 0xfb, 0xf2, 0xf5, 0x46, 0xf1, 0xa4, 0xee, 0x90, 0xee,
+0x50, 0xf1, 0xfc, 0xf5, 0xf8, 0xfa, 0xd4, 0xfe, 0xa4, 0x00, 0x66, 0x00, 0xee, 0xfe, 0x90, 0xfd,
+0x76, 0xfd, 0xae, 0xff, 0xec, 0x03, 0x2a, 0x09, 0x60, 0x0d, 0xfc, 0x0e, 0x86, 0x0d, 0x88, 0x09,
+0x98, 0x04, 0xf0, 0xff, 0x5c, 0xfc, 0x78, 0xf9, 0x9e, 0xf6, 0xd2, 0xf2, 0x3e, 0xee, 0xd4, 0xe9,
+0x2a, 0xe7, 0x2c, 0xe8, 0x9a, 0xed, 0xaa, 0xf7, 0xb0, 0x04, 0x60, 0x12, 0x85, 0x1d, 0xc9, 0x23,
+0x4b, 0x24, 0xc3, 0x1f, 0xca, 0x17, 0xf6, 0x0d, 0x6e, 0x03, 0x68, 0xf8, 0x3e, 0xed, 0x31, 0xe2,
+0x87, 0xd8, 0x51, 0xd2, 0x75, 0xd1, 0x45, 0xd7, 0xee, 0xe3, 0xea, 0xf5, 0xc0, 0x0a, 0xef, 0x1e,
+0xeb, 0x2e, 0x11, 0x38, 0x55, 0x39, 0x4b, 0x33, 0xa7, 0x27, 0x0c, 0x18, 0xca, 0x05, 0x60, 0xf2,
+0x2f, 0xdf, 0x7d, 0xce, 0x73, 0xc2, 0x41, 0xbd, 0xb1, 0xc0, 0xdf, 0xcc, 0x85, 0xe0, 0x50, 0xf9,
+0xd8, 0x13, 0x6d, 0x2c, 0x71, 0x3f, 0xff, 0x49, 0xeb, 0x4a, 0x99, 0x42, 0x1f, 0x32, 0x88, 0x1b,
+0x5e, 0x01, 0x2e, 0xe6, 0x89, 0xcd, 0x43, 0xba, 0x47, 0xaf, 0x19, 0xae, 0xe1, 0xb6, 0xd3, 0xc8,
+0xcd, 0xe1, 0x22, 0xff, 0x47, 0x1d, 0xd9, 0x38, 0xed, 0x4d, 0xac, 0x59, 0xba, 0x59, 0xc5, 0x4d,
+0x91, 0x37, 0xaa, 0x19, 0x30, 0xf8, 0x89, 0xd7, 0x3b, 0xbc, 0xe8, 0xa9, 0x4c, 0xa2, 0x98, 0xa5,
+0xef, 0xb2, 0x15, 0xc9, 0xac, 0xe5, 0x0a, 0x06, 0xd3, 0x26, 0x73, 0x44, 0xe2, 0x5a, 0xea, 0x65,
+0xf4, 0x62, 0xb5, 0x51, 0xdf, 0x34, 0xd2, 0x10, 0xe2, 0xea, 0xc5, 0xc8, 0xff, 0xae, 0x2c, 0xa0,
+0x98, 0x9c, 0xae, 0xa3, 0x33, 0xb4, 0xe9, 0xcc, 0xac, 0xeb, 0xe6, 0x0d, 0x69, 0x30, 0x29, 0x4f,
+0x32, 0x65, 0xc8, 0x6d, 0x66, 0x66, 0x99, 0x4f, 0x8f, 0x2d, 0x0a, 0x06, 0x51, 0xdf, 0x9f, 0xbe,
+0xf0, 0xa7, 0x98, 0x9c, 0x3a, 0x9c, 0xe6, 0xa5, 0x6b, 0xb8, 0xeb, 0xd2, 0x64, 0xf3, 0x1a, 0x17,
+0x21, 0x3a, 0xc2, 0x57, 0xa8, 0x6a, 0x70, 0x6e, 0xb2, 0x61, 0x59, 0x46, 0xed, 0x21, 0x80, 0xfa,
+0x07, 0xd6, 0x13, 0xb9, 0x76, 0xa6, 0xc8, 0x9e, 0x52, 0xa1, 0x49, 0xad, 0xd9, 0xc1, 0xeb, 0xdd,
+0x1e, 0xff, 0x33, 0x22, 0xa9, 0x42, 0xc2, 0x5b, 0xf6, 0x68, 0x1c, 0x67, 0x58, 0x56, 0xd1, 0x39,
+0xc4, 0x16, 0xbe, 0xf2, 0xcd, 0xd2, 0x2f, 0xba, 0x3a, 0xab, 0x66, 0xa6, 0xee, 0xaa, 0x45, 0xb8,
+0xdd, 0xcd, 0xea, 0xe9, 0x72, 0x09, 0xcd, 0x28, 0x01, 0x44, 0xf8, 0x56, 0x84, 0x5e, 0x32, 0x59,
+0xdd, 0x47, 0x8b, 0x2d, 0x48, 0x0e, 0xfa, 0xee, 0x7b, 0xd3, 0x0d, 0xbf, 0x4f, 0xb3, 0x39, 0xb1,
+0x57, 0xb8, 0x91, 0xc7, 0x8b, 0xdd, 0x8c, 0xf7, 0xa6, 0x12, 0x47, 0x2b, 0xc1, 0x3e, 0x83, 0x4a,
+0x63, 0x4d, 0xf9, 0x46, 0x81, 0x37, 0x85, 0x21, 0xee, 0x07, 0x7c, 0xee, 0x99, 0xd8, 0x15, 0xc9,
+0x5f, 0xc1, 0x39, 0xc2, 0x13, 0xcb, 0xf9, 0xd9, 0x48, 0xed, 0x08, 0x02, 0x8a, 0x15, 0xed, 0x25,
+0xd5, 0x31, 0xaf, 0x38, 0xc7, 0x39, 0x87, 0x34, 0xeb, 0x28, 0x42, 0x18, 0xa8, 0x04, 0x2e, 0xf1,
+0xf7, 0xe0, 0x61, 0xd6, 0xf7, 0xd2, 0x27, 0xd6, 0xed, 0xde, 0x66, 0xeb, 0xda, 0xf8, 0x7e, 0x05,
+0x06, 0x10, 0x26, 0x18, 0x29, 0x1e, 0x41, 0x22, 0xb5, 0x23, 0xc7, 0x21, 0x88, 0x1b, 0xf0, 0x10,
+0x00, 0x04, 0x22, 0xf7, 0x38, 0xed, 0x02, 0xe8, 0xfa, 0xe7, 0x3a, 0xec, 0xba, 0xf2, 0x56, 0xf9,
+0xbe, 0xfe, 0x62, 0x02, 0x94, 0x04, 0x72, 0x06, 0xe2, 0x08, 0x3e, 0x0c, 0x9e, 0x0f, 0x56, 0x11,
+0x60, 0x10, 0x9a, 0x0c, 0x14, 0x07, 0xf0, 0x01, 0xd4, 0xfe, 0x46, 0xfe, 0xd6, 0xff, 0xe6, 0x01,
+0xc4, 0x02, 0xc4, 0x01, 0x92, 0xfe, 0xd0, 0xf9, 0x02, 0xf5, 0x10, 0xf2, 0xe8, 0xf1, 0xfa, 0xf4,
+0x70, 0xfa, 0xaa, 0x00, 0x8e, 0x06, 0x52, 0x0b, 0x26, 0x0f, 0x44, 0x12, 0x0c, 0x15, 0xe0, 0x16,
+0x0a, 0x17, 0x50, 0x14, 0x48, 0x0e, 0x44, 0x05, 0x1a, 0xfa, 0x8e, 0xee, 0x3e, 0xe4, 0x5d, 0xdd,
+0x6b, 0xdb, 0x2f, 0xdf, 0xf6, 0xe7, 0x8c, 0xf4, 0xd0, 0x02, 0x00, 0x11, 0x79, 0x1d, 0xc1, 0x26,
+0x3f, 0x2c, 0x3f, 0x2d, 0x41, 0x29, 0x89, 0x20, 0xb6, 0x13, 0xae, 0x03, 0x0a, 0xf2, 0x97, 0xe0,
+0xb7, 0xd1, 0x1d, 0xc8, 0xdb, 0xc5, 0x0b, 0xcc, 0x75, 0xda, 0xfe, 0xee, 0x88, 0x06, 0x3d, 0x1d,
+0xf5, 0x2f, 0x6d, 0x3c, 0x83, 0x41, 0x45, 0x3f, 0x7f, 0x36, 0x25, 0x28, 0x6e, 0x15, 0xb4, 0xff,
+0x8e, 0xe8, 0x93, 0xd2, 0x4b, 0xc0, 0x01, 0xb5, 0xa5, 0xb3, 0xf5, 0xbd, 0xff, 0xd2, 0xe2, 0xef,
+0x6a, 0x0f, 0x43, 0x2c, 0x59, 0x42, 0x01, 0x4f, 0xdd, 0x51, 0xad, 0x4b, 0x71, 0x3e, 0x31, 0x2b,
+0xbc, 0x13, 0x28, 0xf9, 0x77, 0xdd, 0x6b, 0xc3, 0xe7, 0xae, 0xec, 0xa3, 0xac, 0xa5, 0xd3, 0xb5,
+0x3f, 0xd2, 0x38, 0xf6, 0x1c, 0x1b, 0xe1, 0x3a, 0x49, 0x51, 0xa4, 0x5c, 0xfa, 0x5c, 0x9b, 0x53,
+0x7d, 0x42, 0x47, 0x2b, 0x30, 0x0f, 0xe4, 0xef, 0x43, 0xd0, 0x17, 0xb4, 0xe4, 0x9f, 0x06, 0x98,
+0x38, 0x9f, 0xb3, 0xb5, 0x3b, 0xd8, 0x62, 0x00, 0x43, 0x27, 0xed, 0x46, 0x0c, 0x5c, 0x84, 0x65,
+0x58, 0x63, 0xf0, 0x56, 0x1f, 0x42, 0x8d, 0x26, 0xd4, 0x05, 0xc9, 0xe2, 0x37, 0xc1, 0x04, 0xa6,
+0x9c, 0x95, 0x56, 0x93, 0xb8, 0xa0, 0x41, 0xbc, 0xb9, 0xe1, 0x7a, 0x0a, 0x3d, 0x30, 0x2d, 0x4e,
+0x7a, 0x61, 0xa2, 0x68, 0x12, 0x64, 0xf2, 0x54, 0xb1, 0x3c, 0xc1, 0x1d, 0x4a, 0xfa, 0x09, 0xd6,
+0xed, 0xb5, 0xce, 0x9e, 0xac, 0x93, 0xda, 0x96, 0x16, 0xa8, 0x49, 0xc5, 0x24, 0xea, 0x0a, 0x11,
+0x9f, 0x34, 0x87, 0x50, 0xe8, 0x61, 0x1c, 0x67, 0x08, 0x60, 0xed, 0x4d, 0xd7, 0x32, 0x6e, 0x11,
+0xb6, 0xed, 0xfd, 0xcb, 0xb5, 0xb0, 0x4c, 0x9f, 0xe8, 0x99, 0xc0, 0xa0, 0x4d, 0xb3, 0x6f, 0xcf,
+0xbc, 0xf1, 0x9a, 0x15, 0x43, 0x36, 0x79, 0x4f, 0x0a, 0x5e, 0x84, 0x60, 0x64, 0x56, 0xab, 0x41,
+0x05, 0x25, 0x76, 0x04, 0xf0, 0xe3, 0xaf, 0xc7, 0x01, 0xb3, 0xd0, 0xa7, 0x94, 0xa6, 0xdb, 0xae,
+0x71, 0xc0, 0xaf, 0xd9, 0x08, 0xf8, 0xb0, 0x17, 0x77, 0x34, 0xdb, 0x49, 0xe4, 0x54, 0xdb, 0x53,
+0x4f, 0x47, 0xab, 0x31, 0x9a, 0x16, 0x00, 0xfa, 0xf1, 0xdf, 0x2d, 0xcb, 0x65, 0xbd, 0xcd, 0xb6,
+0x61, 0xb7, 0x1d, 0xbf, 0x93, 0xcd, 0xad, 0xe2, 0x26, 0xfc, 0x12, 0x17, 0x17, 0x2f, 0x45, 0x40,
+0x25, 0x47, 0x47, 0x43, 0xed, 0x35, 0xf1, 0x21, 0x5e, 0x0b, 0x8c, 0xf5, 0x71, 0xe3, 0xd1, 0xd5,
+0x6d, 0xcd, 0xb3, 0xc9, 0x99, 0xca, 0x4f, 0xd0, 0x39, 0xdb, 0x32, 0xeb, 0xca, 0xfe, 0x52, 0x13,
+0xdb, 0x24, 0x2b, 0x30, 0x39, 0x33, 0xe9, 0x2d, 0x4b, 0x22, 0x58, 0x13, 0x40, 0x04, 0x30, 0xf7,
+0x46, 0xed, 0x80, 0xe6, 0x63, 0xe2, 0x85, 0xe0, 0xa3, 0xe0, 0x5d, 0xe3, 0xe0, 0xe8, 0xc6, 0xf1,
+0x28, 0xfd, 0x22, 0x09, 0x62, 0x13, 0xa2, 0x19, 0xda, 0x1a, 0x7a, 0x17, 0x68, 0x11, 0x3e, 0x0a,
+0xe2, 0x03, 0x1c, 0xff, 0xfc, 0xfb, 0xf0, 0xf9, 0x4a, 0xf8, 0x98, 0xf6, 0x92, 0xf4, 0xb2, 0xf2,
+0x90, 0xf1, 0x12, 0xf2, 0xa0, 0xf4, 0xc8, 0xf8, 0x52, 0xfd, 0x2c, 0x01, 0x00, 0x04, 0x9e, 0x05,
+0x68, 0x06, 0x3c, 0x07, 0xae, 0x08, 0xac, 0x0a, 0xb8, 0x0c, 0x22, 0x0e, 0xe0, 0x0d, 0x72, 0x0b,
+0x4a, 0x06, 0x92, 0xfe, 0x8a, 0xf5, 0xe8, 0xec, 0xb4, 0xe6, 0xee, 0xe3, 0xfa, 0xe4, 0x14, 0xe9,
+0x46, 0xef, 0x98, 0xf6, 0x7a, 0xfe, 0xb6, 0x06, 0x16, 0x0f, 0x7c, 0x17, 0xbd, 0x1e, 0xcf, 0x23,
+0x17, 0x25, 0x11, 0x21, 0xda, 0x16, 0x3a, 0x07, 0x8a, 0xf4, 0x2f, 0xe2, 0x05, 0xd4, 0x77, 0xcc,
+0x2b, 0xcc, 0x53, 0xd2, 0x1d, 0xdd, 0xca, 0xea, 0xf2, 0xf9, 0xcc, 0x09, 0x84, 0x19, 0xdb, 0x27,
+0x81, 0x33, 0x5f, 0x3a, 0x41, 0x3a, 0x63, 0x31, 0x01, 0x20, 0xb4, 0x07, 0x9a, 0xec, 0x93, 0xd3,
+0x39, 0xc1, 0x51, 0xb8, 0xfd, 0xb8, 0xcd, 0xc1, 0xa9, 0xd0, 0xd0, 0xe3, 0x58, 0xf9, 0xd2, 0x0f,
+0xaf, 0x25, 0x45, 0x39, 0xe7, 0x47, 0xe1, 0x4e, 0x8f, 0x4b, 0xc7, 0x3c, 0x77, 0x23, 0x4c, 0x03,
+0x6d, 0xe1, 0x91, 0xc3, 0x97, 0xae, 0x32, 0xa5, 0x7c, 0xa7, 0xa7, 0xb3, 0xab, 0xc7, 0xcb, 0xe0,
+0xf4, 0xfc, 0xa4, 0x19, 0xb5, 0x34, 0x13, 0x4b, 0xe0, 0x59, 0xd8, 0x5d, 0x0c, 0x55, 0xe3, 0x3f,
+0xdf, 0x20, 0x42, 0xfc, 0x3d, 0xd7, 0xc7, 0xb7, 0x28, 0xa2, 0x2c, 0x99, 0xde, 0x9c, 0x07, 0xac,
+0x41, 0xc4, 0x07, 0xe3, 0x16, 0x05, 0xe9, 0x26, 0x11, 0x45, 0xe0, 0x5b, 0xcc, 0x67, 0x9a, 0x66,
+0x06, 0x58, 0xa1, 0x3d, 0xd4, 0x1a, 0xee, 0xf3, 0xe9, 0xcd, 0xd1, 0xad, 0x64, 0x98, 0x24, 0x90,
+0xde, 0x95, 0x86, 0xa8, 0xfb, 0xc5, 0x5c, 0xea, 0x36, 0x11, 0xe3, 0x35, 0xbd, 0x53, 0x20, 0x67,
+0xa6, 0x6d, 0xe2, 0x66, 0xbb, 0x53, 0xe9, 0x36, 0x64, 0x13, 0x94, 0xec, 0xed, 0xc6, 0x88, 0xa7,
+0x18, 0x93, 0x98, 0x8c, 0x64, 0x95, 0x61, 0xac, 0x79, 0xce, 0x9c, 0xf6, 0xdd, 0x1e, 0xe7, 0x41,
+0x86, 0x5b, 0x6c, 0x69, 0x92, 0x6a, 0x14, 0x60, 0x87, 0x4b, 0xf7, 0x2e, 0x6e, 0x0c, 0xfa, 0xe6,
+0xc7, 0xc2, 0xda, 0xa4, 0x68, 0x92, 0xc6, 0x8e, 0x3c, 0x9b, 0x01, 0xb6, 0xc5, 0xda, 0x10, 0x03,
+0xcb, 0x28, 0x0f, 0x47, 0xf2, 0x5a, 0x6c, 0x63, 0x32, 0x61, 0x4e, 0x55, 0x2f, 0x41, 0x17, 0x26,
+0xb2, 0x05, 0x6f, 0xe2, 0xb5, 0xc0, 0xf4, 0xa5, 0x1a, 0x97, 0x90, 0x97, 0xa8, 0xa7, 0x9d, 0xc4,
+0x96, 0xe8, 0x7e, 0x0d, 0x67, 0x2d, 0x43, 0x45, 0x6f, 0x53, 0x20, 0x58, 0x01, 0x54, 0x21, 0x48,
+0x5d, 0x35, 0x45, 0x1c, 0x96, 0xfe, 0xcf, 0xde, 0x93, 0xc1, 0xb3, 0xab, 0xea, 0xa1, 0x44, 0xa6,
+0x33, 0xb8, 0xe3, 0xd3, 0x9c, 0xf3, 0xf2, 0x11, 0xf3, 0x2a, 0xbf, 0x3c, 0x75, 0x46, 0xad, 0x48,
+0x0b, 0x44, 0x13, 0x39, 0x3f, 0x28, 0x8a, 0x12, 0x92, 0xf9, 0xf1, 0xdf, 0x4f, 0xc9, 0xef, 0xb9,
+0xbd, 0xb4, 0xf1, 0xba, 0x01, 0xcb, 0x7b, 0xe1, 0xca, 0xf9, 0x32, 0x10, 0x19, 0x22, 0x41, 0x2e,
+0xb5, 0x34, 0x55, 0x35, 0xd3, 0x30, 0x87, 0x27, 0x82, 0x1a, 0x42, 0x0a, 0x7a, 0xf8, 0xf6, 0xe6,
+0x1f, 0xd8, 0x7b, 0xce, 0xb1, 0xcb, 0x79, 0xd0, 0x81, 0xdb, 0x9a, 0xea, 0xc6, 0xfa, 0xa2, 0x09,
+0x7a, 0x15, 0x69, 0x1d, 0x11, 0x21, 0xbb, 0x20, 0x41, 0x1d, 0x22, 0x17, 0x66, 0x0f, 0xec, 0x06,
+0x08, 0xfe, 0x34, 0xf5, 0x30, 0xed, 0x22, 0xe7, 0xfe, 0xe3, 0x94, 0xe4, 0xce, 0xe8, 0xc8, 0xef,
+0xf6, 0xf7, 0x92, 0xff, 0x7c, 0x05, 0xf2, 0x08, 0x40, 0x0a, 0xea, 0x09, 0xf4, 0x08, 0x62, 0x08,
+0xcc, 0x08, 0xc0, 0x09, 0x22, 0x0a, 0xfc, 0x08, 0x78, 0x05, 0x14, 0x00, 0x24, 0xfa, 0x2e, 0xf5,
+0x3c, 0xf2, 0x6c, 0xf1, 0xdc, 0xf1, 0x86, 0xf2, 0xbc, 0xf2, 0x4a, 0xf2, 0x28, 0xf2, 0xa4, 0xf3,
+0xde, 0xf7, 0x3a, 0xff, 0x18, 0x09, 0xba, 0x13, 0x43, 0x1c, 0x0f, 0x20, 0x41, 0x1e, 0x94, 0x17,
+0xa2, 0x0d, 0xb6, 0x02, 0xa4, 0xf8, 0x04, 0xf0, 0xb8, 0xe8, 0x5b, 0xe2, 0x29, 0xdd, 0x19, 0xda,
+0xd9, 0xda, 0x9f, 0xe0, 0xde, 0xeb, 0xea, 0xfb, 0x92, 0x0e, 0x9d, 0x20, 0x5d, 0x2e, 0x51, 0x35,
+0x47, 0x34, 0xcf, 0x2b, 0xe5, 0x1d, 0x1e, 0x0d, 0x90, 0xfb, 0x8c, 0xea, 0x51, 0xdb, 0xa5, 0xce,
+0x2d, 0xc6, 0x4d, 0xc3, 0xc9, 0xc7, 0x1d, 0xd4, 0x76, 0xe7, 0x62, 0xff, 0xbc, 0x18, 0xc7, 0x2f,
+0xb3, 0x40, 0xef, 0x48, 0x4f, 0x47, 0x55, 0x3c, 0xcf, 0x29, 0x80, 0x12, 0x1a, 0xf9, 0x31, 0xe0,
+0x43, 0xca, 0xef, 0xb9, 0x1d, 0xb1, 0x8b, 0xb1, 0x9b, 0xbb, 0xad, 0xce, 0x62, 0xe8, 0xea, 0x05,
+0x7f, 0x23, 0x81, 0x3d, 0x67, 0x50, 0x74, 0x59, 0xe8, 0x56, 0xa1, 0x48, 0xdf, 0x30, 0xae, 0x12,
+0xcc, 0xf1, 0x35, 0xd2, 0x4d, 0xb8, 0x3e, 0xa7, 0x0a, 0xa1, 0x0c, 0xa6, 0xbf, 0xb5, 0x29, 0xce,
+0x8a, 0xec, 0x8c, 0x0d, 0xcb, 0x2d, 0xf1, 0x49, 0x14, 0x5e, 0xea, 0x66, 0x32, 0x62, 0xa5, 0x4f,
+0xc3, 0x31, 0x92, 0x0c, 0x96, 0xe5, 0x41, 0xc2, 0xda, 0xa7, 0x48, 0x99, 0x56, 0x97, 0x5e, 0xa1,
+0x7d, 0xb5, 0x5f, 0xd1, 0x52, 0xf2, 0x64, 0x15, 0x41, 0x37, 0x53, 0x54, 0xa2, 0x68, 0xf0, 0x6f,
+0xb2, 0x67, 0x1b, 0x50, 0x91, 0x2c, 0xbe, 0x02, 0x0b, 0xd9, 0xd1, 0xb5, 0xde, 0x9d, 0x24, 0x93,
+0x32, 0x95, 0x98, 0xa2, 0x33, 0xb9, 0xf7, 0xd6, 0x4c, 0xf9, 0x4f, 0x1d, 0xb7, 0x3f, 0x68, 0x5c,
+0xd6, 0x6e, 0x9c, 0x72, 0xb2, 0x65, 0x59, 0x49, 0x37, 0x22, 0xc6, 0xf6, 0x0b, 0xce, 0xef, 0xad,
+0x1c, 0x9a, 0x52, 0x93, 0x96, 0x98, 0x68, 0xa8, 0xd1, 0xc0, 0xcd, 0xdf, 0xe2, 0x02, 0x01, 0x27,
+0x05, 0x48, 0x94, 0x61, 0x5c, 0x6f, 0xc0, 0x6d, 0xfa, 0x5b, 0x9d, 0x3c, 0x18, 0x15, 0xf0, 0xeb,
+0x67, 0xc7, 0x5f, 0xac, 0x2a, 0x9d, 0x08, 0x9a, 0xc0, 0xa1, 0xdf, 0xb2, 0xdd, 0xcb, 0x8a, 0xea,
+0x2c, 0x0c, 0x3f, 0x2d, 0xfb, 0x49, 0x46, 0x5e, 0xbe, 0x66, 0x2c, 0x61, 0x13, 0x4e, 0x57, 0x30,
+0xe4, 0x0c, 0x08, 0xe9, 0x1b, 0xca, 0xc3, 0xb3, 0x9c, 0xa7, 0x02, 0xa6, 0x81, 0xae, 0xd9, 0xbf,
+0x35, 0xd8, 0x28, 0xf5, 0xa0, 0x13, 0x03, 0x30, 0xe3, 0x46, 0x30, 0x55, 0xe2, 0x58, 0x3b, 0x51,
+0x57, 0x3f, 0x71, 0x25, 0x80, 0x07, 0xa4, 0xe9, 0x09, 0xd0, 0xeb, 0xbd, 0xdd, 0xb4, 0x6d, 0xb5,
+0x13, 0xbf, 0x4f, 0xd0, 0x9e, 0xe6, 0x34, 0xff, 0x10, 0x17, 0x7d, 0x2b, 0x7f, 0x3a, 0xf7, 0x42,
+0x3f, 0x44, 0xf7, 0x3d, 0x6b, 0x30, 0xdd, 0x1c, 0x9a, 0x05, 0x18, 0xee, 0xf7, 0xd9, 0x0f, 0xcc,
+0x17, 0xc6, 0x55, 0xc8, 0x01, 0xd2, 0x03, 0xe1, 0x80, 0xf2, 0x06, 0x04, 0xa4, 0x13, 0x03, 0x20,
+0xbd, 0x28, 0xbd, 0x2d, 0x05, 0x2f, 0xef, 0x2b, 0xd5, 0x23, 0x10, 0x17, 0x08, 0x07, 0x76, 0xf6,
+0x66, 0xe8, 0x33, 0xdf, 0x17, 0xdc, 0xef, 0xde, 0x2a, 0xe6, 0xaa, 0xef, 0x5c, 0xf9, 0xd0, 0x01,
+0x84, 0x08, 0x82, 0x0d, 0xde, 0x11, 0xe6, 0x15, 0x3c, 0x19, 0xbe, 0x1a, 0x32, 0x19, 0xf4, 0x13,
+0x94, 0x0b, 0x3c, 0x02, 0x34, 0xfa, 0x3c, 0xf5, 0xa8, 0xf3, 0xda, 0xf4, 0x50, 0xf7, 0x8c, 0xf9,
+0x8c, 0xfa, 0x2c, 0xfa, 0x44, 0xf9, 0x1e, 0xf9, 0xe8, 0xfa, 0x16, 0xff, 0x20, 0x05, 0x7e, 0x0b,
+0x82, 0x10, 0xfa, 0x12, 0xf0, 0x12, 0x5a, 0x11, 0x44, 0x0f, 0x3c, 0x0d, 0x34, 0x0b, 0x72, 0x08,
+0xf2, 0x03, 0x78, 0xfd, 0xa0, 0xf5, 0x68, 0xed, 0x46, 0xe6, 0x39, 0xe2, 0xc1, 0xe2, 0x6e, 0xe8,
+0x4c, 0xf2, 0xe4, 0xfe, 0x0c, 0x0c, 0xd8, 0x17, 0xab, 0x20, 0xff, 0x25, 0xc7, 0x27, 0xfb, 0x25,
+0x59, 0x20, 0x0a, 0x17, 0xb2, 0x0a, 0x1c, 0xfc, 0xca, 0xec, 0x69, 0xde, 0x01, 0xd3, 0xb7, 0xcc,
+0x31, 0xcd, 0x19, 0xd5, 0xd6, 0xe3, 0xb6, 0xf7, 0x92, 0x0d, 0x11, 0x22, 0x2f, 0x32, 0x11, 0x3c,
+0x9f, 0x3e, 0xff, 0x39, 0x27, 0x2f, 0x55, 0x1f, 0x0a, 0x0c, 0xec, 0xf6, 0xf7, 0xe1, 0x17, 0xcf,
+0x99, 0xc0, 0xd1, 0xb8, 0x29, 0xba, 0x8f, 0xc5, 0x59, 0xda, 0xf8, 0xf5, 0x72, 0x14, 0x7f, 0x30,
+0xad, 0x45, 0x1d, 0x51, 0x2d, 0x52, 0x7d, 0x49, 0x25, 0x39, 0x65, 0x23, 0x72, 0x0a, 0x2a, 0xf0,
+0x7b, 0xd6, 0xcf, 0xbf, 0x09, 0xaf, 0x68, 0xa7, 0x22, 0xab, 0x9b, 0xbb, 0x93, 0xd7, 0x34, 0xfb,
+0x45, 0x20, 0x95, 0x40, 0x1c, 0x57, 0x52, 0x61, 0x12, 0x5f, 0x29, 0x52, 0x79, 0x3d, 0x8d, 0x23,
+0x74, 0x06, 0xf0, 0xe7, 0x8d, 0xca, 0x63, 0xb1, 0x02, 0xa0, 0x14, 0x9a, 0x4c, 0xa2, 0x0d, 0xb9,
+0xbf, 0xdb, 0xf4, 0x04, 0x85, 0x2d, 0xd5, 0x4e, 0x52, 0x64, 0x10, 0x6c, 0xd0, 0x66, 0xca, 0x56,
+0xc3, 0x3e, 0x2d, 0x21, 0x4a, 0x00, 0x55, 0xde, 0x57, 0xbe, 0x56, 0xa4, 0xbe, 0x94, 0x04, 0x93,
+0xbe, 0xa0, 0x21, 0xbd, 0x4c, 0xe4, 0xaa, 0x0f, 0x2d, 0x38, 0xb6, 0x57, 0xd2, 0x6a, 0x26, 0x70,
+0x68, 0x68, 0xaa, 0x55, 0xd5, 0x3a, 0x54, 0x1a, 0x92, 0xf6, 0xd5, 0xd2, 0x0d, 0xb3, 0xca, 0x9b,
+0xd0, 0x90, 0x86, 0x94, 0x48, 0xa7, 0xdb, 0xc6, 0xc0, 0xee, 0x98, 0x18, 0x51, 0x3e, 0xf2, 0x5a,
+0x96, 0x6b, 0x82, 0x6e, 0xb2, 0x64, 0xdf, 0x4f, 0xa5, 0x32, 0xe6, 0x0f, 0x18, 0xeb, 0x33, 0xc8,
+0xb7, 0xab, 0x94, 0x99, 0x50, 0x94, 0xde, 0x9c, 0x0d, 0xb2, 0x59, 0xd1, 0xb8, 0xf6, 0x19, 0x1d,
+0x55, 0x3f, 0x26, 0x59, 0x7e, 0x67, 0xaa, 0x68, 0xb0, 0x5c, 0xb9, 0x45, 0xe3, 0x26, 0xc0, 0x03,
+0x9d, 0xe0, 0x0d, 0xc2, 0xb9, 0xab, 0x40, 0xa0, 0x60, 0xa0, 0x53, 0xab, 0xfd, 0xbf, 0x29, 0xdc,
+0xca, 0xfc, 0x27, 0x1e, 0x31, 0x3c, 0x97, 0x52, 0x02, 0x5e, 0x9e, 0x5c, 0xcf, 0x4e, 0x07, 0x37,
+0xda, 0x18, 0xae, 0xf8, 0xcb, 0xda, 0x2b, 0xc3, 0x17, 0xb4, 0x1b, 0xae, 0xf7, 0xb0, 0xc3, 0xbb,
+0x41, 0xcd, 0x5c, 0xe4, 0x92, 0xff, 0xb2, 0x1b, 0x17, 0x35, 0x89, 0x47, 0xaf, 0x4f, 0x13, 0x4c,
+0x97, 0x3d, 0x01, 0x27, 0x8a, 0x0c, 0x7a, 0xf2, 0x5f, 0xdc, 0x67, 0xcc, 0x81, 0xc3, 0x2d, 0xc1,
+0x81, 0xc4, 0xdd, 0xcc, 0x27, 0xda, 0xcc, 0xeb, 0xf0, 0x00, 0x42, 0x17, 0x15, 0x2b, 0xc7, 0x38,
+0x8b, 0x3d, 0x99, 0x38, 0x4b, 0x2b, 0xfc, 0x18, 0x12, 0x05, 0x28, 0xf3, 0x38, 0xe5, 0x19, 0xdc,
+0x5f, 0xd7, 0x63, 0xd6, 0x67, 0xd8, 0x47, 0xdd, 0x5e, 0xe5, 0xb2, 0xf0, 0xb0, 0xfe, 0xa8, 0x0d,
+0x06, 0x1b, 0xab, 0x23, 0x0d, 0x26, 0x39, 0x22, 0x90, 0x19, 0x68, 0x0e, 0x94, 0x03, 0x98, 0xfa,
+0x38, 0xf4, 0x48, 0xf0, 0x32, 0xee, 0x3c, 0xed, 0xf2, 0xec, 0x60, 0xed, 0x0a, 0xef, 0x98, 0xf2,
+0x08, 0xf8, 0xfa, 0xfe, 0xcc, 0x05, 0x48, 0x0b, 0xfc, 0x0d, 0x2e, 0x0e, 0x80, 0x0c, 0x10, 0x0a,
+0xc0, 0x07, 0x80, 0x06, 0xee, 0x05, 0x92, 0x05, 0xf0, 0x04, 0xf4, 0x02, 0x52, 0xff, 0x0e, 0xfa,
+0x32, 0xf4, 0xc8, 0xee, 0x62, 0xeb, 0xe8, 0xea, 0x8e, 0xed, 0x30, 0xf2, 0x26, 0xf8, 0x8c, 0xfe,
+0xc0, 0x04, 0x7c, 0x0a, 0xc2, 0x0f, 0x96, 0x14, 0xbc, 0x18, 0x2e, 0x1b, 0x02, 0x1b, 0x60, 0x17,
+0x48, 0x0f, 0x3a, 0x03, 0x7e, 0xf4, 0xc0, 0xe5, 0xf3, 0xd9, 0xf5, 0xd3, 0x71, 0xd4, 0xe1, 0xda,
+0x58, 0xe5, 0x2c, 0xf2, 0xc6, 0xff, 0xf8, 0x0c, 0x62, 0x19, 0x2f, 0x24, 0xa9, 0x2c, 0x51, 0x31,
+0xb1, 0x30, 0x39, 0x29, 0xbc, 0x1a, 0xe6, 0x05, 0xca, 0xed, 0xb9, 0xd6, 0x2f, 0xc5, 0xa5, 0xbc,
+0x1f, 0xbe, 0x25, 0xc8, 0x19, 0xd8, 0x80, 0xeb, 0xec, 0xff, 0xae, 0x13, 0x91, 0x25, 0xcb, 0x34,
+0xb9, 0x3f, 0x8f, 0x44, 0x59, 0x41, 0xc9, 0x34, 0xbd, 0x1e, 0xd8, 0x01, 0x4d, 0xe2, 0xb1, 0xc5,
+0x7b, 0xb1, 0xc0, 0xa8, 0xf9, 0xab, 0xa9, 0xb9, 0xb1, 0xce, 0xc0, 0xe7, 0x9a, 0x02, 0xcd, 0x1c,
+0x8f, 0x34, 0xc7, 0x47, 0x35, 0x54, 0xec, 0x56, 0x1f, 0x4e, 0xdf, 0x39, 0x1a, 0x1c, 0xac, 0xf8,
+0xe5, 0xd4, 0x95, 0xb6, 0x46, 0xa2, 0x20, 0x9b, 0xfa, 0xa0, 0xe3, 0xb1, 0x27, 0xcb, 0x82, 0xe9,
+0x96, 0x09, 0xa3, 0x28, 0xe1, 0x43, 0x42, 0x58, 0xd8, 0x62, 0xfe, 0x60, 0x39, 0x52, 0x09, 0x38,
+0x9c, 0x15, 0x32, 0xef, 0xdb, 0xc9, 0x16, 0xab, 0x86, 0x97, 0x5c, 0x91, 0x3a, 0x99, 0x8d, 0xad,
+0x6f, 0xcb, 0x08, 0xef, 0x6c, 0x14, 0x37, 0x37, 0x97, 0x53, 0x1a, 0x66, 0xd8, 0x6b, 0x0c, 0x64,
+0x9d, 0x4f, 0x5f, 0x31, 0xce, 0x0c, 0x0a, 0xe6, 0x5b, 0xc1, 0xb4, 0xa3, 0x76, 0x91, 0x48, 0x8d,
+0xca, 0x97, 0xa1, 0xaf, 0xf3, 0xd1, 0xac, 0xf9, 0x8b, 0x21, 0x77, 0x44, 0xec, 0x5d, 0x3a, 0x6b,
+0x26, 0x6b, 0x40, 0x5e, 0xe9, 0x46, 0x4f, 0x28, 0xf4, 0x04, 0x01, 0xe0, 0x67, 0xbd, 0xb6, 0xa1,
+0x6a, 0x91, 0x4e, 0x8f, 0x6e, 0x9c, 0x99, 0xb7, 0xbf, 0xdc, 0xe4, 0x05, 0xc7, 0x2c, 0x2f, 0x4c,
+0xaa, 0x60, 0x66, 0x68, 0xc4, 0x63, 0xd4, 0x54, 0x89, 0x3d, 0x29, 0x20, 0x0e, 0xff, 0x7f, 0xdc,
+0x61, 0xbc, 0x48, 0xa3, 0x82, 0x95, 0x48, 0x96, 0x5a, 0xa6, 0xa5, 0xc3, 0x52, 0xe9, 0xa8, 0x10,
+0x4b, 0x33, 0x2f, 0x4d, 0xc6, 0x5b, 0x08, 0x5f, 0xdc, 0x57, 0x37, 0x48, 0x49, 0x32, 0x60, 0x17,
+0x22, 0xf9, 0x33, 0xda, 0xfb, 0xbd, 0xa4, 0xa8, 0x02, 0x9f, 0xfc, 0xa2, 0x2d, 0xb5, 0x7b, 0xd2,
+0x48, 0xf5, 0x34, 0x17, 0x29, 0x33, 0x5b, 0x46, 0xd7, 0x4f, 0xe7, 0x4f, 0xdb, 0x47, 0xc9, 0x39,
+0x7f, 0x26, 0x58, 0x0f, 0x86, 0xf5, 0x87, 0xdb, 0xbd, 0xc4, 0xbb, 0xb4, 0xc9, 0xae, 0x3f, 0xb5,
+0xbf, 0xc6, 0x2f, 0xe0, 0x9c, 0xfc, 0xf4, 0x16, 0xbb, 0x2b, 0x63, 0x39, 0x43, 0x3f, 0x1f, 0x3e,
+0x0b, 0x37, 0xe9, 0x2a, 0x52, 0x1b, 0x96, 0x08, 0x94, 0xf4, 0x3f, 0xe1, 0xfd, 0xd0, 0x51, 0xc6,
+0x95, 0xc3, 0x59, 0xc9, 0xfb, 0xd6, 0xe2, 0xe9, 0x2e, 0xfe, 0xd2, 0x10, 0x1b, 0x1f, 0x0d, 0x28,
+0x79, 0x2b, 0xb3, 0x29, 0xa5, 0x23, 0xde, 0x1a, 0x0e, 0x10, 0x22, 0x04, 0x18, 0xf8, 0x0a, 0xed,
+0xf0, 0xe3, 0x91, 0xdd, 0x55, 0xdb, 0xe9, 0xdd, 0x10, 0xe5, 0x6a, 0xef, 0x18, 0xfb, 0xd0, 0x05,
+0x32, 0x0e, 0x2a, 0x13, 0xaa, 0x14, 0x76, 0x13, 0x70, 0x10, 0xb8, 0x0c, 0x3a, 0x09, 0x14, 0x06,
+0x40, 0x03, 0x22, 0x00, 0x26, 0xfc, 0x60, 0xf7, 0xb6, 0xf2, 0x7a, 0xef, 0x80, 0xee, 0x26, 0xf0,
+0x8c, 0xf3, 0x90, 0xf7, 0xa6, 0xfa, 0x92, 0xfc, 0x60, 0xfd, 0xec, 0xfd, 0x6c, 0xff, 0xb2, 0x02,
+0xe8, 0x07, 0x10, 0x0e, 0x7c, 0x13, 0x34, 0x16, 0xb6, 0x14, 0xca, 0x0e, 0xe4, 0x05, 0x54, 0xfc,
+0xdc, 0xf3, 0xcc, 0xed, 0xec, 0xe9, 0x8e, 0xe7, 0x14, 0xe6, 0x74, 0xe5, 0x96, 0xe6, 0xaa, 0xea,
+0xc2, 0xf2, 0x86, 0xfe, 0x24, 0x0d, 0xd0, 0x1b, 0x6f, 0x27, 0x6f, 0x2d, 0x05, 0x2c, 0x7b, 0x23,
+0xd6, 0x15, 0xd8, 0x05, 0xf4, 0xf5, 0x38, 0xe8, 0x0b, 0xdd, 0x75, 0xd4, 0x39, 0xcf, 0xeb, 0xcd,
+0xfd, 0xd1, 0x4b, 0xdc, 0x86, 0xec, 0x3a, 0x01, 0xb2, 0x17, 0x17, 0x2c, 0x33, 0x3b, 0x4b, 0x42,
+0xe5, 0x3f, 0x7f, 0x34, 0x39, 0x22, 0xf0, 0x0b, 0xe4, 0xf4, 0x3f, 0xdf, 0xff, 0xcc, 0xe1, 0xbf,
+0xf3, 0xb8, 0xe9, 0xb9, 0x47, 0xc3, 0xf1, 0xd4, 0x14, 0xed, 0xb2, 0x08, 0xf5, 0x23, 0xa9, 0x3b,
+0x2b, 0x4c, 0x49, 0x53, 0x71, 0x4f, 0xfd, 0x40, 0xeb, 0x29, 0x3a, 0x0d, 0x7e, 0xee, 0xaf, 0xd1,
+0x2b, 0xba, 0xac, 0xaa, 0x8e, 0xa5, 0x0e, 0xab, 0x35, 0xbb, 0xf1, 0xd3, 0x30, 0xf2, 0x38, 0x12,
+0xa5, 0x30, 0xdd, 0x49, 0x34, 0x5b, 0x02, 0x62, 0xfe, 0x5b, 0x99, 0x49, 0x9b, 0x2c, 0xd8, 0x08,
+0x37, 0xe3, 0x23, 0xc1, 0x8c, 0xa7, 0xa8, 0x99, 0xda, 0x98, 0x62, 0xa4, 0x71, 0xba, 0x0f, 0xd8,
+0xa2, 0xf9, 0x86, 0x1b, 0xc1, 0x3a, 0x59, 0x54, 0x54, 0x65, 0x90, 0x6a, 0xba, 0x61, 0xcd, 0x4a,
+0x7f, 0x28, 0x5a, 0xff, 0xeb, 0xd5, 0xa1, 0xb2, 0xc8, 0x9a, 0xf4, 0x90, 0xe2, 0x94, 0x06, 0xa5,
+0x5f, 0xbe, 0xff, 0xdd, 0x38, 0x00, 0x71, 0x22, 0xbb, 0x41, 0x44, 0x5b, 0x84, 0x6b, 0x92, 0x6e,
+0x34, 0x62, 0xdf, 0x46, 0x45, 0x20, 0x50, 0xf4, 0x49, 0xca, 0x02, 0xa9, 0xe8, 0x94, 0x5a, 0x8f,
+0x28, 0x97, 0xe0, 0xa9, 0xd5, 0xc4, 0x0e, 0xe5, 0x8a, 0x07, 0x99, 0x29, 0x8b, 0x48, 0x9e, 0x60,
+0xee, 0x6d, 0xe6, 0x6c, 0xa6, 0x5b, 0x71, 0x3c, 0xb4, 0x13, 0x2c, 0xe8, 0xfd, 0xc0, 0x5a, 0xa4,
+0x44, 0x95, 0xec, 0x93, 0xc6, 0x9e, 0xe9, 0xb2, 0x89, 0xce, 0x80, 0xee, 0x1a, 0x10, 0x85, 0x30,
+0xa7, 0x4c, 0xa0, 0x60, 0xf0, 0x68, 0x20, 0x63, 0xc3, 0x4e, 0x1b, 0x2f, 0xba, 0x08, 0xd9, 0xe1,
+0xbb, 0xc0, 0xa0, 0xa9, 0xcc, 0x9e, 0x24, 0xa0, 0x7d, 0xab, 0x8d, 0xbf, 0xe5, 0xd9, 0xb2, 0xf7,
+0x58, 0x16, 0xdb, 0x32, 0xb7, 0x49, 0x46, 0x58, 0xf4, 0x5b, 0x3b, 0x53, 0x99, 0x3f, 0xf9, 0x22,
+0x24, 0x02, 0x7b, 0xe1, 0xf7, 0xc5, 0x2f, 0xb3, 0x14, 0xab, 0x8d, 0xad, 0xa1, 0xb9, 0x2d, 0xcd,
+0xe4, 0xe5, 0xe4, 0x00, 0xa4, 0x1a, 0xdf, 0x30, 0x35, 0x41, 0x9f, 0x49, 0x85, 0x49, 0xc1, 0x40,
+0xed, 0x2f, 0x94, 0x19, 0xfc, 0xff, 0xd8, 0xe6, 0xb1, 0xd1, 0x85, 0xc3, 0xdd, 0xbd, 0x1f, 0xc1,
+0xfd, 0xcb, 0xed, 0xdc, 0x78, 0xf1, 0x2a, 0x06, 0xd2, 0x18, 0x87, 0x27, 0x1f, 0x31, 0x75, 0x35,
+0x85, 0x34, 0x5f, 0x2e, 0x7d, 0x23, 0x42, 0x14, 0x1e, 0x02, 0x9e, 0xef, 0xbb, 0xdf, 0x2b, 0xd5,
+0xad, 0xd1, 0x41, 0xd5, 0xaf, 0xde, 0xde, 0xeb, 0x26, 0xfa, 0x06, 0x07, 0xe8, 0x10, 0xe6, 0x17,
+0x0a, 0x1c, 0x37, 0x1e, 0xe9, 0x1e, 0x83, 0x1d, 0x56, 0x19, 0xbc, 0x11, 0x32, 0x07, 0x92, 0xfb,
+0x44, 0xf1, 0x6a, 0xea, 0x54, 0xe8, 0xae, 0xea, 0xe0, 0xef, 0x46, 0xf6, 0xc8, 0xfb, 0x70, 0xff,
+0x42, 0x01, 0x58, 0x02, 0xf4, 0x03, 0xe4, 0x06, 0x48, 0x0b, 0xf8, 0x0f, 0x20, 0x13, 0x86, 0x13,
+0xba, 0x10, 0xe8, 0x0b, 0xae, 0x06, 0x88, 0x02, 0x06, 0x00, 0xcc, 0xfe, 0x72, 0xfd, 0xfe, 0xfa,
+0x2e, 0xf7, 0x22, 0xf2, 0x98, 0xed, 0x04, 0xeb, 0xf0, 0xeb, 0xd6, 0xf0, 0x86, 0xf9, 0x54, 0x04,
+0x04, 0x0f, 0x8e, 0x17, 0xfd, 0x1c, 0x1b, 0x1f, 0x5d, 0x1e, 0x46, 0x1b, 0x42, 0x16, 0x0c, 0x0f,
+0x74, 0x05, 0xf0, 0xf9, 0xac, 0xed, 0x2d, 0xe2, 0x4b, 0xd9, 0xfd, 0xd4, 0x2d, 0xd6, 0xdb, 0xdd,
+0x54, 0xeb, 0xd0, 0xfc, 0x9a, 0x0f, 0xc5, 0x20, 0xd5, 0x2d, 0x6f, 0x35, 0xaf, 0x36, 0x99, 0x31,
+0x57, 0x27, 0x7e, 0x18, 0xa0, 0x06, 0x98, 0xf3, 0x2d, 0xe1, 0x49, 0xd1, 0x1f, 0xc6, 0xe9, 0xc0,
+0x85, 0xc3, 0x65, 0xce, 0x67, 0xe1, 0x40, 0xfa, 0x58, 0x15, 0x37, 0x2e, 0x69, 0x41, 0xa3, 0x4b,
+0xe9, 0x4b, 0xdd, 0x42, 0x2d, 0x32, 0xa5, 0x1c, 0x48, 0x04, 0xc2, 0xeb, 0xfd, 0xd4, 0x2b, 0xc2,
+0xeb, 0xb4, 0xdf, 0xaf, 0x17, 0xb4, 0x47, 0xc3, 0x8b, 0xdc, 0xfe, 0xfc, 0x83, 0x1f, 0x79, 0x3e,
+0x6b, 0x54, 0x86, 0x5e, 0xac, 0x5b, 0x9d, 0x4d, 0xb5, 0x37, 0xc3, 0x1c, 0xc8, 0xff, 0x2b, 0xe3,
+0xfb, 0xc8, 0x97, 0xb3, 0xc4, 0xa5, 0xa4, 0xa1, 0xa2, 0xa9, 0x9b, 0xbe, 0xe7, 0xde, 0x00, 0x06,
+0x85, 0x2d, 0x8b, 0x4e, 0x56, 0x64, 0xe8, 0x6b, 0x34, 0x65, 0xef, 0x52, 0xb3, 0x38, 0xca, 0x19,
+0x22, 0xf9, 0x41, 0xd9, 0xdb, 0xbc, 0xdc, 0xa6, 0x32, 0x9a, 0x4e, 0x99, 0x70, 0xa6, 0x73, 0xc1,
+0x42, 0xe7, 0x24, 0x12, 0xc1, 0x3a, 0xa4, 0x5a, 0x66, 0x6d, 0x2a, 0x71, 0xc0, 0x66, 0x7d, 0x51,
+0xad, 0x34, 0x78, 0x13, 0xb4, 0xf0, 0x09, 0xcf, 0x01, 0xb2, 0x26, 0x9d, 0x9a, 0x93, 0xc6, 0x97,
+0x70, 0xaa, 0x21, 0xca, 0x7a, 0xf2, 0x3f, 0x1d, 0x9d, 0x43, 0x6e, 0x60, 0x10, 0x70, 0x2c, 0x71,
+0xbe, 0x64, 0x75, 0x4d, 0xdf, 0x2e, 0xa8, 0x0b, 0x4a, 0xe7, 0x47, 0xc5, 0x06, 0xaa, 0xea, 0x98,
+0x84, 0x94, 0xfa, 0x9d, 0xbb, 0xb4, 0x23, 0xd6, 0x46, 0xfd, 0xb9, 0x24, 0xf7, 0x46, 0xee, 0x5f,
+0x7a, 0x6c, 0x62, 0x6b, 0x74, 0x5d, 0x05, 0x45, 0x59, 0x25, 0x9e, 0x01, 0xc5, 0xdd, 0x53, 0xbe,
+0x72, 0xa7, 0x08, 0x9c, 0x40, 0x9d, 0x74, 0xaa, 0x29, 0xc2, 0x79, 0xe1, 0x6a, 0x04, 0xbf, 0x26,
+0x81, 0x44, 0xc0, 0x59, 0xea, 0x63, 0x0e, 0x61, 0xb5, 0x51, 0xb1, 0x38, 0x1c, 0x19, 0x38, 0xf7,
+0x45, 0xd7, 0xc1, 0xbd, 0xa1, 0xad, 0x6a, 0xa8, 0x41, 0xad, 0x29, 0xbb, 0x65, 0xd0, 0x82, 0xea,
+0x8e, 0x07, 0x45, 0x24, 0x67, 0x3d, 0x4d, 0x4f, 0xd4, 0x56, 0x59, 0x52, 0xab, 0x42, 0x41, 0x2a,
+0x18, 0x0d, 0xd8, 0xef, 0x77, 0xd6, 0x51, 0xc4, 0xc9, 0xba, 0x81, 0xb9, 0x95, 0xbf, 0x69, 0xcb,
+0xc7, 0xdb, 0xea, 0xef, 0x6c, 0x06, 0x63, 0x1d, 0xb1, 0x31, 0x03, 0x40, 0x31, 0x45, 0x25, 0x40,
+0x65, 0x31, 0x5d, 0x1c, 0xe0, 0x04, 0xec, 0xee, 0x8f, 0xdd, 0x83, 0xd2, 0xbf, 0xcd, 0x39, 0xce,
+0x05, 0xd3, 0xf7, 0xda, 0xfe, 0xe5, 0x8c, 0xf3, 0x5e, 0x03, 0xfc, 0x13, 0xef, 0x22, 0xf1, 0x2c,
+0x0d, 0x30, 0x47, 0x2b, 0xe1, 0x1f, 0xde, 0x10, 0x3e, 0x01, 0x12, 0xf4, 0xc0, 0xea, 0x88, 0xe5,
+0xc4, 0xe3, 0x68, 0xe4, 0x74, 0xe6, 0xae, 0xe9, 0x34, 0xee, 0x6c, 0xf4, 0xb2, 0xfc, 0x3a, 0x06,
+0x62, 0x0f, 0x12, 0x16, 0xc0, 0x18, 0x02, 0x17, 0xe6, 0x11, 0x2c, 0x0b, 0xd8, 0x04, 0x0e, 0x00,
+0x18, 0xfd, 0x98, 0xfb, 0xc4, 0xfa, 0xcc, 0xf9, 0x26, 0xf8, 0xc4, 0xf5, 0x0a, 0xf3, 0x12, 0xf1,
+0xda, 0xf0, 0xfe, 0xf2, 0x44, 0xf7, 0x72, 0xfc, 0xb8, 0x01, 0xf8, 0x05, 0x46, 0x09, 0xc4, 0x0b,
+0xce, 0x0d, 0xc8, 0x0f, 0x40, 0x11, 0xf2, 0x11, 0xe8, 0x10, 0xb6, 0x0d, 0x90, 0x07, 0xc2, 0xfe,
+0xca, 0xf3, 0xf4, 0xe8, 0x8f, 0xe0, 0x75, 0xdc, 0xef, 0xdd, 0x30, 0xe4, 0x3c, 0xee, 0xd8, 0xf9,
+0x6e, 0x05, 0x04, 0x10, 0x48, 0x19, 0x7d, 0x20, 0x83, 0x25, 0x95, 0x27, 0xc7, 0x25, 0x6f, 0x1f,
+0xa2, 0x13, 0xee, 0x02, 0xfc, 0xee, 0x23, 0xdb, 0x7b, 0xcb, 0xd1, 0xc3, 0x43, 0xc5, 0x4d, 0xcf,
+0x6d, 0xdf, 0x7a, 0xf2, 0xd0, 0x05, 0x98, 0x17, 0xb7, 0x26, 0xa7, 0x32, 0x77, 0x3a, 0xf1, 0x3c,
+0xfd, 0x38, 0x65, 0x2d, 0x0e, 0x1a, 0x84, 0x00, 0x10, 0xe4, 0xc7, 0xc9, 0x01, 0xb7, 0x09, 0xaf,
+0x17, 0xb3, 0x49, 0xc1, 0xbf, 0xd6, 0xc6, 0xef, 0x38, 0x09, 0x7f, 0x20, 0x8d, 0x34, 0xd5, 0x43,
+0x07, 0x4d, 0x5d, 0x4e, 0x35, 0x46, 0x29, 0x34, 0x20, 0x19, 0x0e, 0xf8, 0xb1, 0xd5, 0x17, 0xb8,
+0x2a, 0xa4, 0xb4, 0x9d, 0xb2, 0xa4, 0x4f, 0xb7, 0xed, 0xd1, 0x96, 0xf0, 0x66, 0x0f, 0xc3, 0x2b,
+0x83, 0x43, 0x99, 0x54, 0xfa, 0x5c, 0x44, 0x5a, 0x03, 0x4c, 0x0d, 0x33, 0xda, 0x11, 0x84, 0xec,
+0x4b, 0xc8, 0xba, 0xaa, 0x56, 0x98, 0xc4, 0x93, 0x2e, 0x9d, 0xdd, 0xb2, 0x57, 0xd1, 0x4e, 0xf4,
+0xda, 0x17, 0x41, 0x38, 0x77, 0x52, 0x44, 0x63, 0x62, 0x68, 0x52, 0x60, 0xd1, 0x4b, 0x3f, 0x2d,
+0x76, 0x08, 0xd7, 0xe1, 0x17, 0xbe, 0xe2, 0xa1, 0x34, 0x91, 0x84, 0x8e, 0x26, 0x9a, 0x9f, 0xb2,
+0xc7, 0xd4, 0x0c, 0xfc, 0x57, 0x23, 0xb7, 0x45, 0x1e, 0x5f, 0x70, 0x6c, 0xd2, 0x6b, 0x8c, 0x5d,
+0x15, 0x44, 0x0f, 0x23, 0x2e, 0xfe, 0x1b, 0xd9, 0xbd, 0xb7, 0x46, 0x9e, 0x20, 0x90, 0xa2, 0x8f,
+0xc2, 0x9d, 0x33, 0xb9, 0x65, 0xde, 0xea, 0x07, 0x7f, 0x2f, 0xd3, 0x4f, 0xee, 0x64, 0x7c, 0x6c,
+0x54, 0x66, 0x69, 0x54, 0xb3, 0x39, 0x90, 0x19, 0x08, 0xf7, 0xe5, 0xd4, 0xa1, 0xb6, 0x9a, 0x9f,
+0x88, 0x93, 0x4a, 0x95, 0xc8, 0xa5, 0x5b, 0xc3, 0xe4, 0xe9, 0xfa, 0x12, 0xd1, 0x37, 0x83, 0x53,
+0xd8, 0x62, 0x38, 0x65, 0xa8, 0x5b, 0x93, 0x48, 0x13, 0x2f, 0xa0, 0x11, 0x70, 0xf2, 0xaf, 0xd3,
+0x99, 0xb8, 0xa4, 0xa4, 0xa6, 0x9b, 0xee, 0x9f, 0x59, 0xb2, 0xcd, 0xd0, 0xda, 0xf5, 0x10, 0x1b,
+0x3b, 0x3a, 0x87, 0x4f, 0x16, 0x59, 0x7a, 0x57, 0x77, 0x4c, 0xa1, 0x3a, 0xf3, 0x23, 0x66, 0x0a,
+0xc0, 0xef, 0xc9, 0xd5, 0x67, 0xbf, 0xdb, 0xaf, 0x46, 0xaa, 0xd3, 0xb0, 0x7d, 0xc3, 0x33, 0xdf,
+0x10, 0xff, 0x27, 0x1d, 0xdf, 0x34, 0x9f, 0x43, 0xdd, 0x48, 0x77, 0x45, 0x4f, 0x3b, 0xff, 0x2b,
+0x7c, 0x19, 0x20, 0x05, 0xfc, 0xef, 0xe7, 0xdb, 0x17, 0xcb, 0x37, 0xc0, 0x8d, 0xbd, 0x6b, 0xc4,
+0xff, 0xd3, 0x04, 0xea, 0x02, 0x02, 0xe2, 0x17, 0x83, 0x28, 0x5f, 0x32, 0x39, 0x35, 0xe1, 0x31,
+0x8d, 0x29, 0xdf, 0x1d, 0x32, 0x10, 0x72, 0x01, 0xec, 0xf2, 0xcc, 0xe5, 0x65, 0xdb, 0x01, 0xd5,
+0xdd, 0xd3, 0x75, 0xd8, 0x8d, 0xe2, 0x44, 0xf0, 0x66, 0xff, 0x50, 0x0d, 0xde, 0x17, 0xd1, 0x1d,
+0x45, 0x1f, 0xd3, 0x1c, 0x5e, 0x17, 0x62, 0x10, 0xf8, 0x08, 0x3c, 0x02, 0x30, 0xfc, 0xee, 0xf6,
+0x40, 0xf2, 0x42, 0xee, 0x52, 0xeb, 0x40, 0xea, 0x0a, 0xec, 0x78, 0xf0, 0xf0, 0xf6, 0x84, 0xfd,
+0x0c, 0x03, 0x92, 0x06, 0xfe, 0x07, 0x9a, 0x07, 0x9a, 0x06, 0x2e, 0x06, 0xf0, 0x06, 0xec, 0x08,
+0x2c, 0x0b, 0x50, 0x0c, 0xd6, 0x0a, 0x22, 0x06, 0x0c, 0xff, 0x48, 0xf7, 0xc4, 0xf0, 0xe4, 0xec,
+0xca, 0xeb, 0x88, 0xec, 0x14, 0xee, 0xcc, 0xef, 0xa6, 0xf1, 0xaa, 0xf4, 0x98, 0xf9, 0x0e, 0x01,
+0xc4, 0x0a, 0x74, 0x15, 0x8d, 0x1e, 0x8d, 0x23, 0x77, 0x22, 0x38, 0x1b, 0x0c, 0x0f, 0x52, 0x00,
+0x1c, 0xf2, 0x92, 0xe6, 0x7b, 0xde, 0x97, 0xd9, 0x99, 0xd7, 0x5d, 0xd8, 0xc5, 0xdc, 0x4a, 0xe5,
+0x4c, 0xf2, 0x14, 0x03, 0xb6, 0x15, 0x29, 0x27, 0x5f, 0x34, 0x6d, 0x3a, 0xd7, 0x37, 0xb3, 0x2c,
+0xee, 0x1a, 0xd4, 0x05, 0x96, 0xf0, 0xb9, 0xdd, 0xe3, 0xce, 0x1f, 0xc5, 0xd1, 0xc0, 0xfb, 0xc2,
+0x0b, 0xcc, 0x27, 0xdc, 0xec, 0xf1, 0xd6, 0x0a, 0x9f, 0x23, 0xf5, 0x38, 0x6f, 0x47, 0xa7, 0x4c,
+0x8d, 0x47, 0xb3, 0x38, 0x37, 0x22, 0x3e, 0x07, 0x42, 0xeb, 0xdd, 0xd1, 0xd3, 0xbd, 0x2f, 0xb1,
+0x8f, 0xad, 0x75, 0xb3, 0xdf, 0xc2, 0x2b, 0xda, 0xd0, 0xf6, 0x06, 0x15, 0x4b, 0x31, 0x25, 0x48,
+0xf4, 0x56, 0x92, 0x5b, 0x89, 0x54, 0x61, 0x42, 0xed, 0x26, 0xb4, 0x05, 0xc9, 0xe2, 0x0b, 0xc3,
+0x04, 0xab, 0x0e, 0x9e, 0x86, 0x9d, 0x1c, 0xa9, 0x55, 0xbf, 0x33, 0xdd, 0xcc, 0xfe, 0xeb, 0x1f,
+0x5b, 0x3d, 0x6d, 0x54, 0xae, 0x62, 0xa8, 0x65, 0xf8, 0x5b, 0xb1, 0x45, 0xf1, 0x24, 0x7a, 0xfd,
+0x25, 0xd5, 0x6b, 0xb2, 0xc8, 0x9a, 0x4a, 0x91, 0x60, 0x96, 0x5c, 0xa8, 0x0f, 0xc4, 0x82, 0xe5,
+0x8a, 0x08, 0xcb, 0x29, 0x81, 0x46, 0x74, 0x5c, 0x40, 0x69, 0x30, 0x6a, 0x58, 0x5d, 0xe9, 0x42,
+0x87, 0x1d, 0x3e, 0xf2, 0x11, 0xc8, 0x0e, 0xa6, 0xaa, 0x91, 0x20, 0x8d, 0x48, 0x97, 0x09, 0xad,
+0xd3, 0xca, 0xc6, 0xec, 0x4a, 0x0f, 0x89, 0x2f, 0x51, 0x4b, 0x54, 0x60, 0x58, 0x6b, 0x70, 0x69,
+0xfe, 0x58, 0xd7, 0x3a, 0x8c, 0x12, 0x3a, 0xe6, 0x73, 0xbd, 0x32, 0x9f, 0xa8, 0x8f, 0x84, 0x8f,
+0xee, 0x9c, 0xad, 0xb4, 0x21, 0xd3, 0xae, 0xf4, 0x3e, 0x16, 0x55, 0x35, 0x77, 0x4f, 0xa6, 0x61,
+0xea, 0x68, 0xc4, 0x62, 0x75, 0x4e, 0xeb, 0x2d, 0xa4, 0x05, 0x3f, 0xdc, 0x8b, 0xb8, 0x26, 0xa0,
+0xce, 0x95, 0x60, 0x99, 0x88, 0xa8, 0x31, 0xc0, 0x49, 0xdd, 0xd4, 0xfc, 0xe8, 0x1b, 0xc7, 0x37,
+0xc9, 0x4d, 0x0e, 0x5b, 0x5e, 0x5d, 0x79, 0x53, 0x23, 0x3e, 0xe7, 0x1f, 0xe8, 0xfc, 0x57, 0xda,
+0xa1, 0xbd, 0xce, 0xaa, 0xb4, 0xa3, 0x0c, 0xa8, 0x53, 0xb6, 0x69, 0xcc, 0x50, 0xe7, 0xf2, 0x03,
+0x6f, 0x1f, 0xdd, 0x36, 0xaf, 0x47, 0xf3, 0x4f, 0x3b, 0x4e, 0xc9, 0x42, 0x27, 0x2f, 0x80, 0x15,
+0x2c, 0xf9, 0xeb, 0xdd, 0x91, 0xc7, 0x21, 0xb9, 0x59, 0xb4, 0x39, 0xb9, 0xa1, 0xc6, 0x51, 0xda,
+0x7c, 0xf1, 0x18, 0x09, 0x3f, 0x1e, 0xa7, 0x2e, 0xe1, 0x38, 0x53, 0x3c, 0x0b, 0x39, 0xff, 0x2f,
+0xd5, 0x21, 0xc8, 0x0f, 0x6e, 0xfb, 0x72, 0xe7, 0x8f, 0xd6, 0x99, 0xcb, 0x21, 0xc8, 0x7f, 0xcc,
+0xb3, 0xd7, 0x9a, 0xe7, 0x3c, 0xf9, 0xe2, 0x09, 0x7a, 0x17, 0xa1, 0x20, 0x63, 0x25, 0x39, 0x26,
+0x33, 0x24, 0x89, 0x1f, 0x34, 0x18, 0xf8, 0x0d, 0x78, 0x01, 0x30, 0xf4, 0x6e, 0xe8, 0xa3, 0xe0,
+0x3f, 0xde, 0x99, 0xe1, 0x34, 0xe9, 0x20, 0xf3, 0xd8, 0xfc, 0xcc, 0x04, 0xbc, 0x09, 0x40, 0x0c,
+0x44, 0x0d, 0x42, 0x0e, 0xbc, 0x0f, 0x50, 0x11, 0xc8, 0x11, 0x14, 0x10, 0xa0, 0x0b, 0x16, 0x05,
+0x34, 0xfe, 0xd2, 0xf8, 0x28, 0xf6, 0x0e, 0xf6, 0x7c, 0xf7, 0xde, 0xf8, 0x3e, 0xf9, 0x22, 0xf8,
+0x34, 0xf6, 0xc6, 0xf4, 0x60, 0xf5, 0xe8, 0xf8, 0x60, 0xff, 0x88, 0x07, 0x9e, 0x0f, 0xc4, 0x15,
+0xa2, 0x18, 0x36, 0x18, 0x56, 0x15, 0x2e, 0x11, 0x58, 0x0c, 0xba, 0x06, 0xfc, 0xff, 0x34, 0xf8,
+0xc8, 0xef, 0x96, 0xe7, 0x01, 0xe1, 0xd7, 0xdd, 0x59, 0xdf, 0x2e, 0xe6, 0xb6, 0xf1, 0x84, 0x00,
+0x50, 0x10, 0x71, 0x1e, 0x85, 0x28, 0x6b, 0x2d, 0xf9, 0x2c, 0xb7, 0x27, 0x27, 0x1e, 0x34, 0x11,
+0xf6, 0x01, 0xca, 0xf1, 0x3d, 0xe2, 0xfb, 0xd4, 0xf9, 0xcb, 0x9f, 0xc8, 0x3f, 0xcc, 0xdf, 0xd6,
+0x22, 0xe8, 0xfa, 0xfd, 0xc6, 0x15, 0x65, 0x2b, 0xcd, 0x3b, 0x47, 0x44, 0xe1, 0x43, 0xe9, 0x3a,
+0xe7, 0x2a, 0x34, 0x16, 0x2c, 0xff, 0x86, 0xe8, 0x2f, 0xd4, 0x57, 0xc4, 0x53, 0xba, 0xc5, 0xb7,
+0x6f, 0xbd, 0x15, 0xcc, 0xf5, 0xe2, 0xf2, 0xff, 0xef, 0x1e, 0x23, 0x3b, 0xaf, 0x4f, 0xfe, 0x58,
+0xf4, 0x55, 0xb3, 0x47, 0x23, 0x31, 0xc8, 0x15, 0x30, 0xf9, 0xf1, 0xdd, 0xab, 0xc6, 0x19, 0xb5,
+0xfa, 0xaa, 0x6e, 0xa9, 0x0d, 0xb2, 0x83, 0xc5, 0x03, 0xe3, 0x28, 0x07, 0x5d, 0x2c, 0x8d, 0x4c,
+0xe8, 0x61, 0x58, 0x69, 0xd0, 0x61, 0x25, 0x4e, 0x31, 0x32, 0x94, 0x12, 0x42, 0xf2, 0x59, 0xd4,
+0x29, 0xbb, 0xc8, 0xa8, 0xfc, 0x9e, 0x98, 0x9f, 0x73, 0xac, 0xe3, 0xc5, 0xde, 0xe9, 0x38, 0x13,
+0x79, 0x3b, 0xd4, 0x5b, 0x0a, 0x6f, 0x4e, 0x72, 0x5c, 0x66, 0x8b, 0x4e, 0x5d, 0x2f, 0xda, 0x0c,
+0x5a, 0xea, 0x85, 0xca, 0x37, 0xb0, 0x14, 0x9e, 0x76, 0x96, 0x4a, 0x9b, 0xbd, 0xad, 0x13, 0xcd,
+0x4a, 0xf5, 0x6f, 0x20, 0xa1, 0x47, 0x16, 0x65, 0x82, 0x74, 0x28, 0x74, 0x28, 0x65, 0x0f, 0x4b,
+0x49, 0x2a, 0x44, 0x06, 0x4b, 0xe2, 0x9b, 0xc1, 0xf0, 0xa7, 0x30, 0x98, 0xca, 0x94, 0x1e, 0x9f,
+0xc3, 0xb6, 0x43, 0xd9, 0xa8, 0x01, 0x49, 0x2a, 0x61, 0x4d, 0x6e, 0x66, 0x14, 0x72, 0x1c, 0x6f,
+0xd8, 0x5e, 0x31, 0x44, 0xe3, 0x22, 0x60, 0xfe, 0x8b, 0xda, 0x2f, 0xbb, 0x6a, 0xa4, 0x46, 0x99,
+0x56, 0x9b, 0x5a, 0xaa, 0x77, 0xc4, 0x38, 0xe6, 0x12, 0x0b, 0x77, 0x2e, 0x49, 0x4c, 0xe2, 0x60,
+0xa8, 0x69, 0x50, 0x65, 0x89, 0x54, 0xc9, 0x39, 0x98, 0x18, 0x14, 0xf5, 0x5d, 0xd3, 0x37, 0xb8,
+0x16, 0xa7, 0x16, 0xa2, 0xdc, 0xa8, 0x13, 0xba, 0xff, 0xd2, 0x80, 0xf0, 0x6c, 0x0f, 0x9b, 0x2c,
+0x33, 0x45, 0x12, 0x56, 0xd0, 0x5c, 0x92, 0x57, 0x07, 0x47, 0x3f, 0x2d, 0x06, 0x0e, 0xc4, 0xed,
+0x59, 0xd1, 0x91, 0xbc, 0xcd, 0xb1, 0x81, 0xb1, 0x71, 0xba, 0x5f, 0xca, 0x13, 0xdf, 0x8c, 0xf6,
+0xe6, 0x0e, 0x33, 0x26, 0x0b, 0x3a, 0xb1, 0x47, 0x51, 0x4c, 0x97, 0x46, 0xa3, 0x36, 0x3f, 0x1f,
+0x58, 0x04, 0xb4, 0xea, 0xe9, 0xd5, 0xc3, 0xc8, 0xef, 0xc3, 0x77, 0xc6, 0xa7, 0xce, 0xd9, 0xda,
+0x8c, 0xe9, 0xc8, 0xf9, 0xf6, 0x0a, 0xe8, 0x1b, 0xb3, 0x2a, 0xd9, 0x34, 0xeb, 0x37, 0x8b, 0x32,
+0x73, 0x25, 0x4c, 0x13, 0xc4, 0xff, 0x7e, 0xee, 0x11, 0xe2, 0x51, 0xdb, 0xdf, 0xd9, 0x6f, 0xdc,
+0x9f, 0xe1, 0x22, 0xe8, 0xc6, 0xef, 0xa8, 0xf8, 0xbc, 0x02, 0x76, 0x0d, 0x94, 0x17, 0x15, 0x1f,
+0xf1, 0x21, 0x49, 0x1f, 0xac, 0x17, 0x4a, 0x0d, 0xb8, 0x02, 0x0c, 0xfa, 0x3e, 0xf4, 0x94, 0xf1,
+0x26, 0xf1, 0xcc, 0xf1, 0x88, 0xf2, 0x22, 0xf3, 0xaa, 0xf3, 0x00, 0xf5, 0xa4, 0xf7, 0xec, 0xfb,
+0x46, 0x01, 0xc0, 0x06, 0xf6, 0x0a, 0x08, 0x0d, 0x1a, 0x0d, 0xda, 0x0b, 0x58, 0x0a, 0x30, 0x09,
+0xcc, 0x08, 0x94, 0x08, 0xe4, 0x07, 0xfa, 0x05, 0x1e, 0x02, 0x3a, 0xfc, 0x08, 0xf5, 0xb8, 0xed,
+0xf4, 0xe7, 0x82, 0xe5, 0x6c, 0xe7, 0x3e, 0xed, 0xca, 0xf5, 0x74, 0xff, 0xd2, 0x08, 0x08, 0x11,
+0xaa, 0x17, 0x6d, 0x1c, 0x1b, 0x1f, 0xa9, 0x1f, 0x3f, 0x1d, 0x58, 0x17, 0x88, 0x0d, 0x4c, 0x00,
+0x8e, 0xf0, 0xad, 0xe0, 0xf1, 0xd3, 0x53, 0xcd, 0x95, 0xce, 0xa3, 0xd7, 0x98, 0xe6, 0x68, 0xf8,
+0x4e, 0x0a, 0x3a, 0x1a, 0xa3, 0x26, 0x51, 0x2f, 0xf9, 0x33, 0x4b, 0x34, 0x8f, 0x2f, 0x0d, 0x25,
+0xa2, 0x14, 0xf0, 0xfe, 0x96, 0xe6, 0x39, 0xcf, 0xa9, 0xbd, 0xa9, 0xb5, 0x49, 0xb9, 0x57, 0xc7,
+0x21, 0xdd, 0x5a, 0xf6, 0xf2, 0x0e, 0x51, 0x24, 0xef, 0x34, 0x3f, 0x40, 0xab, 0x45, 0xcf, 0x44,
+0xdb, 0x3c, 0xc7, 0x2c, 0x0a, 0x15, 0xaa, 0xf7, 0x4b, 0xd8, 0x63, 0xbc, 0x40, 0xa9, 0xc4, 0xa2,
+0xc6, 0xa9, 0xe7, 0xbc, 0x37, 0xd8, 0x24, 0xf7, 0x2e, 0x15, 0x77, 0x2f, 0x03, 0x44, 0xd5, 0x51,
+0xbe, 0x57, 0x29, 0x54, 0x7b, 0x46, 0xdb, 0x2e, 0x64, 0x0f, 0x6c, 0xeb, 0x57, 0xc8, 0xb7, 0xab,
+0x56, 0x9a, 0x1c, 0x97, 0x2e, 0xa2, 0x91, 0xb9, 0xff, 0xd8, 0xf2, 0xfb, 0x9f, 0x1d, 0x01, 0x3b,
+0xbd, 0x51, 0xbe, 0x5f, 0x3a, 0x63, 0xf6, 0x5a, 0x1f, 0x47, 0x4f, 0x29, 0x04, 0x05, 0xab, 0xde,
+0x61, 0xbb, 0x42, 0xa0, 0x5e, 0x91, 0xa8, 0x90, 0x36, 0x9e, 0x37, 0xb8, 0xdd, 0xda, 0x4a, 0x01,
+0xb3, 0x26, 0xf3, 0x46, 0x9a, 0x5e, 0xd8, 0x6a, 0x04, 0x6a, 0xba, 0x5b, 0xe1, 0x41, 0xdb, 0x1f,
+0xaa, 0xf9, 0xed, 0xd3, 0xff, 0xb2, 0x0e, 0x9b, 0xd6, 0x8e, 0x74, 0x90, 0x40, 0xa0, 0x83, 0xbc,
+0xc5, 0xe1, 0xbc, 0x0a, 0xe1, 0x31, 0xe7, 0x51, 0xfe, 0x66, 0x40, 0x6e, 0x36, 0x67, 0x7d, 0x53,
+0x69, 0x36, 0xcc, 0x13, 0x86, 0xef, 0x3b, 0xcd, 0xff, 0xaf, 0x4c, 0x9b, 0xa8, 0x91, 0x42, 0x95,
+0xbc, 0xa6, 0xf7, 0xc4, 0xc4, 0xeb, 0x64, 0x15, 0x79, 0x3b, 0x70, 0x58, 0x70, 0x68, 0x16, 0x6a,
+0x60, 0x5e, 0x15, 0x48, 0x1b, 0x2b, 0xc2, 0x0a, 0x1c, 0xea, 0x9d, 0xcb, 0x47, 0xb2, 0x94, 0xa0,
+0x60, 0x99, 0xcc, 0x9e, 0xed, 0xb1, 0xb3, 0xd0, 0xd2, 0xf6, 0xef, 0x1d, 0x83, 0x3f, 0x92, 0x56,
+0x90, 0x60, 0xa6, 0x5d, 0xab, 0x4f, 0x03, 0x3a, 0xef, 0x1f, 0x02, 0x04, 0x46, 0xe8, 0xd1, 0xce,
+0x9b, 0xb9, 0x65, 0xab, 0xbe, 0xa6, 0xb9, 0xad, 0xeb, 0xc0, 0x1b, 0xde, 0x78, 0x00, 0x9f, 0x21,
+0x45, 0x3c, 0x91, 0x4c, 0xa3, 0x51, 0x6d, 0x4c, 0x59, 0x3f, 0xc9, 0x2c, 0x5c, 0x17, 0xb4, 0x00,
+0x2a, 0xea, 0x75, 0xd5, 0x95, 0xc4, 0xdd, 0xb9, 0x85, 0xb7, 0x67, 0xbf, 0xe7, 0xd0, 0xdc, 0xe9,
+0x76, 0x05, 0xe9, 0x1e, 0xe9, 0x31, 0xbd, 0x3c, 0xff, 0x3e, 0xc3, 0x39, 0xbd, 0x2e, 0x09, 0x20,
+0x42, 0x0f, 0xf8, 0xfd, 0x58, 0xed, 0xb9, 0xde, 0x85, 0xd3, 0x33, 0xcd, 0x05, 0xcd, 0x7d, 0xd3,
+0x43, 0xe0, 0x56, 0xf1, 0xe2, 0x03, 0x82, 0x14, 0x07, 0x21, 0xe1, 0x27, 0x0f, 0x29, 0x3f, 0x25,
+0xc3, 0x1d, 0x00, 0x14, 0x6e, 0x09, 0x24, 0xff, 0xe0, 0xf5, 0x48, 0xee, 0xb0, 0xe8, 0x56, 0xe5,
+0x56, 0xe4, 0x30, 0xe6, 0x18, 0xeb, 0x98, 0xf2, 0xb6, 0xfb, 0xc6, 0x04, 0x32, 0x0c, 0xd0, 0x10,
+0x52, 0x12, 0x22, 0x11, 0x1a, 0x0e, 0x8c, 0x0a, 0x6c, 0x07, 0x62, 0x05, 0x24, 0x04, 0x12, 0x03,
+0x14, 0x01, 0xa4, 0xfd, 0xca, 0xf8, 0x88, 0xf3, 0x9a, 0xef, 0x00, 0xee, 0x1a, 0xef, 0x0e, 0xf2,
+0xc0, 0xf5, 0x24, 0xf9, 0xd2, 0xfb, 0x2e, 0xfe, 0xec, 0x00, 0xf8, 0x04, 0x96, 0x0a, 0x38, 0x11,
+0x32, 0x17, 0x86, 0x1a, 0x76, 0x19, 0x50, 0x13, 0xd8, 0x08, 0x26, 0xfc, 0xfe, 0xef, 0x84, 0xe6,
+0xef, 0xe0, 0xef, 0xde, 0xbd, 0xdf, 0xb1, 0xe2, 0x76, 0xe7, 0x70, 0xee, 0x30, 0xf8, 0xdc, 0x04,
+0x64, 0x13, 0xb9, 0x21, 0xf9, 0x2c, 0x27, 0x32, 0x9b, 0x2f, 0x1b, 0x25, 0x64, 0x14, 0x70, 0x00,
+0xc0, 0xec, 0x55, 0xdc, 0xc5, 0xd0, 0x99, 0xca, 0x97, 0xc9, 0x7d, 0xcd, 0x41, 0xd6, 0x1c, 0xe4,
+0x88, 0xf6, 0x08, 0x0c, 0x09, 0x22, 0x2b, 0x35, 0x15, 0x42, 0x37, 0x46, 0x99, 0x40, 0x87, 0x31,
+0x48, 0x1b, 0x38, 0x01, 0x16, 0xe7, 0x55, 0xd0, 0x77, 0xbf, 0xf3, 0xb5, 0x81, 0xb4, 0x5f, 0xbb,
+0x41, 0xca, 0x15, 0xe0, 0xb4, 0xfa, 0x1a, 0x17, 0x91, 0x31, 0x91, 0x46, 0x45, 0x53, 0xb8, 0x55,
+0x1f, 0x4d, 0x3b, 0x3a, 0x3d, 0x1f, 0x96, 0xff, 0x57, 0xdf, 0xe7, 0xc2, 0xcf, 0xad, 0xda, 0xa2,
+0x72, 0xa3, 0x85, 0xaf, 0x7f, 0xc5, 0xc5, 0xe2, 0x8e, 0x03, 0xbd, 0x23, 0xaf, 0x3f, 0x81, 0x54,
+0xda, 0x5f, 0x30, 0x60, 0xb9, 0x54, 0x2b, 0x3e, 0x8b, 0x1e, 0x94, 0xf9, 0x1f, 0xd4, 0x77, 0xb3,
+0xd2, 0x9c, 0x7e, 0x93, 0xba, 0x98, 0x26, 0xab, 0xd5, 0xc7, 0x62, 0xea, 0x44, 0x0e, 0x55, 0x2f,
+0xad, 0x4a, 0xf8, 0x5d, 0x6c, 0x67, 0x62, 0x65, 0xee, 0x56, 0xc1, 0x3c, 0x18, 0x19, 0x02, 0xf0,
+0x41, 0xc7, 0xae, 0xa5, 0xd0, 0x90, 0xec, 0x8b, 0xd0, 0x96, 0xc9, 0xae, 0x75, 0xcf, 0xee, 0xf3,
+0x9a, 0x17, 0x43, 0x37, 0xaf, 0x50, 0x1a, 0x62, 0xb6, 0x69, 0x6a, 0x65, 0x77, 0x54, 0x27, 0x37,
+0x60, 0x10, 0xea, 0xe4, 0xdd, 0xbb, 0x48, 0x9c, 0xca, 0x8b, 0x14, 0x8c, 0x88, 0x9b, 0x65, 0xb6,
+0x0d, 0xd8, 0xc4, 0xfb, 0xad, 0x1d, 0x81, 0x3b, 0x17, 0x53, 0xae, 0x62, 0xf2, 0x67, 0xf6, 0x60,
+0xbd, 0x4c, 0xbd, 0x2c, 0x72, 0x04, 0xdd, 0xd9, 0x1d, 0xb4, 0xfa, 0x99, 0x28, 0x8f, 0xf8, 0x93,
+0xf4, 0xa5, 0x43, 0xc1, 0xcf, 0xe1, 0x66, 0x03, 0xe9, 0x22, 0xed, 0x3d, 0x8f, 0x52, 0x86, 0x5e,
+0xe2, 0x5f, 0x34, 0x55, 0xcf, 0x3e, 0xd1, 0x1e, 0x4c, 0xf9, 0xeb, 0xd3, 0xef, 0xb4, 0x42, 0xa1,
+0x0a, 0x9b, 0x00, 0xa2, 0xa9, 0xb3, 0xf5, 0xcc, 0x2a, 0xea, 0x0c, 0x08, 0x9b, 0x23, 0x8d, 0x3a,
+0xf5, 0x4a, 0xeb, 0x52, 0xf5, 0x50, 0xcd, 0x44, 0x6b, 0x2f, 0x3c, 0x13, 0xe6, 0xf3, 0xbb, 0xd5,
+0x75, 0xbd, 0x63, 0xae, 0x64, 0xaa, 0x75, 0xb1, 0xe9, 0xc1, 0xa9, 0xd8, 0xa0, 0xf2, 0x60, 0x0c,
+0x33, 0x23, 0xe3, 0x34, 0xe9, 0x3f, 0x1f, 0x43, 0x6b, 0x3e, 0x7b, 0x32, 0xd7, 0x20, 0x52, 0x0b,
+0x30, 0xf4, 0x59, 0xde, 0xcd, 0xcc, 0x11, 0xc2, 0x99, 0xbf, 0x83, 0xc5, 0x9f, 0xd2, 0xc0, 0xe4,
+0x02, 0xf9, 0x8c, 0x0c, 0xb9, 0x1c, 0x0d, 0x28, 0xa7, 0x2d, 0xcb, 0x2d, 0x4b, 0x29, 0x3b, 0x21,
+0x66, 0x16, 0x60, 0x09, 0xdc, 0xfa, 0x48, 0xec, 0xab, 0xdf, 0x55, 0xd7, 0xf5, 0xd4, 0x07, 0xd9,
+0xa3, 0xe2, 0xb4, 0xef, 0x68, 0xfd, 0x50, 0x09, 0xc2, 0x11, 0x42, 0x16, 0x5c, 0x17, 0x8a, 0x16,
+0xe8, 0x14, 0xfa, 0x12, 0x50, 0x10, 0x08, 0x0c, 0x70, 0x05, 0x2c, 0xfd, 0xa0, 0xf4, 0x1c, 0xee,
+0x40, 0xeb, 0x82, 0xec, 0xe2, 0xf0, 0x7c, 0xf6, 0x6e, 0xfb, 0x64, 0xfe, 0x38, 0xff, 0xca, 0xfe,
+0xa8, 0xfe, 0x26, 0x00, 0x02, 0x04, 0x8e, 0x09, 0x3c, 0x0f, 0x20, 0x13, 0xd8, 0x13, 0x08, 0x11,
+0xfe, 0x0b, 0x48, 0x06, 0x5e, 0x01, 0x76, 0xfd, 0x1a, 0xfa, 0x7a, 0xf6, 0x18, 0xf2, 0x3a, 0xed,
+0xd8, 0xe8, 0x98, 0xe6, 0xd2, 0xe7, 0x7c, 0xed, 0x3c, 0xf7, 0xda, 0x03, 0x0e, 0x11, 0x6b, 0x1c,
+0xc3, 0x23, 0x1f, 0x26, 0xd5, 0x23, 0xc3, 0x1d, 0xf0, 0x14, 0x10, 0x0a, 0xc4, 0xfd, 0xd6, 0xf0,
+0x66, 0xe4, 0xc7, 0xd9, 0xbf, 0xd2, 0x89, 0xd0, 0x61, 0xd4, 0x3d, 0xde, 0xaa, 0xed, 0xf2, 0x00,
+0xa8, 0x15, 0x3b, 0x28, 0xdf, 0x35, 0x6b, 0x3c, 0x07, 0x3b, 0x55, 0x32, 0x45, 0x23, 0xfc, 0x0f,
+0xaa, 0xfa, 0xce, 0xe5, 0x7d, 0xd3, 0xd9, 0xc5, 0x29, 0xbe, 0xa3, 0xbd, 0xa7, 0xc4, 0x29, 0xd3,
+0x8a, 0xe8, 0xda, 0x02, 0xc7, 0x1e, 0x2d, 0x38, 0xa1, 0x4a, 0x01, 0x53, 0xd1, 0x4f, 0x8f, 0x41,
+0xf9, 0x2a, 0x9e, 0x0f, 0x5a, 0xf3, 0x3b, 0xd9, 0xed, 0xc3, 0xfd, 0xb4, 0xeb, 0xad, 0x3b, 0xaf,
+0x69, 0xb9, 0xa7, 0xcc, 0x0a, 0xe8, 0x12, 0x09, 0x1b, 0x2b, 0x29, 0x49, 0x76, 0x5d, 0x94, 0x64,
+0x0a, 0x5d, 0xcd, 0x48, 0xed, 0x2b, 0x4a, 0x0b, 0xe8, 0xea, 0x0f, 0xce, 0x37, 0xb7, 0x0e, 0xa8,
+0xfe, 0xa1, 0x78, 0xa5, 0x73, 0xb3, 0xff, 0xcb, 0x72, 0xed, 0xf4, 0x13, 0x25, 0x3a, 0x76, 0x59,
+0xa2, 0x6c, 0xec, 0x6f, 0x50, 0x63, 0xf5, 0x49, 0xef, 0x28, 0x2c, 0x05, 0xb5, 0xe2, 0x77, 0xc4,
+0x15, 0xad, 0x8c, 0x9e, 0xf8, 0x99, 0xc4, 0xa0, 0x57, 0xb3, 0x49, 0xd1, 0x96, 0xf7, 0x3d, 0x21,
+0xef, 0x47, 0x84, 0x65, 0xea, 0x74, 0xc8, 0x73, 0x36, 0x63, 0xe1, 0x46, 0xf1, 0x23, 0xce, 0xfe,
+0x5b, 0xdb, 0xa5, 0xbc, 0xae, 0xa5, 0xa4, 0x98, 0x18, 0x97, 0x0a, 0xa2, 0x77, 0xb9, 0x7f, 0xdb,
+0xda, 0x03, 0x01, 0x2d, 0xdb, 0x50, 0x48, 0x6a, 0x48, 0x75, 0xb4, 0x70, 0xf4, 0x5d, 0xb7, 0x40,
+0x5d, 0x1d, 0x16, 0xf8, 0xab, 0xd4, 0xdd, 0xb6, 0xdc, 0xa1, 0x12, 0x98, 0xe2, 0x9a, 0x62, 0xaa,
+0x87, 0xc5, 0xc2, 0xe8, 0x64, 0x0f, 0x63, 0x34, 0x23, 0x53, 0x86, 0x67, 0xec, 0x6e, 0x32, 0x68,
+0xde, 0x54, 0xff, 0x37, 0x3a, 0x15, 0xe2, 0xf0, 0x25, 0xcf, 0x21, 0xb4, 0x52, 0xa3, 0x64, 0x9e,
+0xd6, 0xa5, 0xcd, 0xb8, 0x6f, 0xd4, 0xfa, 0xf4, 0x54, 0x16, 0xef, 0x34, 0xa3, 0x4d, 0x98, 0x5d,
+0x7c, 0x62, 0x56, 0x5b, 0xdd, 0x48, 0x47, 0x2d, 0x7c, 0x0c, 0x9c, 0xea, 0xa9, 0xcc, 0xad, 0xb6,
+0x5f, 0xab, 0xa3, 0xab, 0x73, 0xb6, 0xe1, 0xc9, 0x65, 0xe2, 0x32, 0xfd, 0x66, 0x17, 0x35, 0x2f,
+0x75, 0x42, 0xf7, 0x4e, 0x75, 0x52, 0x93, 0x4b, 0x81, 0x3a, 0x59, 0x21, 0x2c, 0x04, 0x74, 0xe7,
+0xcb, 0xcf, 0x89, 0xc0, 0xef, 0xba, 0xab, 0xbe, 0xc3, 0xc9, 0xd1, 0xd9, 0x8c, 0xec, 0xb6, 0xff,
+0x9a, 0x12, 0x29, 0x24, 0xeb, 0x32, 0xaf, 0x3c, 0x75, 0x3f, 0x53, 0x39, 0xe5, 0x2a, 0x58, 0x16,
+0x48, 0xff, 0x4c, 0xea, 0x5b, 0xda, 0xaf, 0xd1, 0x27, 0xd0, 0x81, 0xd4, 0xbf, 0xdc, 0x34, 0xe7,
+0x70, 0xf2, 0x20, 0xfe, 0x24, 0x0a, 0xe8, 0x15, 0x8d, 0x20, 0xed, 0x27, 0x45, 0x2a, 0x55, 0x26,
+0x5d, 0x1c, 0x9a, 0x0e, 0xf2, 0xff, 0x50, 0xf3, 0xb2, 0xea, 0x96, 0xe6, 0x6a, 0xe6, 0xfc, 0xe8,
+0xec, 0xec, 0x1a, 0xf1, 0x80, 0xf5, 0x18, 0xfa, 0x4c, 0xff, 0x2c, 0x05, 0x6c, 0x0b, 0xda, 0x10,
+0x0c, 0x14, 0x38, 0x14, 0x30, 0x11, 0x42, 0x0c, 0xc4, 0x06, 0x38, 0x02, 0x4c, 0xff, 0xda, 0xfd,
+0x42, 0xfd, 0xba, 0xfc, 0x50, 0xfb, 0xd6, 0xf8, 0x9a, 0xf5, 0x3c, 0xf2, 0xf8, 0xef, 0xd8, 0xef,
+0x6a, 0xf2, 0xb6, 0xf7, 0x84, 0xfe, 0x8e, 0x05, 0xf2, 0x0b, 0xc8, 0x10, 0x52, 0x14, 0x5e, 0x16,
+0xce, 0x16, 0xba, 0x15, 0xf0, 0x12, 0xde, 0x0d, 0x92, 0x06, 0xe6, 0xfc, 0x98, 0xf1, 0x24, 0xe6,
+0xa1, 0xdc, 0xb5, 0xd7, 0x07, 0xd9, 0xe3, 0xe0, 0xec, 0xed, 0xc0, 0xfd, 0x5c, 0x0d, 0xe0, 0x1a,
+0x8b, 0x24, 0x57, 0x2a, 0x43, 0x2c, 0x5d, 0x2a, 0xab, 0x24, 0x26, 0x1b, 0x7c, 0x0d, 0x38, 0xfc,
+0xbe, 0xe8, 0xa1, 0xd5, 0xcf, 0xc6, 0xa5, 0xbf, 0x6f, 0xc2, 0x25, 0xcf, 0x83, 0xe3, 0x7e, 0xfb,
+0x1e, 0x13, 0xed, 0x26, 0x5b, 0x35, 0xb3, 0x3d, 0x3d, 0x40, 0xf5, 0x3c, 0xc9, 0x33, 0xbd, 0x24,
+0xe4, 0x0f, 0xb4, 0xf6, 0xbd, 0xdb, 0x2d, 0xc3, 0xcb, 0xb1, 0xb7, 0xab, 0x63, 0xb2, 0xc5, 0xc4,
+0x71, 0xdf, 0xde, 0xfd, 0xd0, 0x1a, 0xd5, 0x32, 0x53, 0x44, 0x7f, 0x4e, 0x2d, 0x51, 0xe7, 0x4b,
+0x61, 0x3e, 0x93, 0x28, 0x30, 0x0c, 0x4e, 0xeb, 0x9f, 0xca, 0x3f, 0xaf, 0x28, 0x9e, 0x30, 0x9b,
+0xb8, 0xa6, 0xc9, 0xbe, 0x57, 0xdf, 0xb8, 0x02, 0xc9, 0x23, 0x47, 0x3f, 0xcb, 0x52, 0x6c, 0x5d,
+0x36, 0x5e, 0x79, 0x54, 0xa9, 0x40, 0x05, 0x24, 0x2e, 0x01, 0x5d, 0xdc, 0x51, 0xba, 0x90, 0xa0,
+0x1e, 0x93, 0x12, 0x94, 0x70, 0xa3, 0xf3, 0xbe, 0x71, 0xe2, 0x7a, 0x08, 0x5b, 0x2c, 0xef, 0x49,
+0xc8, 0x5e, 0x90, 0x68, 0x4c, 0x66, 0x94, 0x57, 0xd5, 0x3d, 0x04, 0x1c, 0xc0, 0xf5, 0x1b, 0xd0,
+0xb1, 0xaf, 0x20, 0x99, 0x10, 0x8f, 0xce, 0x92, 0x28, 0xa4, 0x43, 0xc1, 0x60, 0xe6, 0x6c, 0x0e,
+0x39, 0x34, 0x05, 0x53, 0x54, 0x67, 0x42, 0x6e, 0xfa, 0x66, 0xdf, 0x52, 0x83, 0x34, 0x46, 0x10,
+0x78, 0xea, 0x3f, 0xc7, 0xde, 0xaa, 0x06, 0x98, 0xc8, 0x90, 0x8a, 0x96, 0x48, 0xa9, 0xd1, 0xc7,
+0x76, 0xee, 0xa0, 0x17, 0x89, 0x3d, 0xce, 0x5a, 0x1a, 0x6b, 0xc2, 0x6c, 0x00, 0x60, 0xc3, 0x47,
+0x09, 0x28, 0x16, 0x05, 0xa5, 0xe2, 0x2b, 0xc4, 0x13, 0xac, 0x92, 0x9c, 0xae, 0x97, 0x98, 0x9e,
+0x77, 0xb2, 0x93, 0xd1, 0x24, 0xf8, 0x2f, 0x20, 0x4d, 0x43, 0xf8, 0x5b, 0xba, 0x66, 0x0c, 0x63,
+0xcf, 0x52, 0xd5, 0x39, 0x20, 0x1c, 0x48, 0xfd, 0xff, 0xdf, 0x89, 0xc6, 0x83, 0xb2, 0x08, 0xa6,
+0x16, 0xa3, 0x5d, 0xab, 0xaf, 0xbf, 0xfd, 0xdd, 0x0c, 0x02, 0xe5, 0x25, 0x33, 0x43, 0x7c, 0x55,
+0xc6, 0x5a, 0x77, 0x53, 0xc7, 0x42, 0x07, 0x2c, 0xa8, 0x12, 0x48, 0xf9, 0x9d, 0xe1, 0x29, 0xcd,
+0x7d, 0xbd, 0x3b, 0xb4, 0x3d, 0xb3, 0x4f, 0xbc, 0x11, 0xcf, 0xd6, 0xe9, 0x2a, 0x08, 0xb1, 0x24,
+0x95, 0x3a, 0xc5, 0x46, 0x21, 0x48, 0xad, 0x40, 0x4f, 0x32, 0x3f, 0x20, 0xa8, 0x0c, 0x14, 0xf9,
+0x36, 0xe7, 0xf3, 0xd7, 0xd1, 0xcc, 0xe7, 0xc6, 0xb3, 0xc7, 0x97, 0xcf, 0x85, 0xde, 0x5e, 0xf2,
+0x2a, 0x08, 0x06, 0x1c, 0xcd, 0x2a, 0x65, 0x32, 0xdb, 0x32, 0xff, 0x2c, 0xb5, 0x22, 0xea, 0x15,
+0x1c, 0x08, 0xf2, 0xfa, 0x44, 0xef, 0x18, 0xe6, 0xdd, 0xdf, 0xf3, 0xdc, 0x91, 0xdd, 0xdd, 0xe1,
+0xc2, 0xe9, 0x9a, 0xf4, 0xe2, 0x00, 0xec, 0x0c, 0x3c, 0x16, 0xda, 0x1b, 0xf7, 0x1c, 0x1a, 0x1a,
+0x72, 0x14, 0x44, 0x0d, 0x6a, 0x06, 0xb0, 0x00, 0xaa, 0xfc, 0xe6, 0xf9, 0xe6, 0xf7, 0xbe, 0xf5,
+0x3a, 0xf3, 0xc4, 0xf0, 0x82, 0xef, 0xa0, 0xf0, 0x32, 0xf4, 0x80, 0xf9, 0x1c, 0xff, 0xa2, 0x03,
+0x56, 0x06, 0x48, 0x07, 0x3a, 0x07, 0x76, 0x07, 0xd0, 0x08, 0x6e, 0x0b, 0x9e, 0x0e, 0xbc, 0x10,
+0x30, 0x10, 0xf4, 0x0b, 0xd4, 0x03, 0x96, 0xf9, 0x74, 0xef, 0x1a, 0xe8, 0xb4, 0xe4, 0xfe, 0xe4,
+0xfa, 0xe7, 0x76, 0xec, 0xa8, 0xf1, 0x7e, 0xf7, 0x80, 0xfe, 0x26, 0x07, 0x66, 0x11, 0xb2, 0x1b,
+0x35, 0x24, 0x8b, 0x28, 0xb5, 0x26, 0x19, 0x1e, 0x72, 0x0f, 0x80, 0xfd, 0x94, 0xeb, 0x05, 0xdd,
+0x95, 0xd3, 0xe7, 0xcf, 0x45, 0xd1, 0x9f, 0xd6, 0x99, 0xdf, 0x8e, 0xeb, 0xbe, 0xfa, 0x5e, 0x0c,
+0x83, 0x1e, 0xed, 0x2e, 0x4f, 0x3a, 0x55, 0x3e, 0x69, 0x39, 0x71, 0x2b, 0x88, 0x16, 0xb0, 0xfd,
+0x3a, 0xe5, 0x7d, 0xd0, 0x67, 0xc2, 0xd3, 0xbb, 0xd7, 0xbc, 0xe3, 0xc4, 0x05, 0xd3, 0x96, 0xe6,
+0x28, 0xfe, 0x66, 0x17, 0x35, 0x2f, 0x2d, 0x42, 0x67, 0x4d, 0x0b, 0x4f, 0x03, 0x46, 0x6f, 0x33,
+0x36, 0x19, 0x10, 0xfb, 0xbb, 0xdc, 0xd5, 0xc2, 0xbb, 0xb0, 0x9c, 0xa8, 0x18, 0xab, 0x8f, 0xb7,
+0xc5, 0xcc, 0x52, 0xe8, 0x12, 0x07, 0x53, 0x25, 0x7f, 0x3f, 0x57, 0x52, 0xf2, 0x5b, 0xa6, 0x5a,
+0x5d, 0x4e, 0xd3, 0x37, 0x50, 0x19, 0x26, 0xf6, 0xe9, 0xd2, 0x9d, 0xb4, 0x04, 0xa0, 0x1a, 0x98,
+0xc4, 0x9d, 0x43, 0xb0, 0xb7, 0xcc, 0x3c, 0xef, 0xf0, 0x12, 0x99, 0x33, 0xa3, 0x4d, 0xe2, 0x5e,
+0xaa, 0x65, 0x5c, 0x61, 0xb5, 0x51, 0x8f, 0x37, 0x02, 0x15, 0x92, 0xed, 0x89, 0xc6, 0x02, 0xa6,
+0x9a, 0x91, 0xc0, 0x8c, 0x04, 0x98, 0xeb, 0xb0, 0x6f, 0xd3, 0xac, 0xf9, 0xad, 0x1e, 0x6f, 0x3e,
+0x5c, 0x56, 0x14, 0x65, 0x38, 0x69, 0x2e, 0x62, 0xc7, 0x4f, 0xa9, 0x32, 0xe6, 0x0c, 0xd1, 0xe2,
+0x8b, 0xba, 0x24, 0x9b, 0x5a, 0x8a, 0xaa, 0x8a, 0x40, 0x9b, 0x7f, 0xb8, 0xb9, 0xdc, 0xb2, 0x02,
+0xb3, 0x25, 0xad, 0x42, 0x36, 0x58, 0x96, 0x64, 0xb6, 0x66, 0x96, 0x5d, 0xc5, 0x48, 0x59, 0x29,
+0x0c, 0x02, 0xe5, 0xd7, 0xc5, 0xb1, 0xc2, 0x96, 0x48, 0x8b, 0xb2, 0x90, 0xe2, 0xa4, 0x2b, 0xc3,
+0xa4, 0xe6, 0x2c, 0x0a, 0xfb, 0x29, 0x33, 0x44, 0xca, 0x56, 0x7a, 0x60, 0x0e, 0x60, 0x4d, 0x54,
+0x97, 0x3d, 0x39, 0x1d, 0xbc, 0xf6, 0xb9, 0xcf, 0xd3, 0xae, 0x96, 0x99, 0x80, 0x93, 0x8a, 0x9c,
+0xa3, 0xb1, 0xf1, 0xce, 0x80, 0xef, 0x44, 0x0f, 0x75, 0x2b, 0xb9, 0x41, 0xc9, 0x50, 0x44, 0x57,
+0xb5, 0x53, 0x25, 0x46, 0x25, 0x2f, 0xce, 0x10, 0x04, 0xef, 0xbb, 0xce, 0x0b, 0xb5, 0x00, 0xa6,
+0x72, 0xa3, 0xdb, 0xac, 0x37, 0xc0, 0xad, 0xd9, 0xc2, 0xf5, 0x16, 0x11, 0xe1, 0x28, 0x19, 0x3b,
+0x41, 0x46, 0xf9, 0x48, 0xfb, 0x42, 0xc9, 0x34, 0x27, 0x20, 0x6c, 0x07, 0x74, 0xed, 0x65, 0xd5,
+0xb1, 0xc2, 0x0b, 0xb8, 0xb5, 0xb6, 0xf9, 0xbe, 0xe9, 0xce, 0x18, 0xe4, 0x20, 0xfb, 0x2c, 0x11,
+0x73, 0x23, 0x3b, 0x30, 0x3d, 0x36, 0x87, 0x35, 0xcf, 0x2e, 0x61, 0x23, 0xa2, 0x14, 0x12, 0x04,
+0xb4, 0xf2, 0x47, 0xe2, 0xdb, 0xd4, 0x85, 0xcc, 0x35, 0xcb, 0x07, 0xd1, 0x3f, 0xdd, 0x3a, 0xed,
+0x5a, 0xfe, 0x9e, 0x0d, 0x12, 0x19, 0x8d, 0x1f, 0x11, 0x21, 0xc1, 0x1e, 0x0a, 0x1a, 0xe4, 0x13,
+0x26, 0x0d, 0x86, 0x05, 0xfe, 0xfc, 0xd6, 0xf3, 0x04, 0xeb, 0x7e, 0xe4, 0xed, 0xe1, 0x34, 0xe4,
+0x88, 0xea, 0x56, 0xf3, 0x38, 0xfc, 0x68, 0x03, 0xfa, 0x07, 0x94, 0x09, 0x8a, 0x09, 0x22, 0x09,
+0x5c, 0x09, 0xce, 0x0a, 0x96, 0x0c, 0x7a, 0x0d, 0x46, 0x0c, 0x44, 0x08, 0x64, 0x02, 0x60, 0xfc,
+0xc8, 0xf7, 0x60, 0xf5, 0xe4, 0xf4, 0x20, 0xf5, 0x0e, 0xf5, 0x24, 0xf4, 0x5a, 0xf2, 0x16, 0xf1,
+0x9c, 0xf1, 0x08, 0xf5, 0xce, 0xfb, 0xfa, 0x04, 0xde, 0x0e, 0x70, 0x17, 0x85, 0x1c, 0x53, 0x1d,
+0x20, 0x1a, 0xd4, 0x13, 0xe8, 0x0b, 0x2e, 0x03, 0xf4, 0xf9, 0xa0, 0xf0, 0xb8, 0xe7, 0x05, 0xe0,
+0xe5, 0xda, 0x63, 0xd9, 0xb9, 0xdc, 0x52, 0xe5, 0x94, 0xf2, 0x0a, 0x03, 0x8c, 0x14, 0x2d, 0x24,
+0x3f, 0x2f, 0x07, 0x34, 0x97, 0x31, 0xfb, 0x28, 0x44, 0x1b, 0x52, 0x0a, 0xf8, 0xf7, 0x2a, 0xe6,
+0x9d, 0xd6, 0x45, 0xcb, 0x1f, 0xc5, 0x69, 0xc5, 0x7b, 0xcc, 0x47, 0xda, 0xc2, 0xed, 0x10, 0x05,
+0x73, 0x1d, 0x45, 0x33, 0x3d, 0x43, 0x27, 0x4a, 0x03, 0x47, 0xed, 0x39, 0x27, 0x25, 0x9e, 0x0b,
+0xfe, 0xf0, 0x53, 0xd8, 0xbd, 0xc4, 0xbf, 0xb7, 0xa9, 0xb2, 0xa3, 0xb5, 0xe3, 0xc0, 0xc9, 0xd3,
+0x12, 0xed, 0xae, 0x0a, 0x05, 0x29, 0x1f, 0x44, 0x06, 0x57, 0x1c, 0x5e, 0x6a, 0x57, 0x2b, 0x44,
+0x93, 0x27, 0xb0, 0x06, 0x10, 0xe6, 0xfd, 0xc9, 0x07, 0xb5, 0xba, 0xa8, 0x4e, 0xa5, 0xfe, 0xaa,
+0xe1, 0xb9, 0x75, 0xd1, 0x98, 0xf0, 0xee, 0x13, 0x71, 0x37, 0x72, 0x55, 0x68, 0x68, 0x58, 0x6c,
+0x44, 0x60, 0x73, 0x46, 0x15, 0x24, 0xae, 0xfe, 0x61, 0xdb, 0x33, 0xbe, 0x90, 0xa9, 0x70, 0x9e,
+0x30, 0x9d, 0xea, 0xa5, 0xa3, 0xb8, 0x27, 0xd5, 0xe2, 0xf8, 0x5d, 0x20, 0x13, 0x46, 0xb6, 0x63,
+0xe0, 0x73, 0x10, 0x73, 0x96, 0x61, 0x65, 0x43, 0xfd, 0x1d, 0x02, 0xf7, 0x5f, 0xd3, 0x6b, 0xb6,
+0x96, 0xa2, 0xfc, 0x98, 0x00, 0x9a, 0x20, 0xa6, 0x67, 0xbd, 0x49, 0xde, 0x7c, 0x05, 0x23, 0x2e,
+0x37, 0x52, 0x22, 0x6c, 0x28, 0x77, 0x84, 0x71, 0xbc, 0x5c, 0xc5, 0x3c, 0x04, 0x17, 0x7a, 0xf0,
+0x75, 0xcd, 0x63, 0xb1, 0xf0, 0x9e, 0x5a, 0x97, 0xb2, 0x9b, 0x03, 0xac, 0x81, 0xc7, 0x34, 0xeb,
+0x8a, 0x12, 0x29, 0x38, 0x30, 0x57, 0x54, 0x6b, 0x9c, 0x71, 0x48, 0x69, 0xdd, 0x53, 0xe9, 0x34,
+0xae, 0x10, 0x96, 0xeb, 0xed, 0xc9, 0xc9, 0xaf, 0xcc, 0x9f, 0xf2, 0x9b, 0x86, 0xa4, 0xd5, 0xb8,
+0x73, 0xd6, 0x44, 0xf9, 0x7f, 0x1c, 0xfb, 0x3b, 0x8f, 0x54, 0x5e, 0x63, 0xa6, 0x66, 0x84, 0x5d,
+0x03, 0x49, 0xc3, 0x2b, 0x92, 0x09, 0xaa, 0xe6, 0xdf, 0xc7, 0x3f, 0xb1, 0xbc, 0xa5, 0x50, 0xa6,
+0x5b, 0xb2, 0x2b, 0xc8, 0x46, 0xe4, 0xb8, 0x02, 0x83, 0x1f, 0x53, 0x38, 0x17, 0x4b, 0x1c, 0x56,
+0xc6, 0x57, 0x07, 0x4f, 0x67, 0x3c, 0xdb, 0x21, 0xc4, 0x02, 0xaf, 0xe3, 0xb1, 0xc9, 0x93, 0xb8,
+0x81, 0xb2, 0x23, 0xb7, 0xbb, 0xc4, 0x6b, 0xd8, 0x58, 0xef, 0x40, 0x06, 0x60, 0x1b, 0x8f, 0x2d,
+0xc9, 0x3b, 0x77, 0x44, 0xb5, 0x45, 0x49, 0x3e, 0x4d, 0x2e, 0xac, 0x17, 0xcc, 0xfd, 0x54, 0xe5,
+0x59, 0xd2, 0xdd, 0xc7, 0x4f, 0xc6, 0x7b, 0xcc, 0x19, 0xd8, 0xd0, 0xe6, 0x76, 0xf6, 0x7e, 0x05,
+0x1e, 0x13, 0x25, 0x1f, 0x31, 0x29, 0xa9, 0x2f, 0xe7, 0x30, 0xc1, 0x2b, 0x35, 0x20, 0xda, 0x0f,
+0xd4, 0xfd, 0x90, 0xed, 0x3d, 0xe2, 0x2f, 0xdd, 0xdd, 0xdd, 0xbf, 0xe2, 0xda, 0xe9, 0xa6, 0xf1,
+0x36, 0xf9, 0xfe, 0xff, 0x4e, 0x06, 0xba, 0x0c, 0xec, 0x12, 0x06, 0x18, 0xa8, 0x1a, 0xa6, 0x19,
+0xbc, 0x14, 0xe4, 0x0c, 0xc4, 0x03, 0xba, 0xfb, 0x8e, 0xf6, 0x5a, 0xf4, 0xaa, 0xf4, 0xf6, 0xf5,
+0x20, 0xf7, 0xac, 0xf7, 0x7c, 0xf7, 0xfe, 0xf6, 0x2a, 0xf7, 0xca, 0xf8, 0x24, 0xfc, 0xf4, 0x00,
+0x3e, 0x06, 0x14, 0x0b, 0x98, 0x0e, 0x5e, 0x10, 0x72, 0x10, 0xa6, 0x0f, 0x46, 0x0e, 0x8e, 0x0c,
+0x1c, 0x0a, 0x62, 0x06, 0x32, 0x01, 0x7a, 0xfa, 0xa4, 0xf2, 0xc2, 0xea, 0x84, 0xe4, 0x7b, 0xe1,
+0x2f, 0xe3, 0xc6, 0xe9, 0x9e, 0xf4, 0xb8, 0x01, 0xc8, 0x0e, 0x90, 0x19, 0xfd, 0x20, 0x83, 0x24,
+0x59, 0x24, 0xf1, 0x20, 0x6a, 0x1a, 0x3a, 0x11, 0xf2, 0x05, 0xd6, 0xf9, 0xba, 0xee, 0xaa, 0xe6,
+0xe5, 0xe2, 0x04, 0xe4, 0x2e, 0xe9, 0xfa, 0xf0, 0x86, 0xf9, 0xfe, 0x00, 0x66, 0x06, 0x74, 0x09,
+0x60, 0x0a, 0xde, 0x09, 0x8e, 0x08, 0xe6, 0x06, 0x16, 0x05, 0x4c, 0x03, 0x76, 0x01, 0xb2, 0xff,
+0x20, 0xfe, 0x12, 0xfd, 0xa6, 0xfc, 0xd8, 0xfc, 0x8e, 0xfd, 0x9e, 0xfe, 0xc2, 0xff, 0xbe, 0x00,
+0x82, 0x01, 0xf6, 0x01, 0x38, 0x02, 0x26, 0x02, 0xbe, 0x01, 0x2c, 0x01, 0xdc, 0x00, 0x9a, 0x00,
+0x6c, 0x00, 0x26, 0x00, 0xfe, 0xff, 0xe0, 0xff, 0xe8, 0xff, 0xfa, 0xff, 0x1c, 0x00, 0x48, 0x00,
+0x80, 0x00, 0xb0, 0x00, 0xd2, 0x00, 0x04, 0x01, 0x1a, 0x01, 0x08, 0x01, 0xae, 0x00, 0x38, 0x00,
+0xc4, 0xff, 0x8e, 0xff, 0x6e, 0xff, 0x6c, 0xff, 0x82, 0xff, 0xb4, 0xff, 0xec, 0xff, 0x14, 0x00,
+0x20, 0x00, 0x2c, 0x00, 0x28, 0x00, 0x26, 0x00, 0x38, 0x00, 0x56, 0x00, 0x9a, 0x00, 0xb6, 0x00,
+0xa8, 0x00, 0x74, 0x00, 0x3a, 0x00, 0xf2, 0xff, 0xa4, 0xff, 0x34, 0xff, 0xce, 0xfe, 0x94, 0xfe,
+0x9a, 0xfe, 0xc8, 0xfe, 0x10, 0xff, 0x7a, 0xff, 0xcc, 0xff, 0xf6, 0xff, 0x1a, 0x00, 0x46, 0x00,
+0x6a, 0x00, 0x74, 0x00, 0x54, 0x00, 0x20, 0x00, 0xf2, 0xff, 0xc2, 0xff, 0x8a, 0xff, 0x46, 0xff,
+0x0c, 0xff, 0xe8, 0xfe, 0xea, 0xfe, 0x10, 0xff, 0x4e, 0xff, 0x96, 0xff, 0xca, 0xff, 0xf0, 0xff,
+0x0c, 0x00, 0x40, 0x00, 0x62, 0x00, 0x5c, 0x00, 0x0c, 0x00, 0xb2, 0xff, 0x64, 0xff, 0x46, 0xff,
+0x16, 0xff, 0xdc, 0xfe, 0x8e, 0xfe, 0x42, 0xfe, 0x2a, 0xfe, 0x56, 0xfe, 0xd0, 0xfe, 0x4a, 0xff,
+0xaa, 0xff, 0xca, 0xff, 0xe8, 0xff, 0x1a, 0x00, 0x78, 0x00, 0xae, 0x00, 0xa0, 0x00, 0x3a, 0x00,
+0xc6, 0xff, 0x48, 0xff, 0xf8, 0xfe, 0xd2, 0xfe, 0xc8, 0xfe, 0xb8, 0xfe, 0xa2, 0xfe, 0xa6, 0xfe,
+0xbe, 0xfe, 0x12, 0xff, 0x64, 0xff, 0xc8, 0xff, 0x0e, 0x00, 0x42, 0x00, 0x40, 0x00, 0x14, 0x00,
+0xd0, 0xff, 0x76, 0xff, 0x18, 0xff, 0xd0, 0xfe, 0xa6, 0xfe, 0x8e, 0xfe, 0xa2, 0xfe, 0xca, 0xfe,
+0x06, 0xff, 0x46, 0xff, 0x74, 0xff, 0x8e, 0xff, 0x8a, 0xff, 0x8e, 0xff, 0x98, 0xff, 0xb6, 0xff,
+0xdc, 0xff, 0x06, 0x00, 0x12, 0x00, 0xfa, 0xff, 0xcc, 0xff, 0x8c, 0xff, 0x3c, 0xff, 0xf4, 0xfe,
+0xb2, 0xfe, 0x98, 0xfe, 0xa2, 0xfe, 0xbe, 0xfe, 0xfa, 0xfe, 0x1c, 0xff, 0x52, 0xff, 0x7c, 0xff,
+0xa2, 0xff, 0xa6, 0xff, 0xac, 0xff, 0xaa, 0xff, 0x9c, 0xff, 0x88, 0xff, 0x6e, 0xff, 0x54, 0xff,
+0x2a, 0xff, 0x0e, 0xff, 0xec, 0xfe, 0xee, 0xfe, 0xfe, 0xfe, 0x20, 0xff, 0x1e, 0xff, 0x22, 0xff,
+0x1e, 0xff, 0x40, 0xff, 0x6a, 0xff, 0x9e, 0xff, 0xbc, 0xff, 0xb6, 0xff, 0xa2, 0xff, 0x70, 0xff,
+0x56, 0xff, 0x4c, 0xff, 0x5a, 0xff, 0x4e, 0xff, 0x3c, 0xff, 0x26, 0xff, 0x32, 0xff, 0x46, 0xff,
+0x68, 0xff, 0x82, 0xff, 0x8c, 0xff, 0x8a, 0xff, 0x74, 0xff, 0x64, 0xff, 0x70, 0xff, 0x8a, 0xff,
+0xa6, 0xff, 0xae, 0xff, 0xa8, 0xff, 0x96, 0xff, 0x72, 0xff, 0x4c, 0xff, 0x22, 0xff, 0x1e, 0xff,
+0x36, 0xff, 0x58, 0xff, 0x78, 0xff, 0x80, 0xff, 0x8c, 0xff, 0x86, 0xff, 0x6a, 0xff, 0x4c, 0xff,
+0x4c, 0xff, 0x62, 0xff, 0x70, 0xff, 0x90, 0xff, 0x9c, 0xff, 0xa8, 0xff, 0x98, 0xff, 0x8a, 0xff,
+0x78, 0xff, 0x88, 0xff, 0x92, 0xff, 0x8a, 0xff, 0x66, 0xff, 0x3c, 0xff, 0x34, 0xff, 0x40, 0xff,
+0x62, 0xff, 0x5e, 0xff, 0x5c, 0xff, 0x4c, 0xff, 0x48, 0xff, 0x56, 0xff, 0x86, 0xff, 0xb2, 0xff,
+0xc8, 0xff, 0xbc, 0xff, 0xae, 0xff, 0x9c, 0xff, 0x9e, 0xff, 0x90, 0xff, 0x6e, 0xff, 0x4c, 0xff,
+0x34, 0xff, 0x28, 0xff, 0x22, 0xff, 0x30, 0xff, 0x3e, 0xff, 0x56, 0xff, 0x6c, 0xff, 0x94, 0xff,
+0xae, 0xff, 0xc6, 0xff, 0xd0, 0xff, 0xcc, 0xff, 0xb6, 0xff, 0xc0, 0xff, 0xae, 0xff, 0xae, 0xff,
+0x92, 0xff, 0x6e, 0xff, 0x5c, 0xff, 0x34, 0xff, 0x22, 0xff, 0x20, 0xff, 0x28, 0xff, 0x48, 0xff,
+0x88, 0xff, 0xde, 0xff, 0x20, 0x00, 0x5a, 0x00, 0x60, 0x00, 0x4a, 0x00, 0x20, 0x00, 0xea, 0xff,
+0xac, 0xff, 0x64, 0xff, 0x2a, 0xff, 0x04, 0xff, 0xea, 0xfe, 0xee, 0xfe, 0x22, 0xff, 0x3c, 0xff,
+0x72, 0xff, 0x96, 0xff, 0xc8, 0xff, 0xf2, 0xff, 0x16, 0x00, 0x22, 0x00, 0x32, 0x00, 0x38, 0x00,
+0x1a, 0x00, 0xec, 0xff, 0xa8, 0xff, 0x5e, 0xff, 0x28, 0xff, 0x0c, 0xff, 0x02, 0xff, 0x12, 0xff,
+0x18, 0xff, 0x38, 0xff, 0x58, 0xff, 0x92, 0xff, 0xca, 0xff, 0x14, 0x00, 0x46, 0x00, 0x5c, 0x00,
+0x40, 0x00, 0x2e, 0x00, 0x0c, 0x00, 0xd0, 0xff, 0xae, 0xff, 0x6a, 0xff, 0x28, 0xff, 0xdc, 0xfe,
+0xb4, 0xfe, 0xb8, 0xfe, 0xf6, 0xfe, 0x26, 0xff, 0x80, 0xff, 0xb6, 0xff, 0x04, 0x00, 0x50, 0x00,
+0x7c, 0x00, 0x9e, 0x00, 0x92, 0x00, 0x68, 0x00, 0x1e, 0x00, 0xdc, 0xff, 0x9e, 0xff, 0x68, 0xff,
+0x14, 0xff, 0xdc, 0xfe, 0xba, 0xfe, 0xcc, 0xfe, 0xf6, 0xfe, 0x34, 0xff, 0x82, 0xff, 0xc4, 0xff,
+0x0e, 0x00, 0x4c, 0x00, 0x6e, 0x00, 0x7a, 0x00, 0x60, 0x00, 0x32, 0x00, 0xf2, 0xff, 0xb6, 0xff,
+0x78, 0xff, 0x50, 0xff, 0x20, 0xff, 0x00, 0xff, 0xf4, 0xfe, 0x04, 0xff, 0x2c, 0xff, 0x60, 0xff,
+0xa4, 0xff, 0xd8, 0xff, 0x0e, 0x00, 0x42, 0x00, 0x6c, 0x00, 0x7c, 0x00, 0x66, 0x00, 0x42, 0x00,
+0x08, 0x00, 0xbe, 0xff, 0x86, 0xff, 0x50, 0xff, 0x24, 0xff, 0xfc, 0xfe, 0x08, 0xff, 0x20, 0xff,
+0x4c, 0xff, 0x78, 0xff, 0xac, 0xff, 0xf0, 0xff, 0x14, 0x00, 0x32, 0x00, 0x4e, 0x00, 0x50, 0x00,
+0x34, 0x00, 0x20, 0x00, 0xf4, 0xff, 0xb4, 0xff, 0x86, 0xff, 0x54, 0xff, 0x3e, 0xff, 0x2c, 0xff,
+0x24, 0xff, 0x3c, 0xff, 0x56, 0xff, 0x8a, 0xff, 0xb6, 0xff, 0xe4, 0xff, 0x10, 0x00, 0x1a, 0x00,
+0x32, 0x00, 0x2c, 0x00, 0x1c, 0x00, 0x04, 0x00, 0xde, 0xff, 0xc0, 0xff, 0xa0, 0xff, 0x7e, 0xff,
+0x74, 0xff, 0x76, 0xff, 0x76, 0xff, 0x8a, 0xff, 0x96, 0xff, 0xb2, 0xff, 0xe2, 0xff, 0xee, 0xff,
+0x02, 0x00, 0x04, 0x00, 0x06, 0x00, 0x12, 0x00, 0x00, 0x00, 0xea, 0xff, 0xda, 0xff, 0xc2, 0xff,
+0xb8, 0xff, 0xa2, 0xff, 0xa8, 0xff, 0xa2, 0xff, 0x96, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xc0, 0xff,
+0xcc, 0xff, 0xd6, 0xff, 0xea, 0xff, 0xea, 0xff, 0xf2, 0xff, 0x00, 0x00, 0xf0, 0xff, 0xf8, 0xff,
+0xec, 0xff, 0xe6, 0xff, 0xf2, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xd8, 0xff,
+0xce, 0xff, 0xd2, 0xff, 0xd0, 0xff, 0xd0, 0xff, 0xd4, 0xff, 0xdc, 0xff, 0xe8, 0xff, 0xea, 0xff,
+0xf8, 0xff, 0xfc, 0xff, 0x0c, 0x00, 0x12, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x0a, 0x00, 0x0e, 0x00,
+0xfc, 0xff, 0xec, 0xff, 0xd4, 0xff, 0xc6, 0xff, 0xb6, 0xff, 0xac, 0xff, 0xa8, 0xff, 0xba, 0xff,
+0xbe, 0xff, 0xd0, 0xff, 0xe0, 0xff, 0xf8, 0xff, 0x14, 0x00, 0x18, 0x00, 0x38, 0x00, 0x36, 0x00,
+0x2c, 0x00, 0x1c, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xde, 0xff, 0xca, 0xff, 0xa2, 0xff, 0x9c, 0xff,
+0xa2, 0xff, 0xac, 0xff, 0xbe, 0xff, 0xca, 0xff, 0xe6, 0xff, 0x08, 0x00, 0x2c, 0x00, 0x4c, 0x00,
+0x54, 0x00, 0x58, 0x00, 0x50, 0x00, 0x46, 0x00, 0x22, 0x00, 0xfa, 0xff, 0xda, 0xff, 0xb8, 0xff,
+0x9e, 0xff, 0x80, 0xff, 0x7a, 0xff, 0x86, 0xff, 0x9a, 0xff, 0xae, 0xff, 0xe6, 0xff, 0x08, 0x00,
+0x32, 0x00, 0x4e, 0x00, 0x66, 0x00, 0x6a, 0x00, 0x62, 0x00, 0x42, 0x00, 0x28, 0x00, 0xf4, 0xff,
+0xce, 0xff, 0x9a, 0xff, 0x6c, 0xff, 0x5e, 0xff, 0x54, 0xff, 0x66, 0xff, 0x88, 0xff, 0xb0, 0xff,
+0xda, 0xff, 0x14, 0x00, 0x4e, 0x00, 0x64, 0x00, 0x92, 0x00, 0x9c, 0x00, 0x82, 0x00, 0x60, 0x00,
+0x2a, 0x00, 0x02, 0x00, 0xc6, 0xff, 0x90, 0xff, 0x66, 0xff, 0x50, 0xff, 0x4e, 0xff, 0x64, 0xff,
+0x8a, 0xff, 0xb4, 0xff, 0xf4, 0xff, 0x2e, 0x00, 0x6c, 0x00, 0x9e, 0x00, 0xae, 0x00, 0xa8, 0x00,
+0x8c, 0x00, 0x56, 0x00, 0x22, 0x00, 0xe8, 0xff, 0xa8, 0xff, 0x72, 0xff, 0x48, 0xff, 0x3a, 0xff,
+0x38, 0xff, 0x5a, 0xff, 0x88, 0xff, 0xd0, 0xff, 0x0e, 0x00, 0x42, 0x00, 0x88, 0x00, 0xac, 0x00,
+0xb8, 0x00, 0xae, 0x00, 0x8a, 0x00, 0x4c, 0x00, 0x16, 0x00, 0xea, 0xff, 0xa0, 0xff, 0x70, 0xff,
+0x44, 0xff, 0x40, 0xff, 0x54, 0xff, 0x84, 0xff, 0xb8, 0xff, 0xfe, 0xff, 0x30, 0x00, 0x6c, 0x00,
+0xa2, 0x00, 0xc0, 0x00, 0xc8, 0x00, 0xb8, 0x00, 0x8e, 0x00, 0x48, 0x00, 0x10, 0x00, 0xda, 0xff,
+0xa4, 0xff, 0x74, 0xff, 0x5e, 0xff, 0x52, 0xff, 0x64, 0xff, 0x8e, 0xff, 0xca, 0xff, 0x06, 0x00,
+0x36, 0x00, 0x7a, 0x00, 0xa0, 0x00, 0xb8, 0x00, 0xbe, 0x00, 0x9c, 0x00, 0x6c, 0x00, 0x3a, 0x00,
+0x00, 0x00, 0xcc, 0xff, 0xaa, 0xff, 0x76, 0xff, 0x6c, 0xff, 0x6a, 0xff, 0x72, 0xff, 0xa2, 0xff,
+0xd4, 0xff, 0x0e, 0x00, 0x42, 0x00, 0x7a, 0x00, 0x9c, 0x00, 0xae, 0x00, 0xa6, 0x00, 0x88, 0x00,
+0x6c, 0x00, 0x36, 0x00, 0x06, 0x00, 0xde, 0xff, 0xa6, 0xff, 0x96, 0xff, 0x86, 0xff, 0x7c, 0xff,
+0x98, 0xff, 0xba, 0xff, 0xf2, 0xff, 0x18, 0x00, 0x44, 0x00, 0x64, 0x00, 0x80, 0x00, 0x8a, 0x00,
+0x84, 0x00, 0x72, 0x00, 0x58, 0x00, 0x20, 0x00, 0xfc, 0xff, 0xd2, 0xff, 0xb6, 0xff, 0xa0, 0xff,
+0x9c, 0xff, 0x9e, 0xff, 0xa0, 0xff, 0xc2, 0xff, 0xe6, 0xff, 0x0e, 0x00, 0x2a, 0x00, 0x46, 0x00,
+0x5a, 0x00, 0x5c, 0x00, 0x50, 0x00, 0x48, 0x00, 0x36, 0x00, 0x12, 0x00, 0x02, 0x00, 0xea, 0xff,
+0xd0, 0xff, 0xce, 0xff, 0xc2, 0xff, 0xbc, 0xff, 0xca, 0xff, 0xd8, 0xff, 0x00, 0x00, 0x0e, 0x00,
+0x1c, 0x00, 0x36, 0x00, 0x30, 0x00, 0x36, 0x00, 0x3c, 0x00, 0x38, 0x00, 0x28, 0x00, 0x10, 0x00,
+0x16, 0x00, 0x06, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xe6, 0xff, 0xd8, 0xff, 0xdc, 0xff, 0xea, 0xff,
+0xf4, 0xff, 0x04, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x26, 0x00,
+0x16, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x10, 0x00, 0x16, 0x00, 0x16, 0x00, 0x0c, 0x00, 0x04, 0x00,
+0xfc, 0xff, 0xf8, 0xff, 0xf0, 0xff, 0xde, 0xff, 0xea, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xfe, 0xff,
+0x00, 0x00, 0x0e, 0x00, 0x20, 0x00, 0x30, 0x00, 0x46, 0x00, 0x50, 0x00, 0x48, 0x00, 0x40, 0x00,
+0x38, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x04, 0x00, 0xee, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xd4, 0xff,
+0xd8, 0xff, 0xd6, 0xff, 0xee, 0xff, 0x18, 0x00, 0x2c, 0x00, 0x58, 0x00, 0x6c, 0x00, 0x70, 0x00,
+0x6e, 0x00, 0x5e, 0x00, 0x4e, 0x00, 0x3a, 0x00, 0x14, 0x00, 0xf6, 0xff, 0xcc, 0xff, 0xb4, 0xff,
+0xa8, 0xff, 0xa0, 0xff, 0xb2, 0xff, 0xb4, 0xff, 0xe4, 0xff, 0x08, 0x00, 0x32, 0x00, 0x62, 0x00,
+0x80, 0x00, 0x8e, 0x00, 0x90, 0x00, 0x7c, 0x00, 0x64, 0x00, 0x40, 0x00, 0x12, 0x00, 0xde, 0xff,
+0xac, 0xff, 0x9a, 0xff, 0x8c, 0xff, 0x8e, 0xff, 0xb0, 0xff, 0xca, 0xff, 0xf8, 0xff, 0x26, 0x00,
+0x4a, 0x00, 0x84, 0x00, 0x9e, 0x00, 0xb2, 0x00, 0xaa, 0x00, 0x8a, 0x00, 0x6a, 0x00, 0x3a, 0x00,
+0xfe, 0xff, 0xd6, 0xff, 0x9a, 0xff, 0x7c, 0xff, 0x64, 0xff, 0x66, 0xff, 0x7a, 0xff, 0xb2, 0xff,
+0xec, 0xff, 0x18, 0x00, 0x5a, 0x00, 0x84, 0x00, 0xae, 0x00, 0xbc, 0x00, 0xa6, 0x00, 0x90, 0x00,
+0x64, 0x00, 0x1e, 0x00, 0xee, 0xff, 0xb0, 0xff, 0x80, 0xff, 0x56, 0xff, 0x40, 0xff, 0x54, 0xff,
+0x74, 0xff, 0xb0, 0xff, 0xf2, 0xff, 0x2e, 0x00, 0x6e, 0x00, 0x9c, 0x00, 0xc2, 0x00, 0xd8, 0x00,
+0xc0, 0x00, 0x9c, 0x00, 0x64, 0x00, 0x1e, 0x00, 0xe4, 0xff, 0xa4, 0xff, 0x70, 0xff, 0x4c, 0xff,
+0x44, 0xff, 0x62, 0xff, 0x86, 0xff, 0xc2, 0xff, 0x0c, 0x00, 0x40, 0x00, 0x88, 0x00, 0xbc, 0x00,
+0xda, 0x00, 0xb8, 0x00, 0x4a, 0x00, 0x08, 0x00, 0xc0, 0xff, 0x80, 0xff, 0x5a, 0xff, 0x3a, 0xff,
+0x4c, 0xff, 0x64, 0xff, 0x98, 0xff, 0xe4, 0xff, 0x16, 0x00, 0x56, 0x00, 0x92, 0x00, 0xb8, 0x00,
+0xce, 0x00, 0xba, 0x00, 0xa8, 0x00, 0x7c, 0x00, 0x34, 0x00, 0x06, 0x00, 0xc4, 0xff, 0x86, 0xff,
+0x62, 0xff, 0x50, 0xff, 0x58, 0xff, 0x90, 0xff, 0xba, 0xff, 0xfa, 0xff, 0x40, 0x00, 0x62, 0x00,
+0xa4, 0x00, 0xc6, 0x00, 0xc2, 0x00, 0xb8, 0x00, 0x96, 0x00, 0x5e, 0x00, 0x22, 0x00, 0xe6, 0xff,
+0xb8, 0xff, 0x86, 0xff, 0x6a, 0xff, 0x70, 0xff, 0x80, 0xff, 0xa0, 0xff, 0xd4, 0xff, 0x08, 0x00,
+0x42, 0x00, 0x72, 0x00, 0x8e, 0x00, 0xa6, 0x00, 0x9e, 0x00, 0x80, 0x00, 0x70, 0x00, 0x34, 0x00,
+0x02, 0x00, 0xd6, 0xff, 0xa2, 0xff, 0x9c, 0xff, 0x88, 0xff, 0x8e, 0xff, 0xac, 0xff, 0xb8, 0xff,
+0xe4, 0xff, 0x16, 0x00, 0x3c, 0x00, 0x68, 0x00, 0x76, 0x00, 0x7c, 0x00, 0x78, 0x00, 0x6c, 0x00,
+0x56, 0x00, 0x2e, 0x00, 0x0e, 0x00, 0xe2, 0xff, 0xc0, 0xff, 0xbc, 0xff, 0xb8, 0xff, 0xc0, 0xff,
+0xc6, 0xff, 0xd8, 0xff, 0x04, 0x00, 0x26, 0x00, 0x34, 0x00, 0x4c, 0x00, 0x5a, 0x00, 0x50, 0x00,
+0x50, 0x00, 0x58, 0x00, 0x30, 0x00, 0x18, 0x00, 0x02, 0x00, 0xea, 0xff, 0xde, 0xff, 0xd2, 0xff,
+0xd6, 0xff, 0xd8, 0xff, 0xdc, 0xff, 0xe0, 0xff, 0xfe, 0xff, 0x14, 0x00, 0x14, 0x00, 0x28, 0x00,
+0x28, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x24, 0x00, 0x1e, 0x00, 0x12, 0x00, 0x00, 0x00, 0x06, 0x00,
+0x0a, 0x00, 0xfa, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0x04, 0x00, 0xfa, 0xff, 0xf0, 0xff,
+0xfe, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x06, 0x00, 0x0e, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x1c, 0x00,
+0x2c, 0x00, 0x34, 0x00, 0x2e, 0x00, 0x20, 0x00, 0x24, 0x00, 0x0e, 0x00, 0x02, 0x00, 0xfa, 0xff,
+0xee, 0xff, 0xe6, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xda, 0xff, 0xe2, 0xff, 0xec, 0xff, 0x04, 0x00,
+0x0c, 0x00, 0x22, 0x00, 0x3c, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x2c, 0x00,
+0x10, 0x00, 0xf8, 0xff, 0xdc, 0xff, 0xc6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb2, 0xff, 0xc0, 0xff,
+0xd8, 0xff, 0xf6, 0xff, 0x16, 0x00, 0x42, 0x00, 0x5e, 0x00, 0x70, 0x00, 0x7a, 0x00, 0x76, 0x00,
+0x5e, 0x00, 0x48, 0x00, 0x22, 0x00, 0xfa, 0xff, 0xd8, 0xff, 0xb0, 0xff, 0x9e, 0xff, 0x94, 0xff,
+0x94, 0xff, 0xac, 0xff, 0xbe, 0xff, 0xf2, 0xff, 0x22, 0x00, 0x54, 0x00, 0x7c, 0x00, 0x92, 0x00,
+0x9c, 0x00, 0x8a, 0x00, 0x72, 0x00, 0x4a, 0x00, 0x16, 0x00, 0xe2, 0xff, 0xb2, 0xff, 0x92, 0xff,
+0x70, 0xff, 0x6a, 0xff, 0x76, 0xff, 0xa4, 0xff, 0xca, 0xff, 0xf6, 0xff, 0x34, 0x00, 0x6e, 0x00,
+0x94, 0x00, 0xb2, 0x00, 0xb4, 0x00, 0x9e, 0x00, 0x6e, 0x00, 0x46, 0x00, 0x1a, 0x00, 0xe2, 0xff,
+0xa8, 0xff, 0x70, 0xff, 0x62, 0xff, 0x58, 0xff, 0x70, 0xff, 0xa2, 0xff, 0xdc, 0xff, 0x08, 0x00,
+0x48, 0x00, 0x82, 0x00, 0xb0, 0x00, 0xc6, 0x00, 0xbc, 0x00, 0xa2, 0x00, 0x6e, 0x00, 0x34, 0x00,
+0x02, 0x00, 0xb8, 0xff, 0x82, 0xff, 0x54, 0xff, 0x4c, 0xff, 0x3c, 0xff, 0x64, 0xff, 0x9c, 0xff,
+0xd6, 0xff, 0x16, 0x00, 0x4c, 0x00, 0x94, 0x00, 0xae, 0x00, 0xc6, 0x00, 0xac, 0x00, 0x90, 0x00,
+0x58, 0x00, 0x16, 0x00, 0xd8, 0xff, 0xa2, 0xff, 0x6e, 0xff, 0x46, 0xff, 0x3e, 0xff, 0x4a, 0xff,
+0x6c, 0xff, 0xac, 0xff, 0xf6, 0xff, 0x24, 0x00, 0x64, 0x00, 0x9a, 0x00, 0xbc, 0x00, 0xc4, 0x00,
+0xa2, 0x00, 0x7e, 0x00, 0x40, 0x00, 0x08, 0x00, 0xca, 0xff, 0x8a, 0xff, 0x5a, 0xff, 0x3c, 0xff,
+0x36, 0xff, 0x3c, 0xff, 0x78, 0xff, 0xc6, 0xff, 0xfe, 0xff, 0x30, 0x00, 0x5e, 0x00, 0x90, 0x00,
+0xae, 0x00, 0xac, 0x00, 0x90, 0x00, 0x60, 0x00, 0x34, 0x00, 0xe6, 0xff, 0xaa, 0xff, 0x84, 0xff,
+0x52, 0xff, 0x3e, 0xff, 0x3c, 0xff, 0x5a, 0xff, 0x8a, 0xff, 0xc0, 0xff, 0x08, 0x00, 0x38, 0x00,
+0x6c, 0x00, 0x88, 0x00, 0x9e, 0x00, 0x9e, 0x00, 0x78, 0x00, 0x68, 0x00, 0x26, 0x00, 0xea, 0xff,
+0xb2, 0xff, 0x92, 0xff, 0x74, 0xff, 0x66, 0xff, 0x66, 0xff, 0x7a, 0xff, 0xa6, 0xff, 0xda, 0xff,
+0x14, 0x00, 0x3c, 0x00, 0x60, 0x00, 0x74, 0x00, 0x8c, 0x00, 0x78, 0x00, 0x68, 0x00, 0x3a, 0x00,
+0x14, 0x00, 0xec, 0xff, 0xb0, 0xff, 0x9c, 0xff, 0x8a, 0xff, 0x7c, 0xff, 0x82, 0xff, 0x9e, 0xff,
+0xc2, 0xff, 0xf6, 0xff, 0x12, 0x00, 0x26, 0x00, 0x48, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4e, 0x00,
+0x40, 0x00, 0x18, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xc8, 0xff, 0xba, 0xff, 0xb8, 0xff, 0xb6, 0xff,
+0xbe, 0xff, 0xe2, 0xff, 0xec, 0xff, 0x06, 0x00, 0x12, 0x00, 0x22, 0x00, 0x30, 0x00, 0x2c, 0x00,
+0x2a, 0x00, 0x20, 0x00, 0x14, 0x00, 0x0c, 0x00, 0x04, 0x00, 0xf4, 0xff, 0xe6, 0xff, 0xe0, 0xff,
+0xec, 0xff, 0xee, 0xff, 0xe8, 0xff, 0xe6, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xf8, 0xff,
+0xf4, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xf4, 0xff, 0x04, 0x00, 0xfa, 0xff, 0xfa, 0xff, 0x0e, 0x00,
+0x04, 0x00, 0xf8, 0xff, 0x06, 0x00, 0x0a, 0x00, 0xf2, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xe4, 0xff,
+0xda, 0xff, 0xce, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xd8, 0xff, 0xe6, 0xff, 0xf6, 0xff, 0x00, 0x00,
+0x10, 0x00, 0x26, 0x00, 0x3a, 0x00, 0x34, 0x00, 0x2a, 0x00, 0x32, 0x00, 0x20, 0x00, 0x0c, 0x00,
+0xfe, 0xff, 0xdc, 0xff, 0xb4, 0xff, 0xb0, 0xff, 0xaa, 0xff, 0xb8, 0xff, 0xb6, 0xff, 0xc4, 0xff,
+0xf0, 0xff, 0xfa, 0xff, 0x20, 0x00, 0x34, 0x00, 0x4e, 0x00, 0x4e, 0x00, 0x4e, 0x00, 0x44, 0x00,
+0x2c, 0x00, 0x02, 0x00, 0xe0, 0xff, 0xbc, 0xff, 0x96, 0xff, 0x8a, 0xff, 0x8a, 0xff, 0x94, 0xff,
+0xa0, 0xff, 0xc6, 0xff, 0xec, 0xff, 0x0e, 0x00, 0x3c, 0x00, 0x62, 0x00, 0x78, 0x00, 0x72, 0x00,
+0x68, 0x00, 0x56, 0x00, 0x2a, 0x00, 0x04, 0x00, 0xd4, 0xff, 0xa8, 0xff, 0x8e, 0xff, 0x76, 0xff,
+0x76, 0xff, 0x8a, 0xff, 0xa4, 0xff, 0xd2, 0xff, 0xfa, 0xff, 0x24, 0x00, 0x5e, 0x00, 0x7e, 0x00,
+0x92, 0x00, 0x88, 0x00, 0x70, 0x00, 0x50, 0x00, 0x22, 0x00, 0xf2, 0xff, 0xb6, 0xff, 0x84, 0xff,
+0x64, 0xff, 0x50, 0xff, 0x4a, 0xff, 0x6e, 0xff, 0xa0, 0xff, 0xcc, 0xff, 0x02, 0x00, 0x3a, 0x00,
+0x66, 0x00, 0x92, 0x00, 0xa4, 0x00, 0x9e, 0x00, 0x84, 0x00, 0x48, 0x00, 0x08, 0x00, 0xd8, 0xff,
+0x9e, 0xff, 0x68, 0xff, 0x4a, 0xff, 0x36, 0xff, 0x42, 0xff, 0x72, 0xff, 0xa6, 0xff, 0xea, 0xff,
+0x12, 0x00, 0x5a, 0x00, 0x8c, 0x00, 0xac, 0x00, 0xc2, 0x00, 0xae, 0x00, 0x7a, 0x00, 0x36, 0x00,
+0xfa, 0xff, 0xc2, 0xff, 0x82, 0xff, 0x54, 0xff, 0x3c, 0xff, 0x2a, 0xff, 0x42, 0xff, 0x70, 0xff,
+0xb4, 0xff, 0xfa, 0xff, 0x22, 0x00, 0x62, 0x00, 0x98, 0x00, 0xb0, 0x00, 0xac, 0x00, 0x8e, 0x00,
+0x5e, 0x00, 0x20, 0x00, 0xe4, 0xff, 0xa8, 0xff, 0x64, 0xff, 0x38, 0xff, 0x32, 0xff, 0x2c, 0xff,
+0x52, 0xff, 0x7e, 0xff, 0xc8, 0xff, 0x04, 0x00, 0x30, 0x00, 0x76, 0x00, 0x9c, 0x00, 0xb0, 0x00,
+0xac, 0x00, 0x88, 0x00, 0x4e, 0x00, 0x16, 0x00, 0xdc, 0xff, 0xae, 0xff, 0x70, 0xff, 0x4a, 0xff,
+0x44, 0xff, 0x4e, 0xff, 0x6e, 0xff, 0x9e, 0xff, 0xda, 0xff, 0x14, 0x00, 0x44, 0x00, 0x7a, 0x00,
+0x9c, 0x00, 0x9e, 0x00, 0x90, 0x00, 0x6a, 0x00, 0x46, 0x00, 0x0a, 0x00, 0xce, 0xff, 0x98, 0xff,
+0x70, 0xff, 0x5e, 0xff, 0x5c, 0xff, 0x60, 0xff, 0x7c, 0xff, 0xa6, 0xff, 0xdc, 0xff, 0x14, 0x00,
+0x44, 0x00, 0x6a, 0x00, 0x78, 0x00, 0x7a, 0x00, 0x62, 0x00, 0x56, 0x00, 0x28, 0x00, 0xf8, 0xff,
+0xda, 0xff, 0x9a, 0xff, 0x90, 0xff, 0x80, 0xff, 0x80, 0xff, 0x88, 0xff, 0x9a, 0xff, 0xc6, 0xff,
+0xee, 0xff, 0x1a, 0x00, 0x3a, 0x00, 0x54, 0x00, 0x64, 0x00, 0x5a, 0x00, 0x54, 0x00, 0x3a, 0x00,
+0x1c, 0x00, 0x00, 0x00, 0xda, 0xff, 0xbc, 0xff, 0xaa, 0xff, 0xa4, 0xff, 0x9e, 0xff, 0xa2, 0xff,
+0xb8, 0xff, 0xda, 0xff, 0xf6, 0xff, 0x0a, 0x00, 0x20, 0x00, 0x30, 0x00, 0x2e, 0x00, 0x2c, 0x00,
+0x32, 0x00, 0x12, 0x00, 0x02, 0x00, 0xf0, 0xff, 0xe2, 0xff, 0xd0, 0xff, 0xbe, 0xff, 0xc4, 0xff,
+0xc6, 0xff, 0xc8, 0xff, 0xca, 0xff, 0xe8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0x14, 0x00, 0x14, 0x00,
+0x0c, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x06, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xee, 0xff,
+0xec, 0xff, 0xf0, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xf0, 0xff,
+0xf0, 0xff, 0xee, 0xff, 0xe2, 0xff, 0xe4, 0xff, 0xf0, 0xff, 0xee, 0xff, 0xfa, 0xff, 0x04, 0x00,
+0x02, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x12, 0x00, 0x0a, 0x00, 0xf6, 0xff, 0xf8, 0xff, 0xe2, 0xff,
+0xd4, 0xff, 0xc4, 0xff, 0xb4, 0xff, 0xae, 0xff, 0xbc, 0xff, 0xc2, 0xff, 0xce, 0xff, 0xea, 0xff,
+0xf6, 0xff, 0x12, 0x00, 0x28, 0x00, 0x3c, 0x00, 0x36, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x0e, 0x00,
+0xfa, 0xff, 0xe8, 0xff, 0xbc, 0xff, 0xa6, 0xff, 0x9e, 0xff, 0x9a, 0xff, 0xa6, 0xff, 0xa2, 0xff,
+0xcc, 0xff, 0xea, 0xff, 0x10, 0x00, 0x3a, 0x00, 0x4c, 0x00, 0x5a, 0x00, 0x54, 0x00, 0x4e, 0x00,
+0x3c, 0x00, 0x20, 0x00, 0xf8, 0xff, 0xc8, 0xff, 0xa2, 0xff, 0x84, 0xff, 0x6e, 0xff, 0x76, 0xff,
+0x8a, 0xff, 0x9a, 0xff, 0xcc, 0xff, 0xf8, 0xff, 0x26, 0x00, 0x4c, 0x00, 0x60, 0x00, 0x78, 0x00,
+0x6c, 0x00, 0x58, 0x00, 0x3a, 0x00, 0x08, 0x00, 0xdc, 0xff, 0xac, 0xff, 0x7a, 0xff, 0x62, 0xff,
+0x5a, 0xff, 0x62, 0xff, 0x88, 0xff, 0xac, 0xff, 0xe0, 0xff, 0x18, 0x00, 0x4c, 0x00, 0x7c, 0x00,
+0x94, 0x00, 0x9e, 0x00, 0x8a, 0x00, 0x64, 0x00, 0x2c, 0x00, 0x08, 0x00, 0xd2, 0xff, 0x8e, 0xff,
+0x60, 0xff, 0x3a, 0xff, 0x3a, 0xff, 0x52, 0xff, 0x7e, 0xff, 0xb8, 0xff, 0xf2, 0xff, 0x28, 0x00,
+0x5e, 0x00, 0x90, 0x00, 0xac, 0x00, 0xb0, 0x00, 0x94, 0x00, 0x6a, 0x00, 0x24, 0x00, 0xee, 0xff,
+0xb6, 0xff, 0x70, 0xff, 0x44, 0xff, 0x28, 0xff, 0x28, 0xff, 0x56, 0xff, 0x78, 0xff, 0xc4, 0xff,
+0x06, 0x00, 0x32, 0x00, 0x78, 0x00, 0xa6, 0x00, 0xc0, 0x00, 0xb0, 0x00, 0x94, 0x00, 0x62, 0x00,
+0x18, 0x00, 0xee, 0xff, 0xa2, 0xff, 0x5e, 0xff, 0x36, 0xff, 0x22, 0xff, 0x3e, 0xff, 0x5a, 0xff,
+0x92, 0xff, 0xd6, 0xff, 0x02, 0x00, 0x44, 0x00, 0x80, 0x00, 0xa6, 0x00, 0xb4, 0x00, 0xa2, 0x00,
+0x80, 0x00, 0x48, 0x00, 0x02, 0x00, 0xca, 0xff, 0x94, 0xff, 0x58, 0xff, 0x36, 0xff, 0x30, 0xff,
+0x34, 0xff, 0x5a, 0xff, 0x98, 0xff, 0xd0, 0xff, 0x14, 0x00, 0x42, 0x00, 0x70, 0x00, 0x92, 0x00,
+0x94, 0x00, 0x92, 0x00, 0x72, 0x00, 0x38, 0x00, 0xfa, 0xff, 0xba, 0xff, 0x82, 0xff, 0x56, 0xff,
+0x40, 0xff, 0x40, 0xff, 0x4e, 0xff, 0x7a, 0xff, 0xb2, 0xff, 0xe2, 0xff, 0x28, 0x00, 0x54, 0x00,
+0x76, 0x00, 0x96, 0x00, 0x96, 0x00, 0x7c, 0x00, 0x54, 0x00, 0x1e, 0x00, 0xe8, 0xff, 0xb8, 0xff,
+0x8e, 0xff, 0x6a, 0xff, 0x54, 0xff, 0x52, 0xff, 0x68, 0xff, 0x94, 0xff, 0xbe, 0xff, 0xee, 0xff,
+0x26, 0x00, 0x46, 0x00, 0x56, 0x00, 0x70, 0x00, 0x66, 0x00, 0x60, 0x00, 0x3a, 0x00, 0x0a, 0x00,
+0xe8, 0xff, 0xaa, 0xff, 0x94, 0xff, 0x86, 0xff, 0x82, 0xff, 0x7c, 0xff, 0x88, 0xff, 0xa6, 0xff,
+0xd0, 0xff, 0xf8, 0xff, 0x14, 0x00, 0x30, 0x00, 0x3e, 0x00, 0x42, 0x00, 0x42, 0x00, 0x48, 0x00,
+0x2a, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xde, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xae, 0xff,
+0xca, 0xff, 0xd0, 0xff, 0xda, 0xff, 0xfe, 0xff, 0x08, 0x00, 0x16, 0x00, 0x1e, 0x00, 0x20, 0x00,
+0x20, 0x00, 0x1e, 0x00, 0x10, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xea, 0xff, 0xde, 0xff, 0xe0, 0xff,
+0xde, 0xff, 0xdc, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xee, 0xff, 0xf0, 0xff,
+0xf4, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xd8, 0xff, 0xd4, 0xff,
+0xcc, 0xff, 0xd0, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xe8, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x0a, 0x00,
+0x22, 0x00, 0x2a, 0x00, 0x2a, 0x00, 0x12, 0x00, 0x22, 0x00, 0x08, 0x00, 0xea, 0xff, 0xd8, 0xff,
+0xc0, 0xff, 0xae, 0xff, 0x92, 0xff, 0xa2, 0xff, 0xa4, 0xff, 0xa6, 0xff, 0xbe, 0xff, 0xe2, 0xff,
+0xf8, 0xff, 0x14, 0x00, 0x38, 0x00, 0x38, 0x00, 0x4c, 0x00, 0x3a, 0x00, 0x26, 0x00, 0x16, 0x00,
+0xe4, 0xff, 0xc0, 0xff, 0xa2, 0xff, 0x8a, 0xff, 0x72, 0xff, 0x70, 0xff, 0x7e, 0xff, 0x9e, 0xff,
+0xb8, 0xff, 0xe8, 0xff, 0x0a, 0x00, 0x38, 0x00, 0x64, 0x00, 0x6e, 0x00, 0x7e, 0x00, 0x60, 0x00,
+0x44, 0x00, 0x18, 0x00, 0xee, 0xff, 0xbe, 0xff, 0x8a, 0xff, 0x6e, 0xff, 0x54, 0xff, 0x58, 0xff,
+0x6e, 0xff, 0x8e, 0xff, 0xb4, 0xff, 0xea, 0xff, 0x28, 0x00, 0x58, 0x00, 0x7c, 0x00, 0x90, 0x00,
+0x8a, 0x00, 0x6e, 0x00, 0x42, 0x00, 0x14, 0x00, 0xd8, 0xff, 0xa0, 0xff, 0x6a, 0xff, 0x48, 0xff,
+0x40, 0xff, 0x42, 0xff, 0x5a, 0xff, 0x8c, 0xff, 0xc8, 0xff, 0x0c, 0x00, 0x46, 0x00, 0x80, 0x00,
+0xa4, 0x00, 0xb2, 0x00, 0xaa, 0x00, 0x88, 0x00, 0x50, 0x00, 0x1c, 0x00, 0xd0, 0xff, 0x9a, 0xff,
+0x66, 0xff, 0x42, 0xff, 0x2e, 0xff, 0x38, 0xff, 0x70, 0xff, 0x9c, 0xff, 0xea, 0xff, 0x1c, 0x00,
+0x5c, 0x00, 0x9e, 0x00, 0xba, 0x00, 0xce, 0x00, 0xb8, 0x00, 0x86, 0x00, 0x44, 0x00, 0x00, 0x00,
+0xd2, 0xff, 0x8e, 0xff, 0x50, 0xff, 0x2c, 0xff, 0x14, 0xff, 0x2c, 0xff, 0x62, 0xff, 0xaa, 0xff,
+0xf4, 0xff, 0x24, 0x00, 0x66, 0x00, 0x96, 0x00, 0xb8, 0x00, 0xc2, 0x00, 0xa4, 0x00, 0x6c, 0x00,
+0x2c, 0x00, 0xe6, 0xff, 0xba, 0xff, 0x7a, 0xff, 0x4e, 0xff, 0x2e, 0xff, 0x28, 0xff, 0x42, 0xff,
+0x7a, 0xff, 0xc6, 0xff, 0x02, 0x00, 0x38, 0x00, 0x7c, 0x00, 0xaa, 0x00, 0xba, 0x00, 0xb6, 0x00,
+0x98, 0x00, 0x62, 0x00, 0x20, 0x00, 0xdc, 0xff, 0xa2, 0xff, 0x78, 0xff, 0x3e, 0xff, 0x34, 0xff,
+0x3a, 0xff, 0x4e, 0xff, 0x88, 0xff, 0xcc, 0xff, 0x0e, 0x00, 0x3a, 0x00, 0x70, 0x00, 0x8e, 0x00,
+0xa0, 0x00, 0x98, 0x00, 0x76, 0x00, 0x46, 0x00, 0x02, 0x00, 0xc2, 0xff, 0x88, 0xff, 0x6c, 0xff,
+0x46, 0xff, 0x38, 0xff, 0x4a, 0xff, 0x64, 0xff, 0x96, 0xff, 0xce, 0xff, 0x00, 0x00, 0x3a, 0x00,
+0x5a, 0x00, 0x72, 0x00, 0x72, 0x00, 0x72, 0x00, 0x5c, 0x00, 0x3a, 0x00, 0x04, 0x00, 0xd2, 0xff,
+0x96, 0xff, 0x80, 0xff, 0x6e, 0xff, 0x66, 0xff, 0x78, 0xff, 0x84, 0xff, 0xb8, 0xff, 0xe4, 0xff,
+0x0a, 0x00, 0x38, 0x00, 0x44, 0x00, 0x4c, 0x00, 0x54, 0x00, 0x4e, 0x00, 0x3a, 0x00, 0x04, 0x00,
+0xf2, 0xff, 0xce, 0xff, 0xb2, 0xff, 0x9e, 0xff, 0x8e, 0xff, 0x8c, 0xff, 0x8e, 0xff, 0xb0, 0xff,
+0xd0, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x12, 0x00, 0x26, 0x00, 0x26, 0x00, 0x22, 0x00, 0x1e, 0x00,
+0x12, 0x00, 0xfc, 0xff, 0xec, 0xff, 0xdc, 0xff, 0xce, 0xff, 0xc8, 0xff, 0xd0, 0xff, 0xc0, 0xff,
+0xcc, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xf0, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+0x02, 0x00, 0x04, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf4, 0xff, 0xfa, 0xff,
+0xfc, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xde, 0xff, 0xd2, 0xff, 0xd6, 0xff, 0xce, 0xff,
+0xd2, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xe4, 0xff, 0xee, 0xff, 0xfa, 0xff, 0x04, 0x00, 0x06, 0x00,
+0x1a, 0x00, 0x14, 0x00, 0x16, 0x00, 0x12, 0x00, 0x06, 0x00, 0xf6, 0xff, 0xe4, 0xff, 0xc4, 0xff,
+0xba, 0xff, 0xa6, 0xff, 0xb2, 0xff, 0xb6, 0xff, 0xbc, 0xff, 0xe0, 0xff, 0xf4, 0xff, 0x0c, 0x00,
+0x12, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x40, 0x00, 0x34, 0x00, 0x36, 0x00, 0x1e, 0x00, 0x00, 0x00,
+0xdc, 0xff, 0xb8, 0xff, 0xa4, 0xff, 0x90, 0xff, 0x92, 0xff, 0x98, 0xff, 0x9c, 0xff, 0xc2, 0xff,
+0xf0, 0xff, 0x10, 0x00, 0x34, 0x00, 0x54, 0x00, 0x58, 0x00, 0x5a, 0x00, 0x4e, 0x00, 0x36, 0x00,
+0x16, 0x00, 0xf2, 0xff, 0xc8, 0xff, 0x96, 0xff, 0x7a, 0xff, 0x68, 0xff, 0x60, 0xff, 0x7c, 0xff,
+0x92, 0xff, 0xc0, 0xff, 0xee, 0xff, 0x18, 0x00, 0x4a, 0x00, 0x70, 0x00, 0x8c, 0x00, 0x86, 0x00,
+0x6a, 0x00, 0x3e, 0x00, 0x14, 0x00, 0xe6, 0xff, 0xac, 0xff, 0x80, 0xff, 0x54, 0xff, 0x48, 0xff,
+0x4c, 0xff, 0x66, 0xff, 0xa0, 0xff, 0xc6, 0xff, 0x08, 0x00, 0x38, 0x00, 0x68, 0x00, 0x8a, 0x00,
+0xa0, 0x00, 0x9e, 0x00, 0x7a, 0x00, 0x42, 0x00, 0xfe, 0xff, 0xc4, 0xff, 0x8a, 0xff, 0x56, 0xff,
+0x3c, 0xff, 0x2e, 0xff, 0x38, 0xff, 0x64, 0xff, 0x9c, 0xff, 0xdc, 0xff, 0x0e, 0x00, 0x48, 0x00,
+0x7c, 0x00, 0xa8, 0x00, 0xae, 0x00, 0x90, 0x00, 0x6c, 0x00, 0x28, 0x00, 0xfc, 0xff, 0xbe, 0xff,
+0x76, 0xff, 0x40, 0xff, 0x22, 0xff, 0x1a, 0xff, 0x4c, 0xff, 0x74, 0xff, 0xb8, 0xff, 0xf4, 0xff,
+0x22, 0x00, 0x6e, 0x00, 0xa2, 0x00, 0xc0, 0x00, 0xb6, 0x00, 0x94, 0x00, 0x66, 0x00, 0x18, 0x00,
+0xe2, 0xff, 0xa8, 0xff, 0x6a, 0xff, 0x40, 0xff, 0x22, 0xff, 0x30, 0xff, 0x4e, 0xff, 0x82, 0xff,
+0xc6, 0xff, 0x08, 0x00, 0x3a, 0x00, 0x86, 0x00, 0xaa, 0x00, 0xba, 0x00, 0xb8, 0x00, 0x7c, 0x00,
+0x4c, 0x00, 0x06, 0x00, 0xd0, 0xff, 0x98, 0xff, 0x60, 0xff, 0x44, 0xff, 0x30, 0xff, 0x44, 0xff,
+0x60, 0xff, 0x9a, 0xff, 0xdc, 0xff, 0x12, 0x00, 0x50, 0x00, 0x7e, 0x00, 0xa4, 0x00, 0xb2, 0x00,
+0x9e, 0x00, 0x7c, 0x00, 0x40, 0x00, 0x06, 0x00, 0xc4, 0xff, 0x96, 0xff, 0x68, 0xff, 0x56, 0xff,
+0x4e, 0xff, 0x62, 0xff, 0x7e, 0xff, 0xae, 0xff, 0xe8, 0xff, 0x1c, 0x00, 0x50, 0x00, 0x6a, 0x00,
+0x8a, 0x00, 0x86, 0x00, 0x78, 0x00, 0x5a, 0x00, 0x24, 0x00, 0xf2, 0xff, 0xbc, 0xff, 0x90, 0xff,
+0x7a, 0xff, 0x68, 0xff, 0x66, 0xff, 0x7a, 0xff, 0x96, 0xff, 0xca, 0xff, 0xfa, 0xff, 0x10, 0x00,
+0x3e, 0x00, 0x4c, 0x00, 0x54, 0x00, 0x5e, 0x00, 0x50, 0x00, 0x3a, 0x00, 0x0a, 0x00, 0xf0, 0xff,
+0xc8, 0xff, 0xa4, 0xff, 0x90, 0xff, 0x88, 0xff, 0x8c, 0xff, 0x90, 0xff, 0xaa, 0xff, 0xd0, 0xff,
+0xee, 0xff, 0x02, 0x00, 0x24, 0x00, 0x32, 0x00, 0x34, 0x00, 0x3e, 0x00, 0x32, 0x00, 0x1a, 0x00,
+0x0a, 0x00, 0xf0, 0xff, 0xdc, 0xff, 0xbe, 0xff, 0xb8, 0xff, 0xb0, 0xff, 0xa4, 0xff, 0xac, 0xff,
+0xbc, 0xff, 0xd0, 0xff, 0xe2, 0xff, 0xf8, 0xff, 0x0e, 0x00, 0x08, 0x00, 0x0e, 0x00, 0x14, 0x00,
+0x08, 0x00, 0x06, 0x00, 0xfa, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xde, 0xff, 0xde, 0xff, 0xea, 0xff,
+0xcc, 0xff, 0xcc, 0xff, 0xd2, 0xff, 0xc8, 0xff, 0xde, 0xff, 0xe6, 0xff, 0xe8, 0xff, 0xec, 0xff,
+0xf2, 0xff, 0xf0, 0xff, 0xee, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x06, 0x00, 0x0a, 0x00, 0x08, 0x00,
+0x08, 0x00, 0x06, 0x00, 0x04, 0x00, 0x00, 0x00, 0xe2, 0xff, 0xd6, 0xff, 0xd8, 0xff, 0xcc, 0xff,
+0xc4, 0xff, 0xca, 0xff, 0xc0, 0xff, 0xc4, 0xff, 0xdc, 0xff, 0xf8, 0xff, 0x0c, 0x00, 0x1c, 0x00,
+0x2c, 0x00, 0x34, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x1a, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xd4, 0xff,
+0xb8, 0xff, 0xa2, 0xff, 0xa0, 0xff, 0x9e, 0xff, 0xa6, 0xff, 0xbc, 0xff, 0xe2, 0xff, 0x00, 0x00,
+0x18, 0x00, 0x42, 0x00, 0x46, 0x00, 0x4e, 0x00, 0x50, 0x00, 0x36, 0x00, 0x32, 0x00, 0x04, 0x00,
+0xe0, 0xff, 0xc0, 0xff, 0x9a, 0xff, 0x88, 0xff, 0x7c, 0xff, 0x80, 0xff, 0x8e, 0xff, 0xb0, 0xff,
+0xe0, 0xff, 0x0e, 0x00, 0x3e, 0x00, 0x52, 0x00, 0x6c, 0x00, 0x70, 0x00, 0x56, 0x00, 0x50, 0x00,
+0x38, 0x00, 0xfa, 0xff, 0xce, 0xff, 0xa4, 0xff, 0x76, 0xff, 0x5a, 0xff, 0x4a, 0xff, 0x64, 0xff,
+0x86, 0xff, 0xb8, 0xff, 0xe6, 0xff, 0x1e, 0x00, 0x4a, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x88, 0x00,
+0x82, 0x00, 0x54, 0x00, 0x1e, 0x00, 0xea, 0xff, 0xbc, 0xff, 0x80, 0xff, 0x50, 0xff, 0x44, 0xff,
+0x3c, 0xff, 0x4c, 0xff, 0x7c, 0xff, 0xbc, 0xff, 0xf0, 0xff, 0x1e, 0x00, 0x64, 0x00, 0x8e, 0x00,
+0xa4, 0x00, 0x96, 0x00, 0x84, 0x00, 0x56, 0x00, 0x14, 0x00, 0xde, 0xff, 0xa6, 0xff, 0x6a, 0xff,
+0x44, 0xff, 0x2c, 0xff, 0x2a, 0xff, 0x54, 0xff, 0x84, 0xff, 0xd0, 0xff, 0x00, 0x00, 0x2c, 0x00,
+0x70, 0x00, 0xa0, 0x00, 0xb2, 0x00, 0xa0, 0x00, 0x86, 0x00, 0x3e, 0x00, 0xf8, 0xff, 0xc8, 0xff,
+0x8e, 0xff, 0x56, 0xff, 0x2a, 0xff, 0x1e, 0xff, 0x3c, 0xff, 0x60, 0xff, 0x94, 0xff, 0xe4, 0xff,
+0x10, 0x00, 0x46, 0x00, 0x8e, 0x00, 0xb2, 0x00, 0xb2, 0x00, 0x9c, 0x00, 0x6c, 0x00, 0x36, 0x00,
+0xe8, 0xff, 0xc8, 0xff, 0x8a, 0xff, 0x4c, 0xff, 0x28, 0xff, 0x32, 0xff, 0x4c, 0xff, 0x74, 0xff,
+0xbe, 0xff, 0xf8, 0xff, 0x26, 0x00, 0x60, 0x00, 0x8a, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0x92, 0x00,
+0x64, 0x00, 0x26, 0x00, 0xea, 0xff, 0xb2, 0xff, 0x7e, 0xff, 0x46, 0xff, 0x40, 0xff, 0x44, 0xff,
+0x5a, 0xff, 0x96, 0xff, 0xca, 0xff, 0x02, 0x00, 0x32, 0x00, 0x5c, 0x00, 0x76, 0x00, 0x84, 0x00,
+0x84, 0x00, 0x6a, 0x00, 0x4c, 0x00, 0x0a, 0x00, 0xda, 0xff, 0xae, 0xff, 0x7c, 0xff, 0x64, 0xff,
+0x5c, 0xff, 0x68, 0xff, 0x82, 0xff, 0xaa, 0xff, 0xd0, 0xff, 0xfe, 0xff, 0x36, 0x00, 0x52, 0x00,
+0x66, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x46, 0x00, 0x26, 0x00, 0x02, 0x00, 0xe4, 0xff, 0xa8, 0xff,
+0x90, 0xff, 0x88, 0xff, 0x80, 0xff, 0x92, 0xff, 0x9e, 0xff, 0xc4, 0xff, 0xee, 0xff, 0x02, 0x00,
+0x1e, 0x00, 0x34, 0x00, 0x4e, 0x00, 0x42, 0x00, 0x3c, 0x00, 0x3a, 0x00, 0x18, 0x00, 0xf6, 0xff,
+0xdc, 0xff, 0xb8, 0xff, 0xa2, 0xff, 0xa6, 0xff, 0xa8, 0xff, 0xa6, 0xff, 0xa4, 0xff, 0xc2, 0xff,
+0xe4, 0xff, 0xee, 0xff, 0x0e, 0x00, 0x20, 0x00, 0x2e, 0x00, 0x24, 0x00, 0x22, 0x00, 0x1c, 0x00,
+0xf6, 0xff, 0xf6, 0xff, 0xe2, 0xff, 0xc6, 0xff, 0xcc, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xbc, 0xff,
+0xc8, 0xff, 0xcc, 0xff, 0xe0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x0e, 0x00,
+0x04, 0x00, 0x06, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf2, 0xff, 0xe4, 0xff, 0xfa, 0xff, 0xf2, 0xff,
+0xf2, 0xff, 0xe6, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd0, 0xff, 0xda, 0xff, 0xd4, 0xff, 0xd2, 0xff,
+0xe0, 0xff, 0xd4, 0xff, 0xe2, 0xff, 0xec, 0xff, 0xee, 0xff, 0x0a, 0x00, 0x0e, 0x00, 0x1a, 0x00,
+0x16, 0x00, 0x12, 0x00, 0x10, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xe2, 0xff, 0xcc, 0xff, 0xac, 0xff,
+0xa8, 0xff, 0xb2, 0xff, 0xb4, 0xff, 0xbc, 0xff, 0xd4, 0xff, 0xea, 0xff, 0x02, 0x00, 0x1c, 0x00,
+0x24, 0x00, 0x48, 0x00, 0x40, 0x00, 0x34, 0x00, 0x36, 0x00, 0x18, 0x00, 0x04, 0x00, 0xda, 0xff,
+0xbc, 0xff, 0xa0, 0xff, 0x96, 0xff, 0x96, 0xff, 0xaa, 0xff, 0xa6, 0xff, 0xbe, 0xff, 0xee, 0xff,
+0x02, 0x00, 0x2e, 0x00, 0x50, 0x00, 0x60, 0x00, 0x5a, 0x00, 0x4c, 0x00, 0x42, 0x00, 0x14, 0x00,
+0xf0, 0xff, 0xcc, 0xff, 0x9c, 0xff, 0x7a, 0xff, 0x64, 0xff, 0x5e, 0xff, 0x6e, 0xff, 0x94, 0xff,
+0xba, 0xff, 0xe6, 0xff, 0x1c, 0x00, 0x4a, 0x00, 0x62, 0x00, 0x78, 0x00, 0x80, 0x00, 0x6c, 0x00,
+0x4c, 0x00, 0x18, 0x00, 0xee, 0xff, 0xb4, 0xff, 0x88, 0xff, 0x66, 0xff, 0x4e, 0xff, 0x56, 0xff,
+0x62, 0xff, 0x8a, 0xff, 0xbe, 0xff, 0xf4, 0xff, 0x28, 0x00, 0x60, 0x00, 0x8a, 0x00, 0xa6, 0x00,
+0xa2, 0x00, 0x78, 0x00, 0x48, 0x00, 0x0e, 0x00, 0xdc, 0xff, 0xa4, 0xff, 0x6a, 0xff, 0x42, 0xff,
+0x2c, 0xff, 0x34, 0xff, 0x54, 0xff, 0x88, 0xff, 0xca, 0xff, 0x02, 0x00, 0x3c, 0x00, 0x76, 0x00,
+0x8e, 0x00, 0xac, 0x00, 0x92, 0x00, 0x6c, 0x00, 0x30, 0x00, 0xf6, 0xff, 0xc4, 0xff, 0x86, 0xff,
+0x58, 0xff, 0x2e, 0xff, 0x1e, 0xff, 0x34, 0xff, 0x66, 0xff, 0xaa, 0xff, 0xea, 0xff, 0x16, 0x00,
+0x58, 0x00, 0x96, 0x00, 0xaa, 0x00, 0xb2, 0x00, 0x9e, 0x00, 0x64, 0x00, 0x20, 0x00, 0xec, 0xff,
+0xbc, 0xff, 0x72, 0xff, 0x46, 0xff, 0x26, 0xff, 0x24, 0xff, 0x4c, 0xff, 0x7c, 0xff, 0xc0, 0xff,
+0xfe, 0xff, 0x2a, 0x00, 0x78, 0x00, 0x9a, 0x00, 0xb0, 0x00, 0xac, 0x00, 0x82, 0x00, 0x4c, 0x00,
+0x1c, 0x00, 0xe2, 0xff, 0xa6, 0xff, 0x76, 0xff, 0x34, 0xff, 0x2e, 0xff, 0x38, 0xff, 0x56, 0xff,
+0x88, 0xff, 0xc4, 0xff, 0x06, 0x00, 0x40, 0x00, 0x7a, 0x00, 0x98, 0x00, 0xa6, 0x00, 0x94, 0x00,
+0x7c, 0x00, 0x52, 0x00, 0x12, 0x00, 0xe0, 0xff, 0xb0, 0xff, 0x74, 0xff, 0x56, 0xff, 0x50, 0xff,
+0x58, 0xff, 0x7a, 0xff, 0xa4, 0xff, 0xda, 0xff, 0x14, 0x00, 0x4a, 0x00, 0x60, 0x00, 0x84, 0x00,
+0x86, 0x00, 0x76, 0x00, 0x64, 0x00, 0x38, 0x00, 0x14, 0x00, 0xdc, 0xff, 0xac, 0xff, 0x8e, 0xff,
+0x76, 0xff, 0x5e, 0xff, 0x6c, 0xff, 0x88, 0xff, 0xa4, 0xff, 0xdc, 0xff, 0x04, 0x00, 0x28, 0x00,
+0x42, 0x00, 0x5a, 0x00, 0x5e, 0x00, 0x62, 0x00, 0x4c, 0x00, 0x26, 0x00, 0x08, 0x00, 0xda, 0xff,
+0xbe, 0xff, 0x9e, 0xff, 0x92, 0xff, 0x98, 0xff, 0x92, 0xff, 0xa8, 0xff, 0xc8, 0xff, 0xe4, 0xff,
+0xfc, 0xff, 0x22, 0x00, 0x30, 0x00, 0x32, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x2c, 0x00, 0x0e, 0x00,
+0xfc, 0xff, 0xec, 0xff, 0xd0, 0xff, 0xbe, 0xff, 0xba, 0xff, 0xac, 0xff, 0xa4, 0xff, 0xc0, 0xff,
+0xd2, 0xff, 0xea, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0e, 0x00, 0x0c, 0x00,
+0x0a, 0x00, 0xfc, 0xff, 0xe8, 0xff, 0xdc, 0xff, 0xd8, 0xff, 0xd2, 0xff, 0xd6, 0xff, 0xce, 0xff,
+0xd8, 0xff, 0xe2, 0xff, 0xd8, 0xff, 0xe6, 0xff, 0xda, 0xff, 0xda, 0xff, 0xea, 0xff, 0xf2, 0xff,
+0xf0, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf0, 0xff, 0x04, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x08, 0x00,
+0x02, 0x00, 0xf8, 0xff, 0xee, 0xff, 0xea, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xc4, 0xff, 0xc2, 0xff,
+0xc2, 0xff, 0xca, 0xff, 0xcc, 0xff, 0xe8, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x16, 0x00, 0x22, 0x00,
+0x2a, 0x00, 0x20, 0x00, 0x22, 0x00, 0x14, 0x00, 0x06, 0x00, 0xe4, 0xff, 0xd4, 0xff, 0xae, 0xff,
+0x98, 0xff, 0x9a, 0xff, 0x9e, 0xff, 0xae, 0xff, 0xbe, 0xff, 0xe8, 0xff, 0xfc, 0xff, 0x14, 0x00,
+0x38, 0x00, 0x48, 0x00, 0x54, 0x00, 0x4c, 0x00, 0x3a, 0x00, 0x24, 0x00, 0x0a, 0x00, 0xee, 0xff,
+0xc0, 0xff, 0xa4, 0xff, 0x96, 0xff, 0x88, 0xff, 0x96, 0xff, 0x9e, 0xff, 0xba, 0xff, 0xee, 0xff,
+0x06, 0x00, 0x2c, 0x00, 0x58, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6e, 0x00, 0x56, 0x00, 0x3c, 0x00,
+0x04, 0x00, 0xda, 0xff, 0xaa, 0xff, 0x78, 0xff, 0x6c, 0xff, 0x60, 0xff, 0x6a, 0xff, 0x7e, 0xff,
+0xac, 0xff, 0xec, 0xff, 0x0a, 0x00, 0x42, 0x00, 0x6a, 0x00, 0x78, 0x00, 0x90, 0x00, 0x7e, 0x00,
+0x58, 0x00, 0x2a, 0x00, 0xfc, 0xff, 0xc0, 0xff, 0x8e, 0xff, 0x6a, 0xff, 0x42, 0xff, 0x40, 0xff,
+0x54, 0xff, 0x80, 0xff, 0xb8, 0xff, 0xee, 0xff, 0x26, 0x00, 0x5e, 0x00, 0x88, 0x00, 0xa6, 0x00,
+0xae, 0x00, 0x98, 0x00, 0x68, 0x00, 0x2a, 0x00, 0xee, 0xff, 0xae, 0xff, 0x72, 0xff, 0x46, 0xff,
+0x2c, 0xff, 0x30, 0xff, 0x4c, 0xff, 0x7e, 0xff, 0xc2, 0xff, 0xf2, 0xff, 0x26, 0x00, 0x68, 0x00,
+0x8a, 0x00, 0xb0, 0x00, 0xa4, 0x00, 0x7c, 0x00, 0x4e, 0x00, 0x02, 0x00, 0xd2, 0xff, 0x94, 0xff,
+0x5a, 0xff, 0x30, 0xff, 0x20, 0xff, 0x24, 0xff, 0x4a, 0xff, 0x80, 0xff, 0xc0, 0xff, 0x00, 0x00,
+0x38, 0x00, 0x70, 0x00, 0x9a, 0x00, 0xae, 0x00, 0x9e, 0x00, 0x78, 0x00, 0x40, 0x00, 0x00, 0x00,
+0xd2, 0xff, 0x8a, 0xff, 0x54, 0xff, 0x3a, 0xff, 0x2a, 0xff, 0x3c, 0xff, 0x6c, 0xff, 0xa6, 0xff,
+0xe6, 0xff, 0x14, 0x00, 0x46, 0x00, 0x82, 0x00, 0xa4, 0x00, 0xa4, 0x00, 0x86, 0x00, 0x5e, 0x00,
+0x28, 0x00, 0xf0, 0xff, 0xba, 0xff, 0x88, 0xff, 0x52, 0xff, 0x40, 0xff, 0x44, 0xff, 0x56, 0xff,
+0x7c, 0xff, 0xaa, 0xff, 0xee, 0xff, 0x18, 0x00, 0x42, 0x00, 0x7e, 0x00, 0x90, 0x00, 0x8a, 0x00,
+0x76, 0x00, 0x46, 0x00, 0x1e, 0x00, 0xe4, 0xff, 0xb0, 0xff, 0x86, 0xff, 0x68, 0xff, 0x62, 0xff,
+0x5c, 0xff, 0x76, 0xff, 0x94, 0xff, 0xca, 0xff, 0x00, 0x00, 0x38, 0x00, 0x58, 0x00, 0x70, 0x00,
+0x7e, 0x00, 0x78, 0x00, 0x6a, 0x00, 0x44, 0x00, 0x18, 0x00, 0xf0, 0xff, 0xb8, 0xff, 0x9c, 0xff,
+0x94, 0xff, 0x7c, 0xff, 0x7a, 0xff, 0x90, 0xff, 0xb0, 0xff, 0xda, 0xff, 0xf0, 0xff, 0x1e, 0x00,
+0x40, 0x00, 0x48, 0x00, 0x52, 0x00, 0x52, 0x00, 0x48, 0x00, 0x24, 0x00, 0x02, 0x00, 0xea, 0xff,
+0xcc, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xa8, 0xff, 0xa2, 0xff, 0xae, 0xff, 0xc2, 0xff, 0xde, 0xff,
+0xf4, 0xff, 0x02, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x2e, 0x00, 0x2a, 0x00, 0x26, 0x00, 0x12, 0x00,
+0x02, 0x00, 0xf8, 0xff, 0xf6, 0xff, 0xda, 0xff, 0xde, 0xff, 0xd4, 0xff, 0xcc, 0xff, 0xd4, 0xff,
+0xd4, 0xff, 0xee, 0xff, 0xea, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00,
+0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xf2, 0xff,
+0xe8, 0xff, 0xd8, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xd6, 0xff, 0xd2, 0xff, 0xd8, 0xff, 0xd4, 0xff,
+0xcc, 0xff, 0xd6, 0xff, 0xe8, 0xff, 0xee, 0xff, 0x02, 0x00, 0x0c, 0x00, 0x16, 0x00, 0x20, 0x00,
+0x0e, 0x00, 0x12, 0x00, 0x06, 0x00, 0xf8, 0xff, 0xe6, 0xff, 0xd2, 0xff, 0xc6, 0xff, 0xb0, 0xff,
+0xa8, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xbc, 0xff, 0xe4, 0xff, 0xf6, 0xff, 0x0e, 0x00, 0x32, 0x00,
+0x3c, 0x00, 0x44, 0x00, 0x3e, 0x00, 0x30, 0x00, 0x1e, 0x00, 0x08, 0x00, 0xe8, 0xff, 0xc2, 0xff,
+0x9e, 0xff, 0x8a, 0xff, 0x80, 0xff, 0x8a, 0xff, 0x9e, 0xff, 0xb0, 0xff, 0xe0, 0xff, 0xfc, 0xff,
+0x1e, 0x00, 0x46, 0x00, 0x5a, 0x00, 0x68, 0x00, 0x58, 0x00, 0x4e, 0x00, 0x26, 0x00, 0x00, 0x00,
+0xd0, 0xff, 0xa4, 0xff, 0x8e, 0xff, 0x6e, 0xff, 0x6c, 0xff, 0x7c, 0xff, 0x98, 0xff, 0xc4, 0xff,
+0xea, 0xff, 0x20, 0x00, 0x5c, 0x00, 0x6e, 0x00, 0x8e, 0x00, 0x8c, 0x00, 0x74, 0x00, 0x5a, 0x00,
+0x22, 0x00, 0xf0, 0xff, 0xc2, 0xff, 0x96, 0xff, 0x70, 0xff, 0x54, 0xff, 0x58, 0xff, 0x6a, 0xff,
+0x90, 0xff, 0xc2, 0xff, 0xf6, 0xff, 0x2c, 0x00, 0x72, 0x00, 0x8e, 0x00, 0x98, 0x00, 0x9e, 0x00,
+0x84, 0x00, 0x54, 0x00, 0x1e, 0x00, 0xea, 0xff, 0xb2, 0xff, 0x76, 0xff, 0x4e, 0xff, 0x3a, 0xff,
+0x34, 0xff, 0x5a, 0xff, 0x9a, 0xff, 0xd0, 0xff, 0x08, 0x00, 0x3e, 0x00, 0x76, 0x00, 0xa0, 0x00,
+0xaa, 0x00, 0xa6, 0x00, 0x8a, 0x00, 0x4c, 0x00, 0x12, 0x00, 0xda, 0xff, 0xa0, 0xff, 0x6a, 0xff,
+0x3e, 0xff, 0x28, 0xff, 0x3a, 0xff, 0x66, 0xff, 0x9e, 0xff, 0xe4, 0xff, 0x14, 0x00, 0x5a, 0x00,
+0x82, 0x00, 0xaa, 0x00, 0xb8, 0x00, 0xa2, 0x00, 0x74, 0x00, 0x32, 0x00, 0xfc, 0xff, 0xc6, 0xff,
+0x7a, 0xff, 0x4a, 0xff, 0x28, 0xff, 0x26, 0xff, 0x4c, 0xff, 0x5e, 0xff, 0xae, 0xff, 0xe8, 0xff,
+0x1c, 0x00, 0x54, 0x00, 0x88, 0x00, 0xa6, 0x00, 0xa0, 0x00, 0x86, 0x00, 0x5a, 0x00, 0x22, 0x00,
+0xea, 0xff, 0xb2, 0xff, 0x76, 0xff, 0x4c, 0xff, 0x32, 0xff, 0x3e, 0xff, 0x5a, 0xff, 0x86, 0xff,
+0xb8, 0xff, 0xf6, 0xff, 0x28, 0x00, 0x62, 0x00, 0x80, 0x00, 0x90, 0x00, 0x9e, 0x00, 0x78, 0x00,
+0x42, 0x00, 0x12, 0x00, 0xd4, 0xff, 0xa4, 0xff, 0x82, 0xff, 0x5c, 0xff, 0x52, 0xff, 0x4e, 0xff,
+0x70, 0xff, 0x94, 0xff, 0xce, 0xff, 0x08, 0x00, 0x30, 0x00, 0x58, 0x00, 0x74, 0x00, 0x78, 0x00,
+0x74, 0x00, 0x56, 0x00, 0x26, 0x00, 0xfe, 0xff, 0xd2, 0xff, 0xa0, 0xff, 0x86, 0xff, 0x6e, 0xff,
+0x62, 0xff, 0x7c, 0xff, 0x90, 0xff, 0xb8, 0xff, 0xe6, 0xff, 0x02, 0x00, 0x36, 0x00, 0x50, 0x00,
+0x56, 0x00, 0x64, 0x00, 0x58, 0x00, 0x48, 0x00, 0x1a, 0x00, 0xf4, 0xff, 0xe2, 0xff, 0xac, 0xff,
+0xa2, 0xff, 0x98, 0xff, 0x98, 0xff, 0xa6, 0xff, 0xb4, 0xff, 0xdc, 0xff, 0xf4, 0xff, 0x08, 0x00,
+0x1e, 0x00, 0x32, 0x00, 0x36, 0x00, 0x44, 0x00, 0x40, 0x00, 0x24, 0x00, 0x08, 0x00, 0xf0, 0xff,
+0xd6, 0xff, 0xc2, 0xff, 0xbc, 0xff, 0xbc, 0xff, 0xbe, 0xff, 0xbc, 0xff, 0xd8, 0xff, 0xd8, 0xff,
+0xec, 0xff, 0xf2, 0xff, 0x04, 0x00, 0x18, 0x00, 0x12, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x0a, 0x00,
+0xfc, 0xff, 0xee, 0xff, 0xee, 0xff, 0xe6, 0xff, 0xe8, 0xff, 0xe6, 0xff, 0xdc, 0xff, 0xe2, 0xff,
+0xde, 0xff, 0xe2, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf8, 0xff,
+0xf0, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x02, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00, 0x00,
+0xfe, 0xff, 0xee, 0xff, 0xf2, 0xff, 0xe8, 0xff, 0xd2, 0xff, 0xc8, 0xff, 0xb8, 0xff, 0xc8, 0xff,
+0xcc, 0xff, 0xc8, 0xff, 0xe4, 0xff, 0xee, 0xff, 0xfa, 0xff, 0x16, 0x00, 0x22, 0x00, 0x28, 0x00,
+0x2c, 0x00, 0x22, 0x00, 0x16, 0x00, 0x02, 0x00, 0xf2, 0xff, 0xda, 0xff, 0xbc, 0xff, 0xa2, 0xff,
+0x96, 0xff, 0xa2, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xd4, 0xff, 0xf2, 0xff, 0x06, 0x00, 0x36, 0x00,
+0x4a, 0x00, 0x54, 0x00, 0x5a, 0x00, 0x46, 0x00, 0x36, 0x00, 0x0e, 0x00, 0xe6, 0xff, 0xce, 0xff,
+0xa2, 0xff, 0x8e, 0xff, 0x78, 0xff, 0x76, 0xff, 0x8e, 0xff, 0xa4, 0xff, 0xd6, 0xff, 0xf6, 0xff,
+0x18, 0x00, 0x48, 0x00, 0x66, 0x00, 0x70, 0x00, 0x76, 0x00, 0x66, 0x00, 0x3e, 0x00, 0x04, 0x00,
+0xe0, 0xff, 0xac, 0xff, 0x7e, 0xff, 0x68, 0xff, 0x5e, 0xff, 0x5c, 0xff, 0x78, 0xff, 0xa2, 0xff,
+0xc4, 0xff, 0xfa, 0xff, 0x38, 0x00, 0x6e, 0x00, 0x9a, 0x00, 0xa0, 0x00, 0x92, 0x00, 0x66, 0x00,
+0x30, 0x00, 0x0c, 0x00, 0xd4, 0xff, 0x98, 0xff, 0x66, 0xff, 0x4e, 0xff, 0x46, 0xff, 0x48, 0xff,
+0x6c, 0xff, 0xb0, 0xff, 0xe4, 0xff, 0x14, 0x00, 0x54, 0x00, 0x8a, 0x00, 0xa4, 0x00, 0xb2, 0x00,
+0x9c, 0x00, 0x70, 0x00, 0x32, 0x00, 0xfa, 0xff, 0xc2, 0xff, 0x7e, 0xff, 0x50, 0xff, 0x32, 0xff,
+0x30, 0xff, 0x44, 0xff, 0x76, 0xff, 0xb6, 0xff, 0xf0, 0xff, 0x1e, 0x00, 0x64, 0x00, 0x9c, 0x00,
+0xba, 0x00, 0xb2, 0x00, 0x96, 0x00, 0x6e, 0x00, 0x1c, 0x00, 0xf8, 0xff, 0xaa, 0xff, 0x68, 0xff,
+0x3e, 0xff, 0x30, 0xff, 0x36, 0xff, 0x56, 0xff, 0x84, 0xff, 0xc2, 0xff, 0x00, 0x00, 0x38, 0x00,
+0x7a, 0x00, 0xa6, 0x00, 0xc2, 0x00, 0xac, 0x00, 0x92, 0x00, 0x56, 0x00, 0x18, 0x00, 0xe8, 0xff,
+0xac, 0xff, 0x6e, 0xff, 0x3c, 0xff, 0x2c, 0xff, 0x34, 0xff, 0x5c, 0xff, 0x90, 0xff, 0xde, 0xff,
+0x10, 0x00, 0x3c, 0x00, 0x7a, 0x00, 0x9c, 0x00, 0xae, 0x00, 0xa8, 0x00, 0x74, 0x00, 0x3e, 0x00,
+0x04, 0x00, 0xca, 0xff, 0x96, 0xff, 0x62, 0xff, 0x44, 0xff, 0x3a, 0xff, 0x48, 0xff, 0x68, 0xff,
+0xa6, 0xff, 0xea, 0xff, 0x1e, 0x00, 0x44, 0x00, 0x74, 0x00, 0x90, 0x00, 0x92, 0x00, 0x80, 0x00,
+0x5a, 0x00, 0x28, 0x00, 0xf2, 0xff, 0xc4, 0xff, 0xa0, 0xff, 0x7a, 0xff, 0x58, 0xff, 0x5a, 0xff,
+0x64, 0xff, 0x8e, 0xff, 0xc4, 0xff, 0xea, 0xff, 0x24, 0x00, 0x44, 0x00, 0x5e, 0x00, 0x72, 0x00,
+0x6a, 0x00, 0x5e, 0x00, 0x44, 0x00, 0x16, 0x00, 0xe6, 0xff, 0xc6, 0xff, 0xa0, 0xff, 0x92, 0xff,
+0x7c, 0xff, 0x7a, 0xff, 0x7c, 0xff, 0x9e, 0xff, 0xc8, 0xff, 0xea, 0xff, 0x10, 0x00, 0x2a, 0x00,
+0x3c, 0x00, 0x42, 0x00, 0x4e, 0x00, 0x3e, 0x00, 0x26, 0x00, 0x02, 0x00, 0xea, 0xff, 0xd4, 0xff,
+0xb6, 0xff, 0xa8, 0xff, 0xa6, 0xff, 0xa4, 0xff, 0xb0, 0xff, 0xc8, 0xff, 0xe2, 0xff, 0xf6, 0xff,
+0x08, 0x00, 0x1e, 0x00, 0x26, 0x00, 0x28, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x16, 0x00, 0xfe, 0xff,
+0xf2, 0xff, 0xe4, 0xff, 0xd4, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xd0, 0xff, 0xd8, 0xff, 0xdc, 0xff,
+0xf6, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0x04, 0x00,
+0x02, 0x00, 0xfa, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfe, 0xff,
+0xf6, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xd6, 0xff, 0xd0, 0xff, 0xd4, 0xff, 0xd6, 0xff, 0xd8, 0xff,
+0xea, 0xff, 0xf2, 0xff, 0xfa, 0xff, 0x04, 0x00, 0x14, 0x00, 0x18, 0x00, 0x1e, 0x00, 0x16, 0x00,
+0x16, 0x00, 0x0c, 0x00, 0xfa, 0xff, 0xf6, 0xff, 0xe6, 0xff, 0xc2, 0xff, 0xb6, 0xff, 0xb0, 0xff,
+0xb0, 0xff, 0xc8, 0xff, 0xce, 0xff, 0xec, 0xff, 0xfc, 0xff, 0x0c, 0x00, 0x2e, 0x00, 0x3a, 0x00,
+0x3c, 0x00, 0x32, 0x00, 0x2c, 0x00, 0x14, 0x00, 0xfc, 0xff, 0xe4, 0xff, 0xc2, 0xff, 0xa2, 0xff,
+0x92, 0xff, 0x86, 0xff, 0x90, 0xff, 0xa4, 0xff, 0xba, 0xff, 0xea, 0xff, 0xfe, 0xff, 0x2e, 0x00,
+0x46, 0x00, 0x54, 0x00, 0x54, 0x00, 0x56, 0x00, 0x46, 0x00, 0x28, 0x00, 0x04, 0x00, 0xd8, 0xff,
+0xa4, 0xff, 0x88, 0xff, 0x7e, 0xff, 0x6c, 0xff, 0x7a, 0xff, 0x92, 0xff, 0xaa, 0xff, 0xe0, 0xff,
+0x0c, 0x00, 0x3c, 0x00, 0x64, 0x00, 0x7a, 0x00, 0x82, 0x00, 0x70, 0x00, 0x58, 0x00, 0x2e, 0x00,
+0xfe, 0xff, 0xca, 0xff, 0x9c, 0xff, 0x74, 0xff, 0x54, 0xff, 0x4c, 0xff, 0x5c, 0xff, 0x88, 0xff,
+0xba, 0xff, 0xee, 0xff, 0x1c, 0x00, 0x52, 0x00, 0x78, 0x00, 0x96, 0x00, 0x96, 0x00, 0x86, 0x00,
+0x5e, 0x00, 0x20, 0x00, 0xee, 0xff, 0xb0, 0xff, 0x78, 0xff, 0x58, 0xff, 0x3e, 0xff, 0x3e, 0xff,
+0x5e, 0xff, 0x86, 0xff, 0xca, 0xff, 0xfe, 0xff, 0x30, 0x00, 0x74, 0x00, 0x9c, 0x00, 0xac, 0x00,
+0xa6, 0x00, 0x88, 0x00, 0x56, 0x00, 0x0c, 0x00, 0xd4, 0xff, 0xa2, 0xff, 0x68, 0xff, 0x44, 0xff,
+0x2c, 0xff, 0x3a, 0xff, 0x60, 0xff, 0x9e, 0xff, 0xe2, 0xff, 0x12, 0x00, 0x4e, 0x00, 0x82, 0x00,
+0xa6, 0x00, 0xc4, 0x00, 0xaa, 0x00, 0x8c, 0x00, 0x3a, 0x00, 0xfc, 0xff, 0xd6, 0xff, 0x7a, 0xff,
+0x58, 0xff, 0x34, 0xff, 0x2a, 0xff, 0x48, 0xff, 0x6a, 0xff, 0xa6, 0xff, 0xe4, 0xff, 0x18, 0x00,
+0x50, 0x00, 0x92, 0x00, 0xb0, 0x00, 0xbc, 0x00, 0xaa, 0x00, 0x6e, 0x00, 0x2c, 0x00, 0xec, 0xff,
+0xbc, 0xff, 0x82, 0xff, 0x58, 0xff, 0x3e, 0xff, 0x30, 0xff, 0x58, 0xff, 0x7c, 0xff, 0xc2, 0xff,
+0xfe, 0xff, 0x2a, 0x00, 0x62, 0x00, 0x86, 0x00, 0x9a, 0x00, 0x9e, 0x00, 0x88, 0x00, 0x58, 0x00,
+0x1e, 0x00, 0xe6, 0xff, 0xb0, 0xff, 0x82, 0xff, 0x60, 0xff, 0x4a, 0xff, 0x52, 0xff, 0x68, 0xff,
+0x94, 0xff, 0xd6, 0xff, 0x00, 0x00, 0x2e, 0x00, 0x50, 0x00, 0x68, 0x00, 0x82, 0x00, 0x7a, 0x00,
+0x66, 0x00, 0x36, 0x00, 0x04, 0x00, 0xe2, 0xff, 0xa6, 0xff, 0x90, 0xff, 0x72, 0xff, 0x66, 0xff,
+0x70, 0xff, 0x82, 0xff, 0xa8, 0xff, 0xd2, 0xff, 0xfc, 0xff, 0x34, 0x00, 0x44, 0x00, 0x54, 0x00,
+0x6a, 0x00, 0x52, 0x00, 0x48, 0x00, 0x28, 0x00, 0xfa, 0xff, 0xea, 0xff, 0xc4, 0xff, 0xb0, 0xff,
+0xa0, 0xff, 0x92, 0xff, 0x96, 0xff, 0xa4, 0xff, 0xc4, 0xff, 0xe6, 0xff, 0xfe, 0xff, 0x1c, 0x00,
+0x34, 0x00, 0x38, 0x00, 0x32, 0x00, 0x34, 0x00, 0x26, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xe4, 0xff,
+0xce, 0xff, 0xbe, 0xff, 0xc2, 0xff, 0xbe, 0xff, 0xba, 0xff, 0xcc, 0xff, 0xd0, 0xff, 0xe8, 0xff,
+0xf8, 0xff, 0x06, 0x00, 0x18, 0x00, 0x16, 0x00, 0x1e, 0x00, 0x0e, 0x00, 0x16, 0x00, 0x0e, 0x00,
+0xf6, 0xff, 0xf8, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xee, 0xff, 0xe4, 0xff, 0xf2, 0xff, 0xdc, 0xff,
+0xda, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf4, 0xff, 0xfa, 0xff, 0x00, 0x00,
+0x00, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x18, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x06, 0x00,
+0xf0, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xde, 0xff, 0xd0, 0xff, 0xc0, 0xff, 0xbc, 0xff, 0xc6, 0xff,
+0xc8, 0xff, 0xd2, 0xff, 0xec, 0xff, 0xfa, 0xff, 0x12, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2a, 0x00,
+0x26, 0x00, 0x28, 0x00, 0x0e, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xc8, 0xff, 0xaa, 0xff, 0xa6, 0xff,
+0x94, 0xff, 0xa4, 0xff, 0xa6, 0xff, 0xbe, 0xff, 0xec, 0xff, 0x02, 0x00, 0x2c, 0x00, 0x48, 0x00,
+0x50, 0x00, 0x5a, 0x00, 0x50, 0x00, 0x38, 0x00, 0x1a, 0x00, 0x02, 0x00, 0xcc, 0xff, 0x9e, 0xff,
+0x8c, 0xff, 0x72, 0xff, 0x6e, 0xff, 0x84, 0xff, 0x8e, 0xff, 0xb2, 0xff, 0xde, 0xff, 0x08, 0x00,
+0x3c, 0x00, 0x4e, 0x00, 0x6a, 0x00, 0x6e, 0x00, 0x4e, 0x00, 0x38, 0x00, 0x02, 0x00, 0xd8, 0xff,
+0xb2, 0xff, 0x88, 0xff, 0x66, 0xff, 0x4a, 0xff, 0x58, 0xff, 0x6e, 0xff, 0x96, 0xff, 0xc8, 0xff,
+0xfc, 0xff, 0x28, 0x00, 0x56, 0x00, 0x7c, 0x00, 0x8a, 0x00, 0x84, 0x00, 0x6c, 0x00, 0x38, 0x00,
+0x0a, 0x00, 0xd8, 0xff, 0xa0, 0xff, 0x76, 0xff, 0x46, 0xff, 0x3a, 0xff, 0x46, 0xff, 0x64, 0xff,
+0xb2, 0xff, 0xd8, 0xff, 0x0c, 0x00, 0x3e, 0x00, 0x70, 0x00, 0xa2, 0x00, 0xa4, 0x00, 0x8e, 0x00,
+0x6a, 0x00, 0x2e, 0x00, 0xf4, 0xff, 0xc8, 0xff, 0x8e, 0xff, 0x52, 0xff, 0x36, 0xff, 0x26, 0xff,
+0x3e, 0xff, 0x62, 0xff, 0xae, 0xff, 0xf4, 0xff, 0x1e, 0x00, 0x5c, 0x00, 0x94, 0x00, 0xb2, 0x00,
+0xaa, 0x00, 0x9a, 0x00, 0x74, 0x00, 0x28, 0x00, 0xf6, 0xff, 0xc6, 0xff, 0x8a, 0xff, 0x5c, 0xff,
+0x32, 0xff, 0x2e, 0xff, 0x4e, 0xff, 0x7e, 0xff, 0xc8, 0xff, 0x02, 0x00, 0x3a, 0x00, 0x78, 0x00,
+0xa2, 0x00, 0xc0, 0x00, 0xb4, 0x00, 0x9a, 0x00, 0x70, 0x00, 0x26, 0x00, 0xe6, 0xff, 0xbc, 0xff,
+0x7e, 0xff, 0x44, 0xff, 0x30, 0xff, 0x3a, 0xff, 0x5c, 0xff, 0x86, 0xff, 0xcc, 0xff, 0x0a, 0x00,
+0x2c, 0x00, 0x6c, 0x00, 0x96, 0x00, 0x9e, 0x00, 0xa0, 0x00, 0x80, 0x00, 0x4a, 0x00, 0x12, 0x00,
+0xd6, 0xff, 0x9e, 0xff, 0x72, 0xff, 0x4a, 0xff, 0x4a, 0xff, 0x5c, 0xff, 0x70, 0xff, 0xa4, 0xff,
+0xd8, 0xff, 0x0e, 0x00, 0x3a, 0x00, 0x64, 0x00, 0x86, 0x00, 0x8a, 0x00, 0x84, 0x00, 0x66, 0x00,
+0x38, 0x00, 0x02, 0x00, 0xce, 0xff, 0xa6, 0xff, 0x7e, 0xff, 0x66, 0xff, 0x62, 0xff, 0x6e, 0xff,
+0x84, 0xff, 0xb4, 0xff, 0xf0, 0xff, 0x0c, 0x00, 0x38, 0x00, 0x50, 0x00, 0x5e, 0x00, 0x6a, 0x00,
+0x5c, 0x00, 0x42, 0x00, 0x16, 0x00, 0xf0, 0xff, 0xc4, 0xff, 0x98, 0xff, 0x86, 0xff, 0x70, 0xff,
+0x70, 0xff, 0x86, 0xff, 0x9c, 0xff, 0xbc, 0xff, 0xde, 0xff, 0x02, 0x00, 0x2c, 0x00, 0x32, 0x00,
+0x3a, 0x00, 0x48, 0x00, 0x32, 0x00, 0x20, 0x00, 0x02, 0x00, 0xf0, 0xff, 0xd6, 0xff, 0xb0, 0xff,
+0xb0, 0xff, 0xa4, 0xff, 0xa0, 0xff, 0xaa, 0xff, 0xbe, 0xff, 0xdc, 0xff, 0xee, 0xff, 0xfc, 0xff,
+0x18, 0x00, 0x26, 0x00, 0x1a, 0x00, 0x28, 0x00, 0x20, 0x00, 0x0e, 0x00, 0xfe, 0xff, 0xec, 0xff,
+0xea, 0xff, 0xd0, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xc2, 0xff, 0xc4, 0xff, 0xcc, 0xff, 0xd8, 0xff,
+0xdc, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00,
+0x06, 0x00, 0xfa, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf0, 0xff,
+0xe6, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd2, 0xff, 0xe2, 0xff, 0xe4, 0xff, 0xf0, 0xff,
+0x06, 0x00, 0x06, 0x00, 0x02, 0x00, 0x14, 0x00, 0x20, 0x00, 0x24, 0x00, 0x2a, 0x00, 0x2a, 0x00,
+0x16, 0x00, 0x04, 0x00, 0xf0, 0xff, 0xd8, 0xff, 0xc6, 0xff, 0xae, 0xff, 0xb4, 0xff, 0xbc, 0xff,
+0xba, 0xff, 0xc8, 0xff, 0xde, 0xff, 0xfa, 0xff, 0x16, 0x00, 0x30, 0x00, 0x40, 0x00, 0x4a, 0x00,
+0x42, 0x00, 0x36, 0x00, 0x2c, 0x00, 0x0a, 0x00, 0xe8, 0xff, 0xc0, 0xff, 0xa6, 0xff, 0x90, 0xff,
+0x86, 0xff, 0x98, 0xff, 0xa2, 0xff, 0xa8, 0xff, 0xd8, 0xff, 0xfe, 0xff, 0x24, 0x00, 0x54, 0x00,
+0x68, 0x00, 0x68, 0x00, 0x68, 0x00, 0x54, 0x00, 0x36, 0x00, 0x10, 0x00, 0xd6, 0xff, 0xb4, 0xff,
+0x88, 0xff, 0x68, 0xff, 0x68, 0xff, 0x6a, 0xff, 0x84, 0xff, 0xa4, 0xff, 0xdc, 0xff, 0x0c, 0x00,
+0x34, 0x00, 0x66, 0x00, 0x86, 0x00, 0x8c, 0x00, 0x7c, 0x00, 0x5e, 0x00, 0x28, 0x00, 0xfe, 0xff,
+0xc4, 0xff, 0x8c, 0xff, 0x54, 0xff, 0x38, 0xff, 0x3e, 0xff, 0x48, 0xff, 0x6a, 0xff, 0x9a, 0xff,
+0xd6, 0xff, 0x10, 0x00, 0x4c, 0x00, 0x82, 0x00, 0x9e, 0x00, 0xa0, 0x00, 0x82, 0x00, 0x5c, 0x00,
+0x1e, 0x00, 0xf0, 0xff, 0xb4, 0xff, 0x76, 0xff, 0x48, 0xff, 0x2e, 0xff, 0x30, 0xff, 0x46, 0xff,
+0x78, 0xff, 0xb8, 0xff, 0xf8, 0xff, 0x2c, 0x00, 0x66, 0x00, 0x9e, 0x00, 0xb8, 0x00, 0xb2, 0x00,
+0x90, 0x00, 0x5e, 0x00, 0x12, 0x00, 0xe6, 0xff, 0xa0, 0xff, 0x5e, 0xff, 0x3e, 0xff, 0x22, 0xff,
+0x26, 0xff, 0x48, 0xff, 0x80, 0xff, 0xce, 0xff, 0x02, 0x00, 0x38, 0x00, 0x7c, 0x00, 0xa8, 0x00,
+0xbc, 0x00, 0xa8, 0x00, 0x7e, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xc8, 0xff, 0x8e, 0xff, 0x5a, 0xff,
+0x2a, 0xff, 0x22, 0xff, 0x42, 0xff, 0x6a, 0xff, 0x98, 0xff, 0xe2, 0xff, 0x22, 0x00, 0x54, 0x00,
+0x8e, 0x00, 0xb2, 0x00, 0xbc, 0x00, 0x9a, 0x00, 0x72, 0x00, 0x38, 0x00, 0x02, 0x00, 0xc0, 0xff,
+0x88, 0xff, 0x56, 0xff, 0x44, 0xff, 0x4a, 0xff, 0x52, 0xff, 0x80, 0xff, 0xbc, 0xff, 0xfc, 0xff,
+0x30, 0x00, 0x6c, 0x00, 0x98, 0x00, 0xa6, 0x00, 0xa2, 0x00, 0x82, 0x00, 0x60, 0x00, 0x2e, 0x00,
+0xf8, 0xff, 0xba, 0xff, 0x82, 0xff, 0x5a, 0xff, 0x4e, 0xff, 0x5a, 0xff, 0x66, 0xff, 0x90, 0xff,
+0xcc, 0xff, 0xf6, 0xff, 0x34, 0x00, 0x62, 0x00, 0x7a, 0x00, 0x84, 0x00, 0x84, 0x00, 0x70, 0x00,
+0x44, 0x00, 0x20, 0x00, 0xee, 0xff, 0xb6, 0xff, 0x96, 0xff, 0x80, 0xff, 0x70, 0xff, 0x7a, 0xff,
+0x86, 0xff, 0xa4, 0xff, 0xde, 0xff, 0x06, 0x00, 0x2c, 0x00, 0x48, 0x00, 0x50, 0x00, 0x56, 0x00,
+0x52, 0x00, 0x4a, 0x00, 0x32, 0x00, 0x04, 0x00, 0xe0, 0xff, 0xc4, 0xff, 0xa4, 0xff, 0x9c, 0xff,
+0x94, 0xff, 0x90, 0xff, 0x9e, 0xff, 0xbc, 0xff, 0xde, 0xff, 0x00, 0x00, 0x10, 0x00, 0x26, 0x00,
+0x26, 0x00, 0x26, 0x00, 0x22, 0x00, 0x18, 0x00, 0xfe, 0xff, 0xe8, 0xff, 0xe0, 0xff, 0xc2, 0xff,
+0xb6, 0xff, 0xbe, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xc4, 0xff, 0xc2, 0xff, 0xe2, 0xff, 0xf6, 0xff,
+0xec, 0xff, 0x08, 0x00, 0x00, 0x00, 0xfa, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xf4, 0xff,
+0xf2, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xd8, 0xff,
+0xde, 0xff, 0xd2, 0xff, 0xd8, 0xff, 0xd6, 0xff, 0xd4, 0xff, 0xe4, 0xff, 0xec, 0xff, 0xea, 0xff,
+0xfa, 0xff, 0x02, 0x00, 0x0c, 0x00, 0x1a, 0x00, 0x0c, 0x00, 0x06, 0x00, 0xfc, 0xff, 0xfa, 0xff,
+0xf0, 0xff, 0xdc, 0xff, 0xd0, 0xff, 0xb8, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xc2, 0xff, 0xc6, 0xff,
+0xe0, 0xff, 0xf6, 0xff, 0x06, 0x00, 0x1e, 0x00, 0x34, 0x00, 0x4c, 0x00, 0x40, 0x00, 0x3a, 0x00,
+0x2e, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xe2, 0xff, 0xca, 0xff, 0xa4, 0xff, 0x88, 0xff, 0x90, 0xff,
+0xa6, 0xff, 0xb6, 0xff, 0xca, 0xff, 0xf8, 0xff, 0x18, 0x00, 0x48, 0x00, 0x60, 0x00, 0x62, 0x00,
+0x6e, 0x00, 0x58, 0x00, 0x42, 0x00, 0x22, 0x00, 0xfa, 0xff, 0xd4, 0xff, 0xa2, 0xff, 0x78, 0xff,
+0x64, 0xff, 0x72, 0xff, 0x88, 0xff, 0xa0, 0xff, 0xca, 0xff, 0xf6, 0xff, 0x24, 0x00, 0x56, 0x00,
+0x72, 0x00, 0x84, 0x00, 0x80, 0x00, 0x6c, 0x00, 0x48, 0x00, 0x20, 0x00, 0xf0, 0xff, 0xc0, 0xff,
+0x92, 0xff, 0x72, 0xff, 0x5a, 0xff, 0x58, 0xff, 0x80, 0xff, 0x9a, 0xff, 0xd2, 0xff, 0x08, 0x00,
+0x36, 0x00, 0x68, 0x00, 0x88, 0x00, 0x94, 0x00, 0x94, 0x00, 0x7e, 0x00, 0x44, 0x00, 0x18, 0x00,
+0xe0, 0xff, 0xae, 0xff, 0x70, 0xff, 0x50, 0xff, 0x3a, 0xff, 0x4a, 0xff, 0x6e, 0xff, 0x90, 0xff,
+0xd2, 0xff, 0xfe, 0xff, 0x3e, 0x00, 0x6e, 0x00, 0x94, 0x00, 0xac, 0x00, 0x94, 0x00, 0x80, 0x00,
+0x3e, 0x00, 0xfc, 0xff, 0xd8, 0xff, 0x92, 0xff, 0x54, 0xff, 0x36, 0xff, 0x2e, 0xff, 0x44, 0xff,
+0x5c, 0xff, 0x9e, 0xff, 0xda, 0xff, 0x08, 0x00, 0x4c, 0x00, 0x86, 0x00, 0xaa, 0x00, 0xb4, 0x00,
+0xa4, 0x00, 0x7c, 0x00, 0x38, 0x00, 0xfc, 0xff, 0xce, 0xff, 0x7c, 0xff, 0x50, 0xff, 0x2a, 0xff,
+0x26, 0xff, 0x44, 0xff, 0x66, 0xff, 0xaa, 0xff, 0xee, 0xff, 0x16, 0x00, 0x52, 0x00, 0x8a, 0x00,
+0xb2, 0x00, 0xb2, 0x00, 0x96, 0x00, 0x64, 0x00, 0x1c, 0x00, 0xf0, 0xff, 0xbe, 0xff, 0x7c, 0xff,
+0x46, 0xff, 0x28, 0xff, 0x2c, 0xff, 0x4e, 0xff, 0x7c, 0xff, 0xc2, 0xff, 0xfc, 0xff, 0x24, 0x00,
+0x56, 0x00, 0x84, 0x00, 0xa4, 0x00, 0xa0, 0x00, 0x8e, 0x00, 0x56, 0x00, 0x1a, 0x00, 0xea, 0xff,
+0xb2, 0xff, 0x86, 0xff, 0x60, 0xff, 0x48, 0xff, 0x4c, 0xff, 0x6a, 0xff, 0x92, 0xff, 0xd0, 0xff,
+0x04, 0x00, 0x34, 0x00, 0x60, 0x00, 0x86, 0x00, 0x92, 0x00, 0x84, 0x00, 0x72, 0x00, 0x40, 0x00,
+0x14, 0x00, 0xe8, 0xff, 0xaa, 0xff, 0x8a, 0xff, 0x74, 0xff, 0x66, 0xff, 0x64, 0xff, 0x80, 0xff,
+0xa8, 0xff, 0xd6, 0xff, 0x08, 0x00, 0x38, 0x00, 0x4c, 0x00, 0x5a, 0x00, 0x6e, 0x00, 0x62, 0x00,
+0x4e, 0x00, 0x24, 0x00, 0x00, 0x00, 0xe0, 0xff, 0xac, 0xff, 0x9e, 0xff, 0x90, 0xff, 0x82, 0xff,
+0x90, 0xff, 0x9a, 0xff, 0xc2, 0xff, 0xe4, 0xff, 0x06, 0x00, 0x28, 0x00, 0x34, 0x00, 0x44, 0x00,
+0x50, 0x00, 0x4a, 0x00, 0x3c, 0x00, 0x18, 0x00, 0xfe, 0xff, 0xee, 0xff, 0xcc, 0xff, 0xc0, 0xff,
+0xb6, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xbc, 0xff, 0xd2, 0xff, 0xea, 0xff, 0xfa, 0xff, 0x0e, 0x00,
+0x20, 0x00, 0x22, 0x00, 0x24, 0x00, 0x26, 0x00, 0x1e, 0x00, 0x06, 0x00, 0x00, 0x00, 0xf4, 0xff,
+0xe0, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xc2, 0xff, 0xcc, 0xff, 0xc6, 0xff, 0xd4, 0xff, 0xda, 0xff,
+0xe6, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x00,
+0x0c, 0x00, 0x06, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xee, 0xff, 0xf0, 0xff,
+0xd4, 0xff, 0xd6, 0xff, 0xd4, 0xff, 0xc6, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd6, 0xff, 0xe4, 0xff,
+0xf8, 0xff, 0x04, 0x00, 0x08, 0x00, 0x1a, 0x00, 0x22, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x1c, 0x00,
+0x06, 0x00, 0xf4, 0xff, 0xe0, 0xff, 0xc4, 0xff, 0xb2, 0xff, 0xaa, 0xff, 0xb0, 0xff, 0xa6, 0xff,
+0xb2, 0xff, 0xce, 0xff, 0xe8, 0xff, 0xf8, 0xff, 0x1e, 0x00, 0x48, 0x00, 0x48, 0x00, 0x46, 0x00,
+0x38, 0x00, 0x30, 0x00, 0x10, 0x00, 0x04, 0x00, 0xde, 0xff, 0xac, 0xff, 0x94, 0xff, 0x86, 0xff,
+0x88, 0xff, 0x90, 0xff, 0xa8, 0xff, 0xc8, 0xff, 0xec, 0xff, 0x10, 0x00, 0x56, 0x00, 0x68, 0x00,
+0x6e, 0x00, 0x72, 0x00, 0x56, 0x00, 0x44, 0x00, 0x24, 0x00, 0xfc, 0xff, 0xc0, 0xff, 0x8e, 0xff,
+0x78, 0xff, 0x64, 0xff, 0x62, 0xff, 0x7e, 0xff, 0xa2, 0xff, 0xd2, 0xff, 0xfc, 0xff, 0x2c, 0x00,
+0x66, 0x00, 0x82, 0x00, 0x92, 0x00, 0x8c, 0x00, 0x6c, 0x00, 0x34, 0x00, 0x0e, 0x00, 0xe0, 0xff,
+0x92, 0xff, 0x76, 0xff, 0x48, 0xff, 0x40, 0xff, 0x46, 0xff, 0x68, 0xff, 0x9c, 0xff, 0xd2, 0xff,
+0x14, 0x00, 0x46, 0x00, 0x84, 0x00, 0xa2, 0x00, 0xac, 0x00, 0x96, 0x00, 0x76, 0x00, 0x32, 0x00,
+0xfe, 0xff, 0xc6, 0xff, 0x8c, 0xff, 0x5a, 0xff, 0x34, 0xff, 0x32, 0xff, 0x3a, 0xff, 0x66, 0xff,
+0xb2, 0xff, 0xec, 0xff, 0x26, 0x00, 0x6a, 0x00, 0xa2, 0x00, 0xb4, 0x00, 0xae, 0x00, 0x9a, 0x00,
+0x6e, 0x00, 0x20, 0x00, 0xee, 0xff, 0xb6, 0xff, 0x68, 0xff, 0x3e, 0xff, 0x20, 0xff, 0x20, 0xff,
+0x3a, 0xff, 0x6e, 0xff, 0xc0, 0xff, 0xfa, 0xff, 0x2a, 0x00, 0x70, 0x00, 0xa0, 0x00, 0xba, 0x00,
+0xa8, 0x00, 0x8c, 0x00, 0x50, 0x00, 0x0a, 0x00, 0xde, 0xff, 0x9c, 0xff, 0x62, 0xff, 0x34, 0xff,
+0x26, 0xff, 0x26, 0xff, 0x50, 0xff, 0x92, 0xff, 0xca, 0xff, 0x0e, 0x00, 0x42, 0x00, 0x7a, 0x00,
+0xa8, 0x00, 0xbe, 0x00, 0x9c, 0x00, 0x78, 0x00, 0x40, 0x00, 0x06, 0x00, 0xd2, 0xff, 0x9e, 0xff,
+0x64, 0xff, 0x3e, 0xff, 0x2e, 0xff, 0x40, 0xff, 0x6c, 0xff, 0x9e, 0xff, 0xe0, 0xff, 0x1c, 0x00,
+0x4c, 0x00, 0x78, 0x00, 0x92, 0x00, 0x92, 0x00, 0x82, 0x00, 0x58, 0x00, 0x2c, 0x00, 0xf8, 0xff,
+0xc2, 0xff, 0x92, 0xff, 0x68, 0xff, 0x44, 0xff, 0x42, 0xff, 0x5e, 0xff, 0x74, 0xff, 0xb4, 0xff,
+0xea, 0xff, 0x20, 0x00, 0x4e, 0x00, 0x62, 0x00, 0x80, 0x00, 0x7c, 0x00, 0x66, 0x00, 0x56, 0x00,
+0x22, 0x00, 0xfa, 0xff, 0xc6, 0xff, 0xa0, 0xff, 0x8a, 0xff, 0x74, 0xff, 0x72, 0xff, 0x82, 0xff,
+0x96, 0xff, 0xcc, 0xff, 0xfa, 0xff, 0x20, 0x00, 0x42, 0x00, 0x4c, 0x00, 0x5c, 0x00, 0x58, 0x00,
+0x58, 0x00, 0x38, 0x00, 0x10, 0x00, 0xe8, 0xff, 0xcc, 0xff, 0xb2, 0xff, 0xa0, 0xff, 0x8a, 0xff,
+0x90, 0xff, 0xa0, 0xff, 0xc0, 0xff, 0xe4, 0xff, 0xf2, 0xff, 0x0c, 0x00, 0x26, 0x00, 0x28, 0x00,
+0x2c, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x18, 0x00, 0x04, 0x00, 0xea, 0xff, 0xdc, 0xff, 0xce, 0xff,
+0xbe, 0xff, 0xbe, 0xff, 0xc2, 0xff, 0xce, 0xff, 0xda, 0xff, 0xe6, 0xff, 0xfa, 0xff, 0xf8, 0xff,
+0x06, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x12, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xfa, 0xff,
+0xf6, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xea, 0xff, 0xe8, 0xff, 0xe0, 0xff, 0xde, 0xff,
+0xd8, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xe8, 0xff, 0xdc, 0xff, 0xe2, 0xff, 0xf8, 0xff, 0x04, 0x00,
+0x12, 0x00, 0x0e, 0x00, 0x0c, 0x00, 0x16, 0x00, 0x16, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xea, 0xff,
+0xde, 0xff, 0xbe, 0xff, 0xbc, 0xff, 0xb4, 0xff, 0xae, 0xff, 0xb6, 0xff, 0xb8, 0xff, 0xd8, 0xff,
+0xf4, 0xff, 0x12, 0x00, 0x1e, 0x00, 0x26, 0x00, 0x34, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x36, 0x00,
+0x1a, 0x00, 0xf6, 0xff, 0xd6, 0xff, 0xc2, 0xff, 0x9e, 0xff, 0x9c, 0xff, 0x90, 0xff, 0x98, 0xff,
+0xae, 0xff, 0xbe, 0xff, 0xe4, 0xff, 0xfa, 0xff, 0x2e, 0x00, 0x3c, 0x00, 0x56, 0x00, 0x60, 0x00,
+0x5a, 0x00, 0x50, 0x00, 0x28, 0x00, 0xf8, 0xff, 0xca, 0xff, 0xa8, 0xff, 0x8c, 0xff, 0x70, 0xff,
+0x6e, 0xff, 0x80, 0xff, 0x90, 0xff, 0xac, 0xff, 0xdc, 0xff, 0x0e, 0x00, 0x44, 0x00, 0x68, 0x00,
+0x8c, 0x00, 0x8c, 0x00, 0x76, 0x00, 0x62, 0x00, 0x34, 0x00, 0xf8, 0xff, 0xc8, 0xff, 0x94, 0xff,
+0x78, 0xff, 0x56, 0xff, 0x54, 0xff, 0x5e, 0xff, 0x88, 0xff, 0xba, 0xff, 0xe8, 0xff, 0x32, 0x00,
+0x5e, 0x00, 0x8c, 0x00, 0xb0, 0x00, 0xa2, 0x00, 0x90, 0x00, 0x5c, 0x00, 0x22, 0x00, 0xf2, 0xff,
+0xb6, 0xff, 0x78, 0xff, 0x4a, 0xff, 0x32, 0xff, 0x3e, 0xff, 0x56, 0xff, 0x88, 0xff, 0xd2, 0xff,
+0xf8, 0xff, 0x36, 0x00, 0x76, 0x00, 0xa6, 0x00, 0xc2, 0x00, 0xae, 0x00, 0x86, 0x00, 0x46, 0x00,
+0x12, 0x00, 0xd4, 0xff, 0x96, 0xff, 0x62, 0xff, 0x38, 0xff, 0x34, 0xff, 0x3e, 0xff, 0x5e, 0xff,
+0x9c, 0xff, 0xe0, 0xff, 0x0c, 0x00, 0x54, 0x00, 0x8e, 0x00, 0xb2, 0x00, 0xc6, 0x00, 0xa6, 0x00,
+0x7e, 0x00, 0x3a, 0x00, 0xfc, 0xff, 0xcc, 0xff, 0x80, 0xff, 0x5e, 0xff, 0x30, 0xff, 0x26, 0xff,
+0x40, 0xff, 0x66, 0xff, 0xa2, 0xff, 0xea, 0xff, 0x18, 0x00, 0x5c, 0x00, 0x96, 0x00, 0xa8, 0x00,
+0xb2, 0x00, 0x98, 0x00, 0x64, 0x00, 0x20, 0x00, 0xea, 0xff, 0xb2, 0xff, 0x82, 0xff, 0x4a, 0xff,
+0x2e, 0xff, 0x2e, 0xff, 0x46, 0xff, 0x72, 0xff, 0xa8, 0xff, 0xf0, 0xff, 0x28, 0x00, 0x58, 0x00,
+0x8a, 0x00, 0xa4, 0x00, 0xa2, 0x00, 0x88, 0x00, 0x5e, 0x00, 0x20, 0x00, 0xec, 0xff, 0xb0, 0xff,
+0x82, 0xff, 0x62, 0xff, 0x42, 0xff, 0x4e, 0xff, 0x5e, 0xff, 0x86, 0xff, 0xc2, 0xff, 0xfc, 0xff,
+0x32, 0x00, 0x62, 0x00, 0x88, 0x00, 0x90, 0x00, 0x84, 0x00, 0x6a, 0x00, 0x4c, 0x00, 0x0c, 0x00,
+0xe6, 0xff, 0xb4, 0xff, 0x80, 0xff, 0x72, 0xff, 0x62, 0xff, 0x68, 0xff, 0x7a, 0xff, 0x9c, 0xff,
+0xd4, 0xff, 0x0a, 0x00, 0x34, 0x00, 0x52, 0x00, 0x5a, 0x00, 0x5e, 0x00, 0x66, 0x00, 0x52, 0x00,
+0x30, 0x00, 0x04, 0x00, 0xe4, 0xff, 0xb8, 0xff, 0xa0, 0xff, 0x98, 0xff, 0x92, 0xff, 0x9e, 0xff,
+0xa2, 0xff, 0xc0, 0xff, 0xf0, 0xff, 0x0c, 0x00, 0x28, 0x00, 0x3a, 0x00, 0x3c, 0x00, 0x4a, 0x00,
+0x44, 0x00, 0x32, 0x00, 0x20, 0x00, 0xfe, 0xff, 0xea, 0xff, 0xd2, 0xff, 0xbe, 0xff, 0xce, 0xff,
+0xbc, 0xff, 0xb2, 0xff, 0xc8, 0xff, 0xda, 0xff, 0xee, 0xff, 0xfc, 0xff, 0x06, 0x00, 0x1c, 0x00,
+0x14, 0x00, 0x1c, 0x00, 0x22, 0x00, 0x12, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf4, 0xff,
+0xea, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xd8, 0xff, 0xe2, 0xff, 0xe2, 0xff, 0xec, 0xff,
+0xf2, 0xff, 0xee, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x0c, 0x00, 0x0c, 0x00,
+0x08, 0x00, 0x08, 0x00, 0x02, 0x00, 0xfa, 0xff, 0xf0, 0xff, 0x02, 0x00, 0xec, 0xff, 0xda, 0xff,
+0xdc, 0xff, 0xd6, 0xff, 0xc0, 0xff, 0xca, 0xff, 0xd0, 0xff, 0xce, 0xff, 0xe8, 0xff, 0xf0, 0xff,
+0xfa, 0xff, 0x06, 0x00, 0x1a, 0x00, 0x1e, 0x00, 0x1c, 0x00, 0x12, 0x00, 0x0c, 0x00, 0x04, 0x00,
+0xf2, 0xff, 0xd2, 0xff, 0xba, 0xff, 0xaa, 0xff, 0x94, 0xff, 0xa0, 0xff, 0xb2, 0xff, 0xb2, 0xff,
+0xd0, 0xff, 0xf0, 0xff, 0x06, 0x00, 0x22, 0x00, 0x3c, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x30, 0x00,
+0x28, 0x00, 0x10, 0x00, 0xe2, 0xff, 0xcc, 0xff, 0xaa, 0xff, 0x82, 0xff, 0x74, 0xff, 0x82, 0xff,
+0x98, 0xff, 0xa4, 0xff, 0xc8, 0xff, 0xf8, 0xff, 0x1e, 0x00, 0x42, 0x00, 0x68, 0x00, 0x74, 0x00,
+0x64, 0x00, 0x50, 0x00, 0x3a, 0x00, 0x18, 0x00, 0xe8, 0xff, 0xba, 0xff, 0x8e, 0xff, 0x6c, 0xff,
+0x56, 0xff, 0x5e, 0xff, 0x82, 0xff, 0xa2, 0xff, 0xc8, 0xff, 0x00, 0x00, 0x2e, 0x00, 0x60, 0x00,
+0x80, 0x00, 0x88, 0x00, 0x8c, 0x00, 0x70, 0x00, 0x40, 0x00, 0x18, 0x00, 0xec, 0xff, 0xb2, 0xff,
+0x7e, 0xff, 0x54, 0xff, 0x4c, 0xff, 0x56, 0xff, 0x76, 0xff, 0xaa, 0xff, 0xd8, 0xff, 0x12, 0x00,
+0x46, 0x00, 0x74, 0x00, 0x9a, 0x00, 0xa4, 0x00, 0x94, 0x00, 0x7c, 0x00, 0x44, 0x00, 0x0e, 0x00,
+0xea, 0xff, 0x9e, 0xff, 0x60, 0xff, 0x52, 0xff, 0x3c, 0xff, 0x4e, 0xff, 0x72, 0xff, 0xaa, 0xff,
+0xea, 0xff, 0x14, 0x00, 0x5a, 0x00, 0x88, 0x00, 0xb0, 0x00, 0xb6, 0x00, 0x9a, 0x00, 0x7a, 0x00,
+0x38, 0x00, 0x00, 0x00, 0xce, 0xff, 0x7e, 0xff, 0x52, 0xff, 0x40, 0xff, 0x2e, 0xff, 0x46, 0xff,
+0x78, 0xff, 0xb8, 0xff, 0xf8, 0xff, 0x24, 0x00, 0x6c, 0x00, 0x98, 0x00, 0xb6, 0x00, 0xb4, 0x00,
+0x90, 0x00, 0x70, 0x00, 0x28, 0x00, 0xf6, 0xff, 0xbe, 0xff, 0x70, 0xff, 0x40, 0xff, 0x36, 0xff,
+0x2c, 0xff, 0x4e, 0xff, 0x84, 0xff, 0xbe, 0xff, 0x02, 0x00, 0x2a, 0x00, 0x70, 0x00, 0xa6, 0x00,
+0xa8, 0x00, 0x9e, 0x00, 0x94, 0x00, 0x58, 0x00, 0x12, 0x00, 0xe0, 0xff, 0xa4, 0xff, 0x6c, 0xff,
+0x3e, 0xff, 0x2c, 0xff, 0x3c, 0xff, 0x68, 0xff, 0x92, 0xff, 0xc8, 0xff, 0x00, 0x00, 0x3c, 0x00,
+0x6c, 0x00, 0x8a, 0x00, 0x88, 0x00, 0x78, 0x00, 0x64, 0x00, 0x2c, 0x00, 0xfc, 0xff, 0xce, 0xff,
+0x92, 0xff, 0x64, 0xff, 0x58, 0xff, 0x4c, 0xff, 0x6c, 0xff, 0x84, 0xff, 0xa8, 0xff, 0xe8, 0xff,
+0x06, 0x00, 0x38, 0x00, 0x5c, 0x00, 0x68, 0x00, 0x66, 0x00, 0x5a, 0x00, 0x4a, 0x00, 0x1c, 0x00,
+0xf2, 0xff, 0xca, 0xff, 0x9e, 0xff, 0x88, 0xff, 0x80, 0xff, 0x7e, 0xff, 0x88, 0xff, 0xa2, 0xff,
+0xc6, 0xff, 0xf0, 0xff, 0x0a, 0x00, 0x26, 0x00, 0x38, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x40, 0x00,
+0x30, 0x00, 0x04, 0x00, 0xee, 0xff, 0xcc, 0xff, 0xb4, 0xff, 0xaa, 0xff, 0xb0, 0xff, 0xa6, 0xff,
+0xac, 0xff, 0xb8, 0xff, 0xce, 0xff, 0xec, 0xff, 0xfa, 0xff, 0x1e, 0x00, 0x1e, 0x00, 0x22, 0x00,
+0x2e, 0x00, 0x26, 0x00, 0x14, 0x00, 0x02, 0x00, 0xfa, 0xff, 0xf6, 0xff, 0xe0, 0xff, 0xda, 0xff,
+0xda, 0xff, 0xc4, 0xff, 0xcc, 0xff, 0xd2, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xfa, 0xff, 0x00, 0x00,
+0x04, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x12, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x0a, 0x00,
+0x02, 0x00, 0xf6, 0xff, 0xf4, 0xff, 0xec, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xce, 0xff,
+0xda, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xe2, 0xff, 0xea, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x10, 0x00,
+0x1e, 0x00, 0x28, 0x00, 0x2a, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x0a, 0x00, 0xf6, 0xff, 0xf4, 0xff,
+0xd8, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xb4, 0xff, 0xc4, 0xff, 0xbe, 0xff, 0xca, 0xff, 0xea, 0xff,
+0x02, 0x00, 0x12, 0x00, 0x28, 0x00, 0x42, 0x00, 0x40, 0x00, 0x3c, 0x00, 0x32, 0x00, 0x20, 0x00,
+0x04, 0x00, 0xee, 0xff, 0xc8, 0xff, 0xa0, 0xff, 0x94, 0xff, 0x84, 0xff, 0x8c, 0xff, 0x9a, 0xff,
+0xa4, 0xff, 0xcc, 0xff, 0xee, 0xff, 0x0a, 0x00, 0x36, 0x00, 0x50, 0x00, 0x5e, 0x00, 0x54, 0x00,
+0x40, 0x00, 0x28, 0x00, 0x02, 0x00, 0xde, 0xff, 0xa8, 0xff, 0x90, 0xff, 0x6a, 0xff, 0x60, 0xff,
+0x6a, 0xff, 0x84, 0xff, 0x9e, 0xff, 0xd6, 0xff, 0x00, 0x00, 0x2c, 0x00, 0x60, 0x00, 0x70, 0x00,
+0x82, 0x00, 0x74, 0x00, 0x58, 0x00, 0x34, 0x00, 0xfa, 0xff, 0xc6, 0xff, 0x90, 0xff, 0x6a, 0xff,
+0x52, 0xff, 0x48, 0xff, 0x54, 0xff, 0x84, 0xff, 0xac, 0xff, 0xda, 0xff, 0x14, 0x00, 0x4c, 0x00,
+0x7c, 0x00, 0x94, 0x00, 0x90, 0x00, 0x86, 0x00, 0x56, 0x00, 0x1e, 0x00, 0xf2, 0xff, 0xb2, 0xff,
+0x7e, 0xff, 0x46, 0xff, 0x34, 0xff, 0x40, 0xff, 0x54, 0xff, 0x84, 0xff, 0xc0, 0xff, 0xf2, 0xff,
+0x2a, 0x00, 0x66, 0x00, 0x9c, 0x00, 0xba, 0x00, 0xb6, 0x00, 0x92, 0x00, 0x68, 0x00, 0x1a, 0x00,
+0xea, 0xff, 0xb8, 0xff, 0x6c, 0xff, 0x4e, 0xff, 0x36, 0xff, 0x38, 0xff, 0x62, 0xff, 0x8e, 0xff,
+0xd8, 0xff, 0x0a, 0x00, 0x4a, 0x00, 0x92, 0x00, 0xb2, 0x00, 0xd2, 0x00, 0xb8, 0x00, 0x90, 0x00,
+0x58, 0x00, 0x12, 0x00, 0xec, 0xff, 0xa2, 0xff, 0x5c, 0xff, 0x34, 0xff, 0x26, 0xff, 0x2e, 0xff,
+0x60, 0xff, 0x9c, 0xff, 0xe0, 0xff, 0x0e, 0x00, 0x52, 0x00, 0x8e, 0x00, 0xac, 0x00, 0xc2, 0x00,
+0xaa, 0x00, 0x88, 0x00, 0x42, 0x00, 0x00, 0x00, 0xd0, 0xff, 0x8e, 0xff, 0x5c, 0xff, 0x3e, 0xff,
+0x34, 0xff, 0x4a, 0xff, 0x6c, 0xff, 0xb4, 0xff, 0xec, 0xff, 0x28, 0x00, 0x60, 0x00, 0x8a, 0x00,
+0xae, 0x00, 0xae, 0x00, 0x9a, 0x00, 0x66, 0x00, 0x30, 0x00, 0xfc, 0xff, 0xb8, 0xff, 0x9a, 0xff,
+0x6a, 0xff, 0x46, 0xff, 0x44, 0xff, 0x5e, 0xff, 0x8a, 0xff, 0xc2, 0xff, 0xfe, 0xff, 0x2a, 0x00,
+0x56, 0x00, 0x72, 0x00, 0x80, 0x00, 0x82, 0x00, 0x68, 0x00, 0x4a, 0x00, 0x12, 0x00, 0xe0, 0xff,
+0xa8, 0xff, 0x7e, 0xff, 0x68, 0xff, 0x5a, 0xff, 0x6a, 0xff, 0x7c, 0xff, 0x9e, 0xff, 0xce, 0xff,
+0xf0, 0xff, 0x1e, 0x00, 0x50, 0x00, 0x62, 0x00, 0x6a, 0x00, 0x56, 0x00, 0x48, 0x00, 0x28, 0x00,
+0x04, 0x00, 0xe4, 0xff, 0xb6, 0xff, 0x9e, 0xff, 0x8e, 0xff, 0x84, 0xff, 0x90, 0xff, 0xa2, 0xff,
+0xbe, 0xff, 0xe8, 0xff, 0x04, 0x00, 0x1c, 0x00, 0x3c, 0x00, 0x40, 0x00, 0x38, 0x00, 0x32, 0x00,
+0x32, 0x00, 0x18, 0x00, 0xf0, 0xff, 0xe0, 0xff, 0xc2, 0xff, 0xae, 0xff, 0xac, 0xff, 0xae, 0xff,
+0xb2, 0xff, 0xb6, 0xff, 0xc6, 0xff, 0xdc, 0xff, 0xf4, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x10, 0x00,
+0x14, 0x00, 0x1c, 0x00, 0x08, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xf0, 0xff, 0xe6, 0xff, 0xdc, 0xff,
+0xe0, 0xff, 0xd4, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xe6, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xf4, 0xff,
+0xf4, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x10, 0x00, 0x0c, 0x00,
+0x0a, 0x00, 0x14, 0x00, 0x06, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfa, 0xff, 0xf2, 0xff, 0xe0, 0xff,
+0xd6, 0xff, 0xce, 0xff, 0xc4, 0xff, 0xd0, 0xff, 0xce, 0xff, 0xdc, 0xff, 0xee, 0xff, 0xfc, 0xff,
+0x08, 0x00, 0x1e, 0x00, 0x2e, 0x00, 0x26, 0x00, 0x22, 0x00, 0x1e, 0x00, 0x0e, 0x00, 0xfe, 0xff,
+0xe6, 0xff, 0xd0, 0xff, 0xb4, 0xff, 0xa0, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xda, 0xff,
+0xee, 0xff, 0x00, 0x00, 0x24, 0x00, 0x42, 0x00, 0x56, 0x00, 0x58, 0x00, 0x4e, 0x00, 0x40, 0x00,
+0x28, 0x00, 0x06, 0x00, 0xf0, 0xff, 0xc0, 0xff, 0x94, 0xff, 0x84, 0xff, 0x84, 0xff, 0x90, 0xff,
+0x9e, 0xff, 0xc4, 0xff, 0xf0, 0xff, 0x08, 0x00, 0x46, 0x00, 0x5a, 0x00, 0x64, 0x00, 0x70, 0x00,
+0x58, 0x00, 0x44, 0x00, 0x22, 0x00, 0xf4, 0xff, 0xc8, 0xff, 0x8c, 0xff, 0x6a, 0xff, 0x5a, 0xff,
+0x56, 0xff, 0x66, 0xff, 0x90, 0xff, 0xc8, 0xff, 0xe8, 0xff, 0x24, 0x00, 0x50, 0x00, 0x68, 0x00,
+0x80, 0x00, 0x80, 0x00, 0x72, 0x00, 0x42, 0x00, 0x1a, 0x00, 0xe4, 0xff, 0xae, 0xff, 0x80, 0xff,
+0x56, 0xff, 0x42, 0xff, 0x4c, 0xff, 0x62, 0xff, 0x96, 0xff, 0xce, 0xff, 0x04, 0x00, 0x38, 0x00,
+0x66, 0x00, 0x90, 0x00, 0x9c, 0x00, 0x94, 0x00, 0x80, 0x00, 0x3e, 0x00, 0x0e, 0x00, 0xce, 0xff,
+0x94, 0xff, 0x6c, 0xff, 0x3e, 0xff, 0x2e, 0xff, 0x3a, 0xff, 0x56, 0xff, 0x92, 0xff, 0xda, 0xff,
+0x10, 0x00, 0x3c, 0x00, 0x70, 0x00, 0x92, 0x00, 0xa6, 0x00, 0x8e, 0x00, 0x6c, 0x00, 0x34, 0x00,
+0xf6, 0xff, 0xca, 0xff, 0x8c, 0xff, 0x58, 0xff, 0x30, 0xff, 0x20, 0xff, 0x3a, 0xff, 0x74, 0xff,
+0xa8, 0xff, 0xec, 0xff, 0x1e, 0x00, 0x50, 0x00, 0x88, 0x00, 0xa4, 0x00, 0xb0, 0x00, 0xa8, 0x00,
+0x6a, 0x00, 0x32, 0x00, 0xfa, 0xff, 0xc4, 0xff, 0x86, 0xff, 0x58, 0xff, 0x3c, 0xff, 0x3a, 0xff,
+0x50, 0xff, 0x7a, 0xff, 0xb8, 0xff, 0xf4, 0xff, 0x30, 0x00, 0x60, 0x00, 0x94, 0x00, 0xa4, 0x00,
+0xa4, 0x00, 0x90, 0x00, 0x5e, 0x00, 0x24, 0x00, 0xf2, 0xff, 0xba, 0xff, 0x80, 0xff, 0x54, 0xff,
+0x34, 0xff, 0x3e, 0xff, 0x54, 0xff, 0x86, 0xff, 0xbc, 0xff, 0xfa, 0xff, 0x28, 0x00, 0x60, 0x00,
+0x8a, 0x00, 0x9a, 0x00, 0x98, 0x00, 0x72, 0x00, 0x54, 0x00, 0x1e, 0x00, 0xde, 0xff, 0xb0, 0xff,
+0x7c, 0xff, 0x6a, 0xff, 0x54, 0xff, 0x5c, 0xff, 0x7c, 0xff, 0x9c, 0xff, 0xda, 0xff, 0x04, 0x00,
+0x3e, 0x00, 0x5a, 0x00, 0x74, 0x00, 0x88, 0x00, 0x70, 0x00, 0x58, 0x00, 0x32, 0x00, 0x06, 0x00,
+0xde, 0xff, 0xb0, 0xff, 0x9a, 0xff, 0x8e, 0xff, 0x7e, 0xff, 0x80, 0xff, 0x92, 0xff, 0xb8, 0xff,
+0xdc, 0xff, 0xfe, 0xff, 0x26, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x40, 0x00, 0x40, 0x00, 0x34, 0x00,
+0x0e, 0x00, 0xee, 0xff, 0xda, 0xff, 0xba, 0xff, 0xaa, 0xff, 0xa6, 0xff, 0xa0, 0xff, 0xa6, 0xff,
+0xba, 0xff, 0xce, 0xff, 0xee, 0xff, 0x04, 0x00, 0x16, 0x00, 0x22, 0x00, 0x26, 0x00, 0x26, 0x00,
+0x24, 0x00, 0x10, 0x00, 0xfa, 0xff, 0xf6, 0xff, 0xe2, 0xff, 0xe2, 0xff, 0xc8, 0xff, 0xd2, 0xff,
+0xd0, 0xff, 0xd2, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfc, 0xff,
+0xf8, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xf8, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xec, 0xff,
+0xf4, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xe4, 0xff, 0xe8, 0xff, 0xe4, 0xff, 0xdc, 0xff, 0xdc, 0xff,
+0xe4, 0xff, 0xde, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0x0c, 0x00,
+0x16, 0x00, 0x0e, 0x00, 0x18, 0x00, 0x0e, 0x00, 0x12, 0x00, 0x04, 0x00, 0x02, 0x00, 0xf2, 0xff,
+0xd4, 0xff, 0xc8, 0xff, 0xba, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xd8, 0xff, 0xe4, 0xff, 0xf0, 0xff,
+0x08, 0x00, 0x12, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x3a, 0x00, 0x1a, 0x00, 0x10, 0x00,
+0xf8, 0xff, 0xd4, 0xff, 0xc2, 0xff, 0xa0, 0xff, 0x90, 0xff, 0xa0, 0xff, 0xa6, 0xff, 0xb4, 0xff,
+0xcc, 0xff, 0xf6, 0xff, 0x18, 0x00, 0x40, 0x00, 0x52, 0x00, 0x54, 0x00, 0x52, 0x00, 0x46, 0x00,
+0x3e, 0x00, 0x12, 0x00, 0xf4, 0xff, 0xc8, 0xff, 0x90, 0xff, 0x88, 0xff, 0x76, 0xff, 0x76, 0xff,
+0x9a, 0xff, 0xa2, 0xff, 0xd4, 0xff, 0xfe, 0xff, 0x28, 0x00, 0x52, 0x00, 0x6e, 0x00, 0x76, 0x00,
+0x7c, 0x00, 0x62, 0x00, 0x3c, 0x00, 0x10, 0x00, 0xdc, 0xff, 0xac, 0xff, 0x78, 0xff, 0x52, 0xff,
+0x44, 0xff, 0x56, 0xff, 0x74, 0xff, 0x9e, 0xff, 0xd6, 0xff, 0x06, 0x00, 0x3c, 0x00, 0x72, 0x00,
+0x86, 0x00, 0x9a, 0x00, 0x80, 0x00, 0x70, 0x00, 0x30, 0x00, 0xfc, 0xff, 0xcc, 0xff, 0x88, 0xff,
+0x56, 0xff, 0x34, 0xff, 0x2e, 0xff, 0x3a, 0xff, 0x7a, 0xff, 0xac, 0xff, 0xe4, 0xff, 0x1e, 0x00,
+0x5a, 0x00, 0x92, 0x00, 0xa2, 0x00, 0xac, 0x00, 0x90, 0x00, 0x60, 0x00, 0x2c, 0x00, 0xf0, 0xff,
+0xc2, 0xff, 0x7a, 0xff, 0x40, 0xff, 0x32, 0xff, 0x2c, 0xff, 0x4c, 0xff, 0x8a, 0xff, 0xca, 0xff,
+0xf8, 0xff, 0x2a, 0x00, 0x70, 0x00, 0x9a, 0x00, 0xb6, 0x00, 0xa6, 0x00, 0x8a, 0x00, 0x52, 0x00,
+0x08, 0x00, 0xde, 0xff, 0xaa, 0xff, 0x5c, 0xff, 0x42, 0xff, 0x28, 0xff, 0x3c, 0xff, 0x56, 0xff,
+0x8c, 0xff, 0xd8, 0xff, 0x06, 0x00, 0x3e, 0x00, 0x72, 0x00, 0x9e, 0x00, 0xac, 0x00, 0x96, 0x00,
+0x7a, 0x00, 0x40, 0x00, 0x00, 0x00, 0xd8, 0xff, 0x9c, 0xff, 0x66, 0xff, 0x3e, 0xff, 0x44, 0xff,
+0x5a, 0xff, 0x72, 0xff, 0xb2, 0xff, 0xea, 0xff, 0x1a, 0x00, 0x4a, 0x00, 0x7c, 0x00, 0x96, 0x00,
+0x9e, 0x00, 0x96, 0x00, 0x6a, 0x00, 0x32, 0x00, 0x00, 0x00, 0xca, 0xff, 0x9a, 0xff, 0x70, 0xff,
+0x54, 0xff, 0x56, 0xff, 0x62, 0xff, 0x88, 0xff, 0xbc, 0xff, 0xf0, 0xff, 0x1c, 0x00, 0x46, 0x00,
+0x64, 0x00, 0x80, 0x00, 0x88, 0x00, 0x72, 0x00, 0x4e, 0x00, 0x1c, 0x00, 0xea, 0xff, 0xb0, 0xff,
+0x96, 0xff, 0x80, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x82, 0xff, 0xa6, 0xff, 0xd0, 0xff, 0xf6, 0xff,
+0x26, 0x00, 0x4c, 0x00, 0x54, 0x00, 0x68, 0x00, 0x64, 0x00, 0x4e, 0x00, 0x30, 0x00, 0x08, 0x00,
+0xe4, 0xff, 0xb8, 0xff, 0xa0, 0xff, 0x92, 0xff, 0x86, 0xff, 0x8a, 0xff, 0xa2, 0xff, 0xc6, 0xff,
+0xe4, 0xff, 0xfe, 0xff, 0x16, 0x00, 0x36, 0x00, 0x3e, 0x00, 0x42, 0x00, 0x46, 0x00, 0x36, 0x00,
+0x14, 0x00, 0xf2, 0xff, 0xe0, 0xff, 0xca, 0xff, 0xb4, 0xff, 0xb2, 0xff, 0xb0, 0xff, 0xae, 0xff,
+0xbe, 0xff, 0xd2, 0xff, 0xda, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x10, 0x00, 0x0e, 0x00, 0x16, 0x00,
+0x20, 0x00, 0x14, 0x00, 0x0e, 0x00, 0xf4, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xdc, 0xff, 0xda, 0xff,
+0xec, 0xff, 0xdc, 0xff, 0xd2, 0xff, 0xde, 0xff, 0xe8, 0xff, 0xe0, 0xff, 0xe8, 0xff, 0xf2, 0xff,
+0xea, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xfa, 0xff, 0x02, 0x00, 0x06, 0x00, 0x06, 0x00,
+0x10, 0x00, 0x00, 0x00, 0x06, 0x00, 0x06, 0x00, 0xf4, 0xff, 0xee, 0xff, 0xd4, 0xff, 0xcc, 0xff,
+0xb4, 0xff, 0xc4, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xd2, 0xff, 0xe8, 0xff, 0xf6, 0xff, 0x06, 0x00,
+0x18, 0x00, 0x26, 0x00, 0x30, 0x00, 0x26, 0x00, 0x1c, 0x00, 0x0c, 0x00, 0xf8, 0xff, 0xe2, 0xff,
+0xc8, 0xff, 0xa6, 0xff, 0xa6, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xbc, 0xff, 0xca, 0xff, 0xea, 0xff,
+0x02, 0x00, 0x24, 0x00, 0x44, 0x00, 0x50, 0x00, 0x60, 0x00, 0x48, 0x00, 0x3a, 0x00, 0x26, 0x00,
+0x06, 0x00, 0xe2, 0xff, 0xb4, 0xff, 0x94, 0xff, 0x8c, 0xff, 0x8a, 0xff, 0x7e, 0xff, 0xa0, 0xff,
+0xbc, 0xff, 0xe8, 0xff, 0x08, 0x00, 0x40, 0x00, 0x6e, 0x00, 0x6e, 0x00, 0x7a, 0x00, 0x64, 0x00,
+0x48, 0x00, 0x30, 0x00, 0xfa, 0xff, 0xca, 0xff, 0x94, 0xff, 0x6e, 0xff, 0x64, 0xff, 0x5c, 0xff,
+0x74, 0xff, 0x8e, 0xff, 0xc2, 0xff, 0xf2, 0xff, 0x20, 0x00, 0x64, 0x00, 0x8a, 0x00, 0x9e, 0x00,
+0x9a, 0x00, 0x7e, 0x00, 0x50, 0x00, 0x1e, 0x00, 0xf6, 0xff, 0xac, 0xff, 0x72, 0xff, 0x5c, 0xff,
+0x44, 0xff, 0x42, 0xff, 0x60, 0xff, 0x92, 0xff, 0xd2, 0xff, 0x02, 0x00, 0x38, 0x00, 0x80, 0x00,
+0x9c, 0x00, 0xb6, 0x00, 0xa4, 0x00, 0x80, 0x00, 0x52, 0x00, 0x0a, 0x00, 0xd6, 0xff, 0xa0, 0xff,
+0x62, 0xff, 0x48, 0xff, 0x2c, 0xff, 0x34, 0xff, 0x5a, 0xff, 0x82, 0xff, 0xda, 0xff, 0x04, 0x00,
+0x3e, 0x00, 0x82, 0x00, 0x9a, 0x00, 0xb2, 0x00, 0xa0, 0x00, 0x74, 0x00, 0x42, 0x00, 0x10, 0x00,
+0xe0, 0xff, 0x92, 0xff, 0x62, 0xff, 0x40, 0xff, 0x30, 0xff, 0x38, 0xff, 0x5e, 0xff, 0xa2, 0xff,
+0xe0, 0xff, 0x0c, 0x00, 0x4a, 0x00, 0x82, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0x98, 0x00, 0x7c, 0x00,
+0x32, 0x00, 0x02, 0x00, 0xd0, 0xff, 0x94, 0xff, 0x5a, 0xff, 0x3c, 0xff, 0x34, 0xff, 0x4c, 0xff,
+0x74, 0xff, 0xb0, 0xff, 0xf2, 0xff, 0x1e, 0x00, 0x5a, 0x00, 0x7e, 0x00, 0x9e, 0x00, 0x9c, 0x00,
+0x86, 0x00, 0x62, 0x00, 0x1c, 0x00, 0xec, 0xff, 0xb2, 0xff, 0x8a, 0xff, 0x58, 0xff, 0x44, 0xff,
+0x4c, 0xff, 0x56, 0xff, 0x90, 0xff, 0xca, 0xff, 0x02, 0x00, 0x34, 0x00, 0x60, 0x00, 0x84, 0x00,
+0x90, 0x00, 0x82, 0x00, 0x6e, 0x00, 0x4a, 0x00, 0x10, 0x00, 0xdc, 0xff, 0xba, 0xff, 0x8e, 0xff,
+0x6e, 0xff, 0x64, 0xff, 0x6c, 0xff, 0x8a, 0xff, 0xa8, 0xff, 0xe8, 0xff, 0x14, 0x00, 0x2c, 0x00,
+0x52, 0x00, 0x58, 0x00, 0x70, 0x00, 0x66, 0x00, 0x50, 0x00, 0x2c, 0x00, 0xfe, 0xff, 0xe6, 0xff,
+0xb0, 0xff, 0x9e, 0xff, 0x84, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0xa2, 0xff, 0xc2, 0xff, 0xec, 0xff,
+0x0c, 0x00, 0x20, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x42, 0x00, 0x44, 0x00, 0x32, 0x00, 0x1a, 0x00,
+0xf0, 0xff, 0xe6, 0xff, 0xce, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xac, 0xff, 0xb0, 0xff, 0xba, 0xff,
+0xd8, 0xff, 0xec, 0xff, 0x02, 0x00, 0x10, 0x00, 0x24, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x20, 0x00,
+0x16, 0x00, 0x08, 0x00, 0x02, 0x00, 0xf0, 0xff, 0xdc, 0xff, 0xd6, 0xff, 0xc8, 0xff, 0xd0, 0xff,
+0xd8, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xec, 0xff, 0xfc, 0xff, 0xf2, 0xff, 0xfc, 0xff,
+0xfe, 0xff, 0xfc, 0xff, 0x08, 0x00, 0xfc, 0xff, 0x06, 0x00, 0x02, 0x00, 0xf0, 0xff, 0xf2, 0xff,
+0xec, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xdc, 0xff, 0xdc, 0xff, 0xd6, 0xff, 0xd4, 0xff, 0xd0, 0xff,
+0xd2, 0xff, 0xe0, 0xff, 0xe8, 0xff, 0xee, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x0a, 0x00,
+0x1e, 0x00, 0x1c, 0x00, 0x10, 0x00, 0x0a, 0x00, 0xf4, 0xff, 0xf6, 0xff, 0xe4, 0xff, 0xd0, 0xff,
+0xbe, 0xff, 0xac, 0xff, 0xbc, 0xff, 0xca, 0xff, 0xca, 0xff, 0xde, 0xff, 0xf2, 0xff, 0x08, 0x00,
+0x1a, 0x00, 0x28, 0x00, 0x30, 0x00, 0x3a, 0x00, 0x2a, 0x00, 0x24, 0x00, 0x0a, 0x00, 0xf2, 0xff,
+0xe2, 0xff, 0xb2, 0xff, 0x9a, 0xff, 0x92, 0xff, 0x94, 0xff, 0xa4, 0xff, 0xb0, 0xff, 0xd4, 0xff,
+0xf4, 0xff, 0x10, 0x00, 0x36, 0x00, 0x4c, 0x00, 0x56, 0x00, 0x5c, 0x00, 0x50, 0x00, 0x3e, 0x00,
+0x1c, 0x00, 0xf2, 0xff, 0xc4, 0xff, 0xa2, 0xff, 0x8c, 0xff, 0x76, 0xff, 0x7a, 0xff, 0x8e, 0xff,
+0xa0, 0xff, 0xd0, 0xff, 0xfe, 0xff, 0x2a, 0x00, 0x58, 0x00, 0x6a, 0x00, 0x8c, 0x00, 0x7e, 0x00,
+0x70, 0x00, 0x52, 0x00, 0x18, 0x00, 0xf2, 0xff, 0xb2, 0xff, 0x7e, 0xff, 0x64, 0xff, 0x54, 0xff,
+0x54, 0xff, 0x70, 0xff, 0x92, 0xff, 0xc8, 0xff, 0x06, 0x00, 0x3e, 0x00, 0x72, 0x00, 0x8e, 0x00,
+0xa8, 0x00, 0xa0, 0x00, 0x7c, 0x00, 0x48, 0x00, 0x10, 0x00, 0xd6, 0xff, 0x96, 0xff, 0x5e, 0xff,
+0x42, 0xff, 0x34, 0xff, 0x3e, 0xff, 0x68, 0xff, 0xa6, 0xff, 0xdc, 0xff, 0x10, 0x00, 0x60, 0x00,
+0x90, 0x00, 0xa8, 0x00, 0xc4, 0x00, 0xa6, 0x00, 0x78, 0x00, 0x30, 0x00, 0xf2, 0xff, 0xc4, 0xff,
+0x78, 0xff, 0x44, 0xff, 0x24, 0xff, 0x28, 0xff, 0x48, 0xff, 0x70, 0xff, 0xba, 0xff, 0xf8, 0xff,
+0x1e, 0x00, 0x60, 0x00, 0x9c, 0x00, 0xb6, 0x00, 0xb8, 0x00, 0x9c, 0x00, 0x5e, 0x00, 0x1c, 0x00,
+0xe0, 0xff, 0xac, 0xff, 0x60, 0xff, 0x38, 0xff, 0x22, 0xff, 0x22, 0xff, 0x48, 0xff, 0x6e, 0xff,
+0xb6, 0xff, 0xf6, 0xff, 0x2e, 0x00, 0x70, 0x00, 0x9a, 0x00, 0xae, 0x00, 0xac, 0x00, 0x88, 0x00,
+0x58, 0x00, 0x1c, 0x00, 0xd8, 0xff, 0x9c, 0xff, 0x60, 0xff, 0x3e, 0xff, 0x2a, 0xff, 0x3a, 0xff,
+0x52, 0xff, 0x84, 0xff, 0xc4, 0xff, 0x0a, 0x00, 0x3a, 0x00, 0x74, 0x00, 0x9a, 0x00, 0xa6, 0x00,
+0xa4, 0x00, 0x76, 0x00, 0x48, 0x00, 0x0a, 0x00, 0xd0, 0xff, 0x8c, 0xff, 0x60, 0xff, 0x44, 0xff,
+0x34, 0xff, 0x4c, 0xff, 0x62, 0xff, 0x94, 0xff, 0xd8, 0xff, 0x0c, 0x00, 0x42, 0x00, 0x7c, 0x00,
+0x8c, 0x00, 0x94, 0x00, 0x82, 0x00, 0x5c, 0x00, 0x32, 0x00, 0xfa, 0xff, 0xc8, 0xff, 0x9a, 0xff,
+0x84, 0xff, 0x64, 0xff, 0x62, 0xff, 0x6a, 0xff, 0x8c, 0xff, 0xbe, 0xff, 0xec, 0xff, 0x12, 0x00,
+0x42, 0x00, 0x62, 0x00, 0x6c, 0x00, 0x72, 0x00, 0x70, 0x00, 0x4a, 0x00, 0x24, 0x00, 0xfa, 0xff,
+0xd8, 0xff, 0xba, 0xff, 0xae, 0xff, 0xa2, 0xff, 0x94, 0xff, 0xa4, 0xff, 0xb0, 0xff, 0xd6, 0xff,
+0xf2, 0xff, 0x0c, 0x00, 0x28, 0x00, 0x34, 0x00, 0x42, 0x00, 0x40, 0x00, 0x38, 0x00, 0x1e, 0x00,
+0x0e, 0x00, 0xee, 0xff, 0xe2, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xc4, 0xff, 0xb6, 0xff, 0xbc, 0xff,
+0xc4, 0xff, 0xf2, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0x0c, 0x00, 0x04, 0x00, 0x10, 0x00, 0x1a, 0x00,
+0x16, 0x00, 0x08, 0x00, 0x04, 0x00, 0xfa, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xe8, 0xff,
+0xda, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe2, 0xff, 0xe8, 0xff,
+0xe2, 0xff, 0xf2, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0x08, 0x00, 0x10, 0x00, 0x10, 0x00, 0x14, 0x00,
+0x06, 0x00, 0xfc, 0xff, 0xe8, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xca, 0xff, 0xb8, 0xff, 0xae, 0xff,
+0xb4, 0xff, 0xba, 0xff, 0xba, 0xff, 0xc8, 0xff, 0xe0, 0xff, 0xfa, 0xff, 0x0a, 0x00, 0x1e, 0x00,
+0x30, 0x00, 0x30, 0x00, 0x24, 0x00, 0x28, 0x00, 0x0e, 0x00, 0xf0, 0xff, 0xe0, 0xff, 0xc0, 0xff,
+0xae, 0xff, 0x96, 0xff, 0x98, 0xff, 0xa2, 0xff, 0xa6, 0xff, 0xc2, 0xff, 0xe4, 0xff, 0x00, 0x00,
+0x1e, 0x00, 0x42, 0x00, 0x50, 0x00, 0x5e, 0x00, 0x3c, 0x00, 0x34, 0x00, 0x26, 0x00, 0xf6, 0xff,
+0xe4, 0xff, 0xae, 0xff, 0x8e, 0xff, 0x74, 0xff, 0x70, 0xff, 0x76, 0xff, 0x88, 0xff, 0xaa, 0xff,
+0xd2, 0xff, 0x04, 0x00, 0x34, 0x00, 0x62, 0x00, 0x72, 0x00, 0x70, 0x00, 0x6a, 0x00, 0x58, 0x00,
+0x38, 0x00, 0xfe, 0xff, 0xd2, 0xff, 0x9c, 0xff, 0x6a, 0xff, 0x5a, 0xff, 0x50, 0xff, 0x5c, 0xff,
+0x7c, 0xff, 0xb2, 0xff, 0xe0, 0xff, 0x1a, 0x00, 0x5e, 0x00, 0x8a, 0x00, 0xa2, 0x00, 0x9c, 0x00,
+0x90, 0x00, 0x6a, 0x00, 0x3e, 0x00, 0xfe, 0xff, 0xca, 0xff, 0x8e, 0xff, 0x5c, 0xff, 0x46, 0xff,
+0x3c, 0xff, 0x52, 0xff, 0x7e, 0xff, 0xba, 0xff, 0xfa, 0xff, 0x32, 0x00, 0x64, 0x00, 0x9e, 0x00,
+0xaa, 0x00, 0xac, 0x00, 0x8c, 0x00, 0x5a, 0x00, 0x1c, 0x00, 0xe6, 0xff, 0xb8, 0xff, 0x76, 0xff,
+0x48, 0xff, 0x22, 0xff, 0x38, 0xff, 0x58, 0xff, 0x8a, 0xff, 0xcc, 0xff, 0xfa, 0xff, 0x40, 0x00,
+0x7e, 0x00, 0x9e, 0x00, 0xae, 0x00, 0xa8, 0x00, 0x8c, 0x00, 0x52, 0x00, 0x0c, 0x00, 0xd8, 0xff,
+0xa6, 0xff, 0x6c, 0xff, 0x34, 0xff, 0x2a, 0xff, 0x3c, 0xff, 0x60, 0xff, 0x9a, 0xff, 0xe2, 0xff,
+0x0e, 0x00, 0x4c, 0x00, 0x80, 0x00, 0x9c, 0x00, 0xae, 0x00, 0xa2, 0x00, 0x82, 0x00, 0x42, 0x00,
+0x00, 0x00, 0xc0, 0xff, 0x92, 0xff, 0x5c, 0xff, 0x2c, 0xff, 0x2c, 0xff, 0x3e, 0xff, 0x62, 0xff,
+0xa2, 0xff, 0xe0, 0xff, 0x12, 0x00, 0x44, 0x00, 0x78, 0x00, 0x8c, 0x00, 0x96, 0x00, 0x82, 0x00,
+0x64, 0x00, 0x2e, 0x00, 0xea, 0xff, 0xae, 0xff, 0x7e, 0xff, 0x5a, 0xff, 0x38, 0xff, 0x3a, 0xff,
+0x56, 0xff, 0x7e, 0xff, 0xb6, 0xff, 0xf4, 0xff, 0x28, 0x00, 0x58, 0x00, 0x7c, 0x00, 0x86, 0x00,
+0x84, 0x00, 0x70, 0x00, 0x4a, 0x00, 0x14, 0x00, 0xee, 0xff, 0xae, 0xff, 0x7e, 0xff, 0x62, 0xff,
+0x56, 0xff, 0x5a, 0xff, 0x7e, 0xff, 0x9a, 0xff, 0xc6, 0xff, 0x00, 0x00, 0x2e, 0x00, 0x50, 0x00,
+0x5e, 0x00, 0x70, 0x00, 0x66, 0x00, 0x52, 0x00, 0x32, 0x00, 0x04, 0x00, 0xe2, 0xff, 0xaa, 0xff,
+0x8c, 0xff, 0x7e, 0xff, 0x76, 0xff, 0x80, 0xff, 0x90, 0xff, 0xb8, 0xff, 0xe2, 0xff, 0x00, 0x00,
+0x14, 0x00, 0x38, 0x00, 0x50, 0x00, 0x4c, 0x00, 0x50, 0x00, 0x42, 0x00, 0x22, 0x00, 0x06, 0x00,
+0xea, 0xff, 0xce, 0xff, 0xba, 0xff, 0xb6, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xc0, 0xff, 0xda, 0xff,
+0xf0, 0xff, 0x00, 0x00, 0x10, 0x00, 0x26, 0x00, 0x24, 0x00, 0x2e, 0x00, 0x38, 0x00, 0x22, 0x00,
+0x12, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xe4, 0xff, 0xd2, 0xff, 0xdc, 0xff, 0xc8, 0xff, 0xd6, 0xff,
+0xd6, 0xff, 0xde, 0xff, 0xe2, 0xff, 0xf0, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x00, 0x00,
+0x10, 0x00, 0x06, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfa, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xf8, 0xff,
+0xfa, 0xff, 0xfa, 0xff, 0xec, 0xff, 0xee, 0xff, 0xea, 0xff, 0xda, 0xff, 0xda, 0xff, 0xde, 0xff,
+0xde, 0xff, 0xe4, 0xff, 0xf0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x1c, 0x00, 0x1e, 0x00,
+0x26, 0x00, 0x1a, 0x00, 0x14, 0x00, 0x08, 0x00, 0xf8, 0xff, 0xe0, 0xff, 0xcc, 0xff, 0xb4, 0xff,
+0xaa, 0xff, 0xb0, 0xff, 0xbc, 0xff, 0xbe, 0xff, 0xd4, 0xff, 0xe4, 0xff, 0xf8, 0xff, 0x18, 0x00,
+0x30, 0x00, 0x40, 0x00, 0x3c, 0x00, 0x36, 0x00, 0x24, 0x00, 0x0a, 0x00, 0xf0, 0xff, 0xd6, 0xff,
+0xb2, 0xff, 0x94, 0xff, 0x84, 0xff, 0x8c, 0xff, 0xa2, 0xff, 0xa6, 0xff, 0xc4, 0xff, 0xf0, 0xff,
+0x06, 0x00, 0x34, 0x00, 0x54, 0x00, 0x54, 0x00, 0x66, 0x00, 0x52, 0x00, 0x3a, 0x00, 0x1a, 0x00,
+0xe6, 0xff, 0xc8, 0xff, 0xa6, 0xff, 0x82, 0xff, 0x68, 0xff, 0x68, 0xff, 0x7c, 0xff, 0x9c, 0xff,
+0xc0, 0xff, 0xf0, 0xff, 0x20, 0x00, 0x4a, 0x00, 0x66, 0x00, 0x80, 0x00, 0x7c, 0x00, 0x6e, 0x00,
+0x46, 0x00, 0x10, 0x00, 0xe0, 0xff, 0xa8, 0xff, 0x7e, 0xff, 0x5a, 0xff, 0x42, 0xff, 0x3c, 0xff,
+0x62, 0xff, 0x90, 0xff, 0xc8, 0xff, 0x00, 0x00, 0x32, 0x00, 0x66, 0x00, 0x8c, 0x00, 0xa2, 0x00,
+0xa2, 0x00, 0x8c, 0x00, 0x44, 0x00, 0x12, 0x00, 0xd6, 0xff, 0xa8, 0xff, 0x70, 0xff, 0x48, 0xff,
+0x40, 0xff, 0x3a, 0xff, 0x6a, 0xff, 0x98, 0xff, 0xda, 0xff, 0x0c, 0x00, 0x46, 0x00, 0x82, 0x00,
+0xac, 0x00, 0xba, 0x00, 0xb0, 0x00, 0x8e, 0x00, 0x40, 0x00, 0x08, 0x00, 0xd2, 0xff, 0x8e, 0xff,
+0x64, 0xff, 0x34, 0xff, 0x22, 0xff, 0x36, 0xff, 0x5c, 0xff, 0xa4, 0xff, 0xdc, 0xff, 0x1c, 0x00,
+0x5a, 0x00, 0x8c, 0x00, 0xb8, 0x00, 0xc8, 0x00, 0xb0, 0x00, 0x78, 0x00, 0x44, 0x00, 0xf6, 0xff,
+0xcc, 0xff, 0x82, 0xff, 0x46, 0xff, 0x32, 0xff, 0x28, 0xff, 0x3c, 0xff, 0x6c, 0xff, 0xb6, 0xff,
+0xec, 0xff, 0x2a, 0x00, 0x6c, 0x00, 0x9c, 0x00, 0xbe, 0x00, 0xb8, 0x00, 0xa0, 0x00, 0x74, 0x00,
+0x2a, 0x00, 0xf2, 0xff, 0xbc, 0xff, 0x7c, 0xff, 0x4a, 0xff, 0x2e, 0xff, 0x42, 0xff, 0x50, 0xff,
+0x78, 0xff, 0xbe, 0xff, 0xf8, 0xff, 0x2a, 0x00, 0x68, 0x00, 0x96, 0x00, 0x9e, 0x00, 0xa0, 0x00,
+0x78, 0x00, 0x4e, 0x00, 0x10, 0x00, 0xd8, 0xff, 0xa4, 0xff, 0x6c, 0xff, 0x48, 0xff, 0x3c, 0xff,
+0x4a, 0xff, 0x6c, 0xff, 0x92, 0xff, 0xbe, 0xff, 0x0a, 0x00, 0x44, 0x00, 0x6a, 0x00, 0x80, 0x00,
+0x88, 0x00, 0x80, 0x00, 0x60, 0x00, 0x36, 0x00, 0x02, 0x00, 0xd0, 0xff, 0x9c, 0xff, 0x84, 0xff,
+0x6c, 0xff, 0x60, 0xff, 0x76, 0xff, 0x8e, 0xff, 0xb8, 0xff, 0xea, 0xff, 0x0e, 0x00, 0x42, 0x00,
+0x5a, 0x00, 0x68, 0x00, 0x5a, 0x00, 0x58, 0x00, 0x3c, 0x00, 0x14, 0x00, 0xf2, 0xff, 0xc6, 0xff,
+0xac, 0xff, 0x98, 0xff, 0x94, 0xff, 0x94, 0xff, 0x9e, 0xff, 0xac, 0xff, 0xd0, 0xff, 0xee, 0xff,
+0x02, 0x00, 0x2a, 0x00, 0x32, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x1a, 0x00, 0x04, 0x00,
+0xf2, 0xff, 0xd8, 0xff, 0xc6, 0xff, 0xbe, 0xff, 0xc0, 0xff, 0xbc, 0xff, 0xc0, 0xff, 0xca, 0xff,
+0xe2, 0xff, 0xfa, 0xff, 0x0a, 0x00, 0x10, 0x00, 0x14, 0x00, 0x12, 0x00, 0x18, 0x00, 0x10, 0x00,
+0x12, 0x00, 0x06, 0x00, 0xfa, 0xff, 0xf8, 0xff, 0xf0, 0xff, 0xee, 0xff, 0xee, 0xff, 0xe6, 0xff,
+0xe6, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xe8, 0xff,
+0xea, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x06, 0x00, 0x10, 0x00, 0x10, 0x00, 0x04, 0x00,
+0x06, 0x00, 0xfc, 0xff, 0xfa, 0xff, 0xf0, 0xff, 0xdc, 0xff, 0xcc, 0xff, 0xc4, 0xff, 0xba, 0xff,
+0xbc, 0xff, 0xbe, 0xff, 0xde, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0x0a, 0x00, 0x24, 0x00, 0x36, 0x00,
+0x40, 0x00, 0x34, 0x00, 0x26, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xf4, 0xff, 0xda, 0xff, 0xae, 0xff,
+0x9e, 0xff, 0xa0, 0xff, 0xa2, 0xff, 0xac, 0xff, 0xb4, 0xff, 0xdc, 0xff, 0xfc, 0xff, 0x12, 0x00,
+0x3a, 0x00, 0x4c, 0x00, 0x50, 0x00, 0x4a, 0x00, 0x3e, 0x00, 0x28, 0x00, 0x08, 0x00, 0xec, 0xff,
+0xba, 0xff, 0x92, 0xff, 0x82, 0xff, 0x72, 0xff, 0x6a, 0xff, 0x84, 0xff, 0xa0, 0xff, 0xcc, 0xff,
+0xfc, 0xff, 0x1c, 0x00, 0x48, 0x00, 0x5e, 0x00, 0x7c, 0x00, 0x6e, 0x00, 0x54, 0x00, 0x36, 0x00,
+0x0a, 0x00, 0xec, 0xff, 0xb2, 0xff, 0x82, 0xff, 0x66, 0xff, 0x5a, 0xff, 0x56, 0xff, 0x7e, 0xff,
+0xa2, 0xff, 0xd4, 0xff, 0x18, 0x00, 0x3c, 0x00, 0x6a, 0x00, 0x7e, 0x00, 0x8e, 0x00, 0x8a, 0x00,
+0x74, 0x00, 0x42, 0x00, 0x0c, 0x00, 0xd4, 0xff, 0x96, 0xff, 0x5e, 0xff, 0x42, 0xff, 0x3e, 0xff,
+0x4c, 0xff, 0x7a, 0xff, 0xac, 0xff, 0xe4, 0xff, 0x16, 0x00, 0x50, 0x00, 0x84, 0x00, 0x9a, 0x00,
+0xa6, 0x00, 0x9e, 0x00, 0x62, 0x00, 0x2e, 0x00, 0xfc, 0xff, 0xb8, 0xff, 0x88, 0xff, 0x4a, 0xff,
+0x2c, 0xff, 0x38, 0xff, 0x54, 0xff, 0x82, 0xff, 0xc2, 0xff, 0xf6, 0xff, 0x32, 0x00, 0x7c, 0x00,
+0xa2, 0x00, 0xbe, 0x00, 0xbe, 0x00, 0x9c, 0x00, 0x6a, 0x00, 0x20, 0x00, 0xf0, 0xff, 0xb4, 0xff,
+0x74, 0xff, 0x44, 0xff, 0x30, 0xff, 0x44, 0xff, 0x56, 0xff, 0x92, 0xff, 0xda, 0xff, 0x0a, 0x00,
+0x40, 0x00, 0x84, 0x00, 0xa4, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0x8e, 0x00, 0x48, 0x00, 0x0c, 0x00,
+0xd8, 0xff, 0x98, 0xff, 0x62, 0xff, 0x3a, 0xff, 0x2c, 0xff, 0x42, 0xff, 0x62, 0xff, 0xa0, 0xff,
+0xea, 0xff, 0x16, 0x00, 0x4c, 0x00, 0x84, 0x00, 0xa0, 0x00, 0xb0, 0x00, 0xa2, 0x00, 0x7a, 0x00,
+0x3e, 0x00, 0x02, 0x00, 0xc6, 0xff, 0x8c, 0xff, 0x66, 0xff, 0x52, 0xff, 0x44, 0xff, 0x5c, 0xff,
+0x7c, 0xff, 0xb8, 0xff, 0xec, 0xff, 0x34, 0x00, 0x54, 0x00, 0x70, 0x00, 0x90, 0x00, 0x96, 0x00,
+0x82, 0x00, 0x56, 0x00, 0x28, 0x00, 0xea, 0xff, 0xbe, 0xff, 0x88, 0xff, 0x6c, 0xff, 0x68, 0xff,
+0x54, 0xff, 0x7a, 0xff, 0x9a, 0xff, 0xae, 0xff, 0xf0, 0xff, 0x14, 0x00, 0x36, 0x00, 0x5c, 0x00,
+0x6a, 0x00, 0x6a, 0x00, 0x56, 0x00, 0x3a, 0x00, 0x04, 0x00, 0xe6, 0xff, 0xc2, 0xff, 0x9e, 0xff,
+0x94, 0xff, 0x88, 0xff, 0x80, 0xff, 0x8a, 0xff, 0xac, 0xff, 0xce, 0xff, 0xf8, 0xff, 0x16, 0x00,
+0x2c, 0x00, 0x3a, 0x00, 0x54, 0x00, 0x46, 0x00, 0x40, 0x00, 0x26, 0x00, 0x04, 0x00, 0xf2, 0xff,
+0xd4, 0xff, 0xba, 0xff, 0xbc, 0xff, 0xb0, 0xff, 0xa0, 0xff, 0xb2, 0xff, 0xce, 0xff, 0xd6, 0xff,
+0xf8, 0xff, 0x0c, 0x00, 0x14, 0x00, 0x24, 0x00, 0x1e, 0x00, 0x26, 0x00, 0x1a, 0x00, 0x08, 0x00,
+0x00, 0x00, 0xe8, 0xff, 0xe2, 0xff, 0xd8, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xc8, 0xff, 0xc8, 0xff,
+0xd0, 0xff, 0xe6, 0xff, 0xee, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0x02, 0x00, 0x06, 0x00,
+0x16, 0x00, 0x06, 0x00, 0x04, 0x00, 0x06, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xf4, 0xff,
+0xf8, 0xff, 0xf6, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xe2, 0xff, 0xe8, 0xff,
+0xe2, 0xff, 0xe2, 0xff, 0xee, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x10, 0x00, 0x22, 0x00, 0x26, 0x00,
+0x14, 0x00, 0x18, 0x00, 0x0a, 0x00, 0xf4, 0xff, 0xf0, 0xff, 0xd0, 0xff, 0xc4, 0xff, 0xb8, 0xff,
+0xb6, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xc4, 0xff, 0xde, 0xff, 0xfc, 0xff, 0x14, 0x00, 0x34, 0x00,
+0x40, 0x00, 0x52, 0x00, 0x42, 0x00, 0x34, 0x00, 0x1e, 0x00, 0x04, 0x00, 0xda, 0xff, 0xbc, 0xff,
+0xa0, 0xff, 0x94, 0xff, 0x90, 0xff, 0x8c, 0xff, 0xa2, 0xff, 0xb4, 0xff, 0xea, 0xff, 0x0e, 0x00,
+0x3a, 0x00, 0x5c, 0x00, 0x68, 0x00, 0x78, 0x00, 0x60, 0x00, 0x40, 0x00, 0x1e, 0x00, 0xf8, 0xff,
+0xd8, 0xff, 0x96, 0xff, 0x76, 0xff, 0x56, 0xff, 0x56, 0xff, 0x68, 0xff, 0x86, 0xff, 0xb0, 0xff,
+0xf0, 0xff, 0x18, 0x00, 0x4a, 0x00, 0x76, 0x00, 0x8a, 0x00, 0x88, 0x00, 0x76, 0x00, 0x4c, 0x00,
+0x1c, 0x00, 0xf0, 0xff, 0xaa, 0xff, 0x80, 0xff, 0x58, 0xff, 0x3a, 0xff, 0x42, 0xff, 0x5a, 0xff,
+0x84, 0xff, 0xbc, 0xff, 0xee, 0xff, 0x26, 0x00, 0x6a, 0x00, 0x98, 0x00, 0xa8, 0x00, 0x9c, 0x00,
+0x7a, 0x00, 0x4c, 0x00, 0x18, 0x00, 0xe6, 0xff, 0xaa, 0xff, 0x70, 0xff, 0x42, 0xff, 0x24, 0xff,
+0x30, 0xff, 0x52, 0xff, 0x7e, 0xff, 0xd0, 0xff, 0xfc, 0xff, 0x36, 0x00, 0x80, 0x00, 0x9c, 0x00,
+0xb6, 0x00, 0xa8, 0x00, 0x80, 0x00, 0x4a, 0x00, 0x00, 0x00, 0xd6, 0xff, 0x9c, 0xff, 0x58, 0xff,
+0x32, 0xff, 0x22, 0xff, 0x2a, 0xff, 0x4e, 0xff, 0x90, 0xff, 0xd8, 0xff, 0x18, 0x00, 0x54, 0x00,
+0x82, 0x00, 0xb4, 0x00, 0xb8, 0x00, 0xa2, 0x00, 0x8a, 0x00, 0x44, 0x00, 0x00, 0x00, 0xda, 0xff,
+0x92, 0xff, 0x58, 0xff, 0x2c, 0xff, 0x28, 0xff, 0x3a, 0xff, 0x6c, 0xff, 0xae, 0xff, 0xe8, 0xff,
+0x1a, 0x00, 0x64, 0x00, 0x8e, 0x00, 0xaa, 0x00, 0xae, 0x00, 0x98, 0x00, 0x6a, 0x00, 0x3a, 0x00,
+0x02, 0x00, 0xc2, 0xff, 0x86, 0xff, 0x4c, 0xff, 0x40, 0xff, 0x3c, 0xff, 0x4e, 0xff, 0x88, 0xff,
+0xbc, 0xff, 0xf0, 0xff, 0x26, 0x00, 0x60, 0x00, 0x88, 0x00, 0x94, 0x00, 0x9a, 0x00, 0x82, 0x00,
+0x56, 0x00, 0x1c, 0x00, 0xee, 0xff, 0xba, 0xff, 0x88, 0xff, 0x64, 0xff, 0x52, 0xff, 0x52, 0xff,
+0x76, 0xff, 0x98, 0xff, 0xda, 0xff, 0x02, 0x00, 0x2a, 0x00, 0x62, 0x00, 0x70, 0x00, 0x80, 0x00,
+0x78, 0x00, 0x64, 0x00, 0x46, 0x00, 0x0e, 0x00, 0xec, 0xff, 0xb8, 0xff, 0x8e, 0xff, 0x72, 0xff,
+0x72, 0xff, 0x7c, 0xff, 0x86, 0xff, 0xae, 0xff, 0xe4, 0xff, 0x0c, 0x00, 0x24, 0x00, 0x4a, 0x00,
+0x58, 0x00, 0x5e, 0x00, 0x56, 0x00, 0x46, 0x00, 0x28, 0x00, 0x04, 0x00, 0xd8, 0xff, 0xb2, 0xff,
+0xa0, 0xff, 0x8e, 0xff, 0x8c, 0xff, 0x90, 0xff, 0xb0, 0xff, 0xc4, 0xff, 0xe2, 0xff, 0x08, 0x00,
+0x16, 0x00, 0x2a, 0x00, 0x2e, 0x00, 0x3c, 0x00, 0x34, 0x00, 0x28, 0x00, 0x12, 0x00, 0xf8, 0xff,
+0xe2, 0xff, 0xc6, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xc2, 0xff, 0xce, 0xff, 0xde, 0xff,
+0xec, 0xff, 0xf6, 0xff, 0x0c, 0x00, 0x0e, 0x00, 0x12, 0x00, 0x1c, 0x00, 0x0a, 0x00, 0x10, 0x00,
+0x00, 0x00, 0xf6, 0xff, 0xf0, 0xff, 0xe6, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xf2, 0xff, 0xf4, 0xff,
+0xec, 0xff, 0xe2, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe2, 0xff, 0xec, 0xff, 0xee, 0xff, 0xe2, 0xff,
+0xf2, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0x0a, 0x00, 0x08, 0x00, 0x18, 0x00, 0x12, 0x00, 0x12, 0x00,
+0x18, 0x00, 0x08, 0x00, 0x02, 0x00, 0xf2, 0xff, 0xda, 0xff, 0xcc, 0xff, 0xbe, 0xff, 0xcc, 0xff,
+0xce, 0xff, 0xc4, 0xff, 0xde, 0xff, 0xee, 0xff, 0x06, 0x00, 0x10, 0x00, 0x32, 0x00, 0x3a, 0x00,
+0x3e, 0x00, 0x3a, 0x00, 0x30, 0x00, 0x1e, 0x00, 0x06, 0x00, 0xec, 0xff, 0xc6, 0xff, 0xaa, 0xff,
+0xa0, 0xff, 0xa4, 0xff, 0xae, 0xff, 0xb4, 0xff, 0xcc, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x30, 0x00,
+0x50, 0x00, 0x58, 0x00, 0x58, 0x00, 0x50, 0x00, 0x40, 0x00, 0x16, 0x00, 0xfa, 0xff, 0xce, 0xff,
+0x98, 0xff, 0x7a, 0xff, 0x80, 0xff, 0x7e, 0xff, 0x8c, 0xff, 0xa8, 0xff, 0xcc, 0xff, 0xfc, 0xff,
+0x24, 0x00, 0x54, 0x00, 0x76, 0x00, 0x82, 0x00, 0x7e, 0x00, 0x64, 0x00, 0x42, 0x00, 0x18, 0x00,
+0xda, 0xff, 0xb0, 0xff, 0x84, 0xff, 0x66, 0xff, 0x4c, 0xff, 0x58, 0xff, 0x7c, 0xff, 0xa0, 0xff,
+0xd4, 0xff, 0xfc, 0xff, 0x42, 0x00, 0x70, 0x00, 0x88, 0x00, 0xa2, 0x00, 0x92, 0x00, 0x70, 0x00,
+0x38, 0x00, 0xfe, 0xff, 0xc0, 0xff, 0x86, 0xff, 0x5a, 0xff, 0x3c, 0xff, 0x30, 0xff, 0x3c, 0xff,
+0x5a, 0xff, 0x9c, 0xff, 0xda, 0xff, 0x10, 0x00, 0x52, 0x00, 0x82, 0x00, 0xa2, 0x00, 0xaa, 0x00,
+0xa0, 0x00, 0x74, 0x00, 0x2a, 0x00, 0xee, 0xff, 0xbe, 0xff, 0x7e, 0xff, 0x4a, 0xff, 0x2a, 0xff,
+0x22, 0xff, 0x3c, 0xff, 0x68, 0xff, 0xb2, 0xff, 0xec, 0xff, 0x16, 0x00, 0x60, 0x00, 0x92, 0x00,
+0xb8, 0x00, 0xb0, 0x00, 0x90, 0x00, 0x6e, 0x00, 0x24, 0x00, 0xee, 0xff, 0xa8, 0xff, 0x76, 0xff,
+0x48, 0xff, 0x28, 0xff, 0x2a, 0xff, 0x3c, 0xff, 0x74, 0xff, 0xb2, 0xff, 0xf6, 0xff, 0x2a, 0x00,
+0x66, 0x00, 0x8e, 0x00, 0xae, 0x00, 0xb4, 0x00, 0x8e, 0x00, 0x5a, 0x00, 0x18, 0x00, 0xdc, 0xff,
+0xae, 0xff, 0x6e, 0xff, 0x40, 0xff, 0x3c, 0xff, 0x3a, 0xff, 0x5c, 0xff, 0x8a, 0xff, 0xc8, 0xff,
+0x04, 0x00, 0x40, 0x00, 0x7a, 0x00, 0x92, 0x00, 0xac, 0x00, 0x9e, 0x00, 0x7c, 0x00, 0x4a, 0x00,
+0x0e, 0x00, 0xda, 0xff, 0xa8, 0xff, 0x76, 0xff, 0x5c, 0xff, 0x52, 0xff, 0x56, 0xff, 0x6e, 0xff,
+0xa0, 0xff, 0xe6, 0xff, 0x20, 0x00, 0x42, 0x00, 0x74, 0x00, 0x92, 0x00, 0x92, 0x00, 0x84, 0x00,
+0x5c, 0x00, 0x34, 0x00, 0xfa, 0xff, 0xce, 0xff, 0xa4, 0xff, 0x82, 0xff, 0x66, 0xff, 0x64, 0xff,
+0x72, 0xff, 0x8c, 0xff, 0xbe, 0xff, 0xf4, 0xff, 0x22, 0x00, 0x44, 0x00, 0x5a, 0x00, 0x6e, 0x00,
+0x68, 0x00, 0x5c, 0x00, 0x46, 0x00, 0x1a, 0x00, 0xfa, 0xff, 0xc6, 0xff, 0xa8, 0xff, 0x9a, 0xff,
+0x88, 0xff, 0x8a, 0xff, 0x8c, 0xff, 0xac, 0xff, 0xce, 0xff, 0xfa, 0xff, 0x14, 0x00, 0x3a, 0x00,
+0x42, 0x00, 0x42, 0x00, 0x42, 0x00, 0x3a, 0x00, 0x2a, 0x00, 0x04, 0x00, 0xec, 0xff, 0xd0, 0xff,
+0xb6, 0xff, 0xac, 0xff, 0xa4, 0xff, 0xa2, 0xff, 0xa8, 0xff, 0xbc, 0xff, 0xda, 0xff, 0xe8, 0xff,
+0xfe, 0xff, 0x18, 0x00, 0x1e, 0x00, 0x18, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x12, 0x00, 0xfe, 0xff,
+0xea, 0xff, 0xe0, 0xff, 0xd6, 0xff, 0xcc, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc4, 0xff, 0xce, 0xff,
+0xce, 0xff, 0xe8, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,
+0x04, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfa, 0xff, 0xfa, 0xff, 0xea, 0xff,
+0xea, 0xff, 0xde, 0xff, 0xd8, 0xff, 0xd0, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xd0, 0xff,
+0xd4, 0xff, 0xf8, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x1a, 0x00, 0x32, 0x00, 0x22, 0x00, 0x18, 0x00,
+0x1c, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xee, 0xff, 0xd0, 0xff, 0xb8, 0xff, 0xa8, 0xff, 0x9e, 0xff,
+0xb4, 0xff, 0xb0, 0xff, 0xc6, 0xff, 0xe0, 0xff, 0xfa, 0xff, 0x1e, 0x00, 0x3c, 0x00, 0x50, 0x00,
+0x4a, 0x00, 0x46, 0x00, 0x3e, 0x00, 0x28, 0x00, 0x08, 0x00, 0xe6, 0xff, 0xbc, 0xff, 0xa4, 0xff,
+0x84, 0xff, 0x84, 0xff, 0x8c, 0xff, 0xaa, 0xff, 0xc4, 0xff, 0xea, 0xff, 0x0e, 0x00, 0x40, 0x00,
+0x64, 0x00, 0x64, 0x00, 0x74, 0x00, 0x66, 0x00, 0x5e, 0x00, 0x3e, 0x00, 0x06, 0x00, 0xde, 0xff,
+0xaa, 0xff, 0x7a, 0xff, 0x66, 0xff, 0x64, 0xff, 0x6a, 0xff, 0x86, 0xff, 0xb6, 0xff, 0xe6, 0xff,
+0x0e, 0x00, 0x52, 0x00, 0x72, 0x00, 0x94, 0x00, 0xa0, 0x00, 0x8a, 0x00, 0x60, 0x00, 0x34, 0x00,
+0x02, 0x00, 0xc6, 0xff, 0x98, 0xff, 0x5c, 0xff, 0x48, 0xff, 0x3c, 0xff, 0x5e, 0xff, 0x82, 0xff,
+0xba, 0xff, 0xfc, 0xff, 0x20, 0x00, 0x60, 0x00, 0x92, 0x00, 0xae, 0x00, 0xa6, 0x00, 0x92, 0x00,
+0x6a, 0x00, 0x2a, 0x00, 0xf4, 0xff, 0xba, 0xff, 0x7e, 0xff, 0x40, 0xff, 0x2e, 0xff, 0x2c, 0xff,
+0x4c, 0xff, 0x82, 0xff, 0xc0, 0xff, 0xf6, 0xff, 0x2c, 0x00, 0x72, 0x00, 0x9a, 0x00, 0xb6, 0x00,
+0xb0, 0x00, 0x8c, 0x00, 0x4c, 0x00, 0x08, 0x00, 0xd6, 0xff, 0x96, 0xff, 0x56, 0xff, 0x28, 0xff,
+0x1c, 0xff, 0x30, 0xff, 0x56, 0xff, 0x88, 0xff, 0xda, 0xff, 0x0a, 0x00, 0x40, 0x00, 0x86, 0x00,
+0xa8, 0x00, 0xb0, 0x00, 0xa2, 0x00, 0x7e, 0x00, 0x40, 0x00, 0xfa, 0xff, 0xc8, 0xff, 0x92, 0xff,
+0x4a, 0xff, 0x26, 0xff, 0x26, 0xff, 0x3c, 0xff, 0x64, 0xff, 0xa8, 0xff, 0xec, 0xff, 0x1a, 0x00,
+0x56, 0x00, 0x82, 0x00, 0xa6, 0x00, 0xb4, 0x00, 0x9c, 0x00, 0x72, 0x00, 0x20, 0x00, 0xe6, 0xff,
+0xae, 0xff, 0x7c, 0xff, 0x46, 0xff, 0x30, 0xff, 0x2e, 0xff, 0x50, 0xff, 0x7c, 0xff, 0xac, 0xff,
+0xfa, 0xff, 0x28, 0x00, 0x56, 0x00, 0x84, 0x00, 0x9c, 0x00, 0x9c, 0x00, 0x84, 0x00, 0x5a, 0x00,
+0x1e, 0x00, 0xec, 0xff, 0xb6, 0xff, 0x86, 0xff, 0x5e, 0xff, 0x54, 0xff, 0x58, 0xff, 0x7a, 0xff,
+0x96, 0xff, 0xd0, 0xff, 0x02, 0x00, 0x32, 0x00, 0x66, 0x00, 0x74, 0x00, 0x96, 0x00, 0x84, 0x00,
+0x72, 0x00, 0x46, 0x00, 0x0e, 0x00, 0xe8, 0xff, 0xb8, 0xff, 0x9e, 0xff, 0x88, 0xff, 0x86, 0xff,
+0x80, 0xff, 0x9a, 0xff, 0xb6, 0xff, 0xde, 0xff, 0x08, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x42, 0x00,
+0x52, 0x00, 0x4c, 0x00, 0x48, 0x00, 0x20, 0x00, 0xfc, 0xff, 0xe6, 0xff, 0xcc, 0xff, 0xb4, 0xff,
+0xaa, 0xff, 0xac, 0xff, 0xae, 0xff, 0xb8, 0xff, 0xd2, 0xff, 0xf0, 0xff, 0xfe, 0xff, 0x14, 0x00,
+0x30, 0x00, 0x2a, 0x00, 0x2a, 0x00, 0x32, 0x00, 0x22, 0x00, 0x06, 0x00, 0xf4, 0xff, 0xec, 0xff,
+0xdc, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xc8, 0xff, 0xd0, 0xff, 0xd8, 0xff, 0xde, 0xff, 0xfa, 0xff,
+0xfc, 0xff, 0xf6, 0xff, 0x0a, 0x00, 0x04, 0x00, 0x08, 0x00, 0x02, 0x00, 0x02, 0x00, 0xf6, 0xff,
+0xf4, 0xff, 0xea, 0xff, 0xdc, 0xff, 0xe6, 0xff, 0xdc, 0xff, 0xe4, 0xff, 0xd8, 0xff, 0xd8, 0xff,
+0xe0, 0xff, 0xdc, 0xff, 0xd6, 0xff, 0xe2, 0xff, 0xe6, 0xff, 0xe2, 0xff, 0xe0, 0xff, 0xe4, 0xff,
+0xe6, 0xff, 0xea, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x00, 0x00, 0x06, 0x00,
+0xfc, 0xff, 0xf2, 0xff, 0xe0, 0xff, 0xd2, 0xff, 0xc4, 0xff, 0xb8, 0xff, 0xbe, 0xff, 0xc8, 0xff,
+0xc2, 0xff, 0xda, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0x10, 0x00, 0x28, 0x00, 0x30, 0x00, 0x30, 0x00,
+0x2a, 0x00, 0x10, 0x00, 0x08, 0x00, 0xe6, 0xff, 0xca, 0xff, 0xb2, 0xff, 0x9e, 0xff, 0x94, 0xff,
+0x98, 0xff, 0xa2, 0xff, 0xa0, 0xff, 0xbc, 0xff, 0xe4, 0xff, 0x06, 0x00, 0x34, 0x00, 0x4c, 0x00,
+0x56, 0x00, 0x56, 0x00, 0x3e, 0x00, 0x34, 0x00, 0x10, 0x00, 0xea, 0xff, 0xc8, 0xff, 0x92, 0xff,
+0x7a, 0xff, 0x6c, 0xff, 0x70, 0xff, 0x8c, 0xff, 0xa0, 0xff, 0xca, 0xff, 0x04, 0x00, 0x2c, 0x00,
+0x52, 0x00, 0x7c, 0x00, 0x84, 0x00, 0x86, 0x00, 0x68, 0x00, 0x4c, 0x00, 0x1e, 0x00, 0xe6, 0xff,
+0xb4, 0xff, 0x90, 0xff, 0x78, 0xff, 0x5c, 0xff, 0x58, 0xff, 0x6a, 0xff, 0x9c, 0xff, 0xca, 0xff,
+0x02, 0x00, 0x3a, 0x00, 0x70, 0x00, 0x94, 0x00, 0x9e, 0x00, 0x94, 0x00, 0x78, 0x00, 0x48, 0x00,
+0x10, 0x00, 0xdc, 0xff, 0x9e, 0xff, 0x72, 0xff, 0x4c, 0xff, 0x32, 0xff, 0x44, 0xff, 0x6a, 0xff,
+0x9e, 0xff, 0xde, 0xff, 0x14, 0x00, 0x4c, 0x00, 0x8c, 0x00, 0xa6, 0x00, 0xbc, 0x00, 0xac, 0x00,
+0x7c, 0x00, 0x4a, 0x00, 0x04, 0x00, 0xdc, 0xff, 0xa6, 0xff, 0x6c, 0xff, 0x4c, 0xff, 0x36, 0xff,
+0x46, 0xff, 0x6c, 0xff, 0xac, 0xff, 0xf0, 0xff, 0x22, 0x00, 0x66, 0x00, 0x96, 0x00, 0xb6, 0x00,
+0xbc, 0x00, 0xa4, 0x00, 0x74, 0x00, 0x36, 0x00, 0xfa, 0xff, 0xc8, 0xff, 0x84, 0xff, 0x4e, 0xff,
+0x2a, 0xff, 0x12, 0xff, 0x42, 0xff, 0x66, 0xff, 0xa2, 0xff, 0xf2, 0xff, 0x1e, 0x00, 0x60, 0x00,
+0x92, 0x00, 0xa4, 0x00, 0xb4, 0x00, 0x8a, 0x00, 0x52, 0x00, 0x20, 0x00, 0xe6, 0xff, 0xb0, 0xff,
+0x74, 0xff, 0x4c, 0xff, 0x2c, 0xff, 0x30, 0xff, 0x4c, 0xff, 0x7e, 0xff, 0xc4, 0xff, 0x04, 0x00,
+0x2e, 0x00, 0x64, 0x00, 0x94, 0x00, 0xa4, 0x00, 0xa4, 0x00, 0x82, 0x00, 0x5a, 0x00, 0x16, 0x00,
+0xe0, 0xff, 0xb0, 0xff, 0x7a, 0xff, 0x4a, 0xff, 0x3a, 0xff, 0x46, 0xff, 0x5e, 0xff, 0x90, 0xff,
+0xce, 0xff, 0x08, 0x00, 0x2a, 0x00, 0x60, 0x00, 0x74, 0x00, 0x8c, 0x00, 0x80, 0x00, 0x5c, 0x00,
+0x34, 0x00, 0x0a, 0x00, 0xde, 0xff, 0xa0, 0xff, 0x80, 0xff, 0x5e, 0xff, 0x56, 0xff, 0x52, 0xff,
+0x78, 0xff, 0xa0, 0xff, 0xd4, 0xff, 0xfa, 0xff, 0x34, 0x00, 0x58, 0x00, 0x68, 0x00, 0x72, 0x00,
+0x5e, 0x00, 0x5a, 0x00, 0x26, 0x00, 0x02, 0x00, 0xde, 0xff, 0xb0, 0xff, 0xa6, 0xff, 0x8a, 0xff,
+0x84, 0xff, 0x8e, 0xff, 0x9e, 0xff, 0xc6, 0xff, 0xf6, 0xff, 0x16, 0x00, 0x36, 0x00, 0x40, 0x00,
+0x42, 0x00, 0x4c, 0x00, 0x3c, 0x00, 0x34, 0x00, 0x20, 0x00, 0xfa, 0xff, 0xe2, 0xff, 0xba, 0xff,
+0xb4, 0xff, 0xa8, 0xff, 0x96, 0xff, 0xa6, 0xff, 0xc2, 0xff, 0xe0, 0xff, 0xf6, 0xff, 0x0a, 0x00,
+0x12, 0x00, 0x1e, 0x00, 0x22, 0x00, 0x1e, 0x00, 0x16, 0x00, 0x0c, 0x00, 0xfe, 0xff, 0xf4, 0xff,
+0xe8, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xdc, 0xff, 0xe4, 0xff, 0xee, 0xff,
+0xf2, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x08, 0x00, 0x10, 0x00, 0x12, 0x00,
+0x0a, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0xf8, 0xff, 0x06, 0x00, 0xfc, 0xff, 0xf8, 0xff,
+0xf4, 0xff, 0xea, 0xff, 0xda, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xc6, 0xff, 0xd0, 0xff, 0xd6, 0xff,
+0xe8, 0xff, 0xee, 0xff, 0xfa, 0xff, 0x0c, 0x00, 0x0e, 0x00, 0x1c, 0x00, 0x10, 0x00, 0x12, 0x00,
+0x0e, 0x00, 0xfa, 0xff, 0xf2, 0xff, 0xd4, 0xff, 0xc2, 0xff, 0xae, 0xff, 0xa0, 0xff, 0xae, 0xff,
+0xae, 0xff, 0xc4, 0xff, 0xd6, 0xff, 0xf0, 0xff, 0x04, 0x00, 0x2c, 0x00, 0x38, 0x00, 0x36, 0x00,
+0x46, 0x00, 0x3a, 0x00, 0x36, 0x00, 0x0a, 0x00, 0xf6, 0xff, 0xd2, 0xff, 0xac, 0xff, 0x9a, 0xff,
+0x8a, 0xff, 0x90, 0xff, 0x96, 0xff, 0xac, 0xff, 0xce, 0xff, 0xec, 0xff, 0x1a, 0x00, 0x36, 0x00,
+0x48, 0x00, 0x56, 0x00, 0x5a, 0x00, 0x4a, 0x00, 0x2e, 0x00, 0x10, 0x00, 0xec, 0xff, 0xbc, 0xff,
+0x92, 0xff, 0x72, 0xff, 0x5e, 0xff, 0x62, 0xff, 0x7a, 0xff, 0x90, 0xff, 0xcc, 0xff, 0xfa, 0xff,
+0x2e, 0x00, 0x64, 0x00, 0x7a, 0x00, 0x8e, 0x00, 0x8a, 0x00, 0x66, 0x00, 0x40, 0x00, 0x0e, 0x00,
+0xda, 0xff, 0xa8, 0xff, 0x72, 0xff, 0x4a, 0xff, 0x52, 0xff, 0x56, 0xff, 0x72, 0xff, 0xa8, 0xff,
+0xe0, 0xff, 0x18, 0x00, 0x4e, 0x00, 0x8a, 0x00, 0xa8, 0x00, 0xba, 0x00, 0xa8, 0x00, 0x80, 0x00,
+0x42, 0x00, 0x08, 0x00, 0xd4, 0xff, 0x88, 0xff, 0x52, 0xff, 0x2a, 0xff, 0x2e, 0xff, 0x48, 0xff,
+0x6c, 0xff, 0xb6, 0xff, 0xee, 0xff, 0x24, 0x00, 0x5c, 0x00, 0x90, 0x00, 0xaa, 0x00, 0xb2, 0x00,
+0xa0, 0x00, 0x6a, 0x00, 0x2c, 0x00, 0xf6, 0xff, 0xc4, 0xff, 0x78, 0xff, 0x40, 0xff, 0x2c, 0xff,
+0x34, 0xff, 0x58, 0xff, 0x78, 0xff, 0xc6, 0xff, 0x00, 0x00, 0x2e, 0x00, 0x72, 0x00, 0x9e, 0x00,
+0xbc, 0x00, 0xb8, 0x00, 0x8a, 0x00, 0x58, 0x00, 0x16, 0x00, 0xe6, 0xff, 0xa4, 0xff, 0x62, 0xff,
+0x4a, 0xff, 0x30, 0xff, 0x48, 0xff, 0x6a, 0xff, 0xa0, 0xff, 0xde, 0xff, 0x0a, 0x00, 0x40, 0x00,
+0x7e, 0x00, 0x9c, 0x00, 0xa8, 0x00, 0x98, 0x00, 0x6e, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xc4, 0xff,
+0x90, 0xff, 0x5c, 0xff, 0x44, 0xff, 0x3a, 0xff, 0x50, 0xff, 0x7a, 0xff, 0xa0, 0xff, 0xe6, 0xff,
+0x24, 0x00, 0x4a, 0x00, 0x7a, 0x00, 0x94, 0x00, 0x94, 0x00, 0x7c, 0x00, 0x56, 0x00, 0x22, 0x00,
+0xf6, 0xff, 0xb8, 0xff, 0x90, 0xff, 0x72, 0xff, 0x5c, 0xff, 0x5e, 0xff, 0x70, 0xff, 0x8a, 0xff,
+0xc2, 0xff, 0xf6, 0xff, 0x22, 0x00, 0x54, 0x00, 0x74, 0x00, 0x86, 0x00, 0x78, 0x00, 0x5e, 0x00,
+0x3a, 0x00, 0x10, 0x00, 0xe0, 0xff, 0xb6, 0xff, 0x8e, 0xff, 0x7a, 0xff, 0x74, 0xff, 0x7a, 0xff,
+0x94, 0xff, 0xa8, 0xff, 0xdc, 0xff, 0xfa, 0xff, 0x2c, 0x00, 0x3c, 0x00, 0x4a, 0x00, 0x60, 0x00,
+0x48, 0x00, 0x40, 0x00, 0x24, 0x00, 0x08, 0x00, 0xe6, 0xff, 0xbe, 0xff, 0xa6, 0xff, 0x9c, 0xff,
+0x98, 0xff, 0xa0, 0xff, 0xae, 0xff, 0xce, 0xff, 0xec, 0xff, 0x0c, 0x00, 0x1c, 0x00, 0x30, 0x00,
+0x32, 0x00, 0x30, 0x00, 0x2a, 0x00, 0x22, 0x00, 0x0a, 0x00, 0xf8, 0xff, 0xf0, 0xff, 0xde, 0xff,
+0xcc, 0xff, 0xc4, 0xff, 0xc4, 0xff, 0xc2, 0xff, 0xd2, 0xff, 0xe4, 0xff, 0xf2, 0xff, 0xfa, 0xff,
+0xf8, 0xff, 0x0c, 0x00, 0x06, 0x00, 0x06, 0x00, 0x0a, 0x00, 0xfa, 0xff, 0x00, 0x00, 0xfc, 0xff,
+0xf4, 0xff, 0xf4, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xe8, 0xff, 0xee, 0xff, 0xea, 0xff,
+0xf0, 0xff, 0xe8, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xf2, 0xff,
+0xf0, 0xff, 0x06, 0x00, 0x0c, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x12, 0x00, 0x0a, 0x00, 0x08, 0x00,
+0x00, 0x00, 0xf2, 0xff, 0xe6, 0xff, 0xcc, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xbe, 0xff, 0xbc, 0xff,
+0xd0, 0xff, 0xda, 0xff, 0xf2, 0xff, 0x10, 0x00, 0x22, 0x00, 0x38, 0x00, 0x44, 0x00, 0x30, 0x00,
+0x26, 0x00, 0x16, 0x00, 0xf8, 0xff, 0xe6, 0xff, 0xc2, 0xff, 0xa0, 0xff, 0x94, 0xff, 0x8c, 0xff,
+0x94, 0xff, 0xa2, 0xff, 0xb2, 0xff, 0xea, 0xff, 0xfc, 0xff, 0x2a, 0x00, 0x4a, 0x00, 0x50, 0x00,
+0x60, 0x00, 0x4e, 0x00, 0x40, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xea, 0xff, 0xb2, 0xff, 0x8c, 0xff,
+0x78, 0xff, 0x6c, 0xff, 0x7c, 0xff, 0x8a, 0xff, 0xc2, 0xff, 0xe2, 0xff, 0x0c, 0x00, 0x44, 0x00,
+0x64, 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x6c, 0x00, 0x50, 0x00, 0x2c, 0x00, 0xfc, 0xff, 0xd0, 0xff,
+0x9c, 0xff, 0x7a, 0xff, 0x54, 0xff, 0x50, 0xff, 0x64, 0xff, 0x8c, 0xff, 0xbc, 0xff, 0xe6, 0xff,
+0x22, 0x00, 0x4e, 0x00, 0x7c, 0x00, 0x98, 0x00, 0x90, 0x00, 0x7c, 0x00, 0x58, 0x00, 0x26, 0x00,
+0xf4, 0xff, 0xb6, 0xff, 0x82, 0xff, 0x4c, 0xff, 0x36, 0xff, 0x44, 0xff, 0x60, 0xff, 0x90, 0xff,
+0xd0, 0xff, 0x0a, 0x00, 0x38, 0x00, 0x76, 0x00, 0x9c, 0x00, 0xaa, 0x00, 0xa6, 0x00, 0x82, 0x00,
+0x4c, 0x00, 0x12, 0x00, 0xe8, 0xff, 0x9c, 0xff, 0x64, 0xff, 0x46, 0xff, 0x32, 0xff, 0x3e, 0xff,
+0x5e, 0xff, 0x9e, 0xff, 0xe8, 0xff, 0x0c, 0x00, 0x54, 0x00, 0x92, 0x00, 0xa4, 0x00, 0xc0, 0x00,
+0xa0, 0x00, 0x76, 0x00, 0x38, 0x00, 0xfe, 0xff, 0xcc, 0xff, 0x80, 0xff, 0x50, 0xff, 0x30, 0xff,
+0x26, 0xff, 0x40, 0xff, 0x74, 0xff, 0xb4, 0xff, 0xe8, 0xff, 0x16, 0x00, 0x58, 0x00, 0x90, 0x00,
+0xb2, 0x00, 0xb8, 0x00, 0x9e, 0x00, 0x68, 0x00, 0x2e, 0x00, 0xfc, 0xff, 0xba, 0xff, 0x7e, 0xff,
+0x4e, 0xff, 0x34, 0xff, 0x32, 0xff, 0x4c, 0xff, 0x80, 0xff, 0xb8, 0xff, 0x00, 0x00, 0x32, 0x00,
+0x6a, 0x00, 0x8e, 0x00, 0x9e, 0x00, 0xa2, 0x00, 0x76, 0x00, 0x4e, 0x00, 0x16, 0x00, 0xd6, 0xff,
+0xa6, 0xff, 0x6e, 0xff, 0x4e, 0xff, 0x42, 0xff, 0x48, 0xff, 0x66, 0xff, 0x94, 0xff, 0xce, 0xff,
+0x00, 0x00, 0x3c, 0x00, 0x58, 0x00, 0x74, 0x00, 0x86, 0x00, 0x72, 0x00, 0x5a, 0x00, 0x28, 0x00,
+0xf4, 0xff, 0xca, 0xff, 0x96, 0xff, 0x74, 0xff, 0x66, 0xff, 0x60, 0xff, 0x76, 0xff, 0x8c, 0xff,
+0xba, 0xff, 0xec, 0xff, 0x12, 0x00, 0x34, 0x00, 0x52, 0x00, 0x5e, 0x00, 0x56, 0x00, 0x4c, 0x00,
+0x3a, 0x00, 0x12, 0x00, 0xf0, 0xff, 0xd0, 0xff, 0xa0, 0xff, 0x9e, 0xff, 0x8c, 0xff, 0x92, 0xff,
+0x94, 0xff, 0xbc, 0xff, 0xd0, 0xff, 0xec, 0xff, 0x18, 0x00, 0x2a, 0x00, 0x2e, 0x00, 0x2e, 0x00,
+0x2e, 0x00, 0x28, 0x00, 0x1c, 0x00, 0xfa, 0xff, 0xdc, 0xff, 0xd2, 0xff, 0xca, 0xff, 0xb2, 0xff,
+0xb6, 0xff, 0xba, 0xff, 0xbc, 0xff, 0xce, 0xff, 0xd8, 0xff, 0xf4, 0xff, 0x02, 0x00, 0x0a, 0x00,
+0x1e, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0xfe, 0xff, 0xea, 0xff, 0xe6, 0xff,
+0xe4, 0xff, 0xd6, 0xff, 0xde, 0xff, 0xd8, 0xff, 0xd6, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf4, 0xff,
+0x04, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfa, 0xff, 0xfe, 0xff,
+0x02, 0x00, 0xf2, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfa, 0xff,
+0xee, 0xff, 0xe6, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xde, 0xff, 0xd8, 0xff, 0xdc, 0xff,
+0xe8, 0xff, 0xf2, 0xff, 0x08, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x26, 0x00, 0x18, 0x00, 0x10, 0x00,
+0x08, 0x00, 0x00, 0x00, 0xe6, 0xff, 0xd0, 0xff, 0xc2, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xb2, 0xff,
+0xba, 0xff, 0xde, 0xff, 0xf2, 0xff, 0x06, 0x00, 0x28, 0x00, 0x3c, 0x00, 0x44, 0x00, 0x42, 0x00,
+0x44, 0x00, 0x2e, 0x00, 0x08, 0x00, 0xee, 0xff, 0xc6, 0xff, 0x9a, 0xff, 0x8e, 0xff, 0x7e, 0xff,
+0x78, 0xff, 0x92, 0xff, 0x9a, 0xff, 0xc2, 0xff, 0xf4, 0xff, 0x18, 0x00, 0x34, 0x00, 0x62, 0x00,
+0x62, 0x00, 0x62, 0x00, 0x54, 0x00, 0x26, 0x00, 0xfa, 0xff, 0xd0, 0xff, 0xac, 0xff, 0x7e, 0xff,
+0x62, 0xff, 0x4a, 0xff, 0x58, 0xff, 0x6a, 0xff, 0x9a, 0xff, 0xd6, 0xff, 0xfe, 0xff, 0x3c, 0x00,
+0x56, 0x00, 0x78, 0x00, 0x8a, 0x00, 0x82, 0x00, 0x6c, 0x00, 0x3a, 0x00, 0x0a, 0x00, 0xd6, 0xff,
+0x92, 0xff, 0x68, 0xff, 0x46, 0xff, 0x3a, 0xff, 0x48, 0xff, 0x5e, 0xff, 0x9a, 0xff, 0xd2, 0xff,
+0x0c, 0x00, 0x48, 0x00, 0x82, 0x00, 0xa2, 0x00, 0xae, 0x00, 0x96, 0x00, 0x6e, 0x00, 0x30, 0x00,
+0x00, 0x00, 0xca, 0xff, 0x84, 0xff, 0x52, 0xff, 0x2e, 0xff, 0x18, 0xff, 0x2e, 0xff, 0x5c, 0xff,
+0xa8, 0xff, 0xee, 0xff, 0x22, 0x00, 0x66, 0x00, 0x92, 0x00, 0xc0, 0x00, 0xc6, 0x00, 0xaa, 0x00,
+0x78, 0x00, 0x2a, 0x00, 0xf0, 0xff, 0xca, 0xff, 0x78, 0xff, 0x4a, 0xff, 0x26, 0xff, 0x1e, 0xff,
+0x48, 0xff, 0x74, 0xff, 0xc4, 0xff, 0x02, 0x00, 0x36, 0x00, 0x78, 0x00, 0xa2, 0x00, 0xbc, 0x00,
+0xc0, 0x00, 0x96, 0x00, 0x6a, 0x00, 0x24, 0x00, 0xe8, 0xff, 0xae, 0xff, 0x6c, 0xff, 0x46, 0xff,
+0x2e, 0xff, 0x38, 0xff, 0x54, 0xff, 0x8e, 0xff, 0xca, 0xff, 0x0a, 0x00, 0x40, 0x00, 0x78, 0x00,
+0x96, 0x00, 0xb4, 0x00, 0xa2, 0x00, 0x80, 0x00, 0x52, 0x00, 0x10, 0x00, 0xe4, 0xff, 0xa8, 0xff,
+0x6c, 0xff, 0x46, 0xff, 0x38, 0xff, 0x44, 0xff, 0x74, 0xff, 0xa8, 0xff, 0xde, 0xff, 0x12, 0x00,
+0x3a, 0x00, 0x70, 0x00, 0x90, 0x00, 0xa6, 0x00, 0x90, 0x00, 0x6a, 0x00, 0x30, 0x00, 0xc4, 0xff,
+0x7a, 0xff, 0x50, 0xff, 0x4e, 0xff, 0x76, 0xff, 0x8c, 0xff, 0xb8, 0xff, 0xee, 0xff, 0x1a, 0x00,
+0x4e, 0x00, 0x56, 0x00, 0x72, 0x00, 0x6a, 0x00, 0x5e, 0x00, 0x52, 0x00, 0x14, 0x00, 0xec, 0xff,
+0xc8, 0xff, 0x9c, 0xff, 0x82, 0xff, 0x6e, 0xff, 0x76, 0xff, 0x82, 0xff, 0x9e, 0xff, 0xd6, 0xff,
+0xf6, 0xff, 0x0a, 0x00, 0x32, 0x00, 0x40, 0x00, 0x42, 0x00, 0x48, 0x00, 0x3e, 0x00, 0x2e, 0x00,
+0x0c, 0x00, 0xe6, 0xff, 0xcc, 0xff, 0xb0, 0xff, 0xa8, 0xff, 0x9c, 0xff, 0x9c, 0xff, 0xa4, 0xff,
+0xc2, 0xff, 0xe0, 0xff, 0xf2, 0xff, 0x08, 0x00, 0x20, 0x00, 0x24, 0x00, 0x22, 0x00, 0x2c, 0x00,
+0x22, 0x00, 0x10, 0x00, 0xfe, 0xff, 0xf4, 0xff, 0xdc, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xbc, 0xff,
+0xbc, 0xff, 0xc0, 0xff, 0xd4, 0xff, 0xea, 0xff, 0xee, 0xff, 0xf2, 0xff, 0xfa, 0xff, 0x08, 0x00,
+0x04, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfe, 0xff,
+0xfe, 0xff, 0xf8, 0xff, 0xec, 0xff, 0xec, 0xff, 0xf6, 0xff, 0xea, 0xff, 0xd6, 0xff, 0xe2, 0xff,
+0xde, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x10, 0x00, 0x16, 0x00,
+0x16, 0x00, 0x28, 0x00, 0x1c, 0x00, 0x22, 0x00, 0x16, 0x00, 0x02, 0x00, 0xfa, 0xff, 0xda, 0xff,
+0xc4, 0xff, 0xb4, 0xff, 0xb2, 0xff, 0xbc, 0xff, 0xc4, 0xff, 0xd2, 0xff, 0xea, 0xff, 0xfc, 0xff,
+0x12, 0x00, 0x24, 0x00, 0x32, 0x00, 0x36, 0x00, 0x3e, 0x00, 0x34, 0x00, 0x22, 0x00, 0xfe, 0xff,
+0xf0, 0xff, 0xc6, 0xff, 0xa0, 0xff, 0x94, 0xff, 0x92, 0xff, 0x9a, 0xff, 0xa6, 0xff, 0xbe, 0xff,
+0xe8, 0xff, 0xfe, 0xff, 0x28, 0x00, 0x48, 0x00, 0x5c, 0x00, 0x66, 0x00, 0x5a, 0x00, 0x4a, 0x00,
+0x2a, 0x00, 0x04, 0x00, 0xe4, 0xff, 0xae, 0xff, 0x82, 0xff, 0x70, 0xff, 0x64, 0xff, 0x76, 0xff,
+0x8e, 0xff, 0xb6, 0xff, 0xe2, 0xff, 0x0a, 0x00, 0x40, 0x00, 0x5e, 0x00, 0x8a, 0x00, 0x86, 0x00,
+0x6e, 0x00, 0x4a, 0x00, 0x22, 0x00, 0xf8, 0xff, 0xae, 0xff, 0x86, 0xff, 0x5c, 0xff, 0x40, 0xff,
+0x30, 0xff, 0x58, 0xff, 0x82, 0xff, 0xae, 0xff, 0xe4, 0xff, 0x1e, 0x00, 0x5c, 0x00, 0x8c, 0x00,
+0xa6, 0x00, 0xa4, 0x00, 0x8e, 0x00, 0x56, 0x00, 0x24, 0x00, 0xe8, 0xff, 0xa8, 0xff, 0x6e, 0xff,
+0x42, 0xff, 0x2c, 0xff, 0x2c, 0xff, 0x44, 0xff, 0x7e, 0xff, 0xbc, 0xff, 0xec, 0xff, 0x2c, 0x00,
+0x72, 0x00, 0xa4, 0x00, 0xbe, 0x00, 0xb6, 0x00, 0x90, 0x00, 0x5c, 0x00, 0x0e, 0x00, 0xde, 0xff,
+0x92, 0xff, 0x50, 0xff, 0x30, 0xff, 0x1a, 0xff, 0x20, 0xff, 0x4e, 0xff, 0x86, 0xff, 0xd0, 0xff,
+0xfe, 0xff, 0x46, 0x00, 0x88, 0x00, 0xb0, 0x00, 0xc6, 0x00, 0xb2, 0x00, 0x8a, 0x00, 0x42, 0x00,
+0x02, 0x00, 0xc4, 0xff, 0x82, 0xff, 0x50, 0xff, 0x2a, 0xff, 0x28, 0xff, 0x3c, 0xff, 0x60, 0xff,
+0xaa, 0xff, 0xe2, 0xff, 0x22, 0x00, 0x58, 0x00, 0x94, 0x00, 0xb4, 0x00, 0xbc, 0x00, 0xac, 0x00,
+0x76, 0x00, 0x36, 0x00, 0xf2, 0xff, 0xc4, 0xff, 0x80, 0xff, 0x54, 0xff, 0x3c, 0xff, 0x3a, 0xff,
+0x56, 0xff, 0x84, 0xff, 0xb6, 0xff, 0xfc, 0xff, 0x30, 0x00, 0x62, 0x00, 0x9a, 0x00, 0xa0, 0x00,
+0xac, 0x00, 0x84, 0x00, 0x56, 0x00, 0x26, 0x00, 0xe4, 0xff, 0xb0, 0xff, 0x7a, 0xff, 0x62, 0xff,
+0x4a, 0xff, 0x54, 0xff, 0x66, 0xff, 0x94, 0xff, 0xca, 0xff, 0x08, 0x00, 0x40, 0x00, 0x62, 0x00,
+0x82, 0x00, 0x90, 0x00, 0x80, 0x00, 0x6a, 0x00, 0x42, 0x00, 0x0a, 0x00, 0xd6, 0xff, 0xaa, 0xff,
+0x8e, 0xff, 0x74, 0xff, 0x6e, 0xff, 0x74, 0xff, 0x90, 0xff, 0xa4, 0xff, 0xea, 0xff, 0x1a, 0x00,
+0x40, 0x00, 0x66, 0x00, 0x68, 0x00, 0x6a, 0x00, 0x60, 0x00, 0x46, 0x00, 0x2c, 0x00, 0xfa, 0xff,
+0xda, 0xff, 0xb2, 0xff, 0x9e, 0xff, 0x9e, 0xff, 0x8e, 0xff, 0x92, 0xff, 0x9c, 0xff, 0xca, 0xff,
+0xea, 0xff, 0x04, 0x00, 0x30, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3a, 0x00, 0x34, 0x00, 0x26, 0x00,
+0x00, 0x00, 0xf0, 0xff, 0xe0, 0xff, 0xc2, 0xff, 0xba, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb0, 0xff,
+0xbe, 0xff, 0xd2, 0xff, 0xf0, 0xff, 0xfa, 0xff, 0x0e, 0x00, 0x22, 0x00, 0x1a, 0x00, 0x12, 0x00,
+0x16, 0x00, 0x0e, 0x00, 0x06, 0x00, 0xf6, 0xff, 0xf4, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xe2, 0xff,
+0xd8, 0xff, 0xdc, 0xff, 0xda, 0xff, 0xdc, 0xff, 0xe8, 0xff, 0xec, 0xff, 0xf6, 0xff, 0xee, 0xff,
+0xee, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00,
+0xfe, 0xff, 0xfa, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xd8, 0xff, 0xca, 0xff,
+0xc4, 0xff, 0xcc, 0xff, 0xbc, 0xff, 0xc4, 0xff, 0xde, 0xff, 0xec, 0xff, 0xf6, 0xff, 0x0c, 0x00,
+0x2a, 0x00, 0x2e, 0x00, 0x2a, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x0e, 0x00, 0xf4, 0xff, 0xe6, 0xff,
+0xce, 0xff, 0xb0, 0xff, 0xa4, 0xff, 0x9a, 0xff, 0xa4, 0xff, 0xac, 0xff, 0xd2, 0xff, 0xf6, 0xff,
+0x14, 0x00, 0x32, 0x00, 0x50, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x4e, 0x00, 0x3a, 0x00, 0x12, 0x00,
+0xf2, 0xff, 0xd8, 0xff, 0xa4, 0xff, 0x82, 0xff, 0x74, 0xff, 0x6c, 0xff, 0x7c, 0xff, 0x96, 0xff,
+0xc8, 0xff, 0xf2, 0xff, 0x22, 0x00, 0x56, 0x00, 0x6a, 0x00, 0x7e, 0x00, 0x78, 0x00, 0x62, 0x00,
+0x42, 0x00, 0x0e, 0x00, 0xe8, 0xff, 0xbe, 0xff, 0x90, 0xff, 0x62, 0xff, 0x4e, 0xff, 0x54, 0xff,
+0x78, 0xff, 0x98, 0xff, 0xca, 0xff, 0x08, 0x00, 0x3e, 0x00, 0x6a, 0x00, 0x92, 0x00, 0xa4, 0x00,
+0x96, 0x00, 0x7c, 0x00, 0x48, 0x00, 0x1a, 0x00, 0xe4, 0xff, 0xac, 0xff, 0x6c, 0xff, 0x40, 0xff,
+0x46, 0xff, 0x3a, 0xff, 0x64, 0xff, 0xa0, 0xff, 0xd4, 0xff, 0x18, 0x00, 0x4c, 0x00, 0x8a, 0x00,
+0xa4, 0x00, 0xac, 0x00, 0xa0, 0x00, 0x74, 0x00, 0x46, 0x00, 0x00, 0x00, 0xc6, 0xff, 0x8e, 0xff,
+0x4e, 0xff, 0x32, 0xff, 0x1a, 0xff, 0x3c, 0xff, 0x6e, 0xff, 0xa4, 0xff, 0xee, 0xff, 0x20, 0x00,
+0x60, 0x00, 0x9a, 0x00, 0xaa, 0x00, 0xb8, 0x00, 0x98, 0x00, 0x6e, 0x00, 0x2c, 0x00, 0xee, 0xff,
+0xc6, 0xff, 0x7a, 0xff, 0x44, 0xff, 0x2c, 0xff, 0x28, 0xff, 0x42, 0xff, 0x78, 0xff, 0xc2, 0xff,
+0xfe, 0xff, 0x34, 0x00, 0x6c, 0x00, 0x94, 0x00, 0xb6, 0x00, 0xb0, 0x00, 0x98, 0x00, 0x5e, 0x00,
+0x16, 0x00, 0xe4, 0xff, 0xaa, 0xff, 0x68, 0xff, 0x42, 0xff, 0x1a, 0xff, 0x2a, 0xff, 0x54, 0xff,
+0x82, 0xff, 0xd0, 0xff, 0x06, 0x00, 0x3c, 0x00, 0x74, 0x00, 0x9a, 0x00, 0xa8, 0x00, 0x98, 0x00,
+0x78, 0x00, 0x4e, 0x00, 0x10, 0x00, 0xd0, 0xff, 0x96, 0xff, 0x62, 0xff, 0x46, 0xff, 0x38, 0xff,
+0x42, 0xff, 0x6a, 0xff, 0xa8, 0xff, 0xe0, 0xff, 0x18, 0x00, 0x50, 0x00, 0x76, 0x00, 0x90, 0x00,
+0x9e, 0x00, 0x88, 0x00, 0x6a, 0x00, 0x3e, 0x00, 0xfe, 0xff, 0xd0, 0xff, 0x9c, 0xff, 0x6e, 0xff,
+0x60, 0xff, 0x52, 0xff, 0x6c, 0xff, 0x8c, 0xff, 0xb2, 0xff, 0xf8, 0xff, 0x1e, 0x00, 0x3e, 0x00,
+0x66, 0x00, 0x74, 0x00, 0x72, 0x00, 0x68, 0x00, 0x4a, 0x00, 0x22, 0x00, 0xf2, 0xff, 0xc4, 0xff,
+0xa0, 0xff, 0x8c, 0xff, 0x76, 0xff, 0x86, 0xff, 0x8e, 0xff, 0xa8, 0xff, 0xd8, 0xff, 0xfa, 0xff,
+0x1c, 0x00, 0x34, 0x00, 0x3a, 0x00, 0x54, 0x00, 0x4a, 0x00, 0x40, 0x00, 0x2e, 0x00, 0x08, 0x00,
+0xf4, 0xff, 0xd8, 0xff, 0xba, 0xff, 0xb2, 0xff, 0xa4, 0xff, 0xb4, 0xff, 0xc8, 0xff, 0xce, 0xff,
+0xea, 0xff, 0xfe, 0xff, 0x0e, 0x00, 0x22, 0x00, 0x26, 0x00, 0x20, 0x00, 0x20, 0x00, 0x1e, 0x00,
+0x0c, 0x00, 0xf4, 0xff, 0xe6, 0xff, 0xd8, 0xff, 0xc4, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc6, 0xff,
+0xd6, 0xff, 0xe2, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xfe, 0xff, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
+0x02, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xf0, 0xff,
+0xea, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xe8, 0xff, 0xe2, 0xff,
+0xe4, 0xff, 0xe2, 0xff, 0xe2, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x0c, 0x00,
+0x14, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xf4, 0xff, 0xea, 0xff, 0xce, 0xff, 0xc0, 0xff,
+0xb6, 0xff, 0xb6, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xca, 0xff, 0xe0, 0xff, 0xf6, 0xff, 0x08, 0x00,
+0x24, 0x00, 0x36, 0x00, 0x34, 0x00, 0x36, 0x00, 0x2e, 0x00, 0x1e, 0x00, 0x04, 0x00, 0xe4, 0xff,
+0xcc, 0xff, 0xa6, 0xff, 0x9c, 0xff, 0x92, 0xff, 0x90, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xde, 0xff,
+0x02, 0x00, 0x24, 0x00, 0x4c, 0x00, 0x5a, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x58, 0x00, 0x3c, 0x00,
+0x0a, 0x00, 0xe4, 0xff, 0xb0, 0xff, 0x8e, 0xff, 0x72, 0xff, 0x62, 0xff, 0x72, 0xff, 0x8c, 0xff,
+0xa6, 0xff, 0xde, 0xff, 0x0a, 0x00, 0x3c, 0x00, 0x64, 0x00, 0x82, 0x00, 0x94, 0x00, 0x74, 0x00,
+0x60, 0x00, 0x36, 0x00, 0x0a, 0x00, 0xd2, 0xff, 0x84, 0xff, 0x6a, 0xff, 0x48, 0xff, 0x3c, 0xff,
+0x54, 0xff, 0x7e, 0xff, 0xb2, 0xff, 0xe4, 0xff, 0x24, 0x00, 0x60, 0x00, 0x8e, 0x00, 0xa4, 0x00,
+0xa6, 0x00, 0x98, 0x00, 0x64, 0x00, 0x24, 0x00, 0xf8, 0xff, 0xb8, 0xff, 0x80, 0xff, 0x56, 0xff,
+0x2c, 0xff, 0x32, 0xff, 0x4e, 0xff, 0x82, 0xff, 0xbc, 0xff, 0x02, 0x00, 0x36, 0x00, 0x72, 0x00,
+0x9e, 0x00, 0xa6, 0x00, 0xae, 0x00, 0x8a, 0x00, 0x52, 0x00, 0x14, 0x00, 0xd4, 0xff, 0xa4, 0xff,
+0x5e, 0xff, 0x40, 0xff, 0x2c, 0xff, 0x26, 0xff, 0x4c, 0xff, 0x7c, 0xff, 0xce, 0xff, 0x04, 0x00,
+0x40, 0x00, 0x7c, 0x00, 0x98, 0x00, 0xa6, 0x00, 0x94, 0x00, 0x7e, 0x00, 0x40, 0x00, 0xfa, 0xff,
+0xce, 0xff, 0x8e, 0xff, 0x5e, 0xff, 0x36, 0xff, 0x26, 0xff, 0x38, 0xff, 0x5e, 0xff, 0x9a, 0xff,
+0xde, 0xff, 0x10, 0x00, 0x4c, 0x00, 0x84, 0x00, 0xa4, 0x00, 0x9e, 0x00, 0x90, 0x00, 0x6e, 0x00,
+0x32, 0x00, 0xfc, 0xff, 0xb8, 0xff, 0x8c, 0xff, 0x64, 0xff, 0x40, 0xff, 0x38, 0xff, 0x40, 0xff,
+0x70, 0xff, 0xaa, 0xff, 0xec, 0xff, 0x1e, 0x00, 0x44, 0x00, 0x76, 0x00, 0x8a, 0x00, 0x8a, 0x00,
+0x76, 0x00, 0x4c, 0x00, 0x20, 0x00, 0xea, 0xff, 0xbc, 0xff, 0x8e, 0xff, 0x6c, 0xff, 0x5c, 0xff,
+0x5a, 0xff, 0x6a, 0xff, 0x94, 0xff, 0xc4, 0xff, 0xfa, 0xff, 0x34, 0x00, 0x4a, 0x00, 0x62, 0x00,
+0x74, 0x00, 0x76, 0x00, 0x6a, 0x00, 0x36, 0x00, 0x18, 0x00, 0xf2, 0xff, 0xbc, 0xff, 0xa6, 0xff,
+0x90, 0xff, 0x7e, 0xff, 0x88, 0xff, 0x90, 0xff, 0xa8, 0xff, 0xe4, 0xff, 0x0c, 0x00, 0x26, 0x00,
+0x44, 0x00, 0x5a, 0x00, 0x60, 0x00, 0x58, 0x00, 0x46, 0x00, 0x2c, 0x00, 0x06, 0x00, 0xea, 0xff,
+0xc4, 0xff, 0xae, 0xff, 0x9e, 0xff, 0x96, 0xff, 0x9a, 0xff, 0xa2, 0xff, 0xc2, 0xff, 0xe4, 0xff,
+0xfe, 0xff, 0x1a, 0x00, 0x2a, 0x00, 0x36, 0x00, 0x34, 0x00, 0x38, 0x00, 0x34, 0x00, 0x12, 0x00,
+0x00, 0x00, 0xec, 0xff, 0xd4, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xc4, 0xff,
+0xd6, 0xff, 0xe8, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x16, 0x00, 0x12, 0x00,
+0x10, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff,
+0xde, 0xff, 0xe2, 0xff, 0xe2, 0xff, 0xd8, 0xff, 0xde, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xe8, 0xff,
+0xec, 0xff, 0xea, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00,
+0xfc, 0xff, 0x04, 0x00, 0xfa, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xd0, 0xff, 0xbc, 0xff, 0xbe, 0xff,
+0xc4, 0xff, 0xc4, 0xff, 0xc6, 0xff, 0xde, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0x0e, 0x00, 0x18, 0x00,
+0x24, 0x00, 0x22, 0x00, 0x16, 0x00, 0x22, 0x00, 0x14, 0x00, 0xfe, 0xff, 0xe2, 0xff, 0xbc, 0xff,
+0xa8, 0xff, 0xa4, 0xff, 0xa6, 0xff, 0xa8, 0xff, 0xb2, 0xff, 0xd4, 0xff, 0xf0, 0xff, 0x04, 0x00,
+0x22, 0x00, 0x38, 0x00, 0x48, 0x00, 0x4c, 0x00, 0x3a, 0x00, 0x30, 0x00, 0x20, 0x00, 0xfa, 0xff,
+0xd6, 0xff, 0xa6, 0xff, 0x8c, 0xff, 0x86, 0xff, 0x76, 0xff, 0x8c, 0xff, 0x9e, 0xff, 0xc8, 0xff,
+0xf6, 0xff, 0x1a, 0x00, 0x44, 0x00, 0x60, 0x00, 0x74, 0x00, 0x72, 0x00, 0x62, 0x00, 0x4c, 0x00,
+0x22, 0x00, 0xea, 0xff, 0xc2, 0xff, 0x8e, 0xff, 0x7a, 0xff, 0x66, 0xff, 0x62, 0xff, 0x82, 0xff,
+0x9e, 0xff, 0xd4, 0xff, 0x08, 0x00, 0x36, 0x00, 0x60, 0x00, 0x84, 0x00, 0x9e, 0x00, 0x92, 0x00,
+0x7a, 0x00, 0x4c, 0x00, 0x22, 0x00, 0xe0, 0xff, 0xaa, 0xff, 0x74, 0xff, 0x54, 0xff, 0x4a, 0xff,
+0x4e, 0xff, 0x6a, 0xff, 0xa2, 0xff, 0xd2, 0xff, 0x06, 0x00, 0x3c, 0x00, 0x76, 0x00, 0x98, 0x00,
+0xa2, 0x00, 0xa4, 0x00, 0x72, 0x00, 0x40, 0x00, 0x0a, 0x00, 0xd0, 0xff, 0x96, 0xff, 0x5c, 0xff,
+0x3c, 0xff, 0x28, 0xff, 0x3e, 0xff, 0x68, 0xff, 0xac, 0xff, 0xe8, 0xff, 0x10, 0x00, 0x48, 0x00,
+0x8a, 0x00, 0xaa, 0x00, 0xb2, 0x00, 0x9c, 0x00, 0x6a, 0x00, 0x32, 0x00, 0xf2, 0xff, 0xbe, 0xff,
+0x7a, 0xff, 0x54, 0xff, 0x32, 0xff, 0x2a, 0xff, 0x3c, 0xff, 0x6e, 0xff, 0xbe, 0xff, 0xf2, 0xff,
+0x24, 0x00, 0x60, 0x00, 0x8e, 0x00, 0xa8, 0x00, 0xa4, 0x00, 0x86, 0x00, 0x50, 0x00, 0x14, 0x00,
+0xd8, 0xff, 0xaa, 0xff, 0x74, 0xff, 0x48, 0xff, 0x28, 0xff, 0x38, 0xff, 0x52, 0xff, 0x7e, 0xff,
+0xbc, 0xff, 0xf8, 0xff, 0x36, 0x00, 0x60, 0x00, 0x8a, 0x00, 0xa2, 0x00, 0x94, 0x00, 0x76, 0x00,
+0x46, 0x00, 0x0c, 0x00, 0xde, 0xff, 0xac, 0xff, 0x76, 0xff, 0x58, 0xff, 0x4a, 0xff, 0x4a, 0xff,
+0x66, 0xff, 0x92, 0xff, 0xc8, 0xff, 0xfe, 0xff, 0x34, 0x00, 0x68, 0x00, 0x80, 0x00, 0x9a, 0x00,
+0x88, 0x00, 0x60, 0x00, 0x3c, 0x00, 0xfe, 0xff, 0xd6, 0xff, 0xa4, 0xff, 0x84, 0xff, 0x6c, 0xff,
+0x60, 0xff, 0x6e, 0xff, 0x86, 0xff, 0xa6, 0xff, 0xde, 0xff, 0x0e, 0x00, 0x30, 0x00, 0x54, 0x00,
+0x64, 0x00, 0x72, 0x00, 0x64, 0x00, 0x48, 0x00, 0x1c, 0x00, 0xf0, 0xff, 0xd2, 0xff, 0xa8, 0xff,
+0xa0, 0xff, 0x94, 0xff, 0x86, 0xff, 0x96, 0xff, 0xac, 0xff, 0xcc, 0xff, 0xf4, 0xff, 0x14, 0x00,
+0x36, 0x00, 0x4a, 0x00, 0x48, 0x00, 0x50, 0x00, 0x46, 0x00, 0x2a, 0x00, 0x12, 0x00, 0xf2, 0xff,
+0xda, 0xff, 0xc6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xba, 0xff, 0xc0, 0xff, 0xcc, 0xff, 0xe4, 0xff,
+0x02, 0x00, 0x0e, 0x00, 0x1e, 0x00, 0x2a, 0x00, 0x18, 0x00, 0x26, 0x00, 0x1c, 0x00, 0x02, 0x00,
+0xfe, 0xff, 0xf2, 0xff, 0xe2, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xdc, 0xff,
+0xde, 0xff, 0xe8, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0xfa, 0xff,
+0xfa, 0xff, 0xf4, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfa, 0xff,
+0xf8, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xf8, 0xff, 0xe8, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xde, 0xff,
+0xd4, 0xff, 0xcc, 0xff, 0xdc, 0xff, 0xe2, 0xff, 0xee, 0xff, 0x00, 0x00, 0x10, 0x00, 0x1a, 0x00,
+0x0e, 0x00, 0x14, 0x00, 0x0c, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xdc, 0xff, 0xd0, 0xff, 0xbc, 0xff,
+0xb4, 0xff, 0xb6, 0xff, 0xae, 0xff, 0xb4, 0xff, 0xcc, 0xff, 0xde, 0xff, 0xfc, 0xff, 0x1a, 0x00,
+0x2e, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2e, 0x00, 0x1c, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xcc, 0xff,
+0xa4, 0xff, 0x96, 0xff, 0x88, 0xff, 0x8c, 0xff, 0xa0, 0xff, 0xa6, 0xff, 0xcc, 0xff, 0xf6, 0xff,
+0x1a, 0x00, 0x48, 0x00, 0x52, 0x00, 0x60, 0x00, 0x60, 0x00, 0x4c, 0x00, 0x32, 0x00, 0x06, 0x00,
+0xe6, 0xff, 0xbe, 0xff, 0x8a, 0xff, 0x66, 0xff, 0x64, 0xff, 0x62, 0xff, 0x78, 0xff, 0x9c, 0xff,
+0xca, 0xff, 0xf8, 0xff, 0x32, 0x00, 0x5c, 0x00, 0x72, 0x00, 0x8a, 0x00, 0x84, 0x00, 0x62, 0x00,
+0x36, 0x00, 0x0a, 0x00, 0xda, 0xff, 0xa4, 0xff, 0x6e, 0xff, 0x40, 0xff, 0x40, 0xff, 0x48, 0xff,
+0x66, 0xff, 0xb0, 0xff, 0xde, 0xff, 0x16, 0x00, 0x50, 0x00, 0x8a, 0x00, 0xac, 0x00, 0xac, 0x00,
+0xa0, 0x00, 0x74, 0x00, 0x3e, 0x00, 0x0a, 0x00, 0xcc, 0xff, 0x90, 0xff, 0x4e, 0xff, 0x3a, 0xff,
+0x30, 0xff, 0x3a, 0xff, 0x76, 0xff, 0xb8, 0xff, 0xf4, 0xff, 0x26, 0x00, 0x70, 0x00, 0xa4, 0x00,
+0xb8, 0x00, 0xc0, 0x00, 0xa4, 0x00, 0x74, 0x00, 0x2e, 0x00, 0xf4, 0xff, 0xb8, 0xff, 0x74, 0xff,
+0x3c, 0xff, 0x20, 0xff, 0x26, 0xff, 0x44, 0xff, 0x6c, 0xff, 0xc4, 0xff, 0x00, 0x00, 0x3c, 0x00,
+0x7c, 0x00, 0xaa, 0x00, 0xc8, 0x00, 0xba, 0x00, 0xa4, 0x00, 0x6e, 0x00, 0x1a, 0x00, 0xee, 0xff,
+0xa8, 0xff, 0x64, 0xff, 0x3c, 0xff, 0x26, 0xff, 0x2c, 0xff, 0x50, 0xff, 0x94, 0xff, 0xd2, 0xff,
+0x0e, 0x00, 0x4e, 0x00, 0x7e, 0x00, 0xa6, 0x00, 0xc2, 0x00, 0xb2, 0x00, 0x90, 0x00, 0x5a, 0x00,
+0x12, 0x00, 0xd0, 0xff, 0x9c, 0xff, 0x60, 0xff, 0x32, 0xff, 0x2c, 0xff, 0x36, 0xff, 0x5e, 0xff,
+0x9a, 0xff, 0xd6, 0xff, 0x10, 0x00, 0x3c, 0x00, 0x72, 0x00, 0x8e, 0x00, 0x96, 0x00, 0x8e, 0x00,
+0x64, 0x00, 0x36, 0x00, 0x00, 0x00, 0xc0, 0xff, 0x8a, 0xff, 0x6a, 0xff, 0x52, 0xff, 0x42, 0xff,
+0x5e, 0xff, 0x7e, 0xff, 0xb4, 0xff, 0xec, 0xff, 0x16, 0x00, 0x44, 0x00, 0x5e, 0x00, 0x78, 0x00,
+0x78, 0x00, 0x5e, 0x00, 0x4a, 0x00, 0x10, 0x00, 0xf4, 0xff, 0xc2, 0xff, 0x8e, 0xff, 0x84, 0xff,
+0x66, 0xff, 0x72, 0xff, 0x84, 0xff, 0x98, 0xff, 0xd2, 0xff, 0xf4, 0xff, 0x1c, 0x00, 0x38, 0x00,
+0x42, 0x00, 0x50, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x26, 0x00, 0x04, 0x00, 0xee, 0xff, 0xc0, 0xff,
+0xa0, 0xff, 0xa2, 0xff, 0x9c, 0xff, 0x9c, 0xff, 0xae, 0xff, 0xc2, 0xff, 0xe2, 0xff, 0x02, 0x00,
+0x14, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x22, 0x00, 0x16, 0x00, 0x00, 0x00,
+0xec, 0xff, 0xde, 0xff, 0xd0, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xe6, 0xff,
+0xf2, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x18, 0x00, 0x0c, 0x00,
+0xfc, 0xff, 0xfa, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xe4, 0xff,
+0xe4, 0xff, 0xee, 0xff, 0xee, 0xff, 0xec, 0xff, 0xe6, 0xff, 0xf0, 0xff, 0xf2, 0xff};
+
+#endif
diff --git a/mbtk/test/liblynq_lib_t106/lynq_wifi_test.c b/mbtk/test/liblynq_lib_t106/lynq_wifi_test.c
deleted file mode 100755
index b8f5189..0000000
--- a/mbtk/test/liblynq_lib_t106/lynq_wifi_test.c
+++ /dev/null
@@ -1,505 +0,0 @@
-#include "sta_cli.h"
-#include "lynq_wifi.h"
-
-#include <stdio.h>
-#include <stdlib.h>
-
-
-#define MAX_LEN 15
-#define MAX_VALUE_LEN 512
-
-#define ENABLE "enable"
-#define DISABLE "disable"
-#define MODE_SET "mode_set"
-#define MODE_GET "mode_get"
-#define AP_GET_STATUS "ap_get_status"
-#define AP_ACL_SET "ap_acl_set"
-#define AP_ACL_GET "ap_acl_get"
-#define AP_SSID_SET "ap_ssid_set"
-#define AP_SSID_GET "ap_ssid_get"
-#define AP_SSID_HIDE_SET "ap_ssid_hide_set"
-#define AP_SSID_HIDE_GET "ap_ssid_hide_get"
-#define AP_MODE_SET "ap_mode_set"
-#define AP_MODE_GET "ap_mode_get"
-#define AP_BAND_SET "ap_band_set"
-#define AP_BAND_GET "ap_band_get"
-#define AP_CHANNEL_SET "ap_channel_set"
-#define AP_CHANNEL_GET "ap_channel_get"
-#define AP_AUTH_SET "ap_auth_set"
-#define AP_AUTH_GET "ap_auth_get"
-#define AP_auth_GET_S "ap_auth_get_s"
-#define AP_MAX_STA_SET "ap_max_sta_set"
-#define AP_MAX_STA_GET "ap_max_sta_get"
-#define AP_LIST_GET "list_get"
-#define AP_PKT_GET "ap_pkt_get"
-#define AP_START "ap_start"
-#define AP_STOP "ap_stop"
-#define AP_RESTART "ap_restart"
-#define AP_REG_HANDLE "reg_handle"
-#define STA_PARAM_SET "sta_param_set"
-#define STA_PARAM_GET "sta_param_get"
-#define STA_START "sta_start"
-#define STA_STOP "sta_stop"
-#define STA_STATUS_GET "sta_status_get"
-#define STA_PKT_GET "sta_pkt_get"
-#define STA_SCAN "sta_scan"
-
-void lynq_wifi_event_handle_sta_demo(lynq_wifi_sta_scan_list_t *event)
-{
- int i = 0;
- for (i = 0; i < event->cnt; i++)
- {
- printf("[lynq-wifi-demo] %s : ap[%d]:%s,%d,%d,%d,%s,%d,%d,%d\n", __func__, i,
- event->info[i].essid, event->info[i].auth,
- event->info[i].cipher, event->info[i].channel, event->info[i].bssid,
- event->info[i].signal_level,event->info[i].frequency,event->info[i].signal);
- }
-}
-
-
-static void help()
-{
- printf("please read the define \n");
-
-}
-
-int main(int argc, char *argv[])
-{
- int test_int = 0;
- char value[MAX_VALUE_LEN] = {0};
- lynq_wifi_ap_auth_t auth_mode = {0};
- lynq_lanhost_ts lanhost = {0};
- lynq_wifi_pkt_stats_t pkt_stat = {0};
- lynq_wifi_sta_param_t sta_param = {0};
- lynq_wifi_sta_status_t sta_status = {0};
-
- printf(">>>>>>>>>>>>>>>>>>>>>>>>Enter cmd:\n");
- char cmd[MAX_VALUE_LEN];
- while(1)
- {
- memset(cmd, 0, MAX_VALUE_LEN);
- test_int = 0;
- memset(value, 0, MAX_VALUE_LEN);
- memset(&auth_mode, 0, sizeof(lynq_wifi_ap_auth_t));
- memset(&lanhost, 0, sizeof(lynq_lanhost_ts));
- memset(&pkt_stat, 0, sizeof(lynq_wifi_pkt_stats_t));
- memset(&sta_param, 0, sizeof(lynq_wifi_sta_param_t));
- memset(&sta_status, 0, sizeof(lynq_wifi_sta_status_t));
- if(fgets(cmd, MAX_VALUE_LEN, stdin))
- {
- char *ptr = cmd + strlen(cmd) - 1;
- while(ptr >= cmd && (*ptr == '\r' || *ptr == '\n'))
- {
- *ptr-- = '\0';
- }
-
- if(!strncasecmp(cmd, ENABLE, strlen(ENABLE)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_enable())
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, DISABLE, strlen(DISABLE)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_disable())
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, MODE_SET, strlen(MODE_SET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_work_mode_set(LYNQ_WIFI_WORK_MODE_AP0))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, MODE_GET, strlen(MODE_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_work_mode_get(&test_int))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("mode:%d\n",test_int);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_ACL_SET, strlen(AP_ACL_SET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_acl_set(LYNQ_WIFI_AP_INDEX_AP1,
- LYNQ_WIFI_MAC_ACL_RULE_WHITE_LIST, "AA:BB:CC:DD:EE:01;AA:BB:CC:01:EE:00;AA:BB:01:DD:EE:00"))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_ACL_GET, strlen(AP_ACL_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_acl_get(LYNQ_WIFI_AP_INDEX_AP1, &test_int, value))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("value:%s\n",value);
- printf("mode:%d\n",test_int);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_SSID_SET, strlen(AP_SSID_SET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_ssid_set(LYNQ_WIFI_AP_INDEX_AP1, "testssid"))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_SSID_GET, strlen(AP_SSID_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_ssid_get(LYNQ_WIFI_AP_INDEX_AP1, value))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("value:%s\n",value);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_SSID_HIDE_SET, strlen(AP_SSID_HIDE_SET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_ssid_hide_set(LYNQ_WIFI_AP_INDEX_AP1, 1))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_SSID_HIDE_GET, strlen(AP_SSID_HIDE_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_ssid_hide_get(LYNQ_WIFI_AP_INDEX_AP1, &test_int))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
-
- printf("value:%d\n", test_int);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_MODE_SET, strlen(AP_MODE_SET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_mode_set(LYNQ_WIFI_AP_INDEX_AP1, 1))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_MODE_GET, strlen(AP_MODE_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_mode_get(LYNQ_WIFI_AP_INDEX_AP1, &test_int))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("value:%d\n", test_int);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_BAND_SET, strlen(AP_BAND_SET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_bandwidth_set(LYNQ_WIFI_AP_INDEX_AP1, 2))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_BAND_GET, strlen(AP_BAND_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_bandwidth_get(LYNQ_WIFI_AP_INDEX_AP1, &test_int))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("value:%d\n", test_int);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_CHANNEL_SET, strlen(AP_CHANNEL_SET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_channel_set(LYNQ_WIFI_AP_INDEX_AP1, "CN", 35))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_CHANNEL_GET, strlen(AP_CHANNEL_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_channel_get(LYNQ_WIFI_AP_INDEX_AP1, value, &test_int))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("country:%s, channel:%d\n", value, test_int);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_AUTH_SET, strlen(AP_AUTH_SET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_auth_set(LYNQ_WIFI_AP_INDEX_AP1, 1, "123456"))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_AUTH_GET, strlen(AP_AUTH_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_auth_get(LYNQ_WIFI_AP_INDEX_AP1, &test_int, value))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("value:%s\n", value);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_auth_GET_S, strlen(AP_auth_GET_S)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_auth_get_s(LYNQ_WIFI_AP_INDEX_AP1, &auth_mode))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("auth_mode:%s\n", auth_mode.passwd);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_MAX_STA_SET, strlen(AP_MAX_STA_SET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_max_sta_set(LYNQ_WIFI_AP_INDEX_AP1, 8))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_MAX_STA_GET, strlen(AP_MAX_STA_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_max_sta_get(LYNQ_WIFI_AP_INDEX_AP1, &test_int))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("max_sta:%d\n",test_int);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_LIST_GET, strlen(AP_LIST_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_lanhost_get_list(&lanhost))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_PKT_GET, strlen(AP_PKT_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_get_ap_pkt_stats(LYNQ_WIFI_AP_INDEX_AP1, &pkt_stat))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_START, strlen(AP_START)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_start(LYNQ_WIFI_AP_INDEX_AP1))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_STOP, strlen(AP_STOP)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_stop(LYNQ_WIFI_AP_INDEX_AP1))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_RESTART, strlen(AP_RESTART)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_ap_restart(LYNQ_WIFI_AP_INDEX_AP1))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, AP_REG_HANDLE, strlen(AP_REG_HANDLE)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_register_handle(NULL, lynq_wifi_event_handle_sta_demo, NULL))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, STA_PARAM_SET, strlen(STA_PARAM_SET)))
- {
- strcpy(sta_param.ssid, "test");
- strcpy(sta_param.passwd, "123456");
- if(LYNQ_ERR_SUCCESS != qser_wifi_sta_param_set(&sta_param))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, STA_PARAM_GET, strlen(STA_PARAM_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_sta_param_get(&sta_param))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("ssid:%s, passwd:%s\n", sta_param.ssid, sta_param.passwd);
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, STA_START, strlen(STA_START)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_sta_start())
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, STA_STOP, strlen(STA_STOP)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_sta_stop())
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, STA_STATUS_GET, strlen(STA_STATUS_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_sta_get_status(&sta_status))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, STA_PKT_GET, strlen(STA_PKT_GET)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_get_sta_pkt_stats(&pkt_stat))
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
- else if(!strncasecmp(cmd, STA_SCAN, strlen(STA_SCAN)))
- {
- if(LYNQ_ERR_SUCCESS != qser_wifi_sta_start_scan())
- {
- printf("LYNQ_ERR_FAIL\n");
- }
- else
- {
- printf("LYNQ_ERR_SUCCESS\n");
- }
- }
-
- else if(!strcasecmp(cmd, "h") || !strcasecmp(cmd, "help"))
- {
- help();
- }
- else if(!strcasecmp(cmd, "q"))
- {
- break;
- }
- else
- {
- printf("unknown command\n");
- }
- }
- }
-
-
- return 0;
-}
-
diff --git a/mbtk/test/libql_lib_v2/Makefile b/mbtk/test/libql_lib_v2/Makefile.backup
similarity index 100%
rename from mbtk/test/libql_lib_v2/Makefile
rename to mbtk/test/libql_lib_v2/Makefile.backup